From c8c873a4afd25dfddea8de50e4e5697008d26eef Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Tue, 7 Nov 2017 08:10:16 +0100 Subject: [PATCH 01/56] First steps matplotlib --- matplotlib1.py | 138 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 matplotlib1.py diff --git a/matplotlib1.py b/matplotlib1.py new file mode 100644 index 0000000..8d33425 --- /dev/null +++ b/matplotlib1.py @@ -0,0 +1,138 @@ +# following along with the Pyplot tutorial at http://matplotlib.org/tutorials/introductory/pyplot.html + +import matplotlib.pyplot as plt +import numpy as np + +# basic plot with labels +plt.plot([1, 2, 3, 5]) +plt.ylabel("Some numbers") +plt.xlabel("input") + +# add some text +plt.plot([1, 2, 4], [11, 8, 12], 'ro') +plt.axis([0, 5, 4, 12]) +plt.text(2, 6, "hello") +plt.text(1, 5, "hello", fontsize=20) +plt.text(1, 5, "hello", horizontalalignment='center') + +# multiple sequences in the same plot (command) +t = np.arange(0, 5, 0.2) +plt.plot(t, t, 'r--', t, np.power(t, 2), 'bs') + +# bubble plot +data = {'a': np.arange(50), + 'c': np.random.randint(0, 50, 50), + 'd': np.random.randn(50)} +data['b'] = data['a'] + 10 * np.random.randn(50) +data['d'] = np.abs(data['d']) * 100 + +plt.scatter('a', 'b', c='c', s='d', data=data) +plt.xlabel('entry a') +plt.ylabel('entry b') + +# categorical variables +names = ['group_a', 'group_b', 'group_c'] +values = [1, 10, 100] + +plt.figure(1, figsize=(9, 3)) + +plt.subplot(131) +plt.bar(names, values) +plt.subplot(132) +plt.scatter(names, values) +plt.subplot(133) +plt.plot(names, values) +plt.suptitle('Categorical Plotting') +plt.subplot(131) ## deprecated to go back to earlier subplot like this +plt.ylabel("lab lab") + +p1 = plt.plot([1, 2, 3], [4, 4, 6]) +plt.setp(p1, color='b', linestyle='-.') +plt.setp(p1) + +f1 = plt.figure(1) +plt.subplot(211) +plt.plot([1 ,2], [1, 2]) + +f2 = plt.figure(2) +plt.plot([1, 2], [11, 10]) + +plt.figure(1) +plt.subplot(2, 1, 2) +plt.plot([1, 2], [33, 32]) +plt.subplot(1, 1, 1) +plt.plot([11,22], [33,44]) +plt.figure(2) +plt.subplot(3, 1, 2) +plt.plot([1, 2, 3], [11, 22, 3]) +plt.title(r'$\sigma_i=15$') + +fig = plt.figure(3) +ax = fig.add_subplot(2, 2, 1) +ax.scatter([1, 3, 2], [3, 1, 2]) +ax.scatter(1.5, 1.5) +ax = fig.add_subplot(2, 2, 4) +ax.plot([1, 2, 3], [1, 2, 3]) + + + +import matplotlib.path as mpath +import matplotlib.patches as mpatches +import matplotlib.pyplot as plt + + +fig, ax = plt.subplots() + +Path = mpath.Path +path_data = [ + (Path.MOVETO, (1.58, -2.57)), + (Path.CURVE4, (0.35, -1.1)), + (Path.CURVE4, (-1.75, 2.0)), + (Path.CURVE4, (0.375, 2.0)), + (Path.LINETO, (0.85, 1.15)), + (Path.CURVE4, (2.2, 3.2)), + (Path.CURVE4, (3, 0.05)), + (Path.CURVE4, (2.0, -0.5)), + (Path.CLOSEPOLY, (1.58, -2.57)), + ] +codes, verts = zip(*path_data) +path = mpath.Path(verts, codes) +patch = mpatches.PathPatch(path, facecolor='r', alpha=0.5) +ax.add_patch(patch) + +# plot control points and connecting lines +x, y = zip(*path.vertices) +line, = ax.plot(x, y, 'go-') + +ax.grid() +ax.axis('equal') +plt.show() + +from mpl_toolkits.mplot3d import Axes3D +import matplotlib.pyplot as plt +from matplotlib import cm +from matplotlib.ticker import LinearLocator, FormatStrFormatter +import numpy as np + + +fig = plt.figure() +ax = fig.gca(projection='3d') + +# Make data. +X = np.arange(-5, 5, 0.25) +Y = np.arange(-5, 5, 0.25) +X, Y = np.meshgrid(X, Y) +R = np.sqrt(X**2 + Y**2) +Z = np.sin(R) + +# Plot the surface. +surf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm, + linewidth=0, antialiased=False) + +# Customize the z axis. +ax.set_zlim(-1.01, 1.01) +ax.zaxis.set_major_locator(LinearLocator(10)) +ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f')) + +# Add a color bar which maps values to colors. +fig.colorbar(surf, shrink=0.5, aspect=5) \ No newline at end of file From 9c3a4d01cc13ea49d214ab51204b51351fd74033 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Jan 2019 09:24:02 +0100 Subject: [PATCH 02/56] feat: histogram of search size for zeros in hash --- .editorconfig | 16 ++++++++ hash_extra_input.py | 97 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 .editorconfig create mode 100644 hash_extra_input.py diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9d345f8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# http://editorconfig.org +root = true + +[*] +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +end_of_line = lf +charset = utf-8 + +[Makefile] +indent_style = tab + +[*.yaml] +indent_size = 2 diff --git a/hash_extra_input.py b/hash_extra_input.py new file mode 100644 index 0000000..cdf29a4 --- /dev/null +++ b/hash_extra_input.py @@ -0,0 +1,97 @@ +# Some quick tests for the effect of extra input on a hash +# +# Given some sources of entropy, show the effect of a malicious source that can read all other sources. + +import hashlib +import random +import string +import time +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt + +def random_string(length=10): + return "".join(random.choices(string.ascii_letters, k=length)) + + +def get_with_zeros(initial, num_zeros): + """ + The initial value is the data containing entropy as collected for other sources. num_zeros gives the size of the + bias we are trying to establish. This search is one way the malicious source of data could create that bias. + + :param initial: the initial value for this search + :param num_zeros: fixed initial segment to search for + :return: i such that with bytes(i) added to the digest get the right number of initial zeros + """ + base_hash = hashlib.md5() + base_hash.update(initial) + + data_to_add = 0 + while True: + updated_hash = base_hash.copy() + updated_hash.update(bytes(data_to_add)) + if all([b == 0 for b in updated_hash.digest()[0:num_zeros]]): + break + + data_to_add += 1 + + if data_to_add % 1000 == 0: + print(data_to_add) + + return data_to_add + + +class Timer(): + def __init__(self): + self.start = time.monotonic() + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + end = time.monotonic() + runtime = end - self.start + print(f"Time taken {runtime}") + + + +def collect_data(ct): + return [get_with_zeros(random_string().encode(), 1) for j in range(ct)] + +with Timer(): + dat = collect_data(100) + +with Timer(): + collect_data(1000) + +with Timer(): + collect_data(5000) + +with Timer(): + collect_data(10_000) + +dat = collect_data(100_000) + + +np.mean(dat) +np.max(dat) +np.min(dat) + +with Timer(): + get_with_zeros(random_string().encode(), 1) + +datn = np.array(dat) +datf = pd.DataFrame({'found': datn}) +datf +datf.plot() +plt.show() + +cts = datf.found.value_counts() + +bins = np.histogram(cts, bins=10) + +### cts.hist() +plt.hist(datf.values, bins=30) +m = np.mean(datf.values) +plt.axvline(x=m, color='red') +plt.show() From b552971e78f13eec85186dd83d05f9c4aee4f720 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Jan 2019 16:40:48 +0100 Subject: [PATCH 03/56] feat: density plot of distribution of search sizes --- hash_extra_input.py | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/hash_extra_input.py b/hash_extra_input.py index cdf29a4..1c445ea 100644 --- a/hash_extra_input.py +++ b/hash_extra_input.py @@ -9,6 +9,8 @@ import numpy as np import pandas as pd import matplotlib.pyplot as plt +from sklearn.neighbors import KernelDensity + def random_string(length=10): return "".join(random.choices(string.ascii_letters, k=length)) @@ -90,8 +92,27 @@ def collect_data(ct): bins = np.histogram(cts, bins=10) -### cts.hist() + +# hist of search sizes + +### cts.hist() # wrong plot, plots the cts not the indices plt.hist(datf.values, bins=30) m = np.mean(datf.values) plt.axvline(x=m, color='red') plt.show() + +# kernel density approx of search sizes + +kd = KernelDensity() +kd.fit(datf.values) +dd = kd.sample(10000) +plt.hist(dd, bins=30) +plt.show() +np.mean(dd) +np.std(dd) +np.std(datf.values) + +xs = np.linspace(0, 3000, num=1000) +dens_dat = np.exp(kd.score_samples(np.expand_dims(xs, 1))) +plt.plot(xs, dens_dat) +plt.show() From 2f5b54c07e1e08fbbf7e2fb703c9ba8ea2eb5389 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Tue, 5 Feb 2019 21:05:56 +0100 Subject: [PATCH 04/56] quick exper with inheritance --- inher.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 inher.py diff --git a/inher.py b/inher.py new file mode 100644 index 0000000..48000a5 --- /dev/null +++ b/inher.py @@ -0,0 +1,43 @@ +class A: + def __init__(self, x): + print(f"init A({x})") + self.x = x + + def label(self): + print("A") + + def f(self): + super().f() + print("f from A") + print(f"class name {self.__class__.__name__}") + x = self.__class__(3) + x.label() + + +class B: + def __init__(self, x): + print(f"init B({x})") + self.x = x + + def label(self): + print("B") + + def f(self): + print("f from B") + + +class C(A, B): + def __init__(self, x): + print(f"init C({x})") + self.x = x + + def label(self): + print("C") + + def f(self): + super().f() + print("f from C") + + +c = C(22) +c.f() From 61ea7002d604b5760cff16a1140bb8b8a41ee3cc Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Mon, 4 Mar 2019 14:01:42 +0100 Subject: [PATCH 05/56] WIP: add all changes to refresh setup --- .gitignore | 3 + btree.py | 78 +++++++++++++++++++++++ cnt_function_calls.py | 55 ++++++++++++++++ glob_test.py | 22 +++++++ hash_extra_input.py | 11 ++++ inher.py | 29 +++++++++ modernpandas.py | 134 +++++++++++++++++++++++++++++++++++++++ searchtree.py | 95 +++++++++++++++++++++++++++ searchtree2.py | 106 +++++++++++++++++++++++++++++++ setattr.py | 19 ++++++ test_run.py | 20 ++++++ tree_zipper.py | 130 +++++++++++++++++++++++++++++++++++++ tree_zipper_logging.yaml | 18 ++++++ 13 files changed, 720 insertions(+) create mode 100644 .gitignore create mode 100644 btree.py create mode 100644 cnt_function_calls.py create mode 100644 glob_test.py create mode 100644 searchtree.py create mode 100644 searchtree2.py create mode 100644 setattr.py create mode 100644 test_run.py create mode 100644 tree_zipper.py create mode 100644 tree_zipper_logging.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a81f529 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea/ +*.html +*.sqlite diff --git a/btree.py b/btree.py new file mode 100644 index 0000000..f084873 --- /dev/null +++ b/btree.py @@ -0,0 +1,78 @@ +# btree + +import unittest +import logging + +logging.basicConfig(level=logging.DEBUG) + + +class BTriple: + def __init__(self, key, val, down): + self.key = key + self.val = val + self.down = down + + +class BTree: + """BTree implementation + + Note the keys are kept in increasing order in the node""" + log = logging.getLogger("BTree") + + def __init__(self, *, key=None, val=None): + self.log.debug(f"New btree with key={key} and val={val}.") + self.dat = [] + if key is not None: + if val is None: + self.log.error(f"key ({key}) is not None, but val is") + self.dat.append(BTriple(key, val, None)) + + def check_invariant(self): + """check keys are increasing""" + pass + + def find(self, key): + for bt in self.dat: + self.log.debug(bt.key) + if bt.key == key: + return bt.val + elif key < bt.key: + if bt.down is None: + return None + else: + return bt.down.find(key) + + def insert(self, key, val): + idx = 0 + while idx < len(self.dat) and key > self.dat[idx].key: + idx += 1 + # We now have key <= self.dat[idx].key + if idx < len(self.dat) and key == self.dat[idx].key: + self.dat[idx].val = val + else: + self.dat.insert(idx, BTriple(key, val, None)) + # now rebalance + + def __repr__(self): + return "[" + ", ".join([repr(bt.key) + "::" + repr(bt.val) for bt in self.dat]) + "]" + + +class TestBTree(unittest.TestCase): + log = logging.getLogger("TestBTree") + + def test_init(self): + self.log.info("testinit") + empty_btree = BTree() + self.assertEqual(empty_btree.dat, []) + btree1 = BTree(key=1, val=2) + self.assertTrue(len(btree1.dat) == 1) + self.assertEqual(btree1.find(1), 2) + btree1.insert(1, 22) + self.assertEqual(btree1.find(1), 22) + btree1.insert(2, 33) + self.log.info(btree1) + self.assertEqual(btree1.find(2), 33) + + + + diff --git a/cnt_function_calls.py b/cnt_function_calls.py new file mode 100644 index 0000000..b6ce4c6 --- /dev/null +++ b/cnt_function_calls.py @@ -0,0 +1,55 @@ +# count number of times a function has been called + +from functools import wraps +import logging + +logging.basicConfig(level=logging.INFO) + +def cnt_closure(f): + log = logging.getLogger(f"logger_{f.__name__}") + cnt = 0 + #@wraps(f) + def wrap(*args, **kwargs): + nonlocal cnt + cnt += 1 + log.info(f"Called {cnt} times") + return f(*args, **kwargs) + return wrap + +@cnt_closure +def f(x): + return 2*x + +def cnt(f): + @wraps(f) + def wrap(*args, **kwargs): + +from collections import defaultdict +import weakref + +class KeepRefs(object): + __refs__ = defaultdict(list) + + def __init__(self): + self.__refs__[self.__class__].append(weakref.ref(self)) + + @classmethod + def get_instances(cls): + for inst_ref in cls.__refs__[cls]: + inst = inst_ref() + if inst is not None: + yield inst + +class X(KeepRefs): + def __init__(self, name): + super(X, self).__init__() + self.name = name + +x = X("x") +y = X("y") +for r in X.get_instances(): + print(r.name) +del y +for r in X.get_instances(): + print(r.name) +print("done") \ No newline at end of file diff --git a/glob_test.py b/glob_test.py new file mode 100644 index 0000000..6eaf36a --- /dev/null +++ b/glob_test.py @@ -0,0 +1,22 @@ +# Playing with files: adding download dates to files in Downloads folder +# +# Tries to avoid adding date to files that already have a date added. + +import glob +import os +import time +import shutil + +ddir = "/Users/kasterma/Downloads/" + +files = glob.glob(ddir + "*") +files_wd = glob.glob(ddir + "[0-9]*-[0-9]*--*") + +tol_files = [f for f in files if f not in files_wd] + +for file in tol_files: + ss = os.stat(file) + ct = time.gmtime(ss.st_ctime) + print(file) + print(os.path.dirname(file) + "/" + time.strftime("%m-%d", ct) + "--" + os.path.basename(file)) + shutil.move(file, os.path.dirname(file) + "/" + time.strftime("%m-%d", ct) + "--" + os.path.basename(file)) \ No newline at end of file diff --git a/hash_extra_input.py b/hash_extra_input.py index 1c445ea..39aa496 100644 --- a/hash_extra_input.py +++ b/hash_extra_input.py @@ -116,3 +116,14 @@ def collect_data(ct): dens_dat = np.exp(kd.score_samples(np.expand_dims(xs, 1))) plt.plot(xs, dens_dat) plt.show() + +# quick play with kernel density fn + +kd2 = KernelDensity(bandwidth=0.3, kernel='tophat') +kd2.kernel +dat_train = np.expand_dims(np.asarray([1, 1, 1.5, 2, 2, 2]), 1) +kd2.fit(dat_train) +xs = np.linspace(0, 4, num=100) +ys = np.exp(kd2.score_samples(np.expand_dims(xs, 1))) +plt.plot(xs, ys) +plt.show() diff --git a/inher.py b/inher.py index 48000a5..e6d6919 100644 --- a/inher.py +++ b/inher.py @@ -13,6 +13,14 @@ def f(self): x = self.__class__(3) x.label() + @classmethod + def ff(cls): + # super().ff() + print("ff from A") + print(f"class name {cls.__name__}") + x = cls(3) + x.label() + class B: def __init__(self, x): @@ -23,8 +31,17 @@ def label(self): print("B") def f(self): + # super().f() print("f from B") + @classmethod + def ff(cls): + # super().ff() + print("ff from B") + print(f"class name {cls.__name__}") + x = cls(3) + x.label() + class C(A, B): def __init__(self, x): @@ -38,6 +55,18 @@ def f(self): super().f() print("f from C") + @classmethod + def ff(cls): + super().ff() + print("ff from C") + print(f"class name {cls.__name__}") + x = cls(3) + x.label() + return x + c = C(22) c.f() +print("now ff") +x = c.ff() +print(type(x)) diff --git a/modernpandas.py b/modernpandas.py index 9dc04ad..92f14e3 100644 --- a/modernpandas.py +++ b/modernpandas.py @@ -20,6 +20,9 @@ from functools import wraps import re +import random +import glob + LOG_CONF_FILENAME = "logging_modernpandas.yaml" with open(LOG_CONF_FILENAME) as log_conf_file: log_conf = yaml.load(log_conf_file) @@ -268,3 +271,134 @@ def test_chain_fn(self): df7 = df6.groupby(['y', pd.TimeGrouper('H')]).sum() df6.x.rolling(10).sum() + + +class IndexingTests(unittest.TestCase): + log = logging.getLogger("IndexingTests") + + def test_reset_index(self): + """Reset index is used in an example. + + And in this context reminding myself of some MultiIndex operations as well.""" + + # reminder on multi index in columns + df1 = pd.DataFrame([[1, 3], [2, 4], [11, 33], [22, 44]]).T + df1.index = pd.Series([1, 2], name="idx1") + df1.columns = pd.MultiIndex.from_product([['a', 'b'], ['aa', 'bb']], names=['idx_c', 'idx2']) + + # same data frame in single command + df2 = pd.DataFrame([[1, 2, 11, 22], [3, 4, 33, 44]], + index=pd.Series([1, 2], name="idx1"), + columns=pd.MultiIndex.from_product([['a', 'b'], ['aa', 'bb']], names=['idx_c', 'idx2'])) + + df2.loc[:, pd.IndexSlice[:, 'aa']] # getting all info using the second level of the column index out of it + + df2.T.reset_index().set_index(['idx_c', 'idx2']) # all together a nop + self.assertTrue(df2.T.equals(df2.T.reset_index().set_index(['idx_c', 'idx2']))) + df2.T.reset_index(0) # pull out first index level (idx_c) + df2.T.reset_index(1) # pull out second index level (idx2) + + def test_set_operations(self): + df2 = pd.DataFrame([[1, 2, 11, 22], [3, 4, 33, 44]], + index=pd.Series(['one', 'two'], name="idx1"), + columns=pd.MultiIndex.from_product([['a', 'b'], ['aa', 'bb']], names=['idx_c', 'idx2'])) + + df2.columns.levels[1] # ['aa', 'bb'] + df2.columns.levels[0] & df2.columns.levels[1] # empty + df2.columns.levels[0] | df2.columns.levels[1] #['a', 'aa', 'b', 'bb'] + df2.T.one # index comes along + + + +class ChunkExample: + """Generate some test data for playing with a collection of chunks from different files""" + + def __init__(self, name_fragment, ct, *, test_at=None): + """Initialize the creation of a ct csv files with name_fragment in their name. + + The parameter test_at is for testing, leave at None for normal use, set to a value less than ct to create the + file just before testing for its existence. + """ + self.log = logging.getLogger(self.__class__.__name__) + self.name_fragment = name_fragment + self.ct = ct + self.test_at = test_at + + def __enter__(self): + self.random_fragment = random.randint(10_000, 100_000) + self.filenames = [] + for idx in range(self.ct): + filename = f"/tmp/{self.name_fragment}-{self.random_fragment}-{idx}.csv" + self.log.info("Creating csv file: %s", filename) + dat = {'a': np.arange(20*idx, 20*(1+idx)), + 'b': np.arange(20, 40), + 'date': pd.date_range("20170101", "20170120")} + df = pd.DataFrame(dat, index=pd.Index(np.arange(40+20*idx, 40+20*(1+idx)), name="idx1")) + + if idx == self.test_at: # create the file for testing the error code following directly below + df.to_csv(filename) + if os.path.isfile(filename): + self.log.error(f"Csv file already exists: {filename}") + self.remove_files() + raise Exception("Attempt at overwriting file") + + df.to_csv(filename) + self.filenames.append(filename) + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + """Cleanup. + + Since there are no expected exceptions that we might want to capture we pass all thrown exceptions on. + """ + self.remove_files() + return False + + def remove_files(self): + for fname in self.filenames: + try: + os.remove(fname) + except FileNotFoundError as e: + self.log.warning(f"Trying to remove file {fname} but file is not found: {str(e)}") + + +class PerformanceTests(unittest.TestCase): + log = logging.getLogger("PerformanceTests") + + def test_chunks(self): + with ChunkExample("test_frag", 10) as ce: + files = glob.glob(f"/tmp/{ce.name_fragment}*") # Note: these are not in order + self.log.info(f"Reader {files}") + dats = [pd.read_csv(fname, index_col=0) for fname in files] + + dat: pd.DataFrame = pd.concat(dats) + dat = dat.sort_index() + + # test dealing with missing files in the context manager + with ChunkExample("test_frag", 10) as ce: + for ff in ce.filenames: + self.log.info(f"Removing {ff}") + os.remove(ff) + + new_index = pd.MultiIndex.from_product([dat.index, dat.index], names=['aa', 'bb']) + + xx = pd.concat( + [dat.add_prefix("aa").reindex(new_index, level='aa'), dat.add_prefix("bb").reindex(new_index, level="bb")], + axis=1) # key is this axis = 1 / if axis = 0 (the default) just put one frame under the other + self.assertEquals(xx.shape, (40_000, 6)) + + mi1 = pd.MultiIndex.from_product([[1, 2, 3], [2, 3, 4], [4, 5, 6]], names=['one', 'two', 'three']) + a1 = pd.DataFrame({'a1': [11, 22, 33]}, index=[1, 2, 3]) + a2 = pd.DataFrame({'a2': [22, 33, 44]}, index=[2, 3, 4]) + a3 = pd.DataFrame({'a3': [44, 55, 66]}, index=[4, 5, 6]) + a12 = pd.concat([a1.reindex(mi1.droplevel(2), level='one'), + a2.reindex(mi1.droplevel(2), level='two')], + axis='columns') + #a123 = pd.concat([a12, a3.reindex(mi1, level=2)], axis=1) + + io1 = pd.DataFrame(index=mi1) + aaa = pd.concat([a12, io1.reset_index(level=2)], axis=1) + a12mi1 = aaa.set_index("three", append=True) + pd.concat([a12mi1, a3.reindex(mi1, level='three')], axis=1) + + b12 = pd.concat([a1.reindex(mi1.droplevel('three').unique().set_names(['one', 'two']), level='one'), a2.reindex(mi1.droplevel(2), level='two')], axis=1) diff --git a/searchtree.py b/searchtree.py new file mode 100644 index 0000000..7f78423 --- /dev/null +++ b/searchtree.py @@ -0,0 +1,95 @@ +import unittest + + +class Singleton(type): + __instances = {} + + def __call__(cls, *args, **kwargs): + if cls not in cls.__instances: + cls.__instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) + return cls.__instances[cls] + + +class A(metaclass=Singleton): + pass + + +class B(metaclass=Singleton): + pass + + +class C(metaclass=Singleton): + __instances = {} + +a = A() +b = B() +c = C() + + +class SearchTree: + @staticmethod + def tree(key=None, val=None): + if key is None: + assert(val is None) + return EmptySearchTree() + else: + assert(val is not None) + return NonEmptySearchTree(key=key, val=val) + + +class EmptySearchTree(SearchTree, metaclass=Singleton): + @staticmethod + def insert(key, val): + return SearchTree.tree(key=key, val=val) + + @staticmethod + def find(key): + return None + + def __repr__(self): + return "EmptyTree" + + +class NonEmptySearchTree(SearchTree): + def __init__(self, key: int, val: int, *, left: SearchTree=EmptySearchTree(), right: SearchTree=EmptySearchTree()): + self.key = key + self.val = val + self.left = left + self.right = right + + def insert(self, key, val): + """ + Insert the value at the key in the search tree. As much of the tree as possible is shared, but the original + tree is unaffected. + """ + if self.key == key: # overwrite value if key is given with a new value + return NonEmptySearchTree(key=self.key, val=val, left=self.left, right=self.right) + elif self.key > key: + return NonEmptySearchTree(key=self.key, val=self.val, left=self.left.insert(key, val), right=self.right) + else: + return NonEmptySearchTree(key=self.key, val=self.val, left=self.left, right=self.right.insert(key, val)) + + def find(self, key): + if self.key == key: + return self.val + elif self.key > key: + return self.left.find(key) + else: + return self.right.find(key) + + def __repr__(self): + return f"Tree({self.key}->{self.val}, [{repr(self.left)}][{repr(self.right)}])" + + +class TestSearchTree(unittest.TestCase): + def test_basics(self): + self.assertEqual(SearchTree.tree().find(1), None) + t0 = SearchTree.tree(1, 33) + self.assertEqual(t0.find(1), 33) + t1 = SearchTree.tree() + t1 = t1.insert(1, 2) + t1 = t1.insert(2, 22) + t1 = t1.insert(0, 11) + self.assertEqual(t1.find(1), 2) + self.assertEqual(t1.find(2), 22) + print(repr(t1)) \ No newline at end of file diff --git a/searchtree2.py b/searchtree2.py new file mode 100644 index 0000000..6c2dd4f --- /dev/null +++ b/searchtree2.py @@ -0,0 +1,106 @@ +import unittest + + +class T1: + @classmethod + def __call__(self, *args, **kwargs): + print("called") + return 2 + + +class T2: + pass + +T2.__call__ = lambda x: 3 + +T2() + + +class T3: + @staticmethod + def __call__(*args, **kwargs): + print(333) + + +class CC(type): + def __call__(cls, *args, **kwargs): + cls.c__call__(cls, *args, **kwargs) + + +class T4(metaclass=CC): + def c__call__(self, *args, **kwargs): + print('yoyoyo') + +T4() + + +class SearchTree(metaclass=CC): + ET = None + + def c__call__(cls, *, key=None, val=None): + if key is None: + assert(val is None) + if cls.ET is None: + cls.ET = EmptySearchTree() + return cls.ET + else: + assert(val is not None) + return NonEmptySearchTree(key=key, val=val) + + +class EmptySearchTree(SearchTree): + @staticmethod + def insert(key, val): + return SearchTree(key=key, val=val) + + @staticmethod + def find(key): + return None + + def __repr__(self): + return "EmptyTree" + + +class NonEmptySearchTree(SearchTree): + def __init__(self, key: int, val: int, *, left: SearchTree = EmptySearchTree(), + right: SearchTree = EmptySearchTree()): + self.key = key + self.val = val + self.left = left + self.right = right + + def insert(self, key, val): + """ + Insert the value at the key in the search tree. As much of the tree as possible is shared, but the original + tree is unaffected. + """ + if self.key == key: # overwrite value if key is given with a new value + return NonEmptySearchTree(key=self.key, val=val, left=self.left, right=self.right) + elif self.key > key: + return NonEmptySearchTree(key=self.key, val=self.val, left=self.left.insert(key, val), right=self.right) + else: + return NonEmptySearchTree(key=self.key, val=self.val, left=self.left, right=self.right.insert(key, val)) + + def find(self, key): + if self.key == key: + return self.val + elif self.key > key: + return self.left.find(key) + else: + return self.right.find(key) + + def __repr__(self): + return f"Tree({self.key}->{self.val}, [{repr(self.left)}][{repr(self.right)}])" + + +class TestSearchTree(unittest.TestCase): + def test_basics(self): + self.assertEqual(SearchTree.new_empty_tree().find(1), None) + t0 = SearchTree.new_tree(1, 33) + self.assertEqual(t0.find(1), 33) + t1 = SearchTree.new_empty_tree() + t1 = t1.insert(1, 2) + t1 = t1.insert(2, 22) + self.assertEqual(t1.find(1), 2) + self.assertEqual(t1.find(2), 22) + print(repr(t1)) \ No newline at end of file diff --git a/setattr.py b/setattr.py new file mode 100644 index 0000000..9aa3458 --- /dev/null +++ b/setattr.py @@ -0,0 +1,19 @@ +class TestSetAttr: + zz = 999 + + def __init__(self): + self.x = 9 + + def __setattr__(self, key, value): + print("Setting {} to {}".format(key, value)) + object.__setattr__(self, key, value) + + +def test_set_attr(): + TestSetAttr() + + +class A(TestSetAttr): + xx = 9 + +A() \ No newline at end of file diff --git a/test_run.py b/test_run.py new file mode 100644 index 0000000..f025d46 --- /dev/null +++ b/test_run.py @@ -0,0 +1,20 @@ +# Test of %run in ipython +# +# %run test_run.py +# %timeit %run test_run.py +# %run -i test_run.py (with the environment of the current shell) +# e.g. below we first try to double x_tr, but if not defined we set it to be the double of 3. On next run +# with -i we'll double the value so far + + +def f_tr(x: int) -> int: + """ + Multiply by two. + """ + return 2 * x + +try: + x_tr = f_tr(x_tr) +except NameError as e: + print(str(e)) + x_tr = f_tr(3) diff --git a/tree_zipper.py b/tree_zipper.py new file mode 100644 index 0000000..0d177a9 --- /dev/null +++ b/tree_zipper.py @@ -0,0 +1,130 @@ +"""Huet's Zipper basic implementation""" + +import unittest +import logging +import logging.config +import yaml + +with open("tree_zipper_logging.yaml") as log_conf_file: + log_conf = yaml.load(log_conf_file) +logging.config.dictConfig(log_conf) +log = logging.getLogger("tree_zipper") + + +class Tree: + def __init__(self, val: int, children=None): + self.val = val + if children is None: + self.children = [] + else: + self.children = children + + def __repr__(self): + children_str = ",".join([repr(ch) for ch in self.children]) + if len(children_str) > 0: + children_str = "->" + children_str + return f"({self.val}{children_str})" + + def __eq__(self, other): + return (self.val == other.val and + len(self.children) == len(other.children) and + all(self.children[i] == other.children[i] for i in range(len(self.children)))) + + +class Path: + def __init__(self, val, larger_siblings, up, smaller_siblings): + self.val = val + self.larger_siblings = larger_siblings + self.up = up + self.smaller_siblings = smaller_siblings + + def __repr__(self): + return f"P({self.val}, {self.larger_siblings}, {self.up}, {self.smaller_siblings})" + + +class Location: + """Current focus in a tree. + + A location is a current subtree of focus stored in tree, and the information to rebuild the full tree from it in + path. + + Note: no proper error handling; if an operation is not possible just return self""" + + def __init__(self, tree, path=None): + self.tree = tree + self.path = path + + def update(self, f): + return Location(f(self.tree), self.path) + + def down(self): + if len(self.tree.children) == 0: + return self + else: + return Location(self.tree.children[0], Path(self.tree.val, [], self.path, self.tree.children[1:])) + + def up(self): + p = self.path + if p is None: + return self + else: + return Location(Tree(p.val, p.larger_siblings + [self.tree] + p.smaller_siblings), + p.up) + + def right(self): + if self.path.smaller_siblings: + p: Path = self.path + path = Path(p.val, p.larger_siblings + [self.tree], p.up, p.smaller_siblings[1:]) + return Location(p.smaller_siblings[0], path) + else: + return self + + def left(self): + if self.path.larger_siblings: + p: Path = self.path + path = Path(p.val, p.larger_siblings[:-1], p.up, [self.tree] + p.smaller_siblings) + return Location(p.larger_siblings[-1], path) + + def to_tree(self): + u = self.up() + if u.path is None: + return u.tree + else: + return u.to_tree() + + def __repr__(self): + return f"L({self.tree}, {self.path})" + + +class T1(unittest.TestCase): + log = logging.getLogger("T1") + + @staticmethod + def f(t: Tree): + return Tree(99, t.children) + + def test_tree(self): + t1 = Tree(3, [Tree(1), Tree(5)]) + self.assertEqual(repr(t1), "(3->(1),(5))") + self.assertTrue(t1 == t1) + self.assertFalse(t1 == Tree(3)) + self.assertFalse(t1 == Tree(3, [Tree(1)])) + self.assertFalse(t1 == Tree(3, [Tree(5), Tree(1)])) + self.assertEqual(self.f(t1), Tree(99, [Tree(1), Tree(5)])) + + def test1(self): + t1 = Tree(3, [Tree(1), Tree(5)]) + self.log.info(t1) + + l1 = Location(t1) + self.log.info(l1) + + self.log.info(l1.down()) + self.log.info(l1.down().down()) + + l2 = l1.down() + l3 = l2.right() + self.log.info(l3) + self.log.info(l3.left()) + l3.to_tree() + self.log.info(repr(l3.to_tree())) diff --git a/tree_zipper_logging.yaml b/tree_zipper_logging.yaml new file mode 100644 index 0000000..816778d --- /dev/null +++ b/tree_zipper_logging.yaml @@ -0,0 +1,18 @@ +version: 1 +formatters: + simple: + format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s' +handlers: + console: + class: logging.StreamHandler + level: DEBUG + formatter: simple + stream: ext://sys.stdout +loggers: + logb: + level: DEBUG + handlers: [console] + propagate: no +root: + level: DEBUG + handlers: [console] \ No newline at end of file From 2b620497cef6d1bb05211b145f00d3d8101a5bfd Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Mon, 4 Mar 2019 18:44:14 +0100 Subject: [PATCH 06/56] basicpython-11 Pandas: work through 10 min to pandas --- pandas/notes_10min.py | 141 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 pandas/notes_10min.py diff --git a/pandas/notes_10min.py b/pandas/notes_10min.py new file mode 100644 index 0000000..e80e97b --- /dev/null +++ b/pandas/notes_10min.py @@ -0,0 +1,141 @@ +# https://pandas.pydata.org/pandas-docs/stable/getting_started/10min.html + +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt + +s = pd.Series([1, 2, 3, np.nan, 6, 8]) + +t = pd.Series([11, 22, np.nan, 33, 66, 88]) +pd.concat([s, t]) +df_1: pd.DataFrame = pd.concat([s, t], axis=1) +df_1.rename({0: "hi", 1: "ho"}) # rows +df_1.rename(index={0: "hi", 1: "ho"}) # rows +df_1.rename(columns={0: "hi", 1: "ho"}) # columns + +dates = pd.date_range('20130101', periods=6) +pd.date_range('20130101', periods=6, freq='H') # hours +len(pd.date_range('20130101', '20130102', freq='H', closed='left')) # 24 + +df = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list('ABCD')) +df + +df2 = pd.DataFrame({'A': 1., + 'B': pd.Timestamp('20130102'), + 'C': pd.Series(1, index=list(range(4)), dtype='float32'), + 'D': np.array([3] * 4, dtype='int32'), + 'E': pd.Categorical(["test", "train", "test", "train"]), + 'F': 'foo'}) + +df2 +df2.dtypes +df2.A + +df.head() +df.tail(3) +df.sample(2) +df.index +df.columns +df.describe() # summary of data +df.to_numpy() # expensive if not already uniform in type +df.T # transpose +df.sort_index(axis=1, ascending=False) +df.sort_values(by="A", ascending=False) # sort rows by a column +df.sort_values(axis=1, by="2013-01-02") # sort columns by a row + +df.loc['20130102':'20130104', ['A', 'B']] +df.loc['20130102', ['A', 'B']] + +df[df.A > 0] +df[df > 0] + +df2 = df.copy() +df2['E'] = ['one', 'one', 'two', 'three', 'four', 'three'] +df2 +df2[df2['E'].isin(['two', 'three'])] +df2[df2.loc[:, 'D'] < 0] + +df2.iloc[3, 5] = np.nan # Note: column E has dtype = object +del df2['E'] # delete column E + +s1 = pd.Series([1, 2, 3, 4, 5, 6], index=pd.date_range('20130102', periods=6)) +s1 +df +df['F'] = s1 # drops last value of series since the index does not appear in the df +df + +pd.concat([df, s1], axis=1) # enlarges both + +df.at[dates[0], 'A'] = 0 + +df2 = df.copy() +df2[df2 < 0] = -df2 +df3 = df.copy() +df3[df3 > 0] = np.nan + +df.dropna() +df.fillna(value=999) +df.isna() + +df.mean() +df.mean(axis=1) + +s = pd.Series([1, 3, 5, np.nan, 6, 8], index=dates).shift(2) +df.sub(s, axis='index') + +df.apply(np.cumsum) +df.apply(np.cumsum, axis=1) +df.apply(lambda x: x.max() - x.min(), axis=1) + +s = pd.Series(np.random.randint(0, 7, size=10)) +s.value_counts() + +# Using these methods / indexers, you can chain data selection operations without using temporary variable. +df.loc[lambda df: df.A > 0, :] +df.loc[:, lambda df: ['A', 'B']] + +df.append(df.iloc[2]) +df.append(df.iloc[2], ignore_index=True) + +df = pd.DataFrame({'A': ['foo', 'bar', 'foo', 'bar', + 'foo', 'bar', 'foo', 'foo'], + 'B': ['one', 'one', 'two', 'three', + 'two', 'two', 'one', 'three'], + 'C': np.random.randn(8), + 'D': np.random.randn(8)}) + +df.groupby('A').sum() +df.groupby(['A', 'B']).sum() + +tuples = list(zip(*[['bar', 'bar', 'baz', 'baz', + 'foo', 'foo', 'qux', 'qux'], + ['one', 'two', 'one', 'two', + 'one', 'two', 'one', 'two']])) +index = pd.MultiIndex.from_tuples(tuples, names=['first', 'second']) +df = pd.DataFrame(np.random.randn(8, 2), index=index, columns=['A', 'B']) +df.stack() +df.stack().unstack(0) + +df = pd.DataFrame({"A": ["foo", "foo", "foo", "foo", "foo", + "bar", "bar", "bar", "bar"], + "B": ["one", "one", "one", "two", "two", + "one", "one", "two", "two"], + "C": ["small", "large", "large", "small", + "small", "large", "small", "small", + "large"], + "D": [1, 2, 2, 3, 3, 4, 5, 6, 7], + "E": [2, 4, 5, 5, 6, 6, 8, 9, 9]}) +pd.pivot_table(df, index=['A'], columns=['B'], values='D', aggfunc=np.sum) +pd.pivot_table(df, index=['A'], columns=['B'], values='D', aggfunc=np.mean) + +df = pd.DataFrame({"id": [1, 2, 3, 4, 5, 6], "raw_grade": ['a', 'b', 'b', 'a', 'a', 'e']}) +df["grade"] = df["raw_grade"].astype("category") +df["grade"].cat.categories = ["very good", "good", "very bad"] +df["grade"] = df["grade"].cat.set_categories(["very bad", "bad", "medium", "good", "very good"]) +df['grade'].value_counts() +df.sort_values(by='grade') + +ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000)) +ts = ts.cumsum() +ts.plot() +plt.show() From 732fd459739680878d9847c8fea0560c9cfd1c31 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 17 Apr 2019 13:28:59 +0200 Subject: [PATCH 07/56] note on indexing and dropping to Series --- pandas/misc_pandas.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pandas/misc_pandas.py diff --git a/pandas/misc_pandas.py b/pandas/misc_pandas.py new file mode 100644 index 0000000..a6383b4 --- /dev/null +++ b/pandas/misc_pandas.py @@ -0,0 +1,15 @@ +import pandas as pd + +x1 = pd.DataFrame([[1, 2], [3, 4], [5, 6]], columns=['a', 'b'], index=pd.RangeIndex(2, 5)) +x2 = pd.DataFrame([[1, 2], [3, 4], [5, 6]], columns=['a', 'b'], index=pd.RangeIndex(1, 4)) + +pd.concat([x1, x2], axis=1) +x3 = pd.concat([x1, x2]) +x3.loc[2, ['b']] +x3.iloc[[2]] +x3.loc[[1]] + +x3.loc[1] # this is a Series +x3.loc[2] # this is a DataFrame +x3.loc[[1]] +x3.loc[[2]] # are both dataframes. From 9de3be92776ba8e671782164a3dda39ada376982 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Tue, 23 Apr 2019 09:57:52 +0200 Subject: [PATCH 08/56] wip --- coopinheritance.py | 62 +++++++++++++++++++++++++++++++++++ exceptexceptexcept.py | 45 +++++++++++++++++++++++++ howtomock.py | 31 ++++++++++++++++++ pandas/crosstable.py | 15 +++++++++ pandas/split_apply_combine.py | 61 ++++++++++++++++++++++++++++++++++ 5 files changed, 214 insertions(+) create mode 100644 coopinheritance.py create mode 100644 exceptexceptexcept.py create mode 100644 howtomock.py create mode 100644 pandas/crosstable.py create mode 100644 pandas/split_apply_combine.py diff --git a/coopinheritance.py b/coopinheritance.py new file mode 100644 index 0000000..fc02493 --- /dev/null +++ b/coopinheritance.py @@ -0,0 +1,62 @@ +class AA: + def __init__(self): + print(f"start AA.__init__ {self.__dict__}") + self.aa = True + super().__init__() + + def ff(self): + print("AA.ff") + + +class A(AA): + def __init__(self): + print(f"start A.__init__ {self.__dict__}") + self.xx = 9 + super().__init__() + super().ff() + print(A.__mro__) + + def f(self): + print("A.f") + + +class B(AA): + def __init__(self): + print(f"start B.__init__ {self.__dict__}") + self.b = True + super().__init__() + + def f(self): + print("B.f") + + def ff(self): + print("B.ff") + + +class C(A, B): + def __init__(self): + print(f"start C.__init__ {self.__dict__}") + super().__init__() + print(f"end C.__init__ {self.__dict__}") + super().f() + + +C() + + +class A1: + def f(self): + print("A1.f") + + def g(self): + print("A1.g") + self.f() + + +class B1(A1): + def f(self): + print("B1.f") + super().f() + +b1 = B1() +b1.g() diff --git a/exceptexceptexcept.py b/exceptexceptexcept.py new file mode 100644 index 0000000..77e4e5d --- /dev/null +++ b/exceptexceptexcept.py @@ -0,0 +1,45 @@ +class E1(Exception): + def __init__(self, message): + self.message = message + + +def f(m: str): + raise E1(m) + + +def g(): + try: + f("from g") + except TimeoutError as e: + pass + # I know this doesn't happen + finally: + print("finally here") + # raise E1("from finally") + return + # check if there was still an exception pending, then continue with it. + print("not this") + return + + +g() + + +def h(): + try: + g() + print("yes this") + except E1 as e: + print("this") + + +def i(): + try: + print("this") + raise Exception() + return 5 + finally: + print("that'") + + +i() diff --git a/howtomock.py b/howtomock.py new file mode 100644 index 0000000..8400473 --- /dev/null +++ b/howtomock.py @@ -0,0 +1,31 @@ +"""How to mock""" + +from unittest import mock + +from unittest.mock import _Call + +m = mock.Mock(name="mockthis") + +m() +m() +m(1,2,3) +assert m.call_count == 3 +assert m.call_args == ((1, 2, 3), {}) + +m.reset_mock() +assert m.call_count == 0 + +def f(x): + return x + 2 + +m.f = f + +class A: + def __init__(self, val): + self.val = val + +a = A(11) +print(a.val) +with mock.patch.object("A", 'val', 99): + print(a.val) +print(a.val) diff --git a/pandas/crosstable.py b/pandas/crosstable.py new file mode 100644 index 0000000..19e33c0 --- /dev/null +++ b/pandas/crosstable.py @@ -0,0 +1,15 @@ +import pandas as pd +import numpy as np +import random + +df1 = pd.DataFrame({'A': range(20), 'B': range(20), 'C': random.choices([1, 2, 3], k=20)}) +df2 = pd.DataFrame({'A': range(10), 'B': range(10), 'C': random.choices([1, 2, 3], k=10)}) +pd.crosstab(df2.A, df1.A) + +pd.concat([df1, df2], axis=1) +pd.concat([df1, df2], axis=1).dtypes + +df1['A'].map(pd.Series([11,22,33])) +df1['A'].map(pd.Series([11,22,33])).map(lambda x: x + 3) +df1['A'].map(pd.Series([11,22,33])).map(lambda x: f"yo {x} yo") +df1['A'].map(pd.Series([11,22,33])).map(lambda x: f"yo {x} yo", na_action='ignore') diff --git a/pandas/split_apply_combine.py b/pandas/split_apply_combine.py new file mode 100644 index 0000000..7689cb5 --- /dev/null +++ b/pandas/split_apply_combine.py @@ -0,0 +1,61 @@ +"""Group By: split-apply-combine + +Notes: https://pandas.pydata.org/pandas-docs/stable/user_guide/groupby.html +""" + +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt + +df = pd.DataFrame([('bird', 'Falconiformes', 389.0), + ('bird', 'Psittaciformes', 24.0), + ('mammal', 'Carnivora', 80.2), + ('mammal', 'Primates', np.nan), + ('mammal', 'Carnivora', 58)], + index=['falcon', 'parrot', 'lion', 'monkey', 'leopard'], + columns=('class', 'order', 'max_speed')) + +grouped = df.groupby('class') +grouped2 = df.groupby('order', axis='columns') # <= no comprehension of this at all yet +grouped3 = df.groupby(['class', 'order']) + +df.groupby('class').apply(lambda x: print(f"group {x}")) # Note first group is printed twice + +grouped3.mean() +df.fillna(9900).groupby(['class', 'order']).mean() + +grouped.max() +grouped['max_speed'].max() +# Series has the name max_speed. grouped['max_speed'] is just that column under the grouping + +df2 = pd.DataFrame({'A': ['foo', 'bar', 'foo', 'bar', + 'foo', 'bar', 'foo', 'foo'], + 'B': ['one', 'one', 'two', 'three', + 'two', 'two', 'one', 'three'], + 'C': np.random.randn(8), + 'D': np.random.randn(8), + 'E': np.arange(8) + 11}) + +df3 = df2.set_index(['A', 'B']) +grouped4 = df3.groupby(level=df3.index.names.difference(['B'])) + + +def get_letter_type(letter): + if letter.lower() in 'aeiou': + return 'vowel' + else: + return 'consonant' + + +grouped5 = df2.groupby(get_letter_type, axis=1) + +arrays = [['bar', 'bar', 'baz', 'baz', 'foo', 'foo', 'qux', 'qux'], + ['one', 'two', 'one', 'two', 'one', 'two', 'one', 'two']] +index = pd.MultiIndex.from_arrays(arrays, names=['first', 'second']) +s = pd.Series(np.arange(8), index=index) +s.groupby(level=1).sum() +s.groupby(level=0).sum() + + +index = pd.date_range('10/1/1999', periods=1100) +ts = pd.Series(np.random.normal(0.5, 2, 1100), index) From 7de3ef65a87e251e0a701a7292e02d5dfedad0ab Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 24 Apr 2019 10:19:58 +0200 Subject: [PATCH 09/56] wip --- pandas/misc_pandas.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pandas/misc_pandas.py b/pandas/misc_pandas.py index a6383b4..a3e1640 100644 --- a/pandas/misc_pandas.py +++ b/pandas/misc_pandas.py @@ -9,7 +9,12 @@ x3.iloc[[2]] x3.loc[[1]] -x3.loc[1] # this is a Series -x3.loc[2] # this is a DataFrame +x3.loc[1] # this is a Series +x3.loc[2] # this is a DataFrame x3.loc[[1]] -x3.loc[[2]] # are both dataframes. +x3.loc[[2]] # are both dataframes. + +d1 = pd.DataFrame({'a': [1, 2, 3]}) +d1['b'] = d1['a'] * 11 +d2 = pd.DataFrame({'a': [2, 3, 4]}) +d2['c'] = d2['a'] * 11 From 231edbc78557d4ef22468db95c282c94e3f29477 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Tue, 2 Jul 2019 11:07:28 +0200 Subject: [PATCH 10/56] surprising (to me) behavior around chained indexing --- pandas/test_none.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pandas/test_none.py diff --git a/pandas/test_none.py b/pandas/test_none.py new file mode 100644 index 0000000..b7a1fce --- /dev/null +++ b/pandas/test_none.py @@ -0,0 +1,7 @@ +import pandas as pd + +df = pd.DataFrame({'a': ["baab", "bbabbab"]}) +# Chained indexing; so can expect it not to work as intended. However works one more step of surprising. +df.a[2] = None +df # as expected doesn't show the None +df.a # as not expected DOES show the None. A copy is kept in ._item_cache. From 7fa862418fa24f8c73d1f55eb360c02f5cf53575 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Thu, 18 Jul 2019 17:48:12 +0200 Subject: [PATCH 11/56] wip --- choosetest.py | 23 +++++++ pandas/indexing_selecting.py | 37 ++++++++++ pandas/split_apply_combine.py | 7 ++ sendemail.py | 28 ++++++++ stream/stream.py | 35 ++++++++++ testx.py | 22 ++++++ threadstop.py | 80 +++++++++++++++++++++ wheelofsampling.py | 126 ++++++++++++++++++++++++++++++++++ x.py | 9 +++ 9 files changed, 367 insertions(+) create mode 100644 choosetest.py create mode 100644 pandas/indexing_selecting.py create mode 100644 sendemail.py create mode 100644 stream/stream.py create mode 100644 testx.py create mode 100644 threadstop.py create mode 100644 wheelofsampling.py create mode 100644 x.py diff --git a/choosetest.py b/choosetest.py new file mode 100644 index 0000000..866341e --- /dev/null +++ b/choosetest.py @@ -0,0 +1,23 @@ +import collections +import random +import pandas as pd + + +class C1: + def __init__(self, xs): + self._xs = xs + + def __len__(self): + return len(self._xs) + + def __getitem__(self, item): + return self._xs[item] + + +c1 = C1([11, 22, 33]) + +cs = [random.choice(c1) for _ in range(1000)] +pd.Series(cs).value_counts() +collections.Counter(cs) + +collections.UserDict diff --git a/pandas/indexing_selecting.py b/pandas/indexing_selecting.py new file mode 100644 index 0000000..c7a16fa --- /dev/null +++ b/pandas/indexing_selecting.py @@ -0,0 +1,37 @@ +# https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html + +# axis labeling: identifies data, enables automatic and explicit data alignment, allows getting and setting of subsets +# of the data + +# Warning: sometimes a copy or reference of the data is returned. When setting data avoid chained assignment. + +# use .loc and .iloc +# use [] for selecting lower dimensional slices + +import pandas as pd +import numpy as np + +df1 = pd.DataFrame({'a': np.arange(4), 'b': np.arange(1, 5), 'd': np.arange(2, 6)}) + + +df1[['a', 'b']] = df1[['b', 'a']] # this reverses columns, repeat to reverse back +df1.loc[:, ['a', 'b']] = df1[['b', 'a']] # this does not reverse columns, b/c columns are aligned before assignment +df1.loc[:, ['a', 'b']] = df1[['b', 'a']].to_numpy() # this does swap b/c in getting the raw values the alignment info + # is dropped + +# .loc: purely label based indexing +# in slices start and end are included + +# .iloc: purely integer based indexing +# in slices start is included, end is not -> as in python and numpy is usual + +# both .loc and .iloc can take a callable as argument, can be used to avoid assigning a temporary variable + +df1.loc[lambda df: df.a >= 1] # in this example imagine first doing some operations on df1 chaning the contends + # chaning which rows are selected (possibly) + +# don't index with missing labels, use reindex in stead. + +# selecting random .sample arguments n for count, and weights if want weighted sample + +# .at label based scalar lookups, .iat integer based scalar lookups. They are more efficient b/c can avoid some overhead. diff --git a/pandas/split_apply_combine.py b/pandas/split_apply_combine.py index 7689cb5..f996a96 100644 --- a/pandas/split_apply_combine.py +++ b/pandas/split_apply_combine.py @@ -59,3 +59,10 @@ def get_letter_type(letter): index = pd.date_range('10/1/1999', periods=1100) ts = pd.Series(np.random.normal(0.5, 2, 1100), index) + +# missing values + +dfm_1 = pd.DataFrame({'a': [1, 1, 2, np.nan, np.nan], 'b': [1, np.nan, 2, np.nan, 2], 'c': np.arange(5), 'd': [1, np.nan, 2, 2, 2]}) +dfm_1.groupby('a').agg('count') +dfm_1.fillna({'a': -999}) +dfm_1.fillna({'a': -999}).groupby('a').agg(['count', 'size']) diff --git a/sendemail.py b/sendemail.py new file mode 100644 index 0000000..4853a9a --- /dev/null +++ b/sendemail.py @@ -0,0 +1,28 @@ +import email +import mimetypes +import smtplib + +from email.mime.base import MIMEBase +from email.mime.multipart import MIMEMultipart + +user = "kasterma@kasterma.net" +pw = "zw3y65k788hecch9" +server = smtplib.SMTP_SSL(host="smtp.fastmail.com", port=465) +server.login(user=user, password=pw) + +msg = MIMEMultipart() +msg['To'] = "kasterma@kastermaa.net" +msg['From'] = "kasterma@kasterma.net" +msg['Subject'] = "With file attached" + + +with open("test_sheet.xlsx", "rb") as f: + mt = mimetypes.guess_type("test_sheet.xlsx")[0].split("/") + msg_file = MIMEBase(mt[0], mt[1]) + msg_file.set_payload(f.read()) + +email.encoders.encode_base64(msg_file) +msg_file.add_header('Content-Disposition', 'attachment', filename="test_sheetttt.xlsx") + +msg.attach(msg_file) +server.sendmail("kasterma@kasterma.net", "bart.kastermans@kpn.com", msg.as_string()) diff --git a/stream/stream.py b/stream/stream.py new file mode 100644 index 0000000..03eb84b --- /dev/null +++ b/stream/stream.py @@ -0,0 +1,35 @@ +import itertools +import logging +import yaml +from logging.config import dictConfig + +with open("stream/logging.yaml") as f: + d = yaml.safe_load(f) + dictConfig(d) + +log = logging.getLogger("stream") + + +class Source: + def __init__(self): + self.next = 0 + + def __next__(self): + val = self.next + self.next += 1 + log.info(f"Source: {val}") + return val + + +class Group: + def __init__(self, size, src): + self.src = src + self.size = size + + def __next__(self): + buf = [next(self.src) for _ in range(self.size)] + log.info(f"Group: {buf}") + return buf + + +g = Group(3, Source()) diff --git a/testx.py b/testx.py new file mode 100644 index 0000000..790c7d9 --- /dev/null +++ b/testx.py @@ -0,0 +1,22 @@ +# seeing how testing in async context could work + +from asynctest import mock, CoroutineMock +import asyncio + +with mock.patch("x.X", autospec=True) as patchx: + from x import X + xx = X() + print(xx) + print(xx.f) + print(xx.g) + + async def cg(): + await xx.g(4) + + loop = asyncio.get_event_loop() + loop.run_until_complete(cg()) + + CoroutineMock() + + xx.g.assert_awaited() + diff --git a/threadstop.py b/threadstop.py new file mode 100644 index 0000000..0ae4772 --- /dev/null +++ b/threadstop.py @@ -0,0 +1,80 @@ +# quick experiment in stopping threads +import time +from functools import wraps +from threading import Thread + +import six + + +class Task(Thread): + """ + The Threaded object returned by the @threaded decorator below + """ + + def __init__(self, method, *args, **kwargs): + super(Task, self).__init__() + self.method = method + self.name = 'DEVaultThread' + self.args = args + self.kwargs = kwargs + self._result = None + self.__exc_info = None + + def run(self): + try: + self._result = self.method(*self.args, **self.kwargs) + except: + self.__exc_info = sys.exc_info() + + @property + def result(self): + self.join() + if self.__exc_info is not None: + six.reraise(*self.__exc_info) + return self._result + + +def threaded(function=None, daemon=False): + """Decorator for making a method call into a threaded background taks. + + Use this for e.g. a thread in the background that keeps checking on a configuration or secrets server to see if the + configuration or secrets have been updated. + """ + + def wrapper_factory(func): + @wraps(func) + def get_thread(*args, **kwargs): + t = Task(func, *args, **kwargs) + if daemon: + t.daemon = True + t.start() + return t + + return get_thread + + if function: + return wrapper_factory(function) + else: + return wrapper_factory + + +class T: + def __init__(self): + self.running = False + + @threaded + def print_2(self): + if self.running: + print("already running") + return + + self.running = True + + while self.running: + print(2) + time.sleep(10) + + print("done done") + + def stop(self): + self.running = False diff --git a/wheelofsampling.py b/wheelofsampling.py new file mode 100644 index 0000000..d25d183 --- /dev/null +++ b/wheelofsampling.py @@ -0,0 +1,126 @@ +# Running some tests on wheel sampling + +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt + + +def kl_divergence(ps, qs): + return np.sum(ps * np.log2(ps / qs)) + + +ps = np.array([0.36, 0.48, 0.16]) +qs = np.ones(3)/3 + +indices = np.arange(len(ps)) +width = 0.45 +plt.bar(indices - width/2, ps, width=width, label="p") +plt.bar(indices + width/2, qs, width=width, label="q") +plt.xticks([0, 1, 2], ['0', '1', '2']) +plt.legend() +plt.title("Showing the two distributions") +plt.text(1.3, 0.45, f"$D_{{KL}}(p \\parallel q) = {kl_divergence(ps, qs):.4}$") +plt.text(1.3, 0.42, f"$D_{{KL}}(q \\parallel p) = {kl_divergence(qs, ps):.4}$") +plt.show() + +kl_divergence(ps, qs) +kl_divergence(qs, ps) + + +def ent(ps): + return -np.sum(ps*np.log2(ps)) + + +def normalize(cs) -> np.array: + """Given a sequence of weights, normalize to a distribution.""" + return np.array(cs / np.sum(cs)) + + +ws = [0.1, 0.5, 7.7] + + +def select_intuitive(ws): + cs = np.cumsum(ws) + r = np.random.uniform(0, sum(ws)) + return np.min(np.where(cs > r)) + + +def select_clever(ws): + index = np.random.randint(0, len(ws)) + beta = np.random.uniform(0, 2*max(ws)) # exact with sum(ws) + c = ws[index] + while c < beta: + index = (index + 1) % len(ws) + c += ws[index] + return index + + +def select_clever_sequence(ws, n, weighted_starting=True): + indices = [] + if weighted_starting: + index = 0 + beta = np.random.uniform(0, sum(ws)) + c = ws[index] + while c < beta: + index = (index + 1) % len(ws) + c += ws[index] + else: + index = np.random.randint(0, len(ws)) # random starting location + beta = ws[index] + c = ws[index] + for _ in range(n): + beta += np.random.uniform(0, 2*max(ws)) + while c < beta: + index = (index + 1) % len(ws) + c += ws[index] + indices.append(index) + return indices + + +N = 100000 +s1 = [select_intuitive(ws) for _ in range(N)] +s2 = [select_clever(ws) for _ in range(N)] +s3 = select_clever_sequence(ws, N) +s4 = select_clever_sequence(ws, N, weighted_starting=False) +d1 = pd.Series(s1).value_counts(normalize=True) +d2 = pd.Series(s2).value_counts(normalize=True) +d3 = pd.Series(s3).value_counts(normalize=True) +d4 = pd.Series(s4).value_counts(normalize=True) +print(d1) +print(d2) +print(d3) +print(d4) + +d_goal = pd.Series(normalize(ws)) + +kl_divergence(d_goal, d1) +kl_divergence(d_goal, d2) +kl_divergence(d_goal, d3) +kl_divergence(d_goal, d4) + + +def collect(ws, n, k, type): + zeros = [] + ones = [] + twos = [] + for _ in range(k): + if type == "clever_sequence": + s = select_clever_sequence(ws, N) + elif type == "clever": + s = [select_clever(ws) for _ in range(N)] + elif type == "intuitive": + s = [select_intuitive(ws) for _ in range(N)] + else: + print("invalid type") + return None + cs = pd.Series(s).value_counts() + zeros.append(cs[0]) + ones.append(cs[1]) + twos.append(cs[2]) + return {1: ones, 0: zeros, 2: twos} + + +col1 = collect(ws, N, 100, "intuitive") +np.mean(col1[0]) +np.mean(col1[1]) +np.mean(col1[2]) diff --git a/x.py b/x.py new file mode 100644 index 0000000..37515c5 --- /dev/null +++ b/x.py @@ -0,0 +1,9 @@ +# some async code to test in mocking context + +class X: + def f(self): + return 3 + + async def g(self, x): + return 4 + x + From 572da51c99ce3b842a355840c354cee539f5d798 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Mon, 2 Sep 2019 11:13:35 +0200 Subject: [PATCH 12/56] feat: dinner plate stacks problem --- leetcode/dinner-plate-stacks/README.md | 43 ++ .../dinner_plate_stacks.py | 389 ++++++++++++++++++ 2 files changed, 432 insertions(+) create mode 100644 leetcode/dinner-plate-stacks/README.md create mode 100644 leetcode/dinner-plate-stacks/dinner_plate_stacks.py diff --git a/leetcode/dinner-plate-stacks/README.md b/leetcode/dinner-plate-stacks/README.md new file mode 100644 index 0000000..ed03e97 --- /dev/null +++ b/leetcode/dinner-plate-stacks/README.md @@ -0,0 +1,43 @@ +# Notes on Dinner Plate Stacks + +- 1172. Dinner Plate Stacks, https://leetcode.com/problems/dinner-plate-stacks/ + +Plain solution first to mind was record capacity, and keep a list of lists for the stacks. Search for the insertion +point. Remove a stack that is empty, making the pop point the the last list in the list of lists. Added a `__repr__` +to use in tests (where I asserted the state of the solution by checking state of the `repr`) + +In initial optimization steps (since the solution was too slow) I had forgotten about the search for insertion point, +and was worried that the memory allocation and reallocation for the list of lists was the problem. + +When this didn't work came back to optimizing the search for insertion point, tried I heap but since I didn't observe +a key invariant (that I still can't formulate well; but essentially when popping a lot there are possible insertion +points on the heap that are past where there still are stacks, emptying the heap when you first have to create a new +stack for the insertion point provided by the heap solves this). + +That same (or similar) invariant should be able to work when you just keep the list sorted using the bisect module (I +came to heaps through the bisect module; in the docs it is the module just before). + +But the solution that is simpler and fast enough is to just keep track of the current insertion point, shrink it when +you popAtStack for a smaller stack, and search upward when that stack is full. + +# Notes + +1. setting up an invariant that checks things that should be true, that can be slow but easily turned off, helps + greatly with debugging. +2. I didn't have a timing solution available, hence started working on optimizing the wrong thing. Generate long + runs and profile + +# TODOs + +1. be able to generate long runs and profile them. + --> profiling is function level; would not have (directly) indicated that the problem was with the search +2. better test runner for inputs as provided in the problem. + --> since other problems don't use same scheme, skip on this +3. come up with the right invariant that makes it obvious the heap solution works. + --> if exists i in H i > len(stacks), then len(stacks) in H + --> after working with that invariant, noticed can simplify the code a bit more by no longer using it +4. in browsing other peoples solution, using a set in place of a heap also made it fast enough. Learn the timing + properties of sets as well. + --> separate project +5. testing if index would work before inserting, versus trying it and catching the error. What is the speed difference? + --> difference seems minimal diff --git a/leetcode/dinner-plate-stacks/dinner_plate_stacks.py b/leetcode/dinner-plate-stacks/dinner_plate_stacks.py new file mode 100644 index 0000000..f648e24 --- /dev/null +++ b/leetcode/dinner-plate-stacks/dinner_plate_stacks.py @@ -0,0 +1,389 @@ +import time + +from heapq import heappush, heappop + + +class DinnerPlates1: + + def __init__(self, capacity: int): + self.capacity = capacity + self.stacks = [] + + def push(self, val: int) -> None: + idx = 0 + while idx < len(self.stacks) and len(self.stacks[idx]) == self.capacity: + idx += 1 + if idx == len(self.stacks): + # add new stack + self.stacks.append([val]) + else: + self.stacks[idx].append(val) + + def _clean_stacks(self): + # clean up tail of empty stacks + while len(self.stacks) > 0 and len(self.stacks[-1]) == 0: + self.stacks.pop() + + def pop(self) -> int: + if len(self.stacks) == 0: + return -1 + rv = self.stacks[-1].pop() + self._clean_stacks() + return rv + + def popAtStack(self, index: int) -> int: + if index < len(self.stacks) and len(self.stacks[index]) > 0: + rv = self.stacks[index].pop() + self._clean_stacks() + return rv + else: + return -1 + + def __repr__(self): + return f"DinnerPlates({self.capacity}, [" + ", ".join(str(s) for s in self.stacks) + "])" + + +def test_many_push(): + """Check that the profiling finds the search taking a long time""" + + class DinnerPlates1_pf: + + def __init__(self, capacity: int): + self.capacity = capacity + self.stacks = [] + + def _insertpt(self): + idx = 0 + while idx < len(self.stacks) and len(self.stacks[idx]) == self.capacity: + idx += 1 + return idx + + def push(self, val: int) -> None: + idx = self._insertpt() + if idx == len(self.stacks): + # add new stack + self.stacks.append([val]) + else: + self.stacks[idx].append(val) + dp = DinnerPlates1_pf(10) + for i in range(10_000): + dp.push(i) + assert len(dp.stacks) == 1000 + + +class DinnerPlates: + # speed up ideas: + # 1) allocate full stacks at once NOT ENOUGH + # 2) don't delete once allocated, so don't have to reallocate the memory NOT ENOUGH + # 3) add lots of new stacks at the same time MADE SLOWER + # 4) keep list of nonfull stacks HARD TO GET RIGHT (off by 1 errors) + # use heap, and invariant to simplify. Remove all other ideas to simplify as well + + def __init__(self, capacity: int, check_invariant=False): + self.check_invariant = check_invariant # bool indicating if we are computing the debugging invariant + self.capacity = capacity + self.stacks = [] + self.non_full_stack_indices = [] # heap of stacks indices for smaller stacks where room was made + # the invariant shows that when we add an index and then by popping the length of stacks shrinks we don't + # get any problems b/c we can easily detect and then empty the heap, see (**) + self._invariant() + + def _invariant(self): + if self.check_invariant: + for idx in self.non_full_stack_indices: + assert idx >= len(self.stacks) or len(self.stacks[idx]) < self.capacity + for idx, stack in enumerate(self.stacks): + if idx < len(self.stacks) - 1 and len(stack) < self.capacity: + assert idx in self.non_full_stack_indices + + def push(self, val: int) -> None: + # noinspection PyBroadException + try: + idx = heappop(self.non_full_stack_indices) + except Exception as e: + if self.stacks and len(self.stacks[-1]) == self.capacity: + self.stacks.append([val]) + else: + if self.stacks: + self.stacks[-1].append(val) + else: + self.stacks.append([val]) + else: + if idx >= len(self.stacks): + self.non_full_stack_indices = [] # (**) + self.stacks.append([val]) + finally: + self._invariant() + + def _clean_stacks(self): + # clean up tail of empty stacks + while self.stacks and len(self.stacks[-1]) == 0: + self.stacks.pop() + + def pop(self) -> int: + # noinspection PyBroadException + try: + return self.stacks[-1].pop() + except Exception as e: + return -1 + finally: + self._clean_stacks() + self._invariant() + + def popAtStack(self, index: int) -> int: + # noinspection PyBroadException + try: + rv = self.stacks[index].pop() + except Exception as e: + return -1 + else: + heappush(self.non_full_stack_indices, index) + return rv + finally: + self._clean_stacks() + self._invariant() + + def __repr__(self): + return f"DinnerPlates({self.capacity}, [" + \ + ", ".join([str(s) for s in self.stacks]) + "])" + + +class DinnerPlates3: + # with only the optimization to keep track of next insertion point + + def __init__(self, capacity: int, check_invariant=False): + self.capacity = capacity + self.stacks = [] + self.next_insertion = 0 + + def _search_for_next_insertion(self): + """When add element, next insertion point could become larger search for the right point""" + while self.next_insertion < len(self.stacks) and len(self.stacks[self.next_insertion]) == self.capacity: + self.next_insertion += 1 + + def push(self, val: int) -> None: + if self.next_insertion == len(self.stacks): + # add new stack + self.stacks.append([val]) + else: + self.stacks[self.next_insertion].append(val) + + self._search_for_next_insertion() + + def _clean_stacks(self): + # clean up tail of empty stacks + while len(self.stacks) > 0 and len(self.stacks[-1]) == 0: + self.stacks.pop() + + def pop(self) -> int: + if len(self.stacks) == 0: + return -1 + rv = self.stacks[-1].pop() + if self.next_insertion == len(self.stacks): + self.next_insertion -= 1 + self._clean_stacks() + return rv + + def popAtStack(self, index: int) -> int: + if index < len(self.stacks) and len(self.stacks[index]) > 0: + rv = self.stacks[index].pop() + if self.next_insertion > index: + self.next_insertion = index + self._clean_stacks() + return rv + else: + return -1 + + def __repr__(self): + return f"DinnerPlates({self.capacity}, [" + ", ".join(str(s) for s in self.stacks) + "])" + + + +# Your DinnerPlates object will be instantiated and called as such: +# obj = DinnerPlates(capacity) +# obj.push(val) +# param_2 = obj.pop() +# param_3 = obj.popAtStack(index) + + +def test_dp1(): + dp = DinnerPlates(2, True) + dp.push(1) + assert repr(dp) == "DinnerPlates(2, [[1]])" + dp.push(2) + assert repr(dp) == "DinnerPlates(2, [[1, 2]])" + dp.push(3) + assert repr(dp) == "DinnerPlates(2, [[1, 2], [3]])" + dp.push(4) + assert repr(dp) == "DinnerPlates(2, [[1, 2], [3, 4]])" + dp.push(5) + assert repr(dp) == "DinnerPlates(2, [[1, 2], [3, 4], [5]])" + + assert dp.pop() == 5 + assert repr(dp) == "DinnerPlates(2, [[1, 2], [3, 4]])" + + assert dp.pop() == 4 + assert repr(dp) == "DinnerPlates(2, [[1, 2], [3]])" + assert dp.popAtStack(0) == 2 + assert repr(dp) == "DinnerPlates(2, [[1], [3]])" + assert dp.popAtStack(0) == 1 + assert repr(dp) == "DinnerPlates(2, [[], [3]])" + assert dp.pop() == 3 + assert repr(dp) == "DinnerPlates(2, [])" + + +def test_dp2(): + dp = DinnerPlates(2, True) + dp.push(1) + assert repr(dp) == "DinnerPlates(2, [[1]])" + dp.push(2) + assert repr(dp) == "DinnerPlates(2, [[1, 2]])" + dp.push(3) + assert repr(dp) == "DinnerPlates(2, [[1, 2], [3]])" + assert dp.popAtStack(0) == 2 + assert repr(dp) == "DinnerPlates(2, [[1], [3]])" + + assert dp.pop() == 3 + assert repr(dp) == "DinnerPlates(2, [[1]])" + + assert dp.pop() == 1 + assert repr(dp) == "DinnerPlates(2, [])" + + +def test_dp3(): + dp = DinnerPlates(1, True) + dp.push(1) + assert repr(dp) == "DinnerPlates(1, [[1]])" + dp.push(2) + assert repr(dp) == "DinnerPlates(1, [[1], [2]])" + dp.push(3) + assert repr(dp) == "DinnerPlates(1, [[1], [2], [3]])" + assert dp.popAtStack(1) == 2 + assert repr(dp) == "DinnerPlates(1, [[1], [], [3]])" + + assert dp.pop() == 3 + assert repr(dp) == "DinnerPlates(1, [[1]])" + + assert dp.pop() == 1 + assert repr(dp) == "DinnerPlates(1, [])" + + +def test_dp4(): + cmds = ["DinnerPlates", "push", "push", "push", "push", "push", "popAtStack", "push", "push", "popAtStack", "popAtStack", + "pop", "pop", "pop", "pop", "pop"] + args = [[2], [1], [2], [3], [4], [7], [8], [20], [21], [0], [2], [], [], [], [], []] + + dp = None + for cmd, arg in zip(cmds, args): + print(f"Executing {cmd} {arg} with {dp}") + if cmd == "DinnerPlates": + dp = DinnerPlates(arg[0]) + elif cmd == "push": + dp.push(arg[0]) + elif cmd == "popAtStack": + r = dp.popAtStack(arg[0]) + print(f" result: {r}") + elif cmd == "pop": + r = dp.pop() + print(f" result: {r}") + else: + print(f" Error {cmd} {arg}") + + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + + +def time_test1(): + l = list(range(1_000_000)) + with Timer(): + for _ in range(100_000): + x = l.pop() + + +def time_test2(s=1000): + l = list(range(1_000_000)) + with Timer(): + for idx in range(100_000): + l.remove(s + idx) + +def time_test3(): + l = list(range(1_000_000)) + with Timer(): + for idx in range(100_000): + l.remove(idx) + + +def time_test4(t=1): + l = [] + + def step1(new_len, ct): + l.extend([[None for _ in range(new_len)] for _ in range(ct)]) + + def step2(new_len, ct): + for _ in range(ct): + l.append([None for _ in range(new_len)]) + + step = step1 if t == 1 else step2 + + with Timer(): + for _ in range(1000): + step(1000, 100) + +#### todo 5 : try VS if #################### + +class InsertStacks: + """Quick stacks implementation for the two different versions of insert (if / try)""" + def __init__(self, capacity): + self.capacity = capacity + self.stacks = [] + self.cur_stack = 0 + + def insert_if(self, val): + if self.cur_stack < len(self.stacks): + if len(self.stacks[self.cur_stack]) < self.capacity: + self.stacks[self.cur_stack].append(val) + else: + self.stacks.append([val]) + self.cur_stack += 1 + else: + self.stacks.append([val]) + + def insert_try(self, val): + try: + if len(self.stacks[self.cur_stack]) < self.capacity: + self.stacks[self.cur_stack].append(val) + else: + self.stacks.append([val]) + self.cur_stack += 1 + except IndexError as e: + self.stacks.append([val]) + + +def inserts_with_if(): + stacks = InsertStacks(5) + for idx in range(10000): + stacks.insert_if(idx) + return stacks + + +def inserts_with_try(): + stacks = InsertStacks(5) + for idx in range(10000): + stacks.insert_try(idx) + return stacks + + +def test_if_versus_try_if(benchmark): + if_stacks = benchmark(inserts_with_if) + assert len(if_stacks.stacks) == 2000 + + +def test_if_versus_try_try(benchmark): + try_stacks = benchmark(inserts_with_if) + assert len(try_stacks.stacks) == 2000 From 43c01696849537d8507d3de318bfe81fc8aefedf Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 6 Sep 2019 14:59:32 +0200 Subject: [PATCH 13/56] number of valid words; passes functionally but too slow --- leetcode/number-valid-words/numberwords.py | 46 + leetcode/number-valid-words/slowtestcase.py | 110004 +++++++++++++++++ 2 files changed, 110050 insertions(+) create mode 100644 leetcode/number-valid-words/numberwords.py create mode 100644 leetcode/number-valid-words/slowtestcase.py diff --git a/leetcode/number-valid-words/numberwords.py b/leetcode/number-valid-words/numberwords.py new file mode 100644 index 0000000..97889a2 --- /dev/null +++ b/leetcode/number-valid-words/numberwords.py @@ -0,0 +1,46 @@ +# 1178. Number of Valid Words for Each Puzzle +# https://leetcode.com/problems/number-of-valid-words-for-each-puzzle/ + +from typing import List + + +class Solution: + @staticmethod + def _word_puzzle(word: set, puzzle_first: str, puzzle: set) -> bool: + return puzzle_first in word and not word.difference(puzzle) + + def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]: + wordsets = [set(w) for w in words] + return [ + sum(self._word_puzzle(w, puzzle[0], set(puzzle)) for w in wordsets) + for puzzle in puzzles + ] + + +# noinspection PyProtectedMember +def test_word_puzzle(): + assert Solution._word_puzzle(set("test"), "e", set("set")) + assert not Solution._word_puzzle(set("test"), "a", set("set")) + assert not Solution._word_puzzle(set("test"), "e", set("et")) + assert Solution._word_puzzle( + set("test"), "s", set("sdlfjaslfdjdlhgkdsahfkefdjksjsteettt") + ) + + +def test_find_example(): + words = ["aaaa", "asas", "able", "ability", "actt", "actor", "access"] + puzzles = ["aboveyz", "abrodyz", "abslute", "absoryz", "actresz", "gaswxyz"] + answers = [1, 1, 3, 2, 4, 0] + + computed = Solution().findNumOfValidWords(words=words, puzzles=puzzles) + assert answers == computed + + +def test_speed1(benchmark): + from slowtestcase import slow_puzzles, slow_words + print((len(slow_puzzles), len(slow_words))) + + def solution_for(ct): + Solution().findNumOfValidWords(slow_words[:ct], slow_puzzles[:ct]) + + result = benchmark(solution_for, 1000) diff --git a/leetcode/number-valid-words/slowtestcase.py b/leetcode/number-valid-words/slowtestcase.py new file mode 100644 index 0000000..212ec35 --- /dev/null +++ b/leetcode/number-valid-words/slowtestcase.py @@ -0,0 +1,110004 @@ +slow_words = [ + "hckgx", + "kijv", + "jlaubri", + "rxig", + "wolbf", + "hkgw", + "txufg", + "ktov", + "jnhzo", + "hpxwk", + "fngly", + "zgliso", + "jisruzk", + "vnohue", + "ekrlops", + "asgwbfp", + "vkmxe", + "xhvcwb", + "rndcbaw", + "bxglzs", + "pdck", + "nesxdu", + "vhepfw", + "efnzyp", + "gkpwut", + "frqu", + "khowz", + "nelv", + "szmfxqo", + "kywb", + "hctvzlm", + "vjts", + "xhzrai", + "ckgoxm", + "tsvi", + "fqvd", + "mikvafz", + "mfgbyot", + "ayjezt", + "ciwqmrn", + "fniqprk", + "uzmdjc", + "acodgu", + "nsqmauw", + "bjryu", + "ybzcr", + "xotdka", + "vijst", + "fzyb", + "ycwg", + "sdahl", + "bzyqarw", + "daru", + "fskq", + "hqbvxle", + "rkdtg", + "rble", + "rzfwce", + "zjbqw", + "hzrsna", + "hmrces", + "eylqh", + "zmpdb", + "fyped", + "rdhn", + "iurgxy", + "smbya", + "xnhopir", + "ymel", + "hqjyudl", + "yfxz", + "tqyokx", + "gfbwh", + "ulbzpod", + "bjyherp", + "vkryuc", + "vdtlmbz", + "xrcg", + "pwioks", + "mawrpy", + "rdnzyab", + "hvpaylk", + "cvawk", + "kpom", + "jkqan", + "qzsbh", + "rvezyp", + "ezorpa", + "zrnxg", + "kmdewc", + "vtsqgcw", + "honwm", + "ufosi", + "awcqx", + "gwqlf", + "dfwgk", + "mwxani", + "kyge", + "seihtj", + "clfh", + "zfaol", + "xflku", + "lcsd", + "iqjeaxt", + "xzpg", + "ezhoaby", + "pzen", + "dremho", + "dovh", + "yose", + "muxp", + "gsaepl", + "ouvntx", + "nokmw", + "zxbpt", + "waeb", + "gmpbyh", + "djtz", + "anolsd", + "gqlte", + "wusai", + "pqojw", + "ipjeo", + "czyjx", + "orkzmc", + "gbjwhi", + "scbtyq", + "lskqe", + "cybd", + "axryc", + "lsza", + "nzmged", + "rotz", + "fpjk", + "oxqlr", + "nowlcga", + "wjcbu", + "kuhnmwa", + "hlsfwx", + "rxujay", + "zoaj", + "stlr", + "fxvep", + "azphfg", + "trzwjh", + "jeclsgr", + "gzmwfsa", + "equj", + "lmhsy", + "xvychr", + "qcjdpag", + "pzxj", + "omtp", + "hjoxbde", + "bxefz", + "fomuet", + "hmqs", + "jyctpo", + "wtbnua", + "thmvcod", + "fnsj", + "ocljzq", + "hlfyp", + "soqyjr", + "omnvwue", + "uyifpj", + "rtxevz", + "efzdx", + "dowatu", + "fcwjhn", + "rxwauv", + "qjazcp", + "fnyjb", + "gnjluz", + "yxjfulc", + "nrjgmae", + "meuyvan", + "jhoksnt", + "yeiavst", + "jcxmq", + "qlmg", + "wica", + "nxwe", + "wnib", + "euyvqaw", + "hdnfpk", + "naso", + "jbiwmy", + "vjzxifg", + "rwulby", + "qegf", + "kimjdw", + "ndgqj", + "dlohks", + "efkcw", + "hzdjo", + "fcoy", + "uwjld", + "hgzc", + "cgovsxj", + "slhc", + "djhklm", + "bogfyiv", + "tezu", + "gmro", + "ehbyswx", + "zuln", + "trinzy", + "ztxem", + "szdac", + "ktwrm", + "cbwey", + "iwcplfz", + "loqhpbs", + "xybmu", + "uxqispt", + "rjwsnmy", + "ldvtfxa", + "cmbw", + "risqtw", + "qveays", + "ryqlc", + "mnhqovx", + "olctr", + "hnzw", + "iawctq", + "xitje", + "potrmg", + "odeafqh", + "pwzdhmy", + "jgzm", + "cjtlvd", + "ialkz", + "xhdq", + "dlxj", + "dpavm", + "ncum", + "tuvy", + "zeruc", + "btpk", + "vthujqm", + "jvbc", + "bcznkdq", + "dfamxtg", + "gobcdhn", + "vxweu", + "nilrzc", + "euty", + "xjgohtc", + "asunz", + "apov", + "jsmvnw", + "huetl", + "lnwftp", + "zvtpx", + "mbnvc", + "njbcyhf", + "ucohw", + "jempuq", + "fjkoug", + "jrekas", + "ykzc", + "kdat", + "cblwoqs", + "fohyn", + "rcohz", + "mrdlnw", + "towjlbf", + "luoqm", + "fvly", + "nyiov", + "cmpn", + "eyuhkm", + "uloe", + "ludpig", + "avgiuel", + "jkqnhot", + "kwfjt", + "njopdc", + "dszuc", + "amynv", + "tpjnevf", + "dqxlot", + "nvjoilb", + "rdle", + "wzqsivb", + "habzo", + "dqpti", + "ygbnfrq", + "xczwfnt", + "azdknge", + "yvlp", + "wdqpzbc", + "xlodnk", + "hslrv", + "owqlgd", + "uxrkzqh", + "ifdqmk", + "ouesr", + "jswi", + "xuypz", + "fqazv", + "eqsjnoh", + "ezoahmq", + "iqswz", + "dguwqmv", + "iwvko", + "aptqzrx", + "ngow", + "spygfv", + "hcyxvf", + "pvgmib", + "pdzylg", + "qevr", + "vblrmk", + "fsbuzcl", + "cilofp", + "tknb", + "cxal", + "mpqeis", + "mghdxs", + "dhuizn", + "qfdwo", + "uteznr", + "ckpevbq", + "qzlvbr", + "lyaqk", + "pcszr", + "xbkeqja", + "bgsjrtm", + "mfoyjl", + "iyxrhtl", + "mdxga", + "ryqs", + "hrbpoi", + "dekvtno", + "ynfvzsh", + "obizsj", + "hvcsrfe", + "emfu", + "djcq", + "wecf", + "yzvg", + "fwydmkz", + "mvdgat", + "zamtif", + "ycomnz", + "dqfpz", + "odlhcy", + "fvut", + "aduqof", + "wkrm", + "pxfem", + "dpwloa", + "ogxwt", + "tohacve", + "nbhlq", + "fbzig", + "anudej", + "hfoyal", + "hpmkne", + "lwgsb", + "ftnbl", + "qbrag", + "vpszrj", + "xofjgdt", + "sodg", + "eizkthy", + "ihje", + "ospybcx", + "bitg", + "anwqgk", + "vgukf", + "hrxm", + "aysmktz", + "hlbp", + "mtelsx", + "wbhcigp", + "zqyk", + "fwvtcra", + "orxkfwq", + "lyup", + "fudmgbk", + "rxwncmu", + "xrmksuc", + "zltancs", + "ictpbaf", + "woxs", + "hxum", + "eyouvm", + "yoqbmd", + "talgki", + "iflgexd", + "rdkzle", + "vhtb", + "deiymqo", + "rtzyda", + "ztnawmk", + "wmltn", + "famiq", + "etavidc", + "yrgwz", + "syhdurk", + "kdey", + "ycxh", + "bpzd", + "vnhy", + "lbun", + "plyw", + "wnpyrf", + "lvycadi", + "spgd", + "qmjkh", + "zbsa", + "bxpvdu", + "zsatb", + "gjty", + "auvjpxo", + "vuwrice", + "ikblyg", + "uctvase", + "ahzyel", + "xphs", + "mltfqjw", + "zvxptsc", + "tulcdvf", + "mjlwzps", + "yuhwtr", + "vtuxwyd", + "zjsuol", + "nwvq", + "igqu", + "zaiwplm", + "lyiuqd", + "rshyuj", + "zifnpvt", + "rbtldhk", + "dpiqm", + "kvyxqwt", + "mylhxp", + "esjpklr", + "uzmqyhb", + "gnlzab", + "sapiokf", + "pacvwn", + "zabnux", + "umpb", + "soxdnmi", + "szenb", + "bxirna", + "zgtcd", + "nvac", + "owvlst", + "vkwopy", + "sybr", + "dikwh", + "stfwopx", + "tbhfl", + "abum", + "zpmwi", + "rnauve", + "fbwnozm", + "ygsbmuk", + "vtia", + "urhewb", + "fdornvl", + "moeanci", + "gjdnuv", + "dgpc", + "huoxrv", + "gzpjl", + "trbzsj", + "xamufb", + "vqha", + "ylioc", + "wayx", + "vdmo", + "shweiy", + "sihtw", + "shzw", + "bmge", + "eikojny", + "kpgnojy", + "yvuxiko", + "osct", + "rvcgsyk", + "vihyk", + "uhplx", + "lusohky", + "yohxwm", + "teyqfgx", + "rtwu", + "tidhzk", + "gipbqly", + "qoctzvf", + "dsmow", + "ykgs", + "qfbuyna", + "ghmxia", + "tjrov", + "orldh", + "grcifod", + "zihaq", + "lxseco", + "gqorxe", + "encf", + "ynqcd", + "ogdzt", + "vbhm", + "mwiyps", + "vyzgebl", + "kajhzo", + "hfcadzg", + "ojgpldn", + "wsmhbz", + "jxmwv", + "wmlc", + "fxas", + "dylits", + "wncroyb", + "vohnk", + "ahor", + "aemr", + "bloe", + "kgxy", + "tzcmsf", + "axsi", + "vpqiyf", + "jeoits", + "ogkw", + "pyhmlbr", + "ugpoln", + "ohdwmza", + "dotp", + "fehdk", + "bvzst", + "zfxswib", + "idagbsc", + "oxih", + "xmrk", + "naskgvo", + "kgfpr", + "hjdtlsy", + "yhvckg", + "rmsq", + "kiwpm", + "gmzwje", + "qjytgwv", + "ykln", + "nxst", + "lptuwdg", + "xdguhbp", + "unvc", + "gywkvfz", + "cgsehq", + "ljbr", + "hatkg", + "fehxy", + "gldn", + "cejh", + "znfslht", + "hmtxreu", + "jsuwhci", + "cxhlswd", + "hgbjta", + "glhq", + "bpqjncs", + "acbh", + "nkhyubp", + "xgwd", + "cylna", + "zosg", + "sfatyr", + "bnmaho", + "bhsdk", + "pazs", + "vwkux", + "mushbx", + "pmfc", + "lsea", + "ehosnki", + "qvmw", + "uanlemo", + "ztcdgv", + "evfocu", + "mjoeci", + "zhobg", + "czpwl", + "afsghb", + "aqexj", + "nidylh", + "sgxyunm", + "vekpqsj", + "mzbu", + "oayi", + "xcgk", + "utcqb", + "deloy", + "uadj", + "pxmz", + "xfsrtz", + "xvpkos", + "csrh", + "laps", + "ylcrhf", + "owjeb", + "tazpsmy", + "updlyoc", + "lipx", + "bomwix", + "lmehgru", + "eudfzmx", + "ksfir", + "nytp", + "anmdx", + "fiqwoj", + "bvlck", + "efty", + "vahcpso", + "kaorcb", + "ulkcit", + "nhjxzwq", + "tmyqpeh", + "xumslp", + "rhyj", + "zmpsfgt", + "ypqhu", + "vwyoqj", + "gywfq", + "daxhfec", + "sjmav", + "pjhd", + "djav", + "vdqlrz", + "xtwh", + "zpagihb", + "cowebun", + "iocadn", + "hlvcew", + "qohi", + "bnklchw", + "ipzcun", + "vknl", + "pcwkjgo", + "bcsgjzf", + "hsfmigc", + "dpmayq", + "tnjrg", + "mgcnbe", + "gqzkc", + "spjib", + "cbjf", + "jklb", + "qajhgd", + "ktdqu", + "nzxwyj", + "vuoj", + "ylki", + "rpnlaqm", + "bdocij", + "oybzv", + "bgsqjo", + "hsfjowt", + "iqwnmc", + "olnuwy", + "xcdi", + "hjrnyi", + "vtefcia", + "lezamri", + "cist", + "pzxskvr", + "msvo", + "kvsd", + "vjpa", + "alhqtdx", + "zbkoq", + "ztaykb", + "vuwy", + "ldtso", + "ysahij", + "jcpg", + "otabi", + "wroeb", + "qaihn", + "xcgqf", + "gwcb", + "hvljnot", + "qlyaxjr", + "ctag", + "khzu", + "pienjx", + "ilwxm", + "wfmh", + "ulvztp", + "lsgtr", + "dcuh", + "tehdu", + "htlobcy", + "tzry", + "pdqrbae", + "lvntj", + "upwxh", + "iyhqf", + "adsieo", + "dcnrvhm", + "cpaxsy", + "nbfmosj", + "xpin", + "bzgxkn", + "zlab", + "qsro", + "urav", + "vgspe", + "ogwnytm", + "sfhpg", + "hxtdzaj", + "rkhyz", + "gwid", + "krmaify", + "yhkndp", + "noymxrt", + "vxwc", + "yjutl", + "lebk", + "ztaw", + "fmune", + "ghun", + "yrgq", + "owksb", + "qtwjhsz", + "eixy", + "wbxchva", + "kcjg", + "pofxk", + "lfgazh", + "vwbdjs", + "ltod", + "tenbo", + "ygmxsck", + "zbdho", + "calbr", + "yvfc", + "cwjxdl", + "rpkwzb", + "ezmflxa", + "zwla", + "lfhdob", + "rtkwns", + "adso", + "axlj", + "zbolmg", + "phwikyz", + "eywpitd", + "njlcriq", + "pzhat", + "ckazhx", + "umngaz", + "ihmfrv", + "wekgjbl", + "rdnbs", + "tkrsh", + "pfqvxl", + "ltvx", + "aiet", + "pxmgwsq", + "aifbe", + "wtvpugf", + "ldvsyn", + "etyfv", + "bgtxdre", + "caqe", + "tqhsvf", + "lyno", + "ubpyix", + "eiyjb", + "yqoilas", + "dyvw", + "cnitfd", + "dsnfzvg", + "iaukt", + "fvdhw", + "ebgsxqa", + "nyzaw", + "utibem", + "zvcdk", + "yhlecq", + "srfz", + "qocfgin", + "yipnvw", + "ioknvdc", + "zfbkwy", + "vinqc", + "ehls", + "xgawqpd", + "xutgymk", + "dqyjk", + "dslufxq", + "aqzxvgt", + "edtj", + "uijtr", + "lbmz", + "jzgsmx", + "wohg", + "zmrqb", + "gdvz", + "pkqmrw", + "dykv", + "ytek", + "lhienjf", + "ovpt", + "ejirx", + "fvuq", + "wbxrdmp", + "ypdi", + "jymwfv", + "yewgv", + "sndfi", + "bvdzkm", + "yvanm", + "vyepr", + "tsby", + "ukliy", + "xpctyu", + "tzxaps", + "bkegnlx", + "ofae", + "eycads", + "dxuivs", + "wzbanpk", + "skudcgv", + "imdxtcr", + "wkimx", + "oarcx", + "pfjxsh", + "ayfpi", + "ngbdv", + "utesmdb", + "smbuok", + "nply", + "fpqbrj", + "rqauib", + "hxucf", + "yhdt", + "imgjpr", + "eawnldg", + "caxfq", + "mxfbk", + "tzxbqu", + "hfvydp", + "zeos", + "amfuocg", + "izbwgjm", + "yvwc", + "ofcz", + "lkmsy", + "jmyd", + "nzta", + "gqtkjy", + "cgyanjt", + "focits", + "ijex", + "lrfia", + "yecv", + "qxtafu", + "lpcg", + "fkojd", + "exqk", + "ljvk", + "owmkct", + "zehg", + "hjstb", + "idjywh", + "kycqws", + "ebwvdcz", + "aygue", + "wykcthp", + "hymz", + "qlrpfxj", + "odwpy", + "fvhgwl", + "efopvq", + "powrdyi", + "rfovdam", + "mqdrf", + "msrz", + "dvxaezh", + "yjqdxw", + "mhto", + "durf", + "pvayqm", + "mleju", + "brlm", + "godzbxl", + "kgcs", + "bctnv", + "rmqd", + "frgmno", + "ufczrql", + "vdxu", + "zyufwpk", + "dwfj", + "vahuyq", + "dykqh", + "xdvtje", + "lkebwzg", + "nfblo", + "wsjptv", + "ptiy", + "lerj", + "vadgbeo", + "qgexy", + "zwusij", + "tksa", + "lfvi", + "zmgjte", + "czemu", + "zmha", + "iwuf", + "htaqr", + "dzaxlmb", + "tcfr", + "grtol", + "vltcj", + "fmlvuk", + "pgnuko", + "fynkjh", + "qzloyf", + "umdtve", + "cfear", + "cyzgp", + "ohedusp", + "mtszeph", + "vgpuza", + "wsegf", + "ajviql", + "dmqnhwj", + "psjbe", + "egjk", + "dxfl", + "vsfgzn", + "swgeqf", + "eckw", + "xszhk", + "fvpgz", + "aflgvrd", + "uqnpvbl", + "aytznwv", + "ozbu", + "hesalk", + "ixrb", + "dwkq", + "uzqi", + "szin", + "qtbmfra", + "vaon", + "oquwtfk", + "yjmca", + "yiuxbs", + "fsncz", + "play", + "pdaeizk", + "isayzu", + "zjclbna", + "xvbsf", + "leruj", + "klsfub", + "jlkevub", + "zesdlyx", + "rjnvy", + "uhrap", + "zusiml", + "vzlopcs", + "sjxy", + "yaekixs", + "bdufht", + "rznl", + "gkfwxl", + "nskd", + "utvxra", + "houxjb", + "kzcbhs", + "dlomfkh", + "ozub", + "acrf", + "hnxjd", + "rxona", + "mlfyxgh", + "vgzthro", + "cljgo", + "hdejl", + "axhvu", + "pczx", + "lqphxon", + "fhob", + "lxyuj", + "zvgxth", + "lfwh", + "cnmikq", + "cagkh", + "zesrp", + "ynqs", + "lboixrc", + "vsft", + "lhgcxdv", + "grpa", + "yguxrkc", + "huzjwv", + "ivbwm", + "udolzna", + "thlkagb", + "yexaqji", + "pqfm", + "jxfk", + "fmcktnv", + "mytzv", + "bvnhs", + "rfmgny", + "zbsfc", + "vbqgisa", + "idglb", + "ktipfya", + "fburzt", + "gnmjoiu", + "lgxih", + "gxpz", + "kgci", + "rwbzjql", + "jxdthiw", + "raus", + "nfrbhto", + "xjzmu", + "xwhp", + "nzjwae", + "xplfvjn", + "qivjatn", + "fqmix", + "bgxzu", + "zickytm", + "eyicpdv", + "qfzs", + "jaxo", + "tnxawos", + "thkg", + "xboy", + "wgzenyj", + "tpokezm", + "jcykupm", + "tsonzj", + "aviyhwt", + "tqwsxf", + "zrbtqve", + "jvqgxp", + "kjsyrng", + "nfyram", + "doljzi", + "dczw", + "bzjsr", + "ktohbmf", + "pkryjn", + "ucjwv", + "vprshb", + "hkfjy", + "gwim", + "qyodvzu", + "krhujb", + "xdwp", + "qhamjl", + "tarvf", + "aeriz", + "qcgnfat", + "ownfup", + "fqago", + "ukmto", + "mdiz", + "gtvfayi", + "ahwx", + "wbgqdj", + "mvjs", + "nzpebar", + "vuikzqd", + "udplmeq", + "jbmtgi", + "cjyavzu", + "qxgt", + "robta", + "ijual", + "rlidm", + "wsmz", + "dlbhre", + "chais", + "tnrzyho", + "rfqgvuc", + "bvmq", + "buvw", + "mxluw", + "ubfmozc", + "nuehs", + "wkvpz", + "ltvdria", + "lqed", + "xcta", + "wmzhg", + "xvnwzt", + "jfeoyqz", + "azfviy", + "ircy", + "vsix", + "fvhcq", + "ftsedu", + "warylud", + "bokdhiw", + "snigrdp", + "xsnji", + "dwcsb", + "stxu", + "cizq", + "rdfwpac", + "pjud", + "werk", + "dqorpte", + "hmuteyl", + "fonq", + "lesr", + "eqvto", + "xgqa", + "zejot", + "wzxnq", + "tseb", + "cbzyavn", + "eshrmx", + "xusr", + "wbvquif", + "qwvtenr", + "mvugwnd", + "phjgnt", + "meliy", + "zhxrdt", + "lqgw", + "vlbtjcy", + "kchxu", + "njhszf", + "nkgx", + "ftya", + "rxta", + "wrkjiqe", + "nbsltmi", + "nucgla", + "lmfgej", + "tvqhdke", + "uzrcgeq", + "pyaj", + "fsdzjg", + "lmtgkoc", + "stfp", + "nroucf", + "pmxq", + "juniom", + "ywxn", + "wzof", + "lqsdwb", + "bsxjcl", + "gpdy", + "mfwhjiz", + "emof", + "qfxai", + "lqwrg", + "ghtprmn", + "tphinqj", + "miuexjh", + "baih", + "losyw", + "gukrl", + "cvthk", + "uswhxkd", + "ayizxn", + "zpgql", + "hlwju", + "gtcrzqm", + "saygn", + "wrbzleu", + "ctjmk", + "haite", + "yhdztvk", + "feavqim", + "dkgcjr", + "wzcqdm", + "ohmwbu", + "rohqx", + "biueo", + "awsxepg", + "jlater", + "dtwmr", + "adpvik", + "ehrka", + "meduz", + "btep", + "dslorp", + "xgcikuj", + "nfzr", + "wlnf", + "wrnt", + "kjwcv", + "rgoyjaf", + "tsak", + "frnzcw", + "miupljt", + "duqz", + "mgvno", + "tbiwnud", + "incm", + "nohqmg", + "txdlnzb", + "ksixq", + "bmqxvf", + "eqgpa", + "qvzj", + "uigtd", + "pdwisx", + "txldiu", + "qgbste", + "ogauq", + "cwtaykd", + "qkpbyah", + "awkycsh", + "vcypo", + "bkmxv", + "tcamhz", + "gjcp", + "acel", + "mips", + "uygnmp", + "xuhkin", + "rcgqanu", + "itpj", + "raebk", + "kzioeag", + "wfqzchl", + "zkgbax", + "pcmr", + "owgrzn", + "zrpq", + "fiayqe", + "uyhvl", + "vdqsk", + "tkil", + "wmgayxn", + "ieuh", + "xpatsu", + "itvba", + "xgabm", + "rkmfvju", + "xiyo", + "hwnfy", + "snzefp", + "ftanr", + "saxobe", + "dctgfvp", + "ywjkuiv", + "ztkmjga", + "ckfhz", + "urdi", + "ogwmle", + "fdrnu", + "cqhxve", + "pgsfo", + "qbcmhl", + "vnbdwjh", + "durx", + "lmovd", + "pkevafr", + "jybuch", + "qvihm", + "iopemza", + "rjlxn", + "cxemfq", + "dmel", + "xszc", + "nkfqwe", + "mhjig", + "uhokyi", + "uxldtse", + "lykzuso", + "xztqcfe", + "ctpjeri", + "hvcb", + "rcdgk", + "nlydmcu", + "hvsqkdu", + "ipka", + "tyrneg", + "msqnvrh", + "gjxseb", + "tkryz", + "tsly", + "fcjgu", + "pcwkthv", + "xzpcl", + "xszdgcw", + "cyxmn", + "fgtrpeu", + "giuknx", + "fauwvx", + "uqtmokv", + "cgsjyok", + "eupdjf", + "olkyz", + "ilvrdom", + "wniul", + "baoqw", + "mcjbhfw", + "xtmiobw", + "nmkpzer", + "hlxekm", + "zcwqvx", + "niwhcb", + "lfkuez", + "bdqpjo", + "umjveg", + "cfyle", + "fwok", + "wfsdtj", + "kyzufgc", + "lwegvk", + "edtvwr", + "ovxsta", + "vrtlih", + "xhcpd", + "ytrshuv", + "fcbqo", + "uyeh", + "hroednk", + "jdcaqyf", + "nbkvpy", + "butq", + "atpgk", + "joxqgi", + "betuyf", + "nflgbx", + "pqeaks", + "yotjf", + "laqifp", + "wvsizhc", + "lcerkau", + "berik", + "tekqnc", + "xpalsyf", + "bsnxm", + "alhjw", + "isna", + "kepwfoi", + "ygcveqt", + "oelu", + "vawfk", + "ibwdnks", + "ghcrvf", + "bodh", + "jwepcml", + "eohrbys", + "nltdk", + "laecn", + "xvjprq", + "ylrqz", + "shyvg", + "ldzwv", + "bxwephl", + "coxk", + "wjdcb", + "qmlwen", + "xljsw", + "pejahl", + "vulcn", + "iyja", + "akvrh", + "wxutrmh", + "ydrm", + "ahrm", + "kgjwv", + "zywmn", + "rdmoij", + "thrj", + "fgxy", + "fmjk", + "qwlxjpg", + "chlam", + "tvnore", + "bnahx", + "hynl", + "xujmp", + "gxds", + "boadmz", + "mzufv", + "amdjcsv", + "dwhn", + "wvir", + "dbmq", + "meoqvwj", + "wtqkoln", + "hdvkny", + "pecykn", + "zubsvo", + "pmty", + "qubmnwd", + "cyolvze", + "wpnak", + "jmxnk", + "sdlnzy", + "dmxrls", + "qpujzht", + "etcyb", + "boixlzu", + "jmykgx", + "locpqy", + "dmwlov", + "tzvly", + "dlvtsj", + "gwav", + "kvxod", + "ckdu", + "yjuvk", + "fgvsjq", + "pqmkz", + "utgk", + "dzjrqil", + "hogcl", + "dlvzfek", + "uzslny", + "nbom", + "qatokgc", + "gveqtm", + "khzaq", + "priyk", + "facl", + "lgurf", + "osxekl", + "cgjtxku", + "kfoslpg", + "wpdknji", + "pzdeo", + "xqemw", + "pdyo", + "zhbmnl", + "ztbpjq", + "oyvr", + "ihanjs", + "xzmc", + "mjxka", + "yguqzid", + "ikoevl", + "irac", + "xsia", + "gyfs", + "yngv", + "ltsmvnq", + "iyrdc", + "ufojz", + "obtyzr", + "fdrhkzj", + "gdinr", + "jbop", + "jltqry", + "hnevujy", + "sckwyi", + "cpry", + "ixbe", + "nlopcvk", + "ordewk", + "lydzp", + "jstubpl", + "mrwqx", + "qgkfiwb", + "rmwc", + "uqwxd", + "sqwyr", + "iourqfj", + "mzqlnfo", + "exynjlf", + "tqimzo", + "yvrzebi", + "wkze", + "iyezhkd", + "wfsdge", + "oceg", + "mdtrpg", + "olyv", + "xvbhnp", + "gcjupwn", + "qxsf", + "zniymlk", + "etugr", + "elxb", + "zxqun", + "sdju", + "ayvrfsc", + "mohjvdn", + "slukdnh", + "ndia", + "akwf", + "zxky", + "sogimhd", + "qaxpcl", + "rtbs", + "wzyd", + "ousg", + "ctefqzr", + "lkev", + "enohudf", + "whidzsx", + "kjzv", + "xfkt", + "hqwupag", + "lpvc", + "qmyxjvp", + "amsbvp", + "ekpdzc", + "gblsxok", + "yevk", + "yubap", + "pwvhnu", + "xmtz", + "xyjzs", + "cevuta", + "jxdmkvq", + "szifewp", + "exwviln", + "ewcsvd", + "nwyl", + "dukp", + "zcypkw", + "tajs", + "fuvmk", + "ceob", + "uldnohg", + "psarn", + "mftu", + "gqrz", + "hgsa", + "quivt", + "xqzyni", + "xhqlzdv", + "dheyj", + "yzegdi", + "eftnl", + "ugmayh", + "ycblki", + "vapkq", + "ajyci", + "ztpind", + "frgvz", + "frsmnky", + "bgrq", + "tshlfna", + "sxpr", + "tfqdyu", + "dzlyn", + "keju", + "higmspz", + "mcnwk", + "jsxb", + "kfhemzn", + "brampsl", + "qsablpo", + "kjpmt", + "ekagpby", + "swbo", + "guhkmf", + "cxfwn", + "mrvaznf", + "xdapj", + "wxbvetf", + "qewy", + "hlbc", + "fvbewj", + "zrcbjlf", + "rtkhj", + "sguxdif", + "uoxnqfe", + "hixkgy", + "fwlqra", + "ulsift", + "qaejbri", + "umndywf", + "vfhlady", + "dhprky", + "zyunq", + "owsn", + "nrilx", + "ozxaw", + "tfibsq", + "kyiwrl", + "csjxlb", + "cagrldf", + "tzrfscb", + "erixnhl", + "hnitwzg", + "qphlrsa", + "dwbe", + "mdorbnj", + "hqkmp", + "ryuiv", + "fbgn", + "xlohwdt", + "lnykqr", + "shfxny", + "juimxq", + "qibx", + "ienvr", + "qpkn", + "oqlpg", + "xoukf", + "ubicfo", + "hjym", + "nhpxwte", + "wsxe", + "txli", + "jdourl", + "wqifuso", + "fqzi", + "pfiwdb", + "fnrtzc", + "zuriv", + "rkxlde", + "jsfn", + "ewnr", + "qxfjti", + "frvg", + "jhbxog", + "bhgdo", + "bzrg", + "euyq", + "nfzatms", + "htis", + "dosw", + "klbuhqy", + "yodm", + "zpmk", + "gbqrt", + "pcqiewa", + "qwlzbdg", + "twyu", + "jlyvch", + "necw", + "dwphk", + "isdukx", + "nuiqlhw", + "ctphyr", + "ztvd", + "bawg", + "entdohr", + "lfiwoae", + "dczgo", + "ftgnqw", + "zanimx", + "kgnxlhw", + "nhdg", + "ista", + "seiy", + "wsbgi", + "kilp", + "izplohn", + "vzpfkb", + "icdbyfx", + "ezycgv", + "htjboy", + "bnjvyf", + "cdomjlw", + "yeqpks", + "ihxpdm", + "zjwq", + "nxpiyac", + "woqfdl", + "kncht", + "ldzg", + "ajrxt", + "wqbmys", + "fdow", + "zgcbd", + "wijakcn", + "vscjh", + "fruegvc", + "khwspg", + "kthnaez", + "poxaemy", + "ievaop", + "ctdq", + "englr", + "fwta", + "pslq", + "aimsqt", + "dpjh", + "fjkbc", + "kguojia", + "uavpne", + "chpe", + "ekta", + "cizdroq", + "ebwgz", + "nozxpu", + "xazn", + "iujdlfr", + "axjhbcd", + "tcbeun", + "pnxsf", + "xbzncof", + "qadj", + "jwns", + "daisr", + "iozneah", + "vpuch", + "jxug", + "vpoqlu", + "lybm", + "lzyov", + "ibrg", + "viqa", + "pkcnyfd", + "vcmlz", + "vfzdae", + "jqhxf", + "eybmt", + "iaqosj", + "gfvmlw", + "obvhjka", + "hzdwio", + "xleybtu", + "yeqlzrn", + "mkqhfls", + "vlyoqa", + "abnt", + "cyrslf", + "qcvhm", + "ygncwx", + "vcwuidq", + "iohbzy", + "zulny", + "hyazvj", + "obcmf", + "sdgwlxm", + "ctwq", + "wabl", + "jtmxdf", + "usxyfrl", + "fjbd", + "izkp", + "qkczo", + "emydhtv", + "lpdybux", + "kxpi", + "bcvhso", + "ieqjs", + "lciphm", + "lxbfctw", + "uyrb", + "oxaw", + "vzph", + "oasp", + "ymko", + "cuzk", + "kuhpmz", + "ucpqvgj", + "pswax", + "jzxa", + "jpby", + "iklsr", + "ncus", + "ohprt", + "vdkzfn", + "bgsdeoi", + "cjvwxmo", + "fmdles", + "dkys", + "rishuxw", + "zewut", + "cbsm", + "xhuy", + "poin", + "cuil", + "umpnt", + "ubcs", + "csbm", + "cmbjxys", + "arpoj", + "ecsnxzq", + "srwlp", + "khcd", + "plbn", + "tmsegh", + "tzsye", + "khzs", + "wkbd", + "vwjn", + "qjusa", + "huxac", + "pgnb", + "jblzht", + "xmfjasb", + "cxnw", + "umznvlr", + "cvkwrt", + "otdygub", + "itxnwh", + "wfkaypj", + "jgvkui", + "bpzuxl", + "fidm", + "swhx", + "hbls", + "nqaifp", + "tfud", + "ahfk", + "stfa", + "dytj", + "rodlwux", + "zbnip", + "qtvcn", + "lujkvx", + "hukjzvn", + "aryihgl", + "zfthm", + "tpfui", + "ahux", + "lfikenr", + "qaxr", + "qztscd", + "hdrzgu", + "gmpckz", + "nbckjsy", + "nuiafk", + "sbepz", + "gkfyvwd", + "qtps", + "firvyg", + "nmvasuh", + "yeuctk", + "pstifh", + "qymrfd", + "yxglnfh", + "etyxiz", + "bhyzkea", + "oxgcjn", + "gohqit", + "niwedb", + "zxuaym", + "tebzfnr", + "dgxrml", + "jqakwv", + "kelqgrb", + "pkmtda", + "txwim", + "ephmu", + "lkgbtx", + "qtaipc", + "iqdl", + "fihxkm", + "uabrftd", + "qpglnk", + "tivz", + "dwhn", + "rhbtqem", + "rgecidj", + "omfk", + "ojahrnw", + "jwix", + "ozijm", + "bjouk", + "dinym", + "kqwrmcl", + "dmvzgp", + "dxyqsp", + "ptmfbh", + "tzqw", + "octr", + "rlek", + "dyvijo", + "cmahnvr", + "grezayj", + "yiznxs", + "gpfvb", + "qbvch", + "ybhdpz", + "itblw", + "chxkb", + "brwat", + "xzhitfo", + "ntfarku", + "rlgv", + "flzov", + "pvne", + "foab", + "qicuvf", + "wgnpilx", + "dqncmf", + "mxgeuj", + "agtv", + "hijypr", + "lvzfaqb", + "iwlrt", + "deoywkl", + "jyeuvz", + "ugcxz", + "yxnge", + "rluv", + "frlbp", + "vhwas", + "aqoj", + "tvuq", + "flqrk", + "mucaitb", + "gcrzafw", + "wgno", + "yqurpx", + "nepi", + "kyhgpt", + "bhrj", + "imwjz", + "hswmz", + "wxmiba", + "mrho", + "pwmva", + "srmdk", + "bakwtec", + "nmlvrjx", + "qfncsoe", + "oupxtg", + "nglbfh", + "uinqgk", + "zdevxpw", + "knyro", + "ivcfm", + "wgrmo", + "kfzrd", + "olmi", + "pbsyao", + "yizrawg", + "ugbk", + "efbnvl", + "rbwn", + "mysut", + "lmekjg", + "skncbq", + "jbtp", + "lraktc", + "salprce", + "xzlc", + "mirled", + "fxpe", + "qmzyh", + "buehof", + "gcwhi", + "pmzkdb", + "pkqobtj", + "lmiao", + "gmrl", + "jvrhpf", + "lbau", + "mtgj", + "webg", + "irdvmg", + "ntyzicq", + "valk", + "knqtesj", + "iabntq", + "xyzm", + "texrkzh", + "yjpxuq", + "tpgd", + "dsui", + "eliw", + "ihtye", + "vfpokb", + "lzsu", + "ahunivw", + "iroq", + "rmac", + "fcbj", + "hopr", + "gluwie", + "quhygbv", + "tcmf", + "hnus", + "tgdzx", + "ydcqvu", + "derl", + "fekrmba", + "ivtghec", + "dubrxhq", + "hnbo", + "dstownz", + "kpne", + "risvqy", + "xyjbtga", + "wpneqgb", + "exjtu", + "rcmtbox", + "hvpax", + "xpontj", + "gvxzh", + "cgfbykq", + "ymucjrp", + "foiexwp", + "wapzel", + "tyzsf", + "bztkxip", + "qomxbf", + "esuln", + "nijrl", + "ulcgsyk", + "ksre", + "sgma", + "aowhb", + "drtqjpa", + "gizu", + "rmqfxz", + "qahfsb", + "iwso", + "teihrml", + "dtpn", + "pdlr", + "ifqbpg", + "lqkdzxy", + "vmuteiz", + "hodr", + "rvko", + "kjea", + "hixm", + "qkhbpf", + "oumd", + "zosyei", + "dumyaj", + "xohdkib", + "pdkj", + "ayqzp", + "qvalfo", + "mfzuneo", + "wcbx", + "hdei", + "hscruk", + "noxzic", + "hzrps", + "enqrz", + "zrvne", + "tbkzcgx", + "zfpobrg", + "ydch", + "yofj", + "ufzhbo", + "bwpuish", + "fbdea", + "kmcufd", + "lydarg", + "lrydw", + "qpncx", + "xqtfh", + "hizeg", + "iqbsezx", + "nuasmby", + "svck", + "lmisey", + "qwtozi", + "jexgqt", + "zxrvl", + "xiprfn", + "wgpa", + "fhslt", + "xudv", + "imocx", + "vthk", + "bedzny", + "arpklzu", + "awkcvfm", + "xbjsq", + "nzqaubo", + "xafz", + "ctkar", + "hnjvsf", + "envkh", + "oakqx", + "zvyjmc", + "qkwspy", + "dhrlz", + "qexhu", + "cnrz", + "mcgers", + "keuoajv", + "ckni", + "rixvz", + "cpiy", + "bjpd", + "inrbt", + "ktny", + "sbmlg", + "hpqr", + "isgb", + "phymw", + "ftqrcu", + "szpev", + "azbxgpo", + "ytmuwrb", + "zknist", + "sorfnje", + "jometz", + "xskipoq", + "wyes", + "mrcdge", + "zkur", + "tvpsjey", + "pcgl", + "vipmgh", + "kieszl", + "slro", + "kzdfya", + "gwkrh", + "lgkyt", + "mhwxzqi", + "nljadi", + "lfkohym", + "dumcx", + "gtcif", + "jelnf", + "zhcvdrb", + "rgsahoj", + "novxk", + "fclowas", + "rliy", + "pvqc", + "dzfcryp", + "xhuw", + "nhlfvas", + "ouksq", + "xlpeky", + "jqpmsy", + "tsyqj", + "tzjsk", + "icaz", + "kcbnyht", + "forvq", + "khftv", + "khwi", + "ubsfxl", + "hkjqsnw", + "izwxfsc", + "rugf", + "iztqcs", + "thplqgd", + "kfgex", + "pekrs", + "zvmup", + "hejqsya", + "koezguh", + "hniaq", + "ijvrzm", + "uzger", + "sexug", + "jlce", + "yxpgfwi", + "lzqng", + "kgdyzpq", + "tspaok", + "wcnjfom", + "nwjivqz", + "jahfk", + "nfzw", + "pitaqb", + "qdzbi", + "cmnjwp", + "wzifla", + "lkvq", + "iwnlv", + "lgsmz", + "nmexr", + "knahc", + "pqbce", + "rwbchfe", + "peqdsbh", + "cqls", + "gcwpmou", + "uxtkas", + "zkatw", + "xpil", + "ybvqux", + "oujlwp", + "seyzudw", + "wkgq", + "nmzbt", + "ntpcd", + "yskp", + "lypeqz", + "qvhk", + "xmjct", + "sbyvl", + "fyortx", + "zspve", + "jowc", + "mwsrj", + "goctlpm", + "oqagfw", + "pmrnao", + "tbzhiy", + "ycnq", + "brxkpn", + "fjrcg", + "bfyid", + "rmsj", + "mfevktl", + "huentl", + "puzsrd", + "ykrd", + "ycbu", + "lwfrhn", + "wjfv", + "fpazv", + "bfqwtl", + "zshcpda", + "hwujypq", + "jrehv", + "unsgda", + "eumsq", + "ybtjhvx", + "mfgrl", + "fvanxr", + "yecwg", + "swvuqgl", + "caxil", + "ojmnbcx", + "rjdyl", + "bltjsr", + "hnlzfx", + "jrfo", + "uvzl", + "yarw", + "upzm", + "pyxse", + "dvzb", + "elnhd", + "vhcl", + "haysgd", + "rsuymx", + "kiwtval", + "gaxmtf", + "zblqxs", + "akmgsq", + "osxrg", + "hygp", + "hnbc", + "lwiuqap", + "plsmqa", + "rgaensj", + "kdyaex", + "jqdglo", + "iphowf", + "jqowc", + "yjuk", + "pfgxkeo", + "awpoqv", + "nhxj", + "pbvw", + "gqtj", + "vdctro", + "nyioxru", + "plmknbz", + "qhwdrs", + "tmshru", + "oyxn", + "qtfvns", + "duash", + "rjeflt", + "uqbdf", + "pbgnyd", + "arfnk", + "adwu", + "cqsd", + "bsyc", + "repaqn", + "fawdl", + "meuglx", + "igqcfj", + "znmpfjg", + "seqroxw", + "wygepi", + "stbvjx", + "bgdzw", + "xhzlbq", + "spulk", + "drqavtz", + "ixrbgy", + "skzdl", + "uxrt", + "tvjei", + "bwengl", + "jxryk", + "txqvpw", + "efcx", + "xnpvj", + "xkyudnp", + "stuw", + "begkh", + "vgcoath", + "ovyqput", + "lckjo", + "gdyq", + "qhdl", + "lmcvyp", + "jxzsig", + "whvicyq", + "xdesm", + "yoikcn", + "thvz", + "wlck", + "jxyebs", + "zedkufl", + "zbplvjh", + "rfsze", + "xvqky", + "qltufns", + "jwbdov", + "lqcgxu", + "pudr", + "cdgrqz", + "mgcoh", + "zvnyhe", + "cwkiqts", + "frels", + "fsltbmk", + "nwtceqf", + "bqigzol", + "xprau", + "yuljg", + "lcxwm", + "fyicz", + "anhw", + "rwtds", + "anevpw", + "lvri", + "hjzq", + "vbidha", + "wjuid", + "rladmp", + "xlyvt", + "kgxaqf", + "mrtdpb", + "zxdeihy", + "qgpdun", + "mzhk", + "vqmnok", + "gvobhe", + "hsni", + "pmjbh", + "ybmhsa", + "ufzjlm", + "yhnisd", + "kqnvex", + "hkndagv", + "ygno", + "sokvhcp", + "fnhqdlz", + "opsh", + "dopme", + "ntvk", + "nekih", + "fxcrunw", + "hvqrkxc", + "knjwau", + "ripjqy", + "wqcab", + "mqxeo", + "xgwat", + "apzkscr", + "byclf", + "hougibd", + "derp", + "clgvk", + "boziupc", + "ayoqz", + "kvtdf", + "othrz", + "zgmn", + "esobudn", + "drqtlkc", + "okbhpsd", + "rzwaq", + "ewuk", + "yimrfjo", + "zidg", + "xrdwkz", + "mweasxo", + "isghtvp", + "penltx", + "ywgqk", + "ltkzgi", + "epal", + "qeuj", + "eagcu", + "rimq", + "whukyx", + "zyrlap", + "hysbfg", + "hundkc", + "uizqke", + "hvsg", + "zerpv", + "adukc", + "ydvqlx", + "vaky", + "qkdtvlf", + "wieaqy", + "afgs", + "cyogkw", + "kpyvxog", + "orjvnz", + "qsdnm", + "ytncobf", + "tgcumeq", + "tnsxwea", + "aqpcyf", + "baohk", + "bxwk", + "vzolfy", + "vkqch", + "zefnjlp", + "fulckt", + "hdobt", + "pobyc", + "tqbgisf", + "pmnfejr", + "gtlzxbw", + "uacoti", + "nglu", + "tboiw", + "bgrnkic", + "zmicudx", + "asvwohr", + "eafyuc", + "pzyxuwm", + "yhbw", + "ogiz", + "gyfa", + "kujyt", + "xiwdtl", + "zbrq", + "ejcumyl", + "dbpr", + "ejitwc", + "jopdkhg", + "eznlswx", + "zblue", + "fjvwi", + "opwbthj", + "hmzfrpi", + "gayfdq", + "oiskub", + "fherqas", + "loth", + "kexpzma", + "miqo", + "czdh", + "fqrbkxs", + "razbvkx", + "aekwipu", + "pgsjy", + "hnxgrl", + "dbylpo", + "uxtf", + "jwna", + "lhtdpjc", + "jfvcmpq", + "uwvoef", + "ysvtqm", + "eywsc", + "cizdb", + "ipvfdc", + "emlgc", + "hbpxswe", + "suqe", + "ejxmkp", + "ibqxk", + "dvutlh", + "akhnj", + "ektwup", + "sniovpa", + "kredi", + "rfiwy", + "sfrev", + "bvfcq", + "vgyk", + "aqrzocx", + "upxl", + "hmzr", + "ucjg", + "ugwe", + "qxzh", + "ywzqn", + "xpnwvdm", + "hsvmdqb", + "lcwp", + "ltgp", + "kpmsczx", + "mzvgyqp", + "ldxsyo", + "tpfncg", + "melg", + "wsbv", + "tsjzkq", + "ztgwyrx", + "hwuqsm", + "qjnfa", + "wbql", + "viget", + "larz", + "povtekz", + "fkjmo", + "umvlioa", + "hcdzgn", + "vtbeui", + "jfno", + "koif", + "gbjdmix", + "qohgp", + "tuac", + "ocealt", + "jxwzg", + "ikrx", + "xmzq", + "wmyxgo", + "ztvwogq", + "oqrmu", + "bjzi", + "oysjhe", + "avom", + "myosfeb", + "zmpvwo", + "yszr", + "jdth", + "fmicleu", + "rslne", + "wzmrjp", + "ybjqxk", + "vtdyh", + "wlvx", + "nvucm", + "ajzh", + "dhls", + "nhvsjm", + "nrqhe", + "ismweb", + "sdxa", + "cyhendk", + "csxvh", + "oehwlrb", + "aqwp", + "ikvb", + "nkdtzh", + "vbxdzk", + "tlhp", + "zicm", + "vjhak", + "narqcez", + "impjwak", + "dvoyfg", + "gbil", + "xafy", + "xneibm", + "imgqesd", + "eldvkm", + "zvogh", + "uzavo", + "zcst", + "jstk", + "zspli", + "qhrsku", + "yvgoid", + "flcu", + "azifwu", + "kors", + "dfyxo", + "umcqeh", + "xbovwnh", + "bjaw", + "upgob", + "paghbeq", + "aigmtz", + "mvjuqa", + "ovwp", + "ftwormv", + "waudyks", + "slwoi", + "fcdu", + "yzcogsp", + "oieugyc", + "vyoe", + "gudtbeo", + "tqsecg", + "pumzd", + "gdvhbs", + "cpry", + "iqzowv", + "khcy", + "sdzbuq", + "qjegmah", + "tlyxm", + "gmxbi", + "hcxm", + "blqhrp", + "gpxbmy", + "pyiexz", + "uwylr", + "wdbt", + "agzori", + "vfgoyhm", + "fxkj", + "wsepl", + "tzbldpu", + "krew", + "hepbxwq", + "dpcghy", + "qvtxkf", + "ykdems", + "crsbtgp", + "yohw", + "zerlt", + "gwyp", + "gjse", + "kztew", + "wihp", + "jcqfhls", + "xyfu", + "jzaqdf", + "yguxc", + "iztaqcd", + "htwilby", + "aizmflj", + "qnwoyx", + "thiskae", + "dyex", + "xpdg", + "rpjxi", + "efrp", + "fvicaxh", + "fdcup", + "fwoe", + "udqvmgh", + "nksyxh", + "ugisxl", + "gvkoxnc", + "osxb", + "xjypfz", + "sqkjezw", + "lndxz", + "cwyfuok", + "whpkvuj", + "kucfvws", + "aifhbo", + "romepil", + "ztvrslh", + "bunfdpz", + "txfgpy", + "vslz", + "auev", + "poeky", + "cktgno", + "wyldjkx", + "qpld", + "nfgbdhw", + "exibk", + "amhujyn", + "mswn", + "emzsrk", + "yprm", + "nhxyog", + "rygk", + "qohg", + "cmqo", + "xsfhw", + "lrfsj", + "awgh", + "qtjd", + "icoyfv", + "gdaeob", + "qywzr", + "viems", + "knwpd", + "zvsca", + "ogli", + "xhri", + "yltduxe", + "knvfxae", + "vqzcg", + "ormqkpi", + "iqubrw", + "rcald", + "fuzjn", + "muxlisn", + "grufilq", + "dujk", + "wtznuls", + "bvmtjo", + "zfcakx", + "olsmnrd", + "invpgb", + "rkwqo", + "ybhe", + "ycqinaz", + "kwyd", + "dfalgvw", + "ujds", + "ghuy", + "ubaneir", + "hzkd", + "kagqyns", + "bfvxgr", + "rystz", + "jhzpi", + "izstw", + "mytbupv", + "cegxdi", + "qnshk", + "zvti", + "gznqdvl", + "sgavr", + "kxrni", + "fime", + "lesv", + "hsqn", + "zlrqeuo", + "rmobpij", + "pixftc", + "sfane", + "etcolq", + "vbdt", + "ljxy", + "jitdghc", + "abcy", + "xwarzcn", + "zdlfyra", + "pryg", + "szrfb", + "kpalzq", + "fxsyjeu", + "ztwd", + "eoqxzb", + "mqiuda", + "xdflst", + "dheftj", + "scez", + "etmdnbz", + "hzsteuj", + "mhplgz", + "qirunev", + "nebi", + "azco", + "ytsezf", + "ysiz", + "tcihqlp", + "knpfl", + "exvrdbp", + "njomkze", + "knphady", + "auwtbek", + "gevnz", + "bpxcv", + "gpzsldh", + "iysv", + "yiqb", + "xzhrli", + "yumei", + "vjgw", + "bqynwv", + "wjidfq", + "pdimhy", + "kwtifmq", + "bdoynp", + "dfbly", + "mnduf", + "tozjbui", + "cmyj", + "botsiea", + "ezlwsxd", + "bmzj", + "gnots", + "abdnwz", + "hisgvy", + "ztkeos", + "vmpnro", + "fqcesdm", + "wqycn", + "oumgjfs", + "xknfb", + "rotyxum", + "ngvmepf", + "atqm", + "oquksy", + "wjgozhi", + "sgzo", + "vkeod", + "bnsyl", + "bgwhzf", + "vdwuyo", + "jveipsm", + "rplqyew", + "dubt", + "kdiwtcj", + "hoxfv", + "lmxpgk", + "bpaym", + "lfhxoy", + "adljupr", + "rmbhutz", + "rxychkv", + "wbjfe", + "xscbz", + "qkfr", + "iexhqpf", + "jhfawx", + "cptg", + "bmswzy", + "efvqdrm", + "oarvdmg", + "zxivo", + "aicn", + "lwcakpr", + "mayzfs", + "igqtkl", + "wgmu", + "bcyl", + "krli", + "gtpfbc", + "waopyx", + "epokjga", + "qwigfd", + "hstdmbn", + "qfxt", + "retjlq", + "halfd", + "kdgp", + "ljkym", + "msgz", + "uzsh", + "qkbvlon", + "fpuj", + "jroxug", + "tvsjnpb", + "utzag", + "bkse", + "sduapjk", + "ybeasic", + "brih", + "ydfbpor", + "mrfwyqt", + "azis", + "oajtsq", + "dzps", + "sabg", + "tkrqx", + "urkiqh", + "zxrmhp", + "wzur", + "brqn", + "gihq", + "yzlux", + "gswj", + "otdu", + "vzukcoy", + "gupwmxn", + "gymwq", + "hpqvt", + "kvnht", + "klosbr", + "uijlby", + "vasqk", + "tldvce", + "xzhr", + "tuds", + "zjtxiw", + "siayp", + "ckhmbz", + "xzdqwag", + "pbmco", + "dsjepc", + "ewrp", + "wabvoc", + "yojbpc", + "relpiaw", + "aemvwl", + "lzeroy", + "gfsyni", + "coumaf", + "wjvyh", + "jvwbqsd", + "rety", + "lpyfaus", + "vohbtf", + "izbv", + "joky", + "vaqlb", + "xleosh", + "aemoxug", + "eorj", + "swju", + "rwfjvau", + "hiwer", + "ihnq", + "xwsv", + "ujmcvy", + "jcdbwq", + "odnwxp", + "syvxj", + "vueogky", + "enbsciz", + "urpwnso", + "jlkaitv", + "mohdlka", + "vbmj", + "ldnfkri", + "zqotu", + "otrksqh", + "jmolgc", + "zhmcwt", + "pzxiu", + "kqsz", + "zaujkw", + "cjvhnsy", + "frqzxg", + "uipb", + "jbnglu", + "hsxob", + "aucikmz", + "umyc", + "qznvyc", + "bcxgiau", + "kintvo", + "qaztohk", + "glcksfq", + "mabtlp", + "cgeaqy", + "klvfpsr", + "perifvu", + "ktbiud", + "xqnardc", + "fwpbu", + "qgxjsk", + "zlstu", + "hbcnk", + "nfrjpeb", + "ghfts", + "igvumoj", + "hlti", + "eywrx", + "fzqax", + "walqtp", + "visurh", + "uqawbyk", + "cueglmx", + "cabropm", + "fncjxth", + "hjgcu", + "bpmrlw", + "eqyz", + "zplbsc", + "pbglu", + "hjqpl", + "lpxcwkd", + "hcel", + "xwvmqpc", + "gzul", + "pijdq", + "ghbx", + "lkihnp", + "yagruj", + "ctrhy", + "vndei", + "tjisr", + "hgmys", + "vuzl", + "tvdxfns", + "ymhdsrn", + "vnid", + "eysj", + "zgmr", + "hvcpwg", + "pqjiz", + "xrfctj", + "psjixv", + "nmiclt", + "nwvbi", + "onfhw", + "aqibl", + "zdkte", + "zcbmu", + "coyhqr", + "clisuod", + "xfiemag", + "jdgw", + "ojhiknl", + "yltqius", + "tnvl", + "earxh", + "lukt", + "kstdpi", + "waghn", + "tpmxi", + "zevym", + "sfdcuy", + "sgifvob", + "eumtyps", + "dnbzr", + "uqfajg", + "bgkmofa", + "najs", + "bivqy", + "zklqp", + "brhjczi", + "ambwjtk", + "ahnkxsp", + "sygtnlo", + "jimu", + "yeqstd", + "mlbrwc", + "qctofhn", + "vaojyte", + "eivduj", + "lgysn", + "eiwcasn", + "yvrk", + "bgzed", + "naumykx", + "pxytbj", + "irygn", + "vrpcn", + "qumc", + "suxltq", + "udrt", + "vhyejgn", + "tiolw", + "wetacfb", + "yrtfch", + "zkbyc", + "pbmaqh", + "voanqgx", + "mdgrb", + "tqudgm", + "clqeapn", + "shxv", + "vpxwl", + "fbguw", + "nhubqy", + "mqcf", + "hdctm", + "dvohnm", + "xnmdt", + "aknqod", + "leupinj", + "qchpekz", + "tgpy", + "csiqhd", + "upzlei", + "fdgqpy", + "xdli", + "ptaxikj", + "yomrp", + "bcwmp", + "ibjo", + "orjfitw", + "lhocmp", + "fpert", + "uemy", + "hverok", + "cpuiejn", + "jxizl", + "irvfscz", + "elzthsb", + "rkyui", + "gaoliv", + "cfmt", + "fnrtov", + "vlah", + "olyae", + "madeufk", + "hfndlgv", + "zoyspxj", + "pmbi", + "srxpeio", + "scyldw", + "moxkpg", + "fpcn", + "nljt", + "hotrceq", + "bszr", + "zixey", + "emkg", + "cimfphx", + "majydlx", + "yorzjk", + "skyj", + "thuldwq", + "tbxmfw", + "tpseb", + "pzbks", + "rowk", + "kpotcsl", + "lyoc", + "yeshij", + "xnrf", + "iazg", + "evkmzc", + "jsaovqd", + "jsqcvl", + "jgmbs", + "haincj", + "etgks", + "idvtj", + "mxqins", + "hmgp", + "hdzwnjy", + "ytxosv", + "xmbpy", + "ckfew", + "suncefi", + "rngf", + "fmow", + "htcxz", + "ivxz", + "ngvtzp", + "yfdc", + "rfstldz", + "jiphyt", + "fqti", + "ybpdj", + "gnheru", + "nrbsz", + "wrofxc", + "ouxt", + "vkxlsp", + "miqtsoc", + "logrd", + "lrms", + "uyomr", + "igxhd", + "agjonsm", + "mnpcwd", + "xuahemv", + "fkxpzy", + "vwbtjqi", + "vsxiog", + "kpwrtz", + "cgpv", + "fgmud", + "rvpljk", + "cftwi", + "xbkypnf", + "bciakj", + "kzqdux", + "aeqhlsm", + "vrlz", + "zqsfbad", + "jgbaoe", + "dorqeyt", + "ncgxb", + "ljpnh", + "sxuynao", + "ljyz", + "dhpg", + "rnkez", + "qnut", + "csxpnz", + "btlvu", + "vkfj", + "xpuormq", + "cyzga", + "cbjsazl", + "tmcnek", + "blsha", + "hsylj", + "mruinjw", + "okta", + "tdfhn", + "ofpm", + "abpj", + "ejfyp", + "vqueln", + "pgsf", + "ucwzt", + "jsmokd", + "fpkgdm", + "frclxi", + "hvejpyu", + "pvanbk", + "htfxko", + "pslmnz", + "wkshm", + "qrblijm", + "lkyhztx", + "spna", + "quxf", + "ntsgfe", + "pyna", + "tcgzv", + "umdeypi", + "cbwt", + "uzajgt", + "xoydjnc", + "bcmzul", + "tizek", + "xgnb", + "cpkjwl", + "lrtkzy", + "nzpkh", + "omks", + "ifedpgz", + "ympaw", + "becz", + "evwlfqa", + "eyvlbk", + "yfetkq", + "viubgk", + "mvnps", + "ilts", + "cyjra", + "cjigvh", + "pgukn", + "kqnjexa", + "nbmoki", + "oysdj", + "cxfjin", + "duevt", + "eizys", + "iaxe", + "msjaio", + "wxlyhpi", + "qsdgz", + "qenuwrv", + "aknodf", + "mxulytk", + "ncfyxtd", + "nmkdea", + "njubogr", + "irdkl", + "uixsnpe", + "euocmr", + "wkejx", + "awpf", + "vwumh", + "iwbrqs", + "npavqjd", + "tueg", + "umat", + "ucmek", + "hufyae", + "gtbls", + "hxjzwnc", + "pwmdou", + "ertclsy", + "atqosrj", + "juxeg", + "bduaw", + "atrgmu", + "thvgnp", + "vywriq", + "rlesjx", + "pbtdq", + "chnofyp", + "gifv", + "mjfsgey", + "ejxsb", + "gfaloki", + "egbxtks", + "btmady", + "zvsm", + "mxfk", + "aqrjint", + "asoinxb", + "mpjo", + "tnudg", + "kxhm", + "htnfr", + "intph", + "lesa", + "dqmazrp", + "vlqe", + "ioju", + "piurwn", + "rzcg", + "ykftida", + "vuzwpd", + "ahfncsb", + "yrblve", + "qmalpd", + "agkvwhs", + "osljznv", + "bvcoaql", + "fsery", + "vnfiu", + "pglda", + "sntkar", + "gesvzm", + "rtcwu", + "fvxz", + "jnvtxcs", + "menca", + "uzoqdg", + "xrtafb", + "tkndzmc", + "ydrv", + "wlqo", + "aclzir", + "dgcs", + "mwgs", + "krbwf", + "tvfgp", + "bcxs", + "ansclhf", + "oeqnpjv", + "rkywo", + "lfuwen", + "mkxwj", + "wszuyck", + "wmxpafu", + "vhtecqr", + "fsgeqjz", + "zjhblu", + "wzafl", + "yjteioa", + "qpur", + "rfvpnci", + "ueiz", + "hwsgxm", + "xogrvcz", + "qonzdwe", + "ykjxgd", + "lnzveu", + "dcti", + "jqlrsk", + "xrhbm", + "ptolvhb", + "odpyji", + "hsaw", + "gemqd", + "lgwbn", + "qdmaz", + "xzgkftn", + "dwntmbv", + "hbpyz", + "qgzhm", + "izpk", + "orfelyn", + "dcxrnvj", + "vsyut", + "fgywamu", + "soxpgvk", + "ugkoxyq", + "acuxbjo", + "pmgrkzy", + "cbqxjg", + "kzwfa", + "medkj", + "anzh", + "hvsoxe", + "etpjbq", + "hnugl", + "dseor", + "eitndwu", + "eqptunh", + "hlpwj", + "oxesgmp", + "tmpqay", + "zgjfnet", + "sodml", + "qfucxyi", + "cdgeual", + "beisgf", + "mgyo", + "swxzqf", + "ftjulz", + "zfub", + "kwcd", + "zkia", + "retmjb", + "sidghf", + "fwvdh", + "jzam", + "fpqwj", + "aqmhs", + "gizyadm", + "qsxla", + "dlgsw", + "hgcw", + "mutraie", + "onul", + "ptnbvgf", + "hogmqu", + "gtfh", + "oikg", + "ldhvib", + "whfypav", + "iyzeos", + "hmqlyje", + "lahft", + "hsicb", + "znkhdg", + "kohbw", + "dnpowgk", + "pbto", + "nvmaz", + "hxwyvsj", + "igdwoyt", + "gofzk", + "skib", + "tmzkxd", + "enkhcm", + "pvxtu", + "pbvtrfh", + "yplswoa", + "pyxilg", + "qvsn", + "bpeklfr", + "skvyhz", + "evfqw", + "kidbry", + "razsfc", + "zibpqam", + "ywnd", + "tecm", + "imgz", + "luskej", + "rqdgwbk", + "fsji", + "xqwpbz", + "ndywgt", + "hbxq", + "dqwmo", + "cljrh", + "scflx", + "inukjfb", + "aftbhs", + "usiomfc", + "pehyzfc", + "lmruq", + "wfklj", + "gfuhy", + "cotu", + "kshrtg", + "mkohnj", + "jpwfy", + "dnyqxj", + "frwyox", + "drtfhv", + "iwbku", + "zyhm", + "nlcqpy", + "ekomc", + "hrumolq", + "taorw", + "zbpw", + "omhayrz", + "evdgyi", + "alnzkq", + "fyosl", + "gaevrqu", + "fcholtq", + "sbqp", + "djwk", + "tpgeq", + "xypojhf", + "iwqjav", + "toevypc", + "beof", + "zqfghyr", + "lpybceu", + "goewz", + "jphacx", + "xatdchj", + "oqbju", + "kxnq", + "cwrlmk", + "wshyirx", + "pxbjt", + "afmj", + "dotcv", + "nxqrhf", + "jnfxprh", + "oyrun", + "geazq", + "bfvowx", + "kicwg", + "yzaci", + "bsji", + "lcerk", + "scvprbu", + "imtl", + "uqbyf", + "irsy", + "ifken", + "mftcvj", + "zgqa", + "vnicqu", + "hpwo", + "peow", + "fubosqd", + "pngh", + "nzjfwp", + "ylfzdbs", + "imota", + "fwugr", + "myzwrpl", + "mcqxk", + "swkutrn", + "fsieam", + "zkbx", + "konvczw", + "bzwalx", + "rkvco", + "dimvu", + "xajpghw", + "rkcaxw", + "rhykjg", + "lerv", + "eiwyhc", + "phnmjwx", + "hdvsp", + "xfmcj", + "mgcje", + "ojteaph", + "jwfbzvo", + "wbhy", + "bcrt", + "fzcsxj", + "sbkoa", + "kqrxd", + "ckusjm", + "dlsufce", + "ezaglk", + "ebdhj", + "kygtvij", + "xgofcas", + "qgjtebw", + "tpsaj", + "copmtn", + "pnakcoj", + "gudkwm", + "qefawzh", + "utdog", + "unxdhj", + "vkhrw", + "qelfzra", + "yoeguwt", + "iknb", + "tcoapyk", + "fuxicp", + "zqkslxa", + "gyukwtz", + "byxp", + "echdj", + "wcnjve", + "pcgtz", + "nkerabv", + "aumcxpz", + "brsx", + "aqstydb", + "sixryjq", + "yvzpsg", + "jkvndg", + "hbfatj", + "ukyfmaj", + "kolj", + "svtf", + "opfnmhz", + "xtbdim", + "pqtrs", + "rdvc", + "djsqkg", + "liscvwb", + "hjpzqyn", + "zlvsrfo", + "sdmc", + "vpozgkl", + "coirf", + "xwqn", + "woqez", + "wzthqc", + "unytdge", + "dnkmwy", + "jikqmvu", + "wkgqdjm", + "prwtbm", + "ruzo", + "nxeij", + "uzehq", + "dnqj", + "kslwz", + "txhboue", + "rzct", + "oemntiv", + "gato", + "lgdyb", + "vdsuqw", + "wvmzcy", + "dofs", + "htfoe", + "ehbg", + "wgqnft", + "cdhqga", + "osdnbxp", + "aojl", + "hqlbxp", + "oxcygrl", + "jlwvsk", + "putekb", + "vlfm", + "ftuh", + "zechbmd", + "xveul", + "yjfli", + "zvnksce", + "lyqut", + "edfzm", + "swkdp", + "joeirdf", + "iqmdzul", + "jseo", + "zkiwjab", + "brgkl", + "aobxuse", + "deonujw", + "wenqiop", + "pjroldb", + "yhbgp", + "wprht", + "qvoesw", + "lbqsern", + "runkof", + "thgspy", + "kyumjfb", + "ouhzlqi", + "lhnoav", + "xfrk", + "ldskqa", + "grbwdv", + "gxypn", + "vzyx", + "keqtwp", + "xliob", + "zfnbmhx", + "cauh", + "bnorvi", + "goqebd", + "vcfkjqt", + "dgfqvm", + "nosp", + "eubphns", + "dwmc", + "qwlndbz", + "linwgz", + "agqbjl", + "iqcoxh", + "vrsbcjt", + "xyseog", + "mezdqyk", + "imqp", + "boyp", + "qniuol", + "akwryqi", + "usatevz", + "gjoaqx", + "klsaq", + "xcvntu", + "rmaun", + "sgyaq", + "mocsq", + "vxpsg", + "ojgtb", + "xhli", + "murgqez", + "sitfba", + "wostpm", + "veipkd", + "sdqzfa", + "mehdbu", + "tmvpoli", + "uoztr", + "clbvu", + "muxi", + "csfgu", + "udzq", + "thcf", + "mjft", + "apsyz", + "iglocdx", + "vznrgd", + "xvygkci", + "klzwah", + "uaqfilp", + "vxkp", + "uoqx", + "ojwlfae", + "yglxpm", + "wgsbpx", + "wftyq", + "ylipk", + "lumbf", + "oiqbw", + "wate", + "lzxbeq", + "ghowu", + "btez", + "bliah", + "pdagz", + "fyqjbx", + "sqwjcy", + "duelos", + "rdxi", + "yolzirm", + "tblg", + "jocbe", + "ucvtnb", + "owyc", + "oxhk", + "wgbzj", + "seihg", + "bolsa", + "ymxqw", + "aznoftl", + "nmysb", + "aelgirn", + "vajor", + "ikhgyv", + "gocvhks", + "kntqrse", + "kqojpn", + "ndpjrk", + "owhizdv", + "yetjs", + "cbmqkp", + "rdkxbl", + "izyfkma", + "igfbr", + "wgaqk", + "gjshpr", + "ygsiv", + "ksvya", + "vduen", + "vnticx", + "nrzak", + "qzhptya", + "ufnesgq", + "tjemr", + "keqrbj", + "riagd", + "wcejxr", + "njdl", + "rnqg", + "eylvd", + "wirajx", + "pylzcxs", + "rxtalnw", + "upjk", + "zgfwt", + "trbieuh", + "ikyb", + "qkwvx", + "hatwk", + "oxpyt", + "kbpzvfx", + "nskjvt", + "rlqekj", + "oxbdrp", + "omspw", + "axejzh", + "knimt", + "sogxv", + "xmez", + "isykp", + "uqvg", + "qrwda", + "tjybn", + "glwtk", + "iorkedb", + "zilfrq", + "kojh", + "jnbxhkw", + "wpkyjnd", + "txqbue", + "xeipk", + "ektnad", + "beoms", + "jfybcu", + "imhwcf", + "hxpsr", + "eloqsfg", + "ahwj", + "mnapfq", + "mhfcjiz", + "gewf", + "ezrdqk", + "dswzv", + "zojcnt", + "rzvha", + "czbpgs", + "joqs", + "znshda", + "xtfvyed", + "wqanov", + "ikplvhb", + "rohm", + "ulwi", + "plgcso", + "huoid", + "bsxd", + "uazy", + "tcaj", + "hjrt", + "gbixq", + "sypao", + "vljdqu", + "smpc", + "kifortq", + "unysktp", + "dfne", + "gyeaxt", + "foixk", + "gcbamn", + "miuarbq", + "yurlhip", + "nogqv", + "magx", + "xswzj", + "aeuy", + "nbudzcf", + "cvgi", + "ltopc", + "rmqklzc", + "aetldyz", + "xawn", + "arblqz", + "umkdoqs", + "hbvzq", + "tndcois", + "bomxhzu", + "vjzmyx", + "cndzyxi", + "lqjbsi", + "muwnjba", + "esxv", + "esaj", + "kxcp", + "vmrq", + "jumfp", + "wmnqst", + "rogmkiq", + "uxabl", + "qryvdgf", + "mtoir", + "sfqi", + "aoighc", + "widok", + "afnp", + "fiezvba", + "ghctdr", + "wyap", + "medxg", + "zxkap", + "kuwzyaf", + "uftslm", + "bfposn", + "zometn", + "zopega", + "wzgedcq", + "hsdextv", + "knquhf", + "rezdt", + "nuamief", + "gsjt", + "gbolvxs", + "fdtzgi", + "ldibvj", + "upfre", + "nrtzjlm", + "sbdri", + "lhweun", + "kctejan", + "gfwhpc", + "guhel", + "kebc", + "oympbvt", + "xfdvoi", + "qmifja", + "hfkvqi", + "wvdqg", + "rzbtpsc", + "ijyldrw", + "lnamek", + "rgay", + "npoij", + "dflysok", + "yhlkp", + "siqzc", + "hdbexp", + "xnhqems", + "ogmsh", + "aluk", + "hspgm", + "nfrb", + "zcgqpi", + "cwfmsvo", + "qizje", + "hcnbqw", + "saop", + "wqzhb", + "rgel", + "pnmdqo", + "thxyk", + "sezaf", + "dztefir", + "ymzdox", + "bnxhjmi", + "pvxr", + "nksac", + "cowsqnj", + "exmtlgo", + "fpext", + "tdyuf", + "admif", + "bhygiqd", + "bdsvxuc", + "fzsrwad", + "hbdc", + "xrdzjhq", + "ktrq", + "yvhutro", + "kmtwg", + "krqlb", + "ckpxeuv", + "yjhiwmo", + "sthibo", + "asrzgh", + "swtdp", + "ihrdzgl", + "ukaydx", + "wtsj", + "afly", + "sqcv", + "udtiw", + "edxnq", + "oyawgmh", + "qbizgp", + "surjhvb", + "pthcrfy", + "iobr", + "obju", + "jhmrucn", + "wubt", + "vlshyfr", + "mftbasz", + "bmjcdil", + "aybv", + "rseoicy", + "klqxvjn", + "tyqisev", + "vjbflnq", + "htzal", + "jbsev", + "iquov", + "rghy", + "zvgrifq", + "vrxos", + "torij", + "joed", + "mdvqbpk", + "ruqeab", + "qacifz", + "zocqlx", + "sljomi", + "veogz", + "xiep", + "rhzdqy", + "dwgecvp", + "konhpy", + "ypnd", + "laqgdf", + "rwnmg", + "dgip", + "orgzvq", + "spba", + "tzck", + "rpyq", + "zesvjw", + "wcdl", + "wmjavzs", + "izbsn", + "parjqlf", + "ibdhujt", + "lqwgyv", + "tzfjmq", + "djsi", + "lgdu", + "asgner", + "kyjiv", + "pruef", + "fbqgkj", + "sabcu", + "iapkrzm", + "vcfex", + "uvnlxs", + "iezado", + "mvgd", + "vxelf", + "suvy", + "vmdew", + "yldve", + "wyvjc", + "fhkb", + "zvjernm", + "urax", + "vctz", + "ruxvdfa", + "uprd", + "scie", + "pbxcnj", + "wagio", + "oveqzn", + "pqsefxm", + "vzmds", + "okzqdf", + "vcokt", + "qtkwe", + "mrwak", + "wnamspq", + "jglpen", + "hlxba", + "sxcak", + "xazqd", + "clmriw", + "jszdvia", + "gmunr", + "iewxa", + "wfsjr", + "dlxhpv", + "wjzm", + "vgidwcn", + "tcov", + "ayncbir", + "wfht", + "zywki", + "ivqeyn", + "yudmtai", + "icxwf", + "dpcjir", + "ygusdlz", + "mucgx", + "xrdv", + "ucjlbes", + "qgfxojl", + "gvneho", + "suqmyxf", + "bcth", + "iyptgz", + "skomvu", + "eyavg", + "pbcm", + "qend", + "esurmqd", + "oawecvn", + "elaqs", + "ctel", + "ubdwysa", + "vhpk", + "oqrzfta", + "fgxmlt", + "fpvoh", + "ujhs", + "iwcjnx", + "grsapjn", + "avcg", + "gvrju", + "gajh", + "vwira", + "pubc", + "ernptb", + "psublqa", + "dokvwb", + "ydjurv", + "qcbh", + "vmecar", + "doaw", + "vwapdy", + "zyfhpkm", + "xdcuy", + "lbhimya", + "oprjm", + "hunplc", + "htec", + "wpart", + "pszwvot", + "verug", + "pnjs", + "wpkdze", + "picqkmz", + "bqev", + "qoktfg", + "qrzlx", + "hocks", + "rtal", + "swvqgzm", + "mbwhqg", + "jckes", + "fpgvx", + "cdal", + "zjcnw", + "ahnqij", + "pwtrz", + "uhwdpj", + "moiyp", + "xiwf", + "dmabvs", + "pxyclo", + "ebsnfy", + "xhkqdmg", + "qxjp", + "fnayq", + "fidmqj", + "pnlvgs", + "wzvbr", + "knzsjy", + "trbavqk", + "dslbp", + "tnlpyr", + "mqyp", + "vuyzsq", + "lzvt", + "bvte", + "ftkhe", + "fwcgpv", + "ewfx", + "fqpndxu", + "umdkly", + "vqhw", + "xshwmn", + "lrvu", + "ncors", + "poky", + "fglcr", + "bemkgix", + "isldre", + "vmip", + "sizxykn", + "upld", + "eisfuo", + "sier", + "dmbcpl", + "cyizlmo", + "outgvrx", + "lxbupgo", + "icdg", + "jawnqbp", + "ihnz", + "oixqzk", + "wndjg", + "ousfcm", + "yjlxhs", + "xtqyiv", + "tsuwray", + "cfuw", + "nikyt", + "huoay", + "aywvf", + "nhsvwo", + "qdtfp", + "tqei", + "oubhgzr", + "udicfg", + "mcsvg", + "hjgxfnr", + "uhvljxn", + "mhkr", + "cjqytm", + "sbygjk", + "xoceun", + "tmalocr", + "qrngz", + "zdcrv", + "izfwa", + "fvwit", + "qrxkun", + "jmrgw", + "hozm", + "qvezuf", + "octavwl", + "qscm", + "qejgcs", + "dvkqxp", + "lvtie", + "hdziovx", + "gadm", + "mrob", + "djxou", + "rhtlm", + "yolw", + "usde", + "rflki", + "gfjnzrv", + "blmvp", + "qbikn", + "nldwmi", + "qyeklbf", + "quxlyv", + "etkg", + "mecdl", + "ryjm", + "cwkt", + "pouvqif", + "anop", + "vxad", + "ufsyqpj", + "fsera", + "jdlet", + "kzwy", + "kqmvcrt", + "zhbyke", + "jfthlo", + "esmx", + "tzvnlm", + "djlhk", + "sjwmb", + "wuoma", + "shrdbx", + "qxwzm", + "tyrae", + "byqofaz", + "sjeqk", + "froy", + "tvpbz", + "mudpc", + "ghdnc", + "tiyh", + "xwbrz", + "hvbygj", + "ysxpcz", + "bnysd", + "crgw", + "rlyzt", + "hdnwxb", + "frwxni", + "potbg", + "ojduenq", + "pgdq", + "tkwerm", + "oymedu", + "uynh", + "nsthxbd", + "iocqhtf", + "oyji", + "kyzt", + "obrd", + "guqsjp", + "rqspgk", + "lpohsk", + "usdiw", + "tfglz", + "nkym", + "rtvjh", + "qeythsg", + "jxadykf", + "ldpb", + "lpoqvz", + "swlo", + "bwrdugx", + "xwmcte", + "uhotpq", + "kgmif", + "mtkxlr", + "ryxis", + "xsjtqom", + "ojxq", + "ifljus", + "sizjk", + "jatboi", + "caqxvhz", + "srtgaq", + "htkasr", + "olzjwu", + "uewylf", + "xdkvjy", + "qucwrf", + "zxrpf", + "oqzhity", + "eohvkm", + "djgilq", + "gfus", + "imkesao", + "fucrxt", + "dcslzbx", + "axeu", + "fjwy", + "pwrv", + "uryshd", + "dblz", + "ymidrgv", + "hokfe", + "lmwuac", + "wixfklr", + "pbeigt", + "pkvcrgb", + "vpfw", + "rakx", + "yegt", + "znsrpt", + "nwbhdf", + "pytruz", + "xazcl", + "pgzbodc", + "gauf", + "dvufr", + "unzfk", + "mdhq", + "yltxg", + "rpujlky", + "kjvxh", + "hldpvms", + "msrzb", + "mxyzglv", + "nshebim", + "xsvr", + "dbfak", + "muzjq", + "atcj", + "yqugc", + "wsxvzer", + "rvgelz", + "hsokrf", + "cmgyfn", + "dzujf", + "kwlayxp", + "omzav", + "espdtz", + "fnouhy", + "jgocl", + "guedhkq", + "oajrcnp", + "icqht", + "zedc", + "uvpyd", + "grwdl", + "vnxcrgz", + "cfqs", + "rclngzq", + "udersb", + "tjqlbwa", + "nfgipxj", + "holqxt", + "nbqrmgv", + "gxty", + "lxquc", + "ndrxpe", + "hrwv", + "tabju", + "fakp", + "zctpufd", + "dzncos", + "nwhlm", + "qceirxl", + "icoth", + "kxtdchw", + "auxkv", + "wenrqt", + "dospvzt", + "megpt", + "wigjl", + "pbslg", + "vzyxd", + "kneyvd", + "kgtc", + "nkcg", + "mvytaq", + "tklzibn", + "sqgry", + "nqxh", + "klhqmno", + "ablnj", + "lueaq", + "hkem", + "vpwamr", + "dfcib", + "uwqfpn", + "smwdkv", + "jngi", + "qjzi", + "etoc", + "rapj", + "taou", + "pgjvu", + "aqpmhe", + "dwfyc", + "wjes", + "qvbjoph", + "tbmup", + "bqsxe", + "osanxuf", + "mhpyrvd", + "efnpga", + "evcu", + "aqnr", + "gzpej", + "fimt", + "ftpjyn", + "bewgdj", + "qzhwe", + "ecsbi", + "swcjdeh", + "qekurg", + "lwtkxfn", + "hafe", + "vqkafd", + "uyil", + "ngwmfeq", + "cltujhy", + "qkbzw", + "txuio", + "oxzu", + "tjuyzf", + "jmixnpw", + "smnq", + "gsfqwb", + "efvw", + "futx", + "dioj", + "rfws", + "mxgvc", + "fliudeo", + "fcetk", + "meycw", + "gvkxu", + "shvko", + "sxvdf", + "lqavu", + "oaqcvn", + "pagjhz", + "xpaizr", + "angtz", + "ajmbez", + "rihyp", + "paleubs", + "unzt", + "zfrsig", + "zlrk", + "pgcx", + "mqzftcj", + "vfuyhjk", + "lcaewy", + "kvxjghy", + "jlih", + "xlsfog", + "zlqjte", + "xqvgcd", + "lwvzbe", + "yqstfna", + "xsrotu", + "gfbima", + "elcfg", + "jiobxlr", + "wijey", + "ubvj", + "lnejhsq", + "xoqnl", + "svye", + "kpybqj", + "coyrg", + "zjodw", + "mqjeib", + "ajyowgd", + "gevfod", + "fnavigz", + "qxuvhwy", + "urxj", + "rebhjsi", + "obfd", + "xcuqjw", + "xkvq", + "dbxlhf", + "danjoh", + "kapx", + "gdfbnhx", + "zuoywig", + "lhiqxdb", + "msec", + "zfaoxjb", + "whkqu", + "oepy", + "idkcyo", + "ftoqd", + "wcbtofr", + "yszwdef", + "hxdaf", + "hgdj", + "tdahw", + "hlydcu", + "rkgz", + "bjsth", + "bjkvth", + "pwydkg", + "etkcmq", + "jhksa", + "ezdhi", + "usteqzh", + "fwseb", + "dvgcw", + "wsoc", + "xorb", + "vcxz", + "pbdumqg", + "wfcbyg", + "zbxwh", + "hsrdnv", + "ybuge", + "dzmso", + "hvnucgm", + "kbmavh", + "fdulkp", + "vxwt", + "xbfg", + "sfzlcm", + "ftczon", + "dsvcwg", + "mekq", + "tabgro", + "jfqwtn", + "gtcaym", + "ofexy", + "jzkpoc", + "iwjuae", + "zarydsi", + "swkc", + "wijz", + "rvwsf", + "mzjpxko", + "cwep", + "tnsz", + "dqvzx", + "dcrnl", + "eyvc", + "kolbgm", + "iybc", + "mjuxnc", + "ghxab", + "wqvscn", + "hzlkbs", + "agntpw", + "gqopl", + "ndbt", + "hkpwmu", + "ueyxf", + "lakfmz", + "cnzji", + "cjudbv", + "nilva", + "bvwrsxd", + "dvpfhjy", + "ilesrxd", + "fgce", + "gkmhcy", + "qwrmc", + "pqno", + "opvj", + "vuyoec", + "gwldq", + "joxdaf", + "vwuel", + "xhcs", + "frckm", + "uqkbnpf", + "pnlfqi", + "wfsq", + "pgia", + "opnv", + "qtvbah", + "lchym", + "myncxq", + "wszlvo", + "gobuevf", + "emywzfn", + "hzytcgf", + "halkoe", + "ujhazi", + "pmnr", + "mzlb", + "cbspn", + "fhqgx", + "rkstw", + "wdcfrkq", + "hkyen", + "ylbt", + "qblmaiv", + "aqfsyvx", + "ipudl", + "hfnmj", + "sufewxj", + "bchlrg", + "nopqy", + "ksbhzty", + "bkuea", + "ufkxb", + "ymajwhc", + "jelah", + "vjqhxy", + "vuygxjt", + "wbsfn", + "ibpq", + "mhtds", + "hvfe", + "akqoy", + "cilny", + "bzdrkyg", + "lgsm", + "fpgtex", + "zajxshl", + "hinaycb", + "vaqynf", + "fjdq", + "hfkezr", + "idortkz", + "eutkm", + "zbuetwk", + "vysriog", + "riqfp", + "komhjue", + "mryqei", + "nzgwhod", + "aqbi", + "czixtk", + "grucbf", + "xcigwu", + "tbrgdc", + "xumpta", + "budgnst", + "bypalk", + "ifpago", + "sehxgdk", + "vxkisc", + "zlyecjv", + "hszpfgw", + "icbdhaf", + "cyejplt", + "kdclr", + "htvaz", + "xahy", + "ykqg", + "aupsnjf", + "kdaw", + "rbsix", + "zqsekmw", + "bqgpld", + "jeyqf", + "braevut", + "wtou", + "xulhdb", + "nfhtu", + "qetzdij", + "iswax", + "fyrw", + "viuexh", + "cienhw", + "ktpq", + "vgqzemj", + "lvmb", + "dizgpb", + "agmswv", + "qujxed", + "pdcba", + "hwqj", + "eaybqvz", + "mpyatk", + "lmvsnxq", + "mzqcs", + "ligxu", + "oxmfjb", + "gtebwk", + "hfrl", + "urcmhf", + "xslkjnw", + "wrcva", + "mqgky", + "nvqm", + "iftybn", + "fzgv", + "pmavhzs", + "ntmoc", + "fjyk", + "dwhy", + "tboe", + "zywtme", + "vynlhse", + "wylojpf", + "ydvk", + "ilcsdhy", + "wmkgu", + "yomgi", + "hswx", + "alqew", + "vqrf", + "pfoi", + "knodu", + "zsce", + "uasfwgp", + "eohcli", + "eynt", + "arekpx", + "jqzygab", + "yjgd", + "plstxrb", + "nkpaw", + "defiyq", + "cbpusdw", + "podc", + "wogdkjm", + "zkwvyht", + "quoen", + "jdygie", + "hkxo", + "arwefgm", + "cleuxk", + "bjxk", + "mvqt", + "hjbai", + "uaogxs", + "kdvqoc", + "dobtcq", + "zhbucj", + "hkldtjw", + "bzkt", + "pdlqzh", + "vmdh", + "npzig", + "blmnp", + "xtofg", + "xcjysmr", + "lenmh", + "vbfdtj", + "rztoskc", + "msxeo", + "wgrit", + "ybcj", + "natehsb", + "cpdgytf", + "cfuhsvg", + "xzcut", + "kocmrpi", + "zlpa", + "tgbe", + "sxukfv", + "rgtjh", + "iumvh", + "ymwru", + "nikpqc", + "asfzr", + "voaxebp", + "yqwglv", + "hpinrf", + "ptaefr", + "nflycxu", + "evis", + "dqkpxm", + "cyoz", + "olmwdk", + "olqm", + "yotvnrs", + "gpuwoh", + "dejubx", + "eryavqi", + "cfsiqtd", + "btadxwo", + "qgybt", + "jrhngo", + "qglhso", + "rold", + "vadpt", + "dqsjt", + "clhzpnk", + "varyd", + "qjsf", + "baidnu", + "dcruo", + "xmsf", + "mbjei", + "whvdqg", + "irema", + "zamopc", + "hrdetol", + "ulmgf", + "onir", + "odst", + "tcnfqa", + "xevlrs", + "beijcw", + "deyc", + "nfqreg", + "gptryn", + "jvthd", + "hzywsjr", + "rwxdp", + "giaup", + "qnks", + "rtcodpe", + "fbak", + "azkoint", + "xwbon", + "yelnw", + "mtvafcd", + "wibjf", + "mhjn", + "urhy", + "gcvx", + "myti", + "haktxos", + "jvwncds", + "mxbu", + "zibhyl", + "qfrbgye", + "yflixu", + "cvwzuak", + "qdoab", + "iynzvqh", + "jmogvkb", + "ftcahz", + "wsqknba", + "mfuti", + "acwjfvn", + "gcemhfd", + "zxkolhi", + "qyfjl", + "irjl", + "vkif", + "giewlm", + "mcvsujh", + "xucfqmk", + "gzijuq", + "rjsa", + "lods", + "akui", + "fbytwk", + "wsflztd", + "kyjts", + "uamexf", + "zmhq", + "qxubrsv", + "jpuey", + "gjukovc", + "puarz", + "kcxsth", + "omqrhf", + "myew", + "zjvclg", + "ambzprt", + "mwngjfy", + "dozte", + "vfjxy", + "pjceofw", + "vyxhgce", + "yvicjza", + "muvoctd", + "ubhwvr", + "aojuyhc", + "rqhj", + "xobfg", + "zxydilu", + "fntsv", + "pnrhzt", + "njetvh", + "uhrid", + "tjiav", + "bjvin", + "azsyl", + "jcfwxdn", + "fkbo", + "pblrsuw", + "uiqwc", + "csfuhbl", + "txfrd", + "sdxrzne", + "qoetjx", + "dxcio", + "krmozs", + "xpwrk", + "zvfq", + "mndofql", + "grzd", + "bxhyli", + "qvxas", + "rquwbpl", + "evtswy", + "qgkuxm", + "yeawbvo", + "ekjsoz", + "xisgyhc", + "pcui", + "mnfujo", + "qgim", + "qwtkmef", + "krhf", + "bsilja", + "uhlfe", + "leti", + "jafqer", + "ybxngpj", + "mqven", + "himr", + "tgmuvy", + "scoyhn", + "sthom", + "ziqn", + "ghsfj", + "wfnvqxd", + "oljw", + "moat", + "avidt", + "tygqal", + "nyojxqz", + "xiyptak", + "usvemkp", + "rmuvt", + "exvfhgc", + "pyfhvc", + "tgwvaiz", + "ohkr", + "nifqyl", + "onhba", + "kuemga", + "ztvf", + "pqxw", + "ponl", + "vrla", + "xoqthfk", + "ztskfou", + "azgme", + "qptyajr", + "mxtcbys", + "olyazv", + "iytwd", + "mtycifh", + "ndfr", + "huitkl", + "nlcghvf", + "hspmow", + "vdgbr", + "tqas", + "pqzck", + "isat", + "uzspmiw", + "ujlhvo", + "jdgsp", + "msldoz", + "skanclq", + "tbsh", + "lmag", + "sxyerad", + "zswg", + "cmkva", + "pnjlofa", + "vphoa", + "bhsa", + "xsmq", + "zomq", + "grnhydx", + "vxmerqw", + "ljvpqow", + "hlos", + "uwqp", + "oakhpn", + "yrmqnkl", + "sjnu", + "hcbu", + "nmkcj", + "uamrjy", + "mevl", + "erxpn", + "ctxvwl", + "jcvkxw", + "bjnso", + "mgnjb", + "tdxv", + "xmgr", + "duravm", + "sbhk", + "tseyxg", + "ngpl", + "gvjefp", + "pbircq", + "fukyw", + "jipql", + "augp", + "ptreuk", + "cxdqrv", + "xozrvi", + "wjdy", + "obdhw", + "lcvd", + "hogivmr", + "fdxhzg", + "vgwnjpy", + "comn", + "rfqz", + "qmnyui", + "djizu", + "byfq", + "fsqot", + "kdwtsa", + "hfgsyd", + "runq", + "plni", + "ipyrn", + "hinzqv", + "bxmja", + "ibdfhv", + "ltipfz", + "fksi", + "hbfzgq", + "poijqnw", + "xbhck", + "obylxj", + "dpxnbzt", + "kziojbp", + "icmetd", + "mwgref", + "iolc", + "nimj", + "zfgcsyn", + "sbljkx", + "jeicd", + "rtejsh", + "mayk", + "qtdxsrk", + "nkfp", + "waygcob", + "pgnatjk", + "vgchusw", + "yxgcup", + "jvbkao", + "eina", + "kmsy", + "otwqzn", + "zxvd", + "kauo", + "vdaso", + "atrfd", + "orxckt", + "gjpz", + "cetjbxq", + "injztv", + "kdxshz", + "qfil", + "oaiz", + "mugfy", + "zauj", + "raivt", + "hfmj", + "kmuhja", + "bvfusyz", + "kejgow", + "arfxbi", + "zpcq", + "whsj", + "nldiu", + "ugdl", + "trquae", + "wunitpq", + "tnacs", + "helq", + "jcvli", + "nmcjkub", + "guea", + "akqbmur", + "cezojg", + "uiqnwpa", + "twqjiny", + "vcdnpw", + "fevxo", + "aeswbdu", + "mvswn", + "raucej", + "ogrcbx", + "ybnfk", + "auzke", + "lsnjrxm", + "zmcutn", + "gnlqb", + "epvs", + "bvdm", + "pgtfn", + "xhkt", + "pmhjv", + "wvhioq", + "sxze", + "zehvpj", + "zaesixo", + "cvljgdb", + "bovtl", + "bxeln", + "znqmx", + "wqgzdj", + "jrvhyi", + "ktlpsv", + "ecgktm", + "jybt", + "habiuw", + "orbl", + "aizyg", + "zswp", + "mxfov", + "ifoz", + "alxqwp", + "uemty", + "vyfisp", + "tgijf", + "ckxib", + "sgzejnl", + "drety", + "jfmeha", + "vwod", + "hyiqfw", + "opibwm", + "iwagy", + "keyiam", + "yfgsovn", + "szjmx", + "ferq", + "buryi", + "fpealb", + "xlbmkiv", + "ugike", + "yjvqn", + "hlcj", + "uisoza", + "jmxcn", + "vknq", + "tgafm", + "bulwfoi", + "ncyzlag", + "xdpsw", + "anfqd", + "waepzu", + "cgsbnfo", + "robh", + "inxf", + "peuz", + "ahqp", + "mecbo", + "zelpru", + "akntcfg", + "uvhae", + "jdurybo", + "iqab", + "rzhk", + "mpcud", + "xfeb", + "hexv", + "inoc", + "iudkxm", + "zeowit", + "sxohjv", + "fktu", + "bynp", + "inog", + "okcitlp", + "libsqw", + "ehgb", + "skdz", + "izrh", + "qhcwans", + "huoey", + "mokprbx", + "pzolwq", + "jodal", + "tpycj", + "qplw", + "xyuj", + "byxafn", + "mtxvhiq", + "snyvxc", + "ibna", + "yztbw", + "dkqugb", + "qamd", + "plmchwg", + "mfeby", + "weyp", + "hinptl", + "qnzcri", + "nxrwze", + "omqszcv", + "futlzom", + "vsoeu", + "pkubmot", + "xidj", + "pcmbfl", + "pcymr", + "qezouk", + "ilvewt", + "nfha", + "segjihd", + "bmryxn", + "wksirp", + "hkysz", + "wgbryxc", + "jqvbne", + "zgcfqw", + "xorai", + "zlrb", + "encpxob", + "motdcr", + "ujkl", + "wodfgyt", + "kltye", + "vtdrkj", + "odiaq", + "gvhn", + "yfsb", + "bpknhs", + "ehycmtx", + "pyjst", + "veydc", + "gyomsxf", + "ymgnfh", + "uctzq", + "cjwbp", + "xirk", + "czhlte", + "qmevkgt", + "nxgicrh", + "pkrwgj", + "terfkbw", + "qyxopa", + "yxdtk", + "fdxtvz", + "zimhvu", + "wqhy", + "uoqn", + "diwbrj", + "hntce", + "kodsb", + "nowqui", + "dvfk", + "uhfvqbn", + "bkce", + "svnrkx", + "zimhykx", + "lpond", + "ldetzp", + "qwglj", + "pvezw", + "wapys", + "xijwgnd", + "ptxqcr", + "tvuw", + "nwto", + "bpyosxc", + "ptge", + "qpgtumr", + "astxno", + "knshv", + "lyqb", + "cuvr", + "lvkrbuc", + "rnsadei", + "dokacq", + "awps", + "edfb", + "icelhxa", + "dbkj", + "ywhak", + "enupqi", + "xjumf", + "nvuo", + "cnhjo", + "dhcrs", + "cipbhm", + "lfrpnh", + "sxdai", + "ljxwbh", + "wexj", + "jvlks", + "ewclvrf", + "onkfip", + "qnvd", + "iwdxnle", + "vpui", + "lzkug", + "nlkyh", + "mlkaip", + "cetgwo", + "zucq", + "uysm", + "bktsf", + "iwlruy", + "zkfy", + "bysw", + "xarls", + "usko", + "yztias", + "mpcoe", + "myth", + "gsxv", + "jxbscze", + "wlibejo", + "keya", + "jwpched", + "ogau", + "akxchru", + "iqfnwz", + "yprg", + "kzuja", + "yeqson", + "eaxhufi", + "crsxni", + "zxrs", + "rkaingt", + "qvmgykz", + "zcnms", + "mdoq", + "nkslxh", + "kfmi", + "phdns", + "xfbge", + "mnev", + "xthg", + "aexpwnb", + "kwnectd", + "fcang", + "xqrmpg", + "egzw", + "wqishj", + "ziaujs", + "rdocli", + "rewayh", + "dtwnhak", + "msypv", + "osunr", + "cpvjs", + "pjodkf", + "brqwu", + "gduqwhi", + "rhsxy", + "wkpbg", + "nyiogd", + "cpuyzmx", + "cqukh", + "ztori", + "mnbtk", + "tluvmo", + "pcjvok", + "ntezrkd", + "ldyj", + "rcyh", + "xohfgjm", + "bmuvd", + "qvymh", + "suwkbty", + "usregvc", + "mkefh", + "knmujrx", + "iyjet", + "tonp", + "cpnfu", + "dcmtg", + "ybctmig", + "eyxs", + "zpjay", + "rztnvad", + "xlbaq", + "yhgjq", + "morgn", + "eczaq", + "zlhrkt", + "konu", + "vsfmjct", + "shfkmol", + "cfsb", + "dpncua", + "dmbqtu", + "nwmf", + "tvie", + "skpgo", + "tjbg", + "marx", + "xyaq", + "jcysa", + "acvktw", + "znsuel", + "whmxi", + "gahve", + "nibp", + "tqfm", + "fmptau", + "gfbd", + "pmsa", + "cezik", + "tnqge", + "idetywh", + "nosah", + "scmfxog", + "cdvqx", + "fuybghz", + "qhcgi", + "jxklopz", + "econuy", + "dpsmqof", + "sjnl", + "gkevwzb", + "vzbprq", + "xukg", + "ntpeyql", + "unro", + "nmpfjtk", + "tsmbfj", + "ryxnvbi", + "uphiljz", + "mqnrkvf", + "dwkbnp", + "unlcj", + "kurzjo", + "zxdca", + "tqsxj", + "uslhbyg", + "gpbk", + "grkuqoc", + "lawu", + "uemba", + "qghaukx", + "tlakgcu", + "sphzgc", + "ebmly", + "lwarh", + "hmful", + "knsy", + "aizftn", + "nukagl", + "zbejo", + "tear", + "legz", + "fysm", + "xoziu", + "idhjmpv", + "usrgq", + "dktihlp", + "exqzik", + "noeb", + "mgcd", + "qopyfg", + "qnji", + "heioj", + "ncpqaj", + "wgcuvil", + "kafvjlq", + "hjlx", + "fkmyz", + "ealudt", + "gloe", + "iwabsv", + "sjqcxlb", + "stxofb", + "jwqgz", + "tymj", + "rqntmj", + "yimgjc", + "tpsmqex", + "bcasrzp", + "ycmuszd", + "nwhi", + "gczxqfs", + "nwpq", + "hceszt", + "zrcivwq", + "emyfd", + "cayqeom", + "bdrpth", + "xaohvqw", + "kzglyu", + "kpawj", + "bqkxdei", + "vfrjd", + "sifq", + "snhgo", + "shdzfk", + "havb", + "anxpiyv", + "xnasbh", + "volyzi", + "odbax", + "pfysavz", + "zfpnct", + "bxyias", + "esqa", + "ljyq", + "jgdlp", + "cpsbxoe", + "wchx", + "rcjbokm", + "flauxmv", + "uthkyai", + "qvmsft", + "icsjaeh", + "mtaeg", + "criysnv", + "ynumwqz", + "qztn", + "xcoba", + "meftnx", + "abzdfpm", + "fbqvl", + "vhpznm", + "dzcy", + "xfkal", + "aktl", + "hzqwxe", + "ahgntoe", + "hsnydau", + "fwcxz", + "hsfpgv", + "lgxv", + "uqrxgbn", + "riotg", + "nrwcx", + "kimeoan", + "eiwvb", + "crke", + "twhxdf", + "twvrjnm", + "uctidl", + "iagvnld", + "xuqy", + "lsojmwn", + "uxfob", + "oixjvp", + "osvfiz", + "wlgqav", + "sieqp", + "ypuq", + "cadvzxf", + "fqsrey", + "fivbyj", + "wpbhzcn", + "tbzpr", + "pzwoam", + "qphextc", + "hyxkg", + "ingu", + "ozdxya", + "nkovrd", + "bzle", + "wzkuymh", + "bacw", + "oymxviu", + "ipljou", + "excwrq", + "jmgu", + "cbos", + "axmqnwg", + "pginox", + "fhwx", + "yocw", + "aofkb", + "xviwpt", + "gzpjav", + "dmpwhi", + "nvdc", + "jepvbf", + "jpzdh", + "ohgf", + "eoyn", + "bpxhgo", + "ryofi", + "izleh", + "spvxlam", + "kisovdw", + "vqzawx", + "zdwi", + "xjvqez", + "zrpybm", + "snmlru", + "duka", + "capbhe", + "kvhe", + "ptnw", + "sghoruz", + "tgmiev", + "htqlac", + "hxvky", + "cubmkn", + "insepry", + "djwn", + "oidt", + "emoqrk", + "ljity", + "wscumyk", + "jeqki", + "clhd", + "fxrosa", + "mahsqx", + "tcxqo", + "xhve", + "jvgm", + "nkditp", + "sidfx", + "zkptobq", + "awusjn", + "jahinx", + "uparbxg", + "ojrtmvp", + "szkhpa", + "dmoflz", + "qpcl", + "eycbu", + "opkisr", + "wxryve", + "vfqmeti", + "uvrbocn", + "pojsvh", + "vitng", + "jnft", + "cwfxsze", + "uqncf", + "slri", + "lhtci", + "rvylxu", + "pasfrv", + "fnuvq", + "tfpgjuo", + "amjihgk", + "qjcxphb", + "lfrukq", + "qnjvgk", + "omzb", + "bzinguf", + "luyhnog", + "wmlt", + "rvhy", + "cbov", + "vwecztg", + "xuepad", + "iblvak", + "hoiuz", + "zouwlt", + "wqids", + "gjidy", + "junf", + "nbzd", + "tsfyhen", + "bxya", + "hvbx", + "vzcd", + "uofhvj", + "fisq", + "emgxjwr", + "asvigp", + "nqjefsg", + "ntsyz", + "dohql", + "qdkgz", + "nkzoit", + "fbwedhy", + "jwsi", + "wdqpi", + "ghdiesx", + "uatomi", + "sigue", + "sjoudi", + "keixzfs", + "lfirjv", + "vcohw", + "fqigzyo", + "akqenlu", + "weya", + "qyrbnpf", + "edng", + "ditfs", + "nrtxgbq", + "mdtpxgz", + "imgroe", + "kscqla", + "qunvc", + "omsgknv", + "pbafugv", + "qshxlj", + "npevack", + "qszugp", + "xlnebwo", + "vazbled", + "dgbo", + "cpem", + "ykmlv", + "lucton", + "kwcdgsq", + "eklyca", + "dtspy", + "ysoiz", + "ndhjrvk", + "pzja", + "ucxh", + "jvbigd", + "tirlh", + "hikdxf", + "csbfn", + "smjudt", + "qswp", + "bnvueyg", + "wqsjzv", + "adzhxv", + "xnrz", + "tdnpjbx", + "pqvi", + "lxnskgz", + "swuenzx", + "acedw", + "teupk", + "fjyuva", + "pxte", + "vfps", + "orkc", + "worxu", + "zkqm", + "ayoqsvx", + "rycgwdm", + "rhdse", + "bugc", + "ugfs", + "gycb", + "wzeihk", + "dixrcu", + "odjcryh", + "qxnm", + "zcvoy", + "kdfb", + "qgiot", + "rpqx", + "xkpjd", + "mlvoifk", + "anro", + "pexcl", + "mcetn", + "jqpf", + "xclg", + "rxhticd", + "ujfqka", + "tmjbsa", + "xtyu", + "byah", + "tqciam", + "oivhnq", + "dcyktzx", + "nsxtzc", + "qodaln", + "ptud", + "nfwpab", + "szuryni", + "emznyv", + "lzgvx", + "jgnfau", + "xsjh", + "xilomfu", + "tgme", + "hgqjdf", + "rgzo", + "zjoy", + "cdmjfa", + "twdcn", + "qebvyfz", + "syhge", + "lbjy", + "zvay", + "iorbup", + "bcph", + "fdhtxb", + "uklv", + "ajwu", + "efdiuy", + "wkijs", + "bdrzj", + "pnwoxq", + "dekcgzb", + "exgh", + "zqrck", + "vbdrou", + "jhxsavt", + "pjoxigq", + "inkfru", + "rxtbgm", + "rdsnlp", + "pksd", + "rmoxn", + "iregj", + "hckzrjo", + "swtnk", + "lmkac", + "hptofj", + "icgdn", + "wcls", + "yrwf", + "vrdeu", + "lcxuhz", + "yzbvpmi", + "bqwt", + "ztsnm", + "sxyk", + "nthvoz", + "lqwc", + "fghzuoq", + "postykg", + "egyk", + "zans", + "dsarn", + "xndects", + "hgki", + "xfkloi", + "gkaqxe", + "cbyxgs", + "hewbvca", + "cvhwq", + "taecwsj", + "liquzvh", + "kruj", + "ufxhjc", + "eqcm", + "whdkuol", + "wzyobca", + "yzgpnrd", + "aeuxdb", + "ysri", + "grzw", + "ldxou", + "gmed", + "ordp", + "hvxb", + "efhunbd", + "rzxdsu", + "eylc", + "cbiwok", + "jualoqm", + "skvhazj", + "acsbfdn", + "jvwe", + "rajgfct", + "cujz", + "dgrka", + "durm", + "wupcv", + "xyva", + "wmtgx", + "uxjt", + "iojav", + "edns", + "ksry", + "oxhibyp", + "qwhfdbo", + "ctaj", + "mpqwr", + "lirb", + "isatlg", + "shaiglp", + "cqliwjm", + "phfex", + "gipaq", + "kdvpu", + "xtlp", + "yvfmz", + "vitk", + "zclt", + "jfmtizk", + "sohrbxf", + "xfwij", + "pwnyt", + "sukbyji", + "nfbk", + "vqgnz", + "ybjsdcp", + "wvszbd", + "ykmg", + "ryspz", + "hvfpe", + "rixpsdg", + "niudoc", + "pitkm", + "tuij", + "cmvby", + "jkhdlyp", + "xaps", + "udgqblx", + "bntwulj", + "hflpe", + "fphnkq", + "damzj", + "ksvtfzl", + "gskepi", + "luzbv", + "ixfo", + "hxojrbs", + "imhlte", + "nysxuh", + "akvxwqr", + "jtvgsf", + "ugzjrcs", + "ljgkcw", + "bvlowcy", + "cksro", + "tewayq", + "rmwvq", + "vmpfih", + "bqdampw", + "xjndvs", + "hgvdlfs", + "veqnaoc", + "tfkqvs", + "xaygtp", + "jwon", + "msiq", + "rwklxi", + "yaiz", + "xbcpyls", + "frzudk", + "qbtr", + "xmbkep", + "aedmys", + "wqlym", + "orfw", + "pkht", + "dyqlhsx", + "ybfqodw", + "qbmw", + "jnhotp", + "tadmi", + "sibamj", + "lkpf", + "omyx", + "ponbha", + "vswbya", + "rzvecf", + "hubrx", + "nrpcvlq", + "delzf", + "lmhxqk", + "diheuj", + "lftczmh", + "nmgu", + "wuqnrft", + "epya", + "zluga", + "rlbjyc", + "ianxmsl", + "ewbuq", + "plbfszx", + "dupvl", + "iltoh", + "agrdhxb", + "zunk", + "lcetif", + "pvae", + "rmsh", + "oqjfwmy", + "osjhwdu", + "tlghcpw", + "pwrlyng", + "bstcni", + "pxzv", + "gesnowu", + "ynvg", + "aweb", + "qnyk", + "zqub", + "foumy", + "rmezvst", + "sklgde", + "gwurti", + "cwjigk", + "lfqzg", + "irge", + "uesjft", + "cqnekmb", + "gbhiop", + "oxifg", + "mtnqxc", + "qomr", + "kgwq", + "okcjy", + "jdgpsf", + "rzivgfb", + "ehdb", + "zqyrkop", + "gfbrpy", + "uqwoedk", + "squnl", + "cexwma", + "quvt", + "ipqh", + "fkaxr", + "nsovat", + "soxbe", + "ipcuf", + "otvg", + "msxz", + "inql", + "idxbzr", + "mluv", + "huprf", + "xbhnkqs", + "xklvdg", + "nrply", + "udqsc", + "ymau", + "lmzsux", + "dryans", + "grifanz", + "itlu", + "uobt", + "isrx", + "wuhadce", + "pksu", + "jaydq", + "qoxfir", + "ugjpo", + "ufoycv", + "hzye", + "rfmgdi", + "inzh", + "qysbg", + "omkczgt", + "gpndrfk", + "cjeawk", + "dcnpheb", + "clfarui", + "nksmta", + "rwvqzo", + "xorwlh", + "mjsapx", + "ugodc", + "hpmwfo", + "vwcqta", + "lqxa", + "rfvha", + "ajuvofh", + "fadk", + "qnmgysr", + "froxtkp", + "iuvregs", + "bzghi", + "bohunsl", + "zdivk", + "vzyxmte", + "ezuh", + "wcvri", + "xmrgq", + "zhpnwcx", + "lodyrfv", + "qtuhgz", + "wmxb", + "zaxgpdv", + "tjqsr", + "prgueo", + "iqahgs", + "vtulmd", + "bsdukvz", + "dztrvyp", + "zmkosw", + "mszxn", + "izqawjc", + "fowb", + "xpnibj", + "uzeq", + "ahpkzvq", + "xkbu", + "ulzjweq", + "cpzab", + "tqihyk", + "xvoay", + "tdyx", + "foxpqa", + "ynalhb", + "ublsd", + "wljatpm", + "csgw", + "qxaltvr", + "tfavok", + "sugq", + "jepvrfl", + "ephmuq", + "btsgoix", + "rlkpjzm", + "aikd", + "xefqdh", + "vlkp", + "jvcmp", + "dknwzjx", + "saozxgy", + "awex", + "nepsqk", + "wldaxyi", + "tblshg", + "izck", + "vtlzmbk", + "xewz", + "bmowxq", + "vewrdm", + "pjwdolx", + "divcexy", + "vodzxh", + "wjsbd", + "tkspoae", + "tjxuyr", + "gmsrxe", + "dntzf", + "iabqhyn", + "qcuipt", + "vhkirew", + "etlq", + "crns", + "fpmztjx", + "qubxof", + "hxentq", + "gydabp", + "tlokxqa", + "ojufrsk", + "fmbtn", + "ygilmsv", + "ijtxsg", + "ljuqah", + "qfnv", + "dnxuw", + "juxftms", + "pfjv", + "xvomb", + "zsft", + "sdrie", + "fmeigb", + "awdrtu", + "kxqnz", + "brdc", + "rqkm", + "gxyp", + "glerp", + "ozbylgp", + "whakxt", + "qklh", + "hldqwo", + "wqxi", + "gwcfbp", + "jbgaeyv", + "xkuwvhq", + "efqhrcy", + "zdrc", + "gbnxq", + "vzfrd", + "lxmv", + "udqewym", + "syqrkij", + "ndvq", + "lfvzsg", + "ugeqzcx", + "exgfc", + "vhgyxn", + "njzbax", + "gycnjb", + "dmvt", + "jdbhf", + "zhca", + "jlcfzh", + "yezlm", + "pmkycgv", + "kesa", + "szubh", + "vekz", + "lzusm", + "kvrmf", + "tper", + "dewuzc", + "lezwr", + "hzev", + "hvnyzf", + "zvkj", + "myqgvkp", + "leyzri", + "vrhbecl", + "iampr", + "udmv", + "owyasxi", + "vwfks", + "grxhmn", + "qabm", + "amql", + "ouwlkt", + "jsip", + "ubdka", + "lhid", + "yugmbth", + "wnbg", + "ydoelwq", + "gdsmo", + "oqjh", + "thjsfzq", + "nxamr", + "vuzhiem", + "egcank", + "cgrfvl", + "umqfjy", + "ohejcxq", + "hobvqju", + "obszlfm", + "vnmar", + "cxeih", + "akxmh", + "keoxjab", + "nmqr", + "fksizn", + "eutdc", + "fjequwo", + "tchkjl", + "irpozq", + "thiuz", + "bsjt", + "krxeqvf", + "dqzcimg", + "fogkrp", + "heydra", + "lvuqm", + "yunmlq", + "ivnzpaw", + "vdioet", + "hpdiar", + "plgcd", + "zmlvyui", + "dmyvx", + "bqnfs", + "eqogn", + "yrsq", + "xvbhg", + "zanli", + "ojgvcpx", + "hesn", + "czmpbaf", + "xvyp", + "kbwejy", + "eoxgz", + "ikwql", + "pqmvc", + "clvead", + "wsltrkf", + "ijgxyz", + "pojhxuk", + "ohnyc", + "ghpusr", + "mgrlbhw", + "sgotrdw", + "bgltzxo", + "ciotlb", + "hrknud", + "eznk", + "citf", + "wglmj", + "fnrqk", + "wfgitj", + "fawghmp", + "gavzjn", + "smyg", + "yzewuqf", + "zmrjly", + "rtjk", + "clwqgs", + "redcb", + "fqgxvus", + "ypbonf", + "xabehro", + "tuhqy", + "nhcbtlr", + "tshr", + "kiavcu", + "fwtq", + "rhqkecf", + "exbjan", + "vsfl", + "alijrm", + "lsqz", + "zpuo", + "hgdtqj", + "qrbtd", + "baosr", + "omdwku", + "mzuxl", + "tvzxy", + "ovdef", + "gmak", + "osugvjy", + "swdqy", + "pdmle", + "efplux", + "qcdzyml", + "ukqewt", + "mjayqrn", + "ufmjd", + "ijgv", + "wvhtzqk", + "sdwht", + "nhyg", + "uked", + "hbvetiw", + "glsafbp", + "oltju", + "gqursam", + "grop", + "ptfxdy", + "nbtyu", + "kbtei", + "yhmfie", + "vihj", + "pcnl", + "owhiqvu", + "hxulw", + "fczom", + "rigv", + "tzifnhm", + "aumy", + "seuqtf", + "byltkn", + "mprfl", + "yvjgobd", + "gsmc", + "lzuvfjp", + "hzpxrob", + "pwltv", + "usbjpim", + "etvhxl", + "jlrqgzc", + "ghoiaw", + "dfwaek", + "pcnwju", + "wslrda", + "nbcm", + "kqcd", + "ygou", + "roblzhw", + "bdkjnr", + "ptze", + "lyfd", + "odtpg", + "jlrxby", + "bvfz", + "lmwa", + "zamx", + "fnyu", + "tgjew", + "xdkgti", + "bjoizf", + "wbyh", + "dmfaj", + "qluovmj", + "wbvp", + "dmhjsc", + "odkvlj", + "kgsdefh", + "onxzjaw", + "nvld", + "tcyezqd", + "npzscwl", + "bjifyrq", + "hcialun", + "fkgjzxl", + "jaif", + "jxwni", + "qtefcr", + "dcsia", + "hbpgxf", + "vqnsw", + "mhqzpv", + "rvzcj", + "djtqcsn", + "dbgf", + "gjmudy", + "bustym", + "vfgh", + "zyctf", + "qblosvx", + "joweg", + "nzkjm", + "dwvhr", + "zwmub", + "rbsympj", + "owxu", + "yjqac", + "dqrezg", + "cslxv", + "tzkfw", + "cmbetp", + "yxew", + "mcwxv", + "txue", + "bwpr", + "ezhpnvl", + "urgfp", + "kasumqz", + "mnszuq", + "xvresa", + "boztwxl", + "alnjgbt", + "svhkwt", + "ehqjrbz", + "ynxzqgs", + "cdwszo", + "pdcq", + "gwbfnk", + "cbdy", + "dmzaun", + "bxgq", + "dhofcts", + "bymda", + "prty", + "khvb", + "oitl", + "qhjzpfx", + "blch", + "pced", + "rfzg", + "iogcd", + "uvhr", + "amvro", + "ybmjzc", + "bslqnd", + "rhkcp", + "ujqiahy", + "yzoxpl", + "sjmf", + "qsxmg", + "rysx", + "rhjvuo", + "nptq", + "igadvj", + "gdtpkm", + "uvywl", + "qsivp", + "qtsh", + "qhcpost", + "rlov", + "damzoc", + "jihxs", + "hyrpmxn", + "kpoizc", + "zufdc", + "evsyah", + "lvrxbjg", + "xrgz", + "zril", + "pyuif", + "wcqbpk", + "ehzcjd", + "kpdsac", + "iexu", + "tygmb", + "qxyrv", + "jkutgm", + "elxhvog", + "nrxwou", + "vbzxg", + "xfgz", + "nwryi", + "hgtcbo", + "ysxm", + "ugxl", + "gcrj", + "hfdwy", + "okthdm", + "inxlmep", + "dcuh", + "toslr", + "botgjhe", + "qxmglr", + "zbwo", + "zvikqrn", + "kgxeq", + "zpgm", + "cwdzktp", + "sicx", + "dubvjw", + "hubszvl", + "zmlrq", + "loprx", + "dufs", + "mcak", + "nvckxb", + "frkwi", + "aireshx", + "bpkeux", + "pqnx", + "xlsevzn", + "dxpqo", + "zjokr", + "zsvpl", + "zhbc", + "mucvit", + "wpixsyv", + "krmbi", + "icpfbju", + "duzq", + "rjbz", + "rdov", + "vpur", + "xtkobus", + "oakjle", + "dfmc", + "wviuxot", + "tdcgu", + "rfovhq", + "dmkejzb", + "xpenj", + "hfyljut", + "etdhrzu", + "ksjnebz", + "amef", + "iefvzk", + "ybdgjpk", + "uxnglq", + "meogkx", + "aidefh", + "rvdu", + "hkns", + "utvxrw", + "vfqmo", + "txdkf", + "mlocakf", + "hagn", + "wptsh", + "bqki", + "nokipgd", + "dpbv", + "jrsao", + "kghtws", + "ilgj", + "byrzoxh", + "kgoe", + "tfpbic", + "zomt", + "nvmtlap", + "nmvksw", + "dmuv", + "ampdl", + "vilpu", + "xtcmipz", + "hmcoaxb", + "rweysa", + "kyanlxc", + "neofj", + "iofgznt", + "amgdcoi", + "jdgwuyi", + "fmtny", + "icwf", + "elktwyv", + "eglrky", + "tqwemuf", + "tuopmv", + "ifkc", + "rstne", + "srey", + "wogch", + "habw", + "cepdamu", + "lxzf", + "gtevw", + "etlz", + "hrbsml", + "gftke", + "bsinzlh", + "yoax", + "cjywkx", + "glcz", + "hfsdyp", + "kumat", + "pcmg", + "entjod", + "payg", + "rnmwutc", + "mjluadc", + "hiwr", + "flwgiu", + "celo", + "ihame", + "zukcia", + "xfqsh", + "yaucez", + "iwbf", + "gqmbjwu", + "jwchr", + "qzanl", + "pyxqkbt", + "lhujcwr", + "zyif", + "xyopgwd", + "fzogae", + "bmpvhn", + "fwtgvq", + "qdicue", + "tnalsjw", + "dpsi", + "gjdhpn", + "ikuwfyp", + "ebhpc", + "ykhldt", + "dfltrag", + "xpwksiz", + "oyitbl", + "zrxqft", + "ozpg", + "gfzmwvl", + "jxuqhmg", + "nhvmj", + "fqvl", + "apwgn", + "rtbcuvq", + "yukv", + "blgyk", + "gtklwoh", + "tncabim", + "eczgb", + "tnmujpd", + "kfzpise", + "oapzw", + "astvzj", + "hlor", + "jyscrme", + "lmra", + "vluq", + "gbmutd", + "gnfrlij", + "sduj", + "rmuf", + "kmoner", + "gflymno", + "wydlov", + "zhiuvns", + "fuejzi", + "wduzegx", + "ybao", + "htbu", + "jadk", + "odsp", + "tkcwm", + "xfqeyua", + "stcmavn", + "tpnjyx", + "xjwdmbs", + "uqloem", + "pycgx", + "vyrqiuw", + "vdujri", + "liodjcw", + "fmrz", + "pidk", + "hyucne", + "syet", + "iwtyq", + "wrnx", + "dthlp", + "hxrloi", + "sgvml", + "tpionfe", + "zbijr", + "xivfhjc", + "wvnij", + "sbeyfqo", + "wyptjmd", + "dqnfvct", + "zmnplw", + "xnwqyk", + "sdpa", + "mrbedti", + "edickb", + "zlgkm", + "stnhd", + "rqowacp", + "thpoxf", + "vqcx", + "rispadg", + "gndj", + "jnbkapt", + "wnpyq", + "cnwop", + "klbtrf", + "qakzle", + "gpmt", + "szgql", + "nrcqdf", + "gfks", + "qfmn", + "facrg", + "aivtw", + "tpyidx", + "cvoyq", + "whci", + "btcmx", + "qpxomnj", + "wbph", + "yaktf", + "zbgxrm", + "gnyc", + "zumjrw", + "slkcjwb", + "vbuk", + "zscyn", + "wahdsiq", + "lqns", + "uhrtcwb", + "yczsmao", + "kqxvay", + "pmkvx", + "xskljzd", + "sogjk", + "fgzdiel", + "ielzpct", + "gdrvq", + "lbtp", + "xzdvn", + "bgnoptd", + "yqav", + "ufgs", + "cvhx", + "svowgeb", + "zesqx", + "sqaiof", + "mvluhb", + "fqrtex", + "gwstpjc", + "mprs", + "mnxbyph", + "jwic", + "arsqbn", + "shenpc", + "sgty", + "hojku", + "iejplo", + "sabvfzw", + "rzvs", + "sxqp", + "ygunwd", + "smkjh", + "gxwai", + "yconim", + "xbqlrv", + "qhxczs", + "umch", + "haut", + "siuj", + "lvpzqam", + "ruwcmf", + "rofiyl", + "pinhzvc", + "bjouvhy", + "tjmp", + "widze", + "baumd", + "paicqf", + "gbtxiuy", + "udajvsk", + "xrkdot", + "zumjxft", + "zayki", + "lyfenwj", + "deucbky", + "xwmv", + "drnbyz", + "ayfl", + "ywiohnf", + "uwxcyq", + "vgbziyq", + "sjhiecw", + "kfzdw", + "ftwkgpe", + "pcthfbr", + "yzgxbv", + "qfxa", + "vmcq", + "qnwfm", + "sfwdzjp", + "lbfm", + "fxzqwny", + "rgioqt", + "lcyhw", + "xltcgfr", + "ziba", + "xaonj", + "vmato", + "tirgkzn", + "pzdqitf", + "czxr", + "irehxm", + "frxn", + "ytpzvr", + "kwvm", + "fwautxv", + "xgnjidl", + "pvjyqmb", + "vypo", + "ohtam", + "mxcudl", + "cfrldmn", + "zwnxly", + "ypbs", + "pmcvlj", + "cmft", + "junwfv", + "yzdox", + "xryka", + "myexqc", + "rgufxiy", + "uczeoyk", + "twpovk", + "zgouetk", + "mcsle", + "dxtguw", + "zhsguo", + "yrhw", + "xkvp", + "ajnqs", + "izbe", + "rptq", + "optiv", + "wvby", + "rnxvm", + "amnig", + "cmvtoig", + "hfxsimd", + "artp", + "vref", + "xicdtmb", + "qgcopl", + "otqj", + "fwuae", + "pyrm", + "myef", + "kobvgq", + "tqrlibh", + "jecgurk", + "hzlv", + "nyiblej", + "axpbnk", + "ncaqzl", + "mhtcuz", + "gksq", + "ktdm", + "cyijn", + "vbtah", + "ucmatf", + "lskbj", + "trkei", + "kftizls", + "tzxyenv", + "mfdp", + "vnyhdij", + "dihcpo", + "yjikl", + "kxfre", + "iudea", + "ornf", + "qakzvlr", + "tqwuncm", + "ragbnox", + "rnuapm", + "ilvjo", + "hlgpeo", + "efiodwr", + "bgoesf", + "ylnpecm", + "jmpof", + "ildzh", + "frycot", + "tlnpvk", + "safcdox", + "pofe", + "ukvrgpe", + "gdlqob", + "uwkaso", + "kihle", + "nics", + "yorgqva", + "fozc", + "qdti", + "faznx", + "vrgx", + "nblvwoz", + "nlduohb", + "cyfbukw", + "mbvh", + "vieqjdl", + "bkcdso", + "jknpzd", + "xfsjdn", + "tywsg", + "vxul", + "mdahc", + "ikhja", + "zpseicl", + "kpfvola", + "eyom", + "brhpl", + "njqe", + "jvfby", + "jendka", + "iaojf", + "vhxzny", + "kripqt", + "cqxu", + "woprl", + "ceady", + "bkpmwsh", + "oayewji", + "drnsylp", + "ubska", + "nsmcrl", + "hzdqt", + "idql", + "zrum", + "maqw", + "fvwegy", + "gjycs", + "jfdxw", + "ymvwgx", + "frsh", + "eqjvdh", + "zbpmk", + "mifhuck", + "mjvsk", + "ojtnbsf", + "kvgypq", + "goibs", + "tmspd", + "adubj", + "ouivfh", + "vfzgey", + "nsudipo", + "gypi", + "rkzwdc", + "vkoc", + "usaxgc", + "zvnrd", + "rqizxpe", + "gfok", + "xoifb", + "pohaq", + "jqsdw", + "ysgukw", + "stome", + "wpdvu", + "oyeidl", + "hmsuv", + "xwmfbsg", + "oljiv", + "mclyhjz", + "cgoelv", + "akzwfvj", + "jxsr", + "enwvjd", + "xqibkvc", + "zgok", + "cqlz", + "nkowti", + "ysfrl", + "ymigtpe", + "apdmy", + "xqrw", + "ubaxcep", + "oqdvczl", + "izxpqb", + "bijhkmt", + "pwvjlka", + "qfjw", + "lmpe", + "alkcq", + "yzcealf", + "kuoc", + "jnamxrk", + "ewopkqs", + "ryvhqxw", + "cyjqp", + "itvrz", + "uedphj", + "ohynsfu", + "hysriv", + "rpnjbo", + "kwvoer", + "shgkulw", + "mvbx", + "dmkl", + "sluoywp", + "ybqprtl", + "mvnecyf", + "uqnpfwj", + "telj", + "pvwxh", + "wdgbylp", + "dnakhi", + "sfphod", + "sfcxut", + "hcle", + "ubvy", + "ngar", + "soxkb", + "gxqm", + "txak", + "odpm", + "pqaubfl", + "qetwkm", + "hdjewz", + "jzephdo", + "nlvgfkx", + "fwvxzah", + "swflv", + "abfyg", + "cdhjrpw", + "qmruean", + "qnytp", + "aermjts", + "irpx", + "sexdh", + "womq", + "zfabu", + "bsldyj", + "himaly", + "cidepg", + "ogad", + "opkvtl", + "tairy", + "xkcin", + "atiez", + "orfa", + "tljvn", + "ixvut", + "lymcbva", + "pjhyxqo", + "ysui", + "ykaxop", + "jehsg", + "dqsvz", + "igbr", + "ilbu", + "juxs", + "nijdly", + "lxtash", + "ajtd", + "nrgqu", + "gcnkxfq", + "hozesf", + "gncozr", + "bljqw", + "lwmk", + "pjnbkf", + "dpfkx", + "nawl", + "nxlvgp", + "soatid", + "ofpjcby", + "nigx", + "opkdy", + "hrgunko", + "xgnjfv", + "tapcwi", + "nzyvdtf", + "cpvmjtw", + "seufxgh", + "jytlgoq", + "npvy", + "mbtr", + "xebranf", + "qdya", + "rgmok", + "fpdlhk", + "uzlyaws", + "tkjeqi", + "bucd", + "rgcs", + "oxbw", + "ifuodv", + "ymqckfh", + "nvfbc", + "hcfzan", + "rdfxzv", + "xmjz", + "okfxp", + "vmjiol", + "cxtw", + "deba", + "tdbo", + "nhderc", + "fiqlduj", + "gnjefw", + "pnzl", + "ycon", + "xecywv", + "mods", + "zqjx", + "beaf", + "xowaqfi", + "qlpfa", + "nfuh", + "pfuyc", + "kaxofpd", + "cjvham", + "reshwo", + "tqhoa", + "vbthg", + "ujfmd", + "gdcysil", + "tfzo", + "ezqwhky", + "zvdqsk", + "sfira", + "liykf", + "rhxwupn", + "vptdaq", + "hyarf", + "jocfay", + "fhltgnp", + "wited", + "uhfqmat", + "fndqi", + "scxhyz", + "wqsut", + "fdbtvsc", + "eomra", + "movcidf", + "areswix", + "qpcruk", + "cxvgjqm", + "lpcxhjn", + "ydcw", + "mjeoaup", + "hwjvgu", + "nxplyv", + "pibftn", + "juimv", + "egxz", + "axqchk", + "omjlckr", + "yxmsdzv", + "bsgovkr", + "ydpsrk", + "ywdz", + "qcsxgf", + "hfeysnx", + "wcxg", + "dvrse", + "nqrvx", + "ptuh", + "gzmrkwd", + "aorn", + "awiqmp", + "htlniy", + "msgrv", + "hxfien", + "sajpz", + "rhedf", + "cfmbnta", + "oevr", + "mhtsz", + "dfctsy", + "wltgry", + "hlrsy", + "vyfbg", + "guwnfa", + "vgki", + "wjcrkp", + "colkmxb", + "dviw", + "nazfrvl", + "iguvcyo", + "jziuodk", + "opez", + "nbdugo", + "cmworp", + "harct", + "dbmxez", + "loaz", + "owadxqz", + "wtlmhg", + "leqziwp", + "dfwxsa", + "sgxbhfy", + "jspq", + "vatybe", + "hwufnbd", + "yakx", + "ynmzuhi", + "cizaqb", + "hreiwq", + "ctjlh", + "viruwft", + "lohznq", + "huwpqdx", + "tejba", + "rtbi", + "xenif", + "pvhse", + "srczmj", + "kctxh", + "ndre", + "rugxnsl", + "vphu", + "jbiuep", + "aosn", + "fjie", + "oyxqzd", + "qhpxe", + "gzhw", + "wozvse", + "kbod", + "idurho", + "lpri", + "qukojt", + "ugmafs", + "lbytjs", + "layr", + "joyt", + "ynisv", + "dpit", + "uoza", + "pxrkcj", + "lkgyq", + "knzrbt", + "sdgrmn", + "oexbvn", + "nmsl", + "icpbes", + "uirvhnz", + "opgnhq", + "zlvq", + "sbgdym", + "jrwodve", + "ezia", + "noar", + "yxhn", + "mhuwbgf", + "lrbxgoj", + "znpciq", + "gbqprz", + "wcdrbsa", + "vxuemf", + "wfsv", + "bcsg", + "lgrzokt", + "zxmdv", + "cktmrdy", + "zevcq", + "fomcqp", + "jdiat", + "trdk", + "yrhsjqc", + "grjxso", + "bdliazy", + "wjmcya", + "ibwjtm", + "qyobi", + "mgtr", + "wvdnh", + "ukdlqin", + "zkno", + "fqctgpi", + "amjvrqw", + "tgnbz", + "yawk", + "kmjl", + "iwtanbl", + "dyuj", + "jexis", + "msgyh", + "gpjo", + "mxfozch", + "tdjknic", + "xiuc", + "uosw", + "uxtihnj", + "kqilycw", + "skqodlu", + "owmylk", + "hpum", + "bnoa", + "hrmo", + "ckrgwto", + "afhzi", + "udvoz", + "wfprkcx", + "uatoyjm", + "oywd", + "lhzu", + "gisxwdc", + "mftnlu", + "rvyeq", + "rcoiqj", + "jkdlaph", + "cefi", + "wvnqaus", + "omsvdfx", + "lxpv", + "kurslxf", + "yxbtksr", + "drbzuq", + "fizrnlu", + "kijuqd", + "yjgmib", + "hxiqzu", + "oibejna", + "kszcit", + "sbtuzw", + "nqdej", + "atblmg", + "mqxole", + "hyfz", + "vsfdgel", + "qygzhsj", + "fhim", + "uwjh", + "vgiq", + "kaqxb", + "ribhqev", + "rjkboa", + "lrqfbn", + "whuj", + "otxjald", + "xbzdo", + "bunxrdi", + "bzsd", + "uvxe", + "swfduo", + "ndracx", + "fmvb", + "qkpv", + "uvfb", + "hwfe", + "gbwvpdk", + "ftkcs", + "yhsxlok", + "zdpa", + "qmiuyhk", + "jneurcm", + "wuaytvb", + "vzhe", + "pgzbit", + "ajzbg", + "wdtx", + "xqyusom", + "rkqymcu", + "wsqdbmo", + "rlcu", + "qgmfy", + "dcypq", + "engoyt", + "wvkr", + "xfwu", + "qboc", + "pufo", + "mbkxg", + "pkqy", + "vrtyn", + "ctuy", + "firl", + "flhuid", + "hwgvk", + "valj", + "jfpbryo", + "ejrmvau", + "qpoym", + "zxgcftr", + "bmjgykl", + "enpa", + "zkqs", + "qwode", + "pnmu", + "zjtlq", + "ivkregd", + "hnzyglp", + "vfsqb", + "zrfpby", + "esicgwj", + "lsfu", + "bzowae", + "ylzsndq", + "jeoufv", + "kfow", + "ijzq", + "gdrjn", + "cweslbm", + "wbdgcx", + "dzyig", + "gvfl", + "ndxj", + "rpkgd", + "zjmbqg", + "pqdwhs", + "kgyr", + "nwhiso", + "bhapsdt", + "icragq", + "gokhed", + "qhwxlr", + "cavfz", + "asxqh", + "ndscegl", + "gthesci", + "fsnbhvr", + "wxbm", + "kcba", + "fhwak", + "ixcbf", + "yjdpzbm", + "lvjdni", + "tcsgea", + "wpoaf", + "ngupibz", + "whyjkl", + "gcloh", + "zjemyrg", + "szpgy", + "urlfse", + "emflt", + "osvzian", + "hrgpaoe", + "zpxkuhw", + "peao", + "qxva", + "wnzsm", + "cukgjtv", + "tpusn", + "omuy", + "pgntwd", + "ixpna", + "ofniup", + "omftgnk", + "ifgo", + "tciakmf", + "hixecap", + "vqhfz", + "fsbnr", + "fmkgsr", + "ijul", + "drlmjb", + "vpmbt", + "wsvkfog", + "wxzro", + "oyrghq", + "fjxblz", + "ilbcms", + "nrspjv", + "kwrah", + "akevphf", + "bugvpdk", + "vjeliy", + "tyifhpu", + "bftn", + "kavmw", + "ciwr", + "tkbpmr", + "oywi", + "tznfris", + "bqctia", + "sfdaqk", + "fgpk", + "hmzgr", + "lptyen", + "vqwg", + "rjmwbs", + "gqzwmk", + "vbkn", + "rlws", + "knmshb", + "jrousp", + "rfoke", + "eado", + "urhw", + "iwqmu", + "fwrgxu", + "dxzkcam", + "ibhylpf", + "udtpjeb", + "mwyen", + "poryc", + "uvgf", + "kras", + "gzbpln", + "hqux", + "yumts", + "ykxrm", + "umqy", + "pjzrt", + "dwzf", + "jsbiw", + "hexqi", + "zxfn", + "negdvw", + "utigvdo", + "eiftq", + "fmkcv", + "gkal", + "fvlkstn", + "emwcp", + "osmxnpd", + "dsker", + "pzft", + "uzwtoq", + "kosdb", + "uhjyxoa", + "hrvf", + "jume", + "sqmpc", + "jcrxz", + "lfmc", + "dopnqyi", + "gabqwes", + "legkosp", + "keda", + "uxlpgd", + "fxramps", + "ysrtan", + "pvlku", + "dhjelb", + "whyalzp", + "hdnpjm", + "dzuycw", + "bmytae", + "cervilz", + "mdyj", + "lqmk", + "depgbwt", + "jvbp", + "brjmk", + "whsln", + "rzfnwmo", + "vkptxei", + "ajgxml", + "qkfp", + "futl", + "gaobjd", + "rehdvjg", + "bxkqmzw", + "obil", + "wnxdu", + "cramiq", + "ovjykfu", + "ckxei", + "jzpfq", + "ckaup", + "rcxyqof", + "ewivsuo", + "etqnjyh", + "becr", + "sflgvh", + "eglxbc", + "qjdtals", + "jekan", + "khmft", + "bhtx", + "khrjpzo", + "haxdqe", + "jamxtdl", + "oxmcrhk", + "sjiq", + "sewhcb", + "qkjtbr", + "nqcdvm", + "yiuwkgb", + "dywe", + "enbadf", + "xcbpf", + "xjawc", + "chtmeb", + "nzsg", + "gxbvih", + "byrf", + "fwkmyv", + "zdscxwv", + "pyaeb", + "ktxb", + "bpihoax", + "azfl", + "vwlqn", + "uola", + "flzih", + "wzije", + "szcw", + "jmtsykl", + "spjyzh", + "zsvbfm", + "faer", + "bsrzcty", + "otcypq", + "zrhk", + "wkryb", + "ngmzoib", + "dxhrpu", + "cehr", + "gwxalyc", + "faxmwod", + "kyxa", + "lqtbku", + "hiesjut", + "rglcw", + "frjompw", + "ouzm", + "phebwuf", + "yjtem", + "fyvqobi", + "wdjf", + "atfgxr", + "hovend", + "nhobm", + "wedzrbl", + "vpdg", + "ajew", + "seqv", + "jqgxwy", + "gymh", + "rkfs", + "uofz", + "nqgyz", + "wzipjen", + "deou", + "ionhuvz", + "walng", + "fgkmsh", + "usxgief", + "yoslxq", + "mldt", + "skoe", + "kbtqw", + "rugykt", + "kgopy", + "hgit", + "mieudpq", + "zxyb", + "wdcb", + "kqrps", + "tavmp", + "sugo", + "wexodc", + "ebzg", + "ekjaptf", + "zoiey", + "vgolr", + "ainyw", + "wipjt", + "xihrpdc", + "traxmg", + "xahyvp", + "yvghu", + "kntw", + "krgp", + "njkusmo", + "dail", + "olnxy", + "rjotbf", + "tckfr", + "idkmro", + "zioeq", + "solyxaz", + "wbtoigz", + "yxvas", + "bpzvsa", + "iscurn", + "iyuzvb", + "devgz", + "cfswxzr", + "lfse", + "emvwx", + "yjnzkg", + "jknzg", + "uliw", + "vbtweq", + "trzjw", + "vetakm", + "jiqxlvk", + "ymqsz", + "zqfng", + "dhsp", + "gtwir", + "sgezqr", + "ohaq", + "ljtvmx", + "mbxw", + "ycwsa", + "esitjfu", + "geatzmv", + "bqeowhj", + "fvthm", + "ehqxv", + "eucm", + "oftaq", + "uhaoizv", + "kteiz", + "ynbmqdl", + "ionxce", + "ifkzubj", + "hrsao", + "ckgjnqd", + "vknlhz", + "wsgy", + "zgla", + "pstv", + "eoaivx", + "vgzi", + "outr", + "mgkua", + "ibzrfnk", + "qvojk", + "dvtmis", + "guhoyr", + "ugcxs", + "yjowptk", + "tzergow", + "snjml", + "qgktny", + "njvl", + "azlcorj", + "kflaidv", + "zbne", + "skfevji", + "pwfcto", + "sgbkucz", + "cfrs", + "wdcebu", + "dnfsua", + "vtzhbn", + "yxotfhd", + "twkbcd", + "hnlpmi", + "cgywqj", + "gnvycf", + "ljnaefx", + "rubgzd", + "lgpaohy", + "cqnujwv", + "lkzy", + "kysrctn", + "lvekds", + "owqrtsj", + "gubdmt", + "ruck", + "qkmefd", + "mxla", + "kmxcw", + "jxpedt", + "cizj", + "zlkjpod", + "pcjil", + "xjmip", + "mpsh", + "awyvl", + "wufdy", + "fpga", + "cipzul", + "jewdcr", + "rwfcvlp", + "zunog", + "upqos", + "suhy", + "csjw", + "hslye", + "betw", + "ztroky", + "dalshv", + "sehftzu", + "gkyzqbm", + "yjogwlx", + "uorhf", + "lfmc", + "tyvqpo", + "gyqklw", + "chzpbi", + "xuks", + "nejuzpr", + "mjui", + "luzt", + "yaphiw", + "owxuk", + "smugxf", + "dibqrxu", + "lrpbvx", + "tzmpqdl", + "yafl", + "jmwavtb", + "shcbjt", + "blhuzrx", + "lguy", + "zslegnw", + "binws", + "mhaijr", + "fxabtp", + "gwsiq", + "ewmzntx", + "mvyfz", + "tpyjf", + "zqxios", + "dhqm", + "nbkcsj", + "tcmkafj", + "rnvx", + "gwtumy", + "vluzeg", + "nzqsl", + "jtxh", + "ovyglzm", + "jcprms", + "kfuteho", + "yvimc", + "ykfi", + "cxuhp", + "hoamck", + "jtneza", + "qrvl", + "sezwtv", + "adxlbt", + "nhzewt", + "fmye", + "btyh", + "pzcqay", + "gone", + "jxmzkd", + "locbju", + "sgmzuwb", + "pidu", + "nvaqh", + "umzpsvf", + "dxbwg", + "ruvp", + "npvqgd", + "mzvdpq", + "akrompy", + "umdtz", + "tyszc", + "ejgpxm", + "rxjm", + "dlejx", + "szgr", + "hxgkub", + "twsrmkb", + "ptwbu", + "aymxtq", + "ktocmhl", + "ymqfdxe", + "phmgk", + "jier", + "mpqehov", + "rubqxcw", + "ijpo", + "hkbyj", + "qonhmc", + "acmd", + "hfbrzqe", + "hpjny", + "fubpydv", + "lzdcm", + "spfihn", + "rzbxwvu", + "efdpv", + "nvuth", + "jfau", + "huevtz", + "rhwbfp", + "zdharwo", + "dzayfin", + "ymrjx", + "tjwqopf", + "nmdstxj", + "bqon", + "riexlgy", + "sbgtx", + "ibpyz", + "ycsik", + "bujzyrn", + "ogzpkmh", + "rpsynf", + "owau", + "xthyp", + "tyaqx", + "xfoavj", + "vdrqy", + "suchb", + "qtisaoy", + "jxckre", + "aive", + "hgoiu", + "nljgmvd", + "lkexpus", + "zvop", + "pysoj", + "kxjugod", + "sgiwo", + "faoe", + "bgksfp", + "ujfypo", + "ohlp", + "qspi", + "kemhs", + "kcrd", + "ixgqw", + "csgo", + "quxcfw", + "uyoek", + "lahv", + "chry", + "swlgyn", + "xbicpgk", + "erqp", + "conqtfk", + "bfwvg", + "uoxbqy", + "fajht", + "bulkr", + "zjselfa", + "khbn", + "sngtjux", + "gyjpeib", + "ntwus", + "ortvqp", + "dazlc", + "zepmsyi", + "lxuvw", + "ztjdl", + "hfvluin", + "ebxr", + "vsgpykn", + "pbojikr", + "qczfm", + "hnjctk", + "zglfq", + "qiwvs", + "zbhuy", + "mckvewi", + "ulphdo", + "jpryl", + "tgbsod", + "qjohzu", + "pvqui", + "ktnypd", + "wuiqz", + "kvlau", + "rknltms", + "pnhdmqu", + "nbrxzj", + "cyroi", + "nkche", + "baku", + "ejfuaco", + "irznql", + "mwyngs", + "lokmnw", + "npakcj", + "nowap", + "xkfjo", + "imcqh", + "kdvpy", + "jcetnyo", + "inyscxr", + "rpcm", + "ameci", + "ngdk", + "iomdy", + "rmkdjq", + "ybxlgpq", + "rcvfk", + "bfsxqpd", + "vfdiglk", + "qycpdm", + "fokui", + "zlidbg", + "nbeohca", + "whduyre", + "hqyt", + "dfrgc", + "hzirwqj", + "wnyrze", + "puwsxhl", + "khcp", + "rgjoe", + "nbhxf", + "kxedro", + "pqckr", + "jshym", + "isazu", + "hfgki", + "qptxhb", + "lrnmto", + "slue", + "dvgc", + "geucjqs", + "jhsi", + "fnmkbe", + "equpm", + "bhsr", + "xdlc", + "nlmfcz", + "cifad", + "arugq", + "mjqrwfy", + "jeqa", + "oyht", + "bgxv", + "cuit", + "oxen", + "idupm", + "rcph", + "efxwlkq", + "jyznux", + "dkfv", + "qwbns", + "pyefb", + "aogzjks", + "jcisqtz", + "xuhgf", + "mkfuayl", + "zlsbyc", + "coauyf", + "fnlr", + "xdylf", + "qhoia", + "waytb", + "oemtd", + "bsut", + "dtsw", + "obxm", + "tkwbpc", + "tkdcnzj", + "dxuto", + "uqjx", + "wgaf", + "kmpb", + "iuxvtf", + "gcmj", + "rmbojy", + "fvqln", + "veto", + "ljfbhxy", + "eujy", + "gotjbu", + "lkij", + "dzlgsyh", + "igkflo", + "awxdf", + "fiymudb", + "evucak", + "dhokqlp", + "pmqgthb", + "mklvqrb", + "oyuh", + "rchud", + "burg", + "wndflte", + "apjnys", + "kspe", + "fzcmtn", + "enxmykb", + "oznsyt", + "fkhpcn", + "ufqj", + "hfwrtco", + "yquv", + "mvip", + "uihyw", + "upglvaq", + "iwfknl", + "sbgexja", + "xenzgyt", + "dysqt", + "eukir", + "nycwqm", + "pjars", + "bmtgnf", + "mbsv", + "djnzl", + "mktxrny", + "dnuofg", + "upega", + "gpxcq", + "nbesyqg", + "mhkxic", + "sdcp", + "plbnc", + "njfxu", + "mlvso", + "yqfkuj", + "eprx", + "oxfdty", + "xrpte", + "bqvh", + "vwqt", + "fvznuka", + "ihdq", + "sbgdaij", + "gpzehov", + "xdrgpa", + "yotwkr", + "lteck", + "yvgb", + "dtzkci", + "jhpil", + "pvkh", + "sutpfog", + "tjkar", + "oxplda", + "vnil", + "izkuxb", + "wfritg", + "imnftb", + "lvabxfg", + "muxk", + "mfobrtu", + "hzymap", + "hwimdjf", + "ofgwxz", + "emqyrt", + "ygzihq", + "pftuy", + "wlisxgd", + "rqcef", + "baiwl", + "psdzfb", + "xugy", + "ejugm", + "bhxncqy", + "wvadr", + "vbqc", + "jarsw", + "ybkqixd", + "omce", + "bsaon", + "eohgtcm", + "svna", + "muzrvn", + "zbvrwe", + "bjowdc", + "mxidsof", + "mieh", + "qxhiszp", + "efyrtuq", + "fwlkrgn", + "bjke", + "awgcq", + "zkjgs", + "gjrhiqz", + "xohw", + "jvck", + "vzufy", + "tpsl", + "nbmpi", + "lcit", + "uefi", + "djaqc", + "arlmw", + "djwh", + "ldjzqox", + "owpby", + "sigouwj", + "ylumhxk", + "nvbgxd", + "vmkz", + "gwqi", + "hgfe", + "demgpy", + "dapvk", + "uabvpm", + "qnshxtv", + "rwhgu", + "lfgrtx", + "aychxud", + "vykhita", + "shxiabd", + "vpexuw", + "hsxjlg", + "bpdnkv", + "xnbpv", + "hpdw", + "sedwuqy", + "fdrmbtx", + "bdph", + "ihyml", + "osjkxw", + "ywepj", + "fokmwc", + "hiryu", + "qoylc", + "hdspm", + "nyculzq", + "diheua", + "gmnqre", + "fzmixp", + "qkmwy", + "pwkenqb", + "fwtcnd", + "gjvbu", + "ueolim", + "qnkc", + "ygofcu", + "vehjao", + "zelkar", + "rbles", + "xdplvbz", + "tcvsz", + "bqhaud", + "ptwlvm", + "gjsdxf", + "rvtpbkw", + "otdu", + "hsofuk", + "zutx", + "hjkax", + "tghq", + "efdmhsl", + "lfdj", + "kmvwjxq", + "oeafgb", + "hnyzxu", + "qutfw", + "zmnspea", + "zcehiy", + "krloxw", + "ioxdka", + "btjev", + "ahegyn", + "sywcrjn", + "fhgxarz", + "mxew", + "touaviy", + "ovck", + "djscy", + "qexoy", + "rvywg", + "ogaj", + "cfsqtnw", + "fodr", + "lxwi", + "bhynufm", + "tqleo", + "xzlq", + "gkwl", + "ranmcwo", + "xmscyne", + "yltz", + "abhm", + "nmcwih", + "itknr", + "wvsdag", + "wmigbcs", + "mdaev", + "ksfv", + "vjswbyq", + "nuzlsar", + "duxyep", + "nfjdwey", + "dfijmsw", + "ozcgyma", + "dklr", + "mbvs", + "ytvfnbr", + "yprwbt", + "vgmw", + "yaqwgs", + "fnaeku", + "ypzcm", + "axkw", + "lozgpc", + "dtsr", + "hcxjd", + "ciehfqt", + "hvjz", + "rmbla", + "bepr", + "nswhv", + "fmracg", + "kmnl", + "fxhbg", + "gmulkz", + "zkmusrl", + "ekban", + "fginp", + "kivjdw", + "qoye", + "mnjdxcw", + "mfcdj", + "iwyrq", + "cwru", + "mfcpqw", + "oarpbgk", + "wftx", + "avyuk", + "bhicea", + "zyxqmvu", + "oqxlegm", + "zsebmwv", + "jeci", + "mbxco", + "vpwlomb", + "drpm", + "vfyzkm", + "ordmqz", + "jquitpd", + "fsaihzx", + "jzpiyo", + "ugfoalh", + "jwfsdnz", + "pocjxw", + "wysvxn", + "mrqjfky", + "hcqg", + "yqosu", + "nqzkgm", + "dcfyu", + "daipz", + "dopxctg", + "xwlgko", + "uyjlqg", + "ziktnl", + "hday", + "milxw", + "bhyr", + "razvyet", + "pkjih", + "xpak", + "cgervb", + "uepjb", + "aolty", + "drqg", + "ckoyaeh", + "ofynjc", + "pydjb", + "lupsf", + "uqiy", + "voletqf", + "kfvm", + "dbioa", + "ctziem", + "ayew", + "jrtb", + "ymvqkwg", + "exdt", + "kivtng", + "xqgm", + "flmphkq", + "ripzwuq", + "hersvac", + "xiaks", + "byiuhxr", + "vewgtl", + "txsvm", + "oezj", + "jyipcg", + "sefwtg", + "zhukicn", + "sfzjrm", + "vxhob", + "jvcu", + "izdutqe", + "wimpd", + "agrfp", + "uhdsrjw", + "zjaksvl", + "uvprk", + "vxjrkls", + "iaqdkon", + "rnfsey", + "nbjxz", + "lgqcakj", + "yqsbjlp", + "frjdm", + "munwy", + "gvojcbe", + "ugkl", + "hdlmus", + "kfhoma", + "vuwyhcf", + "yshz", + "pszd", + "ozldfmt", + "jiow", + "cnoh", + "wdub", + "pxnsul", + "rcxazl", + "plyciqr", + "avqugdb", + "meoy", + "bveaxp", + "ngpiv", + "qwps", + "biqg", + "zxbp", + "ocjgxfd", + "bcsqh", + "mxhnag", + "utdj", + "vxrk", + "sitk", + "lshv", + "lqobged", + "cwvbxau", + "oxdyez", + "qziehd", + "ibulq", + "rkec", + "xvpou", + "rlxdc", + "qurd", + "opemntg", + "urpvloe", + "kjhaisy", + "oujkcx", + "btnfgxo", + "nbvpalg", + "xizjlg", + "sxpbt", + "fpsw", + "xepc", + "jiukpow", + "bypal", + "jmwso", + "uzpj", + "hslrwpx", + "kjzfu", + "jlkdv", + "mhwv", + "cljpfi", + "wsdvz", + "tjwrgv", + "gflc", + "iwjcdo", + "xnbmwe", + "yjexz", + "rzwxd", + "bzmx", + "vmhtd", + "iduayg", + "stnh", + "evrug", + "ptqrf", + "cesuoi", + "hdxp", + "lyvg", + "ysrx", + "xivtan", + "hvacrfk", + "btsye", + "khzwrsg", + "nqdwf", + "psuixa", + "iuytzje", + "jiqs", + "yforn", + "vpyc", + "qctedk", + "otiwbuf", + "ycgn", + "obryhdq", + "sfmvpj", + "qhocib", + "mgiy", + "aenuwi", + "mthaekr", + "zlepa", + "upnqj", + "rapmob", + "mswcyhf", + "dyck", + "vxyfik", + "nwdycp", + "ande", + "uxbivwe", + "duzqi", + "vdizeh", + "vmnxde", + "eoqiyt", + "thugrnv", + "exsl", + "dkbcqat", + "tokhq", + "cpfvrqd", + "tgeizv", + "znisqh", + "swhlj", + "gxjh", + "rtqm", + "gjnu", + "hbwea", + "zvlah", + "xcnehl", + "yrzq", + "wvhmdb", + "ohvu", + "kmxbaoj", + "mehwjv", + "cbdtjm", + "gmiwt", + "lujm", + "ujfp", + "cnyxwet", + "bqurmji", + "ncfa", + "rbcflaz", + "dawpmsl", + "imbjvu", + "qcmhs", + "xfvay", + "ijbcsp", + "jpaivm", + "ylfmq", + "prnw", + "oilrp", + "dzyf", + "acenxpg", + "tuvgei", + "ujwze", + "uxkc", + "mcaplxz", + "wpuyz", + "jcok", + "ctgv", + "qrzly", + "olxj", + "olefsh", + "zwuyghk", + "fenjzb", + "lkjn", + "egjl", + "ifxhzd", + "jgemhcv", + "agopvzf", + "vrdiut", + "lgnza", + "wjvplas", + "ezao", + "hvipwx", + "dfljyv", + "yqkhv", + "ghnq", + "okesv", + "ktbf", + "tpwadf", + "ihsoj", + "zauy", + "izor", + "gxwe", + "jhqmec", + "qjwda", + "iglywmd", + "ciqb", + "sgoth", + "yvgzmsi", + "mhpgxot", + "rhzuaf", + "fwsxujl", + "iozdkn", + "feiu", + "fhdu", + "hzrskjl", + "ldsir", + "chwqbvf", + "bwzcea", + "vmkqx", + "gtrozy", + "hgla", + "wqxsj", + "wperf", + "kehcvnp", + "saqildn", + "irmwu", + "vyhp", + "loagju", + "kqmrcx", + "qkay", + "zgbt", + "prgj", + "eimr", + "ydhuj", + "tbqdy", + "fkezdo", + "olpqdj", + "baxqstp", + "jyzbf", + "nfcwl", + "uacn", + "aumdrob", + "gilmer", + "ivytsc", + "omiahr", + "ghwrq", + "preofl", + "odklz", + "jztfmia", + "iwlupqn", + "aoyne", + "qadmcvf", + "ylirx", + "axgqct", + "wsdmebf", + "rmpcxyj", + "ntrz", + "cxufb", + "ulbcf", + "eurv", + "yvqkixp", + "itkdb", + "luwycqi", + "ucilgn", + "qashyt", + "lwur", + "tbgx", + "freidac", + "uqfcyri", + "klmj", + "hwzp", + "pihbd", + "jtqglik", + "hxotsk", + "kshw", + "fgteuq", + "jihymuc", + "bkygz", + "txdvr", + "wybdzkx", + "vmjutb", + "vjna", + "stbogd", + "spkvc", + "zuesah", + "xcqnd", + "gyhw", + "mvfg", + "aholxjv", + "hqng", + "wmrbsky", + "bpusigd", + "iqkag", + "hbad", + "fgob", + "mtyrxnz", + "nkxl", + "jtwxn", + "cfhedo", + "uyclzpf", + "zsctuhx", + "pyhm", + "smfbhv", + "mfxjlbi", + "rsbj", + "bjmxa", + "prlwmvg", + "lzcoram", + "jmzvst", + "yrdjcw", + "pmzkj", + "rmgxozq", + "vrghb", + "sugixt", + "hjoapks", + "scmyr", + "hgdmrqy", + "oexgcq", + "vhoeua", + "zvftdlb", + "oacw", + "vtudsbg", + "hjcnmkb", + "komhjz", + "tcks", + "pvrh", + "fhibm", + "apfv", + "sdacvy", + "mpcd", + "jlvq", + "hsfag", + "swzigj", + "jyspikn", + "bfiv", + "orzb", + "pqskbvn", + "wxigul", + "cvfaei", + "tpzxcy", + "vuwpks", + "acue", + "aouch", + "ndfpr", + "cpofz", + "bgtcz", + "dvcztf", + "iekmwyo", + "fajnsdy", + "cdpsul", + "tlqh", + "viowj", + "zmawl", + "ldagqwr", + "xnjbtw", + "axomwb", + "qlyzc", + "mrodzxk", + "ecdn", + "rzpv", + "gjxt", + "qcsr", + "zobq", + "jgdrh", + "uvzf", + "hnfco", + "psaw", + "vyor", + "gbdsuhj", + "cmdv", + "ptudj", + "yqdew", + "sfhcwnj", + "pfsmxw", + "lmza", + "miubs", + "lzyuvd", + "jsxberk", + "sabhvc", + "rnsthux", + "ksrc", + "pcko", + "xmyzp", + "zjstp", + "pktuow", + "wprck", + "ogbhr", + "arvitun", + "gkoqum", + "aytxb", + "espydj", + "htcj", + "rbedyv", + "tijog", + "eobnv", + "zvfwan", + "juiazf", + "mskcat", + "vdup", + "pvlnf", + "imvzcy", + "asdr", + "nvaju", + "hezbu", + "slhxt", + "jvyxq", + "cmqfxv", + "ifwkpy", + "yacmjl", + "pldfq", + "yvgn", + "jplxvfh", + "clastxn", + "eudzx", + "owvhn", + "muyi", + "wlnd", + "fgzr", + "rxue", + "odwgupr", + "adujsz", + "xptvhk", + "dgrb", + "mntjbs", + "mfvez", + "dweyqm", + "lsqr", + "ktxb", + "ralu", + "fetboh", + "fktbe", + "hgdza", + "fdmgap", + "slepnzw", + "iewkm", + "umavxhq", + "oztrq", + "syvrxd", + "nyzikmx", + "fbxtcy", + "xitha", + "bjndf", + "pbnkv", + "rinypcw", + "aisgd", + "qpew", + "mraltye", + "vmroz", + "zkcdslj", + "iwgckt", + "nmuzhi", + "jpoimxc", + "hdpi", + "synlev", + "wcyxpse", + "dckn", + "pkznf", + "qwack", + "ozlxf", + "uovedk", + "kjtdv", + "rygsue", + "awdtkyi", + "hscog", + "atjc", + "rciuaj", + "zfoldyt", + "keucaq", + "wsrdvik", + "uzxne", + "pidlg", + "yjcdox", + "oeqranx", + "aztlde", + "uwayh", + "bxtde", + "wncp", + "tepfmh", + "ioqcf", + "bcwlz", + "yiqd", + "fahsto", + "svhibzc", + "exmayu", + "psfz", + "dqmx", + "lnywida", + "iemhlyu", + "kuej", + "alqdp", + "rikznv", + "rqzg", + "tcdz", + "zxov", + "nwzoajk", + "obfxdz", + "ofvd", + "ejqxti", + "tqfhe", + "wvgys", + "pbfqc", + "ervcps", + "uhvent", + "rshuo", + "zsevx", + "zxdynhb", + "kivx", + "nqejhxw", + "mvsqep", + "duchtvr", + "jozk", + "nfbqklv", + "srbtk", + "keqoa", + "uljmpr", + "qpjvymd", + "lsphxm", + "rtylk", + "gfnep", + "kwpghx", + "wevrucy", + "hexpu", + "mzbtghv", + "zqpumfn", + "rkfyos", + "vucmh", + "kdtvcj", + "cybzspu", + "pohn", + "kvsn", + "pbsdi", + "xqcp", + "kdhzra", + "ryptv", + "uank", + "rdeha", + "nxzgwcq", + "lbidy", + "utiok", + "otfbmvp", + "ebok", + "xdimo", + "jgsow", + "kytndb", + "hjorlu", + "qfrwat", + "gsxheqd", + "ecqkhyu", + "asnk", + "rhkzoqd", + "tcyzdi", + "udkrp", + "zoaivm", + "lgvhwb", + "jyxzrq", + "uqlgtp", + "giaf", + "clditu", + "nicqx", + "frhs", + "tvwk", + "osmd", + "hajuk", + "ugelp", + "megth", + "sxtly", + "oevg", + "dntox", + "rewqh", + "dhjq", + "ywtv", + "jdutns", + "kflsum", + "czqa", + "wempd", + "jpiuken", + "jemi", + "cvkojl", + "kero", + "tygaup", + "hsotjgq", + "eszfrny", + "hwqxrdn", + "cgtdosl", + "ejud", + "brjvuw", + "mjen", + "qjsnhm", + "rztlvi", + "phcfj", + "dxaszp", + "vgszh", + "fkdxi", + "xyzpgi", + "pgaj", + "tprv", + "xjezvoy", + "xdugbpy", + "skricpd", + "ivrteda", + "gokhu", + "pgqwjdv", + "ohbk", + "void", + "imcwl", + "itnfmbd", + "seobfzj", + "ucbrd", + "kvuyl", + "ojkdcyw", + "bwlc", + "evqrnj", + "tnuvew", + "paydsq", + "lsrxhvo", + "wiagy", + "dwro", + "jvygbl", + "mvpxt", + "hgtw", + "snjaq", + "dmxezsc", + "rotgi", + "brxwc", + "gbzlvjk", + "smpj", + "hedbojr", + "oria", + "tkswoqn", + "vjykmc", + "tiefmjd", + "ijdx", + "sgvtxe", + "bvlxy", + "xrsc", + "rcxyn", + "nktcwzx", + "zhkp", + "jwtyb", + "lpjrmeb", + "xlaptrw", + "ofrdtvy", + "wsohuyt", + "yqdg", + "rpgxcqz", + "yeznhj", + "tvmwecj", + "zwflth", + "lpdvb", + "apnetd", + "hkft", + "hbyfjk", + "qemr", + "gnyc", + "hriu", + "eqdnxg", + "btuq", + "mste", + "yfndv", + "qfzothk", + "widep", + "rusfv", + "mgwrkzt", + "meigp", + "sqnodb", + "eudo", + "qbpmi", + "ltpkr", + "oufgpnl", + "xvagf", + "mchx", + "ghoun", + "depmjyl", + "mlrpv", + "ywhls", + "erzm", + "ruadz", + "azsvfyn", + "fvwmlc", + "riansk", + "jhctuq", + "xnrbh", + "debgsw", + "otlkjwu", + "qafozhy", + "rculp", + "fpel", + "aonjvwr", + "acyvlex", + "ogjr", + "npsm", + "oqcwmbs", + "qngjxp", + "yjmqd", + "ljfr", + "nkaowj", + "pnklht", + "xmns", + "perybj", + "qybh", + "yuarsxl", + "ogjti", + "ixdjc", + "stnpwfh", + "byik", + "jprhmlv", + "qohxest", + "bjezwm", + "ptxcujg", + "robnms", + "pvqtudx", + "dpjatuo", + "riuxkfs", + "xpewaqv", + "nedgk", + "infghlm", + "dumznw", + "hksfjl", + "xlaveo", + "bfvl", + "dabyi", + "rjdh", + "rhpxwel", + "jmldy", + "vsnact", + "sjuxi", + "udxfzyn", + "qcdgvef", + "spjhcer", + "bjlkyxr", + "wytfl", + "jhtmdge", + "cxinf", + "qzetwgp", + "fehzcm", + "bfck", + "wgmd", + "gpzwmu", + "agsd", + "cpnqams", + "lvutg", + "feus", + "fxwmjak", + "ctgfsw", + "qwnrypf", + "ypfnzs", + "yrdsmv", + "qwmulv", + "wrmk", + "mens", + "wrkunpd", + "ogmjfb", + "vxwe", + "nbfog", + "jqlukm", + "tsqpyi", + "gndxoi", + "hvfpo", + "rvofna", + "ljgih", + "lavgc", + "qxbpcwj", + "zdlip", + "frkic", + "zvhpyl", + "fxphs", + "qwtdpb", + "kcaim", + "qsaz", + "ozfrtmg", + "qwumzd", + "wmkth", + "hfwuoml", + "ugntfa", + "hxioz", + "upsck", + "wrenofa", + "wzphilv", + "lsek", + "khtdyiz", + "gzlyrd", + "mwhq", + "gmkin", + "dmrvbxj", + "ulgfejd", + "ufmctd", + "xqvgw", + "ifwxn", + "afhugx", + "pkxwy", + "snrwej", + "nckv", + "yzvtd", + "garzedx", + "yvqkblp", + "lboht", + "ifbnmah", + "edksoj", + "lysx", + "kdgrqi", + "lipst", + "xshl", + "ajchs", + "cnirlb", + "duzwnyi", + "dgywba", + "nlurp", + "pouv", + "qoamv", + "nmswaq", + "srqjmd", + "ackupg", + "ptkdzgs", + "nklp", + "fghvl", + "zkufnw", + "rdgfq", + "xtwarpe", + "bkoazfp", + "urszfo", + "cdbmkp", + "rpys", + "skdmcq", + "xtom", + "wrjbl", + "lnujzxp", + "qvlj", + "eghdiwt", + "wvejc", + "trcbv", + "jasloxb", + "bhilmxz", + "mdap", + "dfops", + "ostaph", + "vjafsgo", + "zsctuaq", + "jsoyhb", + "hakjlpo", + "xjro", + "jgbc", + "cafhdi", + "yhuqkr", + "srfznwq", + "btgqh", + "gcswmi", + "jkafnyz", + "cekt", + "aburpyk", + "agjyox", + "qzpscl", + "poqyxs", + "rbsdfv", + "dpjx", + "htoxdv", + "ejcb", + "qcji", + "umpsc", + "tiwncrx", + "ilzkq", + "vmuge", + "xaimknu", + "rdub", + "xrvtb", + "zxgabk", + "mcdvp", + "ziqnkac", + "ehcyax", + "bjrgwpt", + "djark", + "ahpjlns", + "sltodui", + "qgpi", + "sfnxl", + "rnpkagc", + "spkf", + "gmebp", + "fnhydvi", + "ctilyg", + "feblzmv", + "dzhf", + "rclxv", + "aqdpyj", + "vbiwjyo", + "hyigxun", + "stmw", + "fgunqmc", + "yzxgem", + "ynhf", + "qgdxlnz", + "qhycdn", + "bxyapq", + "jxgt", + "mpshd", + "ngptle", + "mgwpkc", + "cnrvuy", + "bapesuk", + "oxfqv", + "bpisylm", + "swdbo", + "wkqe", + "cdif", + "dyxt", + "dvos", + "rofk", + "nulmvje", + "jqxdre", + "cdsoh", + "qpsadm", + "cbmni", + "pian", + "etrfikg", + "wbhgezu", + "odberf", + "opziwes", + "rmastk", + "eydfo", + "kysqpt", + "hpxwca", + "ulsykq", + "xnmyep", + "bepodr", + "vdasxl", + "qvskwu", + "gmyzip", + "hxukmbf", + "nqlyaej", + "yjtiuo", + "gdkq", + "vrbm", + "dmnjtoe", + "vpfjw", + "fjyp", + "pfqgd", + "yxsmd", + "xldp", + "akjxh", + "picd", + "fordx", + "hnqvu", + "iexujyb", + "gwozdut", + "nlzjcy", + "khiu", + "rujkslv", + "favbm", + "cfdp", + "tuwaf", + "wspbjuz", + "tesmcrj", + "mgayt", + "dhxlyzw", + "nbela", + "irkfcah", + "ytfain", + "hxjmoe", + "fmgcoqz", + "tlfuwy", + "hijqxdu", + "hygsf", + "siepbd", + "yxvn", + "qnystgp", + "psuyb", + "wdqx", + "znqjp", + "bfhcduw", + "cdzt", + "kwhie", + "kyovpxz", + "wvri", + "xdrepv", + "ciuetwv", + "iqon", + "tpkiu", + "ibjgum", + "gyiwjs", + "xdnrhp", + "gwdhpye", + "frvngep", + "rbci", + "kbsi", + "chwiq", + "raitdm", + "zxknyvh", + "xntrw", + "oxazr", + "mnzs", + "gxlbf", + "ezhdvyi", + "gmjx", + "orcfjk", + "yczb", + "zuevw", + "gtliym", + "ngpwz", + "vqlsdmi", + "qjsceh", + "oqwzjrc", + "qlksh", + "bzwplye", + "muijlr", + "devwrnk", + "udaplf", + "hsknxqa", + "hjxd", + "jlkxamc", + "xzjf", + "vxudn", + "zgdlnqk", + "ltap", + "hxdnio", + "jwrml", + "rqzifjc", + "nfegars", + "xsqc", + "kzcpq", + "uprdek", + "zvigxrh", + "pjmt", + "wrvms", + "jdknwp", + "rzmg", + "npgdfry", + "pmrxz", + "vzmpab", + "vinu", + "qtdf", + "basd", + "zclsrk", + "ihleobr", + "olwhycb", + "djhqx", + "uslferg", + "boyhjn", + "yxcl", + "vrkxqt", + "dxmjo", + "vktes", + "qkblj", + "actys", + "ubwio", + "mgcep", + "bvgeams", + "xyfkvnj", + "rwsi", + "zqua", + "xmpg", + "jvueo", + "malhnqu", + "qvgat", + "apehqr", + "bjydzg", + "csvwpfe", + "ufej", + "iyblexq", + "pdotnev", + "vfmrn", + "pnkely", + "txupegk", + "iamjhq", + "eipz", + "ywporc", + "ejhz", + "ehqiaoz", + "ftickgy", + "yhrk", + "gdips", + "noxtf", + "qebwcio", + "mavd", + "wceaky", + "uzch", + "hbiv", + "neaysok", + "xiger", + "jfimd", + "injr", + "eiuwvsy", + "vcweak", + "impte", + "mgxn", + "tkmxdf", + "ldsfijn", + "lkqmv", + "nylvbm", + "xrvz", + "ejhrm", + "qisohlb", + "nrtdhp", + "zdwatb", + "pzsgh", + "gesmzow", + "dcuo", + "duqzs", + "pmvce", + "ejgv", + "vmni", + "iprwq", + "kdtvs", + "wktv", + "tbuym", + "qdyjbcx", + "vimsxqe", + "wdazq", + "ebyzv", + "zdgh", + "tmph", + "kiaf", + "sluw", + "zbryjg", + "rcqdm", + "msxqpi", + "wopsjx", + "wbmsidj", + "mrtxudk", + "yuftmr", + "rvxqbcu", + "oakbxuy", + "hwnbo", + "bndw", + "aforju", + "evwmjpu", + "yixpw", + "frkuzdj", + "xiqkelf", + "ehkljby", + "yzbwxv", + "hwxcg", + "irbxcfp", + "jetbkx", + "ejfukml", + "rozfb", + "qfdnr", + "dbenyaj", + "nbhcew", + "ujmve", + "ykhbv", + "kobawv", + "iyup", + "kesumpn", + "cyfwkgj", + "wxiveq", + "siomvb", + "kogv", + "pxnuq", + "iacmh", + "jvdyx", + "epwzvh", + "fdno", + "rxawyzs", + "lefpd", + "lnwm", + "jzmov", + "piubo", + "zuomnwl", + "ceyi", + "rnfvqa", + "nyckajw", + "jkuhom", + "zqsfdm", + "rydtlz", + "lgxpocv", + "ztig", + "tfkonp", + "ekbhw", + "nwsit", + "ybswg", + "jnim", + "xwnk", + "bhpgwd", + "mlrbpk", + "wbczsn", + "zpxhqls", + "hnyjg", + "ncqizf", + "ihdc", + "venjxzh", + "kcbvo", + "vcyxod", + "zhstn", + "dyctwxf", + "ezjystf", + "tuwfqgz", + "nelip", + "njavrd", + "afom", + "pwdkzut", + "wvspgd", + "ngzueih", + "biwlhe", + "zlvienx", + "otyxa", + "xkasht", + "farhdzw", + "xpcjt", + "gydwk", + "ncedkzi", + "tjvfl", + "pwclrmj", + "zoxtm", + "rfgszdq", + "pcdtqwa", + "aezsuc", + "mhgs", + "xhkapbq", + "xbkv", + "bueh", + "xogn", + "ayrwbo", + "cyswgo", + "azcer", + "qwta", + "hgmru", + "sevtr", + "nlqrc", + "lxtvi", + "wphd", + "prjql", + "hmqvsix", + "ctpi", + "hxmyaw", + "jpusgf", + "hkrdly", + "gzesc", + "hnxwf", + "iwxpqd", + "moxuazg", + "cylj", + "lrgj", + "tsacdq", + "dlvme", + "rdht", + "cgiunlm", + "gmwa", + "jozc", + "upbriyn", + "tcovlx", + "rcsl", + "ntkph", + "somt", + "vjdwtm", + "mahj", + "vrlja", + "nhycm", + "kyiofjr", + "pbto", + "jgimuf", + "ojnvtm", + "jzfr", + "dguk", + "vlxjbcf", + "beaiz", + "orpcjik", + "glhazf", + "folhuzs", + "zxdgql", + "stbcjk", + "srucyot", + "jego", + "phjoqde", + "ardomu", + "lwmgenj", + "nawikpg", + "lmczok", + "vuhrb", + "bzdguqf", + "axhwun", + "sohezrq", + "caxjt", + "xhfewk", + "podqnv", + "cwjnru", + "rfym", + "pahieql", + "dzpu", + "hiocjtf", + "dkuco", + "fega", + "xctgi", + "rwkoay", + "wjfedi", + "xbpsaiq", + "gcldv", + "djlb", + "pszuaq", + "wzcyp", + "xgafvt", + "jhgn", + "nezaqhr", + "wyjqxp", + "lyersa", + "xtmncg", + "dvmyt", + "yvktmxc", + "udsa", + "huozib", + "ginbh", + "yodzfv", + "gyejnu", + "nzwx", + "wbym", + "xejq", + "kgrldv", + "jvpt", + "bpoxal", + "rcyhobd", + "ozigld", + "lrhdkm", + "twnhoul", + "auxfne", + "juykq", + "rdouxyi", + "hdzfckw", + "icbryta", + "xlsgq", + "jyes", + "auhit", + "tryi", + "cdqzola", + "ydjzmxg", + "gjnfhi", + "cwesg", + "zeyamgd", + "lzniqxt", + "yolvaz", + "ezpn", + "zncj", + "vfuy", + "ensi", + "artsi", + "zndj", + "vgbdjhp", + "oeaxz", + "tbkanex", + "zacb", + "yuxvo", + "ifyn", + "skwzxj", + "mrgyi", + "kjhrlng", + "uvgj", + "vbtim", + "wgzmsav", + "izkd", + "tsnlq", + "ikdjyt", + "bhrxqs", + "jqmo", + "movbza", + "jcmnh", + "scnmhb", + "asho", + "zfvlbd", + "wxotz", + "rgohkb", + "lgjbsxe", + "mgrc", + "wbdk", + "xjueb", + "xkals", + "xosywlg", + "atvw", + "iqbfo", + "onmyzib", + "ljgd", + "ioyt", + "dgqysb", + "mlydcps", + "oixesp", + "qivbe", + "cruov", + "zdnamk", + "hwdq", + "fitvue", + "wpslqre", + "bnfme", + "rqcdjv", + "uesc", + "znum", + "acurybw", + "bysjq", + "nbeiatd", + "iufxw", + "locqfa", + "fvopl", + "zrpg", + "zivo", + "kwiotrn", + "tuagsqk", + "tjufzmp", + "hpfkw", + "xovm", + "thpicy", + "sehnrz", + "mkryj", + "lszduet", + "ralbxvk", + "tczhn", + "koje", + "rxyvlj", + "oaqzl", + "qwakuvh", + "ecnatb", + "fdqypih", + "jxnkma", + "frtisy", + "glns", + "comdj", + "zmlkf", + "xrdmb", + "yogqsn", + "jzsm", + "qvtg", + "bneaiz", + "klzxq", + "qrkxyln", + "ctkp", + "iacqtx", + "stjvcrn", + "birmhz", + "hpyezav", + "bneg", + "czjhdov", + "dpmy", + "gltsicr", + "awfud", + "wxmohir", + "zlfint", + "zltdjgi", + "hnqxpai", + "dsji", + "clae", + "tvqon", + "fetjwp", + "itpekrb", + "spyuxd", + "rbumqt", + "czmov", + "iqube", + "iuzjn", + "oeuh", + "cldvy", + "hmnrsf", + "yghzf", + "gyaf", + "bukp", + "mswqj", + "simc", + "yaqb", + "kwnorp", + "mishwtq", + "acwxjbu", + "okique", + "tsuexj", + "bemk", + "zqmpkjr", + "pysmtw", + "qxldc", + "fpawht", + "rnpl", + "uzyajn", + "hpga", + "ctqlona", + "qzxeyc", + "knvtfh", + "xydntr", + "bjvxcny", + "dpmx", + "ifwg", + "rdktnl", + "khmpzql", + "djxt", + "ctsklva", + "txhp", + "xult", + "myptvj", + "znpwg", + "nfthoi", + "qsxf", + "iaqkxz", + "svxh", + "utjgdwi", + "ardvwq", + "vgdysz", + "qdru", + "njdlz", + "wjqrme", + "taoexbk", + "gbjhcy", + "vwbtgfc", + "iewuy", + "xotcmgb", + "zpqdbv", + "wdzqrh", + "tojd", + "qmwtn", + "ertos", + "uivzsr", + "mhnizap", + "ojkd", + "ipcmx", + "zvet", + "pohxb", + "qxhp", + "mlahyq", + "kczfmrx", + "zhum", + "lknidq", + "ivdwsqb", + "hwti", + "qkxhem", + "etliwjh", + "qngt", + "gxsdbnm", + "mcjkuw", + "ceibhma", + "ikjuc", + "zqopja", + "tbuka", + "vnpcr", + "cmjpuw", + "biuwcgy", + "tlmxufe", + "jwhetm", + "gldzf", + "cfjx", + "yxdf", + "wxytezg", + "yvbrl", + "iaku", + "lypic", + "cvqhign", + "ogzuf", + "iboyp", + "nyqafdj", + "mexhisr", + "mavrshd", + "iweco", + "cojqd", + "yasp", + "ioew", + "jxukrbe", + "abcgqu", + "jarqkh", + "bemv", + "mjenqt", + "xduzm", + "wfkv", + "dxlswth", + "nqtdwml", + "ieofbqz", + "vojc", + "hgmr", + "walhxym", + "vghbl", + "prlsn", + "cpfvsq", + "vawcqo", + "godwi", + "zuiv", + "pdbkn", + "afdgin", + "kqbrwfv", + "wokesgx", + "cyeb", + "pfxg", + "sqiktf", + "xaes", + "dstnryj", + "awvg", + "mtaxclj", + "rhofam", + "rnpqy", + "gdzs", + "votdqi", + "rwxv", + "szmliv", + "aelq", + "kcbmzu", + "oicfst", + "jckqeh", + "cmpefn", + "gunrfb", + "maci", + "qltde", + "jdmsut", + "qwfrzot", + "qhakup", + "mocs", + "fknyd", + "bsikvn", + "ykmfxq", + "gmzj", + "drcnt", + "kuvlpxm", + "spbuzdj", + "rsbtuv", + "mwag", + "otzpw", + "bohvkfs", + "ctwrzk", + "xyoq", + "zmafty", + "qgdyal", + "ytilsan", + "rmwg", + "aplyu", + "nzfik", + "vsyud", + "axdronm", + "dophu", + "hsfdz", + "wkiafez", + "asur", + "vyrdqtc", + "nwtfko", + "ixwyfda", + "zulvp", + "jwoice", + "bqeyn", + "aogs", + "hzlfdsy", + "xuaf", + "jgnmyvl", + "sghcz", + "fywgkxd", + "kdvmze", + "urfixva", + "pftgjus", + "jnesvkq", + "fbklnp", + "znfv", + "imbdoj", + "xptyzi", + "qxajdf", + "wfjzv", + "wksphb", + "recuwj", + "ilzagux", + "dujp", + "klsztf", + "gxwafph", + "tcinj", + "tzjbpam", + "jiwaqu", + "qdzv", + "lspeft", + "wrfmoxq", + "xacdhj", + "utsr", + "qjwpdt", + "hjpqck", + "opxtkrb", + "ytcgls", + "zqpemu", + "qbzvegs", + "yszpk", + "aswlje", + "kyuipt", + "aslxp", + "uaebji", + "vljsz", + "hkxrlb", + "niwoz", + "jvurp", + "vbgperq", + "mbti", + "nwhfkds", + "emiwyr", + "svmu", + "ejmpfqi", + "xtbfiwp", + "fxihaqn", + "cbvjq", + "ngye", + "vthx", + "gkrnlc", + "xdfc", + "qnahtdc", + "otzgfk", + "bjlys", + "uqxro", + "ftixc", + "mqpv", + "heyx", + "rghp", + "hkztpmg", + "azinct", + "ioja", + "ksagyx", + "edxuy", + "sjaml", + "ajxg", + "dtcf", + "gmlirbz", + "hbny", + "jsugzhb", + "npjvzhw", + "shdtfqv", + "qkrouzv", + "cafq", + "tlfvmux", + "dvwy", + "umdc", + "male", + "ymfpn", + "mtfvgd", + "rauwf", + "webd", + "xiqrezd", + "umqiznw", + "exnvuh", + "bxindmq", + "nwmvr", + "idjyr", + "oduwn", + "vsluwr", + "jsbiq", + "bzwa", + "tqfis", + "lqniwm", + "rembztp", + "osild", + "vgdiyw", + "bknhvfj", + "axmt", + "qvjfw", + "iwtjnm", + "qojlfsb", + "digq", + "oyzpkf", + "opxeuy", + "dvofg", + "vrum", + "holsk", + "pjwlok", + "cyphxe", + "adxvfzi", + "pzki", + "klbi", + "quwzc", + "xwnofi", + "daztoqm", + "udmla", + "johtc", + "nouwi", + "xrfw", + "ncxpr", + "vxukgc", + "qhnvtl", + "wtmgxjs", + "nelovxa", + "xumd", + "igbz", + "dmiy", + "slrnaif", + "oersjq", + "ovrtzym", + "jnhrla", + "oxynkv", + "fuwopsx", + "mafu", + "bpzdnm", + "ntxqiw", + "jtcg", + "tdzg", + "tpsuibe", + "nfjoswr", + "uozfwht", + "zwgsur", + "vomert", + "hrikuj", + "eflbksd", + "muasyzj", + "jfwc", + "uwce", + "daykuqt", + "cmsnpdj", + "zpcxq", + "migqr", + "xjfcedi", + "wtyg", + "tfcpz", + "bjni", + "begf", + "keirf", + "audqe", + "iflz", + "lgth", + "fwegr", + "zsqu", + "avpidhf", + "rmcv", + "ulhgr", + "mtnkwed", + "jdvluot", + "lbtriua", + "wpfitbv", + "bhelius", + "hqpmla", + "qtlyhb", + "apcwmq", + "xhzledm", + "uehv", + "bceuay", + "xlhes", + "mxac", + "xhbkcz", + "ekhjcqx", + "ltuwjrh", + "wcbf", + "oeqlhj", + "vcnmlfs", + "ofkhzv", + "fupag", + "qlie", + "qygeb", + "nuwq", + "wldekhf", + "viwghbt", + "nqyjga", + "yuacpb", + "vzci", + "qzrjg", + "mjwuq", + "azrpwki", + "rwteh", + "qjyv", + "kvpghqb", + "fzadt", + "ikqom", + "tnkmj", + "yvszc", + "fsldv", + "gynj", + "sxlocy", + "mihz", + "tojci", + "hnfcy", + "utvedok", + "hvmtuyg", + "icdgqtl", + "jfkdsa", + "ouarb", + "yagfl", + "pqeofdi", + "kegxjis", + "zisfkhx", + "xadhqic", + "fcezbyw", + "yucr", + "iwan", + "botpsd", + "onhvs", + "rtwjakv", + "qckmj", + "sdfu", + "xjwe", + "bwfdls", + "salkwp", + "uosb", + "rfuos", + "cpugd", + "tlfwir", + "gdzcby", + "ezwks", + "piyhjl", + "cfohns", + "jcwzp", + "pfhvs", + "hajxbs", + "nzuje", + "gzqmu", + "ajouyqw", + "dlnugmx", + "rjebcit", + "pbmzgcu", + "ejsyhi", + "dnpuov", + "vyzupte", + "igcrb", + "qpaubv", + "bdor", + "grveq", + "vjhricw", + "rgnm", + "ryekldh", + "hnjikm", + "zahmy", + "dntwsy", + "ironhw", + "mhjuel", + "ksqwvr", + "urgxjn", + "pvfjmlg", + "sxzwbro", + "lfedjts", + "lfivkt", + "wcevx", + "eoat", + "amqs", + "jhyquem", + "sdojpin", + "geautod", + "zreky", + "ewory", + "dtzus", + "cievlgx", + "dzbmjy", + "tdqci", + "rkbj", + "rqfyv", + "qiyow", + "iksopx", + "orykx", + "xomqw", + "ovhzxgy", + "qbvdhy", + "qmgs", + "pksr", + "xfsz", + "cfeljsr", + "fsptl", + "hopwmca", + "nkcl", + "pfcy", + "wlnbj", + "ymswa", + "paufsdk", + "rsxjha", + "clepz", + "qudt", + "ndkg", + "cqrt", + "gtvhpl", + "snufj", + "otkfs", + "knzsrj", + "walrnp", + "fiqarj", + "rgmbszx", + "pbfm", + "tahrofs", + "bnir", + "niudsv", + "mbcuj", + "bqsd", + "hzlgt", + "gwjpz", + "qgrfp", + "qfuibwr", + "jhqow", + "edsg", + "orsd", + "ctwj", + "lqaz", + "psyfw", + "qlueh", + "phndew", + "oevya", + "ceadg", + "ubyxdag", + "iuav", + "nmyzxq", + "dgjyzk", + "qrwh", + "huljyc", + "iqesufn", + "fdykzwp", + "nolbif", + "qjswm", + "okmlbz", + "blxfi", + "xsgzr", + "xwbam", + "puzjdsm", + "vrjyx", + "zpleq", + "ohqgsd", + "jvqyh", + "kitb", + "kgub", + "oigl", + "dtau", + "kbvtcdr", + "hkcsnr", + "hbfntqs", + "takjvu", + "ckytmp", + "kubf", + "uozk", + "cpwiyq", + "zlpg", + "xdgb", + "buphqk", + "askf", + "mkgy", + "mkdi", + "durw", + "xzfey", + "iunqhr", + "czktu", + "zdewvbt", + "mugo", + "gvdzqki", + "pumchoj", + "cagf", + "eazrsbk", + "xtbzi", + "ykmtaxi", + "ofhc", + "uclb", + "ijpbvtc", + "qlnjhz", + "hyindxw", + "pfeu", + "ypbkj", + "oajskve", + "amqz", + "vctr", + "vdmz", + "zbpmuhl", + "gboqah", + "eadl", + "khcsf", + "iatwxnm", + "uhykcq", + "uipyrtf", + "yakmxu", + "vxmys", + "pkcz", + "trqp", + "cxuyag", + "vwzl", + "srqejxf", + "ghrwj", + "pxmrhil", + "uysgaq", + "ohlcwmi", + "cite", + "hvfczq", + "iqnw", + "vjknt", + "wqaoe", + "ksmnef", + "djvgx", + "fmwkzi", + "ptju", + "vkien", + "zimqd", + "igbym", + "bpiz", + "nhcxve", + "rlcsd", + "jrwzayf", + "sylom", + "mzhu", + "evdqlka", + "nxebsfp", + "gtjdp", + "zoegk", + "iykae", + "picwsdv", + "bjzkax", + "quejg", + "exgs", + "xwloein", + "nghima", + "lgnfi", + "lmsdoxq", + "hjudfw", + "rhdfy", + "dxocbtl", + "vzqpudl", + "uknmcas", + "lwgbso", + "ebxgm", + "leph", + "nrzlp", + "mbns", + "porubvs", + "lvtpg", + "zrfm", + "prjx", + "pgtsbx", + "dlgoqti", + "dcaxsh", + "wrya", + "uxypwrd", + "uhzf", + "fkltd", + "akwi", + "zakyj", + "kgbmw", + "kyonui", + "olchjy", + "mgaxt", + "fuxji", + "jpyc", + "xrbzd", + "wfxos", + "krzyth", + "tircfad", + "apztn", + "kyqvgfx", + "ljwbu", + "sefq", + "jendwvr", + "bmfun", + "ypsrlh", + "ikcdn", + "bjhzkev", + "otwl", + "utogfqk", + "hyekb", + "xien", + "doimp", + "hrxan", + "aroxwi", + "jzqpg", + "flsbur", + "xcijnr", + "pyegd", + "yzritlv", + "tdez", + "tynvu", + "cimk", + "ewqobdn", + "nvloa", + "holz", + "sgoa", + "gpef", + "aiedpqf", + "aqlyrnj", + "qsvtdpn", + "hlpibyc", + "hbsiqx", + "fdgtp", + "pnlmj", + "pfwg", + "irdocj", + "iwtm", + "bopjlhw", + "dtjgckv", + "qdton", + "lzjtfs", + "borhlgz", + "jpdfche", + "ilxodey", + "ujkvtsm", + "xmqiob", + "evxroy", + "pvcd", + "vhswdt", + "fjlmk", + "ztuoxq", + "oqcxe", + "yczajbx", + "rtyhu", + "udras", + "exhc", + "epykjla", + "bnxldi", + "aizvonf", + "ohwaq", + "koexyfs", + "kbmfos", + "lpyro", + "abncjul", + "lefzgn", + "vpjqz", + "ebsumka", + "yxbjs", + "zglqnhd", + "dogfwv", + "noygzwf", + "huzkid", + "pxifkm", + "yksuxd", + "msdawj", + "qnlrvp", + "rqftyk", + "vymgcx", + "xmjk", + "ncjbh", + "jrep", + "nzpct", + "bztcop", + "ufndrbp", + "idupefm", + "wavkyf", + "swjh", + "kyiqwhg", + "njep", + "ykazdv", + "dzqeir", + "acujhnk", + "npokbv", + "rfkzwqt", + "bugjc", + "nauwcz", + "nwksdqa", + "maxsd", + "wsnfmjl", + "tepmi", + "bdhex", + "mkselp", + "pjcemug", + "drex", + "nfhuxwq", + "nuysq", + "unrl", + "sueftb", + "imxcl", + "vyqgdn", + "onzqb", + "hiams", + "qjwn", + "ijdyl", + "xmrus", + "ivkbr", + "jwgak", + "sewqybl", + "nirzbyl", + "ihcfgr", + "vloxce", + "kevaidy", + "buthzvk", + "amvwrt", + "qbfyv", + "zrpibhk", + "ahzoiuk", + "uyropja", + "wtixdj", + "aijh", + "uxqt", + "aevxgp", + "yjngmsr", + "mgoatqk", + "jcsx", + "omwelb", + "hatve", + "tezwhan", + "jkxzy", + "vukscy", + "slwkpom", + "mibgrao", + "mtdr", + "fxjv", + "ytmg", + "qmgf", + "odifrb", + "anfwcr", + "vxjt", + "ockuq", + "vnsdp", + "rhqk", + "ojfic", + "qkodn", + "tiumz", + "lcuztjg", + "iemwpy", + "mhjf", + "ndxijcv", + "lvprsg", + "pbxut", + "wypeshl", + "ylxric", + "kmcg", + "zmiruh", + "neakv", + "pdvrbow", + "pvaqyz", + "ftaelc", + "ohir", + "edpqx", + "sfwhv", + "tnfehj", + "acyufs", + "urwix", + "ksxmd", + "zajousf", + "ysqtbfg", + "eijsgp", + "awzm", + "wltmaos", + "ezbjs", + "gzar", + "vboaux", + "smev", + "vylw", + "nhgl", + "ywgd", + "qeosnrb", + "dlezms", + "szgc", + "yepawrv", + "wgduzqk", + "aquy", + "ptlfcn", + "ewkxr", + "rxjz", + "dyrlk", + "bzasyr", + "sriqnu", + "zyqw", + "gackspz", + "wyqs", + "fjcva", + "spkct", + "pizefr", + "hqtpcs", + "pngivby", + "cyoj", + "xprcu", + "jnocdzu", + "zdtjo", + "kfpenxa", + "grzd", + "lnvaomx", + "shfxvn", + "jrtbqa", + "qhuw", + "slxu", + "hpanxw", + "hzqb", + "famxn", + "tfvqajg", + "nvxlw", + "xfungjr", + "dxfso", + "xriqlv", + "kpwjzne", + "dchbmoa", + "dkuem", + "audcsy", + "prvau", + "hmpibc", + "gbeq", + "xblwgn", + "qyofzl", + "znro", + "qxpsn", + "ibrk", + "kuyfjv", + "dfhsm", + "tmfqr", + "nrcdg", + "kaihrq", + "fogpj", + "tnqzoed", + "rczwn", + "merx", + "lgwjbun", + "jysxw", + "avczwu", + "wrevfz", + "jtnzxem", + "rmfl", + "buft", + "tdsmxg", + "tpxo", + "mpvw", + "dbzcrn", + "wnelz", + "nvwka", + "oitgbv", + "drqt", + "cplg", + "nrsz", + "wrgt", + "sfompy", + "oxdzr", + "majgpd", + "xjhnsgo", + "figmw", + "mspbh", + "fejgh", + "cjqfhb", + "bduqjpn", + "ybeh", + "rixs", + "pmuk", + "phwx", + "elswtq", + "ugtlimp", + "yqkn", + "hvybsa", + "iwnvacl", + "mbyp", + "rdil", + "nbztef", + "iohl", + "durcmx", + "jody", + "bgxjcuz", + "nbdmwa", + "tjbzf", + "ihzx", + "oilakm", + "kapbf", + "lnjdyzi", + "ieblwud", + "ktjficw", + "ugbylvs", + "ncmwv", + "ilrqz", + "vgyix", + "rbfug", + "vbhtxk", + "qwpvhmb", + "bdpmsow", + "nmew", + "ezfhqi", + "kyvp", + "bcejp", + "dnuc", + "ykaqvsn", + "xzoks", + "trvzqbg", + "lrfugpn", + "ytcfkg", + "zhnl", + "uhsn", + "ohisda", + "pjlhvqx", + "koxiy", + "xpeicvm", + "kfejx", + "rnkjhm", + "snybczv", + "swjypt", + "gycemu", + "ieha", + "izbxduw", + "xwarn", + "bkyqvac", + "lyzjfg", + "zeswtvk", + "bqla", + "lvqti", + "yzsbco", + "gzrakbv", + "gdyo", + "ovgl", + "pzjvmy", + "nwtyjkx", + "umot", + "qyfszvw", + "hzewo", + "waelgi", + "nioq", + "xkqonu", + "cpka", + "bjmavo", + "jdwo", + "mduqr", + "lufay", + "bszrmj", + "yhezx", + "hadkgpr", + "skzahu", + "jivarl", + "zpaeq", + "cszxquh", + "ymfs", + "aembrtl", + "gtkp", + "hwejs", + "dhklex", + "lmzgpc", + "ylnvi", + "kiwqn", + "xhzoa", + "yijsgt", + "qmxjtew", + "igucxk", + "crbwjgh", + "ngvfito", + "xpdj", + "evdmw", + "jmicdk", + "ptsfbi", + "btdp", + "qiscevx", + "cfrdib", + "ughcram", + "lamgj", + "iwaqd", + "pfkgr", + "mwfy", + "oqxargd", + "ovky", + "qgrywz", + "oqrnm", + "ytdf", + "hbru", + "pwfx", + "poeu", + "cwlpqn", + "aigq", + "rxzlt", + "ylkhdu", + "dwghtps", + "sgrzhcm", + "cxma", + "bidats", + "fdbw", + "wzryo", + "zxkgfh", + "baek", + "miwyxq", + "lywog", + "jifsh", + "fkqxnv", + "hjgk", + "pyrq", + "stir", + "njtgkm", + "iczrmqx", + "aoce", + "crguw", + "srfmpvo", + "oascr", + "zjqwds", + "derswg", + "zxjk", + "quav", + "bwvxna", + "siokwgt", + "ervjd", + "hokcde", + "upeobfs", + "qexpcw", + "bkery", + "isqoacl", + "aovztl", + "njkxzd", + "dglac", + "tvfyu", + "lrfktbg", + "mipae", + "obatfu", + "ihay", + "gcfjtir", + "dvplfb", + "tzsj", + "nygm", + "lkgfap", + "saky", + "ygcte", + "ctskayd", + "nhasiwl", + "gaztmxs", + "lzhf", + "oyjtlu", + "qhxt", + "hkts", + "ylcp", + "qmtbinp", + "gwnadls", + "nzov", + "ymeflvk", + "bvkfwi", + "oqwy", + "czjilqf", + "wgerizm", + "iabqxmp", + "koqcup", + "ufarxnb", + "fqkw", + "sefxi", + "xzujgl", + "dpkgyra", + "zycks", + "fwqxjp", + "fdau", + "gzro", + "egif", + "ucjd", + "pcxvm", + "bfzq", + "smou", + "ovqjrwa", + "vepmw", + "kcdp", + "pcywmb", + "pzcdj", + "rbqtw", + "rpeym", + "daxg", + "kvtf", + "kwnd", + "lcpj", + "pfovu", + "hsvw", + "jdtusmr", + "gelcn", + "dnjxcg", + "dkth", + "ivmdjxs", + "yeuhcq", + "kahieu", + "rqtdph", + "skpcwoi", + "qsregxn", + "vmhl", + "vpmdrx", + "fmqnvus", + "vdwgem", + "jhivaf", + "fnyd", + "xlsi", + "pveqb", + "mkfjo", + "ljrp", + "jyedx", + "auskq", + "lfmcv", + "yqojin", + "qfrp", + "htdpcl", + "lywish", + "xmyftk", + "kbxhjm", + "vfgnpm", + "iybgqf", + "pmnlb", + "rqtdjn", + "cjlrsan", + "vasozpb", + "lgyhb", + "lfmbvte", + "eoal", + "ebwasqg", + "dileask", + "zhatim", + "tdfvn", + "ypbtnl", + "adnoi", + "kaozeu", + "spnzmeq", + "nfbhmo", + "jgwcst", + "zvtbqeu", + "hnetmr", + "wldg", + "wkatep", + "dguo", + "iynfda", + "dpunkz", + "ayomwq", + "iycafx", + "zbmx", + "wyxzhri", + "zvfj", + "eghb", + "bfpk", + "pbjrm", + "hlwu", + "kcym", + "tflkq", + "kfne", + "mcerv", + "eloh", + "baxcqsy", + "gwyzpq", + "htuwcpe", + "wjvysc", + "zgfoac", + "zmbsfh", + "jced", + "sdhuwcl", + "ohwln", + "wmvzi", + "kelvju", + "kywof", + "yrkhom", + "frbqz", + "gmpu", + "eamdxhy", + "ketq", + "xkdvuw", + "vjpfmnh", + "fdcx", + "kuwipzh", + "zmbcr", + "isnlzag", + "snfa", + "cuolts", + "koznjcg", + "xkrqfd", + "pfcusb", + "eobuq", + "quovtn", + "bhxq", + "pmoze", + "lotkps", + "wadn", + "ocupzth", + "etpulzm", + "awcygex", + "pulz", + "kimvatn", + "lkqzfmi", + "hkyte", + "gcpo", + "gtofhsa", + "jtlrgse", + "vfqbl", + "jxouemg", + "tsoipxy", + "uwkfgt", + "vmflo", + "ofsrzk", + "lgjh", + "mojg", + "opbhal", + "rchxlt", + "wynodt", + "dtjxk", + "lwargm", + "iowql", + "atoyvhb", + "nbpcy", + "ygnta", + "yfcxep", + "hpaw", + "vxpy", + "lvftrx", + "axrn", + "chjkulf", + "rgnjb", + "zonuklb", + "mzyfubv", + "wjox", + "srikpqx", + "hnks", + "yozx", + "ilabpx", + "dqxuy", + "ifbkg", + "zxktdin", + "efslpr", + "czjfvwn", + "zargy", + "bpklcr", + "qulm", + "qvoebr", + "vsqpliw", + "rfohkwi", + "zjachqm", + "zuwo", + "lqgw", + "vzxpay", + "vcrh", + "qmowven", + "omzdvyb", + "yibfn", + "geruih", + "bmyxis", + "qhnos", + "swqyn", + "hblgxf", + "yvwmni", + "wtlndax", + "gibpmjy", + "wxjzpg", + "gmzx", + "gpcj", + "ujpgmzq", + "ptswo", + "hobqkin", + "earvzg", + "wetcho", + "ecwyvn", + "xmuprgz", + "wjpdm", + "cmdxpw", + "ltvb", + "zgnje", + "vcgweqp", + "cvjihr", + "jshulx", + "abpkdj", + "medxiv", + "knwsfy", + "paskfe", + "emjgowy", + "fygm", + "oircyzd", + "oegaxuk", + "yspcw", + "mifa", + "iuqbfem", + "inyks", + "ykowgl", + "visdyo", + "mlskcr", + "jqckvw", + "pcdjnlv", + "vdsxcb", + "lfgi", + "cmdpxg", + "cluhd", + "nfaeb", + "bvwi", + "kymcsi", + "ykmalz", + "aqbwot", + "pmvx", + "tvuoea", + "dpjw", + "nspvgwx", + "lcqn", + "ryidsqu", + "radt", + "vbisqwl", + "xkyb", + "nobihms", + "xcim", + "krng", + "hirykxm", + "rlewozd", + "xueyz", + "gmbpv", + "fidu", + "ntab", + "nchui", + "hzep", + "lmektj", + "ruht", + "wfmz", + "vmap", + "mazfijl", + "inxhr", + "xulczqp", + "fito", + "fndq", + "bzdaqjy", + "ihns", + "fvecl", + "skjc", + "mgcrtw", + "womjhq", + "mlgsoaj", + "zxgdw", + "gdcon", + "vjrlwm", + "zjqxvo", + "fwximk", + "xmsioqy", + "zfsvd", + "locaq", + "hegaosc", + "dnzeph", + "cptwqb", + "cqknm", + "aesu", + "tymsxnc", + "idzb", + "dpzah", + "wvbihrk", + "pdwft", + "xclhvby", + "ubjrhlp", + "ghcfuep", + "xjrgwbt", + "gvjmqsn", + "bkytw", + "ihprdk", + "piuayr", + "ftzildg", + "gldwyb", + "eufj", + "ydcf", + "lqnhigf", + "cegrhjs", + "aidrs", + "kajf", + "bdhmncp", + "ixpmo", + "qztw", + "sqfbt", + "iwtp", + "xeioa", + "zporcid", + "doun", + "tosc", + "opbd", + "cjwfbgd", + "gmjina", + "fovrnec", + "eqvfb", + "lbkyofa", + "bvew", + "ftlao", + "gtml", + "mdgcwvq", + "srgfoz", + "itukm", + "uqgbx", + "zhnxpju", + "pcyqt", + "gkei", + "cghukpo", + "hoap", + "iorgmbv", + "isyugjw", + "cwmstzb", + "tqxje", + "osmrd", + "myixgar", + "xitp", + "undge", + "dztao", + "nzqiyme", + "lkpzhd", + "oyujklz", + "acoyrmb", + "brkmxut", + "bncpm", + "lhcfwxt", + "uasyflw", + "oties", + "dqruwik", + "sfxw", + "xcujr", + "rvxfshg", + "huwanmp", + "nfoa", + "klxm", + "swbq", + "xmwsyv", + "doqylz", + "oshpifg", + "bfme", + "chlpo", + "jqscfaw", + "kcqhm", + "egpf", + "tspom", + "xsvft", + "dvpwhg", + "nsjr", + "iwut", + "xevw", + "pdiet", + "wrnvhz", + "hfnx", + "woli", + "ryfe", + "qrptelm", + "lwmh", + "bjtdg", + "zwvxs", + "rufgyio", + "rwvx", + "labnqh", + "iucdapf", + "klzas", + "xjey", + "nbwfpt", + "irhel", + "xmkrth", + "yanekgt", + "orig", + "bvunkq", + "zeosnlt", + "jdui", + "gsztx", + "pxflz", + "mjvadxb", + "ywct", + "lgeab", + "yegri", + "bpnst", + "rtjozah", + "omte", + "qlzser", + "uncojt", + "kzhcmu", + "jcvrup", + "coawhmk", + "dxtk", + "edkhzc", + "jwkgdit", + "yaisnok", + "wmszk", + "nlzfq", + "tzdn", + "cexvmqb", + "azxgrt", + "gltrx", + "jcml", + "ihdn", + "lmty", + "keps", + "nwupalb", + "hatwje", + "yakqxdo", + "vxgoek", + "kmxzq", + "mhbqxw", + "tomj", + "iymsr", + "yaquwjo", + "lyztd", + "crjn", + "onrvdw", + "zpogea", + "iwshyqk", + "wvtaeng", + "lcpf", + "nhyegpl", + "phbjt", + "uktjhg", + "vfiws", + "kldrhv", + "pfvaycl", + "drnezsq", + "fyhqj", + "orfc", + "iseyfgw", + "fgyonr", + "usgljr", + "khbwdp", + "qzhrdns", + "fepk", + "afxi", + "veapb", + "hfyl", + "pqme", + "fxjt", + "tskdrz", + "uisa", + "yvsx", + "emph", + "vjndzfr", + "jmbisl", + "ozuq", + "yeblmvq", + "ghnev", + "qhnp", + "rnkmx", + "polzuy", + "aulwc", + "huvgl", + "asdlvqt", + "cgurm", + "nzuyjq", + "uztipv", + "sygz", + "jxlcy", + "liojt", + "uvby", + "adzm", + "tspxnw", + "jnol", + "hpegauq", + "yhcfgwn", + "kruqsl", + "mibgnla", + "mczhpx", + "oxjc", + "hducof", + "ponf", + "vncq", + "nvjuc", + "kardw", + "tcsqg", + "bpzwcvd", + "drbu", + "borlchz", + "zjuxgh", + "nybugvq", + "mutwovd", + "tpycm", + "rkol", + "pxsjb", + "quvs", + "ievnfx", + "sewjulv", + "elgfm", + "fctzn", + "cpje", + "ugzjh", + "peal", + "ohwant", + "lxpshb", + "paqcbim", + "orzl", + "vpmqujx", + "vdjo", + "tchk", + "wpbny", + "rejmy", + "oxcdk", + "vxpjc", + "pfmqyk", + "rjxm", + "hweta", + "okpagz", + "nbioxmh", + "rncxpoj", + "vjbp", + "gunizo", + "qtgckwp", + "ipyt", + "rhej", + "sweurkd", + "gzeoqul", + "ojzg", + "vpil", + "chqozw", + "pqiad", + "obti", + "ocpsy", + "hylx", + "zora", + "xzaqi", + "avxs", + "ltvzusr", + "hrsza", + "tqkhai", + "unvx", + "jepmto", + "inwurgd", + "izwvagl", + "vcmb", + "omdfjrz", + "griq", + "crtqpi", + "surmfdo", + "xiouaqc", + "aewzk", + "jalb", + "snjbxk", + "vigaf", + "jmqbezi", + "nultp", + "iwamqr", + "ipvycqm", + "bwijuq", + "jlxbits", + "bmxhniq", + "xpiasv", + "wdkjvxn", + "ytovrjb", + "jdlrya", + "xhnitsb", + "wztkvbn", + "jsdykqt", + "oexgid", + "qvpey", + "euyqi", + "emiboy", + "nlezs", + "uhjbg", + "pvqft", + "qokezf", + "zoaihg", + "hkvad", + "hyxzspg", + "moenhjb", + "bvms", + "zfmuglo", + "zjxdnh", + "iepg", + "pxdh", + "szmnab", + "tpywcf", + "peag", + "mfkgwt", + "zjrhw", + "flys", + "yphicse", + "mfcgso", + "zscm", + "empuxl", + "ybhcg", + "eitcb", + "nxqc", + "vjgrk", + "pdwl", + "vfehbn", + "onltz", + "yzgmwi", + "jrphqk", + "wvkojqd", + "pcbxlq", + "rkwsh", + "qloukgz", + "dcgzbo", + "wqmofzt", + "cpzwfie", + "serjuwg", + "ndws", + "hqke", + "ldamzv", + "mgaqtel", + "tuavljg", + "lzcxw", + "geci", + "qfjxgu", + "lxarpng", + "uyvbh", + "jqwlu", + "gsqutk", + "kvsjtrp", + "fgyazbo", + "gqfdzx", + "phnfd", + "ftmyln", + "ckge", + "bidjvn", + "kdsbxny", + "oraixkc", + "tmfiuba", + "eiohcn", + "kqxlsy", + "bxpj", + "ncmz", + "duybmh", + "kimduc", + "oadceml", + "qlwpo", + "lmcwk", + "izeyhfx", + "esnfqgy", + "vuxj", + "ipnk", + "wlfb", + "wuli", + "fljyvi", + "xbyte", + "nrim", + "nhxfj", + "nbgpa", + "rqhx", + "loka", + "imlkbdg", + "mqstp", + "jyhlq", + "kwme", + "ctrskv", + "uxyiw", + "jfbcp", + "jcmfv", + "qvnp", + "muia", + "zxbpg", + "rhuzyxb", + "uvgif", + "cosl", + "hdxvk", + "mvjyx", + "cduof", + "ptzd", + "laogchf", + "hofiw", + "mzphef", + "nburmjg", + "npqm", + "wougbm", + "mjinc", + "xohu", + "qhka", + "iwfha", + "mfidnw", + "nritms", + "wxqsc", + "gulkdt", + "fdoip", + "cvpltyn", + "sfvgi", + "difjal", + "kxivtmq", + "dvqoj", + "rfhc", + "dknqgvm", + "abectw", + "moguw", + "faeh", + "eqwcv", + "yuebwr", + "noarg", + "elgmof", + "ozcbkw", + "zfuhgam", + "vgelk", + "qnoci", + "fhak", + "dxqvr", + "pucib", + "wgpnx", + "zojwynh", + "ayig", + "axvmz", + "aijgmpz", + "ismlp", + "fthnv", + "cdugehq", + "lgde", + "aekojq", + "qoinyf", + "zqido", + "ypmigo", + "uwoe", + "syxnd", + "lkesdr", + "mlaqdt", + "wjdqx", + "mxew", + "svbt", + "otwhb", + "ecolpkd", + "eqhyv", + "jdflsiq", + "yzif", + "kjeytsc", + "xmvwrc", + "vqixu", + "pczsug", + "pahoi", + "ylmdx", + "fxihj", + "fgsybh", + "reufh", + "pfrl", + "nbkdlj", + "lmfgko", + "zlpxq", + "ngjapf", + "altdrqi", + "kewdgv", + "rlxoe", + "toxsrj", + "xrwji", + "uqajznt", + "bixhvjq", + "vbzmjq", + "bnkymv", + "ubipml", + "uyeqo", + "vzpcj", + "fypicos", + "plhcfo", + "efypw", + "ukrtxm", + "tfipbw", + "weyukt", + "chiz", + "gmvf", + "jtomenq", + "hzkpex", + "rqvmoka", + "dvkq", + "afom", + "vgwr", + "xcneowv", + "qpsdntv", + "ajhlqe", + "trfda", + "jfimc", + "gmcvea", + "nmyztah", + "xdkb", + "btrnf", + "cojv", + "xatgn", + "yomket", + "nvxjykr", + "zupqvh", + "txrgedp", + "mezjkic", + "yutkr", + "mavrt", + "pxbmsyc", + "otdxw", + "prhzb", + "rjxo", + "lnbipa", + "xmeuyi", + "yqvc", + "jyxgu", + "bvtly", + "vupqt", + "kmfnlh", + "rovfa", + "ubtk", + "itqhn", + "lybxs", + "osifr", + "dnwtvf", + "amrzf", + "wnsbq", + "spuqy", + "zotcs", + "ahrypik", + "nhji", + "lepgh", + "acmvdb", + "pvohfq", + "nhrwvag", + "afjcwke", + "pcmter", + "bteou", + "mpokt", + "gdsko", + "ugwqxoe", + "rngluh", + "eoir", + "gvdr", + "fkgyud", + "syki", + "sjgp", + "lexmh", + "tglnkvi", + "zxovd", + "aupthx", + "sgbkql", + "tnfoz", + "mqwodp", + "qgje", + "kwmocz", + "hjnpbt", + "wmjz", + "ncpeol", + "mtaxb", + "bvmnqgo", + "sjir", + "vimz", + "dmbkgj", + "sjoirc", + "pbve", + "wlmpg", + "eltqykp", + "ovwsijh", + "qtfryaz", + "qrnzfv", + "rondtk", + "rakhso", + "ahdw", + "geys", + "cgum", + "uaekir", + "dpgthfc", + "acyjqw", + "qmta", + "jkmy", + "jxwev", + "slemgb", + "ezxunps", + "vkcyitm", + "yfacqbv", + "mrwboht", + "lxhi", + "faqse", + "ehmj", + "gxiydoj", + "qlub", + "oztd", + "iyrowj", + "rlyjko", + "ctwdfrq", + "ekrqzvy", + "gtqnyv", + "dmgz", + "zyqiwr", + "fzny", + "fuvgnl", + "hqejo", + "mtdu", + "eykp", + "eztnyup", + "stdwjlg", + "wbzmdep", + "bzucs", + "znrec", + "uaez", + "ukxpql", + "utvi", + "zyeu", + "hkdwlu", + "kvbifnc", + "bpdh", + "dfbaqj", + "arwqz", + "xtdkws", + "pjlxfur", + "ycvodf", + "qlxbviw", + "gvqlytu", + "hglq", + "zqfns", + "eyit", + "etka", + "ocwnbua", + "stye", + "xhfriqy", + "kyfzilp", + "ykhv", + "mpazr", + "noxg", + "pset", + "txhqdrs", + "sxvu", + "ijstg", + "mblqnw", + "hrmjbs", + "kjudf", + "ytrap", + "gapwje", + "wdlzs", + "eahqmzl", + "drthuke", + "eodrtm", + "luhb", + "njhktcw", + "hyfqjv", + "fbaupw", + "ermuy", + "ecfqpm", + "fwbqkd", + "tybfie", + "wvmq", + "ldex", + "pofyqhi", + "kmavltg", + "dzuieqs", + "miedw", + "qrlpyfc", + "rywv", + "brwyom", + "krzt", + "xoagqwe", + "styn", + "drqfhz", + "sxfhvzw", + "yoagez", + "kcgbmhd", + "kiusp", + "whacudv", + "xabzq", + "xjalm", + "dahkl", + "peuco", + "mzxcf", + "foly", + "pofzj", + "gmiruhl", + "qmhwot", + "uybfr", + "tmdb", + "jzwn", + "xarfh", + "beinxus", + "hdjv", + "azme", + "yfmxsjl", + "jclm", + "eyik", + "omcgl", + "padwq", + "xzcr", + "atepzr", + "oyegcqj", + "otzxr", + "bwflekd", + "pemf", + "ezihvmb", + "vxuc", + "lbnhx", + "wonsjda", + "luozhma", + "vbyom", + "tznmeub", + "wrjom", + "chofvyr", + "lspzkc", + "rzhlvkj", + "cjbvd", + "gnpy", + "yjfxb", + "hzcxfad", + "yvetm", + "qikn", + "fsjlzyw", + "meifr", + "qdtj", + "tqacbs", + "ushly", + "qbzf", + "rebqoyz", + "cdyxtu", + "fbdonh", + "wqdjpnr", + "lfykmaz", + "fcqgeun", + "pnbuec", + "fhwzsdj", + "gmizxpc", + "gdflmo", + "trshm", + "rxzy", + "arneixj", + "jodqi", + "rujktcg", + "ftjlb", + "snxdb", + "rsuwlf", + "bqux", + "uhxjcrv", + "ogmk", + "hfrmxu", + "usvg", + "jgxpt", + "pgekor", + "btmf", + "ldaqim", + "kdwa", + "jqbamxe", + "upitz", + "fnbhqpl", + "ivmzjeb", + "ryzk", + "gdwr", + "fzjl", + "cvlb", + "ubhkfvc", + "rwxbn", + "mpknyi", + "wsmhxyt", + "fyctj", + "ueny", + "jtymqep", + "bafgwdo", + "fazyil", + "nzmuh", + "vxim", + "kgxv", + "ajyuvp", + "iaju", + "hznikjb", + "sukci", + "gpbj", + "hyqux", + "enoxck", + "zkxym", + "tphyiu", + "lpfnda", + "yuzmcip", + "cvpqhfb", + "oder", + "advjlm", + "krjapyf", + "wlqxzm", + "fzdav", + "afblg", + "gniub", + "uzxm", + "uqwkn", + "xdzgqm", + "twlev", + "nmwk", + "tydb", + "mocre", + "fwynxv", + "xycjm", + "msacln", + "uvot", + "niowzrq", + "fzxmver", + "pifhw", + "yrke", + "obdz", + "pjbe", + "unom", + "pxgb", + "stnhygz", + "wngf", + "amxc", + "rbigxd", + "ajixm", + "slvfow", + "eswlthb", + "rvje", + "wtha", + "omnpdku", + "cqrms", + "pjbc", + "zqltreh", + "bzhpong", + "zltunac", + "jabkow", + "lifd", + "ntcyxe", + "ofde", + "yqxn", + "mchqwir", + "lyasp", + "usgotb", + "vmjhzli", + "zysbo", + "mydc", + "qgxym", + "chpswbd", + "luxr", + "sjfzl", + "usmfhcx", + "lnjgfz", + "jwxnr", + "uxgdwtb", + "ljgdhxs", + "caxfol", + "xbfswj", + "khgis", + "gfjvop", + "mfvbgdy", + "nqsb", + "zbedto", + "emzbt", + "cmlyxnj", + "tejnms", + "gkmn", + "nwpvri", + "hsrcpki", + "ejpvtxm", + "zvyecnj", + "aqvfsn", + "bsnjyfz", + "avwlfco", + "qnzot", + "qldwxm", + "etmfvhw", + "blmip", + "drfu", + "ekbl", + "ahqzmu", + "khedn", + "jcilhg", + "vdhmuw", + "qawxczp", + "exczlgs", + "rudvjw", + "bkwpqj", + "lfhi", + "filuzxe", + "tjhfu", + "qgic", + "krdglyn", + "rfcnmpw", + "emudbz", + "qejaobc", + "ljzoerb", + "yhqs", + "gufc", + "ludkcy", + "zkjmx", + "irsxtyf", + "ihjdt", + "jovqtbn", + "afcdlqt", + "lsigxjm", + "xwmfqha", + "xdufo", + "psuegrx", + "wrzptna", + "uxmbo", + "blptrkm", + "hbtyikr", + "absqj", + "gqumnf", + "jdqsf", + "orgpble", + "hntlfgb", + "asncw", + "vlte", + "imsocl", + "eriqgwl", + "icvqbf", + "pveu", + "hogp", + "kncx", + "fivxz", + "bmytsg", + "fdhlxcp", + "ebxdimp", + "awupsvl", + "rflq", + "gxubhsk", + "mqsvxe", + "ubiglwp", + "yznt", + "cxmos", + "qsvbz", + "tepsvzj", + "ixkyvlt", + "egwyx", + "syil", + "sqxve", + "hwqeum", + "bsyndrf", + "iwkpy", + "nxdcjs", + "nyzdwbu", + "gdfhioq", + "cszx", + "mriasj", + "vjsp", + "rlitmb", + "ysewxov", + "yzcai", + "imvnuks", + "aznxo", + "bicxp", + "qdbx", + "fprm", + "izqpcv", + "ketaqr", + "moidn", + "fobluw", + "soxbakt", + "nfpjl", + "xqat", + "toxq", + "qbpaysw", + "jlea", + "jlgf", + "kvfcrtj", + "fahugvk", + "uaymrk", + "nmdoeaf", + "zrio", + "rjux", + "sbqiwlt", + "ougjf", + "fdxu", + "rtvdhw", + "lqymp", + "apyn", + "smbwy", + "rkczsql", + "npivohm", + "uygv", + "nztg", + "ekmwb", + "iuykgl", + "buzit", + "puton", + "yozsei", + "gqklz", + "jiknwgz", + "gjldcn", + "anfju", + "xiusd", + "zcjinv", + "nqohg", + "yrntksx", + "vrunckp", + "gfrltd", + "rmpyskc", + "xusi", + "clto", + "rgnuhiy", + "ydfoqg", + "gtwpu", + "vycnj", + "oibje", + "kaitx", + "fqthix", + "jdpgeo", + "whjfzkd", + "cakfh", + "doac", + "xfgivjm", + "ehsbz", + "tcjv", + "ewza", + "uzjfi", + "ktai", + "bzujvgq", + "ejlth", + "lvxmnh", + "wvnmyb", + "hqzgxb", + "iedzlac", + "fhpbz", + "vymk", + "wfbo", + "xasorq", + "fvxeyn", + "fgce", + "goup", + "cndr", + "gydf", + "vzky", + "kqbxzm", + "vxyqm", + "ekms", + "ckvot", + "yljkb", + "guxw", + "lrpmus", + "uldmez", + "awuo", + "yngq", + "tifdehm", + "guxmsoj", + "blwfni", + "pqdz", + "tgjlqkz", + "znhdl", + "qknylo", + "yupz", + "elxq", + "snatzhc", + "gvwehds", + "qnfue", + "qrvyoje", + "xyjlepw", + "klgdh", + "dcnae", + "xsydzm", + "lvms", + "rpey", + "oyhqgws", + "mjxe", + "ubqhem", + "zbpm", + "zlqnmhp", + "nxvf", + "oarnp", + "btuezm", + "twxr", + "vfyk", + "swhpf", + "zjrcvl", + "qtsx", + "slvbor", + "bcrj", + "dinlfe", + "rqgil", + "zpjmyn", + "lkec", + "zhsprn", + "lchxt", + "jxpew", + "bmsra", + "grvs", + "kcaqvnw", + "faotqpl", + "wrltzmf", + "xnjp", + "kdscwvp", + "hxrbj", + "wipbjn", + "uoclyvz", + "sjbeyqp", + "psoqm", + "kfosir", + "grxi", + "qgoj", + "ujldwem", + "zvexsl", + "brda", + "getqsc", + "jimkgs", + "aimtx", + "vuhidcx", + "atgdy", + "ybmecw", + "mdal", + "aygmwj", + "motdlr", + "xwtm", + "subph", + "jnqlokh", + "mwrsuke", + "zfdkews", + "vjmwq", + "keogaxb", + "wndqyjz", + "nvshuyd", + "gsntj", + "xwyp", + "ujqkvr", + "qger", + "oibamzs", + "zqspmio", + "ilcz", + "hzcibky", + "edqgh", + "fvgr", + "hdeq", + "zyah", + "brxu", + "ecnf", + "zcqth", + "wyte", + "heqvfas", + "bxsptu", + "bmzacjr", + "xjrc", + "owghc", + "zmwixa", + "qbugri", + "ghofe", + "xgnupko", + "uhql", + "udfl", + "sqogdtw", + "osecdjk", + "lnkvxh", + "ueqdlx", + "eohg", + "rwftlga", + "rldh", + "njpzt", + "jwldufr", + "igxad", + "evuwl", + "qoyrx", + "btwgvex", + "xrhesl", + "jkbv", + "qcjtof", + "ctnpvi", + "zbghpu", + "gkewc", + "lxcojrw", + "vzlft", + "quntx", + "ckwi", + "thuvrcm", + "vfky", + "ncvioyd", + "rbzgn", + "ytolh", + "averlj", + "jbex", + "tori", + "dzrv", + "iqscm", + "saqb", + "iwaekd", + "fbcnhpj", + "kztw", + "icjzfan", + "cpdio", + "mpvawz", + "xfbk", + "lknp", + "kzslx", + "rcyu", + "lawvk", + "ikae", + "yibmwx", + "hgsuic", + "yjio", + "uqekcso", + "zihqbe", + "ubmn", + "hlajiuc", + "lfvdwm", + "rlgezw", + "lmrich", + "selrufj", + "xarepf", + "bundp", + "femcdy", + "aygjl", + "umod", + "zrqaefx", + "wdjqs", + "ifbdktm", + "dfblqz", + "wntk", + "pasjfwb", + "kfgzwq", + "qyrp", + "aqmzd", + "rgyh", + "hmaoue", + "bphciez", + "dpgzfy", + "tahg", + "cxtqml", + "vzwxjfe", + "wbsxf", + "eijfxzs", + "wuegj", + "ezbk", + "ycjwdnf", + "rxlgz", + "hwzr", + "cureyxk", + "omztdvn", + "estgr", + "ctqskp", + "rtou", + "xiwh", + "kgon", + "acjp", + "ahskg", + "fips", + "qrdoag", + "airdzg", + "vxcfoaj", + "mvnalhz", + "gvfm", + "lgqv", + "nxalw", + "gdxrbj", + "bhrevz", + "sbqd", + "raqc", + "mfwegpu", + "cdaxtk", + "gabthqm", + "cxbdpu", + "jridwn", + "cgpbtj", + "nfra", + "wtazkcu", + "dytjre", + "jgqsanp", + "qzitr", + "ahvm", + "nrtlz", + "qnsr", + "uzgikpl", + "vxktd", + "wlknexg", + "kezl", + "eocriyp", + "miup", + "xqpuk", + "ctis", + "lzjus", + "gtqo", + "zxvcy", + "vtomyc", + "oilmu", + "qwrfn", + "hyrue", + "sdwtm", + "vkqizt", + "ofbdsnc", + "adkcv", + "rjgq", + "duiqkn", + "ncwz", + "itrzgmb", + "oldswe", + "pnrqc", + "xfjzpq", + "xqcvl", + "vrxqm", + "vwsn", + "hasr", + "unpokjz", + "ehsmkpo", + "beqc", + "ypdc", + "qhisrx", + "xhmr", + "wfzkoae", + "tnreoj", + "fepdgoh", + "xecsqtw", + "cxortkh", + "nvhw", + "yvstk", + "qsurla", + "tpkn", + "ofyqs", + "tkrzqi", + "qrplint", + "vtgqix", + "azoyt", + "pxsgo", + "axtq", + "ywvebc", + "ubdc", + "kqia", + "hkjmse", + "hydf", + "bfvhke", + "qoywsc", + "lmunox", + "zgsaljo", + "yepks", + "gband", + "zshlkym", + "acvoq", + "eaqpos", + "kqbowah", + "tokl", + "oyqjwgk", + "tfim", + "ymak", + "ufhnc", + "freo", + "ifnb", + "eyvo", + "cbdvnfe", + "utiopa", + "oebjyw", + "eldc", + "odiyma", + "nuphox", + "vplwi", + "teugbh", + "htfm", + "uxeisa", + "bkpoeqt", + "uivoej", + "mvuo", + "ysptz", + "fxod", + "jndzfiu", + "gdfpo", + "nuefx", + "xekbnzh", + "gnevzb", + "lqyrzh", + "tnvqd", + "bfkryn", + "kxsui", + "zdmi", + "resijl", + "gaimvr", + "rqdibl", + "fndl", + "owhzte", + "xdjl", + "dtvczh", + "auvpkl", + "zujaoq", + "nuyqob", + "ignx", + "xurpymw", + "osgti", + "fxds", + "deizr", + "rbhjyv", + "aqjew", + "gbivcyz", + "brxct", + "afjgsle", + "pjkrg", + "myrhsnq", + "wjhgbrp", + "hzojfu", + "npsj", + "fjyew", + "kundqao", + "fqkyjxo", + "nkad", + "ncjfo", + "iolqu", + "qpwjef", + "atbdul", + "lhnxut", + "rtxsnlj", + "svfkja", + "gwfq", + "dtumab", + "dxzou", + "rpoqmkb", + "girth", + "gtbsa", + "jyzrtd", + "wfrzuk", + "ruab", + "bpquk", + "muwlrb", + "rgnvxqe", + "uibhfy", + "unsb", + "ebmxyz", + "yznfq", + "lxca", + "rizntm", + "txjb", + "lfbrkn", + "plynus", + "fpyckj", + "rnwumd", + "mphfowl", + "djwlhcg", + "uczdm", + "jkifm", + "ndfmz", + "qjbkulr", + "ouqgm", + "lmidu", + "vpwjb", + "vetyd", + "csmq", + "xmeuc", + "ptkfqjg", + "tndr", + "oubj", + "clzyks", + "owckn", + "kqdpis", + "lqsv", + "gciy", + "ocnbuk", + "nfado", + "wovghzy", + "sjfu", + "anhrwzu", + "zivmnk", + "ltmqwk", + "bfiwp", + "fwajc", + "flpaqk", + "gpad", + "gpyrbq", + "kfvbzl", + "xudtfa", + "hgdfar", + "iurjx", + "kqznt", + "izcwbs", + "ewlma", + "wsvboeu", + "qlac", + "ocxpmn", + "akosn", + "cwhpgb", + "mjsgp", + "wlji", + "azqgdrx", + "hgmuyo", + "vnki", + "wobstym", + "lwvjbm", + "oygjtw", + "qzuok", + "dmycvb", + "ahjmqg", + "xrnflwb", + "mnigcw", + "ljqf", + "valxtui", + "hbln", + "rdoabm", + "fmqd", + "klwqau", + "qwiu", + "nkoh", + "lwuni", + "dyes", + "fyjhnoi", + "vtihxue", + "vztcwkb", + "nxhgdrj", + "zvqm", + "hguk", + "krdv", + "jtiq", + "fnkh", + "xcqwdte", + "tfvq", + "sdnfgp", + "zbxgk", + "fqip", + "pekj", + "dkmj", + "jawhk", + "mblf", + "uipaqf", + "ndygslz", + "qvms", + "rtnbc", + "jledxsh", + "lmyti", + "bfkmsg", + "ylxkhir", + "mpcuhwg", + "qzkiluh", + "xwrg", + "bzfvr", + "xblhvs", + "zdjcxu", + "zahcv", + "tpls", + "emapviy", + "lgtmwpb", + "ashkug", + "hwtmrs", + "qgos", + "zelc", + "gijbzd", + "uizjwv", + "kjbsphw", + "itrx", + "bzfot", + "odys", + "wlhni", + "qevcs", + "lpvcf", + "avzwhic", + "isuln", + "wyaipgz", + "nbgfpw", + "hvulrpz", + "hyqubde", + "hyosz", + "scwkrl", + "fbsxyd", + "zvrcs", + "lckm", + "yglxi", + "idsoj", + "glrt", + "ycaj", + "qprxc", + "bsvdjpi", + "ljfb", + "wlrqkhe", + "omnca", + "haktum", + "pobl", + "xpov", + "uzvih", + "wkxehtv", + "fsta", + "lxpndvk", + "csiozy", + "wequbt", + "hrmneb", + "dsjbmp", + "mhtbx", + "zpnismr", + "iamu", + "kzgcuy", + "atrvwjd", + "gawnliv", + "qajdws", + "xjybwn", + "grnstuf", + "kgym", + "rxat", + "ireckaj", + "swjlr", + "wohub", + "nrbagkm", + "vflqdt", + "auiofsq", + "iyqu", + "dnub", + "bgtk", + "vuob", + "sqhzmj", + "amqvbn", + "ucgw", + "gkqltsu", + "zdolgm", + "qkblef", + "inbqafd", + "udveaj", + "cnyugkd", + "uhnw", + "rmkj", + "cizyao", + "bqem", + "xbwjsfr", + "aydm", + "eubrli", + "qolftwm", + "qaugo", + "mwdiez", + "iuhqrwe", + "jhmrpu", + "canmf", + "dmvysg", + "srkcudi", + "knlfqgm", + "oqsnku", + "yscgk", + "tafgu", + "hsrqbp", + "tzejhom", + "wpkt", + "tjvqp", + "udifqxl", + "qkelc", + "sorbj", + "xmtqodw", + "ftnxma", + "eghxaon", + "ksztcf", + "flaetxd", + "wgdap", + "bnfeqd", + "cbai", + "ecuo", + "ilfxbw", + "ywaocq", + "eugrkz", + "tsmp", + "yfhwd", + "bjsz", + "vpfshmt", + "nvcrz", + "ysdatpm", + "dgthvu", + "qpasum", + "arjsz", + "isqexgr", + "hsocke", + "lkth", + "ybzdvm", + "pxnj", + "cfvjqlz", + "lrtf", + "aevs", + "gsyx", + "khimjab", + "etxpg", + "tsuhx", + "cxfwj", + "jsye", + "ldzqtur", + "sovtkd", + "lqwkteo", + "pyib", + "enukp", + "stqm", + "jhgzaby", + "vtcgoh", + "awlgfsc", + "isbadk", + "ctorvkj", + "ywkudjg", + "uynv", + "pyqztf", + "lijyad", + "wurl", + "pmfo", + "kdfe", + "vsxf", + "ubkdx", + "bdkfgct", + "vhadzr", + "rgmf", + "tixkwo", + "qmzh", + "crjxnl", + "ndqcvs", + "fziuxc", + "bzkgdy", + "nlshbp", + "evokwxy", + "bhseri", + "uqiy", + "ctwvk", + "hpdu", + "bufjh", + "fwezn", + "ksgm", + "tiyr", + "xohvytd", + "jdwbe", + "yhcwmjv", + "xspcbu", + "dvpn", + "uzbx", + "nzjft", + "ycqr", + "kyltcm", + "vergu", + "hlcoqdb", + "xyag", + "azqpxjc", + "pjiqxs", + "ydnaz", + "pjhda", + "fwqz", + "hgdaol", + "yjti", + "gizjhty", + "tzdj", + "umadwct", + "bfmi", + "sduqwg", + "bzia", + "siemjlg", + "alqhfom", + "nzcwq", + "hgtumwc", + "tnlc", + "ophby", + "ygdla", + "rhsgycq", + "biwtmo", + "rtcujx", + "xaqwzns", + "tsegxu", + "gzdarp", + "yxqd", + "zagyes", + "xthdbsv", + "azverjk", + "tklbu", + "dbliqe", + "amkgp", + "wmvqr", + "vcdeqx", + "eacpgv", + "rmns", + "lirvaes", + "oxik", + "nadc", + "bfnkesa", + "wgyiebz", + "gvfsyd", + "dbflxe", + "azjyl", + "fgxves", + "ngle", + "pznlf", + "uczy", + "oibmq", + "mvbrlg", + "nzjlawd", + "odukv", + "izerfx", + "rycfj", + "kpwiv", + "avdlxu", + "akeuo", + "lmkxn", + "othfgq", + "qrgu", + "xzhfioq", + "actl", + "ycab", + "qzryl", + "cjukxr", + "uvqkrla", + "todmzau", + "bwkrhn", + "raiwxfg", + "mkycdw", + "nbdwj", + "jkqf", + "kidywv", + "ugoa", + "ruoi", + "izsbw", + "hfwal", + "bquat", + "xalhu", + "cysq", + "bolewk", + "zxwkayd", + "soty", + "udtfbq", + "mbqjeco", + "yerlin", + "rofxnkq", + "onivk", + "tmwiyj", + "macz", + "kuqpmd", + "ogdmpb", + "xrtjq", + "qoalr", + "xnpzi", + "zcxkaou", + "cestia", + "irzjdn", + "tfdebm", + "qzamedf", + "mpaxwv", + "mxyujh", + "xecmqr", + "vedrzn", + "wsda", + "grvp", + "ylwzk", + "puwjry", + "oxims", + "mvxrk", + "seivdrx", + "rpvy", + "yrsu", + "ajdhrmy", + "qpkacz", + "qyasjc", + "bpkeus", + "qkeft", + "uxyposz", + "wlscq", + "vhuopmk", + "wuxa", + "qonfvt", + "akmnw", + "qzgajo", + "tqalfyc", + "hlaxn", + "rvlb", + "rnptc", + "ehnsf", + "hlim", + "lgco", + "shzm", + "pjxbqe", + "efvimlg", + "pwuc", + "tcefm", + "lzucky", + "dvnze", + "vfusel", + "yqza", + "xeoz", + "sjqaxpe", + "oujwpz", + "jyrvn", + "pdmiw", + "nedbjr", + "sdlpo", + "hojvafc", + "ftxuiy", + "vysj", + "zwoftgx", + "dtbpw", + "okiz", + "hjrvmi", + "tgzksl", + "wthvjr", + "hkdxl", + "uvng", + "ltocf", + "fzxtpl", + "vnafxj", + "zdvc", + "srufhbo", + "wbdtia", + "ncgx", + "cslvhmi", + "yhiuvq", + "yfdurij", + "wxzgkhb", + "ixza", + "wtni", + "lruoiy", + "fahzym", + "ipfzrh", + "pboz", + "hyopbl", + "huam", + "gnpvzy", + "uvna", + "drcbkve", + "pvotw", + "rmpwstq", + "xupdbl", + "ownvj", + "learmg", + "jvmkats", + "gekc", + "mizwr", + "ukrbpjs", + "schdeo", + "kwjbzvt", + "tfawp", + "euasf", + "ksbvyja", + "fitamkj", + "dbjiqy", + "gmrxly", + "wnoxrg", + "yksdrqm", + "ekfu", + "ipozqlu", + "dkihay", + "ndsrok", + "ptsjdy", + "bojirwy", + "igdroe", + "trmqx", + "cvntj", + "wfipgnb", + "tasf", + "wgojriz", + "sjidvt", + "mjwfc", + "lbjfo", + "ndkf", + "umlyrk", + "dyoa", + "bits", + "uszkje", + "jagiev", + "uwpdsv", + "hgcwa", + "trwu", + "fcrxen", + "hxvtnsd", + "jgroust", + "dzrwxnh", + "bopskh", + "hjcyrg", + "mkjfury", + "gpnof", + "urhms", + "uewbvi", + "cxzrhto", + "rnpwh", + "uylmhq", + "lupicdg", + "oantugb", + "cigx", + "ugyka", + "idugo", + "nwhpfji", + "ofzt", + "jafkovh", + "blyznve", + "mrzec", + "szbdwko", + "ejmpr", + "hraekb", + "ozlxvc", + "srpe", + "hqpf", + "rehcnm", + "qmasl", + "nctiuz", + "bwpf", + "mbzdij", + "refwad", + "dsot", + "crxmnbf", + "ajew", + "fqmag", + "vwxtcj", + "cilstv", + "zjmkr", + "vzyrnmc", + "zoiyad", + "sxuq", + "zdlh", + "spguy", + "idfwl", + "gziuboe", + "ncum", + "delmj", + "iuejk", + "wzfqn", + "cogh", + "saicj", + "qcthluj", + "alvx", + "vschz", + "zgnb", + "oksajw", + "bfaerxv", + "ufgj", + "ifvs", + "liqoeb", + "mdkei", + "wnrs", + "owrhgjb", + "oydpl", + "riaeswy", + "nspdz", + "blvotx", + "ikvb", + "ktyixl", + "twjiy", + "xzyj", + "hxbpoa", + "niyglf", + "lzcygnk", + "snbvzog", + "npzbo", + "qwgry", + "zbfrcke", + "irowf", + "lwie", + "pfue", + "lqrgdnb", + "ksgvr", + "kpid", + "lxezmb", + "stvzq", + "qwxzgc", + "xtfnm", + "depotgm", + "nrowlei", + "rxibmwf", + "pqfhcxt", + "akofqi", + "rpdmjz", + "yojqus", + "rgct", + "xophz", + "lbpus", + "gwxne", + "vmtc", + "rkfptw", + "ejgco", + "wmebn", + "veid", + "smnb", + "fisau", + "nszxm", + "jfgloy", + "keaytob", + "fvjo", + "swkaec", + "qkrozw", + "cokva", + "yegwo", + "kgfb", + "ulsan", + "evckq", + "upztr", + "nqplfz", + "ieyl", + "rpfahq", + "ytkr", + "oardu", + "rdjg", + "jirf", + "uwxgo", + "vlpdi", + "jodm", + "ieqy", + "wnism", + "jeuhxg", + "eoszyuh", + "uwldmp", + "besm", + "gdrowjc", + "cikpeou", + "isjrx", + "mrqgyhl", + "ufleywz", + "aqpb", + "otirxu", + "pmofle", + "zkfreo", + "nlkc", + "ozymd", + "rznabku", + "luapxm", + "ltajv", + "wbkfl", + "jybozwm", + "kmtgoy", + "nrcfuo", + "kqdjsa", + "idut", + "uiynrp", + "efbxv", + "kgwmf", + "fvmhoej", + "kgsnorq", + "udzyopw", + "mhbnyxv", + "unwpzi", + "blhyg", + "ekcbpno", + "hgpsi", + "pogq", + "dvri", + "cyfuejm", + "wfgtdk", + "uzdchis", + "yzfh", + "rlfv", + "zkmu", + "efkxqc", + "afdnxbj", + "jxgiu", + "fxbtc", + "pykf", + "bcshpk", + "ervnxsq", + "taglyqi", + "rbnh", + "xprznfv", + "fxbjg", + "izclbp", + "dojun", + "vuacbgj", + "npqmji", + "jyhep", + "yzbt", + "yonu", + "gjpfi", + "splrbjg", + "lvosyca", + "kflh", + "ohluxm", + "prkz", + "ujmvn", + "ntxel", + "eycsak", + "jnah", + "uvyms", + "sgbny", + "hgxsb", + "rjki", + "rglmzq", + "pjbtqvi", + "vpehmf", + "qsdoz", + "qgvwp", + "jwfi", + "vmtok", + "ldwnibk", + "nyorw", + "vdqlgpu", + "zebhw", + "lzfs", + "olsp", + "lkjahf", + "lkguf", + "bqxvmi", + "nwld", + "dehmrx", + "elsf", + "bkxgjad", + "iqzfkw", + "yofa", + "rcibp", + "bkjfsy", + "rmspla", + "lbjmeic", + "szicpe", + "tkpq", + "yjcfb", + "opksxi", + "pmvny", + "kmtfje", + "eqkgnt", + "egjmlzd", + "zqfvypw", + "zavky", + "xelods", + "roukb", + "zhxoflv", + "aiuxn", + "xgtv", + "eifmc", + "fbapw", + "hbow", + "ycjmwr", + "guyk", + "erjmix", + "olrvt", + "dxogip", + "kgdo", + "negkx", + "zbad", + "rsdn", + "rgfstz", + "jdcfeob", + "teaqm", + "qbrjhes", + "ytmse", + "jizkoc", + "plad", + "akgvthy", + "ijygcw", + "trydnh", + "iyov", + "weisck", + "zuwh", + "cfhijk", + "yphed", + "lkxbti", + "yswihqc", + "oqtvxu", + "vhmrci", + "ilfhk", + "cevi", + "dhia", + "vxnjwfb", + "exdgotr", + "ciyf", + "zfivm", + "infrzb", + "gpfazic", + "lboh", + "tcxb", + "nojkp", + "plnkxa", + "qhsvmkd", + "mixesz", + "ftzha", + "mratw", + "quwmon", + "rgov", + "dcnq", + "lyipj", + "riamoz", + "qace", + "buegcnz", + "qegf", + "vdrlz", + "kqenu", + "zdmabf", + "xdjha", + "beyxhmq", + "vwgfm", + "indvh", + "ntgpzm", + "lkpvgrh", + "vclwka", + "pmivquc", + "whjxs", + "qpmhvac", + "pgsx", + "cjtuvgk", + "uprm", + "hetlrsg", + "zgpmd", + "vmwjcyz", + "mueaz", + "jqrbani", + "bsox", + "ikzqcsv", + "thwjli", + "phduft", + "tljygrz", + "cirg", + "inbrp", + "rdzy", + "ikyp", + "yrhmego", + "igfsze", + "mxwfc", + "uzih", + "iuszyk", + "zgfkdrb", + "dmynb", + "pvlof", + "srdix", + "gvyqhs", + "pciqhgr", + "rpek", + "xdnl", + "kybqj", + "obxqwiu", + "fqiel", + "tzfq", + "zctuihr", + "zvmtp", + "sqfy", + "idbav", + "zgbi", + "dzlb", + "fcrh", + "hulzc", + "umyoeaj", + "diqzl", + "kfxv", + "vypogdf", + "vkdn", + "mkuxgdv", + "gpuib", + "amipdeb", + "mfbpicg", + "czspndj", + "inzrt", + "lgvji", + "ogbrs", + "ycinp", + "uwtlhvr", + "ecrydl", + "ousti", + "iqmdjh", + "gnck", + "ptwveb", + "uacgnjh", + "uwnl", + "rilvyg", + "txsyudf", + "cnxjph", + "diewchm", + "wxjfpil", + "wtbfyi", + "fzes", + "dgpw", + "vlhrqpx", + "vtqofr", + "rxdnfvg", + "jdesy", + "hodplbt", + "mupohdf", + "edniq", + "koipu", + "jukrfal", + "upczgb", + "ovteacp", + "hkbjsxg", + "ujnda", + "rhopuad", + "ylsrcxb", + "vcagpx", + "tdzfpm", + "zhrpwn", + "alyxn", + "lipwea", + "eajzy", + "ictp", + "dosi", + "kweo", + "urzx", + "fydbcv", + "dgkzmfb", + "hsvg", + "ndzuek", + "vstgde", + "pexuqnj", + "asmlgd", + "hxfqbdk", + "eimhdw", + "ibcdqa", + "ypkvwic", + "fkbodc", + "mzlpce", + "ayjn", + "hceq", + "sdycmtw", + "qaxs", + "sazqrc", + "hbdwq", + "sfeltr", + "mqxe", + "zjsbxv", + "emhu", + "owzbxj", + "unpg", + "hevmkjw", + "aewlmr", + "ifusl", + "rydlc", + "cdabojm", + "bhjpd", + "kgsqye", + "zukolrm", + "aovgq", + "djnhuva", + "wvzjl", + "iwcm", + "ypzhtgd", + "erqg", + "msbeqo", + "wjhru", + "hrqkw", + "mkzcsjx", + "qgmkv", + "vwiu", + "frexdah", + "acqbzp", + "emhxso", + "itgao", + "ighbwl", + "qxzodj", + "crysud", + "ybseh", + "bjfap", + "ufdcn", + "peytz", + "gden", + "hftscvo", + "crlg", + "aldsyu", + "foidks", + "yuezx", + "jkic", + "ruwcm", + "mzyen", + "yqfzsr", + "myah", + "yznl", + "htuwxq", + "zaxlkvu", + "tgmi", + "onfryw", + "pokgyj", + "wcbgkpe", + "piuvxg", + "iqsjwk", + "hasl", + "stowrn", + "qtyx", + "ibuonew", + "qylrj", + "qfvs", + "cvlhe", + "tqhwjpb", + "ywgzl", + "gzju", + "pcut", + "zfwic", + "ywqj", + "rquczxv", + "ikmzf", + "evbwfur", + "ngou", + "fkcnas", + "hmlty", + "qgil", + "phzmo", + "qcyspdr", + "pycrj", + "qnoi", + "lzmvng", + "qhpd", + "gbtyo", + "zgcmn", + "bzavjw", + "sjwgfi", + "eqowybj", + "cwtfuq", + "zhtucl", + "sbzjxvq", + "tynvls", + "hdplg", + "xrmo", + "djgnoer", + "xkola", + "kaixto", + "aqbovs", + "hqozb", + "islceqp", + "smvzwfc", + "tdaz", + "fbqiyer", + "qtzoxk", + "peub", + "dpmoz", + "zxgowmq", + "hstzkw", + "afxiyup", + "nkdiheu", + "wvylejz", + "yvmx", + "juhpr", + "jqur", + "zfvla", + "cxqed", + "iybcwdp", + "aztur", + "uaingfl", + "ypka", + "wtcb", + "joua", + "qjdnz", + "uwsir", + "ilqs", + "hscpgi", + "gayie", + "jaqu", + "kwzia", + "wnveh", + "mlqv", + "iysdmja", + "zlen", + "oytsmf", + "hscx", + "zrftgj", + "vhcygna", + "slpctgi", + "qmlptdr", + "zvdnte", + "exncglu", + "qmzaobn", + "smlznv", + "dvlxm", + "kafvy", + "huoj", + "gqitx", + "sdar", + "knzodlt", + "mdns", + "ivsdyq", + "ntaxdug", + "izkmdyt", + "buta", + "yegsqch", + "flay", + "zquwnkt", + "gfxjypa", + "fhryo", + "atuf", + "gkaspz", + "aiomjsw", + "mogp", + "gwqkuc", + "svoda", + "xqtha", + "ehdlc", + "lhqaek", + "gofi", + "ujmzqx", + "aiphr", + "oxtm", + "jyfw", + "courxv", + "mwsvj", + "nabzt", + "hbvf", + "gkcus", + "huge", + "qspcbi", + "uynfkaz", + "ailqy", + "eynjz", + "ksflzt", + "gtfnyak", + "cqtkv", + "gjphlc", + "hcrimvp", + "eahz", + "fbsm", + "ptug", + "lnfqy", + "ajdcmr", + "vgthmb", + "jcsl", + "nvlcoib", + "hrvpud", + "vqhrt", + "bzsde", + "ampluc", + "kyuhnb", + "tiqdry", + "ican", + "aexhy", + "wbyh", + "zyumd", + "ygve", + "nlxh", + "vypsw", + "cesliw", + "gcir", + "gzprky", + "ewkua", + "zqkfi", + "knoyzps", + "vypaqs", + "vmri", + "htlsvax", + "dcys", + "gbqnw", + "vdrp", + "otvb", + "ldyum", + "vhol", + "mlnvk", + "xzdubs", + "vhotqly", + "krnpq", + "mikwcjv", + "ytwdqfl", + "scirp", + "wltj", + "vwprokg", + "rjebs", + "dshjvig", + "ydnitu", + "txhans", + "cfgrs", + "hixzvrg", + "ogxi", + "cylxpis", + "winsq", + "iczr", + "fakb", + "jeodq", + "svhqlz", + "xeyvj", + "zwrglc", + "hxlni", + "zwbtopx", + "kyejc", + "bgavd", + "ajwusfh", + "fsplu", + "jtbspm", + "wtpdr", + "ohxbw", + "gjytdav", + "pfjqd", + "kwonum", + "jwcop", + "ijculg", + "ytckwja", + "imwfdc", + "likeny", + "rlck", + "ybjsvhg", + "jqchrn", + "xhpzn", + "krwa", + "fcesmq", + "habwjd", + "tghwp", + "lnvt", + "nfmg", + "ocjfia", + "qynr", + "wkrl", + "rmplidg", + "hdmbj", + "igkorz", + "ygjm", + "zfjt", + "vcqems", + "uloxq", + "vxzswc", + "uisw", + "quaiypn", + "ztwn", + "qkxmghw", + "yugnhqw", + "kpmurgq", + "wxmvcsz", + "hwops", + "eqfcgm", + "lzrfnv", + "djskqva", + "kuby", + "fopmb", + "wvcjn", + "tbpfd", + "vbjsw", + "pnxbihg", + "csqkb", + "jupz", + "klnz", + "hwbekn", + "smavdjl", + "ptkazv", + "duko", + "byrj", + "iqczym", + "sgald", + "rbgzj", + "tgwq", + "efthsr", + "ydnelb", + "miyuk", + "hkmwz", + "afzg", + "hnlz", + "unrcape", + "sywb", + "ehfxsrd", + "rtip", + "etayu", + "vaouhkl", + "nhlctw", + "uxopm", + "egqsr", + "wnmzk", + "rwian", + "atuqil", + "oqpyn", + "yqdi", + "gatc", + "qtcgf", + "yedksog", + "uqxspnl", + "vxwf", + "cftuald", + "irztjhl", + "kdcjxbo", + "nuclvt", + "eodzq", + "fahip", + "yacfd", + "qemdxoy", + "ijdfhut", + "lytqsov", + "qjczbde", + "jxhqudg", + "ozds", + "otpary", + "dvkanqf", + "wsqgf", + "gmoecr", + "ujfea", + "mgyh", + "ukmlvog", + "uejr", + "etai", + "rdwghqv", + "fcndml", + "xgoqdek", + "akol", + "gdblcnr", + "zktplum", + "mdek", + "bvks", + "xalcin", + "crpxho", + "grwcjqo", + "jmbgu", + "gtuincd", + "bzfmx", + "qhikfpl", + "wogxfj", + "blcaguq", + "yewa", + "prlj", + "edcb", + "nrxltv", + "guchz", + "obmi", + "jshvuei", + "tiksqv", + "xbqy", + "dycf", + "pshya", + "ynhzxtu", + "waijn", + "xaue", + "yfkn", + "xovth", + "yrfphnv", + "vsmap", + "sdovuhc", + "pieba", + "jagqhro", + "tdwk", + "aivrzg", + "obnjc", + "xaodiyr", + "rwfalei", + "nvchxp", + "tazy", + "tnjgw", + "otabepu", + "vbplim", + "iszebh", + "krbvg", + "bruasq", + "klbihtr", + "sxefmaj", + "fjqtu", + "djfwcos", + "dnejlp", + "amlhdk", + "inbywk", + "vulkgs", + "mulbt", + "qoign", + "bzalk", + "yovd", + "nqrvaos", + "bdztlry", + "gtsejc", + "ofemn", + "wkai", + "ixlmuz", + "idre", + "prwlobi", + "ijkrv", + "nftscol", + "yzhl", + "dvsn", + "bfir", + "gitxsuj", + "gtblp", + "zmfh", + "xyskj", + "ejmzut", + "rjswcl", + "ipxmbvq", + "vkezmxc", + "pbleyu", + "lcnsqri", + "tpkc", + "rocwj", + "wbvy", + "xriyd", + "wnpu", + "dpurq", + "cxhgra", + "apwljc", + "gtivez", + "mlqawef", + "rotdv", + "iabw", + "tnyvr", + "xvyco", + "fbtqg", + "agjmpn", + "mdboaw", + "vjfdpg", + "ebjcyp", + "suej", + "wridfqu", + "jzekis", + "oxgqd", + "rkbxa", + "traix", + "myvdhfl", + "qxwsyj", + "nrht", + "rahl", + "owgk", + "rqzg", + "vpnu", + "hyxt", + "hfzrvk", + "cvujoh", + "ajqt", + "ilyspbm", + "vomx", + "kfwny", + "nzrf", + "cwbtu", + "inbyf", + "pbliwv", + "ahczx", + "vliopdk", + "prgz", + "whvxkt", + "cuhjt", + "syvgpa", + "mfxv", + "wjilg", + "jrwhizf", + "nkabslm", + "czas", + "kzie", + "kgyz", + "bnpr", + "uowc", + "cfduog", + "obdyvw", + "tymzsc", + "oaixyuk", + "dxhnp", + "efhd", + "rvjap", + "uydnhx", + "ymwgavf", + "xfngecw", + "nshw", + "koqv", + "rbpqzo", + "rfquhon", + "csdt", + "pgdl", + "adry", + "uxgo", + "deky", + "hkofgvb", + "kaef", + "nbhu", + "pmsglnq", + "vgnxpb", + "cugvq", + "uacf", + "gpmxzsv", + "vuybg", + "zpdxfh", + "rvlfk", + "nlriqo", + "lmgeo", + "uizxyaj", + "kqub", + "rbzn", + "ezbu", + "ychaki", + "obhdexv", + "unvl", + "miot", + "lknb", + "bypxn", + "plwgojn", + "jkzrx", + "pbxzt", + "uilehs", + "bupvyf", + "ptor", + "fwgku", + "zjibcq", + "ayhvk", + "khdsvwj", + "kfwbn", + "ljqf", + "qufgbw", + "jyztd", + "ikujoln", + "dmatki", + "mwch", + "smwh", + "rbsolei", + "tfduio", + "tcisebw", + "epuolhw", + "egqdauo", + "oesyqb", + "yetjs", + "qitvlwj", + "edcbaps", + "kbnrz", + "xhutr", + "zfeh", + "jvtyxlz", + "ynfj", + "ouxsdjh", + "epjg", + "kocq", + "tkuyxja", + "uitdgc", + "olgd", + "tazbj", + "cexp", + "dmue", + "rbnvp", + "wzuor", + "cfigoes", + "ibgkpa", + "vaqy", + "njhp", + "qbgj", + "crnq", + "slmz", + "rkofn", + "hlsjobe", + "sjgft", + "dnvzri", + "jpgcauy", + "yqoj", + "hnvc", + "vcier", + "uhfkvt", + "mpzoa", + "imuwel", + "orih", + "xdofe", + "heaq", + "fqatru", + "gzqri", + "nydiftv", + "kahydv", + "zfovb", + "mkjsy", + "ybkmxp", + "ebyacjt", + "tnjyk", + "gicqr", + "frosmn", + "hkcfdqn", + "xdray", + "pdkscgv", + "khzjufr", + "dmul", + "mezd", + "ykthne", + "lxkq", + "zuof", + "aocmqrk", + "egsfrc", + "eykn", + "plgmnxo", + "gpndycv", + "xnotqj", + "gvxq", + "exyqash", + "dlcgn", + "npjv", + "pfkim", + "yderw", + "akunh", + "ahvejr", + "mvyrn", + "emvc", + "wcslve", + "crln", + "bkojzi", + "wmyjshv", + "wxqvoga", + "daspmtv", + "efzuvsm", + "yehjo", + "iwqg", + "tmolc", + "qhcgu", + "erqua", + "telbgy", + "nroyble", + "aepzuh", + "rvabmqd", + "ycvxzdu", + "yifgzr", + "bkzpw", + "oedg", + "lrtzbs", + "xnwvtak", + "gkvlt", + "bgoktex", + "buiryjz", + "modigpn", + "pjteg", + "iazrp", + "adkvu", + "wrhfakz", + "zqykxf", + "wbdujzg", + "gkpaeim", + "mgxuqkv", + "dvtzpbr", + "aqfiwhr", + "pwrefdh", + "qnvmxl", + "hwbesf", + "yitd", + "hqoyte", + "bxszyvu", + "bvsfi", + "lzsrkf", + "syrfjdi", + "iqowv", + "qdywcn", + "cxzsvt", + "quepv", + "ydciv", + "mbxit", + "txwvqc", + "hyvspxq", + "qmbc", + "bkztq", + "icwvgrx", + "wmgknd", + "tzdeb", + "vbsrhf", + "brnfsqu", + "vhuknsm", + "xeodc", + "oqhdsr", + "tfqdug", + "qzwr", + "xrjafuo", + "wzbvxl", + "xqiajk", + "lixuem", + "ciqu", + "etihg", + "cxogjpk", + "hizfpru", + "htular", + "pcmk", + "kdntup", + "akvnz", + "tfkpin", + "fovnyiu", + "ybdql", + "zapyo", + "ayzkl", + "hjybikm", + "tkhpg", + "vonpbr", + "ozdle", + "ejagwqp", + "luctx", + "tjpkb", + "fgwes", + "uvpdylz", + "jimd", + "hoyf", + "hjqznog", + "vjhf", + "wzvmcl", + "otcnh", + "jnqyzuh", + "ywbh", + "wyoejv", + "gorb", + "zcslp", + "plhofy", + "twuo", + "vxcyas", + "daxnb", + "yckapuj", + "dpwry", + "xljwin", + "iqrvdcy", + "nojcrt", + "xwmurip", + "nvwdyru", + "hgfvtop", + "ljkb", + "gqdx", + "anteqhm", + "qwyva", + "wxdupz", + "ubgvhqp", + "uqxway", + "knhzwy", + "difrym", + "qmijka", + "kvzo", + "ypwoh", + "aqyof", + "swio", + "ylfnrq", + "przin", + "vyokgum", + "qnmyb", + "swxhv", + "giepf", + "hdrgi", + "vxyodjw", + "jeyo", + "sdtubkm", + "kwcfe", + "ovjzcbi", + "lexz", + "ofehxyk", + "lwyj", + "zfodip", + "nqjyd", + "kyegxrp", + "dunjes", + "lmjtyxh", + "lgjx", + "swifhmz", + "ykjl", + "ziqr", + "egzhb", + "xrqyi", + "jvbfeo", + "tucz", + "ldmcpxt", + "vwbhc", + "lviok", + "vcykwr", + "ugpncyd", + "zjium", + "olprsb", + "revtkn", + "wlksztu", + "gadf", + "rndjc", + "cywvtd", + "btahj", + "lantqpv", + "wdhx", + "kjex", + "lnepav", + "fhvebd", + "xuzhv", + "sdxvuhe", + "qozwe", + "ftpka", + "jkezd", + "psabygm", + "ldern", + "stquvc", + "zdjc", + "zqura", + "nftch", + "swnurem", + "jdwhy", + "rbxt", + "ycslvua", + "flhyn", + "jwhmydr", + "olhfwbu", + "jrohz", + "qkpt", + "yhirq", + "vrml", + "zpjh", + "bnzpr", + "vzgcq", + "vycjx", + "ofyxhr", + "ctzq", + "chti", + "coqh", + "lbeycu", + "pwxbfg", + "hfebomt", + "bfpjtm", + "xzhnji", + "lvop", + "cqrpdln", + "xijmnht", + "hvqrxmi", + "uwnxqj", + "ybfw", + "hpxjy", + "kibn", + "cwqnxvy", + "vucfdjn", + "ycvxfpu", + "gpjbrl", + "mnjro", + "mpzhtq", + "svwcyng", + "spmifc", + "dyam", + "izxrqw", + "fohz", + "seypm", + "gtdksn", + "gzukip", + "qwzfna", + "lgko", + "twfji", + "bkanfyo", + "nrklsh", + "xwgdzar", + "efwily", + "crdahl", + "smyctr", + "emuhpy", + "qlbh", + "hrzu", + "tqkor", + "tmudsi", + "uzyxkp", + "yszt", + "yporzxs", + "keoma", + "idxkm", + "upyxh", + "hueawj", + "mjudf", + "jkwgh", + "lqazvc", + "lzwk", + "itxmlu", + "ctfqjl", + "sicm", + "iejvtcq", + "eoxbs", + "jquo", + "snmj", + "quxphe", + "eacxnof", + "lsdjg", + "fvyeab", + "hnqmiec", + "xwkpd", + "tcli", + "nxscj", + "byzq", + "badf", + "podvwuj", + "vxabkzt", + "wmpojt", + "xudtyg", + "ogfjn", + "encx", + "xflcmhz", + "mpqglv", + "izdum", + "qxyrvz", + "atzkfb", + "goytvx", + "pdcgeyw", + "nzbpe", + "chtln", + "xmltw", + "omwkupx", + "nlts", + "hboyz", + "cgenbyj", + "hatcp", + "ewad", + "xsnhym", + "skeby", + "apot", + "hmua", + "utjvna", + "lbsfjom", + "tzemf", + "szpjoqd", + "rmvpaq", + "rngi", + "aslti", + "ldqj", + "zjombp", + "dqyco", + "bsfjla", + "phlc", + "xjphwb", + "qcspdny", + "nkhav", + "ihyrx", + "apzcrmy", + "erot", + "rehabxk", + "uwhmrl", + "msrp", + "zfhoi", + "zwnhmgq", + "hmab", + "aevgdup", + "vzoeyp", + "znqmx", + "pnjkhmq", + "vuychgd", + "uerqxg", + "vptlqgd", + "vqwayr", + "ecmla", + "qbndx", + "yorzgh", + "zvqwjk", + "hqfe", + "xciky", + "jcaebk", + "wnfv", + "rwuy", + "myeqn", + "xuvyor", + "uhvqsc", + "mizf", + "kyulbq", + "nauirq", + "mexjs", + "stnb", + "uwlhv", + "iflro", + "xjlc", + "prvzbau", + "znhosr", + "fwet", + "crwpmf", + "pwciht", + "fsgznoi", + "bkxpw", + "hygqun", + "yapzn", + "demzf", + "wxkrbl", + "arligm", + "qajwtlp", + "rdfeh", + "vjebspm", + "vbxc", + "qlvazrt", + "ncjhbw", + "sdmuyv", + "xbeai", + "kzpmxa", + "owpfc", + "hfogks", + "wexcq", + "yzasi", + "kbfi", + "zfvw", + "ckgxfl", + "ibyzm", + "uvyrkx", + "dtgx", + "kqgas", + "wrdbf", + "iqfyx", + "whkdb", + "saxlrk", + "fxjo", + "msdnvbf", + "xgksqie", + "liwuxq", + "mbwey", + "hygx", + "wpodr", + "oygn", + "pvsydw", + "ocfnh", + "phcveg", + "cmklh", + "ufhig", + "weazsrk", + "izmect", + "medgx", + "unzwdqs", + "xkjgo", + "otgf", + "ebfgp", + "gvnyquo", + "odpfz", + "xvmo", + "jmvpwdq", + "xrfzp", + "eqgh", + "hznap", + "wcysu", + "nuyzklr", + "ukpf", + "lmvzx", + "gksa", + "fwpxb", + "styd", + "tqyj", + "ykhofu", + "cjne", + "agkyvw", + "zoykq", + "invplbj", + "uthpeg", + "usdixme", + "zuyoj", + "mrhyuvp", + "bpsfk", + "qryfixw", + "rcufez", + "pbefjx", + "jgzs", + "utawhcv", + "mczaw", + "etidg", + "ykqfe", + "ldtqhu", + "zpoh", + "gfql", + "isopvdh", + "kogc", + "ifegjw", + "vdonf", + "wguxbl", + "sgjzaop", + "feoyc", + "redb", + "xcmu", + "ainrmcp", + "litynxr", + "drgt", + "yslk", + "vqge", + "dwlmtyz", + "eqhayjo", + "isqutka", + "hsemftp", + "ndghz", + "hfkjm", + "clgix", + "ugjfd", + "rqtnmob", + "dlqy", + "nampv", + "poxt", + "vgeqcju", + "hejo", + "phvgs", + "optfn", + "msgbxj", + "ypzdjbc", + "uclah", + "zwfkje", + "izkgyc", + "fqkpwoy", + "zcqmjx", + "adzihen", + "tcidz", + "aohiej", + "gymqap", + "ifeugjl", + "bkdj", + "ojxnl", + "gtjeox", + "ijyxsru", + "ljit", + "bcneu", + "ojynvlr", + "belrc", + "kejxv", + "rpyfw", + "ftpsgqh", + "dtns", + "ntsyox", + "htzndir", + "fjkq", + "syab", + "dakfbjx", + "fopbyw", + "ynkaet", + "pmuegf", + "mtei", + "bayn", + "hrke", + "elwhpkc", + "qnykoc", + "juzqfvp", + "kepomjv", + "giqhv", + "thudxa", + "tjlsd", + "ptwfavo", + "zbrdfw", + "heuzgo", + "oxlncep", + "rizj", + "bgzu", + "osxcagv", + "flkjs", + "ftkapdx", + "zgvpyd", + "suhlypn", + "cquwtbh", + "kapj", + "sckz", + "bsfnlqc", + "opqeuk", + "gpfac", + "tzdciw", + "plmjh", + "jsdu", + "mzvxpsr", + "feigc", + "ewqs", + "vlijqg", + "jofluc", + "kdgcveu", + "dprkim", + "feaht", + "gzaumyf", + "utfb", + "sabl", + "dhwnkjy", + "lowas", + "tpzr", + "okhzrlm", + "vbsxg", + "pafstl", + "sujfox", + "ijlq", + "hxuygv", + "kxwfoqi", + "oezdts", + "gcxewul", + "ovcp", + "kaormlc", + "nmzeq", + "iotwpc", + "rcdxle", + "nickm", + "mozsbaq", + "twlhumq", + "wcais", + "gxrb", + "ydbfrvh", + "nthrbcs", + "zieotya", + "fizamn", + "pjtay", + "zbhergx", + "roqep", + "zoqsfm", + "iqpd", + "ezxg", + "tpeian", + "snewdr", + "regaovp", + "bjsgy", + "whrc", + "izqh", + "ikhq", + "gspujhd", + "smrhji", + "gaet", + "knriuwt", + "qlytg", + "kbmsd", + "wqobvgh", + "kblvgfz", + "iawpsu", + "htkwog", + "vbjh", + "nwhp", + "phxcn", + "xzmcw", + "cpnhxuk", + "rjgshyw", + "dxqk", + "rjtx", + "agrx", + "shuafmg", + "csobzj", + "svzt", + "omjxgws", + "sebfv", + "adseux", + "ahgp", + "hzrqgba", + "mqwxf", + "taui", + "oymvpt", + "kafp", + "menuzk", + "flao", + "asdo", + "temuq", + "kuywm", + "spdaj", + "ufekprn", + "ptrhvm", + "ghkuaz", + "xnwkca", + "ejxsnp", + "mclhosz", + "luferj", + "dzkgynh", + "vixdg", + "kghzdui", + "nyvgwu", + "sawm", + "qmlrxhk", + "ghno", + "ubgjk", + "yqhoxba", + "webjrf", + "csaz", + "xopi", + "osct", + "iqusycn", + "prbfk", + "gyqs", + "hrvpz", + "mfdkbei", + "ycmkwob", + "njfkuq", + "xsien", + "julpad", + "pgkcmfw", + "cubez", + "uflcbmr", + "dqbuyx", + "ilmfasv", + "gidltfa", + "hrkali", + "galkdn", + "zqobjnr", + "yelhfu", + "tgbo", + "iqhub", + "wzrl", + "xqwnmot", + "bfes", + "abuqfs", + "htmsgu", + "ecisdwh", + "ydemwxb", + "vwjtous", + "bdihme", + "bjtex", + "gsxoc", + "ogfyn", + "seuz", + "myejin", + "zyed", + "jnamhv", + "pczq", + "mpbfwut", + "xvno", + "rflcv", + "qgzkm", + "pdbnqas", + "yczj", + "gdrin", + "mkrz", + "ikajn", + "cqwd", + "jrgnymb", + "uihe", + "fcspj", + "dsegkob", + "dactk", + "vdhcgmy", + "yjdlztg", + "ydov", + "jmqsboc", + "yuftgs", + "hpdlz", + "nkwfh", + "sqjdhn", + "iykepfc", + "mcpeoa", + "bqju", + "ibcrx", + "vjlrec", + "hpcl", + "ldkr", + "uerlv", + "zfklcts", + "egzxjuy", + "ovzqf", + "ievnt", + "fsatvi", + "wmrn", + "gwcam", + "yktqha", + "ncehbx", + "snlaj", + "ysneom", + "wsbyh", + "lpkgzh", + "zvpj", + "acphuzw", + "tzsic", + "iyzxt", + "hbfi", + "ekgdi", + "cxrhqso", + "kfenmui", + "ipnkl", + "qahgc", + "swleky", + "wbtlhm", + "oivmezs", + "rknzu", + "xzpus", + "tcflab", + "sqxduhf", + "uvwqd", + "ygvpjds", + "tegry", + "xagvu", + "fdgc", + "iaer", + "egtumx", + "kvxgmih", + "pizak", + "yoaztcm", + "cenk", + "uihy", + "murpi", + "ngbhfr", + "rgamvjq", + "fzlpn", + "ozqrcu", + "oxwyain", + "oqhsp", + "qatoij", + "tgpjnyh", + "bkuo", + "gutn", + "hsowr", + "cqpfagv", + "haipzex", + "noeg", + "oduh", + "cupl", + "okdrieu", + "luwoin", + "rkgqo", + "sufqno", + "jfcysv", + "yjcu", + "bqvky", + "wxarfnz", + "lgnjzot", + "tafl", + "hnswba", + "prlxzku", + "dptjb", + "refhvbj", + "nasq", + "qvcg", + "pqhys", + "hatjvzf", + "cxvlms", + "awnr", + "yezmuo", + "edwrjz", + "ftgkqo", + "rqmfyi", + "oexfd", + "tmlj", + "xgcoj", + "sljqhi", + "saytip", + "ismn", + "wvdgm", + "xzrud", + "sbkuw", + "jyzxd", + "sqhinl", + "dxjthrm", + "toch", + "rbegz", + "qprz", + "hsfpe", + "hjsdn", + "cnpvf", + "envlsz", + "cdsfuqb", + "afoseim", + "ebckpo", + "emsaf", + "qhri", + "jgft", + "bikpae", + "nwrts", + "axqj", + "bqkoha", + "ilxdqj", + "qtnigy", + "xbisdj", + "ybvpqd", + "idqmx", + "kuox", + "doml", + "rcafv", + "bvzdslw", + "yfzuvdm", + "htjoy", + "kdue", + "iuwlng", + "tgxvce", + "lhesnbm", + "wqndiv", + "hdzqiy", + "othxiy", + "ojxm", + "hikm", + "qywms", + "clorduv", + "zsth", + "jugq", + "bqdsthp", + "awjlnx", + "dgwtea", + "exrz", + "krlogb", + "ivmaynu", + "peysra", + "mxbsfp", + "yuzclg", + "wgsut", + "lyeurvp", + "htsqm", + "vfurg", + "cabvizn", + "zhjwcol", + "qwsryo", + "xpschdj", + "ucbh", + "ldmguz", + "ohpqkz", + "iucpk", + "vzlug", + "gibjt", + "sghq", + "lgdbco", + "bdheqt", + "apwfjo", + "odlysae", + "mtakbc", + "poyxlrh", + "txejhzu", + "qrnxs", + "vcpudl", + "mzvxlgf", + "szxnai", + "emnjd", + "tfomirc", + "yjvfwgn", + "tikxmob", + "lecio", + "rzfl", + "iash", + "oxflg", + "qsnifbj", + "juzwv", + "ozltdj", + "wifoy", + "xofys", + "kscwaur", + "nwvs", + "zjfdc", + "dqez", + "ucvsawd", + "zfpbxr", + "vlyw", + "nfchslz", + "giejap", + "whbkzvt", + "myjipt", + "ogfqj", + "xvapjqb", + "vctpwbi", + "lkwb", + "fpyuq", + "eguk", + "dzvwop", + "mfxnqh", + "wxsfcoe", + "juimc", + "aqpyl", + "xcsjw", + "gymc", + "xhqiwtf", + "dmzra", + "hrnu", + "whob", + "ltrqek", + "hzyqou", + "rfychie", + "plrb", + "pkbfjxs", + "drpc", + "nolriat", + "zfmd", + "kpyqhrn", + "oatgwd", + "ofbuq", + "ldancqi", + "kpqof", + "gvqjifz", + "xftu", + "ikmewqp", + "tpnlkf", + "kven", + "fmowkbe", + "aoqzrl", + "igywjpl", + "zxsec", + "glektp", + "afri", + "dwkyq", + "unxdhav", + "fbghus", + "pjnvaf", + "cbwdfex", + "fkwd", + "jxnuco", + "uajcgk", + "cvgel", + "zhctjy", + "awzsgd", + "ydwbgj", + "vdoic", + "bgqkjn", + "zngylr", + "dknwzr", + "iecjq", + "gyxsvc", + "vuaek", + "tjnxipc", + "hemfqzp", + "bygvwsu", + "etwb", + "fzwlnt", + "nprayw", + "gasj", + "zhnlcxy", + "dqxzib", + "twymuzq", + "eutqh", + "lqcdta", + "svlgpqk", + "frndzt", + "brhlfuk", + "jbzwsn", + "tqwb", + "shdq", + "xotd", + "xumselt", + "uvyqphi", + "zjvmkgr", + "yotvde", + "tegn", + "szek", + "pwrvikq", + "fpmr", + "moxz", + "eawn", + "doxerbz", + "qslw", + "ihlmkz", + "bjlkhrt", + "eqsf", + "ulgkc", + "rbysgfe", + "opbynxw", + "bnverx", + "mrza", + "giehdjp", + "elxjys", + "rpzvxdc", + "xqwnf", + "fqovx", + "elzry", + "nrsk", + "lfhyuzs", + "ksgb", + "gwhlcv", + "tsiymw", + "ghlbszy", + "vjlmead", + "mcigj", + "jwle", + "qhyub", + "blghasm", + "dhwei", + "ywifbpu", + "xtcy", + "unbyvd", + "cigamr", + "inkhpaj", + "stqvzwb", + "unqtkz", + "gnirkm", + "pjxta", + "ltzcso", + "kmopbq", + "pxfyoum", + "ukhtyra", + "mnlpkys", + "auynzpo", + "zeduyc", + "snhvfgx", + "fmxqg", + "tiewg", + "wxseqdr", + "ywbc", + "wqyeojh", + "srdpkzc", + "lrkf", + "vjfqn", + "azepyql", + "lqkpd", + "vrpac", + "vrqec", + "vouhqwe", + "qvdri", + "tnhaqb", + "exthsq", + "iutb", + "vujgn", + "jtor", + "zdyolk", + "owln", + "tfhjsk", + "jzgolhc", + "jqksuvi", + "cigh", + "cxzp", + "bqfvyz", + "uaypk", + "nbktpx", + "zlodrkq", + "srefay", + "bhaewc", + "lzug", + "cmuh", + "gnowl", + "aitysbh", + "mtjkv", + "cbfvpn", + "hnugbde", + "pjmetsy", + "ziwe", + "rojanm", + "lfdnsi", + "xuzwi", + "najg", + "zwvcus", + "dfwyi", + "ufwb", + "mvch", + "yixm", + "vahdyil", + "prjz", + "cfpz", + "hqptv", + "twyb", + "rpons", + "jhkpxmy", + "tydkgu", + "zmlhx", + "hnkpu", + "diwogc", + "zqeu", + "lriust", + "zkibv", + "pynj", + "eknt", + "bocwxk", + "uaez", + "jiqyozx", + "lfbqih", + "otukpz", + "kyqldas", + "asrtqg", + "vmgjr", + "rjxfas", + "erjunx", + "vuyq", + "bydq", + "ruhp", + "owrc", + "ahwi", + "gnquefr", + "uoswel", + "hfonz", + "byazklt", + "nyahlg", + "xbmfret", + "vnjha", + "vhrqtf", + "zilkcnp", + "wodcp", + "aicoyz", + "idhan", + "spdfm", + "urwzqte", + "vxakg", + "iprl", + "qgzevmb", + "ticp", + "catl", + "tiax", + "utiqks", + "jigtmx", + "acpn", + "jaqxb", + "lgyfbn", + "rlpmob", + "dnoqaz", + "qdhwp", + "rbjvxg", + "hvqos", + "qdysa", + "skwj", + "qmhc", + "witegxp", + "bhltso", + "ckairt", + "wogk", + "ehsiadu", + "ovfa", + "tusfjra", + "uprxtf", + "abnp", + "dcbvj", + "ybsg", + "qbvu", + "senvh", + "lpkq", + "ogjexf", + "goshcuk", + "gmdcsx", + "gcya", + "yqfpw", + "yidr", + "wnba", + "ancgyrb", + "gzqwc", + "nhsq", + "tmrkcae", + "gvlu", + "liuwhmv", + "aleujxf", + "kquopfd", + "hdwgju", + "zcgh", + "vhqy", + "fqhynvl", + "ohgpa", + "alng", + "yqei", + "fxhus", + "vpyhq", + "ftkpaun", + "gjpmf", + "yflm", + "xszqyo", + "sbid", + "mkoh", + "qhxnuc", + "movs", + "txardyl", + "icskzdo", + "kniap", + "ijybn", + "rbdqc", + "qrnt", + "pqnftm", + "keipmyf", + "zdcbgk", + "qdhbzuf", + "bedlhgq", + "estipaf", + "fliyhq", + "ircj", + "qrzyv", + "dyia", + "dnbcjsk", + "xptbwof", + "fesrcu", + "povx", + "yoifq", + "rqpghmw", + "tvxj", + "ozpugn", + "bhtp", + "ehnjd", + "ivrfpqx", + "xfpi", + "gdlrxiq", + "xvwbglj", + "nclpzvu", + "twnujbo", + "cepngr", + "inhvw", + "hwraxy", + "efyzx", + "vzljdnq", + "ndxksm", + "jxtoic", + "jizycp", + "hclg", + "zesv", + "shavpjw", + "lzubjnd", + "tkfnyi", + "lawid", + "eksu", + "ugymcd", + "iwgcvaz", + "ulzhon", + "rhbugzo", + "lixqcbk", + "rjnqoca", + "rbaeg", + "sauw", + "mobd", + "wlnyt", + "ibwhd", + "uzcwp", + "jnwyq", + "ayokdt", + "gqsh", + "taycrb", + "qjgzx", + "gcqvnm", + "hsawgiq", + "mvyr", + "jdoyq", + "bvlgc", + "lpybr", + "iwzfj", + "lhja", + "jmpez", + "uopqjfy", + "uhsyzj", + "vgifxlq", + "oxpdiz", + "hopq", + "qthx", + "wahfdck", + "aexmb", + "pyvrmkg", + "npzm", + "edyfb", + "ngqfc", + "clgm", + "ybdk", + "bmoih", + "ncpdgk", + "ztayqu", + "qgdhje", + "kezud", + "dacwrg", + "qsnexj", + "hpwelts", + "djskv", + "vjgmle", + "cwsykti", + "lqkndgs", + "xgsa", + "gpvzce", + "vhtpd", + "zvqw", + "xafnb", + "cmoy", + "sunokwp", + "pqnjszt", + "ethqm", + "qpyfl", + "sfealjt", + "yrcdavm", + "uxjlpvn", + "dioaufb", + "jdrhale", + "maxvp", + "gtiwohf", + "pxgckn", + "wvzgu", + "rhzw", + "octj", + "yrwzif", + "qvatw", + "ikgm", + "xsmikvl", + "yolkz", + "qomu", + "rbdx", + "bxvwy", + "mtoky", + "clofjkb", + "jute", + "zekm", + "dxzrmsq", + "hwyn", + "bvwu", + "qsrg", + "hcpgoa", + "uxzta", + "lncayh", + "sfaz", + "ricb", + "bhdsjon", + "djhy", + "houfq", + "sxau", + "lscxmqw", + "dotf", + "uvsjmc", + "ipqnb", + "lybnf", + "dscif", + "ybgtn", + "ypxzlgt", + "ujthov", + "btcx", + "nsdhvbl", + "vyfz", + "wlokyzj", + "hjout", + "lgwjesf", + "yhri", + "nbvhxrw", + "klexoh", + "lzyaw", + "wnxi", + "eowzj", + "coxhtn", + "kzxtio", + "ueyj", + "aredws", + "yhios", + "uagxjeb", + "quoflma", + "bmgr", + "kfolxn", + "moql", + "hrivdx", + "vnlmx", + "hlbk", + "yavsk", + "nixo", + "hkjnilr", + "smva", + "kozald", + "fkyc", + "uejwdt", + "qtnbgz", + "ypkjo", + "rflzmtg", + "gmake", + "lrmcn", + "znug", + "gzia", + "xzkuj", + "hkos", + "eisf", + "pvcue", + "jnydwr", + "kctpu", + "stupzyk", + "fqkb", + "odtcg", + "gtdsq", + "switbuk", + "xlubhr", + "pkhjo", + "npqf", + "vzuh", + "vumchgi", + "aybd", + "mfnrzt", + "cskrfn", + "tqlmogb", + "jvzilqr", + "hyvpfa", + "lkmar", + "aofuyt", + "giyvpmq", + "oqtelcd", + "razywj", + "jsmv", + "iwsxyaj", + "aylh", + "xuqnyes", + "iqgwk", + "lcsitgf", + "bkga", + "enmgpf", + "iojx", + "nzxo", + "bpcau", + "txlyv", + "gyzbq", + "vsrch", + "rdlqx", + "vprk", + "eturjy", + "zvykc", + "ciwbeo", + "pdaes", + "zrwx", + "zsdjne", + "unfcvpw", + "aewkx", + "huaydbm", + "xbrvln", + "yzfd", + "ganbrew", + "vakzhuf", + "ldmbrzg", + "hrueas", + "xrns", + "tdrbja", + "eyiolzg", + "moabk", + "bnospkt", + "zolv", + "owuda", + "zroh", + "pkuv", + "gbwxq", + "gesihnb", + "inect", + "tcyhkb", + "nusi", + "zrtynf", + "mock", + "hmxesq", + "hwecs", + "xhslgwe", + "plwj", + "xzlngav", + "wsxivhy", + "dgnpjoc", + "entgi", + "lpobkyg", + "ohuwgvt", + "bxfr", + "ghkv", + "uoihb", + "iard", + "gbqpv", + "baijgdc", + "wsemvyl", + "amyk", + "sopkyq", + "crbvmw", + "cqurdxe", + "uemsbz", + "xsvaieb", + "upmvja", + "mpltao", + "kordn", + "djrp", + "pqug", + "kdzum", + "oneix", + "ijepw", + "gbuwto", + "ewyha", + "uqcsrl", + "iphmue", + "vkybqtr", + "aclve", + "upbfxck", + "cgweyk", + "jscewx", + "emszc", + "ftgo", + "fbgen", + "nzpfkrv", + "eshabi", + "eimbh", + "wrqajb", + "pmqbtij", + "yixbued", + "iytdkl", + "zctvy", + "jilmsu", + "dqhtgbf", + "yjfgouv", + "ncimj", + "cotzlg", + "bktn", + "dsjrfl", + "ahdqp", + "mwrc", + "oudc", + "tnsja", + "gnsk", + "xasw", + "krvjf", + "efdpi", + "moparl", + "sopjx", + "hmxtl", + "kqyat", + "knhx", + "sgurvn", + "zyvijkl", + "yeglxnf", + "nvdu", + "aqgrdol", + "syrbwjx", + "ncax", + "ekyiqfo", + "xgjd", + "tyjsb", + "plts", + "mdwgky", + "inotyvl", + "feryv", + "veyioj", + "aucsr", + "yemzdb", + "rpqdbe", + "wcqnx", + "ayroqn", + "tdvkq", + "nhmsy", + "nlvircs", + "iugxt", + "sijeah", + "vchalyp", + "inrqxoc", + "yuljm", + "ilyqph", + "rlqdhv", + "evbioqx", + "zfyx", + "dctraub", + "kahdgz", + "fuwjhrn", + "mxold", + "fjnua", + "ovngwh", + "mevyk", + "stzv", + "oqyf", + "rkbelf", + "hyipq", + "lvgei", + "ljubcmn", + "quotsx", + "duhjafx", + "swbkcrm", + "sihzmox", + "fdvk", + "hqbtd", + "jvhetd", + "huwb", + "gtce", + "xlov", + "buwnj", + "zkio", + "fexyg", + "rbyug", + "lbxk", + "auhwpt", + "feuocj", + "ahtwx", + "vqgmnld", + "ejlxmq", + "uxdcylf", + "fncksa", + "oemblq", + "okfmrd", + "nfwg", + "yztg", + "tnmuaxd", + "rxmb", + "yznie", + "bnquxph", + "rulpf", + "etzpoa", + "gumtx", + "xfhqszb", + "ipwqrem", + "fwbe", + "hadc", + "tdxnazr", + "zwrusbd", + "ruiw", + "qxzukcl", + "qkib", + "gqbvrn", + "wcujxn", + "fwhek", + "vkglnct", + "lpfw", + "wghtp", + "hduzg", + "tiuwfg", + "rphwxay", + "kmxydz", + "hdbwrqa", + "oysrc", + "kbpe", + "ibxtp", + "yobq", + "frjv", + "vqloxz", + "dxuijk", + "ykvo", + "chxfi", + "dhbqa", + "ztxayp", + "fvibks", + "swhxecz", + "unsy", + "ivjgdc", + "cmkwjgv", + "unazs", + "uevmhlz", + "lcso", + "emid", + "vjcupi", + "gqmao", + "mpqt", + "bpjmoy", + "qhkbap", + "vymsk", + "nqrdb", + "lxwar", + "fjxv", + "fnmhx", + "vzhuis", + "uayv", + "lgoi", + "fcebxgo", + "ewpxa", + "tzilkg", + "wnszfu", + "icweo", + "hmwo", + "qrvhju", + "mzqs", + "ojxn", + "wzjsx", + "ohtbf", + "fhqkd", + "urjfgd", + "jqhb", + "dsaqlrb", + "njqpcd", + "ahps", + "wjacubn", + "qcva", + "zchp", + "jxamb", + "dltphgy", + "gtqokp", + "kmjzwop", + "nsrkmf", + "ngcu", + "infvae", + "ghqj", + "xnciauo", + "xpbht", + "ncgxb", + "khwobt", + "tgeo", + "lcykt", + "mqoingl", + "blhs", + "wuky", + "lrcfpu", + "oqvly", + "spdc", + "sjrm", + "vulchg", + "vpecy", + "whrc", + "pwhbgxi", + "xiahrv", + "wpmeinj", + "uxwhgyn", + "rnamcj", + "fwbypc", + "dhzv", + "uljqyr", + "avqlyrn", + "wgpl", + "flvxk", + "xivejzw", + "yzmjul", + "ldevc", + "lvrbhuy", + "bvwrymn", + "pjlsent", + "roie", + "ydsx", + "tbhgdsq", + "depao", + "wbfhcv", + "ewbxjl", + "vbkg", + "fknz", + "lyuzmq", + "ruqcdw", + "qvkdsf", + "rsyafx", + "kaurovx", + "qsdazfx", + "zgwakne", + "yhio", + "ujkgye", + "mkyzfp", + "fjsymor", + "xivj", + "ayzxw", + "ntrs", + "obyeaqr", + "bmrue", + "pqcmso", + "ldnu", + "bgkwso", + "gclszyh", + "plkzxfm", + "qjgx", + "otymw", + "wbaulrf", + "tqixon", + "szwkoij", + "fphxgcm", + "pltazvw", + "rbjpd", + "zgxjyeb", + "folxak", + "hoydqu", + "xndfsgj", + "oyah", + "cwun", + "aewsjv", + "cdlfu", + "bdclm", + "lvnz", + "qwlopaz", + "xtbn", + "spxglc", + "tvlnuf", + "tqwav", + "iekuvrw", + "dmgkar", + "qtflh", + "zial", + "kwnb", + "zcytf", + "tyvdog", + "ypucown", + "ozalv", + "tkwe", + "ucrvy", + "qeysbov", + "eplgnud", + "bnps", + "vmtdaq", + "zrsjby", + "ftvgi", + "cvlbto", + "kwqb", + "cqla", + "tbzwlpc", + "nqpb", + "rlow", + "zyuif", + "fmnhiot", + "hnvt", + "xcnvy", + "kjhf", + "ozmsxqy", + "inbk", + "ducsy", + "ibylsex", + "gnmre", + "erovag", + "bgmqay", + "wsheko", + "hegfjnl", + "znebw", + "ckynt", + "fwary", + "kxylsu", + "dvkhlp", + "zysik", + "soulne", + "afrvb", + "snwdoc", + "fvkjlm", + "jcegosi", + "csojuwe", + "bnyhz", + "mjwok", + "jemw", + "bfevgx", + "qfrv", + "vdljpq", + "edsz", + "wxlp", + "ifvk", + "mzboska", + "xvnmqzj", + "wlof", + "ewrnod", + "ikjqufr", + "hweqm", + "ficlo", + "uewconx", + "msved", + "sahdb", + "yran", + "ypfhavx", + "ithqpa", + "olesp", + "phfuyg", + "ekyfig", + "gkxpqsm", + "ysvo", + "bdipk", + "boain", + "zrvwnc", + "pmcfdwi", + "sipchb", + "ubxkf", + "usbpw", + "btlkd", + "zmpyhk", + "gimft", + "qdubto", + "ehnrisl", + "gfsmer", + "yxopg", + "qmwa", + "nych", + "euzy", + "dkngvsf", + "kjdni", + "mtzixl", + "okxj", + "aryjub", + "dzwh", + "bynkv", + "cltfisq", + "xahunk", + "deucwap", + "blfs", + "spkho", + "ewopdh", + "afrnu", + "lbcruf", + "pjztcsk", + "utwn", + "lnwt", + "pkufzc", + "wifvktc", + "umpj", + "hwdqx", + "ojbl", + "ajsgro", + "uvendbh", + "uksgich", + "mygb", + "tvef", + "ujlkw", + "zadmpg", + "rofhizu", + "fuhnq", + "guscatm", + "edvr", + "dtjmk", + "twuonai", + "vqxj", + "ahok", + "lonjmwi", + "jwct", + "hgexojv", + "zovgewk", + "bfjhqy", + "hqlfkg", + "vuxyn", + "edlq", + "krax", + "bvegj", + "xweybs", + "zlmcre", + "ldraxc", + "jxwo", + "pelndf", + "tecdruj", + "cbjfd", + "kjsxwvd", + "ptdkm", + "wjbic", + "rcoxai", + "skpzc", + "tahrizq", + "dnkfm", + "ylsucm", + "vqryz", + "eagi", + "ylwqiob", + "pauerjm", + "glfk", + "smzuf", + "psduri", + "mbzdy", + "cuqzjf", + "yqiz", + "ancxj", + "xsbnz", + "irpcny", + "dkmeyog", + "ylgbpni", + "irsazp", + "isacn", + "oqymsip", + "rwyqsho", + "ehlbs", + "zdpc", + "dunov", + "xiuwy", + "ptahjv", + "cznusdr", + "ravmq", + "zhawoxg", + "utgbc", + "rtemfhu", + "xbzmdoh", + "qrnlze", + "oxhkpas", + "vhqie", + "gcqmr", + "fyxnh", + "cwouk", + "fdpwrjv", + "hruqylo", + "ibfz", + "ieprly", + "rmsabit", + "mcqwizd", + "vwldqz", + "nflxosz", + "ohzmvdg", + "amosx", + "lvpz", + "hgsrkxm", + "jqldnwb", + "quhyjk", + "jsvy", + "lkepy", + "nidf", + "nbvphwy", + "bmrl", + "bxalg", + "wnmvsg", + "gfai", + "teryx", + "morbxi", + "kqol", + "tiflckx", + "lqsjdp", + "cazfemq", + "imkx", + "tuxlp", + "slwypr", + "yfwpm", + "kdtfwio", + "nriepaw", + "nmebh", + "yncbrzh", + "gyfjqb", + "dgflwki", + "ncpf", + "yjtx", + "gnyip", + "amkndcy", + "rwqbsu", + "mqpyjo", + "wzxoq", + "jois", + "oyvxe", + "zbjtxp", + "xridja", + "uwld", + "jhuyn", + "hipm", + "jliepqh", + "dhvycrl", + "hjxwtb", + "lutm", + "nrsqlau", + "ksmrnp", + "hjksztc", + "oytud", + "qtjfbw", + "pqzot", + "whbjl", + "qpga", + "ysfultk", + "zbef", + "xmjgd", + "zvyeb", + "rwytmbg", + "vtckyrh", + "gchyiqd", + "xksot", + "udzt", + "tqaopm", + "osglkb", + "yelwa", + "pytfmd", + "wqola", + "mvab", + "nwikf", + "sqruw", + "xawd", + "pmhnr", + "gqnh", + "motxg", + "zywcv", + "tdsi", + "ukstbgy", + "dqbme", + "luijnrp", + "bcgax", + "pdnlwo", + "xrws", + "oblewdh", + "lznk", + "ojrtfbx", + "pqfh", + "jcou", + "hpredx", + "baqxswh", + "jiblo", + "qlsp", + "jedr", + "nqypj", + "vlen", + "avugw", + "vsnf", + "kzptwsa", + "qkhrbwc", + "bdqefj", + "olhe", + "czbw", + "kjnzds", + "gvutol", + "fyxim", + "obem", + "rkns", + "vmsgy", + "mvxkqs", + "iquphbc", + "gdazv", + "lcuh", + "nlsaw", + "vworcdm", + "gqzlo", + "wmrl", + "ohxcf", + "fwusjt", + "uihje", + "cygij", + "myavjhq", + "ncstiw", + "tvkwe", + "ercxm", + "rhmsp", + "actj", + "oawjns", + "mzgy", + "uriefx", + "dwyjsp", + "qdewrp", + "ywloz", + "kljgyiz", + "zrwadiv", + "tukycs", + "ubfjxt", + "xdot", + "ztfwp", + "zvbfjnu", + "xfreb", + "rbmcd", + "ianlcd", + "mwxkuy", + "gzjqwna", + "lwtupf", + "lqiug", + "lapeic", + "rylabdo", + "vysl", + "oqwape", + "igrx", + "rmfo", + "kvyumn", + "xkalqt", + "cmhnkv", + "cwfixp", + "dvkqxlp", + "xsvf", + "mdzcxtr", + "imjnz", + "nivf", + "izpg", + "zrhli", + "uvyw", + "lqaj", + "vrnz", + "sucbrmq", + "ednvt", + "dcyql", + "mxpcyj", + "qbtz", + "khndwpt", + "mkdxts", + "lpdfq", + "wlkbc", + "zsalho", + "xcvjlwt", + "pyfawc", + "xnbfohc", + "lvbno", + "ctfn", + "pvrxjiw", + "nzreo", + "wcrjxl", + "amghobp", + "tawrkio", + "bocphdy", + "xbvj", + "ayrdtk", + "ajcxzq", + "zhsngai", + "vwojs", + "prhslmb", + "lnmuog", + "fvra", + "brgx", + "nvoha", + "hzkfo", + "rlqke", + "gsfvbz", + "vdks", + "petw", + "pqhux", + "rdlsx", + "dvoj", + "xsdazv", + "zanvihu", + "ixynsm", + "bxlny", + "jhqnsi", + "wfcrou", + "cmif", + "luyhoja", + "pzxmvad", + "gpzht", + "jazmqe", + "bzecxo", + "gofza", + "jzry", + "ifxkmld", + "jcdy", + "gxai", + "dvyurx", + "ybtn", + "xovp", + "yglnprf", + "urxlkw", + "jenmlx", + "msrcegd", + "refxi", + "nqfceo", + "jenwuq", + "zdjg", + "tmwrxg", + "relxcm", + "snlfd", + "jwnfy", + "aczsr", + "sztcrb", + "jkernc", + "fmeawgz", + "sdow", + "fukez", + "zxos", + "dfej", + "hfrbjom", + "vsbtqja", + "syvtmo", + "azgi", + "ekylgs", + "wlgbj", + "nqjvsg", + "hezicp", + "idxmu", + "bgpkiln", + "jtbnke", + "txaojkl", + "lojs", + "bnocrke", + "ezph", + "fstpwgn", + "mrxoefw", + "qzcsj", + "khbptz", + "sieol", + "qsmhynp", + "enzudq", + "bcfa", + "eacu", + "bmcpiua", + "mwlnjs", + "fzovqrg", + "viszbn", + "msnew", + "ctpd", + "pkawu", + "kwhmgay", + "ftvqj", + "rishel", + "ysnlxv", + "hwidmrl", + "wqvhnya", + "tyjzo", + "ufkdaeg", + "nqrileb", + "djgoltp", + "mejfn", + "psvt", + "yqupfxg", + "sqfnh", + "lkai", + "skuh", + "hkgj", + "gbxm", + "udmg", + "jubsk", + "wxvk", + "xpildug", + "bsrlvih", + "dzjo", + "pmuhzxi", + "cqoa", + "janxgqy", + "uswj", + "acbhm", + "lwaz", + "ghnxfdl", + "gqlnm", + "wyabdt", + "gpsldn", + "vbdq", + "oqxvfdc", + "kgfwi", + "vyewoh", + "etwhocz", + "byvktie", + "ugeqaf", + "hdxlriv", + "xaqng", + "xumv", + "diapmf", + "bpyvekr", + "kcmy", + "xwmz", + "sjklm", + "jknfbzt", + "jdoiyr", + "tesluf", + "hfypru", + "xpvn", + "ubiq", + "bazexok", + "qvprtz", + "wuvdly", + "iawf", + "pgqar", + "gsrqzx", + "sgturby", + "hirnb", + "uvacwnd", + "sywn", + "vubt", + "uzvnrwa", + "hoqvpb", + "imcv", + "naowx", + "qerpcj", + "nuwrgz", + "joshv", + "mfuxepl", + "hkque", + "psgauz", + "ksqlo", + "mqtwzr", + "zgvca", + "btwylaf", + "obpsed", + "kobl", + "puizv", + "sfxamy", + "wkdm", + "sdyk", + "hsepyq", + "dbwk", + "clhiyeg", + "betdfg", + "erckyfq", + "usdtlf", + "pztewf", + "dvegbcp", + "zpmlno", + "qblhrf", + "ymodx", + "fiarkew", + "hdsxl", + "bsfx", + "vtyzc", + "fbctk", + "btiwko", + "zxbtr", + "rhvw", + "pcore", + "ursvzwd", + "hutzvq", + "radk", + "ktnx", + "kdpos", + "yewuqpn", + "yzgqmoh", + "kvcdtx", + "hwiz", + "jpgqxar", + "obmqxte", + "znca", + "vozaerj", + "swtnre", + "aqhdtib", + "yszkur", + "pywcni", + "ufoewqv", + "kgufmvt", + "vxiftl", + "bnrud", + "acwkul", + "iydz", + "bkpci", + "uqlr", + "lbph", + "cmlaexu", + "ynjaovb", + "vgmy", + "bwecnt", + "xynvmz", + "zaih", + "sgeo", + "inodh", + "auncegb", + "gxbmisz", + "pkswf", + "vhqgua", + "twbdqxf", + "eahks", + "jufrhdz", + "peurzlk", + "vjts", + "tlvcreg", + "gvxmqh", + "hpmd", + "xlzw", + "mhnzok", + "wjpgc", + "nrmxis", + "mqdzh", + "qvcx", + "ratwys", + "imsg", + "prsbh", + "ijlme", + "exdfklv", + "pboe", + "gnwcdxj", + "rvqizbw", + "lkwtrj", + "gxvsq", + "tmbr", + "fmjret", + "uvihrs", + "ptgmwfn", + "wotjh", + "lwks", + "atpgn", + "otcghrb", + "prszmq", + "gwpl", + "ernovyb", + "yxwfj", + "giqxsh", + "yskdjfm", + "mroipk", + "bameys", + "bdhxnty", + "aoseruh", + "cugajv", + "estij", + "grxh", + "lvirq", + "tlogps", + "gykv", + "pdhay", + "vkjbryn", + "aojt", + "bpwlzn", + "ishcwfr", + "goltpk", + "cbtmie", + "ufztyqg", + "sayk", + "jxudn", + "rilhome", + "uoqpj", + "cgwne", + "cvgzeo", + "aukhry", + "heqivna", + "mjeotx", + "wxtaeip", + "cyzh", + "jyhipqe", + "ozvehi", + "dmkapg", + "tkxd", + "izdjg", + "lenhiy", + "zckyfrj", + "iwsub", + "vcgsz", + "umkd", + "ejdlyas", + "zlfo", + "vfyxdo", + "vomnfh", + "fbjz", + "peosnv", + "yhkzbfu", + "vtzhp", + "fzwkt", + "ulqfw", + "atxi", + "cmfs", + "iqacdg", + "hzvlpdx", + "elxokcy", + "hvoibd", + "tpwf", + "hynocv", + "tvokqhz", + "tgvsc", + "jlsatum", + "obtpfja", + "nbysvj", + "jceg", + "gzdm", + "jwxbpe", + "zrxvei", + "knszg", + "jmuon", + "mzgyn", + "arnkwsv", + "kdztwb", + "ezxltvj", + "cmslevk", + "vwgbon", + "kbgh", + "lfnj", + "xigunb", + "dobglc", + "gvuhez", + "rdyq", + "syxwzcp", + "sizegm", + "mwpnzr", + "aqzjrn", + "gvytz", + "kdfij", + "nbwhz", + "biwyr", + "tfhos", + "prvsedk", + "gadyrh", + "jtdem", + "djzvs", + "bsqphi", + "qblpak", + "vbjqe", + "kbxhyqv", + "agqown", + "uzcwg", + "weib", + "rnfydx", + "byzs", + "nsch", + "yjzntl", + "ewhc", + "kdencw", + "ycxgt", + "mtlqjg", + "igov", + "mylrxte", + "jnkgf", + "ztia", + "qtfh", + "ptxl", + "ijmgzp", + "rigs", + "mfzet", + "lzjkibu", + "gbfe", + "fqrj", + "nybut", + "fsetz", + "vadyh", + "eamsk", + "ubpg", + "gopcmk", + "relkhwy", + "hlesjzr", + "jkvea", + "onpjg", + "ptwis", + "pcelrz", + "njpeb", + "fznqops", + "gwjn", + "yzicolh", + "zmwqxj", + "rlsvkdu", + "nlbxh", + "fwhyaq", + "woetj", + "jhloncd", + "gjwoku", + "ktzxwf", + "lgnjxer", + "vgbiw", + "yose", + "quljd", + "nzvq", + "usye", + "qfpbzr", + "fdwapjn", + "glwnbod", + "kronlyc", + "rwodt", + "houimvy", + "dqvbwzy", + "zurqv", + "kroaxt", + "wgoljs", + "qdevma", + "xfayvl", + "qkfe", + "kzng", + "hzygwkq", + "ayjowdk", + "xead", + "dzljmiy", + "nwse", + "jfwrqok", + "bujifmg", + "vusxaqy", + "zruxmai", + "lviwgo", + "vresjmu", + "hxiwpuq", + "zfajdtu", + "vzbmakp", + "vjywqse", + "utkie", + "htwcsim", + "rovciku", + "cahswy", + "flzw", + "skume", + "lzsbqe", + "zxoyp", + "cvfhp", + "xspot", + "svcej", + "cpstf", + "vjoz", + "xhez", + "duoqagc", + "kalwd", + "lscr", + "ijfywc", + "jgovqr", + "dgqykw", + "ogji", + "rovq", + "jgzcp", + "jvwlcfk", + "sdfpgj", + "zhjti", + "xenrcd", + "dopzh", + "opnw", + "hczokpn", + "dlixye", + "puihd", + "dbjf", + "knjrqt", + "aoldwt", + "fovbj", + "haixrp", + "zgiobw", + "cuyiqrs", + "aifob", + "buioy", + "twhjgpc", + "vxpumds", + "riemk", + "gcos", + "zeokw", + "qzivclx", + "mdiev", + "pqhisw", + "pmchavq", + "nklsdb", + "tulwe", + "crfxi", + "cena", + "hsduaek", + "owzb", + "stgei", + "kfecwa", + "cgim", + "xgmsz", + "gtdscu", + "bfdamqu", + "fdovqae", + "roxncyi", + "wdquelr", + "uqrjfsm", + "dqhp", + "sfnuyj", + "bepncs", + "joqwtcd", + "cdfu", + "xilwjam", + "xhkmw", + "fwmel", + "vuebjn", + "gslq", + "whivp", + "rszt", + "kfjrom", + "fwqcj", + "qknpdi", + "dyakjsu", + "fqzci", + "jocklr", + "wigobz", + "xtfrpcd", + "hdnq", + "qojz", + "xplbu", + "hvgu", + "zotnreq", + "luejs", + "wofyhj", + "btqm", + "swgnk", + "jwkco", + "pegao", + "itulp", + "xawbj", + "xiezh", + "hjvp", + "wfmed", + "lacwtvy", + "rcxnshu", + "csgdl", + "rnzetal", + "tdupbv", + "yordwcm", + "vtlzjcx", + "vkorb", + "obptv", + "ajdcrb", + "horksxy", + "sxgul", + "fvjapc", + "fxrt", + "tquh", + "ohqcwm", + "npwcgj", + "nojysm", + "bijml", + "gopbes", + "dyfunmc", + "edicr", + "byouz", + "wqtkhx", + "vuep", + "pfdzbt", + "rnavqgh", + "ptascuo", + "etkq", + "tzrmv", + "qdhkco", + "hiwxm", + "idcu", + "gztan", + "agsy", + "efmcj", + "osag", + "gftqk", + "eausrzl", + "wtzjsi", + "anoxvt", + "sctg", + "etyv", + "pgyq", + "hwmbg", + "jpivdhu", + "ozvjg", + "cxewish", + "ckubajq", + "rtjmze", + "cjthn", + "jhkz", + "lxmva", + "qpani", + "rletm", + "njwcbdk", + "juzwof", + "ajtg", + "asmpgzj", + "mubq", + "kvcxqbf", + "ykjodq", + "iyafh", + "rieogyt", + "hmwzi", + "njap", + "zaur", + "shklqej", + "ivzr", + "byxmer", + "lfoxsd", + "bqfy", + "mgikdj", + "qkiwzv", + "czam", + "audc", + "ymis", + "pkhocq", + "chkeafn", + "vxce", + "upgrq", + "mkaujs", + "lxsrdpc", + "ylxguoc", + "uhywap", + "rmugvdc", + "wqlr", + "ghzd", + "vjmc", + "izxwdvm", + "kltpw", + "pnxak", + "yhpox", + "cpalw", + "zfgarx", + "vfxmlo", + "wxpgb", + "jpfmx", + "rcldoph", + "rzhgid", + "dmtch", + "lspy", + "oxwrd", + "zdgmij", + "btdihyg", + "ouvja", + "nwcmvz", + "nwij", + "knhy", + "bfzwq", + "nhzp", + "hweztf", + "xtlp", + "ptlzred", + "lzuv", + "strczlx", + "buclp", + "syhple", + "vlyidjm", + "zidqn", + "wmbfq", + "dzobf", + "ncup", + "qjpzhfw", + "mdhwvn", + "xthk", + "btyar", + "itelfo", + "foap", + "boarvx", + "rcuhezd", + "smyvdqb", + "qivxrjc", + "ejhua", + "mxcpk", + "xesvmg", + "zshkv", + "joky", + "zlgbw", + "uvlqnrp", + "nquhxdf", + "trkfa", + "bkgm", + "auyjlnr", + "zemith", + "iaou", + "bxgiwvn", + "vzpms", + "kugs", + "fmlv", + "zjthd", + "waxi", + "oebhiwj", + "ahidm", + "nmbru", + "jgame", + "czdx", + "msrnkau", + "dagw", + "ugzd", + "shlwze", + "bpdrwt", + "aogqfb", + "kygi", + "kzdnfm", + "nuckz", + "nxswvct", + "pgja", + "bfdcqk", + "qvmfhz", + "fejigvr", + "qyevo", + "lnwphat", + "azwkico", + "qyunhdp", + "sxrfdlu", + "mlqpy", + "hpfr", + "ixkepf", + "blsf", + "rdwm", + "zwliqa", + "qcwn", + "talgmkc", + "cnqa", + "ecak", + "zoyr", + "tqfikuo", + "guwof", + "vjpxml", + "jtrdkp", + "zagisn", + "ajlvnh", + "xhmyv", + "yfxdskw", + "buotfxs", + "tohc", + "opdfhug", + "nlmafk", + "bslcjrp", + "izserp", + "yghco", + "ealzuf", + "elqxw", + "dtnxcaf", + "hzqog", + "pviy", + "pjml", + "rvieoad", + "fqaxodc", + "smxyirk", + "zcfqj", + "rabk", + "bnkp", + "zvtir", + "bcqhs", + "rotclg", + "gysubi", + "cwxy", + "rqkxz", + "gvflnc", + "armye", + "chekrx", + "edmy", + "talw", + "cqdwa", + "pdmhifx", + "gkpzj", + "sowuiz", + "hxuzl", + "fmncvou", + "djgftnp", + "zgmq", + "ysrpqm", + "ezbq", + "vbkryno", + "aosyihj", + "lgpj", + "ofpxtqv", + "anedg", + "lkbmvt", + "wadnsu", + "ofewh", + "nywjru", + "pxliay", + "zqhsmd", + "jleh", + "hvpen", + "zynflb", + "vmderfs", + "xyqbhpi", + "btqcy", + "qhczot", + "lsbpqo", + "xswtum", + "hwnkp", + "yqeb", + "yfjz", + "jdyvick", + "dipaq", + "dhxn", + "uazkcy", + "tilcvk", + "wsjv", + "thaov", + "wjugelm", + "wpofyk", + "dbrc", + "tfrp", + "pdmxcae", + "qicbrwo", + "spkdai", + "kutil", + "drlsmxy", + "rkvtzqb", + "rixt", + "nshck", + "ajtqbi", + "nkqtcsl", + "lwemsx", + "xcogpw", + "ygutdfr", + "klobvu", + "doga", + "akgt", + "rylp", + "qyox", + "hjvyq", + "tfihcs", + "awjumhz", + "mcokjag", + "ubdigqr", + "aikbzm", + "kgypw", + "wrihoft", + "mfkaez", + "lwkhu", + "qnyrpjg", + "ayebm", + "mingqd", + "xeru", + "dkpj", + "ywdnf", + "cqwmnlf", + "ybqvs", + "xyeniqs", + "vkqb", + "jsal", + "yuwf", + "doetf", + "kvsap", + "nhvwxj", + "kixsfj", + "uqwmre", + "lghtn", + "hvebtfj", + "pazxre", + "qfym", + "zcspqmt", + "snubyr", + "lnwtg", + "gvxyun", + "stlgqw", + "guopadz", + "mygtfh", + "cwepitm", + "djkz", + "xeuiy", + "bkeu", + "bdopat", + "griljy", + "zsdvij", + "djirvf", + "ofsah", + "tiqgc", + "kuifym", + "txaln", + "obnl", + "enxtwjl", + "ntwghbu", + "fygt", + "rgvp", + "daux", + "lawhqry", + "puwn", + "karx", + "bhmxat", + "zkxpnj", + "mwadgv", + "aisgl", + "rmglf", + "fpcrkw", + "aegm", + "axov", + "xnqp", + "xrokn", + "lgbqu", + "zqwlk", + "lnsu", + "xruwp", + "huwvl", + "aizoc", + "gbzpv", + "dvqurz", + "jxgsl", + "rcevj", + "kirzbom", + "uasfkt", + "osktg", + "dzaxfvh", + "lqcua", + "lbryf", + "gntavyk", + "lrnsyb", + "rhqv", + "yqrxnes", + "lxphryf", + "ohfeyv", + "qzbdy", + "hrtkcxf", + "wyvd", + "trgiwsl", + "qjkswgi", + "mgnovrd", + "tiqvy", + "mclfao", + "ixcmrpj", + "sowi", + "xcel", + "pxbwmnf", + "medo", + "sthk", + "dhcrn", + "ndvt", + "tfwad", + "piex", + "qezl", + "vtcgh", + "gcnwaf", + "cmpak", + "fvwj", + "mwrqul", + "qvrwon", + "hyepqcs", + "ribylf", + "jxpofrc", + "bclpvi", + "wfqrdy", + "qwcteaz", + "bzersto", + "sevnp", + "mpxraec", + "ejavf", + "nkplc", + "slhj", + "pudwrx", + "bwzyn", + "ytfs", + "tbzgdp", + "oazlw", + "mdiv", + "djrlme", + "tzmp", + "fakels", + "iwam", + "xseag", + "iqwar", + "ymcnq", + "fcqvujw", + "jgmp", + "pjzgq", + "ongy", + "yqta", + "lwgsrxu", + "ogwu", + "eust", + "rskwljv", + "cbsm", + "hmgeotd", + "ljraupn", + "hostil", + "xvtgr", + "hgufrk", + "khgj", + "fnkliwg", + "foyp", + "ybim", + "jhfvwc", + "hcfdrw", + "dtmp", + "bdilonh", + "khigp", + "djfes", + "ibjm", + "oscdfk", + "qpgachy", + "wcuv", + "uwsjn", + "belcw", + "yjcd", + "nqhaw", + "kqebcoz", + "uoknp", + "bxkc", + "uqit", + "rolijfp", + "wcuft", + "ldosgt", + "elsmp", + "jdmubw", + "xespqba", + "ulwv", + "wlebg", + "tmfcsn", + "weayrb", + "kvrma", + "kfzj", + "syxz", + "zjtec", + "rsihmj", + "oghx", + "ikuz", + "xouqgwn", + "sounm", + "ioqg", + "oqxi", + "wrgya", + "kbtv", + "qbgx", + "ncfmaxb", + "fkywqs", + "tfgd", + "cxyiv", + "acxh", + "xpefad", + "hgcprmu", + "ikeoj", + "wyqrhu", + "kybqren", + "imgyznv", + "swetbo", + "bwpsvre", + "lroxvt", + "pedhvag", + "mzek", + "fprxbah", + "nejzfcw", + "wsft", + "plnxzw", + "lgkf", + "ihofby", + "khiwtm", + "hbfyzk", + "kcibmgw", + "xvtar", + "uypskh", + "goam", + "ytuwk", + "gkmsxvi", + "bpogmk", + "icznlfm", + "bviql", + "xipzghc", + "fiyvoc", + "gzrahkm", + "uhpf", + "ybfrcsp", + "zkmnv", + "daohimq", + "buak", + "hsdjagz", + "irbms", + "tzla", + "nqoxv", + "mncvpuz", + "mxyokfw", + "yjqnvr", + "fvlz", + "xsyad", + "qpnrh", + "lpimqa", + "dszn", + "enxg", + "cuedtj", + "zabiesn", + "tuaxbe", + "pvjreu", + "hufja", + "gxwper", + "ljabfed", + "unlexdw", + "hbfd", + "aokwl", + "cnfyb", + "odlcs", + "cwkf", + "jxfo", + "tlnu", + "timob", + "wpbah", + "ypgw", + "huax", + "avbuefs", + "xrtg", + "zdpsty", + "igrhuq", + "qtsfumz", + "stvudk", + "phij", + "jxilbe", + "fxqzv", + "oksxplu", + "moayidj", + "zvjbkl", + "npbsla", + "ivxpwmy", + "hfprn", + "nbwypmv", + "nadbfje", + "ekrucpi", + "vnoybf", + "njvy", + "bxzev", + "qskz", + "poqt", + "inbsy", + "kutpm", + "sdahu", + "qzhsb", + "ugtdm", + "lvreixz", + "etnwc", + "rzywpu", + "odyuqk", + "xkdh", + "slxkiu", + "fdbgz", + "eovgzi", + "lgmazcx", + "msnz", + "ianbztl", + "duzcfj", + "geno", + "yenibd", + "jyfnh", + "yoqhuw", + "eagnf", + "mcdojfy", + "gnamqud", + "jezxil", + "tayk", + "wblcdy", + "fcxk", + "ykdgopb", + "puinmgx", + "ybqunm", + "gvbdkh", + "cyspqe", + "yhrjbq", + "lptnb", + "insamql", + "mkzpui", + "tgcxv", + "ywxmnak", + "pmxvl", + "vtxufbn", + "hyrg", + "lqcdeog", + "fsjxdou", + "vktahu", + "cxvo", + "updvi", + "avyuj", + "upranf", + "uszlojp", + "qkgishm", + "nkhrael", + "ujbm", + "zweg", + "tpqd", + "qoab", + "hefatij", + "ydlus", + "uiamcx", + "ipdkx", + "xjku", + "ztbnjy", + "ueamfsk", + "exjz", + "msqa", + "oxqw", + "cltwga", + "eiokyl", + "rdsb", + "wnru", + "dhfcsm", + "sxoznv", + "zuep", + "rbhewm", + "tenmulb", + "wyzmkjt", + "skrluh", + "lczrbv", + "vblndsj", + "upekca", + "mqpaugz", + "sbyt", + "mapc", + "zmxg", + "lhjzm", + "rvnzj", + "tkaih", + "lzsnp", + "nykh", + "pdvu", + "ouhvbae", + "hosfwyg", + "pgzqyk", + "foxwk", + "ltpj", + "xowmqjs", + "fxirt", + "mjesfc", + "vwgk", + "namgdr", + "psxodfk", + "gywe", + "lbrijde", + "fxjvzy", + "dxrme", + "vzwun", + "zaknbc", + "ifer", + "tfus", + "ylbfaxo", + "zhfdsyw", + "gpbsk", + "pdbxky", + "pjrul", + "tbokcq", + "nweag", + "uadbrc", + "zemylko", + "ifbc", + "uydxsl", + "gtipj", + "adlntzp", + "etlnyr", + "zwctd", + "rbusmtw", + "gbfxrh", + "tvhr", + "mftlbn", + "zvyxpa", + "ltxipk", + "vxic", + "iohsp", + "xqnlj", + "uogcx", + "wbmzc", + "acvomej", + "fsml", + "dstb", + "wgom", + "lygzf", + "tmrqxi", + "lekyw", + "ugvbnj", + "xvit", + "tjwynv", + "xsraltm", + "ukdi", + "uibodz", + "eamoq", + "hsakzo", + "chdi", + "njosfh", + "xcwkgq", + "pxfdget", + "mljrqdo", + "jhbfds", + "mpkbntz", + "cqnbmi", + "olbxafz", + "rkfc", + "ukyvfo", + "hsvq", + "nmpzagi", + "yxwvzn", + "xdjfgn", + "hedso", + "jluyrhx", + "crybska", + "eyzv", + "vxkmz", + "zhvq", + "vtxesz", + "uatwx", + "jhdv", + "bxiozt", + "ltxwjy", + "xrbs", + "xqat", + "kovsi", + "hyvnap", + "chvftum", + "eqncw", + "kczd", + "syohprg", + "zfpi", + "xreosg", + "lpifrzm", + "ebup", + "kgcdw", + "xtfk", + "dfkeng", + "dhngab", + "ljqeo", + "nlajzeu", + "iwbfmrg", + "mzvu", + "vhmglb", + "lpxt", + "jlhwsfx", + "xcbvpm", + "zfcagq", + "eibxt", + "nutzi", + "xjbn", + "etgobrv", + "qmnyfks", + "uakrnh", + "rhdnt", + "fqnem", + "wiuhdf", + "tydrpge", + "xrfad", + "bdrji", + "nzwo", + "mrtfjck", + "lhpsjdw", + "orauyhi", + "vxel", + "rgcip", + "jvifp", + "ksydm", + "jyrwxia", + "zork", + "hoxecsf", + "ozykwi", + "wfrx", + "ojlwcsr", + "xspmhya", + "vcjas", + "fnvwhz", + "vozbhes", + "smwd", + "jmensuq", + "irume", + "jfdchg", + "ijpcrq", + "vmawky", + "itjlk", + "ezmbtha", + "izspky", + "rsyiend", + "gics", + "izxgo", + "gjif", + "uzim", + "xtfkv", + "czbr", + "wozex", + "jaqphfb", + "sxnepl", + "tohyvu", + "qsmbdx", + "naxzit", + "pisqhg", + "hvuls", + "aypju", + "cmjp", + "lngpvhj", + "shfykc", + "nkpr", + "rwek", + "smvhi", + "zsnjcw", + "gyqvwu", + "famncl", + "gzaq", + "gzomhlk", + "ywmrlan", + "snpfzc", + "ixchzfg", + "sauq", + "rdcp", + "mcglwft", + "lcma", + "nzivsf", + "urma", + "vbmp", + "ogtlxhd", + "dfznjv", + "umhlnob", + "kthi", + "eaclf", + "seyhx", + "bducfvl", + "ldekyzp", + "lwpem", + "nyltgi", + "uzokr", + "vbdp", + "huizxr", + "seicbk", + "munv", + "wxjpvh", + "swiboz", + "nwbpfqe", + "stgyedp", + "jiclmfa", + "rlznft", + "umpsox", + "ktpjecm", + "jotgdm", + "nrhqdm", + "qigbrjl", + "qnkytv", + "oatj", + "vygub", + "pruxk", + "tdanybv", + "odpbyf", + "bxcu", + "eypf", + "dqebrhs", + "cnhzbw", + "ogfks", + "zfsrhx", + "qpxjbvl", + "nuvcy", + "ximcrq", + "fxmua", + "twzm", + "mwjktb", + "jwgfuh", + "qjmib", + "qsvkw", + "hglinp", + "vucrh", + "aylczfi", + "dcxsw", + "cypxzhe", + "sablxuq", + "ouivlr", + "roekb", + "rwkdx", + "moxr", + "iwsy", + "kgpvy", + "fpbvl", + "zvtlqjx", + "lthd", + "cjlqikg", + "bihuo", + "csufn", + "fvgplrb", + "dcri", + "pmleid", + "jdsrf", + "ktnodw", + "wafmogc", + "eswimut", + "jiahruf", + "lvmchg", + "ekwx", + "qceiybo", + "bmojifw", + "vfkxmd", + "azvgow", + "kmpzlu", + "daxk", + "cgpzy", + "ijrvnzk", + "ixvnzg", + "fplsauh", + "ymfv", + "tfuir", + "lqdb", + "qyol", + "wfdq", + "skyq", + "zryqjdo", + "wdmlet", + "kcxuni", + "hbyvs", + "mkaf", + "tfon", + "tpeugy", + "uwbzlh", + "uahkq", + "olmuxd", + "rghmn", + "fpdy", + "ginlvc", + "zfsnxd", + "pbrq", + "iuztg", + "osnkuq", + "imzfvk", + "vrmsq", + "tpzxugl", + "nuxayd", + "zptebn", + "urxnatj", + "kwdq", + "pcxs", + "qvjnbh", + "pxihw", + "vbzeq", + "tpjk", + "mteyz", + "xnml", + "wodxjsq", + "xcvoznt", + "cvnxzm", + "hfqea", + "oragni", + "hxeumfa", + "xlgadtb", + "bsrg", + "mwvcxsp", + "ayxs", + "sybz", + "ohpr", + "qule", + "mvzd", + "zykqp", + "ljpdqc", + "vcqy", + "gslmvx", + "esbqoal", + "rhkj", + "fbly", + "hapsogw", + "skrhceu", + "fkjhaxw", + "kvbsgt", + "qwaixl", + "afuqjr", + "fsaytoz", + "fpvnsqe", + "xspyo", + "vqjptl", + "pmofk", + "qiusw", + "hbolmku", + "exotinf", + "rewlg", + "bjdoa", + "cyulqx", + "vsjpm", + "jzonqkw", + "aowmi", + "poxyuc", + "yhflnbd", + "egqkyx", + "vghyf", + "kmdt", + "giyxe", + "kwdu", + "aofkv", + "xslwt", + "zcuw", + "gmpul", + "hkajbc", + "rmde", + "ktxasq", + "odtk", + "gnrlpyf", + "rvnd", + "bogdce", + "opnws", + "qluc", + "pwgdma", + "ahmrf", + "eigfows", + "tgri", + "mxqv", + "vubepdj", + "vzli", + "vxijsm", + "lzvsh", + "wzltm", + "jaqhdm", + "rals", + "qrgam", + "ejdv", + "tkzdfel", + "qiew", + "iuyrbwh", + "bgstklp", + "ruzjkbi", + "dtoamp", + "bjcvaxn", + "qilhbpk", + "jhnumgc", + "lyag", + "tfrwksi", + "sgwt", + "kojqnxr", + "urwog", + "wcbi", + "ndwcp", + "eptq", + "jvfws", + "etcs", + "eczadt", + "xmydlg", + "muyrg", + "nyirha", + "unaimd", + "cboqr", + "zorfebd", + "wpsulj", + "givqzfc", + "ctjgedx", + "welh", + "oqky", + "rxwh", + "ixztac", + "fnuva", + "zidst", + "xudjk", + "kycl", + "ndoi", + "sxrt", + "keyf", + "oatnv", + "vjsdk", + "ghakm", + "pzskhfi", + "akiu", + "wjbs", + "rfty", + "zdlnft", + "wrne", + "kaqo", + "uwtyefi", + "whuna", + "xqcfigv", + "rkfwt", + "jgyn", + "sznxwe", + "dmlxpfc", + "nrvcxp", + "hnwusk", + "suebo", + "etami", + "fcrjgn", + "kusiev", + "rqis", + "zfqdips", + "kmvryqu", + "iwzlh", + "kalrzo", + "actefsx", + "jncus", + "tjed", + "qxpvjgo", + "gpscnji", + "omdqe", + "oavu", + "alqfo", + "xuomi", + "ptame", + "oeipxq", + "shmp", + "qani", + "fuxlnt", + "boeu", + "pmwxtvu", + "zbqftg", + "ipqge", + "yoszih", + "hibzar", + "tabfkz", + "ukxscn", + "gchapoe", + "phvwtsr", + "ucjy", + "aivrkpf", + "zxoridl", + "jouaxpc", + "jgamz", + "cugfs", + "zkjs", + "kjmo", + "acdyt", + "bwczfr", + "nwpg", + "jgpws", + "nblu", + "qzyas", + "hgpzwou", + "ymoizvg", + "wmsjyqv", + "sfet", + "teapugn", + "aemspz", + "pbcm", + "udfbptk", + "yrzgjfd", + "ljcrovg", + "dizwv", + "aykbguh", + "zvnbsg", + "bjnzwhl", + "ahotwv", + "vibmn", + "iazlq", + "dwojl", + "xfrhv", + "jcnb", + "denbix", + "rsgo", + "cdreit", + "mirs", + "rbqh", + "mpgrxa", + "uydsxb", + "bzixeo", + "cslapzy", + "nger", + "vzyfxb", + "rksjx", + "rlngome", + "sxma", + "cdrnwj", + "ywhf", + "ruln", + "gvzy", + "waelqyj", + "jbca", + "ahbs", + "wirf", + "vqireg", + "itpa", + "fptjk", + "ciouhq", + "qcotjh", + "mkqni", + "nzsrudk", + "wkqbe", + "hlxmi", + "ntcojrw", + "wvezh", + "lbiut", + "jonuh", + "kxhm", + "venpi", + "mhsulwq", + "rtdcbmu", + "jrynb", + "siqxpwy", + "capkg", + "uzbs", + "cpbz", + "gndi", + "giypbq", + "jgbrvi", + "wfxe", + "guvpch", + "umohe", + "bihcfk", + "eqcf", + "lmksy", + "ijfyn", + "ytqfsc", + "djlnui", + "fucepy", + "epjnz", + "zqap", + "sbziaml", + "lgid", + "gytneaf", + "dvrnl", + "pfdlnuh", + "rjwcfx", + "kqtfeny", + "shbql", + "hgkj", + "qnyltco", + "mkjy", + "fpszgc", + "puwcz", + "sqhw", + "ifxjb", + "xqbec", + "xswoi", + "gcvptr", + "qoauhd", + "tnmzwe", + "xcfhby", + "kxurqs", + "tauyls", + "jcvfns", + "xkdh", + "hfljtmw", + "dbagkw", + "kjnyub", + "anlpo", + "qzrc", + "lgmbuxw", + "ibhgdp", + "ofyu", + "rvkye", + "kqmoah", + "oadn", + "zgeum", + "nmztl", + "tdxrj", + "dajvc", + "htzluix", + "jzqifh", + "bezcfgm", + "yczaodh", + "wyevq", + "uxol", + "qdemiku", + "dmecytr", + "jmgo", + "vyaji", + "gbnjwv", + "fvghrt", + "mghijr", + "rkcxi", + "tocbz", + "hitxjl", + "hnpqey", + "jdyru", + "aobux", + "nbtr", + "hoayd", + "emjhrsw", + "eqyjd", + "byprud", + "zvdjs", + "qfmnw", + "gmwdo", + "gzrakmq", + "hfunpo", + "aebdj", + "yxhden", + "fwejn", + "dtpemhz", + "lauobn", + "nbezu", + "ksbho", + "dibvgos", + "pitjsuk", + "lznsjcm", + "lwzrk", + "ulayqi", + "csxgbv", + "sghwxpk", + "qyunwov", + "drlmght", + "pnrzk", + "vsnyj", + "kbqwyd", + "pioe", + "bphcn", + "xrwqidc", + "oftdsh", + "yvutwf", + "wljc", + "qecjm", + "umds", + "bymwnc", + "jhbc", + "jdmuiks", + "pyfg", + "kgaulfm", + "erlfcjh", + "cqfrap", + "uqihpn", + "efas", + "prjg", + "kiqe", + "vjmniq", + "gfcwypx", + "nuepfb", + "ebtrqld", + "yrnxozt", + "xibgu", + "mazf", + "gmxewy", + "jiyp", + "frxyhjp", + "knvfqor", + "odxujis", + "oldpus", + "urfa", + "udvl", + "lkjn", + "hivmftr", + "hjbqs", + "wuot", + "aloqk", + "rawj", + "sgmjovu", + "lxeyqbv", + "wioecdl", + "utzf", + "ekxl", + "juqhck", + "isgj", + "hiztgfo", + "kojshf", + "sdexuhf", + "wdxk", + "uetv", + "xble", + "xcdgki", + "qaitne", + "bnpi", + "vbsgcux", + "qecklya", + "qjvioup", + "boxtyq", + "oqnsiyg", + "dzruvcj", + "xlayc", + "raedjx", + "ctkm", + "yjmn", + "qaors", + "rivqw", + "kwso", + "znvflj", + "jbpegsd", + "yjcp", + "brze", + "sdtwiar", + "jigy", + "dgch", + "ojpyzxk", + "avod", + "ibuwv", + "mplq", + "zvjfd", + "sfldgea", + "rfcl", + "zlpmbwh", + "yclzbtx", + "aojvwcs", + "shidmz", + "zrfkoc", + "qymn", + "ghibyo", + "vynuthc", + "uipyhlj", + "lzabsmt", + "mpujvs", + "yfngrb", + "tzmciyw", + "evbx", + "qdjf", + "qfamjp", + "otgevpc", + "jnec", + "uoqd", + "lmkhruz", + "dmzs", + "kezsbj", + "wgkhpn", + "kvezclg", + "jqvmtu", + "nqrfxt", + "fzbplo", + "pfhjtwd", + "adwixle", + "iqty", + "plsmfha", + "xsyg", + "zxkyjt", + "cuflq", + "phtgmze", + "svfdtch", + "iohndsp", + "guam", + "rqmgonf", + "kxvwqz", + "rpkhyni", + "sjowzgl", + "bowaqk", + "eybrq", + "rnzq", + "shpe", + "oixcn", + "cmvf", + "swuitae", + "nudt", + "wqsthv", + "tngrqc", + "vigc", + "xnkylv", + "ltydsb", + "lwjqbim", + "xzqhjs", + "ribl", + "ofxmd", + "oszqni", + "zcrtp", + "xzqlunr", + "svgh", + "tgehn", + "nxtsbo", + "enbjo", + "qjog", + "pnzxlf", + "pyhfik", + "inmgx", + "mngl", + "esyi", + "bdrfve", + "cutwin", + "umtde", + "tzoekgj", + "vqumbp", + "ceuv", + "eynqdi", + "qafzni", + "cnfx", + "pahnco", + "rpze", + "lvdh", + "itduhm", + "fvlkhm", + "tokmg", + "hxespuo", + "liqgrp", + "qhcp", + "mfwix", + "tplrc", + "njsgea", + "vzwp", + "fcxvtg", + "zuqbi", + "wdirp", + "fpltgeo", + "vkpf", + "ixacwyz", + "qdybxw", + "rvdy", + "lonmyhp", + "qonk", + "kbqmw", + "ytaq", + "ctyeur", + "wsebig", + "ohqsy", + "tgadesn", + "jbei", + "gqva", + "wfzat", + "axobe", + "mnwd", + "iszlpdq", + "egzoq", + "veyz", + "mfkhaqy", + "jxevl", + "ydkq", + "fzmou", + "npxri", + "icfjub", + "kbcxiu", + "hrnobzw", + "temy", + "wuryv", + "entpvly", + "vwegky", + "rxeoq", + "qunsxt", + "wgjc", + "vzpxc", + "efpnhk", + "nialmf", + "pabjd", + "lxet", + "qjztbrh", + "etndg", + "euyjv", + "dhamsfg", + "dwrsim", + "puzrg", + "zsdf", + "irfm", + "igbxt", + "xqmvduj", + "cmqrj", + "kusjyx", + "ivqjdkx", + "qnslov", + "apjxur", + "mfhneu", + "fjvkzbn", + "rsqzyk", + "sklo", + "fyxml", + "dvmwby", + "kvfh", + "lqrhvx", + "rbcdqle", + "ryes", + "hqxoak", + "dgzsbjp", + "gsrz", + "uwsrjlf", + "udyec", + "kqievhw", + "ryiq", + "kcjxm", + "tsrcw", + "rvxjtub", + "gqdvi", + "jbgf", + "kuego", + "fwzjphe", + "fazp", + "txuh", + "qntr", + "zqcxntv", + "cxag", + "yvornb", + "umwv", + "lfod", + "odxq", + "qgjwcde", + "lbafe", + "qunsa", + "vsun", + "kduf", + "dmxwfh", + "vbpceq", + "icbym", + "odvbehi", + "gyjcpvd", + "hqgojtc", + "diuxjg", + "ynem", + "qguri", + "nqsmcyk", + "kdcovgi", + "uwlemcd", + "opqlig", + "djgp", + "dvqbf", + "kyeqr", + "tjfreio", + "zufhrg", + "ybcuqi", + "uwhvpf", + "jdtcop", + "adkbzl", + "ygsb", + "itgz", + "nkoarjq", + "dfva", + "dpsjlew", + "uabdkty", + "defrz", + "ntgil", + "sbwa", + "wbynrkq", + "urpnyq", + "baws", + "zmrkb", + "irvena", + "lcawin", + "sjybe", + "zjkeqp", + "xesymvw", + "ekgvoqx", + "psug", + "cgenqxz", + "zadhq", + "ifdomy", + "lypbjso", + "lxfbu", + "etjxyc", + "fuos", + "ekdtlz", + "dxiwg", + "jiuc", + "mvduglo", + "iworkxu", + "kaqwdb", + "nklbqhu", + "vjpzb", + "oqyewn", + "upcwr", + "epvrd", + "adxe", + "wfca", + "qfiu", + "xhsu", + "lcouk", + "bznu", + "kwdc", + "lvxrnaj", + "rnopex", + "fwhvunj", + "qjov", + "nisdal", + "phys", + "dfkh", + "hdva", + "oyzicsv", + "dzjt", + "ekalcr", + "qsxr", + "bkcv", + "fwrvdlb", + "eulj", + "hobyeu", + "lcxwfz", + "shmjrqd", + "zlmut", + "gmcd", + "wlhgu", + "rwlvsa", + "jemhq", + "mqis", + "vyglo", + "rufspg", + "vfoi", + "jfdok", + "fhinxvp", + "bjfk", + "oarf", + "yhao", + "gfrvyk", + "jvyq", + "lvbktmh", + "cposi", + "ikgnphr", + "poemu", + "agkcx", + "slozu", + "msxd", + "hastr", + "lbgp", + "uxfhbj", + "ubjndi", + "pdwryb", + "nyuvxb", + "utgmd", + "lvtxn", + "edfa", + "trjyqci", + "jkvq", + "zvsjd", + "ashpokc", + "kfem", + "tmgfkso", + "kfphi", + "apth", + "qzhmet", + "xzlmcj", + "kjhe", + "zwrfxn", + "xfzcyl", + "clmxg", + "irbfde", + "veqnamw", + "tmub", + "izmn", + "umjp", + "jxgtdo", + "coya", + "bvxhd", + "ylok", + "lsmbw", + "kauxhb", + "vpruz", + "eamjz", + "vbefq", + "usgaxch", + "rtsmnh", + "mkzg", + "ugzap", + "rzpuxw", + "cdzo", + "caldgoz", + "lzpfe", + "eqlhjuy", + "gsar", + "ymja", + "ktpclh", + "isrb", + "fnyapxl", + "xortmd", + "gzidj", + "gdwjcbp", + "yvui", + "vjredba", + "bsmadl", + "khimxy", + "zdft", + "yrfpibj", + "rmgzyb", + "wnopgh", + "srvnh", + "qumpha", + "mnkve", + "usjdlok", + "zcti", + "oabwud", + "qpyilmu", + "galvxk", + "rqwnj", + "rwchy", + "cyfenr", + "bcrnxut", + "mneglqp", + "pksgow", + "eqnbrk", + "yucan", + "rwxlfbi", + "gjrhv", + "ytgl", + "wrck", + "ijvnq", + "ocnig", + "qsnjwik", + "ctkdw", + "zqfo", + "dqmkt", + "keroqnu", + "gbatluz", + "mvighwz", + "rgkzi", + "vnoqub", + "vsulmki", + "pmqzsl", + "ymex", + "leof", + "vspq", + "bnkzwum", + "yjzqam", + "ybcdinx", + "afdgqh", + "chtbu", + "fiwkb", + "nvlwr", + "crhbt", + "kdjhst", + "rbygljz", + "xfchir", + "xhsimca", + "pmdjey", + "kpmxesl", + "nlpd", + "hkftdmb", + "bkenl", + "ndjqz", + "mtijub", + "wbmeq", + "ohqfd", + "ligdkws", + "igbusr", + "qdwl", + "faujxy", + "xibspca", + "mvptb", + "urqvcgk", + "augtqln", + "lckoew", + "ybsfot", + "qrioc", + "eyvpot", + "lkfx", + "nsaoftu", + "matgki", + "cras", + "cthwqp", + "epftr", + "sdevcrq", + "qvcx", + "ysqfku", + "mhkb", + "dzkvaum", + "whfjqk", + "tcpmo", + "jkesuxy", + "mhiq", + "pvhsyt", + "kcufwav", + "uogt", + "tcdz", + "ocji", + "tojyvg", + "mqxnec", + "rjyfgdm", + "qaprj", + "gcsdln", + "xjkg", + "fjeqh", + "muzpw", + "rkopxh", + "hmuc", + "hnux", + "gfwio", + "eaqn", + "oszmqu", + "puvcxtz", + "vnjmz", + "jhmau", + "oqib", + "dsakg", + "yidft", + "fdjm", + "xjguvtq", + "tlhi", + "keiq", + "uparj", + "nacgu", + "lvty", + "hlvxmj", + "ptjmagn", + "icbv", + "hbdu", + "aioxyj", + "agbtzf", + "njbz", + "axdm", + "jgdzn", + "lhxo", + "bmzqs", + "ncot", + "oszur", + "nkpidsq", + "zhpl", + "djigebv", + "fkho", + "yartf", + "byri", + "trzi", + "ojlwzxf", + "ounxahb", + "ufxo", + "qtmgdx", + "pucrj", + "guyms", + "ytrkc", + "wcsg", + "ruhkzj", + "fhatqu", + "xpvkwmd", + "beztm", + "lbkqypm", + "edqjh", + "axef", + "gvud", + "mhbaers", + "znoprbd", + "dyhxmcw", + "miah", + "gwohxar", + "ngyqe", + "esgi", + "ohzvul", + "jqpexvy", + "ctgonz", + "vtgpka", + "atopew", + "jxdqf", + "fmjulv", + "wvalq", + "kliod", + "luhsvno", + "dosv", + "jgiwvzr", + "lfhc", + "ihoylbp", + "jzgut", + "ydom", + "ligqes", + "cmrq", + "xidze", + "dwzhv", + "fogzq", + "vojz", + "wblf", + "leyqs", + "vtib", + "zbrnf", + "rjvltdb", + "mqugt", + "jtwgih", + "qdfjpc", + "zbgoc", + "vgfkj", + "gmycno", + "frcqw", + "lgtiax", + "kwlazgq", + "nbqo", + "mbinhqr", + "zdqh", + "ntvb", + "xskuawp", + "eykt", + "oyhz", + "odzn", + "dzcpur", + "dtwh", + "wyco", + "qbgpc", + "vdeb", + "tosrjwc", + "njtemb", + "vyztsxl", + "jvzltn", + "uacdq", + "juhc", + "mwqanj", + "nspl", + "wqlbup", + "kvilepg", + "tciwv", + "owtbrg", + "cdwm", + "wiha", + "xlejrk", + "mvord", + "xczya", + "toiasb", + "hqldm", + "hpmjakw", + "pfxit", + "dcsnqyr", + "xnltmbe", + "chyosjw", + "ygzoci", + "olmbk", + "xvrtp", + "dbyz", + "izuew", + "bjxilsk", + "ypzgr", + "xgzsynl", + "ymfucv", + "zouapmb", + "rmpgcui", + "tyodj", + "nzgpxv", + "qankg", + "sdbruqp", + "dtohel", + "pcmugq", + "enaowbl", + "edtmqx", + "kdgqf", + "tjvs", + "kcznbed", + "fvsmq", + "cgfn", + "vhwdlre", + "otycd", + "doasqy", + "lyzr", + "kxbjld", + "tpfvym", + "jqbspxh", + "kfnuwbl", + "fvcpy", + "fvzbay", + "gtbsh", + "kjtlhc", + "yzkowmr", + "kbudmti", + "pnjc", + "lnvq", + "sbcdoxv", + "bsywh", + "xqoarbv", + "doagl", + "ebzos", + "ifptxna", + "lfctwb", + "yqflvt", + "ervuzmn", + "uprxdot", + "hqdena", + "magln", + "smnajx", + "nzohb", + "lfqik", + "kflziu", + "kytru", + "rnveqlm", + "iwrcf", + "akml", + "xwbjzh", + "pewq", + "wzqkx", + "wocmjy", + "lwyd", + "cbmfpeq", + "ljkf", + "nqrgei", + "pdroi", + "yngvou", + "stxyobh", + "jnito", + "ethk", + "bfuo", + "gioevhx", + "ykahcx", + "wgkq", + "uwjkzqn", + "pkbxef", + "rxvumso", + "vpjotdk", + "wpfznl", + "vsxc", + "eyvg", + "uljawsb", + "qpjwfkv", + "ianrmbd", + "tpzloy", + "upoxv", + "qxjdtie", + "ztgvpa", + "sbwv", + "kuglcft", + "iwkg", + "twgfe", + "yeluzbv", + "orwnda", + "fczwok", + "heywqm", + "rziaus", + "wkfsei", + "wfpzsa", + "zawxpi", + "dqpjli", + "pgdbyl", + "tzbgo", + "hjcfx", + "byjte", + "zhtn", + "ltvps", + "tjncrop", + "pzkxv", + "ozkmutg", + "uezayi", + "kyfjtr", + "wvdljnm", + "nyesuv", + "cojmri", + "zaehn", + "qsgkv", + "drozu", + "jcgv", + "xrhj", + "vipz", + "tlnsc", + "fkglu", + "irxsqc", + "tqrgusk", + "odrbqjt", + "ivtbuzf", + "euvyz", + "vuxwnfc", + "rlepodk", + "ifwy", + "ldygp", + "zsyhl", + "bhtr", + "mdkpsb", + "ofwvq", + "bgxqrcw", + "dqwu", + "oqjki", + "nsyrvj", + "hnguzti", + "apbe", + "awentd", + "fbnxwt", + "hdjqgov", + "ozpyfak", + "scmwl", + "xafk", + "jdnhoy", + "tlaqn", + "lyuiwfc", + "rlmjhks", + "okja", + "vahboqi", + "axjvw", + "jdai", + "bjfonw", + "wzxsobq", + "pzcwonj", + "mtebzp", + "vdmo", + "wzpy", + "vaudqwb", + "mxuy", + "zidsat", + "dremh", + "ftgnsja", + "ykqu", + "yxkumc", + "ztbxkpo", + "tibrjsp", + "reuxc", + "gswe", + "jadqsxc", + "suixbe", + "zadtjng", + "tcyq", + "idcao", + "fxbusag", + "mbdpcn", + "xzdhn", + "vmnlf", + "xkocth", + "bipa", + "oqrf", + "wndyfcs", + "qxsa", + "udhbyo", + "yqiph", + "fykuncw", + "cqahmx", + "rgnwa", + "bwrlyeo", + "jbcqihl", + "talz", + "gybjsep", + "wpbsv", + "pmfj", + "adnl", + "jtfwe", + "gaos", + "pkybvr", + "knbuzvq", + "peosq", + "hkzmcne", + "eszjqb", + "xhcs", + "mcizyb", + "mngpb", + "cpdbmx", + "jeys", + "lemojhn", + "kncrd", + "mkwaqfb", + "nvlh", + "kaipzj", + "sghjr", + "suvogjm", + "ictq", + "narfis", + "vusof", + "ovwpaym", + "hfmqpoe", + "mdsy", + "cdqapwu", + "kicnf", + "kmuxrjo", + "jwcd", + "wiunsfo", + "whzu", + "cqas", + "oarjbp", + "afwo", + "tgkoexp", + "agtlk", + "xited", + "mwoi", + "mcau", + "qkroz", + "rsacjqy", + "mked", + "jtfok", + "vlzq", + "lbzqogf", + "tzrxwec", + "olupbzr", + "kslo", + "zpft", + "vhlybfq", + "dhgr", + "oagnq", + "jdvt", + "xlgyun", + "cijwudx", + "qaerus", + "dkqczeb", + "hbfzngt", + "wiaeuft", + "rfbew", + "zmdjoyn", + "ldyu", + "htknyv", + "kyoi", + "figckv", + "pmdohn", + "tsigy", + "wiahu", + "nbdvt", + "yfgnojp", + "nfkox", + "eiaxgkd", + "kewlcq", + "emvdryf", + "plukai", + "morsjhe", + "dxzsya", + "mpjkyv", + "vbdxinp", + "hrajfgz", + "ykmj", + "feuvilh", + "kseuri", + "wrvoyud", + "setng", + "vtqc", + "yjrbekw", + "suorjdz", + "hkuovr", + "cnlpr", + "yptrub", + "pwszvm", + "crzjmkh", + "hmcij", + "znhqd", + "ykqclau", + "ldbmju", + "ipmxuz", + "olbm", + "mpifjdx", + "ghzj", + "tposiy", + "nwstryo", + "qrsfybt", + "urgk", + "cisum", + "hzwy", + "ncwv", + "bvnlgr", + "huncbx", + "ychjwdo", + "qpbym", + "oeprmb", + "nlgiamd", + "kynldg", + "ocvjg", + "ijlogbd", + "pinbuoa", + "qfcy", + "oyglfmd", + "ibfkor", + "vnzf", + "axgc", + "voaplxi", + "vbqf", + "edxb", + "lwrhida", + "wsrghd", + "etirwsu", + "gidcqvj", + "rjcaiog", + "tnbldy", + "vnqzfu", + "eacw", + "chvpyom", + "vokeq", + "ghmnawr", + "jseunvr", + "cvnp", + "dayr", + "xraypj", + "xrbyc", + "zmfunal", + "hisl", + "sxch", + "sxwgar", + "yodhx", + "kfzh", + "wxyqkuo", + "nipba", + "fbcao", + "jnlfspo", + "cfqpgw", + "zvml", + "ecpjf", + "qilh", + "xvqfwz", + "lcbhfs", + "feayor", + "ckwtpv", + "dbwev", + "wdfh", + "lrzvg", + "ctiyn", + "qxus", + "crfgm", + "lbvkzr", + "byze", + "ghkc", + "qsvxw", + "wfevxkc", + "kigpnf", + "aefv", + "jywig", + "ylhbt", + "ncoz", + "mnirg", + "tjauzfc", + "piwjx", + "gujbk", + "suwh", + "rufhep", + "sljud", + "uotvs", + "ciebguh", + "txvwmge", + "svij", + "iyqwp", + "ctakzn", + "yauscv", + "arqyp", + "msxlc", + "vigbfu", + "yhzre", + "ftvqwc", + "ijag", + "uvwh", + "vyeu", + "sqdkyw", + "urgqhz", + "rdxlvu", + "cgltpkj", + "xpsd", + "rkic", + "nefw", + "ywvubdo", + "hbziutc", + "kdyponr", + "wocaxyu", + "gncs", + "hpxj", + "pmrnzjt", + "ifcbevd", + "qzvig", + "bwxvod", + "iprm", + "cgohq", + "qjhebdp", + "wfpaiq", + "bktsez", + "ihpjmt", + "msflc", + "ctiq", + "lbtfy", + "fmjwcah", + "gjlm", + "xvkz", + "axfnie", + "etqzi", + "vapc", + "sqwjble", + "epxm", + "yimh", + "bwgyzdk", + "hufg", + "dzahfgt", + "osvzw", + "gmbexq", + "ywniclu", + "tnhqoj", + "sgnyx", + "uzobx", + "wuphtqs", + "xorv", + "fvxydlu", + "mtro", + "xraunwq", + "lgihr", + "roadpjl", + "yfmxhuj", + "pkzo", + "blywdpn", + "ljzh", + "ivmaq", + "ajmg", + "xnlvks", + "jrbevw", + "rtmafes", + "sqmhwy", + "irvmgbd", + "pvlqwtn", + "dhcab", + "xjczs", + "itlvp", + "cktybu", + "gvom", + "npyvrda", + "mkuqby", + "deamz", + "wezful", + "kiodt", + "lwjzk", + "lswij", + "qswkjo", + "wxuo", + "oqns", + "mivue", + "nuqfm", + "xqywzr", + "xjqma", + "ojhki", + "xats", + "vsfw", + "ternp", + "qvtyok", + "hwft", + "njlwq", + "nhjq", + "eoudhv", + "ekcpxv", + "dyapkt", + "gvcudz", + "xkglqnr", + "prmyh", + "dvwnp", + "tgkhelz", + "tzregmq", + "zqxvuob", + "otexdl", + "dbvk", + "cjsbqfi", + "deks", + "wuimgxe", + "rdmhv", + "mtcjvb", + "snlgatk", + "tvrjs", + "vimqlau", + "rtmed", + "iwze", + "zsgh", + "foth", + "bgrq", + "gmtk", + "kecn", + "bngh", + "mdpg", + "tfasdlq", + "ycfj", + "qmbcox", + "mfrh", + "afphmrn", + "domhyur", + "pitsw", + "hmbr", + "cbfe", + "mzqpjfo", + "edkfh", + "cphubrz", + "sdzhle", + "dmncp", + "anqpfg", + "asrv", + "qdjgl", + "djcu", + "ekpzsa", + "nptbzk", + "rasqo", + "oqunatm", + "aqcud", + "honi", + "jobic", + "eckvf", + "bmrk", + "ntbd", + "oyfnce", + "fhxwo", + "wgipreo", + "sbcx", + "fldxv", + "vwxiag", + "psmqvio", + "extcyhi", + "qgdfkip", + "umypr", + "ozql", + "grhztb", + "ufenswp", + "ryjq", + "yrom", + "zimvge", + "sznixtb", + "supodf", + "syblaei", + "vjum", + "nuymhg", + "slgpei", + "xtzflkp", + "ckso", + "bsfxr", + "rxvyp", + "wecbifz", + "qjec", + "wuhedb", + "afsmwh", + "eldrywo", + "lbrf", + "hrsmnb", + "jetuh", + "yvqalnx", + "mevo", + "kszht", + "qyschk", + "cudxn", + "bnuc", + "icpejoy", + "drfsb", + "mwhsulz", + "gmskhn", + "etfg", + "hbceu", + "avcs", + "peulnf", + "smvr", + "xiturv", + "zsqe", + "ghynmav", + "ytlc", + "czkhfnr", + "obqmca", + "qjlxpzd", + "txgs", + "koqawny", + "gdna", + "kfeqcso", + "tfqasu", + "lbgny", + "teszfnh", + "cqusno", + "gsrf", + "idfbrzl", + "xpjbc", + "edsqgcf", + "ftjmrxo", + "boqzty", + "xmcepit", + "ancjmh", + "etqcl", + "uvxley", + "rscflp", + "ivyuh", + "eugfprm", + "ragcw", + "abnyjv", + "udxtiwf", + "lsac", + "jayqsc", + "ltgm", + "bjlxeri", + "xgevw", + "gvtln", + "nepamtq", + "zydl", + "udmhwl", + "suoe", + "tbaohkz", + "zpth", + "zxhk", + "wmpiqc", + "ikdtp", + "lkjmzio", + "mhile", + "xucbq", + "rcsef", + "ewmhs", + "rnbu", + "voauxk", + "brxca", + "orpit", + "dcjbt", + "fslbqz", + "bwly", + "edzns", + "kozl", + "bxoc", + "rlemy", + "ouxe", + "ntairyb", + "wrfxg", + "tejpz", + "ezmfyw", + "rojt", + "txduj", + "hpue", + "owsrq", + "dtpyxbh", + "rqda", + "biafk", + "cxif", + "celrivs", + "zwyjgq", + "eyliqkt", + "kbrs", + "sfxelc", + "bqiuyao", + "iwzrc", + "yambqlu", + "nbtefsv", + "qntyfr", + "vbmnx", + "mtrhy", + "qdlsbny", + "elqsxd", + "odrkv", + "ghwopd", + "tgvl", + "ahjgf", + "ziyhpme", + "gvmso", + "hswa", + "idfetms", + "fmcb", + "rnbvqpe", + "ilyjudf", + "fqvdmnr", + "ixyqfw", + "nedlcw", + "xmdsjy", + "ytje", + "hxgv", + "opwxb", + "hptjfb", + "wdphg", + "dlxp", + "oredsfk", + "uijs", + "sdtvp", + "ojptz", + "ghalws", + "zjqc", + "gnxldk", + "xtepsg", + "flboida", + "kzdb", + "rchmvwb", + "crbafwe", + "ozxuys", + "inup", + "bdxpwn", + "evnihal", + "nsue", + "qmvg", + "libzgf", + "rikuovn", + "fwte", + "fldu", + "ngcqek", + "rnvko", + "knzgeyj", + "egnwmy", + "loyhdvq", + "vmexd", + "rtpibuq", + "rtszqfg", + "vhsbkr", + "jqbmd", + "wvnzyob", + "fqyplu", + "fzwnh", + "cuerg", + "vapy", + "gwclqo", + "gjrmeta", + "ripltcz", + "fxgjq", + "gqfsb", + "yvkupbn", + "lwdsycq", + "wtghnj", + "uzgtbp", + "mwtpo", + "uxsgw", + "yqmnfeb", + "jocif", + "inwq", + "grvue", + "ulyi", + "ukjsfpw", + "maok", + "ncxvzqf", + "gybcn", + "xsdf", + "ydlchfx", + "owga", + "palcdei", + "bakhpn", + "sojkig", + "myxtkv", + "vyshg", + "mdsp", + "qygvoi", + "wxvcaz", + "grvsyep", + "bngfah", + "klgtc", + "zgiyn", + "lmsnru", + "uqjlw", + "peuigsm", + "weaxkr", + "yqnx", + "vwhz", + "tbylz", + "ftzxhb", + "htikpre", + "jswyta", + "wvbned", + "hwpclx", + "ehgrwyv", + "qgvlp", + "ncpvg", + "teqol", + "kbwdjc", + "sgedu", + "jkdq", + "rnwsek", + "ixqvn", + "bnodq", + "ufjcbyg", + "ftxham", + "wiscyu", + "tmiqd", + "jastou", + "jvxowa", + "vqpeibd", + "wrlkcj", + "opexlb", + "deuxpyb", + "iuawmk", + "ekjm", + "hgxiya", + "clbw", + "scwg", + "vzoxc", + "pkszgac", + "fdgjwhe", + "esjbdf", + "zedqhj", + "dbypw", + "knbtay", + "slaoxeg", + "fjrunw", + "mrlazjs", + "ukmfsh", + "heouq", + "ponhg", + "umld", + "kxmbg", + "bvchw", + "rbmsadv", + "vmuc", + "jepy", + "fyjz", + "zqiok", + "crfopx", + "rgjam", + "abslp", + "ebrh", + "kfvyden", + "gemwiqa", + "mpjsnkw", + "hdanck", + "iryd", + "ensali", + "xuzjl", + "aubnzp", + "enfwht", + "ibpz", + "lyavh", + "izrml", + "xpqc", + "hgevib", + "nrowji", + "uhfoyxq", + "bdvs", + "zqsglm", + "wzvcp", + "yfqi", + "wfgvmd", + "oeld", + "mhrjwt", + "nbjcm", + "drkv", + "pqcuel", + "ivzhlsg", + "yjzkp", + "glnhpwe", + "oqjdsrn", + "exijrdb", + "dhiewv", + "xpdqcnl", + "jqnrvoi", + "mynopua", + "rpiwxt", + "ftapzyg", + "aqtch", + "qyfvph", + "hlnv", + "muthjfr", + "yncgs", + "yljmcwg", + "fdezj", + "lqgpiju", + "nwzgp", + "bznq", + "griozw", + "lrkzv", + "xcslv", + "fbgz", + "mrkjzlc", + "kehlim", + "tgyr", + "kchf", + "bcwgo", + "mbijqt", + "zpqi", + "iqjbtg", + "cpotgnf", + "pycbflr", + "kuowvs", + "jubxwa", + "onkt", + "ugnib", + "pfzoqn", + "qapusgy", + "dthv", + "zodagsr", + "moxvepb", + "nspjmy", + "rzbp", + "ighcte", + "cslwoy", + "fxrhmgl", + "wtblmru", + "qjaogub", + "kgdnzxt", + "kbwh", + "fqim", + "ihwekv", + "azyi", + "csjg", + "befovch", + "qdlbe", + "ihkv", + "mihd", + "kmogux", + "exzc", + "wuho", + "sorfc", + "ibvoycg", + "wdxq", + "dgkvax", + "qbwty", + "cbfmg", + "leno", + "jcefkat", + "ibrsctu", + "gtchey", + "sxomdv", + "pkncd", + "jqxpsh", + "urwmbiv", + "syjnzt", + "sdgija", + "bpshzef", + "mtxlhsr", + "uypt", + "safgqd", + "rlhxd", + "xtzb", + "jafr", + "yrtkc", + "wqkrs", + "dsxcm", + "rqgw", + "ozcigdl", + "uzdj", + "rvgek", + "xdoa", + "sucqig", + "sqbrz", + "ojnh", + "nbhvfe", + "auxvg", + "zeqijf", + "gtzoipb", + "jildct", + "odjzmi", + "wxtvgrk", + "acryzfw", + "vwljbn", + "kmcg", + "xjhu", + "cbjt", + "howismv", + "bdlxhs", + "bzqfkys", + "bkhayxt", + "mzrpqo", + "fqnj", + "lpwqfd", + "zvul", + "zamdrgp", + "hiltkdn", + "eruvm", + "tvieajp", + "daskcf", + "jsxqtzp", + "ikwhsy", + "gvimsl", + "fytidp", + "xywrlsj", + "vtwgdih", + "ifqa", + "jmzkn", + "wira", + "pxghr", + "lqzd", + "vwkay", + "pezb", + "wpqvb", + "fsihuv", + "jliawog", + "xgdroi", + "rdohm", + "yxpwko", + "efdrkh", + "tpwvnob", + "erhgyf", + "arvs", + "angz", + "jarx", + "itesnry", + "hsae", + "plexd", + "ljukr", + "fqugyzh", + "bilmoh", + "gicf", + "lgxuzcn", + "nmde", + "dermwb", + "wqrgsx", + "pgmsz", + "qcity", + "ghomr", + "ftlao", + "njizcr", + "jcqmeyp", + "qkhgzx", + "kftc", + "spuk", + "izfae", + "ascynpi", + "ibafkyh", + "bixc", + "aizj", + "tfpnxbr", + "qkgrta", + "vamfjro", + "oufm", + "oukvxq", + "rwhcjtf", + "vrxo", + "nfsyxa", + "joqtfk", + "ydie", + "sqylekh", + "jyxrkh", + "jvknl", + "vdma", + "ozxm", + "eutaibh", + "tnrypcx", + "jkgpo", + "scmrivp", + "lcmpyhd", + "kpesgiy", + "vnfmy", + "jfpqrs", + "thpko", + "cndez", + "krotn", + "xrjyc", + "nhef", + "dilj", + "cyeaqjd", + "wqrsk", + "cdrtp", + "lpnzj", + "cvsit", + "xnohp", + "taip", + "yznesul", + "mvcukpt", + "dmcw", + "tprxjvy", + "sxjg", + "fdnv", + "yctqsab", + "hang", + "tlrd", + "ptzcs", + "camqsi", + "wdmeijc", + "cdhytlk", + "xalovfc", + "otvjb", + "ixpwcfo", + "nhwzbs", + "crldegh", + "lyfxrn", + "ijtye", + "mhwbj", + "xokpg", + "dquwx", + "fhmuysj", + "pzqyrgk", + "wobufvj", + "joicxgu", + "qovbpe", + "yrksoi", + "erfm", + "dlqcjzv", + "invcxt", + "jhznfi", + "gyuak", + "tnvqpwa", + "wexc", + "zteoqg", + "etrkc", + "fivcg", + "isjaeo", + "kgxvpi", + "lbped", + "emaysgl", + "ghxtrn", + "owqkzvc", + "arjt", + "djzfibo", + "lmuhrk", + "rthe", + "dnle", + "xwec", + "wajq", + "vjextbq", + "moqdi", + "pzbf", + "kbyhlte", + "apyl", + "dqaw", + "mdfnchu", + "umqwdbl", + "ovkiqs", + "xutm", + "tvgu", + "houml", + "hmcoaqi", + "nutcopk", + "scnm", + "ngdqfes", + "umojqpx", + "pwzkefc", + "gipcqok", + "kzpuev", + "eunaif", + "lduqn", + "fpknywh", + "dbul", + "fxvsptw", + "uebfclt", + "guyzh", + "xfrhvn", + "qxlae", + "cfuqh", + "jvrclqa", + "xqtari", + "pzbfvsx", + "hzfp", + "ukcnqei", + "phnzo", + "frvzhte", + "novjh", + "eyabhov", + "kcyu", + "jfqwpdi", + "dyxkep", + "aqkyncl", + "vpeikd", + "juaxhzt", + "ydojvb", + "srfevjh", + "mxep", + "uikseq", + "laxotuf", + "motk", + "atfn", + "jitu", + "uvshkej", + "ecjl", + "lmonfis", + "hborpfl", + "pchswjr", + "vltk", + "qinm", + "askrq", + "sagn", + "pzcmnat", + "idorsx", + "vkpyxnu", + "xpklu", + "pmdqj", + "ouixpcq", + "fiolpyu", + "lrxhbf", + "haqon", + "rvsotw", + "rlevo", + "asbg", + "mocwavz", + "wycaojn", + "licso", + "rtkapd", + "bshu", + "dugs", + "pjurhb", + "mrztq", + "zrtle", + "mkhn", + "mobh", + "qfvncwt", + "gwtr", + "vjxomt", + "xvhecif", + "bfekj", + "vxluir", + "tjcykei", + "nkxz", + "legwvy", + "towz", + "nomzbk", + "mvkqrt", + "egfsh", + "dkzp", + "cmnespg", + "qkto", + "upae", + "tekjgvp", + "ftusi", + "tzicgw", + "rbfg", + "igcnlhb", + "oiuhflz", + "taspvb", + "zyemb", + "snjlayi", + "dups", + "xljwqn", + "tqxal", + "hdlwy", + "tigyoa", + "azhlk", + "jhtyn", + "brga", + "owgpq", + "lmesn", + "gfqhymn", + "ochmps", + "jarkswn", + "sefr", + "nqvr", + "xioj", + "qymji", + "gvswq", + "yxoqbf", + "ubadp", + "btvzald", + "bawix", + "ybultn", + "xuol", + "oydbh", + "kpfg", + "jsbxugk", + "ioudj", + "hrfzpno", + "grotzc", + "hzdsba", + "eaqubtc", + "atzx", + "jouxwl", + "gurzywh", + "qljtbh", + "jqcxsi", + "yiucvj", + "dhzui", + "pbfn", + "wuepmz", + "akqvo", + "vaoeu", + "cfvghkw", + "evnhjtq", + "knha", + "beil", + "vgdu", + "eobxr", + "psjad", + "zobtwfs", + "zvbfl", + "nlraeb", + "osfvx", + "iyat", + "nwgsope", + "qiwlr", + "jepb", + "wesmc", + "khngxr", + "voazpch", + "wsqngl", + "hjxrkpm", + "hblyt", + "uelrd", + "uhjfd", + "baifzt", + "kcnqjx", + "gsmet", + "vkstoq", + "cdrwzl", + "nibzegt", + "npwh", + "omzgnb", + "ukdi", + "kbmjs", + "djhfwo", + "hizoqsr", + "iargf", + "bovd", + "gzvowp", + "zfmdkj", + "helf", + "ejpiuz", + "tbmfdca", + "ykxd", + "xsuzol", + "dgvbtqy", + "eykdfo", + "znbkcej", + "whodeqr", + "cjgiq", + "qxdwnv", + "bkmnrg", + "lmrbtx", + "qhkpsr", + "rtlmih", + "umbpkqg", + "zkitl", + "ncmhw", + "wsmgfb", + "oqbs", + "iqjd", + "ejbrhid", + "kuew", + "eysgrf", + "filmkt", + "upvxita", + "gjks", + "plqb", + "bxjfza", + "azmefhk", + "myjqtik", + "blumhv", + "ubks", + "ubtk", + "fkvsew", + "vckn", + "lfepxma", + "nmklt", + "oedk", + "uwigke", + "mznkorf", + "jqdz", + "jhvrpc", + "xndeuip", + "wjqf", + "tifqg", + "dwylc", + "xwvaul", + "disvpak", + "tmqb", + "kdosj", + "riny", + "jhkyan", + "qzlhvwu", + "vkxyqdg", + "toxbzg", + "fvxgl", + "vkyawu", + "hdul", + "msucjar", + "jskp", + "elahim", + "gxzje", + "uiej", + "mhld", + "xwzla", + "keqm", + "udgbiqe", + "dwez", + "fpjzvea", + "obfv", + "pzybxk", + "ferlsu", + "isfcwx", + "vhiyk", + "gnpsot", + "qcebm", + "mchupq", + "mlrayb", + "hpci", + "mbsjn", + "fcekltw", + "wvbsg", + "nerixma", + "ajrztd", + "xoes", + "bucs", + "ytfem", + "tyampco", + "felp", + "zxhmctr", + "mewnyu", + "zeduirn", + "bnhsplw", + "mihlz", + "afux", + "kfph", + "rzna", + "exqlatw", + "zhqbwgx", + "uqtp", + "sdzhgbf", + "zxuo", + "vaus", + "jynkrs", + "ewmaxo", + "liquve", + "uakf", + "etoiz", + "thvs", + "ilhvx", + "whkfbui", + "caqtjf", + "yexg", + "nwdo", + "yudjnf", + "qmjy", + "kvegq", + "zutv", + "anlz", + "mbxuyj", + "elxbh", + "nljdt", + "vzkcrl", + "bvirdq", + "cqzjmbh", + "hjtb", + "mylbwx", + "agzvums", + "whamf", + "exjpwr", + "mvxq", + "socfmvk", + "xzsyogi", + "fbvxd", + "lchsfv", + "jhmb", + "hrejlxg", + "vuie", + "cjnsif", + "becv", + "kljuqwh", + "udlmhf", + "jsrxm", + "spobq", + "jcnlsug", + "lizbyan", + "jhgcp", + "mghe", + "gpklbq", + "ezxod", + "kdnjy", + "fepl", + "mjdz", + "ryogjt", + "isxneg", + "yxfts", + "bvctxe", + "xnbej", + "rutgbql", + "ctwdu", + "bcrvyx", + "ritvywa", + "ncmdau", + "jyitq", + "sxyrhpj", + "dbvsu", + "yhsgp", + "psfba", + "nbfj", + "pdjgnlu", + "pzihkue", + "tmplu", + "icfo", + "gexjtho", + "pbakhfy", + "abhq", + "ibszjyh", + "vhum", + "tvqknx", + "tlkbwsd", + "sjod", + "xhcm", + "qupaby", + "oawm", + "ybvlsx", + "lxzaybv", + "upxdagr", + "rpfkyc", + "sheib", + "oigpy", + "zvdsltu", + "ysdtra", + "njspfc", + "bofjktv", + "kqpgyo", + "lsiox", + "dlrfk", + "plit", + "bksoh", + "jvayz", + "lnpmskd", + "fdqc", + "glytbsx", + "ohxkvnt", + "mbkqifz", + "kdova", + "udjbftc", + "iynqrkb", + "wgzhxdi", + "ixwo", + "mefhbt", + "xlfjspr", + "irkx", + "ortm", + "neiz", + "qome", + "kmujs", + "qeyfxs", + "gvtxylp", + "ckao", + "kwypv", + "dpwj", + "afwopdv", + "zbpcgon", + "iglvd", + "aknyuti", + "xuwe", + "twrh", + "rwxjbp", + "yxdje", + "xbvdam", + "cbxkuql", + "iabfyng", + "zura", + "jmtpqu", + "ijmbf", + "yjeqrcd", + "iefsrj", + "iuym", + "zmoin", + "vazhrw", + "uvhqi", + "cgmtey", + "stgdk", + "wyntg", + "ophurxv", + "tgmpqzh", + "vsmowur", + "zcpv", + "xcesau", + "oasepyn", + "xehpbim", + "hbsx", + "lnjagm", + "zhmdf", + "xflzjvs", + "xdbkmsg", + "hasrq", + "pehdu", + "btfpy", + "gakzms", + "fcmz", + "ngefwcz", + "ikve", + "oaslxb", + "perhsnm", + "jnmw", + "pzjf", + "cxsn", + "dqhfmty", + "qxkp", + "zrwdxnq", + "ochrl", + "lkzerf", + "oyzh", + "idps", + "nlokymg", + "yfkbeta", + "uwje", + "mxsdyo", + "citoj", + "aejbwqf", + "hisqu", + "lkyzdxe", + "pajb", + "iwhc", + "rwqcil", + "eawb", + "ultmjk", + "muxwhfc", + "riju", + "suoa", + "njomsg", + "leczqw", + "aqplrie", + "iytbo", + "hodkwr", + "pbsyg", + "dqewxh", + "mghsktz", + "ujoz", + "ritown", + "qtvxo", + "lgzdrsm", + "vxrd", + "dswmae", + "njhc", + "dwxblq", + "xlkua", + "xyufs", + "hnvslx", + "kwilsgd", + "ytgnafh", + "nwgz", + "ntrgajc", + "txjsolw", + "vpwn", + "kbdc", + "ezdomti", + "ingsjfd", + "qswrgyb", + "yuowh", + "ermq", + "tmnglfq", + "rqtk", + "vpxhsu", + "haxstdi", + "uaztry", + "spewjco", + "kygfx", + "vlqf", + "iawrzmx", + "cpdl", + "ihkvbwe", + "zifreh", + "rubha", + "gwnj", + "knqw", + "wophiex", + "tflhd", + "kqedufa", + "lqob", + "psfv", + "heqynzo", + "syrd", + "iulhk", + "urhv", + "ehkxqb", + "qzhl", + "nbmorjk", + "lctapr", + "hsvfwe", + "mzusn", + "hydx", + "tbde", + "mjftbwp", + "ihozl", + "vmynok", + "fhymndx", + "vqnsa", + "epdlmb", + "dhmtzxi", + "ihskbn", + "wdxspf", + "xmviau", + "igatq", + "gjlu", + "fgzrshn", + "nqyb", + "hmexztw", + "qgckjbo", + "iwufl", + "qgtywu", + "nlfjahy", + "vqjbsy", + "qwdn", + "nhqli", + "fqco", + "okntmsw", + "zfcotae", + "xtnm", + "tnarg", + "afpujm", + "iypx", + "kvohf", + "ohbzrnc", + "djvos", + "ibehw", + "focy", + "smcqjh", + "mfeiqhy", + "ftugmh", + "wadlq", + "aworlp", + "qwxu", + "gihm", + "qnivokc", + "hjsaft", + "pxtzgc", + "uqbexj", + "hdyl", + "kavmpxl", + "wbfpg", + "qewf", + "bvkj", + "ebkuyt", + "cspi", + "pnog", + "yzwcolv", + "hygbjl", + "aqpvzny", + "vdski", + "yqwd", + "inelr", + "srcutxb", + "sfbri", + "yrpd", + "xobuc", + "vpqeybs", + "shbc", + "vpox", + "fvoie", + "afrq", + "wila", + "knmr", + "ybvpoh", + "xrinel", + "gzqjrt", + "axzfin", + "cvbhsl", + "vrodft", + "rbxfzj", + "zwgnm", + "nkyrqi", + "mebgfzi", + "woxlhae", + "yqbtr", + "kxto", + "wzjrt", + "uadlnok", + "ibqd", + "kibvng", + "togeunm", + "mcjryup", + "fzvcnmu", + "qlzfeui", + "zyel", + "xeuvgma", + "rapiox", + "bgpxtk", + "xipz", + "zcujdp", + "ypla", + "vwmkrc", + "axoutv", + "muhrpsv", + "abpt", + "fckj", + "mqclnjg", + "bjglhd", + "aikcpol", + "zxfduy", + "uinfgxv", + "xtlybho", + "eahlf", + "pekuadb", + "iweocz", + "nuwhdf", + "lgrmeqh", + "reudj", + "tkxed", + "yxsapuq", + "cjdurh", + "aqdwl", + "srxwgu", + "droi", + "ekuxg", + "rszhq", + "ebmo", + "rjvey", + "hdjozwf", + "bcsweh", + "fpjn", + "etbz", + "fjacv", + "jbveh", + "lxunh", + "gbldewa", + "blzcjx", + "rzpomys", + "kfgxc", + "pxkhr", + "zcianh", + "kjrcnh", + "nvwm", + "jnaicz", + "vfptb", + "oszb", + "eypsxfc", + "spdu", + "zwqver", + "umwbaz", + "xnvgqd", + "bifo", + "qhedgn", + "teybiz", + "fhpkaxy", + "stuibph", + "yslkrt", + "tancmzk", + "wapq", + "dsabhzu", + "whzdbec", + "vpqhi", + "bnfglwa", + "fmnt", + "ftcrvwe", + "hvwmlap", + "mgtal", + "imrtgzw", + "lpidm", + "bpeh", + "eshdfw", + "khnw", + "nmdf", + "tplm", + "ikwub", + "ngklb", + "aium", + "odcrmj", + "prbqscy", + "klwiuej", + "vmgrn", + "ushvebz", + "wrypes", + "umotn", + "rkogbd", + "xpbg", + "mvqwke", + "mzvibf", + "hyfxzt", + "hgktiz", + "ftdn", + "vkwsge", + "aubfq", + "gqhoalu", + "qyekd", + "emvrf", + "tijdqu", + "rjhnu", + "nzwjq", + "euaqj", + "ceqxkaw", + "odzyi", + "cdqawl", + "prmelzk", + "xzaulf", + "gozi", + "eqxobgl", + "jpgzeqk", + "acwntuf", + "bysm", + "orfv", + "yohmnp", + "bcfdz", + "jbtsi", + "jizeoy", + "glfxm", + "jsbzavo", + "vukyz", + "ugiq", + "pnetv", + "ghkvple", + "gbyfax", + "ysitob", + "pgcxvs", + "urphvb", + "lbuygpz", + "tpigy", + "uect", + "xgblz", + "ulam", + "agceplb", + "mnbwf", + "nxwgsf", + "emduc", + "pmjc", + "fhnoj", + "rpmhnsv", + "xgmyj", + "btmqa", + "gjruqin", + "ogid", + "laikxrd", + "qwsank", + "dubqg", + "fydxr", + "ptdgrs", + "pejt", + "qxyrvwg", + "lifsup", + "klxa", + "arzehyg", + "sqfwx", + "wsqkodb", + "brhif", + "oygpaz", + "hskay", + "rebz", + "bnuowy", + "yobr", + "pkyv", + "gcmyoab", + "jcoeuaq", + "jszwofk", + "oiydq", + "olitak", + "krjlpuh", + "vhoa", + "xqez", + "ndlpzow", + "cervb", + "rcao", + "yznlfi", + "jravh", + "ulwkjm", + "iqzmjs", + "evqmp", + "xglo", + "xwtfy", + "fkyc", + "rfevctw", + "flpdbwk", + "olyi", + "jrwxb", + "ibwcdo", + "caypfqn", + "hria", + "nwval", + "zvrj", + "rjszevh", + "ozrsq", + "zdeln", + "uzns", + "mpwazgd", + "gstdpvn", + "jgcsq", + "ogpa", + "neod", + "twdyuxq", + "cyrwztk", + "jeoiv", + "bjrq", + "jhyndk", + "anbdgs", + "rlwso", + "pxtyofn", + "skrhdy", + "kawxmr", + "npzfklw", + "hknajlf", + "fmihy", + "qfmoelg", + "wjaezv", + "cvhdx", + "udvsrwk", + "jtscehx", + "unzwch", + "akqb", + "xzvhbj", + "dlmqh", + "ucza", + "jqprb", + "jewkt", + "ovgqxs", + "grcwf", + "szir", + "xlsoaki", + "kmey", + "erfmotg", + "pqwkf", + "nekiha", + "nfkrc", + "mboze", + "vibktf", + "zbde", + "gikv", + "jedxp", + "gidcf", + "lvdrfgo", + "qivc", + "zxdvpgb", + "avmf", + "izbwyfe", + "ywsq", + "syote", + "dcvj", + "iuysc", + "yfdj", + "irkgh", + "ghwni", + "bndf", + "bkciq", + "jqmpts", + "ejcqyi", + "thfrcu", + "igedt", + "xtzrclu", + "shxdal", + "wuvsq", + "ldmcfus", + "ymig", + "krxtj", + "bkwu", + "irohk", + "pvrsaq", + "kyht", + "qcjhs", + "ftjyne", + "kcnyle", + "nkyb", + "iasjz", + "dnefwt", + "befh", + "vnsiqyb", + "gqjcs", + "bvmxfja", + "arftxny", + "bwaqxcl", + "hyiulo", + "mczp", + "izmy", + "ouwvns", + "ndmub", + "mvlai", + "drmygk", + "vbxaw", + "hmcjp", + "hrlg", + "ckelyi", + "ajcng", + "chdye", + "fiemyg", + "trby", + "woqd", + "huwxkt", + "lhjqa", + "qsbnup", + "dmvx", + "ejho", + "haeg", + "lhmcwfd", + "lvjtuf", + "yzubv", + "uwjfmi", + "femluxa", + "wbhkumg", + "ylptdoi", + "bstqeg", + "atzcxu", + "wftas", + "ijzfmqe", + "ciawvdk", + "laifjk", + "ftbxj", + "nblgcxw", + "vpwo", + "kjnviw", + "zicg", + "fdes", + "khslwro", + "evpk", + "muzd", + "emhd", + "vblfxzs", + "vkewug", + "msncrav", + "malcwko", + "ozlti", + "mfdpse", + "vpgkc", + "nzrmgs", + "zbdupy", + "vsnmy", + "ugzhp", + "sltwvd", + "yxbg", + "wvfipx", + "pyejliv", + "cojghsr", + "kquwbr", + "ogijk", + "chkzo", + "sjyoql", + "gesx", + "ulend", + "vcxwkz", + "lxiajh", + "znxqgtm", + "fnpr", + "ucdw", + "hfnrpu", + "xyqc", + "fkyha", + "lpui", + "nldghr", + "ntouwrd", + "tumvhdy", + "yhmd", + "twubix", + "wderq", + "wlnu", + "kuwcxnb", + "hcdt", + "jofmd", + "hjigopr", + "mevna", + "rbfni", + "cjfonp", + "ncfepy", + "nviodr", + "zyef", + "jyim", + "zifld", + "wfmt", + "tdyioe", + "bsciy", + "yznk", + "xzla", + "nlgm", + "gpes", + "libxqrw", + "tczego", + "hyqpcm", + "paoezq", + "mgotead", + "lkydsi", + "hekz", + "cbna", + "klthy", + "acvjzrk", + "eosritk", + "qfezp", + "gqus", + "zhon", + "vundyo", + "nkhbwt", + "qunbvl", + "tdirl", + "onhemx", + "zqox", + "hlda", + "riwtm", + "ywhlrf", + "ekopqji", + "cztpnk", + "tkirod", + "mjsu", + "lzxr", + "zjgickn", + "vtrmax", + "hkntfol", + "phucz", + "ivbql", + "oidm", + "eqmjwsv", + "qcsw", + "ptbceif", + "dzui", + "cveolu", + "rpwlbum", + "ofgbucl", + "omueqc", + "gcxv", + "iajlrnf", + "fsqojg", + "jginkoe", + "xmlgcy", + "phzjrv", + "qncaz", + "anrdsxv", + "iluvb", + "thqrvd", + "msharf", + "xbuzp", + "fyaleh", + "ocsx", + "hqylaj", + "zbhjy", + "tnzslb", + "kgwtmin", + "ohvufn", + "uridjg", + "ehnbt", + "kbcwjo", + "bwerz", + "vnihgaf", + "mdcwux", + "qreowly", + "iteuxjg", + "uztgis", + "gcbplk", + "znyak", + "oxhd", + "dohuq", + "xjfbzp", + "hdtw", + "rpmvzc", + "ojcher", + "upaszqf", + "zose", + "puryvf", + "tupinj", + "mspxgy", + "apbvkg", + "wcosy", + "siud", + "opdi", + "bdjh", + "zmeqi", + "bfcod", + "psiokq", + "mplfx", + "pvmho", + "qrkijp", + "frjm", + "ogpnetk", + "hmcujtf", + "qtsvk", + "njsam", + "oiaeqn", + "cfxaokz", + "vlseb", + "bjkstoy", + "eohmbd", + "jien", + "ndamsb", + "qofeidn", + "kgxfu", + "xwgyda", + "stxkcba", + "tjops", + "zwxq", + "rmhe", + "wbvczxn", + "fpbnlqz", + "pcne", + "rxou", + "vxwrbfh", + "tqxklsf", + "pnyg", + "waxhory", + "tegkd", + "pfhwuge", + "faktom", + "dklogas", + "jwhpfx", + "jfizh", + "lmfpg", + "tyfxsv", + "yeotb", + "wjrctud", + "xqdaf", + "dkilvyn", + "ghme", + "ywaf", + "rkpcnt", + "jlgvbh", + "ygei", + "mzarwhe", + "muqjfk", + "lwvcxb", + "lave", + "cnzowup", + "xyeph", + "yftz", + "kyruljg", + "hpdk", + "qangsew", + "ozfxe", + "wgnjicb", + "nroq", + "ibxvzcw", + "nuceqjr", + "mxia", + "jorhyap", + "qkmwa", + "btywsrk", + "yxpfsq", + "ruqgv", + "nqyctzw", + "fgxsovp", + "bjuzchx", + "wphify", + "ovmn", + "oifscw", + "ksujtbd", + "xpbo", + "npxj", + "vlxbd", + "ocar", + "abgytmr", + "peymfuv", + "iewzyub", + "rthegdj", + "elhvbw", + "oaups", + "ltuqwb", + "ademoyp", + "zofp", + "ebvmq", + "vhtefyx", + "uhwzv", + "uwtvrk", + "isehvjd", + "yvgijs", + "hxiucvn", + "dfhpbqw", + "bjif", + "lxymsb", + "eavkohx", + "avjpx", + "bdgunw", + "vbnydj", + "tcgdnzm", + "kpzgv", + "otwy", + "nabme", + "hrjzty", + "lrtfvb", + "rvjpemw", + "agfiy", + "klpishn", + "uqkznt", + "afotk", + "cfwh", + "noefyv", + "xpwah", + "nrci", + "lxjoeg", + "dhlagz", + "khrbg", + "lgrc", + "nkseaiw", + "xftk", + "lvqrj", + "cahx", + "pahry", + "lqky", + "erjola", + "hwzp", + "zswqdt", + "fjirml", + "gianko", + "vobkwd", + "uyhnfxr", + "vaqtso", + "tvlyfg", + "zkox", + "puqkgc", + "fmvzoyh", + "jrlzwk", + "rjnghd", + "eaodr", + "ewgar", + "vmbsgf", + "cebk", + "hcvjkqg", + "upawyi", + "vybrihc", + "sulqd", + "jziukp", + "bsjiy", + "tkwfy", + "gkau", + "afklim", + "imsqv", + "kcthus", + "ixpjb", + "udtj", + "ienkr", + "ndxy", + "tdyhb", + "anqpbk", + "wixsn", + "pozid", + "fegri", + "oxnrch", + "lopy", + "oudtz", + "xpisbfk", + "ulqr", + "esldczj", + "usdkoyg", + "lkjbp", + "yqsw", + "ptox", + "kbxce", + "guhdjei", + "qmgid", + "yuic", + "turnof", + "kcqt", + "kirbta", + "pavfhx", + "jpgk", + "txmj", + "jbktq", + "kqbwfyv", + "qrjsz", + "hiqbkye", + "yszdx", + "qruzjev", + "qexgfzk", + "sqkld", + "jsza", + "lyjedz", + "ubmhnlv", + "cogf", + "gamjedv", + "yezsoi", + "nvedhgk", + "mvwg", + "xqvt", + "kwbalcs", + "opex", + "iynvbgq", + "ywkub", + "yovf", + "ihktcfy", + "kenahw", + "pjksgfw", + "lumrd", + "wkdlvo", + "ysqg", + "oner", + "clrhsv", + "obqjdzy", + "yvfgcem", + "qrhzoek", + "zrlce", + "bicrosk", + "qmvjs", + "gqofvry", + "lkdj", + "mfyrx", + "usirhlz", + "apkqew", + "blpigt", + "bjwrda", + "ogvi", + "fukypt", + "dcrakze", + "btosle", + "fazc", + "bxkjaeg", + "bkua", + "ucswa", + "zbmketh", + "nsjk", + "awrxmho", + "psayqj", + "tklyhj", + "zaxc", + "bpzyiq", + "bdvkfuw", + "lcjpq", + "pwqteo", + "maugciv", + "ptodv", + "tdhnaq", + "hkncdp", + "ubxj", + "lgpq", + "ztmf", + "jltgu", + "ifjp", + "hditqp", + "stpvewm", + "riunty", + "latqe", + "lzrto", + "bctzl", + "owalfbe", + "mcnjz", + "iecyd", + "spktl", + "vkcyj", + "sobtr", + "uqkcxzn", + "njkmt", + "nahvo", + "guvsdky", + "srfeobu", + "sczqh", + "ukvl", + "uvpct", + "gbor", + "glxjm", + "rnje", + "bvfuch", + "mqaz", + "dxryhm", + "otxc", + "egpmbl", + "plbsf", + "glwcmai", + "lpwyxu", + "bmkv", + "sljyf", + "xdgkjh", + "ybaofuw", + "hzmbngt", + "xpdmfs", + "ksyinj", + "jptcbqa", + "snbjzea", + "gjcxpe", + "ofnw", + "oxrtfwg", + "cpvhox", + "dgsu", + "swiy", + "odykebu", + "cubg", + "yovfx", + "eprqsz", + "rvkpay", + "kwju", + "opcfkb", + "zaqwxv", + "mkeo", + "wypvaue", + "rufbm", + "onpb", + "fwgtbiu", + "rwtcnvi", + "bqzxsd", + "slix", + "ifbmk", + "opxjtz", + "xzvdr", + "zjvr", + "hrazwnl", + "nelu", + "svuqg", + "cyxhemq", + "sefcloq", + "czig", + "hlaxeik", + "ahjdyo", + "ilhfrtk", + "iqwvy", + "rwbmx", + "rfyxeji", + "pjys", + "ocufk", + "gpkm", + "bqhtox", + "emlq", + "umrazl", + "khyqtvi", + "hbpo", + "yopg", + "sviycq", + "gprk", + "xucnav", + "hdtvjfb", + "nedb", + "qdmpy", + "neulsz", + "edqlhsf", + "cgth", + "phvo", + "rojgwqk", + "tubszpy", + "xdeqk", + "bxamyr", + "igor", + "vghkm", + "shlbrgm", + "klnjh", + "gensva", + "apgduj", + "fhwblvk", + "amwz", + "rmoyh", + "czsftbj", + "bufcj", + "ojqy", + "iymxuc", + "plgutn", + "wrkjluy", + "dmor", + "alocpb", + "uhsznw", + "opdls", + "mzhalfp", + "buqn", + "bycofdp", + "jqzerv", + "qjgl", + "sevky", + "zpxy", + "udpbwz", + "ghkqw", + "mxyu", + "fbcmra", + "kqctgb", + "oxhp", + "vmtfopl", + "bzcjsqm", + "usjoim", + "sgofxq", + "anlevk", + "wkrq", + "dqrxvsa", + "tenuvb", + "eycx", + "lcywk", + "fpzuber", + "fcan", + "lpufyqz", + "qwolkg", + "axgecy", + "djke", + "hinp", + "fjnzx", + "qebk", + "oijaqdw", + "efpat", + "ivxlf", + "fkejc", + "pfnxiaz", + "saqlxj", + "rsmwia", + "moubs", + "eblcr", + "pjaz", + "ojgz", + "biuzx", + "zieomqk", + "aytp", + "jhdriv", + "rmkinpd", + "ecrnjl", + "huvt", + "jgkzhsq", + "ipldrxj", + "yltj", + "fscm", + "febkw", + "vygzpnq", + "yqulpmf", + "dlwt", + "tkuf", + "mfua", + "zcsx", + "adzekr", + "zefjo", + "edbgkqf", + "bnezg", + "vgxnmc", + "tumfkpz", + "rshfjkn", + "aygw", + "yizgtcw", + "bfpi", + "jetfqn", + "cisp", + "vywgsjr", + "idpsbg", + "arqmwu", + "ariyo", + "dmta", + "srjabf", + "wmrijls", + "hlizmyb", + "mbewtzf", + "xruaqwd", + "idqpo", + "xhft", + "vkuyh", + "wnxji", + "ahet", + "fgdwohr", + "lrwsz", + "ctalk", + "tklmq", + "cmewg", + "anuzs", + "hpem", + "vzsbc", + "oyhkf", + "kbtya", + "ablmg", + "nztqdsu", + "reckwo", + "vplni", + "epsk", + "ysihe", + "jzygmqp", + "sdejip", + "pvjgc", + "wcoyh", + "noyc", + "abygzil", + "qjuth", + "nzjs", + "ufdi", + "ghuqaj", + "spnifmv", + "orhuad", + "jvdnmp", + "ezondlk", + "uycr", + "oyedck", + "edps", + "fksecl", + "futghkz", + "pivty", + "qfdrxsp", + "dbmzkn", + "ktol", + "enta", + "zpqm", + "yfmba", + "gkqr", + "askromg", + "tsalv", + "fnyvom", + "xazldsp", + "cdxivhr", + "rhowg", + "zjrl", + "nyfqusz", + "gelik", + "nxti", + "bkviyt", + "erxaiu", + "pjbihkw", + "yqrxn", + "qsiugw", + "enux", + "jbrsg", + "ugidx", + "lncedps", + "tjfd", + "grcntf", + "vkqw", + "vfplrwo", + "apuj", + "wovek", + "iqabwh", + "uiyl", + "fiwhplr", + "erlavpm", + "lrnzmt", + "bslta", + "hnxlyq", + "xilc", + "ncamgl", + "udkz", + "arxfdn", + "bxawts", + "xhylgm", + "uiczygs", + "kqpw", + "umbgorj", + "rfqd", + "jeuzwhy", + "fwpuom", + "wpabf", + "qsbong", + "cowyibg", + "yifn", + "slhno", + "cyvspal", + "uowi", + "nlrm", + "siqc", + "puxic", + "owlxu", + "vdgkayo", + "zbufmy", + "rjgkl", + "xvhlye", + "pcvdig", + "qkupv", + "maepl", + "gpsnqry", + "ifkmz", + "yvmws", + "ylmjcfv", + "sfeu", + "qhvjzu", + "rqajsbc", + "wuny", + "ubowtfa", + "mdbwzu", + "cobvsik", + "fzmwiau", + "kobmjs", + "kafjm", + "sletrma", + "rtmcf", + "gesbk", + "ywjel", + "pnhmru", + "swemqbv", + "poms", + "lbgutm", + "gdlc", + "hrkz", + "lvhmirt", + "rmsduzg", + "wnahblm", + "oydatg", + "ctouzxb", + "ihst", + "okaqpd", + "tspngzu", + "fptskbu", + "mkpz", + "ajok", + "zqaukl", + "ryewtj", + "wtlc", + "ausxqze", + "aqhpgk", + "dxeg", + "sfbjkqx", + "wqifn", + "hcln", + "tmhkr", + "vuyhp", + "hdyjwvl", + "gqyctn", + "fzjoy", + "rayjxpg", + "khfilqu", + "tofbgsp", + "jhznaqo", + "zeokx", + "jlckr", + "cmtjf", + "fjxkym", + "qougns", + "wjqzxsu", + "ymwdfk", + "jpkegxi", + "naickp", + "sltjau", + "hibjcf", + "iagxbm", + "dqikh", + "ceuov", + "qknt", + "ksyvwpb", + "usxd", + "ujzefi", + "wxvqc", + "tnjmo", + "cwkhn", + "yrfmenz", + "mfirxbg", + "luvtpfh", + "gmrlk", + "blkjcr", + "swvmler", + "dysn", + "aezcb", + "cmvx", + "gfimshd", + "jhfwd", + "trclnj", + "xpwjrnc", + "uvhzkjy", + "vigr", + "qmtrg", + "ehzpsy", + "csubwik", + "qjezlu", + "yocx", + "pcyb", + "oqhg", + "xdlqanm", + "mznjepf", + "qjgwtn", + "qbtlcgu", + "xfpzt", + "uwgvx", + "amrtcuf", + "qrdw", + "doxjkl", + "lgtcxnj", + "zacwyi", + "cmdep", + "nsclzgf", + "dikmvl", + "ujgkf", + "lkby", + "pldusn", + "wxdbpjs", + "jzpsiht", + "ievzd", + "ajbik", + "vszale", + "zuvbxly", + "qunel", + "shbj", + "lkvhg", + "pcntujd", + "pvwc", + "emzjufn", + "kpxalr", + "zqlrh", + "vybnuw", + "ojpbwv", + "aurptc", + "awbivrz", + "tkbrafw", + "ughyd", + "vjleyhq", + "bthpuoi", + "dlijs", + "bpwj", + "kdbje", + "xobiw", + "vtwi", + "nuqe", + "hymnb", + "obzactu", + "kgot", + "fwre", + "nwadt", + "swjimbk", + "eijvdy", + "ktil", + "njiosh", + "abdcgni", + "pbemlzy", + "yojq", + "iaso", + "hruyes", + "qfksic", + "ptidk", + "qcif", + "pasleok", + "cqsfuy", + "hgvpslz", + "ymhqdro", + "tscbnpy", + "hwegp", + "spicw", + "rjty", + "kjyhnq", + "xcns", + "imqrcvy", + "ckosi", + "jrvsy", + "kugb", + "orpwyq", + "jxzpe", + "hqgn", + "yvrkw", + "phkaid", + "fvkzqe", + "vyaxc", + "xtbmp", + "newb", + "arxfwgi", + "piamefu", + "xsdqnh", + "ykgldr", + "tebc", + "uokhs", + "ergianx", + "ktypzs", + "cqtk", + "bgqmx", + "xckzhp", + "dvaslbu", + "kjent", + "czatm", + "xdntrfm", + "ohlbnts", + "phnfi", + "rlmpvt", + "rxktwb", + "itgrsvk", + "qfokum", + "gwrfnma", + "fbphduo", + "eoqw", + "vdes", + "ofgm", + "gqzmkse", + "xmfpj", + "zlvd", + "kctvznd", + "ekpjy", + "ikcjpzg", + "mjrq", + "kzqv", + "jpcotai", + "ktdepwu", + "uwkqlr", + "tdjom", + "fupkj", + "eizqt", + "jmvsuex", + "chvpfk", + "htwulp", + "iojhla", + "lsbp", + "itxoe", + "vqdh", + "svebld", + "ejpt", + "qgfa", + "dxopg", + "bydzsa", + "teakh", + "buqp", + "swmtvq", + "dxhf", + "efgxjuz", + "wdjmlhx", + "ytvmiqa", + "ghvmt", + "hzacoy", + "ubdfp", + "rsmt", + "sydbez", + "hoeyvj", + "bndu", + "fpqdkvx", + "kwosu", + "umxwdrg", + "qkoi", + "ylakoif", + "ogkjvtp", + "npqm", + "isbrvft", + "tiwzoc", + "mzvftwu", + "kxas", + "lksr", + "mvtish", + "otclkyq", + "ygma", + "riauhpj", + "bymow", + "xcwq", + "vagpnj", + "ehajkw", + "feducm", + "bgro", + "qbdaj", + "oensb", + "wucad", + "jxdkns", + "exwsi", + "zrjuica", + "pijhkcn", + "pgoras", + "ornbt", + "ntqi", + "wcgo", + "plzg", + "zlpfx", + "mnjsh", + "mhvzdaf", + "jdghmzw", + "hysxv", + "lrwe", + "ludx", + "gbwmr", + "hjsbdy", + "meldaq", + "cxymnua", + "rvqxze", + "nodl", + "pkstflm", + "eudw", + "sjyqprk", + "yhove", + "nxli", + "urpzgm", + "ovneqg", + "quvw", + "khzjs", + "kyoib", + "mhwr", + "kylzw", + "easf", + "wbthqo", + "smkwpac", + "toklnrp", + "gmzfqds", + "bdzcj", + "sekr", + "abmr", + "ygmop", + "niwtgeq", + "stocmdb", + "oxfsheu", + "wfrxqil", + "jtpc", + "zbciln", + "npjigt", + "jobnlmu", + "kmpavsi", + "gfad", + "xgvulek", + "ptzkgb", + "xwyuis", + "rozmjy", + "smkiw", + "zcns", + "fczar", + "pisurv", + "lyutcxh", + "crgyp", + "gxuanzs", + "pkgs", + "himvrtc", + "jaoq", + "siwdrfq", + "xref", + "onzg", + "vqlzgp", + "dfnb", + "hckai", + "thgdws", + "xqdfclz", + "vsouzpe", + "nvmawf", + "vxgoyni", + "cwzdeqi", + "opnqk", + "kvtwp", + "ptxc", + "szkjvgb", + "hkwdinr", + "krwuoq", + "nqhcsx", + "kxmg", + "cbutw", + "dwhgrl", + "iroqpsh", + "eobt", + "yvtjkno", + "wdnsgik", + "fmyr", + "huto", + "duqv", + "qgev", + "wlus", + "zfwu", + "atfubx", + "erlnhos", + "rfvpx", + "adol", + "megkrdh", + "qdpc", + "gpyzmai", + "omgerup", + "iploht", + "dwstl", + "darhl", + "stveo", + "jlnqu", + "bxar", + "uxflmr", + "votfyru", + "ihlgvda", + "elajdb", + "jcmid", + "cgnsl", + "meic", + "ugnkp", + "jkibogq", + "pygtl", + "gpjzlve", + "ehsnuc", + "tsanm", + "yhro", + "vhti", + "omqayl", + "kpvq", + "ikrbdf", + "btci", + "amblz", + "gxvlun", + "kympoij", + "jpsk", + "kznovt", + "dgjbhtn", + "wzfc", + "hnayqp", + "ngsatj", + "ozji", + "vhsexb", + "tvyoef", + "edco", + "bugrk", + "nbztqdm", + "zcbhv", + "vxdrq", + "hygc", + "qoztc", + "ewrcdh", + "mjdy", + "mkqiur", + "atkg", + "pzwt", + "tpuay", + "kdhn", + "hdpqosm", + "evwxkj", + "axvhqd", + "ykxptz", + "zfmli", + "atom", + "xwvltas", + "fudorwg", + "vmztudb", + "dbtjum", + "hixub", + "jsitu", + "ezrmo", + "hgzrw", + "ghaet", + "cuebtig", + "eqoj", + "xuhv", + "xzhnfqi", + "rwgxthq", + "sobped", + "mwrfcql", + "fyid", + "mgtz", + "dmwcp", + "ipqjhrd", + "mfad", + "fogxc", + "mkhi", + "xujcs", + "yegxu", + "zkda", + "fmwlgj", + "chtlg", + "wlrpb", + "rsmfdy", + "drqicmy", + "dnjacew", + "hnlbi", + "dfvuaoc", + "xolfz", + "lwfcjg", + "jtofks", + "xeust", + "lzuwr", + "rwzgj", + "ebxur", + "yczrfp", + "zrhtf", + "bxomezv", + "isqneh", + "spfxvg", + "rczumaw", + "wbndh", + "wxeojd", + "rgpjts", + "xulone", + "umkep", + "lqmifjd", + "nmwz", + "wvhfmo", + "vbexfa", + "gvymlfa", + "wdnlh", + "tdanfjx", + "cbsjz", + "jbfqmw", + "qigwsod", + "pcdg", + "qjpg", + "dbwf", + "rymaopn", + "efpt", + "gkuzs", + "kzamx", + "blzjn", + "lzrty", + "qponav", + "xygdaf", + "wrok", + "ejovxzt", + "efgobts", + "mgbodr", + "rbsupv", + "ydnq", + "emaz", + "olpune", + "rfacenu", + "zqlchaj", + "xvnt", + "ejzgm", + "cmgfqlu", + "cwmqb", + "erjq", + "ihptd", + "brtw", + "znlm", + "jeoqpr", + "ynqhe", + "nvqor", + "orfxmt", + "pszxwv", + "xjon", + "mnazu", + "fbec", + "feviob", + "gfxjdwc", + "iken", + "ndlbu", + "onihev", + "ilspx", + "omft", + "ferbdw", + "hjoet", + "rcvxje", + "xold", + "twqzhj", + "nsczhjm", + "qcpksb", + "wbkvi", + "aldz", + "xeipos", + "wdvzhg", + "ztiuqrd", + "qmjc", + "ihuayo", + "ugnb", + "yvcte", + "xcsjyv", + "nvhudxt", + "avjfi", + "lauvix", + "fzjos", + "zlugk", + "zcneg", + "mzfo", + "lrnty", + "nxdhtow", + "hirc", + "mstz", + "rythfsc", + "fxjhv", + "mpctro", + "oyvihcw", + "wiylpj", + "wgzh", + "cfpodsn", + "skzt", + "vzui", + "jclbmgr", + "hapmnt", + "prkizo", + "aroqhlt", + "rdoab", + "mvweyn", + "ogsh", + "ghdfi", + "ciaz", + "jyex", + "bxlpg", + "jsghx", + "oqaurin", + "agkyo", + "jnsg", + "qlfghj", + "wljdy", + "nqaxpfs", + "dolkh", + "ntuk", + "azkyhx", + "nctrwhi", + "kiwfc", + "ipbtu", + "qywdr", + "oaktv", + "sxdu", + "amukn", + "dtuqygn", + "lsdkycx", + "oahldq", + "mvfb", + "zbnd", + "scmu", + "flek", + "eskrc", + "ksozda", + "btuq", + "xprdf", + "tfpzkhq", + "iwkgs", + "thyg", + "qhjyi", + "dbhwup", + "dzioh", + "zshy", + "boufh", + "hxsiyqr", + "opbam", + "uifcz", + "rhlc", + "iygmtce", + "unsf", + "kogiwx", + "xuporsq", + "zwqftbu", + "mpvlzdc", + "edsjov", + "vtwksco", + "htuajs", + "ebqvtr", + "oprn", + "tjnzu", + "zaxjei", + "wmsxhyl", + "jrfvekb", + "pngd", + "foskhr", + "stev", + "duhyz", + "rvmxwpi", + "gqiodum", + "knlwtc", + "ltbiao", + "njlouep", + "hlmaxqz", + "puflb", + "csaxwu", + "pzgym", + "hksiz", + "yaqxf", + "giqn", + "uhtg", + "mruw", + "qadvs", + "mexv", + "sizojtd", + "pfdew", + "daysfkc", + "wxbdr", + "gfua", + "sxiqfmr", + "ytnzki", + "kptbyo", + "hdeq", + "pxhm", + "dsawir", + "ekpic", + "ktgr", + "pcri", + "ryfid", + "xepr", + "sthrexd", + "hyoquk", + "fzxj", + "infd", + "tgej", + "ezag", + "rwihygd", + "yqhzrd", + "elsugq", + "unag", + "oalcpg", + "winuva", + "dwvqyub", + "upyek", + "saiwg", + "qbau", + "ciab", + "roume", + "wdhgxel", + "vihg", + "dzlau", + "xukt", + "heljwc", + "qefhg", + "pfznxd", + "ytaef", + "kblyc", + "pdzw", + "qkzer", + "qxvrk", + "gvywfta", + "sakjf", + "kwic", + "zwbukg", + "bsrfxn", + "omyxvq", + "kaflqzu", + "uabhqgx", + "uqgoen", + "ohcns", + "vduez", + "lxbjs", + "hlnjc", + "kuxg", + "wenpvu", + "kreapj", + "dpqy", + "oymatn", + "qbvjp", + "bgifrz", + "cpofmnd", + "ghdqz", + "kiyhf", + "buao", + "nqfo", + "pmfhndt", + "xejw", + "xfrilb", + "ywjdzns", + "zrpdo", + "zfkxnab", + "ncykrv", + "fxamc", + "zpkgvwx", + "bdzevw", + "acehgt", + "myvuew", + "pdhen", + "hlayz", + "nhsubmx", + "ofdhjuq", + "rfgz", + "qokxtsb", + "upfx", + "gxludwj", + "ykhwz", + "nfewvcd", + "bnjiwz", + "csrjl", + "fokgy", + "eajqwul", + "pyov", + "kdeiur", + "ndariq", + "jush", + "ncixlkq", + "qkoc", + "elmpdus", + "tkygvm", + "cayhmog", + "ygjs", + "fonr", + "geyrvci", + "psvca", + "hzrkmel", + "vnjcoip", + "fdkru", + "usvdxpa", + "zwnt", + "soul", + "cunw", + "iojqlsf", + "ohjl", + "qgvpck", + "xtucjp", + "leif", + "kopm", + "nxwzu", + "efmiuvx", + "sligtv", + "yoze", + "btogw", + "yswgokr", + "qyio", + "mifru", + "wqdfi", + "vlpiu", + "qrtba", + "lxezw", + "nzsl", + "tdojbzy", + "fwugcm", + "remq", + "dkyqs", + "kqrzbul", + "mrvgl", + "wdig", + "wailze", + "ajowp", + "aiznuv", + "unzie", + "urfmh", + "cywjbau", + "vrjuc", + "fntsidx", + "kachtd", + "gveyc", + "yghnq", + "ghrxd", + "rbnzwsu", + "akbdvc", + "ocsgqe", + "eolrm", + "wplugv", + "cuvqb", + "hwlinrf", + "oqxf", + "prjn", + "xfnp", + "zbxah", + "bwcgi", + "qrixynd", + "saruo", + "iclk", + "ptafqy", + "pgxy", + "gwbus", + "wrziml", + "wqabo", + "oslfcux", + "msjq", + "bdljhwv", + "tfxmd", + "vceyx", + "rcfmai", + "vygdomx", + "xgqpbo", + "tsuvnf", + "rtwfipj", + "usxjym", + "svoaxq", + "bhwsmfl", + "fblng", + "symiw", + "mpxvh", + "ljsf", + "opyicsn", + "sipc", + "tnyh", + "qdochz", + "eson", + "guqmtp", + "yvrl", + "jhymi", + "gvek", + "dmsv", + "vdufs", + "xsvltap", + "qpngbtr", + "ydvsw", + "vebxrpq", + "pgzcsjn", + "kxrueb", + "ponihcb", + "vxudo", + "lcsg", + "ucoe", + "dkamghy", + "apey", + "eabxyd", + "plcgo", + "lqvx", + "kzlgmox", + "bymel", + "madb", + "rmakb", + "ytxcmf", + "lmsyiq", + "jiscgv", + "gimyjh", + "amrktzh", + "zavrg", + "jgiwml", + "cwlungi", + "roqpk", + "szmeq", + "okgzhy", + "opbytga", + "smlvwh", + "feosq", + "qrjbwu", + "lpqjcnb", + "cmstu", + "zkvlqfg", + "gzymei", + "xriuwa", + "hsqy", + "diwnktr", + "fryxozm", + "fpzbwdj", + "zcim", + "gyvdte", + "jbfg", + "erwq", + "pzuylvm", + "enps", + "kutnj", + "bgodhnk", + "uylf", + "purv", + "putnqa", + "bltnfoe", + "nuorm", + "kieuq", + "nvbrzg", + "decpx", + "ycze", + "jtwr", + "ugtle", + "pruycdw", + "kdltcx", + "pyzfa", + "lsac", + "fkxlu", + "isjyh", + "lwsopac", + "ubnm", + "vicmrnj", + "onqtzs", + "ukrwot", + "ihcpjqe", + "wchdfjb", + "ysanklf", + "zcoeixt", + "bkaexl", + "agjod", + "lnydx", + "wxnj", + "dmqbt", + "vzydjh", + "zxlmao", + "vmkp", + "bltrcia", + "oubymig", + "dstz", + "ierdn", + "jsrondu", + "qfirt", + "dzirks", + "qjwri", + "adkytgw", + "vpqbl", + "zmcw", + "jtvz", + "mqihz", + "hqjvlw", + "dlkojab", + "yfej", + "xundj", + "tswj", + "qpruzat", + "lepfz", + "pmnuo", + "gousb", + "eyhoi", + "tuejlzi", + "otvw", + "jdyluc", + "bminwrq", + "blyqd", + "wilbug", + "ndxhtlu", + "mqenubz", + "aphwvr", + "nehwam", + "vmfbps", + "ibvm", + "usjk", + "fpmhzu", + "rkvxcqt", + "iawl", + "iwfgkde", + "eusi", + "ahbgpmc", + "ynrkw", + "kgxmcvt", + "xpag", + "jtqfl", + "envgdrx", + "kceuz", + "fvdtlg", + "sjpon", + "uldyp", + "jbiphzn", + "bwjqxuk", + "kxeh", + "qgbd", + "spjx", + "rgsq", + "usnhtv", + "imtdkcs", + "mpwqj", + "icnrfqe", + "iqcgk", + "eclytg", + "zojh", + "hbncjw", + "recjbap", + "hoed", + "qwkaeni", + "tqskw", + "cndb", + "nzgrhxv", + "rlnudvk", + "awnfis", + "nywtej", + "ejxivrl", + "azfe", + "jcxiy", + "hvypi", + "rscfyed", + "hjfbmgs", + "aclynxe", + "zkoalh", + "zgqvpb", + "xwtfmch", + "likham", + "ualsb", + "xtbom", + "qavj", + "phntqz", + "izlmdw", + "znysl", + "jicm", + "xwumk", + "crnh", + "kwodcl", + "slhgbu", + "qzkym", + "gpzjh", + "wclkt", + "rikvlgw", + "mfvoe", + "ocniy", + "enobl", + "ahxbzd", + "qfmajd", + "obiln", + "scuvne", + "npfs", + "obqmtu", + "qyfp", + "arvh", + "hvdgxjy", + "ikpwr", + "pxld", + "ztfmq", + "crqp", + "yrqt", + "ihbm", + "uxljyo", + "draw", + "fpjdbgx", + "ptyofj", + "cikoz", + "zfluq", + "dqrv", + "yima", + "ehtuoag", + "fxyj", + "hpniu", + "bunhgyf", + "mpzyjo", + "qaobure", + "ecqgxd", + "upoxwds", + "jspkcu", + "lgewus", + "pdqi", + "tovcuyg", + "bryl", + "ugmiv", + "fvmxd", + "kqierh", + "mltn", + "wmpe", + "saev", + "fovm", + "gfsync", + "vdzom", + "litqme", + "ntulr", + "gmzwy", + "eahsu", + "eowfatb", + "hqek", + "zhscm", + "fjhae", + "wiuqcz", + "woshb", + "iqrtnp", + "ncst", + "dhuip", + "tjyb", + "ygvszd", + "iqysv", + "lmykzji", + "pfod", + "vcbdq", + "ygmuf", + "gmwjn", + "kzcajtx", + "znja", + "biefw", + "wkobm", + "xiqbg", + "gqkz", + "hdqept", + "bcmn", + "ngzyac", + "sflg", + "lztvuom", + "miwobg", + "oswtfxc", + "pqwz", + "nvycqh", + "hpdmzbn", + "cblgqkr", + "xjbgch", + "rbedc", + "doeqhfb", + "pjubfkq", + "iyup", + "mqloa", + "jizkxo", + "oysg", + "sfoi", + "azfvjnl", + "zqjrv", + "roaehc", + "gyopj", + "amkwz", + "cxzpml", + "itluxga", + "ybqtna", + "ntbgpur", + "mwzshu", + "bezjwi", + "fera", + "htyrj", + "ltnwbd", + "kgxvypi", + "zubv", + "lkpt", + "gdjq", + "yldep", + "jymg", + "mbzotu", + "wnyjgm", + "arvpjd", + "ugzlx", + "qcmnu", + "rdqew", + "tcgik", + "dyaftp", + "yfjps", + "yuotp", + "pjwnavq", + "imsdf", + "wigxm", + "dlfs", + "mavst", + "jbeo", + "kwagifc", + "sepztbq", + "wfyvhro", + "yhtrgu", + "gxpyjmv", + "yhbcdvi", + "qcpbj", + "tkcre", + "rnpa", + "syiaepf", + "kuem", + "wrvlxy", + "vejlm", + "lpwcbxd", + "ojqwrns", + "xkahdo", + "fovx", + "dcqft", + "sjfke", + "ljgnbds", + "idawstz", + "uwjahxf", + "nitejgx", + "ivpckt", + "bkdj", + "huac", + "ojyal", + "knuryei", + "gwaxiv", + "fcyse", + "symq", + "vxoa", + "yvfu", + "iwnkjh", + "itcvrno", + "raumkg", + "dxgu", + "gxyj", + "qsjdkw", + "cesbq", + "ryktf", + "egqrvf", + "yghwcas", + "slbto", + "ztsujb", + "jdcwl", + "gfant", + "cbxkujf", + "uxtqok", + "sakqwu", + "fmlihwg", + "zxdmw", + "ztgehi", + "xdtvwz", + "tacl", + "fkdnubx", + "tuwxfj", + "keci", + "thudwc", + "tlcqdw", + "gikuqel", + "yutsbfa", + "oyaie", + "nxyfd", + "jpqw", + "firy", + "atvq", + "gcazkdm", + "fnzwila", + "fxovu", + "bsqy", + "pgosxt", + "vafpcke", + "domrfh", + "gyrvuf", + "tgrikfs", + "rsoji", + "uizsthc", + "ughem", + "yuworf", + "xbirmjt", + "rgtb", + "tofuv", + "cfsd", + "zcnkvy", + "wbmteyd", + "cvgfr", + "fxero", + "huryl", + "xmfhdyw", + "bnkliq", + "jxqhf", + "abycdjl", + "jdme", + "lsoxup", + "yxiko", + "lupbd", + "lsfoakg", + "xascole", + "obsex", + "xdgfp", + "cwqk", + "fevw", + "bpcgrlz", + "tjpg", + "inmphd", + "smefct", + "gzyino", + "pjsxdc", + "ixtysf", + "gzulixj", + "pzki", + "sfrizwn", + "kyuf", + "koiyr", + "crtmdiq", + "qejigxf", + "zbufi", + "hblgqac", + "roepkv", + "iave", + "comhzx", + "tyvk", + "aimog", + "swjqrtb", + "znrgu", + "nmzkb", + "lyzdi", + "btsog", + "leifzh", + "gmscz", + "whlox", + "qxkf", + "yaoeh", + "dhex", + "jgzle", + "dcjtwq", + "ncvr", + "gxlutp", + "ncyujeh", + "dhnw", + "awveb", + "mopu", + "grstzu", + "uvygn", + "clgnf", + "oindmw", + "csxbit", + "ifpr", + "blzwvcy", + "hply", + "hrexcdo", + "nthur", + "kzoag", + "zkpen", + "ruyz", + "fjrbwq", + "waupbsi", + "goqiuby", + "jsozu", + "tvbgmn", + "gcvt", + "fgsdmo", + "ehov", + "oicjdhp", + "yfkh", + "qpbjs", + "twleya", + "dlrsi", + "pbqxage", + "hjefb", + "fgkhbc", + "pjbz", + "hxwcumf", + "hqer", + "pawq", + "ydbvxgq", + "poba", + "ymkb", + "npst", + "wsvefml", + "irognmj", + "xsfheq", + "drhcup", + "ojlwiz", + "zcbxyi", + "vqxu", + "cnelwi", + "jsaq", + "pnguy", + "mithlj", + "txeb", + "ysxn", + "fpjo", + "zgrpxsb", + "foyh", + "xnvb", + "dkzilg", + "mayh", + "zqxjnc", + "kjsgqt", + "fhyb", + "ygrpb", + "vnqtkdc", + "tucf", + "zadk", + "qszapbl", + "hiwfb", + "ilxgefm", + "ldjbihz", + "jketnpr", + "lchz", + "knpcyom", + "qjzspu", + "cwydaqe", + "eosb", + "ikpyut", + "bvju", + "yjoa", + "spxc", + "klgynz", + "brfgn", + "zvpygsk", + "epbsxzd", + "mkisjd", + "kuntwm", + "aops", + "gzhxb", + "budcsh", + "drtlhv", + "quxry", + "adlyc", + "folirjc", + "bdfxioh", + "lcyxkjf", + "rgfmi", + "ajodpg", + "jzplfa", + "eotjw", + "xptjk", + "sfjer", + "kephv", + "nxalo", + "jvpzg", + "lrqxjb", + "mdvlxq", + "rycws", + "nscxa", + "isbz", + "mlrbjus", + "fjrzav", + "vglx", + "iahld", + "htqaf", + "gydkb", + "deuh", + "kgmniey", + "nymcfbk", + "evwbhi", + "lykp", + "euvkh", + "sipv", + "avfyp", + "nioeumy", + "bsul", + "inoqjdz", + "njweup", + "pvrykjz", + "wikdox", + "mbgj", + "ghxr", + "ujkadoq", + "kblrgxw", + "fqgrtx", + "jvhprai", + "lzcbhq", + "gjxd", + "stpkdhy", + "bmuvehi", + "jlownrp", + "sxvpq", + "fjvmzrq", + "risv", + "kcawbvr", + "oburjce", + "aszmkhu", + "wtpxsn", + "iqpr", + "blit", + "gkab", + "daiw", + "nmiaco", + "vxrgs", + "irwtcsn", + "wuxdeq", + "dpgzrn", + "mthcwuq", + "miujehz", + "wdjxub", + "huqtbj", + "pjdl", + "rzdu", + "unvo", + "fdtvjl", + "hxymrak", + "dtvgkh", + "phycnv", + "ecwk", + "lnrm", + "iebztc", + "ndwge", + "iqazb", + "ygmouzx", + "mldkf", + "zips", + "tdihxfj", + "minsw", + "mpkqrz", + "gofpt", + "mqsa", + "lcfstw", + "ciebmg", + "nukyzqd", + "kedo", + "rtlcx", + "xlaezn", + "fvrw", + "bedp", + "amyifuq", + "fbihjyr", + "xleqnu", + "muofbt", + "rvmhyk", + "ctwouaq", + "tcvwa", + "manhs", + "bltq", + "uvtsqk", + "nrjfh", + "ctvebyn", + "jawv", + "merifd", + "nvkepiq", + "zhdi", + "dmizuo", + "lgedtq", + "nsxpetz", + "tkdmyh", + "jvdxlom", + "izqte", + "rahpv", + "ofxtgkn", + "zjqf", + "xjkpiy", + "fjlgnak", + "ptxmb", + "cklsdv", + "sjdqkfl", + "qaxphzn", + "xseicto", + "fvnpd", + "qrhkwvb", + "hmzgd", + "cvpuzwm", + "jehgzks", + "ylcer", + "gidbx", + "ifed", + "eacpdj", + "dnevy", + "ivzcbn", + "nxroa", + "vjwnp", + "qpyhabg", + "npwb", + "yhpb", + "abqxept", + "ctbzf", + "xrduem", + "fasyct", + "kmslup", + "uzbhdea", + "ayxhvli", + "jzxekyg", + "urdv", + "oqrsfi", + "qxunj", + "cyvo", + "zgnbq", + "gtxajpf", + "bdmil", + "htsv", + "imxyl", + "qkbphsi", + "xoqptj", + "smabiw", + "mislbhd", + "utycnp", + "nxwrecb", + "jvhw", + "gldwrkp", + "uofwet", + "xuzt", + "ydsf", + "wcerp", + "gfzo", + "zuaklq", + "uqab", + "nveifd", + "agbmyiq", + "slndu", + "hrmt", + "fidocev", + "ienvas", + "acxyigq", + "dpuqji", + "xdbje", + "gichk", + "newjz", + "vxjyism", + "ksry", + "cqgz", + "ywfnl", + "fibvwzm", + "guthbkr", + "wqfgyd", + "zatjf", + "wzshlc", + "fbewmh", + "uqylrbt", + "ufzkhco", + "sjdq", + "driv", + "lsumhy", + "ljvxyf", + "usalb", + "zgiqhcj", + "emovl", + "ivqglst", + "xsrw", + "dtork", + "htin", + "fogl", + "ahrovf", + "blsg", + "tcakgj", + "ozuedab", + "ogmda", + "rfsakqw", + "gcehdsr", + "wpqfeh", + "ewfhqt", + "qtpjcd", + "cyjgh", + "fzhgel", + "rsncy", + "nizyr", + "djbpy", + "imgnhk", + "praio", + "uarzkq", + "uhil", + "vrtp", + "xqzub", + "kypo", + "yrdj", + "vpzxou", + "xcfqjyd", + "fudt", + "xzep", + "gymodah", + "hpaxed", + "aonv", + "usyde", + "ujeral", + "dylohpq", + "uekzf", + "lzsc", + "olhvrxa", + "glqts", + "fadb", + "lcoes", + "dbacxhg", + "yadfz", + "fzihobn", + "roil", + "zyuavlj", + "fmkiqn", + "enmfljz", + "wzlnecg", + "gmaqn", + "whebyk", + "sfar", + "ymcvkh", + "izged", + "cbdlw", + "ukivhf", + "npsoave", + "dxhm", + "rglxw", + "spjn", + "ysmweqc", + "sfvrpmj", + "reaz", + "glwevj", + "iakrz", + "ephl", + "ujgion", + "izyshwm", + "hoztua", + "hzqnol", + "wtznvc", + "gbkm", + "lnqgjor", + "kgxm", + "knzum", + "ingdufe", + "zcebma", + "zguqm", + "jkmlui", + "chjykf", + "bzqoakg", + "tfvlsek", + "xusjvml", + "thxb", + "bvgu", + "ceduik", + "akcs", + "cdmn", + "lhmzoga", + "yrzdql", + "vujomfz", + "ucygt", + "whikcdv", + "okcrtxv", + "bdij", + "akphm", + "gecv", + "uxqhe", + "olgpjnm", + "kwyatq", + "pwhdz", + "csxqf", + "usobve", + "ypsmnu", + "kjcmx", + "mdgy", + "wadfb", + "hcbufv", + "hezqjlt", + "vinpac", + "cpfv", + "bafl", + "cjory", + "hpok", + "kjnvte", + "hebmal", + "vqxnpgf", + "wlot", + "nxlhsdm", + "lrtyxpc", + "fhbq", + "bjprhgk", + "dzhv", + "adxkjge", + "tlnoybm", + "xhsiwv", + "qsvoz", + "imkua", + "nsxfw", + "osahkwe", + "nztoiax", + "xiztpd", + "sdcerpw", + "dfkb", + "rdhcnwg", + "focdjvu", + "tlpcavk", + "cashgm", + "jhgqk", + "ymth", + "kpzlh", + "mxodyae", + "utngw", + "xpkmc", + "kuyc", + "xmup", + "yzbv", + "qean", + "ywsud", + "cxygor", + "doaslvk", + "pglct", + "ngtwxlp", + "pltgaj", + "fkad", + "ojzydgp", + "rchsba", + "vnjqatu", + "cthgkj", + "bqzek", + "ucntz", + "jacgru", + "zvlw", + "ztng", + "rdlewt", + "tavun", + "drsil", + "kipzyt", + "hubdg", + "mplinjw", + "rdlzg", + "cdwrygx", + "dqpeia", + "xeldfvj", + "vagbxwl", + "qlnv", + "czflo", + "iwfgxt", + "jsub", + "eovlwcr", + "blkugzc", + "mcnq", + "gvuzd", + "qgutazn", + "hefa", + "xrjiud", + "gxytnr", + "ceykmwl", + "onzsfli", + "qnbayog", + "hbnkjia", + "jicr", + "kyswo", + "thpwzf", + "iuvj", + "ymcud", + "tghasc", + "dabvgk", + "qkvdf", + "bwhifjl", + "ghnex", + "bgwe", + "cdkwsue", + "jnhwt", + "zcxy", + "xqrgh", + "spmuwnx", + "znjufy", + "xosdnlj", + "rijzp", + "gjbp", + "ecpd", + "iwpfra", + "yvqb", + "drmfalz", + "ktudwrp", + "fulmqkb", + "hjrqfmt", + "pzsmxkr", + "ntraqzs", + "xyraevk", + "yisdtv", + "rsbp", + "yzwmk", + "mlniy", + "ybsc", + "xljq", + "dwlzkfg", + "crka", + "waenutj", + "eisrqv", + "gxtd", + "maxwhe", + "uhyn", + "urobht", + "pzxf", + "iaopkyj", + "fxdik", + "zpdv", + "ctkzb", + "wlfs", + "adzyu", + "wxudqr", + "zaskjpb", + "wcojb", + "qelgkf", + "publf", + "yaes", + "spfwi", + "whsl", + "uinbyps", + "farybc", + "xyrsi", + "chqyr", + "uaqep", + "huegfv", + "dxkhugo", + "xuyvthl", + "payfc", + "gypqvm", + "hgcqi", + "rhcuswt", + "dohg", + "opgba", + "grdvjbh", + "bxtm", + "waxpqvh", + "okjrhvz", + "kjhsnxa", + "edyfln", + "qkgs", + "vrhsfmz", + "mxhgtc", + "hgbo", + "hczfog", + "nyjdci", + "ltmezp", + "lmsqy", + "xbcf", + "wkpgh", + "zrjeqi", + "jktoc", + "nacyqv", + "pujstmz", + "lsyqiwj", + "akwov", + "krpcv", + "uase", + "osrhvu", + "vgzmeiw", + "zcbwk", + "tupl", + "ejbmks", + "ycfix", + "ibrda", + "tuvab", + "lvzxref", + "nrcdya", + "yxpej", + "qxeds", + "jemp", + "mrkbi", + "ipsxdyf", + "tbzhksf", + "npmw", + "cylir", + "gxfat", + "whaks", + "fdcgnb", + "sltgbia", + "rvagm", + "utnyjbp", + "oqbsav", + "vzjbsp", + "kpifdc", + "hyzo", + "yrjuvsh", + "xtbzcl", + "vrsdmx", + "qiyxb", + "ytdb", + "srfzt", + "pcwie", + "eokbwmn", + "vtkzsef", + "nowgmrk", + "rdhpg", + "ehtvzid", + "nurk", + "ykwmlg", + "bsgnqyd", + "qznt", + "rujgzp", + "hptx", + "gaetbo", + "wsxc", + "ocvjz", + "eqzgl", + "moycdq", + "lcvxeh", + "sqhmru", + "axloi", + "lbva", + "nyvu", + "kgqna", + "mqornj", + "dhmziy", + "xyboa", + "snow", + "vygmlt", + "jqavy", + "ctenyxj", + "weykn", + "pkybsm", + "gjdy", + "qoruthc", + "bsgalpq", + "eily", + "yngs", + "hakzg", + "selzn", + "ukvw", + "ioajslk", + "yhalg", + "dekg", + "bosijv", + "mqfe", + "cwxk", + "xatw", + "atdui", + "ajcu", + "tngqrz", + "xtndul", + "qdvfgm", + "iwpqo", + "vafqwu", + "iser", + "jzqi", + "tzroxlm", + "dnloqzk", + "dchalm", + "dxsr", + "gvfwbzq", + "dglewmo", + "tzmnidh", + "fqcnx", + "tyva", + "kgcfoba", + "pxvndri", + "wxaq", + "jemr", + "hrvnisq", + "ikbd", + "aihwgc", + "jezcbp", + "ldchki", + "kmcbnqv", + "dgycbi", + "bcmpovq", + "ykqnfs", + "mewjcz", + "elzcmfx", + "kbiow", + "bzfcyn", + "hvyc", + "hkjx", + "knwbl", + "igkduo", + "enbpvrm", + "sdkrua", + "jhzkrcf", + "bdnw", + "xduf", + "sakjb", + "vcpkohn", + "zulfwq", + "vurm", + "osjuf", + "pxqvnie", + "exzd", + "trxs", + "mieu", + "utxwimg", + "csydb", + "avfzwh", + "yebzl", + "agusj", + "cilna", + "kxrtqd", + "zsmrlvt", + "lcad", + "xtsmq", + "gvaxbn", + "xtem", + "zsjdq", + "hyrqlc", + "yamcs", + "wtrdnz", + "sgoct", + "hovtc", + "gwic", + "twbzjru", + "qhoig", + "oiuy", + "zjsy", + "scykpt", + "dajgvhr", + "cdwy", + "tyqauik", + "zbcj", + "zeym", + "lifnthb", + "tnxu", + "uibekq", + "rxjgwf", + "zmvwl", + "gfytbkh", + "wbopztl", + "oecpwf", + "vzrieoq", + "iqyfbze", + "lvqjpg", + "mkgtjv", + "kolj", + "iltfwag", + "shxdpa", + "ncxylj", + "ynwsm", + "gnmwabk", + "ovefl", + "khgceqj", + "djzgt", + "qhfjo", + "jycvq", + "lucf", + "unomlfh", + "runtowb", + "csfogl", + "awgljky", + "jzpycb", + "spdbh", + "hnybm", + "bazle", + "apsiemw", + "mwpjlei", + "xrdbpv", + "ecxmvyu", + "wgqrnep", + "aghe", + "zwoxyhe", + "rhwgsx", + "gesx", + "gtlsnk", + "egkjfmr", + "oyrvnw", + "cdblx", + "xveirwf", + "jzhdm", + "irgu", + "czhks", + "jphl", + "idlqk", + "zqrpnm", + "mnwuy", + "ieqc", + "ynifwo", + "ecbkuh", + "qdkihr", + "nlhvisq", + "frabg", + "vxbflz", + "gnsdrt", + "jzkc", + "pxbir", + "extz", + "osfdma", + "bkmsg", + "cofgui", + "ditjcvw", + "qomrl", + "pansli", + "kepvzd", + "evyjqr", + "thak", + "jzry", + "ltnu", + "butr", + "bvrim", + "ydazqi", + "lomgxp", + "svqemg", + "axkzqr", + "ybmhrji", + "twialxq", + "lsnyo", + "gmvbrx", + "vtheq", + "kjzya", + "hibafj", + "pfwmdlr", + "amklz", + "secrb", + "syolxhm", + "jehd", + "egusnl", + "rfvpx", + "vare", + "jzxtme", + "bvwi", + "dgki", + "liuemhb", + "eglskpm", + "kqtvx", + "qhnswy", + "tkiq", + "esikyt", + "kfxos", + "saybgu", + "zwrc", + "fmqlwv", + "tlcov", + "zgqa", + "bndkf", + "pxkin", + "dklqxc", + "dixak", + "yzmrhtd", + "baqfw", + "dglk", + "glzbcno", + "rndqy", + "drnclm", + "pjdahce", + "uxdjqc", + "gikdey", + "gnhuqzm", + "qvgh", + "tdcmjg", + "isljur", + "spvzbaj", + "nicd", + "wlkug", + "dptwkqc", + "ducab", + "tvfg", + "hmkc", + "urnx", + "fmhcu", + "yghltci", + "lzhx", + "jxms", + "mgvya", + "hnscelt", + "edsmir", + "yfajil", + "nmdvpi", + "dhwygp", + "hvnm", + "atxpnid", + "hdnbul", + "ybdet", + "vcozw", + "jlkuwq", + "dgqlto", + "bwzro", + "lmwtkr", + "vkmuozl", + "gmcuk", + "pnlxt", + "dgbqy", + "evamb", + "chzmpf", + "pfzkj", + "frdu", + "afey", + "upyfx", + "wqmv", + "waxlcfj", + "sdivzq", + "mkolpbv", + "ejgwun", + "gowztl", + "kgjpqc", + "akcwxhy", + "utqvnh", + "zgwin", + "ymonivb", + "zabrh", + "gbtho", + "ykcpb", + "sznjdp", + "hvnjaxc", + "cifm", + "xispvud", + "lfsg", + "pgnc", + "ewjth", + "mjwdnf", + "kabct", + "jvfr", + "ohurqwi", + "pjegax", + "ipfujn", + "vjhnstg", + "tnyqvlw", + "xempfs", + "sepf", + "ohrbdvn", + "uwlycs", + "epbklz", + "lqtm", + "kmyq", + "efizvwl", + "qnmfxb", + "lpbd", + "msdiz", + "ezvg", + "njmkf", + "vryazq", + "msfu", + "jyshtw", + "buaekpd", + "pwlghqz", + "faqewxt", + "prihbjm", + "iegpszj", + "srmczk", + "xnersh", + "gmfan", + "tupejnl", + "rnsemj", + "ceog", + "rtxmc", + "dtignpl", + "tgkrvf", + "vtyrkfn", + "ocnwf", + "jcnb", + "auorn", + "jywz", + "hdnco", + "xmdivgb", + "amcztb", + "oqnkjua", + "cxwb", + "nszxj", + "udtyloj", + "nmshpl", + "cnhrw", + "viowaz", + "mgnhk", + "byefpv", + "ainl", + "qfsm", + "tbcrsf", + "uldea", + "grfipv", + "jbzkcv", + "hcbed", + "sujb", + "qvbh", + "zqkxjap", + "zrdmuhs", + "vxns", + "pzxqonh", + "yskemi", + "mnvehp", + "teqwgf", + "lzjn", + "uaoeq", + "rbuanl", + "tysgr", + "lsqr", + "bgkynhe", + "xywng", + "tcfbsy", + "nfrp", + "lsfiox", + "yjtlkwq", + "tedcai", + "hsvfag", + "kfdphza", + "rplau", + "rgndhau", + "lgkvj", + "duhnf", + "nevr", + "gqzwp", + "pxjh", + "lwmtsa", + "udqws", + "apiv", + "uefwgko", + "nxhcfvr", + "sazmhp", + "nrtca", + "enujcwh", + "saejt", + "ztgkwmy", + "hjnwd", + "ykdpal", + "aosvm", + "srtoxiz", + "myzifql", + "iexvcys", + "wmonigv", + "bing", + "zyrhjsw", + "jdlpuoe", + "cvyxqsu", + "haqjcdf", + "cvzkio", + "eizgld", + "twinv", + "ympzdun", + "sqfuzri", + "pvmcfus", + "kipwmx", + "ojkxn", + "bryg", + "csyakfl", + "mycn", + "dokwp", + "ygophzv", + "jatur", + "qcsk", + "kbahd", + "ftzmldc", + "aduezw", + "oevf", + "xulyb", + "valpxc", + "lieqk", + "dsfic", + "oqfbi", + "sghlxie", + "qauts", + "kcrt", + "kgbxe", + "bstd", + "zqgrcft", + "tzrmfoe", + "hvrpq", + "czgv", + "klypg", + "wobxev", + "gdunf", + "umwkx", + "khfj", + "grzc", + "drcjxa", + "rvfmw", + "idycf", + "zfieh", + "ldcbzn", + "ubdwt", + "nsarm", + "eqrtvdp", + "qstaif", + "brzopv", + "wltmnoy", + "kfamb", + "oaqdtxe", + "ifbr", + "ekapu", + "fpsulgy", + "krulj", + "hqxmps", + "lgobu", + "rvxafsy", + "sgum", + "mryde", + "ghlncr", + "bzty", + "zyskd", + "ujbcmth", + "dkjzeya", + "grefzjv", + "cmjoe", + "mlpyewa", + "lqpaf", + "lsrmi", + "kgrp", + "ruqodvs", + "mxnwpo", + "weipj", + "arpk", + "zsuaoh", + "ucebgaw", + "owmjuzb", + "wlcbvi", + "gqsct", + "raujyki", + "vexo", + "qtbrg", + "pkegsmu", + "mzxjs", + "kcpvtg", + "zxul", + "sjalobw", + "bkdg", + "rcpxa", + "kmtbe", + "tcnau", + "zady", + "prgjwvu", + "obmw", + "vlikrsw", + "oushf", + "puerj", + "szjb", + "kbupdh", + "arhwz", + "kgeqw", + "bnifugp", + "rpetu", + "nvcbw", + "tkih", + "zupion", + "wcxgzq", + "rzphdyn", + "refvj", + "ygkbvq", + "aesjp", + "lnkz", + "joexp", + "wsmanxf", + "ujot", + "nflwuah", + "fuik", + "fcswj", + "czsh", + "snarigf", + "vboa", + "uqpr", + "awfb", + "yfwh", + "wrcao", + "ucglopw", + "yjnhuk", + "irotj", + "gqpydnw", + "lctvgk", + "mokuce", + "mqxbz", + "umeyfxi", + "kpaxl", + "rkaqy", + "oyhc", + "nmpecd", + "qhmc", + "penvh", + "qlpsub", + "cqueolj", + "vwags", + "ztuxo", + "tfmi", + "imwnqb", + "yohqg", + "spjwerz", + "mrlpk", + "wsyle", + "fklt", + "gikt", + "uqmh", + "hbfoz", + "ibqk", + "naeksxl", + "ouxgp", + "xtju", + "gzsuqic", + "irxvzt", + "qlyc", + "ebli", + "ygcqna", + "jamr", + "xhia", + "qzuwjg", + "nyvift", + "mptbqxi", + "gvap", + "lxjs", + "sjuftl", + "pqlymhs", + "ozdcu", + "tqpvj", + "hrgp", + "ezbljs", + "nkmj", + "rtoq", + "fdrxqpy", + "qbhv", + "umcfal", + "qgzwy", + "tpifx", + "punjba", + "zwygo", + "wkjcs", + "pnuqa", + "wmgzxc", + "ldjk", + "kqheogb", + "noceu", + "idrqz", + "zpbvrs", + "jrhedx", + "kqmz", + "bejiq", + "svepcg", + "oafdyqh", + "cplh", + "kfltzg", + "zurdi", + "csmxfar", + "oqnbph", + "nkuz", + "qgbjrn", + "vuzrxjc", + "ycvk", + "ylsznp", + "gsbd", + "rvjfgu", + "sbgt", + "kxaj", + "jifg", + "gjaphk", + "lytkoh", + "gkhuzm", + "wdfh", + "fhzb", + "cdlborx", + "vjog", + "ytjlaku", + "rlpn", + "mgqs", + "psuznf", + "tbsjnih", + "ridtfhw", + "pektq", + "poecasy", + "igsd", + "prad", + "extwp", + "hlpz", + "reiq", + "nmtd", + "bwkiun", + "eqmhl", + "adjthwz", + "vdnrm", + "kygs", + "ifbgd", + "wbnpze", + "lyutc", + "vlgpc", + "dhcki", + "mvrj", + "qtfoal", + "yjxkin", + "yjhn", + "wbyemzg", + "fihw", + "wvia", + "nvde", + "anpjkgz", + "oszedq", + "acqztg", + "wdpzx", + "yskg", + "fgrh", + "caswbz", + "rmve", + "fdejl", + "vnft", + "npky", + "yclnma", + "detj", + "fkpyrt", + "vfwdesx", + "oidufxz", + "qgmbvxt", + "nltb", + "vnkds", + "oulqf", + "xhdlfg", + "bqefd", + "iqym", + "vxhm", + "ertdzfi", + "qxdujly", + "xqzgupk", + "ocetk", + "ehxigcy", + "iqlej", + "lszt", + "fjsgth", + "bulgwte", + "vuld", + "swder", + "byemw", + "ivqojyt", + "noirj", + "bvfqc", + "cdmrze", + "sjch", + "qseygow", + "vlqm", + "zysm", + "uqrafv", + "agvwrxb", + "mxdwu", + "uknwimz", + "tbescjl", + "wfun", + "bnlthk", + "rbizy", + "hegdlki", + "aqwzsut", + "ksdthn", + "dgwn", + "oidtfnm", + "jkdnhe", + "cavzyt", + "rhgw", + "qzdp", + "sxmrj", + "qlrhudy", + "lgmo", + "iwdrzjk", + "tkuo", + "hnrp", + "gzwhvt", + "cqstyh", + "qvmc", + "gzdtvs", + "wfqh", + "omslk", + "jsnmu", + "xzmwsqp", + "gkelch", + "hquspz", + "ezfblt", + "wuma", + "abxrfih", + "svnc", + "rsua", + "limfhsr", + "wjdier", + "griahby", + "zojtun", + "ahkroyl", + "mixyfvg", + "mxfhyb", + "neylcsd", + "fgpad", + "eqwpid", + "tefm", + "kutgrei", + "pigfwe", + "qgdp", + "sltygz", + "fnpjrxt", + "fhixg", + "ftzx", + "gmbi", + "qjhg", + "zmwb", + "tmecwka", + "rmypt", + "wrplbuk", + "zqua", + "athnkyx", + "fztkc", + "sela", + "ucksx", + "ktifoys", + "rgzca", + "tcofs", + "pqwkn", + "orvxc", + "vytceax", + "btivz", + "lcqvago", + "fzvxosg", + "bvwctry", + "bgaurl", + "bgvq", + "qesgxmy", + "zwajtel", + "nhtiexk", + "wfxy", + "glex", + "ktzbefw", + "ryafgqw", + "yhpguf", + "xfql", + "amnc", + "cezvywf", + "fwvmi", + "lrxsnt", + "rdalof", + "iqxj", + "ltkqn", + "nsbvod", + "znis", + "phbfgc", + "vahbuz", + "iqsvo", + "tfyml", + "vxamidh", + "vutk", + "lknxiy", + "bneyos", + "cngm", + "ichqn", + "cgfw", + "pdji", + "vwzk", + "npmt", + "fqol", + "dnvebc", + "slhkq", + "ohzyet", + "auqnv", + "ecdbwvt", + "wlpxkv", + "pewohis", + "poguirk", + "vnmzoh", + "rbeajhv", + "pdta", + "vknhl", + "fmxt", + "rqatvdy", + "zdpu", + "hytjef", + "eonlfus", + "kegdtub", + "mxan", + "ybhfave", + "oldsyup", + "hfucsr", + "rezu", + "pfbog", + "iqvz", + "vxelmow", + "vcwjrso", + "ysxn", + "xtbz", + "kizv", + "zhpyrvd", + "ejsn", + "lidvb", + "nemzp", + "qxoiys", + "fhseri", + "ybafqtc", + "lhvdu", + "qohsgkl", + "wdmnakh", + "ykzx", + "vjkim", + "tolgi", + "zqdmcft", + "zndbxmi", + "jpibuzr", + "lqru", + "bcfqvah", + "ipsden", + "mbdx", + "mytjrn", + "kmltvq", + "xbnvoi", + "mpcxvib", + "uietdx", + "wrlopu", + "gbarcnl", + "gbprh", + "dubx", + "orvi", + "onuh", + "ngflwvp", + "nqfc", + "boqshv", + "usymp", + "toik", + "pgystia", + "enwbgjt", + "cane", + "lbfu", + "dhwac", + "inwse", + "jrheon", + "txlo", + "cldwbp", + "srumbco", + "yrdi", + "xdlkevs", + "gxrl", + "lcox", + "hoyua", + "akwc", + "ymlqtu", + "bzhyuv", + "gxardik", + "eulj", + "touca", + "utpi", + "halewi", + "dbhn", + "fzjq", + "olxaegd", + "hsireng", + "putyk", + "tmvf", + "koicv", + "akeblmu", + "opfrjgi", + "tmvco", + "guik", + "seilp", + "ydlfh", + "vtkjcxw", + "qans", + "wafiloz", + "semyg", + "nsbu", + "twnuvai", + "mbiy", + "ngxz", + "hkxcqz", + "xnlczf", + "gofen", + "tpsy", + "elms", + "lwyjz", + "mubvh", + "ergft", + "soqk", + "fgvajm", + "pwsva", + "stag", + "rsfavc", + "plgiyz", + "iedhxjt", + "sbgar", + "wxgtuas", + "lbrszfi", + "ruokh", + "bgveqi", + "ekwo", + "xhqj", + "oxngdzh", + "crpz", + "zrnmpsg", + "ozygldh", + "imae", + "otgl", + "wiqj", + "okzt", + "opfk", + "gduwz", + "acoh", + "mocgx", + "vexib", + "bnotlkd", + "lhkv", + "erodmhp", + "ownvph", + "mqfuot", + "afzw", + "lxhtfn", + "mdlkhug", + "zcoq", + "dsfk", + "adur", + "astxqon", + "vhanygz", + "kwdevbz", + "tlvzia", + "tjgvinz", + "khpwzit", + "mdtyvbp", + "cfuoj", + "frkqn", + "cowuimb", + "cekp", + "vniyb", + "zygpix", + "fcxyda", + "jfusbdh", + "njxqr", + "vwcm", + "sgadx", + "lhcsjd", + "pyufez", + "rhqyp", + "egix", + "lriot", + "vryf", + "apryhi", + "atqb", + "sprcilh", + "qhknfbt", + "dozwm", + "ycjdzk", + "msgvpo", + "yqbhfx", + "eluqy", + "xgjp", + "dvaeri", + "gexb", + "yrdzux", + "pcjrgl", + "wbljgqp", + "tjma", + "oyxd", + "tayleno", + "kswxzm", + "ohimusw", + "jcebmpz", + "gafp", + "gajp", + "jmgls", + "cxwkzov", + "aptmn", + "tlwjeqf", + "ejzu", + "frqygwv", + "izly", + "wkpylj", + "faukgtb", + "liufd", + "fzlx", + "ibcsm", + "fxzgjiv", + "zoxgawj", + "gwvl", + "dwez", + "gqrfab", + "imqwb", + "zniyd", + "tbzfl", + "nceydag", + "rxiz", + "mtprd", + "stzidc", + "lmsjkr", + "pdqw", + "nwmfg", + "znrut", + "lmudbns", + "xiaqtch", + "dsurbjm", + "kult", + "jlhads", + "kjaepzb", + "ybchd", + "yjxnq", + "ramsuco", + "rphn", + "uqrm", + "jmdgvno", + "cjdmzh", + "xybzmvg", + "jxlfdi", + "notcmp", + "osfp", + "ktqzn", + "kpuwb", + "qbosfxy", + "svxyfti", + "hxdmze", + "zucexk", + "hqiwamj", + "zrxd", + "ajvybsc", + "jfeb", + "dpzmt", + "ywsm", + "camkn", + "mhrdq", + "wzabim", + "eapcr", + "pbkl", + "twnz", + "vocp", + "rltj", + "sflkaz", + "utah", + "aewmt", + "yuceb", + "uxsznh", + "pbyzsf", + "svrkqzm", + "yxuhtos", + "wuay", + "robzds", + "bxdgmct", + "dqaxmt", + "kdtjace", + "auqn", + "elfoqsd", + "dknjmp", + "gzlfwsm", + "rfcjg", + "ucxrv", + "yejaog", + "fcxbjl", + "isoj", + "dwjpvr", + "itlzwgu", + "xqdnvk", + "jsanmd", + "taxc", + "qlufwg", + "nabefs", + "pudzaoi", + "kcluyh", + "kybxqe", + "hsaf", + "tbevwki", + "pdmjiny", + "lodrhq", + "mohbc", + "apcby", + "hdcnkv", + "sbteucf", + "cmkzd", + "iwrmbkz", + "nscojtg", + "motn", + "sdmv", + "roszh", + "wkfmg", + "igvquh", + "uxhcrq", + "osjfl", + "ypzs", + "thqi", + "eqzlu", + "flhp", + "mhzejwi", + "dkmzrso", + "pavbs", + "lgvf", + "pwim", + "hlboyd", + "zevro", + "iqesfza", + "gqyjln", + "ujzilh", + "qkiz", + "gwzo", + "emlwqi", + "qroas", + "atobiup", + "ocqfji", + "klezjti", + "amwdneh", + "ixfczk", + "lcjo", + "eoasgjy", + "bhujf", + "tbhkwe", + "pqmiw", + "flbpwot", + "zmkqbc", + "antjuzo", + "evzbmyj", + "mdlscoi", + "czbxp", + "balvw", + "vklnauq", + "ahpvtwb", + "yxpd", + "ozda", + "sqkh", + "ekxhwu", + "raugeb", + "vfnkr", + "adwzmx", + "nyxta", + "dcyozx", + "jykx", + "xgup", + "ngwtxd", + "rgtmndv", + "pfrqbx", + "jrdih", + "hefudxm", + "pgwydsz", + "nkvazqi", + "cpskx", + "wxmfhq", + "fqakte", + "jezmqah", + "pvntea", + "udak", + "yjdm", + "pwdeu", + "mtnxgq", + "nyzftgl", + "gqryb", + "oswnjy", + "zblh", + "cwex", + "zaqfp", + "gwksnm", + "vyrl", + "yzes", + "fztun", + "rcmqux", + "kzgsvtm", + "npwsdf", + "mdayk", + "kwmpold", + "vybptf", + "udwmy", + "vhpjd", + "xzpwn", + "stzpql", + "dgnpato", + "msun", + "ximtj", + "cwmtok", + "velfi", + "ntix", + "emvkr", + "micrv", + "xbuig", + "swpnyrm", + "cohserp", + "npuvdz", + "ysdl", + "nulsxbf", + "nzfgxs", + "ifrhq", + "neqsz", + "exqvljd", + "bpxs", + "kodjzbp", + "gsqbml", + "kauo", + "ltguav", + "oebfh", + "dxkowt", + "gkcsty", + "mgjetd", + "rmkd", + "lctmg", + "tybie", + "niesupc", + "yati", + "ovhuna", + "lmtaoxs", + "cqywd", + "wizuovf", + "azwgp", + "zxnduif", + "lnpzy", + "edwhiku", + "usha", + "nodkfti", + "xkcweq", + "khon", + "lsbhyp", + "pflyt", + "fochk", + "btjxv", + "fodyj", + "qutf", + "tvmb", + "yvmjd", + "vobu", + "skutia", + "jwgrofd", + "lpfw", + "vtfgx", + "pdhska", + "jelbca", + "vquabz", + "zqbrf", + "gtkf", + "kdxt", + "lfojry", + "liger", + "aihpezk", + "bsdv", + "egdpui", + "orjif", + "uibmsoq", + "vflsn", + "frglno", + "zyldg", + "tfegljv", + "kriuqz", + "rmaf", + "gzrkw", + "lvjdcgu", + "pifksao", + "stvm", + "jhcpia", + "hokzvma", + "optshk", + "gkjnpeu", + "fdxi", + "sypadhf", + "pzoljct", + "xmzqfhs", + "ebsof", + "uosh", + "xzlitk", + "hfsjr", + "xnirql", + "ydoi", + "jufedqy", + "mgykbjn", + "favmo", + "ijmpua", + "iznmlcx", + "uvem", + "uodklij", + "fakuol", + "cvpyoe", + "dyzac", + "yonepf", + "xrto", + "blhg", + "otgbyzk", + "niwxkyt", + "klnrth", + "lyfbrja", + "opir", + "onfev", + "oragpel", + "kuls", + "splcgto", + "umat", + "qwltxh", + "yxcgv", + "wejgoa", + "bgjqdmx", + "zotgqp", + "xifb", + "eimvjxz", + "uprm", + "belqh", + "tpbcnz", + "hwuyb", + "kbpgi", + "wqrpk", + "gvat", + "zbmdru", + "evbuzal", + "hkwumj", + "aiflkw", + "jmins", + "aiwruxd", + "lvgkioa", + "ibdxzqm", + "zdsehoq", + "mgquz", + "tuopqk", + "iuft", + "umzjf", + "snwmbof", + "xoed", + "nojrl", + "xrfpos", + "qtfbh", + "dwfgrt", + "dleqy", + "euhoagb", + "wrncto", + "obnimgr", + "wijsdqh", + "obfxldc", + "xjrwm", + "kbmplc", + "ximrzo", + "xiqftaj", + "ykbgest", + "lfrise", + "hmsjkr", + "vmkqt", + "gkmqh", + "ejgvfhz", + "csnpk", + "vlwhme", + "gqtld", + "ugeylq", + "eoprwzx", + "dfql", + "cqxh", + "arvsgjp", + "humdfp", + "vegnt", + "sqezxd", + "wfvrkiu", + "xlrkaw", + "pmzvkg", + "tckravm", + "gahdey", + "rmsag", + "wnztrky", + "bgia", + "jhqg", + "zndicr", + "gnbyx", + "ciraz", + "yjaspn", + "xetkfwy", + "ncrvawh", + "yeogqn", + "tpve", + "hokd", + "loswyag", + "mfdtlh", + "aswclvr", + "ojpxfwe", + "hofxvw", + "anlht", + "hyub", + "yfgwpdi", + "rhenpf", + "hckxuap", + "yxzmto", + "ylqgcsp", + "ufwpg", + "wzdrtfh", + "ptyxfjz", + "kafhwe", + "jdrf", + "livj", + "gflor", + "nozcr", + "wdvegy", + "gohwf", + "upkfbsx", + "jtxy", + "cizhu", + "nxzoie", + "nfwd", + "zsfmu", + "ywfpk", + "orys", + "djfc", + "axepics", + "wpqhd", + "undkoj", + "hnpiu", + "katzxw", + "emhwbqk", + "onepug", + "jcsalz", + "kuvze", + "xskcv", + "zyfkwo", + "faqcbhs", + "sqjamul", + "waqb", + "nuer", + "bqkzamd", + "wkrc", + "qyzvish", + "caymref", + "zpsiedy", + "ctpsmjb", + "xdne", + "xqlnc", + "sfgjt", + "tveqzu", + "pjarvu", + "ighu", + "hdjv", + "vxntu", + "hylb", + "foaz", + "slkfd", + "xnlv", + "mlhej", + "cilsu", + "kahgi", + "ycqazn", + "uzhxsjq", + "fqgaj", + "wlutyz", + "vzohus", + "baxguqd", + "hxrvinf", + "fverot", + "lugx", + "vfgq", + "psxrg", + "fsue", + "xtlkn", + "dknj", + "lzibds", + "tcphe", + "kwoypjm", + "zalofmc", + "aufhp", + "hske", + "ebrlfsu", + "whnp", + "jyho", + "trkdm", + "miyxg", + "jmpyog", + "gzoqhj", + "jthrfa", + "fxuavtm", + "loqurpa", + "lboqrpn", + "kzdiqhc", + "algdiru", + "dcoxite", + "jucs", + "ezyc", + "inkwscl", + "tsayrj", + "draqj", + "jogelwh", + "flgvrjy", + "cfwk", + "oquil", + "nwipghy", + "fpdk", + "cimg", + "ucsrhwd", + "sfgu", + "twvq", + "zkovm", + "hxlzv", + "slkeh", + "bmxfed", + "tmgow", + "ikrwev", + "twno", + "tvmr", + "ahlpicb", + "chbme", + "msdug", + "hejibt", + "ajusby", + "svoufj", + "ukzniab", + "crgan", + "yhslk", + "djkbqc", + "cshuapm", + "hzgl", + "tzrl", + "tgyf", + "gfxnvqy", + "qzvh", + "pbmwvlk", + "fygzd", + "vktmjs", + "spka", + "oecsju", + "lbrzek", + "dibaj", + "qjaesgn", + "ckzvox", + "hmja", + "zalup", + "vdut", + "mahq", + "ijdv", + "buhc", + "byvpomz", + "qzwhi", + "fsmi", + "cjbvkf", + "jvsrzi", + "wuxhc", + "bksrxc", + "iuayhz", + "ujnlr", + "vhxngo", + "jgobzk", + "satzil", + "lmkv", + "fvejao", + "viyqeb", + "qlgpcjn", + "fcrxg", + "qzbgcm", + "yalge", + "mzqivd", + "ujwfxth", + "jmzep", + "jnweahy", + "ckixh", + "trvi", + "qdtal", + "vtwzdi", + "jmphqu", + "jhsocl", + "zvhlud", + "xlfyhoj", + "hpedsal", + "nultbhc", + "esnk", + "dqrilu", + "jxsqd", + "fwctork", + "cxmiplu", + "nywsog", + "xnyw", + "ysjgk", + "tzeq", + "tuvqm", + "qngowdc", + "geompw", + "dqyofui", + "mkfcl", + "rmnlspt", + "ekaln", + "ndemlaf", + "flqemho", + "ewyisu", + "xwzmrl", + "yjkq", + "zysrpx", + "adzltcu", + "mkcvx", + "exdh", + "pcqrs", + "rlmcs", + "yvct", + "dfem", + "lricfq", + "dygpo", + "nhes", + "xvjez", + "sukwfd", + "ihnvat", + "jdhzqg", + "dgohe", + "kectvh", + "rzsclmj", + "wkcu", + "rxnfup", + "ezqixtb", + "zmetorf", + "upbi", + "rkslat", + "nozkx", + "agmvzs", + "eqwitp", + "ghyveb", + "kdubrh", + "jnkcp", + "sgfwvi", + "lwbxdyi", + "wiuoftm", + "mskj", + "kenc", + "lwkybtr", + "omnby", + "gjomkr", + "hnkta", + "dtcr", + "eubsqpz", + "rxktvi", + "cikf", + "oylgie", + "pvodan", + "pqtn", + "emayzx", + "lsmue", + "uvdi", + "conam", + "ykqlz", + "dbzjmtk", + "njkb", + "wkbm", + "gjhr", + "wgvpxe", + "nvlb", + "svtupi", + "mvxjbt", + "pgxc", + "clrz", + "mpws", + "kfbhuy", + "mopg", + "cadui", + "xysdpb", + "uheyo", + "qaybhik", + "qswegam", + "bzgai", + "fkpneo", + "jcopn", + "hprt", + "fnec", + "fmiredu", + "ijhs", + "gtsl", + "rmyab", + "jpyv", + "yiefsva", + "qepwl", + "mtkipq", + "mnlf", + "bghzw", + "upst", + "bmjwr", + "weit", + "mudzipt", + "xyrv", + "xqmib", + "fiudwxm", + "niqucrj", + "hgwv", + "fpib", + "gjmz", + "idtna", + "livz", + "ocybqur", + "dtha", + "wxvzmfs", + "lmba", + "szrbk", + "gbuak", + "bugd", + "ldir", + "szap", + "qoeja", + "fexqpjh", + "mftnze", + "gvxu", + "dwasvpn", + "ofcutxn", + "ahwep", + "fzyoa", + "sfewnrh", + "bguwqs", + "zshjfw", + "uatfdbc", + "bjilmu", + "makdj", + "uqtzwa", + "rlaof", + "jdlqmyw", + "wxailge", + "dwcyi", + "zapdo", + "xdvzp", + "zdgvpwi", + "vtcpd", + "pwhe", + "yeuo", + "enpjh", + "ewogci", + "lkqiv", + "eicg", + "bnwuf", + "lmdegu", + "dgnasx", + "yotliem", + "wflnzud", + "kjzpesi", + "piykn", + "oczy", + "irtz", + "fpvaich", + "cwgx", + "skqy", + "baihkt", + "qzcsaw", + "dfpic", + "wyzg", + "cifzj", + "mcslnxk", + "cloag", + "pmqcknv", + "cmbwyv", + "rdntf", + "lvrt", + "gfqjs", + "zyupqr", + "xiuacoh", + "umayicn", + "ljztgi", + "wrsjey", + "jlsr", + "kqwen", + "jgdlyv", + "kemzvdu", + "jxqfzd", + "wvibqp", + "uwxirag", + "msiq", + "decsizl", + "xbhrf", + "tdbaw", + "mxzdvt", + "esqna", + "pehsq", + "amzr", + "eidq", + "fpygvqe", + "hqlst", + "voyprk", + "zvyd", + "uorfew", + "kfxby", + "dbwtikc", + "cjybk", + "ihzvuoj", + "onxyae", + "fmrkxnq", + "bcmu", + "bpkn", + "ieylgc", + "hyjblep", + "sdpxf", + "kgczu", + "ycsf", + "ewpka", + "aygv", + "ufielwr", + "lwmxup", + "vuhzc", + "tpfwg", + "cobvrs", + "ebgcu", + "blvqg", + "zkemwjs", + "fspd", + "sgnzvum", + "qguexi", + "zxia", + "cwgbe", + "vgysex", + "eujhrt", + "hmbaew", + "skyx", + "qvnmg", + "geuimko", + "gvbikfp", + "tqwrho", + "pnat", + "ethyfzr", + "ghxbzay", + "vodh", + "efjszpl", + "jwokp", + "jvxik", + "wsuxil", + "tcdmo", + "iorfemd", + "qhtyaxo", + "qgtxbe", + "lbun", + "sruowjz", + "xysirfb", + "vlnurep", + "ajfuy", + "ognq", + "qghw", + "pfuw", + "nilovy", + "snely", + "dkcuzi", + "nvjrps", + "ngibdv", + "viyrh", + "xvje", + "jqhom", + "kawgus", + "idxvuw", + "fxrbc", + "egsbm", + "lnis", + "msyutxd", + "yovqw", + "cbrs", + "eamgl", + "voky", + "avbugc", + "byzd", + "czsjd", + "vugxw", + "xfiba", + "eianh", + "pagb", + "zlimcp", + "ruqyo", + "nowrcy", + "ynif", + "ycmhrp", + "ehcqjkg", + "pjvbx", + "tcsv", + "kpri", + "igqm", + "bgwxf", + "napuboz", + "xvbi", + "gxcvrw", + "glbxfch", + "rctn", + "dega", + "uchntq", + "ldrp", + "injp", + "udjkmy", + "pofqjl", + "dxqzgo", + "fwro", + "yxwcsp", + "ylewor", + "sfrzbj", + "sbwq", + "lzhetx", + "anhbfz", + "mekqsr", + "dqwj", + "qzwn", + "lxtoneu", + "kwgfodq", + "tvzh", + "zlgns", + "wnel", + "xmhynjl", + "oqlu", + "eclyhf", + "wkqf", + "madyfl", + "pxblct", + "bkga", + "ykisb", + "guak", + "nciwrm", + "mpajbql", + "ymquilw", + "dgqc", + "ravl", + "caxmte", + "vsykt", + "dgst", + "rush", + "rdxflh", + "gbsqcvj", + "jgyi", + "adef", + "kzxqj", + "tobnvxw", + "cwbelq", + "gkdoabw", + "sdcfr", + "imugby", + "dvpsr", + "wesb", + "wuihybc", + "vsopl", + "zikw", + "wsrijkx", + "fbtz", + "nswjpta", + "hgcbqm", + "mqgpyvo", + "bnihxzr", + "nxfhgr", + "axrt", + "cnyhdl", + "dbnt", + "kbrqhzd", + "fdqivc", + "nejpyu", + "pcybrvt", + "ojlf", + "jlxw", + "ywzfl", + "nuzd", + "cvkzsh", + "vlne", + "zxyjes", + "aswuqb", + "rbyote", + "rlmbfdv", + "lhpti", + "wqfjv", + "ievzbc", + "nlveh", + "szlubxc", + "wgmxsk", + "ecquw", + "olbkft", + "vxmtl", + "awyl", + "trwaqvx", + "nibjo", + "kmjqwlx", + "kvhd", + "rqiowtb", + "qgoay", + "eacw", + "bxhkwn", + "tkxyg", + "qemxdo", + "tseqdi", + "wmhgvr", + "ziuvh", + "yisu", + "gsql", + "xjnomql", + "bktlxv", + "cwuha", + "atjkw", + "xmwqkg", + "dplim", + "yxkfwai", + "wralnsd", + "wbce", + "wyteq", + "ywfkr", + "iywvm", + "zsxc", + "khulos", + "evga", + "awocsz", + "cjhu", + "zwafipk", + "srhfq", + "ncurs", + "brhd", + "dtxfk", + "wmdnyb", + "zfwua", + "nxpr", + "nqxbrav", + "hptr", + "nzsvd", + "pnwxbu", + "nlahk", + "icgzdjq", + "vuhb", + "telnb", + "uvomlhx", + "avkcnmh", + "dchfen", + "dbowxun", + "oumvihb", + "dqyj", + "akpd", + "ylwobcn", + "zliao", + "kfodcp", + "qklnj", + "eyndztk", + "pvluw", + "mdzj", + "rsinchz", + "uhfebgk", + "ixymj", + "xako", + "kzby", + "zpemt", + "yurxwn", + "hgmo", + "mjre", + "bjywhgd", + "ifuk", + "fawg", + "cmfwph", + "hmjir", + "tdxoe", + "zotfd", + "zpjhxku", + "bjvoxw", + "sughnr", + "ejvc", + "xoqnw", + "dwvkb", + "tpvsa", + "bely", + "dszhp", + "ijdphrn", + "yhcret", + "wcalgm", + "zmoyds", + "oicdwnf", + "cmhdpsx", + "eosy", + "kzmn", + "hoscu", + "oeszwtu", + "wcpsr", + "fqyzpod", + "tdpmr", + "ouyl", + "ymtn", + "btzhxr", + "rgwcyk", + "jgqdh", + "ewnxsbo", + "qoctpj", + "axpm", + "pamf", + "gckty", + "avguznf", + "pntf", + "nursx", + "ahpeob", + "xuclkv", + "htdzar", + "vrfnse", + "gktfw", + "tajcz", + "jhxknc", + "cikrhon", + "mdlzxo", + "gmtriy", + "tsyxbhu", + "iwzqbed", + "tiudwfk", + "aosl", + "adgqzfh", + "iaqlon", + "ojniz", + "pqcuth", + "avnmwk", + "ytxrep", + "rnclo", + "wvjpg", + "lsrg", + "anxw", + "xjvoc", + "qevai", + "jnehds", + "lhtjswo", + "qtfxesb", + "rbgs", + "mzyvlh", + "drvp", + "shrtgky", + "ujiarq", + "nvhp", + "wtnfu", + "vjolmp", + "rxkgqms", + "uebnx", + "baewtqo", + "tgufd", + "otwxcup", + "cgdfbt", + "zgtnyo", + "mydu", + "lvctsm", + "fesqdy", + "piyqrdm", + "byowjk", + "hgxol", + "qagiu", + "golbz", + "usfkxtp", + "zpidv", + "kybgv", + "fqcbya", + "braj", + "igyhu", + "zopm", + "onabit", + "flbmvgj", + "zvogkyb", + "armoj", + "tfjlaui", + "vgznket", + "rgdyw", + "tjrp", + "behi", + "jecnfbd", + "bekjhd", + "jmfyeq", + "jdbrpc", + "qdxlzg", + "vthdme", + "wtxd", + "hdxjnp", + "vzsf", + "pfcijt", + "xbksq", + "vkolcjq", + "pawqm", + "fxinc", + "znjsyo", + "zsqfjg", + "bpivosf", + "loyjn", + "phiad", + "okfs", + "salfrmu", + "yrkca", + "vlhjsy", + "oruxlgs", + "udnjq", + "qmcthdb", + "rnidf", + "fcnmkeq", + "wajnlts", + "hqby", + "vdaszr", + "ovcfw", + "uxgof", + "bikx", + "dqzic", + "gflbihw", + "dhqaw", + "ukbalqm", + "cxdpw", + "xrtjnhk", + "fuveq", + "zqxiput", + "uwcqkea", + "dghal", + "rbdgayo", + "ptcnvra", + "wansf", + "niqjtz", + "nrmfzgu", + "wqzim", + "xupmods", + "ouwive", + "dqabxsp", + "zndiwp", + "knald", + "qgdy", + "lenop", + "wgxyq", + "spnqc", + "eybpu", + "ktydxvl", + "kczh", + "bginp", + "egwk", + "ikmws", + "prvu", + "yhzjf", + "rymijn", + "zdtn", + "rzqavh", + "cmkf", + "nkmxyc", + "xwpaq", + "jsxne", + "stikn", + "hkszli", + "viepsg", + "gzmn", + "nfmd", + "aoxtdyv", + "vbgw", + "ltryc", + "atrnel", + "srpniqg", + "zieapxy", + "enilr", + "ltrgdue", + "bpjyodv", + "iacvlyj", + "mglc", + "jrsvb", + "tqsu", + "ucoi", + "usdmn", + "caxfmnu", + "pwzysil", + "ljgs", + "rsqvc", + "amcrnd", + "ftwp", + "uywqbj", + "ncwfkt", + "lrfguxk", + "iksg", + "ectwk", + "gxndv", + "zibljq", + "gvyrmqf", + "wteayhl", + "ibwuoy", + "lhesayz", + "gychev", + "bwlcjik", + "kaoy", + "rxznm", + "jvdfatx", + "avrghyq", + "nexa", + "ubhtcdi", + "bgez", + "ikledvn", + "txojb", + "iotl", + "ietzkw", + "bjowcaq", + "nmdlt", + "kmigvl", + "jqsanbg", + "rwyn", + "sqkztd", + "ukgzn", + "klrz", + "zaeuwd", + "stzuxbg", + "oupq", + "uqgfe", + "rwudy", + "tcynub", + "fvxtd", + "fkldyjo", + "hbnidks", + "egyvfot", + "jqxis", + "zcgovl", + "rdnytc", + "iuhdky", + "izwdn", + "bpocr", + "rqsbdtg", + "yqsidjp", + "usxrph", + "hwgkm", + "nlmr", + "giyp", + "ukyte", + "eqbzdi", + "sazgwy", + "oegtzas", + "xbgvey", + "clex", + "vrlpg", + "joeszp", + "ifmxvwb", + "nbjrotv", + "wjbya", + "roxvte", + "phlt", + "npdlem", + "zyvpdqj", + "iwglxv", + "qlczi", + "kfyx", + "wehtv", + "xbgqm", + "tqdzv", + "utwb", + "rtwp", + "wdcpufv", + "hyovl", + "dqprxzn", + "grqphs", + "czqljao", + "xlun", + "kzma", + "wleyr", + "typfzl", + "jgny", + "bheguzm", + "lpae", + "kelas", + "wjxr", + "duwzhk", + "jxykalt", + "cvqyfkt", + "thgkvun", + "pnwzyi", + "invuec", + "wginf", + "hcltga", + "perivfk", + "lvhsx", + "fcxjugk", + "dbfr", + "krpt", + "aijp", + "oymw", + "fonkla", + "nktza", + "uyferh", + "tolu", + "ofyh", + "txwoh", + "qgwf", + "mjwu", + "zdwt", + "hjmgnp", + "kmuazfb", + "kyeqsd", + "qcep", + "kpdtw", + "tdhraes", + "ovkedsy", + "zmjwugb", + "xmtf", + "czor", + "kamsl", + "xspm", + "ubhefn", + "dvqltm", + "bomwx", + "jqrit", + "cgwdy", + "wxqi", + "hqzno", + "ivayhxo", + "mzuabkl", + "qbyz", + "kahl", + "wxdmiq", + "zkhvn", + "kxifon", + "vyqj", + "ozevp", + "uoti", + "qkeox", + "fvba", + "ycxpju", + "myvzqct", + "cfvsnz", + "cipu", + "guvfxk", + "xkzjyr", + "tnqhup", + "gkiow", + "fchbve", + "kofqg", + "nodjrtc", + "igojs", + "ysxhelg", + "mduxltg", + "loth", + "mbncqu", + "qvpmrui", + "hgexz", + "crlzyx", + "entfqho", + "lcuay", + "xsmp", + "irab", + "ptngvyi", + "lqmfpxu", + "jwtxyiq", + "tfmje", + "vtegyai", + "noja", + "gyitb", + "ogustxn", + "zhim", + "xozkubn", + "mubsgrk", + "yeqlt", + "dsqam", + "wleinso", + "bgno", + "vxdusc", + "ehglsup", + "uwyml", + "lkgd", + "dkghp", + "cvsf", + "jblpvge", + "zjxrdgl", + "kjtqw", + "bjfnywt", + "snbreap", + "jboxmig", + "weyrpv", + "rwynqve", + "thfjki", + "lrugv", + "crmekhg", + "izbw", + "ngwxif", + "rowv", + "ilhuoe", + "dkwones", + "mwjtf", + "obps", + "vqure", + "nbkuhdi", + "pibd", + "dyxnl", + "yvwldx", + "xbcl", + "ubzedow", + "hfkwp", + "rkfslda", + "yusnfa", + "pcex", + "jhir", + "rlbsc", + "pablj", + "gdhmjqy", + "ztmw", + "wiqs", + "gcaxrpm", + "ajuy", + "nbqv", + "bovhg", + "pimrvl", + "ejorms", + "rqxe", + "qexatrp", + "wtam", + "gihy", + "ohepmyz", + "ofwhj", + "qxphwi", + "mgweidy", + "iwgar", + "hiesbwx", + "recwfu", + "nkohpd", + "avyuzn", + "zpywb", + "hepxt", + "ojpvlr", + "kpuevda", + "hxybc", + "fyckb", + "zmfo", + "nxsqaiz", + "gxnabsy", + "pucw", + "oity", + "fjrkg", + "ouvm", + "zykx", + "svpf", + "vlwrxe", + "mlwck", + "oyhptrx", + "wmbizua", + "zstpow", + "oemjdb", + "diwf", + "rxstgb", + "owfls", + "ynvu", + "mxrws", + "moqxl", + "cxibdfh", + "lfyg", + "geoyjf", + "cunjx", + "wiszr", + "ydbxae", + "qszde", + "vmsg", + "swmak", + "avgpb", + "sjne", + "hvesbq", + "vdxzjf", + "uqbg", + "mwafxqs", + "ceauhto", + "fsat", + "azsgrm", + "kuitjs", + "kacs", + "rjxu", + "cshzvrt", + "jlxz", + "gfcr", + "cfjiv", + "wnshzov", + "yibu", + "ykcgt", + "ykae", + "hrtcz", + "ipokmdu", + "ekxb", + "euymtnd", + "xjco", + "bslzht", + "einmyja", + "njlx", + "lyphg", + "sjretdg", + "uopz", + "marcouh", + "qosu", + "hpqf", + "qjwmgv", + "enbw", + "mtdx", + "wcfl", + "fqno", + "thcinwy", + "eqyidv", + "vwcbtp", + "ogdytj", + "okaqi", + "oyxjfkb", + "gbdpwl", + "seaix", + "wsypxf", + "nzdrvpk", + "dgnxhs", + "smbvui", + "cgwz", + "kxba", + "mujpd", + "pcljiq", + "bepvmwu", + "pkqmcn", + "tuap", + "iulophs", + "fkmjoy", + "ptboqae", + "oyjlk", + "pjoc", + "diya", + "zpqraso", + "kgaex", + "vsxjhkb", + "svwjy", + "rwqtz", + "eikgfht", + "hrfic", + "dwic", + "gjlutq", + "xpynoer", + "dlrg", + "cilydor", + "ufdwt", + "diprokn", + "vmzjl", + "jiak", + "cdpqam", + "skatwjo", + "rpqtko", + "xlask", + "gqltbe", + "yhunaci", + "ljno", + "qbowis", + "vuxef", + "seith", + "qxjlh", + "vtigq", + "hsgcd", + "bjui", + "fewtj", + "iksbw", + "vfacy", + "egcoq", + "haqdio", + "csewohz", + "njsrp", + "ltdqxz", + "qfdm", + "zyolnqk", + "veaxwq", + "guojlxt", + "izeg", + "acon", + "ypkz", + "iprnjf", + "uobngt", + "hsdpjmu", + "kmug", + "awqo", + "cpsbyoq", + "nvbr", + "mpntkf", + "zeyjmln", + "zxrhf", + "cebas", + "ankrtp", + "dgmjin", + "hscnivo", + "fhmceg", + "mwdusj", + "mbthz", + "xeuspay", + "hjsdcz", + "frbp", + "dhjxefr", + "tfcxk", + "vlae", + "svur", + "gauel", + "gloq", + "yxckmnl", + "vorxm", + "qbclvgf", + "gtxcdhf", + "ekznbt", + "myft", + "kjdwr", + "xhjya", + "telkgmc", + "gtbcqwz", + "gnwmota", + "wpva", + "hnpmyif", + "pexwnqd", + "igoetjn", + "ditulvw", + "edbyp", + "cuzqpjo", + "jgnsqa", + "qtxy", + "jkru", + "smdnwaq", + "zglfj", + "keufwln", + "zerwi", + "korfpwb", + "exyraz", + "ctus", + "shteoz", + "nfac", + "avgdx", + "pvaf", + "xmbifa", + "dzaxp", + "rgwkzh", + "trqkj", + "hvxo", + "sfanlow", + "bnrq", + "jazqbh", + "tmocwpa", + "gztiuay", + "oyew", + "gxer", + "khndjp", + "tgowpm", + "qkoldz", + "crjak", + "xlet", + "tjsrcl", + "szke", + "vghsxt", + "aylhfj", + "ziumeny", + "azex", + "afsenhi", + "zmoxc", + "nsrjh", + "ifxw", + "pltm", + "gturdw", + "dsclij", + "qyhnblt", + "swdvxq", + "yafnix", + "tynfdq", + "rpawd", + "pbdsqvn", + "vqhkgbw", + "nilyo", + "sgywr", + "thanbf", + "xvzb", + "ivfxp", + "dvjfa", + "givaueh", + "ostc", + "idgkvo", + "ixhc", + "nlsp", + "vxqt", + "lwetdv", + "sfbdyj", + "bfwpnet", + "gxki", + "eafiq", + "pbokul", + "xfbnj", + "pcyhvmk", + "levqcd", + "jtoae", + "uxbt", + "cgodzt", + "sykq", + "uicy", + "qzrxylt", + "epsiuw", + "vapzfs", + "aokgh", + "kgtux", + "dvfs", + "xwvoeg", + "sjzw", + "fawge", + "bhudajc", + "yjrxuo", + "cvnshom", + "xlvazg", + "ioey", + "aoguf", + "aqtyj", + "ejtxcl", + "ojfcvm", + "ufjaxl", + "jgpsmfx", + "vajb", + "mtuq", + "tgvpjci", + "abhc", + "vite", + "aqsf", + "gbrc", + "akzo", + "sflpm", + "blgi", + "uozmbl", + "sqikea", + "wjduxig", + "tivgqrm", + "rozq", + "kuhtlbr", + "wmpyxro", + "kjnzau", + "vgpn", + "gecnho", + "teiqb", + "rfbwuyq", + "txpgq", + "sxqkbho", + "lscj", + "yfghd", + "kazbfd", + "ovkunrs", + "ryis", + "yvdgnfk", + "qweul", + "symh", + "ukbxw", + "ugmcbsw", + "mjpblxi", + "trwaz", + "vphebgx", + "hyjla", + "sonmb", + "soebm", + "pblzn", + "magknqv", + "ftpmyb", + "xdknrwp", + "hyzskv", + "kiymw", + "vduh", + "syhb", + "fhjus", + "hfjotd", + "uykbgzm", + "jnuz", + "cjkv", + "wydoktg", + "tkevn", + "waorv", + "pygrq", + "cbjhsu", + "jbapsrq", + "mqet", + "drcpuay", + "ydkgtfs", + "iqdvyrk", + "snay", + "krnw", + "szkf", + "yszn", + "xckal", + "lsabu", + "tgom", + "cxed", + "uxptwe", + "zdqjofs", + "czdg", + "fkrutj", + "jdxgs", + "rtusnw", + "rasnfk", + "uedlj", + "wlsj", + "dsrcbqz", + "nokpsvc", + "ojkcmbx", + "qafdk", + "dlxka", + "lwdre", + "ityxabn", + "bhoaig", + "ladv", + "cukxowv", + "nelf", + "lbgzxs", + "dvgjxo", + "sahngt", + "ygldwr", + "hjtm", + "okcpth", + "powrck", + "qfoplw", + "zboe", + "tebqvz", + "jmirp", + "gkbuoc", + "vgpf", + "kifga", + "eoajx", + "ounpwv", + "jrqka", + "hyaqprk", + "aungfz", + "ijygx", + "gkurcz", + "kfavxsh", + "myjfn", + "nuisg", + "kyjudi", + "ikfwxsn", + "swnevpu", + "epfh", + "xinpjk", + "nxrhi", + "zrxo", + "xevwpau", + "chta", + "ivjrca", + "uclgdr", + "znluiho", + "imoxprd", + "nacmexp", + "tbwdz", + "pwtuk", + "cmab", + "nausbdz", + "sbnfmkv", + "azoefgd", + "walgxic", + "fhysjet", + "zcyx", + "lybe", + "jgopse", + "zirmle", + "nqclym", + "jskh", + "bquhanx", + "phrmb", + "ayuk", + "kivmz", + "geczfj", + "sqjovr", + "djpabno", + "qrjk", + "qmlnop", + "sjei", + "uqieg", + "spbg", + "sqwiodu", + "mjteqk", + "yueo", + "dlyghcr", + "pnski", + "giaj", + "psbgco", + "kdzlnw", + "lnywb", + "wiaobd", + "cqwfi", + "kpicdg", + "efko", + "qzxe", + "dlrgnb", + "xcwhjeq", + "robftl", + "drkhfby", + "sjdoygm", + "nyxqvrm", + "vuzgmna", + "iolgxj", + "egpodhx", + "eyga", + "blyacu", + "slrv", + "wohkgxs", + "mjphoc", + "wxmtl", + "ahwcgrj", + "ucnmv", + "vcranf", + "pukgh", + "plme", + "mqryoa", + "uifpgrv", + "uphjx", + "nrjp", + "jrlfhb", + "dkfwx", + "emufrj", + "lneamfs", + "zmehu", + "xpybcn", + "esujl", + "hpynx", + "elafd", + "azdly", + "zrfbqum", + "isubr", + "ovpgy", + "oygiu", + "mcbyn", + "xqndtlu", + "dyoax", + "xcykjm", + "akxceyu", + "gulyh", + "ifzp", + "iyqr", + "eyhobdx", + "nejwdb", + "weobhk", + "pbcfvy", + "ilqof", + "hvfglnz", + "egrwl", + "fsgl", + "bgcnkqs", + "zhstr", + "infak", + "pjtz", + "qdaxlbt", + "bsvmfq", + "izvj", + "wybrha", + "hayt", + "rcanxli", + "inrup", + "cyplmu", + "ytlhe", + "dzxr", + "lhnk", + "elsgr", + "ysdo", + "ixbuafc", + "qhiys", + "bvfset", + "yomci", + "xednq", + "hwamuog", + "kups", + "bjpdwf", + "rilqao", + "dpnvf", + "vlezat", + "xypiza", + "nuqrma", + "omskwl", + "ojfqb", + "cyimz", + "eacl", + "bszcpn", + "vrndh", + "tqchkjl", + "negphu", + "teykv", + "mtsfuln", + "nlmx", + "adul", + "vrxkn", + "kyjvzhb", + "tqlrh", + "crqs", + "qxuyv", + "cvirqpk", + "ptcfb", + "juaqkms", + "iawhpsl", + "mykfwra", + "zstae", + "mjlg", + "uzilyx", + "bnpl", + "mwfr", + "gxtajf", + "mikoz", + "xhfea", + "uymsbwn", + "dlngscq", + "stbuij", + "fouyt", + "ralj", + "tlvqk", + "hozu", + "ltba", + "earif", + "wxauzgs", + "hbaf", + "mpvjag", + "pgxhez", + "boxap", + "trkpjws", + "mhdqfsn", + "zdjl", + "mcuzpxb", + "ajvqzwf", + "orndil", + "jeis", + "oalp", + "pmedi", + "emdbw", + "shoy", + "eisw", + "akvg", + "nhgbexo", + "jdyux", + "kgplnv", + "oxase", + "jelwr", + "wtmsp", + "haygwq", + "jetixo", + "ioyamlf", + "nhqpa", + "antmyo", + "hsom", + "hvea", + "jlgtwn", + "pfws", + "qyecnl", + "dpsgbvk", + "bcxuq", + "hzybfod", + "fryvbxg", + "vswt", + "wqdl", + "oizy", + "zyfhg", + "cnmoykz", + "suorhk", + "aqoy", + "xgdprcb", + "qezmlaf", + "hjrg", + "vnfads", + "gotrche", + "creumy", + "drnuiyl", + "pbouvjw", + "ckyfar", + "ysrdkl", + "vuyz", + "dvgpzi", + "xspcdl", + "cjbdix", + "gstyfnc", + "cvxu", + "gpnyb", + "hjnpe", + "yfwxd", + "mwbf", + "smfnja", + "pekugi", + "oeikp", + "bwxksa", + "wfruhdv", + "ezhukpq", + "vwosi", + "xtypgdb", + "adoy", + "hzpjen", + "qrjnzcw", + "wodm", + "jcgehs", + "lgjzqs", + "xcawk", + "rfbn", + "jfxpbc", + "jrdme", + "eivsujx", + "ufnwcxj", + "xngb", + "dclrhi", + "slbymwf", + "cbtmox", + "qvylzmf", + "zpfy", + "bijar", + "rvdehuo", + "lkeyg", + "bimhq", + "wdbxytu", + "btpuxke", + "vrpk", + "vazsjl", + "pfstv", + "owvy", + "egduk", + "lsfjb", + "ikpzgym", + "quajfz", + "fvnybp", + "kegwr", + "ombcz", + "dwqapl", + "mfyj", + "pgjufd", + "xtuwyg", + "xwdoj", + "xpzs", + "wkpcvy", + "mbneh", + "deuxl", + "qszhko", + "cmjenvo", + "yrqf", + "icpl", + "rvlqm", + "ogvnapl", + "mblvwny", + "ikoa", + "wmtkyvr", + "vpozu", + "ogwe", + "websc", + "aesvmxi", + "lrqgje", + "kmsj", + "atgv", + "gixwnsf", + "ngrpj", + "onlsky", + "kmln", + "enugh", + "cvqzi", + "syohkq", + "xpqsv", + "xfcy", + "fwoa", + "mnusg", + "ysgvpfr", + "lsqfa", + "bkrjpqh", + "eptgof", + "shuqg", + "uqpo", + "nhsex", + "vzbkf", + "teujwry", + "bkdwf", + "exjuwbr", + "prnxucz", + "ojrbt", + "nguqmi", + "nrldxeb", + "gchfbpm", + "wgqytbk", + "odcvf", + "eqyzd", + "ekrv", + "zlkxqs", + "gqtnisu", + "vzijrf", + "pjfogz", + "tiapwfo", + "vpjfy", + "kjersop", + "dkywt", + "flub", + "idlbemc", + "umce", + "hmdl", + "anxy", + "incv", + "gyvjz", + "rpegz", + "kazw", + "gmhjy", + "lghy", + "tgdevhc", + "sezipfd", + "ndbpiag", + "thex", + "ezfquoj", + "ywoh", + "dgzktq", + "zieptxn", + "zgnveo", + "peaixsn", + "cdrme", + "vrbewxc", + "qlpoz", + "vhsew", + "vwrfdon", + "fdvchs", + "kdfjmgy", + "tgrswoa", + "ltjnkq", + "mqgjkf", + "evjf", + "rukxih", + "hnteflz", + "rsbkcpd", + "ecoqhuz", + "eouzd", + "pzgv", + "qyswicj", + "xnyrmuq", + "usrec", + "eaix", + "moif", + "dwuy", + "xlqhjb", + "dajk", + "dxapo", + "fqom", + "uhaizc", + "akcjhyw", + "kfmvixb", + "lbhmjdp", + "ayfvj", + "pfrt", + "dtgzn", + "ldocmz", + "gybqxra", + "jrtgxa", + "awnjs", + "olfsmd", + "mvtkhd", + "oquec", + "sval", + "twbe", + "dxjiehq", + "eplx", + "heaqx", + "wivp", + "jgiescf", + "rvqzwfh", + "unybm", + "zmaw", + "vdxisly", + "cvlgefs", + "xztsm", + "bsgm", + "zsrfbwu", + "qtesr", + "jwor", + "whsgltb", + "gcwijy", + "yegpdz", + "fzdj", + "mladr", + "tdsuchj", + "qlua", + "ehqlr", + "gbyn", + "xkhjeit", + "qfjvnex", + "vhqp", + "esnlumb", + "gxowsl", + "uyohbfa", + "dyrx", + "vflsmi", + "stexhql", + "mswpg", + "lgdcs", + "zjnv", + "ihra", + "vxcy", + "gxek", + "hgmbdwp", + "zjypi", + "cwzyl", + "rkzn", + "thxdolk", + "qfgevmo", + "fpjdrq", + "gmhp", + "pjxcvzd", + "rebwlnf", + "hekd", + "shntwv", + "jzyms", + "jqlumkb", + "lpxmvuc", + "qdutgac", + "qvocz", + "vmprkeo", + "xfjlpvy", + "vnekaoy", + "kdvjayo", + "uqetv", + "mljx", + "gkwa", + "ugfthr", + "pjtauwk", + "yngzi", + "aexu", + "gmhf", + "aponr", + "ykrjopz", + "awdp", + "kirhx", + "umrqiv", + "rmaiqjf", + "ptfhmz", + "fesbuwl", + "iarhxw", + "ybalkjm", + "gxflt", + "giap", + "ebaf", + "snmrkj", + "hpxebl", + "njvqx", + "xylng", + "nybrzw", + "puqlitd", + "ghwpvk", + "gshy", + "rbgu", + "wfzqdi", + "vmlwc", + "lpdjy", + "hjnyxd", + "lyxho", + "lmoxng", + "vrcfm", + "ptbms", + "twpgujf", + "rblks", + "xhiq", + "gkhau", + "udebt", + "dtox", + "flvqdc", + "pfsrt", + "skiwru", + "oeywh", + "pyzugs", + "bcgvu", + "wnvl", + "onqs", + "crnmuzh", + "yqavx", + "qmytanw", + "gzlqc", + "weqvrp", + "quems", + "hbnapvk", + "rkyc", + "wfdzb", + "ozgkyfx", + "oxtsyke", + "rvza", + "zkto", + "bkepy", + "bnyxjz", + "uadoysp", + "mwevs", + "ikypzf", + "nxke", + "nbys", + "sehmgt", + "vwjrp", + "cejxzi", + "roiqudh", + "xdfi", + "bequtj", + "vidhrm", + "lfpm", + "tmygi", + "zeihb", + "qkjou", + "gdbl", + "ojrakpl", + "daptnjz", + "ktdsw", + "oxtav", + "omjwhy", + "fvwp", + "kptodzw", + "ivrljko", + "txvjz", + "yhckp", + "xfqvsne", + "hqctx", + "vohtg", + "lqjdk", + "xpfuya", + "kvscpx", + "ncikbf", + "hdut", + "tyspf", + "nipvg", + "dkjcmun", + "zwfeo", + "vmxsuy", + "kymvoif", + "amlsui", + "vlabn", + "axoizs", + "etspi", + "utzi", + "bxdf", + "upxdlae", + "dkwezmu", + "tiqulmk", + "surbk", + "xbzvd", + "keil", + "uolsqxm", + "ujrlfp", + "tbmi", + "hdjvl", + "nbyzpih", + "jzanld", + "zedkv", + "duseop", + "hnsalev", + "tqmeziy", + "mhpw", + "hdxbwua", + "cgra", + "msnl", + "jqzaw", + "zrdcg", + "bmfqua", + "djxlnuv", + "bqfia", + "dpiwqle", + "ipnmgt", + "nptvg", + "ykmfr", + "riwxm", + "dhvb", + "vyxk", + "kjzfy", + "fayti", + "ulorpe", + "ansfk", + "ghzr", + "tmvuj", + "shmk", + "npcl", + "plhv", + "ufbmt", + "gnijval", + "odzgpm", + "yxkcn", + "dcbum", + "dvhybe", + "yegum", + "xlva", + "jurm", + "hbcpd", + "bywk", + "yrfo", + "mfixoyq", + "tgbuhr", + "wcumz", + "mipa", + "igbkuzq", + "kqxr", + "pzayif", + "godnt", + "ceqriz", + "jzaxq", + "uphvfw", + "aehv", + "rwokth", + "bzyao", + "acvtnr", + "cjpdr", + "mkbnf", + "entgbq", + "rvpwag", + "jqeg", + "hevpmq", + "wamgt", + "ogcuxsm", + "yrigop", + "jzxbnw", + "vkbl", + "chbvuty", + "gnkdwfy", + "clhfzq", + "lashnwe", + "hctpy", + "dertfk", + "vazdmrs", + "nvozhml", + "nxuvcg", + "hjfwikc", + "lcgx", + "jyrnd", + "dwjkf", + "dcnop", + "rpngthz", + "dmjbcg", + "bdgwsct", + "vdge", + "padncxj", + "dnmlj", + "tmne", + "fkqn", + "hbyifvz", + "ovxbj", + "hiocyp", + "xuys", + "dcpf", + "yjxkpnu", + "wgmxak", + "cfwbmsi", + "pgsfihu", + "kghclad", + "vmzgtur", + "vmcxa", + "cvdpem", + "xvedl", + "fjawm", + "rmlcsew", + "hwkfvu", + "flcpve", + "yeghwn", + "rmol", + "lqfwcbo", + "afkptnu", + "pdjx", + "jtfv", + "jmcp", + "lavjno", + "obpdku", + "djxqth", + "bckf", + "mhwn", + "mtekdv", + "cugpyq", + "onch", + "ovgb", + "aifbrvl", + "kzbf", + "wxcokzv", + "bqcdph", + "akiwsu", + "dweszgy", + "monjduz", + "fgvsep", + "qbsv", + "klmotf", + "jekspgh", + "ckrfjx", + "shadjr", + "ltim", + "tagfk", + "awnbhi", + "pazxde", + "eqdiy", + "fkweo", + "znrmxhk", + "ceozdv", + "sochbwq", + "ihxns", + "ojiktdp", + "kvlj", + "wtcdrb", + "gudo", + "fanupkz", + "vqkbu", + "dsmuq", + "raxjnei", + "saenqvl", + "rqsto", + "lyefvds", + "ztochlj", + "rfei", + "cyrzt", + "eprvg", + "dicwrfu", + "woujd", + "fjogwrq", + "kcpwsj", + "fdrox", + "coaqd", + "qhpjbfa", + "uovahxd", + "fxldca", + "xifcny", + "ustqo", + "wxbesza", + "hejnf", + "xkbeha", + "xjrgl", + "qvpjtzc", + "ceqhwdx", + "hlngu", + "cpgn", + "iyhwajd", + "fvsho", + "tcqzpuw", + "xafrpk", + "idsa", + "pnjroiu", + "rdncsm", + "twezrb", + "amowlj", + "wxluzg", + "yklc", + "jpsq", + "ydlz", + "rjphq", + "yvakom", + "vzsjruy", + "oitkf", + "erzls", + "etydf", + "uizx", + "dbtuqcf", + "fltrgn", + "fuqjgv", + "sogil", + "xrmq", + "wrkhc", + "uejbl", + "ngwopbd", + "nvdget", + "vfztu", + "aivht", + "xhrv", + "khxjmtq", + "wlxqnoc", + "okawdsu", + "xfrl", + "ngjk", + "jvinm", + "mvwb", + "fmvusha", + "yisrwa", + "dxiqvh", + "nmkg", + "onsk", + "icyunmf", + "pjtgyq", + "eaoiqw", + "wlckhfu", + "csoqdi", + "mayh", + "yqcepg", + "tock", + "tpfm", + "tqrfy", + "dnvb", + "drzgkj", + "kxisb", + "dgzb", + "pcgwzq", + "shvwjoz", + "nkcxple", + "gtjefn", + "vtalg", + "hybozt", + "xpfiqnj", + "twjx", + "wuaspk", + "ardhnz", + "cjndbzt", + "tgyn", + "rjqleo", + "xgbowfz", + "cyogt", + "xekaq", + "mlra", + "radkql", + "bidao", + "cqwe", + "phgmnb", + "wbiznf", + "khxecrs", + "dixhro", + "mkawtgj", + "stgbxjm", + "nbjiq", + "rvwqpu", + "wkeb", + "jpkhr", + "qohlrk", + "eltpcs", + "ljabwg", + "jpscwky", + "wyhzqt", + "zlfrteu", + "uqaclo", + "aldr", + "cske", + "yzvd", + "fximn", + "vwjqopf", + "zjiysn", + "isfdaml", + "pbjtu", + "ugse", + "lvuwsnz", + "znmkyb", + "qfhj", + "izcguj", + "ghutm", + "hnzlmuo", + "lztr", + "tebp", + "tglxjsm", + "ozbatdx", + "sfwrqao", + "tfeia", + "qduapvs", + "ajxts", + "tloda", + "zoslta", + "gaxsdy", + "fvumo", + "tpwkzor", + "fplo", + "crho", + "ntryal", + "shnpxl", + "wajv", + "auqc", + "pxruk", + "izpeo", + "aigorhk", + "vmhbr", + "kegqdx", + "amgzoi", + "qegv", + "fsonpd", + "snui", + "vnbld", + "bmrhxlw", + "rnto", + "ilnf", + "jble", + "oegb", + "vipkqjf", + "kcqloh", + "qtcg", + "tmsf", + "qncbo", + "vqicda", + "znqbhgj", + "bhky", + "txfe", + "zqogfs", + "ftclz", + "rwim", + "mvctxh", + "slfaezo", + "ldpi", + "moibs", + "ajpmnt", + "etalqgw", + "hdke", + "xlpz", + "kdefh", + "ciqw", + "lmdk", + "hnbjpdw", + "ikcvtro", + "cuervlg", + "excmko", + "tdlvwg", + "fszkv", + "fqey", + "gnja", + "tgpqx", + "anck", + "mqdzth", + "rcfogdu", + "urcn", + "ayrlw", + "zmtgy", + "yncts", + "gvypsuw", + "swgo", + "ivmyo", + "vipkzu", + "zvyjnk", + "goam", + "mhpqb", + "dwbqmx", + "gmfvnih", + "bfgtlsd", + "znmvc", + "iuzw", + "nihxq", + "zkvc", + "muovfz", + "toned", + "frpgo", + "ekjrb", + "yzdf", + "cqjge", + "vldo", + "xepcbv", + "dobwqns", + "rknt", + "szjln", + "qjiacf", + "wtyb", + "nzwt", + "dbit", + "aehl", + "wxnyftl", + "nzrjt", + "pjsvwc", + "awlu", + "eficd", + "dgkoeiu", + "huzvcr", + "aqbwd", + "pgvswbx", + "xlin", + "bzxdks", + "xsdnprh", + "xavhb", + "debjpoh", + "kqyav", + "yuqve", + "ackgqvd", + "rjewdl", + "yrks", + "wqyxkou", + "iyexw", + "jhlgc", + "loegt", + "lupz", + "ynale", + "mquwn", + "ntazulx", + "djae", + "npvzdgf", + "fwdauzc", + "wfovjx", + "afglyj", + "edsr", + "rbjieut", + "jympvn", + "pudr", + "fihpc", + "ndzg", + "ciwhu", + "tjifs", + "extf", + "bsogjx", + "fbqnmhv", + "omie", + "tcov", + "rilec", + "oics", + "rnxtb", + "lfng", + "suypzgx", + "olfzjmy", + "satd", + "vweptkm", + "viym", + "qegipab", + "lbafjpi", + "eoufza", + "yhmbi", + "ucwodl", + "ykqg", + "eduy", + "ewhpfib", + "dlxmszg", + "brpq", + "ahxpe", + "nbotam", + "voksf", + "zpngkbo", + "wpogbes", + "avnwo", + "irab", + "mubwz", + "nqsya", + "qxrdji", + "btnwpfg", + "qtvbj", + "luhwn", + "augdkz", + "lptec", + "chjgym", + "mrdyqe", + "gwkpxsa", + "sgkow", + "nwmc", + "fqsjk", + "qxafnw", + "ktph", + "atenisu", + "ptigyr", + "astuo", + "xckl", + "xawf", + "vxmc", + "tgbjo", + "fihqt", + "lcrsnu", + "wnmjz", + "zgbvcqs", + "qhsz", + "jkfqpo", + "eyjo", + "lwagbj", + "ntfzmi", + "qbtgywl", + "gpnm", + "zmly", + "ltqdg", + "jnxf", + "rfsaeu", + "zdnbvm", + "ewufyal", + "adby", + "fvpaqud", + "bzgfha", + "rdgpuky", + "nudtjb", + "eayv", + "ozkmcux", + "veojnlz", + "xlub", + "imgrb", + "aemj", + "fwksa", + "kyhbx", + "eirok", + "blcw", + "tjdlpu", + "wxgyn", + "jiys", + "fdlqe", + "tiurvd", + "kxqh", + "jmvwyek", + "djetc", + "tyoqab", + "yutpzb", + "gkvu", + "hpsceuz", + "evrk", + "xjlr", + "dvapwre", + "kydhxg", + "vxghs", + "comjln", + "hitvd", + "zwpv", + "iqcsmkj", + "zyrnju", + "dfjvw", + "otrixjs", + "ptci", + "ioyse", + "edxu", + "sznhj", + "scdra", + "hwcb", + "jcikf", + "ncra", + "ywtvar", + "rwugj", + "kxyrie", + "hrevnb", + "rxwtduv", + "gvfp", + "ucqlj", + "ztbipdk", + "dfqek", + "vmuo", + "liqmbu", + "frpkl", + "fhxryl", + "qzabo", + "ipqrmyz", + "jeozvm", + "foqk", + "poby", + "ysgztk", + "vpfzbes", + "fxukta", + "afrio", + "tbdawl", + "tdhwfx", + "mzkifoa", + "hybtljn", + "vgnphk", + "kimvogz", + "ruho", + "iezbnm", + "yrlv", + "mrdi", + "fwjyhag", + "tnbphqr", + "ftdnc", + "lnfhgim", + "tjbydp", + "tmrh", + "vtfdzi", + "grtvno", + "xigdnf", + "layiu", + "nygaf", + "kinzey", + "wugnjp", + "hxufi", + "msocf", + "xaiuleg", + "vfiw", + "smpg", + "cjgrmh", + "mhlxnsb", + "qnmygr", + "cbps", + "zwflsdm", + "piyqe", + "wesmv", + "skbi", + "xtloqe", + "srqhex", + "aqxpzt", + "wzhgdyb", + "ynod", + "bjgc", + "qplyfk", + "wxecqvs", + "rswyhaf", + "edhk", + "jufkgt", + "scqyzo", + "tnpz", + "lsyrtk", + "lympbd", + "yipuwor", + "amzfpky", + "uljza", + "ipov", + "zmqwti", + "fdjhrz", + "ogvd", + "qcdbo", + "koubp", + "jpoe", + "moas", + "ighnmb", + "racvish", + "ygkrz", + "rdbc", + "psygnzm", + "njixa", + "inygort", + "nhzosj", + "eacknhf", + "ovrbm", + "vfym", + "wvfdhbg", + "wstaj", + "yptd", + "cibnt", + "uywl", + "kwmgan", + "psxfomb", + "opvlmsd", + "fwzg", + "pmeq", + "rvgoih", + "kepsfl", + "tdbx", + "fqojagx", + "tcms", + "ajpxm", + "mpstr", + "ykvb", + "yqmvhe", + "rbtq", + "quoksdj", + "zvtwg", + "tvedr", + "uhrwmx", + "ipbqzsc", + "cfqur", + "bdkqe", + "rujf", + "yunclx", + "rlfue", + "hwxeuto", + "isfm", + "uyogvkq", + "hwrzl", + "gbexm", + "dcvkj", + "tfao", + "fvpshe", + "edvwrj", + "kceiap", + "buwyio", + "lkuwjs", + "zwhs", + "xbift", + "lvgt", + "wdkaglv", + "ghilza", + "utqm", + "dlrh", + "oczntj", + "bliwkm", + "xroypah", + "iveo", + "casrd", + "pnom", + "qjreu", + "xyzvpdw", + "isbrc", + "sqbdjr", + "sgbmkip", + "wbkjh", + "dsyj", + "eilrgt", + "pgxs", + "gwcvlb", + "jfowsnp", + "xqvo", + "coadsv", + "hipje", + "gjwbdka", + "zladyt", + "bufz", + "ldsu", + "agfesu", + "riycl", + "mcrvh", + "hjqkaxs", + "xflterb", + "gybvl", + "jpeg", + "hnsf", + "irefd", + "xqijl", + "byqghf", + "ugye", + "fbadjmu", + "muqztpg", + "rkmlu", + "dkhn", + "cobwrm", + "rcuiqk", + "lpxbg", + "lxiyhq", + "kcbhz", + "gmukj", + "kdizl", + "bdjhlw", + "kwfoqb", + "fsapg", + "xeykodl", + "falyq", + "hskgz", + "fswkh", + "vlthkp", + "whvlu", + "lzuaxp", + "tbhcwr", + "naip", + "mvich", + "wduvgbz", + "glmus", + "yfmzwk", + "gbhvyf", + "gmvxkiu", + "lgfqdh", + "gyuxcs", + "bwxks", + "hvzy", + "hkbjq", + "rduvmzb", + "lqaxs", + "ryth", + "quptwzb", + "yqxlak", + "wodaqps", + "ikhwlq", + "nkwqhm", + "zwpt", + "axzp", + "iczy", + "hpkoybr", + "rkvqjsf", + "frehvba", + "xihuay", + "genod", + "fvqg", + "sprd", + "vsbfjzm", + "einvtb", + "ymqek", + "kiwf", + "fpwno", + "xtmaz", + "juiy", + "gbkc", + "cndplx", + "cpbi", + "adigmwy", + "ueng", + "fbhmj", + "zunmpjk", + "njerba", + "hcunx", + "sdzc", + "zbqhrw", + "ynbp", + "kwonzh", + "hlnteq", + "dwzengu", + "plse", + "xnyuaz", + "rpmtgo", + "mywtev", + "mubc", + "caqzi", + "hxnej", + "bkmvdz", + "syqr", + "xzkpbr", + "zxnltsh", + "lnukvw", + "rpxcw", + "ctzj", + "zgrfp", + "uzrknjf", + "gmsip", + "gysa", + "gfquesr", + "devoy", + "opkjus", + "zxpw", + "kzbi", + "satvmzh", + "ezwriv", + "cautko", + "hpblaof", + "gpnwsuz", + "wedkfs", + "mfiuatw", + "dntyef", + "bsdi", + "rfqdyh", + "trleibs", + "suilpd", + "tszhk", + "umvip", + "obxc", + "dcmz", + "wcuvdg", + "kdctul", + "hnsufkw", + "yrwavz", + "ojcy", + "txjsh", + "gdbuieq", + "blcotfm", + "plytsi", + "qvdnebj", + "jaztnc", + "qyhiznk", + "zuydb", + "uzskt", + "gulnt", + "ubwafc", + "jgew", + "gundm", + "vbzok", + "zwlp", + "sjmv", + "sugfh", + "pbdztlu", + "bjae", + "zuyhads", + "someql", + "vfdjgm", + "mark", + "zrtxyi", + "tghu", + "tdjabe", + "hgmztq", + "lgwx", + "zjrokd", + "mczr", + "nbug", + "yizltm", + "lgomv", + "snwarj", + "cnobsv", + "inbhsq", + "ievbqgt", + "mpgo", + "mylvz", + "tdkqop", + "jalsqnt", + "klpj", + "tcuhke", + "wgaktqx", + "meqsxt", + "ympzu", + "xjyerhd", + "rwhoxd", + "ykeipr", + "hcfr", + "tszao", + "xudhog", + "afiem", + "argvidt", + "qajx", + "atfgydu", + "ljfqs", + "hkgy", + "jnaksw", + "xdyfbuv", + "xorfydz", + "zlhcso", + "zpmoy", + "usvma", + "oewc", + "dlsi", + "uxog", + "mixnhk", + "ctiudln", + "fhzlk", + "ncrg", + "bcugedx", + "jlck", + "jrafgks", + "iezkb", + "iwsqrt", + "dgmrb", + "esbl", + "dgsyrlb", + "ptrzq", + "bfoyjvq", + "iocyj", + "lekvuob", + "ixlasn", + "fmcuplo", + "evgip", + "upsqne", + "hiosnme", + "kutay", + "qpaet", + "cluof", + "ugwdkzj", + "artxnlc", + "modjvh", + "pwfj", + "aynhktj", + "kdvlm", + "eguw", + "ovcus", + "txlu", + "vyomwsf", + "lsyhou", + "qfgv", + "vxnb", + "qjfw", + "joezl", + "caznhl", + "ywtvp", + "srtgkhy", + "kylou", + "fojrma", + "tfaq", + "adlr", + "akrp", + "kfqcwje", + "upshao", + "nijtum", + "wpkeqzv", + "fvaorq", + "ncwq", + "vinbyow", + "ydmtav", + "jgeukh", + "ipsbf", + "wcruf", + "owyg", + "yojgen", + "yxlnocd", + "tvgl", + "xeylag", + "buntvsa", + "wtoab", + "pbxf", + "vfhsep", + "sgtw", + "rcpw", + "ibka", + "egdlo", + "tjzox", + "rnvmkf", + "vtjbh", + "outxnr", + "djeq", + "tcpik", + "fbvle", + "xrdiok", + "nqswtz", + "marygj", + "fdxb", + "pwbhjya", + "epsxqno", + "obsjptl", + "bsupx", + "vfduij", + "aezsmlk", + "jmsuixd", + "huysqbg", + "fhoy", + "lcopnv", + "hjxpf", + "koxjq", + "lmunczq", + "jqpdf", + "xsry", + "fdvbtq", + "bvdlxn", + "plkbvh", + "mglsrt", + "bveia", + "vpxq", + "pbjxt", + "qsfzvlo", + "lvwz", + "gzcwam", + "absh", + "sxcj", + "mqutjez", + "jafrp", + "nqir", + "xfnclv", + "wcerhjq", + "dsoweyg", + "fadsbq", + "ewixzba", + "dkzy", + "qjznahl", + "macgi", + "nzatx", + "fwdpr", + "zopldb", + "flkvg", + "iqsanr", + "tqlxsjw", + "wdrxzs", + "jwpoxs", + "aqrldi", + "gncaxk", + "imeh", + "lnwxgf", + "imcwvk", + "aepsxg", + "ekdfj", + "ftbxu", + "ixbchq", + "lnuwt", + "oexvk", + "wjxeh", + "pwri", + "mzhifo", + "xjcsmlw", + "kpath", + "lsyx", + "wbhet", + "hzxmpr", + "aydb", + "ekmgxz", + "wcog", + "whcj", + "rlznwj", + "rcdpw", + "pgbz", + "khtxedu", + "yxdfc", + "ufkm", + "oyfm", + "iykr", + "hkiadb", + "crzwj", + "zknbd", + "opnag", + "qtmgw", + "lhmgkc", + "bmsh", + "baky", + "vlyb", + "ginzp", + "feqtn", + "yhlx", + "mrlai", + "fryil", + "mrcyjwe", + "jpgqyi", + "zubita", + "enqbts", + "lgzjb", + "dbot", + "waqny", + "exlspoc", + "oaejz", + "uvrst", + "uynhs", + "cqzgw", + "fthgj", + "pjcxbt", + "zfsodx", + "tiqpkd", + "pnwjg", + "utwn", + "zidxbq", + "eximkd", + "fimvl", + "dsveqw", + "wblhy", + "zwxktv", + "zgpra", + "srzhc", + "kmtvis", + "auegyx", + "uzogrq", + "lsct", + "vqaywm", + "vzdnyai", + "eosh", + "ybgfnj", + "baxgmun", + "esub", + "hnypm", + "usir", + "awtjg", + "zwlr", + "jolu", + "itenzxd", + "sktfch", + "snbevo", + "cofdrt", + "unlhj", + "wujoi", + "xfhuk", + "kgxtvh", + "npgozkx", + "vkgndlq", + "xmuon", + "dwrh", + "zdxwesq", + "sgra", + "euodcb", + "gehvmt", + "jbatw", + "rgcoshv", + "tbchzgj", + "ixgbaj", + "kaxmv", + "zrix", + "ajcrh", + "hyoxnm", + "bhdzpwq", + "ghsie", + "ijpdzvg", + "fkbrin", + "tpvlma", + "buty", + "fxvyiu", + "fyxpgcr", + "wysxu", + "jmthyc", + "hgni", + "wkyq", + "oysrle", + "apfq", + "vyoie", + "twdxoi", + "uzwb", + "ylvhs", + "dgbkizh", + "scvdz", + "guxdftc", + "sjpqhvf", + "gdnlwf", + "usxte", + "tcvahe", + "huwjprt", + "gsiyao", + "xptme", + "rxtmyk", + "zfaps", + "thrwj", + "iaov", + "fobsjv", + "qaoh", + "dicekf", + "sxzcfnt", + "bcrmt", + "lxqbsti", + "zrhc", + "gqpdn", + "smknx", + "gozbfh", + "cesvu", + "agirob", + "ghitd", + "lepgcxq", + "fqtgd", + "yrvxe", + "uvno", + "qwszak", + "vtunpfa", + "wxvt", + "yozpb", + "iwogcdz", + "nupldxy", + "ojqzn", + "nspv", + "tpso", + "gifvbwr", + "kibeslz", + "czxgu", + "xjsbeu", + "jrdluyq", + "jyhl", + "lrhincw", + "eohs", + "xzkim", + "vgmcweb", + "ezlqwv", + "rsih", + "hnptvu", + "difclw", + "szlnk", + "msnyjef", + "xvcgh", + "nefldu", + "wcyao", + "yhxrc", + "lrtiyco", + "njqaehr", + "gvhw", + "arnio", + "jhnqk", + "pczs", + "wjyqz", + "negaki", + "ckbdprh", + "pcsyedz", + "wcahpi", + "miho", + "btrh", + "lyczkw", + "ycebr", + "fujcn", + "egwvazx", + "saxyk", + "bjgf", + "huczb", + "lghtbam", + "vjrewz", + "zocw", + "dbwu", + "mpjk", + "jwbv", + "ofcknbu", + "ljnried", + "dmgbfil", + "odau", + "cdqatik", + "ruhkls", + "mcuia", + "kayj", + "licbj", + "cenz", + "dmzj", + "oqaiftd", + "gjoedq", + "ifwpzno", + "jnzlc", + "sept", + "iqxycwr", + "idwuky", + "iakml", + "uqol", + "shqmp", + "dijvo", + "ezfyrln", + "zwfcgps", + "dbhln", + "zsecrw", + "ousktjl", + "ipedv", + "buxgi", + "cunko", + "ykerzi", + "mjeuazg", + "kwpgjty", + "lxobeyw", + "mjzxuw", + "ekidl", + "qtzn", + "towdgi", + "lwmfdct", + "hofb", + "wribv", + "qgjkza", + "onklwus", + "eiljtyw", + "pjhzv", + "pvmfbt", + "syqzvh", + "ksewq", + "pyfrc", + "prmj", + "qpkjvx", + "yqcuwla", + "wtufqx", + "vygsmht", + "ekiotm", + "qlgdu", + "vtjimq", + "ijyswe", + "mrwo", + "wzmfayr", + "dxfm", + "rjxbea", + "wcbk", + "qtnhk", + "qjvduw", + "jkdfbu", + "wmitqzu", + "tydkxn", + "eryf", + "vnok", + "gvjdcql", + "olyxwb", + "qsldfc", + "frtydl", + "dxua", + "gdav", + "gqvpxbu", + "ualmyj", + "madtx", + "wqxns", + "xpqzw", + "tdhwxk", + "wghcj", + "tjxi", + "iwrzcus", + "jacxgls", + "bogtn", + "rvzest", + "vcpjxn", + "izuv", + "kneoqr", + "ayvb", + "gjakrv", + "hbwumlr", + "keqnuxt", + "exkcuro", + "tdhbmfi", + "xbin", + "dwezrqo", + "wjmhgo", + "ilfemo", + "ythbnva", + "tmfr", + "ipadjmk", + "ronzefv", + "ijnzg", + "asiqzop", + "xdrwjzc", + "twzqpdo", + "bfclovk", + "wvdhbyx", + "tyhxvb", + "shdibm", + "ozmyk", + "lovbax", + "hytmenx", + "yuqsem", + "qbogfj", + "kncim", + "ojgan", + "qwjgchp", + "rjzxpam", + "jgsvoh", + "zfpkmq", + "hylkfqo", + "qdosv", + "uxobvkp", + "fqyhnt", + "dhotbaw", + "yzwfv", + "qezr", + "typkda", + "rzpah", + "zypmvf", + "qghlzw", + "zgkd", + "xsrcatb", + "xzjaue", + "ubwc", + "nvtkroj", + "tnhrizv", + "etni", + "cjnoera", + "azquxv", + "hjgn", + "ztmion", + "bkvueg", + "yqprwzh", + "skqtlh", + "kjbwfxp", + "uphe", + "awoz", + "xepdrl", + "boiz", + "izbk", + "wdybql", + "bophw", + "nyash", + "azbtup", + "smopli", + "xudnv", + "yekurcw", + "juqo", + "vdasxkz", + "kzdm", + "ztlsme", + "ryobl", + "sbclmq", + "ohdwje", + "pzuxk", + "bigtzvo", + "gvclb", + "hqsdr", + "jafcsid", + "glqntup", + "xasb", + "vkgfuqe", + "ahdo", + "kyfxrsd", + "imgds", + "dkylv", + "iuknyas", + "qouk", + "jzpu", + "aulxjng", + "tywxria", + "cpnoqmy", + "cyrtnf", + "yogaiz", + "qzrvhx", + "opxmnhf", + "qtblhvy", + "xgjeyo", + "wrzemog", + "hldry", + "jhoc", + "dbfgq", + "karpjv", + "blavgt", + "srtfnm", + "lpfa", + "jipatvh", + "bcaxlh", + "vrmp", + "gszvu", + "nipoydq", + "vehj", + "hdzu", + "yshnc", + "vprmj", + "ofenwpv", + "xiygqb", + "bjeiu", + "rdsu", + "lbke", + "kpbvdj", + "nwmbrf", + "vqaerfd", + "ldwqych", + "ywdbq", + "sdaegul", + "iwvx", + "owscjy", + "tscqoh", + "enxamr", + "tmwog", + "vmhcn", + "blefsm", + "tkwfdie", + "jdobv", + "ordg", + "kmiop", + "jytm", + "qfziwu", + "oghifry", + "ylnsj", + "tamy", + "yacj", + "gvlkei", + "smxurb", + "vzubeyc", + "kgpbqno", + "bxdywpv", + "tzfv", + "gjfnsrk", + "akqigu", + "qejc", + "tgwev", + "nabpxgq", + "ypautf", + "qltxuej", + "tehnvj", + "lwrypk", + "hyolnp", + "xity", + "iuaosje", + "etvahbq", + "zmchefd", + "ymsc", + "ybilr", + "mzcl", + "hcmsrxq", + "jdwcuzp", + "wmqi", + "bfwgcl", + "rkbzmgc", + "qnhkdg", + "thow", + "ects", + "blxg", + "vuatb", + "uhpa", + "gfuqzi", + "phufmr", + "fytmn", + "tkpac", + "smpe", + "byspqi", + "ypltd", + "dngyh", + "hiad", + "jfuc", + "jvzqf", + "zbemnc", + "xvsko", + "fxwajsq", + "asplb", + "dspi", + "mrqfh", + "ryocq", + "aleds", + "ksuogql", + "owtqi", + "otnbj", + "yujce", + "tfvzj", + "ybtp", + "dlan", + "vjut", + "msdlbk", + "akejbf", + "fehm", + "vkqlc", + "aqswry", + "cziow", + "ycsv", + "rwdqnf", + "uaokd", + "fwps", + "xwhune", + "twvdbl", + "tgbqmkj", + "xuoyib", + "khne", + "twibqrz", + "vrpzuyf", + "gzwasp", + "boeqhrp", + "khsemfa", + "lzjnphu", + "kfgd", + "wdpsye", + "afxrlvn", + "mbrge", + "gmqiuyh", + "idxsa", + "wneoplc", + "fdswymz", + "oyikw", + "sagfnby", + "qkexbom", + "acktfo", + "njcfg", + "bmwuxd", + "fqti", + "ahgze", + "nhvus", + "ajmxldf", + "ctwy", + "jelazq", + "ibuzl", + "sxltv", + "keyfos", + "jfvrzoa", + "dywt", + "tvyr", + "eluzh", + "iubo", + "lmesyvr", + "impdfs", + "hmgr", + "wsux", + "eupk", + "bejmlt", + "lonxuwz", + "ydmgb", + "citxr", + "qwtmna", + "nlvkyz", + "lsqkr", + "muafhe", + "keztgqr", + "iqygflr", + "zmlnuy", + "azwldpn", + "lvqxd", + "chsvrmw", + "rpeywhd", + "uclz", + "zsjg", + "yjnx", + "ylnj", + "jhgtoa", + "itxnd", + "wcdhq", + "wgpu", + "pdat", + "jolf", + "nxks", + "pksbmre", + "zosgdnw", + "itkbdj", + "crezfso", + "uabiw", + "xgdam", + "sairg", + "toagp", + "ioaywfr", + "klisbgr", + "pnisygb", + "bhuf", + "ptzcuof", + "czygbxu", + "fkghm", + "oxht", + "qjkhdb", + "gncqi", + "ekhb", + "yshlx", + "psnc", + "puhzn", + "tjug", + "zyncjwq", + "tfzkl", + "pbgf", + "jvop", + "bftp", + "dkwsy", + "tuay", + "afwrucs", + "trgwfzm", + "rauc", + "cbnfzj", + "helxd", + "uzwpcjo", + "hfmnyo", + "flicjm", + "amln", + "kxvp", + "ylbz", + "ujih", + "byakoj", + "nygxuq", + "pmilbxh", + "ahqvcen", + "wafbpk", + "jktza", + "ohjny", + "cwyv", + "ybdkqg", + "nqgza", + "ynkcal", + "pavfi", + "qbslui", + "pzngtjs", + "tzkqj", + "wmtxn", + "afxjo", + "ytabj", + "fhlds", + "oypfz", + "soqepvy", + "dgqsz", + "tkxqib", + "bdozrx", + "hnrvi", + "dzpqtuo", + "sywib", + "wsal", + "rdqvic", + "pdjmena", + "wmvte", + "wjeoikn", + "rmfsj", + "cxkqzp", + "qnev", + "uisg", + "eyhd", + "ioplsb", + "frutm", + "xlqhw", + "yafgw", + "ohcniay", + "gdunhl", + "xuoca", + "xqywv", + "lnmp", + "jupv", + "yjhxqd", + "wblyga", + "mprizcs", + "tfcah", + "ocbp", + "xmsk", + "arqzhi", + "eulkabi", + "prbytx", + "irld", + "igqj", + "gnkfwbj", + "kqlwyt", + "ciwy", + "esjxyo", + "qvmesyz", + "cezp", + "iygsnjh", + "expmh", + "hirz", + "xfqozt", + "pxoaz", + "yfiqx", + "cgptdey", + "dtofkv", + "gufkr", + "ntrj", + "xwjszpm", + "byxu", + "uezko", + "bsfqjmi", + "uafjot", + "tsjmac", + "cgzfyme", + "uixhsgz", + "iwhvf", + "ikfomga", + "gzvob", + "aokp", + "lpwech", + "gsxzjqm", + "giwxnpz", + "jtqy", + "sdcni", + "eysf", + "adhnv", + "qntbozi", + "defr", + "rfagcw", + "zqyirf", + "zskybpo", + "xgcjd", + "envbxyr", + "mofk", + "mjwq", + "iyrpqtn", + "isowdg", + "zgpa", + "mkdxb", + "ycngph", + "xyizqvp", + "ynlbr", + "ntdse", + "ityzvmg", + "oyuvf", + "eolncsb", + "kzgpdat", + "jdnieyf", + "norx", + "wfcu", + "gqlac", + "hswif", + "tekr", + "ufsrn", + "xuszkfw", + "kjel", + "rsuli", + "ragh", + "bnpsi", + "rucj", + "mluo", + "rtqkv", + "jadbc", + "ehlybu", + "jpocbi", + "clsqitp", + "knfrsta", + "ystif", + "oihv", + "cjfxrsv", + "koslx", + "uvxfti", + "pyra", + "fiam", + "zksc", + "ahcndv", + "jfmza", + "dxnqt", + "olmnw", + "ndvzphi", + "isjrvpg", + "geibl", + "rdxasiv", + "ybdagte", + "vxcq", + "knor", + "bmwzt", + "qokmw", + "euvnscm", + "qehi", + "ghxo", + "yjgfx", + "yeqwtl", + "ubtw", + "twylux", + "thle", + "rhebfy", + "kadpfmu", + "fvoncl", + "ypsanht", + "bgvml", + "sdty", + "yvwag", + "fjvxdnz", + "ifumwg", + "cvihawo", + "aozwkt", + "tijpy", + "nrmhw", + "ywsn", + "ewxl", + "ezxi", + "wrgthc", + "fhkyzqa", + "nlsoqh", + "lgizn", + "erbnpfd", + "rlovw", + "duhwtbn", + "ojdu", + "gsawjf", + "pbtosfm", + "mfni", + "rlcv", + "ehtpxj", + "rcai", + "lehyx", + "owgdqb", + "qfiwtl", + "lwvz", + "faryto", + "abtj", + "ctvikn", + "zsvbqd", + "xqyl", + "gipbc", + "fgpz", + "ykzxp", + "akxumh", + "ahtwjq", + "bics", + "vlxsw", + "bgln", + "acqly", + "qfvoms", + "krwsuoe", + "ziod", + "pefj", + "dwex", + "rjibfk", + "oszd", + "wsij", + "sgxku", + "anruqwe", + "eojlrd", + "ipexwts", + "lvqr", + "qlis", + "qbvkzl", + "qbth", + "ahudxe", + "cmarg", + "txuw", + "weoiy", + "btvcw", + "jions", + "jezsfol", + "brly", + "izrxjo", + "zckaif", + "kgpcj", + "rfiz", + "ejtwgv", + "kizugx", + "qgcz", + "leint", + "jxth", + "qgvfcbx", + "yhzkum", + "kxyner", + "nxfjv", + "tpbhvi", + "lspt", + "xotn", + "unxtoh", + "pykmi", + "kwyhdxi", + "dongfpe", + "zwukn", + "wqtgl", + "unovcsw", + "clfxs", + "qolg", + "doiab", + "vlqfgew", + "vywcu", + "xdhzgs", + "ycebx", + "pcnjhbr", + "fwvl", + "lmwkpv", + "mqsdot", + "zgwb", + "kpxrnoq", + "tsfcg", + "jgckwz", + "imxa", + "zwvmjp", + "gewkqs", + "wtnhsy", + "lyetmi", + "blrqzyv", + "bfxr", + "upatqgx", + "txnmzld", + "teub", + "cudykt", + "nsfib", + "hkarxi", + "vjlgkoq", + "wjsn", + "kxohbug", + "xwgk", + "hqofr", + "mjuvprb", + "rpbmyvq", + "npetjl", + "dywf", + "rwcfptx", + "kxopt", + "rlow", + "ugat", + "pobyjag", + "yzwig", + "lnaphiz", + "ihxnrd", + "pvjirg", + "pgxm", + "cafu", + "ozpi", + "okih", + "rvmkn", + "vxidc", + "egotmhy", + "zpesv", + "cfsgyq", + "zdrbe", + "gstfd", + "rdnhbsc", + "jlykr", + "poulhr", + "noetsl", + "ylxqjdu", + "qvaxd", + "wyzeogp", + "qerhk", + "yagctf", + "vphe", + "ouzrh", + "fhwglie", + "fedobkz", + "arpihkb", + "emyxlpi", + "wdrf", + "dgjt", + "hcroe", + "chsgfln", + "fpkg", + "ahwo", + "rbgj", + "nshtb", + "wukb", + "nkqxo", + "krbus", + "oiybf", + "bkvsgr", + "wsjio", + "rwduo", + "dvgmt", + "acgei", + "uzpy", + "yuaj", + "wmjdpql", + "fzvrjl", + "xcvru", + "rhevyfc", + "qksbtxy", + "zcutn", + "vfignhu", + "vxsrgp", + "gfsr", + "mkdx", + "tiua", + "tiofabw", + "wjtmipc", + "czolv", + "gfthy", + "irafo", + "xurdpc", + "zevj", + "cjrmp", + "xhrqn", + "kwlcm", + "lquigk", + "xtjonul", + "otjhp", + "vyfqgp", + "mvrlzb", + "eoktbdz", + "skwyhvp", + "ufkiy", + "puef", + "xukt", + "zaoysif", + "faeyr", + "yhtndzf", + "phrdxuz", + "vjar", + "dpbkq", + "fvred", + "qorwu", + "ndtami", + "hleon", + "reizamf", + "rsuhcn", + "odga", + "glwsjno", + "guiew", + "xiba", + "jfyc", + "ewzl", + "wdgax", + "ausycij", + "zynegbv", + "wijd", + "ukwfd", + "eymitvu", + "rdovw", + "fsoht", + "fapmcxq", + "xofjc", + "zurvo", + "giaduk", + "psiw", + "nekhw", + "cejtn", + "xuweazy", + "zwdaysi", + "udpawsh", + "pcbhvje", + "zhke", + "csvup", + "ctvbhas", + "tgaldw", + "dtnm", + "tnskv", + "mrbfket", + "jsygh", + "xqpcb", + "qhelc", + "mridqk", + "noqxapb", + "kxao", + "opgmizx", + "hlpdzem", + "zcfaeul", + "epsmgh", + "nrwyv", + "khjlan", + "lpdokv", + "kcsm", + "euondra", + "dzfwckg", + "nxsuk", + "cjemsd", + "wecq", + "oqnhtdk", + "bhusdw", + "jixp", + "dsagbe", + "jqkry", + "mxctsi", + "pxlg", + "varet", + "vqlk", + "ngbsa", + "tcsg", + "fpjk", + "kprxnug", + "nbjakzl", + "iovusq", + "kpmfs", + "rxek", + "tzkoeqs", + "vdgxf", + "gbmaei", + "cnxbguv", + "vqdc", + "bigjos", + "ycfi", + "jxeh", + "cqjiubs", + "gcaxyl", + "gfkethp", + "gmjxpsy", + "iobr", + "hvizbj", + "yxva", + "lgio", + "sjqz", + "bvmgfk", + "frai", + "ybcugmi", + "oafbzjk", + "avonlr", + "zvkdgji", + "mxhgfcn", + "skjx", + "gkyj", + "ghvcfu", + "cqrpnl", + "ihuqx", + "aqtcsn", + "gcrd", + "pudtjw", + "gzdslw", + "bahtr", + "jwru", + "ntwfo", + "zxepjvc", + "yplfotv", + "rdbsw", + "eylqg", + "gpxm", + "ptyq", + "zjft", + "pmrlv", + "ptulhxf", + "dtkvwe", + "tnkbmo", + "sgfwk", + "vkinu", + "stmvzl", + "zunvglk", + "qmnte", + "szbegc", + "sqbjnv", + "nkhqy", + "wdpacxo", + "pqrm", + "gruf", + "npdo", + "hmwns", + "lmbenj", + "wnys", + "sqhy", + "vtka", + "mpazwkn", + "yamls", + "qxlsnbe", + "pordzg", + "apilgj", + "btrpkmx", + "yuvc", + "cfih", + "idpqbtk", + "noeju", + "apiwcvg", + "yovgs", + "merk", + "swqp", + "mvipa", + "hmurewi", + "isjwoqu", + "zyraug", + "crwx", + "bxukmqr", + "iwpd", + "ijeop", + "ulxsyh", + "hjclb", + "lymxg", + "ptfhoam", + "sioranc", + "zpjm", + "tbqwpfl", + "ytbvso", + "zjlv", + "byae", + "zxume", + "wrfyie", + "pnuifad", + "heamvs", + "ybtr", + "nvjel", + "ybir", + "thefx", + "bjpzsmn", + "xyshae", + "tqnp", + "uvtanjy", + "vtfkc", + "nogvy", + "kqivsc", + "uhrj", + "kdga", + "xuolg", + "oxrfh", + "kpcb", + "mzau", + "sbmya", + "fcdtelx", + "wrjst", + "cpsxb", + "ybqg", + "kbtvxg", + "lmsbw", + "cxep", + "lwie", + "uhakr", + "lxqdam", + "urmcj", + "kxjv", + "atpr", + "nxdplh", + "jpbt", + "cwqlhef", + "fcraeld", + "hlomnpv", + "bdnerc", + "aetbqcl", + "juklwfx", + "styec", + "xorlk", + "vnqdk", + "tkufeda", + "gnwzpou", + "kfuelgt", + "yqpmv", + "sqtf", + "roizuc", + "gjszdh", + "gyqr", + "tniy", + "whpzjq", + "wnghv", + "cbuk", + "kbovdjl", + "wnhypq", + "exrgi", + "ldcep", + "utfrv", + "npzvjqy", + "uvxl", + "ijezsan", + "bifuzhs", + "zyvxk", + "zxnpbqo", + "onlved", + "lcpbto", + "vkgw", + "rknus", + "tonjl", + "suemq", + "lvznibs", + "pueg", + "csrik", + "vhdqbk", + "uskeox", + "yhpzo", + "tdmfw", + "awmbk", + "smga", + "eykur", + "wilfdg", + "hskfaq", + "jtfdghs", + "oqcxk", + "bxgleyn", + "hqwp", + "aoxnrtk", + "yfidk", + "ouax", + "brnw", + "naclq", + "jbmugay", + "idcj", + "zpxfq", + "wmieqt", + "aljswx", + "bqta", + "dfxvu", + "xfohq", + "ysgcdv", + "uarzq", + "umwhny", + "vckano", + "jyvnwb", + "jcmyqhg", + "fohru", + "oqih", + "gjfl", + "jmpfs", + "pghf", + "gtfa", + "bnjzu", + "tcvxfbe", + "curxzmw", + "miwqo", + "kfsy", + "xokn", + "mkehnxu", + "jyzg", + "piswvdq", + "ngehxy", + "smpfj", + "adfwzco", + "ztxka", + "njripem", + "myio", + "uwilf", + "bkeox", + "dcqkhag", + "kidw", + "mpokgin", + "qedgv", + "fdnsgcj", + "yuqh", + "wait", + "jywqcd", + "zxgkt", + "kubv", + "imnwcp", + "ngtyp", + "skic", + "dybrkul", + "dgywnx", + "pzln", + "fzhdl", + "eczf", + "wijavul", + "chtqskr", + "erinp", + "btgz", + "whsin", + "zeuigkd", + "lesbr", + "irmzhu", + "bzxa", + "xmwhe", + "dumhrcz", + "zhmfsr", + "cbvad", + "cgiqyd", + "tpocnxy", + "erqwpc", + "pyjcerv", + "cnogqt", + "vehrfba", + "igpl", + "twlfmp", + "cvghmu", + "ydqvcts", + "alkdtru", + "ktjsuc", + "rwkgef", + "qmyt", + "jdxlmc", + "thlio", + "kicfpz", + "ahqltnu", + "ojqkn", + "uljmdxe", + "wzkbs", + "qwoucgy", + "wubm", + "okycpb", + "jdmfi", + "onzjewr", + "egorfzn", + "ptnm", + "puaweio", + "aylsp", + "wuit", + "dqghty", + "phvk", + "gyokv", + "kesoyc", + "hxqa", + "uzfvtx", + "pxngrc", + "yubdp", + "crog", + "qmtsdzk", + "dxkfnl", + "duajni", + "lmczte", + "kcxwer", + "uojew", + "qowcye", + "iqbcy", + "wjfpil", + "qlne", + "wivxk", + "gepdv", + "oqcmlzk", + "djuf", + "stbyql", + "pshfevx", + "mefdyq", + "jqbo", + "ownqhl", + "yejcb", + "ezakib", + "uzgmi", + "avxbrfk", + "tcuk", + "usxpa", + "jvrb", + "frqmlgi", + "upwncb", + "iybpfv", + "cistphy", + "kterxuq", + "ciejm", + "zvisyqd", + "gbsql", + "khogqb", + "ptmyc", + "cfery", + "xqbsrlh", + "npvr", + "hdctqro", + "wvlgf", + "dbkihun", + "eqiwcym", + "rqewbkf", + "owtekc", + "bvqak", + "wtkqn", + "gbpn", + "moxb", + "xpbe", + "bjgxtwa", + "vgwdm", + "yewpxk", + "orym", + "nmepf", + "sidb", + "ftej", + "qrbh", + "zdbaqu", + "mlzi", + "bqtgrl", + "exab", + "xwobdcp", + "jzrta", + "zgxt", + "piwkcr", + "rgzah", + "srmgvu", + "ldeag", + "lunvpt", + "imwlcb", + "lkbc", + "jgtmsxd", + "nqkmh", + "zyvdg", + "wmjsb", + "mfuwpj", + "eukyhr", + "kuzl", + "gwey", + "dphsl", + "ezjol", + "deuhbn", + "xjey", + "aumrnwz", + "grcwa", + "hgjrwa", + "zvesul", + "qynotkr", + "fhvb", + "tpgnbje", + "qsup", + "oepn", + "ziahe", + "kmwnexq", + "czurdo", + "aedvxw", + "uiaowec", + "xryo", + "efvgql", + "rqmazef", + "zinur", + "tluqwax", + "wnox", + "wfslmp", + "hzgtwpm", + "cytfhpr", + "yxsfpdg", + "npleiqa", + "acim", + "qpsl", + "lyaub", + "mrgjypw", + "iyvxw", + "puyzxn", + "tabp", + "oawbz", + "xofeczb", + "plcwmij", + "nrxkf", + "mvbuk", + "fcol", + "knhv", + "oqdpl", + "salwdzm", + "iezn", + "xlyc", + "bitz", + "kscju", + "kdlqf", + "ltgau", + "xozbfh", + "wjxktb", + "jyiobeg", + "xrayh", + "pwktmn", + "nrdfbwc", + "nhlji", + "xsngeuv", + "bsvfkw", + "iadlmuy", + "kzqpf", + "djhcpz", + "awdyuhb", + "vkqclti", + "zbcus", + "afejvx", + "tqdh", + "bscxq", + "whzxg", + "ricosf", + "aewky", + "rlpwi", + "moaf", + "oqvg", + "snzbwup", + "omljsn", + "rwtjvo", + "jixsnl", + "zulj", + "mejgxrn", + "irakux", + "dcgfiy", + "mhykxq", + "hacdfi", + "kceah", + "swalrh", + "ibqyf", + "cmjlws", + "kjgti", + "sfewkql", + "ldvqhi", + "ctzuj", + "yxpml", + "myosw", + "qpvaxbc", + "xevkqw", + "nhtkgzr", + "dpfslcr", + "nipcks", + "dvnxp", + "uhen", + "ialfyk", + "mkrlfxv", + "mvbfpj", + "ycfg", + "qskrm", + "dxnavj", + "hqtrs", + "jigxo", + "bswmz", + "ytjzmqi", + "rhbvkzm", + "tlfxcj", + "nalopr", + "prufb", + "wpgqd", + "qpbkz", + "vcju", + "aqehstv", + "ifmxu", + "knycq", + "jcay", + "pquc", + "bwhfj", + "garvuxq", + "ywcfpk", + "jyfnvse", + "forl", + "pxzi", + "wzgkuv", + "tzuqoc", + "yzdehl", + "gkthymv", + "fhgkbu", + "mkrwast", + "pebrjx", + "vrcjety", + "lqwmub", + "swbont", + "jlom", + "bwcazjs", + "eyfaswj", + "pcstr", + "qgpxe", + "qzplwi", + "wspkvhd", + "nmkdxfy", + "zrsui", + "lazgmhr", + "doekg", + "zjvgpht", + "zvlykj", + "ljmh", + "nctav", + "iunx", + "debisoz", + "yndhqx", + "hcvyxwi", + "miqboga", + "jqox", + "iunx", + "fkmrtz", + "dryfpe", + "iyvelqc", + "csmurx", + "tysbeg", + "awfvzli", + "pohbzd", + "zqkab", + "vgbewlc", + "amzjqdh", + "xwdq", + "giyptz", + "ekvltrq", + "ulamhty", + "ucznw", + "xzsdkf", + "pfnik", + "qoxelyb", + "taycnm", + "bdlghar", + "hqyrb", + "rclng", + "dvkys", + "zaymub", + "vwfpnt", + "bkpc", + "bdpqwt", + "aqch", + "scrafnx", + "zntimls", + "lwrg", + "elqu", + "qtesar", + "kombf", + "odfa", + "evajyh", + "qrcg", + "vwszbj", + "taql", + "vxidtb", + "marjbnq", + "oqktei", + "yvgmlpc", + "gvyua", + "claye", + "olbvmr", + "qhribe", + "pvtuwm", + "kbnco", + "clibrxz", + "uwrbm", + "jfakgv", + "iuzovkt", + "lksmj", + "hxsyjoz", + "jwtg", + "finpz", + "uifg", + "afejm", + "vzha", + "wtiruoj", + "pujkv", + "uhpfid", + "inme", + "weabf", + "cpoke", + "omyseu", + "aqgyu", + "iuvpks", + "tdzixc", + "raqi", + "grcxzl", + "cqpo", + "bxnmglu", + "xwafsdq", + "eikr", + "mzacuod", + "leynx", + "qexzv", + "bxtlyca", + "mvjkos", + "mbytwo", + "hlnjoaw", + "bzefwnj", + "igzskyj", + "xryhtnb", + "oqdsut", + "nixf", + "gkbr", + "cfmgnh", + "kjaze", + "zmwal", + "rvapdn", + "gzdyjms", + "mpybwei", + "lujv", + "xqrmn", + "bynrslp", + "iayl", + "lwnaqgt", + "uhof", + "mefo", + "rlqmi", + "omntyq", + "tibreu", + "naqdpx", + "iqzdvsy", + "rkepnil", + "apjzs", + "opfz", + "haog", + "ymaqxkg", + "temphaj", + "rdcnpt", + "tcwl", + "btkoyp", + "thgiolz", + "wfcnpx", + "tpawhs", + "pgjorc", + "zfwpelu", + "tjmzgr", + "cxkops", + "nawz", + "ratew", + "icsfxqu", + "lbfdkt", + "gnaouj", + "igrcos", + "piwqy", + "ethp", + "menbpto", + "pokr", + "tlwn", + "iejlf", + "grlbp", + "krbc", + "vosecy", + "drsakm", + "wpzfd", + "bsaxz", + "lwurd", + "edytoz", + "twisyd", + "gcolyeh", + "qmlbe", + "spitwml", + "lbjr", + "otxbc", + "qindh", + "obzgvtl", + "exjpbc", + "clmupet", + "epiayvr", + "emsfd", + "euytqc", + "gzqtf", + "bmhzcd", + "gqbhc", + "odpv", + "zspfnoi", + "vsqf", + "uspe", + "vtldr", + "jstbiu", + "hiclm", + "eckqnp", + "ykes", + "adzxt", + "mzfhu", + "nyxvhzc", + "pdrfj", + "cvem", + "odfgkwn", + "qhoc", + "eyoab", + "pynbiv", + "ynqlh", + "pivf", + "ienu", + "fwzxc", + "zbads", + "bulom", + "sivq", + "nfik", + "faboupl", + "dwecv", + "msyxi", + "gasz", + "ijme", + "hxcbivl", + "aztbl", + "owjpqkv", + "rdaiqg", + "ybdswck", + "hvnsb", + "jlwnta", + "yxcmuzh", + "itvmb", + "ujmwgh", + "lkidvxg", + "dyntxb", + "wujgkv", + "ugnlbq", + "mirh", + "iunpb", + "vyed", + "bendr", + "sxjileo", + "hlvztwc", + "rwzcbmv", + "cwqsld", + "gmbr", + "nwbus", + "mhbzn", + "cyuhlad", + "xbvnd", + "undfk", + "pkch", + "qfzk", + "tdywv", + "oedrtn", + "ueon", + "awupnb", + "altdqu", + "gvkfmw", + "rlwofc", + "hquwr", + "kacj", + "dbel", + "zctm", + "jnulaz", + "epsdb", + "aeopzvf", + "cdklipn", + "pkdum", + "lbajv", + "kprd", + "zsatd", + "osijnuk", + "jwzkh", + "krqa", + "dhyxt", + "qkiugl", + "ynvqfos", + "njwesk", + "fanxe", + "qvklas", + "cmdkl", + "kews", + "rtiwqv", + "alogrcy", + "akzd", + "kraq", + "jrsftu", + "ourx", + "aqnelzg", + "engku", + "xiawf", + "ftomjdv", + "gukhzap", + "quvfmdj", + "cfltxkm", + "oqaf", + "zlfn", + "cefdgo", + "apxq", + "acmqzg", + "dbfmg", + "aury", + "nctizap", + "gafqcd", + "wlda", + "osger", + "tpmla", + "bwlijo", + "unpvhx", + "bctp", + "kvnacbr", + "ytzi", + "yrtvla", + "jqybc", + "yktwpf", + "oerijfa", + "xuobilm", + "qfua", + "jdwmi", + "kcqft", + "cqbjde", + "jcghfz", + "xohu", + "dxzrfkb", + "erhdnuj", + "ujfpx", + "ipxdrwn", + "tinbme", + "njtu", + "sqtdmv", + "kzwe", + "khegqj", + "rvbgkp", + "dkvpmx", + "hkdmgb", + "ynpwde", + "bqoxhtk", + "grfhcpx", + "hzvm", + "cvbhptf", + "cuwadmy", + "nljo", + "mtbd", + "clws", + "xejw", + "kgor", + "wenh", + "qbmx", + "ixeozq", + "iahwvul", + "fghp", + "suywqd", + "fnobhgk", + "zcgux", + "yijmxgv", + "xqrgv", + "kcptwr", + "dijc", + "gvtr", + "lpuq", + "qgwei", + "yshel", + "xjzo", + "vzhm", + "qwrvs", + "jhxiozn", + "xelu", + "mpygz", + "kirdvep", + "nrogym", + "gpkedl", + "xfwa", + "ktbwls", + "opcxbie", + "nuhwq", + "hoasuzc", + "ekyit", + "mtcnhpl", + "ursf", + "edljct", + "jhdz", + "ukzap", + "gmbjek", + "wnzl", + "hmbke", + "gahp", + "kocfw", + "cqnmatz", + "gvnz", + "xhoz", + "pjuxogm", + "vgojsdc", + "kdiabz", + "heyvo", + "kliwsrn", + "akmyp", + "nlcsw", + "iyfcgbn", + "icrxemt", + "dvisgn", + "lcvg", + "oyqwk", + "cgxfum", + "qigb", + "ysaln", + "wlqeh", + "cnifol", + "xckoy", + "vrhyku", + "jtfyoih", + "djcbrg", + "shnovly", + "anjyksq", + "wtxjzk", + "hqydfjs", + "bric", + "zjeqwot", + "vlhne", + "wqjy", + "imlbt", + "uygzspc", + "mpsiac", + "nuoivhj", + "cpob", + "qrznvgt", + "kwuzyit", + "lmszo", + "mtax", + "vnqyd", + "ujwd", + "avtu", + "jnrcm", + "urocp", + "oyef", + "gphjan", + "klrns", + "fsozywk", + "uzfoqh", + "vmtnz", + "jsehnwg", + "gplz", + "bvhidma", + "jwvshb", + "zipku", + "ukcj", + "khfxbi", + "lnvew", + "hzmrnpb", + "eavimr", + "drjw", + "dfckjum", + "xmcqi", + "mcnuz", + "krse", + "spfedxn", + "faol", + "hgas", + "drbhmc", + "jxqmehb", + "khvz", + "jqbcwu", + "rfqvw", + "qjkr", + "zqfkpto", + "poxiyz", + "bhmk", + "eagqbf", + "txgwqcj", + "gltasm", + "aziob", + "dejmp", + "bqhl", + "ixsf", + "wfdab", + "kbli", + "yelpd", + "lfrhndy", + "dgpc", + "cetxoi", + "nkjybfs", + "hfxeamw", + "aufpoem", + "kmvzyo", + "ugqja", + "kvtr", + "jodq", + "veyjamf", + "jrbn", + "csizat", + "ltbseq", + "galyw", + "vtuer", + "ldknhje", + "kefy", + "bepozn", + "yjpqtva", + "knux", + "umoxrjb", + "bqyf", + "wpalu", + "vhcwmi", + "svgwmz", + "fahi", + "gtdc", + "fgmdv", + "gknatpr", + "pyfoc", + "rituv", + "pthvq", + "ordg", + "ibkeu", + "okvg", + "ymtkw", + "ikzgdos", + "ziqtxj", + "okwjasn", + "gtbivfo", + "nxuk", + "qjntma", + "ewmcsx", + "scnfzrp", + "iqepg", + "pjtw", + "kfhe", + "pfckzay", + "mzlk", + "zdbftrm", + "hqaspjb", + "cuba", + "mwxits", + "hzvi", + "qvdzlg", + "nxotqie", + "jwegl", + "nfdsj", + "dexfywb", + "qtfbuc", + "aeox", + "frxs", + "rozpyb", + "zrtfen", + "inokcb", + "riyo", + "nrvzfw", + "lazfd", + "ogtm", + "wqro", + "gjuv", + "tkqcybn", + "fdjtawe", + "xpwfot", + "eqait", + "osnmv", + "eldxfj", + "tvybgq", + "cmnzxd", + "mchavug", + "wprlt", + "jesiwml", + "ewdasxo", + "ypox", + "kzgh", + "klfusa", + "crvz", + "lysp", + "cguvmq", + "chnkjou", + "zvfs", + "dntaefp", + "msobkxh", + "wjzhki", + "wgnei", + "xvbnkmq", + "ufods", + "sutdg", + "cfbhmw", + "vxctde", + "atwmjln", + "dqrna", + "ecbz", + "yqjcbo", + "fgjnch", + "nlokzqt", + "knzilyc", + "lrypw", + "wcojk", + "wlncks", + "jfhe", + "tipcmjk", + "apdly", + "himybo", + "qfayon", + "uihd", + "cdohzm", + "bzlqwcv", + "ufbvsqc", + "rfvlpgj", + "uejqxz", + "baewz", + "ydbpku", + "jmzkawb", + "ftxmnwo", + "harygtb", + "okealc", + "ydlax", + "fhpxd", + "qznry", + "galqyx", + "tixsf", + "rpjs", + "iekyjx", + "amfsq", + "xbjgds", + "hukgapz", + "shxgfbr", + "slbpqd", + "fywjtgl", + "xlhv", + "veqc", + "eomng", + "wjbkeyn", + "zqgu", + "akpzh", + "chslnm", + "cyznj", + "tqaz", + "mvzkyl", + "bqzfp", + "aqsyeht", + "bfyi", + "dcylez", + "rycbqlf", + "cguzfpa", + "jloywud", + "pzcrdib", + "iyubj", + "cdbohzj", + "ubymk", + "wfli", + "ridfkpa", + "tckq", + "cesmzla", + "yvopwht", + "bvcr", + "cidlq", + "uorcytj", + "fucvsb", + "tvdge", + "lumbdcz", + "enfs", + "yfdnh", + "djmehq", + "futcgay", + "uzne", + "mnlba", + "kmovtjq", + "bnmgd", + "gyoehlw", + "cmfuay", + "modyi", + "giemauy", + "vuhtqal", + "wqlohvz", + "pguyo", + "tpbc", + "jviude", + "bcqnf", + "zswpjce", + "lqfvepo", + "xzekh", + "nytl", + "hsiqcn", + "wrykuqf", + "gnkuxe", + "axsv", + "dalfxyi", + "dqbmk", + "ynciekd", + "wvlxnp", + "fpsy", + "tvabnfj", + "mdloaq", + "xkgeplb", + "zoiabjs", + "xchijq", + "esbuxvf", + "qyuelc", + "rchv", + "azriw", + "kjin", + "thdkro", + "ibgpva", + "pyluk", + "zilmgro", + "xdbkaut", + "nuiyfg", + "xaohyj", + "xbpecgo", + "pcatufn", + "qizmfyr", + "vzpwlo", + "qsxvg", + "uldwnvx", + "mkbg", + "necfplb", + "wpaxnz", + "ncehsm", + "tlgwa", + "daeyi", + "bfls", + "onhcs", + "kwao", + "gfbi", + "zhdey", + "ikfu", + "apfbhci", + "txry", + "wsba", + "obcz", + "douipxk", + "vnfht", + "yjpmskg", + "ptxlqwz", + "bqafsuo", + "ozdbnx", + "ezhm", + "iqjpxk", + "wjprna", + "prmca", + "raqhoj", + "bmjaf", + "nwdte", + "nath", + "aiwvgdr", + "yqsd", + "anqmlo", + "zhlr", + "ledafm", + "lrzhwmp", + "vzsaji", + "ewsxvo", + "sqvu", + "fopitmb", + "phkri", + "snuvaor", + "rwithga", + "lzts", + "ufralqh", + "rauvm", + "ftgejyw", + "ixct", + "amkroie", + "yhdglke", + "khfr", + "wbsczx", + "tlmuh", + "chmut", + "gocbs", + "gtzpf", + "ubxdsmy", + "yzercgs", + "imslh", + "xdiqk", + "kxjpt", + "oxrjvw", + "epdjl", + "hwgdzlb", + "ufdxqgc", + "fwhb", + "khjud", + "sagtj", + "nrsuzab", + "lncapy", + "klogwu", + "sfluhti", + "khfrqp", + "fvabozr", + "pucvtl", + "winc", + "fciej", + "lsqw", + "fzopygs", + "mltg", + "aeyvf", + "yofgskl", + "fcrtdh", + "dhrunlz", + "bdcpqvk", + "gnew", + "krutcbd", + "eaxzp", + "slijnq", + "mzky", + "yari", + "dyjpq", + "mrnkdpf", + "mjncxy", + "jlyexqf", + "whjrz", + "muwtdjp", + "dwubfnv", + "yucpjob", + "zdfv", + "kytwl", + "rytwqx", + "aqrxfnp", + "ilao", + "fzkjb", + "qrgwm", + "rhiv", + "pidl", + "byjig", + "xmsvzt", + "ibupx", + "smlqce", + "oitcv", + "ldwitqp", + "qboehw", + "xkclu", + "gaok", + "orabu", + "utxpelf", + "lzahvdt", + "ciprxy", + "lcmxsoe", + "bkwea", + "dabi", + "jnveuoy", + "srquhfo", + "qnwjy", + "xymosrt", + "kaso", + "brjm", + "rutzy", + "wuvnm", + "vzoqmgr", + "rmqe", + "kwzl", + "zvpx", + "ptaconv", + "wopd", + "qtvwkg", + "uxmbqy", + "qhkxgz", + "pguwfo", + "qtpyxh", + "nwjuos", + "syidvok", + "zbjg", + "zmtsuh", + "qcyth", + "hqpr", + "giyzr", + "mqxcbn", + "npxd", + "tmjd", + "jnxapl", + "osnlkp", + "qdzxn", + "bxlkd", + "bleokdi", + "cfhjqo", + "ynqipkb", + "nsktbwc", + "qgzvpf", + "fgcuo", + "hbrxs", + "qwmtskc", + "ksnvxmz", + "padyxer", + "hjebzwq", + "czqpye", + "sumly", + "xbwozle", + "ywiv", + "mrdpncs", + "gbmve", + "qrzbn", + "bzpq", + "nkrlft", + "rcfe", + "pgekx", + "uwantlp", + "rdwhy", + "jnvsa", + "qxsn", + "ndwac", + "enikdza", + "wmdy", + "yrhmv", + "jyorsz", + "tjdkigf", + "anhpiw", + "cqwvr", + "wgjckuo", + "zdcx", + "hwmaey", + "nxwjrtg", + "jzgnro", + "vumgk", + "vogpie", + "hdufx", + "lxoweu", + "fdwm", + "trkdeq", + "nlfoqj", + "gjakmtu", + "wysugm", + "luhf", + "klsobi", + "vtlwa", + "yvolzap", + "polgycn", + "dibwne", + "zykohxi", + "fylbod", + "vnamxq", + "fijcar", + "vilsy", + "dvslwr", + "ltqpkmw", + "hqvfto", + "xszatq", + "lnkzq", + "enxhc", + "jsaibx", + "uxvw", + "npmjws", + "nocrh", + "hmdrl", + "qhyzm", + "dmnp", + "ozkxlj", + "rojdlt", + "glkevys", + "sgluhm", + "pmwsun", + "zcskg", + "inxkch", + "swlqn", + "ljdb", + "poywhl", + "smtvq", + "tboair", + "xzjp", + "lywo", + "fltouvz", + "trhbc", + "nlebiu", + "saurdz", + "vykl", + "wuqsyn", + "zbarcq", + "mbyiv", + "inohcl", + "uqxp", + "eogqfw", + "itprv", + "hjsi", + "ncrixq", + "cimtpl", + "wehq", + "nhkfypa", + "cnfekd", + "xzswiq", + "pwiqz", + "ogrp", + "gtdr", + "lvxi", + "pnibvu", + "bzuxpw", + "kqemfad", + "rknjmlu", + "bghwzd", + "lzohnu", + "thmdgjl", + "jemvzf", + "jiwdemv", + "lxfa", + "gzxa", + "tfmx", + "hjxwsr", + "cdlxhgb", + "wupct", + "jpgvunr", + "opmd", + "vxae", + "hgcs", + "caew", + "ugzof", + "quwny", + "kauwh", + "rexya", + "wzqd", + "pkdrq", + "ptnxq", + "qhgxmsk", + "hslopf", + "ekdrfus", + "gmea", + "hegqr", + "xfgjb", + "lumi", + "dmesgp", + "ehkfpz", + "sigyoq", + "nrzxc", + "dpywli", + "usotk", + "sgqeodr", + "roplz", + "gzcypnu", + "uqeygjx", + "fszbnpm", + "evzql", + "gmrx", + "iuojgk", + "mwxg", + "ngryjhf", + "kgjm", + "slyo", + "yxzpst", + "gtfimne", + "czha", + "cvqbdz", + "kjansv", + "xuiyolh", + "lipo", + "ijdhke", + "rwse", + "qsyov", + "tyamjl", + "matr", + "qsgc", + "agzp", + "unir", + "cpow", + "grnm", + "fwzdr", + "zrygna", + "mtgew", + "hepurb", + "mtvkae", + "xkob", + "hrzyb", + "ognydf", + "ydifku", + "vqbemac", + "abmipg", + "levbio", + "njyzd", + "cevwdj", + "osynw", + "kgsbyzf", + "alwhqt", + "awduzh", + "oghics", + "cvyok", + "zvbwnqe", + "kyntsx", + "evlzbd", + "akcgfux", + "misgtdv", + "ysjklt", + "yahs", + "jsdza", + "yxpf", + "ypxka", + "cfgyjr", + "umjni", + "ugrnl", + "balt", + "ulbi", + "cxogzum", + "qgtmpr", + "ahki", + "hwirzmo", + "jyzc", + "nlwxve", + "otzgk", + "qhja", + "uhptqfl", + "geki", + "oxinc", + "vnuoz", + "logfd", + "ihgx", + "tdxqbif", + "gfbvm", + "yupwx", + "lrpofh", + "waohmr", + "cvaw", + "qfuz", + "kucjbw", + "digy", + "tmikuzs", + "ywzk", + "tfgacr", + "aziwvkq", + "ltism", + "rekc", + "roplunc", + "deta", + "kvngh", + "bjfyx", + "mdwbt", + "ysgai", + "jxvgbn", + "xvzilhr", + "wephq", + "camo", + "liygbnw", + "kjsl", + "mbjt", + "opkaqm", + "lzkpu", + "kyse", + "rybzh", + "tjruyqd", + "rstbqm", + "whtrcxu", + "zxuynhd", + "xzyp", + "dyib", + "tmnw", + "kdzu", + "juvak", + "fnwyd", + "fpytaos", + "vrgjech", + "ygvx", + "uvqaj", + "atgx", + "oklbtw", + "lkav", + "wlcdney", + "ngmoihd", + "sajmcv", + "ajwsuxn", + "vznwcb", + "smyfpc", + "yaixlk", + "gmlu", + "cdnmxi", + "uqzlew", + "migzon", + "gjzy", + "dawn", + "pbgahv", + "dwze", + "tzbsjuq", + "scqzfa", + "ywqt", + "wevo", + "fgax", + "tvpsfw", + "blucmke", + "lpfjw", + "zvqeoac", + "xefuqt", + "bvxmrhw", + "jkro", + "agxv", + "ywhotz", + "bwcn", + "alvcrk", + "qvgls", + "hraunsj", + "fucryjk", + "kwjyt", + "ipot", + "sujm", + "ifvypmr", + "rcfpwm", + "auzjntd", + "ujnteok", + "efpkovl", + "ijgqdf", + "xapkcvi", + "rdlozes", + "cprvz", + "otumia", + "wevrtyl", + "ublv", + "bmasw", + "epavr", + "wfnq", + "pkydo", + "yvgoa", + "wojh", + "xashw", + "vowcakr", + "vskd", + "umirjpe", + "yjhurv", + "lmhox", + "nsezo", + "skdfw", + "dphf", + "nkdfqh", + "gbsr", + "rhcatj", + "nbesx", + "flacvi", + "yknzpu", + "bzus", + "gtcsl", + "fucrkj", + "ihjylp", + "cialr", + "gmhvl", + "futqw", + "zmwiu", + "bqfa", + "dqti", + "fpbslvk", + "enmcrhz", + "ozfaie", + "snigcoz", + "olgr", + "qrkwy", + "tsoqrlb", + "rtjc", + "xzuorhv", + "ctrz", + "amiop", + "xjcgnz", + "aoxyjnq", + "hvzl", + "zohsdj", + "jqcf", + "mcwj", + "nspjzmt", + "iapymjt", + "nfzlpw", + "yoqlmnf", + "gtecy", + "pbomgnd", + "fydj", + "cvemjwy", + "luywo", + "ftjyvm", + "lxtbuos", + "rudbvmt", + "gcehn", + "cbqfgyx", + "bwdoi", + "jeszxmq", + "vqyeuzh", + "gblkjnh", + "ophlktd", + "jvslb", + "rhpn", + "ivry", + "kzfnb", + "mzipuy", + "xuigqys", + "xzhoe", + "iqpwya", + "coynmi", + "wbovj", + "rnucjos", + "btiwq", + "zcikal", + "gindpqb", + "ydvwuae", + "ldmstbq", + "defimn", + "trvfpo", + "hrjqzgt", + "amntjxb", + "iqau", + "kqzdyp", + "paqyi", + "svhrzk", + "qxsjk", + "sark", + "klxqrhd", + "fxrw", + "lvgdeur", + "bxifets", + "czsrjit", + "znhkw", + "xhwo", + "xjbgivw", + "umhzt", + "uqftn", + "tkwr", + "rlmfyk", + "gstwx", + "iouxhka", + "javrw", + "sctx", + "sjqpt", + "kuiapl", + "upngart", + "iaomn", + "adxkz", + "nmaewhu", + "hxuta", + "auex", + "lkhat", + "pmytza", + "aqhrni", + "wdjoper", + "ryngu", + "qfbvt", + "bsow", + "zwueo", + "cipdk", + "tvmfsbl", + "rlokzmh", + "urdjns", + "pelycqx", + "iuvcsk", + "uljrvfk", + "ksep", + "pdrjz", + "dvhb", + "txzbj", + "pgvd", + "pqvnh", + "saedfh", + "wktrjy", + "zarifbm", + "slueco", + "cvjn", + "pbcehug", + "qgudbmr", + "vbiydat", + "brlvc", + "sxup", + "ogzd", + "mleyq", + "iasbt", + "nfphulr", + "ecmzdt", + "wiqxs", + "ovegtb", + "ndmt", + "vudzrwj", + "kfavjp", + "apgqkl", + "rwxzhit", + "bfuv", + "zpbo", + "qjvx", + "pzads", + "ouzybwe", + "omtxwy", + "fbgja", + "nmlqsc", + "cyzufh", + "rkbg", + "cugji", + "ptzklyr", + "jkcmde", + "eivsg", + "lypmvg", + "tsvledf", + "cylq", + "upkwnzb", + "pxtliw", + "vqustfl", + "umqewit", + "dehn", + "gelnm", + "yciujm", + "jvpei", + "uzfsmjp", + "byumfq", + "qhfa", + "adjh", + "hrxufz", + "gmdz", + "nacfeyv", + "rnhyaw", + "fdcux", + "jvbmyk", + "hnuy", + "sukmecr", + "xzcft", + "jitzl", + "tgxrz", + "zxvtcpi", + "owkvt", + "eaizoy", + "hqfdvao", + "kigfjsx", + "nszfbkq", + "ykuip", + "fzuw", + "cqrbg", + "pidwy", + "taibs", + "hsafoml", + "nsvti", + "tuixh", + "tigsra", + "pvuajw", + "hgrtpq", + "veol", + "lnipxaw", + "mltauw", + "bhlvai", + "kfymswi", + "vkdjswb", + "avgjbk", + "clbh", + "ecuki", + "fablpu", + "wkyb", + "mdgitn", + "yfwvb", + "drucoja", + "elcmjt", + "zest", + "aofey", + "joxcsev", + "pnlzbvy", + "jrdbx", + "okcbvm", + "ufpm", + "gisbko", + "jdcoa", + "sgmfi", + "dbeg", + "ouway", + "whopml", + "dopsiw", + "tnfv", + "jboe", + "mogzl", + "fwtrben", + "aspr", + "iybldxt", + "fuwrvse", + "tlipujd", + "jleycw", + "bjndt", + "dtumpr", + "tdvuye", + "trufah", + "zxif", + "snot", + "azwq", + "nircsw", + "bxkyh", + "dqxj", + "prjbu", + "wumy", + "qpjladu", + "nqjfk", + "mgrvu", + "bcfzkha", + "rmogu", + "ntfsyzm", + "klcv", + "najel", + "bezto", + "wlfbktq", + "zsgnyq", + "qlcuo", + "revg", + "vfrigj", + "gdnl", + "njeh", + "arswp", + "dlwfna", + "mdbjfrs", + "dbwnt", + "dfpw", + "kswb", + "tpmksbo", + "xdjiw", + "smwgv", + "qbdn", + "vzlac", + "nmixdc", + "tclj", + "dlcnrz", + "rhcdl", + "yvtsp", + "mputgn", + "uxqand", + "gzoyr", + "ouap", + "julasrw", + "zpwcut", + "jnrd", + "cntuav", + "ldotz", + "fwon", + "vhwmyp", + "arvo", + "iomnrk", + "mpwflyc", + "yfwrsk", + "mecwqb", + "epgqv", + "oxqvgmz", + "cmjrqun", + "hrkoy", + "jbrzk", + "pewkadj", + "cmbudf", + "mrzdn", + "clwxd", + "eduyql", + "xjau", + "kiegy", + "kofi", + "cnlm", + "mznxsu", + "ugory", + "qszua", + "zuthi", + "eonfvp", + "tfor", + "gmqjzk", + "ljainv", + "kgqlb", + "btpnqh", + "kazt", + "zaivqoh", + "vrzs", + "qgaok", + "syzbh", + "tczs", + "gofq", + "lrmwdy", + "xbcu", + "kcpru", + "hbdkqfa", + "vlbmroh", + "arebnt", + "uqkdbc", + "eqoi", + "jvwo", + "adhnpl", + "mjgpx", + "waerh", + "bsnlo", + "xlah", + "qhoiy", + "hdwgpj", + "fpwb", + "ybnqz", + "fqroulp", + "samofyv", + "xfvnuqz", + "afgb", + "vqxb", + "bpusgzk", + "vzgtw", + "yrhk", + "tdca", + "nesivt", + "ispnqf", + "mxcnrd", + "ldbuhrn", + "fmrnyjd", + "tzhcmra", + "vbkaofc", + "tmbfh", + "mwnpsbe", + "npbkgc", + "brqptg", + "putzf", + "aluixtg", + "udclh", + "tcnphsg", + "gnapdhx", + "vnjawt", + "vyjokc", + "cklebx", + "kawlx", + "kzyeux", + "hkvzrg", + "sgmizdo", + "dwai", + "tfsmq", + "kdnbli", + "qxpsote", + "jcnkdpm", + "wrlgho", + "sjkwlph", + "odql", + "avgy", + "twgq", + "qmsy", + "nbsdkv", + "qswctfp", + "wmqf", + "gbmr", + "smvb", + "rljtb", + "cwnmqbg", + "dtpogz", + "wzht", + "bdzxe", + "qfur", + "piqmg", + "btzrj", + "xubma", + "dsaz", + "hswzrke", + "oxphyk", + "cxltj", + "bzmpeqr", + "jdqowv", + "txiug", + "grvdxes", + "dtoakc", + "nwgmky", + "iqry", + "yuwlzt", + "ebvhw", + "vudsh", + "yftkdo", + "mwjbx", + "fywjx", + "dcwg", + "iwzr", + "ypfstn", + "qhvpalb", + "saymopf", + "nzhqou", + "gkzb", + "bqdz", + "jecft", + "dptg", + "tieqy", + "bclpigo", + "kliwu", + "kxjlp", + "zqeu", + "aorvi", + "adgl", + "orwgi", + "ikvhn", + "hiqe", + "afyvmi", + "fslpiq", + "unhlafy", + "jehd", + "difr", + "guwxm", + "zpgr", + "eron", + "crkmws", + "gfwu", + "rpfsau", + "srytkl", + "btfsu", + "mzhnjf", + "zxryotu", + "gcbvd", + "kqjv", + "awnbtk", + "mdjwse", + "wstxjk", + "kpjuhc", + "mvohn", + "mpbz", + "tvgow", + "qbfvyt", + "blzeqj", + "oahysxq", + "hkvqtxj", + "yoknesz", + "orywgfd", + "jedamr", + "rpzfo", + "fybkmo", + "pkzrdlw", + "wfxmkdl", + "zclo", + "xnmkuvr", + "upsn", + "rmdeof", + "zuhni", + "hsuzdy", + "svew", + "ckrd", + "gcbiofm", + "hqiefjl", + "gcyp", + "ojtwb", + "mnki", + "ebyflz", + "ogla", + "ulnqjhv", + "mxksf", + "aovsbm", + "jhmv", + "plrb", + "ljnskq", + "kjrx", + "tkorusl", + "odxvlr", + "txdghzk", + "eatrjf", + "rqolnz", + "cjvtfx", + "aigzr", + "zfghq", + "wvfbgix", + "bjzaxyw", + "jqzptn", + "pkgquwz", + "hwgtd", + "kxhc", + "bgpqlhi", + "bjkn", + "bfwohtm", + "tsnb", + "wxhbc", + "gtdmp", + "wmotkp", + "uhjndgb", + "glzs", + "oymsnlb", + "vrwiz", + "culfyb", + "abocxu", + "ydpiezh", + "owrl", + "ngrbhv", + "juevxy", + "ibogvw", + "hyqrdjx", + "rlwa", + "atxbov", + "tzijr", + "bekxcw", + "ducjw", + "rwolbfy", + "askbt", + "taeqdgp", + "djclwnb", + "pmzt", + "cjbm", + "saij", + "ajmnk", + "ujlbcp", + "svcarf", + "siyrnl", + "yndm", + "ybdjxrk", + "zwclnrq", + "fcpza", + "pedhyw", + "aeop", + "zskrat", + "xraio", + "rxohz", + "sgktuqy", + "tbnx", + "utkpx", + "htcy", + "ynfiw", + "ourl", + "licka", + "lsjc", + "tsafpud", + "frinay", + "pqgbdi", + "qjokd", + "xewp", + "zgwd", + "wmis", + "fcibr", + "plfagz", + "laxkpu", + "mqsvzo", + "fxtmn", + "rwleptn", + "ifmotl", + "mcgd", + "kvnfq", + "aegh", + "cvgujdl", + "akcnf", + "fxsy", + "erpmsxc", + "lnpej", + "pebyr", + "eyqh", + "snmz", + "fshodz", + "dbtlzpc", + "ecqis", + "mkaqrig", + "egiu", + "yipw", + "saveb", + "acnp", + "rjzcp", + "irmu", + "topcl", + "ghfo", + "ejxm", + "bjgto", + "eybck", + "fuhwv", + "drspiv", + "vrfb", + "zbwoiu", + "uvcwfa", + "rqwbip", + "kldexz", + "uakqt", + "tuge", + "rdynki", + "rfqki", + "tdispub", + "melhqfj", + "dbuqj", + "vdqfkt", + "urnmh", + "brdce", + "claymhf", + "krjuxz", + "yqarxz", + "xivkc", + "kszn", + "arldfj", + "iupaml", + "xqewhra", + "yirtkz", + "ofczkb", + "lsyjrek", + "hscdz", + "emhrig", + "ouhpx", + "xpaw", + "ueayok", + "oschk", + "ramz", + "pecs", + "jekzo", + "aikvmxt", + "cymnokx", + "lmpn", + "ztdr", + "kdexva", + "pdis", + "sfceqx", + "hzvnlj", + "enuqkho", + "zcfxyvg", + "oadjws", + "ydprj", + "hikgx", + "cygwnv", + "jhox", + "nohfv", + "ytwan", + "owhz", + "shjmpn", + "olzrbmg", + "zfxu", + "bwfn", + "uthvyqr", + "winkhb", + "qbzfol", + "gsvco", + "wnezaj", + "ljpixf", + "lprno", + "mhob", + "knsbwdo", + "vgsquf", + "cfmi", + "vfdkiq", + "twmar", + "iptyvk", + "nxbjp", + "jucqpia", + "gezujrp", + "elowgvk", + "jcwxy", + "xbgdls", + "yuwhks", + "bszrcg", + "ywqutd", + "dtkj", + "wota", + "hacgpfs", + "lqezvot", + "apos", + "emzhjv", + "xnbuqa", + "jnaqpwi", + "odyl", + "wvlr", + "crvj", + "xkaswlz", + "kqgosez", + "zbnuhoe", + "zdrg", + "emzgcl", + "qfnc", + "bsid", + "isfkr", + "zjdplr", + "wmkalsv", + "qvfs", + "mdwpcv", + "ivajxnm", + "zyciwb", + "nhyrcm", + "utmqn", + "ovsgdyb", + "dphkbt", + "uesgw", + "rvaemn", + "onwu", + "tacpxfk", + "otyafu", + "bkvn", + "ynpwz", + "dhqt", + "scro", + "znoyw", + "jtsuvn", + "xlchm", + "eumx", + "mbaz", + "akog", + "qgpn", + "fzsji", + "qhzglym", + "dnri", + "rgow", + "bycz", + "qetobrh", + "hpewnca", + "zsrjf", + "zuhmwn", + "bsxizyh", + "bqdhex", + "jczplko", + "jdavulz", + "borycia", + "kchj", + "utgarlm", + "lgciqfz", + "qcxjg", + "qoifr", + "lumovx", + "jnhpcw", + "rmkx", + "rtzp", + "nkvr", + "qlhjto", + "hucb", + "dxhaej", + "yjwofr", + "gjfe", + "rftoqei", + "bhzcxdo", + "ibxvmwg", + "ycht", + "cnbtkfz", + "gfibw", + "psnrbt", + "jrcxn", + "bxqjpa", + "pvyl", + "wloye", + "igfcudj", + "mzcuf", + "qcirxma", + "ewrno", + "kcwnr", + "buqhmye", + "oyfbdkp", + "pclrmg", + "abevtn", + "sjwqrv", + "fkdmseg", + "ikrt", + "cjovnz", + "mglpke", + "liqvnhm", + "jwute", + "fuoygtz", + "pzwnkv", + "gyhet", + "pvdel", + "hdfraoe", + "zpba", + "bixjyn", + "duysfgt", + "jzxbnk", + "bysof", + "aoiftwe", + "odytfe", + "kbjpgo", + "xoaj", + "twao", + "uhbqrwn", + "hdgljmw", + "bhfazxv", + "dczumnx", + "iybdfq", + "jayc", + "oqrxmyc", + "xgwkdf", + "ebqi", + "onupmy", + "gbfvtcu", + "kclumas", + "xzdg", + "prauc", + "fnlsyca", + "jkasiv", + "zkmoq", + "fsjmh", + "mdvfnb", + "objwicz", + "udahqrx", + "qbupln", + "yvrk", + "zmjd", + "snurbk", + "ejhig", + "fiaqed", + "mofe", + "tfphbw", + "dnlhk", + "ekayh", + "mbwgsf", + "tzplreg", + "qpid", + "misey", + "dywae", + "vfchb", + "zpotn", + "ndaqp", + "nuzmsy", + "irvdwl", + "fjwuty", + "wkhvng", + "wlavfs", + "olxaucf", + "cyibak", + "xpqg", + "wtejca", + "kzeo", + "ikwsl", + "osvcwdp", + "fhovtjn", + "ubvl", + "flai", + "inlcxmy", + "aifto", + "uyda", + "pzctwgy", + "cqtu", + "wsvbky", + "zvaph", + "yqxvr", + "fwpcb", + "xkyqzbw", + "fbrvjg", + "nvos", + "hifla", + "xuyeg", + "bvsemho", + "ikyl", + "jaomvx", + "siobh", + "kywhxv", + "wvfkiah", + "sdrlxzn", + "mfnrg", + "kcaotbi", + "krvys", + "lxghmoq", + "mcpobvd", + "ypnw", + "zmry", + "yrpguxs", + "qoailgk", + "ajkvmd", + "waodfup", + "akebju", + "sxcu", + "ecalis", + "kmhr", + "adijvwo", + "qpehx", + "ljugwhz", + "htkolgu", + "iquyj", + "pjik", + "dsmvpn", + "eawq", + "afqe", + "wvhotd", + "ustrxpk", + "jhpna", + "jgdu", + "tolgew", + "ntxb", + "skihjcu", + "zkge", + "urnmklg", + "bywvr", + "btpvfe", + "xrkhitn", + "smwhcdk", + "qnlzrte", + "jyzfo", + "hlrz", + "sbglfca", + "ergc", + "bqkctw", + "knth", + "rlzawt", + "kcjvstf", + "wugsrdh", + "jhipmc", + "izav", + "ntjgfh", + "aqro", + "abnol", + "zdmeky", + "jnowhdm", + "uofcxn", + "gjca", + "uwtvi", + "nmcdwoy", + "anwfdj", + "wqpcfdz", + "cauvg", + "dnrwkj", + "amocx", + "bokej", + "bsjehq", + "qdjh", + "pdyhf", + "jgeryb", + "tlqmxpf", + "ctblvgo", + "ouwal", + "rfsazn", + "lxivg", + "heztsdn", + "esld", + "lsoium", + "lzyfahi", + "uiabgh", + "oaycxmd", + "mfpb", + "lqcgrxs", + "tfbyph", + "wqln", + "fxgdn", + "evqujmd", + "nsyozfw", + "mdkj", + "grdnxz", + "kxqtia", + "qfaz", + "lzwoygb", + "vxehbz", + "uenlvk", + "aeugqk", + "oxpadeg", + "apgmxj", + "btuyr", + "kgzmj", + "kgbhz", + "dufmjiz", + "krjztd", + "ijhvz", + "nwadx", + "lxgrt", + "tfvemc", + "nwjv", + "uighf", + "dirht", + "epfxhui", + "tuvgr", + "iwglta", + "lyksogj", + "vmbi", + "rgdsjbw", + "tbziu", + "bfglc", + "echqsbd", + "ixahmfs", + "sirac", + "gidp", + "vlgtsom", + "srdwx", + "ezbin", + "tximoe", + "sywe", + "wvyfgiz", + "zuwslde", + "zqog", + "ugpab", + "tdzoaqg", + "cwpylq", + "cgioft", + "iecpxf", + "vkjaotw", + "vcmapo", + "tymwgdz", + "wkqzet", + "ljbnotd", + "puodqs", + "omgr", + "riqgwft", + "yfth", + "hxvdo", + "losd", + "kucjz", + "shvqnet", + "ktapox", + "xiovsq", + "isktoa", + "hcupzs", + "ckxwzq", + "uwkvy", + "tmagszy", + "yrpeu", + "qafh", + "dukbj", + "ivwg", + "tnyj", + "fuhox", + "lumhod", + "smvuwh", + "tdxpza", + "mezygst", + "hclo", + "wspxdkq", + "thzmuv", + "bvpkxz", + "vqyflp", + "dbgvtf", + "jntsxf", + "vofx", + "pzrxvbt", + "ilujagm", + "enhwfm", + "twle", + "azldc", + "ulfd", + "jnqtydf", + "prgxwvy", + "zbgqnp", + "niqhls", + "msqfl", + "ckbsjve", + "ycrdbxz", + "eiqlwd", + "jzxh", + "aybx", + "dvmakgw", + "bnkzlom", + "ljmrvns", + "rgfauvl", + "gpitj", + "fxta", + "rouqzte", + "fdxk", + "iozp", + "aifckxq", + "hesykax", + "ykftihr", + "dprwau", + "tixzsn", + "mlfpnqi", + "rbzi", + "blochk", + "neut", + "haxs", + "hdixlr", + "bjuwviq", + "mzgjfur", + "jhiqlcm", + "fpdvwb", + "vqyotkc", + "stkbpf", + "kswopen", + "ujhns", + "csrqbwt", + "ecqwro", + "twsdp", + "gnauvx", + "iugjsdw", + "xlmzyr", + "yvnjgt", + "ldun", + "bhuate", + "vtkncui", + "uijh", + "ckduqg", + "mdhizwc", + "urgyv", + "pmsikjn", + "rlikujn", + "omajvgf", + "sknbe", + "wfmk", + "yoajc", + "vbjkti", + "xvqtfy", + "jpceqfo", + "nzqxit", + "ucvkslx", + "trqydpa", + "cguv", + "ghenjo", + "pjuwliy", + "qyujvh", + "fmlo", + "pcuj", + "esylxb", + "pvaxzr", + "peunrcj", + "dlgy", + "qngpmhu", + "dwsgnec", + "ugtay", + "ayotrm", + "lhunsfi", + "lsbj", + "omau", + "zyin", + "kzfhit", + "rlyvpem", + "zphga", + "bgzi", + "ezjfox", + "pmvu", + "jhbnery", + "jdnyx", + "fednx", + "ofwp", + "mgdqb", + "krdfbql", + "hswayor", + "akuie", + "cpqnwvb", + "zyrwp", + "fxhey", + "evqdyux", + "tafg", + "qcop", + "hvnde", + "lsbaz", + "gnzuch", + "vwexhuy", + "btnzy", + "oqsfup", + "pnscj", + "xmtuqy", + "opxisqa", + "ksnze", + "othqdf", + "nzbwclj", + "xnihk", + "bsamjph", + "vbfy", + "oundyxp", + "tneojr", + "eqzmw", + "uwpek", + "lvbr", + "ngakise", + "cybskm", + "bzmokjr", + "nxmo", + "wnelg", + "pine", + "dsquyt", + "ponurx", + "irnwa", + "pfiegr", + "imkfq", + "icnsb", + "mbehvjx", + "xizv", + "hnce", + "kbfpd", + "dlriavy", + "wibuxcr", + "wjdo", + "horjwku", + "drlhox", + "eqrsv", + "tyej", + "nyvczo", + "huql", + "iuwe", + "cvtpg", + "aqzemlg", + "savcul", + "iubjykh", + "xjomrbk", + "oqhct", + "mbaj", + "esamk", + "gaqhmj", + "dotzkl", + "xaur", + "gmnu", + "soybmz", + "icsw", + "fmgie", + "uzmeqx", + "jxvr", + "sxez", + "rvtj", + "acyw", + "oxyzi", + "suawn", + "zjhu", + "nqkwdvb", + "kflzaer", + "kzfo", + "pfqwnj", + "hirz", + "htja", + "isryq", + "rwkv", + "jnykib", + "gvklx", + "xjid", + "vkcsayz", + "gwfrajz", + "rkqsluv", + "qlpr", + "kfuvn", + "yxjp", + "evwn", + "ckdg", + "etgfup", + "cxqd", + "rxkq", + "zvnspu", + "oxyhwlg", + "vsae", + "hcoui", + "xvfrkyt", + "cuktoxm", + "imesn", + "yvtqbu", + "utaim", + "esmt", + "lowdk", + "myogi", + "zuctwoe", + "lemqa", + "glsrn", + "hfntql", + "qrouhts", + "hwur", + "ihmnujv", + "tfdk", + "aibsmo", + "ngkq", + "ogwj", + "mkuia", + "nviqe", + "jvexiur", + "srdvm", + "cnrf", + "xqzkfyg", + "dawzetl", + "bxzae", + "fovquc", + "csdwq", + "ujvoxm", + "wkzj", + "krxfu", + "fkiuse", + "nmxtwq", + "uvyok", + "npgxmq", + "mabkw", + "mucnb", + "ygfex", + "psduv", + "bgsqnl", + "wznhge", + "wzmsr", + "axtqeku", + "olavr", + "zecv", + "sxfklh", + "kylfdpu", + "ofpk", + "hgmo", + "dljbh", + "szkhlxi", + "mobdup", + "kguaynh", + "jqsmty", + "oejwvz", + "pgtohbl", + "vpkc", + "sezb", + "umyow", + "xfmrkbd", + "kyzgpb", + "gfude", + "sgdj", + "aqxtmw", + "zaru", + "atxkdby", + "jldy", + "nsraedy", + "zxujogm", + "fdhpon", + "gvutd", + "oqagrh", + "owvyd", + "bhjt", + "xvbm", + "mzotvil", + "ubzp", + "fijvh", + "rdpl", + "baclu", + "lgmciqa", + "bnxdjf", + "wldnjbo", + "cypid", + "fnmrgv", + "lbmyq", + "bucr", + "qwxfb", + "bclowi", + "ykegnf", + "exbmwr", + "wepla", + "ociuwlt", + "otrwmla", + "urhzxlo", + "kceml", + "afycv", + "yzrpfih", + "wepzgi", + "sxkzyw", + "nhaku", + "rthqz", + "yjxebc", + "bksi", + "wfcmle", + "djqgsit", + "ngpyc", + "dhti", + "fjqybkn", + "woyvc", + "shum", + "jrlyq", + "ixrblp", + "rqup", + "ieaxm", + "kthqns", + "alycrid", + "ecqawk", + "srocw", + "fzxp", + "ycgpa", + "lwyq", + "gyckf", + "xheztb", + "doqgehv", + "lsixeo", + "syekq", + "ycijto", + "elriu", + "bckow", + "tzhxp", + "medpul", + "dunazbr", + "zbuj", + "jnwko", + "jmpfu", + "lejti", + "yzpou", + "wquz", + "zstcu", + "vakxmc", + "fwmqcug", + "jvtx", + "hrqwxe", + "lkcy", + "ximyo", + "rnhwz", + "absjcy", + "ufkyoj", + "kymwb", + "htnqgxo", + "yfbrtk", + "bqjxdsc", + "fjqucek", + "aomkq", + "cydrb", + "rbouzlh", + "kacwh", + "rsevg", + "qlav", + "idyjc", + "xslu", + "gwpatr", + "pvfbr", + "mwqpyan", + "knzisp", + "tlbs", + "ziydfuj", + "arjxy", + "iauwqj", + "knsldwh", + "sedzwm", + "rjwcx", + "rlwx", + "hgdfjb", + "lqse", + "tfhb", + "vsjmf", + "swyn", + "fsip", + "vxuwo", + "haksp", + "bonagpf", + "sadc", + "aemcrs", + "sqeblfk", + "brxc", + "xeznf", + "byafjuh", + "uxigslk", + "gsudpcn", + "oatmsyq", + "zics", + "jzmagnr", + "hcdfm", + "tegcf", + "xdicpfl", + "tmrof", + "kmdr", + "nwhguq", + "ohfxv", + "votzjdp", + "kwsvl", + "kyctidl", + "oudmb", + "jeaflx", + "gmpv", + "etqgop", + "yauz", + "cqral", + "knomd", + "vobqs", + "pmhgbvl", + "jmaxfyw", + "gxlved", + "nfaz", + "vnjuds", + "kasiv", + "oitkdvy", + "bosxh", + "dirohgp", + "mcefha", + "xazft", + "kbcvny", + "swjqdm", + "uqvi", + "dkigvq", + "jqklmy", + "hcjkiwe", + "wjxcg", + "xplvgb", + "cfsxbj", + "ohbvm", + "pfuaegy", + "apjyokl", + "cmly", + "mcli", + "bvftymg", + "ypgd", + "iowxr", + "ivqjp", + "fnil", + "jqomfdw", + "ilntdy", + "rzpb", + "nbfipxr", + "cusn", + "poainv", + "yqmnt", + "xvlahis", + "rhgsxf", + "lwukhv", + "sary", + "zxscpat", + "jemnigh", + "xzdi", + "uhzfbd", + "ujhrza", + "aghxpw", + "cwelzai", + "eqrmf", + "jcqt", + "xamj", + "whudfoy", + "bvckuj", + "dxsqwjm", + "geybhwq", + "kqscaty", + "zkvob", + "ibtzu", + "yxbhukr", + "tarpu", + "dhvso", + "xlfyp", + "oqtz", + "iowdez", + "rsyei", + "trugy", + "vogsud", + "ngmwfzx", + "nzrmh", + "xohq", + "qrcfdmn", + "wlex", + "irhmgju", + "ushgvw", + "wzixkq", + "vpqla", + "lesn", + "dqwyfzv", + "xiwztdj", + "lnvfwmi", + "fzwn", + "snxyefq", + "ritma", + "hkdq", + "aebx", + "yhzsinq", + "bajcln", + "sdpj", + "bfdno", + "emzo", + "fercuz", + "kinj", + "wlnk", + "rcbn", + "kxmztje", + "zoxuy", + "hjmcyv", + "ztkjidp", + "lrdtyvu", + "chjom", + "kilgowm", + "edqro", + "bpxrq", + "smirgv", + "zehrq", + "xqcsfe", + "fzeqmas", + "kimegr", + "zsoemyi", + "kcvsf", + "hdawrmk", + "srzhn", + "snzfcy", + "nqte", + "ujxgo", + "ywjboqn", + "cgvqs", + "sjcdbym", + "ohwe", + "qwyla", + "vpzrjb", + "dsoiq", + "axwzvqc", + "sxauz", + "elpnjhk", + "khlt", + "frlk", + "cnykmsv", + "kiaphy", + "ljpa", + "wcsjgef", + "qvljo", + "fihk", + "shzbcq", + "mdlq", + "okecust", + "qgwhvld", + "tvfljde", + "mlxuaq", + "xlynekh", + "rayk", + "kfmeox", + "qjczte", + "zwdhryx", + "zqdf", + "bfmhwlg", + "falgte", + "vgdtf", + "xmsoepb", + "uivso", + "dehbl", + "vgtrho", + "utbo", + "xgtplof", + "zokx", + "ozyt", + "ecvhqap", + "xcndo", + "dtfqz", + "pvgedr", + "nvcb", + "jpbhm", + "uhzk", + "tldj", + "pexv", + "ksafqpr", + "ogpl", + "ihrdt", + "aqbdn", + "pdrbt", + "szfdwgl", + "zfdwjtc", + "kmvseq", + "regxzfl", + "apyc", + "liongx", + "eajryi", + "jprvuk", + "azyov", + "xotng", + "xgwyls", + "mpdfg", + "adwcvm", + "bmsnf", + "fwre", + "lozfc", + "xgyua", + "lgexfcj", + "ejqal", + "ahpcnvx", + "riwcl", + "txyfd", + "vjfwl", + "nifzswb", + "gxnmfha", + "tubr", + "rxcyts", + "qxncser", + "yxqb", + "loaqr", + "ektygsp", + "tlkmvas", + "zmiw", + "donk", + "upeyk", + "hpfxjb", + "yezo", + "yetdk", + "fwnqvh", + "kuat", + "dtzk", + "yidjaf", + "vwmcage", + "mplt", + "mpeha", + "kfdigr", + "jbcrv", + "dzcafrs", + "zrdxgtb", + "rdeuvws", + "hjzl", + "cakuwhf", + "jwqts", + "qxkbysv", + "oqfb", + "foxrbn", + "grkdheo", + "jawkosr", + "oylfsra", + "hvfxuoz", + "kmcpxva", + "xbtwya", + "sqntpdk", + "cshzg", + "fcqedsu", + "skzbnrt", + "dmhywz", + "rfjlo", + "nlbg", + "ratk", + "tyride", + "vnbsjl", + "suqxbt", + "lxzig", + "nzylm", + "dtruesb", + "hzjv", + "twdf", + "agwukt", + "chjsew", + "thskzl", + "rbec", + "anictj", + "lkmqh", + "xsqmjyn", + "xncjkz", + "uinbx", + "nmpagfy", + "zgxqrmt", + "imgyru", + "bqwcm", + "apqih", + "klsn", + "ftgipv", + "deqvr", + "gjprfms", + "ejdfok", + "ledmkn", + "fzxt", + "ustpgf", + "anfkbmz", + "jurv", + "azfihkd", + "lfiq", + "gwzm", + "hgkjxpu", + "kjdns", + "rnxlwmc", + "ifxegz", + "cutyiqr", + "uegs", + "hoxsv", + "oxpy", + "syvtgi", + "mryqu", + "bipxq", + "iowulkq", + "vimjdq", + "myqrnkf", + "hsxda", + "waxorkv", + "hgmj", + "wnhycl", + "rijxne", + "fypqtb", + "dnsp", + "sipdmwx", + "sazuyxh", + "xymcj", + "ubkneo", + "lhirx", + "dwgmop", + "mois", + "hygr", + "jvhpbu", + "mnjutc", + "bdwhlaj", + "unam", + "ytche", + "qlycja", + "lxqot", + "camuzhl", + "igjamwe", + "kmvuo", + "hdnm", + "ponklaw", + "mhaoe", + "dyew", + "qogmc", + "bptl", + "jkwvle", + "zioch", + "clurhzy", + "qxik", + "hkvif", + "qpcanf", + "vacet", + "vzjotqi", + "bzuks", + "nuep", + "urqz", + "ajrqcd", + "uzvosn", + "hmoirt", + "zqyjd", + "zqgjx", + "jrfphqc", + "exqgrtk", + "puqw", + "pidejg", + "lauo", + "atjqwx", + "wejdr", + "numas", + "pxawh", + "qvki", + "mhpsna", + "arlf", + "vrkmp", + "eynaku", + "qbme", + "bdwukc", + "xibpy", + "hvxtjm", + "miprtxw", + "tfbjerz", + "nahxfoi", + "cyfgbiw", + "rldncxm", + "npmdwt", + "tkvp", + "ogxb", + "geviqau", + "fnvicj", + "mydoqs", + "ajlbpih", + "yqpx", + "vifo", + "wgzqda", + "cuhslx", + "igrm", + "igfqyjl", + "bwkeyva", + "snve", + "lrzpoi", + "qevck", + "mgdxzs", + "wakgeby", + "bzkc", + "hgms", + "vjgm", + "zgdh", + "cmdwqkt", + "zbawj", + "vmheud", + "tkpadeu", + "xhpjsru", + "yulwokn", + "ipzju", + "ivocusx", + "vdfl", + "lthqj", + "ihxmeqt", + "qvbal", + "vrycad", + "pwnuzdj", + "eictbds", + "dgfk", + "yxfeqdr", + "kiaj", + "bynhgix", + "qruvod", + "qrvso", + "sunv", + "rodyquf", + "zdbjucq", + "pzbq", + "kmeylov", + "cwvu", + "ndfrel", + "xpkhrus", + "nljhkx", + "aufz", + "hxaz", + "kbtquxv", + "vybjsu", + "ewnkmr", + "hxei", + "awrteo", + "lmthabr", + "byncas", + "qfjceu", + "lhjde", + "dyjsvum", + "wndyg", + "spyiolb", + "dkswo", + "zteish", + "bfpt", + "edbag", + "giup", + "gjceh", + "ebci", + "vlapsb", + "zfeyo", + "lkdwsi", + "ehga", + "pekqrv", + "iqrg", + "gaclut", + "tfazl", + "cxnfvdp", + "hqezpws", + "hdwbfp", + "klxwoj", + "amgpw", + "haxpk", + "btegna", + "jckyo", + "xnbswhz", + "jdteub", + "nekzy", + "romnlyq", + "bsmxty", + "suok", + "hwokgrm", + "tvpmjq", + "ybojcdg", + "hqgcrd", + "hkazcib", + "hbvgplk", + "kxhm", + "qiht", + "qnvk", + "clqse", + "qvdcge", + "hgxvktm", + "igla", + "itek", + "lxusf", + "azjv", + "iyrtlnb", + "yenm", + "sfpe", + "kwarb", + "rzfybd", + "axzqrfm", + "tizynwf", + "qshmfx", + "ndepry", + "yxioa", + "rtzkvas", + "mdkw", + "fichrny", + "cskhznb", + "bwmc", + "qgju", + "pbhteml", + "uahsj", + "vsrhxu", + "gpyjeb", + "ihqslt", + "cgoje", + "vynmks", + "msnvxpy", + "ilvdgab", + "befcrhy", + "rzjevbt", + "efkx", + "evngd", + "gqyn", + "uysw", + "ieytq", + "yxmtqgp", + "nvyj", + "cmieof", + "hjbafz", + "wcqrdsa", + "rympnch", + "pgvqrol", + "fqbzdsw", + "ocbj", + "dqgl", + "mnjr", + "tnschmv", + "katvjne", + "kyfzr", + "kbfc", + "yqrigc", + "cbwg", + "kiwzxc", + "ulqeca", + "swnxczk", + "ctafz", + "vubigjq", + "uvky", + "vtpmghr", + "hgkn", + "zfqxwa", + "ngud", + "nkcms", + "ohap", + "manbo", + "vsea", + "nzkfrid", + "xoucd", + "igfcpua", + "brkpel", + "wutfpo", + "kpljwgr", + "wtqjdf", + "jkysvz", + "vlzthcx", + "apnil", + "grqets", + "zvlap", + "xbgp", + "ljagor", + "mqpht", + "tqbadz", + "uebpwhk", + "gpek", + "ytqc", + "yfiqb", + "gkysepw", + "hqxw", + "itdpx", + "ksqh", + "xantlf", + "toxlifh", + "ghlz", + "fvql", + "noszv", + "djci", + "paqvmut", + "uxnr", + "roaev", + "dvkzh", + "erdou", + "rewax", + "yhqk", + "xtrhc", + "eicrpq", + "bgldvcn", + "phcfywg", + "jyonrug", + "gackiv", + "ybirf", + "zvurybn", + "enhu", + "prxwja", + "gdrtinu", + "bpsc", + "nixa", + "suwlk", + "qubor", + "chbayqe", + "aoqynl", + "siyl", + "ziexapt", + "ythubz", + "ycgvxqi", + "tujmy", + "xwadf", + "zxsmtl", + "xwlqipf", + "ptlr", + "nfasix", + "tanmc", + "ahxnj", + "iqgwf", + "hfcbps", + "rywat", + "giewha", + "cjlku", + "akge", + "yjaitwm", + "rnvmi", + "jvqshmw", + "vdyx", + "chxvps", + "ovelbks", + "ydkctw", + "acwq", + "qzktx", + "rvisonx", + "gjwahb", + "eswafny", + "ajmg", + "tjyiwcx", + "juyb", + "qytde", + "xhyrb", + "yqztun", + "vmgto", + "krujaid", + "rjwukxp", + "sbnmjt", + "fvtgiu", + "qmpcxg", + "grelh", + "tasrcjl", + "gadkup", + "nkjhmop", + "pguyclf", + "bzdhuvg", + "jiutkxl", + "xyrb", + "lwqx", + "vrjzl", + "qhtg", + "bwyxpac", + "qhfn", + "ykpb", + "orzbkit", + "nrqi", + "lcyzb", + "njomfzu", + "oeyqhk", + "pzumc", + "rwqjgf", + "tsafdlb", + "lahsju", + "jfov", + "pgndux", + "lyxuwpn", + "nvmw", + "nied", + "zqxhf", + "yorx", + "stfwrm", + "enfstwh", + "qxhrdcw", + "xdulge", + "ndkspe", + "sgil", + "rsdpm", + "yjkcer", + "mvoknbp", + "lomn", + "tiky", + "xpnqoez", + "hyfjkga", + "pqcfois", + "fkvpnga", + "pyvkg", + "dzyeub", + "hktq", + "fvywr", + "myer", + "ihxwua", + "ymjafx", + "dpsxjq", + "btcp", + "wnisx", + "dpzkxc", + "cwbz", + "dajv", + "ayjxkd", + "nmfbvwr", + "ltyqakz", + "btovfw", + "habovdm", + "fsrjhnb", + "kmtg", + "maxt", + "ylhwu", + "hesjf", + "ecprmgd", + "xhpfuz", + "jsivxea", + "zjkuinm", + "uqygvks", + "sjpbhi", + "rhknlf", + "xhkgqsd", + "cmnjkp", + "oxmtp", + "shry", + "pmxrf", + "gadkup", + "brlmwf", + "ekvadxo", + "haktc", + "olaqyr", + "exwyr", + "oynbzh", + "kltdf", + "ojgazr", + "qkoitcx", + "fgkw", + "ngqobx", + "xqflewc", + "soinf", + "aypueqo", + "wclsi", + "ogqxeby", + "ysthqk", + "ocqkj", + "lqruv", + "wpkfgdi", + "hnbyuze", + "bhdxcpr", + "jewvtz", + "xpayso", + "dtasc", + "tqlscy", + "gskztq", + "nmdbz", + "xvdbem", + "szdugtl", + "yotax", + "jvqoyt", + "vagkp", + "zkyv", + "zljgmf", + "dshcl", + "kyfhzsn", + "ehpac", + "kjqo", + "zrxjnqw", + "haymngr", + "alxsobc", + "jmtgzo", + "evyxaf", + "uolj", + "pgjciy", + "wkja", + "cbaidk", + "uqnoi", + "slbyrmk", + "blrw", + "ymfabd", + "ngevki", + "vijpu", + "jcitfn", + "dlwnv", + "vymf", + "rgvmu", + "xrtfap", + "deoljch", + "rvyjno", + "isobem", + "mjhdasy", + "fqjvngi", + "yhoj", + "lhmrb", + "eqaxi", + "uismfe", + "aoxzkiq", + "goat", + "uwjsnbk", + "tzqmilp", + "jhxc", + "gabhcye", + "plbetiu", + "gswx", + "qwny", + "bkjlagi", + "imzrvkh", + "wfhbiz", + "pyjxt", + "iygru", + "vjhc", + "myxsqv", + "snvwrkm", + "ntkdfhb", + "yrudbas", + "omkhb", + "iqdptw", + "ydfuse", + "qkehn", + "oxjabw", + "qsktjd", + "qecaml", + "gtjez", + "dyntr", + "nxcvto", + "szvl", + "gtbjd", + "cpgnsuq", + "xfzdkse", + "qwcy", + "zpenm", + "xvhqimg", + "gibzvwn", + "bhpjyui", + "glkijoc", + "kfcsvtx", + "vzyhwqe", + "ndxosvg", + "xzortu", + "ovug", + "tomlu", + "murv", + "hzosdw", + "mocw", + "xawhjz", + "lcwnsrt", + "vuocqf", + "prntsi", + "ncsgfvb", + "adgetmc", + "ktmhlux", + "pkgmvb", + "yzbp", + "plcm", + "zyjscqu", + "hlmnv", + "ivul", + "npdme", + "yzwrqf", + "mzih", + "ieva", + "veihxlw", + "zmxje", + "askco", + "onaukd", + "rypsw", + "ywalzvm", + "tdiomve", + "mkony", + "xdoqg", + "mjxbg", + "ochlrku", + "irpnhc", + "iqnjb", + "cpza", + "nyecz", + "peoau", + "dlzs", + "oukh", + "esumv", + "zfde", + "bzac", + "ltqydbr", + "roxn", + "wlyxs", + "wmqf", + "uzvae", + "rfxd", + "gtxcz", + "exaw", + "vlgaf", + "chdj", + "pymudt", + "insfua", + "ydcgsp", + "itxa", + "mqpvnz", + "rndjkc", + "jyufmcq", + "ailyszw", + "xqnyi", + "warcu", + "uxyim", + "arct", + "caehktm", + "nxvkq", + "lvmeiyp", + "xvydti", + "aumti", + "stbh", + "bflqzu", + "toxz", + "dqsf", + "tcuxh", + "jycwklx", + "twcv", + "ajvt", + "vabsci", + "penyhjb", + "foehrst", + "wvmhrf", + "wrbhapz", + "trkq", + "pabokmn", + "qzlxiav", + "vmwcq", + "xujh", + "kpzvex", + "tixsr", + "lpihke", + "hjoyc", + "bkzg", + "ekjfqp", + "glax", + "kezpbc", + "epwjlrt", + "fytrv", + "mlrubk", + "afkrcw", + "apyejdq", + "hxretcz", + "ydtovng", + "aipv", + "ymfij", + "jxelvb", + "qvkjdm", + "iozgcr", + "lfahszi", + "ewjdr", + "neksdga", + "kodmluf", + "byuvk", + "otngi", + "pyvf", + "jshw", + "yektq", + "gkrpi", + "slvnoq", + "ksmwu", + "gxvkyt", + "vfom", + "shwgxc", + "ixcpon", + "wzarmqj", + "orsjz", + "vgnwrt", + "dnzwrg", + "ljhw", + "npfskwd", + "pyrf", + "uzsk", + "qxdmk", + "zyps", + "kovs", + "qvawp", + "jltes", + "rjiu", + "kmfzo", + "muxkbyi", + "ijfypzm", + "tvsw", + "oviy", + "tymgp", + "gyubadi", + "pvherto", + "wgou", + "iycjn", + "rqdlm", + "smchrun", + "ockmsz", + "uhkjv", + "ngbyqjw", + "vdjmkhn", + "itmzksl", + "zhlfock", + "uesan", + "zscyh", + "atoc", + "rdvapj", + "ubgmaho", + "kzadf", + "lbfktw", + "hfiauv", + "shyuife", + "uowkl", + "ktsvnfe", + "qsgkj", + "zeucdjo", + "ykzlrvt", + "jeoa", + "kwnovrq", + "wvkcp", + "lxkgyat", + "phsri", + "qjpmacv", + "vkyq", + "bonjcsf", + "nzpwfl", + "liwjbkp", + "xkeh", + "mqdxoy", + "pedi", + "kfsp", + "hpsbfi", + "khboqsj", + "mengo", + "nrik", + "zcjvmbq", + "vkqcnzj", + "xfeiz", + "lbrzt", + "nqorkxw", + "eywikr", + "jwyurkp", + "mletdq", + "pigt", + "odutmyp", + "ivnfpzo", + "sertp", + "bacex", + "nlqedp", + "ximvn", + "tjgirm", + "ytsj", + "kmvjqw", + "frlvkxw", + "vzqker", + "tmszaop", + "nbakx", + "aujclxe", + "tlivnuy", + "nlip", + "pbyrjif", + "yanwl", + "vsnmwc", + "uzhfak", + "odkf", + "kclnmt", + "xndejoz", + "lupi", + "xozgs", + "scznxgd", + "qvszk", + "thacusb", + "ofjq", + "newxco", + "rdgf", + "jqwies", + "jipc", + "epwqsr", + "hroqzyj", + "cwuoybi", + "avsuk", + "spaijh", + "sgtep", + "kgxtj", + "xgpfmj", + "zjtsw", + "zvhuko", + "ctvuyrh", + "nmikbx", + "btml", + "wuxf", + "uloy", + "zpwer", + "rzst", + "bhqpr", + "dojehb", + "nxfbyzi", + "kbpazng", + "zvgq", + "jqwsi", + "bzkj", + "nzqdce", + "prmlz", + "nacwbri", + "vual", + "zomevrc", + "redbu", + "jfwugl", + "sagctrm", + "oihqbfa", + "kjseycf", + "oeqkg", + "uhrmkw", + "mbje", + "ardehtx", + "iymtlse", + "fhcipkd", + "jnobed", + "mpyedao", + "ykne", + "rfkdet", + "zmkcj", + "iwrcu", + "udlfan", + "yxbl", + "ckaiv", + "dnmyg", + "xsklf", + "irpsbl", + "gitjqlp", + "gioz", + "gxernd", + "jras", + "ikbw", + "vxhir", + "lpavbo", + "vxnrwc", + "xdpqzif", + "thgjwl", + "pdshxek", + "uyrawdm", + "mszgunr", + "fzdj", + "qtez", + "sxofbc", + "yxqpmt", + "vbtkrzc", + "azlij", + "relajod", + "rupixgh", + "tsqdv", + "dhrgf", + "dvuleom", + "ftnbcwq", + "shxit", + "lcspnj", + "zhtrc", + "iglkvu", + "jkzdus", + "bwgrqf", + "rnojy", + "rgcv", + "zyto", + "cmkziv", + "prgv", + "eoit", + "coil", + "sbdo", + "vczshry", + "qywaz", + "arycgqd", + "zpufew", + "zqgi", + "vwpuz", + "chrulw", + "wbdfz", + "lfxo", + "wfcrbsi", + "ndhp", + "vpar", + "jcvplkn", + "nakjpi", + "baxukm", + "slude", + "dtank", + "bdvxg", + "cdibry", + "mrfuoi", + "dfhztax", + "ioqrje", + "vwps", + "ajkwm", + "xyzqmaw", + "eyxi", + "qzfxe", + "hlxj", + "xyac", + "hgip", + "johs", + "cgatqj", + "cgwk", + "tlmp", + "xtdzqcp", + "lank", + "ebdc", + "cljvpy", + "hxpwzl", + "yhdstv", + "lwfnjrp", + "gzpjsdc", + "mkaucx", + "lhutx", + "sjuy", + "qegwduc", + "rqdxnlv", + "ijbpt", + "aipqof", + "sljwt", + "sfrtlh", + "qpivma", + "jfwkpi", + "ntuxi", + "djbfo", + "iuvswgy", + "eqji", + "mrywv", + "jdfiah", + "zuxq", + "wfcjbei", + "yocp", + "qkxb", + "ptudnxe", + "eksjxhb", + "jxornml", + "awunz", + "ribh", + "hcftgo", + "xgqnplj", + "rzmnb", + "exvoz", + "xphj", + "dagzfcr", + "ncab", + "hifqe", + "dgfsw", + "lmkpaf", + "inklzwx", + "bgyv", + "rsnf", + "rxycas", + "rybjukd", + "rhlajy", + "lmhjp", + "rvyqod", + "kjrti", + "ogarv", + "cevjibq", + "qftdm", + "dfbq", + "ymtz", + "uokxyf", + "amfdqge", + "qjub", + "hckmye", + "yszqka", + "agjximh", + "lrofy", + "ynwxi", + "uhxqtew", + "ixmnkp", + "taqv", + "uqlirj", + "yzca", + "furazpi", + "eiyqa", + "chzqyav", + "zocxgj", + "ziqtxb", + "eplg", + "asbmf", + "dbct", + "dighykp", + "edkiws", + "xicqf", + "tavx", + "ayvwofk", + "eyusmlw", + "jbto", + "mhtlwuf", + "pmyj", + "buvzcih", + "czfjdh", + "bhkodv", + "vwjkzx", + "xmwifh", + "gvjfh", + "dfwnkz", + "uawc", + "lkdorg", + "srphud", + "qvkj", + "ebcdv", + "dozsm", + "cafy", + "ugwjpts", + "rqsz", + "vdjnb", + "xdhmqeo", + "gsokjh", + "mfinbpr", + "noshx", + "yspxf", + "trjw", + "rsnl", + "bnxraz", + "aztu", + "mpqizr", + "gqovy", + "bgsm", + "mryatzc", + "lofxbi", + "dntv", + "ogzquie", + "ecamjyx", + "rqjzc", + "eozthfq", + "ifngwa", + "ztocqld", + "ilbpqj", + "hmyqp", + "dxrkfzp", + "lgukqsa", + "hpdq", + "mnly", + "jupfg", + "ceslywp", + "zsckhr", + "zklvcb", + "ldups", + "ifsybux", + "lfbg", + "weiq", + "etovf", + "udoxw", + "nojy", + "dqubgho", + "bndahox", + "dynv", + "nzpm", + "irxldwf", + "acsdezy", + "bqny", + "akupd", + "uqabg", + "skxgtw", + "heivst", + "cdwi", + "xiwnl", + "ckvtli", + "mknlqf", + "iylw", + "uidgy", + "qgmosrk", + "fcjvusy", + "ulwt", + "nsgwkt", + "lcnsfb", + "jqpkza", + "fyztb", + "xyjbw", + "dzhxe", + "odkyxb", + "dinrto", + "flub", + "urjnvy", + "hwvgo", + "urgd", + "qfyx", + "ezsouj", + "uqrc", + "skrbuf", + "wjmp", + "jsclh", + "ajtihe", + "lyrnh", + "ivxqr", + "eurm", + "xtdvbj", + "lkpqnbr", + "pmfxbsv", + "dfgjt", + "bjfcia", + "zrxnw", + "hiqrjgp", + "tbsq", + "zvqy", + "cdom", + "nqrufb", + "pwlzirb", + "pote", + "eonqyb", + "pisuha", + "zltb", + "pwjgv", + "bmhrnyv", + "tpqkyh", + "twia", + "eqwjpbn", + "vsamgx", + "yuzkal", + "pvmnjwg", + "nuawdqc", + "jpbu", + "borkewn", + "xmgkq", + "iahx", + "heof", + "pvlst", + "eycqdr", + "xtsyvc", + "pexkyn", + "erkouxi", + "dpcqos", + "ndowvak", + "rzhvcn", + "ewlo", + "gixszq", + "mwch", + "zufsn", + "yafxd", + "otaws", + "woeqsu", + "hrijnv", + "onpd", + "okerya", + "tiykcep", + "sgqo", + "etyqh", + "yrikj", + "zexlu", + "vqfjue", + "xgeckq", + "aqhkxpb", + "inwyv", + "jcti", + "dueiz", + "tbfmas", + "zewoujp", + "zbgsvhn", + "bcuvxo", + "luackb", + "ewvrb", + "ygdsxk", + "ljvske", + "riba", + "egbupwt", + "kmrv", + "bwzcyk", + "stypnlj", + "qabg", + "csarfol", + "ihdqyz", + "aeguw", + "rgwovqb", + "yajo", + "gzesij", + "wcuahfe", + "jgqbl", + "ztmn", + "bmrpfgj", + "sfldpa", + "ehlto", + "erpmt", + "eswaui", + "ozgkljm", + "izqdm", + "xgin", + "mbyqocu", + "otep", + "jafis", + "jcnwl", + "iqls", + "tckgda", + "udgovmr", + "coxvrs", + "khume", + "zlsdt", + "sudnm", + "brwo", + "nmfbkti", + "vzwbhm", + "ehnp", + "iwkuxl", + "ndfpw", + "uyzimr", + "tchdsw", + "agfvb", + "qjfiouk", + "nguqp", + "xmycq", + "ivckrm", + "wufz", + "okvdhil", + "nujgmo", + "nmdcwpi", + "logphr", + "pvuk", + "cduwzxk", + "zwyl", + "cuftn", + "tsoqyav", + "jryqgm", + "ahwitk", + "uthoi", + "vcdnr", + "wuorxf", + "dusflr", + "ktjzbqg", + "wxqsua", + "zbilx", + "ridbxag", + "gwdem", + "ebar", + "fnorx", + "grlq", + "rdwkqe", + "jsom", + "gwsm", + "igcerlb", + "tacmuq", + "mkngdy", + "ufgayjt", + "hajlmwx", + "kpilfog", + "fezbp", + "dzplevq", + "wsbz", + "bmjec", + "gkdawys", + "yuxkohj", + "knqiz", + "nesr", + "lxbtq", + "xhul", + "oenis", + "fbrm", + "wagzx", + "sxgyf", + "ajdwvy", + "mdfeyoc", + "wnhacqs", + "xdfhqn", + "cqwl", + "qwol", + "lxhds", + "qwtaps", + "tuiq", + "mjpt", + "fvml", + "ugdtcfy", + "btmjc", + "byuvtwr", + "peosy", + "scmolqz", + "tpmrdba", + "zexalwq", + "xsydn", + "qzcjs", + "midqx", + "lmfkwq", + "cevgfmj", + "sxmbv", + "oluc", + "lbcjpw", + "ulcsx", + "elshzjb", + "pxmaw", + "tmdnf", + "fsak", + "pitznb", + "qudigj", + "uwqce", + "vcgymr", + "zfrjq", + "hrgmcbz", + "ibmkqs", + "gmwlyk", + "vksdx", + "kobyjn", + "mudapk", + "jaycv", + "acrdmj", + "zvyokjl", + "byvi", + "zavrl", + "nqism", + "fqau", + "uoerayh", + "bmxfzo", + "oiqendj", + "nyiqrw", + "xmoaf", + "kpghrct", + "xybje", + "pmjxkv", + "nxtevd", + "vqutoc", + "qbyd", + "vpka", + "uibwl", + "vgzk", + "nzpv", + "yrski", + "uohglv", + "nqkl", + "jtvpyb", + "wcvf", + "imny", + "kyzi", + "unedi", + "xbsegm", + "stgxf", + "bzawxfd", + "mxln", + "sbxwpd", + "nkru", + "kfeqam", + "ueqbmkd", + "mleuz", + "dlaycf", + "wvhloa", + "hekya", + "msogj", + "gptr", + "vznq", + "wrvpcus", + "hycktre", + "eqjk", + "vsfkoj", + "ypdg", + "vmlhd", + "kimzsb", + "ibva", + "ukraxg", + "slyvjk", + "nlwodet", + "ymvlp", + "jysfezc", + "znhxvj", + "eiqb", + "mbyhl", + "rbcfgz", + "poegsz", + "vyli", + "bsla", + "mqocz", + "sarb", + "grztsx", + "vruyi", + "qwya", + "ejmpkb", + "oapmr", + "epukwb", + "fljqkw", + "ykidfo", + "opsrw", + "vnpwl", + "wxka", + "zyvha", + "qijbt", + "pfyhck", + "osprfqi", + "tkurzf", + "uqix", + "pvzk", + "uayrqvj", + "qepcn", + "efowzcl", + "qcsw", + "ijzwk", + "brdpfk", + "cgxwsiy", + "dbfh", + "zerd", + "jkgb", + "pcszh", + "xheqp", + "bdqj", + "miys", + "zvbcrh", + "brzsc", + "natw", + "bxzcmda", + "nqrv", + "ncbrpvu", + "jfbuyr", + "fmvnb", + "sjanzbw", + "qibhot", + "fazg", + "ocqt", + "wzqgdbe", + "sqdgme", + "sdaov", + "walthum", + "svbzijq", + "fqnl", + "hnavdp", + "lbtcnoi", + "mypr", + "izxjfdo", + "yfwedjp", + "gkijof", + "rugcpn", + "gcmvs", + "qjfb", + "nkudtro", + "hwdk", + "lczqn", + "qxlboz", + "uhsitbc", + "sjim", + "mapdske", + "zmfgyje", + "qedmrk", + "baopmk", + "vtzpr", + "lneoa", + "jtybzdf", + "xhzjnf", + "ydtnw", + "gzjiwc", + "nfmodh", + "oqpj", + "wpvrsml", + "yahsbcv", + "krwqiet", + "fmapc", + "cskmo", + "rkbg", + "gqpau", + "jasxger", + "lezfrix", + "fxsuqd", + "myfb", + "upmnkh", + "nizsh", + "vfoku", + "zcgpyk", + "olfye", + "akxocg", + "stmyru", + "qwjste", + "hnoku", + "soaglqu", + "jzfg", + "zrxijkq", + "hjtvb", + "arfz", + "wgkvx", + "wpnuz", + "ziab", + "wtbjegx", + "ayptiz", + "rahiy", + "jaht", + "paolwqk", + "chyo", + "cwys", + "inmjez", + "qbrsep", + "nejfird", + "rbepi", + "dejkcl", + "fczxa", + "agbzojh", + "rvbhpnd", + "cntu", + "upzq", + "qisg", + "pguont", + "hdzm", + "bmtjd", + "zhnyurk", + "zchwjor", + "yoidngv", + "qmboi", + "nybkpj", + "mczai", + "lzrq", + "ijbs", + "smeiw", + "eqnvl", + "hazyio", + "gyzb", + "litja", + "ovgqib", + "zujylgr", + "xirvc", + "gjqhrpb", + "khzjlp", + "dlxqbne", + "watyi", + "edxq", + "fukavh", + "boyvdt", + "rlkspx", + "jrdyst", + "dgkcvw", + "moqd", + "mhvbo", + "bejscq", + "qkei", + "wvjekrz", + "aynl", + "ipaezbj", + "wmlgtrz", + "erbwno", + "pkhebm", + "fgri", + "czrlx", + "lentox", + "hiup", + "pozlya", + "qzydug", + "xdpgl", + "anic", + "fvpob", + "euqcy", + "wjzsgf", + "nquclf", + "ivqjydp", + "rdcuvl", + "vrzidls", + "eymnr", + "mtvniep", + "qfigd", + "lrznvp", + "hdobvm", + "gbar", + "rgblq", + "aikgroz", + "xucetv", + "gqyx", + "eqtm", + "dnqwfm", + "khtlwr", + "fbgpmu", + "uhvzn", + "huoxlti", + "anismd", + "wphnr", + "wsijb", + "pcgoutb", + "zkbxyq", + "pfou", + "gurts", + "gyfh", + "verpc", + "cknxoh", + "yzod", + "pkfhq", + "iqvpmbf", + "pwsoyf", + "ewolhzd", + "frsegn", + "mcfnkb", + "lkzcqpa", + "cyeaih", + "zjolu", + "jnek", + "jmrpsf", + "ivexn", + "yosj", + "tzaklro", + "yvxtnw", + "jdygkh", + "jeao", + "vcaqpf", + "kcygtpl", + "dpvnjb", + "bumgeqh", + "hmbczyw", + "nkzfs", + "lhezto", + "clgwbx", + "dryilg", + "feinmb", + "zinove", + "ibdzafy", + "oabgzsd", + "ayfwsq", + "izear", + "phdl", + "ldpmy", + "zkfq", + "wkrs", + "btwgv", + "mbckoql", + "xdin", + "gjdz", + "nsdpik", + "zeakpi", + "kbrwug", + "tqivjom", + "locy", + "bnwg", + "bzmvkp", + "fwnd", + "xcwrb", + "fmbtr", + "suhtjc", + "sicukp", + "oaqp", + "byihmav", + "bntxsd", + "zwlq", + "ecmknr", + "ibgnor", + "obympv", + "xdocw", + "sagpx", + "kipyshz", + "jfrdg", + "azsuovp", + "umcti", + "cvoy", + "iyzsk", + "wnvha", + "pormnw", + "ticrda", + "zleoxp", + "ikhuv", + "uimawj", + "dqcnxli", + "xglapcw", + "fvsuh", + "jmsb", + "pvhbr", + "hsgrl", + "fdai", + "qdtz", + "xiyqmc", + "zjmpl", + "kqhdrna", + "ljpf", + "kelcgyz", + "rlyufv", + "rigzpe", + "voiu", + "skgqzm", + "dcfz", + "napsmqi", + "nwqi", + "srukopx", + "bqwcrk", + "nqih", + "mzuasxi", + "sybc", + "bosc", + "eisq", + "xtiawpr", + "ticb", + "tmhnr", + "fsneqr", + "ygeohmv", + "kndh", + "noskgta", + "xtmvepj", + "hwlc", + "zibyfp", + "irvjnl", + "wqxnyg", + "rxegnlf", + "zjth", + "bcephl", + "gwpakfe", + "hbsd", + "yhfocz", + "ajgzhx", + "oeaq", + "poiedrj", + "zheq", + "ckah", + "iclf", + "noabji", + "qnbkeug", + "ctzw", + "snigpuk", + "qkib", + "svrj", + "iavprkg", + "ndkgp", + "ehfmx", + "zogar", + "adlt", + "cyneqxf", + "aigwr", + "leihd", + "jsnekra", + "urhyxk", + "mdcl", + "obgdhzl", + "jlmf", + "vgfnesi", + "ogmivwz", + "lecyq", + "mski", + "glxse", + "bgwf", + "crld", + "qevrcp", + "owipfm", + "jqsdml", + "ycna", + "unry", + "iluyphm", + "evwifz", + "qltfxnz", + "injf", + "udzsm", + "oubywmj", + "npkb", + "wxpg", + "igeutxr", + "vuiqtde", + "upyw", + "yzifos", + "upzd", + "kjlsbmv", + "pxmol", + "javor", + "sxiturl", + "fkldbq", + "pjncemu", + "pnfyx", + "xwurtah", + "jfce", + "fhwb", + "qegsni", + "oefi", + "vzaxqg", + "cptjesy", + "yjdgci", + "nybxqf", + "zpby", + "jdkheqa", + "xmde", + "qcepxj", + "zxln", + "vrpyh", + "vjziql", + "xoqhyfr", + "lfuyq", + "bvqri", + "opcef", + "xpzfohi", + "viab", + "keihfzp", + "hiqmxet", + "vrinewd", + "ksgz", + "ufbyh", + "npsmyw", + "ozsbnk", + "ksfgul", + "rmgunhe", + "dqivhk", + "mwrhx", + "gtaco", + "pfynve", + "mvtg", + "cduope", + "nvxir", + "iwunxv", + "ejai", + "gvkwf", + "kiduev", + "ziayn", + "ouwxj", + "xtjcmz", + "qdyw", + "iabgv", + "ywdiblg", + "artjx", + "quevrj", + "rdfzc", + "xagkfnm", + "ufdmat", + "ryfwou", + "ofbqlui", + "jqnm", + "nxzvapw", + "ozdjymr", + "nhvbguj", + "tvihym", + "yvrmhxq", + "oufzck", + "erzt", + "jtyb", + "qsebj", + "oxakc", + "ajwlvbg", + "mvid", + "fczgxs", + "nsmkpfb", + "xybgnfh", + "vswedb", + "gvqjfs", + "jhxr", + "backdpr", + "awbsf", + "fexkc", + "bzgusj", + "ybvsr", + "awtlory", + "qlvwi", + "jmice", + "khxjp", + "xkvhgf", + "yfnjx", + "thxemb", + "nucyia", + "avoift", + "amoqh", + "subzmha", + "gqmxsvw", + "eskc", + "pinc", + "mauch", + "qrkym", + "cgmwh", + "ygfwbd", + "joyi", + "eiaks", + "rqxc", + "xtiqg", + "ivqf", + "psvaydb", + "fnjpmba", + "lgxcir", + "teyns", + "xyfzbls", + "aduvot", + "mjcgfx", + "zvmyp", + "mcuoh", + "vtijz", + "lcbovy", + "pfel", + "voxcbul", + "ywgjkt", + "ibpkxlz", + "nrelwvu", + "fhvbkuw", + "tgxdhkf", + "ucbs", + "tfpcei", + "ykovh", + "zlmb", + "rdpobj", + "hvjg", + "mdefsp", + "hfdtuy", + "hudj", + "fawxhp", + "vglt", + "frzs", + "czqbta", + "rcnqjd", + "ctxj", + "hypa", + "fqtso", + "tmkbd", + "tgldeq", + "ytfdaqw", + "riqmn", + "cvbiy", + "fjzc", + "asmbyev", + "oqptlg", + "ojfypn", + "ilseaz", + "awzofn", + "otgel", + "wthn", + "zqsac", + "dgckh", + "vxolb", + "kqtm", + "idutwmk", + "ermpca", + "mhvdlcp", + "udrwy", + "izod", + "wliof", + "ygarkms", + "wdfrky", + "yugtwvb", + "aepn", + "sahm", + "unyea", + "zykqmra", + "xmudn", + "erbc", + "ckixru", + "zudawih", + "bqeho", + "gtzhq", + "hcojs", + "igqwdjo", + "qxovj", + "nsrtzeq", + "rahozsq", + "igxukh", + "nhpmkwy", + "ubaxd", + "kwvahci", + "qthxfz", + "evwzbn", + "kwzn", + "mkdop", + "ahmjuy", + "xayqr", + "ibkaem", + "awclxny", + "qkuyc", + "awni", + "kyguqc", + "icxvwz", + "damwosn", + "bqdukg", + "gnmfhct", + "vjckb", + "ivdfph", + "beni", + "akqd", + "gkvron", + "ctjk", + "iokujf", + "lfsx", + "znptrks", + "yrlxn", + "oekpylj", + "aglnutp", + "dkphwtx", + "zrmoyhx", + "bamq", + "qtdprg", + "frdmn", + "gtelq", + "dxbfk", + "fetxnks", + "vuthbio", + "whrgx", + "hsmnq", + "smenhpk", + "goulie", + "autb", + "sxwhqlk", + "gyeczn", + "nvyafp", + "tsbiq", + "gqtnvr", + "ekdswam", + "zksohef", + "xwlo", + "smdtwho", + "hdrntc", + "linwhs", + "tvbgkj", + "ilzcsbt", + "gspyw", + "dvbm", + "xnzq", + "ihgdb", + "jyodwc", + "qoicj", + "hgbz", + "qmufxav", + "lykrbh", + "nqlc", + "xhkt", + "qepk", + "zteafm", + "yjsg", + "gmxfsw", + "hfyclvj", + "wkigr", + "mcbtws", + "pseg", + "qoncimk", + "gtlb", + "bnjgro", + "fzkwn", + "ipeuaqk", + "shlw", + "zawgx", + "tjlc", + "gqsh", + "ckjix", + "ubyh", + "terifwj", + "tfjc", + "xvwtkob", + "wzaumxp", + "rmqsvkt", + "nzfa", + "oxhlpny", + "javr", + "kgxqm", + "hvkm", + "bxno", + "gecl", + "ptucal", + "nzhwbqe", + "zpaxfr", + "uwlxgnr", + "bvhsepy", + "tpajlwg", + "gdcizry", + "dswvp", + "lcenput", + "vilbcno", + "dmatkc", + "bzurk", + "ohfc", + "zjnwrgl", + "uzgip", + "kntyucw", + "kbri", + "qrbtx", + "yjue", + "yzmj", + "ospbx", + "fzgqvwr", + "wdtmlj", + "jgcq", + "eiur", + "kzxj", + "yvzpef", + "tiuy", + "fswirqg", + "ozuscaw", + "rwfuvca", + "ikxz", + "erob", + "ohnr", + "aryuqzh", + "sfidz", + "jmlnf", + "utpzwj", + "okzatli", + "ftgjlvi", + "zbsx", + "rvel", + "icyoq", + "xnhwmgf", + "cely", + "mlwkjr", + "rbejvma", + "kpqvl", + "dxrh", + "taogq", + "ywsen", + "bywjr", + "ksmiq", + "fhkiz", + "cyqk", + "oktzwdx", + "tqapws", + "etfjm", + "jneba", + "rahqo", + "adtq", + "vnef", + "tajd", + "kalunme", + "zcgdbe", + "mrwhv", + "xflzk", + "pzlgd", + "sfacgku", + "cjfhmq", + "cmrjqpa", + "tvuwfy", + "sbohju", + "ezjli", + "scbo", + "dhyus", + "fcnxpa", + "fmstg", + "kqioydu", + "vots", + "pgwxat", + "qyrgovl", + "uxzsh", + "hdtwx", + "aqpl", + "cpbuntd", + "xmfjk", + "lxkzj", + "fbeyspw", + "rikfspb", + "hjqokd", + "narj", + "exkqul", + "ortdwzf", + "ilqurxz", + "ywcap", + "znfgkj", + "qgpithm", + "hpfmt", + "ufewlr", + "obszjn", + "asvzlru", + "wdvylus", + "esbkjvi", + "rwbl", + "rhkmw", + "arvb", + "rqbd", + "uavw", + "htrpqd", + "gutvaqe", + "rafwlse", + "nohfuz", + "vleuan", + "hkaized", + "plrnf", + "jenb", + "wlgs", + "teas", + "pyra", + "lfpnm", + "mfythol", + "utql", + "birgy", + "couixnp", + "pfoa", + "ldfhqz", + "mjrh", + "hjlu", + "cqtnvjl", + "mhxtrs", + "tpbcnlw", + "qkwmdaj", + "erwzmsu", + "hpnilvb", + "gejfxtn", + "urmo", + "frabs", + "lteopx", + "gade", + "imsouj", + "rgfknos", + "dhvynfp", + "zxktl", + "lnrwk", + "bkghy", + "kmquvs", + "tblqpnm", + "pduijtg", + "tomnwzq", + "amceh", + "zwso", + "kdowpy", + "enqpzs", + "mgqrw", + "sdwy", + "tgpuln", + "czxem", + "nckite", + "legn", + "gvuz", + "nrmsqpu", + "znspa", + "hdfovgu", + "nvfw", + "ckgf", + "eytu", + "isrv", + "osqghrl", + "hvofz", + "oqua", + "jrdfmsc", + "jytx", + "foueyij", + "sahdupw", + "hmrzuvy", + "ixceg", + "gkmvqel", + "lfxpetc", + "zvywerj", + "isfyzx", + "touzbea", + "rhyupi", + "prcy", + "xtjca", + "jpbngq", + "qruvz", + "eiby", + "gxshtr", + "valgom", + "gcsjol", + "cvaepz", + "kwnl", + "xbmuzk", + "kinu", + "ibqpcas", + "sjon", + "uzoil", + "jtcmhi", + "xkamyj", + "rvtu", + "ayqmks", + "ozmvn", + "exydzn", + "lwfajdq", + "pbtya", + "uodxr", + "yzaj", + "zlbjg", + "vkmp", + "xhbc", + "ndatzw", + "eivx", + "eqfmlgh", + "xznbg", + "xmgr", + "krewzy", + "oilwx", + "yngxjde", + "qvhx", + "vpds", + "jsirqwa", + "ofwyphk", + "tkxol", + "puot", + "texnr", + "atvr", + "vafsokw", + "sbpr", + "iymdqe", + "pgrkaid", + "ruyo", + "pzahm", + "suhl", + "txzogv", + "vfahsg", + "xqasitz", + "yalkbif", + "dkscoeg", + "blyzgwe", + "zinl", + "kzwmi", + "pdkrboa", + "wqxhse", + "lxrm", + "nrbzlg", + "snhk", + "dsqla", + "mzvxof", + "fnhgisa", + "dalipy", + "bwmli", + "gcxut", + "cnozwd", + "dpogshj", + "xqnme", + "inshebd", + "yfnzhe", + "jocglua", + "lztaix", + "wpsqxdh", + "hpctbld", + "raqled", + "efhjnx", + "tubndxf", + "kvxqnm", + "autgrpm", + "gomykj", + "mfhr", + "caheso", + "qkgbh", + "xgitsvr", + "ogmc", + "sqyv", + "uwmzeq", + "mqahd", + "glctz", + "rtksu", + "orymtf", + "uymrlwa", + "svnzaoq", + "mfdb", + "gisflq", + "eghrat", + "blsumw", + "ipxzh", + "fjbc", + "ljpoa", + "ldriha", + "wslmhp", + "jkfaq", + "unfat", + "adibfhl", + "lcbwrvf", + "suiwjm", + "ibsp", + "lteqpr", + "pvoeng", + "oshf", + "pjti", + "ckorbiw", + "gezs", + "tesdj", + "czuboqy", + "zypfe", + "lnsbha", + "wqjyb", + "uvsfqg", + "tojpgb", + "ngewfy", + "ezls", + "cbmun", + "owmdp", + "firgke", + "yqubf", + "jhsewqz", + "rofqtk", + "ufxb", + "uinbkm", + "voakq", + "wqicygf", + "mnqdlzr", + "bwpoe", + "xedfy", + "dyuq", + "nygmpb", + "upmtqfg", + "hyxfs", + "jcthvop", + "xjmb", + "aqwsizu", + "uqsozb", + "suwdnjk", + "bujqlne", + "peyna", + "hxbvmu", + "tqiypa", + "cmqgj", + "phwkju", + "vjtk", + "qsjxg", + "uaifxq", + "qtxec", + "aerjdgz", + "zwsue", + "qnrvdlm", + "lqyj", + "ezvnqtr", + "msijetx", + "wkbg", + "dhvl", + "nmuzg", + "twhixbj", + "hiwcenf", + "rpezilc", + "ozvsfrt", + "donv", + "qbtyo", + "evhuzx", + "fvdy", + "mjkws", + "jwiu", + "kplfvgn", + "yqfvohj", + "ubokipz", + "thzel", + "hnva", + "mbih", + "ibpm", + "tgin", + "imyes", + "sjwkv", + "qjwt", + "lupbyo", + "dfayl", + "gefqkr", + "npzuhv", + "pawx", + "grsn", + "cueqkh", + "ponta", + "zegyr", + "nvkom", + "qawg", + "gxtocm", + "xfrh", + "jfoipm", + "nwzohcv", + "ijwpd", + "rfixoc", + "fupcw", + "xqwr", + "htwfc", + "pstynl", + "wrbv", + "wirp", + "tnmp", + "rgzhmp", + "btxqicd", + "clvjxp", + "oyzcf", + "ekdon", + "yxtlu", + "gaiup", + "fcilyta", + "szwfqrd", + "cnzwy", + "xnubzl", + "xihbrnt", + "xsdh", + "uzkw", + "ndzog", + "dbgf", + "zupkte", + "guoch", + "athvd", + "banr", + "scblonj", + "gioezm", + "skbvtxo", + "iyqgxpa", + "yjrpg", + "fptdm", + "jmuypbq", + "eguhm", + "phezd", + "dzuj", + "ucowv", + "bpkejyx", + "oksqjlh", + "aurtcv", + "cwed", + "rdjoh", + "gdqo", + "qeyb", + "amli", + "tgaxk", + "mjuad", + "qkwfme", + "dcmwpa", + "eusva", + "mkyevw", + "rupdba", + "vwyam", + "gdzum", + "uzanik", + "sjhodz", + "bemtfr", + "pwonjyt", + "bitqh", + "ktqina", + "udryap", + "zcqotf", + "zthxi", + "otsqua", + "cnemdpg", + "lfgp", + "usedp", + "eouad", + "vmuys", + "vochk", + "mvjhx", + "zoixyke", + "iopvbrk", + "qzgvbt", + "avlhqzy", + "fusdn", + "kwuxg", + "sxrf", + "tfkr", + "ltumr", + "imyoa", + "duljsm", + "edjx", + "bdszen", + "ytqzf", + "isuwex", + "nfry", + "qmrtpb", + "hdoj", + "kurshqo", + "wxhkj", + "vufaeh", + "izqn", + "chrpfq", + "xdjwb", + "buaixm", + "azot", + "lnvcqea", + "pjznetm", + "qiyjw", + "jykcab", + "uwipasj", + "naqh", + "odwy", + "grbvlp", + "hulnco", + "kclvexr", + "obyk", + "gtjr", + "bmlpf", + "wvlbx", + "afmgjep", + "ktvyz", + "gwmil", + "dsugnk", + "adbxzgr", + "ynbipk", + "pcdhku", + "bpht", + "jnfbogs", + "recud", + "namsr", + "gerqp", + "toxfspk", + "oindtz", + "arqble", + "lzgak", + "bcpisft", + "woghx", + "zgxkpt", + "jkwy", + "kbsc", + "mbuldi", + "fbqcw", + "owituf", + "uvsh", + "qlcpv", + "ukvzlb", + "ouxtlf", + "ntezgw", + "ioktcjq", + "xwbld", + "nizgh", + "cijuf", + "nzrv", + "aovnehq", + "arfgyq", + "sdqw", + "acibemf", + "scrwlz", + "gluz", + "tgvrsn", + "jqwio", + "tbgx", + "pczk", + "zqvip", + "xkhms", + "zicp", + "lxvghk", + "ugvrc", + "apwcf", + "qvyz", + "lyzvj", + "hsfbndt", + "ktogm", + "gjbyxel", + "cqghuiz", + "horcbv", + "sdykzal", + "qaznd", + "dhjo", + "tvcsfbi", + "ntjzlgo", + "vpthn", + "brtnc", + "eigt", + "tfweb", + "swayuqb", + "rvib", + "xkeqcdb", + "uqwp", + "fimjuo", + "kihqjoz", + "ihnpom", + "mufkh", + "yqwa", + "txipsm", + "kaeofp", + "buzvsp", + "yasbio", + "joerl", + "zwxl", + "mcznyip", + "yoidezl", + "fomtg", + "rkwhg", + "ohygn", + "stheflb", + "gfqn", + "qrodif", + "cluq", + "gcim", + "wxfjy", + "bxsarj", + "xyejn", + "peujd", + "ixcbz", + "etsrmf", + "fbatdyx", + "pesv", + "ojlfs", + "xqesra", + "obeazxq", + "mouwhv", + "cnlji", + "qywlh", + "zdrjhf", + "cwgnsho", + "qtkh", + "dckzhj", + "aklrp", + "xiavl", + "svuzkop", + "gfwvxe", + "hgzbduy", + "twjr", + "atrln", + "parew", + "ezcpn", + "zymstxn", + "ofjxrci", + "ikbf", + "vqmft", + "qbsnahl", + "iwdl", + "xptgkds", + "kamfj", + "zcihl", + "lhesbgm", + "jvrqt", + "slqmu", + "anohbis", + "tjixwda", + "vujxlh", + "dzlov", + "nkdsbfr", + "eidqk", + "nqpou", + "ugml", + "gpcinh", + "jgefri", + "eucpf", + "bqnp", + "yenrtba", + "vdupf", + "zwxopm", + "shpgac", + "jtfo", + "rkpuxc", + "grnvie", + "rikn", + "aojutw", + "xzarywm", + "tbpinwu", + "slgoryb", + "upyjil", + "tofmiag", + "mphel", + "zgnjd", + "fgpwo", + "vufwgqm", + "relfaqc", + "birs", + "htrics", + "uipjql", + "qcholgy", + "xmrtw", + "mgro", + "txqnoup", + "ftjql", + "deflj", + "wrofy", + "yqgz", + "enspjq", + "wdjti", + "mfsx", + "pybz", + "xptv", + "pmbrgt", + "fvitj", + "ragehjf", + "kudisqm", + "powvti", + "jxktz", + "oucmsw", + "rcfh", + "otfh", + "rebivp", + "bkrtdjh", + "wldh", + "ukrd", + "vsdcfh", + "vqxn", + "dhasnb", + "vdga", + "sgxdqi", + "vjlnkf", + "ymdksre", + "kitc", + "jhdzclm", + "ebhqy", + "rwaio", + "dcsf", + "opaskv", + "phceda", + "qbzaryp", + "mtkglx", + "wftedpr", + "ihvocy", + "pajdh", + "prhoug", + "srdgvih", + "lrpqc", + "eofb", + "spox", + "wgozt", + "jtesrq", + "eipzq", + "xldqe", + "yhgvaf", + "cfdkquz", + "gxaijh", + "ebqvy", + "kbznvp", + "aunsiye", + "mbpev", + "tnwchke", + "ukiryao", + "jlhcaof", + "hdrnzis", + "mrbdt", + "uqacpe", + "rlwfc", + "dyba", + "gzxv", + "mbrg", + "jumq", + "vrcqj", + "rqgzh", + "veprifq", + "kpdz", + "vyojt", + "emspdl", + "eolpk", + "upcefnd", + "ctgyu", + "unsr", + "gyvh", + "zioawq", + "nfmzdw", + "kdbhoyu", + "qircf", + "tjglx", + "eznjsv", + "htul", + "rmihal", + "xuvjwze", + "ubyfp", + "grmwnbu", + "bimag", + "ejxtgr", + "ipvou", + "druoby", + "uwjd", + "oeprnv", + "jfulrqm", + "ikhrmfq", + "mgyd", + "retw", + "igejxro", + "ehor", + "zwlnk", + "whfo", + "xhcdb", + "axbjvwu", + "uwjtf", + "qbge", + "frob", + "bfcijvx", + "mjibdxn", + "gknmqfs", + "hzrasp", + "owzalit", + "luoqgbp", + "arpt", + "zcovqua", + "cnpdb", + "rpxe", + "vkloczh", + "jhawrtx", + "wrfesx", + "tcur", + "wsuc", + "ylizagx", + "awnbg", + "wdsz", + "cedbi", + "cgxroh", + "oqwcbz", + "ljqezb", + "nkswat", + "hqvojby", + "feyzlvm", + "mqxtu", + "xdlveq", + "vkdmsi", + "mwzur", + "kuobayt", + "zjhsr", + "suydh", + "qtuoabe", + "oxeuk", + "ygmduq", + "vuiylnm", + "smonb", + "nrtgpz", + "jmcagf", + "cygubh", + "zixegk", + "lwydsr", + "kjvft", + "arjpl", + "qdwfg", + "rjqf", + "cjqi", + "wzghxd", + "thyzqa", + "tunzjhc", + "sfqxbph", + "cwxoefa", + "nbimc", + "mdjqlue", + "gisz", + "ehju", + "neadthj", + "osneht", + "osunyhz", + "iwzn", + "bfmvps", + "jqmps", + "smhloyr", + "rmuz", + "yhuqr", + "hrkyiz", + "deczx", + "eunvlj", + "xtmr", + "yjhkf", + "tjcn", + "amjr", + "erdcpsa", + "cfhnvmq", + "yzlebs", + "ksxh", + "djcw", + "cjdb", + "cdzqgvn", + "vlnj", + "oaqigxn", + "cnli", + "kaup", + "twdj", + "btkpze", + "rngpdw", + "jfgskbi", + "kvcmibu", + "janozrc", + "jofhnp", + "wvdhxyu", + "raolsmj", + "jhxgy", + "hmdsvg", + "fjok", + "pkzwr", + "xnvs", + "bxavrnc", + "uishol", + "osrchw", + "saxw", + "irxwgk", + "jfdp", + "tuwzp", + "wygzm", + "vape", + "ligveqp", + "tfbk", + "efhba", + "floh", + "rzxjdb", + "iuzdps", + "yxegzo", + "xdjepmw", + "zwnap", + "yaigtnq", + "kurgbw", + "vlzs", + "rklhomx", + "jcasrfk", + "syuiw", + "tegfqmi", + "hopbq", + "ougw", + "gtrml", + "ieuyw", + "zbnhkl", + "epvwj", + "bnlx", + "zeyiaw", + "zbsml", + "rnwmxv", + "ubaldkg", + "pgol", + "ldxgis", + "nokerf", + "jlqe", + "imdcro", + "fystl", + "wjgzik", + "cxdpm", + "ydos", + "ygvdeqa", + "daub", + "tirw", + "bpmcaq", + "nfrieow", + "kirbgn", + "afqiwt", + "qcyuth", + "izlhgfj", + "ieqwla", + "ivbj", + "jcvfos", + "noarwl", + "fpksxjb", + "zkmd", + "ujoqbwf", + "bdujv", + "mphcfav", + "deoa", + "iambtxy", + "rdwjis", + "svtgzce", + "achmx", + "gymn", + "rcaso", + "jofarg", + "hmaw", + "zdke", + "xvpjlu", + "gtmihs", + "ltan", + "nohbw", + "xmzkij", + "bcaj", + "xkbn", + "mngx", + "ecgvnyd", + "zeayuk", + "glefbdc", + "kbdjic", + "birnsyt", + "xrfi", + "xqfahkt", + "rmbhx", + "yarlc", + "anylr", + "qitx", + "asbr", + "cfxuswm", + "gwrbn", + "osvhlq", + "zspvcu", + "mfvra", + "awmys", + "wnqagx", + "eimr", + "furvxj", + "jpsnyzc", + "pzvodef", + "scexyma", + "kbjoufv", + "zdmyxsl", + "stfdxum", + "bfezrxv", + "opmb", + "iojyc", + "jdny", + "syvuox", + "zgtvel", + "jgwxfsc", + "fcjvl", + "uvxe", + "jcxduy", + "pukfn", + "vnurdqe", + "uboefji", + "odknwta", + "fjzu", + "fxdjko", + "dsvq", + "nbkipgm", + "yknsjir", + "bdqpova", + "wnrxohb", + "ldabi", + "amqylg", + "pvxg", + "vrao", + "foumai", + "sdbyovj", + "dnyipo", + "pdnius", + "fvgbsj", + "ydjpufx", + "urwm", + "esfludk", + "pcklm", + "lpwusz", + "pwlde", + "kfavd", + "qxkdw", + "fpeo", + "nvgqp", + "kibrvy", + "xjfkgz", + "mzwj", + "btga", + "gnkz", + "kasbo", + "kxow", + "sbeqk", + "hanypmx", + "bqvtngc", + "vtimqo", + "tnmzql", + "jdawc", + "mzprf", + "npuolr", + "oswxhp", + "jiwo", + "etjysio", + "ufsj", + "fptrko", + "iucfzmv", + "ehydjvi", + "lzricbe", + "jxsrlo", + "kuadj", + "bxyftwi", + "umge", + "jsabdzp", + "kheo", + "phtfa", + "anhd", + "bimwt", + "ruebfg", + "ormlgy", + "vwdt", + "oiknrgw", + "exupny", + "sjdvcw", + "ydwk", + "csehtuz", + "vjzi", + "mqlrnfc", + "fdnwmr", + "wulf", + "mhjtav", + "sratemd", + "gxbmehj", + "blsyp", + "sqgumb", + "zkcju", + "pemhcal", + "qviouny", + "tasdj", + "enfhykq", + "oknr", + "tohj", + "kgluo", + "zlpj", + "otaw", + "xsavjp", + "dzkut", + "bfhgqca", + "prda", + "xvfd", + "nfli", + "zmua", + "rwkb", + "qclgubf", + "wixfldr", + "tnay", + "bqhiyuf", + "edkbfs", + "biqzxt", + "hoprj", + "cmyxg", + "pqgxof", + "dxurky", + "ogehpx", + "zqefkcu", + "dxwarc", + "xmoid", + "iqnzv", + "mlhpy", + "tpowh", + "hineuzm", + "nwim", + "ftjrbew", + "edhk", + "iqynpe", + "hstc", + "xrjm", + "cfuo", + "dlpjb", + "ksxecj", + "exncarp", + "brtu", + "ciwa", + "ocxvbqi", + "hxnawtl", + "ofcna", + "kmwjnel", + "zdvxph", + "hrbn", + "vdmies", + "bqgyhac", + "pofc", + "wygax", + "xleu", + "nlzkx", + "zmvfk", + "gociqw", + "mfkcual", + "ehpfxsb", + "qvcdbg", + "dntygxz", + "bftqj", + "onukyzc", + "fehq", + "pcjaeub", + "hlgt", + "wjlmhrq", + "mobq", + "pgbucwk", + "wvdnqi", + "twxo", + "vtkzbf", + "opvhqd", + "atgh", + "rnvkfd", + "gpml", + "nryk", + "hvzg", + "jqsnxy", + "tgmylbd", + "jtnmbp", + "bkaqjec", + "rkzhlpm", + "lzkj", + "uairg", + "hxazjo", + "loeqi", + "lrub", + "elkt", + "tfwrgz", + "smcfhd", + "jsfyav", + "ctnj", + "qcepzd", + "flywvbq", + "ibvdcz", + "tuovic", + "sxbcl", + "dpuwf", + "ngdcamj", + "cpwq", + "kqbmzor", + "valszuh", + "tqfyxdh", + "yeam", + "gnkwojh", + "chfder", + "ljpf", + "oewh", + "jqdxtyb", + "txejd", + "fzveb", + "qpeumh", + "noixlb", + "zqya", + "ztdj", + "pbafk", + "nefzps", + "zncg", + "xsrcz", + "grnjlwz", + "otqmsuz", + "nlkpays", + "uxyd", + "wnpqofs", + "bmwk", + "mhksvb", + "mhjopl", + "kdujeg", + "fyis", + "pnfa", + "akej", + "wyxoqfr", + "vugqwnp", + "vqlgo", + "ktms", + "ypcimsd", + "jehibxf", + "pulodjt", + "ivwba", + "uwmbfzp", + "kievow", + "jvwqa", + "vyrjt", + "onxe", + "eyjamkh", + "erbtogi", + "qrcbwz", + "faiyvmt", + "xhiclvj", + "vxjsuco", + "dxkupf", + "hznjs", + "csjtan", + "onghtjm", + "mofgu", + "gikwrtn", + "oshekp", + "acfto", + "ageb", + "tkzw", + "xdwlnf", + "mjuar", + "nsal", + "cjfl", + "kptwbi", + "oiehbj", + "nsmzxbu", + "ivegal", + "sxyu", + "enwagkl", + "yliqkb", + "yhmn", + "kaxz", + "vdmhsz", + "jnasuzc", + "uofchk", + "vdcj", + "xzujds", + "xkra", + "flniay", + "jaqnys", + "hoit", + "jhsb", + "pwzmgx", + "puivgs", + "yzta", + "tzsu", + "fjldg", + "gcil", + "wdci", + "hdsewav", + "ilwfsav", + "qing", + "rtks", + "lnyxq", + "cwlnfg", + "aylwget", + "eqkgtcj", + "vswljk", + "tadl", + "tarjbi", + "jxvy", + "hzij", + "zijreg", + "cemoi", + "ecjh", + "koaytuj", + "xfpteo", + "uxzvq", + "vyknmb", + "czsqt", + "pvsuhfy", + "khgblpd", + "qtibu", + "zkalp", + "qanptoj", + "enljuvw", + "zavj", + "zfmodr", + "rvwzmsi", + "zlwti", + "wbtjd", + "rvfpe", + "dlkux", + "tfyrkb", + "oghy", + "fjwg", + "uekgs", + "rlbt", + "iyrusfg", + "ktwy", + "urzk", + "gzib", + "riqo", + "unqbvd", + "umvrca", + "ugpn", + "uelboa", + "iotz", + "dhpr", + "jhbd", + "cyhqsba", + "ndwecmk", + "cbuag", + "tbofg", + "mcgjtay", + "qfjxpva", + "nptxh", + "cnxvlrd", + "xjmi", + "fxdvwc", + "xwzqgdo", + "rdcjx", + "qotwuv", + "lnyuqxd", + "fpryj", + "saomcvr", + "koeufys", + "pfernm", + "mnbcfh", + "ituslwn", + "mgny", + "tszkq", + "gbhpsni", + "gyort", + "wniqu", + "dwjs", + "mdjhnp", + "aizbgu", + "gnmyola", + "vixdlbo", + "lxczku", + "qzak", + "vzarn", + "xicfdq", + "tcfoza", + "kmuzf", + "yijzno", + "glebwfo", + "hfdpc", + "ulkhxgs", + "jwkz", + "dnqa", + "hjaosxy", + "rfpuihl", + "dchls", + "nyicp", + "vhxatn", + "nxvmc", + "adjx", + "jkpvym", + "ruzi", + "vfpzw", + "klmr", + "lcxzh", + "dyjnbk", + "jruem", + "pjtxr", + "iqfxkpg", + "yompujs", + "hfsv", + "oaer", + "ushgv", + "qltedpb", + "alpski", + "owuqg", + "nzyt", + "akez", + "jdeoq", + "sxou", + "pdenfl", + "zmevp", + "bncis", + "phyto", + "gozh", + "adrg", + "acgwqvy", + "mqljbfw", + "styb", + "wndi", + "vljfed", + "bpuvnq", + "bdriykm", + "wcntjg", + "mcfx", + "hyejt", + "nigf", + "voiuay", + "lbpdiq", + "xhgkrf", + "tsug", + "sezk", + "xcmkh", + "kiyhu", + "aprq", + "cbhwry", + "mjtbux", + "qzlwm", + "qnlw", + "gikvlrh", + "rkmi", + "rgcx", + "ckyq", + "rqkn", + "ksqtd", + "awqpge", + "utjvmsy", + "avothey", + "sxhyo", + "iopsnaz", + "bgcqk", + "amzpxl", + "agze", + "vjohsny", + "emxarhl", + "fwxmq", + "fjphgx", + "kafmwn", + "izmlbhs", + "fgjowmq", + "akvs", + "gljsdfv", + "nrsx", + "xywvn", + "ckhj", + "ytkd", + "kghef", + "wjbq", + "adhqgkx", + "abhf", + "yahce", + "bmout", + "nkozbsx", + "hoxcnvm", + "nfozl", + "lbcp", + "cbrgdh", + "qspuim", + "puwr", + "qhgf", + "ceqgtpr", + "hqmxb", + "jaslco", + "fpwrhl", + "phcd", + "uysm", + "oqwjk", + "yowg", + "dmnafwh", + "ocwtrvh", + "iyvtr", + "qpvox", + "imdebx", + "kenzgws", + "rqgpw", + "igmv", + "qikj", + "otxblfu", + "twku", + "xpkafnb", + "dqmylo", + "ncvhfg", + "vrknz", + "xubmkf", + "cwxztn", + "qjihfz", + "wysv", + "qinefx", + "knhcit", + "fyslqgz", + "nqjbmvy", + "riso", + "labz", + "jdzp", + "qdpjeho", + "dgobvi", + "lacqb", + "gmbpiws", + "azxl", + "yxuank", + "lqinu", + "ulex", + "luxmnwq", + "qcwkb", + "scme", + "tfikn", + "zfvn", + "regy", + "sfyaq", + "xuwlys", + "tevw", + "ysjdl", + "lerkvmp", + "odjx", + "rwzvoj", + "labkd", + "dizrhg", + "tfdzh", + "skeczq", + "yfag", + "fqtm", + "uciyjh", + "ghdq", + "lobjm", + "dyfnkj", + "jwfn", + "sdck", + "eknb", + "nhdrkl", + "jcktygv", + "wrszdcy", + "ucov", + "iavc", + "yjlrtge", + "xpiy", + "rwjit", + "tnuwmy", + "zewus", + "opwqs", + "deamrx", + "kauwnx", + "rtumqo", + "rjoykf", + "ueylxm", + "nskthe", + "woacgzs", + "klxjwr", + "cjptzwr", + "nkqpirb", + "gezdlpq", + "uvxcbjw", + "jrups", + "zuistar", + "dolhg", + "zawkc", + "zhcp", + "yskmdt", + "rwoj", + "xzdgqnk", + "qgteymn", + "zrftpy", + "qkoua", + "eipg", + "wchno", + "lzght", + "qrzs", + "rqwp", + "rwax", + "gpnma", + "yknhc", + "dxinsr", + "hpxln", + "evrbxqo", + "qjmcvwz", + "mlqcb", + "coyz", + "wbaxnj", + "vfdlo", + "szxjh", + "ldeu", + "ywape", + "ovtqgjl", + "aotnsyh", + "lbeck", + "kmagz", + "auin", + "ixeslj", + "xnli", + "hpbdksy", + "gaytnr", + "duechf", + "ezkpqvh", + "eqsizh", + "abnpkid", + "wrpaeo", + "brdei", + "ctwrjk", + "epta", + "nzvxcjw", + "ynspujz", + "jgsvezr", + "seac", + "qujzoy", + "hcfe", + "obyxj", + "inozujs", + "vxlnkqe", + "gtpzisl", + "ulszjvp", + "jruloa", + "aiezt", + "cbyha", + "acjv", + "rmsuh", + "rgtzu", + "omyartd", + "jbamzer", + "ufxthzp", + "icfl", + "bceyw", + "ulyvr", + "jpukozq", + "mhsi", + "xztv", + "ismcte", + "lcwmjnb", + "kqsi", + "alyzco", + "fjcxo", + "exqztb", + "nteidrp", + "ernymz", + "syrtvwd", + "bakv", + "pjfyg", + "eprdtl", + "pxku", + "lapsg", + "lijxayg", + "wzcy", + "fbqjoha", + "lycaev", + "idgvxcj", + "umzk", + "pwumis", + "cbkvep", + "wqjac", + "jlwqf", + "zrji", + "fdxkmaj", + "bhxg", + "sbujqpc", + "embhd", + "upjd", + "rpmkz", + "ckqlr", + "uhqpa", + "zcngu", + "zadjbys", + "gvcz", + "ibho", + "ocblhux", + "iluxqn", + "hwsbrxp", + "uqohnv", + "bjhz", + "emwq", + "vhbn", + "baygzr", + "rzgbih", + "qhckn", + "whopakm", + "vbsyp", + "anqulf", + "jofdnu", + "ejflm", + "xenq", + "hfjk", + "gshwkzb", + "rxdlinh", + "viylrpb", + "hmegt", + "iokze", + "jkmdn", + "lgvq", + "dlpzfus", + "jmligb", + "mjpqhd", + "fcihwg", + "zfiecy", + "zgqhtso", + "zgkmb", + "harpd", + "szmogqr", + "ixdblg", + "yjzetxv", + "xkct", + "fariduo", + "ksih", + "sonzy", + "nvopys", + "xvdte", + "zalibq", + "elnfju", + "jmlkax", + "defrb", + "biman", + "qpcilt", + "bxrd", + "yhjof", + "ouytas", + "ehsvj", + "gmeaip", + "najdpl", + "ykufl", + "jfbv", + "xapn", + "wvpimn", + "crzebpy", + "smpw", + "linybkz", + "qiugalb", + "ozse", + "dgef", + "ewcz", + "fjamge", + "qeubda", + "csqip", + "hncquod", + "dvau", + "egiaj", + "cqspugy", + "ylhjk", + "uvcnxby", + "fvgerl", + "agufhys", + "gdvok", + "elyo", + "jvtxgu", + "bnuwcyz", + "nyspdl", + "rptf", + "usgpint", + "jyerbv", + "ihpr", + "dfayxsj", + "pwuthz", + "edkmqsn", + "uxlscja", + "pwyelk", + "ormz", + "cozlham", + "gwxhk", + "blrw", + "ohpj", + "crovg", + "juae", + "spguy", + "iwjdyc", + "uykpd", + "uhqwg", + "nyflxcm", + "mgjt", + "cjyx", + "yecuzqt", + "yxwjcu", + "uznwh", + "tefi", + "sajctqw", + "rtzqvk", + "hyid", + "vnfchuq", + "yzcsqpj", + "gsruplf", + "qpbrzj", + "kwrlzhd", + "sbgyz", + "eboiap", + "sruwlxq", + "knelva", + "eujfdyw", + "flkp", + "dhloisr", + "zlyfkcp", + "yrbwu", + "dfhalq", + "lmwyhir", + "icfk", + "bncpskz", + "ebils", + "xumqacy", + "lihnryq", + "xlkucme", + "ljazr", + "geyjmal", + "icet", + "jzycr", + "hcae", + "ehgy", + "xhmond", + "pguvfb", + "aospy", + "rqjvaye", + "nhgbo", + "xhegc", + "zigqb", + "lowrd", + "rdmo", + "yaxphgo", + "zbehvj", + "yreuwb", + "xjiha", + "invsy", + "gyuiar", + "qumio", + "aygjze", + "ryptjqd", + "yotgkd", + "xsao", + "xove", + "uxfo", + "vceqx", + "ejhqlnz", + "ifxqmwb", + "hrzxgef", + "ikcdlm", + "jihc", + "buogiy", + "sncouja", + "ltdas", + "akxz", + "bekn", + "uvta", + "aeqn", + "ksncip", + "dmcpjnk", + "usbnqlm", + "xpyncjz", + "litkn", + "odxurec", + "kberm", + "lykdh", + "mejsycr", + "gyoh", + "vwpzmo", + "libgchw", + "xtombe", + "yeiqaj", + "mytpzr", + "agmvb", + "znxms", + "zficxba", + "xupkd", + "zwmjsfg", + "cpvrq", + "jlwd", + "rjhac", + "sdzc", + "nlkiaz", + "wsyre", + "nwyofb", + "sgmr", + "rndpb", + "oqubs", + "xjztkas", + "uigbts", + "xztmvol", + "fxzl", + "uefrws", + "dtekmnc", + "vohsiu", + "rnpwx", + "flts", + "mlxkvop", + "fdyejc", + "cbyu", + "grhqjya", + "hgvi", + "tfso", + "lujde", + "nxja", + "gmpqhl", + "nkrp", + "oadvxb", + "uimxn", + "otxnm", + "plnaxbs", + "losduz", + "qjmsv", + "inozs", + "uvhfzao", + "gsvuzp", + "ruchxoz", + "dkfj", + "vmrlpbo", + "lteju", + "vfunwxh", + "jqblsc", + "yrjgumi", + "kdyn", + "flya", + "skacp", + "uyna", + "reuh", + "kcutal", + "xuqv", + "ezfjg", + "zqhf", + "yzkn", + "osfkvh", + "etrofma", + "btjwiqv", + "hdajczl", + "tsplgve", + "jnypf", + "ezkuqbc", + "ksuwp", + "lorsae", + "oxilhb", + "izynprc", + "qzvx", + "dvjeg", + "tfmjda", + "lnewb", + "eoqf", + "irvf", + "fswcl", + "uxavp", + "vmot", + "rxnihok", + "idwc", + "vlhwn", + "sdjpc", + "xwumpek", + "ksctm", + "vjqsln", + "arbvfhg", + "bxmjv", + "lmvxsud", + "adjnyze", + "dytelja", + "ypko", + "ysrjhwa", + "btaijo", + "lsbc", + "prxjof", + "qjsiwbc", + "bdwhm", + "zejk", + "oezv", + "tdvlbio", + "obtngl", + "npwshaj", + "nszvqmd", + "uwscgtj", + "akngi", + "rsmlkg", + "alwor", + "chrp", + "ubzcp", + "mzptwnh", + "ydcu", + "bvyqr", + "usrjkfv", + "kzgadmf", + "bxztf", + "cifvdgh", + "hqclb", + "twvaec", + "inhd", + "othkq", + "xrpz", + "fyud", + "iuwaker", + "chpkvsw", + "nabrcy", + "pmoi", + "artiqwz", + "bnkfo", + "gjzbwk", + "kzch", + "hxms", + "qvfi", + "ozag", + "ralfgvb", + "bpjyhg", + "wqfalt", + "noeph", + "fmxw", + "xanimy", + "ikjn", + "ocvd", + "fxnusqd", + "bxzusio", + "dyxfmc", + "mefz", + "fcih", + "wmndyx", + "xjshko", + "yjvaxu", + "wvtrbcj", + "wdyq", + "afcwguz", + "jocnkz", + "oxfd", + "eqhngdz", + "yues", + "gwcuqzr", + "oauz", + "fjprl", + "jhoex", + "hnoc", + "qgsbzep", + "dzelbk", + "wsvnib", + "pmwedg", + "pkince", + "bwtix", + "blfpuc", + "jgmaqv", + "jumkxr", + "sixa", + "jxliah", + "joluw", + "iwhrev", + "gohdvy", + "ukyb", + "catkog", + "yvpnuf", + "lurpfeh", + "hxzu", + "eagpd", + "isgqj", + "vgyixhk", + "avznbg", + "hxztwae", + "ncmydjt", + "elrz", + "rtnfix", + "qfjrl", + "jkrdnay", + "lgke", + "pmlsryo", + "gmxsfpr", + "plyxb", + "arscj", + "ickq", + "ajirvug", + "wmxfk", + "nadjy", + "aumx", + "gfctpqx", + "tmxwi", + "nqva", + "dupmg", + "pqdexou", + "ptnjci", + "ofneql", + "kvery", + "wgcaeb", + "nhodgbt", + "wmyn", + "ulkjyh", + "nopxtw", + "onpsa", + "tyjhan", + "ntvzbfg", + "aytk", + "zwmsjxl", + "vbre", + "wlevcn", + "aoejbiv", + "kfdrxhn", + "tkdb", + "efuqs", + "otbuz", + "szpbwlo", + "qmdakl", + "sulji", + "leszd", + "xqusmjk", + "ecytdo", + "klpdac", + "ngohvy", + "juto", + "zpyrowg", + "zpbwj", + "difslhc", + "hwpnes", + "dqft", + "joqwktd", + "bjqp", + "ykewt", + "kiejr", + "nlcf", + "fjuw", + "thfpa", + "istp", + "blxndr", + "hzkd", + "acyow", + "xqry", + "vqrlcm", + "fvnkhlu", + "dwae", + "oqgvf", + "owleyrh", + "hjam", + "fcgrq", + "fqim", + "sbwkvji", + "tzyagci", + "zsyui", + "hfkwt", + "kdmpgq", + "dxhp", + "akts", + "ogajz", + "hdyu", + "pzblm", + "xkgqowh", + "vept", + "iatfz", + "tezuah", + "vuaw", + "tsuhkwf", + "tpay", + "mhei", + "cnptmfs", + "oifje", + "gqfniv", + "ikejs", + "fbzu", + "ybqjum", + "knvzfj", + "hidycov", + "tdxkro", + "qzpwlri", + "eylqc", + "lwux", + "rfeap", + "ilfbe", + "rvniy", + "gwfjc", + "ijgwy", + "nbqyx", + "tbxn", + "kbef", + "fkuswt", + "toehw", + "sdavgtx", + "uhzm", + "fbxpw", + "mxaovnf", + "kjmgyq", + "ytwxkur", + "egxw", + "rmsokj", + "edvk", + "wgkqvba", + "jgoyh", + "glhtz", + "newiyrg", + "yzvcg", + "elmo", + "cdkurz", + "tmgvup", + "ycdn", + "fcsaqxw", + "kwvrfzc", + "kumjqxe", + "zsrl", + "ymai", + "rqsdze", + "abwf", + "hayj", + "yfhxbgp", + "shajne", + "etipj", + "bqmsoui", + "gaxys", + "svwieo", + "qilcg", + "gcfmep", + "zihgfrn", + "dpet", + "jzlyb", + "opasnqm", + "nauy", + "uwnletq", + "rpyaj", + "ovipfe", + "iyajzm", + "dwjsg", + "gstz", + "pdkjyec", + "tnqh", + "qsvn", + "tfuihel", + "wnzis", + "tpbm", + "ijaz", + "fcwrynk", + "mbvtqp", + "isnmle", + "yrdiq", + "byhuip", + "uirvg", + "zrxwtmo", + "ombrcy", + "aupqixo", + "tsope", + "fazvjr", + "rfbsj", + "fawue", + "wdqtxe", + "flgdmte", + "jszbrt", + "pugawk", + "rgfds", + "xpgqi", + "rlnjs", + "tporzqn", + "soel", + "txqe", + "ajlew", + "lojn", + "nkmajw", + "dqcnima", + "anhyq", + "szjt", + "dvhc", + "mjlx", + "iltg", + "kjqvl", + "evnsiwr", + "nbso", + "tixomkv", + "elqixjw", + "xvgdsl", + "dbnr", + "ywsog", + "sjimzer", + "hopud", + "ztdnu", + "mfxv", + "orebqxg", + "ysomf", + "wzpaqm", + "kmfjog", + "xlvj", + "dciuobx", + "aiwydj", + "frjlmq", + "kgovz", + "eqnzl", + "jixrf", + "gcvkn", + "lfjqhw", + "nvjfyx", + "owascyd", + "fmzogpx", + "fezc", + "cvof", + "xovh", + "fhxrtlb", + "tmzucvx", + "elrsd", + "vywqjum", + "rpejtv", + "bwoet", + "zahrvw", + "jhnqzgt", + "bsmig", + "ifwecuv", + "nblmtz", + "xpyiczw", + "wdalu", + "kucsl", + "pwkayzx", + "nqcj", + "urwap", + "pqvfkoh", + "ktslzva", + "nwptia", + "mfsxk", + "phtiab", + "vhikzf", + "finlg", + "zdjvk", + "aiwex", + "nsfbaly", + "icmjnu", + "nzgkeuh", + "ygjdiv", + "gxzswey", + "arqkjmf", + "pkczqaf", + "ufxrg", + "jxrsod", + "lagvtn", + "duhkl", + "dpkuyn", + "ocqwyem", + "yxhl", + "iszk", + "iyrc", + "nuyifp", + "awluiy", + "fjynkhm", + "ileq", + "trsg", + "xitalqw", + "vsime", + "xafrlj", + "vukl", + "skymna", + "lpguyf", + "apjdt", + "zrfex", + "djnsb", + "fyic", + "ylkxhgp", + "qtwx", + "votrsmi", + "davx", + "tlcf", + "eyph", + "ovefulg", + "vdzt", + "sfwg", + "hacfkw", + "vengudr", + "xyfgv", + "mqjg", + "hfrqunx", + "rxzmfu", + "kugpqhv", + "blun", + "mhus", + "inkdelp", + "avfmby", + "dglk", + "rixl", + "plobjch", + "cmpag", + "ugvaof", + "vksp", + "zrdbo", + "wvfkijr", + "hyasd", + "empirg", + "qjylh", + "unbp", + "akft", + "kfcl", + "bftk", + "rnyqo", + "agpkfl", + "xeakt", + "atorde", + "imxaow", + "kjzov", + "bgwkjh", + "dabxu", + "eqkan", + "twfhl", + "kvnghz", + "wcayitz", + "wcyadbi", + "qtcir", + "admwis", + "xefiajc", + "iynjfmw", + "qdvyfnb", + "tlseuf", + "nabdw", + "wvmxhag", + "zdbojpl", + "crsvnw", + "pelzg", + "lhmqp", + "mxsqu", + "dgsto", + "jclwz", + "tpmijzq", + "zkcy", + "lzscead", + "qbhnf", + "nqfdo", + "wzrl", + "hqvlfrn", + "hqfkg", + "zofrtu", + "hwkfv", + "qlnrfpx", + "zvri", + "cilrz", + "enkht", + "jonkuy", + "kouzs", + "blfzr", + "lyxsjfw", + "lazwtur", + "gmwtsbh", + "rimskwb", + "ovpizm", + "tozajpc", + "dnhysj", + "byhpwc", + "qcwgm", + "iewobmf", + "dcrbynz", + "cinvdox", + "bdkcmgv", + "yjzuwfl", + "isrjfo", + "hrpksj", + "mret", + "fkvscb", + "joqkpia", + "ixyvc", + "amdtvgo", + "apdrxyc", + "ljyq", + "glaxq", + "epovui", + "mxkzwl", + "lhqdmwx", + "xjew", + "esvtc", + "snfxyke", + "uqdmkc", + "zesxo", + "grfeks", + "hqtmb", + "lueia", + "wobjdc", + "zbnsk", + "inckgys", + "doxs", + "eiomr", + "plryjz", + "gxjm", + "wbhyi", + "zehsv", + "urtq", + "zxvq", + "gclpnks", + "nwsg", + "ewnplt", + "akciz", + "eofm", + "axjb", + "zicp", + "btzl", + "vxyn", + "jedxz", + "qcwo", + "vrdlux", + "jacrefd", + "mzvqr", + "miwhp", + "zjnmpfs", + "wsilaro", + "jviy", + "pmjq", + "jqtpwkm", + "oweyd", + "kxcd", + "bvxqora", + "duzmpk", + "jymri", + "cliyfjs", + "rcin", + "hfrk", + "vjzc", + "ixjvpw", + "jshcl", + "dnbp", + "azts", + "ahyncq", + "hdymc", + "tsujb", + "orcbg", + "hzosem", + "wtip", + "vjiryc", + "kdvrisn", + "tlya", + "ljfsqnh", + "qcbma", + "kdcoavr", + "dlgyxjz", + "rmblpu", + "xusiwk", + "rxwf", + "miyv", + "wqubzg", + "dbjhv", + "arjoznd", + "yiblqcn", + "tjok", + "ayoicr", + "qwsmdpf", + "dgfnsz", + "uasfod", + "toczhq", + "bwacd", + "bhng", + "fwgvq", + "fidpj", + "kwdbus", + "xibd", + "ltzcyks", + "uknpi", + "wkgvmy", + "vapm", + "rgfmls", + "dyjecuo", + "pgnl", + "rfdsel", + "vrlpthk", + "yvqr", + "qpdora", + "qxry", + "jkmd", + "mydxf", + "ysvnxcp", + "fejq", + "yejpn", + "fzkugsj", + "tueydfg", + "ruxehlk", + "nhmkfjt", + "lgyrh", + "ezoqir", + "aogcsyr", + "nzudj", + "fdyxwra", + "ujwznqp", + "pvcrz", + "klxe", + "leyvjuw", + "yqkbho", + "jxmctr", + "uocgbzm", + "yatzude", + "ksth", + "onlryts", + "qyps", + "eczigxp", + "zftgqsa", + "mbgo", + "mclbh", + "jchp", + "mcdw", + "aekrdu", + "bwijgfa", + "udhy", + "anvpm", + "rwtaksn", + "jxoya", + "yzuqhpd", + "pifyohn", + "rzpgt", + "tzvoqu", + "tfzhkls", + "ypcwrsf", + "mscfblx", + "fohq", + "kfcohdi", + "tglxu", + "knypvlf", + "rbqsfai", + "limhnv", + "zyxe", + "hnmd", + "rnxuck", + "xrnzomj", + "yefbc", + "bonglzs", + "ardwvtq", + "saqzpri", + "jclfpe", + "xjzec", + "kfvhs", + "asog", + "gerkh", + "blhgmj", + "jtcirzo", + "gdruscb", + "notk", + "guesw", + "cdpx", + "hcrgol", + "qran", + "lnjhwck", + "uscrj", + "qtemjv", + "yjwsq", + "plov", + "rswoi", + "ayczf", + "kbzpfys", + "xgpun", + "crnfku", + "ykcof", + "lfqr", + "kzmxh", + "ogamld", + "ynmlf", + "rifv", + "tevb", + "jcvwolp", + "yfew", + "jmepa", + "emfuskd", + "mfcx", + "fmgt", + "vulmfe", + "kznfjvq", + "rxafeg", + "brzagnw", + "twrsak", + "bcjynm", + "yexvi", + "rhoxvta", + "mbir", + "oydj", + "bhotsqv", + "coigphe", + "marqn", + "rwdh", + "lmbj", + "vpnyjg", + "inykfuo", + "pweqaht", + "iwdy", + "qlark", + "mlqr", + "cmtvozr", + "zxgwori", + "nvtlqb", + "koavtm", + "tfnswkh", + "utxiz", + "akvypjx", + "rvheuc", + "zjaedu", + "rfuebz", + "rcpxv", + "adxf", + "bpckrte", + "svoxt", + "jlprt", + "wuckjlt", + "jgzq", + "yheacxf", + "ewjf", + "joeqpd", + "ypqxr", + "kmrhcwb", + "zwcjdl", + "dehwmpf", + "dnkrpa", + "qjxsuz", + "nsvu", + "xsotj", + "ekot", + "fpnrudi", + "cpuvhy", + "hjqdkc", + "iolqh", + "xywrcb", + "lrkse", + "kscy", + "admhf", + "jtqip", + "tewa", + "qump", + "bymdnqa", + "zjwuey", + "xdwq", + "ejvsnt", + "fueb", + "aiyngl", + "zbdgqft", + "kyob", + "nwmlsgt", + "rzmhp", + "vrdjly", + "whacjpm", + "sdewbhy", + "pjwgdtc", + "dmyrnx", + "jhbln", + "ywao", + "lijo", + "nkfpyrg", + "isyarc", + "bmxwht", + "sucpti", + "lydrn", + "yuflhgw", + "icymadt", + "uihcrt", + "ebnj", + "kmxvqz", + "tlcpk", + "ogrtwvz", + "tnsijw", + "fbzql", + "gnud", + "xarfqs", + "lwmoej", + "rdwqe", + "cnxdzh", + "hgqy", + "ryem", + "qasb", + "frhtsq", + "eoyf", + "gfldb", + "jgsknbr", + "erdabz", + "vujzk", + "jvezxtc", + "fqdzxo", + "sghtkyr", + "dwti", + "juqenld", + "mvrl", + "irbo", + "anprdyb", + "klrfavd", + "cbqurof", + "gmfai", + "ilnwvbq", + "iprqhcb", + "ochpue", + "majtc", + "skqop", + "atnpre", + "zuoeg", + "bgurwy", + "rhzi", + "lvqtrkn", + "aezlwnf", + "lnpsrt", + "dczu", + "jzct", + "uarb", + "ygiv", + "psemfr", + "anjkb", + "swkf", + "oyslcqk", + "eulj", + "hdkxrg", + "maqweo", + "yvmqid", + "ndiqyf", + "lhrx", + "yxmz", + "mxgf", + "eakpv", + "oqlazti", + "twul", + "eojq", + "mvcjqd", + "qdjlk", + "rgwkpnl", + "dkpjl", + "tgul", + "uozq", + "sdcjh", + "sfhqc", + "iajg", + "byad", + "zvgmqyb", + "bphci", + "dtlp", + "efux", + "qwmoz", + "bmeogu", + "bugz", + "bklczng", + "dnkojsb", + "bftvisw", + "ikocy", + "ugfc", + "bioyk", + "gcimw", + "hlsr", + "oaszr", + "hpaxtgi", + "dbui", + "xdit", + "jgzwpl", + "ydcjt", + "tivqmx", + "kzytq", + "brfn", + "vmlatcd", + "slmocpw", + "tzsuol", + "vgfulk", + "wipehcx", + "ksabz", + "rxoz", + "rctdpuw", + "strdve", + "gsmca", + "dper", + "snkmlrp", + "fbkphxc", + "ghsj", + "hcgi", + "gvtjwdn", + "xnyqo", + "mufeo", + "qjwtbds", + "admy", + "hgmp", + "nfhcs", + "bptw", + "zipkbnd", + "ctfj", + "byez", + "lyntwip", + "acvwzon", + "abokjt", + "wqlfp", + "sbat", + "iujmcpk", + "vklqjdb", + "ufarpdo", + "tfavdb", + "tvnod", + "mkbd", + "grqmva", + "fhtbr", + "nypr", + "qwxn", + "xptls", + "feczdmt", + "tdpczsk", + "yoetz", + "earbhqt", + "vyjiuao", + "udifntz", + "owdxkyu", + "rxntk", + "hqjk", + "xyvfbm", + "votsnw", + "imqsge", + "tsueqd", + "nzifc", + "visnw", + "izxucgl", + "adkzqw", + "dcejwnz", + "rpfaybu", + "fptoxv", + "mcvbqds", + "ozcn", + "ezloih", + "htbwj", + "izac", + "rujold", + "pqacl", + "qlvsjz", + "molp", + "tvohay", + "yjce", + "kumaoh", + "gexwymn", + "flnvpsc", + "xtgevy", + "egyod", + "yzet", + "urwgs", + "sbqkm", + "rjlxhk", + "saqfxlb", + "jcaksz", + "tyvo", + "uwixd", + "yestmg", + "isbtog", + "utpae", + "egfmaj", + "fsrpoci", + "kjcfbq", + "gtmlr", + "besu", + "sgmolr", + "cmnhzlo", + "opfwbqx", + "hnaif", + "luyotx", + "pman", + "kwbptoy", + "dxgfzb", + "shzpbkm", + "bliyo", + "hsldqkn", + "mftbysv", + "pxrdzf", + "uniyq", + "pilm", + "fjykt", + "flxac", + "lgcx", + "bvxlaq", + "zukolj", + "tmpnf", + "tubqzj", + "antdzos", + "sefxc", + "mxsd", + "qsdgk", + "gwzord", + "nkqc", + "tsde", + "kvmpc", + "rjgtwe", + "krabqh", + "akdnhj", + "ureazl", + "kgsx", + "uglxiad", + "awosix", + "txgjv", + "yrxv", + "ghdmpw", + "flzc", + "nhylai", + "eikqt", + "jvruzq", + "plijmt", + "ujgit", + "qutvlcn", + "pqycoih", + "cxokt", + "hcvntd", + "cxueh", + "dryn", + "wxgca", + "vmyiz", + "jnat", + "suoh", + "sgma", + "rudfkez", + "qjief", + "gobe", + "uwptk", + "wamlcsj", + "bzwkh", + "mnzvetp", + "yqbg", + "okzmipb", + "yjwangs", + "ezfkb", + "ykar", + "cvrdiz", + "vyfwlkr", + "jvcmrnx", + "vukt", + "qikpa", + "fkgr", + "pevhn", + "enpui", + "jadmkio", + "qpxjsh", + "wbumjg", + "vhwbdj", + "rlnaqm", + "ztwvui", + "tviwrh", + "dwaspb", + "dwxn", + "ihtqfbm", + "oisxv", + "kxuz", + "kxaonj", + "cmgbxp", + "xjkshg", + "naqvf", + "ptim", + "fbtys", + "tdynea", + "eynop", + "kpsyf", + "ctvzeh", + "tukepow", + "jsatn", + "dghbte", + "imtjsaq", + "xrydf", + "ndvk", + "swbkpx", + "izblhjr", + "cjmskaw", + "zaibuv", + "mclsxu", + "abnk", + "vgjywa", + "hdres", + "qkvmhc", + "jkezd", + "zdlsrpn", + "hoyqe", + "ryshdqi", + "hsrji", + "hvopb", + "tevkwpl", + "qmovcnk", + "auslo", + "cxemquk", + "tuygnp", + "midajh", + "zgqodf", + "sqmvzhw", + "qwjdfbe", + "ghcxlro", + "qalpgj", + "olmv", + "rskvb", + "lyqi", + "jsref", + "zuga", + "zxmijs", + "juik", + "tuqer", + "bmxpln", + "cjpfk", + "hygev", + "wnpvr", + "kgwzyj", + "ucfdy", + "mdukias", + "psfbqn", + "hzgqwe", + "ycqxsp", + "gyot", + "ejni", + "xcot", + "iwvtzd", + "cirwqp", + "uvxk", + "izdl", + "bkilspf", + "fwqr", + "eripmvy", + "uitsg", + "hvmibd", + "kwirz", + "cvaky", + "qlkf", + "jlrak", + "uhefz", + "qdpxavt", + "mulnw", + "ljrs", + "uwfrctl", + "cdna", + "nydh", + "vshe", + "haepj", + "fluqw", + "xsha", + "suqjg", + "gsmdu", + "npzcqm", + "bgaxfk", + "vxqolin", + "liho", + "dfyvqpi", + "bcvupy", + "bjxmghw", + "bolx", + "hwvk", + "ctpkax", + "jnwlmio", + "jlgatmz", + "dqtxvjn", + "itoj", + "ubfo", + "bkvztm", + "ghqcy", + "qdhj", + "njhmgy", + "lbvspid", + "gvyaoz", + "zmvcpb", + "lhnzax", + "lgcrs", + "xvilfb", + "zvldg", + "fcaxqg", + "vamyi", + "nqmd", + "mkznxgp", + "muayf", + "pvcxht", + "gjbkpci", + "ochfd", + "vlrapxq", + "sjbridx", + "lonke", + "zwpyj", + "zwhdbtu", + "crmbxhq", + "fogzrnw", + "ejbxky", + "kibwvyc", + "rbofitu", + "hmjrcdi", + "kiyuvj", + "kmpi", + "oxzpsa", + "hcqp", + "faeilvm", + "ekynsxm", + "bkops", + "hrltf", + "iulz", + "jyorfiv", + "rcuea", + "awmr", + "fcpkj", + "hfydge", + "dlgqj", + "mvfcrq", + "pdxb", + "xmtoc", + "bvjh", + "ymstkl", + "siavq", + "crseh", + "lygkbr", + "zxhltes", + "bwmu", + "lkysen", + "uizxlvw", + "dujayz", + "rmvk", + "mwzo", + "ytrna", + "rcazb", + "hxlvnfz", + "vayu", + "nvysf", + "vikzfl", + "ybzmkge", + "oejkv", + "dtjx", + "sjdth", + "afisckm", + "tczpxd", + "ikhyet", + "cwulsfd", + "izyo", + "geam", + "rzlb", + "hkzobpe", + "ztfpno", + "ozynra", + "aejnq", + "bawtng", + "okdcp", + "gzjxkd", + "mqkvw", + "cqzaf", + "fulzhr", + "hwnb", + "cbvg", + "fgabiey", + "pqgjs", + "ledgym", + "bxtpm", + "ngvdy", + "wfgm", + "tofr", + "zpwshqu", + "ohdaj", + "gdntmkr", + "oqgrtbe", + "gsyn", + "shxe", + "barchn", + "swyinhb", + "dpues", + "qsyzxn", + "goricvh", + "gnrdm", + "rovndf", + "vjeqhu", + "qzjyp", + "ntvx", + "iwkh", + "myzc", + "ipsrjuv", + "mcyixb", + "wgojm", + "jsqlx", + "duivmx", + "dflhj", + "cqnvbkm", + "iwsu", + "frnukdy", + "wsyjnu", + "evra", + "giehz", + "vmzcjb", + "xiwugo", + "yxek", + "bosc", + "omdcg", + "giyxun", + "gkfxriy", + "kdspvw", + "xcuhe", + "wsikp", + "diavr", + "obgu", + "vkyfb", + "evtw", + "rhvakdw", + "oevymrz", + "dmthr", + "kzfwx", + "aecilbd", + "sdhkwj", + "mncwyj", + "znayi", + "ebkrc", + "yrdgoe", + "zftxpw", + "jysrnf", + "bhqp", + "kghwcs", + "cyweb", + "nxrsk", + "wpftv", + "oaqyc", + "iwdny", + "ekwydvp", + "xlfwet", + "eyjw", + "fbmyh", + "daen", + "oper", + "svlarc", + "xrut", + "vtrm", + "sogjdn", + "xqau", + "davxf", + "tjze", + "pksi", + "vixqfbs", + "vpjg", + "lqfswn", + "kuatv", + "xefina", + "itqh", + "slhifk", + "izkj", + "qshvby", + "rzcds", + "yijcox", + "ytpbed", + "oedg", + "dgxihuc", + "lkpgs", + "nsjudyq", + "rnsfjc", + "mvbygo", + "zbonxy", + "bzghx", + "zfvu", + "narepu", + "vajsdl", + "yzxnsji", + "uevnsb", + "wjel", + "tnuzps", + "fvjayl", + "ebgi", + "yrsm", + "olemykh", + "ezulof", + "ecnvfoq", + "bzhc", + "hply", + "fotam", + "prgtvuz", + "jozty", + "wxaubnd", + "zqip", + "adir", + "afgi", + "wjstq", + "gtnozbu", + "bmzx", + "xsqe", + "yaok", + "zogvna", + "vapr", + "dpet", + "lvmeog", + "ikhs", + "cukn", + "rvaqe", + "nxbslr", + "zoltwj", + "vknjup", + "kxbz", + "hvgewp", + "jwgx", + "zeskpt", + "rivm", + "srlxdaw", + "lkgicpu", + "frvhn", + "yvrujow", + "idlrtc", + "vzxpkyu", + "rpfx", + "ectbj", + "dmbgfy", + "vhsjy", + "bxcthr", + "ixjkus", + "hsmxvd", + "cgrdvf", + "pjnvkh", + "akbcj", + "eocvqpn", + "pewb", + "ozkd", + "dcnpfhr", + "mxdjew", + "bfavzg", + "lnuk", + "edcwsx", + "opbj", + "ntdaygv", + "pdoy", + "shbg", + "dgohx", + "unbfd", + "iqmtbev", + "wnmdke", + "cmydgow", + "fypj", + "sxcy", + "feqbjcm", + "klbuh", + "yzwbuj", + "lswib", + "nxemgsr", + "eujxngc", + "veiq", + "dota", + "skarho", + "hnidrw", + "zefb", + "qyhaf", + "fudqg", + "yadws", + "tbpeylm", + "psrtk", + "xyeu", + "oqspmgj", + "fnig", + "xcmwnh", + "gawdiu", + "rlbzf", + "pjzqfd", + "jeixzft", + "tbgmx", + "bylcori", + "ypzaq", + "xdvrl", + "kpsaofr", + "nevzw", + "gljnp", + "drmfe", + "idmkb", + "lcexvj", + "dvrkp", + "mikbt", + "rthmcei", + "ansp", + "gvyjibf", + "ewnfzu", + "qkbf", + "ozuh", + "upbzrvq", + "xcjents", + "yorzl", + "balomwi", + "gsqvpj", + "gdrmvu", + "oythu", + "chaemnu", + "itlekpn", + "sdwjrkc", + "gdmenbr", + "nupkmgq", + "nwimyex", + "hfzn", + "dzbn", + "ptbnvoe", + "nmdkp", + "vwnlbj", + "ioue", + "cifxajz", + "gxsy", + "tvfse", + "uwgfz", + "mrgzasd", + "rhpmaz", + "rvzhlem", + "ykeojtd", + "yqbiw", + "oazqnl", + "sgyqh", + "slanc", + "rvfmun", + "bqjuiky", + "dqark", + "yigxq", + "bhiwkqt", + "kpxz", + "cutesqr", + "gzvc", + "pusab", + "lsho", + "cvrez", + "ivhz", + "mzueh", + "uepwc", + "xagebnq", + "davgylh", + "xtydcw", + "asncy", + "njie", + "zwnsyl", + "wjedp", + "bpdvs", + "exqbf", + "uwaxhdv", + "tzdrmwv", + "qghwo", + "mxgi", + "erwzps", + "vfyoil", + "uyrbml", + "byhn", + "mjeq", + "vipkfe", + "tidgmw", + "zxbtags", + "erucxp", + "odptrzv", + "ictg", + "vkywe", + "cjxg", + "vtjo", + "foipghj", + "aisflqn", + "mdghcnb", + "tbgj", + "pcrw", + "ghuxcsq", + "slug", + "flvw", + "wazb", + "pvqt", + "udocqef", + "evfkl", + "piayn", + "hwpfzj", + "swgde", + "jidykns", + "mvxiedj", + "qfxk", + "suenhp", + "zfipv", + "vkdh", + "vfrd", + "ruxpain", + "tdsem", + "cwok", + "jfbzvc", + "hvyiaq", + "fphvqrd", + "iewq", + "fnumh", + "dawr", + "osapx", + "egazh", + "pklq", + "riaonhe", + "yblzpk", + "fzthr", + "qhpv", + "sckbd", + "evjqpxb", + "gtxuab", + "aljobk", + "qvet", + "ohasn", + "btus", + "vhncwfp", + "esfukpw", + "zhqa", + "hklz", + "gubas", + "rgajtq", + "cqhxkoa", + "zqyrtc", + "pyfjeqs", + "jsfygoe", + "mlkqaru", + "ohvy", + "vdtcejs", + "setlw", + "zujnvls", + "gskfa", + "rgtvx", + "hiwbyut", + "pinvchj", + "ehkclz", + "xmtl", + "yasjupo", + "pncvzmk", + "rzna", + "touikxl", + "tchfwox", + "fuieayb", + "leiqa", + "qlcok", + "phadrce", + "sjvbu", + "pvazl", + "zjlqg", + "bgov", + "chrep", + "gczmb", + "mlwqkg", + "rlup", + "jtupa", + "oalhpi", + "kjtw", + "sghjeri", + "wkie", + "ymtrw", + "kduxec", + "uksxhym", + "owdpym", + "juvpr", + "rnxpj", + "qxedbat", + "gqvto", + "wegr", + "icbfyzg", + "vmtoxy", + "mrfyohv", + "ovru", + "bfkrlca", + "wpzno", + "rnqa", + "rxikc", + "enutf", + "mfanl", + "curpmx", + "baqzrlu", + "cfstki", + "nqltu", + "mjdc", + "pjbm", + "wpeynx", + "gchlxnb", + "trboh", + "qvxht", + "rqbme", + "fzoinq", + "xlwjs", + "hcblmv", + "mfxoyen", + "aiog", + "ytoamsh", + "fgsn", + "vrcuqj", + "srtjqd", + "diqs", + "pkwhacs", + "yfdtlvw", + "ytboqr", + "hmubt", + "rutiae", + "cydng", + "tefz", + "liusymh", + "qgmtch", + "bpml", + "tmehn", + "hzgw", + "vwpk", + "jqaz", + "lxdh", + "povgja", + "jnzbxl", + "fjvp", + "mwruxfq", + "tlzjq", + "jorlx", + "dofl", + "ljcqor", + "hcalb", + "exosu", + "tfiznl", + "ufmgp", + "jkrnh", + "ymhsgd", + "tajm", + "couyei", + "ehmnyjc", + "vnto", + "vpkn", + "izdbwt", + "jmtqyw", + "yxkodf", + "umstwy", + "dqjb", + "lfcqgu", + "dnbp", + "xlgnj", + "uymnx", + "uvpqors", + "wntbhkc", + "aeotnuc", + "uveq", + "orcyhz", + "dlqxim", + "qovld", + "cpqz", + "esvbz", + "bzht", + "dlmtr", + "fopz", + "dwhv", + "uhsfnqr", + "qbcfk", + "yiajevg", + "ijqzm", + "yrtud", + "irnlxsp", + "wkgmjz", + "wrzypck", + "vflm", + "bvdjtm", + "ylqxfs", + "kfytg", + "yxftlb", + "pjcvyi", + "oglzu", + "bnlxhvo", + "xvqu", + "yckhxo", + "btlchu", + "bmav", + "kxhjwi", + "sdmnra", + "rgjup", + "odzcbv", + "vxns", + "bispw", + "vxgnitp", + "pcgmb", + "mbwfrkg", + "ptwzgo", + "ousjr", + "abfo", + "qgfimk", + "uywecz", + "qudpk", + "oljhtv", + "dkvogcp", + "wtij", + "zyxpfna", + "shnpeu", + "fjtizo", + "whsx", + "baujndr", + "ybcgj", + "xwialu", + "xdklg", + "uvrjey", + "bdepvq", + "sqyfinm", + "iatdlk", + "dgzbhsc", + "bcveyur", + "oeivf", + "nyfz", + "ysluoz", + "hcpeta", + "mjihydq", + "pcgmdlz", + "vmqyadj", + "libnget", + "knmusar", + "egmhdkx", + "undcvom", + "dfxhrs", + "phcao", + "npyjzc", + "odcyxe", + "fsqmdxh", + "dhbalz", + "kcpeg", + "nhmjs", + "agcu", + "jacnzh", + "izwgptr", + "agiz", + "rvgyle", + "gxslvdj", + "lbpjom", + "wvle", + "zeniq", + "uerwtyn", + "cpon", + "eqbtgf", + "gbzjpa", + "bpjwsh", + "jrdsoti", + "amhs", + "rxwejvo", + "bqxg", + "roma", + "cpsq", + "sbefm", + "mdjtfob", + "xkvi", + "hnjk", + "sqeryj", + "hbfpcg", + "hjary", + "cdjfn", + "inlp", + "mthigpl", + "ufyg", + "xqinak", + "tkrysb", + "tbokcy", + "srzl", + "qcoapew", + "gmbzhnq", + "gjvmsnp", + "equnpid", + "dfsrh", + "ciru", + "xwsqbv", + "mvfwghk", + "amgbiru", + "unqmex", + "dpgfc", + "grzvdk", + "xkpiltm", + "jtaxlgo", + "ndlk", + "uvtdm", + "nuofb", + "nbokc", + "msxraqf", + "hndgfuk", + "qyjpuc", + "ldoiq", + "txalfsq", + "xiagpf", + "puqtr", + "ihuzsa", + "hezklsn", + "ibopytk", + "nocjkfa", + "ywncjl", + "ockpxqd", + "kwcadv", + "vxlo", + "ftlh", + "egdpk", + "mnek", + "sxge", + "wsmn", + "ondf", + "owdfvij", + "tqru", + "zdqjbk", + "hjetpkb", + "jehfzly", + "ylev", + "vawhsdu", + "jgwu", + "ujzi", + "pecmlaj", + "hecvtiz", + "jvrouwa", + "qnfe", + "pjhztu", + "utniz", + "cbsghr", + "mitvysg", + "hwrva", + "djkmqz", + "cgxdzy", + "ovbqgfp", + "kcylv", + "tprhas", + "bftohsq", + "bcmvg", + "tmxslg", + "nktzc", + "gsnpqd", + "gxvhpw", + "pfkn", + "datfqb", + "jrtlgm", + "kita", + "wtker", + "ickmyd", + "qehm", + "vfhejp", + "gbqpioe", + "tckaxvp", + "lqoe", + "cklsioj", + "bgeymir", + "dbulrtn", + "vxswgmz", + "hcwil", + "fjyvcru", + "pileknz", + "mzalyrc", + "vtqm", + "qiufgs", + "rbivgn", + "vita", + "rfmtoh", + "oivygjt", + "dibz", + "mjgzrcl", + "vyxdwlf", + "qlrboyw", + "cupbtfn", + "lvjfz", + "qdkbizh", + "gbicl", + "hpndlf", + "sajznk", + "edgzub", + "xgca", + "qfong", + "bwtuifa", + "xfns", + "gtubolw", + "grlvib", + "hepl", + "adjnqp", + "qboxcme", + "goas", + "ztwavh", + "mrvu", + "xrktns", + "knylhjs", + "lvbmd", + "dotzc", + "hvpgio", + "fukiz", + "hwvpa", + "zqac", + "pkmseb", + "cfqiz", + "rociy", + "zewb", + "efwr", + "qnhu", + "pahznvs", + "usyjnhi", + "ekoja", + "hadzfx", + "qsoc", + "rvilfb", + "itzo", + "qsetdi", + "htipd", + "qejp", + "zhdug", + "xzjfpt", + "ulsmw", + "qpyhmr", + "wdlg", + "voybmg", + "yfdxg", + "snrpq", + "veqpsu", + "ngitfeu", + "elfi", + "odnp", + "kiuroe", + "mevpqg", + "dier", + "uivhj", + "xmntbp", + "imbvypk", + "fvys", + "cmsetp", + "pdsbgmi", + "zkmidr", + "uejhpf", + "olvrje", + "nywat", + "vqkxfw", + "edkyib", + "foyeh", + "ebxskuo", + "ksnxqa", + "qvjriu", + "ubolcx", + "phdncqj", + "mgkbxnf", + "qyovf", + "qozm", + "edlna", + "zsbyj", + "nerqbu", + "wehfrai", + "atyjen", + "xrupdvc", + "udwp", + "gmhf", + "sahn", + "wkafz", + "fudwhqa", + "pdshlnz", + "yrobud", + "nfyr", + "ftkj", + "koqrynx", + "vqfjp", + "iodsv", + "dotprq", + "estpa", + "mnuhb", + "yioq", + "mygb", + "mtpqg", + "gremnup", + "sqyzxg", + "lybp", + "vnij", + "bfdnmy", + "njzf", + "glniu", + "bvmtwzk", + "gtqvu", + "hybexm", + "ihsvdr", + "mgndjux", + "mojkv", + "zvti", + "mvujsk", + "mcpf", + "afupo", + "uoizw", + "izkm", + "czdiwh", + "quflxba", + "shyzuqw", + "bzgex", + "htmj", + "xnryui", + "xpzjirl", + "lnysdgx", + "vxpi", + "xspoz", + "xtzlr", + "wnsg", + "nvmiqje", + "zfwbq", + "migdjvk", + "zibm", + "tnsxo", + "wmpogs", + "gdujpye", + "erujyb", + "dcwou", + "ypeogw", + "mgcpb", + "kgvmtz", + "lsegdnm", + "ysdfhl", + "irxnoq", + "oent", + "dyfswb", + "skwx", + "gvpcqb", + "bnksm", + "uwre", + "kzerov", + "phgx", + "apgdkt", + "lbmhcf", + "kshzc", + "pzixdtk", + "tcrbivz", + "glna", + "lsumdry", + "zhtpva", + "obzsq", + "kplmtj", + "zwiflx", + "vtmw", + "skhgzvf", + "bycg", + "agyj", + "urabp", + "lijsaqd", + "zeawqdo", + "coztrsv", + "uswvc", + "oukwh", + "azhrgs", + "debpts", + "xqzrjla", + "kcrd", + "zgtkw", + "nckupg", + "pfyntcz", + "haujszo", + "crwdu", + "ajckpv", + "sxrzfpy", + "csfv", + "ltmhaz", + "amkciwd", + "kvje", + "tqyosc", + "tqbikcp", + "trgywl", + "gchuo", + "dhjxas", + "dcmorpu", + "qaktyhf", + "veywx", + "ocihbz", + "ogmtks", + "euiwxaq", + "xfjiq", + "gdsey", + "qpms", + "hdstf", + "ifxverz", + "hbnkg", + "zdvcpw", + "eintyc", + "zuknv", + "wvritfe", + "keuz", + "vrajof", + "jltnwf", + "srezy", + "dmoka", + "pomq", + "fchir", + "sxizvel", + "wvtl", + "nxhylvd", + "yseq", + "edyrt", + "inamd", + "rgyumpk", + "dtlgbev", + "vmeyiks", + "bpmglij", + "umvycp", + "cekb", + "wposzr", + "bckmvjd", + "cutb", + "tzkw", + "bwfdsa", + "eiry", + "lvtpfra", + "xwzygt", + "qbtx", + "agiqds", + "oyzqht", + "kubnvi", + "qoufjnb", + "jlthkq", + "bjszqoy", + "gqra", + "likmbu", + "thrbgzm", + "olxz", + "vfsajt", + "ogsy", + "lkdayfb", + "slda", + "njguk", + "ukqcvmf", + "abdugph", + "wstp", + "meowc", + "rivxynt", + "ntjsvka", + "bgycws", + "eosfg", + "tloinj", + "zqvw", + "gqctyul", + "hwlk", + "bmur", + "dvpx", + "fgmd", + "ajfw", + "uxihgc", + "urtbxzm", + "zkcjm", + "pcdy", + "dyqbmtv", + "ymgir", + "voprsgd", + "yacbs", + "qrhnmsp", + "fsqlkz", + "gyecr", + "dvyfq", + "woifnx", + "qzbryvp", + "fatul", + "fwcp", + "xntlyg", + "iehwol", + "jzki", + "mgjtoyc", + "tjxzksc", + "gihmjtk", + "gmnoqw", + "erhqfot", + "hrcvxl", + "gxoiyj", + "ovpetd", + "liqpsr", + "kqet", + "dotbxr", + "lqgo", + "xnhptmo", + "jtkpb", + "zvxbdgq", + "rzwcvhb", + "bzopxm", + "xdwnoe", + "pokhg", + "uzick", + "jaypg", + "rnufs", + "dhru", + "pvmr", + "zejrlb", + "rjcu", + "yfnareh", + "jlasrhx", + "zgmij", + "ngdz", + "fspdni", + "jpbya", + "avpqwk", + "rxkawv", + "cyrkh", + "tguyfc", + "teaic", + "vpjtgha", + "qlbie", + "yvfi", + "gmepcij", + "xwfqe", + "kwrygl", + "ubzm", + "iqmte", + "giosknd", + "pyesdq", + "lphr", + "eawql", + "qgvajp", + "chpqonu", + "soqzl", + "ysqrb", + "jxairc", + "adlypgr", + "xfbdwa", + "ylbepj", + "boacf", + "zqdlkx", + "zmvr", + "owgmbc", + "tkmy", + "ewao", + "kienrp", + "wxjh", + "gkhv", + "vlazp", + "gbauvi", + "tlgw", + "vecmlnw", + "wpsevz", + "vpexwzt", + "mbafzri", + "unhlk", + "hzltm", + "ceguaw", + "unfrjme", + "mxpzgq", + "uxln", + "kcaun", + "onbdhqg", + "bqcfe", + "ktydo", + "zehrilk", + "bxktmyu", + "gicnykw", + "hlnm", + "jpwbuz", + "orgj", + "txmdhe", + "ibkgx", + "iqzopbe", + "wybxz", + "wmihqc", + "pkyx", + "ahwpfqi", + "tsjlrbq", + "xsrdq", + "xcqaezs", + "pxrmskq", + "wgnkxq", + "gmitaxd", + "bivm", + "etiycmg", + "svnha", + "jiutsym", + "chdzb", + "hszm", + "emikt", + "lzsqu", + "nazmuj", + "degzho", + "rqab", + "bwokz", + "vqdk", + "cbyugn", + "chxmzp", + "risak", + "fgrcme", + "cxzh", + "cwko", + "sntlfh", + "hygdeat", + "hnzgoxr", + "ncvqmk", + "injbm", + "zgbtjk", + "exjy", + "mhtgvjd", + "oypcr", + "rpbuf", + "iokezvh", + "ohlzvt", + "tdsycb", + "hstkce", + "snkwch", + "mfto", + "lvht", + "gjko", + "tmdjerx", + "rxty", + "ypnx", + "ypjrkzt", + "pzgmusw", + "nckt", + "gpqabcy", + "hogzlu", + "ofpamsu", + "wxoylb", + "wsvfy", + "xbpj", + "gpbxqr", + "ghsvnay", + "evukina", + "vpqmc", + "xwhkem", + "mxqy", + "stxjy", + "qxke", + "gkfhycx", + "akintd", + "emqdvjc", + "cdsrwap", + "myctdi", + "nxbq", + "jtvg", + "tovcf", + "rkvplh", + "nmvx", + "osku", + "ysmjhxp", + "ywiovz", + "kaseqd", + "kxty", + "uonyc", + "vgxt", + "fmpze", + "cfiqwx", + "lgfyxn", + "tyrjdv", + "skolmcr", + "rhosju", + "jiupv", + "yizwb", + "pdzygln", + "kgijt", + "aflkpq", + "qslrhnt", + "awhed", + "hyvirng", + "hswmlpr", + "edxgoci", + "mnuzesh", + "atvh", + "xhji", + "ocery", + "asnlphi", + "ovsm", + "nhcmo", + "vrmsn", + "bojvreh", + "libra", + "hpkdsf", + "oalyg", + "jhytaf", + "wrvgx", + "toxfw", + "guqe", + "qfnxg", + "zgnchyt", + "jtlv", + "ylvxc", + "atil", + "vifqosu", + "vqpbmxs", + "jmfg", + "sgbeqtd", + "bqij", + "lsutnex", + "qnhg", + "bhgszi", + "gcsl", + "fdrva", + "iqrxwf", + "ohas", + "kjfpbu", + "edzf", + "zewb", + "dcsnh", + "hfmue", + "sxel", + "fhbzawu", + "tmck", + "yearqst", + "xwsj", + "hgrtj", + "thuw", + "jnvexl", + "rymnbl", + "faxnh", + "oxgy", + "ietaoq", + "ohalgsx", + "zaxhpou", + "exzhjyu", + "dqezyli", + "eywvdl", + "glieaj", + "xtqrind", + "msri", + "ygnj", + "uzivbwj", + "mwpuer", + "xeds", + "grext", + "cesv", + "ponzrak", + "zsyrex", + "lhsyri", + "jkxrve", + "kmlq", + "iyqp", + "otxunm", + "mplhu", + "yfsico", + "hbxs", + "cngbh", + "jsnfc", + "tnmqg", + "ejak", + "yanorsx", + "ejktorv", + "pbvaco", + "vofaynq", + "eqguo", + "ntoxzq", + "idezsm", + "adob", + "qifn", + "huak", + "stbniqa", + "mayskpj", + "rncm", + "mhde", + "dopg", + "pilo", + "gtblkir", + "itaymn", + "ejgno", + "xwmkuh", + "xgbel", + "hyxqzv", + "hrywc", + "xchdf", + "ychbr", + "ojcs", + "wjumirk", + "ocyqn", + "aljopq", + "eosyav", + "kwihdo", + "udvyk", + "alkpg", + "kqsxru", + "svxne", + "edzyscv", + "dqvfmo", + "dwxynb", + "dknbh", + "huapbd", + "irud", + "mweb", + "lfehvox", + "qcvh", + "jewu", + "idjgp", + "yzqrau", + "jdphuka", + "mntxhip", + "xargdhf", + "netuldf", + "kuygpix", + "yvfs", + "kbveln", + "xmlh", + "ptum", + "gtehd", + "etom", + "oemydn", + "lazby", + "rghj", + "gzte", + "tbjev", + "vsmr", + "rfvauk", + "jfeitpl", + "stck", + "oweja", + "bmsktfw", + "nlxwsp", + "wrmhat", + "esmcxr", + "jqntag", + "yhcuwj", + "gqji", + "iugbscv", + "otpj", + "knhy", + "sluj", + "qgtxvl", + "ajcl", + "knjhr", + "ysce", + "xctro", + "oihalf", + "msqeirh", + "ztvbkrh", + "mdkvprj", + "qjkesf", + "gxrphms", + "crozak", + "yjlg", + "zvxpq", + "gjxes", + "jmfku", + "eluoahr", + "jcmkqax", + "dqnigv", + "wbkschz", + "lybzgda", + "linjs", + "vfjbmny", + "khxn", + "xzyas", + "cjrba", + "lpuma", + "mjhuck", + "nlvh", + "kgsowc", + "mtsv", + "irlpc", + "dsau", + "xsaeuh", + "zesda", + "szpqta", + "oqvsue", + "ncow", + "ztwyd", + "hivonyx", + "qkdvcf", + "gmnv", + "fvypmq", + "plrqx", + "bhfm", + "soki", + "ypqucls", + "qrpiwu", + "cxhvkj", + "vncid", + "rzjuq", + "bgus", + "jtqspi", + "sndzcmf", + "sjvybfo", + "tmqawz", + "mopq", + "xwlmjtz", + "chyia", + "uhrzjkl", + "alniv", + "roqwup", + "gdkopx", + "prctg", + "boxeviq", + "fbstc", + "sqaprk", + "yknw", + "doyaq", + "btde", + "akgy", + "tvyb", + "janseuk", + "tlpxk", + "sgxmzd", + "ftjgezu", + "bvgdku", + "iwbjh", + "lkir", + "witoc", + "nqsjbcy", + "divgk", + "nvfbij", + "yxtiwvq", + "umhrpkz", + "eigu", + "iowyk", + "pxnzm", + "vany", + "sulw", + "dbhkwn", + "rzfd", + "fsgxd", + "cawxtb", + "furwpe", + "sfyu", + "egdmr", + "lomgrby", + "dpfzgmv", + "ngquy", + "xscup", + "nsqox", + "megol", + "wvig", + "gpbdu", + "gzcp", + "nsiv", + "wizqcmk", + "hdcz", + "lfkv", + "xgdn", + "ivtqej", + "iybfdrc", + "ibfog", + "kplcq", + "awqtlmx", + "lomzn", + "cvnaq", + "iemjnbw", + "onxezgs", + "wydik", + "tkmaq", + "tajr", + "qisx", + "shto", + "xyvaj", + "edyc", + "lnbgxo", + "blcvkyi", + "osuvdg", + "prcgvmb", + "hmcay", + "nwcj", + "cawxm", + "vuwm", + "dhgv", + "fyuq", + "stvewl", + "mozi", + "dkmaub", + "orybds", + "czmd", + "hstwpzk", + "wtljh", + "tcvfo", + "camt", + "lsgkfmq", + "pbxcy", + "iwtkj", + "kpbtf", + "yikmpnq", + "rvsipuc", + "fdjhqaw", + "roycd", + "guka", + "negtp", + "loregc", + "cuqmlr", + "hapjxen", + "wxejbnc", + "dqxg", + "lieaps", + "ugwvsna", + "ondipzl", + "bpyn", + "yaovelj", + "zlayw", + "gxpc", + "mzvdqsw", + "pqygslw", + "vpcowi", + "hgfz", + "szgaj", + "rculf", + "bxhkwu", + "byhwvzo", + "bvwd", + "ykpxw", + "kwejpld", + "zjpawi", + "xkyhtq", + "zaepkq", + "uracb", + "odrswg", + "rkejm", + "mrniujq", + "qfwzetl", + "yxirkd", + "fsky", + "xlmvb", + "fumjxl", + "uceg", + "ljwkdnx", + "phwk", + "puyhd", + "qgfohd", + "tgvq", + "lzngskb", + "ymhskco", + "pigjd", + "twrdm", + "ibldaek", + "cvwehq", + "nsdjg", + "jnuw", + "zgoi", + "nkhymo", + "rlhm", + "xemyf", + "hkixjy", + "ogajb", + "jtdskhi", + "qmawg", + "wtdcs", + "gcezq", + "cldgy", + "jxside", + "kybpr", + "vjhpo", + "fbie", + "afqw", + "ukghpr", + "ghqt", + "ondg", + "mupx", + "aqeb", + "btxaqej", + "njxa", + "syrt", + "todien", + "cdvk", + "yctd", + "gbkuow", + "sovxc", + "atgyh", + "efswhu", + "vikcgsy", + "yzqxneb", + "fwmq", + "shdgc", + "hugimsw", + "xhwkjdy", + "jltor", + "asfwnor", + "zrod", + "hnov", + "wyads", + "dyaq", + "hdns", + "xibajug", + "mlic", + "xrncf", + "ujir", + "pqozbwm", + "nqbyvw", + "lcmedka", + "plqvw", + "hpqkon", + "ofutbr", + "lsovetr", + "rvtcl", + "liuvznj", + "royhp", + "dfpkm", + "clha", + "qxtukas", + "vdnhz", + "roxbtsf", + "gjhu", + "ailpgr", + "wcpmu", + "okgafnj", + "idctos", + "ahjseki", + "mrczv", + "snehlc", + "jreun", + "rvyqkz", + "gekv", + "rsjgznw", + "ldzcq", + "otna", + "hzsnjqf", + "kubydzm", + "nmaql", + "eqybs", + "tqdyxi", + "sgedwqa", + "crbw", + "kmxbqyp", + "jrbznc", + "xswd", + "qxzybse", + "oqtfc", + "pxsubjk", + "tjehyqx", + "ibgae", + "hlyzcpv", + "hubaeoq", + "rujxfzg", + "bzqnkh", + "jbxr", + "yenidj", + "kevcurs", + "htlkpea", + "acovt", + "pwfanck", + "vdnuto", + "bspf", + "gpex", + "vfzybw", + "bgqm", + "airvuc", + "pmeb", + "oqaknfu", + "ajrowc", + "hqtei", + "fzdk", + "dnbu", + "wakct", + "wdkyu", + "guqckxe", + "ujvapt", + "ikjbgo", + "novjm", + "turd", + "zaipk", + "uwdarb", + "ltovmwg", + "adfrxen", + "fupl", + "xhrt", + "esfn", + "ietp", + "likfebd", + "liqzd", + "yhmdxw", + "bmvuy", + "jtvu", + "rhcmnk", + "mnrexp", + "ojetzlg", + "rbtif", + "brxps", + "nlvse", + "yuqbfg", + "fmvu", + "zsiv", + "wdkl", + "iqry", + "huoare", + "xgqlfew", + "sacib", + "ydcte", + "pdxz", + "fehocis", + "zbrg", + "utnlqbv", + "hgjynzc", + "wqkf", + "tocr", + "bxgy", + "bjsiq", + "mzpka", + "xucgk", + "tgcz", + "nmgejz", + "coefrv", + "qeoat", + "ytnlw", + "flpesxo", + "irvoz", + "rekp", + "wxvqylg", + "wvqkhmu", + "lfojria", + "pshwrto", + "ueiwy", + "lohtksq", + "qtjdg", + "efvtnk", + "iwjyb", + "pfjyv", + "bqnmih", + "ejybusd", + "ohky", + "zsyule", + "cqhrmi", + "ckta", + "qwjevg", + "zimxpgk", + "yqpz", + "jpfdkv", + "htru", + "qfkd", + "kfni", + "bamxi", + "tfrs", + "suqkhxf", + "guhvaxi", + "vegc", + "tbcwkx", + "aqzcm", + "bunq", + "txknr", + "pfhkq", + "zmekcpa", + "muctj", + "lrgcjw", + "afbdq", + "oflyxgn", + "tsqlxv", + "lutcew", + "wielpm", + "sudtf", + "ehcrwjq", + "pxyetzr", + "gqskhm", + "lmyjbno", + "fwced", + "afxj", + "jbyikgq", + "zlor", + "mfupst", + "objlza", + "cduna", + "ujvkl", + "idgm", + "mgqt", + "jxlhiw", + "byuntos", + "ckdpb", + "pqms", + "sphne", + "klthe", + "lzre", + "bmzejf", + "zuveh", + "xvmd", + "ypiu", + "fcvthb", + "cgsjh", + "wkmy", + "lzoa", + "znjdax", + "gosw", + "alwgz", + "plma", + "eyujq", + "ctwgoj", + "cdmskz", + "uyqi", + "mtoc", + "ruadzj", + "ofnylu", + "wfuc", + "yqhtfn", + "fvgknt", + "bqivd", + "yehgc", + "szpehgj", + "qrgxn", + "kwfcxs", + "dvyha", + "nqlmfi", + "qfkias", + "lftnx", + "swliau", + "fztsnc", + "dgbqp", + "swhtu", + "rncjdxm", + "ijtfam", + "bsmeawx", + "tunzqyc", + "sgxtoe", + "htiuwy", + "qcio", + "rsugl", + "ysmk", + "tdzbq", + "fpjiwah", + "gvixs", + "zthrwb", + "dhalztw", + "sawkbgv", + "lxiv", + "sxvl", + "ibakzu", + "rytzpm", + "roewh", + "mcwqi", + "fvji", + "msce", + "mcedhia", + "mwcuhtb", + "itzy", + "sfaydmo", + "pwyxoi", + "hpwzgev", + "fvsbnp", + "jzlx", + "ajinwdu", + "obdq", + "hcxsgdf", + "laps", + "icqv", + "avtq", + "fcpz", + "shqyj", + "qxlm", + "evwfb", + "kygp", + "hjbfc", + "bomf", + "hdvu", + "hqei", + "gdnk", + "mgbo", + "pmvijgr", + "lonvfh", + "ulzysgo", + "dpzyanf", + "rfnjbgv", + "wfqach", + "psvhkqt", + "xzhb", + "oanvhkx", + "ezrawc", + "kophsd", + "dsyb", + "mhio", + "unbj", + "gecamo", + "nltyo", + "uimbel", + "ysgenmt", + "wmuc", + "cnshwue", + "bagdzp", + "zacnvq", + "lvfzc", + "slyemwo", + "jarqumo", + "gyetnz", + "xfnjaoi", + "vhmjyx", + "umkqi", + "dlek", + "zndtk", + "cfok", + "vpagqej", + "xbcwoef", + "zhfl", + "exodtrz", + "izab", + "zihk", + "olgqjmw", + "kyqzwvh", + "sxteg", + "siubkj", + "mhsbog", + "fhvwb", + "owmv", + "nhlevr", + "utmlc", + "qxlaig", + "gybr", + "sxyl", + "tnufk", + "kjpoyif", + "tqbuvl", + "exvplmb", + "xjikpyv", + "bfiew", + "aqsr", + "ksyctp", + "oiecqt", + "lrstxm", + "sidxcmf", + "wgfc", + "pfbz", + "omqnu", + "jicfk", + "hdavwf", + "hmopx", + "gvwy", + "srwzto", + "ujcyi", + "txjcdn", + "prabufs", + "rzpjhy", + "lqibte", + "bxitna", + "hxlb", + "yobsxhl", + "znrbixa", + "episj", + "vijnbh", + "fguqtoy", + "nqcfga", + "iyhzsjo", + "dzignb", + "jicnyfx", + "gfyan", + "plwj", + "onrlyqg", + "pvrhuig", + "auozbx", + "kfgrly", + "vzmnjop", + "pjcd", + "cxumoef", + "jdpheuw", + "zlyx", + "djyfvla", + "wqghmna", + "yxapedw", + "jlkxfr", + "wbydqv", + "pvemlk", + "icfhl", + "rwjikx", + "nhymg", + "gxkiemq", + "ncdz", + "vqalbj", + "huovm", + "urmocvz", + "pczyl", + "ptxcu", + "jxspli", + "fmswp", + "mwkys", + "huqcp", + "txiu", + "fhzxldp", + "iqrgvs", + "lkpm", + "bromv", + "skbo", + "xdtm", + "cdyvmrx", + "frhib", + "yhpvscf", + "psbj", + "fsrpa", + "fsoaip", + "zwqgf", + "rouzqwl", + "ytmjq", + "ckly", + "phdae", + "brhyj", + "duxv", + "nylrxf", + "cmnjgr", + "pgny", + "kmyzjf", + "sjxrh", + "idefgmx", + "fphvmdc", + "uawi", + "sachnfm", + "onic", + "fxgp", + "dyhqz", + "heoykb", + "snlmi", + "tkyb", + "gxqiep", + "gcrv", + "aqjo", + "elsayn", + "luoyw", + "vjrayl", + "qtxc", + "zvgun", + "zgwq", + "xazmy", + "gafh", + "afyi", + "jhydpqn", + "pndqmig", + "dzwxiso", + "lsboth", + "audow", + "zksf", + "faqhnp", + "tkue", + "zaqb", + "flruk", + "folc", + "hbqcg", + "zkisnr", + "esauty", + "adzhm", + "tqrzjh", + "zyqsfn", + "ekwztg", + "xfqhn", + "qcen", + "lvaiqh", + "elkmtby", + "kipqs", + "paih", + "mofgea", + "uyznbc", + "cesz", + "cegymph", + "hgqlzoj", + "pnmdr", + "npdqj", + "efaq", + "gumv", + "snzrvlg", + "cekxdal", + "cdhosvu", + "huwplbj", + "iwnbcf", + "wcemkg", + "invkugr", + "meph", + "uljfzc", + "hgst", + "qwrt", + "twulrx", + "iovfjak", + "xnfcmwk", + "wohyck", + "zpuiq", + "mrxuka", + "duxq", + "nlcptsi", + "lapfk", + "qaidsm", + "uieypt", + "qwumes", + "fxnrlt", + "lgwu", + "omnfiyc", + "jiuebar", + "tcidly", + "uvptnk", + "rdpvqcu", + "rptabe", + "omtw", + "xyiop", + "gtzdhe", + "jvofd", + "hstuov", + "bozq", + "rybginf", + "qjhr", + "nmchk", + "asjywhk", + "pqsyfd", + "pongwc", + "fhid", + "abuyf", + "pjyk", + "oewsh", + "zvsliqb", + "gbzqr", + "utqlnz", + "embc", + "xblkvc", + "rnmp", + "vukscxy", + "qibswzv", + "fkmxpvq", + "vzckx", + "fihwvnc", + "hbevuci", + "zdenhx", + "zsbxq", + "ozwsd", + "mgwzuc", + "xzot", + "oualt", + "pushycg", + "rdiph", + "tojxvfq", + "wbyfz", + "ihyrem", + "wujgq", + "sdhp", + "sping", + "leiyn", + "edynv", + "navr", + "ubhx", + "yxjuni", + "eixk", + "iawb", + "etrx", + "lusmzqa", + "mgriw", + "kzicpxs", + "bmts", + "iyfm", + "nuxdw", + "vurqi", + "bfxa", + "fgmj", + "stbilrz", + "ihxa", + "ebplvqw", + "nrtci", + "zwrx", + "xdea", + "pdbhs", + "ioaebzq", + "rjmc", + "mwjvtq", + "rjqd", + "bjusm", + "mvjgpn", + "njwmzs", + "ukmnvhp", + "jytrwm", + "tfdjq", + "vrgup", + "mnsg", + "gvsbec", + "xisyupr", + "nlsvac", + "sxle", + "wmvo", + "zlkv", + "qidnfv", + "ortluyz", + "djechug", + "cimbv", + "lbds", + "mxiz", + "bxmpwt", + "nsrau", + "leosa", + "krxybde", + "plyj", + "adku", + "mksl", + "mthqn", + "ezxs", + "kzcujno", + "gczadbt", + "kpqm", + "hvyd", + "dlpmqvz", + "layfwnz", + "fqiw", + "cigwmdh", + "sdqxo", + "iakowxz", + "bsftm", + "kgtep", + "lpscted", + "dswtgy", + "ljsai", + "zqogwl", + "sphdzqi", + "cfnukos", + "eydbxuw", + "uztirnk", + "kawvhoq", + "ylze", + "tlhjm", + "opzh", + "bseith", + "qowajbm", + "zdtls", + "mzbgv", + "vhpb", + "kcxlr", + "bshz", + "ngwcjor", + "qthsdx", + "oges", + "bnjvrz", + "kslczy", + "ljvsrgf", + "fbnekjv", + "fjsyk", + "fqyx", + "jlpyxm", + "tikhgv", + "tqkm", + "ofxzslu", + "icszmne", + "fzwgjh", + "owdph", + "kyxci", + "hgvpm", + "jatpu", + "lqzstr", + "cpvazrg", + "aupxh", + "fgsh", + "pftguh", + "pfnzl", + "ckrlxhu", + "hxwmctu", + "szcwl", + "kwzvu", + "uwfoneh", + "gyivdb", + "jxogkbl", + "dasmo", + "ysozevr", + "msekac", + "axrwdjp", + "nqmo", + "obrumvf", + "tphgn", + "wrucdky", + "askti", + "scwbndj", + "agepb", + "mubo", + "kwuyjbv", + "udbh", + "smdyxj", + "ryapg", + "bezm", + "nyedjri", + "kpegjqr", + "tnfhlys", + "qsca", + "dyjukwm", + "uwdr", + "gyqaz", + "nmqk", + "vbayh", + "mzvsx", + "uwxgmlo", + "uyosjf", + "bxsz", + "ochyet", + "qmyxlo", + "bfrhj", + "msxhec", + "agpnk", + "usye", + "kqfl", + "ztbfp", + "isuh", + "utom", + "xzhie", + "hctksg", + "kmsb", + "yvbpom", + "kulio", + "fzixv", + "scbz", + "myvr", + "btcydwu", + "zuesn", + "yhfwq", + "zcnxtb", + "nesjadg", + "utyeb", + "vuraeq", + "spgk", + "zpyv", + "noaqjz", + "lzxfp", + "qbys", + "htnqe", + "ogvyujt", + "hirft", + "nfsbyw", + "ehdcu", + "izmp", + "qzie", + "ache", + "whfp", + "onmi", + "kovaz", + "lafnwd", + "okyr", + "ewfdlbq", + "meul", + "vunw", + "elft", + "absvr", + "fxvct", + "klnoq", + "myazt", + "ruaszmt", + "opcx", + "cufhoj", + "cautgph", + "jpinuvm", + "ewpryz", + "cvfdx", + "phbx", + "mncdp", + "ptoa", + "efpdl", + "fdei", + "ugoes", + "qrudtb", + "uhpqnb", + "ewnzxhi", + "mvuroy", + "hajyqfp", + "tnvmo", + "wnaqr", + "vshgukc", + "jywovdq", + "bvng", + "syrd", + "omhyjb", + "peiswm", + "lpyv", + "kfulpe", + "ocvj", + "xtehpv", + "juygnif", + "dqvmxo", + "ualwvtp", + "qharefd", + "hzcej", + "sxzqwda", + "zksw", + "qxtyefk", + "nmobwl", + "mnhafwu", + "lcyhupr", + "yfcw", + "weoz", + "amrb", + "sjibflm", + "zsgenh", + "abzgvl", + "lxgdr", + "ymkcpza", + "tyop", + "liwc", + "wzjye", + "brvled", + "naxufy", + "pyqgubi", + "fxpuor", + "zxrkiy", + "zmohld", + "cjtsak", + "irsjoye", + "xgjbsh", + "jaocnse", + "fsovp", + "svazun", + "yvpbr", + "getyhrn", + "kwfh", + "opdjkxw", + "cotehfd", + "vflr", + "ufsrzl", + "nipyr", + "hqnmpsl", + "wercvt", + "uctqkjs", + "lfzrv", + "ciuwy", + "lhij", + "wtnja", + "fixpuce", + "cyzd", + "scja", + "ywftej", + "xzcu", + "htnbik", + "pwfqado", + "pzwlxu", + "hcruz", + "uvxb", + "tbuz", + "fxjys", + "nwjdg", + "ozqtauw", + "pifo", + "jhaycs", + "lceju", + "imadtzn", + "cjzkild", + "axzmwqy", + "nrsh", + "mgpti", + "dtzqhjl", + "acboxp", + "rqxngk", + "idzob", + "coixmlj", + "boif", + "nabyg", + "agombn", + "vibeqol", + "chemsi", + "kntpbg", + "oghzu", + "ncvokar", + "cotjbhe", + "tple", + "hxcgz", + "sebr", + "gvwdojh", + "ltjrcov", + "vynxebj", + "fvoyt", + "aing", + "yukqmn", + "bnhfu", + "yqegvs", + "qfawgrt", + "yhamrz", + "lkim", + "pqfib", + "dkaqhb", + "whdbs", + "uybtfsp", + "iystwf", + "plkf", + "axcul", + "bfejw", + "mjhgyf", + "hxvmif", + "mkcts", + "lxtyp", + "gcimtor", + "teuwmyi", + "jfyuz", + "lsuw", + "eqio", + "vmigew", + "ihacy", + "nhek", + "wtae", + "hefku", + "twix", + "nboduxc", + "jxrbu", + "kdgvjbs", + "lynufsw", + "socfh", + "mgcjqn", + "ghbsqc", + "dpqer", + "yarn", + "pdgbk", + "hgtno", + "brxcsik", + "roetc", + "wuqei", + "ubyqc", + "xbwo", + "haxnfk", + "svgqmia", + "eodyist", + "klzqswv", + "ivbwpf", + "ipsmhu", + "lckyrb", + "gidbqe", + "sontr", + "nmoaprq", + "szbgiju", + "vgzec", + "wpuj", + "ptevnux", + "hvix", + "jiohkd", + "fgrqks", + "uvibez", + "fcaqw", + "lcjxeg", + "lmds", + "gavbz", + "dcsjnh", + "ypceog", + "dfnqce", + "lmgy", + "cmdb", + "fdqn", + "aksc", + "ltcb", + "ujygd", + "xjmkf", + "ncebi", + "nukrxdl", + "ixpueha", + "ptkdlf", + "zflh", + "ijkt", + "updlwvb", + "fliknbt", + "azsom", + "lszv", + "bgylhpa", + "hrtsj", + "auyt", + "ptvke", + "kyjlov", + "cgehbw", + "kjiwr", + "szhd", + "ygrnaz", + "xjumphi", + "mlzb", + "sgzofrq", + "jyept", + "ymdx", + "pbtnoye", + "qlisr", + "qhbje", + "iovpah", + "pcxtib", + "snefyga", + "txvog", + "cknepu", + "ycxkq", + "syctrvb", + "gtve", + "rqeotx", + "cmjrgi", + "vyqianb", + "qpxdu", + "iosuyvf", + "xyacved", + "ervco", + "hjiudk", + "acxmpk", + "shqtwjd", + "gimw", + "blwaez", + "vagjw", + "dcyqr", + "pbgxt", + "dzwr", + "deas", + "bsoqix", + "bagpu", + "jdaz", + "syvouc", + "ystwdp", + "xmpo", + "eaux", + "vfyr", + "vcgr", + "misfck", + "mzrdbfv", + "smrxlca", + "gdvjxlp", + "uqpga", + "qcsox", + "imuwvjo", + "lszd", + "exjlr", + "echjs", + "wrxv", + "pnfjd", + "lgzoe", + "ylmd", + "motazus", + "peyugm", + "ndwb", + "fshxv", + "axogp", + "rgckj", + "cuhfylq", + "xiad", + "eucpqo", + "puasri", + "dltozi", + "wjdf", + "dvwtosz", + "sliecon", + "aost", + "hzaeb", + "ucoi", + "drmnsqi", + "vqiek", + "zqxesvj", + "oelzgyf", + "aqvw", + "xqpyos", + "tuqzevs", + "ylwgh", + "nmptcfv", + "sphoru", + "adtkois", + "bevxogs", + "vzkdju", + "ahomt", + "guqhlyv", + "hqmx", + "mhjen", + "sghbpxv", + "hkgn", + "vrbmpo", + "ozbt", + "schyk", + "yjea", + "zavblr", + "vmwqcz", + "gemrs", + "ubocy", + "jopi", + "lcei", + "bijcqpm", + "oudtrm", + "yliwtg", + "cszp", + "jwlc", + "rcnj", + "vgunzl", + "hpuvizx", + "bldcgvn", + "lhda", + "yjndcp", + "qzxuv", + "wcbpiq", + "tharcjx", + "ngbd", + "qypgx", + "urnj", + "kpcqi", + "jvcay", + "wtcmag", + "stgbfjw", + "xqycoiv", + "hwaepq", + "wglx", + "tbxdo", + "vpztbr", + "obcdl", + "vsok", + "wtdo", + "rtkyml", + "aojvzb", + "jgymucn", + "vegqt", + "mcvabh", + "rzfn", + "qitb", + "cvokzmi", + "azlcg", + "qhlng", + "jyuhbnd", + "dlkgs", + "xwoeuvc", + "zaioep", + "mkxceb", + "ohpbc", + "zvdtsj", + "oregapf", + "qewtj", + "ozexlj", + "nvkigzm", + "pkqxne", + "rhncftx", + "iarphqj", + "cwoyh", + "jusia", + "nfzdpgj", + "cwtsonp", + "jaewzpk", + "wzaou", + "osmij", + "cehgwps", + "oratkvw", + "kbxyzm", + "yxvbfha", + "asekcli", + "aqxg", + "hron", + "zsoqa", + "qojcpwu", + "kucxpz", + "xmgu", + "ydmzuf", + "mwdtji", + "deoiz", + "zrtso", + "eodabtp", + "ftlwda", + "dwtfv", + "arcbtil", + "uozanlc", + "hmylco", + "wxrtdp", + "zqve", + "qwigve", + "fosm", + "xjps", + "fghn", + "fwigj", + "zenglm", + "kuoa", + "ftpneo", + "wjsgca", + "bevrtx", + "zxwod", + "myehzfd", + "bmvgo", + "psify", + "aqih", + "zumfb", + "mvronx", + "grdtavw", + "lpjytg", + "xomj", + "owlap", + "xwhcyb", + "heaxi", + "qopr", + "fasp", + "rodmhe", + "zwpmrd", + "cqzl", + "yanmdq", + "omhbrp", + "jywb", + "xwdkz", + "zdyh", + "torf", + "tlcgjvy", + "fxntryo", + "trdpgwx", + "ivcan", + "yuqdtcj", + "obyv", + "fnphmxl", + "zjlkwg", + "xlfknci", + "pkwac", + "tghak", + "drfkq", + "wqvhjct", + "onsmfr", + "cdlpgs", + "tofebyg", + "heus", + "wjiyrb", + "qgashmz", + "gctrnlo", + "hlbsaeq", + "tiajgwc", + "acbyk", + "goaz", + "ahfv", + "wizabg", + "csgubw", + "xqgiryl", + "aigxon", + "slkbtp", + "qzosxva", + "auboqfi", + "ytbc", + "inwgzj", + "ukcsbj", + "vbksoj", + "ifvomp", + "lkza", + "jlhynkb", + "xobp", + "nkfoetr", + "carjkv", + "ovxc", + "jikfyn", + "iagvw", + "gnlhqc", + "mdpazw", + "ocynxuw", + "caqz", + "rbnhvci", + "ceyhkpn", + "twrxhcb", + "rsknwxo", + "vhkwx", + "xtljm", + "jxouym", + "bulmwp", + "akid", + "sxqk", + "jlpqhd", + "mielazw", + "baczlms", + "qjnfhe", + "zyhunpk", + "ptyafjn", + "opiqh", + "pgef", + "tulp", + "lxaznjh", + "cmlwn", + "dacyvso", + "fgbl", + "lect", + "sntkui", + "qxpy", + "oyrg", + "uqtdn", + "rqwhmvz", + "qcpj", + "xdobqtp", + "mksgujn", + "qvno", + "yqrd", + "vbdfi", + "hgaockt", + "oybxshw", + "axqc", + "spiz", + "uigtvoh", + "fwum", + "vcoh", + "qkfeyjr", + "rbweq", + "ztfnudy", + "jdvcu", + "ubrehyj", + "xfomdwu", + "jodz", + "uzvfw", + "lxim", + "jsuvwn", + "mnrh", + "cdqy", + "runx", + "qehdxv", + "rvmsgu", + "irpdxet", + "xzevudq", + "buwem", + "vsrqlct", + "vdbzptl", + "zhlciny", + "eyakt", + "qmnorzw", + "buqsv", + "ifwbos", + "qnfya", + "xzgwhvm", + "pldws", + "mryjl", + "zxpolt", + "zgwbfyh", + "korjphe", + "jmyec", + "uqtneh", + "nqwgxe", + "ztylqm", + "juotnx", + "waer", + "ovsg", + "gnwyicz", + "hqwiocm", + "yqnkx", + "ypfcim", + "oewfdxy", + "vhysdj", + "unmx", + "tijea", + "jmunh", + "uqzbeti", + "heqxwrd", + "uswbp", + "vofs", + "rnebcmd", + "hrqxl", + "kxdse", + "isbz", + "ixnr", + "ilfswte", + "zjilrpa", + "jcikt", + "lndy", + "lghsztb", + "cgqpka", + "vclmakt", + "vcsypdx", + "kqed", + "qpldoef", + "wnkzayb", + "sjpauq", + "pvnabts", + "vkfi", + "xoicg", + "phgtyu", + "yvpbc", + "huvxj", + "mboi", + "wcsuaj", + "prdk", + "ujiv", + "achtw", + "njms", + "nmvluo", + "hgrci", + "bdgnlo", + "imbeck", + "nlerz", + "wdhxk", + "nabrej", + "outdjpw", + "uwszhd", + "whmtr", + "gzwdnpb", + "kdqixo", + "duqymk", + "txau", + "ryfsv", + "wxcqktu", + "ehgra", + "ebohszt", + "bldugcv", + "eoimu", + "gafdlo", + "zldif", + "ufvn", + "hnctfpl", + "cbzn", + "rsqzj", + "dcgnpj", + "zhklngb", + "yatqbjv", + "elgravf", + "bzac", + "vmbifna", + "ovwuymr", + "ksilqfp", + "crng", + "qcvdnhz", + "klesoz", + "amjw", + "iyvb", + "jzwfexr", + "zsbfug", + "mangec", + "qjtaimd", + "twouzb", + "uqdvo", + "qhno", + "qjghxbp", + "mtxwlsd", + "edcz", + "pmkstw", + "himpcls", + "zixol", + "fclxsei", + "kjftdy", + "inydcuv", + "eqmjl", + "psomjf", + "xvau", + "eibdp", + "pvrz", + "elmf", + "snrc", + "gvnoxds", + "blehz", + "oyczak", + "fhqwmio", + "gfsmj", + "ubov", + "smptvhe", + "usnzqpf", + "yznxih", + "yotac", + "sfxgtm", + "zqgylm", + "mjod", + "slajvyz", + "fvgpze", + "dsxboqr", + "zhvj", + "uidk", + "ujymx", + "euxn", + "oelyhj", + "fvctuo", + "hscoqxv", + "pnkvte", + "aitqnb", + "xruqg", + "nzhxf", + "najzk", + "lshvnk", + "cwkq", + "xmcjk", + "ipcsk", + "pnke", + "pexf", + "kcjpi", + "mdptv", + "vkrswl", + "twgpe", + "etfy", + "cwkgva", + "wijysqz", + "lpkxwg", + "yfgojk", + "oxzybw", + "emayxj", + "zypxk", + "clubypf", + "ekpg", + "lnmh", + "ropnly", + "hgvdt", + "oqhaj", + "ofancm", + "wrta", + "ujwvf", + "ifrxp", + "zdgren", + "uwvph", + "xbyp", + "tsbka", + "lhunsm", + "guyi", + "igrkbwu", + "ivbtm", + "rqit", + "hlrk", + "eovkw", + "nbgzo", + "rpgfez", + "fwzdjsl", + "nruxm", + "bjpn", + "liutfhs", + "vbkodx", + "rxmzci", + "wrzoh", + "tfyxrgc", + "onjgfr", + "jkoid", + "dnwcj", + "fwvplo", + "vlse", + "zfgx", + "owvtyfn", + "ntscz", + "yzmucgl", + "zwbsdh", + "ogpcnh", + "wihevcs", + "zjdg", + "tomrkza", + "fgas", + "jqsnlb", + "pehm", + "bmce", + "eoyws", + "zkymqdx", + "adtyorc", + "vtie", + "ylhr", + "zguxch", + "cskmr", + "ybcg", + "grwkifz", + "gzmx", + "cjwbzg", + "bcgis", + "zlypk", + "qjlpy", + "uqet", + "xnmr", + "pqgflxt", + "fobg", + "zaircen", + "gtqbmaf", + "erknwz", + "encqo", + "xqrfpjd", + "etmu", + "jlktn", + "xlyq", + "ibzkhqd", + "caujey", + "uanbg", + "hecb", + "gbkhto", + "vrcw", + "kxztbg", + "zjip", + "dhsp", + "apli", + "okrb", + "nckbj", + "jsxkgqu", + "ahpwe", + "lvmznf", + "qfobpse", + "xnagick", + "ckbn", + "yatmv", + "tsxo", + "gmqenlc", + "ujowm", + "cmapqi", + "hcdj", + "cdmpjzh", + "mdxbvq", + "joghfu", + "gmsefw", + "mwpe", + "fyjn", + "kixsql", + "bpeqs", + "rwpf", + "whju", + "rdbf", + "upks", + "kfnwzd", + "dlsjmv", + "rtcjvao", + "ovmry", + "iarf", + "lgjn", + "plwgu", + "odxy", + "exnf", + "bpangt", + "izgwey", + "qvhc", + "qlru", + "gqboshc", + "ekuqsz", + "fuqaght", + "lbksmdc", + "vjzunsa", + "hvoslbw", + "petv", + "jfbz", + "mpseqto", + "vgsh", + "fercngw", + "iwnguoq", + "qhmr", + "ylbgz", + "qnsuax", + "lvmpxu", + "sknc", + "tnsgd", + "spteif", + "pafmhgw", + "edrlgsm", + "rmnzeb", + "xypc", + "wnfhcr", + "oydhf", + "cbfhogl", + "piryqfl", + "zauk", + "hxglb", + "usvjmq", + "ryhzmg", + "wuqs", + "xgav", + "avte", + "kmlx", + "mzlp", + "txplb", + "ecwf", + "hrcuyzk", + "urzvl", + "kidgutj", + "noty", + "zeqths", + "bgwxkej", + "siopxam", + "nfth", + "czrt", + "fiqxkr", + "fqypgbs", + "lpxi", + "zwmvaup", + "jdgi", + "cmblv", + "mgqkj", + "habd", + "lagw", + "fturq", + "epwr", + "kjxvhsc", + "fzsxb", + "eush", + "ntxiuar", + "tkowca", + "inebzda", + "oxbqzwl", + "gmtbskh", + "tzhrp", + "zojat", + "ajfric", + "rfoxae", + "idqz", + "xmalkn", + "xwivs", + "pvzhy", + "gcoqzw", + "gexki", + "odrj", + "icokge", + "hcxaig", + "jdnbfv", + "ljosx", + "mviwpx", + "hbzgs", + "xakbez", + "cafjyg", + "moky", + "yasfpwc", + "xlhdcao", + "kbqrgs", + "ocwy", + "xekizf", + "xbfuscq", + "njcs", + "budnl", + "ycru", + "rbxgcol", + "acigy", + "ifrjknv", + "wchygem", + "agvmkh", + "ikhr", + "zrdhpo", + "zpkesm", + "clvysmw", + "cxij", + "jylmu", + "jdwp", + "yazswed", + "hnpk", + "xsfhvml", + "uwvdst", + "ktcpq", + "bfcmjie", + "jkrvqs", + "iskdcq", + "dmsry", + "kqsg", + "gxuthob", + "fcstniw", + "liwnu", + "zecp", + "xyvp", + "ctqi", + "fymrb", + "ykwbsz", + "tuhjdfi", + "dfkqv", + "uzfayv", + "kitxlu", + "kocb", + "mgupel", + "advf", + "tloh", + "gzmyx", + "dopsxqf", + "riyvf", + "omyhvjr", + "cbkjgvw", + "pvagntz", + "ayzr", + "kpou", + "kvhyju", + "hqdkf", + "dxzm", + "wpjkvz", + "ypdscao", + "wvxmqor", + "wuqp", + "aojgmb", + "kzqcl", + "rkwl", + "nbljdk", + "cpzr", + "zviphfy", + "tuolp", + "qbkefp", + "szvrj", + "ahkbzq", + "vsxyk", + "tgzpnk", + "tnbiklu", + "wljvob", + "grukajz", + "vyphzo", + "jmcpler", + "kwgjafi", + "thesyp", + "hrpkt", + "fqtbsau", + "fjboq", + "uicysb", + "hplc", + "pskxuqe", + "hojgel", + "dnxfv", + "guczjhp", + "avog", + "darpesy", + "sliqta", + "kreihvm", + "uwibc", + "tebcv", + "rcfh", + "eunmwfk", + "tuvr", + "rgfi", + "zudyhar", + "qbcti", + "iaeps", + "pcznjah", + "hcgab", + "dyzop", + "rsfje", + "lxic", + "nokmg", + "fesa", + "owuzxye", + "toeya", + "xvkum", + "jpnm", + "eaovunz", + "yxfp", + "qpjdwz", + "tlnyq", + "ntsage", + "bvjpx", + "fldsuaw", + "honme", + "prwl", + "jqru", + "rebtc", + "scjoag", + "uytkis", + "nfuo", + "zvqckml", + "gcbevaz", + "hsdfo", + "mpxkrj", + "gmodiqy", + "oeqvrlh", + "eurjdxf", + "thcp", + "jundfhw", + "debut", + "mryts", + "wpxkcfz", + "jixklrn", + "xupis", + "fjnd", + "rspvxo", + "bcxohq", + "fdmuw", + "eopi", + "cvmb", + "vkgdra", + "gmjyb", + "towz", + "ijmbhpl", + "msoj", + "pnwe", + "nmhrlt", + "ajem", + "zncetj", + "qwkp", + "tdebyqs", + "qyuxof", + "wqno", + "rwepa", + "rtuzbqk", + "xnrsgh", + "pmsznyh", + "vjcb", + "xdgevfy", + "methifn", + "umje", + "jygqz", + "phixzls", + "vwphkyz", + "nbhtwgy", + "otsl", + "oujwzrp", + "qoszgki", + "wpgabm", + "okqyj", + "nkmgq", + "wiynpvd", + "mvtcpo", + "fjylbh", + "ytnpo", + "ecayl", + "xglu", + "mtcb", + "izkq", + "elhwra", + "jnoixbd", + "ligy", + "eihbg", + "rtslwf", + "fzukvn", + "vqzgcu", + "ispoaq", + "hvflbcw", + "ywofnjp", + "erjkbd", + "lyrjhc", + "biufvc", + "itjqecy", + "midaz", + "jxystfz", + "izct", + "blvz", + "fkacwml", + "gprdhf", + "powm", + "fpywe", + "atynr", + "fbeps", + "eqklfa", + "agnpb", + "aiyleqk", + "tomfu", + "kebflco", + "fxtgsva", + "awiod", + "iloar", + "pbhk", + "fngp", + "yeadj", + "vyeoiu", + "bmvocgs", + "tyio", + "vasi", + "ldvwync", + "lqdt", + "wdpo", + "wzfh", + "bspwak", + "jidtyg", + "nuqrs", + "gaeq", + "mpvd", + "jxufb", + "cjdkzb", + "xrpibof", + "kzodng", + "rzbnmuk", + "wkdjgqb", + "nlpuks", + "bkyoc", + "phme", + "lpsdi", + "qnipc", + "sygv", + "ztirnvg", + "hcpldi", + "dwtb", + "xygvanc", + "nktpo", + "sjfzob", + "ztfd", + "vdux", + "dacjs", + "lfxbs", + "useftpc", + "glbeo", + "lthud", + "haryulc", + "tzcydsg", + "swofyjq", + "ulyhrfc", + "ctgex", + "vqgsd", + "dgao", + "hjpalyo", + "yfsaku", + "gziywc", + "uxijmwe", + "vwuknfm", + "nyrbm", + "xsvglq", + "twzxh", + "pzhn", + "qsuwey", + "cvnzu", + "esnzma", + "ngkawt", + "kohls", + "xpkf", + "zxpj", + "nsech", + "mpijnat", + "ydxaf", + "csrvnl", + "dsqfbzv", + "dhyo", + "wqbsk", + "bmic", + "ofsxezv", + "sidh", + "dtknx", + "hrmtzf", + "tiqfxo", + "xivteg", + "pabz", + "bcyart", + "wcvx", + "gesfmwa", + "pmneyka", + "cqnf", + "xghjue", + "taiwdk", + "hznocg", + "ufayroi", + "hvpg", + "spburx", + "ydrshv", + "aopens", + "dbvso", + "reaphix", + "ylxog", + "aqyjb", + "hfen", + "ucets", + "itaxule", + "pnmu", + "qwoglk", + "tocz", + "rustdqy", + "arpyw", + "fcqzw", + "tibsrv", + "kocr", + "etudrf", + "bptd", + "zucdi", + "loqbine", + "udslhti", + "ziudfh", + "syxpbij", + "hzes", + "qpjzh", + "paxtcf", + "mjtoel", + "qhtdx", + "nkmvt", + "ncxpw", + "tsdolgc", + "utfbj", + "nquet", + "adsufoi", + "ustjow", + "aryqbim", + "bxrfy", + "zwlxk", + "ritw", + "nexa", + "qrfmtxy", + "scha", + "ujizwqr", + "gpcfdb", + "yiuwdb", + "kglfts", + "zeorh", + "ypcm", + "wcmsoj", + "ymowlnj", + "ouhkwc", + "pyqsg", + "lfbovze", + "ywxczke", + "tkgh", + "qspe", + "nwzrt", + "dsfohky", + "kvdxj", + "ratpbh", + "mgabphn", + "qtdxymw", + "hcjmkbv", + "uwrjvbx", + "rvncqo", + "dwtm", + "vajhyl", + "hpemv", + "sewplfk", + "mklr", + "cstnx", + "fkat", + "zdvfn", + "wlpz", + "utps", + "izwhfu", + "siljhp", + "wsvxucz", + "becghmn", + "kihjxaz", + "qdrkz", + "ogcplz", + "wbmvgf", + "urgsjz", + "eforx", + "sqokj", + "imsn", + "sgwv", + "bijxo", + "xfdvtc", + "sneyx", + "bxhvnq", + "pdamt", + "mzenl", + "elcd", + "yfqbgze", + "jfhnimk", + "qpgh", + "tjoxsq", + "bamivul", + "ipnow", + "remo", + "bhnlut", + "ylqb", + "ruptm", + "yqgrcb", + "svihog", + "tclq", + "aruhz", + "birvu", + "xdhrm", + "peowuqm", + "edyr", + "hblvir", + "pzhyeco", + "ckusa", + "hyofe", + "ehyalvs", + "ufklxab", + "sbxmko", + "luax", + "tsnfwu", + "lkiyrp", + "qpec", + "ymaslu", + "cmjz", + "luxs", + "bzruqg", + "dpmkyjg", + "gkfctil", + "saczqj", + "ntvqbi", + "dinarfl", + "mnbhl", + "kild", + "iplw", + "cqdwx", + "qderhg", + "pxac", + "hmoa", + "kgnmzcv", + "zvnjgdo", + "eupbkih", + "vricdn", + "pdvkan", + "boktwm", + "yofxt", + "nfjs", + "xgtjrnw", + "jtyrbk", + "awoed", + "bswyd", + "lfpxu", + "qnrda", + "emvpl", + "vdue", + "tvylf", + "iykbs", + "czjrnbv", + "htav", + "zkuahxo", + "werj", + "ljnpie", + "ebdzhju", + "ohkdar", + "sxaruol", + "cqetmg", + "cztghan", + "gdpqyl", + "zhcylt", + "yqngai", + "bfaw", + "ohzt", + "ysubw", + "ovhqbk", + "clpkr", + "wjvqdb", + "glzjs", + "igaucov", + "nxgdz", + "lmke", + "tfkxv", + "myekrq", + "yotck", + "sugh", + "wvhgxz", + "mboh", + "ocfnhx", + "micwx", + "chjqf", + "eyxmnct", + "dmnak", + "gzamtsr", + "zasvqu", + "hdmlgio", + "zgfjm", + "bhcmy", + "nmkvgh", + "ukpi", + "zqkebc", + "fqcapy", + "mlunfo", + "lxspo", + "pqjt", + "jlsrm", + "mfvja", + "uoygnj", + "fbnmc", + "igvojx", + "xtulj", + "taeri", + "jruq", + "zdmoxi", + "cmoftyj", + "judek", + "zamsekt", + "itnmc", + "wpheybs", + "igpd", + "gmudiqe", + "amkt", + "gejt", + "tociny", + "lrbc", + "xcgtvlj", + "ldxn", + "gxcjr", + "vlxfw", + "bdklprg", + "rnfsbqa", + "njpwgx", + "kgtpbi", + "zjknv", + "jgtw", + "eogfs", + "tqhfxn", + "wsyf", + "hcdijmv", + "xhnfevj", + "ymgxo", + "frhqnv", + "fyvw", + "ugif", + "zsgveq", + "uoixnf", + "gmfw", + "prowz", + "vrsel", + "dmbe", + "raoh", + "sgjzw", + "qpukrv", + "vwmktjs", + "uvbpf", + "qfdp", + "hsbcwzt", + "tnjuzrf", + "osmp", + "izmjd", + "jdblhp", + "vfat", + "xkel", + "msjo", + "wniokeh", + "nrthyw", + "enwolfj", + "ljrahy", + "xeumjhv", + "rtkz", + "dbqh", + "ytsnbil", + "wrlhcjn", + "iwtj", + "aoewbh", + "eyazkf", + "sxicetu", + "exwi", + "rzbhm", + "bjpxmg", + "xkzem", + "yghl", + "wuea", + "mpdgr", + "xuhkis", + "kncwxi", + "qmwustp", + "uinqepf", + "qysiw", + "jbny", + "lkimxwe", + "lityvop", + "lqpya", + "ywlmg", + "npkt", + "golre", + "scql", + "rgaos", + "alyz", + "opmkubj", + "rjhod", + "vstqdcm", + "urby", + "fecqswu", + "gdej", + "kzouw", + "eqly", + "wldchey", + "nomkhs", + "qwfivt", + "caepy", + "rjcqlax", + "lyohebn", + "bmlf", + "moiwqzh", + "bmrwzl", + "dxlok", + "wjte", + "prwugc", + "ovjea", + "rbmyli", + "aonvxlj", + "bqtyv", + "ompnsl", + "bcuog", + "fsvuz", + "hbeoylj", + "wkeba", + "cjdnxt", + "locpsn", + "wcxfb", + "fyvlkgi", + "kcup", + "ygmh", + "stzibq", + "cewauk", + "fapxezt", + "ihvwxg", + "ngbd", + "menhydc", + "btfvwai", + "jynefsu", + "dpgyh", + "uytcrs", + "anipvld", + "hyub", + "diqlha", + "bhipe", + "flvny", + "trzmlx", + "yjip", + "kbtri", + "ozxhny", + "hnmcp", + "qtkmslb", + "dknq", + "hokvq", + "tzeu", + "xveu", + "gxfweq", + "kwrtvqa", + "jolc", + "crkzuy", + "vrjntb", + "tnch", + "zkdeva", + "fnbg", + "wkgejd", + "awtq", + "wytrqu", + "ipkbhd", + "wmofrg", + "tcuignf", + "npig", + "ocjbp", + "oepziqm", + "fsgnrp", + "hrgmxd", + "bqtzo", + "tsgf", + "pwcke", + "zmkxpq", + "hmsoyqn", + "gjhkou", + "wkdjtga", + "yslb", + "jpud", + "ntmwb", + "yxiu", + "imuqwel", + "xbdmegj", + "hbui", + "fqxw", + "apbvo", + "ywqbl", + "pfoi", + "bnuh", + "bgutdx", + "wzcrglp", + "jmub", + "fwxcpj", + "qfvmz", + "ebqd", + "ukfhtg", + "vqdba", + "ayozfj", + "ilqvuo", + "dvzwrsm", + "wlrpbks", + "snlup", + "nkzbdw", + "nmjkqcw", + "edofw", + "ldrftxy", + "buhls", + "cqtw", + "aysp", + "kumrepf", + "takrlu", + "laytm", + "avilbd", + "iqbat", + "sbmrqv", + "cnzvu", + "rbnd", + "yfvh", + "seim", + "ygoxua", + "fakl", + "gmsnyl", + "mzsfdi", + "hcksvpm", + "rmtp", + "yokhlug", + "qxiflvt", + "aqeyo", + "gkjvz", + "mjerbku", + "jzdgtnp", + "xpsf", + "fgklr", + "fmcjy", + "gobnxl", + "npauc", + "weyavb", + "phgdqcm", + "xhktepq", + "hvrt", + "unfriz", + "xavq", + "bexjnkm", + "cuxda", + "cilonku", + "qyhcexu", + "gifes", + "vdlwmcr", + "uwdkt", + "eklwh", + "ponfeq", + "vuqgolp", + "kqwibxo", + "rqtmez", + "aorq", + "folux", + "dyvefmw", + "jeig", + "whvg", + "ufqkj", + "zwxvdrm", + "kghc", + "nbkc", + "cjbgmsq", + "ylthvcr", + "oayn", + "adrny", + "opbwqlu", + "ebcz", + "tyoau", + "obts", + "ouadt", + "wqvo", + "vrdaqh", + "rnwbd", + "epyjnr", + "cnrezl", + "avbqro", + "qpmaxd", + "goyu", + "ogwteqh", + "usadoy", + "cngaeyq", + "wlcuery", + "fgro", + "vgeu", + "afetimn", + "tvudy", + "zfedn", + "sflvu", + "lcgr", + "kdsgvmf", + "tjeypo", + "acsivgz", + "uvtchs", + "xgzqdha", + "djqfot", + "dpvye", + "csawu", + "hpbzqed", + "chxmgk", + "otvs", + "mtkqnv", + "otdaz", + "zney", + "svhjy", + "tqknr", + "iobnmry", + "qezoapw", + "ramslu", + "rtuysg", + "trckgse", + "xtyaz", + "hjpybg", + "zeuqiyw", + "ygfvmti", + "pivqt", + "twvjne", + "mgqbye", + "tvzxwud", + "weom", + "rcpblx", + "jzmbng", + "kvrln", + "wgsfuiy", + "fasvy", + "fcmyahw", + "jyfkzc", + "yjscvxg", + "pkixw", + "sldif", + "yshmx", + "liyaxm", + "vulzxa", + "xigw", + "rhlzmkf", + "rzyde", + "qxeyul", + "pdknq", + "yhzw", + "ejzbsp", + "taogxqe", + "tgvb", + "lgywfho", + "qsnyh", + "pcsfwiv", + "fezkst", + "ujxcd", + "qyub", + "nram", + "zlacb", + "dqvon", + "xjhw", + "qxsiucp", + "gicafsu", + "pysj", + "yjfznbd", + "rkuiom", + "bfjqtg", + "rkpgqw", + "svmy", + "nlgo", + "gkotzl", + "mhqvtzy", + "micwhbj", + "ahjfvog", + "udnl", + "igrpmu", + "gtorwx", + "xvwuczd", + "mvytjdi", + "lqwfya", + "onaj", + "zdorwa", + "rtivgje", + "epczurd", + "xmujerc", + "mhjwls", + "jhywd", + "oqapstj", + "dblmnx", + "gwxd", + "bwoxp", + "ebzf", + "xagh", + "vfehzbu", + "iabqg", + "kftw", + "qkjbped", + "sgleoa", + "dauy", + "rsqpxy", + "nexpf", + "usfmlby", + "xwprftg", + "trecivb", + "wdbvot", + "qnekgrz", + "qtuphzb", + "vfkjgxu", + "ckuq", + "cgwkq", + "qgdspha", + "nxupmqg", + "xfeias", + "kmonj", + "cqma", + "moukq", + "fbvl", + "srvf", + "xcnu", + "mnekj", + "ujaepv", + "lrbimon", + "cmywugf", + "jdmhlut", + "sdlwu", + "hlyiwte", + "txors", + "cvpj", + "ynkm", + "dxznmt", + "kfzrjb", + "czgfvh", + "euifgbx", + "lghzd", + "hnbyc", + "unkbz", + "pcqgz", + "dwkqvg", + "dijl", + "hklcgj", + "rgdthvq", + "wrafx", + "vtow", + "girf", + "rdlyt", + "yjnlu", + "zvbxews", + "falgm", + "nsbz", + "jvou", + "pclhu", + "tmar", + "dbzthkj", + "rigd", + "swgti", + "rlwn", + "bnqosal", + "xgzlr", + "uqwabfl", + "ymqo", + "tmswjk", + "trwbqzp", + "jkiwfg", + "pratoq", + "afkb", + "ldcr", + "fczknwu", + "duzkah", + "kpbaxug", + "nwqloe", + "wnbyi", + "brxqm", + "tnzwc", + "xnuogrp", + "wymznt", + "tqndczp", + "kcloewh", + "ymusap", + "flzu", + "rygi", + "cjzgevd", + "dgwhfle", + "alfgjvr", + "dlngo", + "ptbjwgv", + "kmloj", + "phie", + "zlni", + "dogpen", + "ojkuxyr", + "qafv", + "nesq", + "eiusctq", + "wlrd", + "nvbl", + "hsvbeyo", + "wvagxbl", + "gips", + "vnxqum", + "nsmq", + "vaxldij", + "eowim", + "sixhwyr", + "gtzkblp", + "amhk", + "fcmkr", + "ldfy", + "dncj", + "otri", + "zsaj", + "jnqrtd", + "guds", + "xadyh", + "orpkce", + "ozcwky", + "kvap", + "bwnlfxa", + "lyhcgxt", + "dvrxq", + "lehj", + "cjgmi", + "axlvz", + "isjkayb", + "hwozq", + "etvky", + "qshrx", + "aiyen", + "dvxozwa", + "fwphaq", + "vhdtqny", + "ercnhx", + "jcmnx", + "zqwjks", + "upegtnw", + "opwi", + "srqc", + "sxvl", + "gmacb", + "wmztsri", + "kvzoy", + "wxbiedz", + "cugn", + "zswkup", + "wazu", + "zevryc", + "ulinfko", + "ucvf", + "gtavu", + "pxqwamn", + "tcrdgsw", + "wdvgr", + "pkbxmo", + "vbtkuw", + "wklgo", + "duyxek", + "mzvdu", + "fwuxk", + "zbygr", + "orhw", + "vichu", + "hkez", + "nkmpb", + "mbpvfk", + "xtrkfeq", + "matcyr", + "dkyafct", + "bhvpi", + "iexpva", + "aervidt", + "zrnxvt", + "lgofqh", + "jlmr", + "gmahozt", + "zphbix", + "cipxdl", + "zpjsi", + "tbiyfsg", + "epvzkcr", + "rwclyjs", + "wdvmx", + "hktbrus", + "qamz", + "ciauhrd", + "gkyblnh", + "fsitphd", + "ykijhd", + "poxq", + "kygpxw", + "uabdwpz", + "ragp", + "usaxgfk", + "kars", + "vzoduce", + "dgzf", + "rcsdfbm", + "gsyc", + "tfopd", + "gysn", + "vjkrlf", + "idkym", + "qkac", + "fhnm", + "mrlpidw", + "opalx", + "svgkc", + "bzkdqfj", + "fwkdenx", + "abms", + "ibudf", + "yfoda", + "moqcjdu", + "lgsfkv", + "eqnxf", + "cklzhwv", + "ukarmwh", + "bueq", + "wcamgr", + "oamf", + "klawhub", + "uzeqt", + "tqxkpd", + "wxgp", + "uvipek", + "vmndzjy", + "wzxihq", + "qkmaefd", + "ytqosu", + "umvzbca", + "yptw", + "xycgktu", + "gmhp", + "qftsizu", + "pueo", + "piun", + "zulrbcp", + "nodj", + "uzxp", + "bytm", + "xqse", + "ynhql", + "evkj", + "xyvshgf", + "imscxj", + "ontvlc", + "mnqtwkb", + "nazw", + "jrfzew", + "dqebp", + "fqxkz", + "scxn", + "iwugpa", + "dwfti", + "wziy", + "tfljg", + "slakfre", + "jykqbud", + "eawply", + "cwijpqd", + "eoyizr", + "saekhlm", + "wfdplkg", + "bgca", + "fkdzxnj", + "kqoh", + "dzkgjq", + "yrizqd", + "clsu", + "ewvh", + "psbrglz", + "yxnr", + "swnqte", + "fdgy", + "imbcwg", + "munp", + "xojgq", + "drsb", + "kruef", + "lxiwvks", + "egis", + "wnbjurf", + "jmpi", + "inktuyq", + "auimoq", + "mzqctbo", + "kjdamw", + "bertup", + "gauh", + "pmaji", + "dqui", + "wrkgej", + "bmfqx", + "phwnvky", + "cdeota", + "wpkr", + "lhfszeg", + "yflowkm", + "zakoptu", + "ainpk", + "qlsona", + "sxtopd", + "zbwhkyl", + "mjxywb", + "zmanel", + "unsf", + "dbtyh", + "luytk", + "hkpsz", + "iwurkd", + "vrcilh", + "eoygq", + "pjbq", + "tskua", + "wudf", + "vfcpdhn", + "xmqge", + "otdk", + "ljperh", + "ocfij", + "xukhfq", + "zugsvr", + "puexi", + "pusa", + "xoiucp", + "aewq", + "lofcyh", + "xyed", + "xnsw", + "terais", + "iwxgepo", + "xwfglo", + "pwdnimt", + "fahi", + "nfea", + "dcbxu", + "bazyosl", + "luqwk", + "colvx", + "aysji", + "onjrwz", + "byflc", + "eslp", + "rtioun", + "smjwyqd", + "cuivb", + "hglxzkv", + "ewnf", + "epqxmz", + "toczenj", + "yexb", + "rdzms", + "fzel", + "otey", + "kgdorv", + "przx", + "epuixa", + "rcozq", + "czrlb", + "ynoap", + "qihf", + "gebsyuc", + "kecdoaw", + "qhwaol", + "fiaqgco", + "lbifcxj", + "ydhxma", + "sednrvo", + "rephfbu", + "tidyguq", + "cxfpk", + "xsiumb", + "dpkrgbt", + "vljzayi", + "gcqy", + "bjrc", + "hwyqcl", + "tmpqbh", + "aqch", + "rgnbkdl", + "tbikzpe", + "lvyir", + "nxfycvl", + "ymec", + "jyxk", + "zuygtbn", + "gwkovms", + "cpndj", + "tdjpxlz", + "ywcgzfi", + "eqhf", + "cxvyoa", + "gfuic", + "frcn", + "ndue", + "fboe", + "hdko", + "amerf", + "tfdwlsb", + "dowabxj", + "dluqg", + "uyjld", + "wgvej", + "anupbge", + "howd", + "cesqn", + "mgkozwu", + "xtqjs", + "kupns", + "dveik", + "luzydcm", + "dxqijp", + "buvltd", + "fhntykg", + "fngmus", + "qrjfzyx", + "aevb", + "gwecj", + "uafol", + "fduzs", + "pwis", + "cdevsw", + "fmtbc", + "lrip", + "pnav", + "zkdnrj", + "sdqhwom", + "oiaev", + "rbodxfi", + "axji", + "setauo", + "epklmud", + "idmufjs", + "jwbtfaq", + "brcysw", + "fbikg", + "hanr", + "nvla", + "ivkh", + "esbwlvc", + "lvzmfx", + "wtnrzof", + "jvfg", + "jznlsma", + "dhav", + "dhxibl", + "pxrfna", + "vqwy", + "ncqhvka", + "whxackr", + "xprfjq", + "rflk", + "twrxzj", + "gcap", + "ypxckjh", + "pvrteo", + "erclnd", + "dcto", + "byfrvxd", + "juts", + "ibdf", + "ftnde", + "mcvizlf", + "lodmha", + "kjhw", + "ohng", + "pxikasm", + "mzdpco", + "qfmnhja", + "fjqpbez", + "rqnu", + "qlsyg", + "lmtiyc", + "dyjwxh", + "oarjps", + "ieqk", + "gdpowy", + "iubxcfk", + "seliu", + "ltgabwo", + "bohilsj", + "lgmezkr", + "wjxmndz", + "rbqy", + "wjxelk", + "qyhux", + "lwhp", + "rsab", + "bvja", + "drhowl", + "vfgzysc", + "dorz", + "xqaubw", + "grxpo", + "mxajif", + "iqdzp", + "yghv", + "tmnz", + "uclpy", + "utrhb", + "usimbv", + "domuvg", + "iclobk", + "pzif", + "ysjxmro", + "lywz", + "qbotjs", + "trdba", + "rifng", + "slugfqy", + "pxetr", + "caghrw", + "lbjk", + "lmri", + "vbcks", + "huigqb", + "auvtwsk", + "mtuw", + "efnxk", + "whivpm", + "xphds", + "hsozl", + "cfmn", + "jzcs", + "mklp", + "iemkxrb", + "mdqiu", + "blgwjm", + "mlwtc", + "jgwfxlh", + "dkrnt", + "rkehm", + "jdfc", + "mszxcl", + "gqsp", + "lxnefu", + "vqhkz", + "wxmyts", + "xazvunj", + "qmpz", + "tsovqgl", + "yutaimd", + "zyfjmb", + "qtbcxm", + "uvrlos", + "jlafce", + "plqymh", + "tewdl", + "wlhmfop", + "mqitd", + "bxwnt", + "zovbi", + "rtzplg", + "hplzqk", + "qsaozj", + "ktjrid", + "yrbxv", + "mupbv", + "jhfgs", + "vtmaz", + "ouegbh", + "gemv", + "afwogeq", + "vudhcbj", + "rnvjdm", + "xeszhl", + "xvgy", + "gbwrodz", + "dcyebu", + "ypon", + "eqvauw", + "tfvgju", + "vbsuzdr", + "lbewxgi", + "zpftl", + "agje", + "seboay", + "hbjs", + "pyhwrnv", + "zgrib", + "srbiknf", + "myehq", + "jude", + "tghxwuy", + "tignky", + "vlhbqu", + "nocqufp", + "bzyhvka", + "pwsok", + "pdfgw", + "gbnh", + "vodbwxl", + "lidoxz", + "knhrim", + "cqaskf", + "bvgcwh", + "poyed", + "ajib", + "iqbxjau", + "tocfvsg", + "mvforg", + "mnxra", + "ztleysv", + "weyfmz", + "sexwcy", + "abighk", + "ijtmsw", + "kagldrn", + "aupvhke", + "uhaxtip", + "ghvqnf", + "vgjwtqy", + "qtjur", + "dpysavt", + "sweljr", + "gdiztq", + "tyan", + "znbcua", + "vcksyu", + "yicsuv", + "hfcjd", + "fmukzr", + "kmdx", + "nobcqdw", + "lejz", + "ndig", + "rncyzi", + "ichn", + "ncdrsyo", + "nokxj", + "zvqtuih", + "kgpdbf", + "eont", + "drsh", + "rvjwlqg", + "hlkmvj", + "rpwhq", + "hblej", + "xaudo", + "ieyajok", + "yont", + "lgsphi", + "etwz", + "ynop", + "njbiz", + "ugrhm", + "mkpvu", + "hboldi", + "sxnlocq", + "ivobx", + "nyztuw", + "ynqp", + "ucfhbz", + "qutye", + "usofc", + "sdjakb", + "lipxmeh", + "fzcb", + "uvsc", + "wtsfvzx", + "tlski", + "tdnm", + "nfrgsw", + "ramxczt", + "canmolr", + "lgimd", + "ziyba", + "qokenf", + "htlvu", + "sbiv", + "diyav", + "whekmlf", + "ygkfoi", + "hzvx", + "baeqv", + "spbwyi", + "cnvlxku", + "yzcxpk", + "zukjxd", + "fnpc", + "cjybwv", + "gsxr", + "hpvmzg", + "qtlwk", + "rgyqncw", + "heti", + "umsli", + "zmnjyl", + "dpxw", + "qxcjfes", + "autm", + "cpvogd", + "jhtlqi", + "saeo", + "mqaweoy", + "tlek", + "yrjm", + "qrbi", + "jckquyp", + "dvxqho", + "sguy", + "jtcz", + "izmwfr", + "xvrloc", + "uiys", + "cmzfp", + "vbim", + "vursoxl", + "yhxar", + "kitegdq", + "rgkj", + "uqheobp", + "dpuy", + "dobcnlw", + "lkqam", + "mfhapnb", + "oxig", + "eysdmrp", + "qunyoi", + "ygqmw", + "eusa", + "mptwijy", + "krqaxuh", + "lbwx", + "cyrfv", + "anqm", + "vhdf", + "nqwkr", + "ucjs", + "mdorz", + "hvdqbfu", + "nrsth", + "lxknjg", + "kvbmwf", + "hrvlq", + "aefmgyb", + "xnqga", + "qpjr", + "vjxtroz", + "badpegc", + "rothfsy", + "uhiqn", + "czyeo", + "yioq", + "vpjzfg", + "ptfglq", + "ytrh", + "mnizdt", + "gpxeius", + "mdqo", + "iojnvht", + "njwkadr", + "yanjbs", + "ftnyicj", + "xpegzcb", + "ziqhb", + "pycz", + "svzomcl", + "aehq", + "unro", + "uxonvc", + "mjqk", + "goteni", + "esoq", + "aszruxj", + "bjdt", + "xrzq", + "dmwgqlo", + "nywjhtk", + "zvum", + "jsabic", + "lqod", + "cfrnspq", + "zhpbknc", + "vfrtgs", + "zdeo", + "cuhzgrf", + "jvltpni", + "advmt", + "xhfkyci", + "xmaiz", + "fgwval", + "ogkqb", + "ocdl", + "jznwb", + "sqgr", + "tgalq", + "dfsiqkm", + "sonr", + "amlsnk", + "gbctskn", + "iwoau", + "yrod", + "jhtrg", + "tcwhm", + "mnejl", + "nqcfw", + "cyqk", + "xthofna", + "qeyk", + "firy", + "iqeb", + "uazsb", + "zbkdh", + "mrio", + "ahvpxod", + "smjygx", + "imlusw", + "hnbs", + "gwsmtu", + "doykwpc", + "pntq", + "pshvdm", + "qrunew", + "qwhdl", + "hblx", + "qnjgumh", + "xhdzm", + "qlewoz", + "lkfi", + "gopzaxk", + "cdpty", + "furowky", + "yskcp", + "cekg", + "qkgowr", + "vmfoczh", + "hzgr", + "esjfx", + "rstau", + "jtadx", + "goybe", + "nuvk", + "ajmioxb", + "hlcrfzp", + "xiqby", + "osilez", + "wmdgn", + "ytsqcip", + "fonjumz", + "ypuvnml", + "wdnz", + "ixaqhtz", + "rtmsv", + "qlkyotj", + "ljrpftv", + "mltyu", + "bglcdmz", + "vlcoxge", + "gpajz", + "xjmfv", + "wpdravx", + "zdflp", + "bikhfa", + "gyjzdw", + "nxpta", + "xziekjn", + "qflxzh", + "mtvk", + "iucdnw", + "pmlyr", + "rpbugz", + "ybguzi", + "bovn", + "ijorwbk", + "rsxo", + "vbythpw", + "quad", + "lnvaw", + "vwnmjx", + "ywxl", + "zbcqrv", + "dkzoj", + "yhczowr", + "pmbl", + "mplgjdn", + "mnifha", + "ofwjqhy", + "cntpo", + "nflodm", + "qjgvlz", + "pmtrnd", + "ydrb", + "cuox", + "gomck", + "kuotm", + "vmhcksu", + "tcvns", + "vflu", + "wtve", + "wfgk", + "kanucfb", + "ljiobpk", + "sjdhf", + "mprlwyq", + "shbe", + "yzabe", + "umydt", + "bienu", + "dnrc", + "xwceoq", + "wzdituo", + "xvgtwoh", + "ypxdut", + "tuxrvp", + "djsugl", + "pmuqna", + "xcatqbf", + "tcvws", + "sjufbwn", + "kisxe", + "biwelkc", + "fwouisb", + "sbmgjxd", + "ofrpts", + "xdvfsj", + "vdrawmh", + "evktbf", + "zmrce", + "jnfk", + "ktzvuhf", + "auxoh", + "fhxylb", + "fbrpxgn", + "empzvr", + "aolk", + "azuvdob", + "xghl", + "hvtx", + "ncxzm", + "jqoc", + "qrku", + "vmwzx", + "iwrpa", + "ejfur", + "epshday", + "fgobqtc", + "ecgpm", + "lkxsv", + "vqmc", + "kudbpc", + "qainuc", + "dvmrja", + "wpkx", + "qwuad", + "cbznxdg", + "dmxtv", + "aiwe", + "lhpd", + "fhcgjo", + "zgjtsoh", + "dhzovfe", + "ygbl", + "lkzw", + "hexyji", + "xbjzdy", + "gebfwxi", + "csinp", + "qyidx", + "xqdrwa", + "xklas", + "lcdjb", + "plcira", + "xmai", + "izkx", + "iyhp", + "zldawr", + "wnilob", + "xtzk", + "lhqe", + "pdiyg", + "qgwk", + "npzqdr", + "aoyvh", + "xfrkey", + "clrpq", + "yorqtlg", + "btnysj", + "wnblrit", + "hiakt", + "nvgc", + "sajipot", + "uxrv", + "ztidjm", + "ewju", + "oilfeg", + "iazjwn", + "jbor", + "kficbe", + "akbgrcj", + "mwveol", + "mdaj", + "abtm", + "qjkoc", + "vbhunx", + "rlufv", + "lkxhw", + "vyfq", + "zeynk", + "zhrm", + "mqztwr", + "htug", + "vnmgjqs", + "jzeupx", + "twnhq", + "umpvway", + "olumxtv", + "mepvun", + "ytvnof", + "nzao", + "luewvk", + "ihtzsv", + "idcek", + "lmxgut", + "wyscbq", + "thyam", + "hnqu", + "tlsfk", + "hvijr", + "edcsipg", + "nbyzac", + "oimxfst", + "tsgujq", + "jucdv", + "suyrc", + "hwptk", + "ledn", + "kwlgv", + "dhrs", + "rbdsc", + "rilmz", + "sindlw", + "tqekmrz", + "mkqats", + "vnitm", + "nokseu", + "sxjny", + "incujf", + "pvxq", + "oqukdj", + "tdbeho", + "zkqgfas", + "philoj", + "uziptyl", + "bcek", + "qcbg", + "fbwpokm", + "irculds", + "dgval", + "umvqnkb", + "gqzbiuy", + "mgry", + "cfbu", + "thpg", + "vxhp", + "wrxble", + "zbkewv", + "yvfal", + "vehpkyw", + "bhjz", + "zydvf", + "ecby", + "miqxg", + "ragifl", + "sqtmun", + "fvak", + "mdjq", + "cnrx", + "kpxalc", + "jszo", + "ocxag", + "gduh", + "sdvrwhz", + "fzmxckj", + "iacus", + "tmkbrva", + "xmgjt", + "gkwcmvd", + "hnxb", + "rnsdoh", + "jkbd", + "rasfbkp", + "iowp", + "hmce", + "ivmrg", + "hogrm", + "acjbo", + "stqg", + "lpyikwq", + "qjtnxgh", + "pyhwgv", + "hvbf", + "bcow", + "uixzpf", + "wdmc", + "qroja", + "ycuka", + "yuirofw", + "kerlchs", + "qbpkhsu", + "rpnkcz", + "irfj", + "kueqw", + "dgvl", + "ybjr", + "qyohpb", + "biyuw", + "rqacyx", + "hkslwmn", + "rbym", + "lekjzv", + "pxyhwk", + "uqeyh", + "nqhvmwb", + "mwpjxr", + "jygol", + "zjugbs", + "mxzl", + "ocvtjm", + "htusf", + "geaz", + "xhaky", + "abkxd", + "wyzfm", + "dyzo", + "vgpknb", + "kioeu", + "pync", + "mployb", + "tfsmzb", + "cpiq", + "xrynlsz", + "dfvh", + "ezjlyu", + "auir", + "itdgu", + "obyvd", + "yjqs", + "bymeaj", + "mnpwxry", + "yhkopir", + "almjwqt", + "tqjy", + "kgvqfr", + "irpgwdn", + "npzw", + "ywvgxtn", + "lcvp", + "jrxtb", + "hlok", + "rhpnbck", + "iljdeg", + "esyq", + "oimuyg", + "myfdvrp", + "ibnwmtr", + "xigtw", + "gjueth", + "ephr", + "tcbp", + "ulgs", + "cwqr", + "zgxal", + "ysac", + "rlvshf", + "qhwgj", + "xtvln", + "yodxt", + "nailk", + "ecimhrz", + "yhcimvq", + "ciughx", + "xybsh", + "zvbhilw", + "vobpq", + "jixcg", + "vaoskgr", + "alof", + "cohgpxv", + "ecfv", + "rudqt", + "shwkl", + "kvmnwqo", + "awgoq", + "awoqmh", + "cnqt", + "nbqa", + "roam", + "lcfm", + "yoic", + "qkjul", + "sqpwzma", + "yalsw", + "nkzhq", + "gouq", + "gozfa", + "pyram", + "gamnoqs", + "czou", + "aqkue", + "pnrmxyk", + "efxgm", + "biknwo", + "nmko", + "pqeur", + "yebowks", + "vemfgth", + "bvtzfcy", + "tuqla", + "ybjnwui", + "fsaxj", + "nqdahlj", + "eptivf", + "qzvl", + "vqayt", + "qepba", + "yvuzdbt", + "fmle", + "btph", + "ahcbey", + "ocymg", + "nritcz", + "vokfgqh", + "vchls", + "zcwtp", + "ufkqow", + "yzjg", + "dpsyt", + "glcb", + "rlqe", + "advklzu", + "zdjigu", + "xhfzp", + "gxzue", + "lofxyes", + "ytwudcs", + "indxcs", + "raxyet", + "opvq", + "ihkdewj", + "fzep", + "lhtzrd", + "yxjpc", + "ucbwe", + "ydfhm", + "xvim", + "poiyamz", + "ihlosf", + "ckbtp", + "ojgl", + "rbego", + "joehc", + "pnoxhkg", + "ojmrq", + "dlaspxh", + "fkhejbv", + "xpqeav", + "ybonr", + "ecith", + "gotmis", + "qayxghe", + "sreo", + "jpaxiyc", + "wgvp", + "pomvinz", + "uplxao", + "xapj", + "vawifc", + "orhbjvi", + "rsve", + "ajwhmn", + "kbph", + "vgjqa", + "oujw", + "ptnqxi", + "hpmge", + "uzsx", + "tqncg", + "jgehnv", + "mchznsu", + "whkzeod", + "gcli", + "msrd", + "yhpiefr", + "aesuqj", + "mwiqr", + "idupjm", + "lcso", + "afujh", + "demq", + "pxbe", + "hrxlg", + "wcfd", + "semry", + "tiwhmd", + "udsb", + "orizya", + "cxqg", + "rqtsxip", + "amftyin", + "lyiufn", + "odfpx", + "prubgcw", + "vhyf", + "mlio", + "exspn", + "wszq", + "sfupqc", + "tfqelms", + "sykdh", + "fpaw", + "zptek", + "wbltyvf", + "sehowk", + "valb", + "kdbnmu", + "mcdtz", + "ebxntzd", + "uzltcqm", + "xukh", + "ucvdgo", + "ksjdalq", + "cdraihs", + "ovzeg", + "eztn", + "fzjd", + "qdjx", + "crjdw", + "uwkebry", + "dnphjw", + "gvqn", + "yuzxto", + "fyzlvn", + "qfdsy", + "ynwj", + "cyjuo", + "euxbiz", + "yljpc", + "gptf", + "bmwq", + "jdyf", + "jdnhcte", + "evpmca", + "pksdz", + "niqctmo", + "znxouyv", + "dcnmg", + "keraz", + "xfslba", + "duntsy", + "muvp", + "hakol", + "dfkera", + "uwcr", + "dlkb", + "fwhi", + "gocaq", + "qszdpca", + "bzaow", + "wshl", + "gmqfubr", + "wceziyj", + "jhav", + "monckz", + "njyle", + "eoxlsw", + "bjkwn", + "ciqkv", + "zcnteq", + "unefrk", + "bxvefwh", + "wltn", + "izdj", + "mqfv", + "bpeag", + "ajoszl", + "dceaf", + "hmvrby", + "uvbnejo", + "kdmnx", + "lgcvimp", + "cjink", + "yzqcmrj", + "psbecml", + "wpjfm", + "csbou", + "cbrnhui", + "thou", + "rcovml", + "sycf", + "zrqtp", + "vntjxel", + "vcwfke", + "huyadp", + "bork", + "cjwx", + "lcukx", + "lmfuw", + "hzuyq", + "nqdbytw", + "aolueb", + "nymqs", + "esno", + "yljh", + "einbmo", + "hdzgbp", + "uhqbyg", + "xisvht", + "qmaj", + "ehpg", + "dlzmp", + "qdvne", + "muon", + "jtfxm", + "gsxbr", + "oxlv", + "ecqtv", + "odqji", + "jcgfea", + "kaqhple", + "pczix", + "cnfip", + "iowjsm", + "rxsgumi", + "qnpze", + "vctymq", + "bkjryml", + "risl", + "iwmtefo", + "iudxmc", + "jusvnhc", + "xbdyjqu", + "okemn", + "pghsn", + "viclbu", + "renj", + "pxga", + "rmucqab", + "viowx", + "oigcua", + "zhrfug", + "ausqmh", + "kiev", + "dltk", + "iept", + "xguiybc", + "gviw", + "htlasc", + "smvicd", + "kxhpaic", + "ymxw", + "krdmal", + "zrswb", + "dzcqo", + "zogbr", + "gmpdelk", + "mwhnc", + "cokauh", + "zxielj", + "lvdz", + "mwhkxcv", + "tvri", + "ypjs", + "gbonhv", + "esbhyz", + "pxeu", + "ladgjq", + "fpnwx", + "adgcqmj", + "ibxtf", + "xljduc", + "rudfh", + "qdxbj", + "sprzht", + "dfjvw", + "xokedru", + "qahxlcb", + "nhiwdc", + "hoiqkz", + "fzcysmh", + "usxefkp", + "socmfqp", + "mkbvgy", + "rncvt", + "pufsh", + "semparj", + "lqreh", + "myejg", + "flso", + "kojevqi", + "pxgztr", + "jegshlm", + "irlaf", + "jodawns", + "crpos", + "gadheu", + "ijydmrx", + "gofv", + "izrpl", + "acwl", + "kmze", + "qvzo", + "libdtc", + "yhecjkm", + "xybqpgj", + "faukbry", + "sgidve", + "swyipb", + "gncutmv", + "twaxil", + "tdlzs", + "ftnxjsb", + "lxkmwv", + "hitezyd", + "pufwhlz", + "nlrzgq", + "ojqh", + "ojkuhyr", + "hyzbdqu", + "jcpgeu", + "kevhjqf", + "rvwcu", + "hpvqnb", + "idoz", + "jdplgr", + "habr", + "qzrsko", + "jrclkfp", + "nbqc", + "adpkyse", + "ozej", + "gtzwvn", + "dotk", + "urcym", + "yxdq", + "vejq", + "uqwa", + "bultjir", + "kdhbo", + "xuql", + "ulspzh", + "eoknh", + "xwbzdsl", + "bzgjc", + "nxtgfk", + "zqxm", + "jqwrizf", + "lsyv", + "dvkn", + "urbe", + "dvik", + "gaijy", + "gkwyqis", + "fcevnyd", + "meatdzn", + "gimvje", + "awgpudk", + "ypdjm", + "jdhz", + "skocyj", + "sqtce", + "mgjwzhi", + "pmvxane", + "rvoq", + "ylkvj", + "jcotzaf", + "nzayrwb", + "gduxer", + "kipgxmc", + "iylthm", + "cmvft", + "xwjhcv", + "npsjcy", + "djzw", + "frzljw", + "adyqhv", + "fpueby", + "yqbu", + "tlqdb", + "tqosjbi", + "bcafl", + "gzqvyxb", + "pzqyo", + "xntqilo", + "grfbskp", + "pbqv", + "vmub", + "cbjiyo", + "ckgnml", + "veqgj", + "kuqprw", + "jtfwh", + "qodmu", + "kuds", + "ibgqzt", + "pjaeh", + "bgwf", + "klpt", + "zcwdl", + "atobq", + "qgewt", + "azpc", + "rmyido", + "kpmdrna", + "ctokhzq", + "kfsc", + "cbvo", + "uevc", + "aplgy", + "malhcvx", + "rskqn", + "ahwm", + "jwto", + "sjwta", + "cfod", + "aupt", + "yqkwhsp", + "tkmipoq", + "jmtc", + "kzey", + "lehm", + "bgvys", + "xipyuez", + "jroeg", + "vcqj", + "sjprwtg", + "jbxdeh", + "jkaf", + "srbqt", + "hjmwd", + "nrih", + "nytbxg", + "icskzbu", + "umqbi", + "pgatfwv", + "ydmns", + "bivwnr", + "vuyixgh", + "dztv", + "gjpkits", + "kzqwm", + "bmikau", + "ubcp", + "tdxmv", + "rlbh", + "sftuh", + "yswzxh", + "iuyaelk", + "wbocup", + "yxtm", + "dvjku", + "vqjbcoz", + "nqfusgk", + "qevd", + "xheo", + "mslwe", + "pdihje", + "eoqlt", + "syjgxqm", + "mngwt", + "iatsbno", + "gmsnqbc", + "lgsztox", + "retgiow", + "vdpouz", + "crzyt", + "zkliamt", + "ofvet", + "akjnb", + "elsy", + "pixnaz", + "ybvk", + "slpgfqx", + "sjdvrg", + "vstow", + "bwhas", + "bhjpo", + "wozc", + "smtjwl", + "oshmwd", + "igwhye", + "tmlvj", + "vnwhpe", + "mqlc", + "dpkcoiu", + "lrypocd", + "hxrufkz", + "verdgt", + "lmgbo", + "hwpk", + "yxmzfs", + "wzmbx", + "jgdsnk", + "kmxenh", + "azixt", + "rvigd", + "copywg", + "wlgv", + "dcnx", + "tjaogfk", + "mxdujy", + "wxdhg", + "fexsk", + "esouf", + "edvzny", + "etgkmp", + "bxsvnkj", + "scqfnpx", + "juhfvc", + "hrtel", + "kifb", + "utbkd", + "kqdslo", + "bnrs", + "izgu", + "zslqhdb", + "nhbeqpc", + "zkwg", + "knmg", + "jifky", + "aeznoi", + "mdur", + "ltqcj", + "ctmxbl", + "ngokdz", + "jfbnorp", + "djcxya", + "wyqj", + "isyunh", + "mwpzu", + "xoqifp", + "dmrib", + "ayfgrs", + "artiy", + "fgmlj", + "tneai", + "binuxc", + "jtowa", + "lqokpum", + "hmaewcz", + "mtcyvl", + "vhawg", + "drxm", + "ukpx", + "ehoavpg", + "rqujxy", + "nuzibk", + "maxd", + "shapi", + "enmyz", + "awlvcit", + "tvrao", + "pdkbi", + "dmrg", + "bkmcrx", + "zincb", + "qzhs", + "oywpdia", + "vpxgho", + "dmsr", + "rtuy", + "tcpsa", + "bhxvw", + "iovukdt", + "isog", + "crayfq", + "mwor", + "pnvcxt", + "rlpbv", + "rmvjh", + "guzmh", + "upcg", + "yivnl", + "dtnsly", + "uylad", + "agwojek", + "siqdaw", + "qlrem", + "ivuah", + "kgqyud", + "kjyhcx", + "ertafcw", + "umgxa", + "feruz", + "wnrkzm", + "lywuf", + "bifz", + "ysgp", + "bqtafo", + "ncef", + "xycbdt", + "scjly", + "dsxib", + "vclk", + "ngfmbx", + "lxdrefc", + "molp", + "dxesq", + "pavqyg", + "lvkhrwf", + "xrfv", + "otxle", + "ivkwstm", + "jivkp", + "pfuytsh", + "znxu", + "hxlntij", + "tzxkr", + "zilhy", + "psqdnj", + "rzugdf", + "rnajkqm", + "gzufi", + "kdyqfr", + "vfar", + "waloiy", + "oszdqhf", + "mtfdcin", + "blnte", + "tilx", + "euzoiyb", + "rqtac", + "ducay", + "idpvtr", + "wmdt", + "jvgkrl", + "wxrhky", + "srah", + "divtmx", + "ewod", + "afvkhbp", + "qxcew", + "lraso", + "mqgjy", + "fuzneg", + "qbirevj", + "plzrv", + "blyfi", + "qasvy", + "fkxi", + "hpfzvxm", + "lfipj", + "ypsa", + "hlioxju", + "ibpamuv", + "idqfs", + "rkytv", + "pudron", + "okubelx", + "pgqh", + "klexq", + "xhyztda", + "aounvzy", + "dvrfjb", + "ibwdye", + "hbypsg", + "hycxzas", + "lrqni", + "vjbog", + "kavyeru", + "mjouz", + "fyle", + "nkbeq", + "owym", + "ysnfw", + "qwjogy", + "xtzo", + "guicvko", + "cpyhul", + "xfvmjz", + "mgxed", + "ojflhva", + "dqop", + "ufrto", + "rgeipm", + "noamlf", + "tjpi", + "volxm", + "uogljhd", + "jsadwh", + "dqnzho", + "gwsy", + "yubfhx", + "ajqb", + "savk", + "xpznbe", + "mwolt", + "paswde", + "nktms", + "snlob", + "yqjvpu", + "wfyekjp", + "tjswmi", + "piucfxl", + "onprg", + "voiublq", + "iksx", + "bfhqet", + "ztero", + "jkuinx", + "ekmzs", + "mfks", + "xzmic", + "javi", + "necl", + "kxzoip", + "vuyxtn", + "otqve", + "dbfwx", + "jwfly", + "dost", + "foxnm", + "vrnkdaq", + "qipfke", + "ecroa", + "anbjk", + "wjenvu", + "agxd", + "wilsz", + "qwcmob", + "tbpx", + "zqxb", + "vuwxzol", + "qrlnjeo", + "jvdnkot", + "jkocxti", + "snfd", + "uvqok", + "eucqj", + "nujrmbc", + "qobtydx", + "ypjme", + "rogusch", + "jfvgx", + "mwbkr", + "jdxyh", + "oyeq", + "keovwxj", + "aroi", + "qihksmf", + "mchok", + "oiafgd", + "symf", + "xhfwkl", + "xplo", + "ijcqb", + "ljxbt", + "uknegc", + "nqhmsf", + "jmusbi", + "olzc", + "wfgmun", + "wygoksh", + "evbfit", + "rwfioma", + "qpgrslm", + "vjtwpdx", + "jquzya", + "owsbmk", + "gpbio", + "pnycax", + "cypw", + "eqpgf", + "cxqz", + "yqhuvg", + "sudpa", + "lempx", + "hxpquo", + "fgwxz", + "hztjul", + "uxfhskp", + "efvzi", + "otiec", + "mqzn", + "jsdkubi", + "ptnj", + "hvego", + "wnlmsa", + "vyia", + "ybkjmru", + "koad", + "qnwrl", + "efpysld", + "ylvc", + "cadoy", + "qwfonse", + "kjgemb", + "xabwpi", + "bvwd", + "gauszk", + "gvhi", + "dcqfsz", + "jqdv", + "pegvb", + "jtkylq", + "htmnrd", + "ifrxzm", + "lybjidg", + "twneyrj", + "hdrn", + "ckpn", + "gentz", + "ntsaiu", + "qlgytic", + "gpsr", + "faxqus", + "mnsk", + "neqf", + "wvys", + "olezq", + "anibkpz", + "lzmcd", + "pwiqb", + "fxtk", + "ndtxj", + "sfxpbqe", + "hvzjtio", + "tkgydi", + "vpjmo", + "mzfnr", + "ivbfg", + "gaibm", + "bdkpv", + "dcgoj", + "htcuvjq", + "zlnwuqs", + "ncqpl", + "jxcuhle", + "ueqnpi", + "cvgibzt", + "xrjf", + "dvmf", + "dgcqih", + "azyld", + "eqbhk", + "sjewl", + "hwzc", + "vhdf", + "axcw", + "usrmjn", + "kcefrv", + "tmnicle", + "htwyla", + "idgrz", + "vnkb", + "oqabu", + "zsvl", + "asxlw", + "xpkmv", + "espbjz", + "orltae", + "pbilxg", + "crzylw", + "cmie", + "xnsjdbv", + "iplvqce", + "kizn", + "wmdrhv", + "zqsy", + "jmtbkw", + "whtlsdo", + "ywpg", + "nvwtl", + "efsz", + "gvxt", + "ceauyhx", + "kgws", + "xhpaf", + "oekudl", + "hdxit", + "outnm", + "nvwf", + "oswudgr", + "fsmacb", + "sjlpycg", + "izmv", + "jouvxl", + "okwml", + "xpncrt", + "leatm", + "bnvwct", + "zxarfbs", + "zsiwoj", + "ejnu", + "tosdja", + "hayf", + "kulvonx", + "ikwq", + "jrwlyi", + "avtwg", + "vyeitom", + "zlqm", + "ndtsabg", + "vgeafcx", + "rqki", + "etyj", + "gnxzqk", + "zcvgsu", + "xvzftbo", + "aoil", + "qdjgak", + "egks", + "qjxuel", + "xdicfey", + "myij", + "wfloy", + "hcabyo", + "gkvmf", + "mvfo", + "xcmsy", + "lajwvin", + "rucif", + "trbzm", + "wtkd", + "dgvmq", + "rncf", + "mulos", + "tcab", + "ecbrmd", + "yfuilpt", + "fnydw", + "pcjvhk", + "vhzytug", + "zaqgniw", + "jifyv", + "mycstgp", + "cixjmt", + "xnhvls", + "uqbcek", + "moqdk", + "oglsmad", + "aoceyv", + "vhrxk", + "vhgclte", + "wbjm", + "vtob", + "esqnb", + "yzemvc", + "mdgl", + "vtfk", + "dtqesoj", + "galp", + "ieaw", + "amtlyv", + "xhin", + "ktiuzer", + "cdrjitx", + "irebvt", + "ojkuqvs", + "najqu", + "zcarni", + "tmle", + "zenjmpk", + "yjzb", + "wldj", + "sjxwmvl", + "mbhrqc", + "fuma", + "tmkpn", + "mfklz", + "pgcmayr", + "sprq", + "qzhvx", + "cwpbnd", + "fjom", + "zpom", + "aeojl", + "zimx", + "ezybh", + "ejyv", + "haop", + "scxm", + "edrzt", + "splhag", + "cpnyjx", + "wqgv", + "ehadpul", + "pyrcljn", + "ogyerc", + "wbdsu", + "hbqmcd", + "dlyaro", + "fexi", + "moiedx", + "pbigrm", + "hvgeta", + "bqvj", + "hmrezw", + "gmjn", + "tjqa", + "mtdbvxa", + "ghijt", + "vkxjrdc", + "giuxsmv", + "zugx", + "ipnyjz", + "ydmb", + "khzxpai", + "nulo", + "yztlad", + "gmrnd", + "cwga", + "jlsk", + "ktjhmue", + "xoyj", + "gjrsm", + "aodwnlf", + "kwzra", + "rcbpmw", + "gojfzy", + "rxas", + "eujhxrp", + "yoqlhub", + "nsvzk", + "vhylt", + "yndrgl", + "qeugb", + "vwgib", + "vpexh", + "jsgfdin", + "hesmb", + "zjhr", + "qhbmfa", + "bmzg", + "sugdr", + "wexr", + "mleoqay", + "zvpoul", + "bacyf", + "gnevpxw", + "xnvs", + "mqgzf", + "nwdi", + "hgaqzi", + "yjldb", + "emxdvln", + "ybkc", + "frphqs", + "keijcs", + "oswlzu", + "helqiku", + "ozcvpxq", + "yvlkau", + "ajlgsqy", + "migvq", + "psgwrbo", + "lgjym", + "wgtprs", + "iusp", + "bigatz", + "nqwp", + "airbgtk", + "jpifetr", + "cqug", + "pitvoc", + "qzpa", + "olxy", + "umqaxc", + "vmzd", + "xsqk", + "lviw", + "jrivcq", + "fxpzs", + "wtmfl", + "zwqrjyp", + "ugikxq", + "ivhcsx", + "syvkb", + "apkcf", + "wdsmv", + "gfntxdo", + "cshb", + "chjzs", + "lirodza", + "cfye", + "ctnzq", + "jtio", + "lpcy", + "naid", + "kegql", + "jznoe", + "quzjs", + "wshj", + "ozgujq", + "rqmwz", + "agqem", + "milbvf", + "cgoly", + "djmkab", + "nxpj", + "qjzb", + "efdami", + "qlpij", + "dngktq", + "ufxn", + "irnlcqb", + "xogen", + "mghow", + "ipjvmtq", + "qltvk", + "qljn", + "mzaboit", + "rhvoye", + "xazhc", + "lbias", + "xtjkb", + "kzch", + "dpeb", + "rhayum", + "hqcnrlf", + "jkzol", + "swlzmy", + "zdlh", + "ktopewg", + "tdwixhv", + "jcfqtds", + "jrilcx", + "ugrfhqj", + "hscwajq", + "aktyfw", + "ztisdp", + "fvpndh", + "dbfna", + "xefy", + "sowmkdv", + "gfzrj", + "udgxek", + "vnurji", + "nmfcx", + "rmobc", + "cxia", + "gwrf", + "ulikwac", + "adsuenh", + "sdtlcyv", + "pljzvyd", + "toglay", + "lyah", + "fxcdi", + "lisx", + "pulo", + "lqrigv", + "cogex", + "wxbljt", + "fjwsmyr", + "ejtcqwg", + "rndvesm", + "otqjvxy", + "wsfnzhv", + "mzwh", + "ewknjp", + "hyjfzb", + "jnqzs", + "tfrq", + "gdxwoma", + "pknqgrv", + "wegvk", + "lqxsrv", + "zigcfwj", + "hxtsv", + "hbradz", + "krhzy", + "oaiyv", + "qmeol", + "ucsoibj", + "kadb", + "nohbm", + "fzjb", + "qruxdt", + "yltob", + "iwgkna", + "wiqarfu", + "bnadz", + "bnaro", + "pzuo", + "wvlt", + "uowqs", + "fakm", + "ljys", + "lbvw", + "busdxz", + "tfrsmja", + "xiducoj", + "ijtgbe", + "uqhn", + "pclnzkx", + "lfsjt", + "dtzl", + "guyktjv", + "bcqteim", + "pwahneg", + "fwzjotq", + "yfijb", + "jtdf", + "djqhysp", + "nagv", + "qugys", + "huvtj", + "ifdroht", + "tisx", + "urovbhf", + "ziqud", + "fndty", + "nrsvm", + "fsoc", + "gnxq", + "djxnyv", + "zvyhg", + "hfyn", + "jroapq", + "hcvxim", + "jrzf", + "jcdbywm", + "wzlxmo", + "sefj", + "xbqfod", + "pegf", + "ozwh", + "hwftr", + "dgcoyj", + "olzhn", + "ynotf", + "yfqjdvs", + "bkelypz", + "zfrohu", + "qxtefjl", + "murgz", + "ryutics", + "lrthz", + "dibmlzy", + "wgfkabn", + "soxalj", + "poiasrl", + "kdgmeq", + "clkaygi", + "pwfsn", + "buosnie", + "akpxiw", + "tzquwl", + "avbysd", + "dbrlim", + "zciytgu", + "jwtkurn", + "muxab", + "ntdxuwe", + "ezwn", + "sukaof", + "rqgkfhc", + "jqpv", + "hlgjqr", + "wgfaqb", + "gyrtozn", + "ogfzjhn", + "oiwzdme", + "jmfhy", + "pvcbgq", + "ikgvh", + "dicxl", + "rludji", + "bopm", + "iyofjap", + "waguis", + "fxyvru", + "wgyrovh", + "xnclfmr", + "lzafn", + "diukj", + "iqwru", + "rfmo", + "mevcouj", + "jmisk", + "lirsw", + "skuy", + "jadpre", + "oirh", + "ohzgkub", + "sfdobzp", + "aikw", + "dqji", + "eucnolf", + "pnum", + "ndbtzlm", + "gopb", + "wpdqt", + "jzuntfg", + "rlsnb", + "faohl", + "wctfe", + "igexw", + "jqtfs", + "rhafq", + "uytcxsd", + "mzfij", + "pkvf", + "tgoxdsq", + "nxhcqrt", + "vlbog", + "vjopwf", + "yrvsz", + "oegjxub", + "pfjzwqc", + "obtnk", + "hbiswmj", + "puadvw", + "laszo", + "yfgqha", + "svdikp", + "caofi", + "hbnpjzl", + "hytkal", + "xpjnfic", + "nqpt", + "tkdny", + "ycbpzf", + "boqjlu", + "csjv", + "zugct", + "hzucbgj", + "wecjm", + "etsc", + "kmsp", + "mlwhe", + "trmivqu", + "fxanu", + "meocvd", + "yiflh", + "gflp", + "whdt", + "xtnl", + "gqwvy", + "ormpncs", + "lebykpr", + "utkspm", + "rlwbnso", + "xmwra", + "rbpw", + "ahxse", + "hpvzkdc", + "xtgezrd", + "mviyzf", + "sjawxeb", + "vgdrbnh", + "aopvw", + "ydfsojr", + "amhgb", + "zoypwv", + "wzdteiu", + "wpra", + "otir", + "raczyvu", + "pcslt", + "kwugcj", + "qtivzr", + "lkmp", + "xtpm", + "yoicptv", + "lqehs", + "ghxjilm", + "mxihzc", + "tdwxeja", + "zrwti", + "qmwzls", + "nqsr", + "rweyjq", + "xadky", + "jvrb", + "dqfypx", + "cboykt", + "gsfpjqm", + "wdxzn", + "krqdu", + "ynpm", + "lirvn", + "mvrj", + "acgu", + "sjpyxt", + "teusc", + "lxyvnc", + "wyze", + "sdumk", + "mbruz", + "bmpnyiv", + "opinbs", + "ueqk", + "dnjg", + "fgzs", + "fnuzds", + "tblygu", + "gedz", + "hpym", + "ektvy", + "cour", + "nfztwmo", + "ypanhtb", + "ukzht", + "eywrlgn", + "yjdrzba", + "rjuolg", + "sjope", + "ebyfxr", + "kzcvo", + "snmti", + "bmcyftj", + "woua", + "oshw", + "zlqhcim", + "qjydsi", + "ueqm", + "hnygr", + "qgebryd", + "xpde", + "flkn", + "ysexgc", + "uonb", + "zfkwigd", + "qdlo", + "mwlfg", + "ckmbuit", + "tcgfu", + "hsymnbk", + "wgsek", + "hajyzup", + "aclz", + "szefudr", + "oupdexw", + "sfeam", + "slfv", + "jazv", + "gavq", + "varlqy", + "cvxa", + "dwisft", + "qzgodi", + "hrfo", + "dojgu", + "xwenh", + "ysxd", + "tiunmz", + "wocjtnb", + "lwfxbtn", + "ntjafgl", + "wxngts", + "kznt", + "ciolhs", + "aypludn", + "qybolu", + "ryupd", + "heabtqo", + "mdolg", + "hnvjy", + "jtqgsfp", + "lsdgv", + "pibz", + "tigqbm", + "wnehv", + "fylq", + "zrnsbu", + "trsdfl", + "sdwvy", + "myiq", + "hfpkiua", + "mtcedng", + "syxew", + "xumskq", + "pkzri", + "dlksp", + "lgrtyev", + "hkgoqr", + "qaiw", + "qgznwrv", + "qpmcv", + "tylfnz", + "hdlwert", + "fporvdl", + "qvtuher", + "alwhngv", + "vbqcr", + "mxarv", + "weito", + "zljbae", + "puly", + "guqjfry", + "wvnjfdu", + "xwldrk", + "clmvpuf", + "yjfmni", + "gdutljm", + "ywdvf", + "lyosz", + "bdlw", + "imtyz", + "hdbejic", + "ilen", + "wdqrlna", + "mszfexj", + "purnzow", + "mvrdazt", + "vsru", + "pyqe", + "vsdpmgi", + "tkvcpao", + "zfbcikd", + "ntjpl", + "fwsr", + "jqbdhl", + "dupmiro", + "guplhfs", + "pnkbrha", + "kmron", + "ower", + "ksgbiu", + "xtvm", + "vhxgko", + "vwfm", + "scfmqz", + "sytzeq", + "mviprw", + "acgvnxt", + "jfapy", + "jtfqp", + "oxdary", + "uhxkevy", + "womq", + "orhw", + "hopfqd", + "vwrofci", + "iugp", + "ktlgom", + "vbdl", + "lfpinmo", + "vjqax", + "aowvdx", + "tfwlj", + "tiqjx", + "fbktmis", + "ljcsbd", + "bxfzepj", + "bqes", + "giaqrc", + "jdke", + "woqyh", + "hvjlr", + "fatmew", + "hezpwt", + "ruitp", + "kizct", + "bzmpo", + "vlcgkju", + "rtoud", + "yofe", + "chbwa", + "gtlc", + "zrlm", + "cnkpite", + "plbred", + "epqizm", + "dtunyj", + "jcbhlve", + "qvrmfin", + "ndgwmr", + "bvpk", + "hgodpj", + "ljkqec", + "cjyrzhf", + "aiut", + "jwlya", + "zbmligo", + "ytof", + "lqjpgk", + "pano", + "qpetxa", + "aipr", + "efpmb", + "iocr", + "ztnqmgs", + "calbdn", + "uxcjqk", + "mzashie", + "avfnq", + "evapr", + "zfix", + "qlpvi", + "oxzjdku", + "pcvsgx", + "xrpv", + "rjyxp", + "niqkz", + "fjhq", + "udslw", + "zicleka", + "iwxb", + "ihbyq", + "sbac", + "rozag", + "wxbile", + "achvupm", + "wzime", + "qgxsb", + "apszbo", + "vjtreu", + "erpx", + "edurov", + "ythokp", + "afpk", + "xtugery", + "hsbyutq", + "mysi", + "uaxqnhv", + "zipcdn", + "wpvcb", + "ejtbwux", + "vcaymp", + "yrejpkl", + "lpat", + "mvqeta", + "hfsan", + "ydfkhu", + "crskho", + "exjhum", + "tiwpq", + "auwi", + "hkixmn", + "iwhupfo", + "yzakws", + "veiou", + "fzmhcb", + "bvhct", + "hdflc", + "fzgna", + "abth", + "ymrhj", + "zykum", + "hfon", + "yuzdxle", + "oeftc", + "kqtsch", + "antkmyp", + "hipn", + "ephcwuf", + "xmgpbz", + "pbgix", + "fqgey", + "usyvlwg", + "odzaj", + "hyutw", + "ikfdxls", + "ptidflj", + "dnztlca", + "zmdxnjb", + "fwpk", + "dfqcobs", + "jpqsokg", + "lpczw", + "vmtux", + "xsnvgdz", + "whyg", + "tudkiwn", + "fsdeoli", + "uzosdqw", + "rlwn", + "emncs", + "bjqy", + "kjmey", + "drjpzxo", + "xaov", + "xecnyos", + "zptqf", + "cbuprwe", + "iqowbds", + "qraxbh", + "ocmeb", + "rjskc", + "hdwr", + "xiorn", + "hgnv", + "zyqguv", + "atnw", + "zrlhnde", + "vuyakw", + "cbqjp", + "rteomf", + "qvfjghc", + "owyhsmb", + "yunzpr", + "drvl", + "aukz", + "huixtb", + "uwncta", + "giacq", + "jxkv", + "onritd", + "buvl", + "ombsy", + "vtefm", + "lrzm", + "nmzocr", + "gezlrpt", + "ndorh", + "rpfz", + "htxf", + "yrocdgj", + "uzvwr", + "izwrsv", + "poasdwz", + "slvt", + "lmcu", + "ewng", + "mnqklu", + "qdijvs", + "mfhs", + "vpyf", + "dhcs", + "wimdob", + "psdloam", + "mvfjpht", + "uesyg", + "srof", + "kbogzx", + "rhzt", + "fylt", + "kodacwv", + "zoqef", + "wkxlb", + "bqcspw", + "elpnh", + "wpoghzx", + "zvpdlfi", + "odzvq", + "fiud", + "rsxq", + "hfnbx", + "haomwk", + "htxkqd", + "kyjeqgt", + "wzcmi", + "bwmjpnf", + "ktgv", + "kiwe", + "wsbnmv", + "jqpuf", + "ikcaom", + "rxzj", + "czwrg", + "cjwxh", + "opnsgd", + "uzni", + "tdykc", + "qbvg", + "teonzvg", + "kcuq", + "tluv", + "kbro", + "ogfmksc", + "yimbzh", + "jzywmu", + "ofgnh", + "oxvql", + "iaymg", + "dotq", + "hrfb", + "nysltkh", + "kwdrb", + "azdfpbx", + "srtm", + "jvhegkn", + "glyjrhf", + "txdrfei", + "yxbt", + "oiqlw", + "wphzxyr", + "bodt", + "mzigj", + "xlrt", + "ftmsnr", + "dopclns", + "jnme", + "mxzpab", + "bnqahw", + "pmgc", + "netywfr", + "tvbnc", + "qvbel", + "fmeyvd", + "rxepton", + "mbqte", + "vufrp", + "qjuchi", + "hcvnati", + "bwius", + "rmnshb", + "xrcv", + "ltsb", + "pqahiw", + "hkcwva", + "ciotqv", + "qrmf", + "omivfs", + "avkozqb", + "daxlinu", + "lxgqnic", + "ziqf", + "gfsahw", + "andpkwv", + "wmjv", + "lsvc", + "wkbd", + "qlmajz", + "iyjan", + "vimeacu", + "ehwc", + "bidnkc", + "hrbg", + "fnpjzew", + "xspcgzw", + "ovbjxf", + "reva", + "pnoqvit", + "tlbeh", + "lonk", + "pgclqt", + "leupots", + "laxefo", + "lwdqj", + "ayklwuh", + "lbesaq", + "gatvs", + "rdnvisq", + "ydozk", + "pykmnc", + "qxioml", + "kpqey", + "qmcxnp", + "yfxw", + "yltcgfu", + "skgzcvx", + "okyiugm", + "xutrvbi", + "kvawyc", + "vhbedir", + "uxcv", + "oklzv", + "siog", + "cgebl", + "qfryis", + "brdcs", + "rmapbgi", + "jlqxfve", + "twvr", + "nlzior", + "mqrdc", + "lqvtgbi", + "mscwitr", + "boaf", + "pwkhgnb", + "jntivsq", + "ckvgu", + "bavkg", + "lqnm", + "skxgdbi", + "etaobu", + "mxpqcnu", + "qfyam", + "baoi", + "klqzra", + "talezq", + "yshti", + "hdkylx", + "tdfwvj", + "kyilj", + "catbk", + "dwyou", + "wltxdyq", + "auormg", + "vhmxjd", + "eaxtwzd", + "qzpfjvl", + "jbkm", + "vxksgca", + "chtpyz", + "hsirk", + "zhnslx", + "wcxuja", + "cxad", + "cpxr", + "yxcukmd", + "hpsy", + "iwlstp", + "halw", + "xdrzmj", + "aivu", + "ksieqmr", + "dhgy", + "fusytkl", + "emcsdyj", + "fjyh", + "uvexndc", + "xqavn", + "njwlif", + "oqptdka", + "qecb", + "jher", + "fhrxj", + "kiare", + "lswna", + "cmdvgpw", + "dxfjh", + "vypc", + "eqkblu", + "epiobwq", + "pcveo", + "ezul", + "ushtryq", + "ijcp", + "gftpvcj", + "qfevp", + "uvxs", + "zruiq", + "yrdei", + "otgqrvi", + "pymcanq", + "usdtnie", + "lbagos", + "hbmkqf", + "rghl", + "gtbsrua", + "sptuv", + "kayxwj", + "rvkaqd", + "nyvdp", + "fehlsd", + "rikjg", + "gpwsbzy", + "nicp", + "rdlhow", + "jrbvnxl", + "comldiu", + "diqxuhz", + "zvpqcus", + "mvixqg", + "qsdxr", + "slqkgh", + "ezstih", + "mtlgryx", + "qzowtuv", + "jxfq", + "worf", + "cldg", + "gyfcptj", + "myztgj", + "ripvh", + "zcmuvkj", + "gqjbk", + "ouhy", + "psutcje", + "hxizymn", + "gauyqnl", + "zxerh", + "mhue", + "dyef", + "umbs", + "eiopb", + "fcbv", + "cofvsq", + "mahi", + "lbze", + "opbk", + "ytduhzs", + "lqgxyav", + "cdzxe", + "roxkena", + "jompgq", + "pgla", + "vcfa", + "zgmcpji", + "fqklgm", + "zrwb", + "gjzmasy", + "fsgk", + "jhsvi", + "zyqgrc", + "jyvasb", + "fopes", + "qxuzmdf", + "bdelim", + "ehmrb", + "sxqw", + "srhay", + "qedjt", + "cydv", + "bgak", + "ewmi", + "lkci", + "tdvojxz", + "bpgnsvt", + "yeaqglk", + "srvknu", + "kshx", + "wgqmy", + "derwx", + "pwmnzto", + "ijgqodx", + "sclgdka", + "yekiuc", + "aplzfv", + "hbqjapm", + "zpejat", + "juxkh", + "igbsk", + "lcyiks", + "bhjwnzq", + "ldsr", + "auhqtk", + "vunm", + "dpouh", + "yzfa", + "tkyahqz", + "fvdhwai", + "vcslfz", + "jsekw", + "sqatled", + "gorz", + "vfqam", + "fhkvx", + "dyxit", + "cwoirgk", + "mkoyi", + "oskzq", + "njqcrd", + "knqzotj", + "zndofem", + "abrhzq", + "foagqy", + "itdobf", + "sbgl", + "omesx", + "ghqra", + "qkhiysj", + "mjuwy", + "oimus", + "vsdoc", + "mncus", + "mtfbu", + "tmjfbup", + "ydma", + "hkunj", + "qpiwyed", + "pfmkque", + "czhmiak", + "tlsbw", + "sideqnt", + "pmbwqjv", + "keojyrd", + "yhpiw", + "jlxsez", + "hyutzm", + "swmr", + "qsgm", + "gjkh", + "serciol", + "dvsgif", + "kqftuo", + "kohngiq", + "wgrcek", + "repbylg", + "fusok", + "sturv", + "ndpbtfr", + "dwomna", + "cxgb", + "vzxdnqo", + "ohzrpaw", + "glwc", + "oexk", + "zhxrtng", + "fkgve", + "sdzcfl", + "vfzrd", + "oleid", + "ijspq", + "ypxob", + "cfwglv", + "hziyvko", + "jmyusg", + "zdnwk", + "gldtjke", + "ghzix", + "umvjbdn", + "fnrv", + "xydjgoz", + "swejlt", + "qfensuz", + "zhakpw", + "glmjbs", + "zquwe", + "gqlts", + "tqjk", + "auxyn", + "mjqthoe", + "pexcb", + "kpejosg", + "gwdfhnv", + "icqlk", + "etghmck", + "ctgph", + "sluh", + "kjaz", + "dtwxslq", + "kgrbeqw", + "sboj", + "xzqkgh", + "tzlj", + "xwyqv", + "xcvefs", + "qnzcpf", + "ijadewo", + "pkjg", + "yamnv", + "dpbugae", + "zcebmvk", + "mfbaz", + "lgsrhv", + "oizu", + "dconf", + "bqcdk", + "qjnatb", + "odqvx", + "tgsmn", + "ywdlrgx", + "xgjypw", + "myltw", + "dpcu", + "cbudhkw", + "cfnuv", + "zkjanue", + "jvfsd", + "uvclf", + "pmbaz", + "xudols", + "ilvfwtu", + "pnsaj", + "xndjtl", + "mijbzht", + "gmfox", + "zgcupbf", + "vikzug", + "tdngz", + "xsou", + "uwqk", + "szog", + "sqmcex", + "mqtwbxf", + "euxqkoc", + "cnbygmx", + "gmyvqhk", + "kmvnj", + "tzeosul", + "gdfknpo", + "jamkn", + "ivayd", + "trdncp", + "oguvhyr", + "sjpgcvw", + "zdgrqai", + "zqxl", + "kgzohi", + "rxcif", + "vwudraf", + "lpeo", + "kybamx", + "acmiq", + "wpqu", + "zviajtr", + "dmgycvf", + "tpzelv", + "bsczt", + "lacup", + "arxyfkd", + "uywl", + "gvmk", + "coatdk", + "gnqxdj", + "bcelg", + "aqrysd", + "kxgq", + "tqyc", + "gike", + "zsiycle", + "hpvltu", + "bziqkhl", + "vqutepk", + "ndzpfx", + "goezhm", + "rqzxba", + "fwmx", + "twca", + "nquc", + "secvtig", + "zuidcyg", + "qlym", + "vaxqfit", + "bgdvtmp", + "nzdlc", + "mleh", + "jfowi", + "qaxfkv", + "juzhps", + "pmwqayb", + "admro", + "pbnes", + "puxtdbc", + "jtvqb", + "hguqti", + "bvoqpky", + "clniyfw", + "oxvf", + "prldb", + "fhiwo", + "haplyi", + "vncyd", + "ykvmefq", + "uiwcsvo", + "mbtukno", + "yikalup", + "uith", + "yosc", + "ysfwrj", + "gdyjix", + "icua", + "njmial", + "zasdech", + "kdxn", + "onvipfq", + "hsomlc", + "vxcfq", + "ztjyg", + "lkgms", + "wuexdcb", + "ojfznd", + "mxea", + "cpkw", + "hlirwfb", + "fetb", + "oxhi", + "qvdsnb", + "slvcmj", + "lwum", + "dhsvjtp", + "gzvtfqu", + "rxth", + "dmvczwe", + "txbeqsa", + "ywjfqbl", + "xosd", + "ywitrep", + "lbwco", + "pnkjcly", + "dkvip", + "fdmp", + "doqjegv", + "fjecp", + "infg", + "xqycodf", + "mlrwv", + "ywzjakt", + "vaos", + "mfvd", + "ewkgqr", + "huip", + "ohsznlg", + "xrvcde", + "vtcdgf", + "liucna", + "xkiwoyd", + "rvxs", + "ipvjnz", + "dmnjx", + "izay", + "cywpk", + "uymfpwh", + "wrkd", + "erafw", + "ostx", + "tewlgrk", + "zfba", + "ixhq", + "hlaxydk", + "oitycrl", + "jzvdn", + "jpcexqy", + "zqcoi", + "mcxgayb", + "qrsawf", + "furans", + "oqipmhw", + "zphvxk", + "qzmi", + "urlk", + "iwbvf", + "jlvnpu", + "igrskjc", + "qfza", + "xgmrdz", + "vftcy", + "ioyxvbd", + "tvzsob", + "bwvkimx", + "uftbksr", + "khzxgf", + "dnlpb", + "cyituw", + "ahkxsm", + "ztohl", + "bnigmz", + "gejv", + "rbeudx", + "skxdba", + "igdxem", + "csgrzm", + "mjusyf", + "fqbzosx", + "fzjqtxh", + "ediuraw", + "jgny", + "hqswiyp", + "telg", + "vptqe", + "ucsld", + "zteg", + "lpmwcqk", + "eclpb", + "tnrjayq", + "qyijhrg", + "tmreuj", + "xrhk", + "ilxsdv", + "gtbuvhl", + "dtaqz", + "zxvnpyh", + "jfvp", + "mwbhqjy", + "tpgjv", + "jlxsphz", + "zqejo", + "nrswti", + "spxm", + "hqnfo", + "zhjw", + "cvtbyeg", + "ehlac", + "uijf", + "eybha", + "dlfuyq", + "uhpyrqf", + "cjayrz", + "cydv", + "dlfzwjk", + "qfomive", + "efjdbgi", + "juntbo", + "marxv", + "sdjpykn", + "werh", + "qkfax", + "zmhkdag", + "souyrq", + "ztqfd", + "rptiyxw", + "ogksmja", + "zchjb", + "xqir", + "twzvlbi", + "vkrpx", + "keqcdp", + "scokmqg", + "fxqasoe", + "scwmrxt", + "suix", + "qwfjam", + "diuanqx", + "gvthyij", + "jobgc", + "bswc", + "savcteh", + "nsky", + "xzde", + "ptdkqu", + "zjmqfau", + "vautlen", + "lqtwkie", + "fpmq", + "wrpmdj", + "jowq", + "ofxs", + "dyxeh", + "xprb", + "wjnv", + "wycafp", + "zwunt", + "rfqojlk", + "mtvjdu", + "ketcxpv", + "nmtvigd", + "pyxr", + "rewmz", + "dqbezk", + "slbmpu", + "dryk", + "mqzg", + "nayvqlw", + "cjgbax", + "dmqlivx", + "wuthqg", + "gtvjfxe", + "abkv", + "lyac", + "qotfnd", + "vdsu", + "hsvki", + "ncwmtij", + "znyd", + "jlis", + "fiakb", + "mtdonze", + "dujo", + "jszh", + "pbvui", + "xcewojm", + "wouztpg", + "uymwpkr", + "vzchyk", + "hzqltio", + "lnjfq", + "vkzr", + "kibns", + "mlevk", + "ajsnh", + "hijez", + "qkhw", + "bayov", + "nyrh", + "phkx", + "bwfc", + "htomgr", + "hnpd", + "sdpj", + "odari", + "jauqsgy", + "anmb", + "yrmhls", + "repho", + "vycazbw", + "wozi", + "eahp", + "zlcfa", + "pozkgl", + "dtbvaig", + "lpsbdyc", + "wsck", + "wrqp", + "ykztjm", + "xzqcsnu", + "qnuxc", + "yxsjklt", + "rcdxb", + "eupic", + "unwthbl", + "vkwnyj", + "etsmji", + "yajs", + "xgnmdy", + "ayezlsh", + "ledswbm", + "fokns", + "jmycubt", + "ewqpit", + "kcfj", + "nixa", + "isfc", + "cmezrqw", + "vwegsqf", + "ceyfd", + "aywx", + "tsipb", + "idlg", + "jiqkw", + "orqxgj", + "ztdka", + "oxqnf", + "qrkomv", + "snchvjd", + "hptj", + "vogf", + "pgswcn", + "zydr", + "aucpf", + "dmsrvzu", + "ftyjsx", + "hjtezrc", + "etyivwj", + "myqf", + "prcigl", + "hxja", + "zoyj", + "hropwa", + "yzfa", + "rtbwiyk", + "fonpshk", + "kvym", + "qlumb", + "xcraw", + "begzvw", + "suncfp", + "xsnlmry", + "zkwgl", + "ezkh", + "utcpdvk", + "qhjk", + "ogrpik", + "gzujaxt", + "lqan", + "qxblv", + "dzwest", + "gxpbdt", + "mzuax", + "dcxqlfp", + "ixewf", + "rfqnut", + "cbudq", + "rxjkl", + "npral", + "psytrz", + "ofwrnec", + "vkju", + "nqfhjm", + "okyeif", + "ejykgua", + "qjxn", + "rzpbnyf", + "xlbyk", + "isrbl", + "yfsi", + "qisyn", + "lrcitqo", + "mtfi", + "ibjt", + "amnlz", + "dcfrupv", + "qukgsr", + "ezumnlp", + "qvbtw", + "joemd", + "ydozse", + "hcbazmx", + "qfghj", + "ufqbys", + "jcgqwb", + "isqzwyr", + "fvbsgaj", + "tdaszh", + "rudav", + "dfxjbu", + "avxbg", + "prlc", + "bfcpxe", + "gmys", + "rbij", + "nwsl", + "rqcw", + "jnhkb", + "lsxc", + "hgxkpz", + "afkx", + "ojdsr", + "qkiou", + "lmkuea", + "ltmaq", + "dremulp", + "qbaxfwp", + "njkqupd", + "cqavb", + "ondbkrw", + "lugn", + "xoni", + "wnloa", + "arjnsk", + "ohraf", + "nelmoy", + "gzfvlcs", + "ckfivnu", + "dublkox", + "rdem", + "kfwb", + "kdxft", + "jszdtv", + "fproqi", + "kmdgav", + "iyfjo", + "tnug", + "qcrmwse", + "oidzaq", + "jdknc", + "rbiao", + "jdxkg", + "joefphv", + "vxqir", + "hpoy", + "mvrcn", + "hmnwoq", + "tjzdq", + "cpeuj", + "zlbfat", + "dpbzymv", + "pchjbxn", + "kebzxgn", + "guhnrof", + "fvexz", + "zyceur", + "meihlck", + "sgke", + "vrjuy", + "lihx", + "jgrae", + "mwuv", + "ewldb", + "canl", + "xtfswm", + "yabznl", + "vbixlt", + "cajbqze", + "mwnjfby", + "cqfe", + "hafqty", + "xmrlt", + "iwnol", + "abqun", + "crjv", + "hwcf", + "sywogx", + "xewry", + "imce", + "malh", + "pzovub", + "hrus", + "dcnep", + "bzayps", + "esvfa", + "bxtjad", + "mwitgba", + "mhoquir", + "wgpq", + "xdokua", + "zyrwg", + "acov", + "hamsojl", + "xfglspa", + "byidlu", + "ceugbhn", + "qkyzjg", + "reav", + "mbuhov", + "rtqws", + "uqeklr", + "fckp", + "kphtzc", + "xnacp", + "qljdoeu", + "djrfgsp", + "ykmoiu", + "nvtj", + "bgncjwx", + "qckw", + "cbgl", + "qbziths", + "frqgnyj", + "uzrwi", + "gxkyzpl", + "domz", + "hxrjauk", + "poenbu", + "qyzdwcf", + "khbvw", + "cirtnlo", + "drukg", + "czhymua", + "uxsgty", + "mahk", + "zrkbf", + "pbucey", + "udbmzci", + "ohucnfv", + "hpzf", + "fwbcngh", + "bexsq", + "ugzn", + "buvly", + "jdszpg", + "gkbmwnj", + "bsknifz", + "deukbh", + "shkbne", + "jnsbal", + "ulqn", + "ybemhk", + "rnpdtc", + "krjymni", + "uhym", + "bfkrmtu", + "dmzup", + "jaskh", + "dyvkpou", + "ykdczx", + "okfc", + "ekivtmz", + "jode", + "wityh", + "msob", + "lbiaw", + "xyqfalr", + "inhsdm", + "kmjnl", + "hmikue", + "axofqyk", + "kadbtmp", + "cnui", + "rudyli", + "etxrqg", + "iaezdsv", + "xcqdau", + "xsfzpy", + "kdqgym", + "qpvh", + "fnxzc", + "pdwy", + "bjveu", + "gkfu", + "catqzm", + "zdjskv", + "tboilz", + "udha", + "oveszn", + "joykw", + "uhskzm", + "kzef", + "uhbw", + "exaw", + "wuomfa", + "vofkuzh", + "tqvdnfe", + "ajrk", + "qnmsorw", + "nyuv", + "wfpqrlz", + "dracxvi", + "vskzj", + "wsdye", + "epdyxhc", + "qboxucd", + "xouw", + "jrabt", + "xynkojm", + "iuzmql", + "yazwui", + "glsnm", + "qmfuhv", + "snvcz", + "gprktd", + "rxsi", + "jkbu", + "shxq", + "ngoaf", + "etjfbuc", + "pnzrtsw", + "akuvrq", + "sadxz", + "wzdcarg", + "qicaoz", + "xmrewp", + "fsno", + "wiezp", + "glwzk", + "rsifc", + "puetg", + "bhkmtlf", + "yswogc", + "veirjub", + "ceqoyh", + "potjkv", + "wtdl", + "zidt", + "ivra", + "hsdqgib", + "fuwy", + "imlroaq", + "ycovtm", + "eajn", + "ilgskdo", + "wgluyj", + "durk", + "ifym", + "wypvf", + "oakl", + "dbwq", + "smbkieg", + "uiysfp", + "wrfzmai", + "vgnefso", + "luqj", + "pnyowrd", + "woefxpb", + "rikv", + "oqmxltf", + "kmqlyj", + "cxntld", + "fjorye", + "fprve", + "yxvur", + "rifc", + "jixfwyt", + "rmyago", + "vynjo", + "jblaxz", + "bqsju", + "mfajcl", + "wuesm", + "jpxyh", + "korbcd", + "keyfapd", + "hkiey", + "hfxn", + "gykpxw", + "fazp", + "tqvfuze", + "cwesg", + "lxpqa", + "xwhsi", + "kzjhpm", + "goqpa", + "pqfyox", + "gokfrn", + "yjuq", + "gruocns", + "awgt", + "gaour", + "zhgtvjs", + "vrkj", + "pcoj", + "hpxyd", + "jxoc", + "usboj", + "vyato", + "myna", + "ybwek", + "jpark", + "gzqyv", + "xzvdw", + "fmndga", + "yfbm", + "qidk", + "vulhexc", + "tlrbi", + "rhnaeb", + "ugxtm", + "lubqxj", + "togxu", + "lpwyq", + "kdiusvn", + "hmkwadg", + "jfnbg", + "rfpdcq", + "eslza", + "iltcxy", + "iwpbky", + "enpmbc", + "cumy", + "iqohxur", + "obdkeir", + "vzcd", + "xlbm", + "wlnfuj", + "cuynxwm", + "qytn", + "jyxpkn", + "voji", + "jlra", + "grueafo", + "wmjk", + "nfsxyv", + "iaghpdt", + "qemsh", + "ambsk", + "jirqz", + "whcnmef", + "jaxzuk", + "wcyfnl", + "inckv", + "xbmjzk", + "ujhqtmn", + "dfiqkjw", + "agyk", + "adzl", + "ndsx", + "vcnet", + "ekfvwrp", + "zxqgp", + "axsnrep", + "ezobhmk", + "scwfl", + "uqesy", + "gwzu", + "mnhb", + "xuat", + "sdrgw", + "votuci", + "duvrap", + "cxfvehi", + "kihecx", + "ohfriw", + "kmrwql", + "bwdjtz", + "hqjm", + "qybxw", + "ebmf", + "lmcvy", + "djeqsxv", + "qgpwd", + "fbmk", + "bpvac", + "igmq", + "msynuwr", + "ugrjda", + "lsnmro", + "uxopldw", + "rqmfon", + "vumr", + "mrec", + "lpjrevh", + "robdt", + "lbjx", + "uthiz", + "bnmt", + "nabol", + "mbkencw", + "blgyc", + "cpetrd", + "uvrfk", + "mpoxsw", + "ltbrydp", + "wvytolq", + "wiqdp", + "dpktmns", + "qrly", + "ahsgozr", + "wfuo", + "daelyhz", + "zedr", + "shfq", + "rpxnsto", + "rvftqpj", + "akubwly", + "tobm", + "mpdfqhv", + "pbfw", + "ztelyvx", + "negj", + "ypms", + "ioywxe", + "crbipm", + "wtrlci", + "erabcm", + "wiuce", + "pebqn", + "iucz", + "obiey", + "eubvha", + "nlym", + "qncukh", + "udftzk", + "oqgskua", + "oqvw", + "txauegr", + "mzfi", + "pgeqj", + "ayqzweh", + "pair", + "uysgo", + "iahwb", + "ounfdky", + "byuqhzc", + "bgql", + "yxiuak", + "mgprxj", + "esuqifk", + "uhzo", + "eigs", + "vfxe", + "esyc", + "kgzwxm", + "ihkc", + "mnep", + "tcjaql", + "tefo", + "hprd", + "qryelu", + "epvmq", + "ywqa", + "kdwylp", + "tygfdm", + "jznydsu", + "pvko", + "hivz", + "wkdgtr", + "wpkrvgy", + "spmydf", + "jszeowv", + "eqnigpv", + "qpicvwx", + "ngjt", + "iyeo", + "whijdyz", + "qmtreg", + "zyjhdq", + "olqiet", + "yugr", + "lzfoupw", + "rautywd", + "evwbj", + "lbgu", + "musrgtp", + "iwhvmo", + "fqjntya", + "gjcx", + "omva", + "tezj", + "kgavmbq", + "thenx", + "vrpdh", + "ypjuqh", + "azecb", + "rceztfh", + "iemq", + "fzogpi", + "pgyf", + "pfmto", + "xcjthpy", + "jvsdayo", + "dpvbwys", + "sdutmh", + "dkqm", + "bkvlmt", + "uxeip", + "byuqjn", + "qazvfsn", + "rzgwyx", + "losc", + "sigqrk", + "zrbe", + "oxcwh", + "szultvn", + "knlwo", + "hufwd", + "ogxcm", + "hvaq", + "lcogu", + "ftop", + "twej", + "jfnmzi", + "aspg", + "jdoz", + "rcdxt", + "coxb", + "ofjkti", + "vrau", + "muwl", + "rozf", + "gyznqc", + "atbuny", + "bcfj", + "eixlbwk", + "oagzxje", + "ajouv", + "ahtkqfp", + "aeoksnu", + "weil", + "oefplrs", + "mczsuwx", + "jfcwxgl", + "csgpdt", + "ekdn", + "uafcyrb", + "ixop", + "sxwnof", + "hkpg", + "zamtw", + "ilze", + "qnuzcer", + "dxrjgn", + "oswczeu", + "pvdifsa", + "pfja", + "bexsw", + "twgoyc", + "jlubi", + "cbngah", + "etjazfb", + "wqfzts", + "tduxvya", + "nlotdb", + "khjfd", + "oibwqnx", + "oyljg", + "pzkwnc", + "lqaso", + "xzcpaie", + "zoqdeyt", + "xqfr", + "shuzwcv", + "fvyk", + "onml", + "isvmfx", + "zvbaei", + "oclx", + "lstfedi", + "mszt", + "peybm", + "fmsyde", + "pbdlnqj", + "ilvc", + "oyqtk", + "tezju", + "wzyjn", + "mlks", + "nfbs", + "tpuj", + "qmsbikj", + "julzs", + "okbqia", + "osbcj", + "mkpi", + "glhqd", + "fawymcu", + "prxmjya", + "khry", + "ebsg", + "bwcdvg", + "xbnwf", + "bywhpsj", + "iprmju", + "dgitrm", + "pmnfivk", + "vufdxh", + "eimuyk", + "xosbfu", + "unmliqe", + "vnch", + "umfca", + "irfm", + "jchlx", + "fjspo", + "pohe", + "dmybp", + "dvmj", + "giyqc", + "vbxlqgy", + "dycpbr", + "fwomjb", + "qkar", + "iucm", + "ucsye", + "uljk", + "xqyjr", + "akewqi", + "xuybnd", + "ywqbp", + "dqno", + "ihxwes", + "vgapqei", + "vpok", + "xnjv", + "irkg", + "puai", + "akzev", + "yoxfh", + "mdieut", + "vbko", + "bqhlkjx", + "amfes", + "jocpe", + "nkxwlb", + "fwji", + "aebksz", + "kfsiu", + "uidme", + "wbpuoq", + "riody", + "nlvmxzj", + "rwqk", + "wgrbun", + "hkixlrf", + "ziwbsor", + "pxbfth", + "qhrsa", + "tgshmzw", + "wvcdoy", + "aklwbvs", + "pcwjou", + "nmzxwrb", + "qblh", + "dnofabh", + "tirlc", + "mbgxiuf", + "zijaux", + "znfldms", + "yrom", + "sjcf", + "eyjsnf", + "zsiqcn", + "gonujsr", + "uelnx", + "hraev", + "zlcjh", + "fiqu", + "ecod", + "sawzelv", + "nikv", + "zspflnu", + "nmabji", + "pojhwnd", + "hmavdok", + "pclak", + "sxngk", + "foejv", + "hxvmpu", + "wmyalk", + "rqbex", + "hozycn", + "ymvaokd", + "urvq", + "qnruw", + "nmjpcgk", + "mtnszxf", + "gocyb", + "gpmb", + "yxckq", + "hxeinzt", + "suxqz", + "vithaj", + "ezlrfiv", + "mcnax", + "whcry", + "ntgdks", + "dtpyqg", + "bfzjdvt", + "ygio", + "mtpe", + "kuaqr", + "foxl", + "lvkfz", + "hvxdy", + "mzarw", + "qhjvr", + "bpjohal", + "zbklxrv", + "ksjvzae", + "hesvkx", + "fskqu", + "qhkgr", + "uatdx", + "gnfpoz", + "vxklqmc", + "tsyd", + "kbfealc", + "ocpsy", + "slyoq", + "czeg", + "erph", + "kzleybx", + "gzbynk", + "yuze", + "uajbvmx", + "gxhbl", + "ksonmtf", + "xrju", + "qtmuryv", + "wznd", + "wuxbp", + "xuhng", + "oxta", + "ljymdq", + "cuovkyr", + "vchbgl", + "rewjas", + "baut", + "irlkpgy", + "kexblcf", + "ngsrlw", + "lwvgrct", + "biltuhp", + "uizvp", + "lvwq", + "igfxauc", + "bosgdz", + "bwhsa", + "nmcogk", + "iekhczl", + "hqwj", + "ngzk", + "pqzmbyf", + "ldskzn", + "urxlkz", + "cfhw", + "oyxq", + "yked", + "lrzsjv", + "idmbzg", + "cjiebaf", + "olrx", + "athlzi", + "mruoxqt", + "kicgmwx", + "iugrhcj", + "mshnygo", + "buhgay", + "srnwf", + "cwuq", + "fybzwm", + "chxoqry", + "nhpk", + "szug", + "gayolxp", + "bnox", + "hfsye", + "rjhztyl", + "rucqlw", + "cyrlvsx", + "nurmkw", + "hvqo", + "wckpaq", + "heyvx", + "tzpl", + "gnahb", + "qpydehb", + "puiodsb", + "fnxcz", + "dlxmgc", + "noix", + "yifqz", + "ekhxntc", + "uxhzl", + "ulpcob", + "wzqt", + "slhfx", + "yzbexcv", + "bicw", + "wtavuqy", + "otcr", + "bxhnpga", + "urxkgyb", + "oirwu", + "pmbzw", + "fkhu", + "vkjczgm", + "pjklfxm", + "kszvfe", + "tzkwgln", + "ftvuk", + "kjuvrn", + "dasbk", + "zhvwqlg", + "wqbje", + "stmoci", + "ckoig", + "xbgozc", + "movs", + "nwruby", + "pizoexk", + "orzj", + "jztsbvn", + "cpel", + "etbjvr", + "kwoyx", + "qdxfn", + "oyaldnp", + "kcpi", + "fokt", + "ciyopm", + "zadpm", + "diautz", + "zmpg", + "elcvn", + "irksw", + "fmbojc", + "khlu", + "fdvh", + "fbad", + "rpioue", + "vbnysgh", + "eairwk", + "lcxi", + "kyirol", + "rwnq", + "jisgbp", + "dtoulzg", + "skfyhz", + "gdhyvot", + "hsem", + "kyofxm", + "sgihwcb", + "kncg", + "ozekfxv", + "wbpdqj", + "zulb", + "atklcd", + "uverid", + "qxyz", + "tnblj", + "wsapmov", + "cgmdrk", + "djfnsto", + "lnxajsb", + "ykxhzsw", + "jxdeqy", + "irysw", + "kelhnbu", + "oacirkd", + "xkdjp", + "bnal", + "eydbx", + "fksimu", + "kfmz", + "byvfds", + "kyhxul", + "vsjaplw", + "mnfsk", + "focelgn", + "lgqnowm", + "aqpemy", + "dqlxu", + "hiqov", + "xmgo", + "rdnuibv", + "qkac", + "avreib", + "drcft", + "uetdf", + "qwlvcy", + "taubqci", + "rkowy", + "kflqwhj", + "kdpwgs", + "orwm", + "ycamv", + "brozgsj", + "evlbs", + "lzwn", + "hopr", + "ghpydfb", + "jbetzkr", + "rbqx", + "ybumce", + "ofnauk", + "qatjmzg", + "ksyha", + "uawzld", + "nakqwel", + "tgpwlxs", + "qxyh", + "eoph", + "imwszd", + "tjav", + "lqnzi", + "vzkn", + "qsyxigw", + "uzxno", + "epbahgl", + "pujfts", + "zvwol", + "hpqoj", + "esbw", + "urhm", + "hfoa", + "comlv", + "rwenm", + "xhqm", + "hqyzc", + "oxei", + "crxqhw", + "zdnlsxh", + "rvwkc", + "ntdamzc", + "lhxnier", + "rtuldz", + "kahogwe", + "facmnu", + "joxi", + "qvdpsy", + "fwdc", + "mafzl", + "skmdui", + "sybl", + "mkigdw", + "mtxhfc", + "gvpor", + "xctsyej", + "gcwn", + "ynhdjpg", + "rmif", + "yegvb", + "naevtc", + "kqvazi", + "fatuhwq", + "baweivh", + "owgny", + "ichz", + "ckeh", + "myio", + "ohen", + "gtplv", + "vguawz", + "jwaohys", + "xsmwpiy", + "zustgk", + "ujiyqwe", + "gavmino", + "meyca", + "wuqbvr", + "soic", + "qfwyo", + "iuoldmy", + "cihlj", + "lbfntcx", + "trpx", + "orbiyj", + "jdyfi", + "sngubk", + "yojlfi", + "ujkcmqb", + "tclfh", + "umwj", + "hzqfu", + "xzkwgv", + "mxuq", + "wecndjo", + "ozmsap", + "ecrhoj", + "rhxsewa", + "omwjd", + "bjwqyt", + "etzv", + "omztw", + "tgnz", + "mfpjrg", + "mcdqki", + "smzaut", + "mzgltpa", + "moawht", + "lwoj", + "bjyu", + "ipdh", + "efvobr", + "cemnq", + "vhklgm", + "icfxy", + "suqnlf", + "mjfdv", + "nubhgvs", + "zotr", + "mevhr", + "nylsgt", + "rigwtmo", + "dgjn", + "vheao", + "vmtwfos", + "ljot", + "pkgd", + "eoty", + "lyeca", + "evgloq", + "yfkxm", + "fciqo", + "haruyp", + "qnmyjr", + "bsjvkut", + "dhazn", + "ilvps", + "geqr", + "ugsi", + "gypifm", + "jsagtzl", + "qxkmgw", + "oubw", + "snvgk", + "lzpwfn", + "ibgs", + "guslhd", + "pgjaytm", + "mfdxn", + "ptzlhn", + "jfiz", + "syoxe", + "waikfg", + "poscw", + "juarei", + "gubl", + "etcmfv", + "zmjiaqk", + "rqxd", + "dxalotr", + "ikyze", + "zofht", + "dujsyiv", + "stcxl", + "vfzxoj", + "zcdvtbx", + "vfjmtdh", + "tsikwr", + "qkflnz", + "ohcvq", + "uzqsxli", + "ertxanp", + "lzcaojw", + "ztslf", + "mdprl", + "kdytixa", + "veluro", + "vbpdjtn", + "yxbmo", + "ftmbveh", + "bojlvrp", + "vpsodyx", + "pkys", + "fqjdbgo", + "xlunva", + "wgbxud", + "ytkih", + "csvby", + "nbzy", + "ecqft", + "fmvsjhq", + "lkvarhf", + "obgei", + "tvzucin", + "mlqx", + "qzaixr", + "enwm", + "gvntfcs", + "wurpktv", + "cutqsxy", + "xvldtb", + "egnz", + "turexgo", + "czxq", + "hrztbq", + "wcmenx", + "rgsiuz", + "cpan", + "pkvrc", + "rchl", + "lmsnah", + "pelzgn", + "gkhy", + "jaxvqd", + "tuzo", + "pzyus", + "dbawzkj", + "jzbtn", + "uxlow", + "solvgq", + "lzmb", + "fjbdph", + "etvh", + "ogeuf", + "pobmx", + "ysqzvb", + "vzciqn", + "vyhfxku", + "cdhqpby", + "aucdl", + "vewu", + "yihuc", + "qbfix", + "lrxm", + "ovucgi", + "uygm", + "lbzptf", + "mlqhj", + "csmlt", + "lgfu", + "xfkwtg", + "plfdwb", + "zapjm", + "cqkl", + "wbxd", + "cvwrx", + "zltsx", + "tdkhir", + "azvj", + "ipslvzr", + "kqiba", + "ulnf", + "drzcm", + "mvqt", + "pteghzb", + "gleap", + "lphqacm", + "joil", + "ytvou", + "awyk", + "itqrds", + "rvmgk", + "msnr", + "cvotfhn", + "avybij", + "khxigfe", + "dsuveol", + "jzsrlo", + "qnvs", + "flkepg", + "gylxbs", + "puwl", + "poyuvze", + "jvxka", + "jckmduz", + "aqrf", + "mngf", + "uxwmltd", + "ropq", + "muivbf", + "ecqf", + "qyde", + "ytau", + "kwnqx", + "ecuin", + "rgijdq", + "kygu", + "izhpvd", + "sqzcwv", + "wexdq", + "ohwlq", + "pjcl", + "rvtyol", + "lhojfmw", + "ruilag", + "qcxiju", + "ptuzdmg", + "bahx", + "tcqjrz", + "vhlyjq", + "ymwh", + "pjmdwz", + "lnsc", + "cdbzt", + "ucivpwk", + "ntsvxi", + "cajxhnq", + "siwjqae", + "gmyfi", + "srbdjf", + "nocjayf", + "dkluhir", + "tihn", + "jlpbtu", + "rfzsg", + "smqzoa", + "bnlxs", + "pvxt", + "hvglu", + "jcgvqah", + "icmrte", + "txefpdm", + "kcoqdjv", + "ghoufrp", + "juln", + "ixmodc", + "xsyrla", + "wdtlhn", + "ihrsxa", + "irdo", + "ehfcg", + "lemow", + "vckzo", + "ukigf", + "yrwpv", + "thliok", + "nokeiv", + "gyjatwh", + "hltwxoc", + "inxlrdg", + "bxkviu", + "ncbetr", + "lsitwj", + "obacp", + "zbqginj", + "tgbjclq", + "xiepm", + "bkatmyj", + "jkdiq", + "outyxkr", + "wvkgl", + "foldk", + "smqaelk", + "xrkl", + "fwvlk", + "gpxiqej", + "kmpi", + "laqxt", + "wstp", + "nkyo", + "grizlv", + "bhayr", + "jdzoq", + "healr", + "csehg", + "qkildtm", + "jlrm", + "efhxl", + "rdbph", + "iqmxsn", + "zedyvmh", + "hiumxw", + "dnjqea", + "sgqzr", + "pjmd", + "gsqev", + "cwbuhfl", + "fdngsa", + "pncuavy", + "tfjniu", + "jvgw", + "xdhwm", + "zwal", + "xadr", + "rqvl", + "plfqzc", + "hniaupt", + "kwvqdzp", + "wjpek", + "zxkacf", + "hqiz", + "byxorw", + "hovuqi", + "xirtcm", + "nmyqle", + "mudvrhi", + "agwulj", + "fgwk", + "rjfkxwa", + "imguy", + "gsojcv", + "ubxg", + "ykqabom", + "yzavnh", + "kyabxnp", + "jlos", + "blnr", + "mdasqu", + "zhnfpuv", + "gbfpdr", + "ryvswxh", + "gqfnbat", + "asjutl", + "bnsyrka", + "nczmow", + "lvug", + "niqs", + "aoymebr", + "gtoprx", + "veisqru", + "btav", + "huks", + "vhxa", + "bkrpihs", + "oxfe", + "sdytuil", + "zexat", + "qdbwaic", + "pzjk", + "qlwnf", + "payqn", + "mhtykx", + "wzjsp", + "ivfrhkl", + "jgvslqc", + "ornjqx", + "arhktcd", + "etosiw", + "rotskfp", + "ouxa", + "ubonfc", + "efnvalw", + "gxvbc", + "fzwbdup", + "ndikctp", + "ydmf", + "qdlgy", + "khzxu", + "hcjgvr", + "wuhbvk", + "stbyla", + "ornusbz", + "ltxiqsf", + "dgmtc", + "vfnmqxd", + "jwfsg", + "vxzk", + "vaju", + "uzidj", + "ojmxdir", + "qailfe", + "rmsxf", + "cbmutvg", + "fscguli", + "xaun", + "iemjyx", + "rpzdu", + "hmsvxka", + "tuohi", + "cidhlk", + "npqwj", + "pocjqy", + "ikowpy", + "oqidsvy", + "jmhtsk", + "mjryf", + "ylsrwkb", + "yjge", + "miqrj", + "nxvzu", + "ckqhim", + "clxrw", + "stibu", + "obutgxy", + "dlcr", + "sbatcv", + "qnwyeo", + "vekd", + "weca", + "gfchsqb", + "hiwas", + "pefsmc", + "tjqyhb", + "ylge", + "jnyeu", + "nrum", + "oglmq", + "erbxqn", + "qkzohlm", + "kvexyf", + "kgarh", + "eudrqf", + "ykdl", + "wong", + "iszf", + "uwiysdq", + "gptnzxs", + "krba", + "ktmc", + "fqajihb", + "priz", + "izukc", + "tdirfkb", + "nbeiq", + "nokvf", + "xfbdjw", + "ptwja", + "idxwo", + "rzlybdp", + "aekx", + "syzeg", + "necwzi", + "vkli", + "wnomelc", + "fsoe", + "afgx", + "rydeb", + "agnekc", + "ktlwqum", + "ecaopy", + "jxhtlp", + "nelh", + "gwdeo", + "thbr", + "uljnb", + "ztjghk", + "dqshm", + "ievxwyn", + "uohisz", + "sajbn", + "mjhilkf", + "wfcnua", + "wbztyua", + "qths", + "yljiqxh", + "zqbpki", + "csut", + "fclyrp", + "sgzw", + "owefx", + "aenvqpl", + "zntulp", + "tupb", + "gqwz", + "tzaym", + "umpcwt", + "svdxgyf", + "mrzn", + "qcjibew", + "ulvwor", + "biyngd", + "dwyj", + "frnp", + "kjyvxpg", + "ukslqp", + "rljmvqa", + "zidsbvu", + "pkevrhb", + "xval", + "efxab", + "zkpmw", + "qcshbi", + "jbywon", + "zqrjmsv", + "ycsdx", + "usbcig", + "tyuz", + "cvxeof", + "oqbz", + "atunvip", + "stcr", + "qlafexb", + "hdyjo", + "onzm", + "tomu", + "nktvy", + "vjuotk", + "cjtn", + "zxoudvm", + "uqancl", + "rqjsycf", + "tpkzcgy", + "gfdeku", + "jxkta", + "sfhqg", + "udtkz", + "gewpob", + "lrvbwf", + "dbgph", + "nhgpxw", + "kygec", + "viogu", + "imqazyr", + "nuyp", + "rbhp", + "iayg", + "sypz", + "hdfv", + "okhb", + "cuegb", + "eijrnq", + "qvpuihj", + "bpze", + "lhvcqaj", + "tbqni", + "iadl", + "xjpydqe", + "gmkbn", + "hlgwqk", + "cubtr", + "jmoplbg", + "ckqv", + "htdc", + "lfvz", + "kwca", + "kczvo", + "boayf", + "ymnlwr", + "hdvfa", + "fwmtghd", + "vzleh", + "wzpenqd", + "bzxhanr", + "wngme", + "dmpitqs", + "ezfuhj", + "ulqcdim", + "iwxncd", + "ynovwa", + "wmavsr", + "yiksn", + "mouzjd", + "zitrwo", + "polcyua", + "zulqxs", + "arqw", + "jrpw", + "oejprhu", + "sotjpv", + "vhmql", + "dlpwy", + "glhbyqu", + "swel", + "rlkicw", + "awco", + "djbgm", + "zkigq", + "tbsfje", + "yogkbsz", + "fgeot", + "cynox", + "jrnsakt", + "wvopiuz", + "dtur", + "buyw", + "cnpe", + "vqio", + "cjszv", + "gkpnls", + "dnlr", + "avducy", + "vdhmlu", + "qlhw", + "brwolg", + "izdt", + "tnmei", + "oyjba", + "oxlzudy", + "igqeuxl", + "eqnv", + "rgwm", + "sztfc", + "fbsakhp", + "ahwqux", + "hclpuqa", + "ojeirs", + "jchuai", + "qpbvht", + "nqfj", + "jdclq", + "fxpm", + "jzxods", + "tqypmji", + "oiwz", + "apry", + "otpz", + "lxbiz", + "cokngsq", + "aihcg", + "jmydz", + "xaymjpr", + "cpglzr", + "kdtsrw", + "xevcqdt", + "qlht", + "kxhu", + "caxe", + "zfxrjav", + "mptu", + "sirfp", + "wlmpax", + "kiml", + "ymdbxt", + "ryoegw", + "rnxkhe", + "inoef", + "mrnhojl", + "yrkugh", + "bnxi", + "dfihl", + "brltm", + "ceydh", + "acqust", + "aslm", + "sjkb", + "yptfxv", + "awbkij", + "xztmsdw", + "xpsdmtw", + "vrem", + "enrbwly", + "yduotx", + "wcxs", + "tsgypw", + "tseym", + "rgipq", + "mgkqi", + "dfkgx", + "syun", + "wyghuev", + "yrmdh", + "ldua", + "pugim", + "zekfuy", + "eakhtw", + "ogpj", + "hptugbz", + "irlcby", + "wgqiyn", + "gosiet", + "zpqctrx", + "mdpuwq", + "fldi", + "krzlevc", + "copymv", + "rgzoul", + "tsxlv", + "botn", + "vcupnb", + "hcsgvix", + "fuprh", + "veqstua", + "rhempx", + "hrnxbou", + "ecbd", + "xohba", + "msgaqdx", + "eyjlwva", + "sorumgz", + "ajih", + "dmlnevo", + "awvzfj", + "swlxcdg", + "nhauey", + "iarv", + "kfdsq", + "xlbw", + "lseomdi", + "zvuhln", + "wqplsi", + "dbhfea", + "taigjw", + "ziypfo", + "vtwi", + "exfntp", + "qlynx", + "rmtnqj", + "ncbvixe", + "glkwce", + "ahiqoyx", + "wpgovnk", + "upxjd", + "zuhjx", + "codqg", + "daveihf", + "akun", + "nupc", + "qxijyr", + "qmrk", + "dpob", + "lwoat", + "onjyre", + "rckv", + "qnspiau", + "wdat", + "vurjycg", + "oifcnr", + "kxmq", + "evmsf", + "qhewn", + "rgyw", + "zydfp", + "lmjtwk", + "xlyja", + "dgrukop", + "zljygk", + "tmhkix", + "fmvual", + "ciutr", + "cbxs", + "njiax", + "vcnwbij", + "fzoymv", + "rxksi", + "cpaw", + "falvyn", + "riba", + "iqhuvlc", + "nhjus", + "ihun", + "wfbm", + "akngsq", + "jkyr", + "jpnf", + "gvmyos", + "eaihlky", + "iemfnkb", + "ovzxkwn", + "kqhd", + "otpxykj", + "ktyesmw", + "magd", + "rsyj", + "byxqor", + "rcxnlwe", + "pmfl", + "plyew", + "aqfmzrc", + "sbxgpt", + "tpid", + "iezfxvd", + "erum", + "inzedl", + "rvuesc", + "xzrqlm", + "noebix", + "qoerzgd", + "aqyfh", + "lxeoc", + "neph", + "gxetlfk", + "jhcvuln", + "nvrxwde", + "xhwzm", + "gbrhwv", + "xgoc", + "wdlaju", + "hgjc", + "hxgy", + "caotlhy", + "rwjqhcu", + "vloxc", + "emarksx", + "kucbdq", + "wdscti", + "wksdpxl", + "vntqrms", + "yxmrtoq", + "wylnarx", + "gbqrns", + "agufnk", + "wvyle", + "sdjyewl", + "xbyaljq", + "ucbsflm", + "jqkv", + "vbepimq", + "smpxevk", + "izplq", + "rjctpy", + "nzbtyq", + "zqtx", + "mhfqlkb", + "urol", + "qkztax", + "fxew", + "fitko", + "cjprn", + "mgfs", + "jowbtge", + "dsepjcv", + "nqirbcg", + "kjcdzn", + "ergcaip", + "ahlcw", + "fwckzsv", + "npevxui", + "efhsoj", + "iyradh", + "ourh", + "eokyqf", + "spau", + "ifndxma", + "semcd", + "fknh", + "njyi", + "ivthwqr", + "muvi", + "ojmrtk", + "qawdoup", + "pxowyam", + "qiocema", + "mfcv", + "fiers", + "wlrf", + "dgthrjn", + "xtnap", + "vpdo", + "jmuvaop", + "pxnwt", + "vebkqlo", + "pxyzo", + "moiakh", + "xdrqtyb", + "cged", + "txhqwfv", + "jldtq", + "elqh", + "fzpnsi", + "ydhgu", + "qdgbxe", + "kldt", + "cqujkav", + "vtlepzn", + "rjvudp", + "qelrnjp", + "imls", + "mopvk", + "gqvumiw", + "qnuihyl", + "rlqoju", + "fkwiscv", + "sqvn", + "vmkrb", + "qvnfwey", + "fhkgv", + "skbjvx", + "caphxnr", + "ldzwrut", + "nmvtx", + "edjt", + "qdajh", + "kcrm", + "qbvwz", + "gwemqc", + "cjmdg", + "cvai", + "zvijc", + "abslf", + "xvket", + "hecurn", + "hnfs", + "gxhoyfa", + "ztfwx", + "setof", + "swlt", + "dugyfil", + "goal", + "voeytwi", + "oenq", + "rsplz", + "aqcp", + "pzyikmw", + "plcj", + "bupvk", + "trxa", + "zhsx", + "mocbjsa", + "nvcwe", + "vnzekfy", + "ylieo", + "lmqgf", + "wfycx", + "femvu", + "borwg", + "udrtg", + "mcnepqg", + "zrlfhe", + "bqxikdp", + "vbcpidr", + "itexz", + "vaztuhx", + "voiy", + "jhgkrxo", + "zufe", + "rjds", + "lbxq", + "hnuf", + "uoehcsn", + "vudoz", + "wmyges", + "rbdpxos", + "acyso", + "fghlbk", + "rwkqpl", + "xfmkcp", + "xfuhzc", + "itzas", + "usnlbjy", + "hlamo", + "gibokct", + "jqkmvwe", + "pzjwoet", + "udtaopf", + "ovbgpxa", + "harcfm", + "urhialj", + "fuseo", + "gcmhilo", + "shelabq", + "kpmt", + "bwteik", + "xgqhwm", + "nratvj", + "jqksdzy", + "emur", + "koibu", + "utjrn", + "pkybuh", + "nzquwa", + "fynr", + "sdab", + "dnaimzc", + "jcezfg", + "rhimbz", + "vihumo", + "fdaosy", + "vqcm", + "eagwjvi", + "uleydrs", + "ntbfld", + "hceuq", + "hynmx", + "ibhx", + "lucvna", + "ihmwk", + "afur", + "widkgvt", + "zstoi", + "odcf", + "qzkfyjl", + "cjlsh", + "ztcfxa", + "rgcymdq", + "vkcmgul", + "tzvmfy", + "qtmzkl", + "pbjsx", + "xqwg", + "mbsj", + "yuikdnp", + "oryxvc", + "zwijkx", + "pdfc", + "ykui", + "gskeloa", + "rvjige", + "gmrxsa", + "nvowx", + "hoknv", + "xqzpyvm", + "pqhavl", + "ovzwsmp", + "fynoi", + "euyofi", + "xeridhk", + "kolpbe", + "yzqvwij", + "xguhlc", + "gakovj", + "mthvdyp", + "tldv", + "iejath", + "otkg", + "vzxor", + "onqyvr", + "bordv", + "yhgwf", + "iuwblx", + "xcrjfsh", + "eytg", + "ctzm", + "pvtdla", + "mqkhvuf", + "vtnph", + "hcmg", + "ckurxdw", + "jnpgr", + "mdayre", + "ctjuwre", + "tnrzem", + "vyuwbh", + "qsxmob", + "raxzvq", + "xhgwvoc", + "duhw", + "xonvp", + "lahecnw", + "okngx", + "axdchu", + "wgoiqj", + "knhm", + "sxfwkhz", + "mhzt", + "nxtbyfd", + "unvqg", + "fjmdw", + "mqcjv", + "rgpwb", + "okegdh", + "huqwonx", + "mhybgj", + "uqvyep", + "eygj", + "vcfkbmy", + "cdazs", + "hzlscf", + "lqynoj", + "uecgj", + "zhwcx", + "akhbf", + "hinujqz", + "tduzeac", + "zevt", + "xmjtbla", + "xjoblt", + "gnhi", + "mbgnkyt", + "agyl", + "jwsu", + "klcte", + "uhsxnq", + "qfmhz", + "nmgdwc", + "msql", + "ykci", + "jmkvzoi", + "egpx", + "jkvw", + "ycrqx", + "npxiazr", + "squdci", + "huib", + "eqja", + "ycbraig", + "jive", + "nvrbkdg", + "rkev", + "othlmg", + "oqrkx", + "xgzmuq", + "yuewpbz", + "ixwgdj", + "ojni", + "dfmvuo", + "asiwb", + "srct", + "bakzguw", + "tilpfk", + "igwhto", + "ptlz", + "tazeq", + "bnytvs", + "brnokae", + "uoysiwa", + "wjdgr", + "derswz", + "hwav", + "guynh", + "mvrojap", + "ebklwx", + "feyvqd", + "kuqvods", + "njaw", + "afqbn", + "efjvn", + "jxqtzcd", + "sntmwv", + "qesug", + "kgjw", + "ufjhcdp", + "sdkpge", + "rqnvyak", + "adtez", + "zqhs", + "rubec", + "gohv", + "xwjvc", + "pkit", + "nzvks", + "nctr", + "zrxn", + "fglp", + "ibhqe", + "qhtks", + "bnqzdi", + "ohmv", + "pcrfkwi", + "dzoy", + "nypz", + "tuqkhry", + "qzetfup", + "dokbrl", + "hsmvagx", + "zwgoh", + "ztrl", + "dshzt", + "hcgxumt", + "ejhodq", + "ecdlwu", + "smfwih", + "ebktmwh", + "kgxewby", + "oxmjf", + "wcaksxj", + "wulcn", + "avdibn", + "zoemf", + "xzlkf", + "pvemxco", + "sfmcgup", + "jhwl", + "yxdtokv", + "knbga", + "dmgbhu", + "trnycq", + "fwrnieu", + "waiv", + "dgrul", + "xpvd", + "zkhmgdt", + "nvmw", + "ijoqsl", + "kzrjo", + "qadn", + "gbfdkp", + "vehqbl", + "aobgv", + "dyzbuv", + "wrdnybi", + "xwpym", + "lgwcn", + "brqys", + "emsb", + "itxse", + "mekth", + "rmaeko", + "pcsnv", + "ibekcq", + "edlfmu", + "dyth", + "qkodav", + "hgjc", + "lqasrxh", + "pxuirka", + "pudqxz", + "pvnz", + "uplq", + "qztjrhe", + "wirvqgj", + "tgfc", + "wnfbdh", + "ndljz", + "ukrgpw", + "pxid", + "ycjrbw", + "yfdwg", + "njmgxtl", + "zigj", + "vwti", + "ezwyti", + "xjgl", + "vucy", + "xpuw", + "vafo", + "nycs", + "pklqb", + "frsbokx", + "vlasu", + "aiwb", + "wmqodg", + "qmghfc", + "uwmfdo", + "irmld", + "azxho", + "jbfy", + "qunyr", + "navmpw", + "hduxcjs", + "cuitbhz", + "kpxgje", + "zvleaix", + "vmjftys", + "utxone", + "ebqrvh", + "rgety", + "tqvra", + "fmad", + "bplt", + "dlnizs", + "snibrw", + "iepbzmo", + "slnx", + "vtzh", + "vzsd", + "kctwz", + "ndcp", + "gtlx", + "mghv", + "cekrpa", + "kvdtxb", + "nwpmyd", + "oirwt", + "lgmjp", + "fxwpqit", + "sygecq", + "uqblay", + "pcht", + "upgqoc", + "etqhm", + "dvntp", + "qeptfj", + "ckizvx", + "wugh", + "vwljbyq", + "vyscna", + "qcvyri", + "chxzjvf", + "ysuha", + "zroyijd", + "qrsugln", + "zgbrsew", + "image", + "ztkimu", + "iwso", + "bhxqi", + "rbpklaf", + "rpfcu", + "uhpzmrt", + "cqejo", + "nbkjzh", + "gtcsw", + "bsrinc", + "rxhpmei", + "vbdou", + "moadzg", + "bnvja", + "gqsyvpl", + "dwtk", + "rlncxiw", + "cbtfzsm", + "svtyajb", + "jtor", + "kgiawo", + "vdatmgw", + "kvralcb", + "pcuejxn", + "pfha", + "dflq", + "jvurlm", + "nrvh", + "acvlze", + "nxeo", + "pdukf", + "rphqmua", + "ojdibay", + "cnzmig", + "ybumavn", + "qhla", + "zxqgi", + "cgvsu", + "prunx", + "zrgd", + "yznrb", + "idskpv", + "ljubc", + "cjvp", + "bmqjl", + "zrvqmkt", + "bclnvxr", + "mvwux", + "lnaidqk", + "afzilge", + "aqliom", + "jyzvsm", + "lfzyt", + "toid", + "grnehvz", + "jtcqpk", + "bnxeoft", + "pfnedz", + "nibf", + "mvoybrh", + "ufles", + "mblujf", + "ioslch", + "tnbqfr", + "aedoc", + "vqgh", + "drqzgo", + "cdnfmb", + "jhsi", + "kpyl", + "bzxh", + "utrpzc", + "fhlzp", + "npkrtx", + "bvqwgrz", + "foplim", + "tzxqpuv", + "blya", + "yeazwm", + "rqkvgoj", + "dultj", + "kbvhoj", + "invtmh", + "mawp", + "emhx", + "nymgkp", + "mhlvn", + "nxtau", + "mspkhwv", + "voyf", + "raghfye", + "tpeqghz", + "wolu", + "kqlj", + "jpxs", + "ihynlbj", + "ixpof", + "neomjy", + "luzr", + "slpafn", + "aefmc", + "fapzlsy", + "btlqhw", + "rfqen", + "uftl", + "cozjnd", + "lrym", + "zcuo", + "oscqi", + "snhozmw", + "cbnrx", + "sdgjznv", + "vhena", + "mztqxec", + "iqjyvn", + "xkvhtr", + "sipwdxz", + "xsvinyu", + "haixewc", + "byrkf", + "kdqn", + "mrxu", + "pthucvn", + "yilju", + "ksne", + "kflum", + "phqmlg", + "spkjofd", + "jshpuf", + "xdzl", + "kbghjm", + "xgpcsdk", + "odcra", + "hgioa", + "fpxsno", + "iyjnkop", + "grwlkth", + "lgmjw", + "bqmud", + "vlsea", + "ljfu", + "ihxmf", + "whgtv", + "dfskv", + "pjtsr", + "dwahug", + "rkeyu", + "fzpsrx", + "peast", + "shgfqk", + "guvlby", + "isble", + "qgezw", + "fhdxj", + "xmbcz", + "yjqbxw", + "gfql", + "pjvkd", + "xbylud", + "qmlda", + "nhqjx", + "wrpxsli", + "sdqhz", + "hymbex", + "elqorh", + "znvcd", + "jqvlz", + "teom", + "riboc", + "ahcrgq", + "sjqwnf", + "dpjvhwx", + "asgj", + "ogwvpl", + "tadb", + "qvkdy", + "smvun", + "dxwqler", + "dnpba", + "eujbn", + "dwosp", + "icjg", + "wxsm", + "olidty", + "htybvw", + "ntlyhj", + "mwca", + "tpiesyc", + "catgij", + "eywcrd", + "bdjrqp", + "xilm", + "foglewq", + "fpoth", + "bfrx", + "uacsfqr", + "jsqmn", + "ofsvqy", + "dlwrpo", + "pfrykm", + "xdkq", + "jzbn", + "yxqgvd", + "xjtlu", + "kitl", + "ksmacx", + "wyzjt", + "hdbgmi", + "tfbmcl", + "vathcfi", + "lmwi", + "olzrnv", + "fxnzh", + "jybude", + "sficol", + "mshay", + "qyftx", + "dywcuvz", + "hmbal", + "fyvs", + "sgxlnm", + "gybfl", + "perzsug", + "nphe", + "sgcbx", + "ngopilm", + "qbmc", + "gxfc", + "xvmidjy", + "rhbu", + "makbzuw", + "yankep", + "qejbr", + "lzjvgr", + "tbhm", + "igou", + "sbicv", + "ghombr", + "pyoj", + "hvgpou", + "gclkv", + "nbrkml", + "zdhr", + "mdtxu", + "zvpfyg", + "ythk", + "tspg", + "foxskzm", + "emjw", + "dglme", + "bzrp", + "vizy", + "vygc", + "qdznhl", + "slhqkw", + "btvwiy", + "nybrp", + "ecypxk", + "rxhla", + "gdoz", + "ejtfr", + "tche", + "zjti", + "vamerqg", + "qkdfv", + "motafhk", + "yetnh", + "rwpkb", + "wxhduib", + "cpynws", + "vanf", + "bgwu", + "kzertu", + "wdczs", + "sacbjy", + "lcie", + "glphn", + "lgrnv", + "bgjvwit", + "qzsjkf", + "vezxapl", + "huwgni", + "vbnhqi", + "fhyuxo", + "vphx", + "okjzgpc", + "ubgpml", + "dbpmws", + "yuos", + "ajitv", + "xnuyq", + "cgjotq", + "timuje", + "glebhc", + "tspjf", + "bsonrlw", + "elbawih", + "foaub", + "nghvm", + "jcynzx", + "qxacupw", + "qfhmd", + "irmqe", + "jlwdc", + "iuxywa", + "xqsg", + "pubar", + "bary", + "vbsiaqw", + "qbvk", + "xbztvif", + "yiqbnf", + "dolex", + "fuolxkp", + "favz", + "zdvkf", + "bynws", + "dlouj", + "vozsxmg", + "cnkfwd", + "fcse", + "awulgr", + "abruq", + "qhja", + "imngf", + "huga", + "svonz", + "hfxmy", + "vjlzwu", + "irkcmp", + "yldqoj", + "xtoy", + "cruxe", + "ngwx", + "ijrdx", + "mtrbs", + "agufz", + "ycxazkn", + "mxhjb", + "pxmwz", + "skitlze", + "tnugsyz", + "sfyam", + "pzfnrky", + "cxizmk", + "zkgedm", + "ubvid", + "cmfk", + "uayf", + "cafd", + "lgbx", + "lbsy", + "clpthb", + "zyfjph", + "cgjplz", + "pdfir", + "bipq", + "batfvzk", + "xsqu", + "xkucnbo", + "vkhozmp", + "smegf", + "twjeufo", + "svlpx", + "ltnde", + "ychuz", + "ifqp", + "jxagt", + "tgxsul", + "owacyv", + "xbkfzcw", + "shcbmn", + "hvxowgy", + "rlte", + "pheaf", + "xmled", + "ercdo", + "mhpng", + "hsajk", + "sbni", + "mfhs", + "lrvi", + "kvtobyx", + "fpqyjei", + "pknglt", + "veqsyf", + "bunfa", + "vpje", + "bajqyn", + "vuow", + "burc", + "bwquhzm", + "lonsf", + "ptvuj", + "lwbrkn", + "yjfbzvx", + "ycpm", + "xwal", + "shpaco", + "iaor", + "gtqu", + "carj", + "shmvpg", + "xbwt", + "ajup", + "klwybq", + "hdox", + "ytrcqn", + "mqkgar", + "jecpdrw", + "wqngb", + "kitsaer", + "zotlqm", + "dgcjo", + "sbad", + "jhsqkr", + "ujzwix", + "ulkdc", + "srlemg", + "mucqiho", + "tlnvgjc", + "ifcdzbx", + "aulrh", + "tekw", + "bskn", + "xjkaosl", + "pwqfn", + "ltdq", + "ewxl", + "ovcykn", + "slzj", + "pouvrt", + "pwjliz", + "nudtvg", + "gxcbjzt", + "pcqlrg", + "xhkztm", + "phel", + "sbxv", + "xamz", + "gueaw", + "nths", + "zmwte", + "ojvdcl", + "jtge", + "mqcewi", + "slzxg", + "yhraxdw", + "vocuwb", + "dxapyz", + "hrvt", + "pnbck", + "krbdag", + "kbcxfzd", + "runz", + "gubofa", + "jzgbqe", + "rtlpjw", + "poxen", + "tica", + "qdzpmox", + "konb", + "ykfsnrj", + "ipuwsx", + "nryzbak", + "lsuwg", + "fnsty", + "kvziln", + "mjak", + "svlfah", + "posfh", + "wspfd", + "rkxzdfb", + "lxzu", + "ndqhj", + "awyjg", + "efmv", + "knfqg", + "gvjsey", + "yulwa", + "heudxf", + "fanbgd", + "vsid", + "pjzt", + "updxein", + "nhpclzw", + "kwsrvdo", + "zjepdl", + "gsfvjk", + "mpuey", + "uqxt", + "nslvxwj", + "albgcw", + "awnvi", + "wfagh", + "nvcowha", + "bdsntop", + "osiw", + "xdigch", + "fvyxa", + "qpzex", + "fsuvkz", + "yhnejpg", + "qfvhbo", + "grsfdil", + "ohrpfy", + "qpby", + "kheoft", + "hyecuw", + "bhol", + "lqpfvc", + "xroequn", + "bmhyig", + "liea", + "mwrzo", + "nlhjqi", + "biozhm", + "hezxu", + "uiyzsjc", + "pijqlac", + "tbdcw", + "yelfgm", + "gaxcie", + "xvueclf", + "zrqak", + "jirly", + "uwxjiy", + "ycxvw", + "wiysh", + "dkpmue", + "wxzocry", + "xjryck", + "eovg", + "izdvgnx", + "wulkf", + "tens", + "deqrusb", + "qwmbage", + "heawot", + "taoufr", + "emcuih", + "pvqacsz", + "gownyvm", + "rugt", + "jhfg", + "mnogk", + "nmyurg", + "zxwhft", + "qmfngxe", + "exluzn", + "ezlomns", + "qhocsvm", + "nqvze", + "xyjd", + "pzvkmbj", + "pmcnu", + "nthid", + "rzytv", + "eohqkpl", + "dbwny", + "eygus", + "fjcwq", + "suryxwt", + "xviwsb", + "fzhikbu", + "qzpjv", + "gofrtn", + "znylh", + "vsxbkhg", + "sfmdort", + "xzsqbey", + "rmqxg", + "qspdeji", + "gpolbmu", + "yxkgnds", + "lvmquz", + "xkrzd", + "cnhf", + "ivzt", + "ufxtwpy", + "wuxj", + "oiph", + "codfqe", + "fqeu", + "aptv", + "vfxruyi", + "dfzbeyo", + "ndxpe", + "yegz", + "ipextnh", + "xoepf", + "umhzi", + "osxni", + "laqic", + "wfzqgux", + "arxmgyo", + "udsvq", + "dwfn", + "fswjd", + "qbahoj", + "zxats", + "xqrghfu", + "zgxymp", + "upmyen", + "xluybkm", + "efks", + "jokwcnq", + "zjoh", + "toldqp", + "sbyko", + "pbur", + "dhvpo", + "vpciz", + "glcz", + "zyafkgp", + "nrkoci", + "jbewpqy", + "kesqyip", + "ygptcmd", + "pyhjxoc", + "vkztbo", + "acxfy", + "oabiv", + "aomr", + "stcle", + "lqjui", + "bpgmk", + "nryie", + "zgytdo", + "kxydlja", + "dlzpy", + "sguebc", + "ykgdjv", + "jgpz", + "fapeykq", + "odxt", + "qcxvjrn", + "absm", + "vqzj", + "ctay", + "nemfaot", + "knipfwe", + "yfow", + "aerkh", + "iocqthw", + "aqbvwkx", + "gpzfwr", + "iesv", + "nvsorm", + "dehvxt", + "ykmpqwo", + "bgperil", + "gfurt", + "tzkhbu", + "kyrbal", + "hxku", + "uribfv", + "ovrabz", + "varx", + "xayin", + "zakcr", + "tqvebj", + "vegcwby", + "quiwdfj", + "tuzmpyd", + "hrkgup", + "ryqps", + "knxgw", + "jbls", + "tlgsve", + "cqgwt", + "wfqvd", + "oytdv", + "xactkos", + "sgnoej", + "kfru", + "kxhosa", + "xrqkly", + "elkn", + "tbjy", + "ryjpus", + "zmta", + "dhnt", + "xbqs", + "xglsnf", + "ngidwrz", + "teayx", + "egkv", + "cfbsyqr", + "lnsdo", + "szwu", + "yazhp", + "xieyl", + "lvdieqt", + "bmfcgnu", + "qdxgbc", + "iftd", + "vqrns", + "dgej", + "lenfcsj", + "uvjt", + "fbajxe", + "dfzmvh", + "aqwy", + "nwbzhet", + "blpo", + "dqtl", + "jcwvk", + "yqwire", + "hbfqglo", + "bgtjfxs", + "itljqvg", + "qyjkgt", + "mvfcjob", + "pxhyr", + "irvye", + "irvemnf", + "pzou", + "pewd", + "icylpjb", + "eirnka", + "hvea", + "xujfrv", + "yhvljn", + "ajwm", + "stbv", + "lcmyxpr", + "bpvm", + "ryie", + "zmsqd", + "abxoiu", + "atwrdbs", + "ihlbwku", + "ksvin", + "uhvix", + "whjf", + "endrl", + "qobder", + "ckrmb", + "xvmiudh", + "cpsuq", + "ovcjsi", + "cgsiz", + "nlradwo", + "pnxkjhd", + "ldcta", + "rqykmp", + "wzubr", + "jtzcu", + "gfiuhl", + "wyiq", + "ietnpfa", + "gmzy", + "pbtqzf", + "nujsk", + "pwiot", + "cnuw", + "wyfqbun", + "kntim", + "cizsrpl", + "kqino", + "jfyps", + "dftwz", + "jexdnts", + "amuw", + "hywzo", + "uqez", + "eqyca", + "wtfglsk", + "uvmbef", + "rujbokv", + "njty", + "dqgfle", + "yjsq", + "yrmlvw", + "spewl", + "ulngc", + "gatirf", + "sqtgo", + "wryshu", + "vrcbasp", + "tzpsvdc", + "ahukd", + "xcbfn", + "hzbj", + "ywkea", + "roie", + "ivuho", + "shtpn", + "lcvfapn", + "biouqv", + "zrml", + "rqijwzv", + "qrdgxh", + "mbigar", + "abtuqdz", + "bldjmq", + "ehxclkq", + "flpeq", + "luzod", + "kphu", + "tluzf", + "kwjqc", + "kulc", + "asnzf", + "itjrxvn", + "mrvxauy", + "gxila", + "dbizaps", + "zyug", + "tinfk", + "svfqjo", + "qcryuw", + "tfkjgdr", + "slxatyj", + "ilpfz", + "kmbnyrf", + "glwe", + "ykjgqz", + "yuajce", + "dzyhmpo", + "cvjk", + "wopvgec", + "mupeqgb", + "cgmfbsp", + "esvzqth", + "tnrdehx", + "xtbv", + "rvawxn", + "ijnxdr", + "kzhn", + "xbgoiya", + "jamgnhx", + "ictbmh", + "duitkr", + "kmfx", + "urnag", + "aqbvy", + "qepiacl", + "mgeail", + "bejw", + "vhpl", + "xrmqpay", + "akmhpt", + "zrgmq", + "dpjfvnz", + "oeuirp", + "jqlwz", + "lagcw", + "hyzuvw", + "uawxqnb", + "spnyo", + "txnzyd", + "myla", + "rosx", + "uevn", + "ldos", + "urlp", + "hybliws", + "dlsjqy", + "meab", + "jizxvf", + "wjdgavb", + "sepu", + "qsfu", + "vkzde", + "hlkrvmw", + "rzyngl", + "lgtxj", + "oyhjuq", + "tiogu", + "jmasd", + "ojunik", + "gxatlhq", + "hufgl", + "ygzlu", + "axnrb", + "znmpk", + "nyhx", + "sryg", + "upnemr", + "mnldhsa", + "jsgnbxr", + "vykw", + "hovapsf", + "keibf", + "gwuksax", + "hycbot", + "puher", + "eidkgs", + "eaosv", + "srcjuh", + "vuxn", + "dqcbw", + "sotmine", + "qbxdzi", + "jfhotiu", + "azgpoe", + "orsxa", + "lcxdbs", + "hauseq", + "ezjgtcu", + "ufgsi", + "mlfu", + "umsklzp", + "anly", + "pklory", + "cyobl", + "gpzny", + "brqhie", + "cwqusak", + "dlfw", + "fvntqud", + "sdva", + "ntyulq", + "yqfzwxd", + "plmeb", + "iersox", + "jhnswdk", + "vilw", + "toygpfq", + "ngsad", + "zmufwl", + "vzkhmiy", + "lsnbxcv", + "jqaumrx", + "dkrhu", + "rawqlo", + "qijc", + "emxgk", + "sypnwga", + "iqtpha", + "zkqacj", + "zredb", + "wiyt", + "ughv", + "bqoazu", + "izfqe", + "leuq", + "ehnx", + "cyskmz", + "hlsxfmi", + "gyxqufa", + "bflhcdy", + "xhtc", + "jntm", + "aqdfmuj", + "jprbwvq", + "lpscqo", + "jzmk", + "yvxf", + "gxswai", + "ownlqk", + "qytdui", + "cozqdxn", + "djkp", + "huxspbd", + "bdvf", + "tywsk", + "ajwcr", + "ergpach", + "oyawm", + "udpsknw", + "nrkq", + "ztghfw", + "ojuer", + "kjfclno", + "swgtd", + "pujm", + "tqfi", + "zkhp", + "nbvru", + "cqhfigz", + "oscz", + "gywo", + "uwni", + "djpri", + "haitm", + "pyvjuwb", + "tsrxf", + "pvhue", + "mryqb", + "howlk", + "dwotsxi", + "uhtyigx", + "wptv", + "gaofc", + "hyfka", + "dxqgt", + "mtxj", + "fhpcl", + "gdtwxp", + "tlah", + "wcrg", + "ygkd", + "mnzvsiu", + "ksfn", + "bijoxg", + "ybauo", + "mdtr", + "atenq", + "nfdu", + "txdqahc", + "wzigrf", + "jsdlpi", + "djruwmt", + "qzgv", + "sdal", + "jdfwpe", + "ghnxy", + "bnziyj", + "mevdfx", + "qsni", + "xqwa", + "svqjzy", + "akvu", + "omdyn", + "gkvm", + "yvgaei", + "rwtie", + "jryftix", + "bwyajsh", + "upcozt", + "xhekbz", + "nhof", + "dhjclnz", + "ziobjl", + "mfxub", + "ekiw", + "flhqb", + "swkdt", + "bxqw", + "rdgptl", + "qnsfxz", + "aqfckre", + "jgnrmds", + "brhkmcj", + "wpru", + "kuxsl", + "qhwgip", + "qusp", + "osjf", + "jyxod", + "xhuly", + "kabfgm", + "pzeji", + "asbfund", + "nubp", + "rpysjb", + "qhpwed", + "igaqh", + "cowgyq", + "ysbe", + "vpzqm", + "omjta", + "gxuqd", + "wtiv", + "xbiuwj", + "kuftqle", + "cbpnymg", + "lyaxoht", + "mpbl", + "dwut", + "pzrh", + "eazprhl", + "nsqkzyw", + "isvq", + "rlqn", + "oyblv", + "daepf", + "ewtir", + "tivks", + "oiemz", + "kimf", + "wjpmbx", + "hkwet", + "ulfcx", + "rzhwlk", + "peoq", + "nltqe", + "ikyf", + "daun", + "jwyza", + "fuad", + "xmtopl", + "hwryg", + "msow", + "lwfcqab", + "aglkfnz", + "gaibjz", + "qxomral", + "utavkq", + "gqotau", + "nizc", + "fhineb", + "phfy", + "ixvyg", + "bxjtd", + "sclpm", + "exzwvni", + "udrc", + "wshgkid", + "slzv", + "dbqro", + "olbfz", + "ouab", + "tmqk", + "nbfk", + "nykfax", + "pobdfux", + "ovabjt", + "tpmgxon", + "gczrlf", + "otfn", + "ijrhdq", + "pjzbg", + "dpacnx", + "lgpxkti", + "zwonhq", + "eranfy", + "qapcl", + "hivqj", + "xmvw", + "jbmkau", + "heicr", + "qvgwzd", + "gaecis", + "elaxmc", + "koij", + "oanpe", + "apcfexs", + "uafokzi", + "ciqd", + "sqbh", + "nuezly", + "jvckwyq", + "evpkxbr", + "rbqdhzt", + "ulnpkh", + "slqfju", + "yfxrwl", + "gqkbodn", + "rtlcvak", + "ncblk", + "chivt", + "qdfjy", + "znhjyt", + "gced", + "eikyu", + "dvnlqrj", + "gdeho", + "tldxfqw", + "qcvutow", + "ocmhvzn", + "usgkhj", + "qhutxmk", + "vebuzy", + "owjsqti", + "gdvxe", + "nchw", + "edfyia", + "bnie", + "jxibm", + "roxa", + "ouyb", + "lgobak", + "wyiqe", + "zwex", + "epqr", + "mfcr", + "jqeup", + "bvxcrpm", + "kodexh", + "dwtxzhu", + "dqmjzbk", + "gzrv", + "wcrlqs", + "roey", + "sbkjmyh", + "kpqisf", + "zpyqnks", + "vnbxczs", + "jnkcim", + "xnjcvl", + "diwcz", + "wrbgemk", + "ozspji", + "qutzlwi", + "uyepcr", + "fvdy", + "iqmnegt", + "igdfer", + "gqaobfe", + "oiyequj", + "jrdns", + "asozfui", + "zfhexi", + "lgkd", + "havpqex", + "jehdo", + "eyctm", + "igprqt", + "vajiyw", + "umqpbyc", + "vzwr", + "jirugw", + "loqv", + "jqdice", + "jsdw", + "oyacrft", + "mnbczt", + "tksuxq", + "qbfacg", + "lrjxtuw", + "ojkud", + "idgnufq", + "haelprn", + "symc", + "ontsdri", + "xrit", + "apzo", + "wfyjte", + "vzgh", + "sieuoc", + "hrjszd", + "juhysql", + "antvyxp", + "lufsa", + "hzpi", + "rysoqj", + "fesi", + "zbcowq", + "lpzth", + "petabd", + "tlcis", + "uwytb", + "fuac", + "bzylcp", + "yfang", + "biqvnxg", + "lzgbvq", + "lbuxr", + "oblive", + "kvqhdxn", + "vxctbl", + "flpu", + "asxi", + "iojrcf", + "goihrp", + "jeuckp", + "ieqhnpj", + "lbyg", + "hmejt", + "mitwa", + "xhsqe", + "xvbtaql", + "mftcry", + "odjz", + "fnotea", + "rhpntua", + "onisb", + "uwjyzc", + "rnqubta", + "cqzo", + "qied", + "mnwyck", + "jxohwen", + "lpyj", + "ugnt", + "csbupvy", + "gpkq", + "uhjgqwc", + "rxuy", + "zqmdfw", + "hmylnxv", + "wzda", + "rmezjcu", + "sipo", + "vodmkg", + "yhqgo", + "shfwldn", + "pzdrlow", + "wnyrzep", + "iguf", + "blfdiuw", + "dhbsz", + "mdyhf", + "gweqnv", + "qwsduz", + "dckyoa", + "jquwlbh", + "yiexmw", + "opezhkv", + "xhdztwf", + "qvsnw", + "ismqdu", + "usgqa", + "ucjnbvp", + "vusxoan", + "ztkdui", + "zpafj", + "udvw", + "mwth", + "azudgr", + "jpkg", + "pkoqw", + "qcktes", + "hsjraib", + "gwvxlky", + "qsfrlev", + "cvjq", + "qlncjov", + "ywtmcoz", + "jeiwn", + "rhqwj", + "iento", + "oszbmry", + "kadvles", + "huagspz", + "mzjpw", + "owlzmn", + "snckmzq", + "rvtu", + "eqmtoal", + "sfqmuka", + "mpgyi", + "wayi", + "cuxjo", + "xmwc", + "lqma", + "fozcx", + "pfet", + "rgyfmqj", + "fvcg", + "wnaobvj", + "qdmpnj", + "bxvk", + "nstvj", + "gwzlmq", + "pkywq", + "mpdyr", + "juwnyl", + "ukqciot", + "iydwxmc", + "ongtm", + "nrzd", + "aohecx", + "ayjqob", + "egwmbqd", + "fwbsxv", + "ejbf", + "kucf", + "nfdlwg", + "gnfdpr", + "mxfysi", + "yhinqfb", + "fwvan", + "tglpax", + "qpfhnyv", + "bwfhliv", + "qkwm", + "yghamcb", + "kunzpx", + "vuls", + "htqdxla", + "cbed", + "tydgcn", + "wopres", + "vzyth", + "iuvnfyp", + "enrgxm", + "rqowt", + "tkbmfdz", + "vjfy", + "zard", + "lfbrtn", + "juqxy", + "zyudftl", + "kpms", + "orbgput", + "judefb", + "tomcpk", + "thfor", + "kjew", + "jiwxtfd", + "mlrdg", + "fjiuac", + "hdua", + "fgjek", + "gbuvdm", + "ceimo", + "ethkpgy", + "yjnwm", + "nyuf", + "bqic", + "dmypvjc", + "aifr", + "yvaz", + "ixay", + "mbxk", + "dtoyx", + "lhbdnp", + "zpqo", + "sikwtz", + "nrax", + "btla", + "frsmg", + "lkveznd", + "epinxj", + "ysixa", + "ayzefsu", + "bckxp", + "ygwtjh", + "fneg", + "vpchz", + "nyjz", + "jwmsy", + "lohu", + "gwlsj", + "vwjxctq", + "tbncs", + "uzlf", + "ubcx", + "xfsu", + "zsnc", + "mavkulj", + "dgkqc", + "npxy", + "tziwxpd", + "jfst", + "vatjkcq", + "zefj", + "thourzg", + "kliv", + "lhzojsq", + "cadfi", + "pwscm", + "hveuycm", + "qxlrg", + "gran", + "noeivrc", + "pcgvo", + "ceog", + "owjgkb", + "dzxi", + "wglo", + "oria", + "xerdtzc", + "gkyaiu", + "ekodzfl", + "gyczrwn", + "exyvmw", + "mqxvfkl", + "tgams", + "nham", + "ycioa", + "ptbkhid", + "yhsurwj", + "qfzbj", + "gxdjq", + "hmgyps", + "hpezym", + "vbgyu", + "xbekwz", + "kwvjrzb", + "oexb", + "zwgp", + "irvf", + "kwlizq", + "ftxbrjh", + "piwym", + "elghpij", + "mrsxgdl", + "onbx", + "uiakljy", + "bdjlqu", + "xtehvf", + "sgrhiqf", + "ktqbxh", + "rwfx", + "ikndre", + "wihueoa", + "ygroix", + "njbs", + "ebnhsq", + "pcovfx", + "wrodn", + "ksqzjgu", + "mroysk", + "lyuf", + "tnqmgck", + "etcjmwd", + "sczgja", + "avpmxr", + "fjpghr", + "kjse", + "edlui", + "hrvbnld", + "xtznps", + "flwdp", + "zuoknrl", + "lxowgb", + "thol", + "juwqnbc", + "yhqbe", + "yerzwfp", + "ydvmpr", + "dtspkg", + "npta", + "isvpj", + "xmilqsa", + "fqtb", + "ljqr", + "vdawel", + "lbnxvp", + "dvgj", + "ywdab", + "pcae", + "hitxlw", + "ndxagt", + "bdjrien", + "bcutf", + "pxlzvkr", + "tqscvd", + "ejsdfl", + "cemuq", + "iaqk", + "crpxoub", + "tbvnakp", + "dokvtz", + "cvqhwo", + "mpsicld", + "rzwlci", + "xljga", + "wzkrt", + "ixytr", + "ervh", + "sltrimf", + "xsyrul", + "zfotbh", + "zbicw", + "tkarmn", + "gbtf", + "bafswj", + "ypkqetg", + "adin", + "nyrftd", + "cbhxw", + "qmghduc", + "bzse", + "ncqzel", + "yavpwmg", + "etzwm", + "xakz", + "vxcgk", + "pgok", + "hblvqx", + "holmqtc", + "edkct", + "rlxzb", + "edqn", + "klbe", + "jsfzw", + "yslqw", + "nzram", + "qgecr", + "xicrue", + "dhlf", + "juedks", + "xzjbny", + "nodklat", + "trxpbai", + "yktg", + "nwvs", + "jpreyl", + "qhfjt", + "gsex", + "qstv", + "eytuagd", + "yjuw", + "mvroa", + "ncsktb", + "zbxcte", + "exjoua", + "tefz", + "luqi", + "gpyodnw", + "zpcr", + "btuzhe", + "tnsicd", + "dwskz", + "qsxdnmz", + "vlrkyqe", + "jakgew", + "jmod", + "jqxlui", + "qhfrp", + "qukh", + "eufogh", + "rgekmi", + "hajun", + "nlsxd", + "szqdwe", + "mryebpz", + "jaihuv", + "bqcnrig", + "rbmqd", + "tyfud", + "ljkiaz", + "tjpw", + "sduah", + "lxoag", + "jvndt", + "mityx", + "bodsl", + "hbimepu", + "hrmqei", + "drxoqz", + "eqaydn", + "oeusbfa", + "mhgsx", + "pnhic", + "zphn", + "baowm", + "qbnpl", + "cegkbwx", + "vuok", + "ocks", + "lcmwjh", + "fdkt", + "jwcnib", + "utszgp", + "ciln", + "ynwiqad", + "mpval", + "xzyhp", + "seolvhg", + "osxuhi", + "ebzcj", + "iwqpdv", + "rwxd", + "uaxme", + "myaq", + "ycej", + "bqnskgp", + "nkbg", + "pisnvc", + "vkmpd", + "wbxe", + "vmht", + "abnjhd", + "kbucxvz", + "qskfa", + "jeoviy", + "exqz", + "khqberp", + "dbfu", + "aehsu", + "fnksv", + "emnlf", + "ysqor", + "zpkvx", + "zhlaws", + "kqconst", + "vhsxwy", + "ndfy", + "bydxqho", + "nvue", + "rqusftg", + "xqbin", + "qlthj", + "qleoz", + "pbsucoy", + "lhfvao", + "lhknseo", + "pmwj", + "vwtxgli", + "umtbn", + "wbjgnz", + "dkrbjha", + "dbstmu", + "tlfsz", + "fzayp", + "nwtr", + "ithazuy", + "njvoc", + "wedrkaf", + "dbivm", + "hcqe", + "knhv", + "hodagw", + "rkvm", + "lqbefa", + "qvrjd", + "hlkdorg", + "yshal", + "rgafd", + "gsta", + "dbwmef", + "iuxvwa", + "swavh", + "hrqkvco", + "spxmz", + "iabved", + "xmpb", + "kwndz", + "xipl", + "izuelkt", + "axgwoqv", + "xdth", + "ugdcrny", + "slrom", + "uznhlye", + "tphsf", + "mdcr", + "mcnoz", + "dialwg", + "zscu", + "tzbkqlx", + "ivfklat", + "cajd", + "epxijm", + "cdpoyhv", + "hzwi", + "gotjfl", + "xglwyhr", + "fdywela", + "dhrfkw", + "sobgcv", + "hvaulo", + "luxmsq", + "qfgbt", + "vamsocw", + "cbolmx", + "vpqgin", + "padczbj", + "hzwsict", + "shetcyi", + "kfyvuo", + "hnavjp", + "wizxa", + "dgefu", + "wprda", + "dcvxf", + "gokn", + "bzxtulo", + "gkumve", + "ufvoh", + "dlgsbzw", + "wlink", + "lwhauy", + "sifn", + "ocqn", + "pzmd", + "ndsey", + "raoyeqk", + "pvrmqfk", + "jxkbtqn", + "bagv", + "cvzr", + "pjnco", + "vcyxfdt", + "gvarq", + "zhpwtds", + "ymihzxo", + "wlnauq", + "chra", + "zupx", + "kmna", + "ymkawio", + "rghnmc", + "owebya", + "bufw", + "urebosk", + "uwacrn", + "canw", + "qlfxs", + "ulqwjsc", + "dbhcra", + "iblkz", + "rzfxhne", + "gshkxy", + "bkyant", + "cqxuv", + "dxky", + "ydfrcea", + "bpnyesh", + "sqgohy", + "adkeb", + "gbeiw", + "jtzbok", + "tvwjs", + "ervdkic", + "yszhj", + "gucij", + "xkifb", + "vohjebw", + "cdbmujn", + "stqdib", + "jrdkbz", + "czip", + "klguph", + "rmfnzw", + "liwzn", + "htvdlec", + "jisf", + "mrog", + "fogpdsm", + "uemlzt", + "vdya", + "jadvs", + "qgekmt", + "vpcma", + "rpfshdm", + "atjgm", + "rcozh", + "kxew", + "uabrhwq", + "vnskh", + "enzsqk", + "eashdz", + "gzkpayn", + "bvwhil", + "oztxja", + "peft", + "rvlji", + "vqsuia", + "pvxq", + "wkhvzib", + "pyjvsd", + "jebpm", + "lrin", + "fyxvnlw", + "dhuotqv", + "aidzhtf", + "nmzbxps", + "cadvn", + "vosmrf", + "mojuq", + "fqnde", + "wpscmdu", + "tqmvldc", + "hgwnmpu", + "hiyomac", + "wxlusc", + "ybscnpk", + "rnizaf", + "ydgviwo", + "jvsub", + "rnmv", + "wndbt", + "adtf", + "xmbvc", + "sout", + "wqruac", + "itkysfj", + "sgjwa", + "zlrdyt", + "qmrwi", + "ftpxlov", + "mwztca", + "hlpogm", + "pakwg", + "elxvcrg", + "vsfzub", + "dngzy", + "atwhxe", + "hjcmf", + "fsdlj", + "datzwo", + "yqmx", + "avchpb", + "zfmwlkh", + "eomhl", + "mawxb", + "vdhepl", + "zlac", + "jgoyh", + "ewsf", + "skdizf", + "zioymb", + "ygemkb", + "rijfpwa", + "bvkwyxc", + "cqot", + "mjnec", + "jcuhfbq", + "plvfa", + "nhod", + "lexcqz", + "sukbatf", + "yvqhn", + "gbakncv", + "dnkpj", + "qndzf", + "uhsz", + "kplmr", + "vipne", + "ovael", + "vret", + "pcxyuld", + "flyw", + "mphqreu", + "hrwfnx", + "lkbo", + "tcbov", + "fzju", + "lfoqu", + "dsepgy", + "aoxy", + "wjihcfl", + "lgwmrdn", + "plgn", + "dhpcus", + "gzqasi", + "fgjmbxl", + "xizhsv", + "ebrqu", + "tyicz", + "mxaevg", + "goth", + "lxckstf", + "xumbjs", + "xtsz", + "vhnr", + "ojbq", + "fjmwsac", + "qjsvbkp", + "ezkxnls", + "qbzvgi", + "gbewu", + "bizcvk", + "vujbt", + "zvqfcrd", + "jwucvyg", + "negv", + "icsvxb", + "gwfadc", + "zaltq", + "odns", + "eotb", + "kdlzu", + "tehi", + "czhxe", + "zamlxfi", + "wadghv", + "umtp", + "weigfrs", + "fsxykoi", + "ljbfn", + "kwrilj", + "twoy", + "ivucqa", + "inudj", + "skbhvjx", + "undozj", + "jsfhe", + "plikcsn", + "blxcja", + "ztxs", + "sdgbty", + "djufibv", + "dwvley", + "jgsfpmx", + "edhcgkx", + "fnbmh", + "xlpkez", + "mxufgsr", + "ireamy", + "nvzlo", + "bxdoy", + "elwuy", + "hopa", + "nxyz", + "bznpq", + "hxwc", + "ezrqwmj", + "euhs", + "yehlgfa", + "wjhayl", + "ihgj", + "cwkdz", + "akwhs", + "vxdgk", + "tqwg", + "shnfdy", + "tihc", + "advw", + "iodm", + "davx", + "pbdth", + "xvpjwe", + "othmej", + "nejc", + "zicl", + "kwvyd", + "wgqeblv", + "kvtln", + "lydsf", + "rgte", + "buly", + "wfcekhi", + "amile", + "bpnce", + "ytkase", + "cguxpqs", + "ehnlpc", + "hqal", + "swnf", + "voxm", + "icqtfu", + "lyztcw", + "qfwet", + "kqojgc", + "pjgokm", + "umonj", + "iquxka", + "ycset", + "esky", + "kopqvjb", + "pnyoak", + "kazyfq", + "gjziwa", + "chtd", + "vxnoaqb", + "yxzqdcs", + "awqfmpu", + "rfvpyq", + "vkmxr", + "qlwoz", + "cvzay", + "hwvfn", + "tnvwy", + "habj", + "fqgelc", + "qvfx", + "ybelijq", + "yerb", + "etkpnq", + "lmfhqns", + "vnjd", + "uqkr", + "ugptbli", + "ftiew", + "hvmf", + "fkmsxj", + "gdrq", + "rkmo", + "lfkp", + "fsnox", + "fheb", + "pahnjsl", + "zdfren", + "ezmal", + "yaxt", + "agfn", + "xyloa", + "daowhzi", + "eblmt", + "pefm", + "mwekhnq", + "bznvwu", + "mdjn", + "mbxod", + "lcrnj", + "jbwqm", + "lgye", + "wkmsj", + "goudlp", + "tyepv", + "xuhklre", + "gmexf", + "ahur", + "outfyhb", + "cgte", + "mngwcd", + "zpja", + "ztgwf", + "pqjfwx", + "qgab", + "pxsfn", + "frvka", + "bismdon", + "loknyhs", + "tzclq", + "hwmpz", + "rtcq", + "kzfbies", + "szod", + "pyzik", + "biovp", + "bwsm", + "exdqu", + "nkztia", + "cmelj", + "tmspnh", + "zugtrp", + "wneq", + "czfwr", + "mgvbuw", + "gombk", + "xciw", + "knerlyw", + "euckz", + "jkicz", + "csmf", + "fvjiya", + "xukc", + "zsyu", + "fmqk", + "yzkb", + "kinwz", + "azcu", + "fiks", + "owih", + "ebnutk", + "upminek", + "gkydc", + "pzwjf", + "dvkplb", + "bsezkjo", + "xstpki", + "jkpwhi", + "oncel", + "cxwhmgr", + "cywls", + "qjotp", + "fvhbwxa", + "mqda", + "wnpomb", + "itdble", + "gumaexi", + "rxtqdni", + "bdhprn", + "bxfoer", + "wasrbl", + "fedv", + "qmbz", + "pckfa", + "dsonju", + "qjnlpih", + "srqzhcy", + "sdom", + "fiwur", + "ukqhbw", + "kxqwb", + "pmavfsr", + "qmdzfr", + "cygz", + "agxo", + "rjgtfn", + "xtqgyz", + "qyce", + "kdeauf", + "laqdw", + "enwjtz", + "icry", + "kjqyv", + "yqdva", + "ewzgks", + "jsnmdet", + "ialhqx", + "hpmkbit", + "tamlewy", + "aedwqgt", + "ahgb", + "qmhv", + "rijo", + "lnyqha", + "bjtvr", + "bgvtcfi", + "hmvodej", + "dehbip", + "evuxlzt", + "gkpzysr", + "gfmadh", + "xqljuh", + "erndj", + "cusht", + "wtfen", + "gnfx", + "wpmse", + "gynkud", + "xadzumg", + "wcsmin", + "spzlcur", + "aecs", + "rifd", + "rntmxc", + "ydje", + "krcq", + "rgzsav", + "uxskbrw", + "kixz", + "jdeavzu", + "jewzl", + "lewjo", + "shtzx", + "sydel", + "vsno", + "kwzacbg", + "rkcv", + "exzdw", + "fknd", + "oyremch", + "vlcp", + "auyo", + "qbjiomd", + "rdnxzcu", + "ahfp", + "mcqohft", + "ycaqlfp", + "bcfepuk", + "qemxuzr", + "vopmfy", + "svpkxw", + "euvk", + "vuwpr", + "jybgv", + "eulhpg", + "hmxdkew", + "oxdt", + "oref", + "yrbxgh", + "qrblgyn", + "bylmdn", + "duva", + "zbgr", + "hseaz", + "irlovbn", + "xeys", + "epvfdh", + "umvxka", + "tebj", + "ymgbkf", + "uryjm", + "gziu", + "asvtw", + "wtkofxu", + "qbwcsh", + "fistyde", + "paqh", + "nrmvjz", + "bcjun", + "vhzwtqg", + "pqwuveo", + "cjrda", + "lxpgftq", + "zewmtn", + "invdpy", + "rymegd", + "uxgwba", + "zmokfhd", + "chvqoye", + "rkeih", + "vhxlf", + "tlnkbdr", + "rgqnzfw", + "fvekdai", + "ezrg", + "xpwez", + "hgpvza", + "jkhbpyf", + "xyohimp", + "kbwp", + "tspwyk", + "bisetv", + "rvjpc", + "ayocs", + "tgod", + "jblvnco", + "bheltdu", + "mnjwdzt", + "nsrc", + "ilcd", + "kjgpomy", + "jdnhxaf", + "ytbq", + "vcnh", + "hdkiayg", + "ykxjt", + "thxcq", + "qmscdne", + "ivaym", + "beip", + "yklsg", + "udipvk", + "oqptj", + "hjbnvwz", + "pkztig", + "qcrwvsg", + "prvft", + "gxnw", + "hxpza", + "ewcnj", + "detsxc", + "ycadrlp", + "njet", + "qpnyfrc", + "dqafu", + "zvur", + "qiymrfc", + "jyrsed", + "ivty", + "enfv", + "btrxcop", + "axwhi", + "ksmxwty", + "hdeaj", + "kovg", + "tvewnqy", + "aibmw", + "evwjlug", + "pexk", + "qekp", + "pxnrty", + "aspqkd", + "zgrqk", + "ogwm", + "negmuqj", + "hansx", + "chvy", + "kode", + "flgmp", + "pmirejt", + "eios", + "mgavzie", + "ermab", + "xveunr", + "xwrnt", + "zury", + "hevli", + "ixhtg", + "mcvzt", + "hlbqe", + "xntofqm", + "fljpt", + "mgyoa", + "qgdezmv", + "axeu", + "zbhly", + "znklew", + "pojycge", + "ceozpk", + "dtwuo", + "vgzcdhl", + "yapflb", + "itlrv", + "hnvtcq", + "vgazi", + "lvahu", + "yzpr", + "pewsjo", + "saluczj", + "oldpegr", + "tlawdj", + "nhoazd", + "waxzogi", + "bejdx", + "evhusk", + "xflpas", + "sbqojdh", + "qscvm", + "dvuijbc", + "suib", + "ebxszv", + "xhjasl", + "xwdzak", + "bjxref", + "jltxrs", + "mjgzq", + "dkmwlsj", + "zjslpw", + "yzlq", + "kapd", + "gnsluer", + "uzsrecj", + "csxp", + "hulgt", + "utwrxy", + "zmfwv", + "tkrxafo", + "zrga", + "esnpaw", + "fnhg", + "bhnlveo", + "fxzjhpi", + "twjfn", + "cpyaf", + "pgqcoeu", + "uawl", + "sdqhcz", + "geit", + "onfva", + "mlni", + "wijaln", + "gjuqaz", + "kgvad", + "zcqal", + "epvoas", + "fxeutp", + "tgshnfi", + "swjye", + "brapxcj", + "uzdjp", + "oghqip", + "dtxra", + "ljgifo", + "sdzlre", + "pjrvkib", + "rdui", + "sgrh", + "niluxqo", + "hcmsjg", + "tanhr", + "hguo", + "laijser", + "evhpzr", + "zusip", + "cfkpq", + "kqbam", + "ymnvexr", + "ndrsfj", + "ucjfpz", + "kleo", + "jgpu", + "fydbo", + "ruiy", + "iusd", + "ptrbdfg", + "aespyob", + "bhnf", + "bmecjx", + "gspa", + "jiuqgwn", + "yxeg", + "djhixro", + "muoaqbd", + "hxpk", + "wxatl", + "nydj", + "syhqb", + "pifn", + "denko", + "igwjrn", + "idhn", + "qrbfcv", + "rqyufcn", + "ejzqg", + "ghcqiur", + "zbipatq", + "qkbyheg", + "bjxzewi", + "fspdx", + "tlzj", + "btfc", + "lgzhb", + "rayhe", + "pgyqbrj", + "izrg", + "rwhxq", + "gtxp", + "szdc", + "oengc", + "qtbcfgw", + "nblqsgm", + "kohi", + "tispa", + "hojx", + "asmiod", + "dxhsp", + "sifwy", + "bfce", + "jtrv", + "qwavp", + "urcihx", + "rfgv", + "yzrakj", + "vnctqe", + "xcenvij", + "publimc", + "cybzfxq", + "baznpto", + "yoafg", + "tveodm", + "opkm", + "flcwa", + "vmynaps", + "epds", + "tjfe", + "mzfa", + "sjley", + "ghsoq", + "whkulo", + "uqgb", + "hfrjbgs", + "mynbeuo", + "icnp", + "nsdmc", + "tnbzf", + "rznahp", + "xqyrgup", + "fhblnqd", + "jfivlhu", + "nldba", + "gzxhuk", + "ixyc", + "tfgilvy", + "vyrndf", + "crdpz", + "rdqfx", + "wkvi", + "pkvzbs", + "hvgniut", + "ywlc", + "xjfgyra", + "gfzch", + "uilxeg", + "pvdmo", + "niaor", + "exznj", + "sljn", + "ancyi", + "yxar", + "mhqe", + "xcjhewt", + "tmiqbk", + "lrwohq", + "pztv", + "yokumxt", + "cyxd", + "euqtno", + "wehsk", + "anxo", + "dfka", + "glwomx", + "ankvrds", + "haisb", + "utorql", + "bawkd", + "oxyjlds", + "sbvu", + "ytuk", + "dhsg", + "dljf", + "twquve", + "pzqdy", + "aurzd", + "uijweq", + "fjhw", + "htevx", + "opbdcq", + "ektxmh", + "ypgbduv", + "vbtpzgo", + "sundtw", + "aovgp", + "lsnwj", + "spfvemr", + "iqhzcxt", + "wbxro", + "kufwqz", + "txnmswe", + "fbtivj", + "cuoty", + "yletx", + "lmcpojh", + "sfmxl", + "tjylgf", + "uhlf", + "puqh", + "meywhu", + "aelj", + "tfoxa", + "jtugxm", + "aielo", + "zgxed", + "xfum", + "prcq", + "vznd", + "mhksq", + "lqxprce", + "jeyzilw", + "udoaz", + "kjgbi", + "qxrnj", + "xfpt", + "ndhyp", + "pmrwge", + "hefiawg", + "hvmke", + "adztoif", + "vakxb", + "rqdzjli", + "qnodca", + "boxqlm", + "aelm", + "gzpqo", + "yvkzogd", + "dfyio", + "zkfwgvj", + "uhxwk", + "tkjdi", + "zxcwa", + "trae", + "rlme", + "boxsmpt", + "xseqciw", + "thkdi", + "gbiosl", + "spble", + "blkis", + "dcvez", + "eajgszr", + "eqlsfpy", + "rpins", + "unzklo", + "przy", + "dgme", + "kutpix", + "sokn", + "bdaf", + "tzdefrb", + "wtcq", + "fgqm", + "kqha", + "mdrhsvy", + "fajm", + "srpjka", + "ynapqv", + "kojvrx", + "lkbqze", + "qtfrdy", + "brienzf", + "epncwby", + "gloud", + "zukqi", + "orvqxkl", + "bvjrq", + "vxjl", + "qkbitju", + "cemsl", + "fabyxij", + "xgktc", + "ceudty", + "dfosiv", + "durkw", + "vjdley", + "ondtq", + "izhjo", + "rpvc", + "pusoyj", + "msvfhj", + "oqrza", + "vqzl", + "yfeliuo", + "kcmdzg", + "sahey", + "xdwzu", + "usizolc", + "kwsn", + "ivmc", + "grvycsm", + "ftwvjgy", + "jydt", + "krcdzge", + "rneg", + "zokipvf", + "tovhk", + "iwtkv", + "fiws", + "pewuc", + "lvjpta", + "wqrlczd", + "gptyhrb", + "nqikz", + "qipvdws", + "uxjm", + "kjtai", + "bqtjzxn", + "ekcixqa", + "imweko", + "abgjds", + "nibfdz", + "jgqb", + "nrah", + "uxgie", + "yqvpf", + "twzj", + "rwgj", + "xfrm", + "xkcowfb", + "clmjsxt", + "inzrl", + "ynevgj", + "vedtwu", + "hcfzmdl", + "jfizd", + "xfzw", + "swnld", + "ugrbxvd", + "qzvd", + "eiwq", + "ipwmh", + "vpcq", + "rxtpvyw", + "uexowp", + "xncol", + "tlmoys", + "sbpaco", + "duqnrz", + "uyrg", + "herzmpd", + "keunrw", + "uynhsr", + "rybvlk", + "gvefxjk", + "zqskuhn", + "ijkblu", + "vekjpf", + "zaqrk", + "pcldg", + "herm", + "lgnkfd", + "fgvtlcn", + "cokhj", + "uvzpxcw", + "olxvuda", + "dzgrju", + "zcsx", + "ytrakxz", + "gxaid", + "tspvd", + "qmnuea", + "gpiw", + "mxyevnk", + "gncafy", + "cypdai", + "asyruq", + "tbqgz", + "avfy", + "wjuxtb", + "dbhjne", + "ilyrnpz", + "ncjgrzq", + "dayenq", + "hrqf", + "tmgdecn", + "poer", + "kxzanet", + "tosnka", + "zjieb", + "wxmh", + "osld", + "aoxvf", + "zsncdxe", + "pavutcb", + "wyecfnm", + "dljy", + "ledvow", + "fgjta", + "qirxbw", + "dwocx", + "twjgpzs", + "trjso", + "sjkxmp", + "uqfwlyo", + "qlkhu", + "caljeg", + "xoyh", + "ibkcrmh", + "aupn", + "dwlemjh", + "omnqc", + "cxfzsb", + "fstlcz", + "apxj", + "fxeabpi", + "xqdg", + "krzp", + "tfqbr", + "wmnrvf", + "xwickj", + "qekipug", + "atqyjg", + "thbvyzi", + "dqwmb", + "bslad", + "oydtw", + "aqnkh", + "gqemdu", + "choyi", + "nczg", + "nukry", + "cqipy", + "grcbk", + "rulx", + "wmcx", + "nvhuey", + "qcyxfj", + "kdlf", + "mruv", + "gxjsoh", + "vlopxc", + "jlpaytc", + "kozwyp", + "awlfy", + "oifagxj", + "tcaspjy", + "zwtcx", + "yigaqhs", + "qckl", + "dvohqw", + "zypa", + "kbawrph", + "firtdsq", + "ijbhwar", + "szmaewb", + "parql", + "mrit", + "aypqsrg", + "chdiw", + "vjkrmx", + "dtuvjq", + "owsrz", + "dtmpx", + "ibtekwx", + "cskarhm", + "ycpduw", + "tkxbc", + "wuohncf", + "xiwr", + "idplzn", + "fpywicg", + "tkwqx", + "hzstke", + "rthcz", + "npqvhms", + "izev", + "uhqxls", + "lyixw", + "mdjyhab", + "lhtv", + "qmrbzfn", + "qjtfzh", + "vpakw", + "uzkflv", + "rzwgsxe", + "qaws", + "kifxecz", + "soubif", + "dibf", + "uknd", + "ctawhj", + "ukrzf", + "toiv", + "efyvgdj", + "hpnomf", + "ulay", + "remtj", + "zekta", + "jonwlc", + "uktipxs", + "frws", + "rcezd", + "wfbdi", + "dfvyo", + "rxvmsi", + "meipa", + "hfjr", + "ayslg", + "ogbxeu", + "fwrvt", + "fazqr", + "vnbj", + "flujh", + "nmpdjov", + "lafehx", + "fxetnbz", + "hodgjy", + "clxn", + "havfx", + "csenl", + "ntxfb", + "bklsi", + "lfehxr", + "pgazyun", + "oulzgj", + "usjkzn", + "obepfi", + "abkj", + "hefqi", + "wtnmqag", + "ryzo", + "twqx", + "fhqj", + "hawzo", + "naztgkv", + "debr", + "guix", + "wsdj", + "mufihn", + "knwx", + "idlr", + "lpsf", + "swnkbg", + "jgsnxz", + "ldogvku", + "sdrh", + "odwit", + "hgny", + "jxhkrns", + "ualz", + "lgesiz", + "kgxwlbv", + "vnjcd", + "lfedr", + "nywaj", + "trip", + "jdstcl", + "fctqazd", + "gqfxolz", + "bfhglue", + "dzajnr", + "gysi", + "reqhwcb", + "fcibr", + "hbdaxts", + "inkd", + "eofibzs", + "ofueid", + "cafxheq", + "szpwj", + "jwcdq", + "olefti", + "crsjuq", + "cinj", + "wopqci", + "euqktfa", + "honlc", + "xelis", + "tsdro", + "tmndce", + "frham", + "opnymfz", + "nriokhu", + "ucqlxob", + "meox", + "oyhr", + "lknrd", + "vkot", + "tcmoux", + "qoyw", + "dyagrks", + "eipxfa", + "zovjgc", + "jabt", + "zwrchyl", + "laqhgz", + "qdsxfwz", + "svmnr", + "cverfh", + "uwetbqr", + "pqke", + "zbkmjy", + "covexy", + "gnlya", + "wvigoyx", + "qibmytr", + "ylsdo", + "yirut", + "bpcgs", + "sxydkg", + "jpubqsy", + "ukimgp", + "dlqsa", + "mrwo", + "kdght", + "pdvxr", + "uxqzrgm", + "brka", + "hpvkurx", + "kermc", + "bhvj", + "zaipnmr", + "tehnwor", + "kioymnq", + "aevfzm", + "ilqe", + "fhqzu", + "aezq", + "rnhpoe", + "cvjwu", + "uotknwc", + "fbdvtom", + "shtu", + "bhuozn", + "flspxru", + "gbfux", + "kgdipfs", + "ikxyb", + "iyfh", + "umzre", + "cgjpun", + "vhoubke", + "onpxk", + "myine", + "fytlm", + "xtvp", + "jxst", + "cftzj", + "ewxi", + "mzxco", + "zsdxujq", + "wvrq", + "kurm", + "dsrxjyn", + "dzxr", + "wqvzgfi", + "mock", + "ihmt", + "dmif", + "yveadu", + "ajlcq", + "mvfkt", + "wknmtj", + "ulihjv", + "motphsg", + "geryt", + "agtno", + "ryohjv", + "mlgdasz", + "pqmdyi", + "abskhf", + "lpuq", + "nluxo", + "kpvxdm", + "fcswki", + "enuigd", + "vpoir", + "idvx", + "pjxthme", + "kopmsg", + "iwexzqk", + "xmgjcr", + "sefryb", + "nakfqs", + "tnjzxky", + "bfcshy", + "dreufjc", + "xpahi", + "amecon", + "jhnm", + "kahrd", + "mhzqgku", + "hncfm", + "iwzp", + "jprez", + "lgjix", + "jvmol", + "oyzwh", + "lqdvrk", + "fxygcb", + "vzqnfbc", + "zvlqta", + "xmtqf", + "tmholci", + "gxaj", + "pywfiq", + "itcyfhb", + "kxbql", + "phiwezs", + "scwxtab", + "gdvycu", + "xuilav", + "btejlk", + "iqnc", + "ydrqlc", + "gzfwupi", + "hibdn", + "pvmrowh", + "nzch", + "ixgp", + "wsxgfe", + "hzuesfm", + "jlbcoh", + "pgfbzu", + "nbyipoq", + "ghpx", + "ydef", + "mecsy", + "zydj", + "fjprwa", + "tluvz", + "xvsj", + "nhbrudz", + "bydutlf", + "iaqmcsj", + "smzbpwq", + "zuvnx", + "rchkme", + "pzkxim", + "ijfrhv", + "gdbpls", + "cqtm", + "erujlsf", + "pefjq", + "twvfk", + "gpbrcd", + "cvkol", + "ldcmu", + "whlzrx", + "ytclnbk", + "nmawp", + "bqrk", + "kswmpnz", + "kjdltmu", + "tkqwbga", + "mlczyb", + "awmfz", + "stibyml", + "nohft", + "oaizusr", + "dgrefay", + "rdcovb", + "rbesu", + "yofskz", + "khzwx", + "pztix", + "ukjq", + "pwyleh", + "ozlrtn", + "nxqda", + "otieqz", + "jivtqne", + "csuohyn", + "jgkumvq", + "nhxryf", + "tkqm", + "ktpbilq", + "keiynp", + "dlpcbk", + "snfp", + "ywkqoab", + "kjbt", + "nzpdwts", + "wcju", + "zlpm", + "bxhvyw", + "xftbrm", + "gkcaq", + "xkernu", + "dlsyr", + "pldqbc", + "gqef", + "eysf", + "myups", + "wngvkt", + "pfdnbi", + "tulab", + "kjwvse", + "zoersm", + "mpkrcqz", + "uqkizwr", + "yqprmkw", + "sypoid", + "ymdpf", + "vlyhnd", + "zeavbn", + "fxth", + "etms", + "crqd", + "hwymlpj", + "ieps", + "ujiqls", + "leoujk", + "bsdpm", + "cjehyrt", + "wxqs", + "qpwysa", + "uaiq", + "fudhxey", + "qawjpm", + "kqzcvn", + "htifcz", + "jvdyfno", + "euip", + "wbsyv", + "apql", + "cpdjkfw", + "cfhjus", + "etsg", + "yqbl", + "cdvwma", + "edqotcy", + "qnztjpm", + "jhwyu", + "pvry", + "sutdoe", + "vbgike", + "tsurh", + "rhdkgb", + "vacbkz", + "qpbirao", + "ahypkqs", + "gohlaet", + "jmtisy", + "atzoljk", + "bzhey", + "lvxp", + "ykcpzg", + "tjkbsy", + "hdacsv", + "ufkiq", + "ptke", + "kyde", + "zhciupj", + "mtfve", + "ogftb", + "rekas", + "vuco", + "oetafh", + "dlrmjyu", + "mbtnwe", + "vzyfbp", + "bnjft", + "bslhkrj", + "qtzjm", + "mlwnxhk", + "mnuv", + "apcu", + "prcv", + "peizsgu", + "zcawr", + "hwou", + "lukqh", + "ucwjyhi", + "klvupth", + "brlhuw", + "kwicr", + "qwylpx", + "ghtvbpo", + "kzcf", + "cuhb", + "dfkasxr", + "aoqfl", + "waiznc", + "uixbgn", + "awtd", + "bdcjv", + "jzec", + "vafds", + "ephgzd", + "nwpz", + "wtpluac", + "gnyelfb", + "foctjh", + "dtleks", + "ugyaopb", + "trhqbu", + "vondzx", + "lrdcgq", + "qhyewfd", + "jzft", + "asyivdm", + "nkufxym", + "vzonhc", + "wrqbais", + "deuq", + "dfnsja", + "rplny", + "utez", + "toid", + "nfoj", + "njkl", + "uycmk", + "bmaw", + "ywzrjpu", + "jpvomz", + "udgpyc", + "qxym", + "bmnj", + "vbwpekx", + "aqih", + "reoxjl", + "gcnquld", + "xekugr", + "zilv", + "adotm", + "bmqrls", + "utmy", + "fqyl", + "stplo", + "bpejvs", + "cslwo", + "nlfr", + "smvyak", + "zfrqie", + "jogdsl", + "mlkzu", + "lvbu", + "jhmegtr", + "kubgaev", + "mnquf", + "rjlzwat", + "jrqs", + "icaxu", + "vescbk", + "iershg", + "yjnub", + "bgro", + "haxwlvd", + "ehbwpyq", + "sfxa", + "fgkjp", + "fvwdha", + "tpdj", + "npmgw", + "kypiw", + "lfkjqaw", + "ncioehl", + "kcexgtj", + "xapqiku", + "bpmfaul", + "heuxdo", + "eoha", + "uwlmvst", + "zorem", + "xmcow", + "kvzp", + "fljsoi", + "qcjspxi", + "qnxw", + "hqcwts", + "rhsua", + "wzsypa", + "dmykvf", + "lgiu", + "genp", + "yeodsrz", + "ihzpx", + "letvpus", + "kalyx", + "jlkz", + "hqfi", + "ugoz", + "lgtyu", + "rvsdocf", + "hnyp", + "fohq", + "xsamtdy", + "tszlxgw", + "lqjrs", + "bapisk", + "kgxj", + "wgdzsqn", + "cmzbrp", + "adefsbm", + "txvef", + "cewibq", + "xfuylm", + "elamo", + "opkiq", + "mwjgoq", + "fgbavi", + "xqykeht", + "nsjxy", + "wruzfmo", + "wdasit", + "anmctw", + "hczisdo", + "pbhrd", + "hiby", + "cjbw", + "jbsixnk", + "woslgnb", + "hswvri", + "pfxo", + "knyibs", + "srdnevj", + "puvgji", + "ugtc", + "tpygvzc", + "evabjg", + "dymefl", + "tqupobc", + "scawne", + "bnxcegt", + "gvjslw", + "galfm", + "exscay", + "rqka", + "oebifzk", + "nbysd", + "jitfgyw", + "rypz", + "zbxfitd", + "dkqzxo", + "vrkucsd", + "byds", + "sxvtynd", + "hlzjg", + "mjylbre", + "mztxkge", + "trqujek", + "pfahk", + "zpnew", + "xygaok", + "whamsd", + "rieywa", + "hpvxum", + "quczahr", + "xunvfq", + "ulri", + "ipqrlsj", + "teangw", + "dtgbcr", + "zrtjocd", + "vwsk", + "thujzv", + "qjmz", + "czat", + "lbtr", + "sexlfd", + "kaft", + "jkqnbc", + "tjscgid", + "qgwvxmz", + "lvmsabt", + "ftsrqdm", + "jqao", + "xshgyrw", + "mozhdq", + "kiefz", + "chbxt", + "pouvtdr", + "wsmu", + "wsicju", + "kmqbni", + "zwvb", + "udvtol", + "tbrq", + "veqfju", + "bipu", + "pkwjso", + "efmjout", + "wahxypm", + "sahrlb", + "jzbgl", + "jkcowih", + "ehutk", + "ohjgbw", + "kwnumg", + "mockv", + "vmueo", + "qfhog", + "dqjxyvh", + "jfbtc", + "bgls", + "ftadlmr", + "yaxrhd", + "cloun", + "mivfde", + "kpgumb", + "etpzv", + "zljguc", + "nmkzja", + "wqbnc", + "gxlbyic", + "vlnwsqc", + "kcxtmzb", + "pbqwt", + "jmdupzq", + "abemopf", + "becsxzi", + "mqpwfbg", + "zlakqi", + "pdinzcr", + "nfiqs", + "sodwpvh", + "kpzwivy", + "asycqw", + "aqyoj", + "wizgqjp", + "aqbuhrn", + "esmhv", + "tnwygj", + "sqmdln", + "syjb", + "xgrsnf", + "hytv", + "ojntmsg", + "mqlasw", + "rsetza", + "jbort", + "bvdtso", + "dzvl", + "psbxntz", + "xbns", + "mnqlg", + "vkalo", + "yrenhtj", + "toryxhb", + "ejpfgl", + "twzydep", + "jevsly", + "ysrmdu", + "trbcj", + "dxizfpo", + "zbtd", + "vjeq", + "uwztmc", + "oysef", + "zytdju", + "tvxiwnm", + "bzhird", + "mreqfdo", + "wkemuiv", + "axgw", + "inopjts", + "zdbmo", + "ctjx", + "yujnb", + "nuywrc", + "voeuipz", + "rngu", + "djipv", + "ybeh", + "bacw", + "nkxf", + "okzeits", + "wkjdm", + "dkrho", + "kihajp", + "xkqc", + "ncqhra", + "gdmln", + "wmqjfsb", + "awfblq", + "mdobjv", + "ikncojq", + "hcqxgtk", + "gljcws", + "cmijwy", + "zafjrct", + "tepo", + "wcla", + "mikqn", + "mftp", + "okmxnj", + "eqymh", + "vior", + "qvoepjf", + "yresn", + "jsxp", + "rigozh", + "ftoyhi", + "ckxo", + "echfk", + "oclk", + "yqbourc", + "qidzo", + "vqhwan", + "lwzfti", + "dckb", + "fjtipum", + "vjbn", + "iygnxq", + "wlrmcfy", + "rvlmz", + "dswz", + "rjxbeql", + "dshj", + "mointfz", + "dxfa", + "xjqgupr", + "vzcwf", + "kwtlco", + "efmdyv", + "xuqma", + "yujzne", + "ckgr", + "fzrkcqm", + "xbyka", + "ltcjus", + "otpfei", + "rwuvqt", + "xkau", + "ewiso", + "tmvkg", + "iylfd", + "balngup", + "icras", + "wglcdmi", + "jdfzt", + "eqca", + "hoyn", + "tvfso", + "skcbny", + "hxmygdv", + "urjcq", + "zlfxyve", + "msgzjhe", + "yvwc", + "rhilk", + "irfw", + "mcdx", + "fnmts", + "ayvum", + "yzpwf", + "vxin", + "ckoni", + "btelyg", + "lcnmrgu", + "auctlk", + "czfn", + "sjobp", + "zamqcld", + "pwbj", + "ifmajb", + "vnmz", + "whiupn", + "kjnsgec", + "njsoql", + "rhaxsfb", + "cpxk", + "ewkrv", + "tfarzun", + "tjwd", + "kcjx", + "uwfvtjl", + "azhqgsm", + "dnpkbl", + "bqlx", + "aonfrt", + "giskbf", + "kcepzx", + "wnsyoxm", + "wbxohly", + "dpjv", + "wyjgkhe", + "xlohcf", + "uonk", + "fhgup", + "ikrx", + "mowt", + "dxrue", + "onbk", + "afvxlhz", + "futsx", + "korfqx", + "xney", + "bfjlm", + "lyis", + "fokbr", + "bgidr", + "gulc", + "vhdapj", + "terslkq", + "jkcdnm", + "huyr", + "udzyi", + "kecz", + "hieopan", + "hxpmder", + "iaymclk", + "qmegtl", + "rzbufa", + "empodkf", + "ksilw", + "ayqv", + "sipacum", + "hgmn", + "alex", + "qctrxa", + "rxbks", + "txiwrq", + "iuvzat", + "lgfseux", + "nehwj", + "ohypz", + "wxeiqpg", + "ihsnem", + "mhnlz", + "rowdyqj", + "kmqd", + "oilvys", + "mhklegn", + "mpli", + "uafys", + "iarv", + "lzmck", + "aofcbki", + "xewhu", + "pzkg", + "xreoh", + "qomvnj", + "sevbzfn", + "tqgf", + "pneck", + "avyduzb", + "yqavswk", + "hpxt", + "gtqsvlm", + "hksfbcl", + "skal", + "obzk", + "fzcos", + "rigbv", + "wzes", + "noutc", + "dfnca", + "unzhaov", + "udvsk", + "eahcu", + "apdusfj", + "zihyko", + "irdn", + "opgmwx", + "ojxylkm", + "ryjgumi", + "urnze", + "frplobi", + "rkenu", + "fjxdcv", + "tqoc", + "ygcztj", + "evpiol", + "vdez", + "xtrikhq", + "pcru", + "whcaovu", + "sgqt", + "dayw", + "xuhsi", + "icwa", + "bztuj", + "rvwe", + "qcws", + "ozvin", + "chzqvg", + "dfbn", + "wnyq", + "xzphg", + "epnvbi", + "vnxel", + "cdztk", + "owlh", + "txfo", + "epsb", + "adgvq", + "ptngxs", + "aujk", + "iutm", + "himgbnf", + "wnxphv", + "zyqc", + "ekvdcr", + "rxegzi", + "jxnavf", + "urmla", + "xjgi", + "ljkp", + "uwvi", + "soln", + "gensjc", + "lzcv", + "gfzjch", + "iktvezd", + "teri", + "gnikjl", + "xuzvg", + "ygdwol", + "bvrjgm", + "xrdh", + "ijafuq", + "qngedls", + "valbp", + "bkid", + "ytlenw", + "rgkcj", + "jzromk", + "carbp", + "twqm", + "pquavb", + "hjiq", + "dlurayh", + "qgfmi", + "twdoczj", + "novga", + "wpireh", + "xjofscd", + "noszrk", + "pkohq", + "dinrkm", + "lmrtcoa", + "jbnrzmw", + "wilhmcy", + "xefvz", + "jfdbkh", + "xoyqu", + "jfpxcw", + "arqi", + "rmqcpve", + "azsdj", + "zvpbk", + "ydwf", + "eilyp", + "dhluo", + "ncftv", + "tuyfq", + "yeqo", + "karph", + "jovr", + "uovi", + "denavyq", + "jtuz", + "ifoxqtr", + "qwrayhv", + "vtnwy", + "nytqx", + "sydem", + "rjyg", + "vgnraj", + "hfxizj", + "isplret", + "tmpnzx", + "umysl", + "qgxskj", + "wlav", + "lvdxta", + "byru", + "owxrfv", + "fhjydq", + "pqkxfn", + "jdfy", + "bsymrtx", + "bjvlyt", + "hqzrdut", + "xltm", + "txoc", + "hwtu", + "patfysm", + "azwqvn", + "ymqrbn", + "udtnvwm", + "kvilta", + "yuwm", + "oyglae", + "sxkazc", + "tqxfhej", + "tdzp", + "jxghqm", + "sjxchb", + "beim", + "jfyopd", + "xnjamb", + "srel", + "yrblpsh", + "lpbkjd", + "ibtfdy", + "sgly", + "hndwj", + "ntuc", + "qezbftr", + "ugvfh", + "zahx", + "dtvai", + "kptyod", + "jcdot", + "vkrpim", + "aymwjsq", + "xngyu", + "bqmo", + "mvcrxz", + "xatykl", + "kvboare", + "gbfjq", + "fxwug", + "ctnvsha", + "xszg", + "ejtws", + "grchzl", + "xknt", + "lasiwr", + "sgoy", + "olsr", + "milvt", + "ehqo", + "bmziuyk", + "vkzm", + "cdbpeav", + "sjfm", + "ldxb", + "qmajecs", + "szmb", + "ekugh", + "lwbnij", + "rkwa", + "clhi", + "astd", + "bkdm", + "byrnj", + "tlnyi", + "zgpxkmw", + "mcvxpak", + "bafn", + "kcxuif", + "wgscd", + "nxqmv", + "qwfde", + "nqtzoev", + "opreas", + "fpkti", + "evhwr", + "mkxb", + "jyod", + "ckupfdx", + "zckbtx", + "tgmbwx", + "lhgwqd", + "wuom", + "akgu", + "gncji", + "tsjzher", + "sumgtd", + "zafev", + "ekxyb", + "iutl", + "ultke", + "wpbzl", + "nxqr", + "xnofu", + "ktbcs", + "lcxoz", + "cvonf", + "zlus", + "xyao", + "sgkr", + "yncgkh", + "tfieo", + "yioau", + "rguawp", + "trxwj", + "lpeafyg", + "tcjpwbs", + "tngczq", + "zduq", + "flze", + "jzwp", + "odbx", + "ldpksei", + "wiafvo", + "wpgvb", + "mpcl", + "dvgh", + "zbwcxm", + "axio", + "joitr", + "lpwg", + "roec", + "moxyzul", + "ulyvig", + "npxfskr", + "four", + "vtxnas", + "xfjerd", + "gvtxi", + "wdybxmi", + "jzgnd", + "qtyv", + "gvas", + "czjftr", + "qklporg", + "tqdcju", + "ahog", + "ovbq", + "lfjihts", + "pfugld", + "sgrl", + "vweanjf", + "kqgbaf", + "udbkg", + "mqlzgu", + "xohfy", + "mljubi", + "nwaz", + "msjoqfy", + "dmctkw", + "mjqlb", + "uyaqe", + "vjhbpg", + "devly", + "mckb", + "acbzusx", + "apqmkb", + "reubov", + "dvjcbmn", + "zwtsdc", + "dqlegi", + "ndomjap", + "epab", + "vzblj", + "ynqm", + "tfewb", + "zotv", + "vqck", + "suqti", + "pxtvanm", + "oyrk", + "bcgqnu", + "fishxr", + "vzbiux", + "hqcndmu", + "woxuknd", + "gzodr", + "dmjoge", + "bcfptls", + "ghrv", + "hvukp", + "ychb", + "nvxq", + "gsmvz", + "jdiaz", + "tjavso", + "jehagy", + "xvequ", + "mvuke", + "jpwd", + "xcifm", + "tgzsuni", + "sypfneh", + "trmj", + "idjuaqo", + "fhindcl", + "kgeqczf", + "erpu", + "ayui", + "qrte", + "phtdw", + "wduzlmj", + "fmwxu", + "lired", + "aocrxb", + "cjkytob", + "zaug", + "rsct", + "nzels", + "qxlbwgo", + "mxslrv", + "iwrpy", + "hlyjcqe", + "cdhre", + "fbhv", + "ubxrivh", + "ihuz", + "jcgnv", + "xkela", + "oqghdk", + "aducoti", + "fzetkb", + "qlxm", + "gnrfyhw", + "gbxhtzy", + "lyaxf", + "tjnhz", + "xtkqp", + "bzmrtvp", + "nvrq", + "qtjfkhy", + "dcoz", + "hmpld", + "igjznmv", + "okevbi", + "ygfhxd", + "jhyifmu", + "fnqw", + "vlamhs", + "ucib", + "qsbw", + "zgdap", + "dzigwxm", + "flob", + "tpbko", + "aihvo", + "dlanjxt", + "updbr", + "tsqoxp", + "hyrd", + "xyst", + "mvstu", + "cwrgk", + "dostmwv", + "zgehwu", + "njyi", + "pina", + "wlgivs", + "hsnqg", + "sdcpfi", + "rextcy", + "vagqfx", + "eolg", + "iybtos", + "cdlywj", + "pryw", + "oimb", + "tmsuvf", + "fktzhg", + "nvhbk", + "gpvtzud", + "qdhvz", + "zvcarf", + "ahrkcj", + "pzfuxij", + "zxnseiy", + "wbcq", + "kbxuye", + "uzml", + "fplmo", + "afjzb", + "agws", + "rnyavfu", + "vnubwtk", + "azyvsjh", + "cugkbi", + "siahuko", + "quril", + "dtpf", + "gvwzlqu", + "ckpflaw", + "hknzeq", + "uaiq", + "sfely", + "neya", + "fntahi", + "geapcn", + "vrpqcn", + "gwlyjt", + "uzwkgap", + "vbhwjna", + "rmhbndi", + "dtbqhe", + "gekzjna", + "nveufpr", + "mlkprqx", + "nqreij", + "zgsdye", + "heyfsjd", + "jzgsy", + "xcewi", + "yrcat", + "xakljn", + "lnqc", + "mcjzhfi", + "xwefui", + "rwaqkex", + "unlmx", + "dljthb", + "qxjtprz", + "oubcinq", + "lpqcy", + "dxzqjk", + "icfl", + "bnjypz", + "rhlki", + "phymiel", + "ugkqr", + "vkdezsu", + "ymzeon", + "ojcd", + "pnolv", + "zjti", + "wypgu", + "nixeqt", + "gzrly", + "srwpa", + "ecwzr", + "gzxdrn", + "tonu", + "uvnrsa", + "ovfyx", + "rvhdp", + "monzkbt", + "dylvb", + "nzxkv", + "outm", + "qwuknz", + "jfnz", + "qmuk", + "jrxf", + "gqtfhs", + "ctulgv", + "lykbwoz", + "szejfr", + "dunrt", + "urbp", + "gpejq", + "bpzorek", + "fwdm", + "auhtm", + "lzgkcbf", + "oxucfhj", + "tjum", + "kervqz", + "wqgnc", + "wvbhi", + "htifa", + "hfrcot", + "bpdlnwj", + "xlhpnq", + "ovnli", + "txdvnk", + "texc", + "ezxan", + "poucfk", + "wyzx", + "tgqpzwi", + "kvxuoi", + "olprxe", + "npqhj", + "shtpoiz", + "oqyu", + "ruifs", + "cizrftl", + "ixru", + "gjcmw", + "ujqickl", + "heazqti", + "gcorez", + "evowrfd", + "lfsx", + "wjxclv", + "yqnxos", + "yojzblu", + "mrbw", + "tlbn", + "iwydvu", + "pwhds", + "aufsrnm", + "iztbles", + "fcgeuj", + "keljar", + "qaewtxy", + "jkufcl", + "dtjrvi", + "xkwtm", + "bdrfsuj", + "npxvzoa", + "oleyigu", + "lohqyuf", + "hkmvxps", + "stzwe", + "egpxf", + "sencub", + "whcmkn", + "rxasfj", + "qenki", + "dtop", + "rlbxy", + "twhcsn", + "geqmlz", + "ipqg", + "oqck", + "bzxnrvd", + "kqnxh", + "ufga", + "vymbi", + "sctyg", + "ltrayz", + "cmtsr", + "qxdzrhv", + "srihgj", + "mhgoutl", + "pcawk", + "ohmw", + "ubatx", + "lzwvf", + "zjbm", + "ewfi", + "olsj", + "xhmjd", + "nfval", + "lfjcdog", + "zrtb", + "ufrqnls", + "omgyzqa", + "evdyk", + "ukxbq", + "azvsle", + "eyzlfx", + "kymbzcd", + "fsxhjk", + "tgzwo", + "ecvsk", + "hrapv", + "ewckuas", + "pahmb", + "uzervdm", + "yesfh", + "vunk", + "vspdha", + "ixryub", + "joac", + "dpmusk", + "oinubq", + "ziuq", + "zsxuboi", + "zjlf", + "esqt", + "pwgfxhm", + "veyqhsg", + "xrms", + "ngsu", + "xfavwp", + "bevgdf", + "kxaqoh", + "qxjzi", + "dnwe", + "htmoj", + "qrkeflh", + "emrkl", + "xwcd", + "lewnb", + "umyteld", + "rtnf", + "znwgtla", + "ypmo", + "slohq", + "pobgwad", + "giavy", + "ylwo", + "itxe", + "datlj", + "jarpnxd", + "idrvp", + "pyxnt", + "combs", + "dkteug", + "fxyspo", + "wqgxe", + "yuvrfh", + "gqfmd", + "hwosbp", + "nbhpos", + "exdqkj", + "qwajxk", + "gokcuz", + "rvfckx", + "mkxec", + "slbw", + "awubrxq", + "idwhel", + "pvcw", + "ajzhmb", + "yfob", + "egin", + "dzwku", + "fczm", + "dogyqv", + "fpvank", + "qkoa", + "ruhdgya", + "vtdlrif", + "xsjd", + "uxrvdg", + "euqomr", + "mupg", + "mptoze", + "omtjq", + "hqmkt", + "vfnqmj", + "hibzew", + "wzhcos", + "wfami", + "rumpg", + "xfdt", + "kwdeh", + "cpqta", + "atrpfx", + "edlzitf", + "fekyanv", + "gjckprd", + "ztrmfu", + "xgtprl", + "ljgpam", + "jnryqf", + "mxubako", + "doxksnu", + "acyzswq", + "ojumrp", + "yrfvjbq", + "smcazwr", + "qujn", + "lgxunz", + "ksnvbzg", + "mrhpuq", + "lnovysw", + "omae", + "ljew", + "mwhnoy", + "nyov", + "nerbco", + "ljsou", + "ykzsove", + "zfyiam", + "dfhq", + "bfpe", + "bnyx", + "ypecf", + "jdvt", + "vrqjaxb", + "cvgyas", + "jrigbk", + "wodmpj", + "deqlu", + "frculeo", + "lybcm", + "ayxtvc", + "ufxbdt", + "izlosvp", + "fmyhde", + "tmerchz", + "ytgw", + "ceuzvt", + "etmlyx", + "oqfwciz", + "wzsunbv", + "zpmjqr", + "ablj", + "jhzce", + "lqma", + "nuwqsvz", + "ubckng", + "oyrflx", + "uhyiaz", + "idjmx", + "fcyhk", + "ojkzvgn", + "tmypg", + "qpxy", + "kabyfx", + "hsdbz", + "hbnzoiu", + "melfo", + "zmkc", + "bgjwtzn", + "qokmeyn", + "uxrftqm", + "tlvmijc", + "mkcbiv", + "sbtkyc", + "dkvc", + "hinu", + "gnqh", + "ikfhmbg", + "umwhia", + "jealfs", + "vwdy", + "hyudb", + "kcvxfzl", + "gtsimfb", + "chdxwgb", + "mfsob", + "kyvsop", + "heamqyd", + "mudql", + "gwabs", + "iblof", + "hpfwvq", + "uepasl", + "dhcj", + "gkfvw", + "pjzmc", + "hnmqzki", + "fyzxg", + "cevwa", + "yxbnta", + "omdr", + "fxeo", + "zqdnv", + "oxulc", + "skraxhd", + "wqbmar", + "lyjatsr", + "cznu", + "mqjhck", + "dcolrn", + "enamv", + "qlepvu", + "fvujx", + "ogdqlkt", + "jknx", + "fzseo", + "adjwp", + "dsrywp", + "gzsrlv", + "kinldvz", + "wyqd", + "ovwdmz", + "lenijw", + "wyop", + "wsgakxe", + "cdhuq", + "iywflk", + "qpkhdl", + "xuos", + "hlze", + "gfiek", + "fcxyp", + "dofb", + "dmcux", + "hkfng", + "nmgbycp", + "ewdfvnu", + "xwqtb", + "bkzjxpc", + "kxvtciz", + "bjwhzm", + "iqxomp", + "pkqh", + "plwgzf", + "pxqehiu", + "khuv", + "phguys", + "yrwej", + "dxwgtr", + "ykwfn", + "yozs", + "uwrhims", + "scdua", + "rlws", + "leonj", + "udzxqr", + "khqgmxf", + "naxup", + "osaxlbj", + "wiqsdl", + "crzmf", + "efaktq", + "rofy", + "hngjdaw", + "buiv", + "ojkta", + "ephuzkl", + "foazr", + "frhgzlc", + "visxqw", + "znracd", + "hjuxl", + "kxgazur", + "thgojka", + "rodxty", + "ndjeo", + "agxit", + "bilnh", + "kogh", + "vonjmkf", + "cdsliak", + "pajd", + "yuzxpet", + "srkhj", + "qrdcxef", + "wztdj", + "bqsaf", + "xpwunbl", + "wgfqi", + "zckn", + "schol", + "mjrhd", + "shguo", + "ilqm", + "mkni", + "dujft", + "eoatx", + "jgixehn", + "rqymnd", + "jnds", + "hosqunv", + "cydnea", + "crnghje", + "mjyw", + "jeysz", + "dltauyk", + "slvxurh", + "mgzdlv", + "wkzdhrt", + "rneqfmz", + "jxbqz", + "oaftnbl", + "htlkz", + "yhwkqj", + "sxrgkpl", + "egmbrtv", + "ayvhbtz", + "fxyil", + "avuhowc", + "rqvbza", + "mjqelr", + "uxydh", + "opcbhu", + "oiyepkj", + "tvbmd", + "fixmo", + "vypx", + "rzuxovq", + "wrzkf", + "ctyrisw", + "uygxzjb", + "xdeibny", + "rktfjqw", + "umobzy", + "geyjipw", + "psbv", + "hgzfex", + "anut", + "xihw", + "qsjrzx", + "jmcp", + "isnlmwe", + "nymcqhz", + "iynoqmx", + "fyha", + "schxmlo", + "ogbaikn", + "vzxhgfu", + "yehx", + "vwpatq", + "xkpw", + "ivqlzg", + "lfqrnj", + "kxqz", + "kpers", + "rhepi", + "kxqfi", + "odln", + "lnjk", + "kxpdmo", + "mgdksx", + "naifbc", + "azfxqy", + "jemnf", + "lvupt", + "lumfx", + "akqtnlm", + "udnsoz", + "kacnmtj", + "ozwmrtx", + "qwhljg", + "ktbh", + "wrdnt", + "npkex", + "elbwjd", + "ptads", + "jolwxe", + "zxgvi", + "zswf", + "uzqmtog", + "lepjsu", + "ebdn", + "nmwqgib", + "cdmbhsx", + "cykmp", + "xgsalb", + "hbuwgr", + "tpwd", + "hbioym", + "izjawqy", + "pilvkd", + "ueatg", + "zsitfxc", + "wbcjy", + "htfvql", + "emofd", + "ondgs", + "jrifaw", + "mavefzs", + "pexmfni", + "lmjr", + "dhes", + "wuxtar", + "eajfz", + "zbeayp", + "mghcdvt", + "keyvs", + "hbwuvef", + "mktn", + "mzyrn", + "slaejy", + "emkcdgt", + "ovszxpt", + "mykzt", + "fuoctdn", + "arogn", + "vhkct", + "jclbzat", + "fnjt", + "tpgvh", + "mxqnu", + "fsjtex", + "hrbix", + "hksry", + "cgnqyua", + "wgnfk", + "bzhqsg", + "evjtmk", + "xzoefsb", + "espji", + "obrjdlq", + "mhtzeg", + "xsdgnp", + "tjabi", + "oylgf", + "lxymcs", + "guvni", + "bqav", + "iejsmb", + "pejrg", + "ifrclvx", + "bzvfits", + "qscjzh", + "yagxiw", + "hagzp", + "zsxgilt", + "sytg", + "zocte", + "ltpchx", + "eiujtro", + "nqea", + "sdflajg", + "ceuy", + "yqxhiuj", + "pnkq", + "gkiqnrt", + "flqmysn", + "kmng", + "inqd", + "egbhrys", + "lpxe", + "cqsg", + "tbeqaxp", + "awifrh", + "yext", + "efycqm", + "yaot", + "yerohzm", + "vnfq", + "hvepxyr", + "fedly", + "uskh", + "coker", + "hntgwu", + "ikndtow", + "jsmvu", + "lbnxos", + "aipk", + "chyeuj", + "xrizdy", + "dtgosk", + "olgzsb", + "zswxcu", + "rmogabq", + "tzxr", + "flwh", + "vhlk", + "bsuwzy", + "mcqp", + "mdqc", + "hfbs", + "xnmsoyi", + "nkzt", + "uhiego", + "bvnqemp", + "kdziv", + "auzm", + "lpfhmj", + "jvqfith", + "konhuyw", + "bhxzdf", + "mxof", + "yulrnti", + "sagwhd", + "hqdgwo", + "sujdokz", + "aljip", + "qzoksu", + "itgohmy", + "lousn", + "tpmngx", + "hcyz", + "zvxsqig", + "qkvcxlu", + "bmwnxfh", + "zilyoca", + "cvgtmeu", + "jmfeka", + "zgmxq", + "acexrjg", + "cmhen", + "cpwtni", + "xqgy", + "vngm", + "wcrn", + "fperh", + "jkvm", + "xlvqk", + "zlwba", + "rnsoy", + "nljtxze", + "nrpma", + "xwyou", + "axyj", + "wahzxf", + "xushnz", + "cqak", + "cfbmnro", + "bqeufis", + "xbwuimc", + "qltgycd", + "rdkl", + "dzil", + "bgwlf", + "uowxtn", + "rhosb", + "qfucpvk", + "ajoglt", + "oeaxk", + "jdhgrv", + "irdthy", + "jxub", + "gosf", + "atsy", + "mqxwjdt", + "zjrh", + "chax", + "awhxkz", + "fskacxl", + "cbwsayx", + "pmybaj", + "dvwylpe", + "dshn", + "biyqas", + "ynehql", + "klydna", + "qnbgxzp", + "tfjl", + "ahcmok", + "nledyh", + "uqnlxpd", + "gvqdi", + "xbjr", + "mrzjevh", + "iepwcu", + "ibuwoj", + "bjghu", + "dyapjw", + "bizdt", + "rhpl", + "rpjwoa", + "iehd", + "fkhgq", + "xcmeqt", + "ctiky", + "nstqjbr", + "fvimac", + "ontleyi", + "hplo", + "ylevn", + "gbkye", + "ldhjt", + "kfau", + "wcrjm", + "bvngdt", + "jhndqy", + "cvfph", + "otfhsiq", + "liwhcyp", + "cdybqv", + "dpqxmr", + "eqab", + "kijue", + "kifopr", + "jayutzl", + "abqcnet", + "tsdga", + "bjmxy", + "cbey", + "twszguf", + "nfacgl", + "nqzkfig", + "szat", + "exboz", + "udnyqcs", + "orluf", + "cxvb", + "zldwi", + "fcrs", + "rtks", + "aqeuv", + "khvyt", + "ocmgjq", + "xhsza", + "gfecnus", + "kebt", + "mjdue", + "uaihfo", + "ejyd", + "yutzmp", + "ipras", + "ybmr", + "lzvthm", + "putebhr", + "aqko", + "hpdi", + "adkvh", + "itamlv", + "ygtnvkj", + "qcepl", + "nsce", + "adbx", + "oapw", + "iexa", + "ioan", + "ocag", + "cjxh", + "aqehdo", + "qmbnfwe", + "bioht", + "nzqht", + "podbq", + "hywcmue", + "wrsci", + "cojnwvl", + "nfoqpwy", + "hgqv", + "ciabko", + "fleb", + "deigz", + "yjle", + "jvglq", + "szogilk", + "isfvyz", + "cfxqm", + "xbhej", + "kzwradx", + "kzfu", + "noxld", + "xcpaywb", + "udvbg", + "ywraejn", + "bnhqfde", + "ltoc", + "tzdhcvj", + "owxczy", + "obzeys", + "gmqesk", + "imzn", + "qhen", + "lhyb", + "nsuficd", + "hkun", + "cxsbg", + "wojtx", + "buqya", + "rsthb", + "mpbt", + "hret", + "uwhd", + "obdqlt", + "kxjl", + "nqubrp", + "tasnkv", + "vujtw", + "triu", + "plubdw", + "idpb", + "rqkvo", + "lfej", + "utzy", + "aerwyu", + "fdkzxhq", + "rtxkal", + "nbjd", + "wlypkec", + "rjqmdwh", + "finr", + "aedxvmq", + "gmjxkqz", + "dkfipmg", + "jsphdcv", + "gksrcmq", + "jrfdhb", + "mkrydu", + "akog", + "axfgqc", + "adbsmoc", + "ilqrzt", + "olxmdyk", + "qcsfg", + "smtdk", + "rmda", + "ralhimc", + "duro", + "oxcpyw", + "ftknc", + "comjgn", + "mgxrcji", + "ptbs", + "izuaml", + "yrdqzcg", + "uxtkf", + "hojpeu", + "deug", + "lcfy", + "qucpt", + "vlbckeo", + "qxlf", + "liwuga", + "mcfwelp", + "danyqt", + "shwgok", + "fmcldp", + "vtwcep", + "bdycng", + "ymtipcb", + "tpjxe", + "brfwkn", + "lute", + "znghadk", + "ngdvo", + "uwmscz", + "woly", + "rouhdaj", + "drht", + "felos", + "fnhd", + "xobihug", + "uyki", + "qxkjen", + "xrhb", + "zrevfgc", + "elbwuk", + "zujnq", + "bndaifu", + "bjpq", + "kdwezv", + "fusqo", + "xawsghn", + "uzlp", + "dsbeov", + "pkqmrxy", + "spcve", + "gbwpc", + "wvxf", + "pyie", + "vecdf", + "kzegbh", + "aeknrm", + "pgsaub", + "tibg", + "nrjqgw", + "wjvsyog", + "gjpmayw", + "biuad", + "sbofptz", + "tycsalf", + "vfnrba", + "ekldv", + "gmsb", + "epxsoda", + "cngbls", + "ligq", + "bhym", + "lemk", + "bwxzidp", + "xozrtp", + "mbcv", + "vlqewd", + "pzai", + "zgmucyx", + "xktauz", + "qhyd", + "cdpqo", + "qsmtbxp", + "iavl", + "hduwf", + "vujsap", + "byjcgqp", + "puqkt", + "hujisqa", + "avgmok", + "rtnedvw", + "upjncsv", + "qkjl", + "pqyox", + "nvqm", + "mulfcr", + "ubqcyae", + "cexwlr", + "kzdop", + "ezowium", + "lfpgtks", + "shdon", + "qedthza", + "tengsvw", + "neiywjl", + "bxyela", + "ivdte", + "pvjyg", + "xasi", + "orycp", + "lcdx", + "stocb", + "yxnt", + "gjvh", + "mefsu", + "xoumbr", + "kzqthcy", + "nmzxecs", + "tmvyrxj", + "gwhan", + "zlajsy", + "jufq", + "tjebs", + "rwvfcq", + "labuv", + "urqtxw", + "svour", + "fulcgh", + "nzxhtd", + "infwqya", + "jsxq", + "hlxqgfa", + "kxseu", + "dzbskn", + "tlvd", + "xrhizy", + "iwzv", + "egapmuj", + "lbzor", + "bwvpex", + "lvjz", + "tkdvr", + "majyncg", + "fbwoven", + "lvuqyt", + "lxqtph", + "ukcvhp", + "gwdrejm", + "ebmju", + "oqjk", + "xfic", + "lhfjw", + "trgxofk", + "fgiwqx", + "gmwcsvp", + "hwvaq", + "wejropz", + "pisq", + "nlea", + "ftpgzl", + "cbdx", + "ofdri", + "ckhwsq", + "nazdpg", + "pwlr", + "xwrt", + "iwca", + "lwto", + "jlyfdtx", + "qzwxnr", + "xmwnvut", + "eyumtip", + "nxbmoe", + "pocdy", + "ryne", + "ckvtlzd", + "puir", + "uowzm", + "pyerdq", + "lwecp", + "cqmw", + "xfghmur", + "jztep", + "deztu", + "cuxykz", + "eqrwk", + "ntrlgs", + "rmnfdht", + "qhua", + "narjmcz", + "ypoz", + "gotdq", + "fajzhc", + "lzpafhn", + "xjkayt", + "opbge", + "nfosgu", + "geuc", + "xfhu", + "etnjomf", + "ykrbuh", + "sicaj", + "solayun", + "ulwe", + "itjpq", + "ytazxnj", + "xdvr", + "fazijw", + "cywfktl", + "qhdzv", + "zexuj", + "ehyupk", + "lqfucx", + "psvemtx", + "rieuqm", + "pzgamw", + "fhwp", + "twgkyin", + "lrsnmyi", + "awxks", + "tnzvmh", + "eiuqagn", + "qcywg", + "kucmaqj", + "ibpmzh", + "qowh", + "twryl", + "cxfs", + "jgfatz", + "hoyapmn", + "rliqv", + "cbjkl", + "xyzcms", + "fsdxer", + "ltgn", + "fexjo", + "gbcj", + "gcpb", + "yudr", + "ilmqntb", + "audjok", + "xlav", + "jghnszr", + "lrhat", + "imezb", + "waei", + "kzlea", + "dpamqbg", + "cpjhmds", + "azni", + "rxcetu", + "nhmwj", + "loabxde", + "hmzvew", + "sbxg", + "braq", + "fburni", + "duwicqz", + "kzsyo", + "fxnqve", + "rlbyn", + "junbq", + "pifzbxj", + "glbdoem", + "ekix", + "excwgp", + "yndx", + "kzclnj", + "neaiyws", + "bztnulm", + "twkzdnl", + "oxcdrmk", + "zoyxqv", + "vubq", + "hqzbw", + "oual", + "fzitv", + "avzp", + "jtyg", + "skjlgi", + "spbangz", + "kvysw", + "qrbxv", + "mxdnv", + "hziwsyx", + "tkrxmlg", + "jvmeos", + "xqryvld", + "ewiobh", + "mxkiczv", + "gbzq", + "lubvhj", + "xakfozi", + "agyj", + "tsqb", + "rjac", + "rfcuvmg", + "nsyuzw", + "axmzcn", + "tanjgh", + "qecsxkg", + "kjiewov", + "pqxfunl", + "pzdrij", + "xwrj", + "spcv", + "lewtc", + "xrfgpt", + "qvupwcd", + "izoflc", + "syrgkf", + "nplfga", + "lzcqxy", + "ukqg", + "ohreal", + "uojiymc", + "lxgf", + "ixqcu", + "zgvo", + "dmnki", + "olrsj", + "tmrzu", + "agnkm", + "kfnuac", + "zekophx", + "ibwg", + "fbztjie", + "mrdj", + "tvrjmd", + "vxcytno", + "ngtxd", + "xhvjepf", + "fhaelb", + "dqlijyo", + "zqmw", + "egmxc", + "gpib", + "igre", + "xbmlwp", + "pcgh", + "rpegksq", + "gizkna", + "saqz", + "yfohl", + "upqv", + "mtyczd", + "kvezub", + "sevkrd", + "edltm", + "mfgjhy", + "jfle", + "wnfqo", + "ympzfdu", + "suba", + "fkpncv", + "jewfs", + "letmiz", + "pylhkd", + "xlneva", + "wmqb", + "atuwnx", + "powq", + "ifewd", + "waslc", + "ntrsu", + "fapm", + "hsyamr", + "hujogm", + "klmdnei", + "snthw", + "abgtul", + "kqrsf", + "uyjdkx", + "nuqmolh", + "xqewhmd", + "ijfova", + "ohplcdj", + "hsntldw", + "djfeyng", + "lirb", + "fdvqsxm", + "nvyk", + "ulfx", + "rylpmd", + "fzrxq", + "iahyo", + "pqnou", + "vclqfgs", + "lwyhgzb", + "otsbwci", + "donpmv", + "uwroj", + "xhuna", + "dsbq", + "yhzxmju", + "bpcjd", + "isucm", + "yglkq", + "cofq", + "gwhctxl", + "jfmk", + "tzbkw", + "rqna", + "mvktis", + "oepn", + "nyeb", + "vhldjtf", + "eklgx", + "bgec", + "pfzski", + "sgzy", + "kdwhjis", + "wnzbd", + "unrqjp", + "kmozsht", + "yfwrozg", + "imyp", + "opkd", + "zlyme", + "lxvr", + "kgljbw", + "pieg", + "wvjc", + "gdeqz", + "wmldir", + "ugcdeb", + "ougjmlq", + "czpvwf", + "czhqpr", + "zxeyvg", + "aithe", + "qvayw", + "csldv", + "ybxw", + "tmvoa", + "shoce", + "tgbfi", + "anzl", + "mvur", + "qjmwox", + "zijkb", + "xgznibe", + "kqdsfzr", + "nfdmaqw", + "hfyc", + "jhcw", + "kjwcx", + "ikjbuc", + "eslgqmz", + "sifdn", + "kleyc", + "xmoaup", + "tedznkr", + "rmxnodj", + "ajnzw", + "mbqvitx", + "degsiov", + "lfhisp", + "lxung", + "mcwxiuo", + "zuri", + "cnkjeq", + "vwbmger", + "kzeghc", + "ltyxq", + "pkrf", + "glve", + "jqzae", + "dcex", + "ykimej", + "fgrqayc", + "wknsbpc", + "eojhr", + "urzmebx", + "xfcb", + "iemk", + "hsutrqn", + "ighq", + "uvdo", + "tshl", + "gnwrp", + "vzrc", + "vdeqph", + "phxay", + "ekvrw", + "jtyv", + "ynaqsd", + "vocqp", + "uywzv", + "lbkc", + "deomcz", + "nkbvjqx", + "tsmxn", + "dwpstz", + "nrvza", + "eiduoz", + "ugdepz", + "gdhincj", + "wkmlnb", + "fjqcvb", + "zoqtgk", + "eotu", + "kmul", + "bitzav", + "gsfed", + "hrvzt", + "teuvioa", + "jlnb", + "aijlmdt", + "gekhajs", + "kvmy", + "ujbnsz", + "uwdj", + "ajkn", + "imvxa", + "lpuh", + "jvwqorf", + "hsjxkm", + "odrvsuw", + "ndjwkvr", + "pyft", + "hkscuon", + "gplkdvb", + "gfqpazs", + "ozsveq", + "pnywd", + "cizokx", + "rmdxlu", + "fcsxan", + "paxwm", + "yaouktj", + "eajzvl", + "jngsqv", + "dyza", + "bsyxme", + "bgaldhs", + "fkshmeb", + "wnodjxf", + "xohei", + "cbywazq", + "vfihtp", + "kqhowbg", + "uzdn", + "pfltkom", + "cakhmlq", + "oikt", + "ruyds", + "zvlyg", + "lqoitsv", + "bzqjygn", + "mhkfaw", + "rmilx", + "huitols", + "iomlps", + "zfkip", + "xzhg", + "snmgwc", + "ptla", + "fcldakx", + "ibnxods", + "nvya", + "bacixrg", + "xevnh", + "pxhgzm", + "qelngyz", + "pwhr", + "khnucl", + "thynjp", + "ozwfakv", + "ybgcuh", + "nspre", + "bqpkjo", + "dabsnx", + "qpxbol", + "lmycjf", + "wyzti", + "nbezw", + "imaqdb", + "ciezh", + "jmhn", + "cjkan", + "sniwocq", + "cqvobfg", + "bjtlago", + "rnuge", + "zwvx", + "evtahf", + "xfvdi", + "dmlynx", + "coawihd", + "dqyfs", + "lujhd", + "icblqgu", + "zsyjxrp", + "xadub", + "feklmis", + "pvcw", + "toxsgvh", + "vbkgjfu", + "ntis", + "kxjhieo", + "vbdmyko", + "ckju", + "gcoas", + "gxdyfqe", + "hltiapx", + "jqmp", + "vxzhyof", + "cidqmzk", + "zpqryv", + "txgnye", + "gxjyf", + "ljxtpwe", + "ceylhz", + "psbmw", + "ntceod", + "lmcsdn", + "lenbfhx", + "byidn", + "mlecno", + "pqsrk", + "pudgrj", + "tkdx", + "iqhjrm", + "itkvs", + "zejvfnq", + "gkortd", + "iqjhkr", + "tkhjf", + "fahpme", + "yodveu", + "lpjvorq", + "tyax", + "hfql", + "enobjid", + "jwizeor", + "ozveylq", + "ltng", + "vlksitz", + "fnotrdw", + "tupgra", + "slvtum", + "fhkulzc", + "xevznla", + "sxiru", + "mnqkdvx", + "jnkgv", + "mpwi", + "qmvkoz", + "hdfuok", + "untwh", + "rwcxdet", + "ksla", + "kletu", + "ghoa", + "nhlqbws", + "gexlckf", + "pvjuhm", + "symkah", + "wuvj", + "idxcowr", + "jqpdm", + "miczsb", + "fvayxwr", + "enzj", + "fewjn", + "vsjopwc", + "qtnp", + "vydusag", + "txcmf", + "aqxj", + "igekn", + "ezougk", + "yioz", + "jcsqlkf", + "htckif", + "uxvirq", + "ehzscg", + "fzmuxe", + "gdlurf", + "rqwvt", + "xmbci", + "hjefi", + "sckiy", + "kdqb", + "xkit", + "qdcxm", + "vjnqzf", + "nivdb", + "oxpcn", + "nmpuv", + "xdzpo", + "bwxdkh", + "urijpko", + "twph", + "jpvz", + "eqmhx", + "whukix", + "jfdiyz", + "lkpaj", + "pjsu", + "xdgw", + "lnrs", + "geyqoj", + "fzqnt", + "kpejx", + "drstmyn", + "wjxvsb", + "blmypu", + "kejyhx", + "vmdricw", + "neftjky", + "byevgch", + "vytaul", + "fskrx", + "yzsj", + "xmvzpo", + "jsmx", + "txvzi", + "lzjym", + "iaufm", + "mjzdys", + "cefxqk", + "kfmone", + "znutyd", + "dkegu", + "vcis", + "nfzy", + "eotukj", + "spcvefb", + "lipduhe", + "ezltvru", + "mhfck", + "tpesczi", + "ypnol", + "lzwgoj", + "fanmdo", + "icmb", + "dnkow", + "wvedgj", + "xyojm", + "oxtdpa", + "bzawdq", + "pfjihl", + "jtos", + "kjnfr", + "yqxik", + "odtg", + "marw", + "ptxqa", + "rxda", + "keronfz", + "egqvfan", + "etqvj", + "ngqfym", + "drpjh", + "avjlku", + "tiqfv", + "fypsrxt", + "tehfqnr", + "kfib", + "plqciko", + "coqsgyd", + "kpysu", + "mcxt", + "xcey", + "fjckp", + "djitblg", + "jkbvow", + "mtnsvrw", + "imnyapf", + "zjcwrha", + "ftheos", + "cekxhb", + "dtruvho", + "qclhjp", + "dgjax", + "iztlhb", + "gqfdjxc", + "ymtf", + "jurgy", + "phuyam", + "zkimhyd", + "ktjmh", + "vlrb", + "defpbu", + "ngcdkxs", + "jgaqutb", + "maykvn", + "utrd", + "jtsyqr", + "wcuj", + "ouwn", + "rtjopl", + "sjouei", + "hbsgulx", + "hjpd", + "ofljv", + "iudf", + "xicjdh", + "gwcm", + "zevl", + "vceoq", + "trmnayc", + "deit", + "tfib", + "eaxot", + "jfaxe", + "quoxt", + "daslm", + "pviqsm", + "agiz", + "cboed", + "vhkqar", + "oehzq", + "tvslzj", + "ipkhyav", + "blioer", + "cwlsqnr", + "pmjdfi", + "cvruh", + "wifh", + "urhfc", + "hckvsi", + "shxtkyw", + "sqpri", + "myuel", + "tbgxyel", + "yzejl", + "hvask", + "lytacx", + "yrfej", + "bslkat", + "qctk", + "eghps", + "sgwnbfu", + "epvxdzu", + "xfcnut", + "jwvb", + "dbocf", + "xsyb", + "lwfdjvy", + "bqgvdu", + "qcndsl", + "cwdvoie", + "xiesa", + "xvzb", + "ulevicp", + "wfyar", + "eohq", + "ojzwaq", + "qalhzr", + "ademb", + "yaxt", + "jwhufe", + "pfusb", + "shopq", + "pvnwmj", + "fqyiur", + "ijseqxr", + "vnumz", + "pxmw", + "mkjz", + "blnupt", + "voiqk", + "tknshe", + "tfdpvnz", + "efjzpok", + "onvm", + "siktvog", + "vzpwike", + "cvszyjk", + "lfkrtho", + "egoit", + "vzaeq", + "mvaxuzk", + "rbwcg", + "jgpvc", + "syreu", + "plxsac", + "fsxo", + "kgvrop", + "pvomzfj", + "cjkorv", + "gmqo", + "gwxdat", + "yldw", + "zqlj", + "lpdifar", + "ycnhtdl", + "ubwr", + "bmjr", + "rgpc", + "xrke", + "iywem", + "zrmapwl", + "ofpxtyw", + "sgzvu", + "eblfzjw", + "hjis", + "wkein", + "uxji", + "ygrm", + "tjmaw", + "mxuc", + "rmtebv", + "zpni", + "pqco", + "ybejphg", + "jtaqz", + "qjhlep", + "seqzbd", + "bzpki", + "maougzq", + "raehu", + "tojvpwc", + "sfiamot", + "ojhd", + "uory", + "xpotqr", + "qpsijhy", + "lqvpu", + "odyxqun", + "qghdi", + "ftvk", + "oeiqg", + "hqxye", + "vxecs", + "pbyslin", + "vycj", + "crlhfvm", + "pznse", + "ucvdrhi", + "jfoxus", + "nbpmrq", + "bshjc", + "scai", + "cztiasg", + "mozbw", + "fatojv", + "cxezotg", + "mzri", + "ipnwk", + "erko", + "dretgb", + "sleawrm", + "ruhon", + "wiznp", + "qxfvel", + "cqkpmja", + "dnbawm", + "soina", + "xlajc", + "htgqkm", + "sxnje", + "hvauqyf", + "mzvyu", + "vhjq", + "wmarpn", + "rpey", + "jnkqy", + "lsnog", + "fdqi", + "wmbtdl", + "smhbkun", + "rybh", + "itpfz", + "rinayw", + "nctk", + "whgz", + "jikseh", + "ldmik", + "swtc", + "nrpxg", + "lkrmqh", + "ketfnc", + "gckhulv", + "kjaep", + "yrqepn", + "cpqgkz", + "etyv", + "ehvbisr", + "wjdl", + "sicma", + "xkrqtz", + "dhgv", + "yxqg", + "bzhsnvp", + "rcyx", + "acqps", + "vxotyze", + "xfjrnom", + "pxdkgtn", + "ihdful", + "kjznito", + "odrmfi", + "bpvozce", + "eczx", + "jzhdgx", + "hploga", + "xysfhr", + "acntvh", + "xmzh", + "byeu", + "mxbhgos", + "inec", + "kiwofeq", + "aojwu", + "rpsj", + "bgty", + "ezckgyh", + "ngcpavu", + "mqtrny", + "hydlczx", + "sqvf", + "oqesz", + "oalmewr", + "detrxqj", + "nomqw", + "uslpe", + "lhtsv", + "wkiy", + "bnwqo", + "ogwpcrv", + "ahdy", + "glxodwy", + "agciulv", + "hbxm", + "wlhr", + "ryspzo", + "dqsaxuw", + "gczrf", + "agdchqf", + "xgwzbhq", + "ihesky", + "uarybqw", + "xyhwn", + "ehlm", + "obpm", + "htubgv", + "efryomk", + "nexgoy", + "cqifvnp", + "ywfvtu", + "ubkjmrt", + "enkaoyj", + "urpmqtl", + "nlykpmf", + "hqgpoas", + "dbhymak", + "ectjvw", + "zolm", + "tfhl", + "cokzv", + "tyuedgw", + "cbyhpj", + "wkgap", + "mpsndc", + "rikwfye", + "hwcstz", + "cjbqxiv", + "lbyivcj", + "qzijkfe", + "sbyvj", + "mkvlxj", + "nufboim", + "pevur", + "gkie", + "obqa", + "fqihgnl", + "onqji", + "yavur", + "gbeydi", + "kvca", + "dmhzf", + "xqvk", + "safpoj", + "yhmatv", + "vljwy", + "xdsucho", + "hycl", + "bojimr", + "rfto", + "eoypv", + "wofhy", + "cvsfyn", + "xbyt", + "wcjm", + "tgzjm", + "ogyjiex", + "owrvzeb", + "dfrny", + "ifxludp", + "dgryvo", + "cjfwyh", + "hjnqoe", + "rksd", + "mnio", + "jdncy", + "nwgz", + "uzrdwaq", + "tcqdh", + "cxdthl", + "jomcyzt", + "hlcv", + "ymhpe", + "yoldwx", + "rkqxd", + "ywoz", + "uorxse", + "wvfgen", + "fyrohg", + "aqefjg", + "utzq", + "oplicz", + "amywb", + "gsjy", + "kfxmq", + "qpye", + "jmhxekf", + "bzhr", + "ovfzrcm", + "hxspwc", + "fneyua", + "iaknb", + "wjsohun", + "bkjeo", + "zrdtmow", + "oqruxik", + "klusojz", + "kuqrxve", + "fimulyt", + "hpozrf", + "emfuacz", + "kdvgsm", + "nzmfctx", + "fnpktio", + "wqabsxz", + "lefs", + "pmzkuyn", + "beqd", + "gxyj", + "fqlv", + "erfb", + "viebf", + "jlqaer", + "ulbq", + "uxwctfd", + "pxkmiu", + "knvufpa", + "qifbxl", + "nrqzpb", + "wdsibng", + "auxreq", + "emhcp", + "jocura", + "ebzqnx", + "lvabwz", + "hdyz", + "ujzgqkn", + "yhpow", + "lowzds", + "jvqs", + "afjulkq", + "zgme", + "lomdrf", + "xjonm", + "snxctwi", + "tyxp", + "iymw", + "hzrlwv", + "dnwy", + "jnuebw", + "ozwpcs", + "ucmer", + "wdhav", + "zvpt", + "rfsoy", + "ezycniq", + "lsnoehp", + "urmysa", + "ysvtgi", + "lvmftu", + "mrex", + "egqvx", + "nvgpfj", + "zvqal", + "lvrqu", + "repba", + "kwygv", + "vayztd", + "wryijm", + "juxc", + "lvjcdk", + "fbioqy", + "jukvdhr", + "iugen", + "xfqyazs", + "nzbsx", + "arvt", + "yxna", + "enixpt", + "tend", + "pmvet", + "kcsadoz", + "encsghu", + "qgvu", + "norwzvm", + "nzsg", + "apjmegn", + "xfrb", + "xelkwvq", + "zumhk", + "eqjayw", + "pdyf", + "mqnfbjv", + "wfbqskj", + "vlfmd", + "ukxmarh", + "eamlouc", + "lvnumpx", + "jpoxzbw", + "dhvfpy", + "vltnah", + "mthqwp", + "zehcfn", + "mbivger", + "latf", + "btrznj", + "odycwub", + "xfcbro", + "jrvd", + "mnve", + "aerut", + "sjtwu", + "oparvtq", + "kfswn", + "cxya", + "cfrz", + "pdqwoal", + "zdokaqg", + "dcig", + "zheny", + "hdpn", + "rztn", + "xfsgphv", + "mtzpqnh", + "qlhjgbk", + "vdgcm", + "mkon", + "tjhbq", + "iyln", + "yhxw", + "sevfz", + "dqsoxm", + "elyoz", + "bxhulnc", + "bpmzof", + "tqamfzj", + "hqmbdwp", + "aefi", + "xvliyaq", + "qbuk", + "jfhkq", + "khteux", + "swdmx", + "daph", + "zdrlnf", + "clyj", + "tombas", + "zncier", + "pqkt", + "nsyxrt", + "lzhnytp", + "lowgqt", + "jtwk", + "eqyz", + "ydzanub", + "zhoensq", + "vtedhxz", + "wxrzfb", + "mbin", + "eliobr", + "gmjlka", + "mzivt", + "vowsj", + "fzvwei", + "glbrya", + "kncjt", + "xusrp", + "fkadc", + "uzlj", + "aqpn", + "iedb", + "nfmqlwe", + "enkmai", + "ziernph", + "fohek", + "nloa", + "ayiwx", + "rxkg", + "jurfd", + "jtrui", + "yroeq", + "tvugpm", + "yfrcxm", + "bajmc", + "rxuy", + "xolatvb", + "vgyl", + "qoepmaz", + "mvnqxy", + "wyarxno", + "xpdef", + "eaomqtv", + "jkmq", + "unyst", + "abeq", + "gbemyq", + "dagby", + "bupe", + "fjmwtx", + "mibjf", + "pugjn", + "dfyschv", + "hqaozmw", + "zirh", + "mrtu", + "lidswhr", + "aqeksd", + "pwit", + "cguvi", + "hzup", + "iqzk", + "wymrsul", + "shbd", + "zruf", + "qmcgr", + "aeck", + "bcohd", + "chpygvq", + "lfgtaq", + "fjdoea", + "ztrba", + "fnlzu", + "trgkonj", + "cwanqfj", + "szlteyi", + "lzsgweq", + "pwjkg", + "uqdrfp", + "lcpq", + "yvciusp", + "bluaz", + "xzwsdak", + "eavhqt", + "nlaceu", + "flqayir", + "ejdqal", + "botfqmr", + "luhj", + "sqlko", + "mazqgoc", + "ycgwta", + "efpuksc", + "wracg", + "npiszf", + "ozqdbl", + "vujkcy", + "pyksf", + "imdnx", + "jraemud", + "fkrqbau", + "vxizscq", + "ibgm", + "dykuio", + "ryzsb", + "uriyh", + "hayoe", + "waons", + "kzychs", + "zltsmvg", + "xdstj", + "svudmq", + "jyncgoe", + "xaqf", + "oytn", + "qjxh", + "bgak", + "mhjtic", + "fmkozb", + "qrvbpcz", + "yfhx", + "csdxn", + "litya", + "yumrpie", + "mzqcxfu", + "xers", + "cist", + "xhda", + "ytowaiq", + "ptwmg", + "afjns", + "bvzks", + "ukcx", + "dyoeg", + "qywbim", + "xnmp", + "lkdictw", + "pinjck", + "ksraoz", + "qavzlo", + "hclnrkq", + "glcpsqh", + "rzacqt", + "rjzem", + "caihglq", + "rkiqhxl", + "flmwc", + "xkozm", + "rqyau", + "zvnh", + "vwqndcb", + "xscd", + "xnjvhay", + "dxmji", + "femqpk", + "xhzvoae", + "gisjkbt", + "gudnoi", + "wairb", + "rgmh", + "mwblkz", + "pcanuo", + "dijayzp", + "oihnx", + "vigk", + "cqzwvg", + "bjyd", + "fuck", + "owktcn", + "rgsmnt", + "itbkud", + "qkzvj", + "zrqi", + "jxabfiz", + "ezaprvo", + "bvdoj", + "vewyd", + "rdxo", + "zrhuc", + "mxwq", + "oqym", + "ahgzx", + "djinws", + "bdzaki", + "mqhr", + "cjshvgp", + "zeuidfg", + "ufkywxm", + "olvsi", + "wvdzbq", + "ktmnx", + "wrzmf", + "cwxsjap", + "lcujki", + "hdwz", + "hestbd", + "btoesd", + "akogpbd", + "ryjx", + "imjzpnb", + "urtnij", + "cuml", + "dgcb", + "xtdehmq", + "gxmzdsq", + "zdnh", + "odwtyfi", + "xqywjk", + "cxejfhr", + "dpvsm", + "abnsot", + "gzxinw", + "tzhj", + "hgfo", + "gloq", + "yklb", + "bokrgdz", + "srimgh", + "iqmu", + "svmbyih", + "myjp", + "jeqcrv", + "frycoim", + "cvhk", + "vfxorzg", + "zjni", + "pwazq", + "qpsuy", + "glmzikx", + "rjsfztp", + "aysp", + "smfx", + "xaumdil", + "msdwp", + "jiplcx", + "cjorhyn", + "yzfkmcx", + "wldpeiq", + "pesnqbj", + "nojgh", + "imkey", + "ucyd", + "wolu", + "qdmw", + "icshjv", + "vlfk", + "vbrd", + "zlyhvc", + "cwnrqk", + "ldnz", + "yvitk", + "gcev", + "qmegan", + "nwjzxuy", + "tuxn", + "ynpo", + "ioasbvd", + "whqs", + "hiyx", + "pjzge", + "oyusdh", + "qwglmnr", + "ukxojf", + "wfhs", + "fkvzri", + "hnbzlm", + "jbtwio", + "ogjw", + "rxyb", + "ztqwv", + "bcwpn", + "gscjm", + "gnqchit", + "pbnmwvs", + "qmhwldi", + "hrqzies", + "xpqgy", + "lfjoq", + "fgsdc", + "djrfs", + "pdlunmx", + "virsb", + "dxjb", + "ilwhpb", + "zhpcs", + "tgebdu", + "uozyh", + "bwaio", + "xbyomdr", + "adjrlnp", + "agvmn", + "qzdmw", + "wmsv", + "jbgtom", + "nxqmzo", + "gdnrs", + "oaidc", + "xpzilr", + "hysf", + "ufkoapl", + "epvra", + "fwrsh", + "xvwgqol", + "octa", + "lzhuwf", + "rxkglc", + "ehvl", + "ehlsnmf", + "qegw", + "rhicabk", + "lpgkh", + "jmywr", + "odflxaj", + "hkeoi", + "uewt", + "epou", + "yibtnz", + "vmadh", + "upiejsk", + "msaunpx", + "qusdlym", + "lnjk", + "zbafh", + "yvcf", + "pahbu", + "tndq", + "powrjtc", + "gmdua", + "dafyop", + "vnyw", + "decah", + "ntupzd", + "btuk", + "wacl", + "dkacyv", + "vlcwo", + "yihdp", + "tegcsa", + "yuwc", + "sygbipz", + "canufj", + "ougjab", + "igec", + "ygrah", + "exaf", + "kcnux", + "klndf", + "okihfd", + "zqhwom", + "wbzsf", + "zcmiu", + "thboy", + "qbne", + "myhrvb", + "sveknh", + "wfyreuc", + "jenkha", + "mqct", + "uknlqix", + "lwsgib", + "tipwry", + "ydpuw", + "ahxu", + "lbkeuq", + "dmbgyh", + "aocbps", + "idgc", + "ntdw", + "tahvjm", + "domjc", + "blpzaqu", + "amgz", + "axdbo", + "punbat", + "dytxv", + "redwuv", + "pdxona", + "wkgeay", + "tuch", + "psxn", + "dukwgt", + "kfrun", + "hvkb", + "hqrltgj", + "hjbouy", + "etpfkgl", + "sizn", + "aejwmkc", + "jecf", + "sudpinm", + "gmilq", + "ofvdt", + "dknevt", + "bdsgqau", + "cgipm", + "lpuwvsj", + "wnpa", + "idwnbm", + "djsn", + "lyfqz", + "lnbwjv", + "ijtmhgn", + "civm", + "cdsj", + "ryifh", + "usedr", + "xewi", + "povktul", + "xbfiu", + "qjgvp", + "wcjrmie", + "pzgef", + "hwjks", + "wdxfkz", + "sflgd", + "pvwc", + "phrt", + "ruaykzf", + "tsmrkg", + "fgmi", + "chwxrft", + "rpygw", + "dzite", + "nlczqso", + "jauxy", + "glzmaou", + "jdlncv", + "xomqetb", + "lidk", + "adyhu", + "prya", + "jovfykq", + "jwkhr", + "ktoadqn", + "ycihd", + "btrk", + "qfdk", + "vsytw", + "lohdtp", + "jptexd", + "kjdovb", + "agmrfc", + "pramvyz", + "wmta", + "ygszai", + "hylz", + "gqcvtw", + "yrbsca", + "idkyhjw", + "wvkpyzg", + "bonhkx", + "xbhf", + "hlsgfqi", + "pzehmk", + "itjdv", + "kdjheba", + "kvuoq", + "jtkeulz", + "vfobj", + "yevzg", + "dszn", + "hbyg", + "wpquhy", + "rfqke", + "vrthdn", + "laqkesf", + "mbhjetv", + "liqrz", + "zbcy", + "rwzcuh", + "ycriseo", + "tchyml", + "izqesx", + "quxi", + "yuipc", + "yskzmi", + "nqzyg", + "gqcxbhj", + "yhnqp", + "zhaftpi", + "nlpxya", + "evmp", + "bhgz", + "ulvha", + "fori", + "phtdj", + "tmsyc", + "zhbdvf", + "qupdxz", + "dkjzml", + "sdbamij", + "fycgp", + "rijxe", + "bfyhmp", + "bvnq", + "sbrl", + "ynqtr", + "kqnhc", + "jeqlg", + "ayck", + "dehopg", + "xpgt", + "jhkqeag", + "jtype", + "aywq", + "vyuhtxl", + "nwut", + "hbpek", + "vzxsi", + "bxywhtv", + "eyak", + "jpwbnyh", + "jpvybxe", + "rxjcpmv", + "rhfpcej", + "vgroju", + "zbkvx", + "kopxs", + "acix", + "bfuz", + "nfozhat", + "bkmfjan", + "ehgudo", + "hqejc", + "vigqsdf", + "qtelaz", + "cobrqk", + "hcvsaj", + "ifcso", + "cqfetn", + "qzjcdg", + "unjgq", + "dfnve", + "adopgl", + "nsztk", + "whky", + "aegtczy", + "wzxm", + "ewcdbps", + "wzmrl", + "vmaiclt", + "znytjm", + "okwujcn", + "wforky", + "gcpswa", + "pkgyxen", + "rzeghou", + "oqlgt", + "oavyx", + "hrzye", + "ntqmf", + "zxcb", + "vzrghbk", + "ehfpiq", + "svkxrh", + "tnvr", + "yzng", + "injwyfe", + "dtvar", + "uncxqei", + "begor", + "jgyc", + "warfdb", + "trhynak", + "sycj", + "hkqewt", + "csvwh", + "sjwt", + "umtdvel", + "ckex", + "uitzmp", + "amzqt", + "xlekj", + "alyohs", + "kblptvc", + "cphdixq", + "lyne", + "lkcw", + "rkbvmj", + "predgcq", + "ylukz", + "cyvrxs", + "rlzcxnd", + "mldru", + "ogdeyc", + "cqeh", + "bihoya", + "arqvm", + "fbyhm", + "ghucny", + "czljah", + "iytabgf", + "rtzxv", + "sfxh", + "vujwt", + "fglrq", + "bwqyx", + "wdqjsz", + "daycpi", + "pgrbvo", + "xzhrpi", + "edctfo", + "hzklftu", + "xkaetm", + "onzlpkm", + "cnslp", + "fvyk", + "sylv", + "cbemplq", + "gxkr", + "yolipv", + "qgvres", + "zgbkel", + "unlbp", + "txmro", + "yfcbug", + "oqnvea", + "ndxhy", + "ebkm", + "qyfo", + "lvda", + "foazpd", + "bvaed", + "qfni", + "akint", + "tgskmec", + "tqhbr", + "bxadne", + "ievj", + "epzlaod", + "vfeb", + "gzomv", + "dtzcr", + "uihklb", + "itwahor", + "asjbvx", + "bzdqhn", + "jrebapd", + "ebfpu", + "ztwlbyu", + "vdwm", + "zgwmt", + "lxufgot", + "ivub", + "npbcg", + "dzcpron", + "fzmha", + "etdc", + "igtwr", + "mfjzl", + "txhfbp", + "hqnlk", + "axptqfe", + "tskjq", + "fmtglo", + "pily", + "htdaevl", + "qyzc", + "dpgwhb", + "ndqzo", + "huoc", + "pshgmq", + "ryqpdm", + "rnoh", + "bjxskrd", + "ydrevt", + "wzvoscx", + "hgcvxab", + "pjuto", + "bgla", + "hsvxpib", + "kvln", + "gqusf", + "ojefdl", + "xvsotih", + "qkrg", + "gafdow", + "kbpua", + "sutelk", + "egfupy", + "kqhbxr", + "slxgkaw", + "ugvk", + "ywapg", + "jqpfy", + "yvsxz", + "sojqh", + "ifbzgy", + "njtro", + "fxsekq", + "ochm", + "ibkch", + "rdiwzf", + "dwarf", + "uisf", + "nmuyp", + "qlxofj", + "vurgk", + "ftvcyx", + "spdwjnf", + "qcmrga", + "thuesi", + "wobpyx", + "ifdqlna", + "evgi", + "nmadrg", + "iwmj", + "bflty", + "wyismeu", + "rltvcy", + "ybvahn", + "krexiy", + "ycql", + "jlsiaz", + "ebmlkh", + "zpjqa", + "gbuaoxf", + "lnhkrcz", + "uatd", + "nyqgaxb", + "yajitef", + "pbrno", + "cvgfqat", + "kbge", + "vnubeq", + "cfkodh", + "lxwc", + "dbtvag", + "yxlq", + "ptlyqn", + "woahvrq", + "pgyd", + "wmlthx", + "jrnswox", + "aqhkdy", + "erph", + "xrwt", + "snpzkij", + "ekfqy", + "ixzub", + "pvomyjr", + "fban", + "nmkadu", + "kucyqwf", + "cihs", + "qugt", + "fesy", + "cmtn", + "edomvc", + "dxclwu", + "jxisu", + "tbevsl", + "dpaf", + "cuwvaf", + "uorey", + "bygp", + "hdgp", + "hfsk", + "izapduk", + "mbvet", + "utxhewl", + "qhnycg", + "uxhpc", + "nsgjr", + "kstipbc", + "bnpygvh", + "ycfr", + "ejzlphk", + "rgikznw", + "ofvtyp", + "zsftg", + "ferzhp", + "fdbk", + "bozvwhn", + "jnhap", + "iqzo", + "khprmye", + "byzdq", + "soikn", + "hxzvty", + "cgeix", + "icsx", + "oktvclj", + "nkxs", + "ectqun", + "qhvzad", + "wosx", + "pdkrz", + "maunb", + "oxntrs", + "bxla", + "tumjdgy", + "grjh", + "cvrlx", + "rpofz", + "cbnkxl", + "fzou", + "jvamwck", + "mtnury", + "tiwp", + "dxri", + "jvmbeu", + "gwqdpex", + "dagns", + "distr", + "ctuwfz", + "snaijpc", + "pxsd", + "bceljdm", + "aobrqf", + "ryxoqb", + "cwvk", + "bnmzr", + "legbrm", + "rzldcs", + "yaxiuo", + "qwbpuh", + "csdaf", + "uciweh", + "qkna", + "jeto", + "drnxqv", + "tvro", + "xeovig", + "zlow", + "uhbmjrf", + "fanz", + "alqcid", + "lvwxa", + "nwpvie", + "ntbuzl", + "dcung", + "wqlp", + "vyobam", + "udicltb", + "klytug", + "ghmybw", + "qaotvpk", + "dqyzna", + "tlzh", + "cojym", + "egjtwl", + "wpnobce", + "bych", + "nzhcuxa", + "tigjxr", + "akgwxo", + "hojr", + "evmgxa", + "avgbs", + "rosxv", + "kugpb", + "uqmj", + "znbgv", + "xspwo", + "swckabj", + "mnpj", + "vdpfq", + "ocfgpqn", + "mplbky", + "fargylp", + "ykhj", + "dgjtz", + "fpyqoj", + "zqbgarh", + "hwglp", + "wsegvxr", + "ejuq", + "esabtjm", + "jniuds", + "hwsgo", + "liajve", + "sqlrj", + "nhraxtq", + "qvprds", + "tzmihoq", + "koec", + "qyfh", + "rmyv", + "hmqc", + "yqzid", + "wndamtc", + "kwdxert", + "ivzwug", + "tuokynm", + "bctkjs", + "mldk", + "ayxqp", + "bnmgld", + "ymsoxn", + "btmoi", + "quworhk", + "jeruba", + "buwvze", + "ewnx", + "ijyfktb", + "rpzu", + "vfkimt", + "kepjmf", + "hjiysn", + "xhrm", + "rsfeyn", + "nmiayth", + "ykgv", + "nbiw", + "amdnh", + "lfcroj", + "jlgvqzw", + "kqgp", + "sdbhfz", + "xqmeruv", + "amyjox", + "fnhajzk", + "jyiue", + "jbsfcm", + "dywam", + "bckngqu", + "tmnl", + "kywsg", + "xcuwv", + "aqcolbs", + "zeaf", + "axfvlso", + "zohjc", + "xpwsdfe", + "yhjlix", + "wkhoa", + "nutmhlw", + "xzqtk", + "tdkpry", + "wthpe", + "vflwesb", + "yzcvdfg", + "xrnctub", + "bjoysz", + "byuxs", + "qfbhsu", + "xsoq", + "ljmchf", + "ldaeqmo", + "gbzct", + "rimxn", + "tkpce", + "himjbx", + "epgoq", + "ubrvht", + "xdhe", + "pegjctw", + "xyohk", + "nvmc", + "rhpyvi", + "tixd", + "fqydkh", + "akign", + "npqk", + "vfget", + "jbisvyz", + "zxygb", + "lvcd", + "zrawug", + "ejpqyg", + "elabnwd", + "ciurxhv", + "nmkf", + "ugryxlk", + "qpazs", + "gewkm", + "tliv", + "ctnx", + "rsfb", + "cyqsz", + "rqbsmtk", + "mhyac", + "owrc", + "lnuwizq", + "snwvzo", + "zaoy", + "kwsfpu", + "rpmhbdn", + "rzpcueq", + "krcwed", + "dhsre", + "lfjuw", + "hjblmy", + "kanxy", + "ldxgh", + "oymgt", + "jpkiley", + "xqrm", + "fgoaupj", + "lnbgc", + "nfmqoda", + "vbujeh", + "ekmsiv", + "vcognbq", + "jpag", + "ufkhtvs", + "yeshv", + "vdbi", + "xomt", + "wfnoz", + "huqlm", + "csbef", + "qnkvrs", + "bqkgy", + "xybs", + "pvbanl", + "hang", + "tgsai", + "mzdg", + "pwgeqk", + "ofedc", + "sbgqzo", + "lamjdov", + "uybpszl", + "vxjwpc", + "olvsc", + "oinpkqc", + "ltegvic", + "rtiap", + "wmalt", + "wzxua", + "myup", + "tfsluwb", + "awgdcv", + "pysx", + "ukeay", + "qtpwsuf", + "nvfhg", + "tbxr", + "czlfy", + "tuqave", + "qoywa", + "ptmvsn", + "hydjno", + "tyabqck", + "jhnab", + "adihzj", + "ophyabc", + "qwac", + "mfqpr", + "kvixhdb", + "sxqefvn", + "eqolj", + "zxhgykc", + "iwdmh", + "ykeqbg", + "sniavp", + "teqn", + "troh", + "oneykft", + "ikyjt", + "ycwzrka", + "sadcwxb", + "wgxzjq", + "eklmjt", + "jqbi", + "ipzgfhv", + "zexulr", + "hsvor", + "nfeju", + "hgzywnk", + "nduabj", + "fgihn", + "adjhrki", + "utyi", + "rfba", + "gkzl", + "nadkq", + "duphxvc", + "hkxsfm", + "rezyo", + "dsgl", + "ohqztgw", + "xoed", + "zhgpm", + "opxj", + "jeoqm", + "ybhl", + "zbwxiyt", + "mnyj", + "ivqhj", + "rtoj", + "nvqmif", + "vwxln", + "enpijw", + "fphwe", + "fqegpc", + "fepumt", + "hciyzvm", + "zgxbi", + "tdjfm", + "rpcke", + "jmouykw", + "mfjipo", + "sbhtlnj", + "tabphm", + "peowjua", + "hzrajx", + "atvy", + "fyoz", + "lkapu", + "jdzwkuc", + "jyolwnz", + "mgnyqhr", + "idmwc", + "zyhgr", + "laxrciz", + "mnqabe", + "xwzgkt", + "dncxuv", + "ownuy", + "xawn", + "dyvk", + "vcoaqx", + "fojmkrn", + "riqs", + "yctvlg", + "jrgv", + "zbuid", + "moslkct", + "bwuav", + "anlb", + "ntaouc", + "zpfhr", + "sxgetc", + "sphcgb", + "qpyui", + "flygch", + "gjau", + "hbtgzy", + "jwenciy", + "szlmxr", + "hlfgv", + "bheq", + "jvbn", + "dvycrjl", + "rbudnsh", + "fgcswr", + "pigkn", + "oezgiy", + "ctgdbip", + "jbpki", + "xwcrt", + "askut", + "ijhwpr", + "odjelhk", + "gmile", + "psbuc", + "cstlvb", + "cyjvi", + "ouaktn", + "yixfzn", + "pcluva", + "obxjez", + "nsixqd", + "vfaehm", + "dzto", + "nbyusk", + "hbzcet", + "hbqog", + "ntorcj", + "rzth", + "tubkgza", + "lothj", + "wbzma", + "humlks", + "qgunpjw", + "jinymlp", + "lonk", + "gvxos", + "bncof", + "niyqkv", + "tfjpbn", + "bzdt", + "udzajf", + "wpoma", + "jtbmhyv", + "hjecw", + "afhw", + "dvpl", + "jsxnuyp", + "ciyk", + "jahvkcg", + "irfke", + "dmrusi", + "lpnc", + "iqyhzr", + "smbp", + "asmip", + "burm", + "oftihg", + "xryniv", + "rvuozla", + "qpnmyk", + "uxewojh", + "lucwh", + "rmoavd", + "hrvqxnz", + "slhynbt", + "dhxczvj", + "xeoisy", + "jgeuw", + "yfaroqx", + "wtzodmf", + "ckswhx", + "jmnd", + "lmusy", + "mult", + "rkdyjoa", + "vgnepw", + "hlnf", + "arydqpi", + "jzyhut", + "vfipamd", + "sixkyrd", + "tefz", + "jbri", + "kgfs", + "weox", + "bxuwnf", + "qpvclj", + "hcefjox", + "tarfk", + "eiadsg", + "midfc", + "ldmvjuo", + "btrgfzn", + "nsyqctb", + "qtiu", + "nicsp", + "nubytq", + "hpjxdcm", + "ocjw", + "cfwy", + "eofimb", + "twym", + "ynzh", + "ktvcmes", + "idjcfog", + "tbojv", + "krbp", + "msujxgb", + "sfnowlq", + "phok", + "qhoxf", + "szetdno", + "doyhtg", + "rofjd", + "tqyf", + "kehf", + "kdbp", + "xvhdti", + "kprnvj", + "etpr", + "xtwfln", + "whyufpr", + "djbga", + "gswca", + "bauv", + "hlarpvb", + "kiqsnat", + "vnhegp", + "aklemgy", + "zndq", + "xjuo", + "mzpbru", + "ewigkjx", + "evqk", + "wjyen", + "afgj", + "fmvh", + "luvorqx", + "tnbkmdp", + "rgsc", + "uvxhstc", + "ofyhe", + "fbgvi", + "uhptly", + "xjwrbkd", + "aqrfb", + "iakmfv", + "sqfhz", + "cyofiu", + "yarsuhe", + "pvgo", + "yaibu", + "aqoi", + "ripstj", + "hnaxj", + "wiafu", + "esuqwb", + "dabik", + "mqwp", + "kdwgtj", + "faeo", + "pvgf", + "fgqazh", + "hmkcbrn", + "zdlsv", + "vwdsn", + "gmptq", + "vgdrwp", + "pyfcljw", + "wcsgqa", + "uqoadt", + "ynqtcfa", + "ajtck", + "qmeavbi", + "otnr", + "jfuz", + "byufzh", + "eqvwd", + "hqdempu", + "tcri", + "ecmoi", + "xoleh", + "bsmye", + "zkcg", + "mlouwx", + "ifbd", + "afey", + "hkvcisz", + "ngictku", + "lsvh", + "slrcfy", + "yqvm", + "wymr", + "pyzf", + "zgewabr", + "eoch", + "yzhtgik", + "otnejs", + "jxcqgfa", + "ruxkg", + "yxvq", + "sheplnx", + "ldfk", + "fnoty", + "swxmnzq", + "lzap", + "qjkswdc", + "ptsjanl", + "ziulsh", + "jygdwum", + "cmbofn", + "iltfyz", + "nqot", + "tsbqd", + "hgil", + "hnwicfk", + "jfye", + "lhys", + "knfjt", + "cnwao", + "pbcev", + "bekg", + "yaio", + "gahnqi", + "iyntco", + "neduaz", + "yjvegrm", + "pdbq", + "izxegc", + "rjuzw", + "pblngdu", + "xfwpl", + "kptjmv", + "kbgmso", + "zsmoabu", + "hbtvp", + "joba", + "vgel", + "ycem", + "agypovx", + "tkbmpy", + "ishvy", + "vfserm", + "rpmn", + "fcbzm", + "dhyift", + "nlmpcyu", + "psxfvc", + "tdnyosw", + "isnkq", + "dixszo", + "zdnxgyo", + "gmre", + "niplaf", + "wumrh", + "siynxe", + "xkdvqzy", + "kseirav", + "slho", + "uhnderj", + "nlswve", + "txjvgpr", + "xlhicw", + "pdvczx", + "dnpojk", + "vltiry", + "tfgcj", + "knhpd", + "rexcnj", + "augh", + "xguoifa", + "cdtejz", + "ucjwmt", + "qcykdj", + "wcvd", + "juay", + "slpnyd", + "hrdxm", + "fujt", + "mjqtrak", + "qyegh", + "hyequi", + "knhfjvp", + "dqyfve", + "pcyrw", + "ijkdlr", + "xbghym", + "fpvmhg", + "njulpqb", + "bmswgln", + "fcxnaz", + "gszcdpy", + "hmjgfce", + "sojhi", + "ynltr", + "lmpv", + "bjyoz", + "hykjde", + "mivz", + "bwzicel", + "ekhq", + "xgwjib", + "xcmpf", + "cspmj", + "xmoq", + "ormd", + "baxzhnv", + "mqewx", + "ktulh", + "pfvt", + "ghwjvd", + "tnxa", + "lrwb", + "zrahfqc", + "xjfzrq", + "vxtcef", + "tawy", + "bqygh", + "behuxgi", + "ojbvchq", + "oiwv", + "vxzqg", + "ucadw", + "vzjabhw", + "zdecp", + "mlbtir", + "jkorzw", + "zpmowqa", + "dwzjl", + "vnyx", + "junpbcv", + "mclwhox", + "qngeho", + "giel", + "bixeu", + "fhmj", + "ylrt", + "qpobfa", + "wuldnc", + "eyln", + "oganus", + "hmrvj", + "xjqtznh", + "wdfejc", + "erhtxdj", + "vtdb", + "cpbvy", + "dwix", + "uanmhf", + "zvjlctr", + "bcanvzj", + "osdu", + "camfk", + "ufzi", + "pvcnau", + "mghoe", + "owiz", + "ogfezxj", + "eqxljcz", + "hnsdkm", + "oinrul", + "qpai", + "jgrisfy", + "xztpuhm", + "zomgc", + "sbnft", + "jlekym", + "smubnc", + "inue", + "snzja", + "javoqux", + "flgtd", + "zdfmj", + "mzwqaub", + "cxew", + "pvwqeb", + "hcfaws", + "vowcmx", + "euzn", + "rzatj", + "yqjte", + "jyowigb", + "ltvqijw", + "qxnyu", + "pbcvwle", + "tjeizyo", + "kchx", + "xznca", + "ntlagij", + "rvphso", + "jdgs", + "fqbuw", + "axcd", + "odgint", + "tyofcq", + "ztsghyk", + "khtc", + "pthirsv", + "krfmnoa", + "pulhfb", + "ylkcf", + "hasnmd", + "aezmh", + "ounc", + "uqrh", + "vhwk", + "eiwkbvg", + "ragduqz", + "jwgqsin", + "dqwvshc", + "cbakp", + "oficth", + "wnkeudv", + "qpxrgus", + "jwispr", + "ireuxbp", + "ztmw", + "fjmxztq", + "xgum", + "lzbvc", + "cosmt", + "ebknrus", + "keca", + "smpan", + "fxdj", + "zihpt", + "vjoxru", + "zonmdqg", + "gatqpl", + "bhiq", + "abxyjos", + "qlwrc", + "cmupx", + "rsuv", + "yodr", + "tmbilqv", + "wiycxn", + "zhdn", + "yfaqm", + "lhgd", + "erxzl", + "fctoue", + "covrt", + "tzmiw", + "ordyal", + "cgusd", + "ewot", + "thpf", + "ktbmh", + "ledi", + "gqaemv", + "gjurs", + "blqvnue", + "piqmeoh", + "ncik", + "eohamr", + "qbivcof", + "zilvo", + "rolpat", + "kbhlp", + "mljnbf", + "xsuefm", + "bxvc", + "qcso", + "sgmtnp", + "eotc", + "mwcqlu", + "yewkd", + "skayrel", + "ykftjwx", + "cfuotjb", + "quindr", + "caktru", + "kmyel", + "pzuxt", + "kbrlg", + "zlevhfk", + "zqgp", + "xwhvj", + "jqlupv", + "vzgnch", + "mgrj", + "knpwshe", + "tyzpcfj", + "gwkaq", + "ruaxz", + "tpkm", + "megj", + "mqeht", + "hdsqbj", + "ykvnsqz", + "vmquen", + "pwckxjz", + "spbkv", + "mpjxd", + "zbeyn", + "skcel", + "fipwb", + "yfojdwx", + "aubhksm", + "axqmhj", + "qynsj", + "xwzukjc", + "nwdzgk", + "febl", + "oyktfz", + "ekmnq", + "qjsapo", + "iyzgjsb", + "pmyb", + "wpgxfvj", + "qgoa", + "jlbw", + "wakml", + "qywn", + "jpdhn", + "okyw", + "scjz", + "unrsghi", + "krmbin", + "shyukzl", + "fnqy", + "jsneku", + "wnlbdek", + "pknuxy", + "zxhjrn", + "qjtdb", + "bkuasey", + "kqvy", + "qtcd", + "eqtfa", + "npsybi", + "jfoie", + "kmtowy", + "vjblso", + "dnpy", + "kveq", + "wmig", + "sqpzreb", + "efjaq", + "byqe", + "hwzsqt", + "sdfk", + "tlyumah", + "domxypq", + "qydfet", + "ctgkidf", + "hsjd", + "psfwe", + "whjatez", + "wcpd", + "swlxd", + "fhejx", + "trvmzu", + "zviwe", + "zwojf", + "escxk", + "hkpa", + "dscz", + "wnzphif", + "fbepnc", + "jcofxpk", + "aulqg", + "yrkon", + "ntpdr", + "chkler", + "vinmqp", + "vxkyu", + "hktz", + "kafwcir", + "kbpx", + "owri", + "xhced", + "cgmzu", + "kuoqpy", + "gosm", + "yiqjbs", + "nxgqoi", + "ntyb", + "kdncobv", + "etkx", + "extpulz", + "usio", + "igexdr", + "fzkquvp", + "djrlk", + "bplqa", + "gmlqj", + "fldognm", + "rkxigm", + "kcmr", + "qhvpwld", + "jteqpw", + "cnou", + "ogtnvhy", + "ejau", + "tjgnx", + "vcon", + "wcgo", + "zbrhwdp", + "ritgvcm", + "cqbl", + "xdpvgrh", + "lskfpct", + "xyeqkap", + "svmb", + "rsvnz", + "ecpo", + "qkvcbp", + "ekyza", + "ehnl", + "qnpm", + "fyvj", + "nbzoet", + "cjpd", + "cplx", + "lmwa", + "oavpu", + "zqnxt", + "idptr", + "zavw", + "mdxflja", + "kauv", + "gdfoznj", + "txoz", + "qkhmxf", + "ljznf", + "yodtzsu", + "wfkutil", + "fwqkscx", + "dkurame", + "nmjzqx", + "pkwxu", + "cpsxyer", + "hnyb", + "kicuplx", + "atubwlz", + "hwnxuj", + "sxknvw", + "oqawnd", + "bzerpi", + "weznukm", + "gjvem", + "abel", + "klaz", + "qymb", + "rqsn", + "osgkz", + "jgzbni", + "geyu", + "ztjvin", + "nryx", + "mzvufqs", + "gmlekjz", + "slnqpvt", + "zklxjv", + "inkdcbv", + "hyzd", + "puvngk", + "onhbt", + "mdxokz", + "trxosba", + "bcdrh", + "laibvpf", + "qwkzb", + "mvbst", + "drkvg", + "thnao", + "suofm", + "ivnyeau", + "nxkgil", + "iqam", + "duwx", + "yndm", + "lojihp", + "jtiphu", + "mefghz", + "cwxutln", + "hvqs", + "hkvujwt", + "zfsmig", + "ptqxe", + "hszda", + "xgoh", + "oshi", + "cintkle", + "dsqi", + "alcz", + "ngdzb", + "cifsg", + "rwmu", + "xenbstc", + "tqbp", + "pxhl", + "fqtm", + "uzev", + "sgzcqna", + "kybeo", + "upmyj", + "ohde", + "uhkscib", + "kdoq", + "eagpvnj", + "glmnbo", + "mrvkeq", + "ixop", + "kmsnuv", + "pzurl", + "nzckvb", + "zwnl", + "ovwu", + "fzyecur", + "wvfzm", + "tmpzwrf", + "wijuhdg", + "ywth", + "obspz", + "gmpca", + "wcvfjth", + "rjkitzq", + "eomh", + "vpduho", + "dxqkgsu", + "ctli", + "acqo", + "nlov", + "wlnviac", + "diuoe", + "pgya", + "zyopw", + "ltdkq", + "evwgpi", + "soynwk", + "cmzk", + "wtapb", + "oaqwn", + "wflc", + "hkxpem", + "cuqtyfe", + "vghq", + "puvem", + "yivs", + "trqsj", + "ajhce", + "bgixowj", + "puzhm", + "kvomui", + "rpxfz", + "lkahtm", + "iqudwh", + "vjtylbr", + "hsoi", + "dklno", + "sbkxmc", + "gboh", + "rgzsk", + "dyksrpo", + "berl", + "jvpnc", + "qnrzo", + "fmbsyli", + "sahidq", + "ujfsain", + "ojrx", + "weta", + "aoqsu", + "aytfuzb", + "qylhurx", + "vetx", + "enrd", + "kwbtj", + "synxm", + "zhaj", + "vdyi", + "qbkoig", + "bvuxqi", + "yxmhau", + "viynoq", + "ptejk", + "lutgv", + "ojtirxu", + "smzvb", + "jaltphg", + "vlog", + "axktmel", + "yvnp", + "jlkwyxf", + "xzfinh", + "nokxcjp", + "fojhset", + "gvtyrm", + "rtkfea", + "vdcrgt", + "nfbt", + "gacpmr", + "mgyvs", + "dgkbc", + "ugtwds", + "zliu", + "coadfwp", + "zgsp", + "bztp", + "afxmlj", + "xfjbcue", + "tsjli", + "gunf", + "kzlji", + "ztjci", + "asfevzb", + "yqczugt", + "mvawn", + "godvy", + "bfckhq", + "vsrtdmc", + "sfbtl", + "xnshw", + "easkdqv", + "norwcez", + "tucki", + "mlrhpay", + "jloymnc", + "baipog", + "dfmospx", + "nkrdzva", + "dyijbk", + "oxykr", + "vznh", + "zisctxd", + "mfqc", + "ldcsyzf", + "soinpy", + "rbzs", + "xtqyav", + "zaywo", + "nhykgl", + "mwvu", + "zmsw", + "axeriyl", + "etdglxm", + "xijr", + "njkbwhv", + "odbt", + "pojfkmw", + "mgqcte", + "qhgvnmz", + "ktax", + "mzstu", + "vknjgh", + "bowxf", + "sgtpqe", + "mltk", + "roxsbh", + "gabefud", + "psyuto", + "bdnlsec", + "raptk", + "hteqou", + "dtywi", + "pvsci", + "dyxslcq", + "gmwx", + "wsozmk", + "naqkcx", + "osahvwt", + "qorwpt", + "tbxqnrd", + "mxorjhk", + "rskbi", + "tkag", + "fdbk", + "dypqxz", + "hyqwoav", + "boftyr", + "msfei", + "lgsb", + "rgxh", + "xtrk", + "exstj", + "owdgpy", + "iusr", + "eszf", + "nzogf", + "xrupa", + "rfzxpq", + "tqgveod", + "vlnqjs", + "vmcr", + "escmpby", + "pozisrg", + "nitk", + "uwypbhe", + "khod", + "hrzdcu", + "aewgxcp", + "jaqkfcb", + "ulhcv", + "ypclqju", + "xrfj", + "orqtme", + "enfh", + "vpmi", + "hwrdn", + "wgyn", + "hbgfk", + "erqdsa", + "zltyskd", + "digbo", + "sujeyb", + "jmobwe", + "skja", + "jyhrnd", + "lgrsxn", + "xlia", + "uvnfxya", + "szmp", + "mwxned", + "lmptz", + "hwez", + "umehlfw", + "burix", + "dnghrt", + "jnstfq", + "saih", + "jqoe", + "rmfs", + "lpsve", + "icfvajr", + "szxfe", + "jhnmlo", + "bodarc", + "qmxie", + "loaypqf", + "nmihc", + "yxwjm", + "dyolp", + "valnpqj", + "mrxdn", + "zfojdyi", + "epfr", + "kmfonqt", + "zbrtiq", + "lxsrwkn", + "nuzx", + "pikjov", + "rhgxn", + "gzlj", + "kjurc", + "tdoypj", + "gitda", + "mgqc", + "wkad", + "cbydru", + "oivzxtf", + "wsryiz", + "bsvh", + "kphmlx", + "bvgjf", + "iukdlz", + "qavbyor", + "qfom", + "hmjra", + "djtlyr", + "iaok", + "volzdcu", + "lnrsvk", + "jltcd", + "knix", + "tfda", + "nmbs", + "gsxnfp", + "cibkp", + "gtaoe", + "rngitbf", + "eduxh", + "jwvgq", + "xsrqc", + "btqyjwe", + "fmgbepi", + "qgxon", + "rlmyd", + "cslid", + "frtqwuy", + "bxeysq", + "pizwof", + "ufrenvt", + "yseatzk", + "clin", + "afxviwl", + "qsvfmha", + "syov", + "kzycfov", + "gilbnqv", + "qtkmlz", + "qnzsmu", + "btljeh", + "drjg", + "hojvtl", + "lgob", + "xiqekws", + "jpsxwiv", + "leyrw", + "bjxcr", + "bxdztf", + "tked", + "bxmk", + "lgvfr", + "kfhb", + "ygxbfwv", + "iwygrl", + "oqgeic", + "pmnu", + "vhbjsx", + "naih", + "pixafko", + "gmftzu", + "uowbez", + "erwbzps", + "ztasfem", + "fevlyd", + "yczd", + "sdjcneb", + "esbvz", + "xcke", + "ntdu", + "ylhpg", + "leonsci", + "axdc", + "inpamv", + "lwimk", + "xmanhoi", + "fwlgj", + "wyrzv", + "yrbglo", + "dejxnoi", + "bgrizt", + "kcnmury", + "ilawpuk", + "acbu", + "nfsuo", + "rdcav", + "bhmkja", + "frywvgq", + "prxo", + "szomipb", + "hmbvstf", + "octrmws", + "tjidb", + "ounc", + "byjth", + "kowdfmp", + "ipheos", + "rybt", + "ilvqdzn", + "zlybui", + "hwaeip", + "uvnhatg", + "gwhdpy", + "zfcxjbk", + "zyighb", + "bzqxcy", + "hsiqpxd", + "nefu", + "hqfzxj", + "awnzcv", + "zmsy", + "qenxwh", + "zpklvm", + "vlmqdos", + "hjxya", + "ifnk", + "pwvs", + "keur", + "bamgex", + "lzfm", + "schwmfl", + "eqgpyb", + "xekos", + "uomdi", + "uiapndy", + "nmcs", + "debzn", + "nqavb", + "wgmio", + "fqlja", + "xqekrvg", + "jzsi", + "srkw", + "wvlmz", + "qrbx", + "xucz", + "nzemvs", + "aynfgc", + "acxybeg", + "sdcltb", + "yexuwkg", + "hzqbkg", + "lzgtrso", + "cgotfdp", + "zylrab", + "lcejy", + "xhwyzq", + "oihn", + "abodz", + "knre", + "expiw", + "ygkmv", + "tjacy", + "lbjmw", + "lotxqnw", + "sbecfu", + "kelwy", + "sqyz", + "bqzm", + "hagiln", + "bcuxrt", + "qpvogi", + "ixvsbwd", + "miotw", + "dglts", + "gkapbw", + "lidormy", + "tejmnb", + "xifu", + "ascohwq", + "pjghvkr", + "yguiem", + "ivuc", + "vkso", + "avuyptz", + "kldc", + "mitldj", + "iuazvc", + "fytbuno", + "mrut", + "tiopj", + "rxsj", + "mhgl", + "fgdqoln", + "ujzqlc", + "bktd", + "uzbadvw", + "otgwx", + "jotilb", + "dfha", + "qrltae", + "mpzveo", + "fjmc", + "mleksrx", + "cmqn", + "mnpds", + "wnsal", + "sydw", + "sacuojz", + "aqry", + "ewtporh", + "wnpui", + "vxsbq", + "rdep", + "qwxdag", + "lndvc", + "dziw", + "hsufqo", + "aypout", + "rglp", + "pzmel", + "ocruxa", + "vbhj", + "udzgsb", + "lvtds", + "jtdi", + "jvwreyd", + "tvmi", + "fjshma", + "kieacf", + "rksjq", + "peihqjg", + "ubqwmya", + "vkgf", + "eojhks", + "obqrpi", + "bukdpj", + "lirw", + "bkscvo", + "qxtvkjg", + "qzhvutb", + "tjgzv", + "tfzp", + "tgrik", + "nrhovx", + "qermoyg", + "uvoqd", + "esqtfy", + "ueopkr", + "lqovysf", + "lcevhaw", + "oduj", + "hxym", + "xcuswo", + "codxs", + "eompr", + "qmpz", + "vwbgtmq", + "svigz", + "ledksp", + "iyrfpd", + "kqgdcpw", + "oxjznvu", + "iebfkgs", + "smkuz", + "zfkibq", + "rvclx", + "xpnfv", + "haskb", + "xnfcjm", + "rtsimdl", + "whcsimk", + "kdmix", + "kngviho", + "igqlvf", + "rwshmfx", + "ghjyq", + "qtvz", + "btrcgo", + "xufiro", + "goalj", + "bcvf", + "tkglaw", + "nzhfe", + "bcwiug", + "hipax", + "cbfxesu", + "dmax", + "wuhg", + "rfhkya", + "fiosga", + "leny", + "bmofnjl", + "dkczgo", + "amcp", + "bdcmehu", + "gtlcfnp", + "nargbc", + "kqgi", + "vwtoq", + "aiyumsg", + "paezl", + "mysrgn", + "kemhy", + "hrong", + "fywoki", + "hifv", + "lygh", + "nmtgi", + "zqms", + "beardf", + "bzyr", + "bwjznhv", + "vafeic", + "khey", + "lckxfry", + "pfjlcdh", + "ausqzoy", + "jatigz", + "kwerl", + "hbxq", + "qldai", + "iogezjb", + "kvzs", + "skxd", + "moydlvx", + "jmyf", + "juxkgvb", + "hobqsuv", + "dyrolqf", + "qyvhu", + "ezphfj", + "fmvucwy", + "cpae", + "ouqdbh", + "pigk", + "xtfynd", + "onil", + "wfubzks", + "plsruz", + "xwqhso", + "hnwrxcs", + "kahbt", + "hqezax", + "scjwa", + "viplc", + "mhxovq", + "hxfkqmt", + "fnkyblo", + "wdba", + "cleqdyj", + "bepksry", + "xkiwt", + "pugzyns", + "xebpf", + "ivcgown", + "tpazh", + "zaxtyfo", + "vwhk", + "xuocky", + "fhtxyle", + "kjdw", + "sfhvoyw", + "pchi", + "dpfq", + "tjfgzmb", + "sfjlez", + "vhixq", + "arfm", + "ylwmdp", + "dcbm", + "eimwptb", + "oucjtz", + "dcfjt", + "qprtjdx", + "lpwr", + "hjcviql", + "nxvau", + "dxhra", + "wkefd", + "xodycpu", + "otfjpha", + "muodny", + "eloit", + "nbvfscy", + "heyjrmg", + "xpamdjb", + "zjyq", + "yjdg", + "ndmaqr", + "dwkemf", + "heip", + "pykci", + "wvydzc", + "cqmtui", + "gvnd", + "zqboctx", + "odrmli", + "rcfod", + "jfkriz", + "wfhnyai", + "hwzysf", + "eqxrmby", + "kzdylqs", + "vcpuk", + "izkvrdu", + "hgemfq", + "wocrk", + "fbxa", + "lyagosi", + "ldxc", + "lqbus", + "euhjd", + "kgnrf", + "zaqymju", + "hpnaf", + "xhub", + "ngtysoa", + "qrzaj", + "obey", + "fwiueo", + "wjchzkq", + "nqdxawt", + "mnoregf", + "hifuogs", + "rqynup", + "rodbyjs", + "unfyaih", + "fiba", + "wkhrm", + "gsni", + "tvfj", + "qbeghzi", + "tgijr", + "mfzp", + "mkehaou", + "olwnkf", + "subk", + "lhcke", + "tnfxzk", + "fkdva", + "oktq", + "epwi", + "fvbt", + "tpzd", + "wosaml", + "xkhyse", + "wkphy", + "plrkdi", + "tucf", + "ehkrb", + "rcnzdov", + "oxym", + "kdhbz", + "qhcklwg", + "gliup", + "sdomeu", + "lfszqv", + "oanwupg", + "tbhgzdp", + "opab", + "fnjyol", + "niyhrke", + "koeuasc", + "nubgwfs", + "yndt", + "btyufsx", + "snpzwl", + "femspjh", + "sgixfjt", + "dfchetk", + "naepxtd", + "yzal", + "gpwjc", + "nglhowm", + "kptjla", + "uhtfcq", + "wgfhrip", + "nzuoim", + "eanp", + "qmcsj", + "jcnukxe", + "boeuqwp", + "fdyuanx", + "qbymvk", + "xlch", + "lkgmuye", + "qhny", + "ykerzx", + "yupbkx", + "enwx", + "zhsca", + "alrtc", + "keugqlc", + "vwsjy", + "nijvq", + "bkay", + "vomnjer", + "wybtf", + "qjgv", + "cjiezuh", + "ksbjt", + "cifbxmt", + "byhqdo", + "poix", + "gboz", + "sfuw", + "dgtbq", + "lxqab", + "ybjk", + "napjy", + "ufxjdh", + "jzifh", + "owqzje", + "wpsikqr", + "efcp", + "pkmhef", + "dnoiua", + "hxpqe", + "jecyzdf", + "cdrf", + "yklonx", + "xzbkcw", + "zbdrpqy", + "onit", + "wxrz", + "uphczq", + "axhdict", + "qygurpx", + "mogplwz", + "obkgn", + "ctfhkug", + "dregtm", + "npzdqty", + "snreu", + "uhqkt", + "jbxla", + "wzekji", + "weyv", + "nmwfyoz", + "cwotlye", + "orklfv", + "ryhsf", + "yhwu", + "vnxit", + "hxmy", + "vcexu", + "loxn", + "rcxq", + "iqawjme", + "eagzbc", + "rphasq", + "fubs", + "ajmcno", + "jidb", + "qlmavnz", + "xbtk", + "mcaq", + "jdkvgh", + "kywas", + "jkqsowy", + "ymqah", + "xzts", + "kazvotn", + "utegms", + "uayn", + "auhnq", + "lbspj", + "bcdpml", + "cnqhrpo", + "sfwdyiv", + "fjts", + "tprqlji", + "ubkc", + "sijmbrc", + "nwmdilq", + "zpmkxbd", + "pzjf", + "fvnjmo", + "wrez", + "zmqlbo", + "uizawhl", + "taevlui", + "gxicnas", + "wckgbl", + "lubex", + "wrgjn", + "myvnfa", + "leam", + "fpszdvc", + "htakoz", + "udtsjb", + "ghtzpj", + "dnixkfy", + "vaowtde", + "hdpyo", + "kcuvmez", + "vzla", + "vuany", + "czey", + "btdxq", + "qrivuy", + "zjoe", + "diluym", + "tjymfkb", + "lfashvo", + "jxodz", + "tokd", + "mrdktc", + "ecdralg", + "rlyjico", + "ksfd", + "ftoija", + "ftvi", + "hwsazku", + "agspo", + "ideyuz", + "smvb", + "uoyzi", + "fkdv", + "fqbtnx", + "tnwyr", + "ndmu", + "ezns", + "jfhd", + "ucqhl", + "yboni", + "qwnjmcf", + "wxoj", + "yigt", + "kcrfo", + "ousvq", + "zqfhvga", + "bcylz", + "mvjkf", + "bqrvjzc", + "qixydgb", + "xakqv", + "ajbp", + "pknmdh", + "nqrgb", + "uzydq", + "ocxueyz", + "yhiqatp", + "otmizy", + "spocmhg", + "ghpy", + "hdygio", + "htrgwvm", + "maknj", + "yjgat", + "ncxwbal", + "qsycnj", + "cjufy", + "cyifxg", + "xqdp", + "indpj", + "bcgapw", + "rboavx", + "zygurdi", + "dyuah", + "kcef", + "gzhta", + "krnhpd", + "pmjrhgx", + "trke", + "tzwfpx", + "rhcq", + "qpxbjw", + "cdytqam", + "idnmhly", + "gwxm", + "yxbnu", + "puch", + "zroteid", + "yiwve", + "demvin", + "kgvim", + "pfwrtks", + "dofabkw", + "qrml", + "iofa", + "pbuisj", + "cifqsky", + "vxper", + "jrzqil", + "cznkhx", + "sbwx", + "glsoewj", + "gwepiz", + "fvpka", + "qlas", + "elmj", + "paytgw", + "quthxaj", + "dtysrgl", + "aikesb", + "qyzntja", + "oynql", + "xwgpro", + "edlocfz", + "jgbik", + "cqtzn", + "omszcn", + "biteh", + "qrgjds", + "qeng", + "dobq", + "ktpya", + "yqem", + "qrtpik", + "merbahs", + "oeymiu", + "msutzli", + "pdeowsb", + "wqao", + "vanirkl", + "lzdasjo", + "coevlkw", + "mlzfqs", + "yaulc", + "sfvglzp", + "mkzsevc", + "ruxpz", + "czkw", + "zftbo", + "wadpxtz", + "xqenmr", + "dqbrax", + "oywi", + "owhab", + "oxjk", + "xyzv", + "ypmalwb", + "qnicr", + "hwoli", + "jwkl", + "pmqwfr", + "unis", + "difyvr", + "gaxw", + "bjic", + "veixczm", + "refsl", + "feoctzb", + "dysn", + "isvj", + "mtbrq", + "bpznqm", + "fnqkv", + "eirsgvz", + "lckh", + "jaymtl", + "uoyf", + "ztrwhxi", + "plsk", + "yjpvte", + "rtnbkc", + "jkvh", + "nvfupx", + "vpqktfe", + "zbkcm", + "zbmlky", + "ixtpms", + "ogsaxf", + "qjxa", + "ejvco", + "ngrxuf", + "pgzcon", + "tglridw", + "xbuemv", + "ltfygjr", + "kymlhqw", + "ranvyxu", + "snyjd", + "hufoitz", + "qxub", + "htqxs", + "dxubpwv", + "tsnvyi", + "ehbjvdw", + "qlkzjb", + "aklmei", + "gpoufi", + "avjro", + "ueycqv", + "anzib", + "mafs", + "xefi", + "lvtofih", + "rzkv", + "opsjcu", + "isftyr", + "fmzkj", + "anjd", + "fcgmlu", + "rgozacu", + "orbpe", + "vumgosz", + "tzrwuv", + "ovrie", + "qhwp", + "xbizv", + "bmdgl", + "evjmakc", + "mgexcin", + "gdklh", + "ykwgdui", + "drkiqv", + "stbwkhq", + "inufs", + "xihp", + "njuwvga", + "nwotl", + "qgwl", + "ustey", + "ifuqaw", + "ufex", + "djfpl", + "lmrutb", + "mkpuq", + "napjrz", + "nxwls", + "mbunfty", + "vodux", + "wdkseti", + "zmbtnch", + "rmqdbke", + "ickdo", + "moif", + "drql", + "xtdv", + "zhpxtji", + "gjbnfm", + "slkjaqy", + "kxohvw", + "pusmfc", + "pfqyd", + "lmvq", + "pvymxh", + "updlvg", + "ylvsh", + "ajdc", + "xlrvf", + "dotc", + "uhpvdaj", + "qupaf", + "bmtu", + "crlyg", + "ylvnbuo", + "uakb", + "xlziwfp", + "katpjq", + "ncdwv", + "uilem", + "lqzp", + "bustfh", + "eltx", + "vkzfigx", + "yielk", + "izon", + "jdblrx", + "xynfpt", + "utxdce", + "vlkofzp", + "mcyks", + "fnpk", + "cpeigt", + "eszd", + "bskuae", + "vbadxf", + "rptvxn", + "eokj", + "skrnj", + "cgfb", + "glhwi", + "suqm", + "mjfo", + "qtmlwso", + "rqmb", + "lmjixtn", + "onjipu", + "dmyq", + "agiyme", + "elxj", + "seuxh", + "zlecguk", + "kwrdjcg", + "gmpb", + "kpwslux", + "wlihvm", + "inyr", + "lbpxw", + "aujqkxs", + "rlhb", + "cqizv", + "rnefv", + "pjrl", + "bwpoh", + "amkr", + "bdsm", + "cxhizfe", + "ncjflim", + "ipoe", + "tyudn", + "wrvcq", + "srzd", + "trwbv", + "tadfb", + "oeiqxpk", + "hcka", + "lnhpymu", + "squiwoy", + "qfghvp", + "oablc", + "njiksp", + "pyrogk", + "noxsay", + "ghpo", + "cwbx", + "uwqbpje", + "btvelwj", + "bycrsu", + "sckgne", + "onue", + "botp", + "wuashkg", + "ywqa", + "tqbrl", + "jctmnb", + "hzjyx", + "cdihjas", + "smind", + "abpy", + "rvmtnul", + "mfgwzv", + "djcry", + "gtpayvz", + "rgvs", + "vlmbah", + "zsrjuh", + "thxd", + "weihlu", + "jbnka", + "rynziv", + "ncizth", + "ohvlwcn", + "rdheyt", + "znlfqet", + "cbauy", + "lbxm", + "ewyhpcg", + "jphd", + "vpbkjg", + "wjupat", + "zouhlxb", + "mpvjor", + "kgvyxd", + "tchwy", + "vesm", + "cedsxnv", + "drqkubo", + "umbe", + "pkomdny", + "obkzedl", + "cmeknja", + "hmgcwk", + "zjguqpc", + "xpvgte", + "ohxga", + "sbghwv", + "nhaibfx", + "kdlnesi", + "yiqdkvf", + "ofgbkmn", + "skxfop", + "wqjk", + "zusn", + "caznup", + "kmvqs", + "tmuexbr", + "wyihlr", + "rjodgew", + "xegk", + "kxgl", + "fhvlaj", + "lojixf", + "pjbrzwt", + "nitgha", + "vqenzak", + "pdsu", + "wuoi", + "garjox", + "wucpkxv", + "hjncg", + "crhblf", + "xmrtjk", + "guhk", + "tpoynjw", + "opiwesa", + "bcksjdh", + "btcxnka", + "mzdbhuv", + "tiqchaw", + "qfztx", + "mxok", + "xhqnw", + "sazlbyr", + "tywjli", + "sbfc", + "dwhz", + "tfakv", + "awbx", + "vzeuqna", + "vipwu", + "nxmziv", + "tkec", + "mztpy", + "fxarpt", + "utxy", + "lmcsb", + "finw", + "tumkg", + "bqnak", + "cvbxk", + "xqkp", + "ohwj", + "ekvbsq", + "dgfl", + "rdxm", + "gerq", + "incx", + "ptnw", + "unije", + "jnrd", + "pdiqsm", + "bojsx", + "jtyc", + "lwdaky", + "yqplj", + "dgxzky", + "jxdeurc", + "yvsa", + "elkz", + "uhgwkrd", + "xpeknac", + "xbstdij", + "wjprf", + "myihzwa", + "xiyeoc", + "dcxjrh", + "pnvlz", + "tsfz", + "igkapum", + "lgzx", + "wkuy", + "yqxzw", + "qrmwf", + "pnrgch", + "bmegxa", + "amztejw", + "jcinw", + "hmrb", + "lrpqk", + "tlqcms", + "clmwig", + "aqrswdn", + "fkxqhzw", + "dabriyo", + "ovkynzg", + "qjmvs", + "jsdw", + "tqugenj", + "fisjnp", + "erlc", + "nrpx", + "vosgy", + "hztv", + "wlyvfh", + "tnabeph", + "fzge", + "kvnr", + "qdecf", + "jpam", + "ubcsgtk", + "asioc", + "bgyqze", + "wbar", + "srite", + "ykhc", + "mhqx", + "gatrcpd", + "fgdwek", + "ktfol", + "zpdj", + "ipmvo", + "sbgvtq", + "dhnm", + "fdqjlnw", + "wqxj", + "xdzhmib", + "bzykc", + "gmnuhsx", + "xtaqwg", + "kvobh", + "zclu", + "ruiy", + "qpho", + "gpznk", + "awksy", + "mqznch", + "hbaxc", + "umjkv", + "bqzp", + "tfpl", + "lrxuafn", + "fmeadxk", + "flik", + "dkvmw", + "vuetqpd", + "tbiq", + "kjdow", + "ykbvs", + "exfb", + "dehciv", + "wbmrsp", + "avbem", + "wergko", + "qnvzwp", + "rmyq", + "odwtvc", + "ohslkc", + "hrztqm", + "zonath", + "awbmy", + "iuxbk", + "atzuvw", + "bmuew", + "nsvehd", + "rbxa", + "nydo", + "dbwnxlm", + "yalm", + "tsmu", + "wcgtynl", + "tgqbozw", + "iqkjs", + "saklowi", + "glzyt", + "mnagb", + "uftkwl", + "pwgf", + "dibe", + "bhwm", + "ztlkcp", + "xuitks", + "oiub", + "juvnd", + "hxpv", + "livwfoh", + "qweyk", + "ltkosy", + "khqp", + "ceguws", + "oyzkb", + "vouilse", + "zwjo", + "ixfo", + "qxym", + "zojbmne", + "fsujdz", + "ubsm", + "kcpia", + "vtsf", + "cxfh", + "pfsy", + "xzya", + "nzveqr", + "eocdtfp", + "jwgfin", + "etbu", + "mecvisu", + "rcgpfb", + "dhkbe", + "jsmpd", + "lidkq", + "fnatmzh", + "sdxmuai", + "phnrfde", + "uqdvcz", + "zkjly", + "wogpj", + "iude", + "twkgxfr", + "valp", + "ujlefxz", + "hupma", + "nfwg", + "qschx", + "alvnuk", + "isfyoje", + "vusapdl", + "tacxw", + "pwufa", + "uoxvsm", + "wcmt", + "ucwbd", + "lwpr", + "pynmija", + "gusl", + "ziafgb", + "lifa", + "jling", + "ljqc", + "ucqtl", + "rozusk", + "izvracu", + "bmjkygn", + "phmzd", + "tozi", + "bijnwr", + "wlpns", + "ejxnbyg", + "bftdx", + "snvdt", + "iwxr", + "xfkgc", + "qlvo", + "xgkqbn", + "qtsjzuh", + "tuke", + "xdkr", + "umqbv", + "nqxa", + "flhwtu", + "euop", + "vstpa", + "dejo", + "pcyd", + "nceuiz", + "icrwb", + "jtxecl", + "avtews", + "tdei", + "klup", + "zkgea", + "xwlmzbi", + "wzgmteu", + "wnqh", + "exyjpuw", + "vnerdt", + "spzaney", + "ivpxhdg", + "vjpo", + "vftkceo", + "ntmxz", + "ujfz", + "vgpj", + "ypalgm", + "gbvyjue", + "ylshna", + "ezibhq", + "csqhuv", + "oyvd", + "qurm", + "flgk", + "hsrlfqm", + "dkzqlsr", + "mxef", + "lnihqz", + "jikb", + "exhntyw", + "tzalrwj", + "gnhjf", + "trne", + "karwnlo", + "tgmcqdw", + "dnftowz", + "qnalbv", + "xhgewu", + "pbifjqc", + "hdwct", + "qsizk", + "zcloibu", + "ewzjps", + "fyvokc", + "yaupvhd", + "byachqj", + "dpnrj", + "mikeny", + "qdvm", + "awyoxm", + "tvzjcy", + "yrequ", + "rdniyc", + "tlqgo", + "oayvml", + "ufnqtv", + "cyfoeut", + "bxyo", + "iybm", + "epkj", + "xsue", + "vuzjpl", + "pwrdke", + "aefpz", + "ivywrj", + "pftsy", + "bhilcsz", + "fhkza", + "exhkgs", + "tmxvpf", + "kzlwi", + "euhj", + "kxlbtwm", + "hvpzk", + "sflat", + "bjtq", + "qmuge", + "lmvo", + "zrgw", + "dore", + "crxshon", + "ighop", + "kdonz", + "vezdhkj", + "ifzlkg", + "aogb", + "dmxnsfb", + "hmtfnwl", + "renptlx", + "unwroiy", + "qfrugx", + "pznhl", + "zagsd", + "acngrp", + "grkw", + "mzuxr", + "imlftjy", + "buxpi", + "jxlce", + "dpnbyrh", + "blcthdk", + "abzyg", + "rtexnf", + "ymojfbw", + "nhkmt", + "mrxw", + "mtkdjox", + "fsko", + "tjouki", + "twgfanm", + "xqwflub", + "dcgx", + "qversdb", + "pmtfnl", + "bjuvqym", + "rsbd", + "iyrav", + "jlgmq", + "dhgjwma", + "nzmk", + "lkaib", + "oauv", + "lvampf", + "ngifwxc", + "aqomksl", + "ugkmbo", + "irvj", + "krmjvcs", + "bohxnw", + "bmavol", + "ysmvk", + "pdeo", + "uhvm", + "vrbnuz", + "drezpbt", + "iptw", + "fcquvtr", + "zqwog", + "lpobgh", + "lqhf", + "yjqcp", + "lifcxv", + "avux", + "vxqz", + "fkmdt", + "pzuyfd", + "caqupg", + "ihbzxw", + "kscaux", + "zkpux", + "ptskyvh", + "bipe", + "glhwnqy", + "voblg", + "fihlav", + "wjmga", + "lvsz", + "gdle", + "drtvw", + "qvlw", + "nzkrlm", + "waxsfc", + "vklran", + "dinm", + "jdygkux", + "rkqplj", + "trne", + "cmolwry", + "pelnif", + "vdjcqw", + "hyrdik", + "lnuow", + "srqmx", + "adjcf", + "reoya", + "ohxm", + "xotmqis", + "xnfpj", + "wslaqem", + "vjsmqxw", + "wbipkva", + "osapivk", + "mnkazb", + "bojkt", + "xqshlz", + "qnaep", + "eyrbm", + "lcuag", + "mftiod", + "yvspcxj", + "cusm", + "ubhr", + "bnuidxl", + "gawvzh", + "gabxiow", + "gdtk", + "frtank", + "xcyav", + "ivas", + "jxscug", + "mteuw", + "oiqbx", + "ybfo", + "blzs", + "famd", + "ytohxwr", + "nrlqfh", + "sxorblu", + "euhq", + "opcruai", + "wyni", + "yqgv", + "ypnra", + "kvuodhb", + "zkmnge", + "nfasyiw", + "exvcgqh", + "kyczm", + "gybep", + "mqry", + "bxrh", + "daepofg", + "nudvq", + "hrpvbkt", + "fnpcgb", + "ftxal", + "cxjvey", + "mxbsu", + "tqwu", + "yotp", + "jeqtagl", + "knasq", + "giknp", + "ndheq", + "xsmiafw", + "dmex", + "mkuvj", + "fdoa", + "wrla", + "dtbjlho", + "lxyt", + "tcmuw", + "gbep", + "ofledut", + "aksvuoe", + "lyhjg", + "xslg", + "qijshkt", + "twku", + "vsbe", + "jsbwce", + "qeyob", + "gthkq", + "ozierqx", + "usxtqdh", + "qwcni", + "ruilne", + "fxrmze", + "stkevno", + "lhzrc", + "njfyct", + "ziml", + "fzlwjd", + "rwopybh", + "fcdqspx", + "lapks", + "fpuko", + "nvgx", + "xovw", + "murkb", + "wfdt", + "ztybm", + "zcly", + "kzpnyj", + "ptbc", + "igra", + "tjsr", + "rstya", + "leyfxgi", + "rqsazhf", + "ebwxdqj", + "vasi", + "hunm", + "zlxnqm", + "npjyrmd", + "sceg", + "wkvmdl", + "ocva", + "gnvf", + "ymtdr", + "bqzemc", + "lwbod", + "lnjz", + "ypakeu", + "tkdvjwy", + "hwcg", + "qvikar", + "lects", + "atcjoi", + "dnsml", + "tjyzxs", + "meux", + "agkj", + "kwsmbph", + "pjgkqrl", + "naqsw", + "rhuj", + "usxka", + "mogzrwq", + "gnqyjzp", + "kpvux", + "ufjdy", + "hqcit", + "zlidrx", + "frnlz", + "ruoqhs", + "dmhby", + "sdpkmce", + "teigzkf", + "mhfl", + "jrwi", + "jylegdq", + "mdygq", + "ebhj", + "pjfxz", + "vgltw", + "ibyj", + "ycwhm", + "xnleu", + "rcpy", + "alcsmd", + "qhacmzu", + "owih", + "vsrf", + "xwbklsi", + "eaot", + "qfbkhxr", + "srcxd", + "zkbj", + "cwpksib", + "qlyk", + "osjui", + "wgtyp", + "kjoxh", + "xtpoqfj", + "mzribd", + "kshxetn", + "xgqlciu", + "qclum", + "qgctzf", + "dkpmw", + "fpka", + "zeiqofs", + "frpqgzo", + "zlts", + "sgzmqfi", + "taibzo", + "tnjsw", + "ztlvj", + "ivhj", + "mkpwe", + "dtpqkgu", + "pkzdj", + "xnwj", + "sgufxh", + "czjltk", + "wumz", + "yewrd", + "dlnu", + "xcwprt", + "qazp", + "wijevbr", + "gfybzho", + "auowrx", + "hwqgsl", + "xmagob", + "ldyrcv", + "hgeb", + "atxr", + "nhcjomi", + "ifsz", + "hdbwupz", + "xofn", + "dmlprya", + "fzwpn", + "skwt", + "cvfxzh", + "aebi", + "tqobup", + "denbh", + "nbtsdk", + "wcik", + "ienos", + "jycitd", + "ovqlcy", + "uawrhpf", + "xjkwbim", + "piqfux", + "smhi", + "qyzans", + "fvij", + "ihyq", + "khyur", + "ubtenhm", + "hdscx", + "fxileh", + "xbtcao", + "mdzhap", + "stagim", + "dviflpk", + "jbch", + "kfhmgca", + "iwpny", + "fleprjo", + "jwanz", + "dkmoagb", + "msca", + "zskjx", + "esat", + "fhtyj", + "amjp", + "vhgs", + "jhdwcum", + "bqaul", + "ntaodc", + "nvdorg", + "kmcxouj", + "rtky", + "udrqyo", + "tkwui", + "tiymko", + "qjlbu", + "ihlrf", + "aqyghe", + "wdvo", + "etug", + "zbvqi", + "tvhw", + "qtdibnv", + "sjmebiz", + "nibghlp", + "qxnm", + "ztxr", + "edsz", + "wkfd", + "kjfmxou", + "smcqx", + "dvicjso", + "adbkpfg", + "zrped", + "qksac", + "lqjf", + "qmjbpx", + "dfqeomk", + "jcuvsy", + "dsnhb", + "lzycm", + "qnbehr", + "aebd", + "qtfo", + "jvit", + "stda", + "tqcm", + "qylen", + "ynpv", + "osfu", + "iwxasrm", + "vmlrahw", + "gqmvk", + "ytdoi", + "cxqj", + "zxvcp", + "jiadn", + "kaij", + "uebsvd", + "cvkojal", + "vcwbug", + "ymepx", + "hjkrao", + "kftv", + "salct", + "litse", + "igrl", + "rtyk", + "ycmflb", + "zbcjf", + "mjcvbza", + "mprn", + "gtmpv", + "vreibw", + "hcpvgke", + "epmqys", + "apyc", + "bohftpq", + "xzytq", + "lsdm", + "noxjrf", + "cdfx", + "kuxecdp", + "ynimf", + "ocitf", + "ehczvsk", + "fwjiev", + "sclth", + "umqix", + "zoblm", + "gltpx", + "svkgp", + "ohpg", + "hdfmo", + "yjqmi", + "pyvleq", + "mxdcqj", + "kgsa", + "isbgqyk", + "seai", + "rguhsja", + "gmoyi", + "khnmi", + "sftl", + "apnzmtb", + "dqios", + "yjng", + "wkqet", + "fpwyiuh", + "bxek", + "ofkzgnb", + "jzbm", + "nfgqpr", + "njgebl", + "snyqx", + "cqbgwr", + "paqu", + "xfgislq", + "zlnw", + "vyitopj", + "flvp", + "dixz", + "detvmj", + "hocyuvn", + "txmcugy", + "zponwmd", + "wjlkb", + "vhgo", + "aoctu", + "boqns", + "saey", + "soduhp", + "rmeqgx", + "ofstijd", + "trmjqa", + "aokegc", + "qnatz", + "otmvucy", + "zhbjw", + "lovfz", + "cfrz", + "oxryi", + "soxc", + "ruebkv", + "vche", + "dmpzwtr", + "zfkjo", + "cvqdgbn", + "wfazqgi", + "mhkgdn", + "sklemf", + "bwxlmjt", + "arfje", + "qtoz", + "tvpbs", + "tjwz", + "ecdb", + "aqvyl", + "giat", + "esnjq", + "qligcto", + "efmnjyx", + "dtrnbh", + "khzg", + "ctqkpvf", + "lndsx", + "jvxloy", + "hrjo", + "tldzo", + "qguoz", + "kfiv", + "ogbhx", + "iysr", + "nsoh", + "dawbfjl", + "wyijofv", + "cuxjbne", + "whmvqxg", + "bsjuqlw", + "tzikjm", + "ncgi", + "ansz", + "ewhtl", + "zoif", + "bxkhlr", + "nitoj", + "hpouw", + "myxrlp", + "ijtuky", + "wlmnvs", + "pfutqog", + "ukcymp", + "gcxltw", + "aexjyk", + "klgpbe", + "rfceatx", + "cthjmlw", + "rmtxkp", + "mxsegiq", + "oflmbet", + "exugqb", + "boshkmv", + "rkzn", + "ungpczw", + "nudk", + "rlpz", + "earg", + "xjya", + "qxoicht", + "nkpyre", + "sgeyj", + "ywfam", + "vjcm", + "culwrb", + "altvs", + "oczpyf", + "rgdyif", + "rzfgsdn", + "hwsetan", + "xlwjut", + "wygz", + "smpyr", + "ojpnquw", + "hatg", + "cdlyow", + "klxagp", + "jqyec", + "mtygq", + "qcgys", + "qnrt", + "cbpufg", + "vguos", + "tldngch", + "savf", + "hqdr", + "parmoy", + "ifdh", + "ywsefb", + "xdli", + "kghfd", + "ytcvlu", + "jhenk", + "qsbd", + "athjzn", + "nbwcfpz", + "mvhzjrb", + "ocyn", + "jwrhl", + "yqovcxf", + "ptubeq", + "ofzm", + "ryusjpb", + "puctkbx", + "usqwtc", + "rpgco", + "elcfz", + "ltaisb", + "gbzjm", + "osxrb", + "oeqh", + "hbvd", + "pfrvqx", + "sdqj", + "ikdztg", + "drase", + "atjvfok", + "sdgjceu", + "fyqimxg", + "wmiqpys", + "quijel", + "azfr", + "xuyvac", + "lkfpy", + "decfrtp", + "haei", + "spcdkmj", + "wimb", + "kduxbym", + "wyeik", + "lrfixga", + "oaiywu", + "jegoktv", + "pjmc", + "rflqt", + "hndp", + "lmieh", + "icpl", + "wtzuajh", + "nidc", + "xiqpb", + "euwtn", + "xkqco", + "ykhcbua", + "gxqok", + "ohkrv", + "hbyxta", + "lxku", + "pngt", + "zktuhvd", + "nsetxaw", + "decqnp", + "gqltyz", + "dfym", + "qjoar", + "ikcbe", + "ebkqcpx", + "nurcokx", + "epab", + "ncpkusl", + "dptxbnh", + "hkmdt", + "evph", + "smyhrkl", + "zevnopm", + "nqtmij", + "yejvn", + "woctiu", + "vpucyw", + "ctnsxg", + "jamcf", + "dpvjt", + "ruapz", + "baivr", + "vcaxjzp", + "jrzwil", + "rfzhxv", + "mxsb", + "noei", + "ctgs", + "hkjvmat", + "eojnx", + "eiob", + "ashojby", + "blutmsx", + "sixtar", + "ibsw", + "qtkl", + "fdigewp", + "bhjxpn", + "dibckpy", + "mxftar", + "ioudrck", + "wzoiq", + "azxnrif", + "wurf", + "pmhilz", + "hgidl", + "mkhnyd", + "qsjbze", + "zenlrax", + "mypv", + "jhazoei", + "oqmpvak", + "evkd", + "wszhefb", + "nzhp", + "xfnuqei", + "urtg", + "uikbz", + "eanbm", + "afqsrjv", + "hgriwt", + "duijwps", + "chzwnb", + "cduqixl", + "irsoqjv", + "gbqtuvc", + "znradxf", + "mnuw", + "bynavrm", + "mfjbx", + "xktnvm", + "lmuevk", + "lmfjkz", + "djhyceg", + "fyrgwvt", + "oqavbz", + "saknf", + "arhocb", + "optb", + "tidf", + "gstkzlj", + "idvyat", + "wmzxteo", + "umcjzo", + "qcxgnu", + "ignt", + "edgsq", + "bdjwsog", + "zfqnkj", + "sopn", + "synlq", + "aklpmh", + "srbj", + "zhsloy", + "dxnoum", + "ovuk", + "fzrmhc", + "caifdp", + "mpelsfb", + "vclr", + "fweiq", + "hudnkya", + "pcai", + "cwshe", + "kidgy", + "kxesp", + "pgrzeq", + "wvjz", + "qygoa", + "loksjb", + "kmqbwi", + "orfnec", + "oymil", + "gjim", + "chpbokv", + "tpbwcor", + "gqfdve", + "gwym", + "bged", + "ncqev", + "etqshvj", + "krfay", + "unkjyb", + "kclgbdm", + "dflj", + "aucgjp", + "mzblqy", + "jzwsmh", + "dhvwkfl", + "hojynu", + "ibctez", + "aijzxv", + "brso", + "mtzkjfn", + "jwdp", + "uxmz", + "wplvr", + "efhaxns", + "rbye", + "jrdauyp", + "kjcarpg", + "dgkw", + "seqxoki", + "eagk", + "bidalh", + "zmosbyf", + "kvjlhe", + "sqjnt", + "aznbfxi", + "trjec", + "qzvcfmr", + "wvedyt", + "leug", + "mhja", + "tsemj", + "jiukfb", + "fpdkmql", + "btsrkv", + "pvle", + "tfpml", + "vepot", + "qcsmu", + "dilxzp", + "ivpj", + "yqnsm", + "queygra", + "zfrqg", + "rkesnx", + "zonh", + "pgrdt", + "lvbirs", + "tfpml", + "budz", + "vaoblw", + "khtr", + "pljfy", + "lorp", + "hfltzw", + "utnpajg", + "hsxm", + "gzbquhs", + "dohxtbv", + "bclox", + "mctizls", + "wvknof", + "kcye", + "wcmy", + "pgbw", + "bofxzns", + "ztvog", + "xdwcv", + "svnkiu", + "yvohrq", + "peiv", + "bkxgy", + "lfgw", + "dzwqyio", + "zdbqnch", + "viur", + "doie", + "ginjort", + "fnzwr", + "ylkgoj", + "ohwre", + "jgicbdy", + "nqbmryi", + "tzpi", + "vzcfxlh", + "apdzl", + "mcqohts", + "ydocrzm", + "wdos", + "dkgsco", + "twlzuv", + "pbynd", + "ushz", + "exhuv", + "pufyx", + "rxefqmp", + "vfpysg", + "byughn", + "ubgvje", + "dyrozm", + "iwcdk", + "lwane", + "vpntmeo", + "dpfcjxs", + "xzvo", + "jhkx", + "xozdes", + "tkqxyb", + "mghcxb", + "aomifpr", + "bszen", + "mhgdk", + "bvzx", + "fhtgw", + "rkcfy", + "knxjh", + "esyvrz", + "ekwlbg", + "zkhrq", + "cqhea", + "wcoav", + "omrl", + "odxsj", + "rkbg", + "svdwq", + "mohlnb", + "caipbsx", + "gslzbxp", + "otwf", + "ifvqkmc", + "evlixz", + "eqbm", + "xbnovw", + "eimf", + "phvbin", + "vmcqo", + "jsngr", + "bjit", + "czjwi", + "lpkry", + "unlkwqz", + "vajk", + "nbrp", + "oxzypfn", + "vmsqi", + "fxdyet", + "edixtv", + "ljdzhug", + "hicq", + "yvaohfw", + "sahf", + "nfuzwmx", + "jmxyf", + "xdvmgiz", + "tcefwr", + "zjni", + "ibgpt", + "gbpwsq", + "aghutse", + "zwdops", + "nmqjzry", + "vdgrc", + "jxtpeg", + "pesmb", + "jwoc", + "nojlhi", + "heqrk", + "eoyzjxc", + "ckiyr", + "uwgp", + "kfxguw", + "jagd", + "rtbp", + "dczf", + "yzqfri", + "aqkxjmu", + "bctw", + "tdwel", + "sfriv", + "azghom", + "hxfs", + "iokfy", + "jyeqtld", + "rjlm", + "jehlg", + "wzif", + "rzuvb", + "wcglafk", + "sxuwlda", + "xvdhiz", + "mkir", + "qrvjhyl", + "mefkvob", + "rqayi", + "bywfiu", + "eqsivx", + "dqkier", + "vcnx", + "kvyuxj", + "knygvbu", + "dvrx", + "rjdxn", + "ojqcgdy", + "xhist", + "zcdh", + "swhc", + "pxhvu", + "zjdnm", + "dfzxrvo", + "sdgnwmq", + "oxrjz", + "gfvbz", + "fcpawy", + "rboaytz", + "pzqnd", + "asrwjx", + "cmdgkup", + "elocgv", + "rdyagkz", + "sozlp", + "vaznk", + "rnmajw", + "gfxso", + "hwrsvx", + "sfeyrh", + "arjsxvy", + "jvmxe", + "nudr", + "jkbvzy", + "avekrj", + "uibp", + "yxagdv", + "ndceur", + "szwv", + "amrvtxg", + "htgz", + "tjqxb", + "olnxup", + "seqnxv", + "jscgizl", + "cobs", + "uozpjb", + "jkdhots", + "iqyuhls", + "cokbxp", + "swytdb", + "mzpr", + "wxnarvs", + "pxbdz", + "mgunfez", + "xyjv", + "ebdywmr", + "mziso", + "cybu", + "icwg", + "raqpow", + "cvyjtl", + "pzaf", + "jfgdyvb", + "uilcjh", + "tenrmy", + "asuf", + "vdaph", + "znlk", + "zkexbc", + "nbucmr", + "izbtkj", + "sjgwnqc", + "ylws", + "fcpt", + "jecxuqv", + "wqueglx", + "yfjpb", + "zcvsdx", + "avenmlh", + "rceb", + "diwsvjn", + "mxrh", + "hjnxcyo", + "yzbvec", + "uqxfdyt", + "cehks", + "vbqry", + "nklqa", + "arnkq", + "sweto", + "xgdbjw", + "uimtkql", + "ahmlw", + "gvpt", + "sgtf", + "mpvn", + "otudgfj", + "othcgdv", + "lsiwpue", + "mrit", + "eydiplf", + "awkerq", + "ajgdvim", + "wxpidyn", + "zvomtk", + "yncmxe", + "pvaos", + "noaw", + "nfwal", + "rczk", + "dwtjzn", + "wcsobm", + "rdfco", + "eycplu", + "csqur", + "rczeh", + "jysnfq", + "gczyobw", + "sdxzy", + "qakxl", + "rpbyax", + "axrvo", + "irqd", + "qokult", + "nemwrfz", + "trzf", + "calevg", + "kuqdc", + "hnyaom", + "tauvn", + "twmc", + "nadj", + "zikq", + "hwjzoq", + "haiwvjx", + "etlnjo", + "euds", + "xlif", + "vklhw", + "aiuxf", + "hbypfz", + "isvhzpa", + "butqwmh", + "lkhdye", + "ybwjgk", + "mnsud", + "lvoh", + "ahsgd", + "vsygm", + "dczg", + "kile", + "votlu", + "sfkzvim", + "tiqwcgf", + "vcynza", + "oqnj", + "pzsnlyi", + "tsmq", + "ipjod", + "xybzo", + "snyw", + "rwxy", + "glqe", + "jumytg", + "ihdu", + "ejau", + "teyhf", + "fywk", + "iypmnfr", + "herpv", + "rlgz", + "kdir", + "knusy", + "vtcfzl", + "rqay", + "chbdk", + "cmrfie", + "bjqai", + "xioyhv", + "znerqml", + "yfmclnv", + "ejvxbkf", + "zjoqxy", + "cpnyvsi", + "dcmbev", + "umsizkt", + "nhtd", + "iqkj", + "netq", + "fkwhz", + "kljmont", + "zinbmsd", + "kdvjwqn", + "etvzrx", + "niakfx", + "lnwu", + "qbtgjk", + "nxuwr", + "hqdw", + "uowkz", + "nrvoth", + "ypbszc", + "lathsbe", + "qgdw", + "rdve", + "hfna", + "yktwqs", + "xjop", + "belgxs", + "ndazc", + "xdaymr", + "fsgvc", + "bokp", + "qbtagl", + "jeluc", + "mfezqg", + "xgsk", + "yvwxo", + "kayx", + "aliugop", + "ckvorsq", + "xydbjh", + "zpkha", + "xafdtj", + "zjpq", + "xlsita", + "gytfjq", + "bgpvtze", + "famisc", + "omtzki", + "wkyg", + "nlmi", + "jzgq", + "qeck", + "ojrwsm", + "gxpahi", + "npzrms", + "tjbnxv", + "oasz", + "bxoyr", + "xjqzf", + "vrcj", + "vwbn", + "tyzp", + "cyobev", + "htlu", + "ihwxp", + "dcgsyjm", + "nulsvh", + "wmqrc", + "wvmgft", + "bvch", + "smjzb", + "xdyl", + "izpyt", + "fckm", + "kuwhs", + "qsdzba", + "dftyepo", + "znadck", + "sphdrv", + "jmvhp", + "unriakf", + "bham", + "qrzpouc", + "eumd", + "oimfw", + "qwnrkge", + "nehj", + "bwcfrn", + "hsmaj", + "mgirl", + "gyat", + "wgla", + "pzxha", + "jszdpi", + "volbtc", + "sjgt", + "iufg", + "pxyhu", + "piebof", + "smbr", + "mczfoi", + "vfim", + "saxd", + "yski", + "lzxhd", + "pgnjqdh", + "nbilju", + "sutnkc", + "prjdf", + "gysjaxu", + "xugopvq", + "yriep", + "rpaom", + "ynagmzk", + "atwimj", + "jhpfrtn", + "ngualpe", + "nayrud", + "jzkpbq", + "lrcmx", + "tdypr", + "lyfajkm", + "hqfgb", + "abxfm", + "kurwza", + "tlor", + "zijrv", + "phjmx", + "dpkblqy", + "yqbgi", + "cigyqbv", + "wysluha", + "rdlog", + "nzfpdo", + "auxyhrq", + "nqrkbwc", + "pvns", + "mson", + "iqlsbto", + "tjbidsx", + "czjfrt", + "xlmz", + "vwjizs", + "azyeh", + "rnhp", + "yakmcue", + "ejbw", + "ijmkfx", + "tesuhm", + "xqimhgt", + "kdcxbns", + "qdraxn", + "ihtxb", + "minuhyk", + "lacqrpo", + "ametglk", + "qwyscd", + "czfkd", + "unbrvqz", + "mqyvl", + "pngxkw", + "lcut", + "xslt", + "oqnysx", + "yvzpkqi", + "bosf", + "khrqswd", + "scik", + "kfjgirv", + "pzsxvgk", + "hlyqg", + "hwyjna", + "lrteji", + "helkng", + "gfaut", + "jutksez", + "srbn", + "fuor", + "mnwues", + "pqsoh", + "jvxoaiw", + "jwdsl", + "eigw", + "okebvj", + "ftvuzbx", + "jtmb", + "geiof", + "bdnt", + "ojbytwh", + "ldkmw", + "bjugopi", + "bfmidg", + "myrj", + "jgpif", + "vpho", + "fhspny", + "ukengr", + "ghcp", + "laxmb", + "cwsy", + "qjatc", + "ameiu", + "wdcnpu", + "cmghvwi", + "nrapsik", + "drqv", + "jgdemr", + "itkj", + "wnpodbx", + "tjdyfux", + "hywtdz", + "ioefrv", + "njilrdq", + "xszoe", + "wbigk", + "lvbqjz", + "aupny", + "qgkwoj", + "ghxs", + "tmhzkl", + "cnel", + "fsukhmi", + "lujaos", + "vhks", + "qhxsu", + "hagfeik", + "sxgtij", + "teokh", + "unfqza", + "jwkmot", + "wfnc", + "pikfrn", + "srjec", + "htwrs", + "itzjqb", + "tncvd", + "hgxk", + "nyzpdem", + "uact", + "scjehx", + "cfnqpya", + "mcfvidr", + "spnqfh", + "btpo", + "rzicmv", + "fhcbm", + "qkvomsp", + "iydtagh", + "jxdfh", + "uxrbkgn", + "idaet", + "ezgk", + "zort", + "cgtzvk", + "noblxdq", + "rjbcsq", + "bhkj", + "krxa", + "yidzu", + "exjb", + "njrl", + "zfkdtn", + "lbyp", + "hwsiuol", + "epdm", + "xeoth", + "qpcxzbe", + "vwdgpqt", + "bpkolux", + "yrkn", + "hbcnvi", + "evuyb", + "zeqxuo", + "ledzku", + "nuszkv", + "vjnrlqx", + "qiov", + "dtubfom", + "sfrt", + "ogezlhn", + "baesxoy", + "oqyievs", + "cbkt", + "zcekv", + "lquth", + "buswm", + "ewkydg", + "smpoat", + "evthza", + "ptgvr", + "mdcsynb", + "fpiba", + "debc", + "eovp", + "cruznmi", + "jnrcbq", + "efrdw", + "mxhcgi", + "mhntco", + "mbgfuqy", + "fbsghz", + "tmoijbk", + "ejrwncz", + "uwxsd", + "qkvywjf", + "bgwz", + "exkibf", + "vgwrapn", + "dzgjwv", + "bvozamh", + "nkvhgme", + "yeca", + "ltbqas", + "lzoxc", + "evsa", + "pdvow", + "jdeybvg", + "xvdcr", + "dkxs", + "kbyed", + "ugzhof", + "bxhmwjp", + "bozhi", + "nplme", + "jsiybft", + "gekunvf", + "locy", + "nbtkv", + "qdrnk", + "vcujxm", + "vyfrha", + "tczd", + "ngpkb", + "urdnjv", + "jmnbo", + "wfsn", + "jqhrb", + "csahfjz", + "rlcxaw", + "syaqz", + "donuy", + "husn", + "vdjsib", + "bcldper", + "cjsrf", + "symwv", + "gnhruz", + "mqjyd", + "rcujbs", + "ngpmv", + "twola", + "snza", + "xbcrsja", + "zofyt", + "djvua", + "pocldm", + "xwysefz", + "ohda", + "umklz", + "lcak", + "atuol", + "gyemh", + "cdgnt", + "vebtp", + "hwozc", + "dbhia", + "oaxrmv", + "ixyoc", + "kyod", + "vsueh", + "xbwtkjz", + "tnbyevp", + "rlofzj", + "zydkac", + "laczuir", + "ojweqsi", + "xfputos", + "gpaznx", + "qamieun", + "mieb", + "cudqio", + "fksnew", + "moec", + "ufsnmpv", + "meinspg", + "rawhgvp", + "byld", + "dgvq", + "hazp", + "gcnamsy", + "wusykoc", + "wqaprzs", + "yrto", + "glhy", + "xztcj", + "efdz", + "kquhdmf", + "dzqbkf", + "jiyl", + "vorngd", + "bsymc", + "exhsrib", + "xdybf", + "kzwca", + "zcey", + "eifjva", + "nojuih", + "ywgdlo", + "ucmx", + "fgitux", + "uqzx", + "sjuc", + "rqhzadg", + "ytslp", + "tjph", + "bnojyuc", + "tlkab", + "zewkdqr", + "jfgwpq", + "ptsy", + "uvtwhoy", + "gotb", + "jqye", + "yobcq", + "dbxigh", + "xmyrve", + "ziqkns", + "dgov", + "xbinw", + "svago", + "lbximdk", + "pxzkufd", + "sjgkzh", + "fvpel", + "wbxmqc", + "meigp", + "aqmxplw", + "xduw", + "kmbz", + "cldekwn", + "oesj", + "aips", + "bdwuk", + "utfc", + "oicvur", + "qoha", + "latgdj", + "dlvena", + "rbjgd", + "wjstnb", + "aybpjn", + "ybxp", + "etkdw", + "fudryxi", + "lpsk", + "gqif", + "qnut", + "dmbwjzv", + "pxqetm", + "wpekdq", + "tkjgwbl", + "etrsb", + "yhtlq", + "ctxjsy", + "hurkx", + "wnfxk", + "spga", + "qfdpgc", + "bhak", + "cwms", + "jdtwpv", + "guvxsd", + "gpqzubr", + "gqvcpem", + "cnsdrj", + "kcpnaxy", + "xrca", + "yfslx", + "miwf", + "potv", + "wdqyix", + "mcifdlz", + "zlbqaeo", + "vmhbrds", + "bgsqz", + "xibck", + "kcdv", + "zeuik", + "qsane", + "xflvr", + "zmprlhi", + "jtqzy", + "wuypeo", + "rukhv", + "jobcusd", + "anjri", + "qnaxfy", + "gkinrf", + "qjoyk", + "wqxb", + "xqnha", + "sodt", + "mktp", + "wdzfsvo", + "jpybrk", + "hvjax", + "gczli", + "suxj", + "qtrpjgi", + "dnea", + "mwtj", + "rtcxsdm", + "ltgebf", + "chuejov", + "qrmye", + "tpsl", + "rpzwgd", + "xjadrhl", + "degwpk", + "yeuloik", + "bxuv", + "yjqg", + "trna", + "avojwny", + "fcknpwe", + "gdmlwp", + "vizo", + "pwckm", + "fotlxn", + "oviwxyr", + "dvfmyg", + "wljips", + "yvwn", + "lwibsr", + "nvrtpmj", + "wpkl", + "hqim", + "rhbmvce", + "apnm", + "xhuwo", + "bdngfh", + "lvfdagk", + "acrlex", + "unebkdc", + "xabnj", + "voqb", + "ltbrx", + "tnzuqap", + "bdwa", + "hebovqd", + "wuqe", + "emayug", + "gxufkq", + "rpogvdf", + "klgu", + "sgrvpqn", + "ntzg", + "knyxlb", + "uzabhce", + "vudzas", + "osnh", + "bwqnhj", + "fncmts", + "iylcfg", + "tsuk", + "qmzkn", + "okpyf", + "aifudxe", + "bqjhlcx", + "lmsjahq", + "qiyph", + "jwmqdh", + "cdpx", + "jniqs", + "ubivlw", + "omader", + "npwbc", + "byzl", + "ybpsnlx", + "bsvfae", + "nlyo", + "sedfgoi", + "jfswtkl", + "ynsg", + "rugmcvq", + "yunohr", + "ksmlixu", + "gbdjxw", + "jwzm", + "pkns", + "hmzy", + "ahrw", + "tncqlpd", + "fage", + "ekyuwd", + "zvlia", + "mkua", + "psnw", + "gpqd", + "lbdor", + "vyglkct", + "easxgt", + "dojefl", + "zdqcno", + "ihjx", + "sbxwhed", + "vpdocwk", + "shvmc", + "ybmqk", + "knol", + "xlbzo", + "tbweak", + "rjwc", + "wmlvyc", + "xrvq", + "rlky", + "ynmq", + "anseco", + "mhexgia", + "bqyhxv", + "qmyt", + "ktclhs", + "dawn", + "ubcvkaq", + "cgvu", + "dtpow", + "yzxc", + "crvzqk", + "ydmwgax", + "vwgl", + "dwzhkbs", + "bkmvdy", + "guxmhf", + "yienm", + "lwdu", + "zknb", + "sijgz", + "bdeyrpm", + "lzve", + "yhoi", + "lgrj", + "pmaz", + "oeybstk", + "vubcfe", + "hjyatwi", + "pdbcv", + "neibz", + "gfhd", + "pkzmy", + "tzrol", + "teumi", + "fhro", + "mjuwq", + "xvtpgfu", + "rlxi", + "fakyc", + "vcxsqea", + "jdkvuf", + "igejsuf", + "yuzkx", + "gejox", + "yqgs", + "pahsil", + "qhtkn", + "htzl", + "astkvg", + "rmhb", + "umbcdke", + "iqdc", + "cebdw", + "gwqe", + "ucqfs", + "vwkfz", + "faec", + "jevw", + "mhlfp", + "qvag", + "fspkxjt", + "vgfq", + "ikvwbys", + "dmrqx", + "zgiuo", + "vmbfxgt", + "pmyj", + "fhzm", + "bews", + "abfs", + "bglfan", + "osylwd", + "zpvj", + "smnpv", + "vmwkhzu", + "ymue", + "tmkrilp", + "mstiox", + "lonw", + "camgkbl", + "zcjx", + "neqhlwf", + "dpvqknh", + "zwnhvt", + "eicujpf", + "ibquxn", + "aibzftx", + "rnczfi", + "ugowyz", + "jgvytm", + "fkbdu", + "mjnliwf", + "cvdz", + "cxyl", + "akljrd", + "tencdv", + "zqbeu", + "grnh", + "sbwdcr", + "rpynad", + "ulhi", + "waljoe", + "fhmk", + "puwdo", + "fjegm", + "asurk", + "krfeaqo", + "aetgsp", + "hqnful", + "lamw", + "douh", + "hdwulfn", + "lrfu", + "rbxati", + "jbuyf", + "bhpqn", + "ipndo", + "zbkduxq", + "khlp", + "nyjm", + "vkzp", + "xkhjp", + "beal", + "byaxhp", + "pilarkm", + "puewjsv", + "zwahpov", + "dixtpaf", + "debncy", + "ikzr", + "bfwmosc", + "avtxef", + "iebv", + "wmoac", + "yscw", + "jqhamnd", + "mwgsqn", + "bvuqp", + "qoath", + "efsuc", + "cwvrxn", + "ujro", + "swryobx", + "wvjo", + "kqzutpi", + "hzqito", + "sbfnlyv", + "zuxo", + "lwubkt", + "wzbdfhq", + "bsowg", + "duxh", + "korhq", + "xbva", + "ilxndo", + "ejbxcn", + "ihywun", + "iebght", + "mxcg", + "iglj", + "fuxnlm", + "fkre", + "lcazh", + "hnompy", + "cnjqrba", + "dmrqx", + "irnq", + "yzikhs", + "pkvdezc", + "zdbhek", + "zrsf", + "tdfbavg", + "mjarx", + "hnrvi", + "muidyn", + "pskqre", + "hzledrn", + "tkxzdpm", + "mtgo", + "zfrm", + "uvrkglz", + "xralm", + "qdawrlc", + "pnzfr", + "omkyh", + "mqbv", + "crbvnw", + "kbihjn", + "ejhg", + "ldjcwkq", + "lngvp", + "xzgpdlh", + "tugzqh", + "glcura", + "zyfwiku", + "ykradjs", + "jbqfy", + "nosryj", + "ozwyf", + "vholie", + "rhnz", + "adfiv", + "sztbk", + "fjsgk", + "bcymq", + "gnjfhr", + "fvckq", + "qfvbdx", + "exgrk", + "cainmvd", + "uozb", + "wftx", + "wzpmsql", + "vrjdwz", + "tlvy", + "dbaq", + "sybid", + "ywpks", + "cfpudnz", + "hfxpbnz", + "ikzgyj", + "yzah", + "ibhx", + "yoitqha", + "ynjrz", + "jrdcu", + "tygmdel", + "rcmqhvk", + "gpzisa", + "rbiof", + "dvainhc", + "xifbtl", + "rbtdnf", + "supm", + "bklmxuw", + "hdlef", + "tfrgua", + "xase", + "hvcq", + "iqdrxhw", + "qgxrp", + "ibvtq", + "unfhv", + "vpxwy", + "jcrtd", + "fvmx", + "oqnmuz", + "kmtqbf", + "loasx", + "larcpvy", + "wygpve", + "biupnl", + "bynfph", + "dgbo", + "advte", + "hgct", + "adzjxsm", + "ofzvdms", + "dkavryn", + "ibkx", + "vwmrbgy", + "bgef", + "alhtmc", + "nxlt", + "qefi", + "kcelz", + "dergnk", + "zgpuloj", + "evhogn", + "oekcpiw", + "zctypg", + "dhnusl", + "cigbl", + "iztawxd", + "knte", + "uiwn", + "ocxmkrv", + "nach", + "uignjwz", + "bhnx", + "jzmgol", + "fbtozk", + "lbzrjt", + "featui", + "qkide", + "msbyz", + "gnqrdy", + "vmjdo", + "dajymu", + "fnilsqc", + "djxz", + "jqsemy", + "gpfxwyz", + "vzst", + "pyxlj", + "onarhve", + "usmd", + "ymxkqg", + "slmo", + "jhyo", + "jqhmc", + "umcwhaj", + "mhqrv", + "vhwm", + "qmcgptb", + "etnyvo", + "ojbi", + "klafqx", + "swctvkn", + "mbqnyk", + "aibyew", + "mqxk", + "xlrk", + "wgboaue", + "svnpi", + "unmofai", + "uwpf", + "cgov", + "wmfe", + "jngy", + "pthjnay", + "qymdxl", + "czljoku", + "vldf", + "ngbh", + "bpfwcj", + "ljyrfdw", + "dhjeg", + "unczg", + "vtfqr", + "rlpzh", + "kutl", + "nivapb", + "rkwq", + "tvjnh", + "wzluigq", + "rfbt", + "sbhdlx", + "ormpx", + "fuloa", + "yteqwdl", + "rjiqfy", + "sjck", + "woal", + "dgqlob", + "yklxe", + "ytwfqj", + "hgnmui", + "jvhupc", + "xoahin", + "tvhzm", + "xyktc", + "bcpw", + "kszbx", + "atfhq", + "svbk", + "irozt", + "nbatl", + "fyxk", + "mzgjw", + "efplgxw", + "xopts", + "pcnkh", + "pnsdy", + "fxsyqjg", + "nkmzgp", + "khql", + "wcagiev", + "grhuysc", + "lmfred", + "unpayl", + "asgwxd", + "uwvkygl", + "zxsfuvw", + "kbpeuql", + "ptkjcv", + "laswycv", + "sadyxzt", + "zwid", + "qdzyp", + "ksxd", + "sykrau", + "soel", + "ztfw", + "rihdz", + "ldjvs", + "qxjcsra", + "qhkomc", + "fcaobzj", + "cvdlm", + "wycxgrz", + "fbdrhen", + "jxhvrqt", + "cktpew", + "bmivq", + "ugpkf", + "owerqv", + "ompx", + "thrz", + "qhcpnby", + "gbywme", + "rxvotl", + "glcjkno", + "hmqjxlr", + "guce", + "lerdyp", + "qucpfe", + "mgstdv", + "hjygwzc", + "mbfuz", + "vqceibf", + "vrlimkh", + "uyrazj", + "pwvsmz", + "xqhnog", + "dyfjpob", + "fecxthg", + "conzwet", + "jczwkvn", + "mxtpskl", + "arqewg", + "uzmlj", + "miaysh", + "ohlby", + "txsub", + "qotdz", + "rldmie", + "blpi", + "ankydp", + "utdk", + "udoeic", + "oblxv", + "jdruz", + "rqdw", + "rjng", + "ldwca", + "xgscph", + "vxrl", + "viafbk", + "xedmls", + "vsni", + "lkqaewd", + "isbueft", + "mtexoc", + "soca", + "xhnpd", + "wrzhl", + "prgaosy", + "wuhxv", + "ktush", + "knguw", + "svunkcj", + "kvcipn", + "dvwyzlj", + "oyieqkb", + "autnm", + "uzefs", + "pmxsi", + "dmofwvj", + "iqpc", + "jlwzhik", + "ysoz", + "tvrn", + "lhcur", + "vatob", + "jrtpyeq", + "ygqejk", + "gjptq", + "gqlu", + "txovg", + "gnsrqmd", + "mxdhp", + "uzdme", + "wavkr", + "qvaf", + "cmynb", + "oehvz", + "vmaqs", + "vltb", + "dzena", + "ftyac", + "vncral", + "nexfhw", + "yhtuk", + "lftsh", + "socb", + "auimlr", + "zvuj", + "nuqfb", + "oigd", + "gtfhrm", + "lxiyeth", + "mwnycjs", + "rnibgoq", + "nesljo", + "gfdmk", + "cpokim", + "kpbue", + "fxwopq", + "biwha", + "uygpjba", + "jbwrx", + "wzsy", + "yfgxi", + "aqdbvso", + "ulhytd", + "balxues", + "dicaypt", + "dsfuhvr", + "iflrmw", + "fozbi", + "xtmacid", + "iaczn", + "nwsfxk", + "rcsaouy", + "lisd", + "zlirjhb", + "lymgx", + "myvdg", + "qskv", + "npmdl", + "miyrl", + "wuvb", + "wekg", + "mwle", + "kyfns", + "vxbhiq", + "ycelqz", + "uptfzhb", + "rixqnub", + "pndxshf", + "jmgf", + "adqkfo", + "qjvxe", + "fmqoyhn", + "betp", + "srcetf", + "edly", + "tkiqxd", + "vhgtlps", + "hgsbuwn", + "aximpz", + "wjhpsrq", + "hsxgbp", + "cwnox", + "valdfx", + "bxpol", + "lasepzm", + "yeufm", + "fbgmvk", + "deaiz", + "tpcnlw", + "bxjkcfi", + "ioab", + "hxfegq", + "gwyqv", + "nirdjy", + "eynbm", + "dszefg", + "hnre", + "forjx", + "glvskq", + "rmauvwz", + "xymlkfj", + "jswcyix", + "ukcaw", + "wnubf", + "asoi", + "mhwn", + "ismln", + "lbfy", + "xnukt", + "kwhlmn", + "yapx", + "hdwetzo", + "tdlazr", + "jsniycu", + "erzjocu", + "spbaq", + "yepnm", + "lenvr", + "hezs", + "sbmko", + "bacoru", + "lxeqa", + "murgnt", + "eviofq", + "thgud", + "hiarwq", + "uydtxl", + "jlrvpst", + "czjtkeq", + "mrzwdbx", + "gbsyfhd", + "dzku", + "wcbgeh", + "dpfa", + "mqkbt", + "qcktag", + "preo", + "phgoa", + "ewny", + "olkch", + "imvsey", + "geimox", + "fijqh", + "nubmzg", + "ackwyti", + "rxsuvm", + "logdes", + "tdwyu", + "ismzha", + "mhuyzjt", + "sguhlpj", + "brwhvuy", + "zaufde", + "kgsjxqf", + "tdmiw", + "siawz", + "pstei", + "bytaid", + "nrfk", + "yelci", + "aqhrv", + "pdvw", + "oqbenu", + "shcyxa", + "zptarih", + "izup", + "veird", + "lqbkunc", + "delnwt", + "qecdyo", + "vwzbtq", + "gixzj", + "drbzw", + "dxhs", + "pwijm", + "mhbxdgw", + "rimdksg", + "usklp", + "yguves", + "uyxa", + "nqbf", + "pcfnhak", + "lsmtf", + "ljvnk", + "wnfbg", + "nmkps", + "afez", + "yhjqf", + "vbpaeo", + "eitr", + "ylwcb", + "tvckrqm", + "dgmhtyf", + "btdqr", + "flky", + "fsuj", + "hanfc", + "ahmpb", + "dinz", + "qkwxpdl", + "nkrxm", + "tpzwc", + "oinu", + "cyfat", + "zxparq", + "civwyb", + "ofmtpw", + "pxhafkq", + "wberpv", + "twcsg", + "btskrz", + "kejhb", + "rxhcuz", + "craw", + "updrx", + "fxyta", + "lefngzo", + "rapxinw", + "xmfiq", + "elcy", + "conu", + "zvtohg", + "ydhx", + "xiuod", + "khwai", + "gmelaxu", + "eygjzp", + "zgpbfi", + "lytmcs", + "ysdbf", + "ymgsud", + "rfmvzg", + "strfpcv", + "stlwr", + "zaowf", + "ylgxqp", + "bnedxc", + "evns", + "ufxvint", + "rokjwq", + "kzvqci", + "xjlmdhp", + "dkma", + "ounivb", + "mijxkr", + "avtzsgq", + "ogurwen", + "uxfscpq", + "ingsl", + "cpvkb", + "evmbusr", + "gtoms", + "aobtcx", + "sxvul", + "xthkf", + "soztl", + "wfgslzt", + "uqrcmf", + "sxfb", + "elrakpj", + "epit", + "dowqyv", + "kgpxl", + "yvtk", + "vrojpaw", + "rgzm", + "xfhnv", + "wfndk", + "jfcagr", + "xyecq", + "jzmavun", + "tfzwhl", + "acezqp", + "hgqrub", + "qdospw", + "cnmia", + "nfvq", + "noawtxz", + "ijgv", + "sygwl", + "mdnbx", + "svfmrg", + "mlcynhb", + "mxjpz", + "gupv", + "trgfh", + "wcjt", + "bxomvgq", + "elatp", + "lhmw", + "xhmgkad", + "bxth", + "oujc", + "buiznj", + "ihvzur", + "rojvc", + "lniwv", + "nklhjgu", + "ptkqfi", + "ctnrwy", + "ciot", + "isvcu", + "grumnkl", + "uyrqib", + "posgyh", + "yzpmes", + "gxsel", + "exfn", + "iqgvmxs", + "rhfta", + "ctdpo", + "lsubrjt", + "dsqka", + "iramg", + "fwnirg", + "xhaj", + "adxr", + "ksymh", + "lhqkmvw", + "ukdnrjx", + "xftq", + "ajtdeku", + "hswftu", + "jgvhb", + "wirob", + "qopldsa", + "clmnfxt", + "camx", + "bcwm", + "zmcblf", + "tmfwlxy", + "dbnp", + "qiymkdh", + "rsutn", + "nadc", + "jfoxdv", + "gplu", + "dbpjsyi", + "swavtnz", + "mvhd", + "nhfw", + "jzignp", + "idhblv", + "nrzym", + "jeowgfk", + "rukh", + "vkwersu", + "cqgtre", + "bgaiy", + "fcrnvy", + "lmdsok", + "pnvz", + "bgxewyh", + "wnkutf", + "zculrov", + "qglm", + "ycmphs", + "tihs", + "zgaykw", + "pjlct", + "kuxa", + "pgujbl", + "stjxpa", + "hiqzuo", + "mjpdy", + "tzlh", + "baqdi", + "zyen", + "mnqa", + "ijnbwrd", + "djrzn", + "ksryfd", + "vsnkry", + "jfhu", + "xmlc", + "ojichba", + "guqwxc", + "edzphir", + "qmzty", + "jtlbv", + "kgai", + "buezrtf", + "cbwz", + "hrvgce", + "suclt", + "sftzv", + "larcmh", + "qxglnbm", + "qldvru", + "aifvy", + "bvukar", + "yufc", + "dyajb", + "xvzoduf", + "tagx", + "nkhrmlu", + "ycgujx", + "lvbdy", + "axlrif", + "txokrji", + "yxrgs", + "kynwd", + "ogyqe", + "tcmqo", + "avntzg", + "cbkad", + "seuw", + "vfoi", + "dgxf", + "kwasp", + "bafz", + "jrkgv", + "hugrj", + "webatrj", + "awfnhc", + "zuekwn", + "hwusep", + "ouhk", + "gnwz", + "xkaic", + "phfab", + "moreqw", + "tazfqg", + "vxjlg", + "hcmnx", + "xljqht", + "pgxkv", + "xfcgj", + "ipcme", + "wjfv", + "xkhqz", + "mugpf", + "tuywdb", + "pkqnl", + "yjbfvx", + "jsvenwl", + "yuzirm", + "jyrtnh", + "nbiz", + "mcjzl", + "qipokcu", + "uxjbctq", + "rmsg", + "chfsr", + "ovpbcft", + "meuqztl", + "pbed", + "uphko", + "reugv", + "qelh", + "cylz", + "gmkvloa", + "igxypa", + "xgsjdbc", + "vmixb", + "qkeapjh", + "zwjn", + "dlnao", + "orljspy", + "ognzxj", + "ahurtc", + "wxecal", + "szritb", + "ltwxj", + "znykx", + "ztbq", + "inkj", + "dpziagj", + "iqgbzux", + "pxdv", + "gthqjfp", + "aouc", + "hiej", + "irmk", + "hlmipjf", + "cedz", + "hqozwas", + "zhcgivo", + "vhwly", + "evlm", + "cyltq", + "azlbsvy", + "vypqbc", + "ecgz", + "uwzgdxh", + "poavrnf", + "uxptsci", + "erzdjgx", + "cexvqwa", + "nzfkeqx", + "xehzoym", + "lanw", + "owzhv", + "ehnt", + "yudpraq", + "catz", + "qzcgts", + "crkymne", + "rcuolp", + "kqifon", + "abvtgws", + "vonqj", + "rmszvhi", + "ibvd", + "rzmqf", + "nyrice", + "djqbgzp", + "voiyw", + "rynqk", + "cuje", + "cyiwrd", + "deghqu", + "ibefvry", + "zltc", + "ctedvw", + "ybgow", + "vbalctn", + "ouqt", + "dtlw", + "yrtke", + "yfbjok", + "hnzj", + "ybiqjd", + "vkgod", + "wzrcfg", + "thfi", + "jmnwzfx", + "hiqpzt", + "rkdxw", + "ytxeb", + "jmtz", + "mcblatq", + "yeaijl", + "mvcyor", + "tmjq", + "dgfwsxq", + "pnrxc", + "crpqdtx", + "xymwpj", + "jeoupk", + "btjmr", + "izpkg", + "xayeir", + "yacidj", + "viqk", + "mnsp", + "pbqn", + "ltsqhkd", + "teds", + "pluybmn", + "ocpjeqr", + "mfxjlbk", + "xyslvo", + "gvmrns", + "omuwk", + "cqvi", + "ouxk", + "ifgnyoc", + "wztx", + "coxquj", + "aqifgsl", + "bdmxk", + "ibch", + "jbzy", + "wygvlux", + "bmpi", + "tkbuy", + "exol", + "atdeqcn", + "pfza", + "sibpul", + "dtbuj", + "sfwyd", + "hetckx", + "cyal", + "isvhkuw", + "yzvum", + "bedgml", + "adyow", + "fxjl", + "xlwmbs", + "hbklwnf", + "kdujfh", + "vzntws", + "vifrek", + "wdxckl", + "xemov", + "vhbq", + "xvkuoem", + "xwemb", + "pqitlxz", + "gbfsu", + "iuodm", + "yesz", + "utnzskc", + "bkdrthn", + "ebiak", + "bpgry", + "cyklx", + "shwvek", + "bdqhz", + "cwqd", + "qhfjor", + "njmbqka", + "ptwyd", + "jhkx", + "tqivm", + "amotd", + "tvfwiho", + "mrwd", + "xsni", + "pjirk", + "uolqigd", + "bzghj", + "yicwn", + "xutmrq", + "mtlxu", + "lbfo", + "ksawo", + "mlbtxo", + "ypcwsk", + "cxtebmn", + "zfaqt", + "mdnkvrz", + "mrnqebp", + "vbzc", + "itofxp", + "snga", + "xitn", + "dvagw", + "sqjpvo", + "gfcanre", + "rzadnej", + "wptcqxr", + "jnco", + "sjpkqw", + "pmyjzo", + "ljzkq", + "zbjiqt", + "tyuvo", + "mcrugy", + "wsoailb", + "ghzsfn", + "nmxh", + "tuya", + "usogai", + "jvbqrin", + "gzpk", + "zgdp", + "gnkxz", + "izxyp", + "szajnx", + "yvlfhpg", + "odht", + "ybdfomc", + "cxsjkf", + "gomhrku", + "qvgcaw", + "phgd", + "fdezw", + "qedgx", + "vofpu", + "huwc", + "feyw", + "qgyze", + "qhta", + "joce", + "rxavcgz", + "ixdb", + "lzdf", + "ipvwkq", + "ihcp", + "wgjhnt", + "xeda", + "nwcmbp", + "wxqeu", + "bktl", + "ftrvk", + "tyswkj", + "odtv", + "xvpua", + "btrd", + "pthzefq", + "luhcf", + "rjwocvh", + "dqcogst", + "zbqc", + "odqyn", + "jdbap", + "govq", + "qnrpb", + "yroswf", + "wqmr", + "yeaqhd", + "qlzuib", + "kpqw", + "mwhky", + "rxbzmld", + "bnesgti", + "ageqsbt", + "kcdi", + "jwth", + "ujdfrtb", + "mpyzw", + "pubdja", + "wgrz", + "rjvb", + "vzxq", + "haqjybl", + "sxhwliv", + "akscy", + "prlt", + "axkmvdf", + "neljop", + "yxkwi", + "alvw", + "yqwh", + "yjlgqo", + "mvka", + "nyts", + "nqliwh", + "qrole", + "tsyfjqp", + "pgxutn", + "waecgvm", + "ftypa", + "msdviwc", + "eifpgqk", + "vkdy", + "cmxnd", + "jmwzxrh", + "kudrs", + "furws", + "facrx", + "sctl", + "qvkl", + "ipglhc", + "yahx", + "ufedzo", + "zwnbuc", + "wmsz", + "joutef", + "snbewq", + "tshpz", + "xust", + "ziywkgs", + "lrjsd", + "mxipq", + "bohujfv", + "yugr", + "hmsrecq", + "fgisdvr", + "dgqnzc", + "eclq", + "dztygw", + "mehwv", + "yhstp", + "bgrh", + "qbcyt", + "jfzp", + "gprbes", + "vyof", + "mwikdx", + "lktnw", + "unqdr", + "zepdbgh", + "oumv", + "egboipr", + "dlqhzb", + "npujhc", + "olkrhn", + "lwvq", + "mypt", + "wiaucsk", + "vpxa", + "otjwv", + "pvkjisa", + "ognlt", + "akmzy", + "hnsy", + "lcnbr", + "aowvghu", + "aonxufd", + "zgfou", + "jnbzvp", + "whqbt", + "dzujpnc", + "nejhzm", + "ciqgbsm", + "akvywsj", + "fcmhtq", + "wrozqs", + "smkp", + "zxeajfh", + "fvutqa", + "nlobp", + "logipwk", + "bgnclz", + "gxpwrcm", + "crfhzy", + "sxjwut", + "xmaq", + "plqrd", + "kwmyzul", + "aljucvg", + "qwri", + "edvqz", + "ohkfv", + "emvtbcf", + "iaptluc", + "tbogl", + "kydvfn", + "hnjbul", + "kqofjza", + "fvkibju", + "dpwck", + "dktw", + "ylgwfr", + "nsfge", + "tynvl", + "eogvdj", + "qtlcpyf", + "cvrldps", + "amzs", + "yzutl", + "hfsljdt", + "kiqof", + "lumi", + "xvijya", + "jnvaydg", + "tcul", + "qlpgi", + "xvljau", + "jwlcsq", + "ngwz", + "eviomp", + "loqhsu", + "hmzk", + "bsydl", + "hsaxzl", + "hqje", + "whkifut", + "amnqr", + "rewsh", + "obzvd", + "wxeoy", + "nmzds", + "jbvxl", + "tkne", + "bhue", + "kietaf", + "iachmwv", + "ufces", + "kfiu", + "hvpbj", + "jcmgt", + "kvlamjc", + "mlqe", + "efcdiw", + "psvbh", + "ydpljmk", + "pwsyc", + "epdyxk", + "bwzlpec", + "jehpb", + "anuospd", + "hrwg", + "erfuwp", + "hayq", + "kfcjnx", + "obrhe", + "mulkdo", + "spcz", + "ljxqvis", + "jinsr", + "uceonw", + "famhv", + "yeznhtg", + "dqcolkw", + "yjtlz", + "uofqlea", + "ukjwsqz", + "tjvx", + "sfvotgz", + "husbg", + "sczuy", + "xlguace", + "bolqsh", + "pfomvyx", + "ndulq", + "xmohzk", + "dphbfio", + "jixul", + "urcj", + "nzjcg", + "owkglda", + "cfuqj", + "phrkso", + "rftup", + "qckjb", + "tbmxvi", + "qiufb", + "wrnxph", + "inqa", + "ydicpul", + "iszhc", + "iegzqr", + "hjlyq", + "rsxoflu", + "iwvgym", + "wpeqlc", + "fejts", + "tgqabzp", + "kqupyv", + "vswkn", + "dyut", + "eslbdy", + "igjxyv", + "fekws", + "ftkves", + "nwemvtu", + "rigq", + "nwqvdrm", + "rswz", + "bogxcp", + "pueogxy", + "sbpo", + "ytdlnrg", + "tyjbp", + "pkmhd", + "ascthr", + "apetqjc", + "ynhsfd", + "ceblu", + "udor", + "jruq", + "aejvdm", + "pdtoi", + "tizjmo", + "nqicrka", + "kcxr", + "dsta", + "vxopc", + "nlxvb", + "xpodbli", + "oiweq", + "zlcx", + "gufsrd", + "dhvwy", + "seiyb", + "wcuakh", + "qevul", + "bydqa", + "vqxngjz", + "arlkvqf", + "sldyh", + "opxuwi", + "wmfy", + "lrpu", + "tmwujyc", + "hzukb", + "spyvfk", + "ksrpj", + "mlgo", + "tubyj", + "icobe", + "qszgc", + "ezauyo", + "ketm", + "cfbe", + "solpkt", + "ngim", + "xkeb", + "ahbpne", + "ryqczfe", + "smaidr", + "bjwpq", + "jxrzq", + "pkhtmq", + "jxog", + "kcdwl", + "viwyg", + "nxip", + "wceq", + "cvudk", + "fozpatx", + "uomcl", + "jdacv", + "agvoq", + "cawrpu", + "msoira", + "uhyqskz", + "hgizvu", + "fnajo", + "dthawm", + "puyfqn", + "zndi", + "jkzdps", + "mkaus", + "frghk", + "pxiynz", + "ltbcxz", + "gitrbhp", + "sdyqv", + "isphfja", + "tuzwf", + "pzoksu", + "rxzikj", + "elnc", + "wjai", + "phkjuon", + "paxylh", + "vbrslg", + "lrema", + "wyxucl", + "mkvf", + "rifxp", + "qugz", + "wtbh", + "zvnwlc", + "vfocer", + "afrim", + "kfanio", + "nxgbd", + "laqpojn", + "ekljvd", + "jznbvr", + "dfbqlh", + "epgriou", + "mqjipre", + "lxsywmb", + "pfkb", + "dsagxrh", + "pymgf", + "ykif", + "wsdbtpg", + "jwvucz", + "ncmotrz", + "vsawrh", + "otsd", + "zcdmu", + "hnbid", + "hlgc", + "rgnj", + "dtxnp", + "kyol", + "sgtm", + "epafgl", + "ptnmg", + "mnvug", + "mwjxk", + "lfdb", + "ryxho", + "tbau", + "vtgu", + "bhteam", + "acwqhim", + "vblfw", + "cdze", + "xgnl", + "dpcrmka", + "hmcuoel", + "njfha", + "evhjqnb", + "fkcgltv", + "uxahqb", + "ravolud", + "skxzatq", + "zgik", + "jcsingb", + "nxqalod", + "kzlym", + "qyzr", + "ynlofc", + "eupz", + "oxacnm", + "zaovpk", + "kywlni", + "uhmdqy", + "vzyckqj", + "mksuvd", + "jcmpovw", + "poit", + "rsuaco", + "otlsp", + "qxomnek", + "pbux", + "rxatgl", + "vkapi", + "bfdkrg", + "ubkpi", + "tiexv", + "rhjzc", + "qaelx", + "jinfsr", + "taqvdnu", + "gqzuxp", + "pmerluk", + "qmwzrvy", + "rvhs", + "hfea", + "beqpdsx", + "csmh", + "trfskqg", + "mqvo", + "uwxph", + "swve", + "lgar", + "rfve", + "ldqx", + "jqhb", + "tvzmyq", + "ujolm", + "tima", + "kmis", + "tdgrym", + "peuqv", + "gfahx", + "jbake", + "gxrth", + "ryokdhx", + "phyf", + "kzdstv", + "hcforv", + "ohzrac", + "xqmn", + "ebvrlis", + "leythnv", + "wgnihc", + "ujigvm", + "uhgl", + "pjxuam", + "nbwzuop", + "yfeurxi", + "gimshj", + "ituhrdq", + "idam", + "zsgf", + "fohzw", + "mtsf", + "klyoc", + "xtawqeb", + "hgea", + "btevkm", + "zhpnx", + "megk", + "cjegqr", + "oekcf", + "kmfatjs", + "myjte", + "rikodlm", + "qjdkvsf", + "fhcwxr", + "nlrqjz", + "yncsuv", + "ukmw", + "wvaxr", + "czad", + "nmghukc", + "ejdanow", + "bhzkypv", + "piztlm", + "aublf", + "gzqaxsv", + "bsueqza", + "yusefqh", + "imvrp", + "ongqkh", + "vslr", + "cbmhaz", + "wzmvrpf", + "ckqjoxl", + "foqyxr", + "klvu", + "tlurg", + "lzeivq", + "gketf", + "ymwnxsf", + "ucor", + "yarlb", + "helo", + "gqfk", + "oienm", + "zhioqb", + "necziyg", + "twbldrj", + "weafsxl", + "hxnkbc", + "vinslrb", + "qzecbw", + "rckyosn", + "dsjxoy", + "qaym", + "bagf", + "pwsluid", + "mfeoq", + "wknx", + "ldtih", + "hnkadb", + "hpbad", + "enxj", + "exhnay", + "yhwbraf", + "ehjyxr", + "jhqprzf", + "rynuxs", + "pnszrb", + "znlwux", + "dgcm", + "cgjpewn", + "yalrvtb", + "drxkqvn", + "awxcqen", + "wmzh", + "gifn", + "vljpe", + "uaqvj", + "vdksgo", + "ofky", + "uzlvhd", + "oejqp", + "yisv", + "clghj", + "tcgumqy", + "hlzejfa", + "ljoq", + "izsal", + "clth", + "rzjokns", + "vegfz", + "lfrd", + "etmilw", + "roiy", + "mosife", + "mzar", + "gjdum", + "zvosdc", + "wairpy", + "lambstn", + "gdelv", + "nvfgwrd", + "chpfiu", + "nfsiyde", + "cxosup", + "adptvxb", + "ahzt", + "uviax", + "lahyw", + "ivwxk", + "dsbvlwn", + "pcxqyv", + "wjenuqg", + "flgqedp", + "iofzlh", + "hnfv", + "ldwov", + "wisb", + "rsokwdq", + "iwal", + "nwig", + "xcpuz", + "lkpbdn", + "rshiy", + "daqnsx", + "gwzjdnx", + "vnya", + "zwquc", + "flvyqc", + "pdnliqo", + "fcbp", + "vtzfx", + "bfqnd", + "faojl", + "jzdm", + "ruoevd", + "zyswie", + "fqouc", + "zcsymju", + "oezkwsc", + "iegf", + "ynrw", + "wicqxdu", + "ndblvm", + "chwqa", + "fgdno", + "mqhbxp", + "ocmt", + "ejrxq", + "xpwik", + "psrixtd", + "cjpl", + "iuesnr", + "lfqh", + "mnbdlp", + "veyg", + "gatywc", + "rdcjq", + "kmjhxsu", + "csui", + "xjemb", + "umako", + "oerslfg", + "dglwu", + "zrkdlmu", + "pkaj", + "yozvbjx", + "cbdasnz", + "wyqth", + "hxtqjz", + "pedm", + "kgzhpi", + "sxnjdgm", + "zpsxdch", + "gqlxjh", + "twcmlpk", + "dshqgm", + "ufti", + "qeulsp", + "ugcby", + "vqkfagy", + "wgxuzo", + "hodx", + "jerdcq", + "ayoslbn", + "dwaf", + "vhylntp", + "mlbtqrf", + "xzuonje", + "cxudo", + "swogvx", + "aliudn", + "qgyfjza", + "wimrz", + "ceryhu", + "rdxp", + "owecj", + "dmbejku", + "ywtan", + "pbtz", + "tjyzr", + "ekwth", + "zitujn", + "lunicpa", + "kfom", + "pmglqhj", + "gnepml", + "pecj", + "iuoq", + "xcdwbqj", + "vxpdnrl", + "mago", + "rsbqpj", + "zybcatu", + "ztan", + "fpwjo", + "oktycsp", + "oaiktbw", + "wbxoksv", + "wakoq", + "tyogrbq", + "xskqamw", + "zjqx", + "hkne", + "tqsi", + "erkpim", + "juwkdr", + "mujc", + "nslkfvb", + "wndysx", + "rviud", + "wpylg", + "ykjzo", + "fdejr", + "gytuefn", + "nzlf", + "hskore", + "apjrqim", + "enmfg", + "cijp", + "vornc", + "mzkcgs", + "whyiep", + "untrfhw", + "vmgfsqy", + "klme", + "rvfz", + "gksd", + "hefiwa", + "qmdu", + "cauv", + "yzxpubs", + "npwar", + "iaxw", + "mfsg", + "gwyops", + "wfmiy", + "mzlgu", + "olnubr", + "jukpam", + "nkqs", + "qunk", + "epqvrtf", + "eqfjv", + "qtvmalo", + "otwgc", + "uqxpko", + "qpgf", + "uqfzoxh", + "ucdlhy", + "elcrtwx", + "pndvy", + "prudzeb", + "dwac", + "olih", + "fzhnvs", + "kzxuc", + "qlriwtk", + "xebz", + "awfmi", + "cnhl", + "gxph", + "riujgq", + "qltmdow", + "qgdm", + "vjznl", + "astwpn", + "owisel", + "yeakxb", + "hvfobj", + "mwngbi", + "hkrx", + "ijfldr", + "iuaykv", + "adhsfx", + "kryzptq", + "idtjpgk", + "qivwts", + "coibpz", + "spab", + "nqedgif", + "qzoxkhw", + "rjdoynb", + "gjtya", + "xhcev", + "xcag", + "oagv", + "uprbc", + "trikmb", + "zoixukp", + "qxuatyr", + "jmgyprv", + "zlvn", + "gzlxy", + "kgftm", + "vdcebqx", + "ohnmtdb", + "rhuswag", + "blaevp", + "yxcfi", + "riqwan", + "ijwxpk", + "ofbzeh", + "qcbnkt", + "jkbh", + "vyhimp", + "rkcjiul", + "azgskj", + "iweb", + "asqdg", + "mewdz", + "qcbj", + "lhxic", + "ycazgh", + "nhup", + "eabfdph", + "juinfde", + "pfxhwy", + "twdrzm", + "hsoupe", + "mrykjbd", + "vmjikt", + "murc", + "bgurmxw", + "yegcsmj", + "ybosvwn", + "vbrd", + "hodqfyp", + "uyapwg", + "ctrhfx", + "crsy", + "jatrmx", + "aubdgx", + "rndxfk", + "nxzh", + "ztlhgs", + "odmke", + "nardv", + "ukwjn", + "jxnu", + "adzv", + "ekqnh", + "kxdhfg", + "ydqpo", + "skzunt", + "loeuh", + "rydf", + "jrcfowb", + "ydvifo", + "uaqz", + "gedtikp", + "xsfm", + "txvounp", + "hfiogw", + "aevx", + "mehwjvs", + "mejbluh", + "sxonlu", + "zfhmja", + "woedv", + "jvmor", + "pokygd", + "vtayw", + "fbngrw", + "hzncy", + "wsdiyvt", + "voercyd", + "qwaxmy", + "cxqbmz", + "qfktph", + "dzpi", + "gzfp", + "pgwj", + "keqac", + "vloktx", + "bmxuho", + "xkdryot", + "rsxi", + "swazlhg", + "ghnsa", + "qjhgv", + "rnicy", + "vmkh", + "weutdab", + "thlus", + "snhr", + "qnusdk", + "lzygqsx", + "harsyk", + "ftjwz", + "omtk", + "usdaqxo", + "lowd", + "mdkhwb", + "lxkgd", + "ajow", + "zoaiwvk", + "efgiko", + "pdikw", + "rfpk", + "hgtql", + "jvqlx", + "jwfoe", + "rdewmx", + "meqkpin", + "givyn", + "shnj", + "sefzjwo", + "ngxrqp", + "bkswyqt", + "jwufiec", + "mvotbka", + "wezyug", + "yfoa", + "gcmt", + "gdtlc", + "hxgbz", + "qjdu", + "rluokev", + "plsc", + "expon", + "pveqxyd", + "qiwh", + "tafpgl", + "iodjlt", + "ntwkplh", + "qfyvkt", + "lsqbgme", + "fwaz", + "yqpo", + "okrfwu", + "zeyqo", + "rewsx", + "bqexc", + "ykprgc", + "jhqsypr", + "ktvy", + "tqhxyif", + "vbzqjth", + "wfkeb", + "bfupqi", + "wxcao", + "ruiwdoh", + "bckui", + "vlurb", + "zerfmdj", + "oprz", + "hrdp", + "aopq", + "aiejto", + "zltn", + "wralh", + "vfqyni", + "ojrxgl", + "hrazsfe", + "erslfkp", + "ebqronj", + "zbpvruf", + "qgst", + "fnzhwv", + "bvukl", + "coqex", + "hxid", + "aspi", + "qetdxk", + "trmahgq", + "okdqwhv", + "czwxjn", + "vuifz", + "gwpcfd", + "inzelrd", + "cnlezxg", + "cvnbj", + "kvxizdc", + "ntqziae", + "acxm", + "fvbhnyr", + "hwpgo", + "tdlcui", + "ihobs", + "uwxfa", + "nuwpzba", + "flecqz", + "bxdskc", + "sytx", + "jyugfi", + "wpzb", + "jioz", + "qwtopzc", + "ukyr", + "yakn", + "ebrsdc", + "jtas", + "gybn", + "ykbvw", + "minaj", + "jcseymb", + "sjcbozh", + "qgdayl", + "vwijqnc", + "tcrihu", + "fbdkr", + "stjqc", + "utmols", + "yzrfsud", + "iats", + "zsxug", + "qpry", + "ezlj", + "dlsfar", + "lrhgq", + "jfgs", + "gqatn", + "iubvq", + "cantof", + "zckwdjv", + "vwukhz", + "rizd", + "hmdvx", + "qkctj", + "rqiugy", + "ztpeb", + "ymkcis", + "sibmhe", + "zcgylvs", + "zhavmls", + "mhoa", + "wgosdy", + "mguxil", + "mgirot", + "bvos", + "bgvjwca", + "tylf", + "miwrkyu", + "bskfxjl", + "trkicp", + "jghau", + "ubdi", + "ilof", + "thewf", + "ncuz", + "yvtub", + "dmqa", + "zvxikl", + "ovexfzk", + "qcfjbd", + "gbsum", + "dhxvfk", + "lipe", + "hbqvr", + "tmvge", + "cqznmbd", + "ewrftdq", + "ehiyqmw", + "bilswpv", + "dobrvi", + "jcyetn", + "ydfmvx", + "umke", + "qvgcps", + "wupbqxn", + "uqzxds", + "puag", + "zpxk", + "kmlv", + "begmvq", + "ncxsw", + "oidfuem", + "egrfkwi", + "ubhnmos", + "amtqce", + "ifzaqc", + "lqwkprs", + "sfpcel", + "lawkmn", + "dqrxoil", + "cezdsg", + "mplevf", + "tiombz", + "nihfjwc", + "qbwehun", + "yxjndgi", + "ndrj", + "gjhq", + "yfzblhc", + "brmy", + "wnch", + "sjnk", + "tyfbn", + "caut", + "qzfm", + "xonj", + "culrfyp", + "vrlwu", + "cahej", + "awmtu", + "fxrwegv", + "wrxvf", + "jqxin", + "uzlfih", + "mgie", + "ueid", + "jkihwga", + "vdtxcyg", + "ylwtdca", + "ledi", + "xqdy", + "kows", + "qzeadr", + "mdbtukq", + "wykjns", + "tuad", + "taqzbjo", + "fqbzdor", + "yzcxsq", + "ltygnm", + "gsobp", + "xfielpq", + "vxtasmr", + "jdpq", + "whvaur", + "eohj", + "dqykpc", + "zjpy", + "orzfyau", + "zatpirc", + "xkyvtib", + "bkdrxh", + "nlqf", + "sztur", + "jxwcpz", + "csaqrl", + "vofuc", + "cgritpb", + "msxklih", + "ktiswd", + "ykth", + "mheqznf", + "qyfwxa", + "yufbtrn", + "tohec", + "xmijzw", + "ieowmcl", + "jfweu", + "gslm", + "qmhjs", + "jpcrymk", + "bmkzdw", + "fgis", + "gporwj", + "nvelcps", + "tcnqoa", + "vouaxyk", + "cwmj", + "jmcw", + "xfup", + "drgb", + "ftgb", + "jntesum", + "wdrqcj", + "szoq", + "mhwujet", + "xqupy", + "wnum", + "xdpq", + "hrgqy", + "usom", + "siwudkt", + "rkzchmw", + "upskfvi", + "uwqsgzk", + "jpwrtlo", + "hkzxiv", + "yoxb", + "dhoqpan", + "ujsdm", + "mjgc", + "ikomvxf", + "hdujtv", + "lvtzco", + "oimced", + "dxcq", + "kxin", + "kbudmt", + "ixmyvd", + "lgyvfqr", + "lmjxzpy", + "lhxspy", + "tyqun", + "mpnrwa", + "omzj", + "cilb", + "gleajky", + "spvyf", + "ywejdo", + "uzpb", + "iproc", + "kbifmlt", + "qehx", + "yvdum", + "vqyn", + "cged", + "umep", + "wqbgdct", + "tzhunq", + "pelxjw", + "rfiejlk", + "xkpbnwi", + "moudbzc", + "avlznpx", + "vbxyqsz", + "ehgwpcs", + "pyzo", + "lrfjgx", + "cnfaor", + "mynp", + "ujnyfeg", + "fghoven", + "lqcboia", + "dhkq", + "mvfjhpu", + "iqobz", + "qnydux", + "kozc", + "lowjdh", + "xzsaqdm", + "nfvs", + "gcqvhm", + "ocqmpez", + "gshp", + "lcjn", + "jdctw", + "stjli", + "diecq", + "fxrwuv", + "ixymcfn", + "frut", + "nzild", + "tcoy", + "tcjgmdh", + "yojb", + "xcdk", + "rqzfv", + "cltnh", + "vzjmf", + "mxykf", + "spkjol", + "gfdjqwi", + "nerjaw", + "bnipl", + "ugixms", + "imhtbzo", + "liojhyz", + "qvwpxbc", + "yplwx", + "jdqx", + "omda", + "gtvkced", + "fdtwipj", + "qbutpec", + "cyubit", + "uncptek", + "gqfn", + "uispb", + "cntwa", + "iwpxfzn", + "cfsed", + "bihxczw", + "dochf", + "ewxza", + "jswvn", + "cohqvei", + "joxfhpt", + "rkphvd", + "mrswpqc", + "fkmblg", + "gnyhb", + "kuarebl", + "zuwj", + "thdo", + "vwpnas", + "dalvpmt", + "cxapbyr", + "lpwe", + "pnmrtdj", + "txpchgw", + "nlwdkm", + "zyqfapm", + "csvqt", + "ijhaunq", + "olbcda", + "xpga", + "gfhjwdc", + "zdnx", + "mrxukgd", + "uazboy", + "lufc", + "tzrlnm", + "eorfwu", + "sftdzx", + "taumc", + "fwsjuk", + "mapy", + "ubcn", + "frab", + "ydtlc", + "jsnh", + "ntsjw", + "eaykpoz", + "tqsopnm", + "cheount", + "ywdfjag", + "elomz", + "rjzmh", + "cebp", + "gvljiuw", + "lent", + "rmptsea", + "zgkjoc", + "tfsz", + "gswvz", + "znclqv", + "oplxrgd", + "kjxwe", + "yndi", + "lqpz", + "yxtn", + "lzdjb", + "novu", + "uatyc", + "dkjyb", + "iesmf", + "wjimp", + "urmc", + "ksnm", + "xfeatbo", + "otxdhg", + "kxqy", + "bpjuync", + "pqxnask", + "khej", + "pryjedn", + "sano", + "cbvoa", + "afrtgky", + "xkrvhm", + "dvteuk", + "iqzdx", + "jchd", + "qbnicg", + "tlwpjc", + "jqwfmxi", + "iykv", + "jrywp", + "hytzj", + "bfnx", + "yjte", + "jpib", + "lfqtpj", + "crvhfab", + "cmofvz", + "jpbiv", + "lhyoqi", + "dcxu", + "zsnvxf", + "ypwnub", + "aksmc", + "muqlkb", + "imcx", + "lgvjwt", + "qple", + "opdw", + "twfdkm", + "qvmra", + "vaqulko", + "wydafp", + "dxtcngf", + "hipruj", + "yhgsd", + "vtepmr", + "cuan", + "ialghjf", + "jysezn", + "qbhvmf", + "ztvda", + "ldqnsve", + "tseqw", + "acgl", + "ybxvsol", + "swmz", + "bscmgli", + "pckxs", + "oqdxwa", + "tmldwp", + "lcxit", + "pnlx", + "lrxfnd", + "lbnyo", + "ciyw", + "mbxwtld", + "teghk", + "buvkh", + "utva", + "fjkpra", + "xpwgluk", + "lguk", + "huxeav", + "wfhtuv", + "ibywoac", + "dvzpsmb", + "aqxzeup", + "gcqxtr", + "sumh", + "vydh", + "epikd", + "izcep", + "enps", + "wmcvqg", + "hfcu", + "cdpfosy", + "jicfy", + "jzciwp", + "fhklw", + "bghwq", + "dczar", + "fnpmb", + "eqlnhxz", + "ntxov", + "kbzopx", + "fagj", + "ygwak", + "lmowfgy", + "kiqdvpm", + "uszrjo", + "lcrnpg", + "puxbzmj", + "srkyfx", + "zjvt", + "stmxur", + "moagzkl", + "poacmj", + "xbpql", + "ewuxomy", + "ezcjp", + "anzpqe", + "ngzbi", + "nbfq", + "jfxidb", + "omzrl", + "adgkyth", + "qzamiev", + "givdetl", + "ykoecu", + "jdgahk", + "xrwt", + "cpuwi", + "wktpzqb", + "tivhc", + "uidy", + "evjus", + "fpkurhw", + "lkhuqpm", + "qbywgf", + "ldmzgi", + "tajrqn", + "lyhxin", + "qspib", + "wtnv", + "wlgx", + "yhcqa", + "kxpslh", + "nfikr", + "gfxdpt", + "ptync", + "wolymr", + "tzdsky", + "nreybzt", + "spzkaw", + "ozebax", + "ahnkjm", + "grzhoep", + "dymigse", + "dpha", + "oyevwgl", + "yarhw", + "hifco", + "kbaidq", + "fcwmgzq", + "othe", + "rqnliex", + "mzkpflx", + "zoucrhs", + "dhnawm", + "wkxj", + "cldkhy", + "pvqy", + "igeqt", + "qlfbt", + "wevdx", + "iwjt", + "vrgc", + "fxvnm", + "pavfk", + "fthzu", + "elhzquk", + "nbopaq", + "trsef", + "hvpqo", + "znxlsdc", + "fbvpog", + "zxgvb", + "sflhg", + "wbkt", + "jsydbqx", + "xocib", + "scmka", + "wrunvx", + "gayqc", + "jcnl", + "puemy", + "ocilju", + "biwchyj", + "hlfoter", + "ljpmvt", + "zhbvxkw", + "zsrnob", + "ofjg", + "izeluv", + "vxrdfg", + "ivfchj", + "uprcjot", + "sdmytxb", + "cewmr", + "jguzwa", + "xzdefoi", + "lzeyvda", + "udnhay", + "jsxcz", + "czul", + "axjy", + "caimw", + "yqhla", + "hvmsbq", + "ushr", + "rbaol", + "gbdjni", + "ldcvi", + "sgzltym", + "lyvpaqb", + "xgwbak", + "weyncip", + "pzomaqt", + "rtmzkp", + "nbwl", + "rxvyzo", + "naqblp", + "fvcanrt", + "wethar", + "zvlmtsg", + "tzlxoa", + "lbhey", + "gdzh", + "nkmae", + "glye", + "jeinm", + "tilo", + "mbysiad", + "zemr", + "ugqt", + "kfgnzqv", + "tyzrfq", + "plygzsx", + "otnur", + "qagxr", + "suie", + "qotd", + "afxblw", + "drhquw", + "tvdz", + "padnbug", + "smoi", + "oywsh", + "lonm", + "nusvxb", + "tofxajk", + "otmhbyg", + "bkcphuz", + "gbqe", + "xqnjbv", + "jdwczs", + "mvqczou", + "asnwd", + "suxinkh", + "qkfx", + "xfonicq", + "nwrfhct", + "uynrz", + "rglzk", + "taelco", + "elkmn", + "prze", + "zmtrojg", + "xcsteu", + "jxfliay", + "fzacjvi", + "jyvk", + "igko", + "ylce", + "hoyd", + "zwmvtp", + "egdcusz", + "hufd", + "zbfq", + "iemo", + "miujwzt", + "bpmzgna", + "ytevzq", + "ezwcpjr", + "cmtkr", + "rmleg", + "kxzoqmp", + "mzlhcat", + "dfqr", + "osjh", + "kwrnbf", + "rvgaum", + "kebv", + "zgimbeo", + "uahi", + "klmud", + "jzpi", + "ghqzupd", + "byud", + "wnjv", + "ltqep", + "urisy", + "xwnbhoi", + "gpjwxdh", + "djtc", + "xzwyol", + "sxvuqzk", + "ycivj", + "uvlgda", + "uqxt", + "sftc", + "lnrod", + "ebznr", + "vfohm", + "seatp", + "wtxd", + "oaedc", + "qjfblrt", + "qfsnyu", + "jpef", + "udag", + "vnhbi", + "duic", + "fdvw", + "peucmgd", + "ajsu", + "tywuc", + "tgnkl", + "duspakv", + "qnsjvh", + "emybtu", + "dmqjr", + "iwrjdus", + "dgryhv", + "qakb", + "kfnqgs", + "fvhb", + "tecpam", + "mqzedo", + "vyeocuw", + "nvmqrz", + "iqnyuk", + "wngxv", + "hgiwsrz", + "fyajhw", + "ysoamkq", + "kmqng", + "xhcwd", + "znuxpm", + "vmre", + "fvyxb", + "qoygv", + "ujoeb", + "wyhftol", + "kythre", + "fnwqd", + "tdkl", + "ycsixw", + "rbjkht", + "ypucxw", + "zxwkt", + "ksnmph", + "elqtr", + "fnuzx", + "gcxqt", + "vjmcyf", + "dbgtrxi", + "jxes", + "qrapec", + "jgso", + "psaqvm", + "xsnrhq", + "qnspxaj", + "gzjapn", + "dgszt", + "rmabq", + "mxlpkz", + "xdqepmw", + "ltnkzo", + "tkfj", + "mtcbl", + "qyvfepu", + "iztoqcx", + "mjisfzr", + "kual", + "rlpgvm", + "odqakjv", + "wrvn", + "jrepzka", + "ocelnp", + "wnsgq", + "wond", + "nshc", + "wpzy", + "asyq", + "wdbfht", + "xksrd", + "csrej", + "sogxkwr", + "pxogu", + "gmhp", + "cilqsg", + "okglyq", + "kgwaxc", + "azni", + "yastzw", + "tibpsr", + "duozxb", + "xwek", + "rpso", + "jegad", + "mjns", + "xhimynt", + "ivrtk", + "pzeukb", + "mfiug", + "fgubr", + "nhuis", + "emszi", + "kdlu", + "fqukmw", + "hubxci", + "xmhrsq", + "fgkoh", + "hxibo", + "richeyb", + "szdg", + "uhniec", + "dcnwktf", + "vwadhs", + "itnwhvf", + "sikvtg", + "pkrzvfo", + "xyvtosg", + "bfoj", + "pifjyu", + "tvlxq", + "sdohmi", + "ywcsfu", + "phik", + "rgkm", + "pzqihg", + "whnq", + "wqmoc", + "zuqpl", + "rjcwt", + "alorz", + "jcrvod", + "jagib", + "jtqu", + "umnhr", + "xdcsa", + "nrmo", + "ordqwm", + "rcqjf", + "hisn", + "rtde", + "axldns", + "msxz", + "ezpohtl", + "fvyqlu", + "uynphax", + "ghzurkf", + "igwnu", + "eukywab", + "dbrn", + "sfrqw", + "xpeimtg", + "awpy", + "joxu", + "hnyzp", + "udwjcna", + "rsok", + "yfqvajk", + "fcireg", + "ibhxm", + "mgfknp", + "bugfxc", + "hlycg", + "bqztifc", + "ocmr", + "bhqlvsd", + "szfv", + "zjenxb", + "mwcehfg", + "jhfix", + "dptko", + "rcahs", + "tbmlgw", + "hcxl", + "vwseyr", + "lgxqnc", + "tyfp", + "geqcdo", + "xpyw", + "lojxkgc", + "parbn", + "ygxhdlf", + "mxfq", + "rgzbwfe", + "bpgw", + "kvmwlq", + "ycwfm", + "chmefz", + "ofnqtx", + "txbjhy", + "oqyngv", + "brcsup", + "kcjyutw", + "ldfyxt", + "xqdhru", + "jhpax", + "eosltih", + "zpngfky", + "vkfxldq", + "oyiwntu", + "uqmfhkn", + "akfvtou", + "mgns", + "krugi", + "aubvyn", + "odxp", + "rcheozd", + "gvwnkhy", + "lfpqc", + "raxem", + "jrnw", + "mrsjd", + "ahqep", + "rcgaui", + "sdrnki", + "wudrpqy", + "zhimvqg", + "sjfd", + "bxjsu", + "mebhsq", + "nkrbtx", + "sgwtz", + "xwatpj", + "qvzafi", + "qsfxe", + "jtdy", + "doptvbg", + "qymrd", + "rxeq", + "ktbfqr", + "ditkr", + "rbjec", + "htmyeq", + "gmqenbp", + "vkyxmn", + "doyslf", + "tomwaqk", + "pklchz", + "qgmoy", + "dohu", + "lwaxfdu", + "xifwb", + "pqbv", + "yunjbhq", + "digmhu", + "cjpfkyt", + "euyv", + "mfgen", + "bxzj", + "pjesizn", + "lbcv", + "gajvbp", + "onxdgkj", + "exhnsm", + "sjlork", + "qbmzsf", + "ptrh", + "djtqfmh", + "fyzmcsp", + "ngftyu", + "chjnkfi", + "bwqlko", + "mwlcgj", + "okvf", + "yqafo", + "ftpyh", + "hwyiru", + "cnwuzfs", + "slkdey", + "uams", + "mweda", + "okhvztn", + "tsxjlqc", + "neis", + "juxgo", + "qeuar", + "ifgk", + "mrxw", + "dbwck", + "qjro", + "jmtiqox", + "fpsv", + "whga", + "ybvsu", + "vomuih", + "paie", + "ykmsa", + "vgymeds", + "obix", + "tvwrpye", + "gprfs", + "dktsnb", + "mkelsoj", + "qfytbw", + "fshuoi", + "vhwre", + "ymzvs", + "cwlyav", + "hqnz", + "uczl", + "hwzt", + "qkhs", + "erjmx", + "lenwryh", + "xmty", + "clgtr", + "ioyder", + "ijtdgl", + "vmgf", + "xoykqji", + "pydo", + "wlqvtdu", + "numvql", + "nzhmdk", + "fiozyp", + "ubhixy", + "zltouq", + "lndtv", + "qzsp", + "vjwfaom", + "sckfdeb", + "ypvth", + "mvhwoyu", + "acbkpgx", + "ayeno", + "viurn", + "pmzu", + "nyfhvrl", + "vmgd", + "jhbqxe", + "apwyigl", + "poxngu", + "jcqgmd", + "dxugnt", + "apwgm", + "hcpwzb", + "tfpu", + "jemtdqy", + "mbgazd", + "oandu", + "hxwms", + "smkge", + "apjzk", + "ymkse", + "omgipb", + "ptdsqh", + "hsexln", + "hxbgcrk", + "gcfk", + "haevwl", + "jvfop", + "toge", + "oejz", + "frtwhj", + "rmicgbx", + "rxqctlh", + "qitwxbv", + "glvp", + "mdqy", + "egtba", + "emjp", + "iqumxp", + "mhkq", + "dmcfwy", + "fcxz", + "jxckg", + "epigf", + "ternz", + "fdze", + "vnqg", + "qtwu", + "mxlcp", + "vfuas", + "mdtnkq", + "glho", + "aotjxz", + "gtujyx", + "rqfgcol", + "pumjz", + "eoruqfa", + "hjmcwny", + "guiy", + "xtjz", + "cpibuv", + "yrsnf", + "ylogz", + "slej", + "bzyhs", + "npoafzi", + "bzsplid", + "iocawkr", + "gfqo", + "fybshl", + "anqxw", + "przjs", + "tbow", + "fnetku", + "gpjqi", + "zvntoib", + "bhtsl", + "cfwb", + "xwcto", + "hfscxj", + "ikos", + "fqlbxg", + "xodgup", + "cfny", + "plcyhqt", + "lujqx", + "khav", + "ezagilj", + "kqwg", + "lezgvfq", + "fgjxt", + "arlpm", + "ejoy", + "cnivx", + "zdncr", + "krtbm", + "pskh", + "fuptvar", + "bivn", + "lgxvpk", + "fkoh", + "pfeysv", + "hlmjy", + "irleaz", + "tsdhnu", + "lcgrdqf", + "qilm", + "tipblhm", + "ivmsake", + "pdtjxnq", + "vcdakxn", + "sqkjinh", + "baskzx", + "nmegy", + "xujgdcf", + "nuck", + "zperh", + "gbmpryx", + "obil", + "pmkdzq", + "wohate", + "rghk", + "caibnrl", + "aoluib", + "thdsmnq", + "fnjoi", + "zmjepxu", + "tdclmr", + "wcikfuz", + "zkwsdj", + "hdulefs", + "tfsiq", + "dspnrl", + "vawuzk", + "hdrp", + "vurxzmo", + "xuqtza", + "nfka", + "qltn", + "piauz", + "toxmi", + "dqtl", + "uncfh", + "qpmyxl", + "xujakq", + "xikdywa", + "txqzuem", + "phvt", + "ocqldug", + "awgf", + "aqzbyuk", + "edsb", + "mknvxjp", + "uygfjqa", + "qjnyt", + "pasekdz", + "ivspg", + "ktflp", + "wmqsp", + "ytaszo", + "aezo", + "icjz", + "oguh", + "bmpw", + "tlpahyb", + "kmiopn", + "nugt", + "tekqibp", + "vcezjt", + "ncwkug", + "coknj", + "cbxj", + "xqnvj", + "qbrsay", + "difsjq", + "twedmha", + "hokc", + "geiw", + "uheq", + "ikcgow", + "qavkfr", + "pkmi", + "china", + "efqytj", + "olznjhk", + "fcvds", + "amqrt", + "qkpj", + "fjesabv", + "pgbdolm", + "vhils", + "dfcw", + "eubzix", + "hksmoa", + "onvucma", + "bvjmsok", + "qlri", + "hyrvqxj", + "rcokej", + "hmvilca", + "smegdxn", + "ivwb", + "tqwh", + "dpaw", + "csrpbqw", + "ujvwzs", + "vwnzemj", + "djka", + "hkabyv", + "vcmtpbf", + "srlp", + "lrbuqt", + "uqhoted", + "hwnir", + "czariv", + "jeybvg", + "iyjgsr", + "gjwxn", + "eazrl", + "juylp", + "fosev", + "fleskx", + "mawpcxf", + "ptbv", + "ckownb", + "vznj", + "sfchdp", + "rtqp", + "srqg", + "xcgkld", + "zvngroy", + "vxzd", + "sbav", + "lhroxt", + "sbxuq", + "qgbfmy", + "rwqapsi", + "hwbfty", + "hicwtej", + "fkrjg", + "dzfypw", + "knshomz", + "vamitb", + "uljrtnp", + "akypn", + "zbad", + "ufgmcdz", + "htlj", + "mirlpx", + "gqcfvo", + "seorq", + "tquajxe", + "yvjobu", + "mytnb", + "dhpecw", + "msgxzi", + "qypohic", + "vbecmr", + "oknjxpd", + "whgsqr", + "bytq", + "owdjvpl", + "omkw", + "qgxem", + "ktgvrxc", + "gkyinc", + "upcm", + "jfhli", + "tmlhvo", + "khcmf", + "mhvp", + "lauef", + "jnpvf", + "guafe", + "myseutv", + "vsujg", + "hyrq", + "oxbnt", + "uwmzyr", + "omztbal", + "sgpoq", + "kptow", + "bfasw", + "sweg", + "nuxgw", + "ekgrd", + "wlrnd", + "sljuv", + "kdzan", + "mhcg", + "fbsewo", + "kcrpg", + "vjybare", + "qbxwo", + "uxys", + "xsnpazw", + "pabfjl", + "rztoe", + "xkzpm", + "eirgw", + "hgrpf", + "asyj", + "pgexsn", + "xwduei", + "fqpi", + "ikcuj", + "uftpved", + "bhglc", + "pxmcsq", + "wqbp", + "jakho", + "wthpu", + "hcoksfx", + "hrej", + "hiuw", + "lcgjp", + "ogcvz", + "uoamzf", + "wydnms", + "gzwr", + "kmfhri", + "wqbimyx", + "xrdjy", + "poxbka", + "omfj", + "auxhqwc", + "fjeukw", + "bhkrdoe", + "qtmgj", + "qwie", + "ejdmlst", + "jazkcx", + "luyxciq", + "xkhzfur", + "icoslgw", + "niradz", + "nzxw", + "mxcn", + "bvhzw", + "xufcihd", + "gvfslj", + "gurnx", + "dwbr", + "igtj", + "lnko", + "slwiv", + "aimqdgf", + "uymsbv", + "ufgxe", + "baef", + "otszv", + "dcjovmb", + "rbczom", + "htcp", + "qlhmt", + "zeojtcd", + "kucihn", + "bcfhr", + "lwupvok", + "rlno", + "qfjc", + "nsefqx", + "hxzbymg", + "bmtfhn", + "bdgsiaj", + "kmwi", + "ghce", + "gzosft", + "zwryc", + "izwrvlg", + "nvydicr", + "nibte", + "cdya", + "hcfezt", + "qcxl", + "mjpyro", + "epzl", + "lmhne", + "aexd", + "dglznsk", + "fcjinvb", + "viaob", + "audrk", + "vrknizj", + "qpevmxb", + "uyirno", + "guyv", + "yrdlci", + "jkesq", + "rqoznpm", + "kwdo", + "pcij", + "vexgzrm", + "hazglrb", + "xgist", + "uifg", + "gwqpylx", + "pwqz", + "ucnxtk", + "lrwz", + "qwntg", + "mgspyo", + "tdwv", + "dwsai", + "gpkn", + "jpwb", + "bvqax", + "wnsl", + "cmeavuw", + "qjlrha", + "kfbux", + "qnad", + "qkjar", + "arfg", + "bgit", + "ugdbkvw", + "yilade", + "lvjn", + "gfzksv", + "hsbr", + "obqjdf", + "ndfgsa", + "jdogqce", + "elgq", + "zjdwe", + "lqfu", + "gkvhxo", + "njysacf", + "trfyxg", + "pctg", + "mwslihd", + "mzvht", + "cwmr", + "tzsyaw", + "kxsuzi", + "rqgpklv", + "xoybt", + "erfn", + "pcsuwnk", + "tvmoyfi", + "ruie", + "uvle", + "ruwdi", + "jgvo", + "uiadw", + "nbup", + "pdbl", + "oxngmje", + "uosxyi", + "lstfwqd", + "kexh", + "ileodm", + "hdzek", + "tnsyoz", + "zrlepb", + "ilrq", + "foku", + "hljpwb", + "bcgwr", + "kgja", + "bdygqk", + "ekvg", + "msbglzf", + "aucv", + "kwxahmd", + "ijukwy", + "cxiej", + "vsbwr", + "znhaou", + "ghcim", + "dmqahjv", + "uscrw", + "ufjmeod", + "ioxclyk", + "jzvtx", + "syoahfw", + "teqnydw", + "qcalzs", + "oavmdef", + "elgzjvc", + "pjrklc", + "apzvynm", + "bvdc", + "npqj", + "uawfjcb", + "nfprv", + "btqm", + "uwkopav", + "zontmpl", + "djhxt", + "dtbgrq", + "kfpyt", + "zxqy", + "tdshiq", + "ulcbf", + "xpzwh", + "azqojn", + "mctdz", + "qtcnhw", + "bkiz", + "hmufks", + "jmnsagv", + "hirsz", + "gvjk", + "rbfjol", + "ampqk", + "tgzwlu", + "yqoxsjv", + "oxvfqt", + "ptrnqbz", + "gxsaty", + "ytogkml", + "earc", + "myncjb", + "svmktag", + "lkret", + "wctnay", + "txrs", + "wbeapu", + "cxdsa", + "huedwn", + "htqukwy", + "hwtrxc", + "elji", + "hpbrefv", + "doxrlih", + "sqoxr", + "xzvebo", + "vnfd", + "nhqz", + "mtchu", + "aynok", + "uhsl", + "betvqgx", + "xzewro", + "balfgch", + "agltmj", + "ndwuk", + "oweg", + "qrbj", + "ulkebcn", + "wxovrd", + "vpoe", + "sohqcf", + "pbigvz", + "jefhn", + "bldcfx", + "ojbtnf", + "tourx", + "avler", + "qdrp", + "vazhcys", + "ijbfscg", + "exdsyv", + "paoelvj", + "nptzh", + "ujqlfz", + "zwjehds", + "fbvmq", + "huyspb", + "nvklr", + "fyntcbd", + "njor", + "zjqrxs", + "bkvq", + "ydrobmj", + "fyqvs", + "lmtfz", + "ibow", + "gbjhir", + "foiyaq", + "vctuqh", + "ohfwkgm", + "zyjkqwc", + "xtpufi", + "xthq", + "prsuqmw", + "aehlxu", + "jiwfp", + "wsrc", + "hywbac", + "khoz", + "kvnbd", + "npec", + "ujilwo", + "qnugc", + "rconm", + "yiektdz", + "izbaeyn", + "icudm", + "mtrdhs", + "uney", + "tcnxri", + "akoimx", + "evga", + "vasyq", + "xqnk", + "yirmtf", + "maosiuw", + "rbpdi", + "zhjv", + "zsmebdn", + "uigs", + "skcvw", + "fglbe", + "qjevy", + "wedsah", + "spjfueh", + "zdculv", + "vzjtbca", + "fykl", + "zncohf", + "qwltxz", + "tknhf", + "foepag", + "gqdx", + "afvz", + "eqbsv", + "fibk", + "ikutv", + "fvmwyg", + "zwjayt", + "yqfvzl", + "irzjpk", + "vfeli", + "vdcyfoh", + "guekfx", + "rvmiwl", + "fcqaxwy", + "ksjia", + "umtocwx", + "xsdwbmv", + "yegb", + "upzw", + "exvuyrz", + "zvxw", + "vpbny", + "nfrkl", + "lagy", + "gohka", + "fvpzj", + "oanvy", + "xkomzcf", + "qagk", + "cdzpi", + "kmdbvr", + "iexwva", + "pnft", + "kmxzu", + "txsunoj", + "gzrml", + "dybuo", + "uwelpi", + "thav", + "rgyp", + "eluca", + "akos", + "knoysp", + "rhqta", + "ctqeg", + "bwxyva", + "htbiwg", + "morxvzt", + "aekwzu", + "sudeka", + "ahymefd", + "mvkebw", + "rumod", + "rbpnh", + "cgsaq", + "ejiasgf", + "bqcisx", + "yntc", + "uarl", + "djuh", + "yvce", + "gnuhqw", + "zwscol", + "dnxm", + "rktca", + "lhbcyjz", + "bwenkv", + "hrfe", + "bcpaoy", + "ofkhxy", + "hkzra", + "yhem", + "azwri", + "reitu", + "gpzsv", + "eawqtoi", + "jctdx", + "avnbzj", + "kbpm", + "jtpgfb", + "joplea", + "nqykcf", + "tpcfh", + "vxjnqdi", + "smzaw", + "hiofrb", + "bojnuv", + "rpmk", + "nztkyva", + "rsyjh", + "hibwqp", + "zylx", + "xyzivmc", + "cinjxt", + "donb", + "paljquy", + "vgboa", + "csoqth", + "sxmacy", + "mwdrtvi", + "ldjhoe", + "yodj", + "ukselp", + "sezy", + "cqpvxkd", + "qsahn", + "ysel", + "xoeu", + "htnq", + "aiug", + "myzwfup", + "dkuonj", + "frjehbd", + "hofmx", + "fhoikpl", + "qzjbyi", + "clpt", + "deryvn", + "mabzgrf", + "tifcal", + "lbevs", + "fizeldy", + "gzlcmw", + "omna", + "bpiqzdl", + "rhte", + "yctrsod", + "gofhj", + "vajef", + "hfpigvj", + "cqyiezx", + "asuzk", + "hmjd", + "vbhpj", + "bwju", + "zylwq", + "plextu", + "fudnr", + "axfiks", + "oetw", + "navbq", + "lrhid", + "edfjrk", + "gscnul", + "gsundpm", + "drbk", + "ukdy", + "uekjw", + "fpug", + "gfpk", + "qfsejna", + "tfbqyrh", + "prvdfi", + "skog", + "zfenwa", + "htly", + "bgwxy", + "uvfiq", + "oizvqk", + "pneity", + "ikbx", + "jqmtihs", + "msnraux", + "mnvck", + "ibcowt", + "kmwgqld", + "tpzhik", + "vpkhy", + "hdskxe", + "swfova", + "bmkrg", + "ectqu", + "crbq", + "fukq", + "gdalex", + "rlkoe", + "lidrob", + "ugrz", + "ubzr", + "oplyti", + "qyfc", + "ckbosd", + "wzxyc", + "ozrb", + "vlbuird", + "onigsxv", + "hmsr", + "thiup", + "ndgc", + "daonk", + "wgeki", + "sofxtbe", + "xpoht", + "enfoqc", + "fwaz", + "vbfkla", + "svohjr", + "nsfom", + "tmdxlga", + "naqx", + "auklm", + "qpvjzm", + "vfermsi", + "yisotfj", + "lobve", + "vwxakd", + "zhxm", + "joqv", + "xuhyf", + "zblyvhg", + "kbcjg", + "prevbtf", + "rpfj", + "ecqoylm", + "penbhx", + "afzk", + "slhzba", + "ukjw", + "mlypge", + "pchgyvu", + "cerlnzh", + "zwkhycs", + "qswmixy", + "jatoqs", + "xsiez", + "epigaf", + "yaeqf", + "feia", + "kmzq", + "yhgqedm", + "aopq", + "cnxdg", + "fkjehip", + "vbptdwm", + "yjgosp", + "lfxhu", + "dczbn", + "zsucwtk", + "pcybhj", + "ktdwosz", + "qztedu", + "smnyp", + "nsqjipo", + "mxzd", + "swiz", + "hvidzf", + "muixka", + "gircykd", + "tlgmfz", + "vgymal", + "xghzb", + "kqvhcu", + "frild", + "rqhs", + "zhcta", + "kunj", + "tremo", + "cwme", + "ecmlxf", + "pvriesd", + "gyaprcw", + "cdkt", + "nrwupa", + "ylmsfix", + "xnmsv", + "hput", + "nzem", + "pluyn", + "rluzf", + "posetvf", + "hosmu", + "zdaqh", + "dqjg", + "moqrp", + "fxzae", + "zlfuhp", + "tnydgi", + "munyjh", + "thuq", + "tpuw", + "hrxfu", + "kicemj", + "qufbdh", + "avyqzrw", + "hwal", + "ndph", + "xdtbfwu", + "xqnuopz", + "zytcx", + "hxpkjl", + "hcmvfk", + "ipsol", + "efrdcpb", + "nqczo", + "tbqdusv", + "gprlxd", + "sqboiex", + "qjaipt", + "qxzce", + "bzkonpe", + "nyeutc", + "ceow", + "tkqy", + "fyctz", + "cmkh", + "njqtc", + "hzget", + "ytwij", + "cjfiwk", + "mgtejka", + "dlyimtf", + "pxvt", + "oemc", + "unybqrf", + "hpzf", + "cotvun", + "wolf", + "kenvwf", + "kshjne", + "trpwj", + "ckjyiol", + "vldxbey", + "guqnik", + "dspfn", + "wzya", + "uptklg", + "htsdxu", + "kautjch", + "wpyia", + "juvtmk", + "uqxn", + "dqhikw", + "ylvtqkj", + "jnqpvzf", + "hfisnrc", + "xoca", + "xfhuabo", + "waoipf", + "yahrcs", + "zykarbe", + "vqjamu", + "gxmhtb", + "evhrpt", + "sljdgon", + "poasqu", + "wdkur", + "grbejd", + "fjkpd", + "tubrs", + "aedbm", + "zvmnqja", + "hbwnz", + "wehfdnr", + "mtvlqu", + "nelmp", + "xpwjt", + "wpgr", + "slwfmq", + "fxuiz", + "ywmav", + "ekdom", + "ampk", + "amjuder", + "rsjtacw", + "skrzxnp", + "zmweb", + "gzyj", + "flahm", + "jpdbwky", + "nrbw", + "oqds", + "cezfq", + "lcoud", + "wzjtfsy", + "yuic", + "grsco", + "yszbwe", + "ozgmby", + "aysx", + "vjrz", + "fqwbr", + "mjib", + "xtnue", + "fxubq", + "svxy", + "jzmwcg", + "klevc", + "rqshj", + "opeyj", + "fjxodv", + "psozeg", + "yvarp", + "eyrp", + "rydbjaw", + "gtnvya", + "ztefw", + "xrupwdj", + "hkaj", + "auwbrnl", + "hyogxz", + "lpeqsr", + "puxqehi", + "wdpv", + "rjsb", + "ieyds", + "avorcij", + "whven", + "jqfcpdr", + "pnlcjmo", + "jfnmb", + "oxchtyk", + "taisdqv", + "siqud", + "wnxiesa", + "zxtbu", + "fhjce", + "vaohyrp", + "jwfi", + "emqsiob", + "pqmr", + "awmhl", + "qfptxo", + "xhuecpt", + "ifmjgo", + "gnztkd", + "ivamowe", + "rkib", + "mqwvjk", + "vcpex", + "ebpx", + "bumiwjq", + "ngze", + "crlnhq", + "ploxz", + "jple", + "xtoes", + "covw", + "tejzu", + "tnmo", + "michzfu", + "ixzsg", + "yfrg", + "vbuae", + "ahirwcn", + "xbkclm", + "lsyn", + "igtlm", + "begmjc", + "ngvaos", + "mgrqvx", + "ztxa", + "tbsjf", + "cfoqebk", + "gzscjdq", + "tdkpor", + "gndm", + "zrtqmsf", + "vtdlyf", + "sariqf", + "bzuqpcm", + "qyzkn", + "poasxm", + "lduxcj", + "pstcj", + "unxlcq", + "ezmgl", + "fgnm", + "cymhex", + "nzex", + "xpgmn", + "cdjro", + "fyms", + "fwydnk", + "lgpb", + "gzbxe", + "cetgd", + "gfxrqwk", + "xsue", + "aqprlyj", + "jyqvdra", + "fjxc", + "wioavdm", + "uwixn", + "hsjxfyt", + "hlzmays", + "dyvxi", + "pauqkb", + "jlaix", + "kpfnudq", + "uxdwa", + "zulnir", + "cbifv", + "djiuas", + "smzkbo", + "iwqg", + "tpiwxo", + "azis", + "lmprcx", + "zfknaj", + "ypof", + "qwnp", + "lrtz", + "chpqof", + "gjpny", + "pidqve", + "osbjyv", + "apcqr", + "jbzrid", + "xqwsibt", + "adlbvkr", + "wlozaf", + "kahop", + "hxwd", + "olyx", + "bhxns", + "lfmyz", + "lfiu", + "zywbq", + "vaezhpx", + "jthrw", + "towza", + "yczojk", + "hsbfkp", + "cyws", + "khbom", + "mnfq", + "berjti", + "nisxqpu", + "gyrjedx", + "crkno", + "lxru", + "unfk", + "cpuky", + "dfipchr", + "ikvcqjy", + "chlvt", + "oclwa", + "lrcnka", + "lnufvm", + "matijy", + "ghbeiy", + "frth", + "slhmjwp", + "elmn", + "auvy", + "fdokzcj", + "jcihqa", + "bfpat", + "bhnf", + "aeknfo", + "ezqgxyr", + "iwkds", + "idzj", + "zxwgsm", + "fepx", + "mwhty", + "fdkce", + "riwqz", + "zdxfaeb", + "ubqxkj", + "owpsxh", + "oiehf", + "waxeqln", + "obypgj", + "hwrdt", + "uqekbgt", + "zdwr", + "skecrpo", + "aofcenl", + "lyxb", + "cvdig", + "anhygrt", + "moalwz", + "xbzgi", + "xlspkqh", + "ypfuz", + "ufsygbh", + "coeqfpl", + "howvdf", + "upcm", + "czgnxt", + "kjlhef", + "pgmecky", + "ujio", + "htlnd", + "ncphgyt", + "mnqtx", + "jvfbq", + "hjcr", + "tkgryc", + "bram", + "csuq", + "lgqpsed", + "mbjtzfl", + "sferi", + "qpoa", + "idryxlp", + "oihg", + "glujo", + "ydqkp", + "smyxw", + "yehs", + "pvgro", + "ayvuzl", + "nlmvqd", + "xgapb", + "okcml", + "nhbqrxt", + "gvou", + "cfhl", + "tzfbg", + "qgrdyut", + "nzwxk", + "etymbau", + "qnrv", + "qbot", + "repb", + "rgdxp", + "nupcvb", + "ufndv", + "ewhmjt", + "heygz", + "iayrlwn", + "ygthw", + "kimqfu", + "sbwez", + "zngdem", + "vqbcx", + "ntob", + "jgbzkoc", + "gamx", + "pvies", + "vjid", + "arvetzm", + "hqtlvse", + "qxtds", + "zgywa", + "xifr", + "lbvyein", + "vorc", + "gbwhdx", + "egbw", + "nsoq", + "fxosupk", + "ziynmlc", + "zksn", + "qdksm", + "bdfkc", + "fbjcnx", + "xusmo", + "kspzbj", + "tixkhn", + "eofb", + "smhqck", + "nsfapr", + "yvdor", + "dicpo", + "zjwd", + "alwjioh", + "isex", + "rwysub", + "ufkb", + "iedny", + "wfsqbco", + "lkywx", + "dxcowyz", + "wrkec", + "tzhuo", + "gbnd", + "pqvfbo", + "diuq", + "thsavnj", + "uxmyflb", + "ztvl", + "nplvba", + "briy", + "kmqcyj", + "xswbmq", + "wdljb", + "rumc", + "xsfpg", + "qtykg", + "adyi", + "tkjy", + "xwuqp", + "mkphj", + "vktxywm", + "tslpwi", + "ngkbrw", + "zmjqo", + "ayulvi", + "qdcwn", + "ohku", + "edxpr", + "fvqzt", + "ljgfv", + "wikp", + "xtdm", + "iqaxfs", + "mozq", + "cbgrfm", + "fosx", + "skhyjmi", + "nhzg", + "thmg", + "rfvjws", + "vqbnoh", + "qovbpx", + "zetqba", + "wlaxbo", + "tlxyz", + "xzigbaf", + "ytgb", + "zkas", + "futdm", + "zjligqr", + "gmyjiwc", + "luixt", + "xtqv", + "jwql", + "pytwa", + "fxnyzr", + "kxybdpe", + "wjlx", + "oipbrzh", + "rmqib", + "dhvmbg", + "kxbjosc", + "uwfercl", + "dxjm", + "inpdax", + "wsehk", + "vxkwi", + "cekh", + "teod", + "mslcd", + "ybjoqmu", + "rnqp", + "sikzf", + "zfei", + "ejvtkd", + "cjhmzu", + "dskheo", + "wmkg", + "hcjsbr", + "nbzjkxt", + "dpujsme", + "pyam", + "vdjnkco", + "hyngl", + "zfqe", + "epozs", + "ejichfg", + "nprv", + "bujvfdo", + "zbqh", + "okfayrj", + "gcajn", + "izgaqfw", + "xyajgs", + "lrwngm", + "eqowj", + "kvlqi", + "skgd", + "xemoqu", + "izgjf", + "hjyvc", + "nkcvm", + "wtmyufj", + "eukwhpx", + "fhrcu", + "fnjx", + "jwncha", + "uporf", + "hkrw", + "coxvkw", + "nvbgf", + "zuabm", + "klhtzyr", + "bsqtoma", + "ifwxt", + "dvqzsal", + "wladbo", + "noex", + "rvhfn", + "ivrah", + "sodl", + "bomc", + "fyiem", + "ybmu", + "nfzqt", + "kgocb", + "anlc", + "fltz", + "okgrw", + "lfsk", + "pvydglu", + "hbpav", + "gputnzj", + "bncqdwl", + "cfwjxgb", + "xthz", + "fntuaji", + "stbgu", + "ysfpx", + "orhjs", + "hywxm", + "mtprnlk", + "hwmnode", + "gmkxej", + "eunql", + "fnirvej", + "ukple", + "dvuxqyj", + "rzdb", + "rwle", + "lnkjf", + "tocxin", + "wujbzc", + "kyngi", + "upbhwsx", + "dfomca", + "lfct", + "caflxv", + "zoxyk", + "xvhtynd", + "lhpqvi", + "bvimp", + "wsbyf", + "jrse", + "sralf", + "avlm", + "mkjl", + "gviz", + "gasy", + "fopgwvb", + "cmsib", + "duqr", + "zdrkl", + "eushv", + "fcnyvdu", + "rcvzh", + "urkevch", + "ojthen", + "jrxq", + "cndjks", + "zblhi", + "cvwxis", + "qgayj", + "jayq", + "altoc", + "cthfu", + "hwzk", + "soyknrw", + "nxfrimt", + "fhxmb", + "wxyu", + "obtqrzf", + "dnlzax", + "sdfwnac", + "wxtu", + "hwuqpe", + "xomvua", + "ehodw", + "dszx", + "okxuhtz", + "ckwt", + "ojswd", + "vrdapx", + "crzg", + "wsthcj", + "fvnkos", + "vdpwq", + "kufci", + "atsw", + "bqzra", + "wgnduzm", + "jsrm", + "vscoza", + "dmqbf", + "efkym", + "tprj", + "prlzf", + "ibgkdoc", + "vjqrax", + "xhqs", + "taro", + "jslz", + "yearslu", + "bpwi", + "jquba", + "xhtbumr", + "eycf", + "ejvqpfx", + "qxmp", + "ksiocl", + "yiwds", + "thpikam", + "dcmnewv", + "opmv", + "fitzkc", + "jtqc", + "ezdyj", + "deorhtm", + "mleqhpn", + "rseilxk", + "rchqavx", + "uhpt", + "btzw", + "yots", + "gfbl", + "rdlq", + "cureons", + "trcnk", + "wsqvy", + "qcgxrf", + "dvmikxt", + "hclv", + "iexqjsu", + "tbhqel", + "svxm", + "bvsdfi", + "tewhu", + "bunqa", + "nmiy", + "dfxvgwu", + "ynawgjm", + "dknt", + "gmqswj", + "zrag", + "nfzt", + "fsmiog", + "gsltz", + "gmktz", + "jqniyh", + "dzju", + "ntgjpzk", + "ncjx", + "wphsmei", + "besot", + "ufryiom", + "irug", + "taeibgw", + "cbqyha", + "sibrexz", + "fpeh", + "vxdqp", + "aink", + "twbezam", + "fivlpz", + "ujrnzpx", + "zpaktm", + "ypgwo", + "idwcxfo", + "ltao", + "xblc", + "dnzgrqa", + "ngkv", + "xpvnwom", + "yupb", + "axnji", + "mtequ", + "ahim", + "fvaumoi", + "hzaxnt", + "lnmg", + "lyxnk", + "mztfsd", + "quyjdwl", + "vdoqhin", + "lcipav", + "oqnf", + "azlb", + "hdirzw", + "dakovl", + "nprisyg", + "wevcjd", + "axpet", + "mvbs", + "mwxl", + "bezm", + "qxhdpjm", + "dqifprj", + "tvdkqp", + "zbvgyo", + "ugyhfs", + "kdmje", + "nlgfbiu", + "pnzx", + "bkdfas", + "kfgmwj", + "bzvwoi", + "sdvyxr", + "rlyxo", + "vdfl", + "hizk", + "kpnzou", + "zqwpfs", + "uxvz", + "toba", + "hwnyzt", + "kzcqy", + "kwovyms", + "gkumqs", + "wrlheg", + "zikb", + "bmny", + "fndyqbv", + "mkrop", + "htbzdix", + "uchrzem", + "yblgem", + "fvre", + "mbknd", + "xmrpj", + "xqrsw", + "wudkjs", + "jcphx", + "adcmu", + "pkgmajh", + "nbsztf", + "zxbqw", + "pwybr", + "wkfiuer", + "snme", + "sqhtxe", + "sydgxlk", + "mzepv", + "rhnsly", + "hsdtevo", + "uism", + "tljhe", + "ygte", + "tqkb", + "rjgi", + "qygfvxe", + "mhfrvb", + "lhdstnk", + "zdxpo", + "caeolrs", + "vajm", + "wgbqz", + "tfngh", + "yhqew", + "nuifm", + "jmqz", + "zmycej", + "widpqhf", + "korn", + "pmrgh", + "oieja", + "usbxnef", + "kxiv", + "ygjclu", + "aiesf", + "pngzal", + "hgunbqd", + "nlfrzw", + "bfwnh", + "cmful", + "wcxz", + "rmlnbx", + "kslfxei", + "lnab", + "htid", + "iyah", + "nldqk", + "zipqf", + "hgld", + "orvqwsn", + "hlgbdu", + "nrumph", + "gibyrve", + "tqyruap", + "sohjg", + "bxcph", + "lsdj", + "fzagjy", + "regkcl", + "hxlbuzn", + "aqmcs", + "osnhlp", + "engwqc", + "lwozr", + "twlzpk", + "jeva", + "xivu", + "gsemhn", + "iqgrj", + "lrcy", + "kuwpb", + "jqraz", + "kxwqp", + "oirkqen", + "baghkps", + "fwtagp", + "ykus", + "ismtvwo", + "dsgkvcq", + "kayxsf", + "fwzk", + "gljh", + "jqveih", + "hnrktl", + "vogj", + "ptbucha", + "umegojn", + "saphvku", + "dicum", + "tmesp", + "ceosk", + "ehcz", + "khtw", + "vqrkozc", + "mkbanh", + "mybtfos", + "vhksp", + "fbwo", + "tmgyzuq", + "ztrnmei", + "inrj", + "tijuz", + "vcrpuiy", + "nbljd", + "ibtgc", + "quihrg", + "kwye", + "zyoirm", + "mfzdcq", + "igtrlmn", + "hdbijc", + "umkgl", + "ubyxf", + "ulijsm", + "qrjbvta", + "lizpwvc", + "rvhdcqt", + "rnfs", + "mvrkxqf", + "cevb", + "fxgri", + "xnmhs", + "jqaugr", + "rjismu", + "tunpqed", + "nuzyo", + "lvdntbi", + "hjlwrzb", + "xfdq", + "yzben", + "zrcs", + "aeuig", + "qedxrb", + "fmhbku", + "brmeazf", + "dfvn", + "ngomjav", + "nfjlcg", + "vrwt", + "zpihxut", + "gvhpdt", + "qbzjyf", + "jsdxouv", + "ixqeco", + "oskqd", + "bdiu", + "cdkfpy", + "sixgcw", + "zhvatxf", + "lgsautr", + "kbzcyw", + "ejqz", + "zcmpwh", + "yhwi", + "kiluxma", + "xasok", + "xnzcimr", + "jxkbopq", + "ursjm", + "thqgin", + "flrx", + "voep", + "dgcf", + "plbxnts", + "ksmfh", + "mctxb", + "mulztjx", + "nhxfu", + "cuhwo", + "zasdr", + "iepwn", + "todz", + "hkrew", + "eqkals", + "pajkoeb", + "mlvb", + "rvsk", + "fscr", + "caky", + "rmuhp", + "ibwdcto", + "ptxhy", + "pbwvhld", + "yokzgn", + "zfajsyo", + "kwrh", + "rnbt", + "cqag", + "tlayhuq", + "xrbfwcz", + "tzsy", + "jvak", + "ktrpfs", + "kmvt", + "sbhjxp", + "gurk", + "gjbfh", + "sovtl", + "muia", + "ctyilev", + "auwoy", + "slhmpti", + "pfelk", + "ycioms", + "kprtcbq", + "dplz", + "jikwhf", + "inwyhj", + "bkimx", + "pbvexmc", + "rzwn", + "nrgdox", + "jnlw", + "qspivo", + "fvyu", + "ftkh", + "whqt", + "uyhpb", + "wghplq", + "ucdbpq", + "jqxzsn", + "agxujep", + "ywgqjl", + "ijcya", + "cnyq", + "oclvj", + "dyefgnw", + "ksaxvrz", + "zkncm", + "kihm", + "wcgvnl", + "adwistf", + "fgcosh", + "lzadir", + "lfvnqu", + "pgdnh", + "psmhqo", + "paoxjf", + "pjlsiv", + "wxpqhz", + "bxatlh", + "mxfap", + "ughncj", + "cjan", + "hjxyc", + "uoctie", + "urwh", + "omca", + "packzsu", + "oytdrsn", + "dkzvfan", + "ykod", + "djexhs", + "lzgpwm", + "unmqcx", + "ygnh", + "tdopkfa", + "pblahk", + "gaqsclm", + "hfdgcbp", + "pjchdiv", + "mbcuzqt", + "lhymzjd", + "yvfl", + "gsxdvr", + "fuxsn", + "uvpzjmd", + "abiyv", + "xudyzqr", + "jmwlp", + "iusjmh", + "zarcli", + "fsaogy", + "zdmjt", + "cjsb", + "xncf", + "gaiwjr", + "rgsyevp", + "ukpl", + "pgcrltj", + "gqor", + "ckrm", + "sjkh", + "zqfd", + "buox", + "fhqoc", + "wfpmjgr", + "vybz", + "twuiab", + "xfazpum", + "nter", + "fqehmr", + "bixelt", + "poyjr", + "wfaplg", + "khjtzpi", + "cpvtw", + "ilupzfy", + "vbkp", + "aeolj", + "hxybcqf", + "dnlfvs", + "fvghw", + "arpnzc", + "iplh", + "nzuwcoy", + "iwkjxp", + "xniorb", + "igebyo", + "hdmpeg", + "jpxguq", + "qbfjac", + "igdu", + "lniuqda", + "ufqzi", + "degolpc", + "crdpb", + "knwgivz", + "zmduy", + "pvzkn", + "osrk", + "yriod", + "veygm", + "urmsg", + "mdbknc", + "zrckjm", + "vahbzem", + "xjsketo", + "dlvs", + "ankt", + "arsbjt", + "okqvlz", + "abnp", + "zjqsuh", + "jeqovcy", + "zbyt", + "ytikou", + "mjid", + "porm", + "dwypbr", + "spbyxj", + "uhvryz", + "pebvnc", + "hibmec", + "ewlcs", + "pghvlwz", + "qzwhfjy", + "moarux", + "uhxryv", + "calgkzp", + "xervan", + "byujdx", + "jityhro", + "ybzfk", + "tgdx", + "lunp", + "njcfdu", + "fvdcy", + "losu", + "seqmwr", + "xvpr", + "egkdj", + "mtzl", + "rnpmcqe", + "rhucvo", + "fsbmj", + "ykdj", + "bngr", + "jqcex", + "pbrqzi", + "xqly", + "hoclzvg", + "ksnip", + "uvahm", + "yioplf", + "puazl", + "nvjx", + "lerkti", + "bfsajmr", + "htaun", + "vkmro", + "kisnmj", + "fsoht", + "yqijh", + "riqshot", + "fech", + "hdtal", + "ymqxg", + "fimu", + "rkip", + "oecin", + "vlxn", + "fqae", + "dpqk", + "hmvyj", + "lbeuqif", + "tzbwkho", + "fghwim", + "wxbmncz", + "wstlmh", + "dowrxpg", + "haeox", + "zwdfhg", + "ocizusk", + "tcobhj", + "nlapo", + "hcboik", + "ckiwpx", + "mvrp", + "vijg", + "htdk", + "vceos", + "mefdx", + "vobmtf", + "eydcq", + "zrodxm", + "ktcwq", + "uilypsf", + "mbcqexs", + "smkgv", + "ylcmx", + "jtua", + "whtld", + "lvzg", + "hvcrpxe", + "mjxf", + "wlqcyke", + "ldkeixm", + "utry", + "vldkns", + "zkjlmi", + "vfuzq", + "gszai", + "mldg", + "ogzy", + "epldu", + "pvenh", + "wazvs", + "uovtgy", + "ayipuzn", + "ourkgf", + "dhnywb", + "ftho", + "sgfz", + "qflhusm", + "micnxaj", + "vhyzu", + "wzmilb", + "jfgyebi", + "pchzdf", + "sqwrh", + "zpai", + "klhe", + "kapxh", + "qvxzbw", + "ntaqphx", + "glxsp", + "uxcwq", + "ahpyrm", + "fwhmo", + "cjwb", + "lhdp", + "qhtpnf", + "qlnyx", + "pjguv", + "yonf", + "pgcrsa", + "evjzc", + "jmrk", + "xryk", + "kayqef", + "mxuof", + "bhlfem", + "nyudxtc", + "daklrwf", + "vmdph", + "jfvwgr", + "gdiuyt", + "eyajzvu", + "xhaknqs", + "ldegqhi", + "hyclra", + "yaoj", + "ivyp", + "rholwfk", + "otdhxa", + "runwd", + "bzif", + "twlsja", + "xptqid", + "rjnbvqh", + "pamjn", + "hrdntcf", + "xkup", + "oxmbwp", + "jmucor", + "mtnsq", + "ysrbnt", + "veakdlz", + "fpdu", + "vumytqw", + "ejrb", + "mcayf", + "edtpr", + "bacyrvq", + "xklsyd", + "vrkjepw", + "ypur", + "vqsh", + "broyai", + "fqlj", + "ksij", + "qbjdl", + "rvgqu", + "kjdcwu", + "mxhgk", + "ctbxha", + "mjypln", + "qfkigwx", + "qick", + "pfnmsg", + "qaydsrj", + "gayfrw", + "axqlvmo", + "idkrula", + "zcxtwkd", + "kpfuls", + "uvibjk", + "wxku", + "yseznj", + "xabrqd", + "mdeajsv", + "portjnc", + "ziwgdbr", + "wlrvhny", + "yopheu", + "ijhces", + "wghpdy", + "pbol", + "cpbiy", + "lefwa", + "zwek", + "tcpg", + "wrbe", + "zquxy", + "wtfbm", + "beou", + "bwqnx", + "efolcwr", + "kwhe", + "fmlqzcj", + "pqhdwln", + "modezlc", + "aixursk", + "xver", + "kchsaxg", + "vrwqpzn", + "czheta", + "baderft", + "bmcrvhk", + "tgboj", + "zarnbvk", + "bozx", + "urnte", + "uheiad", + "yica", + "acsy", + "nbymqa", + "kjdltb", + "eypqhkm", + "ijzoc", + "njaomy", + "rdgnlt", + "nvrhj", + "upmd", + "jucv", + "kngxod", + "aoqlyk", + "lapns", + "pcwkm", + "ymwufc", + "bcwdk", + "fhnzwr", + "uiboat", + "iozke", + "rhui", + "hfiozjw", + "xoszern", + "lvzh", + "acsep", + "pyiomdr", + "dwnebc", + "thylu", + "szxt", + "dxiru", + "ujrm", + "pcaw", + "ypnck", + "ksmgz", + "tszqc", + "adfjehq", + "iegzc", + "gvth", + "xlzbvto", + "ftnwgm", + "pryqme", + "eaxbwr", + "nxlfdy", + "fojny", + "pbwthae", + "teqf", + "ruxcqlh", + "gwdt", + "mtcw", + "kghwct", + "eydc", + "tfboyl", + "cgpnqv", + "ysvtip", + "srouy", + "bpkh", + "dyview", + "aguqw", + "ubcz", + "uqbgo", + "tiwugsp", + "hacxoi", + "fvngsd", + "rkctdq", + "xwdefca", + "ovbilg", + "uyzq", + "oiab", + "exnhq", + "igyznv", + "gepo", + "pviby", + "xstz", + "hybfx", + "meqol", + "zyjgdxr", + "swhxfj", + "rudvqwa", + "imthlz", + "ltkcdbp", + "unyd", + "uyjk", + "bnwmakp", + "gipj", + "pbwmelf", + "fdqiv", + "aivdw", + "eizlkou", + "sgwmyoh", + "utne", + "mpibyx", + "huxke", + "pzosrl", + "iqzaeo", + "bqkofpr", + "hstceg", + "ixqcern", + "buqj", + "maisu", + "utkfv", + "udst", + "gnlvp", + "ufvje", + "sfexngz", + "wuikote", + "cltiu", + "tgwl", + "jzvdx", + "xriay", + "lwtr", + "pzjrtbi", + "vmqrg", + "qgdz", + "ewulhfx", + "vzmxtk", + "mypxtvf", + "lbyfv", + "avgzf", + "vdrmz", + "ykpdzbs", + "pnsoq", + "jokv", + "uwdtlm", + "klzmvbu", + "rztav", + "orjclt", + "batvfdm", + "xzgewo", + "hwyx", + "fjmpv", + "eqdhtwo", + "injwy", + "eltbmwf", + "itxhpk", + "xaziryv", + "xclk", + "ytrpj", + "xmhg", + "arjcbf", + "elmvoh", + "qxcn", + "ikagoml", + "tqelxn", + "kuyhre", + "djsfac", + "htpg", + "ueotpvl", + "fdlu", + "wonx", + "jbdrlwq", + "exlg", + "odkxhb", + "sxrh", + "wenz", + "xisg", + "janrgwz", + "ksabq", + "gtbz", + "uzigac", + "whbnjdp", + "jloztxn", + "xuvytbh", + "djog", + "muwokxa", + "uvls", + "syvpkt", + "ehdg", + "sqbx", + "gfhas", + "osta", + "vdpybw", + "zwjroyn", + "lhofrbp", + "lmxaqwd", + "vecamq", + "orlaym", + "cqzmro", + "ngrj", + "tipuyb", + "swjtcv", + "zospgrb", + "jhnc", + "vzkdr", + "moqch", + "lxikjvp", + "pqvomkf", + "hoktaxi", + "fltr", + "knbuif", + "btedio", + "svwqtm", + "djmxb", + "vxstj", + "weacv", + "gzsbh", + "vnysazl", + "bdfkh", + "rhliy", + "xkthy", + "yzxdl", + "szuch", + "fvbyeqo", + "zjmuqbr", + "eulirb", + "czpi", + "ivaxezb", + "adzjmyc", + "dkowxmq", + "gqho", + "xngvwkt", + "efhryg", + "hsbiao", + "wkzpsr", + "aqovfts", + "eguzf", + "idcxao", + "lxoecw", + "flixt", + "jvfkgi", + "vhetif", + "ifaj", + "yors", + "giydnm", + "ahwyfje", + "hvju", + "tyvm", + "mule", + "kvpcnm", + "fqyrnm", + "zmtvceb", + "ycuxde", + "lwumxb", + "akmdgp", + "rzldhow", + "inflqhe", + "gljy", + "doysk", + "gsqhxn", + "abtfgwn", + "pdel", + "ljcsfin", + "tlpioy", + "xjunvb", + "wgyhqn", + "wiuohbz", + "snlzmdy", + "suav", + "tvhq", + "huzyj", + "aumhsc", + "bulko", + "kuqrb", + "gjotpn", + "pinzkfh", + "hpzbidv", + "xywqb", + "cjrlsmy", + "orfmd", + "lhdcfp", + "csadb", + "mwnxrqb", + "wzvihdp", + "oxnth", + "vnco", + "umzcpv", + "efrbit", + "tbka", + "jxqpib", + "hbtzs", + "bquh", + "jzus", + "fpkwn", + "rmgjct", + "aehfz", + "dbtf", + "dwtih", + "aplxbku", + "lezpbc", + "czwnvyt", + "pcgl", + "afhb", + "igch", + "cvdygaq", + "jervqwa", + "vuroi", + "colth", + "xycho", + "gqmnej", + "nsbt", + "ogtxjv", + "qjyelmh", + "pvnayb", + "qbau", + "cjipf", + "fvwmgiy", + "udzkqs", + "jncof", + "cukdm", + "cvxubmw", + "ghzcdpk", + "bluvsy", + "tydal", + "sigewfb", + "hbnuo", + "rtgy", + "ovjnpma", + "gkeqfw", + "qeid", + "vsct", + "fgrx", + "zjpyqu", + "qxwofz", + "adhilru", + "hrfu", + "wsvankr", + "mptj", + "nupmet", + "kvgetlj", + "sxiegvh", + "bleai", + "luboyn", + "gehw", + "bhfieyx", + "xyngh", + "fwjyhu", + "gpird", + "adfplw", + "esgmtc", + "zhbndp", + "ywta", + "wnyg", + "iens", + "xkmz", + "lapg", + "qdgk", + "tilvpz", + "rhqwb", + "drfne", + "rhga", + "crph", + "agxjtzf", + "usrhpmc", + "yfqgxp", + "dgnrvp", + "oidh", + "divxpm", + "lfptn", + "yusvhn", + "gsyko", + "alsk", + "yzfpg", + "qnhfaxk", + "bvjhpqz", + "ojzdeix", + "nukh", + "bjgpqcd", + "afqzp", + "sefgln", + "ngzd", + "bycrp", + "vnbtox", + "qbxgrjd", + "nqgyw", + "rqtjml", + "wbtlp", + "gmlhnqf", + "ufmyspv", + "hijn", + "odjeu", + "qgvbsjc", + "sykjq", + "jicotsx", + "impcsnz", + "qksyc", + "dqeawp", + "oufmeap", + "uiyjpq", + "gmilfoc", + "gnrycjt", + "tlcr", + "rhoaei", + "juhsxd", + "ifxnb", + "zgkc", + "ufqpcj", + "pocldgt", + "cishl", + "wjhikom", + "loayf", + "egil", + "kiopxf", + "svbcjw", + "pxtruy", + "xbjksrd", + "zyrf", + "puymgj", + "apbfuz", + "kipvgo", + "sarz", + "wfsye", + "xrfah", + "nwqzjxs", + "uymj", + "nvig", + "pbgjnt", + "dcuqap", + "jkew", + "wxqu", + "wtdqz", + "rxtgi", + "nxuwh", + "xyhbqzw", + "lkpx", + "qkojcs", + "ecbzi", + "faque", + "hbcqa", + "mdafxpv", + "rfjsx", + "usicav", + "ngfjzby", + "rtgpm", + "cwldhat", + "ewzd", + "sdcqw", + "vdqg", + "kdaxnf", + "xesyjlb", + "mxhs", + "omslug", + "wtyopjs", + "lwoah", + "tovaj", + "liouwgm", + "upimn", + "phqigo", + "gjkd", + "auvwe", + "pdxo", + "ovzkwlg", + "phdviy", + "dhsyztw", + "atrdyf", + "bjnlw", + "esjzcxg", + "ajvxswk", + "bgckphq", + "iyrzmlf", + "retcx", + "zjsyluo", + "puwbk", + "sqhkol", + "dgkc", + "zubkmc", + "mwpxkfu", + "ufcqs", + "acwhi", + "ambi", + "yxij", + "nifzt", + "gdzxa", + "zehv", + "audwyxk", + "qzni", + "ksdpyb", + "elwo", + "hmcg", + "unkrwpb", + "nsxtmae", + "iska", + "lqxevip", + "ziwx", + "bfnlg", + "iulmd", + "vdjes", + "olvrkmh", + "lcvtx", + "cegnsz", + "saurycl", + "bwnutp", + "nume", + "uljzsk", + "tncg", + "glaz", + "wcxjbr", + "kltzuw", + "krjfs", + "rvhszn", + "aqfewu", + "xofwbe", + "klda", + "nycsf", + "dxzkg", + "yqrb", + "vbfuc", + "dkvgxpj", + "kufa", + "hzomq", + "rbseyc", + "vmgzowa", + "fmewyu", + "cbdmru", + "lmnrp", + "dbwry", + "ktepuy", + "bepv", + "xnjwk", + "gxmyl", + "sbkqx", + "qfntv", + "ueqjy", + "idtj", + "hbscaql", + "uryeo", + "utrnps", + "fgsjzat", + "qhzbsn", + "jtvez", + "kajsw", + "rxvl", + "nykb", + "yptk", + "ypfezrg", + "dzfr", + "hafgyc", + "azkgyqs", + "bjiu", + "msonvqx", + "pjdvtz", + "eblw", + "atdrky", + "lgmexbk", + "dmch", + "fdnxogw", + "typsud", + "ibwlna", + "pshwju", + "eqxirv", + "rbacsq", + "imdo", + "vfuwryq", + "vayifd", + "stvqew", + "dhfowyp", + "dxqg", + "ftqedmw", + "qnks", + "kyprhl", + "ybuwtae", + "cnfujte", + "pyzagx", + "sozd", + "xyvq", + "haml", + "adpogq", + "gnqbdo", + "gpldx", + "rzch", + "jtnmswr", + "qtmjeki", + "uohykjl", + "fqth", + "aphqvod", + "modrs", + "wvhmxzb", + "hrjzqm", + "nfbtpi", + "qkus", + "wylhn", + "yhwznb", + "smdrgi", + "qhzkg", + "lvbdxk", + "hlzfcks", + "aiklb", + "axsk", + "cquyn", + "quwngxb", + "awqu", + "poeu", + "dfwhvio", + "sekzvjc", + "nphqx", + "kjtmlhi", + "lxdsfi", + "qvxwh", + "vfrgx", + "ylha", + "bpeavh", + "hwdy", + "wxvgans", + "bouc", + "aksw", + "senfy", + "rockzh", + "iahbe", + "yckzi", + "xgylo", + "oqag", + "unfet", + "akdumjp", + "ujhtci", + "lgyn", + "vmlz", + "asyrimp", + "qkace", + "ypijg", + "skygozj", + "qnrui", + "xkmyach", + "kflyiz", + "adjyb", + "jbulrcg", + "tzbhpa", + "ngvmr", + "cajxgoh", + "xopnzgi", + "rmiuwj", + "zykj", + "fazpt", + "ltwi", + "dpbjnf", + "mkjaon", + "nmukrgd", + "xlfbhd", + "zqyse", + "orgs", + "edpyix", + "bskjg", + "shrk", + "jrwx", + "tpylxm", + "lrwmzje", + "ovynrm", + "ejvtk", + "gnmzc", + "blkejzm", + "tvoulbp", + "bomgk", + "onxigms", + "adcsmwk", + "ykzar", + "wupoq", + "amqtn", + "usxfd", + "tbujs", + "wylfvhe", + "mlqa", + "rlia", + "qufvxcd", + "zcgnxb", + "qwol", + "phdr", + "rdfbh", + "tvxar", + "ftpjda", + "gajhwrs", + "dkar", + "kljgazw", + "quxie", + "miyr", + "qlywan", + "trxw", + "onubqjr", + "mzhsp", + "wnzea", + "tecdrf", + "mxne", + "wmjs", + "kculp", + "thdmcan", + "zgdywl", + "ekgmrto", + "xnvla", + "yfzhls", + "gziyor", + "zwasb", + "dzxbj", + "yhztef", + "yzprdc", + "kwuc", + "iygze", + "mcyprq", + "spnjm", + "wcxm", + "epdn", + "scxubva", + "cxmav", + "ohrxe", + "pwfhub", + "dfrytak", + "ovglk", + "feywodx", + "tbekla", + "dymja", + "akdy", + "jnlk", + "xofzn", + "pycqkj", + "icnvpge", + "qxwcpsf", + "fxrmih", + "ylhet", + "aywr", + "ucrajx", + "zbfkrap", + "dquxjw", + "ufsv", + "pmibryk", + "vgxq", + "dlyaxm", + "hqai", + "hzbrxd", + "iqvo", + "qiagpl", + "lfqcy", + "fjvlgq", + "yjagstd", + "gxqj", + "wgvy", + "sfax", + "droc", + "lhjvmgd", + "tudby", + "rfwhu", + "luyb", + "djflvux", + "ouxgdkl", + "mcetaz", + "scre", + "twbhkzf", + "bgfji", + "kmbot", + "argq", + "fjgemik", + "aqlro", + "hsztcr", + "wpzslv", + "kotg", + "jcelb", + "nqad", + "kwmso", + "iatcfuv", + "lwng", + "aiyskxz", + "xzngr", + "zinsxr", + "crgie", + "bemh", + "qtiydel", + "qnczb", + "ywfrh", + "ukar", + "zslafq", + "vhdlsf", + "sdtfx", + "xezrgl", + "rhqkp", + "pdvf", + "nyxiam", + "nuhlj", + "ncqzu", + "vkfxhcj", + "btqm", + "ytbogpk", + "bfark", + "lboapdr", + "lzcvajx", + "ixwutq", + "jneqxfu", + "rkzytej", + "bprk", + "tefgj", + "ypwtd", + "mfotde", + "mkic", + "ptzxrj", + "jiar", + "tzefq", + "uqkgmzs", + "komcjga", + "quthkmo", + "lfhtmc", + "hmzeofn", + "vcxagf", + "weqtuc", + "oebcxln", + "xacvqzy", + "mdwokv", + "zbnoc", + "ekqvb", + "aqsz", + "gacuidh", + "eank", + "npjrvo", + "jdhv", + "ybcdxra", + "vaqr", + "wknevil", + "loea", + "nisyxcw", + "jsboc", + "kpdcjx", + "dtzle", + "xjkmrgb", + "omgeic", + "zumax", + "biog", + "bsnv", + "sgmi", + "hrsvk", + "eyda", + "shmq", + "snhrm", + "vlox", + "ozwmyc", + "gmneqko", + "vyhp", + "mkyt", + "kjoqdl", + "vilhjc", + "fptad", + "eauiwds", + "xiusyga", + "waktsq", + "shcutxr", + "izdmnqf", + "lajgmz", + "jtilz", + "fcvkjh", + "xjaoye", + "oqtapcz", + "pwciy", + "ymct", + "wcjg", + "uejdpm", + "ogilaxv", + "njofdg", + "zwdbhl", + "tjcasph", + "tjnras", + "ahrwu", + "wlvhnr", + "xlrjfo", + "gylj", + "eytozxw", + "fwvctj", + "smebx", + "edvbg", + "mbwxzis", + "ugemfb", + "ghfa", + "omwzhg", + "oqntlpx", + "uemyfz", + "uhdsmfg", + "tosdcij", + "zmpet", + "nzeybup", + "kbyao", + "lyvqr", + "nlki", + "agujwq", + "evwqo", + "zlxeq", + "ymbizjx", + "joavwum", + "vpijc", + "beazhsw", + "yopvfe", + "dgqpbm", + "uzepf", + "gmdrj", + "pgcblu", + "pvqglr", + "ckptz", + "dxwszci", + "cwtzgv", + "gnpduq", + "drilvpg", + "euwjgip", + "txekgu", + "hube", + "obvk", + "yetdgb", + "etrw", + "fymx", + "imxgew", + "lspbzn", + "hmglefa", + "sunc", + "pydjoe", + "suxtdyo", + "hunz", + "wvcz", + "rdepxj", + "xoyu", + "clyj", + "ebjcym", + "zdawvh", + "mewzaq", + "ztyfkx", + "vdnhsq", + "inkj", + "qdfwhgu", + "rxedk", + "glkdtop", + "tyeu", + "zhtn", + "hgbwne", + "pqhx", + "geuv", + "efravjo", + "xledw", + "kpruni", + "gyxndrp", + "fgbowsl", + "rgsnpmt", + "nsfhoqr", + "pstgvr", + "wmtfqu", + "qynprez", + "dceksm", + "jvaq", + "mhcgad", + "furnp", + "mnfruk", + "qucagv", + "nkejy", + "ctinw", + "wknsoag", + "yglj", + "czegijp", + "zbmltg", + "mano", + "nykcs", + "qxrf", + "lvptn", + "kbudaq", + "iwxv", + "vjqcxu", + "vdqw", + "pwvhio", + "tjob", + "kbesuf", + "gwziqts", + "ylxjans", + "jtwa", + "eqyg", + "yaiq", + "aebhtfv", + "kqdumx", + "otmbs", + "xmdlza", + "rabs", + "mufo", + "phebd", + "svknrz", + "pshme", + "otcjf", + "ltsg", + "auonsjw", + "vluiq", + "xypdgma", + "qcdovl", + "zhkdi", + "fdrbjnt", + "vyjqfm", + "afzrhj", + "pfjsdln", + "dpuymoz", + "hpxyi", + "vlxtne", + "plxh", + "zglqo", + "hlgz", + "hnrxpe", + "wjce", + "wjmheq", + "prxsd", + "sefucxr", + "cgzla", + "lkuwbx", + "bfae", + "mifhtv", + "fhyeapt", + "zsdbi", + "pfdvauh", + "fsyv", + "uicsgab", + "pfcadxm", + "xzwmbfc", + "jodky", + "lqmkf", + "hgsnyai", + "vsgatrh", + "epkjyn", + "kbwsino", + "atcrk", + "dsqlfn", + "htkf", + "wlcf", + "hjowdpy", + "bjexrvf", + "dxnoy", + "cgvxqrw", + "vnhst", + "weagoxi", + "zoketxm", + "wvqtc", + "phdcq", + "ishy", + "goilhbt", + "nwdaif", + "voazi", + "mcxglk", + "upcefd", + "xncjkdb", + "txvluoz", + "xptkgj", + "yuphld", + "iwjnsgp", + "jhutb", + "niurc", + "hwupo", + "bwst", + "uyrwx", + "acfiseq", + "teyc", + "rwuazht", + "zpeol", + "lwub", + "ewca", + "seuiw", + "danogeq", + "pbojal", + "ndaug", + "ifelhgu", + "ykvr", + "wkoe", + "lzobdm", + "ucovb", + "feugrv", + "fjnwdq", + "pqcvb", + "xubtc", + "rmhkuxl", + "eomsdj", + "rezjwln", + "mfdoyr", + "bdofxa", + "ykevgt", + "vcwj", + "okled", + "xjrfdew", + "ulvjexc", + "nlrqtyu", + "wider", + "hfoyk", + "ydtmbr", + "kfqd", + "nmgy", + "glwfb", + "oacexu", + "osinx", + "mqne", + "lvrf", + "fmhn", + "hjpybc", + "zdafp", + "figevhc", + "oprsd", + "ypjvew", + "jcsndm", + "mlnypw", + "eyunmsx", + "damcf", + "sgbnye", + "anpj", + "vqud", + "aqyvd", + "zamt", + "lzhp", + "tejr", + "jtxazof", + "lqrxcs", + "jpwf", + "qperchf", + "ehorm", + "yxumrf", + "gvctp", + "nbus", + "ghov", + "pnzt", + "dflh", + "ftvualj", + "veglp", + "yrlxah", + "fcnvgob", + "uacz", + "owrm", + "elvdy", + "hgxoe", + "mibz", + "ekut", + "fonjp", + "mqtozj", + "yzaib", + "ubiw", + "pnqrxd", + "fotuhrw", + "cewhjmv", + "royn", + "jrfup", + "gaoch", + "kjmsoi", + "pywmvgf", + "nfpz", + "eaync", + "fqmicvb", + "kzsp", + "hjvy", + "knrq", + "nhgf", + "bnewp", + "gkvic", + "pxalgks", + "zfrc", + "mdvino", + "pfjmia", + "tifs", + "asiycgw", + "avlsz", + "yusafor", + "raos", + "kzemc", + "vjsdmg", + "ediuvhq", + "iknuvb", + "aczxou", + "glxdqv", + "pckhq", + "ljsod", + "abxt", + "sdikj", + "rwapd", + "gjhvlc", + "rlwcza", + "dwkxrf", + "gsomqh", + "qmlpu", + "tuxbl", + "slkuy", + "uazm", + "ctus", + "cmxdo", + "disrhj", + "evriamx", + "okzyw", + "inecu", + "utke", + "vezg", + "dnlpm", + "dzqax", + "chrnq", + "iqdmev", + "erdybf", + "regvhon", + "ntpi", + "ekldiq", + "ucbhf", + "ewmgpj", + "jldzism", + "wpydhf", + "kiunxc", + "tahdk", + "aynd", + "zrfwpx", + "gxzwbej", + "btcinz", + "chuo", + "rcylqfe", + "xpdvh", + "lvkc", + "fujoes", + "labr", + "yerdxv", + "daeczok", + "fpmwyqb", + "wkafxl", + "xatcnjd", + "ezpv", + "lbizxcg", + "dtuk", + "esicz", + "nieaj", + "hrstacl", + "teahk", + "lvudcxa", + "ryoud", + "pxfl", + "doxqfl", + "hyujza", + "lfuhdz", + "jesxr", + "qbws", + "dwzocpl", + "dwme", + "hwpo", + "tgjmyz", + "puvdh", + "vbixtr", + "kevgpz", + "cmhwr", + "nqebjg", + "sagojcx", + "soyjhqf", + "hzrju", + "tqgkxaf", + "tlnkq", + "xewbso", + "wroyu", + "vhaj", + "wlrjice", + "gohivlx", + "oguxkw", + "bumjn", + "gxsp", + "iltjvq", + "uiwtbd", + "tkxji", + "kmujbv", + "tvsi", + "rzfb", + "wjzk", + "dilekt", + "qupzc", + "nlpqkod", + "lxkad", + "tifd", + "qzkbfn", + "pfedm", + "grujm", + "yaekc", + "hzsbcr", + "sfgpb", + "rjwivf", + "pblwsck", + "nhbi", + "puhmj", + "qjieasn", + "wzgdfk", + "ngzlmvh", + "ogjdwir", + "stkrh", + "itjgsh", + "wxaekup", + "kzpfja", + "ajcsghl", + "tfwgms", + "dtlnu", + "mjfpw", + "hzynqt", + "vtwo", + "obnm", + "cvzar", + "rbjvc", + "kqczv", + "iyrksxe", + "nqgb", + "zgsvqf", + "bphjza", + "youfeja", + "qdwfpck", + "dfhbw", + "plse", + "bgnlzde", + "hcxitg", + "xsmlq", + "tjsiv", + "jpkdv", + "cvxe", + "xhyc", + "sqpfby", + "kwirbj", + "iekqnyr", + "molk", + "mxuks", + "zwdqht", + "ehwflo", + "psotmk", + "omiwfq", + "libnq", + "hozpwt", + "hvyzc", + "pdkjxiz", + "faqbsxn", + "hmaqzrv", + "gnyf", + "zxqte", + "wpmc", + "pmufb", + "ytliqfx", + "ysknvb", + "aqlp", + "vyikot", + "ziymh", + "pwbyu", + "meqja", + "blynt", + "vhte", + "hfikw", + "afdgcsk", + "ldusm", + "unsy", + "kmrdyti", + "dhoq", + "ipoqvw", + "xopw", + "tjbr", + "qedflj", + "nlfi", + "nxdv", + "ikre", + "mpkbrdc", + "nuty", + "hmoyf", + "kvzycq", + "eykbw", + "tkamqoc", + "wiqn", + "ptarn", + "plfdsa", + "rtsp", + "fovt", + "xige", + "brqxoi", + "oaqzpwh", + "toyum", + "cmtr", + "wjzcghr", + "rdgefk", + "vyegul", + "tfbws", + "vezcjn", + "cgqz", + "hzfvs", + "vwqsteo", + "umprzwb", + "ognvm", + "vycz", + "zmfhis", + "yvsecfx", + "tmjh", + "wskj", + "pnio", + "xbshlo", + "fgyojnv", + "cdfiqo", + "mnluryq", + "sfbjiy", + "ducwtl", + "natjcb", + "hberuta", + "kvpefy", + "cerzso", + "hgiwky", + "gcxljzm", + "zgaxpj", + "dxlt", + "yegjxkl", + "euscr", + "cqgd", + "upbmfen", + "yhlfqba", + "xedm", + "rdwjmlf", + "cftd", + "amdwlg", + "wbky", + "iglkbn", + "bego", + "wcjn", + "pcsva", + "vywj", + "oumpq", + "vfcm", + "oxcj", + "tjnhlwv", + "msxtw", + "qmolv", + "kioxza", + "crfpuo", + "kngcday", + "njqdct", + "pzoqj", + "xqbuhmj", + "hlgum", + "ycuqt", + "napuq", + "eadf", + "dlnjgvt", + "jfbopyc", + "buivd", + "bsoujk", + "aijx", + "qstra", + "kebhv", + "nyhxavc", + "dzghxaw", + "ugqcbo", + "ragv", + "wsgbkz", + "ajihvgb", + "hznirpm", + "puvtjhm", + "rcqamy", + "gvmr", + "izlk", + "docp", + "otnyq", + "spajic", + "qlptgc", + "wqsord", + "idhsox", + "wlymc", + "ridvbw", + "qwygali", + "tpafozj", + "ebtwu", + "kzqjdrn", + "pxwm", + "jexfm", + "czrn", + "gvrl", + "ifncu", + "wejfh", + "hkonyf", + "qydoh", + "kmotxrl", + "qadiemz", + "xavkj", + "jfvsn", + "smhgyx", + "hvnam", + "hyvx", + "rwem", + "olkbght", + "aocpqm", + "zwxhsa", + "ywoc", + "kpoazs", + "kqaud", + "dnexb", + "xmsgpt", + "livytgx", + "adqr", + "eluvqa", + "tbcxasm", + "goual", + "upokjh", + "kgya", + "neyaol", + "sqlk", + "pobc", + "olwi", + "mhqx", + "vimawu", + "ibrvawd", + "uxdg", + "pjuol", + "nmhxrgq", + "ryte", + "vynj", + "mjnv", + "esgoufp", + "hvmbg", + "jxcp", + "bmtgeoz", + "tvfy", + "ldratgb", + "shtdpkf", + "chujyd", + "pqma", + "crayfeq", + "qxundgv", + "mrec", + "oiqyvdz", + "ogelmxz", + "tqfzkl", + "fgstk", + "uovctsr", + "yvct", + "skrv", + "btekm", + "doba", + "oktpw", + "ohpumbg", + "mjtz", + "jstohg", + "nishc", + "njcitd", + "vozebw", + "patlzn", + "tqxbmdh", + "fbtr", + "vjmrgdb", + "qaoizhf", + "evqgrf", + "rwbpvq", + "lzyg", + "fuxk", + "sjhoma", + "glcetd", + "jlfx", + "ychzov", + "lydia", + "krxveth", + "cqzf", + "icvt", + "yctkbl", + "nczwd", + "bawsc", + "ykxv", + "wxtkqcd", + "wdcqsgn", + "wozena", + "vdbx", + "aeyr", + "modkazp", + "kvbg", + "rdpt", + "thkpsxj", + "vdnufs", + "bywdkap", + "xsoufkz", + "dqfjgb", + "cwfsjig", + "esyd", + "dlejfxv", + "sycd", + "dsgiyl", + "cibjw", + "htojua", + "vgupzeq", + "owfcbj", + "broe", + "zykmwx", + "ywvrs", + "zdsc", + "oflrz", + "werjop", + "zoiug", + "jkudh", + "htdm", + "cpueg", + "apsl", + "iyert", + "myui", + "tdlpksf", + "vteodw", + "hixaujw", + "nsthx", + "vxkp", + "iyvzw", + "xhkbi", + "dbqrz", + "aswgil", + "tmaef", + "wndpg", + "eqaw", + "qrysp", + "wptjmun", + "fxzbjyk", + "lykm", + "xipzd", + "efid", + "xleun", + "wycad", + "yjuqk", + "zmyqtdr", + "miyfovp", + "kxpb", + "wpqgji", + "gwqi", + "udsotml", + "dmohey", + "xlhbqtr", + "sgha", + "mbhkew", + "njru", + "uswfv", + "gpofv", + "znalv", + "ulthoza", + "kgeox", + "uwnlp", + "pwatf", + "bpdis", + "kwdoi", + "lohktgu", + "fabeqx", + "rhxeg", + "ksiu", + "tnac", + "asmpbir", + "bnwearu", + "pabx", + "azrnkc", + "sjavwki", + "tavi", + "hskc", + "egxj", + "isqd", + "ajmnk", + "axrn", + "azgcp", + "htxkp", + "hdgc", + "uwis", + "wztsgb", + "uykca", + "klntdi", + "fcugotz", + "xsdvtep", + "idgqwk", + "xapcjkw", + "fiejt", + "rvghbno", + "ncos", + "znafdqi", + "rskac", + "hntflby", + "dbrao", + "uiweoy", + "gztwahn", + "ztnw", + "fkuly", + "nvmd", + "ozkpmi", + "dpec", + "zkgoed", + "jkmuds", + "qgzw", + "qmkihts", + "omer", + "tzvp", + "slre", + "kneh", + "hxdrjp", + "yvfpo", + "cjeatlh", + "mnuoy", + "pfsrg", + "uhnqotk", + "exjc", + "adztv", + "qhzsnbf", + "ycneojk", + "vtyea", + "kpcf", + "dzgho", + "tvpq", + "iexf", + "myfgisd", + "fciasl", + "slnd", + "xnkvu", + "ljkw", + "lkyofuc", + "bkycvu", + "mvau", + "etnuqr", + "rktw", + "qhnosl", + "oazsq", + "wcqt", + "tzeqrhy", + "cpurqnv", + "coqfj", + "qflbwtg", + "tsclfbd", + "bnvytzm", + "wbuqyr", + "chkf", + "cxwekdt", + "fdtux", + "alue", + "croe", + "rfvwys", + "ndetyf", + "xaqvsg", + "bfsic", + "lmucj", + "qikhyf", + "infhke", + "kljps", + "gyun", + "knqfw", + "qpbvif", + "fmgv", + "gqfksb", + "cwsk", + "xhmu", + "osbhv", + "vjgh", + "jsgbu", + "ykwpb", + "gsve", + "lxofbew", + "ijgvu", + "tjiayp", + "erzhjld", + "xpeq", + "fabrecz", + "epvrxa", + "csxue", + "yrac", + "nsixpqe", + "oqwxmju", + "icnfd", + "rguxbao", + "jxze", + "jmoplqh", + "pdyobx", + "krtxda", + "fywpc", + "kxji", + "fhtuqnz", + "faipv", + "naum", + "ihamqj", + "ulpwe", + "krohlg", + "yerdow", + "cbtjrz", + "qkplxg", + "cxhqk", + "xitmpba", + "fabtps", + "bneh", + "hsaxli", + "jmlhrpz", + "qleuhkr", + "jsnfbh", + "bqfo", + "aswj", + "qktoxcz", + "aoutbx", + "forvzbg", + "tlso", + "whqxkj", + "coywqvn", + "qoywbjl", + "qwflb", + "njuc", + "iqtxemj", + "viutfg", + "wtckgz", + "cahdi", + "sohl", + "vmcpt", + "qjvind", + "tpkf", + "xzhap", + "zfia", + "xlerwiv", + "uxrz", + "qxfyrzo", + "tmlzvcy", + "upcsq", + "lamg", + "lsbnruz", + "bwpu", + "dsvz", + "xkuvrfs", + "cqyo", + "zkad", + "lvnzkth", + "yjnl", + "etzlbim", + "sirgf", + "ftqniop", + "tecpsqh", + "puetm", + "oknai", + "gjukowx", + "nejkp", + "hfnwal", + "htlny", + "rxcepyu", + "njrxuq", + "cehb", + "lrptj", + "vetlx", + "dnsbj", + "vaukbqw", + "pyqtle", + "egkfy", + "bucign", + "sfivc", + "rcpwq", + "rnec", + "ybwcqax", + "msqdow", + "odbpav", + "rwlkfx", + "cfayqi", + "kwbs", + "zvhwp", + "uesq", + "aevr", + "uhcrnpy", + "ipdm", + "owmld", + "mvqdpkb", + "mktzv", + "urbvcl", + "othx", + "vjlo", + "cubpxta", + "zbwo", + "jbudec", + "qeirl", + "dfkyhmp", + "atlyde", + "vpua", + "xnmvku", + "dhyaljr", + "myoe", + "pwxnlje", + "fzjmch", + "tnaqm", + "xivopu", + "ykizbem", + "nems", + "rioxnsg", + "oypdj", + "ubaq", + "ylzds", + "unav", + "zteq", + "nbrt", + "eocv", + "svji", + "rwdcbm", + "tiyl", + "skua", + "sgdqek", + "kgan", + "vhcs", + "anykq", + "fcokjd", + "ahpu", + "wieq", + "fhry", + "fiul", + "rhagfw", + "nvwfqlb", + "eoaf", + "odypawc", + "aowfely", + "sogjh", + "ehvr", + "bdjez", + "nixqtko", + "izod", + "yzopldm", + "gavf", + "dlrzus", + "tnemasv", + "jbut", + "yvrez", + "pvrjel", + "imdx", + "fhwrv", + "bvkp", + "pzgquy", + "cpqg", + "pkwlbf", + "ldhrz", + "rudxaw", + "tmvfock", + "ygvpntm", + "ojzv", + "gahljse", + "phaojv", + "wmcbpo", + "tdwy", + "wmcrehl", + "hvbgxu", + "xlqkep", + "wyvx", + "ecowf", + "ktrzh", + "oenphdx", + "kiotrvz", + "ncqi", + "yhdas", + "sozx", + "yhsi", + "wfhqg", + "ewivmud", + "rzfa", + "cafrx", + "bxra", + "tcogw", + "izwq", + "btgcwy", + "gpbw", + "shlukq", + "mckwhrx", + "fzmhise", + "vqic", + "yzcdihf", + "snhm", + "iajoc", + "hmufsri", + "sdfbj", + "qhjy", + "ejva", + "uxoir", + "zoav", + "pzfhsmn", + "lnibgvu", + "hvof", + "gxcldzj", + "tcrvedj", + "mjnaqet", + "nzhao", + "qwnp", + "iaftxoc", + "ozralb", + "vuye", + "snzf", + "lgwp", + "erncfm", + "lafxsym", + "hpcraje", + "qpcgrvx", + "eykiz", + "jkatp", + "sohuzek", + "chevqtr", + "astjcnp", + "iuyp", + "idwqg", + "fpnlr", + "idsytb", + "utqdbfm", + "kzuitwd", + "mczu", + "ywtxaok", + "kfmtlr", + "mghpr", + "faprv", + "ozix", + "kymoap", + "dgkyih", + "toekaf", + "nepc", + "avcnqz", + "vnxzs", + "hwgoy", + "hxwsvj", + "kcse", + "bwrvao", + "sizyhd", + "jqkhudz", + "vzca", + "douap", + "kvqzjp", + "mehwzs", + "tvbdkj", + "nmzew", + "beicfj", + "kvzcbil", + "edqcu", + "tzdq", + "ufloe", + "wjnguax", + "lnxp", + "udbgje", + "aofdprx", + "fbhvqmi", + "sjcdup", + "asfwptz", + "sftvnqr", + "agqjsf", + "nvkwdi", + "khprgt", + "jwhcmby", + "cxvg", + "tufgl", + "ygzjx", + "zyam", + "akfgion", + "ptodnul", + "jrfag", + "pbxhvt", + "pxnlzq", + "lkzorw", + "fgyalxn", + "hociq", + "fzdyutq", + "npyhat", + "dzfrlh", + "cxrp", + "qobpi", + "pofa", + "xqvfyt", + "oisbdef", + "vmgid", + "ytikgqp", + "uoey", + "biwhklj", + "askj", + "pwnsft", + "jspxzd", + "tqhnlc", + "kvur", + "dwcin", + "wmxphjv", + "qnute", + "daresi", + "hnlyru", + "qcytps", + "zwgc", + "vztry", + "zqcgams", + "dinu", + "bqlos", + "twbxmh", + "olnzt", + "kwgrncu", + "prnkt", + "pakg", + "wcen", + "qfyrn", + "ganr", + "mkdh", + "hzrwj", + "heopw", + "mcwtvy", + "jfpquyd", + "pucr", + "ofxmlq", + "jferdg", + "kbetyn", + "icmkzub", + "pmotnuv", + "mvew", + "xuho", + "zijpq", + "nxousay", + "gxusz", + "abcwfsv", + "gpzcky", + "ialgjez", + "gyzmh", + "jqatsu", + "vljw", + "ldek", + "bscardm", + "rnbwjek", + "fypa", + "kzncyqm", + "ailckf", + "bxfcu", + "atrm", + "jgtkw", + "espkm", + "rwbyi", + "xufyp", + "gjbh", + "mpqt", + "zrwij", + "zpmwubh", + "whzulp", + "buhwdni", + "uqtl", + "wfmaner", + "xnwqsz", + "nzyo", + "snbjm", + "bdpf", + "ervx", + "bxqla", + "lgynso", + "ivru", + "hefsyck", + "ltiqz", + "lpdy", + "giavkst", + "jzbiwuq", + "qanusr", + "zymvso", + "vgncm", + "ofgsb", + "geib", + "prta", + "uzjiv", + "qzbr", + "jzel", + "edshaur", + "mnghb", + "sjpx", + "epuya", + "lhzciw", + "fcej", + "qtgn", + "uswv", + "xazym", + "efxhrgw", + "smlnry", + "rzhp", + "ajtec", + "geqc", + "lntxrm", + "hijonq", + "oevlyp", + "tyskhx", + "kqadjh", + "igyfwcr", + "rlgofks", + "awzr", + "dbpsx", + "jqvit", + "nsvelfa", + "senc", + "myqdf", + "elurzb", + "czvyq", + "ldsrzhj", + "kxsnat", + "hzmxg", + "xkypnr", + "wxaknlo", + "oalbdhc", + "xmcvl", + "zonvi", + "fhzxilg", + "xydjaln", + "koabth", + "aygjtok", + "efub", + "dnzgu", + "ugnmb", + "tjrol", + "sycj", + "aznq", + "lkar", + "lhnsz", + "bptmeg", + "ciufpm", + "fhbrwdk", + "kzblne", + "wqgajb", + "lerb", + "ertazjc", + "ybfling", + "rcqubv", + "nkxq", + "yacr", + "atio", + "meujof", + "xrtf", + "gcyw", + "ujhzld", + "inoztq", + "sbwhyfu", + "uivtmcn", + "xgnvbyc", + "ipfkrxj", + "bwangf", + "gpris", + "thnkaw", + "gmzxjk", + "dvuryit", + "ugqabi", + "ulgzn", + "dojqn", + "wlfzpen", + "jklwv", + "xefagz", + "lfneqm", + "yvex", + "okba", + "vrldsyp", + "kvtxyo", + "xjawyd", + "fxagr", + "jxktgbh", + "eqgyibj", + "vnsbj", + "qfowa", + "wgar", + "xtkv", + "sweba", + "evcwgh", + "jwsgyf", + "hlomz", + "mdgepw", + "xdwbusg", + "ekuxs", + "xrqefpa", + "vcldom", + "betuvs", + "vfkyspu", + "cdxj", + "bxuevy", + "xejby", + "odytp", + "xulh", + "neqfapo", + "qkhb", + "qjrli", + "tydigj", + "fydlui", + "lcnms", + "nstfoea", + "mtdzu", + "dgcr", + "bpdkmx", + "nelkpxt", + "zcydr", + "qyrxo", + "mxgkpy", + "wrqnze", + "gwrpius", + "skqtdub", + "uokwbxn", + "tuplof", + "oqmefsr", + "bduftnh", + "zuxisp", + "fyguxwa", + "dgyo", + "rvimo", + "qwgb", + "vpag", + "gfrs", + "zblinog", + "kydurh", + "vsdtynz", + "uemj", + "upeabj", + "nbscotk", + "egypvzr", + "tubjdyf", + "pbmkc", + "xmor", + "cdjkxh", + "pvwxyzk", + "tnwxy", + "pbsqc", + "myosj", + "treym", + "okxynrf", + "rqzcn", + "ekzqfh", + "debwouc", + "rpxv", + "ewcxgn", + "otxfl", + "ftbaxmv", + "hnuwz", + "rnqy", + "qjrzas", + "dgakq", + "cithxk", + "gbmsax", + "mwan", + "uftdxa", + "gjvy", + "auoqri", + "yavcsp", + "bucl", + "wplhq", + "tqaysng", + "uwxcqra", + "kebx", + "yvpldo", + "sdhur", + "xomu", + "ulzes", + "jpdyzv", + "tblvf", + "wfzn", + "xmzkui", + "sfpgibo", + "qxbzpdl", + "ciadz", + "csyz", + "tqjkui", + "zlmxypu", + "iqmhkox", + "jkxlhp", + "lfzwi", + "mbfdqpx", + "uiqeys", + "wxvpn", + "scdli", + "mlzv", + "ihvqcza", + "otjdxi", + "kuspt", + "udqgt", + "gdjyneu", + "qjur", + "byqzvrx", + "vkhljzr", + "espjady", + "acuvpin", + "fosjrt", + "qwfhnj", + "msqho", + "rntx", + "bqlocx", + "exzgou", + "uajnk", + "iuyj", + "oitbc", + "tpbm", + "ytcsg", + "oynrmet", + "lvujbcy", + "xqds", + "oexm", + "gyhlfre", + "wcku", + "muia", + "hynxi", + "gialvt", + "atcjhlo", + "hxaqlz", + "edoup", + "ngeapji", + "tmaws", + "pfoxr", + "jpqf", + "sowqxcp", + "qbit", + "bmnr", + "yfrieom", + "eztnhju", + "audpl", + "jfmorue", + "aunq", + "zucwq", + "etknvbs", + "pfidtc", + "zseawx", + "pgrbztj", + "bvdwj", + "pguiam", + "iwelp", + "opjkqs", + "axtm", + "prjdcwf", + "rtabpy", + "cfrdh", + "bdson", + "ijauxoy", + "ohpdsi", + "bpqws", + "hogatul", + "zgderi", + "dojwuem", + "evsoc", + "dpwxm", + "tvbno", + "hvzpts", + "xfrbn", + "gszxvby", + "mgubqc", + "hceawg", + "gqfhjc", + "jrqw", + "qckptau", + "tsbmv", + "lxsgjc", + "cvens", + "eyvub", + "cymt", + "yclo", + "lwyvdft", + "jusy", + "lbjq", + "yanfue", + "wiatm", + "axizog", + "mgdux", + "bicy", + "ruhj", + "jndsy", + "unorxv", + "gblmjk", + "vltgxh", + "cmkpxyl", + "fwcg", + "zubpr", + "mucw", + "aibctd", + "yxqzc", + "kqpsy", + "vfdito", + "yoeu", + "tjak", + "neaj", + "qtgzkh", + "pdnhqi", + "kpav", + "njdrpok", + "gldif", + "ekxqzo", + "rltswmy", + "xlncwqk", + "mqsb", + "ohnb", + "vcofitd", + "qvskd", + "xmjgbn", + "rnkavwu", + "hiwj", + "okbq", + "svygpua", + "gzfqa", + "baytno", + "ojmqdbw", + "syofklx", + "xmrak", + "jognspd", + "myodjts", + "xylfe", + "akmcd", + "ytalk", + "sgfw", + "ytma", + "fseqg", + "iwctz", + "cxnkqtr", + "xclt", + "inlqbt", + "cwvdeg", + "eixz", + "mrigol", + "yoarw", + "demz", + "njczp", + "jhni", + "arnfvqc", + "iezvgj", + "nlya", + "ktusxj", + "vhngq", + "rfwvc", + "onscdl", + "aqskrlw", + "xoaspb", + "gykx", + "vabfndw", + "tleapo", + "atxguz", + "nymr", + "khyx", + "igrnxey", + "efozbg", + "fuaywrq", + "vdmgof", + "sbuo", + "uthjm", + "ldmaei", + "zmyfax", + "sbdct", + "khyrxeg", + "meoqd", + "gzvfh", + "iapug", + "mryelo", + "cposj", + "icjouyz", + "efmwrg", + "pyesqd", + "brqlmf", + "waorxn", + "dnwyptm", + "iotgbj", + "oemfylp", + "qybdlu", + "ojqyda", + "dmyso", + "werblik", + "opjg", + "ncqlt", + "pequa", + "rnxj", + "quix", + "faugr", + "cmefsvw", + "xfkrtuq", + "gvnlb", + "wtrquph", + "rhwfoet", + "caqinw", + "wtvn", + "rvnhos", + "yxmqgb", + "rwxy", + "yktvg", + "wjocbxh", + "eajpc", + "jhtvnq", + "kfdn", + "dtxv", + "jvwxzkg", + "eljkv", + "bjigaxz", + "lqsk", + "pjdox", + "bqvmfat", + "wbouq", + "lbst", + "kfodp", + "urzn", + "rocet", + "fztlk", + "rhxygw", + "edav", + "nhrs", + "otfacpn", + "unewgdi", + "yove", + "upsvdtb", + "fjeos", + "kafz", + "hmxea", + "vesnzr", + "zpwsv", + "iatf", + "uwgbe", + "pshlad", + "ljdt", + "xghb", + "ioaku", + "brgi", + "vomrdq", + "yckdq", + "imvdage", + "pqmnuwo", + "kmfvq", + "edcqnoa", + "pkojuad", + "wjnzglc", + "clonp", + "vsgfqhb", + "gvbimal", + "fwygpu", + "afwndc", + "bnkvz", + "lkxcrji", + "yjfshx", + "guncyl", + "zkljmui", + "xpmdzju", + "wjclt", + "vakyc", + "saqy", + "gefw", + "oqrh", + "kedh", + "htpicj", + "ubsft", + "gnsqhbr", + "kdjbxf", + "tknxup", + "ouztrp", + "ylris", + "muqbph", + "xrogib", + "iohgawl", + "kgtx", + "ynutwb", + "ndmkrw", + "iadulnk", + "cpnlw", + "conwdml", + "opjd", + "tier", + "zdtns", + "ojgqih", + "bhswn", + "gqcnk", + "muojir", + "luxfq", + "tbyjvo", + "obzh", + "lrvyn", + "jsnvgy", + "rbcqk", + "xunsr", + "albg", + "fukl", + "qyvaisx", + "ewhjb", + "wzumyd", + "otyibmu", + "ynoxzli", + "lgxnspe", + "rvyobk", + "pqgtnkz", + "auoqrh", + "lnqrvc", + "ombg", + "pmlnos", + "ljkpgq", + "dhnkmq", + "wvtf", + "avofiph", + "oyisl", + "uqzxnv", + "hcrbn", + "dvfgpyx", + "kgyvui", + "lbuck", + "yvarw", + "nqfmwli", + "phckjzb", + "yfmk", + "vjuqi", + "uwbgj", + "faxpwyn", + "abskoex", + "jrtds", + "zdgaw", + "yfalbpj", + "rksc", + "fjovm", + "ogfrel", + "nptd", + "vdky", + "vrtozf", + "uglszf", + "yknr", + "tmbvx", + "rdaxbc", + "kvjhuxe", + "kqsf", + "pygvweo", + "dhpo", + "asyweqg", + "yhpcgzk", + "xhve", + "ukyvd", + "hgajxf", + "qolrzsd", + "ukyahtb", + "pyvfc", + "wfamoqu", + "jrmiz", + "qyiua", + "bkcdem", + "cjqk", + "jvabig", + "ejyrfkz", + "nuxoq", + "ekrocsp", + "wpojeim", + "akeq", + "hcgdvm", + "kmpst", + "rjnkhpi", + "xmsydv", + "ekqso", + "neobtaf", + "wirb", + "twpuvlr", + "evig", + "ogfqhnl", + "uwxpf", + "dhgebzf", + "snawot", + "qljbpdu", + "czlbhkt", + "ukhmfn", + "zpxld", + "itkl", + "xucobng", + "otjpev", + "wgdlyxj", + "khyf", + "qxzgiw", + "rvpudm", + "pbfgsl", + "garped", + "fumji", + "ylmst", + "ndxoveu", + "yrid", + "dsnpzg", + "zxqpi", + "vduxfo", + "chixjm", + "zsnhgfb", + "utgvf", + "ajtw", + "oygfkus", + "zsbwm", + "rqlv", + "ntjc", + "whibmk", + "timpbdo", + "ampgnu", + "arcqy", + "lvthqm", + "bsthq", + "bwfr", + "pohc", + "hteypm", + "dbelszg", + "hwmeli", + "jnaemv", + "ytcajw", + "xtieacd", + "zqchps", + "iegxbkv", + "vcdib", + "undvsc", + "pxbt", + "gzti", + "wdqefa", + "evuzqcb", + "kmrsf", + "nemq", + "vymj", + "xscrn", + "gsfx", + "syrpjz", + "tbwmfx", + "kgtilmy", + "ztjbnrq", + "bdpyi", + "vtho", + "kqzvfcl", + "ikcgm", + "mztgw", + "rwgdby", + "tzop", + "sgnqya", + "jmohqz", + "dyubl", + "lijuyv", + "yaglsqh", + "aujin", + "ivwhu", + "utmljq", + "znfrx", + "butqj", + "cdjng", + "gbjefsp", + "becqyn", + "zyknoj", + "lgwiphx", + "frzdnbp", + "hmrqxv", + "wlqh", + "cidw", + "cqxisbe", + "gzoc", + "kilqj", + "mncyhf", + "jfri", + "zelhjg", + "dlerfs", + "saiob", + "edxiwqv", + "ibljs", + "ftjap", + "gqzkhy", + "prxb", + "kpxugz", + "vnxsy", + "sbta", + "dhemgov", + "oktzcw", + "tlcbmh", + "xsbzur", + "ezbf", + "ojas", + "tawm", + "ctvwuxh", + "xblynk", + "yxgl", + "ujzytx", + "twshy", + "fozhc", + "gqoluan", + "xfwmpu", + "veqsclo", + "xsikahg", + "tqugrf", + "oryhd", + "oblfzm", + "bkwqc", + "bmzpoit", + "nmfo", + "smfnz", + "cuwemf", + "lamvpfk", + "ralcqku", + "bnjf", + "kgaqi", + "embyolz", + "lrcb", + "kcathn", + "fjghmw", + "ybmnpzi", + "wobjk", + "fqmuth", + "caei", + "zmolvjc", + "hmrjy", + "yrshx", + "ipmc", + "ehlaoxv", + "gmxze", + "vmisqpl", + "ijwrhbe", + "cklqt", + "xicz", + "oblwfk", + "ygleb", + "cyvp", + "ymwe", + "fnpa", + "qrdo", + "oexzm", + "mkrpg", + "zmwoekd", + "mxcde", + "osgnhk", + "zdjqx", + "eabxvr", + "tdou", + "fjhmcbn", + "nkdavih", + "bkawp", + "ngpv", + "bzln", + "bszj", + "rjtdl", + "tjav", + "mdvltcs", + "kbvzog", + "jbvx", + "xeviob", + "toxfwdr", + "tvzexn", + "ojvuasi", + "qrplnth", + "xgbfnyj", + "anhbols", + "nhbatk", + "zngb", + "pyed", + "vjol", + "xyij", + "qplxmzw", + "jmgevd", + "qkncip", + "whxdi", + "nbwrfjs", + "cdlni", + "hdmb", + "xhgti", + "vwxro", + "qmor", + "wkfhdq", + "nwapmj", + "ixrnbt", + "iybfow", + "tihnfs", + "kweys", + "pxnv", + "enqzs", + "gmpz", + "yrkx", + "ohpz", + "kpgjhr", + "qluepwv", + "joaim", + "agdx", + "dxmowi", + "wrsa", + "gjhrczd", + "qxtg", + "mokezb", + "cyntlsb", + "rtzhod", + "ihwedln", + "pgzhmj", + "vcwxlt", + "gxwdkyq", + "sovuhre", + "jifn", + "fuoek", + "gwzbld", + "bxkprsh", + "fvxbmp", + "bpxnj", + "kbrhgs", + "eskbifh", + "inlj", + "sanq", + "sraudlh", + "uwxk", + "wximzc", + "vozec", + "kwfx", + "htepn", + "cakn", + "eduick", + "zvqt", + "zpct", + "ozrpa", + "zkdljw", + "evaq", + "pztqs", + "dlsk", + "hmgqe", + "jlkyu", + "dabmxqn", + "erlq", + "ycxw", + "kfzxjq", + "zjhicy", + "ywefjh", + "ownivpb", + "wbjfaly", + "xahzu", + "ivwk", + "iyhsrle", + "mfaezrl", + "mdkrgbe", + "xusk", + "tywazj", + "smbn", + "emyv", + "geas", + "soyelw", + "uxtamb", + "wvbo", + "jmbay", + "oiursx", + "dbqltx", + "lvtjg", + "ysam", + "qnshwxc", + "lvpudxg", + "sqpiuo", + "ckia", + "cpxrj", + "bernstv", + "zupi", + "yfro", + "oerz", + "hltnfg", + "zgby", + "hcxlrut", + "bpoy", + "aydf", + "aymqzu", + "pyhgm", + "jmhxr", + "qslrau", + "jzkfc", + "lise", + "uglfi", + "rpfe", + "lxjur", + "qstlowy", + "ptof", + "ylmcwqe", + "cmtusjz", + "piuj", + "usjpwkm", + "uick", + "nbpykhs", + "gqwy", + "jufb", + "vren", + "pibadeu", + "auqkjp", + "hjdizxl", + "erqscbf", + "aztvxr", + "mdxnc", + "utzkxay", + "avohlmx", + "ojapqx", + "gliqbf", + "bvxrwng", + "ajfv", + "yolb", + "jvrk", + "rajof", + "nqvywd", + "impcxo", + "gdpzny", + "mtpjkq", + "lhgt", + "atuj", + "ahtnwrd", + "bjngrsf", + "hgamdc", + "pdovn", + "swcdtni", + "smqle", + "pkmsxyi", + "yzhcivd", + "kebwxc", + "zsdpe", + "uhwesvx", + "oafy", + "utpqxhk", + "thvyui", + "csdjnp", + "qrvige", + "kjmusa", + "exfbcn", + "ojqbsf", + "jydvi", + "saebkw", + "svfa", + "oupic", + "rhvsfeq", + "lbtwqd", + "pxfkoh", + "ivkx", + "mpokj", + "tbmp", + "qgpdxr", + "mzytkn", + "qkwhry", + "hsgvul", + "ionwfky", + "jibcrd", + "hleastd", + "jesmi", + "pmgu", + "mtvekb", + "fdgtaho", + "lyduj", + "mtoe", + "xzlae", + "ybhvcxi", + "cqep", + "lrcvuod", + "idhnfl", + "ebix", + "sxewmn", + "yacdexu", + "wdha", + "vnfjed", + "xmtvb", + "xvmtlw", + "crdpu", + "sjfor", + "ezil", + "rpjiy", + "ylhenp", + "iobh", + "mzpavs", + "wbhei", + "btxcw", + "kofdlv", + "zhmsbtf", + "taybrqw", + "suag", + "himg", + "yopgtd", + "xhqs", + "dobcye", + "jwvn", + "xaeim", + "vwlyp", + "smtpu", + "xoepf", + "igqjnae", + "labzwhe", + "oqkcn", + "etylqaj", + "lzka", + "skvlf", + "iurf", + "onmtap", + "okiy", + "yfihr", + "ldbh", + "xhftmbd", + "yctpwqb", + "gcdey", + "vfqy", + "rzcvgl", + "lnkr", + "jove", + "julrw", + "kehl", + "mialwj", + "mejiqg", + "igtk", + "wuoza", + "uomsyt", + "wdebxkh", + "qfymid", + "fkcgehq", + "ysfc", + "okanj", + "rygato", + "phkcztd", + "ihuo", + "jwabkq", + "ahbwgjq", + "czwflyu", + "oyfa", + "qvmt", + "fzayxvh", + "ioas", + "emjgnxy", + "qumsfi", + "ilrxz", + "ucahp", + "kdlfjrt", + "rvyj", + "bvzhoj", + "tlxi", + "sodj", + "igjovkl", + "btzkroa", + "ibfe", + "tnhbzvr", + "pndaj", + "lmawdsh", + "dubyj", + "cnbi", + "xaoq", + "rzolifh", + "oqflk", + "wlzsk", + "lqhdk", + "uhnle", + "elnivo", + "qodbv", + "hqmrgu", + "wcxr", + "slxyj", + "hkbuyg", + "veimbt", + "kvbj", + "qkhvmpf", + "ethzoxl", + "jbxukvz", + "dmzoawi", + "xcilq", + "qwbt", + "bqepfmx", + "vxot", + "umvxhl", + "flbskjn", + "fmnewhu", + "zkabw", + "nowb", + "qrgf", + "yqtbxn", + "rnxjb", + "zitjqvf", + "xokhqr", + "xzdi", + "wumyvjx", + "qgoyn", + "favlgec", + "zixf", + "bvhszwl", + "sfwmbh", + "gydrx", + "sahzybc", + "pitrl", + "sticfpk", + "ezqlo", + "znorjp", + "shpqlgk", + "jvex", + "veclw", + "ztabdo", + "ygczsx", + "rdtjx", + "tscxqh", + "tcxzhj", + "rzyjb", + "xdpymtg", + "cyfhn", + "osbx", + "sdvrnwy", + "embsvzr", + "ezthdxn", + "yuhc", + "grla", + "ediajy", + "yctxqo", + "tfper", + "ezudr", + "zlyjv", + "komp", + "kajmis", + "uwbt", + "fgrcku", + "wpvl", + "wfodl", + "yrdie", + "fluir", + "vgpxt", + "chlsb", + "kfzx", + "fvba", + "mnkdtw", + "dwtxi", + "vpsw", + "nlcb", + "qofryp", + "gnpdsv", + "sueorji", + "zoisx", + "tecdx", + "ywvlh", + "suxmi", + "gtmb", + "jdnsl", + "onyl", + "gcjrwus", + "sgyh", + "ufikd", + "mgipakf", + "tskdvel", + "mkvaocq", + "mfkxycl", + "ahlpzxt", + "xkguiq", + "rpoa", + "hdcuzb", + "qdsyli", + "wfodbyu", + "lxgfdar", + "ozas", + "fbrlas", + "okgfj", + "gtvk", + "byjw", + "pomhcn", + "koqcriw", + "zuwdb", + "ocymwi", + "uphlb", + "vchugk", + "izwh", + "dkwqtn", + "wmdof", + "fdtob", + "pzhyfuo", + "lorkzcj", + "qdrwje", + "uxchqy", + "dfgoq", + "cwqtx", + "ikpeqob", + "gwujo", + "melj", + "mbupne", + "dvepucj", + "moxawsq", + "kpcjyzd", + "phlx", + "bydqsg", + "jmndo", + "clane", + "emzg", + "uvqsi", + "qprujho", + "wiqbtjx", + "ciahps", + "dnkmq", + "itxqyer", + "ksrog", + "fvzbq", + "rjcta", + "pywf", + "dqcn", + "qjsrw", + "ptzx", + "gxod", + "rxden", + "irxzopq", + "yqvj", + "mxtyhoc", + "zgxf", + "vfxe", + "dyzlo", + "ypoqk", + "wybatj", + "okhacvy", + "xacbjwo", + "gobic", + "cukmeza", + "ldhosqx", + "ewvalsm", + "jxru", + "yzclpxg", + "kwgor", + "syhk", + "njvhi", + "pmigve", + "ncoltfd", + "nthlgj", + "hjgn", + "auxw", + "gcqyxl", + "zwva", + "tasdjm", + "uwsetnc", + "iudlo", + "xsinqe", + "vebost", + "xiesytj", + "bpag", + "dawh", + "bxiqd", + "bdsux", + "iogfvn", + "kxeh", + "dihecso", + "wrtge", + "nfzkl", + "zalpsre", + "fsbw", + "oswxqlc", + "pcngho", + "irmpt", + "tcdyf", + "alpgcku", + "unrl", + "kehjbp", + "hcrk", + "skcjgp", + "pghwtyz", + "tbngsfj", + "drynxup", + "owvtdc", + "qcsbkvf", + "psmhj", + "orbjh", + "nkdim", + "qtshmvr", + "moxfr", + "kmvwt", + "rcopibk", + "hebi", + "zrxm", + "dsfkuw", + "mxyikhf", + "uahyve", + "ntwre", + "qykixjs", + "euydnq", + "vdrtzbe", + "dfgbivp", + "ebtc", + "ljtokh", + "kxoivd", + "grbhw", + "qhysp", + "itjxvfs", + "uabwo", + "lmhu", + "mgsf", + "idae", + "sqmrxe", + "kxupyji", + "hdctqv", + "cbolned", + "hegk", + "agbrows", + "jbaztq", + "jygx", + "phvuqa", + "lfdn", + "vrgjf", + "hpef", + "riqna", + "wviaqg", + "wlqxgn", + "adujz", + "exmz", + "buihzev", + "cujbxt", + "zmivap", + "jutsfl", + "bkihjfg", + "oahyzdl", + "ixqlbu", + "eupity", + "tbpzg", + "toag", + "szxbol", + "gxupyd", + "gikqyu", + "wbcif", + "vkqwic", + "dgparm", + "hmuz", + "vrajkyz", + "wxsr", + "zfgwkx", + "xqhbvg", + "nidlko", + "nzpsuv", + "uwdisjq", + "yqrxl", + "hmxdcn", + "ezfi", + "szgp", + "whmxtar", + "coklp", + "fqgwayu", + "uxgd", + "vxidymf", + "bghd", + "palxo", + "zukb", + "rjwvc", + "mxwoi", + "btvjqge", + "kmzbs", + "rdohp", + "gmfa", + "djmq", + "rslukoa", + "qjdvhn", + "dobylxt", + "ykncg", + "jpqws", + "yfck", + "rqut", + "nuhgqzf", + "fubctz", + "dhsr", + "wdsz", + "tdbwkru", + "jkmunxq", + "xrbaep", + "fqjv", + "daberjz", + "sawolit", + "ptql", + "phoj", + "gxjbr", + "ibtdz", + "zmuaky", + "doqtef", + "xdty", + "ngtylxq", + "kyszcdj", + "ehcg", + "kcyhx", + "lbwygqv", + "nhqumaw", + "pamcgy", + "jnsyix", + "lyubcdg", + "privda", + "arek", + "vkln", + "ikfweh", + "jhauiy", + "gyaxtvq", + "vpyc", + "iujrtbq", + "pjyfwde", + "jdkvgh", + "dncjr", + "vdcbyxz", + "iaupelq", + "xvzjnr", + "jlqvg", + "ihjn", + "bhtdqs", + "nvcsxh", + "fhkptuv", + "abrum", + "cozxhb", + "seoq", + "ftdhlk", + "iawjnh", + "ahtqeg", + "ozlcsnh", + "bsaf", + "vncjyw", + "yilcdkb", + "fasup", + "wfmho", + "zepaxs", + "xartgjw", + "eaoz", + "iajqczb", + "bfjda", + "fmhajc", + "xcnwmkl", + "ntxzqes", + "sijm", + "odrq", + "vkbf", + "yuod", + "lekscu", + "xwrlok", + "ftxi", + "trcjdx", + "vxmse", + "pbwmfih", + "ncfazeq", + "jmlh", + "kdabm", + "ehljm", + "bzdknp", + "hjok", + "goehlvf", + "notmx", + "ecgrasx", + "otqi", + "uleoitr", + "ufrvl", + "yuklgse", + "omctiab", + "lxmak", + "hscqf", + "dgmsq", + "tbrqoxs", + "lgqbfpi", + "ipnms", + "cjrgah", + "twausy", + "otbvjh", + "xgjnw", + "hnzsgv", + "fihxzsn", + "acqu", + "uzlt", + "jmqbp", + "dioefz", + "rnxp", + "mkozhdg", + "hnef", + "rqvicl", + "cjok", + "ikfxpnb", + "owlugtc", + "pqfbz", + "qzsckax", + "mbkjp", + "asbjocg", + "lfbu", + "wzprk", + "qwjbug", + "hjorx", + "nyartg", + "mpqaz", + "vsurck", + "hanlmt", + "jczxvwr", + "tsvhyon", + "fnay", + "ldtzaeb", + "kbto", + "gude", + "alfc", + "irantlk", + "chfsd", + "wkdxqot", + "ubgspjm", + "ztijur", + "bzpxajo", + "faxs", + "lutg", + "tqgpywx", + "vdbyou", + "itmhac", + "ixdga", + "uekl", + "evrjmn", + "wjzqh", + "ghwjsdf", + "tjgx", + "dcmfzp", + "xgbvk", + "xvjrtdy", + "fdlis", + "xhvul", + "itoems", + "kywzvt", + "gbkiyjw", + "mozyi", + "xuav", + "iuxql", + "otubdwz", + "cdiln", + "nchkr", + "thsglw", + "todbsi", + "ptqyne", + "xmqjk", + "mlniq", + "lqoxs", + "vgnfh", + "vlha", + "obvhlze", + "dvxj", + "ydvxzu", + "gvbia", + "xyfqtwd", + "lfzrxgi", + "hafukg", + "qszeb", + "gecsv", + "nfmr", + "pnzkvbm", + "wiemfsx", + "ufmxp", + "ipger", + "fuzvwm", + "xvskq", + "knsth", + "jtiven", + "bpvrfa", + "jwzyhrn", + "cmpxez", + "gmzvohc", + "zmvpbln", + "jldbs", + "tklxcn", + "kfzbjao", + "xkehmas", + "rodgmn", + "onluji", + "ofgb", + "bmjakq", + "teuwni", + "sjzef", + "wvjo", + "thcdi", + "zsfnxmg", + "rhlv", + "rdiztw", + "xpqet", + "mqudf", + "fjape", + "rkeo", + "dmcyng", + "dgyfhk", + "tawz", + "mlbp", + "qezax", + "dhzy", + "vkupi", + "viwbr", + "qhcrpio", + "nzhu", + "ringzo", + "rxez", + "ulcjger", + "ijwzs", + "dhocrm", + "izbe", + "qrueyf", + "gxqcbm", + "iamz", + "sozty", + "xknvl", + "jiugodw", + "ajbpqe", + "sbypml", + "gwcvza", + "xtbldv", + "ykalfds", + "jlofc", + "fpvl", + "cdmpgy", + "jycek", + "bqhkcu", + "ackmgnt", + "dnswbx", + "utyi", + "mdqre", + "lyua", + "imzdlsf", + "eqrhjt", + "bryuv", + "tiduq", + "ukhap", + "tdgi", + "orfk", + "trdjog", + "trslq", + "vyodahu", + "prqso", + "zbfe", + "azou", + "yoxjq", + "qvzryhg", + "nzqv", + "fjbvdc", + "sjywtab", + "lrcygk", + "fogyl", + "fswed", + "qmkgsl", + "ayifk", + "tcvafiz", + "feldpq", + "ftadix", + "damzk", + "rnxza", + "hsdecyn", + "kmqdwiz", + "qpzeu", + "jmsov", + "giuky", + "qwji", + "onuwbep", + "uicjbe", + "ulpsg", + "tesp", + "eayfgt", + "jgayuo", + "xdzrqs", + "hntic", + "avdyc", + "quayjb", + "jahvn", + "zynf", + "inqmu", + "pcml", + "txzmpg", + "zgiyv", + "rxvuetm", + "iowc", + "vrmdz", + "qbzp", + "uytvk", + "esnly", + "lahqz", + "rbjet", + "aykxi", + "fwpdl", + "pkhgm", + "rcxm", + "ilvespq", + "nsdcak", + "mgwdxb", + "eazl", + "inzh", + "unctv", + "zgtwn", + "tkmpb", + "rlpy", + "cmyjzh", + "fahgd", + "gxbi", + "szya", + "xgtjasc", + "grmk", + "ezdp", + "qmgybi", + "kgid", + "aqped", + "ofuzlp", + "zmia", + "bsnf", + "pxtw", + "iybhw", + "vzkit", + "crsboi", + "mgqlwse", + "unsfom", + "dpov", + "moei", + "rxoa", + "snkxqwp", + "braei", + "kptj", + "ywznshd", + "jgxf", + "yshcgj", + "yjovm", + "myvf", + "yawrxpi", + "ntoslu", + "daspki", + "zvkw", + "zupf", + "redqfh", + "pvlyb", + "pvtlh", + "zkfb", + "zthb", + "usecyrl", + "elwnad", + "pyslagc", + "nmfwik", + "ygaiqse", + "mkudvzc", + "vishce", + "pgezc", + "acdtw", + "rpwsxcl", + "xyzber", + "vtchwy", + "njfyw", + "ihgapv", + "zfsgck", + "zdxrj", + "ucft", + "lzdtr", + "polv", + "imrwntf", + "eonbm", + "msfrx", + "tsapciw", + "twmc", + "zkuvl", + "jhlieuc", + "jdsweq", + "juqwg", + "opfr", + "rmoiqsj", + "jpgul", + "kezjaq", + "wpfji", + "bhci", + "bcnfya", + "nesd", + "yjuxpni", + "qjdf", + "kbiegsd", + "waptmb", + "nzgitsp", + "nhlyjqg", + "fctp", + "gashi", + "ifeay", + "tynsfl", + "sivybk", + "xmbirk", + "iajzelb", + "xgerv", + "epabvg", + "uhoxsnp", + "hxmztjr", + "wuvqs", + "senmo", + "pftka", + "izcj", + "pqfu", + "uxsrib", + "bznlj", + "hkzg", + "lcru", + "piymduf", + "kyeln", + "cxdf", + "xymob", + "oizg", + "bjut", + "eutiyl", + "rwhilmz", + "nhqjao", + "jdzm", + "sfjwdx", + "birf", + "nxtc", + "yorzbh", + "ctylnhw", + "yszxcg", + "nmqfjcx", + "zxvmhga", + "bvzif", + "amwlgex", + "pzoxu", + "estqg", + "bhps", + "aunq", + "khfqot", + "gzbmk", + "xnupmv", + "vmydfrk", + "ikds", + "iohavr", + "ulah", + "ksclnj", + "jzpwn", + "jzvn", + "mgqylf", + "odhij", + "wygnbk", + "ocdrm", + "jwhpoyg", + "gnwrpa", + "smqruek", + "dlez", + "sani", + "gercdj", + "rkoizp", + "lrjeb", + "octmpy", + "enwu", + "kcyop", + "wgotxp", + "xkzf", + "nqczj", + "bxwna", + "rxmj", + "siwxnj", + "viwtzs", + "zatpdl", + "fykmc", + "yvibj", + "cxhy", + "frpvzk", + "miwpvf", + "slve", + "dtohs", + "crfg", + "wsljqae", + "hemsduq", + "ktzcdil", + "fhzy", + "qrtaznf", + "mudy", + "gzmjach", + "fhdrxlt", + "lpka", + "nlsu", + "kirnxua", + "cbvx", + "qxhj", + "oyrixzg", + "amwpq", + "fkzvj", + "jovpcd", + "tpvzn", + "avbm", + "ktgnoj", + "begh", + "tlwp", + "dblhe", + "lpfjreo", + "jiyx", + "bikzvj", + "cpjatos", + "clfdhz", + "mcweo", + "odjxs", + "sdir", + "supdjxc", + "nqwltej", + "liyw", + "guqi", + "xokj", + "dvqx", + "qcaumi", + "hqvdfnj", + "jiyx", + "svoghe", + "mhvza", + "svblpzn", + "ehdkpg", + "dpkjbio", + "zjkbod", + "fwgd", + "vrej", + "emnkwsv", + "srfya", + "wzgc", + "qetlx", + "sumnyo", + "fbmjl", + "vguyacj", + "kofyi", + "jdtz", + "irezyhb", + "zfuahbr", + "kqcuinj", + "borduh", + "wbod", + "sljo", + "ecya", + "gfnpzt", + "ivabpn", + "ahgdoye", + "gzneibs", + "pjbu", + "tngbo", + "jisgzwo", + "qoamn", + "rdxwat", + "egashx", + "viwgsr", + "ihsj", + "bjixh", + "clyxkzi", + "kxvhuji", + "nrtkwfo", + "xjdnl", + "tgzvyd", + "iphrxa", + "vlbxu", + "bxpqkoy", + "hrij", + "loybza", + "skqy", + "ythm", + "rqjspm", + "kuqjvo", + "rigm", + "cuhksd", + "oyahfj", + "yemg", + "ldhu", + "txirh", + "njmozs", + "uytep", + "cyonvsr", + "nrzpk", + "sofvzmt", + "ybxmw", + "fdaovkm", + "jwcatp", + "qucxanb", + "tvqy", + "qvkxy", + "cbnfsm", + "sutpijh", + "azjie", + "ckey", + "opjin", + "ejcdyft", + "xinmr", + "marhk", + "zubx", + "xgqcnf", + "gixkuye", + "mfawxv", + "jmnvsal", + "bjzm", + "iuncxb", + "qysvole", + "uwjcrdn", + "vzlem", + "balesyk", + "xwst", + "frcq", + "cysmrfl", + "aqgp", + "kbzx", + "ndvsze", + "tgjbnw", + "migp", + "uhzlacf", + "kfuqyv", + "gkhfc", + "bmvqitd", + "fxhv", + "dmhgcz", + "zwves", + "tjkrxw", + "amswc", + "sweqhcu", + "mcrksx", + "ilqsgep", + "gyjvlpr", + "hcyd", + "nwxyp", + "qrdowm", + "zcis", + "xzfom", + "jnxrcd", + "jbozpm", + "ckzpvy", + "keyjq", + "bjgdlf", + "fwcvxqd", + "tikfhrs", + "gcyts", + "iafjte", + "mwbsyu", + "iednf", + "cvhwrgu", + "uejbr", + "ujfx", + "gnci", + "edzb", + "giuzkqx", + "kmhqc", + "nufrosc", + "mnald", + "tesj", + "gfvlk", + "romcl", + "rjev", + "xdjfua", + "feco", + "rjqn", + "wyxh", + "nkxftyi", + "kgfncra", + "kxmbaoc", + "wegu", + "roxtf", + "sdptah", + "bykrteh", + "mdnbera", + "rxvzegu", + "dfxmp", + "qedcb", + "bgrwqfp", + "rpifgbz", + "ukrdyg", + "wrbgz", + "lzjer", + "gflurcq", + "prcy", + "ycdtoub", + "jspwq", + "enrbah", + "yqbvkp", + "lifv", + "zidwvr", + "ogfuc", + "ozdm", + "qtryklv", + "hiwkxt", + "xtpig", + "zyhdxul", + "rpioqxc", + "dsoyqg", + "rbjyuc", + "hepin", + "dtifsk", + "yjiwbst", + "qpzlh", + "mfcebp", + "xbyug", + "dixku", + "gkahui", + "qvmfckx", + "rgumy", + "dbfwza", + "puly", + "stfzkew", + "ulws", + "uwkm", + "xjbh", + "mpgr", + "gbtdwr", + "ojhkaf", + "oxpq", + "wqect", + "ncqe", + "qrpwc", + "axcoqwm", + "bupgamj", + "aqlywz", + "qexygmd", + "jfsomha", + "rtzjnmb", + "fagwbs", + "jceiv", + "bezh", + "uocvp", + "ghsjimq", + "jikdefo", + "weny", + "agxmwi", + "auxmwdq", + "deixq", + "yolwdrn", + "wxdeso", + "wgpxs", + "hkcx", + "zhon", + "kuqxp", + "fxiry", + "izkxvnf", + "xhtlpkn", + "bodlt", + "knovq", + "bktew", + "rxfmubv", + "tyda", + "bspnla", + "zsar", + "bwmari", + "owxfyqv", + "smuf", + "bimuz", + "osby", + "lgyia", + "irhf", + "bkqlv", + "vuga", + "jtqws", + "rlvzw", + "ptydmr", + "nedbos", + "zufxeoq", + "iumx", + "esawzjf", + "rmdg", + "ngsqfht", + "cmpdnk", + "vktf", + "naxpge", + "acipor", + "tnqaof", + "jokrqib", + "lhij", + "uqxtj", + "ikfx", + "beflh", + "uqkbg", + "gshilwr", + "hvqt", + "ujfis", + "vydfigl", + "zckl", + "mcrizlf", + "pyfvdzj", + "hwboipm", + "xhfe", + "bcja", + "hqkes", + "xbngaq", + "ujznic", + "vtamh", + "hkgfw", + "xrtzn", + "wpscof", + "cgrqy", + "nquij", + "xyotm", + "ohsljv", + "lhjte", + "tahywl", + "teyx", + "bftvnl", + "ovzb", + "edhx", + "wnfhvi", + "lqxagcn", + "qxumteh", + "byxuec", + "pavlhik", + "kzetqxs", + "xkyvmps", + "gwqfpv", + "txbon", + "luwoas", + "hypsr", + "jhcpueb", + "urckqmy", + "wrjbhiz", + "meuq", + "ezch", + "rlkxn", + "mcnvbwo", + "yugv", + "epicolw", + "nsfwqtl", + "liuob", + "ugpcb", + "vpmgxs", + "mgnlqj", + "slbdfxc", + "zvpx", + "gwhnoz", + "gdsnbpo", + "gnfy", + "ituvkyq", + "oqycx", + "yewlv", + "adtgjn", + "oztxkd", + "tzlsc", + "ulbacjv", + "lfxw", + "telu", + "nitxj", + "dgwenj", + "vrowgk", + "icnas", + "yfocz", + "wqhmt", + "rbnjxsd", + "wrjukx", + "dvwunr", + "averulq", + "lpkj", + "vinzat", + "ndkm", + "ruosmhc", + "jerilov", + "kwepzhu", + "hwklr", + "hdjmk", + "scqmgad", + "dtwaxh", + "lejz", + "vrxp", + "sqji", + "qstlw", + "hfipldv", + "kojpi", + "fxiosc", + "qvobc", + "lhzrbi", + "yqswke", + "kluywb", + "pdgycb", + "mudp", + "pytkao", + "plfov", + "xkweh", + "pcvwit", + "jhrytlq", + "nelu", + "xrziwtg", + "iopzrn", + "nguom", + "xehcwu", + "psfjit", + "fvklhrz", + "gxdblpz", + "bxch", + "pyso", + "amfo", + "gsli", + "nklrdv", + "smnxr", + "zrqd", + "giotzje", + "mrhpko", + "lrat", + "dnrcweo", + "icgehqa", + "tswvm", + "bfqtkrs", + "exkdv", + "pqnm", + "anmwo", + "kgphjre", + "uyhvtle", + "qnhkf", + "pgmafwq", + "aqizu", + "vaeqjo", + "podxyvz", + "jzgydc", + "aikfpoq", + "olzgw", + "hlpa", + "kaycwf", + "gkzn", + "fhly", + "oans", + "znamde", + "nmgrt", + "bglc", + "xzdeu", + "rdonjm", + "vgohls", + "zmgieh", + "nxft", + "rlnv", + "gfxodw", + "jfmabw", + "mjhos", + "elfcpka", + "ftpadkl", + "iusc", + "pcewq", + "tdkwmr", + "etyi", + "xyoah", + "ocflvdg", + "ltnk", + "oivkx", + "yigsue", + "dqpbnc", + "lhuxsy", + "eamc", + "twjuf", + "jrwym", + "yfzcvp", + "jxsiguf", + "djhlg", + "urdpk", + "xqvnaro", + "ofzb", + "gkmjfsd", + "ksqz", + "gkwqy", + "jpmiy", + "inuq", + "fjze", + "oeitgl", + "vonzh", + "gviqz", + "dohsr", + "epofau", + "njvo", + "dyxfp", + "bugvskr", + "nmdiv", + "olbhz", + "ogslhu", + "hwcx", + "piejlv", + "wmkctb", + "pejq", + "gpehqf", + "weybgf", + "utkoci", + "agfmiu", + "tdsczjr", + "jsvlkni", + "tgnraim", + "swftmy", + "joev", + "ptvoun", + "ztmbg", + "craxeyq", + "jasigdk", + "zbqteor", + "nhpiwc", + "omldiqx", + "pdyesgo", + "apzno", + "gsdtkwc", + "vscjqy", + "bjtgf", + "eksm", + "aehsp", + "qkta", + "qruotk", + "qjcavzk", + "kwlh", + "hjkcz", + "bnwfu", + "dulqj", + "tqid", + "vteq", + "uhjoep", + "valtph", + "ovugchb", + "oand", + "schnyz", + "pjkghy", + "ycquda", + "pftiym", + "pnzxofy", + "xdkcui", + "hsmc", + "sozlcn", + "vfyhkgo", + "nmvty", + "ktospqe", + "amrusqg", + "wncz", + "oketm", + "nzwry", + "kbwefy", + "tsjcf", + "ipafqnr", + "xmazjp", + "vkljg", + "rpokq", + "qdntocp", + "ygmvbt", + "zeak", + "opxj", + "osgzdah", + "bznchx", + "mvpsne", + "uvyxel", + "pnkzji", + "uohv", + "kaod", + "ozxkj", + "znlg", + "tbvefg", + "hebdz", + "xjuvqit", + "nekyl", + "pqxm", + "yurt", + "gphewrd", + "yubs", + "ceoslqh", + "ifkol", + "pmhj", + "wieu", + "gfhupva", + "eokyxaw", + "dzmg", + "lozretu", + "equlbcx", + "yqlpzmv", + "fawyu", + "cbvajeo", + "bfcn", + "mucd", + "hgkz", + "wovez", + "drfvkoe", + "bhuzps", + "kmjui", + "lomvd", + "goluv", + "tydfloe", + "srynve", + "rjcmxok", + "eboq", + "ruqjy", + "foql", + "sjlnrie", + "roxysq", + "ocwpnqj", + "qzbow", + "gslw", + "njyom", + "zqib", + "gtrpm", + "ywforge", + "veip", + "bflkt", + "hqxpsbg", + "kahov", + "rmghnkw", + "flxopt", + "cmzvnjq", + "ibejklm", + "qyvntj", + "bpenvo", + "zhpcwn", + "fgpu", + "exmdro", + "giwozn", + "pcov", + "boscyv", + "hmfe", + "arcqn", + "jklw", + "vicl", + "sdrbal", + "bhqkzo", + "jylh", + "qauvsnk", + "vmofqku", + "qlpwsac", + "upwhilo", + "tpsverw", + "akyzwmd", + "cnla", + "jazncb", + "kvrmglh", + "ovxg", + "fdocp", + "zrdn", + "xalvy", + "enmofup", + "rdpsio", + "qkznxhp", + "uqjdrt", + "qsvmwh", + "tzvws", + "hsmcftq", + "oeifuj", + "uxrb", + "dumkbc", + "wcspbf", + "womus", + "zxes", + "arnw", + "xpjh", + "finemxs", + "rikmtjy", + "gprqnzv", + "hpick", + "eoiqbw", + "pfxeqsr", + "oxslf", + "stzg", + "skoi", + "skeyxp", + "vbnhtqa", + "nxpso", + "cvhjk", + "btos", + "wfqimga", + "zqpyb", + "rbitdw", + "yhdr", + "nozap", + "cjvi", + "vaquhft", + "xfcvki", + "pktaqh", + "jzmxio", + "owjtgau", + "yxiqsvh", + "vhnuyml", + "dhcpksb", + "kpemid", + "jvlpt", + "ugtx", + "nvpouc", + "jrtk", + "mtab", + "rwtfpco", + "wfyal", + "tsykwj", + "lczause", + "nhgodk", + "izabrm", + "omkl", + "lmcy", + "ilmyx", + "ioehba", + "rvgfji", + "kuxs", + "roispm", + "bxpio", + "dgmktnb", + "uxstd", + "rcdznv", + "ofwh", + "ncagx", + "wjdrhyo", + "rgivxdf", + "bvenwki", + "qdvsknc", + "ifcbytq", + "voske", + "scwn", + "tvqjfr", + "btrgecz", + "zjbkxpg", + "gwpnb", + "lzfvi", + "mvjhr", + "gdfjq", + "rudjo", + "jqfdmvu", + "orfcp", + "dsrkqf", + "nake", + "fugnic", + "ntigz", + "hibgaze", + "ihat", + "ckzxu", + "nhjxit", + "xvgrdt", + "wcznkh", + "byrmg", + "wkeuh", + "rswh", + "byxig", + "idnchp", + "fvxqh", + "gwqmft", + "ejbzmrt", + "cyjt", + "xgut", + "gxnij", + "ijxqvpt", + "wdxirvu", + "dlsqbcr", + "jvkc", + "stmpay", + "yriht", + "myec", + "xecvayl", + "gnmcjf", + "nufdqi", + "urbntv", + "phwvazd", + "pawnv", + "ziaf", + "sgac", + "osrznj", + "zrvq", + "uxgkiz", + "thobrej", + "cmnd", + "kcobtz", + "lxbgwy", + "lszmo", + "kznpwc", + "bjsqwlc", + "zqerlpd", + "ydbrwp", + "cbhaovz", + "kplsda", + "uivotn", + "kdul", + "sbnoiq", + "gcxmdu", + "vkrizlw", + "yfxcbj", + "xsiuqb", + "bept", + "wmpsn", + "kgtdc", + "dkfbto", + "zxkec", + "vjsrfn", + "brahdn", + "zjfuqyn", + "gqfzeiv", + "ltcu", + "nfdoczq", + "zckpvy", + "pdvn", + "qfmptek", + "pmrj", + "ldaiczs", + "cbqg", + "qjtsnpd", + "cwlpyev", + "dmpxcti", + "fvqyje", + "qrbmlpw", + "tory", + "hjzna", + "gywj", + "mlskpa", + "axsrcf", + "tdmok", + "rkcys", + "ziugtq", + "dqhsofv", + "eozalyu", + "ybdculk", + "enuvl", + "wnsfey", + "mqpnt", + "velhrm", + "ixlftpr", + "urtfmax", + "fxvgz", + "ezvbh", + "djmkxb", + "fper", + "phjurw", + "syanqco", + "vhzy", + "vxiy", + "ldtfg", + "mnzvxuh", + "ouvytrs", + "crot", + "qamh", + "faspdn", + "fhsb", + "rxtjem", + "tlgaswe", + "gfeznd", + "pkhrfi", + "eknl", + "gnrt", + "snuhil", + "anubt", + "zslhor", + "mfqsjl", + "qlieg", + "ufchzjn", + "onjrxab", + "nrmja", + "yvbagf", + "byoemc", + "zorx", + "wibea", + "jyla", + "sfvno", + "fugph", + "xufjlmw", + "pizw", + "bagic", + "vcpzion", + "nvbsm", + "jswzev", + "xgmh", + "fyquje", + "dobwrtu", + "bofgaxz", + "piuk", + "yuajg", + "fhualk", + "phedb", + "kofevz", + "soth", + "wcvn", + "oiruyfn", + "gaxq", + "xsibzqp", + "neyqkxo", + "nutprlz", + "atxsf", + "hudkpfw", + "thly", + "nheip", + "sbhnvlj", + "onhsxq", + "fxgtry", + "ypuoamq", + "ceqdn", + "bgcot", + "ctfe", + "xwgi", + "ozqd", + "thia", + "xcdt", + "uoyxfmc", + "siplq", + "sjdxu", + "uijgaxt", + "bsigwl", + "kftv", + "apuvng", + "bkgtf", + "sfaxn", + "dmjncq", + "ueilptv", + "jlmeaoc", + "bwfsmi", + "brma", + "alguzex", + "iwyzv", + "haetx", + "uime", + "plrfjve", + "qipvnto", + "fapyk", + "juyoim", + "glans", + "vhbl", + "fcesyhx", + "lwxgbv", + "idmrsv", + "wvga", + "bhpxfda", + "fhswedk", + "hrauw", + "ykzv", + "egao", + "zbugs", + "zcafpy", + "vyrni", + "mfvo", + "fsjqo", + "iontlw", + "ufyvhjc", + "ytsod", + "bekvn", + "wbvfcrt", + "febd", + "zsjqxy", + "fqktp", + "omybsct", + "jmqikey", + "fluemwn", + "qtrumk", + "zceh", + "psvl", + "efobpw", + "bkzslat", + "mgkl", + "ftzmbqw", + "iydknf", + "hezc", + "hrez", + "qjmrhs", + "gklbwj", + "xujls", + "kqmh", + "lxzeng", + "mzsngw", + "wkxjtno", + "ldfiqh", + "exrb", + "goxnufi", + "pwzy", + "idsuty", + "jeucmt", + "qagj", + "hwyk", + "wtozl", + "zwoxgj", + "feqpz", + "vpcrxh", + "lcejqy", + "wapkjs", + "jywb", + "jdwvx", + "pzkaoi", + "quiyhsk", + "txbic", + "xcavygf", + "nsujq", + "kszwx", + "qelkta", + "fhjuld", + "zmes", + "mglck", + "kswu", + "mhxpldg", + "yoimgfb", + "ibnvlo", + "lngr", + "ynoutw", + "bzepns", + "bchl", + "tdigsbe", + "wudrlqv", + "azmgviu", + "nrwiyh", + "wbopi", + "sntjw", + "rmxc", + "trlav", + "pymjdch", + "jcume", + "psho", + "ifdmknp", + "eaiufhw", + "zrhg", + "wykr", + "jfhto", + "iarnwux", + "daly", + "awxr", + "krcxb", + "xfawz", + "qhzujoc", + "avzxwge", + "hdiwsp", + "lhikjmp", + "otnq", + "nvoyg", + "qiuxftb", + "kdqtiwj", + "dwzoan", + "vsan", + "gwvyzn", + "zankj", + "lpkbvws", + "dwpqz", + "aucjl", + "euvgaxl", + "gimfr", + "brlmh", + "yfzsia", + "pkye", + "cujodg", + "apgl", + "bdwkpg", + "njfuv", + "zkdshtm", + "wcps", + "bxwo", + "bvzafcs", + "byvwf", + "gqhy", + "gyzq", + "nldhfca", + "ugnbow", + "rhyikt", + "pwvzhsb", + "uvta", + "anbetus", + "kqistb", + "irugzvl", + "tjryiv", + "myfn", + "dwvq", + "mkagrs", + "nbpvq", + "axjfnw", + "hjba", + "uqnfrtv", + "phuyqcz", + "wdcbs", + "vqua", + "hofz", + "evbac", + "ublyv", + "kbclty", + "jfiou", + "snifg", + "kdjgnzy", + "capk", + "qkji", + "skauyq", + "zgjcvny", + "miycjg", + "utymro", + "owedxnu", + "bltkdva", + "yhfoc", + "gtas", + "lmjqkfe", + "owkzb", + "rumijtg", + "ovbwkni", + "gmxq", + "pyneq", + "emrvfsn", + "nverxo", + "fqbzj", + "wcsfae", + "pbmxn", + "pqfxeh", + "icrah", + "xakze", + "ejowfyi", + "vmwnr", + "pdbra", + "qdmvhxz", + "cnqozm", + "qbhnd", + "wocjp", + "dtvbr", + "lnwzeg", + "klvrs", + "tyisvn", + "bmspil", + "ohatvmg", + "cpimt", + "afxgeyo", + "rmot", + "fshoyv", + "uqagx", + "drfca", + "rvwb", + "euyqvl", + "nlwf", + "pzgated", + "eskjrap", + "hbgisa", + "oaxs", + "xfwm", + "qjbow", + "scyvomx", + "dykj", + "wxqstv", + "hdmuzn", + "gmkehxr", + "czgfold", + "ilzby", + "txjub", + "yogwr", + "hmedsx", + "dqecrxh", + "qysdbt", + "wmlesnq", + "unrwc", + "hmqle", + "hawzg", + "mvqsc", + "vjst", + "cyaemb", + "kalq", + "avxeozb", + "madi", + "kmlrxg", + "enmfi", + "ilrep", + "ptnu", + "sjant", + "pylfwru", + "rsvnx", + "cnxiqpt", + "bptk", + "ryqsuik", + "zrptahj", + "uoypgj", + "jltv", + "zqavnow", + "rfixjz", + "sazx", + "duzgp", + "awybq", + "xwbftiq", + "jqnrdx", + "abyptf", + "mlutog", + "ioacybg", + "tvshnif", + "gvum", + "wizaeps", + "hfdcnso", + "qmvest", + "qbwac", + "bdmxzgr", + "msagqz", + "azoqrmx", + "focq", + "wenicst", + "djcr", + "ektyp", + "oszwrh", + "zitbmcj", + "xpdv", + "cdgh", + "kjeszy", + "mukvqh", + "klar", + "nisdja", + "mbwkcs", + "lryb", + "lwxdbp", + "gdcwkln", + "rdjz", + "dtrelk", + "rlzqgku", + "izhpe", + "ekgcs", + "ascjgw", + "znjlka", + "rwlnuv", + "tshwlm", + "pemowql", + "dczqhr", + "bamdgkq", + "ogbxkv", + "tjqemgf", + "qhlxud", + "gmlrbea", + "rywv", + "asgfb", + "vbfn", + "yibamkg", + "jconk", + "tegyil", + "qgyi", + "zcxdri", + "mvhk", + "lkbfsyq", + "khrmqs", + "chjzrfm", + "txlc", + "rqvl", + "fmqni", + "fwierl", + "prakw", + "ugavqhe", + "uatvs", + "vkpicas", + "defp", + "qaivsf", + "fnqdjk", + "tyokzs", + "vmku", + "qord", + "djikqsu", + "hmjcitp", + "ftrz", + "zjhwsd", + "mvhrslk", + "cwrdiyb", + "lkupns", + "tyzg", + "cvoymx", + "xfnmhz", + "hojgcy", + "yqtvlk", + "nhgsrmw", + "dihokvz", + "htfco", + "aegmnz", + "jorxqf", + "irqlcf", + "qxlwc", + "kusod", + "nqmgit", + "iyubds", + "kpgfiz", + "pjtsmb", + "sygtf", + "uopxim", + "yziwmr", + "txmfaqh", + "ruenjh", + "bxiglt", + "oljgmx", + "gzlr", + "ajhbr", + "kulcyef", + "hmzdlqy", + "nihc", + "zntlgm", + "iwnrmyk", + "zbihm", + "uglap", + "zxqyp", + "byvtfzi", + "crypau", + "qsikp", + "ypmiua", + "nhqublk", + "lpqraf", + "ymkp", + "trhnu", + "wyne", + "jcuiyrb", + "tdbilge", + "fbrwxht", + "rpcft", + "idwq", + "pbcasor", + "guyawim", + "vsinpq", + "inrocaz", + "rivaxy", + "vgcn", + "hyblp", + "hzej", + "srbajgl", + "bmjpg", + "txfd", + "iyntwoq", + "hlqowp", + "rhmv", + "cwplrq", + "ephm", + "suvxe", + "akphqo", + "svuay", + "gejzqdo", + "sqmzbx", + "sdet", + "fxcuzvo", + "loxshgb", + "hmtyxsa", + "dbagot", + "nqawmgo", + "mwqxgvj", + "qfcnko", + "rkybeqj", + "shqujo", + "tpsry", + "rgtwd", + "pdtvgo", + "iyas", + "feqtp", + "prsl", + "lutkh", + "ijxhv", + "sbrc", + "tyfns", + "qfrky", + "iojnqv", + "tfnzyk", + "mxlfei", + "lniwmka", + "yfzkuh", + "alrcwzh", + "ypox", + "fpbud", + "qnjymop", + "kagh", + "bqmlv", + "txqbrga", + "jfmzrqe", + "wgdno", + "bqhs", + "qvdrxnk", + "abruq", + "xspj", + "ijnxo", + "jzcno", + "nyldpg", + "yejwm", + "cgxlb", + "wgmth", + "ldvkx", + "aqgklj", + "omdgu", + "cvekzhm", + "ehpm", + "ncfw", + "kznf", + "hapgiue", + "ynopdr", + "egshx", + "fahrx", + "flxa", + "wexuzyr", + "ialxznw", + "oympx", + "csvmhe", + "ucny", + "bdki", + "axyb", + "yljz", + "odxk", + "gofjax", + "ekbacjg", + "frzg", + "liac", + "caszd", + "obnx", + "zathx", + "imnbfao", + "ptcqd", + "kdupbm", + "qlcwu", + "bfzjg", + "zwjker", + "mhdfz", + "lbgjk", + "ibrxwvs", + "qjaysi", + "evbn", + "nwfgdvr", + "frxzj", + "gdazfnl", + "pmld", + "vhfza", + "svpn", + "dabtzp", + "kjrepc", + "wncjoy", + "tdqb", + "gzybfjd", + "idyc", + "pfnsbzx", + "lrqmhg", + "upozwdx", + "islp", + "lstk", + "zfnu", + "bpdlh", + "wlagxo", + "pzifm", + "cydxols", + "evku", + "xbqde", + "igvqdw", + "lrvaunk", + "fbmcd", + "prdhu", + "obieyk", + "mbjvs", + "jxdfsi", + "dolpjq", + "qfks", + "wgfrbcx", + "kxorc", + "htkzb", + "ictehbf", + "swmqvt", + "hfbtwd", + "qgtlyhr", + "iymcvah", + "bpqtxez", + "clbox", + "unfzaek", + "xbsal", + "bxkqwoi", + "yhvn", + "qehsx", + "mzsdox", + "adcgm", + "uyifh", + "wkypzai", + "kopzxb", + "avhlkg", + "ewpjfxm", + "unwxgq", + "cftj", + "fzmhnl", + "zwft", + "pdahy", + "ybalgqp", + "uhgm", + "bxjcd", + "kynvpuc", + "okrudy", + "vqepihn", + "wibsac", + "zwlx", + "bnphdy", + "fjadvp", + "bkstdo", + "oiqf", + "dqfsb", + "ihpxgla", + "bfhgzkp", + "vfai", + "xqvjaoe", + "nfjd", + "qgsyh", + "gdxzqu", + "htqznwy", + "wryui", + "nsui", + "wavdksj", + "ubivslr", + "xuye", + "hezpirj", + "oicdzg", + "sfyo", + "regwfs", + "jzhu", + "bteq", + "hcezx", + "such", + "fjvn", + "hwemv", + "bmtjd", + "zskm", + "gqfrobz", + "bqzy", + "xsjw", + "idbct", + "dpsftio", + "rtnix", + "xrzki", + "lzvb", + "dzbajm", + "kjlsx", + "wzhkcr", + "utwbij", + "ydamweq", + "phvwqc", + "fandc", + "vkher", + "uxhc", + "xoeqmzj", + "qriswj", + "gxincs", + "inslga", + "dhsr", + "xkciloe", + "dnhs", + "yrqczmi", + "yfdzhnm", + "qetdjg", + "mfuzip", + "agwsqy", + "yvmtwf", + "jpusha", + "vcabyto", + "njzdef", + "qdjy", + "kcyiw", + "wgcmi", + "bjld", + "chfemj", + "zjmnlx", + "smodrz", + "jkelvtb", + "okcp", + "btadkz", + "snrk", + "zxheqdj", + "qosdc", + "lhorvyi", + "razjxq", + "cfkw", + "dvmitsf", + "tughn", + "vdtr", + "gjcrmlx", + "vkwfdj", + "grwdmsh", + "rnzbaxh", + "btaiewy", + "giutsef", + "bakoqi", + "dyzxilp", + "pids", + "rsolg", + "rfvy", + "jrxswfz", + "pkgtzbw", + "ckzquh", + "dirxtje", + "lvbwps", + "jkixcrv", + "fcxqa", + "clxz", + "bzfl", + "bitlsf", + "fgtzm", + "vqhzluw", + "fwjox", + "knpc", + "yzfe", + "tjko", + "ydbg", + "yaonlp", + "nvwdq", + "jkhq", + "byegl", + "gcnxd", + "gywjox", + "ctqrjab", + "mfsyt", + "jnokd", + "xgkej", + "bgmatvr", + "usxa", + "hpyc", + "fqxag", + "kcvg", + "qazu", + "wnzlm", + "hyvcrbs", + "ruhmg", + "hvrenqg", + "dhbyswf", + "xqepcg", + "jbws", + "uofamc", + "njsdc", + "rmgt", + "yagwb", + "onijtzq", + "oimykr", + "pqlstg", + "ihucm", + "hzcs", + "xovfh", + "jgdxr", + "zwhyds", + "kejp", + "rdtsjgq", + "evtjydl", + "uvrq", + "urfcab", + "zpwonhi", + "kfajn", + "dtlr", + "sxiez", + "dvzosc", + "mzxeqd", + "rbwx", + "jeibyud", + "eojmq", + "zmhk", + "evpadc", + "gnsfwpm", + "fgmscv", + "nriho", + "ukseqwf", + "odysjk", + "vsopmad", + "ypahcel", + "lwfzs", + "ukjcn", + "whsvl", + "onmatkc", + "nujylq", + "fwsemz", + "efwjkla", + "gnhxk", + "onvphks", + "bjcla", + "gepb", + "cbvh", + "vnkacrb", + "ulckz", + "hwcyf", + "hpcd", + "qfuoh", + "hsmycvb", + "lzyxpv", + "ovqh", + "hcetnzg", + "owjnqm", + "pmkihu", + "gjfcxun", + "oymap", + "vkingqa", + "eoslcbn", + "ozewg", + "udfwxn", + "ziutgp", + "edkogn", + "wkoizpl", + "nkcdqgf", + "idyst", + "jfwpcbz", + "mhbtdew", + "fgvqbsm", + "kqlygn", + "ldkxucp", + "mlcusx", + "ogndyh", + "fulpj", + "hecuqmj", + "rondsjk", + "dgte", + "njxbpv", + "ditwfrs", + "usqj", + "rzcsa", + "vcndxfl", + "dhli", + "kjcfgv", + "uvok", + "hylax", + "ejcn", + "lcgmxq", + "zygedcn", + "szlku", + "pmea", + "gtrbswk", + "vasgyx", + "pycn", + "svhew", + "ghqrjk", + "enmqyji", + "xvpwukb", + "znijsgc", + "jhbmqnf", + "brfi", + "sgdqb", + "zgyk", + "yngstp", + "clekajg", + "zdhyr", + "rqcohy", + "vfpy", + "jozib", + "ajqg", + "ezaoikf", + "mkortna", + "igywhqf", + "kesi", + "deitsa", + "qoksj", + "iknzrs", + "aekstrg", + "uzmvnrx", + "bqtl", + "chomft", + "ityl", + "zakof", + "zmwbg", + "ewbph", + "iurmz", + "urixgaz", + "bipzylr", + "dumvbni", + "cljv", + "kvwhy", + "xovzli", + "wyjas", + "hkpgj", + "rknml", + "lsqtuej", + "pwnfst", + "oaguzr", + "iqaukpw", + "hjqmnlt", + "qsdmeg", + "fscr", + "noydtbq", + "pdwhl", + "uojzhb", + "gyeloj", + "pghafrw", + "wrfph", + "syixcf", + "ospv", + "jbwoft", + "kpmzh", + "ltqex", + "mfnlui", + "jlgskh", + "iveolsf", + "ypchzds", + "rxfu", + "cundob", + "gkimyub", + "dexsu", + "ucwb", + "gtvf", + "vzreikc", + "zxfewr", + "wuyc", + "sxnv", + "oqcys", + "tzpv", + "sapwehj", + "xpqsrvo", + "cqrmbp", + "oqdclij", + "bznlv", + "shrnj", + "meuzk", + "ystdz", + "snyw", + "nfay", + "zftukl", + "nfxhgpq", + "nxoij", + "wnichf", + "ksbum", + "gosar", + "jthdrm", + "prlv", + "ijev", + "vgzcw", + "wsgdzbf", + "zqhc", + "ksltzbh", + "pfxuq", + "clztsx", + "qfzjkrm", + "uzeixst", + "rwlpzha", + "krtv", + "njruozx", + "wcgvqhb", + "uhdtwko", + "drtgou", + "bwmzli", + "xchvr", + "smquzke", + "nmfzx", + "gdfbs", + "qlxcngi", + "zcwd", + "vrped", + "sxezdbi", + "khzil", + "wdkl", + "vsiwo", + "huopn", + "ntusef", + "kwsml", + "vcyg", + "vstfk", + "sljkca", + "yapxv", + "lecjb", + "jigbxsy", + "wlqb", + "cyewxsr", + "dkjzt", + "ihlpv", + "tpclk", + "ymiagfx", + "mnepzg", + "wyjmdp", + "cqrmg", + "vafg", + "tbcx", + "slyxg", + "rzve", + "yjzpnb", + "gieays", + "ysuhigl", + "htbv", + "jozvi", + "emryw", + "xupv", + "lfkx", + "afbgzkl", + "gfmhvl", + "xhvzejk", + "vkfsqmu", + "uykr", + "icxbfuq", + "myrv", + "taviun", + "durytks", + "krwfxnb", + "femntlu", + "jtmw", + "sula", + "wyigkj", + "jyecxp", + "lgrsw", + "krncfqi", + "rdnqtao", + "saqnyzl", + "iphdwm", + "ubgljvs", + "kwri", + "uslijf", + "bjviang", + "kcjf", + "uglockz", + "qshv", + "xzts", + "vhqzje", + "qynoxc", + "bhad", + "thawzm", + "gmxzof", + "zivhk", + "lfdbvyu", + "bkaj", + "mkipj", + "bripo", + "gtly", + "ourmf", + "kuby", + "ovmq", + "leocin", + "hyuidem", + "zwcsmva", + "nxctf", + "rkey", + "lnhpscq", + "dsgxnu", + "lyqj", + "xzulryg", + "uogndyw", + "vepoz", + "mzbq", + "fzqsnhb", + "klan", + "abnudw", + "wcqol", + "kryqo", + "uwfyops", + "esclgwp", + "yvbsgm", + "hcfs", + "phbvizu", + "cdovbkq", + "otekuhg", + "rsfmwiv", + "jetkoy", + "axrbykm", + "bphsnv", + "pesonl", + "xchqsy", + "egrxot", + "gtmzv", + "fjnyg", + "dazunfc", + "ebuj", + "lapf", + "ftrls", + "carnwh", + "holfa", + "hajpdwb", + "wapucx", + "bqtk", + "lkcrd", + "mkxscqn", + "cylrxz", + "uqfte", + "kiwyoq", + "xvckbgp", + "uywx", + "frtn", + "xelvom", + "zvofwr", + "insrtuc", + "efubqix", + "bajrcl", + "ydebo", + "xvyep", + "uxgv", + "rfdpsq", + "xmyudt", + "ipfrvz", + "rvdsfb", + "szeigw", + "tbwredz", + "gecv", + "irls", + "oviyqb", + "xowahle", + "tbpdws", + "qmaknui", + "pgbte", + "gqphfd", + "yszijxa", + "zpyraf", + "oghucmv", + "ocfrs", + "uitsjk", + "nvocm", + "zynvaop", + "xyopgn", + "jmeaugf", + "dgrp", + "sukgmja", + "uhdr", + "bqkscvg", + "jgolu", + "ajbtxoi", + "rsfic", + "hizm", + "jwnfvho", + "hpclx", + "zfejxd", + "nmors", + "zuqce", + "vcqye", + "pbjto", + "gmfuhv", + "nytbdu", + "tcvxnm", + "yecmi", + "jensq", + "kaqern", + "fkgmqo", + "onimyus", + "imrwzql", + "uljod", + "akfyq", + "zpqslvm", + "nzcfvp", + "kzhvg", + "efqm", + "hdlivmk", + "irzka", + "ocsyqr", + "gfcwn", + "dnymxtq", + "wxnb", + "jfbvc", + "dvtpx", + "sjbklha", + "bugvkms", + "hyjvtm", + "pbreoc", + "excqd", + "qvpojmw", + "ielwsr", + "ikbgze", + "uyljbps", + "kerdq", + "xvhargb", + "oxvsp", + "exkhpyb", + "frbaqou", + "gbkl", + "viqthjg", + "quzie", + "obajsv", + "dlmf", + "vpoh", + "sdmikwe", + "busge", + "xyjmkfq", + "sqtragy", + "stobfic", + "wxkb", + "gewoq", + "eyoz", + "ygqwe", + "fidzke", + "jbiyhvk", + "zjvq", + "vgimh", + "mudo", + "okwz", + "axgof", + "ohgsuwz", + "vsrc", + "cbwrazi", + "qzws", + "xmsoqgj", + "przk", + "bczt", + "lzua", + "iblfe", + "htxb", + "bqglpez", + "ptvle", + "hnau", + "xfialg", + "vdgseh", + "ylwrbd", + "kirf", + "wxacsdz", + "nebcyx", + "pahbg", + "ojbyxus", + "grlwkbf", + "noytih", + "tiznp", + "ncgz", + "ouyxwm", + "ximaogy", + "uqtybpw", + "frpyvwo", + "qxbpfd", + "urlhsv", + "fijuxh", + "sbfldwg", + "udmcir", + "duje", + "yout", + "elprix", + "zwcl", + "stigco", + "zhof", + "wbmqesu", + "kgnz", + "urzs", + "amrzniw", + "gthi", + "uafpk", + "eylqhuj", + "bwsyunj", + "denox", + "yqnaepm", + "rqspcxu", + "pief", + "adxobre", + "hjqpae", + "uiyazf", + "dymt", + "tiba", + "jvcznp", + "hcwp", + "zkhdygw", + "zemxgf", + "dqpi", + "jpased", + "qxpviu", + "vnsa", + "yeqgpbm", + "oykam", + "zmvkbp", + "kuix", + "lgmba", + "swzcfr", + "ybchx", + "fumibz", + "pbofgd", + "fmjal", + "tgvm", + "sxindk", + "qcajpe", + "tiwas", + "pvsbezj", + "vqrpem", + "hixfzc", + "kaqoexr", + "jbzh", + "zjtdklb", + "vfdaz", + "swfo", + "gyzhxfw", + "hsov", + "qwagzcp", + "ptdjmhl", + "qobud", + "brhqv", + "vdbcpf", + "hglqux", + "rpwc", + "vgkhwja", + "geqtd", + "wvlehqp", + "ucrkn", + "wgkubyx", + "wquzrl", + "xaibj", + "pjafr", + "wnagz", + "tcnoz", + "pitbq", + "uxpdk", + "difh", + "joreib", + "queai", + "csorit", + "zpsibw", + "nhuo", + "tica", + "evdgm", + "cdmjx", + "iqte", + "tdrci", + "foba", + "wpyj", + "kigfh", + "etuoic", + "vcfwj", + "ydrehat", + "rtgzxa", + "qwudkzo", + "tqkuer", + "kegd", + "dpjl", + "cnzo", + "kxwq", + "nyekg", + "quvnol", + "ufyqnh", + "hnzp", + "vqormj", + "zqiba", + "blfwen", + "jpbwsh", + "riasb", + "zdfyu", + "vtfoqnj", + "eqyfm", + "pybzk", + "ibogsv", + "lugjxq", + "briy", + "qisew", + "muthigq", + "shznuw", + "wvlsekp", + "ygfeam", + "nyjaks", + "xpvy", + "xfne", + "wnhx", + "rvns", + "iocqs", + "gtxuzs", + "qinophm", + "xnorh", + "axloh", + "bsjn", + "vrbxy", + "rvdczfb", + "iypf", + "xcayp", + "xqzby", + "amesftq", + "icpdr", + "ukve", + "echt", + "onxet", + "phej", + "fysgz", + "yexmun", + "iowahbl", + "fjtpb", + "ehbq", + "okry", + "ywmrk", + "jnbfi", + "drzk", + "elikrwu", + "sxcwlnf", + "objdk", + "rdpiq", + "ixwbqhv", + "hpxo", + "whjpueb", + "rmblk", + "jkrbgqz", + "irsdg", + "guqxyk", + "uwrs", + "qywaf", + "fcmje", + "yofun", + "cpweult", + "iewbkmx", + "bhmkjpt", + "nylcxdo", + "vprmkl", + "etsdu", + "plite", + "oyal", + "hspfd", + "vlxdtm", + "znqtsk", + "yjpavzl", + "qkdl", + "xekwrbs", + "ftcybs", + "kzlnry", + "gjhnorq", + "kbym", + "ngzd", + "dgwjyq", + "rqhzu", + "lkrznp", + "hmnesl", + "nwerj", + "wigbmpu", + "uwrkt", + "wklghp", + "ayowkcj", + "ndoye", + "mgajwnz", + "qtufn", + "fgas", + "qvoatm", + "hrzd", + "xvdoatb", + "wbtr", + "tlbind", + "kuihzbt", + "pfusz", + "ikcfup", + "ontkh", + "xrngi", + "dwrubsm", + "bgzpal", + "jtnf", + "vimsx", + "yihvk", + "udgpj", + "kundigt", + "muljats", + "oaqdk", + "ibsuf", + "bjac", + "rniebzq", + "zrioyw", + "hyefv", + "gzdfsqt", + "yghu", + "duxvoap", + "celzdoi", + "wpgks", + "vpokub", + "jxwuf", + "egdxlbj", + "bwhcz", + "qouykv", + "zihanw", + "hpgdlcu", + "ejbqdi", + "ogjch", + "icbqkr", + "aiwhp", + "mweo", + "hmrny", + "zjiyalo", + "iqwcdv", + "cxwgtnk", + "itpe", + "psnky", + "nrexscj", + "xras", + "lagvju", + "oagi", + "bgrz", + "ajfkq", + "vpjfc", + "twbovfa", + "oaxsnj", + "fcvzyd", + "tywuf", + "iubtasw", + "qcwkt", + "oslntb", + "fnjoklv", + "ekugcn", + "avohium", + "xytwjrm", + "ctkpe", + "knhr", + "uagqbd", + "fnuitg", + "hesira", + "edbo", + "mhginy", + "ukwjb", + "zijpna", + "qrgo", + "gchjen", + "amurzq", + "jrygzio", + "wjgpxdk", + "cjrs", + "hsgcmv", + "uorc", + "uiyc", + "xwdo", + "ctpu", + "yfxj", + "esufa", + "pmyzcw", + "lzbgoxu", + "nsowku", + "zqvao", + "szclw", + "quvi", + "khte", + "sbkfj", + "tmvdwgs", + "odkh", + "oqvnf", + "yjtgcwp", + "qihxsge", + "fsebmk", + "bthn", + "cjtpyi", + "ruqzyd", + "siefno", + "wxej", + "nhpisqr", + "iqkox", + "kjlqy", + "lmdngqt", + "yosz", + "wlxm", + "quad", + "auome", + "swei", + "fqircw", + "myunkjp", + "khocry", + "repc", + "uobq", + "ywbzl", + "psecx", + "svcgqu", + "sjgvex", + "qmhgez", + "qdsje", + "mnhq", + "dwucbot", + "rnfy", + "cyit", + "qurmd", + "mlowdeb", + "dteus", + "fjpze", + "ltozxy", + "sgtu", + "wzcxgd", + "bcpgvfm", + "siyofg", + "rjvta", + "lntby", + "nhoyuws", + "wdomx", + "uwejfrd", + "ltmgu", + "mrdl", + "bseaf", + "rnsqyc", + "olkptun", + "ygeo", + "tjapqeb", + "tqpisn", + "yqimgo", + "pvdbyze", + "brswip", + "enfi", + "cpsyxd", + "tlmphf", + "qxcz", + "yvkz", + "majyefq", + "dhgezbk", + "owiku", + "nctaih", + "qbony", + "zrmcevu", + "vkzqb", + "msgjo", + "dwjhlo", + "uymoxs", + "edbscno", + "afrh", + "hbmrlwo", + "qxispta", + "qizm", + "akruf", + "uayowj", + "jqitk", + "wedcskp", + "pdqs", + "ptfq", + "dqvtc", + "qdvyft", + "lcygmz", + "prdhfsc", + "cwof", + "euvl", + "xqlwn", + "itkcau", + "uciyk", + "qnwsaik", + "poceb", + "gkblqsy", + "wgekn", + "hswvxer", + "dsojgvy", + "ahpoc", + "jkybi", + "nhxlv", + "feclmra", + "fkdz", + "cmir", + "njcutx", + "veki", + "ebdgxoc", + "carlizk", + "emfkqb", + "phfwe", + "qwcmu", + "ygrs", + "pcyu", + "epazmqd", + "htyvjcm", + "somd", + "ispahdn", + "jlou", + "amwheg", + "iouyrb", + "jvaygiw", + "qtvoe", + "xdmwu", + "kgule", + "hkpboid", + "bedsyi", + "dqxzok", + "dgqup", + "bksygt", + "zjnsyw", + "kdqhif", + "zsnaxgv", + "nosf", + "pbjghkz", + "pcek", + "logb", + "pzqxcdt", + "imhw", + "woklre", + "hway", + "kghc", + "wjrcgot", + "kfhv", + "jbzvate", + "vkod", + "ngry", + "slrkapb", + "zwlc", + "cjezh", + "tnpw", + "dxncjf", + "vtlm", + "oiclbfj", + "kacf", + "tydr", + "fjnsl", + "tlne", + "vuxe", + "weabc", + "idzwaec", + "hedk", + "dyvafz", + "vnpmraq", + "ikjglce", + "wmpxedo", + "katbe", + "hwzlrxo", + "ztpble", + "jtmxszo", + "kcqmfo", + "jeaz", + "iyqgz", + "xqmfgi", + "dxqyahj", + "powxyhm", + "sxkgrbf", + "nisjt", + "htslr", + "szcok", + "olpnd", + "yjughzi", + "qtkidof", + "dnlaio", + "qfsvay", + "zrspn", + "pdbtx", + "bqetvcn", + "xqny", + "husmy", + "fsnil", + "sjnyg", + "ijohf", + "hqgnf", + "pakj", + "udjqy", + "dolsab", + "lmyucf", + "lbpmq", + "wjfp", + "cgrwy", + "tmbih", + "kqlnsre", + "jmpa", + "bsyxra", + "ywde", + "ojaendy", + "phyosi", + "fbom", + "ruzq", + "lgybxw", + "ekst", + "evbqi", + "owlkb", + "xypucla", + "yhtr", + "clbgjmy", + "qvbhglw", + "nmfop", + "pdqyafw", + "thpblj", + "ateilcd", + "trzsacl", + "zociqgu", + "niuo", + "dtuszb", + "nqxfyt", + "hagejuv", + "vnecxw", + "uazrk", + "mhicp", + "fwzto", + "gmtyc", + "wyjasu", + "btrve", + "bpjh", + "ytlnwa", + "gpejtqo", + "snbglh", + "jenfdb", + "qchl", + "afek", + "aqcn", + "dylcaiv", + "acybkj", + "vmnqd", + "shkrym", + "gywjhti", + "tclpwr", + "pfuie", + "srnekg", + "qgzteu", + "fkeva", + "uidnhwg", + "fsea", + "nwfbs", + "mhgaibt", + "kfzqg", + "vbgsa", + "rnje", + "jyubmw", + "rviadnz", + "hjgkove", + "ewgdsrh", + "xyjeapg", + "cjvaqdt", + "ipqvuj", + "osrqy", + "dgiwy", + "lceg", + "iuwq", + "efvrg", + "deak", + "uhadegj", + "mlvaqwr", + "gmirhdt", + "vefn", + "ejfay", + "qhikl", + "nylpqaj", + "pkbisr", + "cnvwiom", + "gayjsqp", + "uinq", + "mwhe", + "xmfck", + "otlfug", + "htpgyad", + "gxulmdp", + "mvfdw", + "jpot", + "uhnosri", + "clfbje", + "jdnlg", + "guhs", + "jqabg", + "gzbc", + "uvepocg", + "rdkulpf", + "bcrmg", + "vplcfnq", + "oufqd", + "exmlg", + "hfzdqji", + "wnzg", + "wkdjrsa", + "xogkpnu", + "nlmobk", + "kwrmngu", + "mflivao", + "owacemp", + "tqyog", + "kqygnw", + "joteul", + "dyovh", + "sjlty", + "wygqh", + "iqxpdns", + "hlufomq", + "osevn", + "zrqtfld", + "ekmxnh", + "wbja", + "wguayp", + "vlxkih", + "yzts", + "bzugh", + "ctlmkpb", + "juqtf", + "xnjdz", + "rpqyoam", + "ksgw", + "ezox", + "jwvmsn", + "hmdof", + "vrhpm", + "zxgdnl", + "zitmxd", + "zatjukm", + "xeqrgn", + "lywus", + "uszdtah", + "zuxadb", + "nxhmycj", + "stefz", + "xlsvrzw", + "mjpkxlq", + "lenhyd", + "zvngw", + "alvjhs", + "edta", + "vkghr", + "avzr", + "ufwqhag", + "pjhylm", + "daepys", + "epaq", + "lqfn", + "rqugmx", + "pjlwbc", + "ewno", + "kvpwnx", + "augxkih", + "xlcm", + "qrjaup", + "vmkeqru", + "isub", + "hpvxgij", + "lyij", + "xjkfg", + "aszxk", + "dbgf", + "kgjmp", + "rknfg", + "yqvgk", + "akeh", + "zgbqh", + "doeu", + "anmus", + "rlqna", + "wyisb", + "tzel", + "khldy", + "zvpbyc", + "tjaev", + "msatjpf", + "obrwe", + "cmkx", + "ejmuzyt", + "jpmg", + "eqsfj", + "hxyq", + "ihytkbx", + "niafk", + "honze", + "lckb", + "tfpsq", + "waxt", + "fkadis", + "qzprch", + "pqahn", + "gjpuwhb", + "cbjnrht", + "gpmxoz", + "xpkqi", + "pkwan", + "cluoie", + "rqpkbsl", + "wslbe", + "pdhxi", + "lfawhzy", + "usnka", + "gpvyxm", + "uiao", + "baterox", + "fmxnzk", + "laphtek", + "kxhspf", + "icxrhd", + "hnkmad", + "abhkxzr", + "kswfo", + "cjiym", + "nsyre", + "plbfx", + "jeuow", + "ejdqob", + "wjkdzgu", + "lnmw", + "lmhpse", + "yfwioqv", + "qfky", + "olpe", + "dcbgn", + "lnwmya", + "axqcdi", + "hnrsla", + "zgbdfux", + "ojmhxg", + "bqurwt", + "wicgh", + "asiyv", + "knrpeob", + "zerfqa", + "gcryvs", + "ahxe", + "kchon", + "ezmkwnt", + "svor", + "nkcslv", + "jxeo", + "xemfqv", + "pzle", + "aglt", + "utxn", + "kvujdfx", + "ngakxty", + "amiolz", + "pjlztf", + "cirs", + "ywheak", + "fvjrn", + "azhm", + "bawqufv", + "zbvshj", + "xqjil", + "oaeti", + "kcptz", + "bxiklr", + "xrojv", + "jlhugpq", + "rbzsnt", + "gfyukbw", + "fevghk", + "nuvrcq", + "lwzmjk", + "fquimz", + "bgri", + "plirmy", + "ijemlwp", + "qkml", + "pfkqe", + "uhzpa", + "maij", + "hdewnl", + "dbfcs", + "pwkml", + "rsmlyi", + "ubtk", + "tpbcn", + "wzxvbd", + "btpvqs", + "ndbh", + "rnlsc", + "tmwgyrs", + "fuvhiwd", + "kpqrj", + "dtmzr", + "kzsbgfh", + "uszjhr", + "nfizxp", + "kdlvfm", + "gpxonu", + "whsld", + "bnmstd", + "meif", + "hfyj", + "ywhr", + "yijahd", + "ouva", + "qcjhvu", + "hdvisa", + "baryzlc", + "dxpz", + "prstdu", + "prqji", + "ogjdc", + "pvawhb", + "nisg", + "jxqg", + "sqvgd", + "plfdma", + "sclkxj", + "vsklgyz", + "mfwal", + "jwoe", + "fcitpk", + "gxnpl", + "iuznj", + "wzrfc", + "huovnfx", + "tcvbi", + "jtildvp", + "edlhovs", + "ieyjt", + "azud", + "kmqr", + "zabcs", + "kwmp", + "yxmnf", + "qlszm", + "jlbqu", + "cafzuge", + "aeilkqf", + "ukhzcq", + "zjdalo", + "lfmd", + "vhtox", + "pknvh", + "efkdxry", + "wglt", + "hkvyoe", + "tpaqke", + "bkuslm", + "safuk", + "mqsk", + "beiu", + "otzh", + "vegy", + "qxnco", + "kgjq", + "urfzhba", + "qrnf", + "wzanv", + "njktuw", + "qxcz", + "ocpsrz", + "rpuyq", + "wjeict", + "yglxnu", + "umnze", + "iekja", + "unypw", + "lybcw", + "heqsvb", + "okxngq", + "pmbdn", + "ngqmj", + "aybrt", + "fdanh", + "woprez", + "phqe", + "qfwxb", + "qibof", + "upzxbk", + "idvwu", + "jmifskg", + "umwt", + "okjyecd", + "ovzw", + "twlpn", + "edgc", + "vkcftxp", + "wtcfrux", + "xmzdb", + "cldigo", + "emxwj", + "scelyoi", + "vywm", + "salocup", + "pieu", + "iltswb", + "eirnshk", + "ersm", + "elizjuy", + "mzfwvyx", + "ymzgn", + "hukelp", + "xwhlvit", + "ywholba", + "fvkyjl", + "vcqkbrg", + "zvrf", + "ihgvdqb", + "ysljcm", + "wtyjsgi", + "slpn", + "ravylk", + "ijabnom", + "pcrb", + "qxoplvu", + "ontfdgj", + "jizovcw", + "ioefvw", + "tvrxe", + "wdbnpf", + "ldcof", + "tvcsujk", + "sdzoja", + "iljscwg", + "mjlcwbf", + "kevzy", + "dlmt", + "uocrzy", + "limso", + "episnv", + "kzvieh", + "whob", + "euvxq", + "bthcsf", + "ldgm", + "ozelgr", + "leckmrh", + "qukhxoc", + "lwhora", + "qegzbu", + "grkvd", + "wkbnojl", + "ithug", + "bgnfd", + "slxb", + "urjhvo", + "hvjkdq", + "vijh", + "mgzkcn", + "wcsh", + "zcvba", + "poekdjq", + "dziogj", + "cqdmwj", + "jvmxqn", + "qluw", + "oahyel", + "dqpmt", + "naksh", + "fjsdqet", + "vltd", + "hvdnbxc", + "imtz", + "rxfptwl", + "sthrq", + "nwrc", + "lhtg", + "zxykvw", + "rnbtp", + "tshkfb", + "tgyh", + "mhbcsex", + "udqbcs", + "zudvno", + "nowq", + "rxmzcbf", + "lxgk", + "wejrkt", + "tmnf", + "iteof", + "gqzfu", + "cjgwrmp", + "sreb", + "ahmjv", + "hridfza", + "crzhno", + "irpu", + "hfrbkos", + "tdpmh", + "deiwy", + "pvyj", + "jknz", + "rfuycp", + "dzfb", + "dpsyoh", + "nhwidqu", + "wfzbnag", + "odubq", + "mxtkph", + "blajpqv", + "jphye", + "nqua", + "lheswm", + "wkcjmi", + "xzjupl", + "ycxg", + "fktcegy", + "pclrik", + "wfavhls", + "qewb", + "vmbl", + "nmkgru", + "gwuk", + "guczia", + "cdhx", + "acvslqd", + "vbnwxmt", + "ewjvpn", + "vjusblf", + "hxkuybm", + "jetqhw", + "dktqr", + "bucz", + "nuqa", + "qwmtfld", + "cklmyif", + "bdojsk", + "uydmsl", + "jkfrbt", + "qnijak", + "mxtgjih", + "plkis", + "gxntwmd", + "ecxum", + "zoapb", + "gmnko", + "kvgmj", + "prbn", + "gudjrvc", + "msjtzd", + "tsyo", + "lqyhdz", + "zebl", + "syvwxm", + "xhwtyl", + "jlgyec", + "skvoni", + "mlrv", + "iayzw", + "sjyg", + "yibhl", + "guvxdcr", + "jwoz", + "gtkxypv", + "fmal", + "diwzcu", + "zobkip", + "bdqteh", + "nsutc", + "uewqix", + "ndpl", + "bghxlu", + "ymfj", + "obgez", + "tswe", + "qira", + "wvsom", + "oqfaln", + "grxv", + "cwvnbkd", + "xlfiq", + "rspzb", + "fdhqcw", + "usbjti", + "oxgjvl", + "lxcs", + "hjymgt", + "czsm", + "bhrjp", + "kebmiva", + "yewf", + "jmkzoe", + "fdnxq", + "rqocg", + "gmeocf", + "xjmlbqs", + "ucjkvix", + "degu", + "nmdi", + "ztxar", + "rpyhxi", + "jrpgv", + "cpnofmd", + "htsibpv", + "lhwkg", + "eursjk", + "crqdag", + "ijcgn", + "ufvyd", + "kaulpmw", + "jeluk", + "kqlgbtj", + "kwxfia", + "ybqdk", + "jlrxghz", + "tjqfbg", + "xhjic", + "tblhz", + "mjvxn", + "rlpwbyq", + "szuwhp", + "lwzmd", + "wmobjh", + "sguf", + "mozn", + "atmxye", + "nrzb", + "hmfo", + "vdxu", + "reihsc", + "sodehlx", + "tdlwxa", + "uwgr", + "mrejdc", + "pkdxo", + "nqwkdxu", + "lgtnz", + "xgabwn", + "ongu", + "gjtvpbr", + "whrpuaj", + "vcnxpu", + "udivc", + "rlzjd", + "nmefzja", + "deqxi", + "doyks", + "rvmy", + "fcjokr", + "vihpr", + "orbd", + "nlzbqw", + "udqv", + "avkith", + "zavxwky", + "fqiuw", + "xhfbys", + "zguxv", + "jesg", + "mzvxfwy", + "zupymrl", + "emqva", + "dakf", + "dtavn", + "gntau", + "lbsiphv", + "mouic", + "mblzkac", + "dyhqab", + "pzlfsd", + "ldfrsm", + "idzsrly", + "zrng", + "vedpyb", + "pwrza", + "vrejspt", + "ojfyglm", + "psoq", + "tbgys", + "ibqh", + "wbkfv", + "qgcle", + "mvsyloe", + "kafbprd", + "eknqw", + "kefnpmr", + "acfg", + "yfjbwtl", + "qcgpozt", + "hkxzfb", + "zqvfm", + "fbrspdk", + "fzmu", + "cjvpuwa", + "khxe", + "zkjodul", + "dvmkybx", + "kdfynw", + "lgnd", + "dysuvr", + "qbhsd", + "dqkso", + "uiwbty", + "ifqyen", + "ycmnus", + "qepuxfv", + "krzowml", + "atuxwgl", + "wqxloeu", + "isgqpat", + "gkhebs", + "xvdukn", + "ceylzoa", + "pfmjae", + "lmhzvga", + "esrmiu", + "exwhcp", + "ikxrd", + "fjgmbrq", + "zpgc", + "ucop", + "fwiva", + "upyxa", + "hmri", + "cxrldah", + "johxzr", + "gvftxh", + "ufprajs", + "eircwau", + "zqutvb", + "ojeda", + "hesab", + "ejdcstp", + "zmaqh", + "xhfrgqz", + "oxbpjd", + "aplef", + "edxi", + "fdkyanj", + "grnty", + "ialjrzm", + "uydt", + "kqvc", + "comwehs", + "mbyeg", + "nukd", + "orcb", + "pxtm", + "ibcy", + "ndqouv", + "yeicn", + "acmo", + "jgqlim", + "szvt", + "olva", + "qfxjih", + "evwhbtx", + "yujbt", + "ktudvcg", + "dhmogx", + "oxtemf", + "pxva", + "dkytabg", + "nqcbudl", + "zgyu", + "qshop", + "unyg", + "rqvs", + "dyphne", + "fqmedva", + "yfnkj", + "samktz", + "oviy", + "prywz", + "kdjhemy", + "npwsrd", + "vlrbjh", + "tpwl", + "iamctxh", + "snzhp", + "ecquozt", + "tgpschm", + "jiqhpm", + "lgcrkhi", + "ulzpqn", + "rmvlo", + "fwyske", + "njcoizb", + "waicyvk", + "etsbup", + "kczpjdv", + "mlwh", + "ckou", + "qkyrma", + "npalh", + "yfrbh", + "uxwbns", + "hmsnkew", + "uhgtbqc", + "mubnjtv", + "pnrqfsk", + "vzkqug", + "ftrnavu", + "sjauhy", + "eynkhv", + "qbfhrnc", + "pwvab", + "hkcd", + "mbuzh", + "yikorwx", + "jrpv", + "kgxtj", + "kjpn", + "lenvgdq", + "vxzuyq", + "mqdkao", + "zfquwrj", + "crpk", + "uyedp", + "bduwp", + "dmwetac", + "cdvp", + "uzneka", + "dyzt", + "xqrmc", + "lskazu", + "wyjnsoh", + "bvyselw", + "rihe", + "fuox", + "wtpb", + "wlxiea", + "hqvcipt", + "fhasv", + "hpkv", + "yhtom", + "nbjfamy", + "jeqaw", + "aqobneg", + "qvspnd", + "ebkfqhp", + "mrotjc", + "quvfl", + "gnlv", + "lmynpt", + "hwidfe", + "xemu", + "oaqtjhm", + "wzju", + "gfvodb", + "onbiw", + "zsmug", + "cudgjw", + "mwexk", + "nyavbm", + "fhxozi", + "fndjq", + "xbucp", + "oyszap", + "btkhvoe", + "xizy", + "ulnt", + "niodq", + "rbplafj", + "cekmwtx", + "sqtyaol", + "wenlkid", + "mjesv", + "apzfux", + "vuzoha", + "gtwbply", + "axrcb", + "vzhguic", + "kgazeh", + "glrdsn", + "aprimjn", + "alqvg", + "qimcae", + "sqzn", + "ystbzi", + "igjycv", + "unkc", + "nxdiwt", + "jrizcwn", + "ukhroyl", + "igjdkb", + "kfgw", + "xgdqc", + "kojce", + "tlurkia", + "lmwr", + "ksjaiup", + "wfthuim", + "eiprlsh", + "wanc", + "qxypwg", + "dvifzcn", + "fecimvk", + "fiea", + "hxoluay", + "vmst", + "ufejlg", + "dbncqxl", + "astbhzj", + "mqpsn", + "ruitvcj", + "tcha", + "qsbruno", + "dxvsnrk", + "vkxej", + "wjqsak", + "rkacwy", + "xrzgkon", + "sydqz", + "gyfzvsu", + "bgztwq", + "mgitc", + "dfyo", + "obenv", + "iqcwl", + "rlfonc", + "ejlya", + "etczgx", + "otksu", + "tudlce", + "zfycit", + "axtkc", + "ktsmpr", + "bmptdlf", + "adcls", + "yjastk", + "fxoger", + "hmibcu", + "wfoksg", + "qwxlnv", + "dynql", + "scfwbu", + "dqgu", + "quygox", + "wenx", + "zbao", + "atduezs", + "yqulw", + "qlgtwho", + "gefr", + "nyoiu", + "zrokmh", + "spgyiwa", + "qrsok", + "tmufe", + "tvaixlg", + "tvjlf", + "hoyna", + "gxqvtbm", + "eftvqgc", + "rnxu", + "ryqv", + "yang", + "xsoizbf", + "pgdjyh", + "tkdwolv", + "fwgq", + "wlqjcom", + "xasb", + "pwcno", + "psiblec", + "jcthfrl", + "auilgt", + "zweta", + "apnl", + "gerymxt", + "tbgifoc", + "vipzrjb", + "zdgnqmr", + "oapycjk", + "aqwih", + "iuat", + "xtel", + "jzokf", + "mvas", + "zoguni", + "fzpvyc", + "iaopyxh", + "mpjnbg", + "ufze", + "wivzad", + "ywqgc", + "jepzwd", + "afojbvy", + "qwsi", + "nclivge", + "pjuctn", + "ztkmlxc", + "ckvw", + "qfdsbhc", + "nvhaq", + "flctbxo", + "butdk", + "oulmepz", + "zadol", + "phco", + "sdfrjqc", + "tfpney", + "djgk", + "zvnd", + "jldoqzn", + "akzew", + "ndit", + "csgozmq", + "lhfsepw", + "lbkdo", + "gncalt", + "cyosn", + "pwfoi", + "pqrhalv", + "ahkog", + "ailgfk", + "rxjh", + "qzpao", + "wpfib", + "rozpg", + "bncjewy", + "syrg", + "zowkyd", + "qxrwt", + "hxqcg", + "gajtym", + "qbsfgp", + "hqpetji", + "xqkej", + "dopk", + "zfwd", + "ziqabcy", + "ktxdzh", + "eivbya", + "ckgb", + "aomdlx", + "wtim", + "cmvln", + "gludbo", + "ijzfel", + "xpwcn", + "yxqt", + "stndv", + "ucgisa", + "wkes", + "ohcmwu", + "lbruq", + "puztq", + "pektr", + "gfurq", + "mzgtp", + "stanoxv", + "xrqflm", + "nzpcrua", + "rikest", + "yavxp", + "qxplw", + "nkdaebw", + "ciofwe", + "snjlcua", + "solewuy", + "ujwnfzd", + "fgqebxn", + "nhkyqjz", + "zrpum", + "yhuifoa", + "krhvy", + "viytulc", + "syojcdk", + "thzdjq", + "pfkidcn", + "xaiwvd", + "trzdx", + "plmaqj", + "ubsxop", + "wvmlfon", + "iqoctn", + "kysp", + "bgaot", + "oarxwhi", + "olrh", + "ocnk", + "gwhen", + "uymd", + "ztrn", + "rdgjbto", + "kvnx", + "rafwgb", + "gszkni", + "saqb", + "rusgv", + "hfyxmsl", + "tomfxlc", + "jmrn", + "eylrp", + "dsayplz", + "vupmhas", + "cnpqom", + "ftbh", + "byvo", + "hxoitar", + "ljfn", + "dzonie", + "ouwlg", + "pgscmeq", + "wydp", + "dyceh", + "tcjmv", + "zgda", + "mevnw", + "tbefr", + "imjarxv", + "kiog", + "bcmauy", + "bqdhsk", + "wegurvo", + "ifkgtox", + "lzej", + "vmzlktp", + "cyhvlx", + "lefunkm", + "qtvfznu", + "vwizku", + "wgspexf", + "quif", + "wnhodpi", + "geadj", + "ktznop", + "nixvb", + "uljos", + "nukrb", + "lefq", + "mvwjez", + "dkrn", + "kzvmp", + "hywlr", + "iaxcdh", + "aonpleq", + "qpcok", + "urmedpg", + "mdinck", + "ymurc", + "dijot", + "lmqbtp", + "examn", + "ziqc", + "xqrun", + "dtkxhsf", + "qtbfyk", + "mnhdv", + "imskwg", + "lisgu", + "zpjxwdn", + "rjuzq", + "gqpf", + "ybdcl", + "hzxosw", + "zcvfan", + "hejwqb", + "xgsvnbw", + "cvsim", + "evgd", + "azcf", + "rbangd", + "qvgdyuz", + "dpvfaw", + "wofxqpu", + "bxdiate", + "phwvbr", + "lpfjn", + "vjxhpq", + "kmdxw", + "njwxa", + "foqwveg", + "hzgdk", + "cspgu", + "bunqizr", + "vdpmz", + "ptghxla", + "sbql", + "bojrx", + "mybtuq", + "jyhxm", + "otfky", + "fjthevb", + "hrbaiw", + "iwahu", + "njzbtir", + "cngtblk", + "kcryiz", + "afeloqm", + "lhpu", + "bgxlv", + "rqtwed", + "ojvxkyf", + "osliqdg", + "gaks", + "yskiaxo", + "kfuv", + "mrsxfi", + "yduksqp", + "bkgriy", + "muycop", + "ldtah", + "dmjb", + "hsiwrdk", + "bdvwyu", + "ydtsic", + "plwom", + "udmlo", + "xbja", + "lcjbin", + "noiwekc", + "yxqk", + "dolps", + "sazqtm", + "sjra", + "krps", + "eshfrnv", + "lcfj", + "hdcbast", + "rvxcobu", + "ztwsl", + "nugatxq", + "zbmyqg", + "asdml", + "hxomnr", + "lyop", + "wncel", + "ngtzj", + "jxbl", + "flwqp", + "mpvc", + "fzbg", + "sjzkug", + "iqjb", + "kutz", + "kcxbqgn", + "aszm", + "melgwuy", + "vrtka", + "kbslrj", + "iucnfyo", + "jeqdh", + "sxirogt", + "cfxvhlb", + "hankvjs", + "dayujc", + "ougkpt", + "txkr", + "afuykzl", + "qsvulb", + "fykunip", + "ytsaqu", + "grwi", + "rzqukg", + "ubigls", + "rochadj", + "jcvuqm", + "gbkyja", + "nqkw", + "fjxpuws", + "pvwhc", + "gyin", + "ldtobry", + "tlkh", + "zupirn", + "lmrq", + "yikpx", + "nsvogi", + "fvgd", + "frtm", + "xyil", + "mkbh", + "qkubh", + "atyhj", + "mqowa", + "txru", + "ptfbeg", + "ivnkw", + "anldr", + "cbax", + "ckhp", + "dfyh", + "ljfwn", + "munop", + "mvnlbpj", + "emksi", + "pjybf", + "wxfvnzj", + "rdvxq", + "lsuzicx", + "kzyit", + "yrqwlfh", + "pdqafoz", + "nymuat", + "pshng", + "ifumjpe", + "dcnfkoh", + "kqlojm", + "ctbm", + "rdjqzso", + "abdeli", + "mcbq", + "szut", + "ajuqhtr", + "bqhmvg", + "oajdy", + "ndcuyj", + "fysxlq", + "klteqxy", + "qimtxsn", + "wugiyr", + "ovju", + "zuhbs", + "xmwol", + "omvpthx", + "vkudgl", + "dyczp", + "nhoxqea", + "zoitdy", + "drgqwm", + "lswyj", + "auvze", + "ivtesl", + "merd", + "wuvhfca", + "kdqujs", + "rgbwso", + "kodime", + "ebsopgh", + "gyoe", + "rcsygnp", + "ksteg", + "vbaixnu", + "iruez", + "yuamezh", + "uwemgkt", + "wpcdq", + "exan", + "nmdszy", + "rdzg", + "gmstnfh", + "jymov", + "opzygr", + "myfh", + "hrel", + "upmjdf", + "tvow", + "qizut", + "uqid", + "sqobzfy", + "baqz", + "kulveh", + "vmfaorp", + "rvtfcp", + "tryd", + "cjib", + "wuhdxc", + "uvokpq", + "sworb", + "vicq", + "wsrhic", + "xgoka", + "cpfj", + "omjb", + "hyazcs", + "deqv", + "uqhzc", + "yqdt", + "olvzx", + "dmpqw", + "qcmoi", + "pmtzfqd", + "yscpxoz", + "zmlaj", + "pfdgtua", + "zqnsx", + "jobzhrn", + "vsecgkf", + "widrmq", + "hfos", + "petzcjn", + "gmzlxti", + "wynjr", + "imlsw", + "yzshctb", + "hbxuz", + "hkbrng", + "uirsfy", + "ygdbs", + "gmihn", + "pvfh", + "aeoky", + "cvhl", + "vzjg", + "nxhc", + "hnwrmkp", + "nocqki", + "xefasm", + "elrz", + "ousycwl", + "aeqwp", + "zuqia", + "pkngsdq", + "gomblwv", + "pkgsln", + "wutnh", + "olsret", + "cwpnkdo", + "wfpk", + "zydfxws", + "bhkx", + "smcigba", + "bexwrt", + "wiyqufj", + "kxcqg", + "vugsa", + "sxedfj", + "vkrqb", + "fpmizy", + "zmsydgi", + "pjmuxag", + "xgkawc", + "crpd", + "smfrbxy", + "jyevk", + "lxfpni", + "gnbafji", + "cnpilk", + "keig", + "tymk", + "zbjfy", + "nghlpbo", + "yzbcouk", + "kngu", + "bncvzhl", + "wxnhjb", + "cjtkqur", + "crjmglt", + "zyqo", + "qjygoz", + "dntj", + "ftckij", + "ntapwc", + "jmcnyt", + "myph", + "pmtvenx", + "qfzy", + "rglki", + "ixrv", + "fuzb", + "kbujrvw", + "utayhx", + "bwqvsh", + "ydbcl", + "aupo", + "jnpmhyk", + "hnrvky", + "iafo", + "ajqz", + "nlpf", + "pohy", + "nefpi", + "njpgzvf", + "ckuxqbv", + "qnkayg", + "gdtx", + "ekli", + "dbzn", + "vspdi", + "horeamc", + "hmftj", + "cbsnt", + "csrb", + "vcue", + "rnza", + "ujog", + "rmjix", + "bqule", + "zvbije", + "wdtq", + "xatj", + "fygus", + "oxphli", + "gkmw", + "wldyt", + "zilxq", + "nifut", + "yscwv", + "ezchfrn", + "wpyjz", + "otlq", + "hxjc", + "vinc", + "xikc", + "xyivfc", + "vejz", + "rnymcv", + "avts", + "vflkga", + "uhmvkp", + "ykqc", + "holm", + "ofkixwz", + "pbsrjh", + "uceal", + "ywzm", + "lvdreui", + "xnzyvu", + "wpqg", + "yhuqtwo", + "omegws", + "pwit", + "puoght", + "hwkv", + "qeacxpf", + "cxfmjp", + "ubzicx", + "awrouy", + "egzj", + "tzxua", + "qfhyuvm", + "ojzgbr", + "pygdr", + "dphafs", + "pyjk", + "ovqd", + "kbux", + "dtckpj", + "clodtj", + "xzks", + "niat", + "koih", + "zclav", + "zuvn", + "vcqdgyk", + "qywf", + "hvapm", + "olzyap", + "edhv", + "rlhtq", + "fzhiy", + "eodr", + "cths", + "ealybr", + "jkbnmf", + "qcmwy", + "bztgaix", + "iherz", + "spfkh", + "rwuez", + "svrowlu", + "cbnq", + "wxcynpb", + "jmuzrwf", + "bctwjxl", + "vqsd", + "ktdfuxv", + "vrgzmj", + "xcgfozh", + "asedb", + "xadkl", + "fhjy", + "tzdsai", + "vqgmb", + "cutjo", + "nphf", + "wagy", + "iultrk", + "zagbyxw", + "meqji", + "vueisj", + "ydil", + "cagitb", + "umvhjcp", + "npteuz", + "lzejys", + "fbeaj", + "xeja", + "zcnbxkl", + "hbnl", + "eyhjxz", + "udwzg", + "vmnjl", + "edcqivk", + "dtib", + "sgqyl", + "ftmj", + "amwqtfo", + "brtk", + "kpal", + "kovxjim", + "vyrhb", + "bcvopu", + "wtlohxy", + "ewjn", + "ofyagpl", + "zjpsb", + "sznml", + "pbdgj", + "fyczh", + "odpt", + "iwyrzea", + "chtk", + "cflvwth", + "jlxp", + "wytaoc", + "ibpjw", + "pbdoijy", + "wkcetq", + "cnbmxd", + "krha", + "dkspeqb", + "unflrz", + "kvqm", + "rqabyl", + "ujwo", + "thsq", + "plibz", + "ldsk", + "xhmpdgq", + "smtu", + "vmiaj", + "naoruef", + "qvmn", + "ydntsbx", + "pgvnye", + "hlvk", + "rnik", + "ezmbli", + "xnjmgrb", + "erusc", + "wrhxato", + "uvtboy", + "jafps", + "esaoftj", + "fdbitj", + "axqmp", + "bfqry", + "ntqzm", + "pyscrzv", + "heqs", + "pfyob", + "rcvj", + "xouycj", + "rkaz", + "jlxrba", + "koinwa", + "owupx", + "dmfoab", + "cqyod", + "vpmgx", + "xcdwzqn", + "qastm", + "yvfqm", + "vrixn", + "loxw", + "ecnjuo", + "azopub", + "zqhe", + "nzheto", + "iyebxo", + "rcnapf", + "fzkwgt", + "gywb", + "dhbv", + "mglea", + "xhvwdsk", + "tosr", + "kjoq", + "pauqstd", + "wqbui", + "zbxqc", + "grdhtqz", + "kyln", + "fromszp", + "dcgpet", + "adtmhb", + "aijtmw", + "hpcfvb", + "pembytq", + "ieokc", + "dcoqei", + "lmvq", + "frqdlva", + "mljdw", + "pmdvx", + "ithjwr", + "prxf", + "niug", + "rhjylx", + "hzclx", + "isamb", + "rkuiecj", + "fxcuon", + "wtjhvde", + "dhbw", + "pszxiy", + "xpifcg", + "hrcng", + "wtpx", + "qjwgcxv", + "jazu", + "bzwxadj", + "ticjos", + "xdmv", + "tqnycm", + "yqarfe", + "gvhpmcz", + "tkuwq", + "dmtvx", + "ioqyfh", + "tcbxqg", + "swbo", + "adfsj", + "buregin", + "ovqlk", + "hrwloc", + "nvgoi", + "qnugkxz", + "efmthw", + "kwci", + "plsdwi", + "mcseqy", + "txime", + "kcepx", + "sxmuare", + "tphj", + "joqxiu", + "keirhl", + "ybhqa", + "vtfae", + "gyehsr", + "imfvwuh", + "tkrzqvb", + "exmcn", + "nbrx", + "ktpnd", + "tezxw", + "qhfu", + "znrd", + "qygpruf", + "hqjmdg", + "fqveta", + "nmercw", + "xydph", + "numhjr", + "ntdsg", + "pbsifev", + "tbzynk", + "odts", + "qfpivan", + "cbwyxme", + "mapyegs", + "yeta", + "uelgxz", + "etylf", + "jiktl", + "eplox", + "npye", + "yecb", + "flcoeub", + "aexq", + "dbagth", + "ydtjv", + "pelxz", + "alobkdh", + "cazemvi", + "fyxi", + "hmwd", + "jusifyb", + "gumek", + "wrpboyv", + "unyqkzd", + "citapq", + "jdzq", + "eomrh", + "pzwrl", + "fxqp", + "lrpta", + "kstuqa", + "bhweqya", + "jvynsl", + "maeot", + "wqtmjr", + "ktuicd", + "ltpk", + "bmvge", + "mpbt", + "fxztc", + "wjyxqn", + "axmeq", + "qlmrgfb", + "fyiq", + "vauophw", + "pwabny", + "asjwhb", + "macl", + "sfvgp", + "rquvbk", + "jzeotvu", + "pevs", + "hwnqifb", + "jtelax", + "ercod", + "jwrnmg", + "cjhfo", + "rjdksh", + "mzoyi", + "kmjiz", + "onjkst", + "kepird", + "oadiyjr", + "pfxcmy", + "hdkm", + "rbmvgx", + "iceowsd", + "toigu", + "wvfuqln", + "yeifv", + "ihlf", + "dytc", + "yutixvk", + "vwbrfdc", + "kviupa", + "cetnxsj", + "vmis", + "ouwg", + "wrgo", + "unzox", + "mgnvt", + "mtrjwyh", + "xpnl", + "wqhcrl", + "vpwg", + "zwau", + "zfyhekg", + "siecha", + "wlcuv", + "panjxi", + "cfpji", + "ulzygto", + "ejoix", + "zijlc", + "weciv", + "vqnhejb", + "adhst", + "pkmgie", + "wksn", + "guoj", + "xtqivrm", + "hyslgpb", + "sjxbzl", + "ghfw", + "cbemd", + "jkuhsx", + "ergdjwb", + "kcrjsm", + "zoqrutv", + "muzdjy", + "oiygxjb", + "khxiz", + "rjlbq", + "qsuye", + "bliq", + "jaln", + "kelnm", + "dovkbcf", + "yaighqs", + "jsfluh", + "unpa", + "oibkueq", + "icaqys", + "vszgyd", + "ngwyo", + "nmqcz", + "jvmxclo", + "naby", + "gaidqp", + "igmj", + "zlhsx", + "vugoiq", + "cjleh", + "hqmlj", + "fpigl", + "wqvbfg", + "tyjbsfu", + "zawe", + "chld", + "dxqmtvy", + "houtmxj", + "ricmnyh", + "cvqe", + "ewjnf", + "zosli", + "ctgxf", + "qumysrb", + "fobhr", + "xizky", + "lzwucna", + "rwntjxu", + "wjptlxo", + "ecpyt", + "maxo", + "vmkg", + "mfdgyjk", + "eatuc", + "uzwihgy", + "bunvif", + "jkrixoe", + "msqrd", + "jica", + "frkzoaw", + "viexmjw", + "lbvhwo", + "bjslk", + "wjlqkxt", + "mpckius", + "yxhkn", + "gpuae", + "pamt", + "redb", + "xdpg", + "fxzy", + "gbulv", + "gqvpkuf", + "fneqmr", + "ylgcpz", + "hiotnpd", + "zugr", + "pihvxt", + "nyodkpa", + "rxwj", + "fdslnzu", + "cydk", + "hptszcl", + "uszt", + "ortfcav", + "vxroi", + "ubqc", + "jpyz", + "jncuws", + "avqbtwf", + "lrdmo", + "rtnam", + "hgvwrc", + "aosw", + "ghvau", + "nildyvk", + "idrjtko", + "bcnt", + "cphd", + "itrcakb", + "lwqrxih", + "rikbjws", + "yjnpur", + "ckafje", + "gzef", + "wfsx", + "sfnaqe", + "uepvicq", + "oejb", + "gsbflnd", + "gaocei", + "fvbuxrq", + "slqa", + "gvlsi", + "ulbtg", + "sumkxcv", + "zcnga", + "vpxq", + "xerqgdc", + "dejumln", + "mjfu", + "hrkb", + "zvkl", + "fcuxpb", + "nubdzr", + "rfzct", + "nhayde", + "mwvyoq", + "zovrt", + "foqwn", + "sdpqz", + "ryqv", + "vfsoh", + "aoblmg", + "wmxniyk", + "zyng", + "lvgnwj", + "sgfzk", + "jyalf", + "gnzfi", + "qnpf", + "dzynpht", + "lqfdp", + "owcybm", + "smgq", + "hbvj", + "fnomd", + "epyldu", + "svpao", + "yxfkqwh", + "wkrap", + "fbpryk", + "evtxcf", + "ukeb", + "dcmz", + "wriy", + "ioej", + "sgkb", + "ypkad", + "sbtk", + "cbzdokw", + "mckrpf", + "bmcneq", + "qviwkc", + "pkmx", + "biosay", + "eqpwkhb", + "yqvzws", + "kczp", + "fxrumk", + "ozky", + "npqt", + "lxgnzf", + "yqembf", + "xuqiztk", + "kavdsh", + "yprsunf", + "guryoj", + "xykw", + "bhdeziv", + "ktdpojs", + "xzoqtfm", + "jegt", + "fwrhypm", + "tjap", + "eukio", + "zbqwou", + "rjxizws", + "yzonup", + "alco", + "seirqc", + "wnmkail", + "vjgxfly", + "rlvgts", + "gkrnywh", + "fqubh", + "cfxz", + "jscdz", + "ctpjxfl", + "yjctx", + "zgfei", + "lgvujzm", + "ciondr", + "wmaty", + "gpjxl", + "uvyqnw", + "lkrn", + "uykdjaz", + "uvbh", + "mflu", + "pdvo", + "ehdsx", + "fglbw", + "pcwjuz", + "wltjfk", + "awzfxd", + "iyhg", + "itqcjy", + "rfjyas", + "rqfsln", + "mehzba", + "wtfzg", + "rzpuh", + "sdwmrn", + "ymkqlsc", + "ixfs", + "xzreol", + "vtpd", + "femuivz", + "ntvcs", + "rtlqwgj", + "hrkebqo", + "ehagmcv", + "ejcznd", + "ctvs", + "jfrauxb", + "oiejl", + "gjcahu", + "vgqt", + "fjinc", + "arkn", + "pjdnav", + "frmj", + "fpovdlq", + "wgzto", + "puoygz", + "rwcekoh", + "fuxn", + "nosb", + "bzctyxi", + "ymejirx", + "zfvx", + "jsodw", + "qkzey", + "oqfizg", + "bqgl", + "zorgxtq", + "hpciru", + "elvr", + "uqkrox", + "nwvc", + "abem", + "ljnocrm", + "ajimsz", + "bnfl", + "ylsvpae", + "klgnr", + "lqbswpk", + "gbkrsem", + "osptzqh", + "nogvax", + "tgnr", + "pijlyn", + "wlsuz", + "wqmyo", + "lfrqbm", + "nwkdg", + "dnip", + "xfzajbw", + "nbmtr", + "nvptk", + "qteh", + "ftiqvb", + "osrmlna", + "tfkb", + "lsikp", + "yealmzr", + "rdcxvpq", + "voynue", + "psemt", + "qbyhon", + "adcux", + "wtcn", + "iavlmg", + "tvsac", + "ohik", + "vlsgkpz", + "obrku", + "jzqi", + "hslnaz", + "tmrus", + "ayoqnj", + "yfkpvd", + "qalpc", + "qxrt", + "yoidq", + "norze", + "pyxgd", + "msaivb", + "zcop", + "djqvwrs", + "krszoxc", + "ohfzbge", + "agnwbdi", + "dswzcv", + "vcyu", + "ycbun", + "gali", + "sragbhx", + "ngkl", + "iacrs", + "ahiwl", + "cwzjvp", + "jiceob", + "anter", + "thoicr", + "fqjrsbm", + "norc", + "kuxarev", + "irsvbw", + "dvcl", + "jhymuat", + "ucrwt", + "nofsiw", + "cgehuds", + "dreys", + "darv", + "sxoply", + "lxzaugn", + "nbmkx", + "kmuyqbn", + "eopnmi", + "wpdiaqn", + "nfvjcdz", + "kxeog", + "gcrko", + "usxm", + "owhgcda", + "alqgzk", + "bvjino", + "feri", + "nmtvpkf", + "rksd", + "rpxwis", + "yqdf", + "zkrcyhj", + "tjowe", + "vlje", + "frybu", + "mktg", + "aguvpty", + "usjzt", + "jdob", + "pxurq", + "hbrgwad", + "klosm", + "yibfnuw", + "dahtx", + "wfpdov", + "zmyjlht", + "vlcbt", + "ejdi", + "wgdmx", + "uhmv", + "qkszd", + "sxcu", + "ujagpdk", + "vrjtz", + "ehfjki", + "cbespwq", + "zkfdqme", + "whpu", + "cmjsk", + "jban", + "buht", + "uayfqi", + "gyora", + "rvnd", + "lgwqt", + "ntkuvby", + "gpco", + "klhr", + "pugfj", + "ufsgcj", + "dezjwli", + "xgfrkd", + "ibrv", + "opvq", + "jonih", + "tsxe", + "eviwkzp", + "hnvky", + "mvadrs", + "ascu", + "lvzg", + "qsgke", + "nzsyid", + "jxtz", + "bknsxa", + "pjcsd", + "bzrfcp", + "xqztuw", + "pgdhj", + "hwds", + "akvdtuz", + "gwidchq", + "dghq", + "gvimdc", + "ndtw", + "zilpo", + "evbgz", + "xwpoq", + "uasevhj", + "imlpu", + "wmxzqjc", + "crzy", + "slkgmt", + "kvqr", + "tybvph", + "ftvr", + "znryaf", + "cqkrm", + "wevquzg", + "xgei", + "ckyp", + "qieb", + "fuexl", + "ktnfj", + "sthdu", + "fyewm", + "dqpfzt", + "bwlptjm", + "fdkncb", + "ndxej", + "kgcuvb", + "ikhbc", + "htricbv", + "isgdem", + "uhcj", + "nhau", + "buam", + "bzslep", + "mkdvtbu", + "vouz", + "edymug", + "rnfocwz", + "lqfscrp", + "pkaygmc", + "lhuy", + "mardcux", + "zmphqu", + "exft", + "myqj", + "qbirut", + "cxbihm", + "oihwn", + "htjpoyi", + "bqzl", + "magt", + "lauh", + "iwmzsnd", + "dyzpbtu", + "gxjyw", + "ripoqg", + "pzedk", + "twqzo", + "wvclqjn", + "nqra", + "mfniaqj", + "jtarl", + "wbtsgk", + "udczahv", + "qztcd", + "khygvd", + "vyax", + "puwltg", + "onpyr", + "hcrdyt", + "optr", + "tidajp", + "atxudoq", + "rhsm", + "rcnoytq", + "zxiuye", + "kipcjv", + "vpbugem", + "bgvhk", + "hxqw", + "sbmo", + "gqjfz", + "khazylx", + "bhkcar", + "kwyo", + "lqsgwuy", + "egbcutp", + "hozlf", + "fuocpkx", + "wzaignk", + "hsalxj", + "zmhjakc", + "asgex", + "pohyxt", + "vnztqec", + "hrvfabe", + "stcz", + "zyrtl", + "tzegd", + "thfgj", + "hpau", + "hcgpks", + "jgkecsi", + "ldkypw", + "pafe", + "fykij", + "vpmzjed", + "mofsh", + "jcdews", + "dbqj", + "oznx", + "baqxfv", + "uwxqgbc", + "tyzjrx", + "dvbo", + "hsovy", + "ikucfb", + "xckfs", + "wkvrl", + "uyqw", + "fimosyu", + "yflgnhd", + "yianrs", + "eolnx", + "rupjlwo", + "qoma", + "culgys", + "wscrqui", + "eobfu", + "yfljmn", + "qauhex", + "iahk", + "fljisoh", + "czgnls", + "eqrxym", + "rbiqa", + "jowvise", + "mqrsb", + "syjerk", + "ycjr", + "opahre", + "lgbrw", + "qpvcx", + "gwak", + "uzxda", + "yspjb", + "vjazx", + "qxos", + "kdhuy", + "lgcap", + "uqtzab", + "qyve", + "egahbtk", + "feadpm", + "oart", + "laox", + "qkzt", + "tfaur", + "tukeczw", + "sxurph", + "rwyigv", + "uqrd", + "dcxvhg", + "yxupzb", + "vetjphd", + "hqxn", + "dxuvzst", + "qrvzpb", + "qolczwx", + "dwvzic", + "zrhxu", + "ixvbg", + "reqx", + "mzqbwr", + "muxrzp", + "lxng", + "qpafn", + "elkphj", + "xmeuwzf", + "uzne", + "sgcpi", + "aghebjp", + "mdobf", + "acgz", + "uydwiln", + "aochrdw", + "hrgtzwk", + "jahr", + "nxuofg", + "lvdno", + "wrxuf", + "kodty", + "ihnd", + "vziw", + "prihj", + "xuinq", + "mrfyn", + "dbsk", + "xpleg", + "evufj", + "rnyowfg", + "kvhsnf", + "zprt", + "nypmkrv", + "tvglup", + "usbx", + "ydtnzal", + "mdtp", + "dfcqpw", + "zxnlqig", + "ceyjzwi", + "wdcqx", + "rbfdyul", + "aiqs", + "xwctq", + "mnfiqo", + "pqbmf", + "qrdwiuv", + "uayj", + "nzja", + "hfdq", + "depxui", + "ebgk", + "cgyvo", + "mvnr", + "eqxdo", + "ntzf", + "tjzsvm", + "pighwb", + "jdluf", + "xzdmh", + "owtfz", + "rbeiuc", + "qgny", + "ksrhbtf", + "lgkx", + "zibnfoe", + "bqighvw", + "orjp", + "mtizcl", + "fzprueh", + "sxhqwyg", + "mzgbnyx", + "msokjpd", + "tzhk", + "jkrhqzl", + "ibkje", + "lnbtr", + "ixjrod", + "myqxa", + "aqmpver", + "njzd", + "chilb", + "jdnk", + "kbzvr", + "lqco", + "vzkqdgm", + "foxk", + "xtmckw", + "ogetapl", + "sbzw", + "bqka", + "zdxtfh", + "kqgr", + "pdcvh", + "rvaou", + "wmzayg", + "ucyjv", + "loegfy", + "mtosbw", + "qxysm", + "ublkazg", + "mzvslxn", + "zevbcw", + "ojqhxbp", + "aiohwm", + "jfsvnp", + "zgthbq", + "sqdj", + "dpmswf", + "qplbgu", + "pbsjmrc", + "ijwprn", + "xpogqv", + "dfxo", + "rhjlkz", + "znuse", + "zqhv", + "cjnt", + "bdhxeqk", + "kaplnr", + "lanvr", + "nevojpt", + "ibsnkvt", + "hqexzub", + "bptaum", + "hrwekip", + "iupnj", + "qnja", + "hcrjqg", + "hqya", + "ikjf", + "gesinmj", + "lveryz", + "mvzjbxp", + "jsimwoc", + "ifeon", + "mosuvly", + "mchrqo", + "vgwatl", + "iyfrg", + "dzic", + "mbavs", + "dlhnt", + "yqxpe", + "zhxibo", + "xredghn", + "tdze", + "lkepft", + "ztax", + "rkesdq", + "ksjbeqw", + "ufoslz", + "ukwp", + "xcpow", + "btvi", + "scjal", + "xtum", + "ztrs", + "hkrn", + "qgzefa", + "osnq", + "lujignb", + "wvsx", + "hepa", + "fwiu", + "xwnsfyj", + "vtqsc", + "afbyj", + "wurbvpq", + "thvxgnu", + "ingklp", + "ngqofcu", + "ifel", + "hypl", + "pebsnv", + "cexdjbt", + "qienl", + "yphtcia", + "dhog", + "bmjxetu", + "xcdw", + "btfm", + "tdabm", + "qwbtauh", + "bcpofa", + "nlver", + "srgund", + "ujao", + "mkvbg", + "xdfvgjm", + "gtiocsh", + "fdcs", + "exbmrc", + "mqzkwj", + "abpqmi", + "hsiqv", + "czwty", + "dosq", + "ujdthx", + "rmfuy", + "vehorq", + "swza", + "fwzeod", + "tpcxlyd", + "cpsi", + "gxqz", + "rktymc", + "evnzy", + "bpaksd", + "ujzwb", + "beif", + "tlhnve", + "xivgbzh", + "iavdmej", + "pquwksz", + "ytoabz", + "wvirj", + "fzvkc", + "gfmzvxk", + "qilg", + "ojfd", + "ofjsn", + "bcvm", + "pjao", + "efjush", + "zhjqi", + "bgzva", + "nxhtba", + "qorc", + "xpwhc", + "farts", + "qnmhw", + "ugkcbwp", + "ongp", + "yucs", + "okrwlp", + "bevid", + "rpctxg", + "fsqhpz", + "qupxho", + "rjfq", + "sfkyd", + "givhz", + "qiukcm", + "qvhztfo", + "pxaoy", + "pbqi", + "hgrdjc", + "kocn", + "gsfoyex", + "eshflbj", + "yxgfotn", + "mqxjfs", + "vwrj", + "dgmatsk", + "mtldun", + "tzspi", + "qlzyd", + "kjcad", + "zwghxay", + "lvfmkj", + "hjktrdu", + "bnhgf", + "rabj", + "rnpxlyh", + "vfblgsq", + "wnuzvc", + "wkslzpf", + "lkgbjpv", + "ktnloa", + "kbqtr", + "dleiyz", + "kofm", + "tsnpa", + "gxiba", + "pusl", + "dibsf", + "ehixsg", + "oveyafl", + "ofaigt", + "rgpfjom", + "hongez", + "inrx", + "dyobfns", + "ficp", + "ymql", + "xyqa", + "qasdmlb", + "owma", + "ciugndw", + "woniu", + "dvpk", + "bsktmur", + "zsky", + "vciun", + "buyfhz", + "qbvhfd", + "rcefub", + "yqvg", + "ofjaxs", + "fqboxuh", + "mohcn", + "tegowdy", + "nsuivc", + "pokybs", + "idzj", + "tvnlx", + "zmkxwo", + "nmyhxd", + "jeozvs", + "txdvnec", + "nksvjx", + "ztoiqb", + "gphcx", + "gtcez", + "nmfcur", + "otsd", + "ulpq", + "chsno", + "ohuwb", + "wzktdxf", + "zbtfi", + "waor", + "tocvdnl", + "iyjgt", + "gsuhfb", + "rcbjfdy", + "jyzhox", + "fgxw", + "mdkstrz", + "ypfkwgd", + "dchnwp", + "fznpqel", + "imto", + "ijwqz", + "asiw", + "zoenj", + "pckg", + "npiah", + "zcutdw", + "uihovrg", + "jurxq", + "mwsnqhp", + "bxjv", + "zlva", + "jxfawy", + "qopxunf", + "mhfpbn", + "vsyo", + "tvyjd", + "ogiwxu", + "iefg", + "ahqdpgb", + "upfihd", + "cufs", + "qbpt", + "ckbhutx", + "oqlzh", + "gthob", + "uhxgm", + "peyklm", + "fvrzec", + "rlnmh", + "inzebau", + "zojkd", + "egwuc", + "bsjicgh", + "cgiwrkj", + "ornfuc", + "rgibwso", + "kyxoq", + "evndj", + "moupgbr", + "zqmh", + "wzdg", + "bcjw", + "umligy", + "loari", + "dokq", + "zvdra", + "nuhkpd", + "vyislx", + "ukixs", + "hdabl", + "rujsdfn", + "fypjqsa", + "izhcfna", + "itcgbju", + "xviqwcd", + "ywqnh", + "yzngsva", + "oabsy", + "tnwdruz", + "ctyga", + "kuftaeb", + "tuvie", + "futb", + "mnlo", + "ykfm", + "mexaqo", + "smoa", + "ydclqb", + "suqzj", + "pxtao", + "apyioql", + "acqospl", + "tkdh", + "tqwv", + "nstqmx", + "mtaxwsq", + "drnhl", + "uohgc", + "mxcrd", + "jrhbym", + "nshfzei", + "xqdnpe", + "oxvsmag", + "hlys", + "ymhdt", + "rgyoci", + "mpnzruj", + "gybx", + "qmxykhg", + "duxrg", + "cwsen", + "evpnia", + "eivhsm", + "xngkc", + "ncdz", + "ojxfce", + "ocag", + "qisxu", + "zpseoty", + "vzrlaw", + "lunwbdf", + "nqtcd", + "ylxhi", + "dfrsxve", + "jomcax", + "zmycje", + "lbdqxs", + "ctdynfr", + "kyex", + "veynloj", + "pcrwfy", + "fdkmz", + "mvqsr", + "qrbzx", + "ewzrmv", + "owuc", + "jmydpsf", + "nrasx", + "fpxtnq", + "zchlfv", + "ecfb", + "jzhds", + "ljekcw", + "ilpf", + "xobnadm", + "rflkanp", + "uewi", + "ycvtnkf", + "hgxfb", + "qsmoj", + "ctxog", + "vhagp", + "lgcx", + "zevqlg", + "beudiv", + "oqavw", + "xsrgmcd", + "yehw", + "rsag", + "awbsi", + "htbpyiq", + "qxtyeun", + "aljrp", + "bostie", + "dbql", + "lgjvmp", + "ymjqv", + "jyslova", + "nybum", + "qewhuj", + "wpysmj", + "muhtzj", + "zbmxj", + "jwdyzmr", + "umvnh", + "ztukd", + "yonkwm", + "jrkvgu", + "ayivlh", + "nxhcf", + "qxdl", + "mdyln", + "phejg", + "ncsevx", + "dgpewoh", + "omez", + "artq", + "miywnze", + "zxch", + "pfcxjz", + "vwuoal", + "hsbz", + "abeludq", + "ajmrix", + "zcxlrat", + "tbjokd", + "karusc", + "nbyw", + "agptdrj", + "bzgfwmi", + "tmxfywd", + "ieczxgo", + "srliwbp", + "wzjritn", + "vmqdj", + "csznx", + "dfzuql", + "mercsn", + "lrogi", + "junf", + "wpvlm", + "aovm", + "khaoqm", + "mtgy", + "yzhoqig", + "emlj", + "vgmpas", + "xzqetl", + "gfcni", + "jxzwtbh", + "blprj", + "mbslcfv", + "ivgk", + "wpuzy", + "ilbo", + "ipcgdts", + "jywu", + "gktmyj", + "iacptu", + "nxebaow", + "gchdxk", + "szifnh", + "blrfedy", + "dfjgybc", + "acrimsz", + "tdrhiqc", + "zvjl", + "itzjan", + "utcnpea", + "zpylumk", + "snjm", + "rfxbsah", + "cjty", + "cdnufgt", + "ykghlr", + "fgrnzxj", + "asemv", + "bwhelt", + "gdyblso", + "jrlvn", + "akjqnz", + "qvjmbc", + "uwkhtn", + "hugetb", + "jmopas", + "gjop", + "uxtgpf", + "bzqig", + "mcyqeu", + "wktv", + "kcwtzgh", + "udpvxa", + "ivsj", + "sfonh", + "udxy", + "pmclak", + "mdxhtw", + "ekbnivc", + "oxjglka", + "dvnw", + "iocs", + "qukgbo", + "uwhjmqb", + "cedm", + "ztvds", + "lirjwpd", + "afhzj", + "axqmkwn", + "oxlw", + "vtqwzr", + "rtywl", + "cudezal", + "tcja", + "fphloe", + "atnzpu", + "gubwfrc", + "yurei", + "oayw", + "hpkjdwy", + "ngjh", + "lzhqboi", + "xnhjube", + "polha", + "fhvjgpo", + "xtcyvnf", + "hauznie", + "ahkng", + "bvqymgh", + "cyux", + "tnhopu", + "hlajor", + "goduy", + "aymftl", + "lrsw", + "pnjzvk", + "alnoct", + "wgkm", + "mxakei", + "xfldtyj", + "qcaxmz", + "kaoxhzu", + "kcvts", + "zohrlby", + "duzl", + "vxmn", + "ognqw", + "hoamd", + "qelzn", + "ogedt", + "ieun", + "apoq", + "ewdulmb", + "jfcqm", + "oyux", + "ktonujr", + "kmdituj", + "mxkon", + "mapt", + "yqguhz", + "oujbac", + "rpbads", + "rlvse", + "csoj", + "ygkdn", + "qmlbseo", + "fmksa", + "kbua", + "ngirvo", + "nlfizw", + "mbwjv", + "trshzai", + "iqebju", + "rontmbu", + "giabfcv", + "knszgx", + "kjdposx", + "ynwzxpd", + "cepjmkl", + "fhyjwe", + "pquilvf", + "nujm", + "ewmpqy", + "igeo", + "geqwfdk", + "ouag", + "gaqb", + "gtnhfvx", + "bakcdl", + "ysumkwa", + "rychmn", + "zcdpj", + "hmdjvx", + "famw", + "hlnc", + "iubezma", + "ghrd", + "fyqcm", + "lrck", + "jelq", + "quochxj", + "mfcjp", + "rcswt", + "mcbyshw", + "jroxh", + "cztgyhi", + "ognzhme", + "vojbq", + "tnrdh", + "mtxdpl", + "raex", + "qwvf", + "ksvzah", + "hrxnl", + "yrvf", + "abjhi", + "cqknza", + "vhaigzw", + "noetuh", + "fghlmv", + "ojubdrl", + "tyvoeih", + "qgju", + "vpdwr", + "rbjndf", + "bcdea", + "kosf", + "nchyfbz", + "jroeszk", + "sdclgn", + "isjurwn", + "sxozcvu", + "gtlr", + "kqmjdvn", + "qzrocwh", + "boadl", + "sazitm", + "lhanxc", + "palvexf", + "vxcpbh", + "yxjkeqh", + "cfiup", + "sitzy", + "kmvsbi", + "gfny", + "qebjk", + "gronebp", + "qclet", + "nqeiaw", + "awgix", + "cpondz", + "hlri", + "vpfax", + "vnjrp", + "birc", + "kefro", + "zqem", + "kyrunx", + "iwxtdg", + "rgeohpx", + "kyoxbm", + "tpkvim", + "ybvdj", + "wakh", + "yhidzl", + "kobeur", + "npqulc", + "kdvl", + "uhjastq", + "tlyvseg", + "kqprx", + "fwilghb", + "ynbium", + "zdrq", + "ampiqn", + "evpix", + "hdjzf", + "tpgj", + "hugqlxv", + "rqnfl", + "htzrd", + "gujhy", + "fiajps", + "lacvdq", + "rsugyom", + "zpfriwh", + "agop", + "jxpkvdf", + "nadv", + "yntkloz", + "kclr", + "glrdyz", + "khog", + "vyqpm", + "ykpgz", + "pkbe", + "moux", + "wguc", + "yteoaf", + "uclny", + "cnpox", + "osevfr", + "rdtxkz", + "vyocwds", + "xrolvy", + "vizxg", + "sxogf", + "qlizpu", + "opdvy", + "yovdn", + "fxecho", + "rautqxb", + "udjntgq", + "xrslhw", + "rchvlxi", + "qflsc", + "qwfbmao", + "amuesy", + "zvgjwh", + "qpasvun", + "mpic", + "zmwgip", + "msrhlg", + "bepj", + "iogcqdp", + "axkv", + "faqphn", + "thxaoj", + "dwxu", + "wyoietj", + "qbvim", + "iyvc", + "enmjsb", + "unyrwz", + "tqepv", + "rabikyq", + "qlftuja", + "kshj", + "kjev", + "nfbdhqw", + "kqiaxu", + "rhtxas", + "dckuap", + "tyjo", + "dlma", + "hdqc", + "gvpf", + "clqd", + "dtbslvr", + "rkjw", + "lsojdtc", + "jborzp", + "revg", + "guezk", + "ijpvoz", + "hopxens", + "gwlbvnu", + "mgnbc", + "utogsp", + "okreia", + "bonl", + "uzed", + "qmzk", + "ykib", + "omnuqze", + "obwhju", + "reymx", + "ufdypq", + "kptmn", + "pludhsr", + "dhgxsr", + "sfmec", + "ieal", + "dlgu", + "pqzxib", + "jahludz", + "ferick", + "lekmd", + "jtflyek", + "levf", + "lvma", + "gfcibtj", + "qidolb", + "ljink", + "pzgn", + "pqdfbja", + "rtgzjqm", + "zwkt", + "csjg", + "svemrya", + "tofwieg", + "hzonxa", + "crjkzv", + "petw", + "yjqtv", + "zsvoha", + "xftewi", + "slhepy", + "ympvi", + "erauyq", + "arcyzq", + "xpdwgzj", + "wving", + "watb", + "phtszk", + "nxhqkim", + "yxkhnmu", + "tbpaude", + "vwta", + "vbuiyq", + "qitrc", + "bnlrjzf", + "lzomw", + "pwsma", + "ekqj", + "ywkbs", + "synld", + "jlywsxa", + "cntd", + "nkip", + "jvoigut", + "iuwr", + "cxmk", + "ehoduvm", + "qyriaj", + "tbmpz", + "uhkz", + "amjti", + "hzerco", + "iqlku", + "rdlucsf", + "irxd", + "mutbr", + "wgfqit", + "vdea", + "sewndbt", + "xadziyq", + "bymswn", + "olbj", + "ezvsw", + "qwojy", + "tckbxh", + "yvcguj", + "xnvc", + "ehroc", + "mrcs", + "asfoy", + "qrsp", + "tyrwl", + "jdshua", + "ybset", + "rmjiu", + "jskubx", + "iztyqbo", + "dbylwp", + "xbtfiy", + "dhiq", + "gzpo", + "nbxfamk", + "muvaz", + "ulxhpre", + "qbvcikn", + "haorsg", + "jwetdrh", + "kuxi", + "fxqcjm", + "vgzt", + "qjirkos", + "mwtkv", + "gdrocjf", + "vrqt", + "gvmshkx", + "lqsubg", + "dgmtlf", + "glck", + "cryog", + "rezasdh", + "ewlorai", + "ozqv", + "zxvr", + "lzder", + "vjstqgu", + "xftq", + "zboglvu", + "vzxcdmt", + "mavn", + "wjaf", + "rnfqk", + "cgjnzi", + "aquo", + "iczoh", + "vbriynl", + "lmsupy", + "ncsem", + "zsmyuxd", + "jtixeod", + "flbzv", + "vxlnr", + "egvk", + "oeyvqnx", + "lvwo", + "pxoasgz", + "vegdyz", + "ghlr", + "ykidla", + "vukhlc", + "jlnz", + "xpwmyju", + "olzr", + "ixects", + "hcpns", + "vjazed", + "xwqu", + "mdxl", + "smzn", + "awmbpd", + "gdlbc", + "ruxdfq", + "evkazgy", + "rgetcu", + "ilbrsx", + "biwrjt", + "myihtn", + "muvwgh", + "ltuiev", + "qhvb", + "tauf", + "jhwirc", + "knyxi", + "oihu", + "lxmsi", + "nipqjze", + "ptrqd", + "aqyb", + "mxjw", + "szroye", + "xlhwd", + "dezb", + "gnxzdhv", + "gncyuq", + "gmxop", + "wskij", + "rjftaxy", + "qyta", + "ojazf", + "vejr", + "djgl", + "nzjwkl", + "giecps", + "ktxwgcl", + "rcympb", + "jhguni", + "woisan", + "bvas", + "pbdh", + "edbgt", + "sdibor", + "raofe", + "zhdiy", + "dqfek", + "pwdr", + "ecgpj", + "qgcfx", + "yzsgvhi", + "zkqali", + "ogpqhr", + "dacni", + "kmfvrz", + "oqesr", + "hvgkrzs", + "ftrsicz", + "vpxaqw", + "wxmjkqb", + "hstleb", + "qvlex", + "lmqekg", + "snfrbh", + "jxogmi", + "ekjnlzy", + "awdkjs", + "rhcb", + "evoc", + "rxmilnz", + "xhofaq", + "fwlea", + "bpec", + "nlphfrx", + "rstfx", + "gfdjemz", + "ulcbqy", + "freo", + "wvnaui", + "zobmhw", + "einof", + "hjcde", + "wvoapck", + "lvqkixw", + "bxjaf", + "bjizurd", + "ieca", + "rzfiqt", + "wgchn", + "ayqs", + "yrtohce", + "dcebpqs", + "fkdswc", + "uotne", + "tmcp", + "rmujh", + "twezgj", + "kgbd", + "dbnt", + "zywr", + "btsa", + "guqzert", + "xvrnm", + "bmohtf", + "xdhcuw", + "rklf", + "igkaopd", + "dkyqlv", + "hsrwup", + "vbmd", + "zytk", + "avkrg", + "gmcly", + "hcqope", + "suowkh", + "srtkwqb", + "vtbs", + "dhekz", + "qnymj", + "vbzht", + "ueyrf", + "ogtqfc", + "shfe", + "gdymkxh", + "djmgcvs", + "srfaowh", + "qfsxk", + "mobqa", + "uirvjw", + "uavzer", + "jfnk", + "bxgodyh", + "qmgn", + "plhy", + "knezslq", + "ndeuh", + "rbgcn", + "edbvf", + "txqwyck", + "kenouls", + "yfpild", + "rmazpx", + "zovn", + "nxjhtc", + "podlne", + "mqtv", + "yvejs", + "mitycrz", + "wpkohbm", + "kqayv", + "rbpsvth", + "aojfrzp", + "lomuwv", + "nfcx", + "wpbm", + "odiu", + "pvsaoy", + "dtlcrkn", + "teuqsgz", + "mwelcn", + "lzomvws", + "qhjxzry", + "emno", + "kvdfz", + "kebxc", + "gmpyxbr", + "yqib", + "apsyiqj", + "tqmar", + "zcyb", + "zgpio", + "vgqm", + "srdt", + "rsucxt", + "yzchl", + "oedjmwc", + "kebzgi", + "osdqw", + "htguzfy", + "wgxtl", + "pewt", + "jqmezu", + "oyibq", + "dwxvroj", + "iuezg", + "puix", + "tkcenx", + "cusewn", + "xiohwyg", + "bron", + "vxhewyg", + "feasgx", + "zqlbh", + "xgibpw", + "jsmyvqh", + "kqvexy", + "cdhl", + "afep", + "gotn", + "fahprle", + "zeou", + "dikcpl", + "xvwu", + "jveyon", + "afrjsnl", + "wvfd", + "hdmpiw", + "pjnd", + "ybvl", + "calrjo", + "krohl", + "zgflrvt", + "mtan", + "sikxoru", + "rtxqs", + "jckvqma", + "bgdaz", + "nzorc", + "yladv", + "fkhqe", + "miaw", + "ptxoqey", + "tciagdf", + "nixb", + "gopwd", + "ptzs", + "ckshwyj", + "fiydtj", + "nezqipt", + "drpvtg", + "tsvmh", + "rtgafb", + "wmdcukn", + "hansebc", + "tljb", + "tuvns", + "vndr", + "jnymcrb", + "khsae", + "vxzrmgq", + "ndhyegf", + "zsty", + "txsoea", + "fegw", + "acjqr", + "rvmhabt", + "ljhfyan", + "hibpgw", + "toxj", + "zjhpmy", + "zaxlk", + "rncoywv", + "lcrhoz", + "emyqr", + "expz", + "mtnzx", + "hvein", + "ricfg", + "myfztso", + "gkuhcdp", + "ickwt", + "hfscia", + "cofxsm", + "tqwa", + "gjcfzkd", + "xopnas", + "jgtid", + "qoax", + "ijcud", + "yajue", + "ntjqd", + "ditpks", + "imktra", + "okzjsf", + "rljvz", + "zwdliyh", + "feunvy", + "amiq", + "chflt", + "mtlwfp", + "ioca", + "jipfwr", + "djolg", + "cxagfw", + "ihmr", + "keomqyx", + "unlo", + "jnbi", + "uhkc", + "waqcdlx", + "cqtsyo", + "bislm", + "jvwy", + "ciuowg", + "baklv", + "dbxul", + "cvplw", + "eqmuanz", + "endaxf", + "wdxu", + "dcrl", + "cqjpxm", + "uyfwgqn", + "fjawmzl", + "uplyijg", + "bohe", + "oeji", + "eyqgwm", + "nremoi", + "cjmnhzk", + "haptkf", + "fayer", + "xdvobe", + "sticxmv", + "blicwhm", + "rqnx", + "chsl", + "ycnugtz", + "huavjc", + "jsezl", + "prslued", + "wrldokg", + "mbgljqi", + "cfkurnw", + "dotuiqe", + "hfnltr", + "xukwrch", + "xhstbmu", + "irszp", + "kzmt", + "msoa", + "ecayt", + "dzoyl", + "jefxn", + "oieuzpx", + "xmgah", + "hceg", + "ejxo", + "vunaerp", + "stvehkp", + "opyt", + "bnmapjd", + "lgar", + "tznibk", + "gwvfia", + "odpgsym", + "ywdna", + "wqtpz", + "wgmi", + "gmfi", + "dihb", + "bayf", + "qfnrdao", + "rdlpk", + "ojkyxhn", + "xjkowzl", + "eoyisvb", + "irtgsw", + "bnrhmv", + "zqld", + "gvna", + "otilpsq", + "fpsit", + "xaor", + "xmunjb", + "dueapjy", + "wzemtd", + "zsytmc", + "mfktoj", + "wxlnpe", + "smjxi", + "ftqwipa", + "vchr", + "eoniv", + "ieomq", + "bcdm", + "iwon", + "gbcxz", + "laxvpo", + "xkiom", + "sokgzry", + "utip", + "bnfk", + "ctmbv", + "bcoqrt", + "bigjvz", + "lzwik", + "ykavo", + "psbizao", + "wozxpna", + "pwgteol", + "dotch", + "opyixvj", + "obdp", + "lrhkbi", + "vuryck", + "xuhvakw", + "xneq", + "bzjyf", + "ehxbd", + "nhskt", + "gxps", + "mtozn", + "ewnh", + "gxsvj", + "wezim", + "rhwuy", + "bdyx", + "akezv", + "eadpt", + "yzoajt", + "wzpas", + "xvan", + "tmkq", + "bczurio", + "fdta", + "dkuvmlp", + "rfbtg", + "ujxwbzp", + "xhsgzi", + "jvisq", + "qejbvu", + "degjvnw", + "qhuod", + "kgafqo", + "pvit", + "kfoy", + "dnioklc", + "foqsjha", + "gvbk", + "ixrnzt", + "jtspk", + "wmep", + "hjmvli", + "qlkeams", + "dsbgre", + "gxfnpw", + "vtrlik", + "dyhgvz", + "hqatl", + "ulotasn", + "sagu", + "sbzdjxp", + "ngfbpli", + "cihru", + "fjexl", + "tzsqnk", + "ijtfkwd", + "gicapf", + "vsoxirq", + "hivz", + "ehof", + "bmjz", + "vchyeoz", + "chmesn", + "gtpadr", + "dulwexq", + "unpv", + "lsftwdg", + "dfwxm", + "bxsq", + "meco", + "ansj", + "jxhbzqn", + "njde", + "lqnmsg", + "inkl", + "uwnykb", + "cvkozih", + "himaby", + "kjexfmn", + "pbctdmz", + "mxzs", + "sifcup", + "gbdst", + "fqnou", + "fjesvh", + "dirqpo", + "cguwq", + "rsyvql", + "cviqxs", + "yhnovfl", + "jymfv", + "abish", + "rcmt", + "zcrq", + "rbpcjed", + "qzkyba", + "mhclp", + "gvpcos", + "gsdfe", + "szfel", + "dhtvyla", + "salc", + "qulehy", + "hifyn", + "degupfb", + "ognyhc", + "qytme", + "foim", + "ntkmdq", + "dxsaovq", + "yhnbmox", + "qrsdvz", + "sklexdu", + "swmo", + "wznrhgd", + "ezurd", + "rcot", + "pfhmynu", + "nxhdjl", + "cmhjqpe", + "vdaoew", + "rzkaxi", + "uymswjt", + "xuovks", + "uzrt", + "jxkvh", + "mhtxs", + "yjbedr", + "slothp", + "vceul", + "gavipk", + "eftndpw", + "pqbevw", + "doauhwt", + "xuahwp", + "umohp", + "afxge", + "uvztbfe", + "lixntpj", + "wnmf", + "qdahrf", + "mczas", + "jdoqk", + "axtoz", + "ztyl", + "zhqifja", + "nuheos", + "gxvdyc", + "uhaoce", + "fgtasy", + "eodup", + "jzmfb", + "ktryai", + "pdiew", + "uylmhcs", + "nrfta", + "ecmjrd", + "wmhqk", + "yubsxj", + "hxywlcb", + "syvtr", + "mwvs", + "gxfdltv", + "nuqo", + "zkhsp", + "tgasy", + "ndpzs", + "kavczu", + "roltb", + "clsd", + "xsul", + "fhzk", + "osup", + "uslpe", + "gske", + "yentjp", + "mqpl", + "cebarj", + "gzsjbq", + "rlksc", + "cgpvfx", + "dvemcg", + "noemsvp", + "zjol", + "svgxnlj", + "gbxtzh", + "ngqxy", + "sgmq", + "uigeqzm", + "khtg", + "zefro", + "slyokm", + "xpvq", + "tyqnl", + "lodb", + "zwqs", + "wyoa", + "rfmhlw", + "bsnjm", + "vikr", + "edrchtl", + "abcmi", + "xuwvs", + "lwuihz", + "kepfcb", + "udrv", + "hstu", + "zveclo", + "hindb", + "vonewy", + "htiplr", + "gmjnyz", + "htfm", + "oyrbcqe", + "brivgst", + "ysquaj", + "gxafyph", + "msworpy", + "asevkil", + "uxyse", + "sycpaj", + "mvryp", + "yjvc", + "lhrz", + "kbpfavt", + "pjgar", + "gyej", + "pwjd", + "bcymdoz", + "aqtol", + "gswda", + "gcskh", + "pclr", + "muepy", + "ndkm", + "gexr", + "hikzxpe", + "cqkd", + "exrmfh", + "dhjrm", + "eguh", + "uhkwmai", + "kzivud", + "doqtjwa", + "cbavmu", + "kzaynu", + "nmhtq", + "liceoz", + "ktcfu", + "sqvafx", + "sknwbg", + "bkyuq", + "ukywq", + "vulkcqr", + "acokm", + "xiopumq", + "yrpoztv", + "zjvrt", + "dflx", + "xivo", + "rtqikcn", + "jingyel", + "tjglwx", + "kxpgsv", + "jgxnl", + "yevrh", + "itxp", + "ybtwm", + "lveg", + "lgscey", + "zvmqr", + "zdvhiup", + "awtm", + "wroehf", + "vuljbe", + "tvks", + "ykfmbgj", + "ozryin", + "riyko", + "gxoph", + "rymw", + "etlxu", + "cujy", + "pjkletr", + "gqurdmw", + "xjrkat", + "rzuxa", + "mtdk", + "yunpvzs", + "mxabfn", + "jpvrb", + "dwnqib", + "xwoyqhr", + "arjez", + "djwo", + "gqkbewo", + "vxyngjs", + "metzjx", + "evwniax", + "apnwvs", + "qxsty", + "nhfo", + "inorscd", + "nlydhti", + "bpcgut", + "qbdoep", + "fpyz", + "boqcve", + "rhnatu", + "rlhdnjc", + "rvbkeuo", + "cgew", + "jwdm", + "vxbksal", + "vujcfm", + "rpjd", + "fbyv", + "qets", + "qvue", + "bjxk", + "houik", + "eqmsi", + "ftvpicm", + "fsmcd", + "vmnz", + "eoapqjr", + "qnjfvgy", + "yjbrval", + "xecwuk", + "fiad", + "vkqbphz", + "mgsxj", + "rkuw", + "iuqv", + "qcer", + "ytjqgwi", + "uztervn", + "ipbvhl", + "taeqf", + "avef", + "uqgr", + "bzfam", + "krsh", + "zyksjp", + "hzpsio", + "kpwdr", + "ziklcmv", + "mbeknzp", + "cxyu", + "qytoki", + "yklcevq", + "oixcrkb", + "lnxywk", + "dzeh", + "ydsc", + "fguknja", + "xhayl", + "qzabm", + "xmrtkn", + "oupt", + "pjwyz", + "zsivd", + "svcdxq", + "tqyph", + "gkpni", + "nbih", + "skyvec", + "xltkbgo", + "avdrw", + "numgri", + "hkpaf", + "spedzqg", + "xitwme", + "mtexnhy", + "trxl", + "tlhpy", + "byfg", + "zlkvewf", + "vcpekwn", + "egab", + "dlazpt", + "bwqvp", + "izrfs", + "vziufwc", + "lkbc", + "mnzk", + "wcayzu", + "bneryj", + "qdnx", + "strzjc", + "bwdh", + "dujkrs", + "yroanvz", + "pyritgj", + "ipek", + "geuh", + "dmpur", + "cpkxjd", + "bfqozd", + "hlnqmyf", + "tabqw", + "fgrzy", + "xjyc", + "fetnylo", + "uxcnhe", + "ynwc", + "fkwn", + "ulsb", + "sihj", + "egxt", + "afedby", + "ybdsqp", + "hyamn", + "uvqykt", + "pqvy", + "mhjstwq", + "bwemq", + "hykj", + "lpouhr", + "anrswl", + "jntkyvz", + "dgskxo", + "sbake", + "bdwmx", + "huis", + "oiflz", + "alxgnwc", + "ecqrk", + "amhnq", + "jmbeaxg", + "tqaxnzp", + "fhtdr", + "hvoy", + "byzdafm", + "dtbo", + "nyboh", + "vsduaz", + "deyti", + "wryiljq", + "lvdgsco", + "atmgkp", + "aurk", + "mepvat", + "qnbp", + "vdaqtr", + "hfzgkiu", + "grmqwy", + "lwyazbr", + "qabr", + "plwhcj", + "svqrjtu", + "ghcjuw", + "cxrbqvd", + "nycwest", + "qndlay", + "tgrp", + "aleoiv", + "rzltwje", + "zvphjby", + "gfambrl", + "cyvjqsm", + "dbpeju", + "rlfiobn", + "hguwbv", + "gjcurw", + "abfwigd", + "ytdkvh", + "nymxjre", + "ylwjxrt", + "uhcyaw", + "jhvrump", + "ejkd", + "xyupo", + "ewhuj", + "kvxrbpw", + "rome", + "koied", + "zuxj", + "ijco", + "ocvznf", + "ojdgxhy", + "ultjw", + "arms", + "ygfas", + "afce", + "tsyel", + "fdzyv", + "huvpkaf", + "hrqwclj", + "tsgbfn", + "lrtag", + "wymn", + "jabxuk", + "luade", + "cnqb", + "zfnpbk", + "wdepmy", + "ubsfxq", + "zrum", + "mxfns", + "exbirq", + "otsriq", + "vpqtf", + "pemnftk", + "xgyd", + "nlgtkv", + "muqvep", + "qwugsc", + "dycl", + "yjhpga", + "qgpnflb", + "afue", + "owtlxi", + "kpdghu", + "wphlug", + "pifqhde", + "fqrvsmk", + "gxkc", + "mzfal", + "dfcokwg", + "gylpfx", + "wibegtn", + "zuoifs", + "hgzj", + "ewgv", + "whkrl", + "vpcdg", + "yvspeo", + "zogxrw", + "oxnhsa", + "dkcju", + "hcknvo", + "qbigup", + "ahqxib", + "diatsc", + "skmldgr", + "gbance", + "qcut", + "pchdly", + "admqufz", + "xmcu", + "zrewlca", + "nvomye", + "dzkc", + "wchln", + "yklpe", + "uozp", + "hxuoeq", + "jwgmco", + "ydapcg", + "xiwjhs", + "syjetco", + "goih", + "rznu", + "nifxa", + "sqgujcy", + "hnpmucs", + "ndpgtxl", + "cvlkxa", + "jargt", + "rtgmjp", + "tabs", + "iaqmylj", + "ymuj", + "ipxk", + "ghiotxv", + "lemwof", + "tgcbzs", + "nxjasm", + "ecsui", + "pzlsf", + "lyqeh", + "fuvywm", + "txvezsg", + "rmxl", + "ltayg", + "mjrn", + "nihcg", + "zrgy", + "cbadtj", + "yolevjn", + "sgcnjzh", + "yspdaxu", + "vaugsiy", + "iwzenu", + "kvqg", + "lzwykjc", + "jpzl", + "jxmz", + "xgyw", + "wjkyiz", + "gdkl", + "qwmyu", + "snqlw", + "ewjlcng", + "cwtjk", + "gsbqr", + "qjizmu", + "xiehpv", + "uqhnfe", + "ptkd", + "balc", + "khzw", + "zsadbkj", + "rqjlno", + "poxjd", + "xcwfk", + "wuibyza", + "xkwve", + "tzde", + "tbscxr", + "lsui", + "mfjwn", + "cnjp", + "wgkpxm", + "sxfpm", + "ouxv", + "smif", + "zacrw", + "jogeslm", + "mhdzx", + "pixsvn", + "nlfr", + "xzgskb", + "cdtgu", + "zypmhlk", + "qruh", + "xrpiy", + "xcbhd", + "ctejoa", + "cbgsqti", + "vngzbw", + "xtyg", + "sretw", + "ajtbnh", + "lpycfa", + "zoetqf", + "svztb", + "vabhpnf", + "dezovru", + "wigpzf", + "wtrys", + "ewiubt", + "quyk", + "cfyos", + "wzrhe", + "kpngfd", + "rehtbj", + "objf", + "hsqomik", + "eouh", + "jphn", + "vtlhw", + "zpmjtwo", + "dhysp", + "drzygfh", + "bnqrkt", + "emlhwit", + "nbhy", + "xsilh", + "ilafmu", + "jzwdce", + "gdyunz", + "sbefm", + "nfscer", + "jxykc", + "bqtyl", + "lxnomj", + "pdwqs", + "toya", + "xjocyg", + "lxwcutm", + "sxcr", + "hsjknwt", + "ydhxub", + "dptlv", + "vdcmjth", + "jeihlr", + "mvghib", + "iuyarok", + "beia", + "ynhlkj", + "yrnv", + "ikpra", + "tmdbxhf", + "qgdfsxw", + "rfqeykc", + "htlqun", + "qsmcdl", + "jivkm", + "kfpjyrb", + "xeltrig", + "umfy", + "udmp", + "tylf", + "omyqpz", + "hsvmd", + "ryjw", + "yrphbk", + "vkprn", + "axrdh", + "xoqeaml", + "xsbldtj", + "jbiazpq", + "nmodck", + "hwejc", + "wkexmqh", + "mqurw", + "cmiaytq", + "yvxmwa", + "fqyic", + "djlxwbz", + "kbjdisc", + "svuiqp", + "zalym", + "fxpowh", + "wuaihe", + "zmiybw", + "gdsk", + "hasvx", + "ofvuc", + "ebwnl", + "sgqymof", + "vglexbi", + "shkj", + "uvcojl", + "vxuw", + "yoprte", + "ucreyv", + "frau", + "irswlh", + "udpy", + "bjezq", + "edyh", + "nelva", + "uexs", + "qlubrdw", + "xtlidvn", + "gkuv", + "guhbwt", + "gatpjqd", + "xdospv", + "udqct", + "ywzhes", + "ukltgqp", + "rnaof", + "wxhvt", + "zelpdh", + "cazd", + "upglofm", + "gkyi", + "rpxunc", + "ysqcfv", + "dojmf", + "rjlw", + "jsnimb", + "kdisbu", + "tbmqwa", + "nuqxsj", + "ycbgosq", + "iuyxgo", + "xqeo", + "hdgvr", + "nazimp", + "lsngw", + "bidt", + "cxkdqos", + "diukfvx", + "pkfmhc", + "firget", + "vcsjkag", + "gfeu", + "dnokwm", + "dhyiogp", + "jzcgfqi", + "bghre", + "wpod", + "hrmzwq", + "enszqf", + "pfvoak", + "lfedp", + "zylkjam", + "npbg", + "anupsd", + "wziugkd", + "exrgw", + "putigrb", + "eunfjq", + "yvgd", + "vaywsf", + "smyhjo", + "qczybp", + "sauzcbo", + "fpzsqdy", + "ljcd", + "kcqptx", + "lvqzuk", + "frkqtz", + "qgpflbv", + "kosncu", + "xaqg", + "qwib", + "josdv", + "rsqp", + "zmih", + "ciywxdj", + "vlkxa", + "enia", + "lhgio", + "hdifo", + "covju", + "fzaywob", + "goqm", + "vrcaeu", + "hlveb", + "wuzogi", + "ujwhs", + "tjwk", + "gvxq", + "tura", + "cxvresd", + "uxdj", + "djpqk", + "bmrf", + "apoex", + "qjwixuz", + "emwihar", + "aylrzq", + "wpqciu", + "exjbu", + "uodxe", + "pxyct", + "cmlgxu", + "gudxfib", + "xdvzju", + "gadu", + "qigm", + "lfch", + "yjhpec", + "lujxboa", + "arcblwd", + "wktfos", + "umhzclv", + "owlzb", + "argdw", + "jrholn", + "hrjf", + "jwfselv", + "ujkxr", + "dimx", + "irnvwjf", + "mjsak", + "orkycj", + "jmuxbkd", + "mitebl", + "kmziw", + "kpob", + "cnju", + "upnqk", + "xspi", + "gvqx", + "mcqplv", + "zgcfrjt", + "jfzyi", + "chlz", + "dnoclj", + "ipodf", + "izcphux", + "gwry", + "fquen", + "qxtlpw", + "qcwtfb", + "fyolj", + "oaexn", + "yjxvf", + "mfwb", + "xiket", + "jmlfbg", + "uhay", + "jbzrf", + "pgdayh", + "ivklajr", + "tgnb", + "wxivqlu", + "horptyq", + "ipgx", + "gwrqlp", + "pfkn", + "ekxoty", + "kuptqgd", + "louac", + "tnmi", + "fszq", + "avkue", + "fgzuqdm", + "zywl", + "wetolxq", + "erca", + "wujs", + "wauxrtk", + "igwnyhl", + "yxwzt", + "taqxub", + "jedfla", + "ormq", + "bagidz", + "pswyx", + "ehgc", + "ygah", + "uohnbzj", + "vjtrxwi", + "tjlykg", + "cfsn", + "swthuak", + "udgrfj", + "ltgk", + "ecju", + "pfezjhs", + "qkpzboj", + "dmsatf", + "nqdgu", + "neolu", + "zmqu", + "uxti", + "mnizutj", + "vpzckf", + "pjvy", + "jthy", + "qhvbxaj", + "iythzk", + "zqhojc", + "hfdgie", + "gtspbma", + "amgzlt", + "gprc", + "opyduq", + "xjci", + "hujipy", + "lytxn", + "kojnl", + "tywfn", + "vxwkojh", + "gqtyim", + "wceat", + "hyjm", + "oxaevr", + "crjhas", + "rexaw", + "mpqrsk", + "wncvjb", + "mrgeos", + "itlyrf", + "wzdmsue", + "fywihm", + "ckeil", + "wuxtbr", + "rvld", + "mutc", + "jgzce", + "wphalbk", + "wgxjdr", + "ytgbkf", + "jart", + "klfeb", + "oxchnq", + "tlkjd", + "dlompfq", + "ctdariv", + "nlwftr", + "pgjvmi", + "whtqjvk", + "stgyhq", + "nqpj", + "sqct", + "acsdwgi", + "rihx", + "rkamtvb", + "aoinek", + "xsuekn", + "oakxphf", + "uyfst", + "qlxkzd", + "cfpw", + "bydoua", + "xwqjit", + "qfxhlvp", + "gnvdatr", + "qanlvu", + "ryzqilp", + "nwyorl", + "dtgqw", + "wphy", + "lmgs", + "qjzfvh", + "ftgvo", + "cnugjlv", + "kzwen", + "lspnaxd", + "oxgpyiq", + "udlifgt", + "xesakqy", + "yfvae", + "cxmzep", + "qfdiz", + "qtjz", + "lgnsy", + "mwozkir", + "seaufr", + "cezbkms", + "zkjavru", + "jvcfwnk", + "dnohm", + "zsqp", + "luko", + "seuhyxg", + "ncqig", + "sujbznm", + "kvpghb", + "jdbyva", + "qfidvph", + "lhvrnx", + "pdzmlf", + "blriwep", + "wnyfri", + "hlgkuj", + "npsmyvo", + "yznr", + "geovhdn", + "kcopt", + "gkrjhq", + "aucto", + "svpg", + "rqpcid", + "oymxh", + "yisx", + "izfu", + "zuvj", + "ioxvpd", + "vrqi", + "mjcwfb", + "vekmyz", + "fxelj", + "dmiak", + "rwsdicl", + "wrex", + "dxiohb", + "exjmn", + "uvomdpw", + "zlvy", + "akplwy", + "aneyrui", + "npgcj", + "dortyjz", + "grhz", + "kjuzsgr", + "nhgbq", + "shjc", + "zunhc", + "puvbtdj", + "lutmsng", + "yiruoxz", + "fsjl", + "xqkhng", + "lirfxs", + "whvolg", + "henajco", + "qyjgrw", + "kwgjv", + "lihvb", + "qkxvpcb", + "kmba", + "lxqgu", + "vtuak", + "vxnqrbu", + "uxvowjp", + "zodbjwk", + "qkmgxof", + "awthcj", + "vrmizlw", + "iyawsh", + "mrltf", + "nyab", + "xatzlqd", + "byugit", + "rtyple", + "kbrsu", + "qmla", + "othwerb", + "fpqsluj", + "hegkyt", + "mryaz", + "yqwh", + "fqtimo", + "tmveqrk", + "kygfmp", + "belfs", + "njdzvu", + "oceuj", + "ysrt", + "elsktp", + "uawj", + "twygul", + "hzkjev", + "sforp", + "acrljh", + "fleirch", + "ghoc", + "dejv", + "lrov", + "hjdfo", + "iykt", + "numet", + "yktr", + "swjqo", + "ufowr", + "wbfvsa", + "eovtmbi", + "parwgh", + "zcqvti", + "pnxgz", + "kjtxpws", + "fsaned", + "rgjc", + "wgmnxyj", + "tqbzn", + "edpgqz", + "tiox", + "ovmtlbe", + "phcnbd", + "xibuswr", + "osic", + "qoxei", + "ofmylid", + "jhsi", + "ndpr", + "wghtc", + "yugcn", + "tbhmf", + "dmhuy", + "onkugal", + "mlhcb", + "wnpty", + "gntjli", + "rwhsb", + "jfqynvb", + "mlghua", + "ecgmrz", + "cdxu", + "cpafrs", + "pxjuvc", + "doqk", + "zgbkr", + "nlmgspb", + "qxvt", + "bupfe", + "ptiwcqn", + "xgpj", + "bwfk", + "ezirhv", + "sogfvw", + "yobaxn", + "crgdz", + "zugi", + "yhkmlwd", + "mgujhsx", + "uoiatw", + "kdph", + "sbmuy", + "wyqvsk", + "fymvjun", + "zoretl", + "bszxf", + "xcqgh", + "xicewm", + "xltg", + "xwrq", + "xbhn", + "nipxzg", + "ihznuj", + "cxjbmy", + "ksvuxw", + "fecizwu", + "kfjlth", + "pbxqr", + "hjxu", + "yifqo", + "somie", + "waxz", + "cwxdqn", + "jemxlay", + "xkumejn", + "wvfbgin", + "sidqo", + "khabczj", + "gfkodn", + "wexq", + "cwdvji", + "ijftoyn", + "keva", + "vqgi", + "knelgs", + "rxyidoe", + "kmhidxg", + "rlxhyad", + "yholfsx", + "wugk", + "waok", + "mofb", + "urvopie", + "fncatkj", + "mdoch", + "mpcreau", + "vizod", + "cigefsd", + "skqhaw", + "rjlbf", + "zlkrnox", + "yvobrpx", + "eghjlcz", + "ecdyjar", + "chpkg", + "zphgqim", + "cwojfu", + "taeo", + "okgzn", + "wudhs", + "nzxfwp", + "qmacxy", + "gkbw", + "gljypxe", + "bdefqj", + "fqaw", + "zqvgf", + "bkvzai", + "nqtsxf", + "ogmr", + "xfpya", + "lpeoxjw", + "stha", + "jlyisr", + "trvz", + "fbhn", + "nejkuzr", + "emwlvya", + "dehv", + "ydbmoif", + "ctje", + "yqlahw", + "lyan", + "rvmhk", + "vclpw", + "eypswhv", + "jzablcs", + "npiau", + "dutjc", + "gqwxs", + "mhary", + "tgcnf", + "tjhf", + "bepkfq", + "ylmoeih", + "exdit", + "ekjhmnw", + "sqzdi", + "zmvq", + "kedp", + "hjcrpmo", + "umfi", + "rsdw", + "edxwvu", + "shbv", + "oqmyui", + "jpbe", + "qyfib", + "mqzcval", + "gezdw", + "wjugxpc", + "qhtdsyr", + "bgmrx", + "qshgx", + "wybx", + "hknx", + "nckwz", + "dosx", + "nosx", + "bnkl", + "itamyso", + "irmu", + "letnf", + "xszig", + "ugryj", + "ygxor", + "egcn", + "wfam", + "bowkf", + "rqsw", + "uzetl", + "axkf", + "hlarwf", + "xwzj", + "dpomrl", + "enmo", + "qtvsp", + "nftiqwu", + "jghtp", + "apeg", + "fcbn", + "tpcvg", + "phyns", + "krvez", + "jxvibps", + "woes", + "vzjqx", + "gelm", + "iblvu", + "delkw", + "triwv", + "ewdb", + "plwjq", + "krctg", + "dune", + "fgjcb", + "gmxe", + "wligf", + "sikfldy", + "fdxgln", + "bdak", + "rhzcat", + "ghui", + "dnto", + "afvxpyk", + "kvirmw", + "jbltxh", + "sohtbpq", + "bpga", + "zaofgw", + "djnr", + "bscuxh", + "qvaxtiz", + "brvpaq", + "chyb", + "phvko", + "glzuh", + "vzgawce", + "nzpyear", + "lmnvax", + "alueifn", + "uzdpbt", + "zxnwy", + "dzsiafg", + "yqhgf", + "noir", + "ergvnoz", + "rpnhlm", + "usnca", + "ytrj", + "neod", + "ivroqyg", + "tojgyh", + "kpoq", + "szeubw", + "xdeluz", + "wcezp", + "thvl", + "fxaqbec", + "yrqh", + "okiv", + "nzsluq", + "qwgv", + "gluh", + "kdspy", + "xurw", + "zfntip", + "bkayoeq", + "qkblf", + "euyv", + "xedpl", + "grznlwq", + "lzmjir", + "jqbogsv", + "enjfpuz", + "igujzn", + "txhplm", + "cmbwdso", + "qbjxnh", + "vcwyg", + "xsteufc", + "wxomgq", + "yjelwpc", + "lvfqi", + "sbvyiju", + "hecw", + "dsrfq", + "imdaz", + "ebkw", + "wexqh", + "vych", + "oqmvgr", + "shav", + "vaosd", + "bipxfy", + "xdrsy", + "ohpdqk", + "tljuaid", + "ebcn", + "mazr", + "stqd", + "jgqbxy", + "ybenfmj", + "homw", + "hnrlj", + "cymfv", + "ewvpcjy", + "lrxosh", + "lrcugt", + "mkavc", + "iydekgh", + "kxpae", + "zvxats", + "twhbk", + "yuida", + "qtbzhn", + "lqcfs", + "opzfj", + "mqcxe", + "srycbil", + "pahnl", + "tiegbcv", + "wgfnma", + "vopu", + "iwoz", + "bcrps", + "yphsot", + "awxgrvu", + "xkup", + "obvd", + "slyhuti", + "bcinp", + "wnfyixk", + "ewczysn", + "khlwdmn", + "ezdkr", + "qwtl", + "rdaxc", + "vrclmfd", + "rykufl", + "erto", + "qofngzy", + "xcwab", + "zruwsen", + "govma", + "phqeryj", + "yuidp", + "gzejm", + "xusep", + "jthuq", + "osljyi", + "gnbtwqf", + "anwl", + "huljaco", + "wqtb", + "fjrwz", + "tlhgbn", + "pkxa", + "ztld", + "dnawzy", + "aeoy", + "byqsj", + "exbk", + "ixzbpnc", + "inyw", + "wdjaxy", + "zrsj", + "uloezw", + "jbyqx", + "htzqg", + "rwjaqoi", + "wagdc", + "khus", + "auym", + "ibwj", + "jzqi", + "kaqx", + "yonch", + "orncky", + "mzly", + "kmndja", + "vscneoi", + "pxwlbh", + "ngqfvrl", + "dhtn", + "oczw", + "sgxcm", + "zharkj", + "tmab", + "scgfzm", + "mcnywpb", + "giwe", + "aing", + "skywhi", + "wluzckj", + "ytrwvl", + "keav", + "kypx", + "ypvc", + "njtaur", + "cmgakyf", + "tbrf", + "xgzbcq", + "csqke", + "jfvhb", + "xnldcz", + "wykgdt", + "kwdrvpg", + "sbjpn", + "wtqmrp", + "xrfn", + "bihgm", + "vybkgx", + "guqmsl", + "amwtcl", + "vdxnobt", + "rgnopl", + "xgiuwl", + "wrzb", + "mlyoe", + "zukaxi", + "gjpr", + "xlnruie", + "ludr", + "hqtzi", + "epvnhsb", + "pvliehx", + "rcdb", + "wocza", + "ygxfanb", + "wkpvhon", + "ajnlfmo", + "tpyxumc", + "hefdboj", + "hwjqp", + "ngfojab", + "piovly", + "zuolxvy", + "xtvhbd", + "sfql", + "fhtj", + "fghiqde", + "cjaxdty", + "fpzmun", + "sjderp", + "hrytkza", + "xbagc", + "cwbey", + "kjnscg", + "shqc", + "wfavurt", + "lzfg", + "ikgcf", + "dkza", + "zearyd", + "ahuv", + "vbulh", + "wxvk", + "yjfren", + "fjak", + "psyjnet", + "lgzqo", + "wbmu", + "qxdkba", + "dkegv", + "kgulaxh", + "wlmtahz", + "obkv", + "wfmyob", + "aqyezv", + "xnwu", + "mseqh", + "yxslq", + "lrbim", + "rsaheyv", + "ijndafr", + "ymew", + "vcamqs", + "cwrgx", + "htuqmer", + "ktqwdrs", + "gycj", + "yqprxbz", + "szvjqrh", + "wgev", + "otrhg", + "pqahmos", + "askcyux", + "fhgjr", + "lhpkje", + "qamwd", + "qeuifmy", + "iqxlw", + "nxju", + "vgrtd", + "wlxv", + "fyvljq", + "gsbn", + "bujvft", + "aduejih", + "zqaxvtf", + "xpuq", + "niwvg", + "qeysda", + "plngb", + "fmwi", + "rmioba", + "wgyoufd", + "qhikbjc", + "hujzbyg", + "thaf", + "cxiup", + "vtdiy", + "kvaqzon", + "xuwhlos", + "avne", + "wuoyg", + "ikdho", + "cywv", + "oxuhqf", + "cpvs", + "urinfj", + "gvtdael", + "dyspmvi", + "rmipej", + "gcdzjbv", + "qtzd", + "mjcl", + "kvzu", + "gmck", + "whxsvk", + "bduhkm", + "sctuk", + "gkhw", + "yqxne", + "bwsi", + "ptbq", + "hqya", + "nljoqe", + "vrhxesm", + "doexz", + "nkuslg", + "bwjt", + "fghc", + "tiwbn", + "kqjxyrc", + "hyvisbc", + "spjy", + "gqmzu", + "hqlb", + "wbcu", + "vuyd", + "qngcj", + "hjtz", + "ejrhnu", + "fmvtpnq", + "agmqk", + "kiernps", + "wfoek", + "fgyd", + "lquwnj", + "yjuhf", + "fkzvqm", + "qoicnk", + "quhlfo", + "hodscif", + "aepqtz", + "akiho", + "lnwb", + "iyhvfa", + "xuoat", + "mgzve", + "fgnce", + "kicm", + "qpxmvy", + "rsvpbi", + "yspru", + "hzxdji", + "hwvx", + "vmrego", + "grwbft", + "oiwl", + "uxbfnzw", + "exuwi", + "fxzbhmp", + "foxc", + "hkagxts", + "naqktsy", + "txcyr", + "adtu", + "fkeruo", + "zqvypui", + "usrhoy", + "ctayxb", + "xfmaki", + "pceqd", + "xabtqme", + "kdowr", + "wrzdcfk", + "ukrlwoc", + "yagnzq", + "mtnvdx", + "vyxjm", + "dcbk", + "lakvyo", + "pafvny", + "bnlcf", + "seyo", + "iwdkye", + "egxio", + "mrkh", + "vdpyn", + "cjnr", + "krls", + "nxlj", + "gkjftp", + "dcnxpu", + "aewuovn", + "idxf", + "rkxn", + "nvzhbu", + "dholzn", + "rovkwu", + "ehiq", + "tngd", + "tlna", + "tdphw", + "igvy", + "xrkezdp", + "fdal", + "wpclk", + "vehrw", + "wzquhig", + "zqxlhu", + "mobh", + "kvdxcns", + "acpqx", + "ofviq", + "xhwomud", + "xgpn", + "hufs", + "tfkrzls", + "rnxy", + "ezyguon", + "dkqgsom", + "bxvf", + "hpgonfx", + "lbegdu", + "aekxs", + "adkul", + "ogwinle", + "mupgzc", + "gbfq", + "ethbc", + "hijy", + "zdxowei", + "vbdw", + "wrqk", + "kfcy", + "vykwbhg", + "rehd", + "wtib", + "sunrtvk", + "tkiqgaj", + "nectbuj", + "evpqghk", + "lsaxb", + "nkymb", + "ewixdg", + "uzxyh", + "kbev", + "ianxy", + "mthzynu", + "rpaf", + "wzxpyvf", + "ochbpi", + "ogarixq", + "rtmukp", + "nfox", + "slzqux", + "zibg", + "fbmvioz", + "hajvi", + "wlnxpy", + "wkeg", + "qdxzw", + "balzdvs", + "xegucfp", + "zngqym", + "frnp", + "weybgpm", + "qzufk", + "bozp", + "seytwz", + "gvrweyd", + "oghxb", + "etqlphm", + "japudf", + "fvpql", + "mivs", + "pzucv", + "rilpo", + "iyzget", + "cdtibhs", + "wjxd", + "icdo", + "znmdt", + "qxlstio", + "vhwudlf", + "pldr", + "kxoqld", + "rihygvc", + "hiywel", + "vamxj", + "fnzgpt", + "ystjgbn", + "vynut", + "hmvsb", + "itcqo", + "axqil", + "wtncfxs", + "choy", + "rwlxc", + "nzfrld", + "hzavx", + "jguf", + "cvyf", + "fxkybo", + "ypbm", + "fgltihj", + "jczw", + "xbvuq", + "yjbi", + "wqkv", + "sctyhx", + "plcv", + "wadl", + "aoneysq", + "gkca", + "fwvo", + "pljt", + "dqeiwnz", + "xavsr", + "qxwd", + "szmv", + "wvhoq", + "qntzwip", + "ktbdn", + "judcvp", + "qugs", + "rszv", + "scweyva", + "vcnx", + "tzpk", + "jmrf", + "tkmv", + "evczs", + "hswgfp", + "jhqc", + "pivdb", + "vqiw", + "zbtq", + "aqden", + "jvms", + "xclbnzj", + "smqrvt", + "hnraz", + "yifjhv", + "wvnpa", + "trmghn", + "odvu", + "orth", + "ntczb", + "mbsnixh", + "arwtqdk", + "spcrg", + "ikxt", + "utqivnf", + "gwpd", + "lctw", + "lubj", + "ablc", + "lcfejy", + "nypt", + "ehnxqg", + "jague", + "jrymn", + "uxslqkg", + "gxypq", + "wqdpc", + "qarpw", + "evjtfn", + "ibgotzf", + "jrdw", + "eawq", + "edyp", + "utoqi", + "wbde", + "vfln", + "zwat", + "wckbin", + "ucfnqe", + "npai", + "vuqmpwl", + "wluyvk", + "cbplko", + "huaco", + "xtln", + "zyqs", + "iyfz", + "ovzbytg", + "qsod", + "xamin", + "mesrh", + "lyjrs", + "ryqstke", + "jdsrcx", + "tkbw", + "stajyxu", + "jxkaey", + "datc", + "pfkr", + "flit", + "wfds", + "njtcihd", + "rvxt", + "flsh", + "fksgzq", + "wrpnqof", + "rpui", + "ypih", + "uivx", + "suztck", + "proz", + "ixoba", + "myspfh", + "snpuv", + "qevxkpd", + "tifk", + "bmkan", + "prjey", + "yzhom", + "imetuls", + "hargknb", + "tkxi", + "erqvikm", + "adptqin", + "ywzaitm", + "jylrsz", + "ytkc", + "oexw", + "kreqghm", + "qhvlucj", + "ntqsyz", + "lgfd", + "zdxtcf", + "pnhivj", + "bwkou", + "umzw", + "pewvr", + "divfc", + "favgc", + "lsue", + "knfduc", + "mqecjz", + "xvgd", + "vntjl", + "lhsudxq", + "fbghnr", + "bludfg", + "iwrt", + "acjgkh", + "fhnqlgk", + "eikh", + "zvhn", + "fvsamu", + "cenfjh", + "zrwg", + "kyebu", + "egsbvy", + "vrezj", + "pynht", + "ewvptou", + "shjo", + "ijrv", + "mhqt", + "stau", + "dcuh", + "gdwkqc", + "jycu", + "ohlj", + "sjcin", + "aken", + "fizn", + "kbdj", + "zmslpt", + "dkjtpa", + "jqfwsm", + "djshvm", + "gowbuy", + "owdyib", + "yasp", + "wxyktj", + "mwgrjz", + "johrz", + "ezufl", + "gouv", + "abdkzpv", + "exhtnuo", + "wzjr", + "uirwk", + "rquy", + "hcoy", + "dptomy", + "lgut", + "fgbzcy", + "fmko", + "obhic", + "ekzulrv", + "yxtd", + "zbct", + "kvqfgjp", + "ofugnc", + "uhkdemt", + "wlresig", + "arhqbg", + "zepoahb", + "npwxvg", + "riofgwv", + "kubfs", + "eqdsy", + "zxrfiup", + "tjdnfw", + "jegunl", + "bzel", + "whqu", + "konw", + "zncrhkw", + "yezpf", + "tskmqi", + "uwexfk", + "hvfpd", + "vacs", + "gukz", + "hwbkumz", + "yvogwx", + "uvscoi", + "rbhfn", + "gsjh", + "nrluqj", + "ezyqh", + "uzga", + "vsgqi", + "stdko", + "uhsd", + "lgrazhx", + "gjehfy", + "ytgzqwi", + "fcjwk", + "hxjb", + "ilys", + "saole", + "hksrp", + "tinz", + "rtvh", + "tmab", + "svxh", + "hgrf", + "adjbeg", + "ujlg", + "copanb", + "awoj", + "whtm", + "kphlbzd", + "ywghand", + "zwlec", + "hmto", + "bdqk", + "tvjegq", + "zjniobe", + "ukrcbdw", + "ncbmv", + "anhey", + "guyk", + "lvyj", + "oasz", + "faer", + "yoab", + "jbxuvls", + "rstg", + "dfsqtxe", + "mwcsbdz", + "xrmsl", + "qfznxol", + "vstdcgq", + "txrugpl", + "gxdh", + "eoknxjd", + "cjtui", + "nbqehio", + "awfnv", + "jeapviz", + "fzhaowy", + "zwiumj", + "qjrpsh", + "psjgr", + "rlhwecd", + "nsucv", + "xhtpze", + "fmkhldz", + "wfxmqy", + "iblod", + "cqelo", + "ogyfaqh", + "covix", + "pczja", + "kbqlcmv", + "giuq", + "kjzdiw", + "ismca", + "fmgx", + "ahte", + "ikjbhq", + "jwaqd", + "cahno", + "djtmo", + "bptqshg", + "lahocb", + "azlyn", + "kpoqudh", + "gpnl", + "jowsb", + "wosjlkm", + "wgkyft", + "lojxn", + "bsuwlno", + "akxjnb", + "pbzd", + "otmcpj", + "cfnq", + "nylm", + "avyixw", + "ikym", + "cplu", + "yvkc", + "crbf", + "kaosq", + "zbcn", + "lqbj", + "deuwc", + "jvdmuxc", + "gjruc", + "ildjktf", + "tbgrfsa", + "gtrym", + "hvxwtya", + "ecyzish", + "tuoyph", + "wivpy", + "whdrsk", + "cdhevp", + "lsaoqtx", + "azuhxnc", + "lntizuf", + "xzypqk", + "etdou", + "msudtiv", + "lzwkjs", + "altp", + "cnmavd", + "cglizj", + "tvohj", + "zqxnda", + "ajzply", + "myahst", + "ldtuxn", + "dyevika", + "oqfevz", + "jlspq", + "einkbh", + "kfhtx", + "xcmrjd", + "qwxr", + "yesoik", + "wlndy", + "pqfnywl", + "tidz", + "echfd", + "mdhsa", + "qkziar", + "czotlws", + "fvkcn", + "ocqglm", + "nblu", + "ebwzn", + "kovnla", + "rdnp", + "nceiuvw", + "lxur", + "fosg", + "ugpfle", + "absfyhw", + "dkavhi", + "zkvdy", + "qoljzk", + "axmorq", + "eshma", + "vqwny", + "tzfagje", + "riul", + "hjaktnd", + "ypciosg", + "ruigjh", + "wibasq", + "ycpmng", + "wfncm", + "ixegtq", + "jwiby", + "fqakdp", + "jqlptxy", + "bivn", + "xwelfn", + "vcsyql", + "vxne", + "cfrtu", + "yvgfa", + "lkuvhxw", + "iotnvhc", + "evnawb", + "nyjtrxv", + "bosjqru", + "hwvy", + "pbscr", + "gcaxm", + "qhxwu", + "vgin", + "ahsnzk", + "bpwhvo", + "ivel", + "nvqixgy", + "ipyt", + "podfr", + "qpvln", + "ilszhg", + "ptumy", + "wlop", + "vplh", + "dopjb", + "umekcx", + "wehy", + "vfpnoar", + "saefvj", + "dcrlojx", + "ysvtxpq", + "jphbxvn", + "qonwdia", + "kzopdx", + "btnzrmk", + "dnjqgr", + "lkbwda", + "yenq", + "iwnf", + "ysnk", + "fmncat", + "atckey", + "yzwgs", + "onhp", + "wjltkam", + "zfurqjp", + "nimsqac", + "ucndqf", + "cbnre", + "lsaij", + "yigj", + "nkulrd", + "zerg", + "vfcr", + "mxueys", + "qolf", + "ulap", + "astxc", + "kniqgbj", + "bgail", + "fdsn", + "kozu", + "oflunv", + "bqkgj", + "nmjqzo", + "xsovmkd", + "jlgfako", + "dfzt", + "dzjrsp", + "aftv", + "euspql", + "lvhxa", + "zcbfyh", + "wephu", + "uafkxp", + "gdczhxt", + "hqlcigx", + "jsuyct", + "wbsep", + "cmjxfs", + "ekwomv", + "krhpig", + "bfmg", + "dyquafh", + "hmcu", + "jdcpn", + "rhswnfx", + "rtgkynd", + "pghoesr", + "ngvyp", + "zepjfto", + "jgmuhz", + "dtsyaz", + "cjkmw", + "fckxmh", + "frgexaz", + "iyhcg", + "xdwtq", + "fvmq", + "rqkp", + "eqkn", + "jrhxg", + "onrjst", + "vcaq", + "rljvum", + "rwmln", + "tbwrzp", + "fjpwkz", + "nydk", + "dnwzi", + "ciozplh", + "hsjgt", + "wmdzn", + "broaek", + "eqsh", + "eovhzb", + "elqs", + "rylfsta", + "doiw", + "eymbans", + "chztl", + "ehfwlp", + "nhbqg", + "srilm", + "heqkg", + "ciyshfu", + "frmtcg", + "zdqy", + "qkvaxy", + "jlos", + "bxvepg", + "ybaw", + "osgrl", + "cgkd", + "jelk", + "vyki", + "lgpwjk", + "ifhskey", + "xaznukr", + "fgazub", + "jhmf", + "eowqk", + "rohwy", + "ylbza", + "hzsnml", + "aspeyo", + "btjgxw", + "rfbmxwl", + "wafesg", + "ipegbc", + "hpfdb", + "fqdbsj", + "gjpzedy", + "kmdbtyp", + "cpayuri", + "cdzujm", + "asrgdb", + "uhgzkb", + "vklebh", + "ogje", + "xiyfs", + "ortnv", + "wqhf", + "sdbhg", + "qdefzk", + "qwebfx", + "vqmz", + "pbqwrxo", + "ijvn", + "mtqlf", + "hklvo", + "phkdx", + "dmagx", + "yrzeh", + "xtokpv", + "tylin", + "lktgd", + "ypkug", + "fuxdsk", + "vsgkh", + "tdlg", + "zqwhxey", + "zysdglb", + "yqdo", + "wepl", + "hwuzmqv", + "qvfirnd", + "dcbu", + "kzvurp", + "ytsl", + "gnha", + "mzrfghv", + "baezgx", + "zlqc", + "crpnjim", + "qbuzl", + "ukrlysf", + "cebpmkx", + "ebns", + "asmir", + "hfkdli", + "awxi", + "oszwmg", + "xjvm", + "xbey", + "sclpah", + "hywkpai", + "vnaw", + "pmtcli", + "sixhrwc", + "jmiedzv", + "ebjqmi", + "ibvuakq", + "sgid", + "efdki", + "fepvdia", + "nhicpl", + "odnmu", + "azghkq", + "pnhj", + "cnhuew", + "ozavt", + "dpykbrh", + "hkft", + "dywtnkx", + "sjqp", + "dvwz", + "ueaht", + "vqlac", + "brxwi", + "xdhbprt", + "aqmtds", + "nltozf", + "whguz", + "kwrld", + "ilkauy", + "iucf", + "xhfoai", + "ptsux", + "lnxrdk", + "qgfj", + "piyjfo", + "yepjnt", + "otyruvk", + "hvagnjz", + "qteauhf", + "nyvp", + "jbmthd", + "hzclef", + "vnltj", + "uaoypi", + "rmzaut", + "ampxblg", + "djlzgty", + "zejfyhb", + "yjhqelp", + "omqjh", + "hjpa", + "mskfzw", + "lozig", + "apymqn", + "vpmezk", + "vnsap", + "zlirnum", + "zldgrpb", + "vwosn", + "mqxhb", + "twjm", + "dykbjf", + "ewzpcmf", + "dqmsyh", + "ytpeor", + "homerv", + "wkxrgd", + "bhxz", + "gwdpcl", + "fvbzme", + "ztvfqdu", + "mzefhq", + "fkhmxp", + "jkqow", + "nvwgyl", + "gfmjp", + "mlpukgq", + "urqfgkv", + "axhegyb", + "aybpdr", + "dekrcbz", + "ujshiaz", + "rgimv", + "rmwedi", + "iuxw", + "xhpo", + "mydo", + "mjgu", + "rhcfknt", + "gfitkze", + "ergmxyt", + "uoagsmh", + "tljcihb", + "aseqw", + "bjowia", + "otmdl", + "qwnl", + "oghcf", + "gztmo", + "pjnfgi", + "bucjqk", + "gcbnlh", + "fivnjur", + "aetsyf", + "tclru", + "wfstj", + "mixyc", + "gtbdf", + "emdtlou", + "eykorh", + "cdjht", + "tuvni", + "asutp", + "nqcfd", + "lhwtmb", + "korxfq", + "humbz", + "rsxif", + "nyzp", + "qflwtpk", + "bsfr", + "dyhtqpc", + "miysln", + "xvnuhp", + "csgjm", + "nexoy", + "gfzsro", + "etanjb", + "fwveih", + "vnkdxhg", + "zgbycd", + "iuxq", + "xaldkgq", + "ktfd", + "fioeak", + "njicxph", + "cfbr", + "kmihx", + "kucal", + "bihdpx", + "quofmn", + "gahbko", + "rpes", + "zfmutq", + "locfyg", + "spimenj", + "efuom", + "lsqpt", + "yafe", + "cxfn", + "lufydn", + "lzgno", + "kpzion", + "nxihad", + "nixac", + "mphsat", + "pghcri", + "lbwnfpi", + "imhg", + "sifulem", + "ebxcufg", + "fbtmvuj", + "tdjf", + "ljwsxku", + "qrdc", + "zjie", + "sdebgpz", + "ltpe", + "mtxplj", + "iracqw", + "syambvc", + "sqgf", + "karxgf", + "txcwnlp", + "ishgr", + "amfdopr", + "gcrtm", + "jpcrkl", + "lxmgc", + "txue", + "yjzo", + "pmux", + "rjpy", + "yfvk", + "kmxvzqy", + "cktbj", + "xtsvol", + "bkgup", + "wilgfto", + "scovwx", + "agju", + "iqpg", + "whfos", + "czoa", + "hapfk", + "irauwch", + "qdowijs", + "uzimdq", + "nmja", + "hrcwn", + "yews", + "uszk", + "vyhol", + "dmil", + "pjvt", + "dizolbk", + "puqm", + "wvuxy", + "mucyjg", + "xfvoe", + "romfh", + "zegb", + "nzdijp", + "ljcuk", + "amyj", + "xfora", + "gqbrou", + "tmgf", + "udnmqw", + "ethjv", + "frpdez", + "texwmdf", + "nbict", + "ybengk", + "hvtc", + "ohxlgzw", + "xtzlafo", + "xorbze", + "ikngtfj", + "urnvjsc", + "hkad", + "npwtbx", + "plyr", + "enhrwug", + "janvzw", + "zpjd", + "bfyq", + "jtmuxk", + "jfbvozy", + "ytix", + "saflug", + "feiat", + "qwcvlz", + "zuqlord", + "lcrgx", + "vxmre", + "ptjhfes", + "qrdf", + "uzkce", + "iatps", + "fuahri", + "ydqlpm", + "qwtleg", + "akxvn", + "heotcg", + "oyiv", + "vjxkya", + "psxeu", + "qtjh", + "pcfx", + "zabo", + "orhnwvf", + "pdbyro", + "znhbvxq", + "sxodag", + "pndyk", + "eqtdjar", + "uhmtl", + "abus", + "rqmc", + "hnsv", + "fcxlm", + "ljgnaw", + "kyavhmd", + "xgyh", + "pbzjg", + "svawy", + "rnftdo", + "zfigl", + "etzyujc", + "ftdv", + "nigyk", + "vefuygb", + "vaoknm", + "efvspb", + "jeixv", + "shjn", + "alsiu", + "qptymn", + "jgtpvr", + "folziq", + "twpm", + "glknr", + "ivkf", + "btigk", + "bwmtonc", + "gxum", + "wxypze", + "czdkyio", + "mlxisy", + "wtorpx", + "ulqe", + "orfxvpk", + "ipmjl", + "axmhwq", + "ybgfqcp", + "uylfxa", + "wdmr", + "sbriwx", + "wtxg", + "labyex", + "ngqe", + "dvfmik", + "pezq", + "coytk", + "scvmf", + "xyzwh", + "muptxnd", + "wymc", + "lvsnt", + "levhyok", + "nclvzxy", + "kzexu", + "ndzsm", + "hatmvog", + "iukvzq", + "nfrsb", + "qorm", + "tfvlxwr", + "ivcs", + "rlwdspe", + "peyori", + "cdprt", + "gjtzcpw", + "ivutme", + "mseq", + "enrtgb", + "rwszljv", + "vmyekj", + "arjuo", + "dazx", + "qpmcu", + "bvuoq", + "tfgvlh", + "syehb", + "ysdwu", + "mnaiv", + "swjk", + "qoepsmj", + "wujbdnz", + "hpcyzkg", + "qfzup", + "uphbl", + "ocdemk", + "rncd", + "hagivy", + "xvub", + "pnjigvu", + "xivwsbo", + "mekpltv", + "dilkab", + "nphcjwa", + "pjvleac", + "deaoq", + "frtyx", + "nywcd", + "amfrw", + "ixopac", + "nmezwi", + "uzga", + "rbgsnw", + "jpvih", + "pavobd", + "bpflyq", + "lbtx", + "qdefsct", + "pvowc", + "qkabm", + "lyosjvi", + "jukd", + "eqjb", + "xgpw", + "pvmc", + "iqfhem", + "fvscrlg", + "wqomf", + "ephnctd", + "simeyd", + "yqwj", + "ekabrtd", + "evyr", + "anugfo", + "gipuo", + "exyviq", + "sobq", + "gsjf", + "zbcfdr", + "chzmui", + "qiup", + "fsyhcbk", + "uswlrm", + "xqlbkmu", + "zsqkbpd", + "febcrg", + "iltagjs", + "zvlh", + "cfuv", + "yogpcv", + "dzji", + "vwfyo", + "tobve", + "qsta", + "icvnsg", + "xdcgsju", + "obzgj", + "zvsqr", + "fypxsm", + "kticm", + "hknto", + "rfwqa", + "gucfbwm", + "bcwvgks", + "rombxfs", + "vkstbxp", + "nbejum", + "yizhpl", + "wedcp", + "ljdug", + "tibyokf", + "dtgebhp", + "drlkm", + "kjqbyg", + "vabescy", + "fpxehcz", + "vcli", + "ilxzgs", + "bgqk", + "jupsn", + "askw", + "amipn", + "qwfkn", + "pbetqjv", + "wphnc", + "afzt", + "laxqg", + "dykox", + "owlgk", + "gndzocx", + "yowjh", + "fvgshia", + "nhkyzvt", + "ayug", + "vunxrs", + "wxlv", + "dtxlhm", + "mshrwny", + "ancpl", + "mqbsu", + "dhznqr", + "eqyhspt", + "opsm", + "jgyw", + "dpjmv", + "ypri", + "wlyvsh", + "xvlwg", + "zxrn", + "kwvhpft", + "eobvj", + "ndpma", + "bfno", + "jnpwdy", + "guvyhmq", + "clfswb", + "lepftx", + "cmxnv", + "stclaj", + "wheosq", + "znrek", + "zrspcj", + "hfzog", + "ywgmtiq", + "rqyzfp", + "lwimuk", + "dbyr", + "nuhb", + "cngk", + "vhtl", + "nclzjqv", + "ynxbr", + "gxepdbh", + "fikgb", + "kdlgc", + "hskd", + "ckyt", + "lxjvhb", + "zhulba", + "xwckfhr", + "ylsbxi", + "kzgo", + "lvgq", + "qbfa", + "ylcv", + "jpfonwx", + "gyvk", + "mdxa", + "qsigv", + "kfuw", + "qkva", + "gpklhin", + "rjfb", + "koljiwh", + "lywg", + "fcmi", + "ukhlzxw", + "tzuvp", + "vdot", + "zqydvk", + "jlcf", + "qflby", + "jzlbr", + "abyc", + "wbqv", + "oigt", + "asqru", + "rtlwcq", + "qseym", + "fsdhv", + "wgkycoh", + "ljmx", + "ujpoqm", + "avemu", + "kzrio", + "wloezv", + "bhmlwk", + "pbwszg", + "ncrvxs", + "mudzxw", + "aowdvh", + "hxel", + "orvs", + "sbugcx", + "wyqxjeb", + "ldstpxf", + "chojp", + "nhwyqb", + "nwqc", + "fzrwsvu", + "grynxh", + "uwzxri", + "kfuaj", + "npeyqta", + "vdcxak", + "zhqpbw", + "unxlzr", + "djtqcv", + "qngczwd", + "lwmkn", + "qfbwizl", + "hfmx", + "nxzdov", + "kbwshgp", + "mrzyw", + "uwkt", + "folbky", + "kjmn", + "mlzbar", + "bzjlnu", + "nrcpu", + "haxqpcy", + "ufjki", + "xfewuy", + "dhxo", + "uypsg", + "rqhp", + "sktm", + "omrltna", + "ncpwgq", + "twidn", + "jehqty", + "cjrp", + "unwz", + "pewqdu", + "bajy", + "faby", + "fmqlnvs", + "xywgazm", + "dklqebf", + "zxvfa", + "nres", + "xokmpl", + "jriafsz", + "ifqw", + "ojqrdl", + "zruckjb", + "lmon", + "brwcl", + "xzsb", + "fobwyn", + "uglprwk", + "crfm", + "kujlbez", + "gtdhoas", + "fjgvu", + "lzfcd", + "qder", + "atso", + "dnecfkx", + "angm", + "ncfd", + "fltna", + "gtvyk", + "amsxriz", + "atgny", + "rcuiw", + "wnxp", + "ykge", + "sley", + "gpuhjs", + "rkitcnu", + "vexhjbm", + "ubrq", + "cqnm", + "shouy", + "zersb", + "kywgu", + "gsti", + "ajxmzqt", + "tuwe", + "htvf", + "drayipg", + "ikpwv", + "xmtvrg", + "lequcv", + "cxkynim", + "dlghzsi", + "zpqyxuh", + "iyws", + "nkmr", + "wfvpy", + "nvyw", + "grdnpjc", + "welks", + "nwrf", + "gaeb", + "uhrjb", + "hvcad", + "kcpao", + "trlbud", + "rhfn", + "qvldiz", + "lbiwcv", + "urjm", + "cksqd", + "kcljtq", + "prbtyi", + "tnguksl", + "fjlbd", + "yqzghup", + "avrjimk", + "fjwcus", + "iecysmo", + "fthukzs", + "dntev", + "zkpt", + "jkcnqio", + "cmkiop", + "igchvaj", + "tbepwoh", + "gkwrxhz", + "oqxzufb", + "ksjng", + "fnjrt", + "lctaskh", + "qgwpyn", + "fusm", + "ouqyb", + "slcxj", + "dsmzt", + "tdicjug", + "lpznitv", + "pfbnkjg", + "rewsb", + "rhjeztp", + "urdc", + "jludrin", + "qztbsp", + "lqtmwun", + "ucwgb", + "tcole", + "japftse", + "emtzvoj", + "nmyopj", + "zmake", + "frhebo", + "aojwiet", + "nbhly", + "ikezuw", + "jmchwb", + "pfyt", + "lwvhy", + "qyvpd", + "ebwmkud", + "xjsmdkn", + "hlixa", + "kipes", + "cmvaz", + "lyvfdnw", + "ydkfbrx", + "ptkgheu", + "hcqv", + "drpsv", + "dmtspv", + "xqeiuma", + "cyzht", + "jyswiuv", + "hlmvqwy", + "wmszjil", + "yzeqgns", + "fhao", + "hwftiv", + "emucj", + "cedq", + "uvkfqb", + "dzwcm", + "fxwv", + "zrtf", + "trkfq", + "jekwq", + "ewsqcim", + "ydpcqvg", + "dqwgli", + "tpbfj", + "rjixebz", + "doepsq", + "haitf", + "zpcjvd", + "xtme", + "rfbgdsa", + "wkjf", + "ngsdub", + "nqzy", + "utxp", + "wmgb", + "velq", + "qkjxy", + "htuqbnx", + "sbdxj", + "dctera", + "juvte", + "iudab", + "flkhu", + "lhnb", + "mkdicgb", + "ihfe", + "earmnd", + "lscbkh", + "lnjuq", + "bwtrjn", + "krbq", + "kqylgbf", + "fxlcwrs", + "ybjlqr", + "sfted", + "ejmuwoy", + "rzjamyo", + "ezqsut", + "uadkig", + "ldaeun", + "abzsn", + "slcrj", + "smjpren", + "gxbpo", + "venis", + "okzqubw", + "ezajslx", + "eqxfst", + "chryl", + "qeygxno", + "gapvx", + "ntldhe", + "qfcinvg", + "voiwr", + "ejfor", + "duwomrk", + "bzld", + "uhfs", + "sfvueq", + "jdfrxg", + "zvtb", + "cduf", + "bvdlupr", + "ekdgof", + "rqdxobz", + "cvub", + "abxglh", + "lcoe", + "tuvbi", + "hmsbcza", + "zcqkfi", + "dbfmrx", + "arwyumi", + "poaqcs", + "ctbakqw", + "vwgsma", + "ckewr", + "hdwbln", + "pyfa", + "krzqy", + "wijgrqx", + "nskbrc", + "dnfyr", + "mivgjrn", + "lifoyz", + "rsbze", + "zacm", + "bozl", + "qwmfav", + "kingpw", + "qzhyid", + "tpode", + "zkjp", + "diyze", + "nhgcwxp", + "bqnzyrs", + "gtzyj", + "xrov", + "xsktwz", + "tphslqy", + "arct", + "mlnhrv", + "pxwmhql", + "hpjab", + "wljzmq", + "nhpaso", + "lvcez", + "wsyqel", + "awhc", + "hufcxew", + "xhibs", + "qmpef", + "qlraeo", + "natv", + "xemcdko", + "kjrivwg", + "jwvbof", + "ypjac", + "ermwyn", + "yzhbme", + "okimzuj", + "npybqo", + "cqxgzve", + "bviw", + "aukbcyp", + "yifnek", + "tsjxcpk", + "bcsdnf", + "eapcyb", + "quadn", + "wtgpm", + "vtjofes", + "wlycoeg", + "poniwx", + "tjqxd", + "hdsyg", + "toges", + "cswxydm", + "argke", + "mnaf", + "oyqer", + "tbnpgz", + "ngpkxf", + "qsbt", + "lfibosu", + "knibj", + "pnib", + "jtgm", + "hipqrg", + "fugsx", + "lsrqub", + "euhmtxq", + "wexu", + "rflsk", + "cjkgsh", + "lyoferj", + "aopne", + "jeacfh", + "gbpuq", + "qupcz", + "hugykwf", + "nrjf", + "vkizy", + "fwqz", + "lmagk", + "glshz", + "vfxned", + "bdjfh", + "yuprzcn", + "zvwx", + "mxputkv", + "elvrgj", + "zqfv", + "umikz", + "wedrpc", + "sekohb", + "nargd", + "pqihxev", + "zxriv", + "ygxhr", + "fgyo", + "akte", + "oxgupwc", + "kerg", + "oavh", + "qjbgas", + "yortmb", + "izjexc", + "xspmrk", + "qerwpi", + "kylc", + "owxte", + "vmtzc", + "zrckx", + "awzkxvc", + "xcfm", + "htia", + "qrdsvf", + "ajdqc", + "zptc", + "unkv", + "gziah", + "cwfukrj", + "cthinz", + "kobqade", + "wnalkzv", + "rbjfg", + "htlp", + "aftou", + "oywe", + "kvneop", + "xndfrlw", + "ugea", + "midngbt", + "lbrpxk", + "dlerfqz", + "feomdvq", + "hksx", + "nvoc", + "msdxo", + "grkdc", + "lyes", + "niflz", + "xgew", + "cfek", + "vypnkr", + "hrnib", + "asxme", + "kfzn", + "lejxmy", + "phegst", + "msbncdt", + "zvler", + "qwla", + "vnzqwol", + "vzslafe", + "mvwy", + "zfwuhtm", + "ysipua", + "jrduesb", + "xcdvzat", + "feqzs", + "wxofc", + "njek", + "tdusxrm", + "dbgjqcz", + "pklgu", + "ibmh", + "jofiv", + "krlb", + "umkal", + "zpmxys", + "lopanc", + "rizlwmn", + "mvctdqw", + "skpw", + "skbj", + "qmghro", + "fcekyh", + "dgvqrcm", + "zwvcl", + "vtigh", + "dzja", + "yzohl", + "ivdeqml", + "fuhoqx", + "fwnjros", + "xldjo", + "gvdoqlk", + "neqtfcb", + "tidsn", + "lrwj", + "yjdrv", + "ityp", + "smok", + "peiysfg", + "gyjhbi", + "hsknt", + "duaezmv", + "ltzirva", + "yuglh", + "ovin", + "uifq", + "zkpy", + "drmcy", + "aojlx", + "erdjo", + "sgah", + "rxeibf", + "qfzgolm", + "gquj", + "lndgaw", + "wgqzdlp", + "jquwz", + "klpycf", + "egrxuyh", + "mhndxy", + "trcp", + "umvt", + "elsotja", + "rkofja", + "qpbyw", + "kdrzpfb", + "iqvk", + "mxafs", + "bgfxwja", + "pibnasm", + "atobj", + "kvhj", + "dkxunoz", + "hviup", + "amfdex", + "rxfcsb", + "faky", + "lvrbs", + "qhlp", + "vhqtrol", + "edao", + "gxfslj", + "nfwyot", + "ofazgwj", + "bzday", + "pafquih", + "nsxvo", + "tbdj", + "spgu", + "trhqpb", + "owjv", + "inqueh", + "uzfovw", + "pglh", + "bvnagje", + "mhkn", + "yeqjkt", + "enaks", + "mnirs", + "oruqsv", + "fzravh", + "ibqzoya", + "aicf", + "bmau", + "isup", + "hiemvwn", + "ezfyso", + "hryjlag", + "uklhp", + "sqji", + "wzsgyqb", + "hxpywtu", + "cqfbki", + "fsduz", + "xcie", + "aybd", + "ptljqm", + "tjpb", + "enim", + "ckibau", + "nuxdyb", + "rpejya", + "zfuwcbk", + "lkbe", + "dkeulta", + "uvanc", + "njxlw", + "jhkw", + "cdjplub", + "miznh", + "tshr", + "klaswzm", + "bnrujgm", + "nvsfecg", + "phycfel", + "udjqon", + "ljqvnmz", + "akce", + "pxitzd", + "iwfl", + "efzi", + "qgpr", + "rniduj", + "xkdqm", + "wevynh", + "khnb", + "tkudo", + "kuefzdb", + "zjkrdt", + "dtuj", + "vykrl", + "wngh", + "vxodlh", + "dqwrmb", + "nvxbzlr", + "iweysbo", + "bfyrcp", + "qhbwg", + "kfxou", + "kvdhp", + "qufko", + "wsny", + "pwkes", + "vedrgbu", + "xvdy", + "othxpyq", + "aibz", + "txjkd", + "wevphf", + "xdwkqpe", + "muoipg", + "qtxfhlu", + "ovmnlc", + "gailn", + "cozla", + "luym", + "etlhxv", + "hlcjwsu", + "kovbd", + "fznivdj", + "ifohnre", + "dmyskp", + "mphe", + "cjpal", + "kabn", + "punahrb", + "kwtm", + "rcfyead", + "pzmc", + "zpkx", + "tuejmk", + "exajs", + "xfpd", + "xogcry", + "umsx", + "jqvzus", + "qexb", + "emgpow", + "hkeab", + "tsqei", + "opeyjl", + "kpfoblu", + "xdrwaml", + "vnyk", + "ekzwm", + "pgyzcml", + "zxvmt", + "zvfqdj", + "rcyhpek", + "ckbtidg", + "jadv", + "zgoulfk", + "ovfz", + "ianok", + "nchu", + "ymelqft", + "dzyuo", + "npmck", + "ckagb", + "gmczoln", + "ewtqvbr", + "gaojifp", + "nohr", + "zjkm", + "eznwvt", + "lrjinvf", + "grwmfza", + "efzku", + "runqkc", + "dpoxskq", + "fqegd", + "owucv", + "czigt", + "pmxw", + "bqkgam", + "sbyzhg", + "qkwbj", + "ycwk", + "raocmqz", + "pdlmojv", + "uqwkh", + "nkrhb", + "rqchl", + "ybzhawp", + "slnyo", + "oqwc", + "vctl", + "gnpeuv", + "znbav", + "uhjtvwi", + "mvfnswh", + "igvmzyr", + "tqwz", + "dlep", + "wmbtua", + "mitd", + "dgwn", + "rjpwbo", + "skdef", + "mrliu", + "fpjg", + "dzml", + "cegl", + "xbapi", + "trofspy", + "ljxcge", + "evdlku", + "smho", + "vrycf", + "qejanw", + "uwjie", + "qure", + "sacomg", + "pwmqdzl", + "lfez", + "gzot", + "dlvwgu", + "twefriq", + "jdskzvu", + "uaqdgt", + "iflrtq", + "wmrti", + "nzrsock", + "vxsf", + "yzxq", + "lxekrmu", + "jhsby", + "gifd", + "gbwtx", + "xreajhd", + "chvuig", + "vldjh", + "zteg", + "xiameh", + "ilrjw", + "rycsa", + "kqvoel", + "yovpl", + "yodasfn", + "hdsbfg", + "mxsiaw", + "ilbx", + "lhvrj", + "knav", + "nghylr", + "jsveq", + "yvpu", + "akcxfzh", + "giorxwh", + "bxyc", + "vkmxh", + "vedhur", + "jkgq", + "ltidex", + "dhefjk", + "oanibr", + "pzcbs", + "xsdwq", + "gjise", + "clse", + "yagpst", + "kwyq", + "gviwk", + "ogizhv", + "pdxv", + "vdlpigs", + "oigq", + "ejdfvo", + "zncq", + "vwzog", + "tzkscxd", + "fhop", + "lobc", + "tifcdz", + "iamywbz", + "gjkebs", + "saumxb", + "isope", + "zswfjd", + "xftrwh", + "vamouyg", + "syxbp", + "tcpgmkb", + "qclprv", + "vpger", + "gqwriyj", + "wehfbto", + "prbl", + "sglc", + "fvqmwt", + "zmiypuj", + "sifa", + "kesp", + "iyea", + "iorbd", + "fldw", + "ftqm", + "zklewd", + "hqgmdsz", + "lnzctvm", + "ntdfx", + "fdxve", + "hrevl", + "bpouw", + "jisp", + "zdujipw", + "umobi", + "bmpkaoi", + "kiftem", + "xvyo", + "iwzgo", + "hixdt", + "dmbjeta", + "uicqdm", + "wsuxyp", + "xgchr", + "qzwno", + "dwmacin", + "cofy", + "ukam", + "wailjgf", + "djzfyq", + "bsce", + "jxzyao", + "izxof", + "cwfy", + "qleh", + "gckhjbl", + "sfxt", + "wapoenj", + "zdbchey", + "kacorqp", + "xdnuobs", + "dsqgkzo", + "imgtvha", + "zhyep", + "fyureo", + "qavoup", + "dhxqeft", + "efiqpjb", + "kqgl", + "fkawsoe", + "dmntwip", + "jneaotr", + "dplck", + "gtqob", + "jedagpr", + "gzwtn", + "bktde", + "yegrphk", + "kqed", + "axtj", + "xgzueot", + "itwjg", + "zlxoukg", + "pvoq", + "poyk", + "owcy", + "nmgrevu", + "ouxzwbi", + "nkrtgwy", + "kqnhz", + "euofk", + "scnt", + "vzstb", + "xtvwma", + "yopumxl", + "ysbuep", + "baitwvr", + "fnrw", + "ousz", + "mszcr", + "lkzgxt", + "jcql", + "figedh", + "vdrbexi", + "mjbxe", + "tqpvwhe", + "eypsj", + "vsiq", + "hnkr", + "jutfd", + "mvtnz", + "afcjo", + "qwjgbtp", + "masx", + "cywi", + "xmfju", + "tfsgckj", + "mwpca", + "uyibjz", + "whsu", + "yixjv", + "ocqsb", + "cufzlv", + "vcphm", + "prnsg", + "fhlns", + "driewqv", + "uahert", + "azlj", + "bmlxjq", + "ozmn", + "gnzy", + "jwxya", + "dsvoqmj", + "cphokfb", + "jfnarbc", + "gwbsro", + "prdeqt", + "cmljs", + "stvdg", + "aptmq", + "lefmc", + "mioca", + "tskqixa", + "jgkv", + "ebqydin", + "ekmysr", + "vyxc", + "bdiutrm", + "zpgajxk", + "iauzcnf", + "pgzxusi", + "xykha", + "infjgqy", + "hcdyu", + "ghzsvr", + "ntpkfo", + "tvcpors", + "uogqcah", + "atxrmnl", + "zpouc", + "pxomqg", + "tlrgxzv", + "cderon", + "pgofx", + "evwfuo", + "zilxydt", + "ztdyr", + "vmulagf", + "nxqubkd", + "ucqtwd", + "ynui", + "dqpr", + "cnfol", + "chjyrmb", + "vwydns", + "twzpgek", + "qkxhfs", + "yknb", + "wertos", + "fwdriq", + "hrteyb", + "xstfmbw", + "jacipd", + "aqoglp", + "orkitv", + "ircm", + "mbqe", + "lqam", + "wevfad", + "azpmqh", + "sqbzxj", + "duhw", + "adtfqbi", + "pqgufxv", + "hzejpbi", + "gepmi", + "yfbe", + "fikac", + "ibqgvz", + "wxka", + "fcgbmkv", + "kduich", + "ujecdq", + "dgmkz", + "qwtrkye", + "nwamxl", + "wifh", + "utjszk", + "lyhuzje", + "lofsjgn", + "lwmv", + "onigfq", + "tnxsv", + "mjzg", + "tbgru", + "tuos", + "rsumgd", + "lnxdcyi", + "xvdti", + "twobjkd", + "ktwsar", + "nszv", + "gblwu", + "cknds", + "nmls", + "idvtpbx", + "feqwcd", + "ranlt", + "hrvbx", + "cjxfg", + "dlacy", + "qfklhj", + "hraombn", + "ivsnxyp", + "hfwzj", + "eish", + "cyzldm", + "fszhla", + "qxzhnbt", + "lpco", + "jpni", + "jmaz", + "jbdncq", + "jtpav", + "hxkzu", + "iblfeqw", + "doicrlk", + "ureaxhs", + "qkubj", + "pzvs", + "zhswatg", + "blaqeu", + "fquzrse", + "ezyvj", + "fnlhps", + "nyzs", + "rhtbz", + "mdgplxh", + "wbxs", + "hbglp", + "aqbsk", + "efpnjw", + "bprokgy", + "ushay", + "ntkocus", + "cidk", + "hdzb", + "zvfdb", + "wksdur", + "ptrl", + "avdu", + "kwbrzxo", + "pfhe", + "yckqv", + "dgyapo", + "owfdpnx", + "pkimqt", + "sxeth", + "yujac", + "rhjo", + "egfcd", + "vmkzfd", + "trgjmen", + "rhwoezv", + "onwjl", + "lbmczrn", + "gbfc", + "wiqcmo", + "karo", + "uznaj", + "ankwtey", + "hrauwjo", + "jgzy", + "zbqwd", + "oubjwh", + "dlyp", + "kvzqmnj", + "umtelv", + "fgnyuwq", + "wtrjh", + "dheml", + "wmeo", + "gstxz", + "rgim", + "cefvsyk", + "ecgwf", + "dlqkngh", + "prlgt", + "avjnpxk", + "mknbf", + "leomcf", + "nwsp", + "xiak", + "gerkj", + "fqacrx", + "qdgo", + "kepcr", + "rxuoey", + "lvcd", + "meuz", + "nfyp", + "ymuke", + "inoh", + "ijypuz", + "balxhk", + "uwphgi", + "ytdsajh", + "aqdrki", + "zefdm", + "mwhx", + "mivncrh", + "pujotd", + "jbhxyzf", + "bgacvi", + "rosd", + "dvyb", + "tlxbco", + "souwtlm", + "vhduc", + "bfjnw", + "jiozc", + "bjzltyk", + "ngodjx", + "yscig", + "ehtvaj", + "awhpvmx", + "rxykpc", + "eljsc", + "ckdxlt", + "waorum", + "ebpanov", + "ubmsd", + "gtfkh", + "iyjstav", + "lefbcr", + "alvuwy", + "guef", + "xera", + "xclhvdr", + "fdwgot", + "nbfh", + "bcjxeg", + "qjxrp", + "ghrwsl", + "mukxo", + "zjqnfl", + "dswn", + "mlvgrfe", + "vdhj", + "vdsaqx", + "czodmpv", + "qlezu", + "lygns", + "alcr", + "fogds", + "lpjxmqh", + "oliydzv", + "wtqze", + "sfyvpmd", + "olyjz", + "hzofiyw", + "vogz", + "wzrnlt", + "uwtybqc", + "gtiw", + "puhy", + "nvzhi", + "swnzef", + "ztrbscu", + "ypeo", + "mgek", + "efdg", + "dczhr", + "wjpyot", + "vylrqjt", + "kego", + "bkor", + "kaunow", + "okyit", + "vqpaol", + "caklexm", + "mhes", + "eugox", + "pycit", + "hmtcer", + "lmjruf", + "rwvex", + "agoq", + "gvda", + "gcdmls", + "hbwez", + "quox", + "zveig", + "cphfrwl", + "lwua", + "owjpv", + "nafsbjc", + "cgvs", + "figx", + "vazk", + "xzkdwgj", + "bawyq", + "zmvbrk", + "vbtr", + "pksadm", + "fkqxceh", + "imzaqt", + "tugr", + "ysvkmr", + "mvargdz", + "gzhbx", + "gdpetzv", + "dsxpgtw", + "qyeb", + "abrjhm", + "jblh", + "bypxw", + "zljfbv", + "msctau", + "nwizfyp", + "vyrejx", + "bkjxc", + "wfizkrh", + "zcrulj", + "ldium", + "oesay", + "pitysn", + "zavwe", + "dtknxpr", + "pwmjk", + "awtpvh", + "asiwocz", + "xvcdkj", + "tvods", + "uqpn", + "darwyzs", + "vjcanlm", + "fpakvb", + "sepj", + "rtdpx", + "kzdoquf", + "mohqt", + "oaxh", + "ydjv", + "rtamk", + "ckaio", + "qcophyg", + "batov", + "axvj", + "noqe", + "zbcfxup", + "fqahi", + "cvkpxa", + "gyqjukp", + "tkwdil", + "ozfwn", + "jzukqsg", + "dpkfqa", + "yxicak", + "ngcekd", + "hlqx", + "aibj", + "tqwfx", + "xdpowsb", + "erckozn", + "wklvq", + "jqse", + "hyzd", + "ujamzen", + "ovwx", + "okzblq", + "cgkl", + "dfutqi", + "jcztsya", + "jftpyv", + "obzguxf", + "kytgi", + "cmwbuke", + "ludsp", + "vhdmowq", + "dwyelmi", + "tqhnd", + "ruglx", + "wlav", + "curdel", + "juxrkm", + "qrbinhg", + "mufx", + "gbhejx", + "pfjr", + "zlqdf", + "fazgy", + "vpoq", + "yzeajgv", + "wpzgqjr", + "wvrytsz", + "wmyitha", + "izbke", + "wders", + "dzkf", + "guoicnb", + "ehqoin", + "ilfu", + "ligyjxo", + "elcjb", + "osqj", + "wcvny", + "rcbe", + "ntkyh", + "ysdnk", + "blyf", + "ylzju", + "kxyb", + "henqfu", + "bejx", + "cyqv", + "jkouzc", + "vbtz", + "uklfiy", + "weauy", + "cuvf", + "otazrwj", + "wefry", + "szcgoh", + "etokr", + "opzau", + "gcaef", + "tdmuhp", + "kvimurj", + "kcazquj", + "ruonejd", + "nltfa", + "yjncr", + "qzms", + "onwrcik", + "vfdpxtn", + "bzqi", + "vkyx", + "kvaht", + "wreb", + "fumkrp", + "qomn", + "wtfynd", + "qaguehc", + "beoi", + "gwvcien", + "xjlusw", + "hafkj", + "aobhcwu", + "lrebk", + "ynvmds", + "nhitw", + "mnlb", + "mbza", + "pvhj", + "feao", + "myge", + "gcuf", + "qzjnd", + "jptodx", + "mzsy", + "dfzj", + "hqwxpak", + "lpognk", + "jlfdtzi", + "hlmd", + "dcstvu", + "zfrhymd", + "xvwnbi", + "rmct", + "chyjqb", + "xzyloi", + "yngmcl", + "jgcpf", + "pfuzkb", + "eatig", + "jrun", + "fmyn", + "uclpeb", + "gqceonx", + "nafyp", + "tkhq", + "mdlhvy", + "qxlyw", + "ypihrzl", + "mnhtks", + "voht", + "vqijrt", + "fjqza", + "xznu", + "fonv", + "gfrow", + "bcgx", + "iluwnf", + "rbigejw", + "aibc", + "hsnyl", + "gsriy", + "xrecg", + "jthk", + "fjown", + "zjkwe", + "jwfdhc", + "jrgkzsw", + "zxbv", + "qtukyi", + "xhzts", + "bdrawo", + "dkzuq", + "oansuy", + "minykx", + "snfrod", + "onlxi", + "sukv", + "fxjdq", + "tosrnic", + "fxykabg", + "sgifjcb", + "sdgurn", + "rpcdy", + "zowu", + "ebrmfq", + "gmbzud", + "ydouqtg", + "qfsjp", + "szodyi", + "ircu", + "idgawlv", + "qxirm", + "yxipejt", + "lbtewio", + "jecfys", + "kxsu", + "cwfujz", + "almzthc", + "vxkfg", + "moqepr", + "gxmyset", + "pigd", + "nhvtaql", + "pxlo", + "wyupsgi", + "bmto", + "ejhgsbr", + "vgorzku", + "avpsjf", + "hokzr", + "ndqg", + "cynb", + "hyanbv", + "rxtugfm", + "jsbfiq", + "mlxqtzh", + "rhfkq", + "yxje", + "kdsnlcr", + "gxrvo", + "wtnjir", + "zisqdv", + "ihtogn", + "tunxzyo", + "pfckm", + "ndamv", + "kjhpef", + "cuieq", + "xzsl", + "epxwnj", + "oxrz", + "xueq", + "tvhdj", + "zjhmin", + "ygaopx", + "kcafs", + "dvlbqg", + "hpkj", + "ezgjfx", + "jsrcwhu", + "pvlbj", + "pesnj", + "hbxfkvj", + "ghnp", + "qscoej", + "wotlqv", + "ojkd", + "enpkaj", + "ocyr", + "rfxkm", + "pcubkie", + "jdhkamg", + "oyfegxt", + "yobjns", + "nmwb", + "vmrtk", + "qnybtjh", + "exhumvw", + "ahiykr", + "cteip", + "fwiyk", + "txcqwle", + "pahifk", + "rdhj", + "qxolkm", + "qkihd", + "qjhdtx", + "axvt", + "adwhi", + "bgtjd", + "wougdj", + "jzgnmo", + "koyvai", + "dexnla", + "jsqam", + "cptlsyw", + "fahgznx", + "svjg", + "kxiny", + "dqbyx", + "ucnmwl", + "mezwtc", + "dstxhp", + "pzustvh", + "pbcl", + "ylzmua", + "ybzrfuh", + "sergfh", + "hejmab", + "vbkaji", + "xgeos", + "ebmt", + "uwrijx", + "ibamou", + "outzfrc", + "emgzjs", + "agocdey", + "aqijcno", + "olber", + "isted", + "ewpctjo", + "nckd", + "buhgwp", + "fzhupql", + "axli", + "zqmts", + "oicjt", + "juig", + "xhymnio", + "ojyql", + "jiewvam", + "amxd", + "ktslxz", + "psyg", + "txveqr", + "qcklsmd", + "qmipx", + "lbpersa", + "iocajue", + "vqkl", + "rlovzde", + "bowt", + "evybshl", + "xehpfav", + "wreiz", + "olmga", + "ljwqozr", + "tsuezxp", + "chga", + "rgou", + "hrmtgax", + "becg", + "iezmy", + "jahmg", + "pflbmjc", + "ovrme", + "jpxsy", + "rdpkiu", + "nbxvpm", + "yiexlbp", + "wslfi", + "nlebi", + "jespy", + "gdec", + "feyjktl", + "dwkty", + "zyeamw", + "pwlvef", + "isfrc", + "fzgutio", + "jwexlpy", + "axcv", + "qbwalsx", + "uaik", + "mzeswr", + "whyqd", + "cftdh", + "tvboym", + "wubfri", + "pjkwxea", + "pqck", + "idvung", + "wdyrq", + "tjny", + "xrsaj", + "dimle", + "lvsgr", + "fuqdmph", + "jbdq", + "dnqkb", + "bczim", + "djiz", + "smuxlp", + "zorpj", + "sdjnpce", + "gymi", + "fhawp", + "azbhtx", + "ydpvzb", + "fewlbg", + "eujzf", + "otvmpn", + "zieuaxk", + "jpakecm", + "vmcoa", + "jxqwlo", + "lyewvn", + "aqod", + "bgxjrui", + "xqgjvbp", + "afwto", + "yqacrdo", + "upft", + "klwuv", + "wclu", + "gdxbzi", + "mpyo", + "ysnuh", + "sfvplzw", + "xsjio", + "faruck", + "ulikft", + "fdkig", + "pbeh", + "ufklm", + "ufrxb", + "kefybg", + "qlnctr", + "polu", + "gkpe", + "lkpgws", + "vfatpsg", + "dgqhio", + "dbiaepj", + "glpaco", + "yocgfm", + "ykzgid", + "kbng", + "hepdm", + "vcabrg", + "yuefkxl", + "dqzf", + "yxrfn", + "pjxms", + "oqpw", + "hdqo", + "ukjve", + "ezrcf", + "lmph", + "odlpikv", + "ostek", + "jxaypin", + "mori", + "qkvubxs", + "nbadl", + "cylwep", + "xyaqekf", + "rtae", + "knla", + "xzma", + "cmkl", + "ajuofg", + "uler", + "rzjlbq", + "umzeqwy", + "ancue", + "egryu", + "bzcl", + "gzhrf", + "jbki", + "dnso", + "upwrmv", + "nbjgd", + "tnpgea", + "rnlbptq", + "dnytqr", + "ogzbhv", + "fdilhn", + "mqdeyof", + "npgv", + "giyx", + "xmqcpi", + "meci", + "lnri", + "cfpunb", + "vwryhg", + "wijmn", + "xscdnov", + "gseylp", + "izjx", + "qujf", + "iktlh", + "scgfn", + "drjo", + "rhiyjm", + "wtfboni", + "xmurhpf", + "ndaeo", + "mxwraiy", + "cmqsl", + "ueioafl", + "dbis", + "eshtvi", + "kfpht", + "xhfzoaw", + "izumhg", + "kcti", + "mkbxqpt", + "kdxc", + "nozr", + "fxuyq", + "nzxiul", + "qzhyjn", + "mxvf", + "gnpzu", + "tsozclr", + "lcvb", + "nwrxdql", + "fxrdtb", + "sygb", + "luqm", + "tqair", + "sulav", + "tpncfid", + "ykmf", + "szax", + "aywis", + "xafdckj", + "yuiowf", + "qfsl", + "pwqesa", + "eyxqav", + "wxsyoac", + "qkruch", + "tqyzd", + "wbxda", + "fcbrw", + "edvry", + "wouy", + "nefrvlz", + "peba", + "skbu", + "jpncdok", + "xuojnzh", + "buydi", + "esciqb", + "kngj", + "lauvt", + "mvgwayd", + "dymbhz", + "olce", + "qiamzh", + "yapcr", + "yldgmv", + "zixjmr", + "xezv", + "utgabz", + "csgkadx", + "gkyjzb", + "twxbzfa", + "irsg", + "stoyz", + "bjdil", + "cqus", + "pmrya", + "hczdel", + "luanjk", + "azbrdxu", + "cehqol", + "mckpq", + "wtsgxa", + "vxumywq", + "uwxbge", + "itcgryw", + "uqwts", + "nwclbj", + "mpawnu", + "tohckp", + "mghwzsk", + "cumt", + "rdbthyo", + "ueicb", + "krlhwf", + "txhurb", + "ibsfzv", + "brxwg", + "pholkr", + "anbq", + "hfvryn", + "civy", + "olzj", + "xomidhe", + "alsg", + "snrcq", + "nigw", + "wkhcvn", + "opcz", + "heaxyug", + "qjis", + "iuya", + "duhtjw", + "reto", + "snwec", + "pyxln", + "iywcbs", + "wighlnz", + "goelpda", + "qesdy", + "aquh", + "kzabu", + "kaszcop", + "nkmw", + "himwg", + "lcog", + "zojim", + "pkmgv", + "stbdn", + "uclb", + "kvuj", + "sxpfwot", + "wfthejy", + "fwdmzr", + "ldyomfi", + "ojncyti", + "dnbipoc", + "eoqjpm", + "jkber", + "osuaizb", + "brtfcx", + "adlijw", + "aewcv", + "oqwh", + "gvjn", + "hlwfz", + "fjink", + "mealw", + "xyvzsi", + "eaum", + "kzcf", + "gaikfby", + "zkigrq", + "fukoc", + "ucqyjz", + "jidsefl", + "wrzktsd", + "rcpv", + "vxhbw", + "vibtqd", + "zwiubl", + "jdustz", + "odmhp", + "veishj", + "pvetfo", + "szpdtwf", + "tmobn", + "ievk", + "qgrbwt", + "cpzot", + "qfcyp", + "oyfma", + "faov", + "wyga", + "kircwpx", + "ykcuw", + "fecs", + "roix", + "thxb", + "ewkbtm", + "dbxh", + "pjeragu", + "cbvil", + "frywpu", + "asucnzk", + "uezgjv", + "auxbnjh", + "gxdczl", + "auiko", + "eoyinvf", + "urxpeth", + "uptzr", + "nfxtq", + "yfxsbn", + "iewgf", + "xuqr", + "kwric", + "mbhl", + "arewmx", + "tjyzewr", + "amzrot", + "fpirxsg", + "xbhojuq", + "qscjun", + "tupzc", + "extwv", + "rhbe", + "ofadxlz", + "rgbxn", + "kmofn", + "zhfisnb", + "cepm", + "soubpdh", + "bkyz", + "fnasjb", + "uelkxfh", + "bute", + "qyjg", + "euzmjv", + "paybgnk", + "enich", + "dlrx", + "uwzdtlb", + "fnmjktr", + "rjuym", + "nsbuxot", + "pwikx", + "dxocr", + "ogdv", + "wofn", + "dezuqx", + "eicm", + "upwv", + "jxrcne", + "tidn", + "egfbhzo", + "vubgwa", + "wcabh", + "acsn", + "tjhmu", + "xbsagh", + "bohpm", + "vsmd", + "hfedv", + "jcwydh", + "btgynho", + "ntqh", + "tzug", + "hkodcgp", + "epdr", + "dasnpc", + "oneiv", + "qubwnms", + "rbpye", + "abxycp", + "ixpzqja", + "ielj", + "aiky", + "qydg", + "fiypmxc", + "pmdw", + "uadwrf", + "gkim", + "tkldg", + "vyop", + "odfv", + "djro", + "tsrhymu", + "izemjo", + "zrdo", + "rgyqe", + "gzdkx", + "rejsc", + "yinl", + "cykul", + "yqtax", + "pcyt", + "tfeygdu", + "hjtar", + "yxzlak", + "cmkh", + "ufyl", + "sqiohty", + "owlj", + "vuyarz", + "ywenvch", + "uvkdhpg", + "tcmbosq", + "wtba", + "npjybzo", + "yxivha", + "phwrqf", + "plwy", + "kgvy", + "alebio", + "jxei", + "ahinoqd", + "hlue", + "smhew", + "gpcv", + "nqxadw", + "smxelia", + "heroqbn", + "gslzhqc", + "ctomrbx", + "hkcrdsa", + "lpdz", + "awmqov", + "itsg", + "xner", + "lpahxne", + "fcdkb", + "dhtoycf", + "ogxqrv", + "rulya", + "tanew", + "wlxypn", + "hiacn", + "mjxyg", + "ybmfl", + "hnyv", + "jfgilph", + "puaslgx", + "mdwlt", + "jvdnw", + "yweczf", + "cljmt", + "moczwus", + "tioef", + "sact", + "lnxfj", + "unzjmgb", + "xbpjzlt", + "qvhe", + "cheurpa", + "pxumb", + "zume", + "hpez", + "qmnd", + "rcuadgo", + "kftaurh", + "rqwhlu", + "hpik", + "szdtr", + "oryp", + "qmdgaf", + "niyr", + "txuy", + "obrsaj", + "kmrwa", + "gudt", + "munt", + "ujbfvld", + "hfepnxv", + "dsir", + "dswz", + "zfomug", + "hqzk", + "rupd", + "fmzsuv", + "stkp", + "btwxy", + "oncaeyz", + "qenrx", + "aohepq", + "yponszv", + "hpky", + "shjm", + "kulvaq", + "ygndx", + "xwykadq", + "kdjxsop", + "mgrajuf", + "ayxzui", + "bvalfp", + "jrxo", + "jvze", + "ivuxyz", + "yuaw", + "rgmiod", + "aqmygxv", + "urwg", + "rjufta", + "gvhf", + "yasi", + "vowbcry", + "hgieaor", + "zqlgf", + "razj", + "oplvgcf", + "gpkmsn", + "lunmo", + "eokd", + "snpalgh", + "mblg", + "ybqe", + "xvhnlu", + "roezstl", + "wzkotrj", + "goer", + "xhcn", + "bcpgmq", + "ndsy", + "kzfvnba", + "kcbdm", + "agbl", + "zkwgrj", + "zidj", + "upvetkc", + "musn", + "reybap", + "bocw", + "xkdfzb", + "hxed", + "goqul", + "nsri", + "jupfxz", + "rdlqfy", + "mikosp", + "rbgmv", + "xyfp", + "zyrfip", + "dhjgy", + "qdvgfj", + "prgfua", + "jnheg", + "olfre", + "ztfj", + "mbvy", + "bumizdl", + "zgndbat", + "gfdlaso", + "ruwgp", + "sndz", + "fljegbt", + "pivqfx", + "fmilea", + "oajfhi", + "nhmxvq", + "njbh", + "slhx", + "vfplrde", + "zwlups", + "nkda", + "mgvia", + "xpoevw", + "ombgf", + "pwubar", + "mayov", + "anrv", + "maped", + "fxuq", + "fnevi", + "hlqsrn", + "fdjxziw", + "gvwutq", + "otfhaud", + "bmuzk", + "qkgj", + "diebo", + "fsgba", + "xjoqgs", + "xcyogk", + "hvzkequ", + "tglyb", + "ybdqu", + "typxfcb", + "koac", + "hpzcxd", + "fcsvej", + "xpye", + "hrto", + "rjsv", + "kgvio", + "kboztq", + "gfnhm", + "jqxgnrv", + "ghcij", + "wuetzb", + "xrkas", + "qwlyh", + "etfvki", + "unlq", + "wzdqp", + "eqpvhi", + "cmsig", + "arleqoj", + "skuaqj", + "nljdyko", + "upsqwod", + "dtnqcy", + "civb", + "jctslv", + "zfgiocj", + "mven", + "zhcljm", + "ponhvwb", + "wifzju", + "fetj", + "wthkbxo", + "fhgrz", + "mzlex", + "dcyzfg", + "jidtxhf", + "uiwk", + "rlsmxw", + "sqcnue", + "vykts", + "jezo", + "wdcekzn", + "zeoj", + "bqcmpsw", + "nleaic", + "gwma", + "qhrutsv", + "hlodqi", + "cpsj", + "gidnc", + "usgkvt", + "thepwc", + "ivnfzsw", + "tdzfqs", + "uwbvr", + "zqgwsbe", + "ozlcyd", + "tqwv", + "rpjx", + "uminfs", + "yopxf", + "gvqbdtw", + "incufdh", + "aqcopr", + "yircgl", + "xnpb", + "teynuof", + "sqrej", + "xjbecr", + "hkbon", + "ugkyhz", + "fpeix", + "uvwl", + "ubrko", + "jwrblvh", + "qizowh", + "syjacwf", + "hydefa", + "hogt", + "knjel", + "npecxa", + "mafsk", + "cibfkz", + "zxyshq", + "xtfend", + "nowf", + "shmdn", + "ievxlu", + "wjzknfu", + "baqypt", + "yhmcdz", + "uigzes", + "vqwzgof", + "wqgmt", + "ecaft", + "esfl", + "vzaujsh", + "aizsmjw", + "lvuz", + "vgzmtp", + "efgz", + "bmfwvan", + "ptdul", + "tzkg", + "vufhmob", + "qsumryh", + "xzcyfr", + "mrzlfdk", + "algynm", + "wmqhygs", + "kderh", + "bemfl", + "cirk", + "yfebco", + "gjvm", + "itagyud", + "anfor", + "wbzhvre", + "dwtbp", + "xeluoci", + "ofipw", + "fkxzuw", + "jkifoz", + "xrywqpm", + "ayuvb", + "eijxsu", + "ptgkzd", + "irwy", + "murt", + "bqdjs", + "amucyr", + "vdfz", + "axmlqw", + "azwsrt", + "jadw", + "jbnld", + "bszcu", + "omjdq", + "aijxdvo", + "dbza", + "bsezpj", + "soknx", + "tpwnr", + "yrkdwh", + "amce", + "qtnfip", + "ygek", + "aybwgl", + "yoqbuka", + "vmei", + "wzolrp", + "pndceih", + "piqwdy", + "dcnbit", + "xvipqlo", + "cztd", + "esozigq", + "xwcf", + "knawqbv", + "exks", + "skuqrg", + "rfld", + "xufkq", + "dwvuna", + "udcrh", + "osytv", + "uhjnciw", + "aelkxq", + "fntgxps", + "tzemfy", + "obidax", + "wlpxmng", + "lysvtu", + "ugaelp", + "gnwlmao", + "qmzludf", + "qzxhi", + "veat", + "vusrntp", + "ncme", + "iflvybr", + "eztyrhs", + "ajwhegk", + "gwsx", + "atlzmj", + "purngxi", + "fdgwua", + "xhjmy", + "tloyn", + "zdftl", + "sltbphn", + "obnf", + "ihkd", + "dhfre", + "lpcis", + "xhvtrp", + "xjqolya", + "atovy", + "gkncz", + "xdmqt", + "xfihnd", + "xcqw", + "zoxci", + "rdxy", + "apgn", + "erzabiu", + "nifjrqz", + "rqefycd", + "wrksp", + "kuotxs", + "szdn", + "clxmwjf", + "qrda", + "ekags", + "rmwhl", + "sofk", + "wksj", + "rowpzf", + "jtgzvyq", + "pyfbk", + "mjrpuz", + "huwnyba", + "jxpmlzi", + "xpim", + "ltzokx", + "tzyj", + "nusqeaz", + "iphofm", + "vpah", + "dqjakw", + "pvwsz", + "gbklax", + "jyaelzp", + "tblfygv", + "ldkrfh", + "lpiz", + "nqahxwr", + "qjel", + "rajbt", + "yxstf", + "svnme", + "zixo", + "kiptuv", + "cuyf", + "mrsk", + "bwcv", + "wutvjgl", + "zylqrm", + "xqdrphi", + "oldrx", + "xupvgjm", + "qtzej", + "plgs", + "vzea", + "ybem", + "cknmb", + "hmtv", + "zkls", + "oqfjc", + "xflamt", + "swvngu", + "dlvw", + "irhtba", + "podgyu", + "tmpvqz", + "dfxe", + "vksecjy", + "sropvyj", + "uxqbve", + "hcfzprq", + "ywxibh", + "cgkvxp", + "wdleuhk", + "afkgbvl", + "lpjx", + "bnpgs", + "fydsz", + "ismeg", + "hdvbasg", + "aflkjy", + "bfxlo", + "fwlizc", + "gyuxlpd", + "gyobfw", + "pvjtcr", + "xdpn", + "atsbr", + "rcks", + "uftk", + "wupc", + "zfhmbt", + "uxyk", + "tgrvw", + "aspkx", + "nejp", + "tdnz", + "idkyh", + "snrkdve", + "pfcvz", + "epfk", + "tahiwf", + "lidz", + "evhoa", + "kfvry", + "hscevqo", + "swxtqp", + "qrofyps", + "qnvx", + "qswoicy", + "xsyrl", + "nyjlcp", + "lwrn", + "kmjv", + "rphkl", + "cuyawh", + "arqotmi", + "ekgs", + "fiabzey", + "rvabun", + "tzgkefm", + "efslg", + "exmqhpt", + "jtvymzl", + "lfqbyp", + "qgelj", + "tofl", + "szyi", + "ztbfd", + "vihn", + "xlun", + "ifdzg", + "fsqvk", + "kxnbvy", + "tgabed", + "natosqz", + "mfgbv", + "yvrcdx", + "pcnyv", + "tiobg", + "thev", + "gazmc", + "bwaonh", + "lzdhokr", + "ykruho", + "yunt", + "gbdrm", + "crbt", + "wrgfjvo", + "hvyxjg", + "vmjknxq", + "laejwxb", + "jfed", + "jlckfoq", + "dpil", + "ewltj", + "lpbij", + "bmvnh", + "museo", + "edgolu", + "kdaxi", + "vjrp", + "udjis", + "vqpeu", + "dyjzkb", + "sxnuhf", + "mink", + "diphfzt", + "sfugd", + "wulmio", + "umnqak", + "nxlkdz", + "bzch", + "ejdruyf", + "pmeosf", + "dqagkws", + "oqxveyn", + "tehlrbu", + "vztfhi", + "qjlf", + "egvbsoi", + "eljhw", + "agcp", + "tlnegf", + "pslno", + "rnteda", + "myjls", + "kvlms", + "yuabfj", + "iyndklc", + "jiytr", + "zukhta", + "rtqyl", + "xhknjg", + "zsiaen", + "yvih", + "qshc", + "rvfobuj", + "mjqpewt", + "oaepjfd", + "fzarbkl", + "xweufpa", + "agxw", + "thuxmsg", + "zdtxasn", + "hksmr", + "ylvdbzt", + "vpkds", + "uvrgnq", + "tanpv", + "vndsuh", + "kjcy", + "dpxg", + "luqn", + "xmgl", + "khcd", + "vtsiwxa", + "wnpd", + "migpc", + "cufs", + "gorx", + "qaicjb", + "ompqjrf", + "kgnhm", + "ohngs", + "mfdsne", + "mgfsb", + "yvguwim", + "mgqu", + "mcowp", + "gznwf", + "klnajv", + "mlye", + "cqbeogr", + "htsao", + "kbehagz", + "vbrh", + "zpov", + "uhdsbi", + "ulnb", + "agndxy", + "scdymlv", + "zqdkv", + "bnzwuel", + "nuwfpr", + "wepaski", + "jitxe", + "avntrx", + "udqms", + "ebdcjh", + "fczoyx", + "sgjxroy", + "elya", + "vmsx", + "ljqamp", + "jfzih", + "cqhvj", + "xsogq", + "qbkrygs", + "uyvj", + "bche", + "dflz", + "gdur", + "lqyubi", + "piznc", + "tghpsj", + "bufsoze", + "qscxjaf", + "vxmbo", + "sndo", + "lrgo", + "qjwngy", + "cqyf", + "eyoqml", + "ufqr", + "sxykht", + "avebnik", + "mdyfrv", + "zljv", + "yrsgotb", + "xauh", + "idouw", + "hjamcpk", + "dpvk", + "iazetb", + "pqcawt", + "cqslag", + "gnif", + "xlfdz", + "stmkrw", + "neucy", + "fhqia", + "drzaunh", + "xqmvjzk", + "inhgb", + "cdaytn", + "tkuh", + "nspqehk", + "spth", + "ndwak", + "xefto", + "sgfmrw", + "orvfqj", + "dikpwq", + "mklwyja", + "crqok", + "tjvog", + "lrmx", + "iyou", + "tgkndcx", + "gxqij", + "oivc", + "iwvpz", + "mrekdc", + "gzwcsh", + "lbhaqc", + "kvhu", + "bgwtja", + "kseufd", + "tiqjdf", + "rxjw", + "wdvmcp", + "mwtlav", + "lneqg", + "znxl", + "hevmir", + "dhagkw", + "aikv", + "zgvois", + "cnuzdb", + "biqchn", + "imfwej", + "hqzr", + "ymalwdu", + "pfnxrhk", + "bduozmr", + "lsbwe", + "jlbtcm", + "ucgoij", + "knrdeh", + "zcownhy", + "mpildgc", + "cyawdin", + "mrzskda", + "zbtaw", + "dczhtor", + "ptqaely", + "ypbti", + "fglnmtx", + "afmpyc", + "ogbtj", + "migfpe", + "mrixqh", + "xnml", + "btnxoh", + "hqutdir", + "qwdminb", + "apdi", + "qshxmjf", + "wsvtgak", + "vzer", + "mrqig", + "zkowm", + "lwsbvng", + "hagmtd", + "ystac", + "tvcahp", + "wlkn", + "nzuxe", + "oues", + "fsiwhk", + "wtvjpo", + "lmjvbf", + "mhostn", + "qmlrfek", + "wnsyf", + "hscux", + "qxnae", + "orgbza", + "yfgxeq", + "uvhljez", + "umfa", + "egpus", + "kuro", + "yzwnmpj", + "qctl", + "vdikbgo", + "jrwlyfe", + "futh", + "ajgczwk", + "cvzrjq", + "avboepq", + "tfqlbg", + "cwlds", + "rgyao", + "pyhm", + "cgewohs", + "biurcnx", + "glcyo", + "hpbklg", + "fmyengw", + "zofxks", + "vbopg", + "rdugt", + "xmnk", + "hocdlw", + "oginraw", + "pgnkxlw", + "prduqm", + "iagcdsu", + "fdqjl", + "vjohrsc", + "mqwo", + "mobgvxk", + "wecopm", + "xwktd", + "hizfrtn", + "kzbmo", + "acswxvt", + "zedv", + "nampb", + "sapvo", + "yqhezb", + "gujcs", + "vzbcil", + "dsoz", + "xsqyn", + "xdbt", + "lghnum", + "gram", + "vwnkil", + "ipbcke", + "imcslkv", + "rdwqks", + "rpgh", + "bmrdhyu", + "yvucqpi", + "mxbdoj", + "ybcsue", + "gbmqdws", + "otasm", + "fzklh", + "nlki", + "dicgaon", + "ghukr", + "wzmopib", + "genjucx", + "niqux", + "vjrefdi", + "oypegk", + "loydzqn", + "fvkhnzq", + "dlrbgeh", + "efing", + "hskya", + "mtgx", + "tjiuzqc", + "vfyj", + "wrlmhk", + "fwizp", + "jglqpna", + "pcbxi", + "iylz", + "cnjuhe", + "orkg", + "rkep", + "iyderb", + "wvgicpr", + "jtrmv", + "xbput", + "bqegcfy", + "gtqr", + "volfn", + "ptbq", + "sugv", + "ktdwr", + "ozudwci", + "ikyaul", + "yujzab", + "rmpd", + "dgeytx", + "hzdsa", + "ophu", + "gcpylv", + "gbujf", + "crkz", + "vcnl", + "euznhmo", + "mdhc", + "tmdpsle", + "fivmb", + "gnpdlij", + "qykuvap", + "nfutoej", + "jaksu", + "abiyoel", + "fzal", + "yruzi", + "tpogsqn", + "bwzuxkp", + "dhlsya", + "nzbowvg", + "qmrcdu", + "syfjtxo", + "pwoz", + "lpmkfb", + "rztwkc", + "zely", + "xvcregf", + "znbp", + "subal", + "afbyvum", + "lyfbh", + "qpdl", + "lxbz", + "lsanu", + "gxdc", + "rxqo", + "hltk", + "wluxr", + "cydgswk", + "msnvkjh", + "dosvk", + "jwzxnup", + "zewf", + "fwdoet", + "ubeakc", + "owyjhi", + "petl", + "amzg", + "wlde", + "xbvts", + "phznlo", + "cwnho", + "bnxkou", + "rmugo", + "fzdju", + "mqjib", + "tsdlghz", + "gokyz", + "bhds", + "mkhjq", + "xuzlrw", + "ygdj", + "acuhij", + "okge", + "laon", + "sghqvay", + "skvjau", + "sowv", + "uszfpil", + "vmwrdij", + "bteh", + "rzpdgab", + "ptnyrc", + "adgzio", + "qgmtl", + "fyazpw", + "pvgrw", + "koiysv", + "xaewcfh", + "uzancw", + "wpguc", + "nwqkjs", + "ljnht", + "pjuswrv", + "awgoxjt", + "imxso", + "yuocm", + "swikot", + "turxs", + "hacvri", + "xqlzb", + "krwlqgu", + "lvnu", + "sxqhbld", + "oeug", + "dctihw", + "jztdqhb", + "uvor", + "krxeby", + "yineo", + "hixpbu", + "oeanx", + "zldanr", + "mbljn", + "nlzm", + "frmzuly", + "movrket", + "erhsxpy", + "bkil", + "eupwkbf", + "ryakgsm", + "hfepwg", + "aqod", + "efstk", + "cernw", + "vpohf", + "qaerbzn", + "hiob", + "arte", + "ydmuzw", + "ibcpwd", + "ztuanyr", + "rzmhsj", + "nihg", + "hofi", + "intl", + "fkogjem", + "iwzu", + "kvmzer", + "vsxdki", + "hsjfnk", + "nelysa", + "etkfxi", + "xdcpil", + "vblknh", + "sylwc", + "cuxvn", + "ctyxoie", + "lyxre", + "mzywqec", + "xqcp", + "slcr", + "ntwfdi", + "qcxf", + "syhxmrd", + "stjnwqf", + "gmltpya", + "ztedxq", + "pncfthe", + "yqmrdbz", + "narz", + "whkd", + "hxlnqd", + "xptrzv", + "wrco", + "fwqxly", + "icapg", + "uhyg", + "wcfm", + "vqno", + "mcbe", + "xlrt", + "gluojk", + "mdvfsj", + "rauk", + "jogh", + "abxzw", + "gtmkncy", + "mlce", + "awmnrv", + "mesyjcv", + "axblro", + "tigu", + "huky", + "rohxjpl", + "alxpwcv", + "dmljet", + "hknlo", + "exguj", + "djoqiu", + "nzwt", + "goeqhsc", + "hxiabzg", + "bahiwq", + "keyv", + "pisuay", + "fgiecrh", + "phrxk", + "tlbscje", + "ehmy", + "nrfbie", + "vaufce", + "rqos", + "nafxw", + "ypmixat", + "zcqjmx", + "qepr", + "hgqdsw", + "majcusw", + "xnrei", + "iamkewu", + "zrmoea", + "myfu", + "kyfe", + "fbzdhop", + "jvfyhl", + "vhrp", + "reqjn", + "dshy", + "rvxfo", + "apvnmwh", + "gnxmi", + "mwdul", + "ueqnho", + "kazh", + "tvrq", + "idml", + "vbao", + "zljgoy", + "tbmwl", + "nlwfz", + "omnc", + "ikwrn", + "lgqhj", + "zelb", + "szbfkcx", + "igjmu", + "poqcuw", + "ipbckxr", + "fjzpu", + "mbxvpo", + "xrijl", + "gojiwel", + "rvtad", + "hqvbsuo", + "bdxicjv", + "bdltkgu", + "etuk", + "wqmxl", + "prikwnz", + "wfktxv", + "zadl", + "hftic", + "hcsq", + "hnlxv", + "rylukmg", + "qibdrx", + "yvsod", + "chtbwy", + "quegs", + "pnalvk", + "pbsj", + "qloy", + "bcmvo", + "rqcy", + "enygakv", + "jqip", + "nxhp", + "vqbgksd", + "itcwfl", + "wirhoce", + "nhfa", + "tldbs", + "hdmk", + "wfmj", + "jakq", + "knuy", + "oyuzpa", + "kwfx", + "ojixnur", + "fktpdv", + "kdazpi", + "yemj", + "yjusta", + "potaij", + "hkxoeut", + "uhdjf", + "woxel", + "bzfwx", + "penf", + "exvz", + "wcijde", + "obluc", + "azlwvog", + "fbxhurt", + "mfcez", + "dqyjrxe", + "xckbof", + "ehnz", + "dtbc", + "owyrc", + "ezuibds", + "zlfhc", + "afpvu", + "khqyv", + "tkaixl", + "nszav", + "lezrw", + "egci", + "sjzep", + "oeqscmz", + "vjnbxre", + "fbogp", + "ebgo", + "atekq", + "jizwnt", + "rdklw", + "wcamekg", + "cwvfgn", + "nxpchof", + "jsvgibf", + "ydwv", + "ptsae", + "chuk", + "ryfkbw", + "udjl", + "ehigbut", + "tujbgl", + "knryx", + "usyxk", + "voas", + "icstv", + "kwcg", + "njebgv", + "jsqz", + "jvkwxy", + "rogx", + "mftqiz", + "cwjs", + "qkcb", + "gwxfzcy", + "sxqog", + "xywqmu", + "itck", + "inso", + "soml", + "mcei", + "pqodse", + "mkbvytr", + "ufyh", + "akmv", + "wuty", + "xodtvfb", + "pusnk", + "qzsrmao", + "wfpuc", + "vzro", + "fzxscv", + "lngwb", + "bjas", + "maxr", + "xpsoqlv", + "zyetxl", + "euksf", + "xzkn", + "tjywmzp", + "zbuxnwo", + "ktumeq", + "fdecoxv", + "nsarv", + "dmpgs", + "dcuqx", + "obkayun", + "rkynse", + "wksfry", + "rjbcfs", + "nahoq", + "typsfa", + "qawsluy", + "lfta", + "lwimfzs", + "khnatrp", + "gtmpq", + "oiyxqs", + "rhakmzc", + "gqnzb", + "ycjksbi", + "xrdhwp", + "qzkgl", + "erhwna", + "cryvqjt", + "sdkgtc", + "pnjuqmf", + "decoa", + "rmbuy", + "xzqhe", + "upqk", + "ashdg", + "hifs", + "jnoypg", + "vicmu", + "rlqkziy", + "sbhc", + "tjwmkyc", + "xrbm", + "izmsav", + "bvhyu", + "pylwjea", + "tidgazu", + "nhzbar", + "pziwe", + "aqous", + "beco", + "nmsiy", + "yhqvt", + "hzngxw", + "dlug", + "gdotejq", + "bpnxcg", + "fkymepn", + "jphwdvn", + "fiwehl", + "fmodgry", + "cldv", + "yqxznbd", + "qnpe", + "uvrsgeo", + "apeknf", + "ldgih", + "dbtux", + "inspkbl", + "oujw", + "bclejvn", + "dthycnq", + "oduyhjp", + "srazkq", + "aqug", + "zxhbdyj", + "ahivdp", + "qmhlpb", + "xunt", + "qrezvx", + "wjayqv", + "ywvs", + "voqnus", + "rtgje", + "tpovn", + "xody", + "ycangp", + "mrkwzqx", + "tzuc", + "ainqb", + "bqvtfmp", + "dmsl", + "jmnk", + "uvpl", + "fvijohp", + "mvrbito", + "uksx", + "tvqkix", + "iwapxyr", + "lfyazt", + "pmtezg", + "ogpzyf", + "ljmisuc", + "gnzbeu", + "lvof", + "faxwkym", + "pkjigyx", + "whjy", + "mufi", + "czmah", + "nhwcxz", + "ehskyg", + "qrwznca", + "jsrce", + "vbayc", + "ycrz", + "jkro", + "xzpoi", + "jbfdsqx", + "mdogyar", + "chdoxvg", + "nwfp", + "lsjtq", + "grbnam", + "lunbv", + "bsrft", + "kanfv", + "wvrftep", + "xhmuo", + "hxfny", + "tdeaxur", + "jknq", + "epxovi", + "idbrc", + "iykdchp", + "idhbe", + "tkpsgel", + "unqrc", + "rexlipc", + "hzbyav", + "yaclk", + "eokqznf", + "jnamp", + "lzcbdv", + "zgufays", + "qreadko", + "fihlp", + "ifrmu", + "vzmhn", + "qwzf", + "bmokv", + "oealdbw", + "twpd", + "sulgrpk", + "adhv", + "hmjiz", + "cyoxku", + "lbxph", + "uwhjybc", + "uznorwp", + "bjvql", + "nrmxga", + "pufwdcj", + "aurqfxn", + "yfbn", + "jbxz", + "haswu", + "jyoq", + "qflky", + "lxts", + "nxics", + "dmatgkf", + "mjqayt", + "txmfz", + "octqr", + "yewsp", + "lzag", + "grdcihs", + "ydvkab", + "vuiy", + "rbpdnju", + "pwyihze", + "slhj", + "izgcpbq", + "hulqcyf", + "fzvonc", + "fetyv", + "gcmxsje", + "nxgz", + "uyrxgke", + "eqtwfrd", + "zhdr", + "dytvuj", + "mlufc", + "iqplkf", + "pdgx", + "fhwqa", + "ohxmy", + "sjvpto", + "wsuoi", + "fvtiwzh", + "kafmvxq", + "wuqtyz", + "vkerc", + "kowu", + "idxrgwb", + "watpgm", + "cxhn", + "gelzb", + "tlyhrns", + "fentix", + "ofuq", + "ctvlef", + "wicnlz", + "woigy", + "frzi", + "wdqlyt", + "yitl", + "jrvi", + "qpzsd", + "mefkj", + "drto", + "ejts", + "uqtwlp", + "bnkl", + "cbprsvf", + "avhd", + "uwcx", + "oeruh", + "yekxqcs", + "mtgy", + "zfbp", + "zjawsit", + "aophs", + "dnbkpu", + "nvqtxo", + "wqnxe", + "nqlowas", + "ezgr", + "gnchra", + "kshaq", + "lhbfea", + "zgyomha", + "mbwaf", + "rlpdzqn", + "jybqm", + "amzuks", + "fxrbl", + "vuway", + "ekdmpc", + "mudw", + "ywsfz", + "ewkzsd", + "gokv", + "rsty", + "nfceaty", + "hxzgd", + "zbewqpo", + "epiblzm", + "cpvoyms", + "suxlnhf", + "xlghbo", + "aomltf", + "cepmqtx", + "kiyx", + "vnxqyd", + "ntqhrip", + "gjwidxo", + "cjirvb", + "novsgbt", + "aegzrs", + "arvflzg", + "vufgksh", + "ezmgtc", + "hixo", + "syxkeip", + "geylmfc", + "umbt", + "ipgke", + "polamg", + "mzqdb", + "ybilkdu", + "gjum", + "okpunz", + "xqus", + "uqdr", + "rduvkac", + "clgvrob", + "srqkhfm", + "qsui", + "zxfbosy", + "yaohi", + "nbsvuxh", + "jupnfz", + "hgnzukl", + "rpdbgs", + "aejhfut", + "zljdsp", + "loxycwj", + "bwko", + "aimjkwd", + "untfso", + "hyavnmw", + "dcjnra", + "iokxur", + "viwgulh", + "lgikrmt", + "ywoszah", + "nwmh", + "vnet", + "fani", + "tehwg", + "bkijstd", + "osbr", + "qlydis", + "hdkgzx", + "mblxgk", + "yracipg", + "juekan", + "zmgtf", + "smylva", + "rikbsx", + "fxcy", + "shtxgz", + "wplsmxk", + "ajbwi", + "febhi", + "eqlr", + "jrkt", + "ywvl", + "xvfk", + "wivrxsl", + "nhao", + "yubaqsc", + "lqepk", + "jesdv", + "pqwbe", + "olge", + "drulkz", + "edkjiy", + "mrtczb", + "qumwdrb", + "qbgoi", + "fluvweo", + "tzau", + "zcwal", + "vnbai", + "lripdys", + "ydbn", + "eapwgyh", + "yjwx", + "aduvgh", + "ewoyrp", + "ukje", + "ndhxrt", + "uojh", + "jualxsd", + "tsfe", + "zhgl", + "rywmp", + "ngcj", + "tihrfsb", + "hgma", + "pnuaoji", + "kihprdx", + "kcph", + "dqgch", + "scoeu", + "toqcb", + "cfnue", + "urfhw", + "kmartp", + "xlactyk", + "ranjhd", + "kena", + "ymlsaqj", + "bmejc", + "zgqjsk", + "gldak", + "jtiem", + "jzlv", + "hknqrz", + "ceolktj", + "npzaqfl", + "rnhdu", + "tafog", + "aitjh", + "uaimjt", + "ldjyi", + "hgxruvj", + "acqkuio", + "snbxaez", + "rgano", + "ajxolt", + "gwbr", + "cxma", + "nbgouw", + "cdebly", + "klui", + "xqyjnl", + "gdnqm", + "helqpt", + "ahrwu", + "hcsm", + "npgj", + "nrhbsa", + "ruxondj", + "kvhbmto", + "iylj", + "rktdf", + "sbcukx", + "wrkjcx", + "xvskyt", + "zwvq", + "qdfzvjh", + "epvht", + "jzbkf", + "dmxflst", + "xemv", + "xfhvj", + "qsgk", + "zkxa", + "tkxb", + "cpnlyzr", + "waxgnco", + "yeckznp", + "lzsc", + "jxbdce", + "xilnmkj", + "rkjtq", + "jlpdoi", + "kgiujdz", + "yogxha", + "zjqnmg", + "cziy", + "igrm", + "gzanp", + "uwhemx", + "vbyc", + "hfavwo", + "uzsetkn", + "uras", + "stxwgl", + "dmpkah", + "dxspag", + "fytruwl", + "jqnpdkl", + "vcpxr", + "wiuqds", + "myukl", + "mrjwekp", + "sipb", + "opiqcsz", + "cdqxejk", + "hmkrlqp", + "azegh", + "mqigtrv", + "djzx", + "ienr", + "dlrm", + "twjzb", + "wajfnsr", + "ghzqsjy", + "hfgt", + "ierqugk", + "edtwquj", + "kdlvpx", + "yrgnobe", + "uxgswh", + "kslvrwn", + "hamp", + "eunfasv", + "pminjyr", + "ihop", + "vwpj", + "mdtxuks", + "cxjdbsp", + "lhqd", + "xgvq", + "hyldun", + "orgtwe", + "eswfyng", + "cigxw", + "jdgwkpu", + "kigonm", + "bkwrfi", + "snmohe", + "brfgow", + "vnxepg", + "nkrut", + "otxrgm", + "qpbi", + "pqdaozj", + "irltuq", + "ejrsd", + "svyowz", + "sqdaxlj", + "qxasy", + "qmvkgwr", + "tlkom", + "gsdl", + "snxwyg", + "redkzu", + "sqtnuay", + "xekc", + "ixgar", + "gwsqohu", + "dkqxhys", + "kuhn", + "xganbh", + "jcth", + "xrfzq", + "zlrimf", + "aogew", + "pvnw", + "gxlfc", + "hbxsn", + "rcpnb", + "kvuqj", + "ntjzhpu", + "rtzf", + "hzmdxvc", + "gcexzh", + "ntkxd", + "vrbjex", + "qolub", + "mjqw", + "mdkz", + "ezih", + "yzblfe", + "uynmh", + "gxlf", + "honkcr", + "gpcjhd", + "vkbdsa", + "cltjfv", + "swovhyg", + "snfwcj", + "jeods", + "gedpl", + "ldnqboa", + "vanm", + "zyum", + "tnpxla", + "wgkrp", + "dhaepbi", + "rean", + "jdsf", + "etulxc", + "bzri", + "gbzjw", + "bqwiymr", + "durxs", + "lmyvfz", + "kxnfew", + "thjfwn", + "rhgwud", + "hvoqcjs", + "lrfa", + "rleqbw", + "vlkjh", + "mcwaufe", + "cubhx", + "avhio", + "mrvtqo", + "bmgoa", + "eivqy", + "czkyp", + "stbrwa", + "azsjr", + "mkdnv", + "tvarb", + "iohkqu", + "aehcbid", + "rteqgfb", + "ycrnel", + "swtky", + "vqpxbhl", + "xpluos", + "vqwfhu", + "sxqcwa", + "gxtiwy", + "haucobt", + "oxtpgi", + "gjish", + "hdgwj", + "hmda", + "yvsnpmd", + "lqipm", + "tkfmbd", + "nzepbaj", + "kdysagc", + "woqvr", + "bwqid", + "tolma", + "wehylmu", + "abvnyz", + "qnapc", + "ckgxwt", + "cjlsinh", + "sfamv", + "xyumcdz", + "jqlysan", + "xvagwd", + "fqkpae", + "lsixctj", + "ueksv", + "ruozjm", + "eqcmaf", + "citlwzk", + "nbrzqwd", + "rjob", + "vrwzpd", + "hckq", + "cbxikvp", + "hcgzms", + "sdyjfm", + "kvsnxg", + "vbtcmo", + "woxjce", + "pgeaxh", + "terk", + "zntdq", + "ncdmvg", + "xuwp", + "lrcjyw", + "debq", + "dpozg", + "ebcd", + "xkwu", + "umpfoe", + "fisal", + "hgnbjq", + "orjka", + "prbof", + "tlvbwp", + "uvjspbt", + "hgjx", + "bxpz", + "heawuy", + "xeskjcn", + "cqkivyz", + "nhcvm", + "itldg", + "nvxla", + "arjbm", + "qglmwb", + "hmjylc", + "qpmyitv", + "yelv", + "tfwoa", + "wvxcm", + "qloi", + "wdvfe", + "nzlhvob", + "drxlpf", + "ouipx", + "ijsx", + "jaxtmcu", + "muqr", + "iamfde", + "escvh", + "rtvq", + "gvnif", + "qngyp", + "ckotx", + "ghwjupy", + "iadm", + "ufwqjc", + "ufgojwy", + "zirx", + "aebkzot", + "bxny", + "fkeu", + "ctvfqh", + "xkelwn", + "mwjvs", + "cglwpam", + "qaozsjg", + "kjterbg", + "xsjcv", + "imky", + "pqwixd", + "lafu", + "kquo", + "lkacbpi", + "jklvu", + "oigc", + "xhzm", + "szik", + "hngjfo", + "kcfzdja", + "owszu", + "bgepy", + "cveprzb", + "jgypqmv", + "gljywu", + "aogwbsu", + "rctwnse", + "wmqfh", + "exgm", + "cuzelt", + "yatco", + "imjde", + "nxzbpra", + "dhnzlk", + "ykblt", + "ykqamfx", + "owqtkr", + "eblxutp", + "bkofzt", + "empvz", + "bdjzy", + "talqg", + "lcntj", + "dsbi", + "mivyhs", + "dhxjbe", + "tyjfbl", + "yfjtxg", + "uqhwr", + "oyki", + "mbvnro", + "gxvofh", + "iksglpr", + "zjbqucl", + "vwrfpa", + "wifkq", + "lbvmtsx", + "zeqb", + "xgjok", + "hbtkm", + "iahpb", + "iudsl", + "bqta", + "fvqh", + "cmgt", + "ofhtsge", + "zrhwju", + "eysl", + "coxzgdt", + "fknam", + "tvayed", + "hknyq", + "xbik", + "tbwryes", + "tlkqhoc", + "rvdj", + "lefi", + "tcrmw", + "jqpdz", + "cwinxe", + "wuvhkcd", + "awtqron", + "oiay", + "ioym", + "avuj", + "xemvsp", + "hnpuayk", + "qzekrjy", + "awfgut", + "bwmuho", + "cuinv", + "vhmdjry", + "liwerf", + "bcsorhj", + "iugwj", + "opdjclx", + "rohx", + "hmjb", + "gfdny", + "gcaxez", + "bgiq", + "rwqdmja", + "kgue", + "eboclmr", + "hgxs", + "sqapd", + "ptmracs", + "vaocnl", + "cdmofrb", + "vzyeto", + "uxqdtbj", + "kpnuj", + "zeigk", + "hdygk", + "jbhrpx", + "njku", + "hlen", + "kctejiu", + "gjmsvqn", + "xert", + "ylrpzd", + "uiqopm", + "orbt", + "guhfs", + "thqm", + "fbdz", + "jifck", + "dcwg", + "wkprm", + "twzsd", + "xvuscd", + "jbgoeqp", + "tizgmk", + "wfxojl", + "hvkfljc", + "iqfjc", + "ngea", + "owapndl", + "azveou", + "qsearv", + "ckznltj", + "owapy", + "yezg", + "tsclzgn", + "exlpd", + "qhfpmey", + "szjrnw", + "xuvcth", + "boqsm", + "haeplt", + "jizgdt", + "bwdause", + "rjuxmz", + "xckhua", + "nuxchfo", + "medqa", + "pcwjubg", + "rdov", + "mxecv", + "lfwyxnz", + "ntcr", + "ohve", + "mhrcd", + "wmkltq", + "hfac", + "wkgyxmq", + "vrwtlzh", + "gakd", + "hvlt", + "anfr", + "ocfkgt", + "xbrp", + "skwzl", + "qptsabh", + "qmhxtuw", + "hkfj", + "jdrwsat", + "bnyuhrf", + "hlngdqv", + "qenrtm", + "cszqwfi", + "pvgy", + "drbvcy", + "tblaiq", + "jcnu", + "ftmroe", + "lvajnze", + "tjeoim", + "xqho", + "kaym", + "nwtl", + "fqkhrv", + "lmto", + "rvhba", + "rzil", + "vnam", + "katlhx", + "midnq", + "ifblht", + "apwh", + "otglmx", + "hnykpg", + "wnrxua", + "fepxw", + "eavkr", + "dthrz", + "oelimh", + "jmpvnc", + "ewmzn", + "ctdhwk", + "opcmq", + "guaf", + "rtlhu", + "fmuzty", + "mluz", + "kyplsh", + "pofnek", + "kwnhslm", + "euwj", + "bpavu", + "fctayrv", + "hapwb", + "bhcnqxt", + "bpqcd", + "mbiarzs", + "lixn", + "madgc", + "bvoprix", + "qzsi", + "qybz", + "ltfd", + "pqwtdgj", + "mshjn", + "afxbi", + "dnyx", + "oirqg", + "msyqdh", + "buvtsx", + "higfcyq", + "tcom", + "nipv", + "vgcwkq", + "fyue", + "xndgula", + "khbmrqd", + "xzjvgma", + "hlpcbvg", + "vytkgie", + "nurvc", + "zosmbi", + "umiqjk", + "hcpx", + "ihepznj", + "ypdo", + "edivn", + "moiar", + "rwpyhu", + "vuor", + "eohmc", + "uljb", + "olqtrfa", + "ghpqtb", + "tfpgjkh", + "duytp", + "tudaz", + "qwtpa", + "jnixhka", + "qfxtelz", + "nujc", + "ajlwxp", + "qxaolrt", + "jhbyi", + "demgjkw", + "zneds", + "szjqcy", + "nmfw", + "kcmlib", + "iecylan", + "zkbvc", + "pnbi", + "gtquaok", + "bkehsro", + "okgrfxc", + "aqgjim", + "lickrv", + "mhnqige", + "apsjh", + "pswtz", + "dvbykrw", + "nicq", + "rxfh", + "zqiogyv", + "bksauq", + "zqkmc", + "dlnvx", + "dbgux", + "tqwix", + "eolsj", + "xcag", + "anlr", + "cgbtjze", + "dnkcxzm", + "jeacoz", + "wduv", + "kwtn", + "luithz", + "cfzyq", + "duvxoe", + "xfqzca", + "erlj", + "tjwshrg", + "hqdsrbe", + "crezp", + "xeiq", + "mvrb", + "ujzex", + "slmnf", + "avrniys", + "pkuqxg", + "cfua", + "lrpy", + "spro", + "boecxu", + "lmzvip", + "ziom", + "bajy", + "hlvz", + "wtcvlhg", + "nyfa", + "ynga", + "snik", + "zqukg", + "ngiuahp", + "bvmsgyo", + "dbuzhni", + "crgejwm", + "xdgfn", + "cfkul", + "wxnj", + "qpyt", + "nmsjcke", + "vfogq", + "oahdyc", + "mlgi", + "bjpq", + "qlcyzha", + "qwdys", + "cubjqe", + "nxpgzk", + "omeudp", + "vikw", + "qluks", + "wtrfl", + "qbwxka", + "hvgjrk", + "hiqvmbd", + "xmtse", + "nxwk", + "gqvolwy", + "uldo", + "fibjm", + "ykrw", + "asoeb", + "wsyj", + "izlj", + "kshz", + "xrlg", + "yolqtc", + "zrpht", + "bgwyf", + "qabdmx", + "pzkho", + "qtukya", + "fpevltd", + "wveog", + "xywn", + "lprs", + "qiwn", + "wdxpza", + "wqanrsx", + "wtio", + "nwsgvu", + "hocvz", + "goeh", + "ahnciq", + "oljhprg", + "xhsit", + "qlevsy", + "colfrzt", + "heslymb", + "abhmqe", + "frlnh", + "hkofbqd", + "apyr", + "grnmt", + "zngosay", + "luwvczp", + "acnel", + "gxfr", + "hlzfoa", + "dacpin", + "ibhv", + "nfhb", + "vbfuqa", + "jgub", + "ojie", + "ocrw", + "tjxub", + "jklav", + "mqdrnsb", + "utip", + "wiqou", + "qvdfwx", + "weqnct", + "ytiupe", + "qszploe", + "ltvfmsj", + "zdsip", + "hidonp", + "weqf", + "jntbw", + "tpjg", + "ufkb", + "tlsach", + "qznb", + "yqrdx", + "smqtk", + "xcovupr", + "wiovapj", + "tvyje", + "vzgbrms", + "uwmq", + "cfgwhlt", + "intuh", + "zgdfty", + "xmsptw", + "cmnvyz", + "rxbqm", + "rkmcwlh", + "jdso", + "nypo", + "louvn", + "prgad", + "eogup", + "qjgvl", + "pjtvz", + "tbvne", + "enir", + "fnatzwi", + "kxvbdpj", + "zfvlhop", + "bvdstlj", + "uhbqisg", + "mtwz", + "sufdal", + "qcfxwid", + "kleaz", + "kyuoqat", + "tjmnpra", + "fxleu", + "iqpjo", + "cnqryge", + "krmdwib", + "mdwuhp", + "jpiyw", + "drgvjl", + "iuqvrmt", + "gchmwne", + "ztvciu", + "svdlb", + "upykdvt", + "qonzx", + "xfarvkd", + "puljkd", + "puynr", + "imqxcyo", + "nmzdu", + "lwjk", + "ofqekcz", + "tabgwir", + "yldg", + "wsxt", + "gcnztxb", + "azrech", + "zaigh", + "dgzv", + "rvipou", + "keqsj", + "imordfv", + "adowh", + "daxkrub", + "szxv", + "zkfhy", + "qknzarj", + "yzkfqmd", + "uepo", + "knvc", + "ybvozct", + "hqeafj", + "wxzu", + "sdhmaq", + "ohfempn", + "ifaju", + "oljtwi", + "rhlg", + "zcknwbp", + "zyfqbe", + "alwoh", + "ihuxzp", + "zurwos", + "jzhcwu", + "gsbawx", + "sopri", + "qrxawnj", + "csau", + "kdjaepy", + "kawuliv", + "yihpc", + "thlrp", + "rtauxib", + "wnlmz", + "khoc", + "jtdesc", + "wzalgs", + "ztqbagm", + "utobniz", + "owmdt", + "tqiex", + "wekml", + "kszew", + "jfqcln", + "mnwkq", + "cqosyzk", + "lrpfzqc", + "lretf", + "icflgh", + "urcj", + "wqemph", + "qcto", + "pizy", + "kbfdsz", + "txdme", + "indbky", + "nhjkq", + "hvwbjft", + "ykjdbml", + "imbvg", + "kuwjr", + "anjlfwg", + "adpntzr", + "ewrsk", + "rfuylt", + "gzihn", + "zqsfr", + "ftxcah", + "bhmxk", + "tcdukjh", + "ejgsmwc", + "gekri", + "pbdtluo", + "epcg", + "rckigav", + "gnvsfz", + "lcxge", + "rslkv", + "viablp", + "yibfo", + "ntsl", + "kedfx", + "dsglotb", + "tklsj", + "yjohs", + "kvhrtog", + "eopsnwk", + "cfhxp", + "cglnb", + "isfwezr", + "cklxefq", + "tuagnf", + "tgmvpni", + "dibnsce", + "gvbz", + "fxptm", + "ioejx", + "xhvcdeq", + "iwyko", + "mnbucj", + "kphxu", + "uazqhcx", + "rkyhnbg", + "qftb", + "vtbjyin", + "fbwvg", + "oasg", + "pcauv", + "mecrtj", + "blugev", + "xkrfgh", + "hzjw", + "vuziqxp", + "cewdi", + "ribvo", + "sintpvx", + "joea", + "ymcvqwg", + "qtan", + "hdkfjog", + "naom", + "nphfc", + "prqlaxy", + "bnwac", + "mwjxk", + "cowa", + "fusjipl", + "ghsfm", + "pvxj", + "zvhnrd", + "pmbxila", + "tsoyqrh", + "cnjiqt", + "stjhxa", + "pvsd", + "zlvqy", + "cawvbd", + "mylnpjv", + "yimnd", + "snipkyg", + "kjvsqy", + "xliabu", + "raoxc", + "qpieod", + "oxeu", + "iegy", + "duhij", + "vjrftn", + "ewzbvp", + "nqkjb", + "uzqy", + "sjhmxn", + "fxcno", + "cqbe", + "pcgznfh", + "ermga", + "ontiq", + "qrcson", + "kgou", + "eadjvtq", + "uwjd", + "ljgqho", + "ajmixus", + "kndqcpm", + "janludz", + "hpxwzl", + "ognk", + "ofpcmk", + "htave", + "eoty", + "cfdebvs", + "tcpoxmy", + "swgu", + "heig", + "rzknb", + "esxjmb", + "pmiz", + "fwnc", + "dcwvkb", + "bnog", + "nzjug", + "kczqdti", + "tyioprv", + "btqaz", + "ehgnr", + "cpjx", + "mqyip", + "etxrcw", + "fikqo", + "zkef", + "ifghsoj", + "dabiyu", + "pjhkf", + "oiapt", + "ahsczj", + "hwsk", + "ezvo", + "aqwgep", + "ecgfqr", + "dfstra", + "hsrvkb", + "aczig", + "ujclim", + "jifwxs", + "wjrigmq", + "yack", + "gebz", + "fqtw", + "ycrvhz", + "zsde", + "jrcpaxl", + "xnlhcm", + "xqdv", + "vtlnp", + "cuyjb", + "fuks", + "lnqa", + "cpiw", + "bvxin", + "otyjnwa", + "irayelb", + "craho", + "tkwie", + "cjntilu", + "ysvg", + "hgnwsxj", + "erjf", + "fmupqjr", + "xuogjwd", + "cqif", + "ryuei", + "niecu", + "cgyf", + "admfg", + "urid", + "exqt", + "lxoazre", + "vxagrf", + "gcnptae", + "wktulh", + "jaknfg", + "glfeq", + "ipbg", + "vlgxord", + "cikv", + "wderz", + "trcaq", + "ydof", + "cmiyr", + "pegdr", + "wxtj", + "lmvgtry", + "ylzxfi", + "sweubm", + "havp", + "mvlnd", + "klcq", + "ysxzek", + "giysu", + "gqtlk", + "zclunx", + "bujvg", + "xmgp", + "qldcsgx", + "ruidnox", + "jchguvb", + "rsxh", + "mcjvudr", + "xmdovrj", + "hezxr", + "gxvuc", + "neulkzx", + "nfio", + "prhqti", + "tuhv", + "npghfsy", + "sgrzynq", + "kfylv", + "tbefy", + "ytoh", + "awqse", + "lymbce", + "jwch", + "epuxh", + "fyixen", + "knxay", + "ljsg", + "tknewhs", + "yurzacx", + "trdmq", + "klimx", + "ybdzxr", + "zdnagyt", + "usioe", + "yjghbiz", + "rvlsa", + "cgwafl", + "qkafzw", + "kclgz", + "jelf", + "bjko", + "upiklj", + "ibyqlsz", + "arpcgiy", + "icywm", + "iqmwdfa", + "bozdlye", + "kzhqtx", + "anoc", + "bxkuze", + "lweanmb", + "lxau", + "dvkx", + "bqukaxv", + "mafo", + "qdhev", + "wdxn", + "tgeyhaf", + "gtxrup", + "lmhqswb", + "kwxsbmr", + "kyvhoc", + "mpdfb", + "rjbhz", + "mqwuty", + "mwcf", + "icosrub", + "hsydb", + "smkxwvr", + "wtdmyp", + "jifsac", + "tgkfnx", + "uftm", + "xrnkvih", + "klpg", + "jqmnf", + "yjkh", + "bijh", + "cqryk", + "gixy", + "xlpse", + "geldn", + "mxish", + "keyszqx", + "agik", + "rutjm", + "qbmse", + "ycsw", + "qfzaxsr", + "mpqska", + "gcusitn", + "wxaujsf", + "ywpemz", + "mganhtw", + "ypqgr", + "qdsmf", + "lsuimxy", + "nzxkv", + "ilehg", + "yjgz", + "qswu", + "hyxbc", + "alhokw", + "tgdacyo", + "ipcjlo", + "jefvp", + "qrzeipx", + "awrnmdz", + "ndyrb", + "wumv", + "efzqy", + "bfdeyrc", + "jyvka", + "pnurqlj", + "aczby", + "zmyiaf", + "cehrfwq", + "rxmtc", + "iztfu", + "kodzpyq", + "bfnpm", + "tsybk", + "whntks", + "lquzv", + "rutkbqs", + "ulwmsj", + "oecv", + "oguntk", + "wdjmgi", + "iyxo", + "plufzr", + "jovghf", + "xizuhs", + "ofiuy", + "abtjiu", + "dkxofp", + "ikyauh", + "mkpxve", + "kailh", + "atwk", + "ftozh", + "urbdsh", + "pizmen", + "juypz", + "lhrcpgk", + "bacmrs", + "fkmoyz", + "mojrvqg", + "xjpk", + "jcgq", + "dhzrk", + "ixchtmu", + "xclajuh", + "pjibx", + "atuln", + "bsvnmx", + "etrpjnh", + "bmds", + "kxqfnhw", + "empqtfl", + "xavsen", + "btefluj", + "yrofi", + "ygrzb", + "ixznva", + "jptal", + "zrkgcmj", + "adzgf", + "ragli", + "fclg", + "enmfk", + "mhqlen", + "afiejo", + "lpwgt", + "mhgs", + "kwhrcf", + "wgapxo", + "twhxyon", + "gbiq", + "tkyws", + "hkzxjei", + "bgnxds", + "wezsdx", + "wgvnaki", + "gsje", + "fngtrdw", + "iyctxb", + "ngoey", + "apcrihn", + "qvlbxhy", + "evzcrg", + "tuyqlvc", + "eumkba", + "dbun", + "mcsqhi", + "vfowb", + "etvamgo", + "wamgr", + "trfo", + "fjmoxy", + "muybtsh", + "wxhqaf", + "qtevhl", + "qkmhci", + "iefjkg", + "blijrwf", + "lkxsgu", + "gvdi", + "geaj", + "djesl", + "wpjyu", + "zqjrfn", + "yles", + "kwumcel", + "stomyl", + "ryoeif", + "gowm", + "xqcs", + "civptde", + "eizhdwa", + "qrdgptv", + "uovhz", + "vyhs", + "yuhjk", + "pcteqa", + "fnwldu", + "gkjvo", + "ljws", + "hflojm", + "ojub", + "smcwny", + "ygpnz", + "lkporu", + "bgpqc", + "trfcbog", + "tcswlg", + "jfwxcr", + "xgrnes", + "prohxi", + "gjtnqfh", + "nrkcbla", + "ylfap", + "zbfpky", + "spjlze", + "zfdl", + "wgndlov", + "szofg", + "axqjb", + "ewxmkua", + "ocrg", + "loucjys", + "aevypj", + "rxadtm", + "nktw", + "qurc", + "dwyctjk", + "khymab", + "psaeo", + "ifenlsm", + "vzcd", + "lbjhm", + "ilfwx", + "amkze", + "eylo", + "cajfi", + "mrpyxf", + "fkrg", + "rmtqo", + "knzbhxs", + "euxrp", + "hzncxw", + "uicrke", + "vfrgsm", + "svjyxmn", + "otizu", + "vbyxgpr", + "tvcrmo", + "jmik", + "rmpbcik", + "emidl", + "fhbeput", + "ymkqp", + "yslk", + "uqcbgo", + "zsic", + "vweufmz", + "bicstje", + "rkudchm", + "qjmp", + "lkdgw", + "mdpfu", + "ehctwmf", + "alyonj", + "ohkf", + "rmdz", + "ozldj", + "xyesrf", + "nmzakdu", + "rlkuz", + "atqyeu", + "qgia", + "ixvsedm", + "euchxf", + "xhdbocg", + "oqylnc", + "uvbys", + "cvgped", + "wiya", + "pgfe", + "pcnku", + "ctari", + "alnbmr", + "cxjg", + "jwzydu", + "mbhe", + "oncey", + "mvqht", + "eityf", + "roklw", + "ibtuza", + "iqjbwxg", + "dberwlu", + "oqlfr", + "ciwdo", + "ojzpsv", + "ibqj", + "mvpjfqa", + "akmnz", + "ytuwc", + "xqomca", + "mcfoer", + "ztmwk", + "csio", + "xeya", + "txyag", + "mjwov", + "mhlvre", + "zjlsi", + "vyujmg", + "diyjo", + "ekol", + "smhrp", + "qndy", + "gewfpy", + "ncloha", + "wdah", + "dxjne", + "ycnvqlk", + "zwqvs", + "jrtvyec", + "guwy", + "gpaezs", + "jdfyr", + "udtbgr", + "dobl", + "agrdse", + "nvfqt", + "nieq", + "dupa", + "ihct", + "wldaiec", + "uxaz", + "tdvqx", + "dwomq", + "rfhiw", + "kihcxm", + "qhcbs", + "ynweapr", + "kxquwdv", + "ohwc", + "pwhdrk", + "xgnuy", + "fjapeg", + "rlyhzc", + "vicxkz", + "itcs", + "olage", + "eovhszb", + "hctrji", + "bjtiplz", + "wqup", + "xqej", + "jprcayk", + "rgtldy", + "dnrm", + "vecq", + "hvqtlxo", + "wuxdva", + "kfyw", + "fxvdt", + "iove", + "kfpbtac", + "wfnblh", + "ravizbx", + "vtrz", + "edbta", + "ufpm", + "uklgphn", + "goxynlp", + "kmeug", + "nklbxic", + "czft", + "tvjmfyk", + "ncdbpwv", + "tfkbnr", + "xiezlc", + "nudeyx", + "lqkvyg", + "ejrlnmz", + "qzmnk", + "atey", + "tkunjfr", + "nxcequ", + "rqszhj", + "kgspuf", + "nmhwovg", + "emug", + "pych", + "kvuxz", + "ofin", + "snpl", + "njbhai", + "bkcaqj", + "wledsn", + "wdpk", + "uqygph", + "uztbf", + "lcvurjt", + "obyjt", + "zhqvko", + "cbwrhs", + "nethx", + "ytejxfv", + "hpbnt", + "hdbc", + "kenlvxp", + "fxeurky", + "tplycj", + "kxnulif", + "hqlge", + "lxwg", + "pekxg", + "rqyz", + "omilkn", + "tjxom", + "pvdqr", + "vuipejh", + "gwaeo", + "colxgj", + "ikmoql", + "prdl", + "mywujix", + "sahmct", + "fpoh", + "arhiogf", + "dgsof", + "spybxow", + "ltbqwa", + "qdxa", + "fthlaro", + "lrmuhi", + "lxipumr", + "zkulbd", + "ukzd", + "suvwace", + "ilkvy", + "bslxci", + "tdzpub", + "pzjmlc", + "xvlh", + "parhvk", + "jmdp", + "xpcr", + "dafh", + "nxomrv", + "mdnslju", + "dvhn", + "wtyrsp", + "mxwsce", + "tnhzc", + "npqt", + "wldixy", + "jacolvx", + "nvyhukq", + "uwyots", + "qstzm", + "dzflouv", + "hmuowta", + "ngrd", + "nlxie", + "tfvruaz", + "zfbdp", + "nmrhy", + "yksoe", + "slgu", + "ictgv", + "zumgrv", + "dylzsc", + "pnrd", + "woxicz", + "uesdf", + "qkjfcv", + "zfcoev", + "eusv", + "sjapx", + "mgtcafx", + "pkrdemh", + "ofcawme", + "qhwuk", + "huvi", + "hqfmnk", + "qtgjzi", + "sbuvewq", + "iwzdurv", + "wutlgvj", + "cgbusn", + "ednmqxb", + "jkof", + "wjkr", + "asbmv", + "poer", + "hjiypqx", + "mwdtczk", + "knfq", + "lcynx", + "wtmhes", + "pvxyn", + "mqudk", + "pqlbv", + "zybq", + "cmfs", + "pcyn", + "ryqsvdp", + "lkcrfh", + "iaopx", + "oinuz", + "zxveo", + "exqgloz", + "bvqfah", + "ivfas", + "btqiha", + "gdma", + "gmwirbc", + "szdn", + "jqgevy", + "azymlr", + "ybzorgx", + "gqnw", + "xorhjiz", + "uval", + "giunxm", + "lrftebg", + "zwtcmb", + "rhdo", + "xfsnj", + "zwlxkvh", + "gskv", + "lucazy", + "aise", + "lvet", + "cfraeth", + "nvilqok", + "zahlpk", + "wjast", + "jsogqn", + "ivea", + "tlumkvz", + "alrietd", + "zpcmaoe", + "qickumv", + "anhi", + "nwdsgva", + "hvftg", + "tjpuyz", + "kfntmg", + "xjul", + "xrjzf", + "xcoug", + "anvbm", + "juarw", + "dikc", + "hnpuxy", + "dpncilj", + "dywnx", + "wpcy", + "hvfpwdo", + "gywcpli", + "cdyu", + "yvxu", + "zpjn", + "gtuedl", + "uysdk", + "hqwbj", + "qxiodf", + "txce", + "alnt", + "xejtsn", + "pgylkcx", + "hnlkz", + "suvtebc", + "wpsnf", + "ojtbfk", + "niwtlr", + "tlfxhu", + "uxgt", + "tahwlv", + "jpkyzwn", + "pawgh", + "xtrk", + "hinuvq", + "ektrwmu", + "ygcm", + "nvuz", + "dymirhj", + "cegvyw", + "ruzw", + "swamcd", + "wvigx", + "fmrw", + "skzhqa", + "uociaw", + "vuiszc", + "lmdceix", + "tighw", + "dgpa", + "ulmis", + "ubzjqf", + "wkvyj", + "rcps", + "pzqb", + "oynulb", + "rfvyzgq", + "lzwocsq", + "epjfx", + "qrlec", + "lhnctm", + "tnma", + "rujkw", + "kmjhrfd", + "yfqx", + "tbjdm", + "grvu", + "vcpr", + "ojranfq", + "snru", + "scwun", + "tkjol", + "enfgz", + "xohia", + "zwgxtlm", + "dkhzer", + "rvcejh", + "zldou", + "ufyrw", + "genhwkz", + "uncz", + "ujglq", + "uaplje", + "isyfkjr", + "hjmal", + "pmoicsk", + "ycuh", + "zaolvs", + "xyouvq", + "qwrgvp", + "metdcg", + "avtnmw", + "jnmkdux", + "wzljng", + "enzupci", + "snquryc", + "mqunha", + "jtpfkh", + "zhlgwe", + "nbvaeu", + "rzsgq", + "jeug", + "uptrexm", + "zjyrdgn", + "blytxe", + "dclut", + "xqdvzy", + "otna", + "sefr", + "csju", + "cjriu", + "anwm", + "vsiejc", + "kyzpx", + "cgbsm", + "ntvp", + "noxr", + "cfuhw", + "gzkwloc", + "tnbhsa", + "wnytqb", + "ispnd", + "uxqvk", + "npaq", + "avqjknl", + "morfax", + "eirj", + "viozrex", + "uqgczb", + "lmxedq", + "txuvcm", + "ahwo", + "bgimd", + "bulmo", + "vewbrcj", + "kfdtrnw", + "lepodwg", + "oekg", + "anry", + "kenawbh", + "fscvk", + "rzdnsfb", + "wiuqro", + "rblq", + "byek", + "mxjngh", + "iufqsm", + "sanvx", + "oyru", + "uisp", + "vsxlq", + "sctpuar", + "rudmt", + "lyfuv", + "mpxy", + "xjneua", + "mxdj", + "gvdqrw", + "zoatqm", + "qzxrgn", + "jrwhbkc", + "egmnp", + "pgwckzt", + "dfzex", + "tweyvli", + "fpcl", + "auqzlk", + "hmenqb", + "cyfsgot", + "lqwvz", + "aqdfxh", + "lcsftj", + "rxtap", + "mikh", + "psehmju", + "ypeoix", + "xtsvwk", + "gmes", + "vpxwfke", + "recd", + "jprbtc", + "wearyvu", + "bowsmix", + "endvjow", + "hqyswi", + "mqslrnu", + "udecw", + "ijfely", + "uecdf", + "yhjkbdq", + "srhm", + "racl", + "ixuj", + "dgtyusq", + "qrmtf", + "twug", + "wftq", + "afgrq", + "apezog", + "bctsdz", + "wohms", + "csfbh", + "ltxzjy", + "bfkcgx", + "wsuc", + "dorg", + "ftyo", + "cmbkgdt", + "bryfmg", + "eyzmcpi", + "ambj", + "tgpuiy", + "cywjtu", + "ybpe", + "vtjidpr", + "wrsu", + "jrowaz", + "wmrebco", + "rnwqd", + "ygwu", + "ucejt", + "crpf", + "kclh", + "gsbkjop", + "lehkc", + "bypz", + "yuzcvir", + "rzcnue", + "sfptxg", + "gnsjz", + "bamne", + "spqht", + "zcaxeh", + "ivacbf", + "qfsa", + "jbunf", + "bdgxova", + "wfsp", + "qwhcuay", + "hkji", + "vusrt", + "zcawob", + "jaozm", + "vmplnc", + "rxpv", + "qflcm", + "brsxk", + "gzlnda", + "qavsi", + "keuq", + "bztd", + "psrw", + "tugop", + "lkeidhq", + "xwds", + "tjmc", + "aerfn", + "uyzk", + "zespucf", + "rhqe", + "hmsecz", + "lmjg", + "ymep", + "nazkmu", + "lnxtzqu", + "kcef", + "batr", + "plfk", + "ryfd", + "golps", + "akgjt", + "zrwosld", + "deplm", + "eipndu", + "yuxq", + "oewkhdl", + "fsbe", + "qrlcgd", + "bohfrap", + "scpfoxe", + "twzueas", + "kude", + "rxwyiu", + "fayw", + "zvokasj", + "acteduh", + "mtjraip", + "ondt", + "cumepv", + "zxwsma", + "pnksx", + "ptlvhs", + "xwgkar", + "zjxvctp", + "vfucjpz", + "qrzpys", + "hgbz", + "uvzocw", + "ezxdgbv", + "bqdcz", + "cxhdwy", + "lciawmn", + "vwxcot", + "vgidxo", + "xucgzyr", + "vdit", + "quapjxb", + "ywvocaq", + "fyntd", + "rfgokl", + "taqzf", + "ewup", + "kcofqs", + "plcgsd", + "pvlixtw", + "eihn", + "zheqr", + "oprwy", + "mljwbpo", + "ptmo", + "wnlcrzq", + "fpqv", + "jfodps", + "tjakpdu", + "fteik", + "rlae", + "ohjwem", + "kioy", + "xjkiwnt", + "wtagy", + "zqfky", + "lbdixto", + "zlywcn", + "cdefxy", + "bikeus", + "ubrl", + "cmuigwr", + "zkcfdoq", + "bhakgu", + "mvdepu", + "qpfmkzt", + "fvin", + "fvdushr", + "algxr", + "hjisfk", + "cxjuo", + "uzxskv", + "gkunzx", + "zpjtn", + "pbxy", + "dkmgt", + "fvde", + "grmw", + "zylogvj", + "cthla", + "swriyjc", + "aedixf", + "humz", + "xthswqu", + "iqwokzj", + "gehfy", + "fyhjo", + "dunhz", + "tmve", + "wrtbms", + "pgemxq", + "wpiud", + "pmculqy", + "tkrn", + "isnr", + "uqmhxef", + "aximpzo", + "uqygdnp", + "qplwrzd", + "rxgnc", + "yfglsd", + "awodkv", + "gjzkmdv", + "ugzscj", + "eamq", + "uepcw", + "woryusc", + "rhty", + "arwpz", + "wbfxqct", + "szbaghq", + "lvku", + "foectz", + "rzpcxo", + "iubgf", + "qfokj", + "btlcmrk", + "moby", + "axbp", + "okvbgh", + "arcklx", + "ihpjvam", + "ckylxiu", + "fhjlwkm", + "osfgjvq", + "gxay", + "tnsviuk", + "uswtd", + "kmzpx", + "xvpqnz", + "khtndo", + "xadqzr", + "nsmivto", + "ygbcon", + "uqvtclz", + "qfoc", + "gzsevif", + "fxmbqpg", + "vpdij", + "yktdjlm", + "vjng", + "xohp", + "orfptmh", + "vreahi", + "hytknu", + "xilv", + "nmsj", + "sbrct", + "leaq", + "iydmqxl", + "pndwjb", + "rtldza", + "wpfkmod", + "alhec", + "jnxhgvk", + "fxpnjvl", + "undkp", + "rwmohuy", + "gljqmds", + "ktalh", + "gkoids", + "zwfmo", + "kywzu", + "acrmdi", + "evprg", + "gzdwn", + "kgih", + "levgr", + "phjn", + "wkhxt", + "tqoygc", + "zpyld", + "nbltge", + "hnjt", + "yugqn", + "wscjlm", + "meob", + "sqegi", + "ypnvxbr", + "pkctl", + "cxepuqy", + "atjrq", + "rpctoa", + "hukytr", + "ktjcyhq", + "xtmb", + "cdoswef", + "klhdrbm", + "pjyfa", + "vqceui", + "hgls", + "dlyqhi", + "pfbqgo", + "gatld", + "wlso", + "kvxfb", + "gluwi", + "metf", + "gsdeyb", + "rixk", + "ugnzja", + "bolecv", + "ckeat", + "beowzay", + "vqdjhpy", + "krawpq", + "epkdfha", + "rgild", + "hetmya", + "elumdi", + "qdxkmsn", + "nbrsho", + "psdt", + "xpvd", + "roskzq", + "hity", + "vpsdl", + "eushlm", + "iuykqh", + "nygbd", + "oejxrcn", + "mfrkgt", + "uodp", + "euvbzfa", + "dbkw", + "wcxdth", + "xsyk", + "znqg", + "vqtzefd", + "lhmkrna", + "hkefoi", + "pmxoy", + "bsqiyx", + "wnhmfp", + "sulzp", + "ondfcr", + "nokuphc", + "vyhcspr", + "zdvc", + "vmhl", + "jbykr", + "rfdqbl", + "asdolmb", + "dklsu", + "uymkst", + "ctag", + "qdnx", + "cyujr", + "mpclxni", + "zvcgls", + "sfzuxh", + "ocxelui", + "aqpzr", + "mznh", + "tpnhqad", + "xsmqv", + "lyemqfo", + "rvjz", + "vfkiyqp", + "yzwpg", + "pdsl", + "ongvkr", + "ouyanmf", + "ioyun", + "xjdpcsw", + "wanerch", + "reiyj", + "xkpltq", + "ghlxz", + "obmpsay", + "ywfioae", + "uwavzh", + "dozyp", + "pmtazly", + "lainh", + "yxnfart", + "rskqwgp", + "ndhq", + "vkjxpl", + "asuzvxc", + "lbofq", + "hvtf", + "fhzo", + "flysn", + "lackb", + "srnmzb", + "bawzl", + "vbdut", + "qlvbgi", + "hnamf", + "rdgo", + "qnjegid", + "xpuhnol", + "wbhanyt", + "ghmkwt", + "gqkpzw", + "zuiq", + "yhqao", + "dflotkg", + "rpyuhw", + "vlyzr", + "spcmxj", + "mxpzhi", + "dnwo", + "gfdaom", + "wjfcqi", + "kzhfq", + "sjnxa", + "nwsf", + "oivhe", + "ugxqwe", + "vznyk", + "tmyjogn", + "sglhvm", + "lzvyhtf", + "gfyrlwc", + "kdgr", + "wxtce", + "lemjpa", + "mgtsvd", + "cjgnlyf", + "ipefhla", + "klmgi", + "dehj", + "dnxsgo", + "pixdlc", + "urde", + "tsvbpfh", + "qlgtvaw", + "auvnrks", + "ohepx", + "xmocbu", + "etmhp", + "thneu", + "lvsktyr", + "cbaf", + "qvzp", + "qfksb", + "pyhlv", + "nsrpg", + "lrmx", + "bjhk", + "ogrejk", + "plrqsmc", + "cvox", + "uhxd", + "aovfw", + "gwdv", + "nqbfxk", + "qwhxumc", + "vdtayk", + "phsuoqr", + "kixfan", + "jigdrl", + "witqozj", + "pwkfzlj", + "qgdcj", + "wgkhuv", + "arkeuj", + "ygims", + "ysgt", + "opcsj", + "umeo", + "yskjo", + "voewcpu", + "ugcai", + "lsqn", + "ifjvcgo", + "krvuxnj", + "gwou", + "yqfml", + "vpsc", + "adsfw", + "opykb", + "vsgcr", + "bqksu", + "zwpbjkd", + "nztolec", + "cqneo", + "hngisq", + "uokc", + "quichkt", + "zroli", + "qniota", + "npbkqm", + "ebyzims", + "xruyme", + "xidm", + "yfmpbn", + "vcqy", + "kaunc", + "qhjag", + "ihyp", + "hpyiae", + "cwtalg", + "mkjwlxa", + "lhicdwk", + "ojud", + "ewzpvc", + "mvilj", + "ucwhmnz", + "alfsi", + "agju", + "xiowzgn", + "ivzot", + "qgny", + "mqyf", + "nhtkvie", + "ktmlydn", + "gxvmz", + "ofpb", + "pubzq", + "qxys", + "hjzr", + "fctuzy", + "jvny", + "vjawpm", + "dqczwu", + "hnsb", + "lyez", + "jewb", + "atlusqr", + "sfbqam", + "ydzsr", + "yxsc", + "qgio", + "fcthvud", + "ewjsmp", + "awjb", + "lgbiea", + "uhrlxtp", + "rewqgpl", + "jnwdqt", + "lwxjfvg", + "khguzfd", + "jcyl", + "wctiga", + "jcrlmo", + "kwzt", + "dsuxme", + "swavty", + "xbgw", + "pqtzex", + "zmfqvuw", + "jfxazo", + "weqx", + "hlsnbc", + "ryxclpq", + "sycap", + "msfa", + "fyjde", + "askflec", + "pamgj", + "zembcyi", + "tkzi", + "epsgud", + "jdzowa", + "jhqulw", + "tsmpoc", + "ejop", + "kopzrch", + "gyen", + "exildkg", + "xuhbtp", + "tjuayn", + "velc", + "gdoqe", + "fzlsga", + "ohpcuwr", + "zshjrf", + "ajoqn", + "qilds", + "ghbpi", + "urhd", + "nxhcaz", + "qwtou", + "almjdwk", + "cnwiou", + "kghp", + "xjgbhpy", + "eiqsr", + "joaq", + "qhgs", + "hwznb", + "uhcxg", + "upshwby", + "fhrox", + "xicvtdu", + "hbra", + "hmkeyls", + "ajok", + "xmtuzwd", + "ihkqfow", + "fjuhni", + "baldny", + "rgxiwu", + "sxjznv", + "ubmnsy", + "gfps", + "xbjovq", + "igts", + "rwnes", + "zvlouan", + "bcrzius", + "wdtbq", + "muzicq", + "pxayd", + "aezknq", + "jrvdtah", + "gwfei", + "fbyj", + "czdsx", + "xtosbw", + "hupz", + "mwth", + "gamey", + "qyoauw", + "ydbikju", + "gpedj", + "gaqsj", + "ugyqe", + "surcvpg", + "xtevjam", + "ktnx", + "ktdy", + "xrzic", + "nxjifq", + "bwgl", + "yazinm", + "rvqahdo", + "bvturz", + "hcdxn", + "crfj", + "ydvm", + "nopb", + "ikno", + "pjlm", + "mczdgbh", + "fbhetck", + "thbxwvy", + "mjpers", + "qihpt", + "jhvco", + "gyxd", + "vacw", + "lwhsrc", + "nclbhw", + "jvpb", + "ryxb", + "qubok", + "cxae", + "vxytauz", + "xkqdger", + "ufvs", + "eizys", + "zqnh", + "nrqy", + "jdqulr", + "shpaibo", + "nqfdl", + "chmyw", + "ftswhxj", + "qlbn", + "smkdext", + "ozjnq", + "iebx", + "ogah", + "jyhoi", + "pdbsoqt", + "awrsm", + "kvpwrs", + "epngsvl", + "kbwpirm", + "vgyhjm", + "vspyji", + "tklb", + "dfvjy", + "apho", + "cqzpoj", + "tgmf", + "chqa", + "svfayzl", + "xaegp", + "hodubtk", + "jyvbtzl", + "texdvf", + "jxrgbu", + "pebzrf", + "yumsvwi", + "acxkqz", + "phbeixn", + "vzlrpxf", + "ufacd", + "clqmj", + "pksel", + "uzfk", + "usczp", + "wugvtb", + "dbuyiex", + "mpzw", + "vblcs", + "ksvar", + "zfglots", + "hknmq", + "casrxu", + "uspmco", + "lseod", + "gkls", + "xcuhv", + "cuzrs", + "lpxvkai", + "eapngol", + "soiq", + "oabdu", + "ybjsr", + "awoln", + "kpnuox", + "bscfohz", + "nrbcfi", + "zetf", + "ksrfnd", + "vxuao", + "yljpa", + "hbfmu", + "jwzbfog", + "zidhub", + "kjlpz", + "resn", + "sjtp", + "rhwc", + "ygtnf", + "kipmx", + "hlodp", + "rsukob", + "zfbsmc", + "fkcl", + "ugei", + "fdkmx", + "mgci", + "mhsnco", + "uljba", + "gxyj", + "gflw", + "khitf", + "gileaxh", + "uoxc", + "hdwv", + "hwynr", + "yrvmp", + "zqai", + "epgdjx", + "kwamzxt", + "abrx", + "dgjlzxs", + "vwunt", + "xqwlm", + "axdj", + "ftrh", + "lrxkc", + "ndxr", + "rgbwez", + "vxbhwf", + "gotviun", + "pbmn", + "xusdpt", + "scmu", + "epzvjxn", + "ignkscu", + "xjesb", + "crlod", + "lrefsb", + "afjqi", + "qoznke", + "otjiwy", + "lfrgivo", + "zeutf", + "ujihmx", + "klhyeij", + "lqoumbr", + "fwxe", + "hvcedlz", + "aiomx", + "cdbli", + "vuct", + "nphlwe", + "ovqjr", + "htxms", + "fokjve", + "xwldkr", + "heqawd", + "jrug", + "ienswzq", + "fhkgwp", + "rlso", + "pchls", + "mjvlpur", + "xalrue", + "dsnaip", + "buoztik", + "wgvdyxe", + "necyd", + "qdzlw", + "ufibt", + "vhosde", + "nblesc", + "cmkl", + "dxyljt", + "myps", + "ipbgs", + "okmh", + "aupx", + "dfcgv", + "vfblk", + "kyjrfig", + "oksiyfw", + "bwcvep", + "wkgdc", + "bcdpzi", + "exyu", + "zkejwn", + "xmlsu", + "gkiavl", + "puisw", + "pboad", + "jlekbh", + "hwdcqm", + "jzmhe", + "vgbduiw", + "pnyldf", + "dkgxhjc", + "kort", + "ziycrhd", + "irsuoaw", + "jledh", + "svpatr", + "fsqwa", + "lpze", + "ohklwz", + "qfygcxn", + "viycdz", + "kxrym", + "qgpwmyb", + "mzvl", + "msxo", + "cleab", + "fetv", + "qzsyxcw", + "ivjul", + "pqmgatk", + "vrmp", + "xivdh", + "drqt", + "vscloxb", + "ylbgit", + "dlnoj", + "yialp", + "xamzl", + "bzigqc", + "htrbvim", + "uqsl", + "yrdbku", + "orlw", + "ghsyaku", + "fywndp", + "ofwi", + "name", + "uwidlr", + "psflnw", + "syujdpg", + "olvcfzd", + "inzmocw", + "wtmvcd", + "orqp", + "duosh", + "ykvqja", + "czapstr", + "usgobac", + "gcuyk", + "zdxrhqm", + "dzqrugi", + "jctmniy", + "mpqdjcx", + "nfbxr", + "qpmnw", + "buxovri", + "pzkjc", + "ezch", + "zyrsnjl", + "osapcft", + "cuzsbtd", + "nwqoizk", + "qlmgdy", + "uowg", + "ernzqd", + "hevr", + "bijqru", + "vpythw", + "xsygl", + "byzhpx", + "dmrghub", + "ogmjn", + "kcisqle", + "dabe", + "gyaz", + "exlbu", + "wbhze", + "xfdosj", + "umplajw", + "kvowj", + "yhtnxli", + "udxtnw", + "oiyqr", + "qxfbedw", + "srjlgye", + "pgieo", + "ozyniwr", + "wjli", + "yvbaq", + "xpfsi", + "gpuo", + "vztwgm", + "jzymexb", + "rduxpo", + "laixz", + "mjnlrsi", + "tckh", + "vsbh", + "kaytgpn", + "gqlre", + "buof", + "kqxdig", + "ljksrzy", + "lsmhd", + "nxqmduv", + "iheuzy", + "hxlkw", + "pbuykf", + "ftxwl", + "fexz", + "xymn", + "osvhtr", + "ihdqlef", + "evnjt", + "ijtr", + "jdlo", + "psywb", + "jxzqv", + "fnwgakr", + "hrzdbgl", + "nhofaj", + "pqvya", + "ojtrhf", + "dmzk", + "obzyls", + "vpuf", + "hbyd", + "aljqhuy", + "vgtl", + "exzhy", + "ethvym", + "ngfm", + "infuyw", + "malrwco", + "axdt", + "exgqk", + "xzhips", + "jgsolin", + "eupvyw", + "uhwbrsn", + "ilft", + "rvgicy", + "rghu", + "svrjuex", + "tzlk", + "gyzq", + "pbyku", + "zirwhcq", + "oxutk", + "lecojgs", + "iwecary", + "jcvgd", + "qcjugez", + "qajuom", + "gbjypf", + "mlkfeyd", + "eyfzc", + "lztgwe", + "fwpme", + "spbfxjr", + "fnyaj", + "dopk", + "oclx", + "tqhz", + "svmziy", + "kopgqwc", + "nfmaegx", + "npcbey", + "jsexi", + "qlbdi", + "ufha", + "qumnifx", + "qranbg", + "vndto", + "whofnyr", + "uaospn", + "cmulnfd", + "kcqwxgd", + "ifruv", + "nskf", + "fkoujd", + "icgfmh", + "mswoxvi", + "uvtwk", + "ouqax", + "kydxbmi", + "czhix", + "wzhip", + "qiaxcjd", + "zytdr", + "dyogb", + "jnpvox", + "nxfekzw", + "catsw", + "sraeubl", + "tujypo", + "zbujq", + "dwosrhz", + "crvx", + "qglhe", + "eunfyaw", + "milpn", + "lqjvgx", + "xsbv", + "lmtg", + "jpvz", + "tuizlbx", + "rpsbot", + "roxqlm", + "fzedwq", + "nwjb", + "hiok", + "ecildhp", + "mtykig", + "ovtldwu", + "qbwomia", + "rokas", + "nhdgaw", + "oekidr", + "snha", + "cgdufyi", + "xurth", + "kmxynt", + "ukodvl", + "airgkh", + "qhfvme", + "fxkps", + "dahwzs", + "bjfw", + "jfhbl", + "lcrqpje", + "nzjs", + "bmnpx", + "inswmby", + "onwfqla", + "dhzabrs", + "bkume", + "arltd", + "asfm", + "sxrahy", + "mbta", + "miyw", + "iqen", + "ypsqgki", + "guckrvx", + "scpklx", + "iokag", + "qvrnysh", + "fkadbm", + "mandoqt", + "ulkij", + "ngdji", + "udzt", + "jgbfzy", + "fzoexud", + "fmqtp", + "ykgdebm", + "cwdvk", + "joavcp", + "zgcv", + "ujecb", + "piqvl", + "kvqlmx", + "fedml", + "sfaijl", + "qjcse", + "kcftybr", + "hyxp", + "tyjdo", + "mntrogi", + "pzdvea", + "stvjr", + "pakuh", + "bukfnl", + "xymjtd", + "qywaxr", + "nerolzv", + "nqxe", + "ibcxqn", + "wirm", + "qfokpxi", + "pzmgolh", + "hojv", + "pfhqe", + "znruf", + "xiaop", + "igvs", + "jgcqzfb", + "gxav", + "hizrsxn", + "iybhc", + "slgph", + "mrtzegu", + "qarud", + "lzghr", + "pytqcnl", + "xdrsjzm", + "uspc", + "ahsnzwk", + "zkwygex", + "rgah", + "djplx", + "temwzj", + "jcylnxu", + "ojfkzxp", + "pwgmuio", + "ultmp", + "tzgbji", + "cvzlke", + "orxb", + "crhgdy", + "fgjspq", + "ahukvcn", + "rdzyct", + "iuotnz", + "pwxf", + "ovjld", + "saejg", + "mgyjctf", + "bcyzr", + "jvqycps", + "gwjsr", + "ndxpu", + "atef", + "wlnthm", + "niored", + "hjaxn", + "cwymvgl", + "tozcma", + "qgesax", + "qdsh", + "khnoqsd", + "voyq", + "xiydfc", + "ubliesm", + "kmtqrpc", + "vcwdpj", + "sxpvyh", + "vcbp", + "tzaoyjf", + "drkyhps", + "rfswp", + "khpczej", + "vslre", + "bysdmo", + "slqncex", + "ogbsqk", + "pvejqux", + "yspber", + "bjwknxz", + "xthqe", + "zgxhuq", + "mrgq", + "lwqki", + "bvoqrln", + "jurzey", + "hniup", + "tisqmb", + "zqnvy", + "tngo", + "midkj", + "ehky", + "kyfjx", + "kcwibq", + "jzcbfkt", + "wgbsz", + "zluxt", + "bumgzfv", + "rfvq", + "inow", + "oftgsm", + "hzpsfqb", + "aqtk", + "nfxkcz", + "khjmy", + "qkblyg", + "aepjhwt", + "ocvmdk", + "tyxlgvd", + "mpqjdrz", + "odgb", + "wnvbpz", + "jmzqn", + "wpzhge", + "pbzoyem", + "myeuxt", + "lsgjn", + "gosyf", + "mxzcor", + "gqjro", + "lsevfac", + "dglrc", + "tahm", + "uxzt", + "odizes", + "icvu", + "myxwkd", + "mocaeug", + "yilw", + "tjbgqvp", + "dntm", + "zunods", + "mwfjqx", + "rjvko", + "pvlnhxc", + "nuyq", + "glrjih", + "gbfi", + "xakc", + "kyjxc", + "soxl", + "nfzmvgr", + "xzcqwg", + "jivyswq", + "pmfywj", + "hmfviyu", + "kschzu", + "vnzkem", + "ugozqia", + "bgae", + "lwbm", + "dnufv", + "psdqvz", + "cxpv", + "fvzpy", + "mrfewcs", + "kvxuaw", + "wstv", + "rnvxe", + "skbql", + "bfyi", + "vyxbmk", + "rvkiaec", + "ldec", + "orsf", + "bmcl", + "xiyochj", + "jtpcyx", + "vthju", + "vhrcx", + "tleg", + "bsgxane", + "axiu", + "gpafds", + "pryh", + "huajvz", + "lrhvpw", + "pyqwen", + "wpeuxyv", + "emnvqz", + "wsvfdp", + "rlygkw", + "oxwg", + "yjrdacz", + "klbeijs", + "ujwgori", + "hewdiz", + "uivjxfl", + "bogu", + "hyrd", + "hyqslx", + "rwhi", + "znwmhf", + "rdokcbh", + "tsry", + "vrnyes", + "pxsrkd", + "yncav", + "lxyuiv", + "xydcs", + "rjps", + "pgmlv", + "lpchvu", + "fuwk", + "fisg", + "nmut", + "nbfusqg", + "uwyxvj", + "xwhqkpv", + "xloy", + "gmxjwu", + "miburz", + "gsozjcf", + "csargm", + "klxzeof", + "grdx", + "qbothx", + "xnmvg", + "vhmkex", + "kdzvo", + "nvmsg", + "qdagnlz", + "vdqysgn", + "uadkbgm", + "utsk", + "swcboh", + "iovyxtm", + "qpbln", + "ruivgs", + "dobhu", + "lnwgmp", + "sdft", + "bveh", + "zjcr", + "rdeft", + "fgbqk", + "uxgfy", + "yimewlx", + "oshmg", + "zeqgwda", + "xdoz", + "qvzrcoe", + "blqtsya", + "dpnfz", + "yimpno", + "lurpt", + "mhgu", + "xcag", + "eldzfq", + "gjktfi", + "gwdtfu", + "yiux", + "ndmc", + "tcymwbh", + "xlcjeyt", + "nkozels", + "epsa", + "vhknilr", + "mkhuf", + "mbyl", + "djezga", + "kpfgow", + "jwmx", + "zkrv", + "ferc", + "ycaiuo", + "xukre", + "rdvone", + "zcfq", + "gmcjldi", + "sehd", + "vforq", + "ntkzjs", + "feht", + "watzqd", + "bxthrz", + "ucyphbi", + "ahxqtei", + "vktypfx", + "yixz", + "arueqiz", + "ujtofi", + "fxmhlwv", + "zqvktcm", + "kwerxos", + "qfbwxhc", + "kafo", + "rfixloc", + "lgwqex", + "poitghw", + "xcokesz", + "pgzryx", + "zlqc", + "jxfq", + "lnkbc", + "atwqcbd", + "yzrwe", + "ayvjc", + "zyibe", + "knrbay", + "qogwhrc", + "xdcovqb", + "iquxt", + "yocm", + "lsuvz", + "lfabjd", + "yhriub", + "jkaemnx", + "afgyrb", + "yehx", + "nfmg", + "hmwqxt", + "cohinja", + "mtzh", + "fcxydts", + "lwsaby", + "sgxzl", + "ubaov", + "lfovzsx", + "btfur", + "icjs", + "qkcrntv", + "qprwmc", + "sdeljfq", + "mwjr", + "qrgxlo", + "skhn", + "lqce", + "ewfnv", + "tsxey", + "yqnsh", + "elhpg", + "naglyef", + "gelw", + "rvhgkil", + "bvrxme", + "fzrlpi", + "uozc", + "ytlxd", + "ojxy", + "fqexnh", + "zfxtin", + "jkdsnb", + "gvcsqzu", + "vjtr", + "snqimgz", + "snty", + "epxl", + "fqhta", + "sizyvua", + "xzrmynh", + "lpkmcav", + "fvorth", + "nedv", + "dmracwq", + "wmyud", + "lqpfgsz", + "zcuw", + "muicwqg", + "daebl", + "tgqp", + "jhyv", + "bskia", + "sjho", + "losfn", + "tbdpklu", + "mefsjhc", + "eodc", + "rlvqj", + "mcjy", + "ifcwya", + "qrgmtz", + "ykeqfsc", + "uveb", + "pzjnidf", + "awyhm", + "tneuzl", + "hktu", + "oaujb", + "omalkuv", + "bhurpf", + "ybpicnz", + "bvcfg", + "zvfe", + "imkjfzr", + "dnuwc", + "ovdjpiz", + "nsbjhm", + "btqc", + "wijtkxh", + "pgmyuqa", + "omyf", + "lcest", + "hopyw", + "cnjmufg", + "hsmkwl", + "wiqlcm", + "zplmcrq", + "fidlk", + "wahuc", + "knem", + "uendjpv", + "mlqzu", + "dtxoeum", + "kilwvo", + "onesjgx", + "jmgwqn", + "yktebu", + "kogzi", + "nrbqtxi", + "hsrpeg", + "eglwb", + "zmfbj", + "dfqz", + "wtpm", + "xtvamdl", + "gpvufw", + "dpavs", + "vxjc", + "jrsafl", + "nflpi", + "xtem", + "rlna", + "wdetkxa", + "vxzi", + "zdivsk", + "gpnmb", + "ozscg", + "dqiwu", + "xsiyn", + "opmuld", + "felr", + "eswabmk", + "vwbspnq", + "gekzht", + "rziuxm", + "alxfe", + "yazmc", + "hknlra", + "aludc", + "pdqu", + "ijlpba", + "pnglc", + "rkmbase", + "tonwxp", + "ynwk", + "qihk", + "fkeit", + "logqeyk", + "egnsl", + "hrsv", + "lcoxvfw", + "iwhrzog", + "mswhrtc", + "unatj", + "xsayr", + "lkurgq", + "uwkayp", + "dkzwq", + "etplu", + "dopxek", + "nrtfu", + "agmkntb", + "dozvb", + "edqo", + "yrnsxq", + "hzfxcge", + "haqfvmu", + "hfcsk", + "glyr", + "edkuwx", + "rbyqtiv", + "cahzib", + "gfavrc", + "xvsmo", + "dskb", + "qufkbz", + "ltdvjph", + "obavnd", + "czabtw", + "yihfk", + "khqtgob", + "nmpt", + "yahusov", + "uzmkaxh", + "ubhqsni", + "jdvy", + "inxg", + "ljvhge", + "vguyo", + "rspko", + "htyrza", + "jgzrwmi", + "plfhkx", + "aotpnrm", + "cmdj", + "nfoyr", + "juxlbv", + "dmriw", + "pbmaqn", + "bdnhs", + "ftrsjk", + "eukahm", + "ehxsj", + "cirhx", + "pfec", + "vzejpco", + "qeglcxp", + "atpmzg", + "qzgrwn", + "hkxrg", + "eklamhj", + "ujhpar", + "udejim", + "yweoa", + "zvjx", + "fwyq", + "opjuyfv", + "fdnrh", + "svkrmjo", + "mdeifa", + "elmwihc", + "fpubwl", + "zicnpqf", + "ixjflgh", + "bqri", + "lrjhfx", + "maznyjh", + "msqfz", + "qiamu", + "apemor", + "crei", + "kwqbrln", + "uemfgds", + "ufnejxm", + "fgelwzt", + "lwkf", + "bzyg", + "uxyqd", + "jvir", + "lfipr", + "hdnxs", + "pkhyxi", + "ncfrja", + "zqpusdr", + "objvzck", + "pcdqj", + "yubnd", + "wpvf", + "vugkb", + "wkzql", + "xheygl", + "xlhio", + "eumj", + "nbxv", + "tjvd", + "ukzqhyf", + "qpdajmh", + "idcmqh", + "jdtnwbu", + "bxtuq", + "ouszg", + "oimfnsx", + "czki", + "pshxk", + "hmgjb", + "qvcr", + "irbs", + "pxwnvi", + "qktg", + "weipk", + "bwaf", + "tclj", + "rgps", + "ylcw", + "tpynh", + "ogdxth", + "fqugehl", + "zptsla", + "zqxoun", + "khaod", + "qgdzx", + "yjepfu", + "ivfgcy", + "xihyau", + "ksjxi", + "daxg", + "aubtng", + "uznrsw", + "lnazcfw", + "yzvb", + "hyjl", + "nmiq", + "zyxou", + "nfauvp", + "woms", + "kcvxqzn", + "bsewptm", + "nexblv", + "glzabcp", + "tngpw", + "xuodj", + "zyuilnm", + "hdvm", + "eicn", + "klzpg", + "eskg", + "cnaedr", + "eyskg", + "xofpr", + "pjbdsfg", + "qkmgbtz", + "ozigp", + "jmyn", + "pnosiu", + "ghmrits", + "pgefvya", + "gitsv", + "kinefz", + "duhyrks", + "irasgpo", + "vmibt", + "hfou", + "vixstu", + "bansuf", + "voukp", + "gteakn", + "dvls", + "ybzkmdw", + "tcfp", + "ljwsh", + "tnypcwj", + "gbkso", + "pdgqfzl", + "ocxvwe", + "ikxa", + "cnyb", + "ourcfwt", + "jcqmwdb", + "fdosyb", + "wtkerh", + "bjdcqh", + "yokumbj", + "rnxq", + "bprjtmq", + "kefq", + "hwqtdgf", + "gkts", + "axnih", + "cshf", + "uiwt", + "robtef", + "rolufnq", + "zkfo", + "pndxl", + "thzxok", + "qajx", + "gnyv", + "pliw", + "khpsyw", + "pwsgnb", + "nrmdt", + "jdfu", + "rmbciw", + "ymxhcjr", + "dnak", + "gepcu", + "fmiwxb", + "yone", + "dlho", + "dban", + "vywz", + "aqngcz", + "xpscfqu", + "rfjtbe", + "ngru", + "pgrf", + "qzsto", + "xbislmu", + "cmigfsa", + "pybgq", + "tiovek", + "nlpwmzr", + "ydpiwo", + "hvlx", + "hqmdnb", + "vlwhcjm", + "zfoba", + "dqnjiw", + "idae", + "nyzo", + "jszrn", + "okicmga", + "kejx", + "yqmhigw", + "hglixzy", + "tohg", + "yojmqe", + "exztyw", + "ywbhrvf", + "xcnoip", + "blzn", + "bjrwcf", + "aldpe", + "muple", + "zwfrp", + "wmnsto", + "iankul", + "xdiuwcj", + "nuhqfy", + "wamdtj", + "dfebmv", + "ntucem", + "amgkz", + "rithq", + "vposqk", + "jxmup", + "sdfvyc", + "rpib", + "fidqwjs", + "aegu", + "arxt", + "cfegba", + "mqcp", + "sjlg", + "qfln", + "inpm", + "lzihoxs", + "evsfin", + "nxjwicf", + "dlbv", + "zgudfi", + "ibfc", + "rmufoq", + "biwgjly", + "dmsxwga", + "xzdbf", + "wdxrnk", + "yebjwl", + "mlhs", + "wrqc", + "tjoixl", + "svhclz", + "zqwt", + "agux", + "tvhzu", + "nvds", + "balfvgo", + "jzdnp", + "bhaxiv", + "zfmskjb", + "zmbid", + "rxfdtcp", + "rkdxpz", + "ydwtp", + "nlgirw", + "kcbszlo", + "iuzt", + "ahzms", + "goxhtqa", + "jlpxho", + "uclaqwf", + "ydsuo", + "yizquem", + "ditg", + "fusbr", + "dkma", + "cngzqo", + "alijws", + "uezr", + "tjgfnp", + "mjucek", + "insryoe", + "zjtgrbk", + "ahyi", + "hbajnm", + "upyizr", + "uvxr", + "dbwavs", + "xcuatzj", + "foxua", + "lrtvpdi", + "rigyz", + "khaojcb", + "igfnbuy", + "osxbgke", + "mbnjf", + "tfjrq", + "zabnimd", + "dwyl", + "kfdp", + "mrwxtp", + "dtxaqc", + "bmcjox", + "cwlkdth", + "xlbnsm", + "cmfeh", + "wqalhnf", + "eolxh", + "sexq", + "zlvecyu", + "vcjae", + "jmykd", + "pgswrm", + "zwod", + "fsimtbl", + "frelzi", + "qyji", + "marz", + "fqgzbv", + "gauocin", + "sxayq", + "miwl", + "nljfcri", + "cnis", + "zbnoe", + "atcepry", + "xoqsv", + "ufyrxd", + "mpnkojx", + "zpwag", + "ypngdt", + "rhluatj", + "ijesyn", + "foiljyw", + "zogcf", + "vhueai", + "dgitop", + "dmfoesu", + "qdxop", + "utnar", + "iwbhar", + "wcouqk", + "pgbxa", + "tlifw", + "kloxqs", + "cqxly", + "cqudej", + "xgbocy", + "dlgzq", + "qoexk", + "njworck", + "gakzs", + "qlbntkm", + "zgctu", + "ejbzds", + "iluensb", + "ljxmzrf", + "ojhic", + "yzov", + "sbfu", + "nsfv", + "euiazlx", + "exaw", + "utnx", + "khdwxv", + "oajey", + "btpkn", + "lyqbr", + "wadox", + "jycu", + "ltfrne", + "kqety", + "tbgndfr", + "vcmua", + "jrxfa", + "kvlrub", + "svitaf", + "gijdkv", + "ofyz", + "hgnlmx", + "cgqri", + "lrmpwai", + "fnocyam", + "ibsk", + "rzhf", + "xfmgs", + "favrbps", + "mbghkn", + "keob", + "kvfrg", + "zhipfue", + "wjknat", + "xlnumt", + "cpmaxl", + "vwrgqh", + "sybdqj", + "zqijom", + "kymqwa", + "wypu", + "pkoig", + "jdctxg", + "gwfyclo", + "vjauy", + "ghzxe", + "lmgu", + "uedvhz", + "fxqmky", + "ufwkq", + "dnkz", + "lasdvh", + "civk", + "txwu", + "mxoa", + "picdyt", + "prvg", + "vhxcjub", + "pkiqoxs", + "byok", + "uzlp", + "hyun", + "bdjn", + "jwznk", + "vxlyskm", + "ueygihv", + "cowe", + "kmld", + "flzmr", + "ldrgvxc", + "qyvk", + "rseywg", + "tbde", + "ocpyqex", + "dmrqg", + "oapjzd", + "luaqrzm", + "yzrug", + "ksrjgq", + "pnxa", + "fctx", + "sgfarc", + "vabic", + "lqgnxu", + "livybwm", + "lsbomc", + "gihlq", + "ikluen", + "owqmagp", + "tnwyg", + "nuli", + "jfpr", + "bdrf", + "agsobk", + "dbjs", + "jzatfe", + "nukwxd", + "xbpde", + "cbxl", + "bjswm", + "qobe", + "oxnwegl", + "seuci", + "lrvzw", + "qkryf", + "ziuelyt", + "bzhgrks", + "blxusd", + "dyxhw", + "tojp", + "tesm", + "cgdq", + "xwzo", + "xnztif", + "kivor", + "ryfqolj", + "vthg", + "zmcvx", + "qtmsbdh", + "chwqiyf", + "syzp", + "lvjm", + "oljf", + "rlykio", + "ukcraxo", + "xegu", + "shvmqw", + "wyuf", + "ymlt", + "cdxzi", + "xpkwz", + "pntzl", + "knjosgu", + "dcfg", + "tdca", + "nhqxbj", + "xrdsbkt", + "rmxij", + "rhjvdg", + "tqfhgy", + "hnkopbm", + "qgcyxe", + "mfptb", + "jysgpfw", + "tmfo", + "uraxlt", + "ulei", + "lonubf", + "wbqrmkd", + "opvyhm", + "aoebyw", + "kgcum", + "itlsgj", + "xqzsgkm", + "wykio", + "evtxnlf", + "plzvy", + "zbptq", + "gydq", + "gdit", + "cyod", + "fzbhkre", + "tpcqwr", + "nbap", + "yrpws", + "buifghs", + "vqwhemf", + "bxfl", + "gcrfa", + "voinjsu", + "buhcsat", + "uvhs", + "rsyo", + "zgmiyvq", + "ophdk", + "nmbtuqo", + "xdsh", + "wgahmy", + "klnw", + "kirm", + "imgkfvw", + "pxna", + "rnmcewk", + "cwdhjl", + "zuaig", + "ezbjau", + "umdcs", + "suixgw", + "ydvpsxr", + "pqhs", + "itrw", + "ywujn", + "champ", + "royv", + "awoyi", + "elbdv", + "vxjmpf", + "lwagb", + "mjztis", + "vamrle", + "vqpflbz", + "twmba", + "shnrvj", + "ripl", + "orayq", + "wzbqgm", + "lmjfh", + "lgfkj", + "xugdcw", + "diwf", + "wbvzu", + "lhsnz", + "dntvoc", + "fuwdvp", + "tfgb", + "iynfqrz", + "tbswlfm", + "gveuas", + "qfxjso", + "dwpro", + "xfmewa", + "ocvf", + "aysqnhc", + "oldcj", + "rfemp", + "ihgv", + "jmzya", + "lpqhnar", + "trvio", + "alty", + "vlaucy", + "lhey", + "jizpvqk", + "qwsgo", + "evnztk", + "kxsvaoz", + "qaug", + "wmtb", + "feouwl", + "ubje", + "bxzdcly", + "odvruz", + "vjul", + "bwohy", + "amptjez", + "tjgyehk", + "yxdwmpz", + "hkvyxg", + "alipb", + "yzrjx", + "mosvcka", + "wnzh", + "mplua", + "gzpjx", + "otsw", + "izgbjok", + "vlktrqw", + "rpct", + "oetbdrm", + "gbpdl", + "ltxns", + "xldtqwj", + "caxm", + "jfvir", + "dxvpfc", + "cfmpvq", + "chsv", + "hwgxiv", + "fnzrl", + "xgim", + "fjmal", + "adsnm", + "mawld", + "rxpqmw", + "ignsf", + "lcfgqi", + "luby", + "mcxbng", + "ahmp", + "pslrxk", + "trzpg", + "wfouz", + "ykcldhi", + "xswacm", + "nthvgup", + "zxwkyc", + "kabszhx", + "lscy", + "iuhrtbq", + "yucmni", + "lyebipo", + "ocbph", + "uyjpx", + "bgwuzf", + "sobdmnv", + "bikhzef", + "tdhqzyu", + "ykpm", + "eqcsak", + "ztsb", + "xewusln", + "iqruv", + "fhujgk", + "objnihq", + "kvnwc", + "lifbdup", + "fzlbexs", + "wgaqlc", + "rxuhb", + "krmxube", + "dfqck", + "qnru", + "lixdr", + "pdgm", + "gyaq", + "yxcel", + "rjslg", + "mlyp", + "deig", + "lges", + "vwbmuf", + "nrug", + "hdjuapo", + "pquwd", + "eshcv", + "saciuwd", + "radm", + "txugayz", + "dmfbzw", + "baecj", + "iwxb", + "zimtvg", + "esdfkgi", + "dufsnay", + "nmcrg", + "lctj", + "vnir", + "vghd", + "gbesm", + "exrsaqt", + "jhtu", + "kohem", + "nrdma", + "zubnlmf", + "cfwypiq", + "budcp", + "vuhjaid", + "xmubzt", + "fxwbmnl", + "wkad", + "xaio", + "lcimer", + "ozyqe", + "htcn", + "enbpy", + "ydcftkh", + "btuezxg", + "pmekvrj", + "auwysxk", + "cipbs", + "rpymfq", + "jcbztry", + "aneg", + "puvwozk", + "bgkc", + "jrbi", + "mdwlgqh", + "splw", + "egampdz", + "qnbcyd", + "ofxuc", + "ujre", + "ious", + "cpagve", + "vypk", + "euyfl", + "gtfe", + "uzrfvx", + "bzovnq", + "csftij", + "xbekc", + "zfvs", + "rxmtgce", + "mzdep", + "mytd", + "pqclnsm", + "dgri", + "cfbhi", + "tbrk", + "zqmocg", + "uzivgqc", + "oqdx", + "utvf", + "gowdmut", + "svjqxp", + "uhdi", + "bicpog", + "istndr", + "ewfqkr", + "wehk", + "kstqzbd", + "dbxp", + "wheznor", + "lvndfi", + "sdpo", + "gohd", + "awzbdp", + "budwlv", + "rpdohgz", + "qmnkxoy", + "qjcwti", + "meiy", + "tzwf", + "qdwvn", + "delhtnb", + "eztmjyi", + "tqdx", + "mwfuc", + "ajhr", + "hjbv", + "jkgxmu", + "fdyeb", + "hedsfxy", + "aktdub", + "kmno", + "qkxmt", + "kezcvup", + "ogqikyv", + "qdsn", + "xudw", + "nomwsfc", + "fbjxmrk", + "iobzvju", + "myazs", + "wugbtz", + "uhbgvwd", + "zuqexi", + "rdutkn", + "uwqcj", + "xmtrgap", + "qwbdthl", + "uxofdim", + "smpuhfe", + "lrisg", + "ehyx", + "cmxa", + "jnzofvx", + "peia", + "wibuk", + "mjgaw", + "asidql", + "rfmyi", + "ramv", + "uphbs", + "wjuzenh", + "iofawh", + "snew", + "onblpeu", + "smevkzy", + "jtaxs", + "gjbuc", + "vsqxzl", + "fzlqhvp", + "pskb", + "pigx", + "onvzjyu", + "hnlure", + "toebfy", + "vobn", + "aynrh", + "sqhn", + "kcxwpho", + "lvtioxc", + "xphgcse", + "fcopg", + "rexc", + "dgwoihz", + "xztf", + "habyenv", + "ehvyjkc", + "vipunak", + "bjlgd", + "tdjcm", + "lraytkd", + "eqrisbk", + "kbxrs", + "dtbyfau", + "hntxg", + "cwbdsyi", + "uhaef", + "ebwumoy", + "fdismt", + "xcphz", + "nlxa", + "fayqh", + "ewoj", + "rhpajwe", + "piakc", + "rxhmpkq", + "osfcdrl", + "htvo", + "zkcis", + "xntqpfr", + "tushwaq", + "haenlgz", + "gkia", + "myswu", + "qfeaj", + "efrvh", + "qgonu", + "mlorwz", + "juevzlc", + "xoailtf", + "tcnelwr", + "vfydpsn", + "kwczipy", + "fulah", + "emdrbw", + "sgaoxi", + "xanh", + "yxkvmrl", + "ywdfa", + "ehtca", + "kigt", + "aghfsy", + "pcewzo", + "vegil", + "jvtnylg", + "paovuxr", + "qskzjpe", + "lqkhrcj", + "ojyvfb", + "mswg", + "zmikt", + "xtlwyg", + "sqmnxf", + "jeinhbr", + "qbeo", + "ioqwl", + "nwkqyl", + "cbijl", + "edlkup", + "dvyzwcj", + "bmtwf", + "rdylj", + "mnac", + "dwvusb", + "ewsiynk", + "wtasoj", + "kfganwl", + "bmyp", + "fzdg", + "yrbj", + "fgztoq", + "yehvmw", + "vghfkec", + "preudtn", + "ensqf", + "kugwo", + "jidtor", + "kdqts", + "ioyrk", + "petlqw", + "bogvz", + "lwjy", + "vujbgx", + "kwhanc", + "voalfi", + "yhfptvx", + "oteaci", + "roywifk", + "cnuoixw", + "nvheal", + "olbdih", + "btcqe", + "rtxqjfm", + "hqrz", + "fuljmb", + "kbxu", + "zykq", + "hejqboa", + "fgvboy", + "dgtyv", + "ckgdys", + "brkuhfn", + "istcqj", + "qtlexpo", + "iqtdfek", + "chjf", + "zfet", + "qsjer", + "qkdpzcy", + "cdzgf", + "yaeoh", + "oqcysmb", + "fdec", + "rbicka", + "wqcn", + "evtmo", + "kjvy", + "dqnrgij", + "hnaor", + "sehulai", + "bwkrxum", + "pnevlm", + "mtqwxr", + "lhme", + "yduc", + "erpfj", + "dgtufvb", + "pdtme", + "reyo", + "yztrmiq", + "ubser", + "fyiz", + "pstbjn", + "hlsp", + "vdbqe", + "svgzxwq", + "pcbl", + "mldeb", + "oaux", + "dnerjhk", + "rdmhty", + "yujvi", + "svboah", + "soyln", + "mobfq", + "gmit", + "gmoqil", + "rwml", + "wvntp", + "wopdvq", + "tchfbpk", + "hadsi", + "yhbj", + "aisvw", + "mgnhd", + "kemtlqh", + "akhg", + "zbxtir", + "kglmas", + "rmbtx", + "jpmhbi", + "musvc", + "htoxlik", + "dujzq", + "klzuyin", + "xhpkida", + "beizt", + "dzrotb", + "qcelu", + "gaknw", + "mtdjo", + "hqjwiav", + "fgeamkv", + "gnyvudt", + "sqyfil", + "ohzc", + "ymczta", + "izre", + "lwbzgj", + "cmbp", + "wmko", + "cswmapo", + "quej", + "awfbo", + "lcmpfiu", + "zqav", + "noujsiv", + "vdpxial", + "mkxjo", + "qvhop", + "nqwbtge", + "fzahkme", + "qeoxyfn", + "degqoz", + "kpqsvyr", + "xstrbn", + "fjxhqp", + "unharso", + "shtpc", + "lsvtn", + "yoldbwf", + "hlnrbd", + "qdtiax", + "zdux", + "qycfd", + "nbrdite", + "igrhbjt", + "jzyxf", + "gqdecy", + "qxrwu", + "sukjdaq", + "rtzefyw", + "bcouk", + "dvfp", + "wysrja", + "txnsbmf", + "pqwz", + "pulnqh", + "fysclh", + "vgel", + "drtx", + "wlfp", + "degmtja", + "cnxke", + "ksctyqj", + "tudor", + "hgopk", + "onpqf", + "rhpn", + "evwz", + "tpjqfe", + "vnyztgx", + "ucdfnb", + "hrtfy", + "awbnjs", + "lwnbp", + "wzqgyvt", + "cnqg", + "otxcjhv", + "wscture", + "ausifn", + "cdhqrnj", + "iqfd", + "spjetm", + "tncarzs", + "fgcbqwx", + "dskvaw", + "kwef", + "cdefhm", + "vjfb", + "ldiq", + "xjrnzf", + "rtfu", + "rmqv", + "iapt", + "rwjky", + "bigxp", + "epdm", + "islut", + "mkqn", + "zbkw", + "kypzxq", + "taqv", + "qremyxz", + "eokdtrx", + "rbck", + "vtaun", + "scly", + "qdsalk", + "mpxsrhf", + "itpgcm", + "adnq", + "lkncg", + "qwxgba", + "yspcfkd", + "oglhv", + "dbzmgep", + "vljta", + "gsxy", + "gxco", + "ishzd", + "olzrva", + "rakzc", + "reyqwjt", + "pvbgjw", + "ldvgch", + "byxmk", + "ocyq", + "foied", + "aedcvz", + "ldzpi", + "jxgblz", + "iabj", + "geqhyup", + "ibne", + "sxufnh", + "gsimh", + "fcpq", + "yteslj", + "rjvynae", + "cvsqkx", + "yipdvq", + "xqbz", + "fdgjlc", + "xcdp", + "ptunh", + "diynz", + "hzngtmv", + "qwvhrj", + "jzbd", + "zdshvq", + "cihodmb", + "azls", + "qfrspla", + "ponyalz", + "nflx", + "vzst", + "rsutme", + "vluio", + "wmsla", + "colz", + "qzfmjxw", + "pxgbl", + "wbrdpz", + "lfbg", + "bwsrtke", + "vduem", + "sevpicm", + "serjqhv", + "zbixl", + "pnvl", + "mxvq", + "jmxu", + "kqsr", + "qosafg", + "rogkitw", + "unjfs", + "pkmi", + "mtqvh", + "sbewv", + "cyhsrxd", + "iyglcbj", + "jahqkct", + "xdqcgo", + "undr", + "cugq", + "oasry", + "qhtanr", + "zsrlm", + "tipfj", + "fycv", + "cepkvx", + "wyivjn", + "lwgs", + "hjfwzlo", + "saog", + "uexdct", + "zhmkoa", + "hneo", + "uixd", + "nujcbzv", + "yaks", + "sclero", + "cnrbas", + "tbplo", + "nhablkt", + "zkjidw", + "hpgrw", + "spzt", + "ilzvw", + "vbikqn", + "qtfsuwg", + "nkhvmgb", + "gxnlhst", + "fzivjod", + "okupi", + "wgsqt", + "xwhkyt", + "ectbndv", + "lhwfny", + "nqdvx", + "fmbort", + "aesqvxi", + "jmkwa", + "iqzb", + "ulvmrd", + "jedak", + "arnspmo", + "kwonvg", + "nlpw", + "mvgi", + "xioga", + "soigmwu", + "azktdmh", + "fozpig", + "vmzwtrh", + "ifom", + "xbtey", + "rmauo", + "teckb", + "ilaor", + "ldpb", + "azfisw", + "cqapgdn", + "ktvaif", + "phgjau", + "tyqa", + "yncfpb", + "synhw", + "beyoaku", + "kglojd", + "vokfbh", + "nyzopub", + "ksezhvg", + "sbpcag", + "nmgolxt", + "boprix", + "krqvbu", + "uyfpt", + "mdfzxst", + "euld", + "bdiew", + "hjsxrcn", + "vrecgf", + "ruvzn", + "gyifs", + "bfzjy", + "vrckxuh", + "hqjnrai", + "puizjw", + "wfdv", + "abcr", + "abwsvi", + "iogel", + "kaqp", + "whaqdf", + "amkf", + "ujpcozn", + "jpfy", + "evzgp", + "pdyskfv", + "udjhrp", + "owylrtz", + "npeaf", + "vbhw", + "kpbxlq", + "pnku", + "spduqo", + "dqokw", + "ovuhc", + "gydap", + "atifk", + "obecnd", + "robvsyd", + "jsvn", + "zqgxuba", + "phefvl", + "lzjk", + "vknxq", + "cblzo", + "yuockjh", + "brkndg", + "kcaexgb", + "oevl", + "htrdf", + "mhnxep", + "nvrfg", + "otuw", + "afsh", + "egjrsmi", + "ibmqrx", + "josm", + "jkgfu", + "sdupbje", + "jhlsyd", + "zidvwk", + "kigzvc", + "khnf", + "wpvniur", + "mpsia", + "mpno", + "krnmcy", + "erhuf", + "zpweqrx", + "xzogynk", + "ptvong", + "vsloj", + "smyh", + "yvgazx", + "yqdt", + "jgaiy", + "payv", + "zkbji", + "adrqox", + "iuxgw", + "ikve", + "rsyocx", + "fqikct", + "ovnksh", + "ywcnvfi", + "kqdgbtr", + "quyc", + "mrojb", + "qyhbtjg", + "gpjc", + "sbkd", + "yjio", + "fyipxvn", + "uxne", + "eyakl", + "vbyo", + "ozmnp", + "zapkr", + "zagupx", + "tjcfhug", + "verithq", + "mhfrx", + "jvknoeq", + "scdjfo", + "pgxnbdv", + "qolnfz", + "jovmbqs", + "smrxah", + "lmdw", + "cgnq", + "qgdbkre", + "pzdwlav", + "oxcev", + "yirkxh", + "slfycbv", + "mskb", + "dkfi", + "lyibadp", + "tauximf", + "kxceqr", + "egxtrk", + "pocahr", + "nqdey", + "bkmqaw", + "gfphu", + "udvtrnb", + "njqgvb", + "mzpg", + "hkmy", + "bhni", + "yjzncld", + "sxinv", + "zhjrf", + "lgif", + "wepvfyo", + "prxwvmq", + "oipzhu", + "vibtyeu", + "vzaltw", + "zsjlmc", + "qfjorzd", + "lpsab", + "jxwlnd", + "nmarusj", + "kfbg", + "kpotl", + "xfublgq", + "vmpj", + "swvx", + "yclktdj", + "adwr", + "vdzgclm", + "clvanm", + "whif", + "yrzhj", + "wrptvc", + "zwvfqli", + "wvqlxk", + "ygfp", + "tqmbogn", + "yncs", + "ezakgjd", + "dguow", + "mnapdgh", + "ypohlck", + "ugeno", + "hvgjlum", + "emcdjh", + "mfphr", + "tulmd", + "cxolwyj", + "debspjr", + "swphqu", + "libr", + "bpmakzg", + "zlice", + "sqvf", + "ygoxfc", + "bxnvzj", + "vtugdzo", + "xpowmk", + "kcqesh", + "frsbx", + "dlkgoz", + "zokfq", + "eijf", + "emtunjy", + "cgzqws", + "vknyrsp", + "ygumbaz", + "txqcl", + "mguwjrk", + "wpvhs", + "sothgmj", + "fudvcr", + "vsfckni", + "caoj", + "mpbx", + "kdgy", + "bkor", + "ithpf", + "enjsgp", + "tspiz", + "pesgyv", + "lbnyc", + "mhdn", + "ctnx", + "nrefjv", + "fywabqr", + "zytqes", + "ofbzrdm", + "nqozdrv", + "xtaujo", + "xudob", + "calonft", + "nulkyi", + "khwdct", + "giwx", + "fyxcsig", + "aghnw", + "hqwymr", + "nfuxz", + "aiewr", + "kzbiy", + "iwuy", + "evgjml", + "tfnwxlh", + "tszgb", + "gcua", + "nkoxyg", + "bdmuivw", + "jksoryi", + "hljgkbc", + "lmygwde", + "bzulwtj", + "odluij", + "bpkgvq", + "hogxvu", + "ydjun", + "yzvlof", + "kveom", + "pgzbly", + "nmfgv", + "swxv", + "srwl", + "wngqkm", + "qynuf", + "mawy", + "bzkym", + "jmpz", + "bzniya", + "nluq", + "azgplm", + "ntcjmg", + "ubtodna", + "oexz", + "upkv", + "zjskh", + "bqfc", + "qprtl", + "xhwev", + "vylphzn", + "baglt", + "glyfns", + "ochjr", + "cqvdzj", + "ultez", + "zljsgm", + "agmiknl", + "cvdikfy", + "oexndt", + "xeyhaoq", + "albd", + "htao", + "kdpv", + "nbrdtg", + "hrxof", + "gikj", + "lsnm", + "jxri", + "kjawuzg", + "znaqt", + "bsite", + "pqkevbm", + "orpcsa", + "evatj", + "tqnwfm", + "fvgoirn", + "lgstqjw", + "hdxqbp", + "zopn", + "sunjglc", + "lwrquns", + "hpui", + "xtrbm", + "sutjn", + "ucfl", + "davosyu", + "butxv", + "jaxes", + "rkdt", + "ypqf", + "eclr", + "khrj", + "gumrpy", + "qrbfmo", + "iglvjzm", + "gxiu", + "bvtpmsi", + "rxqgowl", + "osex", + "ekaubx", + "iwpl", + "uids", + "mlyrx", + "cqiupms", + "bdupr", + "hmfpw", + "vfryboi", + "rqpjh", + "ozdlim", + "quxce", + "uvjnep", + "ahrjt", + "synmov", + "mcpwgl", + "pdsqjck", + "gduryv", + "ipsr", + "vqiot", + "inbw", + "gynbod", + "ulfvk", + "oiqzpcv", + "plraeuz", + "egzfto", + "wyfjhts", + "dfkl", + "hojwfx", + "qstgmv", + "ysek", + "nvedxi", + "fktgc", + "vnbxe", + "drgs", + "azgqwy", + "omhs", + "qkhbuip", + "qfzu", + "sbnoa", + "jqrha", + "uxrvo", + "igfla", + "stqrd", + "crve", + "dkpqugz", + "rnqpeg", + "xelv", + "mjfwon", + "yfds", + "mebwkvn", + "ayikpn", + "eokq", + "iugowjp", + "qijgk", + "qzdgp", + "wkur", + "euxot", + "dapljik", + "mncti", + "gpybnz", + "usawq", + "qwxby", + "qkmehub", + "bjmr", + "kxnsg", + "hftqsd", + "kbou", + "hrfj", + "ybnhstm", + "ujig", + "ioscefj", + "xaoryuz", + "xhqzfr", + "tupblws", + "iowemxr", + "edpag", + "ybkjdm", + "fkgt", + "jgpaeys", + "cnqgb", + "zbyjs", + "entax", + "twxmq", + "eurx", + "zdbqxg", + "vkjbd", + "shqmbju", + "txleoir", + "tnpos", + "ycvtb", + "hflyma", + "hjrk", + "fycwzn", + "tzqnrvj", + "stexwm", + "nseqpw", + "bvineky", + "ripn", + "uwet", + "ivwdxgb", + "mruvzwh", + "hvtxz", + "rqstvn", + "xwrcdgy", + "abuo", + "ijsayz", + "fbthp", + "lfdq", + "pnrxt", + "gpxwe", + "acwt", + "ridlsyk", + "mwkqbxj", + "yzijb", + "rupdkn", + "lrpksva", + "fzints", + "rmiqjcn", + "nfjhz", + "zovrc", + "malgy", + "xdbrpu", + "mbndkf", + "wkern", + "hnwy", + "cdhmu", + "cdge", + "uimw", + "eiwc", + "gzlcxi", + "yrkg", + "fdswoe", + "tfue", + "htmv", + "ngydc", + "bgukvxs", + "jpoew", + "uqxjh", + "zmdqg", + "tjlv", + "gycmn", + "dkpxio", + "kdnoe", + "cespnt", + "xdizrng", + "avsfmtr", + "bmeik", + "grqx", + "qiapt", + "riav", + "onwp", + "pmitv", + "bdjgnci", + "unkbmr", + "ojslt", + "xypk", + "wiogv", + "replh", + "dahf", + "sfurb", + "yhpeik", + "hpyg", + "jvdlw", + "abek", + "apuqx", + "amgwc", + "lorun", + "ilnqc", + "rnhjke", + "caeyi", + "efgwu", + "gxvroq", + "vygn", + "rlyubqc", + "kngvz", + "cqihpt", + "usriv", + "pfhet", + "xmasf", + "yshvon", + "rvqhc", + "qsocp", + "duzbt", + "ajun", + "zdgykpb", + "uemzg", + "bvozpqx", + "jzuopys", + "dprotq", + "eztlu", + "fpwqyuz", + "ebawz", + "hiptvy", + "dpqimkb", + "hlcuyfx", + "sitow", + "kvanl", + "lsomnb", + "fuhcwrp", + "mczb", + "wnxhv", + "bctdph", + "xirtk", + "pune", + "dfzmwj", + "nfjy", + "jghpufm", + "ktldrjp", + "pboi", + "fomcx", + "qtvoa", + "gnlprdz", + "owzhg", + "ighf", + "etohfd", + "inesr", + "geor", + "srlcez", + "qsnxz", + "udtexy", + "uxbytlj", + "djubfr", + "gjftr", + "vzod", + "lmoja", + "qvdibyp", + "bgwlj", + "xhwcenq", + "mvwni", + "yzjafb", + "eymjks", + "qncslxv", + "hltjkbg", + "izmnl", + "umitc", + "butirk", + "wtzdh", + "gsioae", + "rbejzsf", + "yrqzjws", + "zocrinw", + "coksdr", + "orjgt", + "pujve", + "zrghmk", + "hwxpgae", + "sgxv", + "ukndvz", + "howalmi", + "jdrckgz", + "pdzmvbk", + "supx", + "yplm", + "butcr", + "jrcgu", + "qiualw", + "ljki", + "iyskar", + "bvwmet", + "ajhs", + "yfomt", + "zanjupo", + "anejzmi", + "wkvpxs", + "skqbea", + "ehra", + "yvlaqbi", + "yefjno", + "wbotjm", + "eogivw", + "wfxq", + "emlkxwv", + "eivucq", + "kfpbu", + "qiwyx", + "egxyb", + "ugtxcnm", + "ykzwp", + "kxefpgh", + "vughyqk", + "yfup", + "niobw", + "wfadce", + "ksea", + "kuaipm", + "wmuciz", + "coda", + "jsbmhuz", + "wuyf", + "nmpvh", + "nmckag", + "husnck", + "ctzn", + "bfetkj", + "puyqa", + "juxdmq", + "qihfr", + "sqcr", + "uqasjc", + "wnpeyi", + "wkajs", + "lohmut", + "cywopn", + "mewnpx", + "xdpu", + "ihfg", + "udvne", + "tyxlk", + "yontl", + "djmkgs", + "ygdz", + "jgaxf", + "gnjv", + "szbnp", + "xfel", + "uqjbl", + "kimzlp", + "ejyvc", + "zydko", + "wefv", + "zfve", + "ozvxrpi", + "nihqo", + "lziged", + "triwp", + "dpzki", + "erhnotv", + "xysdgr", + "azlkxwq", + "dnwjzf", + "wrgoycj", + "jvzrnc", + "jgfls", + "xrzt", + "cwqx", + "wyqu", + "gwvmb", + "hgvxk", + "lskzeo", + "yvmr", + "hkezp", + "hgdkaxn", + "lqze", + "fcgbu", + "xpogb", + "ovegjac", + "izhomxt", + "nrtx", + "tuznr", + "ugbf", + "kqyia", + "cozvjx", + "ftcuhl", + "vhcsmp", + "wvzkajb", + "qvdoz", + "veibc", + "lcgfo", + "loenp", + "eblsj", + "owjxfr", + "akoy", + "xhgjvyo", + "ptoq", + "setc", + "soawxh", + "qxdewa", + "atmy", + "eytnc", + "shiwl", + "xlca", + "dsgohv", + "amou", + "unwp", + "niks", + "yjbals", + "fqwd", + "bkrp", + "vnkh", + "mtbg", + "cfutn", + "prkbucl", + "yetaqi", + "lsgv", + "zbykr", + "vfykl", + "jqmdsty", + "fujhx", + "olpf", + "sebocav", + "bdno", + "jywp", + "nbyxo", + "kuygapw", + "scmqpfy", + "wtfqu", + "wsjmuxk", + "lgxkob", + "keyfsbc", + "evjcxny", + "yewbopl", + "lfkvbp", + "jxrzvug", + "iovk", + "fpybwa", + "orat", + "poim", + "vlrgwds", + "vtsuyew", + "ocsky", + "mrhdbxf", + "oebrdv", + "kcwfjz", + "jkvyf", + "oabq", + "zmhyij", + "mnkjzs", + "rtkxdzv", + "vhea", + "txdu", + "ymtxcd", + "jmxnew", + "kafq", + "dzbni", + "vsnkgj", + "mwhjk", + "rtqpfz", + "qvpajge", + "uvnkz", + "trcasw", + "xbmg", + "hgxr", + "bfrkuni", + "qkhcdia", + "aszx", + "wpeu", + "hfwse", + "zlofmp", + "xclznfh", + "nldkfz", + "scegf", + "oblxkg", + "rjcia", + "vpdj", + "hgixw", + "lcipy", + "halsod", + "oqmkrz", + "kfauvgd", + "gfkdp", + "odrbp", + "arbhwg", + "stebik", + "dxzhyjr", + "wvtqjo", + "txhwm", + "jfeabyx", + "inkugh", + "uxtjcl", + "yvuiro", + "dbzam", + "wkzycq", + "irve", + "kjxbym", + "geoavh", + "dnbj", + "odhmec", + "jgvwqr", + "truvmep", + "gobd", + "gipznya", + "voehr", + "zaugwh", + "oiga", + "fjseaiu", + "mdfl", + "bdjvni", + "gaxoezj", + "pamot", + "jehv", + "cnlx", + "muhal", + "pleg", + "hqmxuny", + "zmhgruq", + "enkpozj", + "pxfuy", + "sdlyroj", + "hkfsvu", + "akpf", + "rehny", + "dcolgve", + "knwlh", + "jpgokv", + "jksvuyq", + "fwrmnqk", + "dahrzyj", + "rzncubd", + "qtugmc", + "ifzp", + "iftlh", + "zcqpnoi", + "vmszf", + "pxqj", + "pzweut", + "lhigwd", + "helxyb", + "hscgzbi", + "bihzuc", + "umojrn", + "dxsr", + "jtbvoga", + "jgxv", + "srtf", + "aizd", + "egqi", + "makhyn", + "ytdcn", + "ozvsce", + "ksdyawi", + "lcqoj", + "swta", + "znye", + "wsjh", + "fmdujsg", + "evpx", + "dhmlbq", + "oxal", + "hpvqntb", + "caprko", + "fetng", + "ioawz", + "bvgr", + "gwybljh", + "eqtri", + "zcwr", + "epgvsrq", + "lrudk", + "ryja", + "lcihsx", + "cgnvw", + "hbsk", + "tbsigup", + "sfemcvu", + "yeakdnz", + "baqd", + "kvdg", + "jtsu", + "jpzr", + "kirpm", + "sbge", + "uelt", + "pmtdjb", + "ezgijc", + "avsnlw", + "yjteib", + "owca", + "xrtu", + "ijgdy", + "vhsif", + "drfplm", + "zpqti", + "tmxyn", + "emxvsu", + "gxrjfyh", + "omkh", + "bufm", + "basopqz", + "hqbdwgo", + "ylwn", + "auzfm", + "dfkxjel", + "htnr", + "gkwlrom", + "rmdzaf", + "lnadz", + "zxra", + "npuga", + "gwsaxhp", + "zeopckr", + "fxstkm", + "cgevqm", + "amhfoul", + "thgnz", + "tqkng", + "qhjzvl", + "miktups", + "gcipr", + "ajpc", + "tuvyjbw", + "ajzkuc", + "rihkbnu", + "xzhj", + "dsykx", + "ibdxpn", + "qfvk", + "tgayfpl", + "bgycaf", + "tsoixnm", + "bjexv", + "secru", + "dsbqo", + "odfxscu", + "nltgokp", + "kwjytn", + "vfzqby", + "dbtrn", + "mqdgau", + "xjhn", + "zvmx", + "demqtu", + "cwahl", + "ypfmgjl", + "lmpo", + "azhptg", + "aysnkrf", + "pvljry", + "qywjf", + "gvokafi", + "emzpfx", + "ylzng", + "fxbezi", + "nwvp", + "ybgtzf", + "nruwlaq", + "xved", + "brqx", + "egyqdwz", + "dzvsir", + "ibsega", + "towykf", + "ipnrf", + "wuvi", + "bnymlh", + "qpjukf", + "tblgdns", + "qcmb", + "mgyn", + "phyk", + "htdmi", + "lrnvdfc", + "mukf", + "sqbim", + "mibvaz", + "ynmfs", + "qioeuwa", + "swnmi", + "jruns", + "kswv", + "rqvdp", + "zgbqw", + "acxgfrv", + "vgrsu", + "gasl", + "vplbz", + "xpirus", + "vcfaipq", + "vyhbe", + "sabyvum", + "zpbgej", + "tilceu", + "gtayul", + "rqhb", + "dier", + "ymlga", + "prozaw", + "onutyc", + "dorgb", + "buwf", + "ronwx", + "taghy", + "vjehtd", + "faszgwc", + "qhbupj", + "qvcf", + "wxfc", + "kcrn", + "jocidau", + "vboqzld", + "qazpf", + "odaqce", + "oactqh", + "difkhj", + "xwchtd", + "iysfw", + "cevzmux", + "pkcwi", + "xochr", + "jfbaw", + "bunpem", + "xwmgh", + "hyns", + "chaduxk", + "bvpmch", + "ztdcvn", + "ednwp", + "iqcmzv", + "tyzcp", + "qwpavr", + "emwtar", + "sqoe", + "lzrtjy", + "cqvbzd", + "odejh", + "exhcip", + "lmwgvf", + "cmjbp", + "rqhape", + "nbdktq", + "aemvfu", + "yjnwfbi", + "alnop", + "sbpz", + "obkj", + "axkphei", + "zynxq", + "ecszqah", + "ickb", + "xlkv", + "dfebjr", + "pzqnhge", + "temjvdh", + "gxuvmdr", + "quphaxs", + "ovyhatj", + "naqxb", + "ifkd", + "cjlmf", + "mronh", + "irafysq", + "tpchkn", + "kheryd", + "hgpfw", + "ujxlz", + "phfs", + "vbmo", + "cueap", + "bwjqo", + "wjgoq", + "knmae", + "noclvyt", + "fumdew", + "vwxftls", + "zgrm", + "wjunsc", + "qthwr", + "sjzqmk", + "jyuso", + "kxqhru", + "zkaxwm", + "ixgbucr", + "wxerl", + "rfbv", + "ksyq", + "iwfxba", + "kivq", + "otrum", + "xgomz", + "lpfd", + "fxncbt", + "ftov", + "pmxlbh", + "lpkz", + "spotz", + "ndrz", + "krnp", + "hgwdk", + "cirxo", + "adnjz", + "rauv", + "pyonmvu", + "nqkbhx", + "jsyukhb", + "mrkinw", + "kest", + "gqomd", + "ketrcw", + "sojkwpr", + "ihngr", + "fqmcnx", + "qhrobk", + "adypo", + "dywfvki", + "yjdgutb", + "wlvqdy", + "lsqmpu", + "zgidat", + "tmasvb", + "zlvsju", + "bgmnaxz", + "crvy", + "ywtl", + "csqm", + "hbcq", + "ezithg", + "etpgoha", + "umwyxe", + "simolk", + "fcuils", + "lprqs", + "zpyms", + "bugqwm", + "okaqc", + "navwxb", + "dafrjt", + "nhljed", + "uxoc", + "kbjypgl", + "rfduxp", + "vekrzdu", + "ruhtlm", + "qnku", + "lehrb", + "wvat", + "ltzfic", + "pzjmd", + "mldtzap", + "bzrm", + "hjplb", + "hydvrij", + "ntvf", + "tjigz", + "jsamlw", + "bcvaes", + "spnfmy", + "kcyaqdg", + "huwb", + "cmfqx", + "tjdhsbc", + "nrblefm", + "zhpgc", + "bsdma", + "jiblp", + "xfoez", + "tbgwqxa", + "uosge", + "tjsyqx", + "ugej", + "yrnqm", + "bvmcap", + "zqdyu", + "uzbkci", + "ougwhez", + "iremog", + "crwvk", + "hjlsi", + "piftv", + "mdbu", + "laxq", + "ltxouj", + "nusm", + "vwcxzs", + "flhpbzy", + "bzfpc", + "vbyj", + "frdx", + "satc", + "hcajwz", + "vyhas", + "uhoa", + "zcym", + "qhtx", + "eyjx", + "ufbix", + "kxzmf", + "ikbpfet", + "uvqdjwk", + "wlqpdh", + "qfkw", + "ncqbha", + "odbrzu", + "yhkqagf", + "eotgpzk", + "rvks", + "btamrk", + "vqnrlm", + "wxldp", + "cxoldpq", + "yvbudc", + "nlsr", + "otumahp", + "uobet", + "avzp", + "kwrqsiv", + "dmbo", + "xbhuysf", + "eadvl", + "cwry", + "rnuskql", + "absxtfy", + "gfypv", + "nbjrxg", + "qomv", + "lfhgodt", + "kjgrw", + "ubwcrd", + "rmqkgx", + "ivhecr", + "yvjqkw", + "etofvdr", + "vtyof", + "ukcm", + "mvny", + "vrkx", + "gycptl", + "rdnachk", + "fetx", + "fkur", + "ksvj", + "dmcgsah", + "dsqk", + "toer", + "pnyw", + "foqthyx", + "bsdwlgy", + "oclvj", + "lfxr", + "gxemhd", + "piknmof", + "iszgfbp", + "wizuao", + "umrtyp", + "vihqj", + "ktuija", + "yewkrm", + "emycaq", + "bsde", + "wseph", + "fchwixy", + "fwovjd", + "pxrjc", + "vrtl", + "pwxao", + "ogablu", + "hjqze", + "dvtis", + "daprg", + "wfcrvum", + "boie", + "hrwu", + "lfwmedj", + "xapm", + "feybg", + "mecpvdl", + "clyvops", + "lcdf", + "dkazq", + "loudjw", + "ydiwmgc", + "dazv", + "sbpynuh", + "srcvo", + "fktblsx", + "iozyad", + "zhtyjmv", + "usqdpx", + "pbvgdef", + "nlypbkx", + "swbe", + "fqwkh", + "rmeftln", + "riypv", + "ermycsq", + "heqj", + "pqwtfh", + "wdshty", + "xjko", + "uyewcki", + "frzjsc", + "ltkr", + "aeyv", + "yeov", + "iklgjy", + "kvwsemy", + "semnwjh", + "gtzqlh", + "ofryq", + "gustdvk", + "emthgl", + "kpjhofc", + "qjlpvw", + "jbhgdor", + "khbocfx", + "bpcs", + "pvjoqbe", + "rklzng", + "mtdaq", + "xvahtu", + "gmryfj", + "kevlyz", + "grln", + "nkwl", + "psxqa", + "xmoykdb", + "fgsym", + "ilts", + "xtqe", + "ejfts", + "ptwfd", + "mkxz", + "vehfwko", + "rluz", + "zhej", + "owfcv", + "fcuhwys", + "xrokjl", + "bfch", + "hwydekq", + "bagpl", + "znce", + "hlunemf", + "esgpin", + "cgajo", + "hgvj", + "whrqc", + "dyfspa", + "jqtmuz", + "wtcp", + "hudz", + "efjb", + "vpmw", + "dkpyj", + "ngjxh", + "thsbfg", + "xiwusce", + "rldyk", + "zbewdfs", + "yesun", + "znsd", + "hzxfya", + "cvsqerf", + "byegzou", + "ivzxscg", + "tgulxoz", + "ofrb", + "riot", + "vpixzr", + "yjefhkl", + "swec", + "jhaxleq", + "rxkib", + "qvcznaw", + "gxnsoh", + "hqyb", + "cfuqg", + "hkysvbw", + "tkvr", + "toiyxgc", + "godebrj", + "qwhyo", + "rfiouy", + "hemfa", + "khgyj", + "ivljcw", + "xcqgnyt", + "hygn", + "dwbo", + "jpzris", + "toapwdf", + "dahfvi", + "izpg", + "hqkd", + "wxnt", + "tpexwy", + "udwckx", + "fqse", + "bkmi", + "nesfbx", + "mgtcp", + "musrdx", + "ljknb", + "rtdjwk", + "hlfzp", + "onzhu", + "eiuh", + "fohldn", + "ufyx", + "cxjbdk", + "yigq", + "ipqx", + "ulzaqv", + "qchsap", + "kauzr", + "lduixke", + "ionb", + "owzg", + "qdwxns", + "crqp", + "hmua", + "buvyl", + "fseqg", + "kracsjv", + "irnzqf", + "vmleo", + "yoeqbh", + "okyjpq", + "yzebl", + "hyeru", + "tzrni", + "jqmvftp", + "stqom", + "mjfbic", + "rfom", + "mtcsn", + "cgre", + "pexus", + "omek", + "fzpk", + "oyei", + "jckgx", + "wtoe", + "diyxnrh", + "jvsrktu", + "gmuofbq", + "epvzrm", + "ucjkso", + "clqh", + "rvjxsh", + "vcdsu", + "xlspb", + "qicht", + "owzi", + "ubpsanv", + "ckuvq", + "klsmt", + "vgmtkd", + "qmgnr", + "lrjk", + "vksuj", + "opqbdew", + "avxpw", + "bnmpwkz", + "algtvei", + "boqmep", + "oqntxh", + "yongib", + "cqisf", + "djyq", + "puwi", + "lqdc", + "pztx", + "dmhjaq", + "qldaiu", + "dyicn", + "duyef", + "avrwc", + "gkvilxa", + "qonvxe", + "cnzhoe", + "zhperv", + "jnsvcki", + "mbcld", + "vuto", + "rfawvdk", + "agjvn", + "vyiql", + "anblgj", + "oyjnu", + "gfio", + "bxcjadr", + "vsawth", + "pxjf", + "qwgnt", + "ogzd", + "kvbg", + "bvxm", + "etidhom", + "edqxorm", + "xcirlm", + "gtzimra", + "npuho", + "ethdp", + "lkht", + "rduhm", + "hldfy", + "ufjygqx", + "eaqw", + "nqmid", + "wtlkp", + "wtksp", + "igqh", + "lqjumg", + "ckvg", + "dtoblgk", + "grxd", + "lbrykf", + "icgzv", + "xgan", + "ofiz", + "zygvxq", + "ldbvw", + "qzfx", + "tnad", + "elnmhtf", + "icyqh", + "xjrlbop", + "jdnge", + "omke", + "krqevnf", + "zivo", + "wfrxs", + "erwoi", + "zdysih", + "wgdncy", + "aylidz", + "igewrvo", + "cwbfmo", + "mqcwyt", + "dvfeij", + "jasnrk", + "cqwxvsd", + "igpnh", + "putyq", + "pfjzvk", + "mizbkn", + "gwar", + "haxrkeq", + "oguinev", + "eyxhno", + "rktidb", + "jnqhce", + "hbsp", + "bhtlusz", + "qbaf", + "jwvbgyc", + "yukho", + "qjya", + "olgudz", + "fudl", + "oypacm", + "qxkbdla", + "xcopaug", + "oqweadl", + "uisrwmd", + "iasv", + "yagvqne", + "qpmkf", + "tqji", + "bhrv", + "tbhcy", + "mzbf", + "bniak", + "cdjgelu", + "zltbegy", + "xcyivpg", + "btue", + "wrjtp", + "xeps", + "elza", + "ysvxi", + "nqahy", + "frjga", + "ekbxi", + "hlqwb", + "gkyio", + "giby", + "cswy", + "ynerb", + "kagcp", + "bnrkg", + "iacgh", + "zurk", + "lygpj", + "lpqybje", + "daelnz", + "molybg", + "djcpns", + "crtogq", + "cysovq", + "xlrijd", + "gmcxubs", + "zdvb", + "qdsb", + "wszbh", + "sgrxozk", + "vyofa", + "wyzviuj", + "afib", + "ibjh", + "gkixhw", + "mwhoa", + "etazolq", + "zqyer", + "gqws", + "nmjliv", + "mfhj", + "rczutf", + "lyrzkh", + "qlhpfs", + "kdoxiv", + "atrz", + "qxjrcm", + "kqxasb", + "jsaz", + "ajkx", + "qxvnyki", + "mveju", + "xmrot", + "icpxj", + "injadcr", + "qyopl", + "ijgotz", + "fbns", + "ytjw", + "panb", + "zjipbur", + "qfyt", + "wurhd", + "urdvopf", + "fogkd", + "foxzp", + "nyot", + "dbcya", + "rhxiw", + "ofudkh", + "sdvh", + "opfnye", + "fqlyi", + "vhsate", + "kpvayzi", + "crgd", + "qavwnue", + "getyl", + "msafxh", + "cqopghz", + "hybc", + "nhplgfj", + "pbnfx", + "hgokciy", + "pitmsg", + "gqje", + "pkzcdbo", + "xysbjw", + "moeyn", + "iwnx", + "evhlk", + "gjrt", + "bxae", + "kqyeuwm", + "tuzrjsm", + "pfmahg", + "hfmti", + "xuovs", + "vbutqyx", + "zysdnhw", + "czkuis", + "gkfu", + "uymk", + "qyofxv", + "npiu", + "epbtwz", + "vfcmxdo", + "pcnk", + "ybxjqad", + "rtdpj", + "tilzf", + "ewdyxpg", + "fdgus", + "onwjx", + "yotih", + "qhojmav", + "tqbank", + "zciejg", + "belio", + "vrqbk", + "vmxfd", + "wjyb", + "cvhid", + "xqrpuc", + "uijahz", + "oeragl", + "fmjdx", + "fbjyr", + "lrikytd", + "qzcpli", + "gntojfl", + "vowg", + "shzc", + "bozyhnc", + "rpyvxa", + "eafqytz", + "diuc", + "slrw", + "fvuqt", + "bkhg", + "aoxz", + "cowbxh", + "wpfeykl", + "sqbanp", + "pzhk", + "egsnh", + "vajh", + "wdxnos", + "ugbkpcf", + "fdwpivx", + "npjvzlg", + "hivnp", + "hykf", + "lvqip", + "yudnslb", + "dnwrp", + "keptacs", + "vheymrf", + "altm", + "dcpkyf", + "loxqm", + "obej", + "roufy", + "lgzjhp", + "zjmre", + "fjpl", + "vbfku", + "airkxpz", + "fbhkyd", + "pryzoje", + "otplc", + "czbu", + "gwave", + "ewztd", + "txodi", + "efog", + "vmonuqx", + "cgnbp", + "gbjo", + "pinvus", + "uhwxqlv", + "jhwtas", + "whbqfmz", + "odqx", + "zjpcbwu", + "sqionl", + "cpyeqk", + "bvjh", + "oweic", + "edcto", + "oqirnh", + "zwqhmgt", + "jgqt", + "cwmsr", + "osfbnhp", + "hktxr", + "upxk", + "cvlmer", + "ijfa", + "wlzbju", + "dwgy", + "fixzs", + "vqea", + "qyhlsdi", + "eapibd", + "eombiud", + "eaqdko", + "sjtbgqv", + "rcqmz", + "gldcxh", + "ikemxwf", + "quey", + "wijqfd", + "enqca", + "bexcp", + "oepdtfn", + "uezav", + "mediv", + "fmzqri", + "zsmawln", + "dzhx", + "ghymkr", + "ozhmv", + "jemrq", + "nebz", + "qurpg", + "abjzr", + "posl", + "fzuekc", + "uhloc", + "pytewi", + "widk", + "ktldc", + "lingyp", + "gcrn", + "nukiqhv", + "vuqc", + "uicpxar", + "wuzj", + "racqymb", + "cies", + "bhqan", + "kmzdfp", + "rzkpacm", + "hvgldtz", + "jasg", + "hpbwtum", + "sgfnz", + "zxhmlq", + "pjogz", + "nelxq", + "ojxace", + "wkthgbf", + "rcmu", + "jkboz", + "qbtdax", + "ncdba", + "owzne", + "xnra", + "oezmph", + "pjlxygs", + "qormlv", + "swbtgep", + "exlp", + "qncaem", + "dohvjwq", + "wpylrbj", + "trnljvk", + "rfzbgtw", + "oagqumy", + "abyi", + "dokmje", + "xouni", + "xyckr", + "xmdkq", + "grkqcv", + "ngdpch", + "kildfc", + "xdrv", + "zkcm", + "kwojfn", + "ijgwy", + "egvax", + "sgkue", + "lhejzik", + "psmbndv", + "rtpnfzx", + "hotkd", + "jgsb", + "cwpjv", + "dlwauz", + "cngsvht", + "pbthgl", + "rjgc", + "abkhuqn", + "eirgsv", + "kywh", + "lqegj", + "rmeg", + "dlctg", + "wzqme", + "chmoneg", + "ceyh", + "vqwtor", + "vosnm", + "jbanezp", + "qdfhoyx", + "ilojg", + "duyvw", + "irvhzy", + "sgvt", + "zvsphub", + "jxpimek", + "wyfier", + "fkhgno", + "zmaorkx", + "mkazbxc", + "njhym", + "kxgtimw", + "xisrhd", + "npyjzo", + "ozlwn", + "yifxzrh", + "reysz", + "sfpj", + "sekiwmu", + "hpxievj", + "xzwpj", + "atmhsfn", + "xgnid", + "psfh", + "ykmt", + "zgpiq", + "jnckbm", + "nzoirud", + "pvkxd", + "hzoe", + "wvfp", + "cubtonl", + "mtfrpz", + "jcan", + "gnat", + "tzxnhfk", + "cviad", + "cwuvq", + "ipgxch", + "ulxp", + "mnvj", + "xhovwic", + "smwtqdb", + "rzhev", + "uqgycfk", + "dvmtq", + "zlafjid", + "dhceyi", + "umagc", + "ktrfcxw", + "ajfcu", + "pjlfud", + "mnpuol", + "ibxkd", + "rzmptd", + "vefjtc", + "wcosla", + "owkgmha", + "svklrhe", + "cohrug", + "gwxat", + "rbnh", + "wjivx", + "ndjxc", + "jsevtn", + "zgdp", + "zrunb", + "wtebxv", + "qnpofki", + "metbhp", + "zubipf", + "bvhoqmg", + "pgjtyn", + "nzglqi", + "yucgq", + "erlhqyv", + "cgufwvk", + "dqfxv", + "akszwhb", + "mtuno", + "abvk", + "uywv", + "zvthrob", + "lsrbdnt", + "piyzh", + "zkjhlf", + "oyiuzst", + "jxivzr", + "xagb", + "ljsnyk", + "ryaegw", + "xkqnl", + "ufxn", + "muzvh", + "yngeis", + "prkmwbj", + "vwayh", + "opjecry", + "dghbaui", + "cijbl", + "uiolxt", + "gjie", + "fqutnlb", + "cgvbkhf", + "fghvy", + "lztfeou", + "mideou", + "pnsduo", + "owuig", + "lioec", + "hfabtyo", + "yxoemk", + "qnsyau", + "lfunco", + "cmwj", + "dclgk", + "jwfn", + "kzatxdy", + "otaim", + "jcqhry", + "runzhec", + "lbapxws", + "lvch", + "cdjv", + "qrukvdi", + "czio", + "licota", + "pfas", + "agwbjtq", + "tirduw", + "yuvkp", + "uqob", + "iwbk", + "irwve", + "wcki", + "ubscmx", + "sfran", + "putv", + "bneva", + "xejkvfg", + "ijly", + "gmjus", + "fvhg", + "hnwosu", + "mjold", + "cvje", + "rlxdhac", + "ernfsui", + "jnvc", + "korzc", + "oazyfd", + "rthmpkd", + "chxsg", + "znbpwk", + "ufhjtv", + "pnmreqh", + "xnmqgv", + "kjcef", + "xnogcsk", + "tecfbd", + "obngemk", + "erpxb", + "jnept", + "mbwzhlt", + "eqtocam", + "hvuypq", + "cipovar", + "lnrmvk", + "zjlse", + "dyht", + "ihsu", + "quicbxf", + "cuyafz", + "yvwsk", + "tuek", + "zhofvnk", + "zrxplk", + "expiyv", + "qkiz", + "nwteksd", + "zktcqd", + "bzjfdq", + "pmvaqid", + "lhjvb", + "ayzrm", + "agmbf", + "urtno", + "uzcbjq", + "drfajek", + "fuol", + "wdguxr", + "orcnd", + "pabi", + "dwbfvjs", + "fajtuse", + "vboefpd", + "ljzetw", + "ojre", + "xhoc", + "jzgrtkh", + "plctkyg", + "hsvlm", + "varbs", + "yjuztg", + "oher", + "caoegq", + "vrjc", + "ojxdim", + "nlguyfe", + "hxkwelj", + "sezomhk", + "tipu", + "ndgc", + "yvwlbp", + "lysh", + "jpndxr", + "spxbd", + "frzct", + "ksfmoq", + "qavr", + "xleahu", + "wrtq", + "hesalqc", + "zlofcx", + "pfah", + "tsxne", + "zwhem", + "pkma", + "piohkn", + "jzoyka", + "fejwirk", + "cwbofn", + "sjrgep", + "hfmqiz", + "dspxrug", + "targd", + "xiyjs", + "fejvyo", + "kpqsbxj", + "bojqpvh", + "xoiw", + "pfautzc", + "jdlawn", + "dhixtwp", + "lqev", + "qyupftv", + "kuqtjnl", + "ieouq", + "nkpi", + "bkuemyz", + "yxgi", + "bxyktv", + "yxvosl", + "mtqjdgr", + "yguftde", + "eufd", + "yoec", + "ngfukcr", + "cpzsenw", + "avbmiw", + "nhgezwc", + "rwecjst", + "oljb", + "mglrf", + "leic", + "voznpjk", + "jdbqxc", + "bxtijs", + "deopi", + "khynvmg", + "jcvt", + "jria", + "rncxqim", + "eprhw", + "fxnwh", + "xzcb", + "uahgiqt", + "txqrm", + "ardcnu", + "stqynmr", + "qnso", + "jlseiup", + "bwtjpeh", + "nmda", + "uynd", + "uzmoevr", + "xductlp", + "qbxa", + "mgvr", + "ipkzwnd", + "snihkoq", + "krijexv", + "cljdao", + "qkse", + "ygiv", + "ikar", + "tavpm", + "uiftkg", + "vtgyei", + "orljqcv", + "xekqb", + "ekpqnh", + "vdfxat", + "keswrn", + "emkzn", + "cibvr", + "zibkv", + "fhncmda", + "ucmb", + "podh", + "dvurgs", + "ktoas", + "fwgjc", + "svwxg", + "buzvmnx", + "biqfp", + "dohyzv", + "uzicbmx", + "zkey", + "fkzet", + "zimjvs", + "ohfv", + "wulkd", + "rtajgx", + "jctkv", + "jtqu", + "mriqs", + "mcple", + "qkiesx", + "oblnfm", + "rfpqlub", + "bhscjm", + "cqnr", + "tyxug", + "bfyei", + "pvxcwzg", + "qehovta", + "ymkxrl", + "emsjzao", + "xtdwnai", + "jsyneoq", + "zjkoaxc", + "fleb", + "jqirpa", + "qcutgr", + "pamzktc", + "kvuqp", + "zrenlb", + "vtec", + "gdhv", + "ygciaum", + "zsdw", + "ayrc", + "vhwse", + "cyfx", + "elnkc", + "mzgv", + "vxrjqea", + "ezbor", + "ardveco", + "lmnzxqb", + "ojwef", + "zltqe", + "vkymib", + "zfgvwc", + "cbags", + "lkiau", + "qescfa", + "blcin", + "grzwkl", + "mopiwvg", + "udcjo", + "xzaeyob", + "qugvds", + "srcjaxw", + "kmjixr", + "impu", + "azmuq", + "abcen", + "rfulhcj", + "twdm", + "klcbwgp", + "gretoq", + "vdpk", + "jktxdvq", + "xdgjfp", + "hxmnry", + "zfijp", + "lvij", + "afswh", + "chrsi", + "mlpg", + "muvpib", + "xodgwcz", + "xvamdc", + "ncpsir", + "adnfour", + "oqup", + "lebnod", + "xiwfkd", + "tpyqjm", + "gtmj", + "eigpu", + "bxqyf", + "nvegj", + "vumieh", + "utif", + "lvgxe", + "anrclb", + "uzrih", + "ferg", + "omyna", + "vbudrlj", + "ykqhtjz", + "xrgo", + "tewm", + "oeiw", + "dygo", + "xfco", + "tqjupmw", + "gutj", + "bxctk", + "tyvchd", + "nftklgj", + "elzsdti", + "iytel", + "wamb", + "tdby", + "mtkex", + "mpzyhda", + "tgbfie", + "yrgzi", + "duns", + "abevkg", + "giuqhy", + "whjvk", + "zsqoplj", + "xoiu", + "cvmblj", + "glfdwvp", + "kdyiog", + "winxzp", + "ltcr", + "xjauh", + "bhmkdwr", + "nygdkso", + "zrkeyf", + "ohrn", + "fxajih", + "bkxoy", + "benco", + "ainzg", + "nqbhld", + "zcrtsuf", + "dtezb", + "jskzrmh", + "vdoie", + "xktlh", + "dnrbw", + "eiguz", + "gjdr", + "wzrftqn", + "nhftbd", + "wvbud", + "qvltckb", + "slzypen", + "fdekj", + "hgtr", + "wdrzb", + "fbyae", + "iqgasmn", + "maoiwhc", + "oqvmk", + "toscgf", + "xsln", + "zkdjrt", + "wtzcvn", + "kytma", + "ejtwsou", + "vabruji", + "tqayjih", + "ovshu", + "ipbcd", + "sgcrnl", + "yhtdk", + "bszxv", + "zwrhnkx", + "uiqrzx", + "dnormg", + "tvds", + "qzvhcn", + "srvig", + "khso", + "kiqjany", + "lhmpfy", + "bwxf", + "fomg", + "fagw", + "brwnx", + "nxghqjt", + "iryh", + "boiy", + "oqucrvs", + "djty", + "gdjvrz", + "jflv", + "grmifo", + "napvo", + "dvlngep", + "cxpb", + "qasujl", + "mbxh", + "qspfmci", + "olbtv", + "pazeu", + "zdcxrvo", + "limby", + "yxkpc", + "vsgm", + "yihxqs", + "ythvoi", + "eauogqn", + "uamk", + "fboryjq", + "xpkz", + "sfkomx", + "wltgixu", + "eqnhkts", + "renkdlu", + "xpdi", + "qjkdocu", + "hlto", + "aeqkp", + "psdztfv", + "qucikfs", + "nhpdyt", + "wqgru", + "imygntq", + "bmlpa", + "akvti", + "mlbc", + "tlroa", + "czdj", + "xwdmvas", + "imzso", + "xfkjben", + "fejpm", + "vabgmc", + "rygcl", + "cnempkz", + "iemguy", + "bpunlx", + "wxjmez", + "twxc", + "irqjwe", + "ouyeki", + "pgnqyxi", + "kubd", + "pfbtgyr", + "jxgp", + "dtgczw", + "thcaydi", + "qghca", + "lkispt", + "wzfyre", + "npzuldk", + "iuawfln", + "flvgy", + "wfaqosg", + "jobguvy", + "btgdelm", + "ecsvlr", + "fueh", + "kjqbhgt", + "macwfn", + "oxcbi", + "wzafcnh", + "izclk", + "wqtoh", + "cutpoz", + "mayt", + "bqtv", + "ourcak", + "eodl", + "dmpgqs", + "bqvfjr", + "pqrizn", + "czxufo", + "ybljv", + "lhko", + "fgqmwc", + "lrvdso", + "ltpgsfi", + "cnylxa", + "jkgtf", + "pomqxv", + "mtbo", + "qwkgy", + "vqjx", + "gzypb", + "gchyr", + "cegudfa", + "xeogp", + "xltfayu", + "gcnq", + "myqjlo", + "kdnb", + "jnqgd", + "aqfubzp", + "ysfpx", + "lchnw", + "hclpnv", + "vnjrwz", + "zdyskxq", + "cxiq", + "imes", + "uclyr", + "zpswcek", + "ngta", + "ozead", + "sxvpl", + "sngtqbk", + "ybut", + "khrljo", + "ibqnfv", + "tyun", + "jsncrfp", + "mrhtau", + "qrsgk", + "nozqc", + "nuipyl", + "nafrvpw", + "imodpf", + "ayqo", + "rlqakb", + "gbjo", + "ljcm", + "rmnc", + "jqxrnk", + "dsyemir", + "zraenod", + "wdhnvm", + "catmh", + "nxlp", + "uweanm", + "eldfmwo", + "ubrml", + "wagup", + "zthduq", + "ywbgp", + "bsua", + "duzwapy", + "ozvbk", + "rgmpwfk", + "ixgymrc", + "zyejwm", + "rpvukl", + "zjsyxwi", + "cpfmz", + "bhtzljx", + "tbpckua", + "cpowj", + "pflmexw", + "pedvaxy", + "nsoj", + "jbsnu", + "svky", + "uvhptk", + "kzmxye", + "fyurl", + "oycizux", + "jamn", + "jkzh", + "ixdwj", + "ijtopn", + "inrgxca", + "zsbeqw", + "xvuf", + "mvpnz", + "aspt", + "jbtvxwn", + "idnh", + "lkspo", + "hkfxaeg", + "lvzbn", + "mfst", + "cgdui", + "cneyzig", + "gantdyq", + "xhlta", + "umidjbc", + "rnvl", + "qmkvx", + "cnliwq", + "ksxytq", + "gwncv", + "aljnoqs", + "btqfj", + "kqufr", + "njavirx", + "kiyd", + "hyuqska", + "jpow", + "vrtux", + "tmiq", + "rmeht", + "dxmtwvq", + "alpkb", + "jekm", + "jyih", + "edgx", + "utbix", + "jderlps", + "ksexbqj", + "nedzfhi", + "ntquvfd", + "onktdqh", + "cnypkwu", + "olza", + "tpxbv", + "cvdfu", + "mwpgjn", + "frahc", + "sbkpdeq", + "wtlufi", + "bupvfj", + "mosyk", + "nfcso", + "fewgb", + "dsfrne", + "wrsdpf", + "ytnjcv", + "cmlhspa", + "fjyt", + "eljvgom", + "nkzpd", + "glmh", + "kotvf", + "dbeslmn", + "oidlckx", + "uzhgsj", + "gnyilt", + "jatybhd", + "osvlqr", + "ygldt", + "bslmhg", + "mjgcps", + "dkpqcv", + "hocnrep", + "cikj", + "ogwtbx", + "ktgzvcp", + "htudnbf", + "gkaxbc", + "cfdpwt", + "dmuorz", + "cxoj", + "zrvpim", + "prsyoqm", + "qzbnj", + "xycqd", + "spwnj", + "efukx", + "dwgmcs", + "oimptky", + "heafx", + "cgsy", + "rtfqon", + "vioe", + "yesfo", + "vxyfm", + "doxms", + "igxukjs", + "kuvsfnw", + "ainfjux", + "gqybcsz", + "oyzgbr", + "zclu", + "uslgew", + "hsirbo", + "xmzqpw", + "srze", + "inqb", + "ntcj", + "fnprowt", + "fevuy", + "cmbvh", + "odwqhz", + "leqiwu", + "gkbv", + "etipjs", + "qxakr", + "rjftvqc", + "ujwt", + "tqfosna", + "knemsj", + "mlugwyi", + "aghyb", + "wsax", + "owfi", + "aczbrk", + "voptuyr", + "cjxfi", + "sdtcbm", + "sgnape", + "oyqgjrv", + "inyl", + "rbdwnc", + "hlwit", + "wgxp", + "uxdb", + "zxac", + "wemt", + "zdjvtlq", + "xyhov", + "wzdkptx", + "yqvpcmz", + "mruk", + "brgoinf", + "htrs", + "hnet", + "agyxjbk", + "qsntrm", + "udnh", + "prgoz", + "vzfbmr", + "aotcgdl", + "ritx", + "fhdml", + "dpoj", + "axeqh", + "pewha", + "bzxyhu", + "gucoemn", + "umakz", + "qgzuxo", + "sxkwpa", + "uyvdkla", + "qyiv", + "lnqafkc", + "gsxudfc", + "osxnhd", + "qrskuz", + "qcdxnj", + "fmvrkq", + "yxnztc", + "ykhoap", + "kbsrhpn", + "axefcis", + "cvjd", + "favmxjk", + "mjvu", + "nasj", + "cqvyk", + "ojwch", + "rfmej", + "yuva", + "qpwsi", + "ilwok", + "tkmcw", + "sebpvcx", + "ebrtz", + "nvkprto", + "mgyt", + "ipmyxhv", + "fbkctr", + "lngfjeo", + "jtqzkag", + "qadonir", + "qrpdn", + "bqeg", + "uopw", + "lztdmu", + "nrpjk", + "ncbzwey", + "hqysr", + "mgdqs", + "mkqj", + "fcxqo", + "gwueyl", + "vuwjc", + "ftyv", + "nsozu", + "zmon", + "vfxdph", + "xbdqje", + "aynm", + "veqchu", + "kdpfyj", + "fibe", + "mjlhvow", + "bokesl", + "fqixzhr", + "pfdnaj", + "hlsjxor", + "bvhgpy", + "qumg", + "zhlmyfp", + "sybfam", + "wripqj", + "mkfwh", + "xakqryv", + "pzrmil", + "vylq", + "teibfxu", + "tcib", + "mgwynr", + "ybqwntg", + "ryuwcxl", + "dxtj", + "woanp", + "ilbv", + "nsoydi", + "iequt", + "rqebj", + "rcjati", + "twxj", + "vncbajd", + "mrphau", + "afmrcx", + "wbyk", + "zeqpgiv", + "wreukp", + "ytlkf", + "nugat", + "aswqtxz", + "arjbln", + "ehykslj", + "cdjbgfx", + "qjisd", + "fcxozge", + "zgbruaq", + "ervsyh", + "cahv", + "ciqeyvf", + "rwib", + "gjiyhqp", + "rbqc", + "yxoabq", + "rvcl", + "zcfvkd", + "trmns", + "dcpo", + "zmftvac", + "tdxihz", + "pnxl", + "mdrsch", + "btus", + "eqhxuv", + "xvzkna", + "xuosl", + "enhwtjf", + "ksoh", + "rmwtu", + "ibrtjkw", + "gersfc", + "smtprx", + "jlnohws", + "bmzgjc", + "dhrnb", + "eczftkp", + "oykj", + "narxdzp", + "budx", + "fixca", + "qhcoeu", + "nrzmwea", + "wiqot", + "bpzdxif", + "duqtg", + "qrcedf", + "dqun", + "xqvadcb", + "undjk", + "fzkrx", + "svdj", + "atbz", + "ojprub", + "vysgz", + "kapbug", + "oknehm", + "lyvs", + "htjvica", + "pjoecu", + "srmnahz", + "kpvlqd", + "dxqhjen", + "gutk", + "wgafk", + "npfkm", + "hnixzve", + "jyqzhib", + "xhrscgl", + "rhpfs", + "mszajv", + "zmndro", + "nesfa", + "twdv", + "jzakqi", + "oaldqx", + "gjzrbla", + "zgbi", + "kumov", + "iydo", + "zxjrwps", + "nexfh", + "wuqlkdo", + "klqy", + "untm", + "houjvm", + "nemqkx", + "ayux", + "pdvoxn", + "abcy", + "ywue", + "gudvpko", + "rahfd", + "xlatv", + "klvtro", + "pozkv", + "rvnqbku", + "xwqila", + "udictq", + "ulqxhco", + "sfpn", + "jqxdv", + "nvucm", + "swijn", + "nbogdt", + "odln", + "ovyc", + "qhbi", + "uszvlio", + "lxwyzmk", + "mxhd", + "kwxm", + "ojfdnix", + "uepqlc", + "stiov", + "zfejbka", + "epuilzy", + "getpnd", + "wjlhd", + "psjbqi", + "bmfnu", + "dsun", + "rcenx", + "fzaxdt", + "fybk", + "vuxm", + "naqpoyr", + "xcwkb", + "xgvec", + "vomiyf", + "krahgw", + "kyjzrhg", + "vytgzmr", + "cdpfgv", + "zhitkx", + "xsmgtfj", + "wkjaqy", + "govsqw", + "lrsce", + "oxped", + "pqmbg", + "csrtm", + "yptgql", + "ymbdja", + "fzqpnat", + "clau", + "bgswyt", + "mbgh", + "akwj", + "wqgzrs", + "iuvzb", + "skqji", + "zjpdlt", + "uxitbo", + "toijysz", + "ugazptf", + "pbswefl", + "hjot", + "ygtap", + "dsecfw", + "seto", + "osqxe", + "ofmsp", + "azqdb", + "srvtfqx", + "uytlz", + "fupbz", + "pbgvj", + "ulcpn", + "bcog", + "aijm", + "vykmcpw", + "qhwz", + "xdzmhu", + "oirh", + "wurcomb", + "xidzk", + "wusoez", + "dtze", + "syvdg", + "fslrk", + "dnujv", + "yota", + "lnchzpf", + "xfylp", + "sylvkd", + "hbeyku", + "wkouyvc", + "rjlv", + "stnig", + "epykua", + "hefg", + "oqecmt", + "tcmnla", + "vphl", + "fydhqxp", + "yfxc", + "mnvfj", + "wmjvd", + "navdbph", + "cfmk", + "pycxbtd", + "enzg", + "oieadyx", + "kudmhle", + "urxyql", + "uvbsx", + "nbzljsu", + "jsdnxu", + "bfqkz", + "ohdpr", + "slgakyb", + "yrmonz", + "glew", + "kveqpw", + "hsvu", + "konqycl", + "vwqtip", + "rakml", + "jkfvx", + "dlxpw", + "ezcnm", + "zjugva", + "wqrzj", + "sbox", + "vpqotge", + "rmpbo", + "qfkmda", + "lzomy", + "ocuy", + "icxdzw", + "ogzmw", + "bugs", + "smoiq", + "vjkx", + "qlzp", + "wknaipy", + "eazv", + "bhnvl", + "roib", + "cjwyx", + "xlrde", + "cnzq", + "qpxki", + "rwpi", + "lozh", + "qcwbre", + "dzfhnjr", + "ycmdu", + "eupglk", + "cqve", + "prcj", + "kweqa", + "kctuj", + "fyldgtp", + "izxugoq", + "iatnh", + "viezmdy", + "kpobqi", + "ineqma", + "hvum", + "vfenc", + "xbqrg", + "mcewl", + "eckqmu", + "ozid", + "mjdtpv", + "jouqasx", + "usmhwz", + "fdxshlg", + "rmdyvzf", + "rwvxu", + "dzjc", + "ipkux", + "ufcop", + "txnblqh", + "ztlijbv", + "absk", + "rxlgc", + "nopc", + "onfmp", + "evpt", + "uqob", + "tciz", + "uxefjt", + "fdewihv", + "syxevw", + "kngxd", + "bhoveji", + "mxrkbq", + "zkhyd", + "zmosj", + "voirqlk", + "ahuwznr", + "ihslvyf", + "vcadoez", + "fxjuor", + "epsjy", + "yfkpvqx", + "fgvrk", + "laqi", + "xkcwfg", + "jbcrnd", + "gbsuqfy", + "cwbd", + "lvwxpmn", + "jmdqa", + "nqjwvd", + "wgou", + "guakmi", + "ucawrzi", + "uaydje", + "rcbvui", + "cshafgx", + "iacdnt", + "myufq", + "ukrnt", + "djtsfz", + "zhgt", + "ywsne", + "rdeb", + "iqnkwxp", + "awfqd", + "qvcikf", + "epnv", + "icln", + "qmpjida", + "xmnd", + "nextmco", + "lcis", + "ynckx", + "blnqy", + "qygpvl", + "mvahugz", + "xblfvqp", + "rdhtoms", + "ujofyn", + "fosgu", + "urcjplm", + "cads", + "rskypvf", + "bnzrix", + "emtr", + "qcpwhgs", + "bprg", + "etfrca", + "fizeob", + "cjtvuir", + "hkswl", + "nkiw", + "hwrbgl", + "suxlik", + "nfaq", + "puljtso", + "lpqazi", + "mrwv", + "ytrngsj", + "jqae", + "owask", + "qiebz", + "grvkie", + "kqfu", + "tjvezua", + "dlhng", + "mnub", + "upjt", + "mvsiu", + "wgti", + "jxusafk", + "tjky", + "fmrdv", + "mdlzeh", + "fmhb", + "pqvns", + "bwecdhf", + "ohgdq", + "eqpzdt", + "yqum", + "gwzidtp", + "zeuk", + "rhony", + "wcstpr", + "esntcod", + "wniz", + "hteocw", + "mhqtbls", + "eaqyrhv", + "yvwuzqp", + "kbqorp", + "gojzx", + "kpad", + "kchnlvx", + "tzsedya", + "aryujg", + "xphjazm", + "magpef", + "dlpwyjt", + "icps", + "lfrqza", + "edyfb", + "kpwt", + "xemhbp", + "zvcfo", + "quea", + "uqlv", + "dyexch", + "wdlh", + "aifcqv", + "twecl", + "xnlqsv", + "jrwmnxh", + "dbsfzmw", + "uezlh", + "poizmkt", + "jfzial", + "iuzyxrb", + "pjybmws", + "snjqkm", + "mwgrqub", + "yocztbw", + "mbtwcfl", + "ebodhqs", + "fgdoq", + "zpabufh", + "sopdyn", + "zkgu", + "vueqbco", + "mxrity", + "qliotbw", + "tgbym", + "tyhzb", + "dhlizxt", + "serlwv", + "fegdao", + "ehcfybi", + "rqslfy", + "kcfpvwu", + "ajysdpq", + "orvs", + "igkqjo", + "tlgxdck", + "imwezov", + "ajrvd", + "lfon", + "hdpzt", + "uhtq", + "tpbalz", + "pnsryvf", + "fxsqc", + "ozbtl", + "jawzcb", + "uznreg", + "chlzk", + "dvakgti", + "szqm", + "nrmk", + "iwhl", + "zfbamti", + "hcuyjrw", + "atdbs", + "epwruv", + "zidkg", + "nrqxf", + "nswrz", + "abmu", + "yhxw", + "lpzqfea", + "neuv", + "xhzesiw", + "djza", + "nodbpm", + "xzhy", + "vdsi", + "gkcjl", + "hmedisr", + "oyixwhp", + "zoqd", + "bjivqn", + "szexrlm", + "pgbxkui", + "zamgf", + "jqeo", + "kbzoa", + "yqri", + "cosl", + "flkrywh", + "rqxthe", + "defaj", + "mfuhgxd", + "ijmzs", + "uhywvz", + "uehcn", + "fvemc", + "sagtdi", + "adri", + "ixqmuz", + "prbq", + "ovnfgc", + "ebnjd", + "wdvhatm", + "zwhfyt", + "ksezyu", + "vyaj", + "gztqoaf", + "douv", + "sonl", + "qhufkt", + "ulmwz", + "mlsk", + "uazb", + "qnes", + "flqxz", + "wpxmru", + "gfud", + "qxhb", + "cvbugy", + "hefc", + "hgcyjrp", + "bzonhq", + "uknswrx", + "mxruso", + "pfqetrg", + "zxlcjqb", + "qyfimo", + "apxjt", + "wvxjr", + "mgjl", + "dgmhu", + "jvirt", + "ngtyxiv", + "dlkcq", + "fket", + "voqmk", + "qyhbxm", + "ocsm", + "csix", + "voacb", + "kdotcrq", + "djgap", + "oxjvwye", + "mwpc", + "xyrc", + "mzehc", + "rdxwp", + "ujarh", + "evapi", + "gzhlt", + "tvihrdu", + "kzhgs", + "wzqjyg", + "aqky", + "ucrj", + "uoqt", + "omqejcx", + "asnh", + "draosz", + "ljbo", + "tglf", + "spiknz", + "hwjg", + "swgdh", + "gwfthd", + "frtwve", + "syxc", + "zfvhm", + "fsbyej", + "aofdvpl", + "idwcjys", + "atklfnm", + "yqgnpfw", + "pxov", + "xjolgkn", + "minsbfw", + "hrubmo", + "utxvkrd", + "izmnwa", + "cpewnlg", + "zoudjhs", + "leon", + "jyvf", + "ejwm", + "boldx", + "jvxbr", + "ofrb", + "durl", + "zdlie", + "grhxtv", + "jucavom", + "cyfx", + "nyksw", + "qkbl", + "znyqu", + "ohkg", + "cflvj", + "kmjhgyd", + "mefkwih", + "ohpy", + "isgjk", + "kfdz", + "nzsg", + "qbaizu", + "kmiujh", + "zjyn", + "uoxsgbz", + "ekold", + "gvdojzi", + "yukj", + "zydrmok", + "simxque", + "pmtbke", + "zcpsaf", + "vpnk", + "khdt", + "wigt", + "wrbya", + "uklq", + "ylbc", + "zgru", + "xbzp", + "rjpvem", + "fhyekj", + "kembq", + "jiwga", + "gonqtbx", + "jrkx", + "avfi", + "puywzc", + "hnrdzmj", + "zijgwb", + "fmsdyv", + "pnyjhu", + "gbrm", + "dekjv", + "mpilzqa", + "gvoxt", + "sjupk", + "gkszy", + "scaqi", + "usxftr", + "oxnlzhf", + "pnsi", + "vaxcw", + "xqij", + "nbat", + "mubgfn", + "ykcj", + "zepi", + "hvwd", + "prazuj", + "hlqf", + "zedc", + "nbdir", + "lrmqoy", + "yijmqr", + "pruna", + "tnqmkr", + "wbnp", + "goalcub", + "psly", + "cvhmiy", + "rdzncqe", + "jfsdn", + "emiv", + "fegmjok", + "jemy", + "mcyxq", + "bpefnk", + "xmkr", + "jruwlz", + "uhlmpy", + "arphc", + "kdsvoaj", + "ohkwse", + "vkfq", + "rwhdj", + "sqodlpz", + "qwxnj", + "pcwysb", + "xjcru", + "omlxua", + "mglnsfo", + "otzgr", + "grndbmv", + "ztcrdh", + "xpezi", + "enbd", + "mynrs", + "zenyj", + "gloerm", + "kcvdfiw", + "xhbi", + "qficlh", + "vcpt", + "xjvcum", + "lwhfke", + "rboae", + "wedth", + "epbokv", + "wndjil", + "xaoclri", + "htzk", + "kxzl", + "mswho", + "fctkzs", + "lhkszam", + "hlioezt", + "lhrdbyi", + "romy", + "kvczfnu", + "hlob", + "hysczfr", + "qbicjow", + "hmdepjy", + "cwdt", + "ljpr", + "lognmpk", + "hjmzk", + "hxgzw", + "cnhxim", + "szfj", + "vwnms", + "vqape", + "xmscepr", + "bcadyi", + "tlfb", + "eizuvdl", + "tjpwo", + "nuaxb", + "eisgvjy", + "gvzwf", + "qxfpjaz", + "jrwclbs", + "uwfco", + "nobcuyp", + "mgnekht", + "npyucdg", + "gqaizl", + "jzqi", + "ueoxfbj", + "tajkqwh", + "zgjd", + "zbmecy", + "ypncdzo", + "qmpjtoa", + "vcauhyr", + "yice", + "ykgfl", + "zgtewfq", + "vgyp", + "gbnqp", + "gqlk", + "dbxq", + "cqfs", + "fiepczh", + "mglynps", + "xjbaqdg", + "hivbpf", + "halkxj", + "aquoln", + "iupc", + "fjta", + "owtpq", + "tfyd", + "xsdwbm", + "pghwfb", + "wqbe", + "umsoe", + "mfwl", + "jgtku", + "fvhrb", + "utfm", + "giwta", + "xfvhjo", + "xsrj", + "jhvzodn", + "hlauw", + "kjtv", + "yfxjac", + "ngswbr", + "eizhu", + "hsfcub", + "vlgnjh", + "xhoi", + "yvnuxh", + "cpgoke", + "zohyn", + "qngaepw", + "xmkaicw", + "yugol", + "xyrlwf", + "tzlcieh", + "haolez", + "lxszh", + "eydi", + "lhwy", + "uzanslt", + "gjwta", + "bgvyhsj", + "bzwi", + "qskdug", + "cfszw", + "tpfwr", + "tsgiv", + "sfcb", + "wxmyahc", + "hirm", + "prtbfe", + "trvy", + "nhbj", + "btfquvz", + "pjvgk", + "eito", + "buti", + "ypfvc", + "zbtyipr", + "bouqmpz", + "lvzu", + "apvorf", + "iqyf", + "utexnpa", + "mrtgkp", + "qsuv", + "yglivjd", + "qrwkpdc", + "ipzgwhd", + "ixcskdj", + "afxvdb", + "rpqdo", + "ryupvot", + "snqdb", + "afgbnoh", + "mcwjhr", + "aptr", + "srdt", + "lahtuf", + "tuvac", + "gjshtpo", + "nsmoeq", + "defsj", + "yjab", + "xkarj", + "uhmqkrx", + "yjqzm", + "anev", + "ufar", + "gyowrdh", + "ayxw", + "dlygi", + "bsvaudf", + "blui", + "rsxiewg", + "vtjop", + "xseno", + "gvwxi", + "kregqfb", + "aetdofc", + "bxego", + "rjwz", + "vkhw", + "vdyqihp", + "colmqs", + "qmaoiec", + "homic", + "iuvyxrs", + "gvsoyd", + "gjxa", + "ckwqo", + "hizv", + "whbtzy", + "wair", + "wtsfkv", + "xhbqea", + "afhp", + "gtdis", + "owty", + "emlr", + "iuvxmd", + "lskqmn", + "hgcbf", + "vpodelf", + "byszur", + "phdlm", + "mtbnx", + "toqv", + "xzlaic", + "gkhiv", + "ftarp", + "czmwr", + "mjbw", + "zpdrxyg", + "tjur", + "tsylv", + "qbhl", + "ipuemyd", + "sqczbu", + "akgnry", + "qcudymb", + "ochnt", + "bzkuird", + "jxvowtp", + "xcwb", + "iwypz", + "itfwdm", + "fyovtj", + "cysg", + "ybmp", + "sgkvuy", + "mwnbip", + "npck", + "dorjgbc", + "xdgsyz", + "shpmg", + "mihulc", + "prhx", + "bpilvg", + "atyv", + "vphyfqi", + "kitlmr", + "rlhksv", + "inhf", + "ejhp", + "ydrkth", + "tlzq", + "rszc", + "fhprz", + "zohsyn", + "jvtrqg", + "iungkrx", + "bqsvkjd", + "uwqi", + "oxqwpnk", + "hodtlfy", + "hmdi", + "ikjh", + "wqgyivj", + "qvfcajd", + "cufqjnk", + "crgs", + "sdjmu", + "ivhyrk", + "cyilngf", + "erawtc", + "hlqv", + "qkxg", + "pnuys", + "tlrwand", + "waczyr", + "relhyvu", + "ztxbegn", + "ualmtfy", + "zktfyn", + "fmsqh", + "wsfb", + "fxhula", + "wibv", + "jnuxik", + "izwm", + "cjqrfbk", + "qmjgaf", + "vznsfe", + "ihbov", + "sdktn", + "qcgb", + "mcqynuz", + "mesa", + "fjuoq", + "apnbv", + "rgznqsu", + "qute", + "iyqepx", + "zotcmp", + "bipyeqv", + "mfbtgkw", + "knqh", + "wkxgopf", + "gmhpw", + "gmnopzb", + "sdqvxwo", + "jvfp", + "ylovg", + "yjnxu", + "qxzery", + "ickydnq", + "wjnhz", + "vecsbxa", + "sbgqva", + "laqf", + "ihupjrg", + "zpgecxt", + "rdlcsyu", + "dgme", + "zdbit", + "nyqxsf", + "xgljq", + "psxqt", + "dgbaxkq", + "xbipql", + "rdilo", + "sqrzy", + "vfsuqkn", + "hywci", + "gjncs", + "jwftbr", + "puhadto", + "bdhsevw", + "kbievdf", + "quxdrzj", + "ihrsug", + "qhvs", + "ijmtr", + "wondaq", + "xvflw", + "olmsg", + "kfpiavh", + "vaoxqy", + "smchz", + "idue", + "hvqs", + "erqgpa", + "ocgtblk", + "fzqxpjo", + "xuvpm", + "wcakp", + "toaws", + "nfylsdc", + "cearbm", + "kjvi", + "behc", + "mzqydui", + "zxcr", + "wfqpgy", + "sbrf", + "hmjoaku", + "fyzux", + "zqel", + "qjpd", + "dkipyxj", + "bidtosc", + "gbho", + "cigwft", + "rdytv", + "whxef", + "ijbaxuq", + "cfbas", + "nhbsgql", + "vohuy", + "vupx", + "xbpyei", + "xvta", + "pvhxycq", + "cudfjx", + "dnaz", + "ladpwks", + "vfqhc", + "nwjgx", + "afsrcxm", + "yfkzvh", + "gsinr", + "reqnopm", + "mpqgj", + "fryhovg", + "brsn", + "gunb", + "hrautc", + "ybmnh", + "fjkac", + "fncwoix", + "pyndrf", + "cpbtami", + "vtbcgy", + "etjxdyf", + "ofzyajw", + "zwblhp", + "rlueych", + "vxiw", + "xfdiaze", + "rfuqe", + "oswtg", + "rqmv", + "fsophu", + "vxuzcf", + "kvfpy", + "ghqd", + "eiowakv", + "zcukm", + "zromue", + "imfzv", + "nhzwt", + "jieqta", + "tgiehfb", + "onuvl", + "cptdomy", + "pqhko", + "senvcht", + "hues", + "agcyjok", + "nwgyc", + "jqzmtna", + "segwcf", + "euthcfx", + "kbtsfmh", + "hmzcnlo", + "megqdaw", + "bwmsvof", + "vgakjm", + "azuiqnw", + "cxjrfu", + "piuz", + "jach", + "sngx", + "nrjz", + "wlft", + "hnwj", + "paxkqvy", + "mtwxoh", + "fukw", + "tapld", + "erkohug", + "qeblh", + "xzlsf", + "nzifs", + "zgmjo", + "btgq", + "dqjepa", + "oafq", + "ywjo", + "wphxuak", + "yvgwp", + "xszmfc", + "xhnpjvd", + "fcvoea", + "zpqn", + "wrmx", + "copjr", + "csea", + "shqz", + "cgwf", + "awqsjg", + "reqki", + "mbhjx", + "nkpi", + "toqzuha", + "qtvyo", + "bpwfys", + "mkpszt", + "dtgza", + "dzqbm", + "afsd", + "vetoi", + "umgewl", + "mkqwt", + "mtya", + "bcsdjga", + "lohvf", + "qazkbv", + "elsxutn", + "yiskdam", + "ioyrcd", + "wqyejf", + "mfjxalo", + "qrhum", + "zskgbd", + "cpzvkfy", + "ymbagzo", + "knegcws", + "plec", + "qjkxeb", + "qyfvh", + "fuyxe", + "arkpb", + "ilnfowb", + "eurdj", + "ibkp", + "iqcnx", + "iyapc", + "nlsqc", + "uwgnx", + "rtuv", + "harxv", + "orjmpa", + "eplqwxb", + "zfreyu", + "mzul", + "hwidorb", + "uyqdk", + "jatn", + "igzojqs", + "obwtp", + "symkb", + "vflg", + "hfpwum", + "wtbra", + "hdseb", + "ltxk", + "hbre", + "mholpy", + "xmlgzi", + "kpvx", + "voqpir", + "tqcg", + "pytq", + "xumt", + "otcsp", + "eopkl", + "ijul", + "cemkzpy", + "dgqxuy", + "efbctyz", + "yntxibg", + "vbizane", + "lrev", + "seamkd", + "pbtwgf", + "nbudmc", + "uqktsnh", + "nhoj", + "htwub", + "udrep", + "aklt", + "yxfug", + "bimrgd", + "lfpgkvu", + "sxigoa", + "hxnqbem", + "wxtikfd", + "xqhku", + "prjxd", + "tnzjde", + "tgrvdf", + "otjfkn", + "msgq", + "jfby", + "qtegu", + "jkmt", + "jatipve", + "tlswuqj", + "hiagerj", + "mvgboix", + "eaktf", + "lqgt", + "ajqhn", + "ieyktq", + "vlzq", + "znop", + "iluebcs", + "jpkr", + "xhqnw", + "xnyejmr", + "otuhe", + "opkfdu", + "lnyqfr", + "inkgmpb", + "exuai", + "sbnlyu", + "ctbe", + "fawqul", + "unhf", + "jsvrpgu", + "adcebpf", + "grfd", + "rjdaty", + "jxpd", + "ncpkyau", + "gaiz", + "cgas", + "dpsabzq", + "hopk", + "qnodu", + "gtblck", + "gevum", + "dtbf", + "pjboc", + "rmns", + "qnyw", + "akgbop", + "fohjtza", + "ekvtnz", + "jeyna", + "hpfd", + "tcxskvj", + "cstvgep", + "lqoetw", + "udyzecf", + "hgvfd", + "qdwh", + "woxfdgu", + "rxcn", + "zwudmcp", + "nvhdxy", + "owhdesx", + "qcyfvs", + "jfheo", + "hznior", + "fyeonqg", + "yqmxegb", + "trsihbq", + "wimt", + "ylpxda", + "kcol", + "cdyxuj", + "efhdg", + "pwbqh", + "rqibcsm", + "idwh", + "zjpxr", + "anwv", + "yqlobxk", + "ftgwmz", + "bjat", + "jkuomc", + "cisy", + "ilkdpbw", + "enuwd", + "oqfsx", + "fojawtr", + "dpbaxok", + "bldw", + "thuwqng", + "vqwy", + "flyorbp", + "bpuyvig", + "zijt", + "tnju", + "kqrav", + "uxoenh", + "dnmyj", + "elvwfd", + "wqzh", + "jzkbd", + "hcaqiy", + "kduq", + "ifrd", + "zuxmd", + "ctfpdxw", + "aprfv", + "uhxlov", + "kahf", + "fkem", + "oumq", + "ordtqw", + "cvpl", + "trhx", + "jeivr", + "rjpndu", + "siuzj", + "ifpqeuj", + "fsjvc", + "ufbsc", + "owgkv", + "eulby", + "slhcy", + "hnduk", + "pvmigh", + "xhvryj", + "wrvp", + "ixfp", + "chrqdfp", + "tqpsvj", + "ovfjctw", + "xbvyf", + "cqoswip", + "duzygi", + "cbfpuah", + "dkbjor", + "zgxsior", + "nizpyqt", + "jguyn", + "frhakmt", + "lvhb", + "hqxwy", + "ajyexot", + "hyqm", + "dfmrvj", + "prgtj", + "jqrlcb", + "vgwxa", + "fdmpie", + "lrpvou", + "pldi", + "dkpa", + "lrigvm", + "ksdplzf", + "uhvcfl", + "hnxmj", + "puhqzx", + "rbigc", + "aimvf", + "wqeoz", + "jduzva", + "tmka", + "nfcrlm", + "wqngd", + "nupm", + "jhiafcs", + "ezrlg", + "ozgn", + "igpte", + "qlgkx", + "fcgdlvr", + "goylz", + "owfkjxd", + "zesao", + "ywpontv", + "huenpfz", + "muwsxc", + "vcmwps", + "sqrhd", + "bprhm", + "jdshy", + "sxfa", + "vxilwty", + "kpbz", + "orxzg", + "ktxjfz", + "havkrsz", + "duwnl", + "mxflv", + "xagkbzq", + "czonjf", + "bmuj", + "hbajq", + "hsnbxm", + "jgncux", + "rvmclu", + "lntc", + "xuyc", + "njufi", + "bndw", + "roet", + "ihygzr", + "twvx", + "ktsoyhe", + "lgsyfpn", + "whgicv", + "gekdi", + "yrcvdq", + "qygakjl", + "ckqnar", + "axzpi", + "exonp", + "sozdqg", + "mzwpbc", + "igqd", + "esvdzq", + "shtu", + "tjvqbn", + "xmyd", + "tbekvj", + "yguo", + "oplth", + "kdgtrn", + "stilmga", + "qwzasc", + "nwjhq", + "ecurlsx", + "rmbc", + "lkpibu", + "gwvs", + "hkfzebr", + "vyimcx", + "jxdrh", + "iwaqn", + "ykca", + "tnfx", + "wvzpf", + "tfbxisl", + "ozdxg", + "zunirkp", + "aznl", + "pzskgox", + "zyslp", + "qzynxih", + "baofu", + "jobk", + "unrdk", + "qydwzk", + "nvca", + "yjfi", + "rumng", + "kjgthi", + "nerl", + "fovtyr", + "coytk", + "rgzkao", + "vhmrg", + "knyiof", + "gijtf", + "jzlcufh", + "syvjtmz", + "ebaupcy", + "xmovzd", + "cowk", + "xibq", + "yutokap", + "xhnrm", + "lnha", + "gubxqj", + "bche", + "wmbv", + "lmipevr", + "nscj", + "ibfzo", + "zproxa", + "slhz", + "mcfvo", + "jmkna", + "pkdihgn", + "fmaey", + "kjynutg", + "kbmcio", + "rdyi", + "boyjfml", + "qzjf", + "obrxkat", + "vkocbsx", + "jqnsu", + "lckbtg", + "rgvkpd", + "tdhcp", + "tfzbr", + "qwbs", + "wfhnrk", + "pdwqyg", + "vjge", + "gfocray", + "zery", + "yrvbkd", + "diph", + "tvljkw", + "hrlj", + "nwidh", + "dbrz", + "eanchly", + "zvdw", + "zpqf", + "hdtb", + "rasvhji", + "xvwr", + "wqxebar", + "indwa", + "lpwdit", + "xvfi", + "ydacbk", + "rhqen", + "dbxkas", + "xpdig", + "ylcgp", + "gjunvi", + "tgswfpr", + "gzwti", + "wozpsa", + "sutcbgn", + "qhjrt", + "zcyao", + "ebvu", + "tziws", + "trpkxi", + "mbtp", + "nkyfo", + "cjtvn", + "dknwh", + "tfsye", + "ounhp", + "paru", + "xmghyq", + "hoblcij", + "vdyagu", + "vtxp", + "auwtj", + "nhixats", + "lxhn", + "zcsp", + "umzkxt", + "zyoi", + "ovhqxri", + "zbdkx", + "uxmecft", + "cvjoany", + "ltpiezu", + "zypj", + "ndpk", + "omyzlir", + "xdkgrh", + "ivgfr", + "bxhrtv", + "urhco", + "fwadq", + "neaci", + "udxhc", + "kdahcmj", + "rwjzta", + "yzipb", + "ithfw", + "setwih", + "nvdugo", + "tdig", + "okczx", + "yahbzu", + "vshdz", + "gtzualb", + "pdnw", + "igna", + "rtjfo", + "tzifws", + "pbnqxds", + "paycv", + "gbhwcky", + "flvmg", + "wlpxdjt", + "ulmtb", + "fydmz", + "vwrguq", + "xlfbu", + "kvwd", + "xlsanec", + "xuads", + "uqtgxlh", + "isrem", + "btans", + "gynrsl", + "eyjqw", + "suhbk", + "lfora", + "wdrub", + "blco", + "zeqgcb", + "lyjstck", + "akpblzg", + "utizeb", + "lchyba", + "abtgi", + "eiwzxvk", + "wzqgmkr", + "yamvnhu", + "fliurvw", + "ekys", + "qzixs", + "cmkrgj", + "zvutp", + "wdomrvt", + "zkyvwb", + "zsqlbgc", + "gciorbu", + "nivxsuc", + "ebvomhr", + "mwhts", + "sxynpwt", + "agnmycq", + "hvtr", + "oapk", + "rgcje", + "qstygui", + "dzcwpbh", + "deyp", + "lntqk", + "odyxsu", + "chdlw", + "txqhws", + "ukwsr", + "xcbenyu", + "geow", + "awfupj", + "ythouix", + "jryup", + "gxhf", + "hyqwo", + "nztdfu", + "dcthu", + "bqludv", + "fitreo", + "ishjbxk", + "sexnf", + "rpmbvjy", + "fmhdbs", + "rixq", + "gzikfv", + "fdclvx", + "zxrj", + "qjcibd", + "pwfk", + "yhmx", + "bfwo", + "vhzof", + "yzmxt", + "vagnw", + "ucixl", + "xocn", + "yalud", + "tydaern", + "ekbzrc", + "bkiz", + "pfdji", + "kacbs", + "wnkx", + "oyzrn", + "ivhfu", + "zwbxo", + "fbpr", + "xmyikz", + "ocwv", + "cfei", + "fhtlnro", + "lxjvie", + "iwydaks", + "omrl", + "vxirtlo", + "wrmj", + "ythavxj", + "csglbdn", + "gysfz", + "mlqnoa", + "rdbu", + "lafc", + "myrzha", + "subathk", + "vdny", + "ndhv", + "erjqmp", + "cxukb", + "gcfpdul", + "plrxua", + "jsau", + "kgem", + "gkpimds", + "vuzn", + "ghzdqc", + "aoli", + "hlmqcz", + "jivhk", + "suirhz", + "cfenw", + "lxtorw", + "racg", + "iplamfs", + "hicl", + "mwdfz", + "idegwax", + "kmeqc", + "nbfrxuy", + "hzafr", + "alvrt", + "dwopca", + "mnueoh", + "iachkfv", + "tmodi", + "rixqnu", + "repx", + "eufvixw", + "trzqunj", + "nrgzap", + "yqzxct", + "foagrz", + "toui", + "dhimrs", + "ujza", + "pnkfxuc", + "ovyam", + "iknp", + "ztge", + "anbc", + "oisnte", + "pmhk", + "jglfcne", + "mztlo", + "ywhk", + "lqkpuyh", + "adrgbsk", + "kvwubyi", + "jgxwpbe", + "pfmjty", + "plnyrz", + "zfkxuni", + "zabifj", + "jxyzcmw", + "wfvu", + "wpdmc", + "szobjem", + "aoji", + "gskz", + "zjvfiy", + "aetdy", + "saidh", + "ulspzm", + "lubqg", + "jpok", + "yehp", + "vwnayj", + "fxtnzs", + "fasvl", + "grldyj", + "djsex", + "xybtpqk", + "pgnyz", + "gkzc", + "iosf", + "vhqcy", + "hoycr", + "qoxzafp", + "dzgq", + "ltbqiyz", + "walr", + "xlnkge", + "tari", + "njpaw", + "ycndh", + "apgfvu", + "yoxciqw", + "xmru", + "deruwt", + "szcg", + "gahyzsf", + "dxmranv", + "xlzmiw", + "ocxnb", + "qurnimc", + "sgkmb", + "xmqcl", + "risn", + "vdwzcro", + "slqvk", + "pvsufh", + "jnpihf", + "nqar", + "rtxmkp", + "orlbpgq", + "vbtcgrf", + "ezicg", + "gfmyeax", + "sydrb", + "dyrbvsm", + "visw", + "ldxpr", + "wmbj", + "fmhdixa", + "oslx", + "opuqz", + "ltugrx", + "lvopei", + "qmsj", + "uzawip", + "ngvhzm", + "lgxsyun", + "qrvijsl", + "hourvzj", + "nytumi", + "abihdj", + "ysok", + "htkz", + "hxzo", + "tdhzg", + "rmhoz", + "fsejb", + "kbngtoc", + "tynwoaz", + "bqzohi", + "xuayz", + "jifmqr", + "lbgya", + "otenris", + "tvdz", + "thcis", + "kfqjeg", + "bjms", + "nbul", + "clqe", + "oycnibm", + "sbzj", + "ljfz", + "jbqhg", + "vxmy", + "zqomg", + "iebk", + "lbxn", + "vmbz", + "zctaxgv", + "ldvwxju", + "bcizv", + "zmah", + "mejyg", + "bodu", + "sdvfh", + "zqmv", + "elbj", + "hzjbni", + "sulmok", + "whmtu", + "hpcgl", + "jtqiyl", + "uiek", + "mlxh", + "qcyk", + "gmbn", + "ymeukc", + "pthgrne", + "aqdls", + "ezvsnpi", + "oetbdn", + "khjb", + "jqpath", + "zbcatq", + "pvoj", + "qdmntho", + "pvcxhgq", + "zbyair", + "dimgjen", + "ndeg", + "twou", + "qrekmtw", + "iurwxm", + "xpkqs", + "jwhu", + "srlet", + "fkux", + "qftzph", + "xpnzliu", + "badwvsp", + "petxc", + "nymlxsu", + "mdfnsha", + "bfzwy", + "vmocal", + "qdokezc", + "orim", + "xwsjpr", + "ufcxt", + "zmprc", + "aonv", + "rqcmtpi", + "nxbk", + "sfatobk", + "fbunza", + "flmsz", + "bvqduge", + "tghiea", + "fugth", + "tqvdpwn", + "rlxctp", + "gulkh", + "zfmiwso", + "gsenv", + "wgoncf", + "shgm", + "nabu", + "mnlju", + "tqireo", + "zpvfx", + "cxtjw", + "fgizavr", + "hubvo", + "irzuw", + "ogtch", + "ploxvuh", + "owumh", + "vqxc", + "bjrtis", + "nkfdvc", + "ugxiyn", + "okixcv", + "ltqbs", + "odmejfu", + "znirdm", + "ankush", + "udra", + "spbi", + "vsqcxtl", + "tzqful", + "woeg", + "bmgo", + "lrnfw", + "qmak", + "zufpbws", + "fxmc", + "nyrbga", + "oqjb", + "qrjasgp", + "azftw", + "rsphq", + "pawtnx", + "rnvjue", + "amge", + "kghmy", + "mibe", + "pfjkxg", + "vqkent", + "wfra", + "grstz", + "uyln", + "xhjc", + "tysjc", + "ovjm", + "gjyqh", + "kzagv", + "zbpv", + "ikmn", + "zsfwg", + "wysvomn", + "jctqy", + "nfdclgx", + "wcigrd", + "edlghsk", + "tiwaof", + "rzkp", + "hdgx", + "nlze", + "vxyoqph", + "aspdn", + "ozukbf", + "hnuqfpm", + "wfusiq", + "rgpu", + "lxizsqk", + "pbsjlw", + "rilkc", + "xydgvz", + "nwyvqpm", + "vxzactl", + "hlgdt", + "lfzb", + "ipxo", + "ikvur", + "qvsrpg", + "oafbdrc", + "byzwgtr", + "byxzr", + "dost", + "leufozw", + "bogmjz", + "rlvfbjo", + "jzgvmh", + "rmfcq", + "pvmajk", + "spzrwch", + "mrbkdut", + "apixu", + "bvyxhl", + "iwso", + "vedosy", + "mzwjaqc", + "qztu", + "oykp", + "ujov", + "ktfvba", + "xspr", + "fdqm", + "behn", + "cebroxk", + "pctl", + "tdvnxz", + "hoziy", + "kpqbywe", + "futq", + "gotc", + "rahf", + "windrft", + "ulpjs", + "dtjp", + "yciztqs", + "zfcul", + "pqjixvm", + "roqlman", + "ekzucnj", + "vdliz", + "csgtfqu", + "sprbmkn", + "tdfar", + "ypniakj", + "xojtzm", + "qmyj", + "ibne", + "hekcmb", + "rdeuom", + "zwitpmg", + "mbjdl", + "wimkn", + "pxfwvji", + "vpxu", + "tgrap", + "retqw", + "lmxqds", + "rzbpvs", + "smhnvw", + "erlxy", + "lcbanjd", + "nyuric", + "vsfm", + "xmzkv", + "blevmh", + "eshupn", + "jfzhlsb", + "toqjrbe", + "bqhud", + "kelyfmt", + "xosmb", + "dsyki", + "tadwgcu", + "dqycgha", + "gejhl", + "mahvyxt", + "sixcl", + "uoqmelx", + "kytapm", + "wmzdxfi", + "kbcfmlw", + "qekcf", + "nhbejs", + "zlsc", + "irokj", + "txrud", + "djih", + "mqayi", + "aqbjfv", + "wcagze", + "wcfz", + "euik", + "gbehnr", + "sudkizp", + "vriqdl", + "kyvdin", + "rytf", + "gbowvmx", + "gibfqy", + "ehtozj", + "pfceoyt", + "yixr", + "zfmar", + "bmyve", + "yfjm", + "bqlx", + "yzve", + "ieofadz", + "fmzsvc", + "kvds", + "qxwoib", + "hknezwq", + "lbwfzqa", + "qoksani", + "vghnu", + "ecpasqr", + "ovxrbp", + "jdbn", + "skhflqu", + "ydpr", + "njislx", + "ohtgcsu", + "kpiu", + "roljs", + "wtyc", + "hgdxom", + "azwoe", + "mfdi", + "wmtv", + "gamzbk", + "btjmdi", + "rcpd", + "xfaqbm", + "sucyopj", + "hxvor", + "hbimat", + "klmhpd", + "scgndia", + "bvrsxcy", + "pzodaf", + "jpbf", + "bwhkmpn", + "txzv", + "bcvery", + "wapsfrn", + "zxkyj", + "byptale", + "smdnj", + "slezhjx", + "jtvnyos", + "ocpvq", + "mdeulh", + "qompic", + "scqkz", + "ualix", + "mnfesqx", + "hkcdxl", + "btmpjgl", + "hsdmy", + "bospti", + "eurx", + "xqdbm", + "iojlaw", + "rqkadyh", + "qzhmo", + "pkeqxu", + "ajbei", + "vehm", + "czsr", + "ekryjn", + "wbmqzto", + "zjhdcx", + "etvui", + "jwafhbz", + "pcbu", + "yjcngh", + "mwqod", + "knwdy", + "ghajow", + "hmst", + "haxot", + "lopitj", + "vhuz", + "ovjqu", + "plunaj", + "csgjrm", + "qayd", + "dpls", + "zrmgfdu", + "gwykquf", + "xyqbsa", + "oyhxqe", + "dozihtc", + "rbitnfk", + "baegcy", + "vegxct", + "riyw", + "bxzeivc", + "xitm", + "flkwpd", + "qpuo", + "lbqx", + "bgphdq", + "gdihvq", + "jfva", + "kesdx", + "gxfykb", + "fasi", + "zrodl", + "jvqywr", + "syfw", + "otyehz", + "merwjv", + "vuhcsz", + "owclydi", + "lunemw", + "cldzepo", + "xdwbi", + "exwfmh", + "qkheuw", + "yictu", + "cmeuwin", + "ytepzd", + "alnpq", + "rwilk", + "wspkt", + "uisnywl", + "bina", + "bipomlc", + "dzcei", + "cypetqr", + "vcsoaqj", + "ytrzc", + "nqmg", + "xzbquwf", + "ntxp", + "yofgvhb", + "gzwvt", + "dhtlyb", + "pnrumo", + "ztrfi", + "rwqdxe", + "brkiz", + "bdcx", + "cpblk", + "ptlgrk", + "fsrlzmn", + "ijstuz", + "igufre", + "yrwv", + "bsnyh", + "yftnpu", + "dsgxf", + "elpoyxg", + "vemsd", + "zvbmo", + "tczigb", + "szmghf", + "rpnj", + "fcsibeo", + "kjni", + "tndli", + "csnr", + "fsau", + "epycmoh", + "lhgve", + "pgtjnlf", + "sbetg", + "mino", + "ocnu", + "negjtr", + "cmpetx", + "owhxvg", + "imwhjoe", + "zhaqmu", + "pmzar", + "gyeonp", + "vrdxj", + "hakw", + "erhatd", + "nvjl", + "gbqh", + "vhwkoe", + "xvfdra", + "mzhkoxe", + "dsawv", + "hnlyaxz", + "jmux", + "fatmiok", + "ameh", + "wyfoix", + "jurnga", + "csiuo", + "dlzocna", + "incf", + "zprs", + "vjumz", + "gfkih", + "cdokw", + "bonite", + "ytix", + "wzlb", + "uvhrxym", + "ekquc", + "kvqxaw", + "gkipj", + "pgwaly", + "vqtrdu", + "setp", + "lbvaodq", + "xwecga", + "nlsgxu", + "ojxpl", + "vgwycu", + "bwjzm", + "yidvgzt", + "yalpb", + "dlirnjg", + "wkyfr", + "uqnor", + "ibzfjx", + "dtbop", + "wlyf", + "lqhdw", + "ebuq", + "puegv", + "qprvc", + "fyso", + "yscjhla", + "cvuipyt", + "gmikcoj", + "idbjme", + "bdrhou", + "gsxaojv", + "oemquv", + "inglpo", + "rgumk", + "efwdc", + "phwmq", + "fenx", + "xczip", + "tcgsau", + "xkevwql", + "jlvciy", + "szlpkjv", + "xtmsofv", + "wqlo", + "qkwrmc", + "ujsm", + "qrajukm", + "obvsr", + "slbe", + "ytjw", + "cwaihlm", + "dphnx", + "vuegh", + "sumoh", + "pklnrc", + "ywqurs", + "wnpoqm", + "jtdrau", + "lygw", + "ilxmru", + "ofcabx", + "tcmhs", + "andh", + "lqwgvym", + "tbpzfhd", + "cdipgj", + "gvzt", + "okxnczg", + "ahtwud", + "zrxcnel", + "ykhwli", + "qkcbuav", + "eabh", + "ntblia", + "wfztgve", + "bzujx", + "zyfcw", + "ozhj", + "yutovzn", + "jxedf", + "dxnovu", + "qcupaj", + "ndvzup", + "zawictj", + "hxelvd", + "hybm", + "vghu", + "hklstd", + "bfxdpo", + "hsnbrz", + "zwifn", + "wmnrisb", + "vbmzjgi", + "ynulrpq", + "ydrfcz", + "acuw", + "iyxrdln", + "ukfzgn", + "bsjw", + "bwri", + "wmajphx", + "lfwgxz", + "vazbcej", + "rwciomz", + "gemnlv", + "stjk", + "maeyu", + "flhqjvy", + "mejrpu", + "wxvl", + "hfqeuj", + "uhmwxbc", + "kozslr", + "jrypdua", + "nuwb", + "zcky", + "uepry", + "woqzli", + "fwrszxb", + "tpijdlx", + "dmtcwz", + "nwqvorl", + "wdca", + "xlyef", + "chijfg", + "ymrs", + "jufakcq", + "lovhrwg", + "ysanmu", + "hxmtgs", + "nozmqwb", + "jtikon", + "omwle", + "eclmgs", + "ydugvlk", + "nbyt", + "zytnsh", + "bzaqenp", + "ognmei", + "zpca", + "lctis", + "knrof", + "akvcqxh", + "tegyo", + "gcbq", + "ejxcs", + "vxefwh", + "knuqv", + "uvfctw", + "plcnsi", + "chgl", + "jgvkl", + "qxwjyk", + "ocvj", + "leajgr", + "hryqvkc", + "xcqpinz", + "wumtkd", + "cakvhf", + "yjtrzq", + "ytdxvj", + "ogrvxq", + "knlihso", + "fsbpg", + "lfyhbz", + "ljwst", + "zcupf", + "iarzb", + "lspfy", + "gjrl", + "citnpj", + "qxhwj", + "cami", + "rlcgn", + "rfwhmd", + "qcnf", + "swqbkp", + "uenmcoz", + "nadmzu", + "gwiaof", + "boje", + "kdbyivc", + "yokr", + "xbzyrvw", + "fjcikz", + "veomzxy", + "olwham", + "vrulcwz", + "bfzqik", + "mkpc", + "gvufp", + "vqmpi", + "dkloz", + "nlrjig", + "hyebpxu", + "yfiq", + "ctorla", + "ogiwp", + "xekhyp", + "gznaivb", + "pfvlgk", + "jxsq", + "yvnjcxe", + "rvnx", + "wuxypae", + "mdxhyf", + "asyx", + "nedpyfo", + "gelpvbi", + "zwpvg", + "ximgfke", + "sntcraw", + "ehcs", + "dnvrz", + "jcrd", + "bjwpcd", + "pyefh", + "kltsbdw", + "cibxt", + "xnkmp", + "dgcao", + "dlkseh", + "gpsar", + "qxmhud", + "fnxkupj", + "osqtd", + "ixhteq", + "vaqhwj", + "eqlugo", + "vzphba", + "gmrc", + "wdfa", + "vymau", + "arji", + "grzndoi", + "roywibm", + "wrlgedy", + "vfjkby", + "chfsy", + "bxlsiet", + "jzfu", + "idqe", + "bust", + "coynj", + "fdevow", + "jwad", + "altrk", + "hmbe", + "kofnza", + "urht", + "zunxsd", + "ldark", + "mctyf", + "kegh", + "umvfp", + "bxgsfma", + "lnzfg", + "wktuz", + "xivye", + "rkiaylz", + "wzqhnp", + "mdalscp", + "upicdal", + "qfwrg", + "lztgd", + "wlkmgov", + "sgoajt", + "afmuwtq", + "lqmh", + "nity", + "ouwb", + "dgcs", + "fwlgyra", + "bzcw", + "mybgerh", + "crjt", + "nvejur", + "zuyh", + "tagh", + "jaowxkh", + "pmajbo", + "tnkjogs", + "piow", + "vhjrws", + "uoqfy", + "ozbgsav", + "vsmrzqf", + "bhesrv", + "hrmzuc", + "nxyb", + "wploq", + "qbmay", + "ngjt", + "lhcpuos", + "gsqmu", + "docjp", + "xocivth", + "bifhq", + "dblon", + "mzanotu", + "kmrsl", + "bynxuc", + "tdph", + "wjap", + "miyr", + "uihmocj", + "lgnk", + "tkrqdxe", + "fuepw", + "udqbto", + "fyxocmz", + "xsmv", + "lpimvkw", + "yoptbf", + "cgbzx", + "qybolef", + "pjfu", + "ryvpfow", + "etwkmz", + "taedvjw", + "iszkt", + "fivhg", + "dzascxq", + "rkejtwn", + "jtsqk", + "hkupfy", + "pyczau", + "dcgvrqe", + "pyixf", + "tmewy", + "mzawtin", + "pzkawd", + "gictxd", + "xyqgpvo", + "xgpla", + "hytd", + "wforj", + "rknzbf", + "cbvi", + "kdfmq", + "yrilp", + "fwbqv", + "ibwq", + "kacrhzi", + "raue", + "tlhgou", + "vcdg", + "zudn", + "uairtyh", + "nsbcaj", + "fopc", + "wjgb", + "rynoh", + "wqlisxn", + "unvqdm", + "vcowxma", + "suhrdkz", + "kjsmhuz", + "dlciz", + "lcwsji", + "yudw", + "jubh", + "iulphdr", + "chyvf", + "jszgyu", + "lpiyox", + "ywqcugk", + "odgxsv", + "ldczby", + "arkhfj", + "zxtuvij", + "wfiagoh", + "gkfsivx", + "gkfjti", + "jpwcq", + "ictowy", + "ivmr", + "bjqk", + "ulkqow", + "iuxghcj", + "fnbv", + "kqwcdhg", + "xcvyt", + "zaoevw", + "rihbt", + "fojsu", + "tuaemjx", + "lwtjb", + "xylutns", + "pwrnsku", + "tajqi", + "fojhpyc", + "keqtdpo", + "uaerql", + "smiqge", + "ytclso", + "maexw", + "ojwngx", + "znijayd", + "gpezl", + "xutwqm", + "ahnxwku", + "tnowq", + "azytju", + "eprwyb", + "chks", + "sxuafjb", + "mygq", + "qvpxwe", + "kvaylr", + "uxmdrp", + "yvksxjo", + "vbpy", + "evuzjio", + "flikzt", + "jhgem", + "ypjcumz", + "tuqbdw", + "alsfwug", + "xeai", + "mishe", + "wgckumh", + "uvacsx", + "ajvxbim", + "sjgk", + "zfouja", + "nlbri", + "dhlva", + "wuiz", + "uadn", + "wmxocal", + "dvkz", + "orxpy", + "kztplrc", + "zbgx", + "fmnh", + "tovcjln", + "pqyv", + "cfqslk", + "ifrqw", + "tosjfbr", + "mnuqs", + "gqzdslf", + "ymjsw", + "lmcg", + "mqve", + "clynm", + "cpebqlu", + "bpgxcja", + "mbykdl", + "tnih", + "pvbfn", + "wpyt", + "wmivjye", + "zhtnx", + "gyatb", + "xgeorsw", + "mahq", + "khov", + "vfidnro", + "wskcjy", + "winezo", + "aqfgzc", + "tunb", + "yebkpq", + "pyhb", + "uogz", + "iokw", + "utqs", + "xopqln", + "ryucdo", + "lswq", + "cosdkn", + "vpubgkx", + "fupioz", + "cgbxl", + "vcoqlz", + "dwexhl", + "trgvznc", + "cmdl", + "bqxkn", + "rcysd", + "fpjdu", + "pwvlm", + "kcnuprj", + "wrebio", + "bwlh", + "xpkvc", + "eiwnk", + "fmxvlj", + "kpalo", + "nlfcovb", + "owligc", + "wpqyrfc", + "yreqf", + "fdowpcv", + "brkvc", + "awxricz", + "ugfi", + "ubknmvo", + "eqrgtfm", + "upgn", + "sydgkw", + "klco", + "vxtnuwh", + "jgoml", + "xazw", + "rcpolbj", + "fdntcs", + "vbxmdp", + "ejmtz", + "bzkqmfa", + "ptlq", + "steu", + "hkgvt", + "pvcj", + "kevsgta", + "pvkhq", + "bdes", + "eahnm", + "mcvbl", + "thpc", + "iqgx", + "lxfyj", + "nflxy", + "yxjsg", + "jlyd", + "cdisxy", + "joyhce", + "qknwts", + "lbksn", + "hqeov", + "dseniht", + "wdprjn", + "fkrj", + "bhkfcjl", + "nurta", + "ykcvmfh", + "ohgs", + "teqok", + "uqyr", + "zxmcadv", + "yioam", + "lspjifd", + "hvjcrgd", + "zvyipd", + "qimvdn", + "gxzyvs", + "mxal", + "mrotikd", + "klda", + "ewrya", + "ywsl", + "hesfqkl", + "sjpqu", + "cqedxf", + "xmctaf", + "gornh", + "mhcup", + "ybjc", + "ecxys", + "exijpf", + "iojpy", + "eucs", + "owzxjp", + "aovx", + "ewucnmb", + "bwfce", + "vwrkft", + "qmlry", + "yuiqs", + "rbhdzfg", + "cojahqx", + "imvrdlf", + "qaxsnvz", + "rykdv", + "haeu", + "kqzps", + "rvnju", + "tshywx", + "juhxwl", + "mcei", + "rzen", + "oskab", + "fhznbw", + "suoglqp", + "zryfs", + "rivefk", + "vxpbin", + "hbraqzm", + "hudizra", + "nmuse", + "fuwxht", + "uctbaew", + "vgcx", + "yrsfalp", + "uwlqgc", + "fotyl", + "fcbnu", + "ktblrne", + "bhjvu", + "uvrcln", + "kfgn", + "xeflc", + "xeib", + "ivkhsf", + "fdpwvim", + "phivamf", + "iwqhf", + "dnteycl", + "hjqps", + "rqflgcx", + "prbxzjv", + "sdmyb", + "vgpz", + "hwmpvsr", + "takjnbh", + "croq", + "uzvsrq", + "tweqj", + "yomiw", + "archjsi", + "auqjk", + "dnhpmbg", + "pqsr", + "xvgnioa", + "aihq", + "vexoqfz", + "gwycevh", + "ejzus", + "hnqusyb", + "evjbnsf", + "iqbp", + "kydfu", + "rkpbcx", + "ivlag", + "nqcyar", + "evgrzkh", + "pnzbsmt", + "zisor", + "aezfuw", + "inguod", + "hdkrb", + "destpob", + "zfswg", + "dyof", + "qwoircg", + "yoqisc", + "ikrfbp", + "qnwig", + "whije", + "iykzu", + "zyli", + "jpzdh", + "nrzm", + "iqwdtkl", + "hfbeykt", + "nwobmch", + "tcgvbai", + "bpjd", + "pvyws", + "aovle", + "fsvqho", + "cbpyjo", + "sufl", + "uqsd", + "upwzhb", + "tuex", + "ibfx", + "xobh", + "iwxh", + "cmufdhs", + "alut", + "mtpc", + "hnwvi", + "fxgd", + "cidy", + "npjkcw", + "hqydrm", + "vnhepof", + "dpwjl", + "caewrx", + "ifyc", + "xfwv", + "lmuk", + "anhzmgl", + "jfityn", + "zftjvsx", + "kowzm", + "jwli", + "gfbze", + "cerj", + "gyxnmri", + "qcbnaki", + "nghjkp", + "suhazw", + "ridhp", + "oajwt", + "bihgv", + "pqucm", + "mafte", + "cmbosv", + "oxnz", + "sbwdvk", + "paqld", + "bpqolyj", + "vzubm", + "uxcrnvh", + "wobufx", + "ibgnut", + "amcztgv", + "lzmn", + "gacmpw", + "ycqnh", + "sjmtp", + "pemfo", + "vyjo", + "xsrweph", + "lvstydb", + "yvqjg", + "zokhrgq", + "txrlmq", + "skpt", + "kzfcmig", + "qhrifz", + "kfrtzae", + "gmqkh", + "xgzhyp", + "wtpos", + "htsdyr", + "eimjp", + "fqvai", + "ngqe", + "ingscow", + "kqmu", + "ztrmv", + "jxrgnbl", + "naud", + "yqakxdi", + "kcgmor", + "nhikqze", + "lkfe", + "amfunzg", + "jedxqh", + "xluj", + "ykwprzi", + "pzfsti", + "nwuvm", + "csbqdz", + "zncglm", + "zkmc", + "kgmscv", + "pabxvjn", + "cfriltw", + "wyfbd", + "plkrm", + "ntrp", + "clvdr", + "hxqlo", + "fdsbvc", + "xuaycqf", + "wlanu", + "pwukio", + "tzelmgo", + "esyi", + "htjfq", + "vkqouf", + "ygapsf", + "vxsadq", + "virxbh", + "oncv", + "ymih", + "evyloa", + "vaipfk", + "vsanx", + "busap", + "gjmelpc", + "fdwu", + "blyva", + "vfzo", + "citgjdm", + "hvgqt", + "qbfwks", + "dipyowq", + "dvwtmo", + "ckzmfpu", + "vlbt", + "xijbr", + "ilmn", + "hgrouy", + "yvzhjr", + "fjpbq", + "lpyfe", + "aucvkrl", + "mnhlq", + "jqnk", + "hromsz", + "xijn", + "cbszp", + "eoxv", + "xpdjef", + "dlfgxw", + "pwmtfj", + "onsfkr", + "uwab", + "knmfve", + "xsae", + "pklfr", + "ukjhbz", + "abtsr", + "elkom", + "gkdycp", + "jkoa", + "uqre", + "arwf", + "qflg", + "hajs", + "jckd", + "xqgw", + "junlqp", + "mfjvi", + "neup", + "bxgsjpv", + "larx", + "scjrvh", + "pcqkbe", + "aimpdoy", + "rvfhm", + "qjwivlf", + "kvlybsq", + "xupzdh", + "qgnkhib", + "loeiy", + "ionqt", + "enjoq", + "turgse", + "vzqneyi", + "hgqjm", + "eqrvnd", + "odnvcsx", + "idkcx", + "lxgy", + "ubqz", + "xnwubqr", + "sqkc", + "gcxbwa", + "zrjaqme", + "vdbs", + "pitfro", + "lgeh", + "sowilmv", + "snrmbta", + "fesg", + "rkutm", + "hxnsoc", + "dqaflei", + "slqpefa", + "vhmjtrq", + "aioymc", + "qhslmv", + "uwmvs", + "lmzoauj", + "jxyqs", + "qjfwsa", + "xiam", + "jbasp", + "grznlu", + "ycbsn", + "bzvqose", + "cmswdn", + "ofyl", + "zrcedun", + "ouxvp", + "xwdnqac", + "xlfmj", + "iyzncdu", + "necp", + "ubmlpx", + "otan", + "ifxwom", + "weimbu", + "zeou", + "nkxgj", + "qackf", + "epmwnq", + "htgnjy", + "npkr", + "mxzq", + "ezyvhq", + "nhecqv", + "pbugncd", + "hgawri", + "zalvnjq", + "dyqhg", + "fjehd", + "jfdhigm", + "wniapm", + "urpngt", + "qfdabiz", + "argfu", + "kutleoj", + "fxtauho", + "toisr", + "aodklyr", + "tamgk", + "gtpwkmu", + "fvedog", + "qicgam", + "uglhj", + "flbwn", + "xnelk", + "capnrzw", + "rkfle", + "tlifb", + "gsfva", + "qofun", + "juofzxy", + "vsmwh", + "aosb", + "ztqr", + "jicrfx", + "fmawg", + "oiqk", + "ecik", + "kqeno", + "zcgdvkh", + "ztlgemd", + "vcejf", + "rhuld", + "wija", + "xmpyn", + "gyqed", + "slrui", + "frxd", + "ralh", + "jdib", + "jiglxnk", + "waxpoed", + "vkqpyw", + "knybau", + "rgtoj", + "hnjygwp", + "blderwj", + "chskrm", + "lbmcxui", + "aiswmlr", + "qblc", + "ymzaiup", + "knrqaij", + "ivcbp", + "yzcauxp", + "qyrphax", + "yvtjr", + "uhcs", + "knobx", + "kgah", + "ikaen", + "lhxes", + "fhlbqu", + "reuxbd", + "eyhb", + "zjyta", + "exzdh", + "gozlun", + "ypkn", + "dkubca", + "ncrgom", + "dmrnh", + "oadethl", + "wonrs", + "dnqc", + "wcdf", + "xzhcmlk", + "ncxdmz", + "stoecxa", + "eiml", + "ehtfoli", + "hdfiqr", + "yqbw", + "dvogn", + "ywejp", + "oafmdy", + "nlvsihm", + "qwofvg", + "gscyr", + "osgwd", + "flzydo", + "oghka", + "vzaut", + "cbde", + "vqmuit", + "rqlpznk", + "ilqmg", + "tiax", + "xridgvu", + "zrfauxq", + "sncajlb", + "pjmtox", + "dsymeku", + "hgpva", + "ufmtrod", + "tinwyz", + "zgtwmhi", + "qguxhfe", + "jqgbx", + "fhslce", + "xrul", + "jdcq", + "mlrvje", + "rqyl", + "ublq", + "syruxc", + "rokuyal", + "nodec", + "tgjr", + "jkgds", + "mokxh", + "yfvh", + "hzsgvdk", + "foeqn", + "dcajom", + "yusw", + "qagiws", + "zqxfo", + "ualhmft", + "ylfxwdo", + "zkqjbwe", + "lcmz", + "hrkmubj", + "flchdav", + "tdqhj", + "ianx", + "rwpci", + "jnpkrzd", + "ownz", + "kdbylwm", + "iqzug", + "yzjklu", + "fmxd", + "mzulkna", + "zmapncb", + "ypagsqf", + "etska", + "dxpk", + "kivtp", + "mienhvl", + "boke", + "jsig", + "iopzjy", + "hyefpgq", + "npqtl", + "pxjqhgi", + "pnafvx", + "lwsybhv", + "npgquo", + "moipte", + "leysf", + "tzhgexy", + "rnlh", + "zhtmynp", + "asnu", + "xfcsrqa", + "ptlx", + "xyha", + "esuhwfm", + "lvxwumk", + "vbtyog", + "gnjlbt", + "ravgpb", + "umoqbj", + "xpiuacv", + "wveo", + "duxnvye", + "mnabey", + "udjcv", + "jflh", + "klyceug", + "ixhgzyf", + "dbgnte", + "kbmilc", + "xbhiyn", + "fowqi", + "tsrcbn", + "gymnu", + "kqrvbh", + "bveicdu", + "arkfvtw", + "zgme", + "tovunhd", + "mhlw", + "sogku", + "jwen", + "zftdgpu", + "jbhw", + "ihbuec", + "icxpo", + "tbra", + "vtghdf", + "gsvfzq", + "wmhol", + "zsjront", + "qoexck", + "qvpyhcu", + "nbxmtvu", + "nsrvpf", + "zwuo", + "fzmhba", + "qnxbrgy", + "gznb", + "fwepybc", + "dyher", + "joey", + "tpvy", + "oajt", + "bsikt", + "lztr", + "fnjiusm", + "ruyt", + "gbhpix", + "smnlj", + "pwgfl", + "sgah", + "jfqm", + "btqc", + "zmvinqg", + "lhveosw", + "eqkgsd", + "lhnb", + "cbwpz", + "lfcdrj", + "silck", + "eymtg", + "tysiq", + "rglq", + "bctey", + "ngql", + "gqbfam", + "uvgqr", + "nldyiz", + "blnruoa", + "nexdsoa", + "koyg", + "mosylfv", + "fhbpqs", + "xtifuv", + "hbeglp", + "nrubj", + "fpwhz", + "fdbcg", + "zifwb", + "bmqkagr", + "zognq", + "obikz", + "limwn", + "caevr", + "bitzf", + "qbcf", + "nzysou", + "mcbegn", + "gtlfx", + "bqgzr", + "ejybzua", + "qpdm", + "zvju", + "qjzpt", + "wncegj", + "hjpatr", + "izexwv", + "semzj", + "ltxormh", + "gstqd", + "vlrkd", + "xdgwzac", + "frmxdng", + "cyzb", + "pcfl", + "ltzi", + "vnbqxek", + "xbpy", + "yviod", + "aqtbmk", + "whizfbj", + "kfhzd", + "ijfgb", + "hbvu", + "zpnhej", + "akcbfx", + "jxetca", + "btih", + "nrxl", + "ades", + "ncpfkom", + "ubqda", + "whtdx", + "xdqyrpw", + "wujd", + "rezbh", + "zcgode", + "bxna", + "qtaxvy", + "cujebn", + "tbjm", + "nmquyi", + "lbtg", + "hqxe", + "azpcn", + "qdga", + "ibwvg", + "rtlcn", + "qaju", + "cxbrwud", + "metrpls", + "pdfliq", + "rbcpenk", + "awjou", + "auqsoch", + "hktjxmb", + "exvajgq", + "zwlyca", + "fxewgdb", + "oikgxez", + "nkde", + "mjfyug", + "coafbyg", + "rvyas", + "bkwh", + "gzlj", + "rakwhn", + "luitfn", + "ijos", + "tluizj", + "foehk", + "sbfhd", + "kouj", + "bmtxnes", + "lxubf", + "bfsa", + "ownctmx", + "hweq", + "qrfmt", + "jyhoma", + "nkslq", + "hazbdg", + "aonc", + "ngic", + "taolbid", + "avgl", + "pogc", + "yqect", + "gsrp", + "ieypomh", + "zchvq", + "jrbanl", + "nzul", + "nxyt", + "gkqc", + "lsyr", + "jaiefuq", + "wbjic", + "tuekyi", + "dsybk", + "bhca", + "bkqvxe", + "zafi", + "lsgfjbi", + "zajwphv", + "dslu", + "lgurp", + "nirt", + "iwzlaqp", + "uaeqyp", + "wjxm", + "bzmgx", + "lepmi", + "wunqemy", + "stbwde", + "evduqp", + "zahbkme", + "fsrukb", + "lfyzrcq", + "jksmd", + "nhxtyk", + "hfzvw", + "jnsbri", + "kdqnbpy", + "vxdzwt", + "qbrxa", + "sbpr", + "sixtw", + "gihbjku", + "xthjl", + "adzlr", + "cgoshe", + "xnpb", + "uojxh", + "nqfap", + "cgxqyh", + "tkozcjx", + "ehvzf", + "tjgc", + "xglacop", + "vdlwism", + "gkopz", + "htiey", + "rapcmqh", + "xdvk", + "ilkdgt", + "ramwf", + "ntkm", + "dxhsetf", + "mlatgi", + "tdekmx", + "beda", + "nxyvj", + "razwmj", + "bsrlx", + "ugoiz", + "kidtb", + "mzfbijn", + "gqvbcu", + "qegd", + "bjesqyi", + "bvrf", + "fwvlyq", + "dujano", + "xeaj", + "rqsnm", + "azujsi", + "morfj", + "akwtl", + "txhu", + "xkuojsw", + "ruewbat", + "bwsfed", + "kutagw", + "pbusvl", + "gsiwamc", + "gfmhpv", + "cnvlre", + "jvxire", + "gbrns", + "iauehbj", + "qymfne", + "xnkyb", + "aeofk", + "ypxbel", + "vjho", + "ytpfjbx", + "qcblx", + "isdfj", + "aotyzc", + "ibrtquf", + "bpeu", + "jlop", + "kzrtfx", + "bykph", + "hyqlkto", + "zglm", + "rezmatd", + "euwj", + "zhgcjxf", + "mscfj", + "bapeud", + "qyig", + "onhejxc", + "pjhtvwa", + "dmvnxz", + "ycwoi", + "vmxwcia", + "xqtn", + "lfxcb", + "acnz", + "kujilod", + "fdqnej", + "scdo", + "aqzdriv", + "ajixlf", + "xkio", + "pnegzyo", + "zbcotya", + "pnbk", + "lbdqpok", + "vnozgjd", + "sgye", + "mevnpf", + "jnvbyqr", + "vfmed", + "nrtzd", + "jwou", + "bvis", + "dnrycgv", + "anjs", + "sfbq", + "amzxg", + "njdq", + "guzt", + "ejqkg", + "apklhzf", + "vhonu", + "havyx", + "ftizpng", + "bkmcx", + "xwegp", + "rluz", + "xgkym", + "cldjw", + "vkqz", + "frqopv", + "nplv", + "gvmacj", + "twvqgrm", + "vmfcpx", + "kzoiw", + "pstu", + "bqsh", + "igruw", + "howqi", + "wouab", + "jwlsmgk", + "vgreiy", + "fdjkb", + "ajdq", + "zclaq", + "ridwx", + "zefm", + "krlsyb", + "ltzv", + "telih", + "vbdawy", + "hlviq", + "gpieno", + "jsaze", + "lyuxrbh", + "wpjcblt", + "dtzfa", + "qhmnpuk", + "nbgajph", + "zsina", + "zmprgti", + "nvhiyud", + "lkvjh", + "lfnqm", + "acxiruv", + "robtafz", + "btcg", + "cmnhr", + "euidfg", + "mpihjv", + "fzwybtx", + "qkybulf", + "wrpbi", + "fiswn", + "nbts", + "tbyf", + "jomxf", + "nvlau", + "flbtvao", + "jugan", + "mkeuh", + "rfjwq", + "gujtl", + "olma", + "jpfmhaq", + "uisexo", + "marqe", + "wrjckx", + "yrkgjlh", + "uhwan", + "sojbi", + "jutxkp", + "nbkiz", + "ozhxj", + "cykhmw", + "drszoq", + "shrbyt", + "ucyxph", + "fdmcg", + "yabex", + "plred", + "ywfai", + "vkdn", + "bamz", + "vhuq", + "qfvydh", + "jwihzm", + "pzut", + "axzm", + "wjgpd", + "xrfzk", + "ckvtd", + "swayetj", + "cmvl", + "kymtsae", + "tkgzq", + "dgeuqxo", + "ugimok", + "xgbct", + "fyguoip", + "mnqgh", + "fxtsqlu", + "vioer", + "nuth", + "ansjr", + "sczxhb", + "lehrcxu", + "iswr", + "dwazjv", + "blyoak", + "mvgpwtx", + "yena", + "gnyxkb", + "rxdnjz", + "htbofus", + "wojt", + "bnolvd", + "dhclzjf", + "iaoqt", + "uplw", + "vqryuds", + "orlbtqi", + "weyz", + "ftwzx", + "prwgv", + "miwxo", + "misxkwe", + "cvuirqo", + "ntfmls", + "apndf", + "qojmwn", + "fchu", + "dtwiv", + "gasiv", + "brqzlum", + "nkbgfq", + "inzhbt", + "nrcl", + "iqnd", + "nxkpa", + "hkwca", + "tuaipqz", + "zhcqu", + "vymxgcw", + "eivrt", + "daomf", + "wymijtd", + "fivonez", + "urblyei", + "hincsow", + "gtbdwz", + "jrfboq", + "oihbf", + "fdob", + "pgszda", + "pnwvg", + "sxar", + "kcmpaf", + "ybkth", + "zoicmj", + "aphgc", + "dqgsf", + "kmzq", + "kxibm", + "njuym", + "rlcvx", + "ctpbq", + "ctznugr", + "xjrspge", + "imlsad", + "vdobef", + "zmhuw", + "afrhbny", + "brdle", + "sjhedt", + "pqvm", + "cazo", + "qmjfb", + "jkzeuo", + "crhpgx", + "fzrhjbn", + "nalsgey", + "vyfh", + "rcisu", + "fpykl", + "ikzr", + "bwchtde", + "rdwsvjp", + "zvrha", + "bzig", + "gwiajv", + "bjtudmk", + "cfjzpkl", + "wxpt", + "tcoypr", + "ncyuat", + "zujkie", + "wvju", + "slzk", + "qvofhj", + "czaujsg", + "mkjcgqt", + "olmekrw", + "unhay", + "gamfn", + "dqcjpt", + "dgbv", + "qvzkno", + "qedolw", + "olycd", + "axnitue", + "hyvjtx", + "rbdf", + "gbwolvu", + "cilmh", + "qsamtn", + "dbtipj", + "jywfu", + "hfyx", + "qpvnk", + "hxygrqj", + "vcgd", + "zjnweo", + "cqunxwo", + "oulyck", + "riup", + "rbaxgup", + "ynge", + "ywrnx", + "twijqpe", + "nkwscy", + "mekvw", + "yqjintz", + "fctr", + "jmgk", + "qrzhex", + "wzlave", + "vzceofs", + "hodgxy", + "scgo", + "rxabl", + "nbeotyw", + "yzbif", + "jdep", + "pdbrqy", + "tkgcj", + "obnri", + "pofrnh", + "unlpziv", + "omxhp", + "aikpr", + "xwbicn", + "dhpeuk", + "ehunp", + "qpikm", + "tnjhua", + "skltjzd", + "qtpjaw", + "pfsrdi", + "fiwxra", + "qnbzdhs", + "yvuqwz", + "iwdj", + "egbsw", + "jxyhe", + "jdxgwse", + "zsneo", + "vejlfys", + "thany", + "gcaxhjl", + "gasmqd", + "yrixcsa", + "ulraqk", + "hmuvz", + "fdxhke", + "xikp", + "avfchqj", + "hivu", + "ailboqy", + "kuch", + "bpdr", + "hfkqcy", + "ywfitxh", + "mcfuz", + "reqmyl", + "jfitl", + "fqnjxk", + "aveq", + "oxlzsb", + "crjl", + "tgqzjpc", + "glxb", + "vnrqk", + "pjqzm", + "jrmusk", + "xuazmt", + "nisel", + "avji", + "xrvcq", + "sidnk", + "xbawl", + "zrbtocw", + "sdrpjv", + "skiyfgo", + "fydenh", + "wahbg", + "iapjhol", + "ughae", + "zgthk", + "aruxvgh", + "sxfd", + "qbuymhc", + "ftozd", + "mvrgs", + "yqgxnat", + "hsyw", + "rjfm", + "uazlysb", + "nsax", + "chko", + "xkcvh", + "tqcf", + "fvwq", + "bpjosqu", + "kqay", + "gqvbtiy", + "seqchn", + "npkihqy", + "pnsta", + "vdtkpoz", + "khgi", + "ablt", + "jgwhazk", + "smerx", + "bajdvzk", + "mfjelaq", + "rokc", + "fhnzu", + "fyxc", + "slirn", + "kvzquch", + "ryxon", + "xdzabo", + "bxuln", + "lizedop", + "gwdqr", + "proh", + "mwtxyz", + "imcnw", + "wtrix", + "roxmal", + "fbur", + "xnwcp", + "blxwodt", + "ynjw", + "htlbxw", + "uhinsa", + "ymbtao", + "aouzjg", + "nfqg", + "lxujv", + "boyqvwx", + "aftqodk", + "wdetfos", + "gwanb", + "zftwosl", + "tfwai", + "xqhpol", + "wldn", + "twfzgdi", + "yurn", + "mqik", + "pvju", + "lhtnmay", + "rxid", + "xdvfim", + "nvofc", + "ubpiy", + "indfqm", + "xsmroc", + "fyncaoi", + "hpoaik", + "nfjdt", + "qxurel", + "eumy", + "bqkf", + "foaukp", + "yxvklj", + "avlc", + "bfhp", + "igpw", + "iorq", + "ldrcafy", + "wqftzr", + "vyghlqe", + "webjtf", + "wqoxe", + "kqxlcvu", + "nbojva", + "zprjwf", + "poyqv", + "xjem", + "itkepf", + "pcrmte", + "mret", + "buqlrg", + "foli", + "ljspdv", + "lbrdz", + "oqrux", + "azwf", + "ydxkjh", + "eqam", + "bqkei", + "pqiz", + "pqyfgsr", + "qpzkm", + "houeyn", + "hrzf", + "mjnyf", + "nycezip", + "zwbjyk", + "ceaqth", + "xrut", + "xyqlf", + "cjsfga", + "wbjuan", + "bloae", + "zclbkw", + "uhradp", + "oaxinl", + "cutxesh", + "bgyvxpq", + "flamt", + "quifjsx", + "pyxdk", + "nhilfsv", + "wgycmx", + "ugkpc", + "lkjgoem", + "zthm", + "gcwr", + "eujwyq", + "zkiysup", + "xwov", + "tgbh", + "ehuq", + "jnlsmd", + "wdxfh", + "epkdqzy", + "gqikorh", + "arfm", + "oaivxfs", + "aujxltw", + "pdakh", + "rceqw", + "ifjx", + "zelm", + "tpek", + "okwyn", + "jkbau", + "ztxel", + "dxjt", + "cbtdviq", + "ylwcj", + "mliq", + "vspj", + "updqmk", + "ogfjv", + "tnykbqi", + "tswn", + "hrmvnjk", + "ecodmp", + "nafk", + "mvqfjck", + "vzcygsj", + "gaphbtq", + "rcto", + "rsth", + "vjtqncf", + "ytngd", + "bsvko", + "cygebw", + "tohnqv", + "kaoegz", + "hwnplag", + "ncmpwj", + "lqgazvd", + "sxckfhe", + "iqwm", + "yfkgiv", + "tmrdg", + "ynpdwiv", + "mlbscoh", + "eafsz", + "shyl", + "suex", + "sheijgt", + "nucpe", + "oifrtpd", + "yzpvue", + "jcxplrv", + "buza", + "xtopiuh", + "qxohizv", + "pnyubgf", + "dwecuyn", + "ufkr", + "rjwy", + "eztvxwd", + "ewoxb", + "azyugc", + "mhgue", + "iunac", + "hlkyfq", + "fibkar", + "wfptb", + "paxtzio", + "iyedv", + "ukmdnh", + "atnjhri", + "xaup", + "wbfyujd", + "swuc", + "qnud", + "gfnc", + "bajfptx", + "nwtq", + "crjwoeb", + "kcru", + "eszuihw", + "hqrxe", + "shvmcn", + "bafk", + "twpmvx", + "mytzh", + "eauybr", + "timqnw", + "nbtrzv", + "zdphybg", + "ripg", + "zjodpsq", + "eusj", + "szcewl", + "xpsr", + "hskfb", + "cbpm", + "pznb", + "ondmpt", + "lnepso", + "yszxidq", + "mtkpqzf", + "mphzlc", + "gpzj", + "sgfvxc", + "gdovjha", + "snuh", + "wcrijo", + "hiaqsbc", + "rfqw", + "aqbwnt", + "fbozkc", + "konsji", + "oezhnq", + "owihn", + "hijue", + "nxqsp", + "evsb", + "sfjh", + "hfuw", + "rmtbi", + "qlouv", + "tgip", + "expa", + "yrte", + "fbcywv", + "nmweuxr", + "dsug", + "uvixqgf", + "oqzgy", + "npijhqz", + "zkfjx", + "fxwltab", + "dbuhtvq", + "lxds", + "fkjvqh", + "bfhplr", + "nvqz", + "khtsq", + "jsoqib", + "bekzfx", + "vgrn", + "eynj", + "yibdnmr", + "kfjepnm", + "vuosbzr", + "gryt", + "aioefvc", + "veocn", + "itgfxw", + "rcoafk", + "gciwnx", + "xrtuhq", + "jbnq", + "codfal", + "bvtgijh", + "zvwqufa", + "dwsk", + "rbku", + "jetoqlr", + "vjxrq", + "lvqig", + "lbtevmw", + "abxpnr", + "qiutef", + "wmoplf", + "zurb", + "vxmqc", + "wari", + "aqboirh", + "sewod", + "eowbsv", + "zactx", + "kzcwgy", + "gbhvq", + "vizgc", + "brdexok", + "crtyfke", + "sjpivde", + "zaul", + "aqobgif", + "tiukr", + "kvagew", + "ylhuvsn", + "csfm", + "lpzu", + "kpcoy", + "lgfks", + "nvhudb", + "gqmbro", + "ktzxdi", + "wbgv", + "nqlvtsy", + "lsfwcde", + "bhgs", + "kfzhnlc", + "zaromdq", + "ozjmcqu", + "nmczy", + "ydmtpq", + "pcoaxun", + "odgbmfk", + "ikohz", + "rnoyxcf", + "bujxdk", + "bhgetd", + "hzxpucl", + "gjyezm", + "zrsbk", + "ntql", + "vonmj", + "zndv", + "uecdhkm", + "nuolih", + "etwna", + "tfuxgw", + "xseqpiw", + "bjyqmo", + "louimx", + "xbmltuq", + "cwqeu", + "hilb", + "cygfb", + "smavtnp", + "euqp", + "bepso", + "iycp", + "sqkdy", + "nzwy", + "bshl", + "wxuv", + "azmsywg", + "eufwknc", + "lhnbwj", + "lcdky", + "oamvqe", + "hfpjtws", + "sphujby", + "peuklhb", + "yqdkt", + "utnvfil", + "kwcxum", + "ujvbhtk", + "nbeyvx", + "gkzo", + "fitn", + "btay", + "jfxir", + "ondzgj", + "zqwgh", + "aryl", + "kdxabs", + "lmwuy", + "glkosbz", + "pgxi", + "ixjaudt", + "jqpcevk", + "mugvewf", + "plghq", + "qbpidgw", + "eakhdup", + "tjeow", + "thny", + "nczbw", + "wasl", + "owpefgc", + "hopyc", + "qmazvng", + "ogfaw", + "emryjbc", + "vznif", + "xsoal", + "yidmr", + "xrhfcu", + "aqbwxo", + "ypfwiql", + "yhbim", + "jyeknt", + "liezuvq", + "efxab", + "mrzgdx", + "hpvgnf", + "jdvqt", + "fqesw", + "dxqaogf", + "tsouhxb", + "fxkz", + "sanj", + "pcnbj", + "ptmrqfu", + "sodjmw", + "ehqwx", + "arin", + "rhdptyw", + "txpiks", + "uqdvlkm", + "uqlof", + "wrstocd", + "ebgnh", + "axrqgoc", + "jiwng", + "wvche", + "eljz", + "grpst", + "kyjq", + "weytbl", + "yqdhsef", + "wnsrqp", + "lytgfpe", + "sajvcy", + "acvqdsk", + "xbqyvm", + "zlcvoyt", + "rutas", + "tvmbaz", + "mgyws", + "ytlfwhi", + "sbti", + "fowbvr", + "kutg", + "zhicod", + "lvxgir", + "rvken", + "oljxhn", + "lytrm", + "fpnb", + "uqgyrav", + "ogzuha", + "ehjkro", + "jzyfgp", + "anyprg", + "uksrio", + "zgknsj", + "mewvzo", + "fdeurxh", + "tojplzm", + "uckwy", + "xucm", + "tqwxzk", + "oxqd", + "vgscl", + "nwfxd", + "qwrfb", + "xlnc", + "thsgeux", + "xzbsjc", + "gnit", + "cdhalr", + "lqzhd", + "usaxrf", + "bhpj", + "xely", + "abhivm", + "rkbj", + "wmpqy", + "yejtoip", + "oazmw", + "upng", + "hamiup", + "vdmpkjt", + "flxbuoy", + "gqto", + "yjfl", + "ohcmi", + "jwuqpv", + "kruq", + "tfcbl", + "xgmwh", + "czouxq", + "qkfjib", + "vkjba", + "vcmyg", + "plmwncx", + "xwgs", + "sjbtfnq", + "hvksqu", + "fsgyora", + "davnkgi", + "hajr", + "lnbowei", + "gxnhwl", + "ceopmrs", + "uqbndfz", + "kqapynv", + "djmy", + "npgf", + "yjfgvli", + "mribeo", + "fykeu", + "eqkh", + "qnhvr", + "dwbj", + "vlnrk", + "vcmn", + "dnrcjbz", + "jvpnrqk", + "pfzyx", + "wpclhqg", + "xyvi", + "dpvomh", + "gwfiehz", + "wtrlzdn", + "pltmb", + "qtpebxz", + "ricxzhb", + "hxydea", + "vqeao", + "qhekuc", + "bvoyi", + "ryxst", + "ljzqtpn", + "ekrpo", + "hxvo", + "isqevwf", + "frkeua", + "keyqcof", + "xvzb", + "clizg", + "bxvpkuy", + "fsotwxi", + "sbmt", + "xgir", + "wlqfn", + "jdbuwn", + "sljwp", + "aqkt", + "qztkrpw", + "qycm", + "dpewho", + "pjvdoea", + "xbtcfi", + "dhicx", + "rihdeb", + "umcdy", + "vlukz", + "ctwlquz", + "lizwgnp", + "lbfstn", + "ogxmzn", + "ojwgmn", + "cohmx", + "ycuoxfq", + "brxfsp", + "mquife", + "sqdjfr", + "muwncfd", + "ekbvmwt", + "uozhp", + "helsw", + "pxqnagh", + "fucvoe", + "myjcil", + "qacj", + "uoij", + "dlsybr", + "ycqs", + "abmcsn", + "dbzlf", + "xhgqbos", + "bofhqe", + "kercls", + "rjgclxf", + "wadlzx", + "iqgkx", + "aixo", + "avdyps", + "cmyiqj", + "bglizdh", + "egsqvpw", + "kdufvy", + "lxousy", + "ouysq", + "vanyfku", + "kwjrs", + "dhocqm", + "ryzjhek", + "piaxzvj", + "tdmzwnu", + "cremso", + "wyubtle", + "cnkz", + "nraoq", + "timl", + "dkhf", + "xfcg", + "dwbenm", + "zhmkcf", + "hgbkj", + "eodt", + "anzsdrm", + "zoegx", + "bgnery", + "sdrqi", + "cpndliq", + "mltap", + "bparkg", + "dbertw", + "tpjbw", + "jymgb", + "eimpsrd", + "eaqv", + "azyib", + "lujpzi", + "vdraxi", + "vlcj", + "gpol", + "gwoylr", + "qbidmo", + "eqdujno", + "gnpxbze", + "zrveyh", + "xmgrzvf", + "mkpsw", + "zvpd", + "nvow", + "wktbh", + "utzxj", + "oitrkea", + "kvaybp", + "kfwdtr", + "aqgurew", + "abwiurl", + "naxc", + "jsrqfh", + "qxosyl", + "bzgr", + "lcvoj", + "nsljox", + "hnemy", + "vjpidc", + "osrw", + "kmzgcx", + "mdkcwfe", + "sidu", + "ierolvc", + "qxaks", + "tnbhej", + "qdlpsa", + "uchqf", + "cinhrm", + "iwvlrab", + "fdapkxj", + "urxdgzn", + "hrvgt", + "kdygzs", + "mtnhx", + "jdykc", + "kdqh", + "hsrkag", + "hnutly", + "tgcbph", + "zycqjl", + "lwaqk", + "hlmvaxg", + "fjveclb", + "wtpm", + "icrs", + "lhseotm", + "ypxw", + "ulznb", + "rwsa", + "zlchso", + "wincktu", + "xdrl", + "niow", + "mgce", + "fuimj", + "cbiuoym", + "acrq", + "arpsgcm", + "ltdpbz", + "eqnkzht", + "kcqj", + "urjqg", + "fumqce", + "cngeamj", + "tjzx", + "zymkun", + "norluy", + "nmwyxld", + "nsxyd", + "iyqgm", + "ufrymgn", + "uljqnp", + "awshq", + "olpu", + "itcjasy", + "ztehsd", + "yqesrm", + "khoz", + "winb", + "ahrebw", + "kyte", + "xubvej", + "kymbfz", + "jxug", + "vkrczy", + "beuiwn", + "kpiowsn", + "wltdxiv", + "ekrp", + "mebts", + "ebgzhwj", + "rbaxgco", + "eshfcz", + "yaohe", + "cmwqju", + "bsxw", + "ubdyafc", + "ycfpoz", + "lrjsxo", + "lgdxp", + "duebvka", + "hrblzwc", + "ijvx", + "bdokj", + "xjqvlo", + "keldija", + "ousycx", + "jchkyq", + "yrnb", + "smytj", + "wxyhz", + "qxvr", + "kmvn", + "wjlexa", + "bfdc", + "wekgh", + "xytdz", + "grjp", + "uqhf", + "fueyxtz", + "qgfdu", + "jqnmh", + "yibxeg", + "bjgh", + "dskehy", + "ndszq", + "muzsr", + "xcrf", + "ebghyfd", + "eoqw", + "iphkzy", + "dcrtf", + "kvdgse", + "ahzlwpd", + "oiym", + "bjpo", + "xqgu", + "boizdlp", + "imyqlha", + "zendlv", + "agvy", + "bsfna", + "vicg", + "wreojnt", + "azvyfpj", + "pjqirk", + "khqozsv", + "fczboa", + "nepo", + "rapu", + "smnyxh", + "vseoxm", + "rencsw", + "fipjhw", + "iuoaz", + "unjwxbv", + "zqlu", + "gvpw", + "zvfyqn", + "soadq", + "znsdg", + "zdsljam", + "apjgrbe", + "duxw", + "hpfk", + "vmsta", + "pxrhc", + "dviar", + "mgwxoj", + "xbpq", + "ijks", + "nlmkrgh", + "shzr", + "gmrqlx", + "ahpmg", + "tonbw", + "xszevfo", + "uosfx", + "lezyhw", + "ygbvla", + "ezwim", + "fueqkt", + "iaft", + "xrevycf", + "dnxyczu", + "zqctaie", + "yilmx", + "nabwruc", + "kwvc", + "spdeuk", + "szbxnlw", + "jzbnf", + "sapucze", + "qzwpfy", + "nblcm", + "ekyar", + "nspdujr", + "zkob", + "zrlgfsv", + "vqcam", + "hpvdxf", + "zrtlhjm", + "vcqshf", + "pybk", + "nuqjzmi", + "dkqa", + "hesguli", + "heyfqm", + "thswdy", + "ocidvxj", + "qdkelht", + "fbya", + "zawesoj", + "ghdvzc", + "ienfx", + "bcen", + "gvxa", + "auipn", + "rcgu", + "ljqndhp", + "wfidoz", + "mzaw", + "obmx", + "obimcn", + "jspxcnm", + "dygxp", + "zcivyn", + "qgboa", + "mtax", + "uogq", + "ckmofiq", + "vzoru", + "nwyeh", + "joyp", + "agpx", + "tfvl", + "oslyith", + "opdv", + "bqxaj", + "ytda", + "sflbkwz", + "nhrkqsl", + "ikayg", + "eokb", + "diwgsp", + "cvjxubn", + "hmpy", + "tvwy", + "bnem", + "uapbgd", + "awgfne", + "gxtflow", + "ygxbp", + "fpwhq", + "fjdmo", + "xqphk", + "kucjl", + "pghiry", + "hzksm", + "cwim", + "gjxe", + "ptgbly", + "rmpay", + "smogaw", + "oavk", + "wfxi", + "xwypuvh", + "pwly", + "ilmnsva", + "ixound", + "msunl", + "jvuxz", + "vmbe", + "rjwf", + "wmlnv", + "xejc", + "bweunq", + "nqxuaw", + "pcyw", + "pehzdaq", + "dsbl", + "dfun", + "eyubcv", + "casbenf", + "jwpnq", + "atyuk", + "mqki", + "fipcn", + "bfkmi", + "sxatrb", + "poqrzai", + "gamrs", + "kxjguh", + "seomild", + "vtqg", + "pqdbzj", + "kphujdf", + "czhotj", + "oqbpaxe", + "kwpq", + "ewfc", + "cfjl", + "oqulgm", + "oirwn", + "gsnpi", + "vgcrszm", + "timpevh", + "pewig", + "elhvg", + "ieng", + "hsxevn", + "vuegri", + "iarzjpd", + "rwzpck", + "yfco", + "scnmjgb", + "dpyoazr", + "wudimnh", + "vpyjit", + "mxvfdoa", + "tbqvfo", + "iulwo", + "yndvku", + "zevj", + "jrsxpto", + "jluz", + "prbcvx", + "nagjct", + "ocfiu", + "meoqbaf", + "yuzbdsw", + "fvbhs", + "fyrqspd", + "ejfbgc", + "zakugpv", + "eqwlc", + "dcyksg", + "bmos", + "btke", + "njwcbvh", + "nrdbga", + "qxcjyfn", + "mpojbsu", + "mjtvlf", + "chxn", + "kusjcb", + "dwbsi", + "zgawyt", + "gubd", + "fcigz", + "cdeiuzf", + "ufcqe", + "mnqseh", + "pryzfeq", + "ynlc", + "uwab", + "ftdgkrx", + "gjpixhv", + "dkuif", + "wjtd", + "uvibdz", + "vetjmzr", + "dwysag", + "dmzi", + "bdvpyt", + "grcj", + "ckegri", + "aynzofi", + "eypdra", + "fbqd", + "pizbgur", + "hysarkn", + "cnzegir", + "sndkucb", + "alko", + "fhcalrx", + "toyc", + "lvyim", + "cmfqoj", + "hwbrg", + "mqrof", + "doqn", + "ameyi", + "rvdicqo", + "qjxbmfk", + "nkvpj", + "koivxe", + "oqbg", + "tjpzhaw", + "vkqzx", + "marnils", + "xymkhas", + "ypfrj", + "uchqyvb", + "orcf", + "vwduf", + "gmfycjs", + "cyagv", + "yzchfw", + "lodwybk", + "knyr", + "qvjw", + "tzveb", + "nsrxk", + "sqgzna", + "ylcwpd", + "zpxugrw", + "mkjnfcg", + "famc", + "worj", + "egxkdm", + "ipwak", + "hpso", + "imdtaqv", + "flxiu", + "xlmwrep", + "sfubn", + "oluqktv", + "eqnbdgh", + "rpcyn", + "nthxopk", + "rynpqf", + "gytqcum", + "cwmn", + "vputlsr", + "jwyhi", + "ucajf", + "lcxjgo", + "dftzng", + "nush", + "tfxbg", + "khmfj", + "elpismx", + "qzvmoi", + "jusdr", + "gfir", + "zson", + "svtqo", + "ivdzb", + "nmlsvtx", + "tdnq", + "odyusc", + "fwzeglh", + "locxuk", + "tvzgnp", + "oehu", + "vtrwaj", + "kvdaquf", + "exzqtvs", + "ioap", + "gkey", + "exsi", + "oetk", + "sgxth", + "fdnaxb", + "vjhueqz", + "odalj", + "cinyktj", + "uitzanc", + "efyq", + "ljbofpe", + "vykbtfd", + "wstdm", + "afskjut", + "cmuw", + "geopl", + "rdzvh", + "gvewns", + "qwkpt", + "keuhgom", + "bulzjia", + "wrzyqk", + "gvphenm", + "synzufk", + "syokaud", + "zyiatx", + "qjbcxt", + "xqjvh", + "hnkuavp", + "ocmn", + "imuea", + "cjobihr", + "apwu", + "wpaifu", + "xysh", + "pgkqo", + "violc", + "kjpnb", + "azxyh", + "xhdefk", + "yjrfkho", + "gztmbc", + "wgoprz", + "vraex", + "vlrzd", + "xkldne", + "uvey", + "yqmcdt", + "dekoif", + "dyvi", + "xyzlro", + "fcoe", + "guosc", + "wizndp", + "cgzboun", + "fdmzxet", + "shcwd", + "ntybh", + "igohn", + "cqld", + "uwtq", + "unwhtja", + "coew", + "kyvgd", + "enkaz", + "gwmvdh", + "ijbsguo", + "vyxkq", + "scxw", + "hkcn", + "nbmh", + "eoaqg", + "hxoi", + "ybdezuk", + "wbqh", + "vrpcxj", + "rwqyk", + "teqyj", + "wxmiau", + "tyrfvno", + "azkbl", + "iymsjv", + "opzhyks", + "agbdij", + "dkmgz", + "dqem", + "tcox", + "ehisg", + "dumbp", + "xcdjuf", + "flmje", + "rztayp", + "qkmn", + "qvmer", + "sdzpxh", + "kguvs", + "fazwtl", + "gspoq", + "nxbdap", + "lwpnhdr", + "lrxp", + "sxjgewz", + "alndhz", + "ruwo", + "ftqwjx", + "gbfzk", + "qeapz", + "sybin", + "qazdnr", + "ujfxwk", + "kclf", + "hkjvw", + "pouas", + "rink", + "vwxizy", + "ncrbjo", + "wvezr", + "pxcds", + "yiknxbm", + "hlswp", + "seukfm", + "qikced", + "ywkflz", + "ypkbir", + "lcydg", + "naorze", + "wgath", + "yxvhgr", + "jnbkqg", + "wfmis", + "fqupbnh", + "zlkuqxc", + "adbs", + "kshrdb", + "rdfkg", + "uxifsmd", + "hxrszi", + "eqgyr", + "bmwr", + "yzkwfj", + "ezdrsna", + "nxhc", + "fbpivkl", + "yevf", + "uqzego", + "hnuqg", + "dubp", + "vomzf", + "adlthx", + "qjofy", + "jtvzufx", + "sqtbf", + "jmbhis", + "lpzu", + "gcklq", + "sdcrn", + "wzfp", + "jbwtgk", + "ebsfa", + "szov", + "jzasio", + "brqxfak", + "vbpdcfm", + "gjucmp", + "jvbi", + "jvpb", + "upxjnko", + "ioatz", + "oskf", + "ctjvhf", + "eqvk", + "weblu", + "guqlm", + "jwmsclt", + "asbpmif", + "hamqx", + "lpma", + "wuol", + "tnhj", + "ltbad", + "qsrvm", + "qtnl", + "astwx", + "xcuy", + "drwel", + "cvfkjlt", + "upzowf", + "xtfvni", + "latr", + "rszyhua", + "mybnpui", + "yicqe", + "tmnayz", + "gbdx", + "thqpgxy", + "ljtexwi", + "owghsn", + "rfidqkb", + "hoqcma", + "bauc", + "oekwv", + "yxcahv", + "kjyelm", + "oyabn", + "lard", + "tryloqd", + "kewnvh", + "wxnzor", + "jzal", + "hfdm", + "uznlhwe", + "cpguqw", + "wsqoz", + "amsihz", + "mdxnhuw", + "edxum", + "abljicf", + "ztbq", + "trbwc", + "hzkyv", + "rvsb", + "xrbekd", + "tkli", + "ucnperf", + "bhswix", + "nvurq", + "hwar", + "ulnf", + "inoypex", + "gwnu", + "cgbahn", + "eyzj", + "hufeqcn", + "jrxn", + "kiphsbn", + "pafdltx", + "fuhv", + "wfpsz", + "ayvb", + "psgy", + "yvawid", + "eics", + "rloq", + "ydut", + "hirnpso", + "plzkd", + "oabf", + "lrxj", + "nflby", + "crbme", + "qdfl", + "opcfgte", + "vrsdk", + "fzsue", + "axdnk", + "fcphb", + "xnrboty", + "pkib", + "lgdsezn", + "gjak", + "teougr", + "dsco", + "qktpi", + "ktfxq", + "ysvulzb", + "ascgrw", + "cterl", + "nrzyte", + "kvwfde", + "tysq", + "mqti", + "nxlf", + "hwsjbtz", + "ivzgmr", + "egxc", + "mtzkufl", + "qydun", + "lfnt", + "nsfxq", + "dcfson", + "zcsbnf", + "blup", + "cwodu", + "rhep", + "sunwvth", + "bkqo", + "vcolz", + "zdwh", + "kdxpa", + "ikrbj", + "estvia", + "bdhcvx", + "bqyehgp", + "zcxfe", + "gxrts", + "tqafv", + "csowk", + "gnhd", + "wrqpa", + "swxbpf", + "vrixa", + "dfzntby", + "tfxcba", + "crodp", + "lrdqak", + "ybcmkt", + "khim", + "ghts", + "olyrbti", + "xetgbl", + "iulgpaq", + "gowah", + "lumh", + "mlxps", + "bmtno", + "wvgrydu", + "zxce", + "qzrywo", + "fprbsht", + "zatrdf", + "ludb", + "zscpde", + "jqpr", + "zweko", + "zowapgq", + "barn", + "tgoqnim", + "aeczbu", + "xrypn", + "twifq", + "vksgdi", + "lfepgtn", + "atpgxs", + "qpyk", + "iryoc", + "gkozdui", + "onlb", + "aipu", + "kxfciq", + "emrxqd", + "osjhcd", + "lwpm", + "sjaqp", + "howlt", + "btip", + "bnvezj", + "enfugkr", + "utgx", + "ogley", + "gixvacl", + "ylrfjtn", + "eupld", + "ibldm", + "jvmbq", + "fjybl", + "mcuaqj", + "wdup", + "bfxa", + "ypsr", + "kjcmio", + "oika", + "climrks", + "ezuhmj", + "odesrki", + "clvbdkf", + "gauzvoe", + "gdyhc", + "zkmlfe", + "oxrf", + "vdykh", + "qxbrsz", + "ohwqcx", + "iwrzvs", + "wgonlv", + "ctfbpl", + "twslh", + "eohyfms", + "klgxqjb", + "qdmf", + "zunlwd", + "tolfwq", + "jwamyi", + "gopyqid", + "otpz", + "pmsr", + "jvzyrp", + "qgckrm", + "vlbqsje", + "sxizc", + "jdox", + "fzhi", + "htpv", + "ebvai", + "dgerj", + "dxpejn", + "outpd", + "pknhij", + "pxuifqd", + "xrvc", + "lwifcm", + "mohrn", + "ebpfva", + "vdst", + "rxylhqw", + "ovyjbhs", + "qnztswc", + "zuenpl", + "lpre", + "uyxphfi", + "mdiphqa", + "yvnoi", + "nbxkof", + "ajkxqrn", + "erygpb", + "dyone", + "fzgyes", + "kdnwfbt", + "zlen", + "nhdcwx", + "hlwz", + "wqpioh", + "jnbguv", + "ocipa", + "rtfub", + "jrma", + "jqlg", + "rcjmgap", + "wdxu", + "wlsjnpi", + "ofcswvl", + "bkef", + "gmrwbz", + "eblfws", + "raupdfb", + "vcme", + "nudkhw", + "cngto", + "ocevp", + "ybzlqvg", + "edpaqby", + "adzic", + "bastyef", + "crim", + "efxrph", + "azrsbdl", + "isaku", + "odgnav", + "hjdbqo", + "ibqgw", + "kuzwnls", + "onszq", + "kepzytm", + "xifah", + "utba", + "qhiut", + "guqsad", + "dmsukwl", + "inru", + "hvxisa", + "pwhm", + "jempqf", + "dbsmvxa", + "ztqabie", + "fogx", + "pvmqzeu", + "exzo", + "ktbr", + "ohper", + "objwtfx", + "nbio", + "zjarxp", + "uleamw", + "vkmtlfw", + "dmvn", + "rmgcy", + "mbrsl", + "brcsu", + "jxdki", + "fsgi", + "ykfcw", + "okpg", + "umjoti", + "lgrd", + "ytdvqi", + "liqkz", + "olzjyau", + "mpjk", + "bwveuao", + "hvgqbc", + "xklvf", + "gbnsq", + "uwekrp", + "ospfv", + "gens", + "nzskvqr", + "jzhmqf", + "ugnd", + "aihfro", + "ikuvf", + "zrubc", + "jcqhler", + "gydh", + "akhpx", + "kurex", + "ecbghak", + "pdbzjys", + "ntldx", + "ohyvbk", + "fslbu", + "wpulkon", + "efxkjn", + "psckn", + "klgi", + "hxzdpg", + "btsdljy", + "knuao", + "jwelr", + "wocgmj", + "tkyixr", + "dmtkgn", + "uwpeso", + "zxsv", + "dvqkjg", + "kftwohp", + "bmagvjf", + "zvdgnlq", + "nfjq", + "czwhu", + "gwvpc", + "jrbxus", + "aomrve", + "btaye", + "dkjiy", + "ipwgr", + "astp", + "xhimst", + "hesic", + "fayxmsp", + "kusicf", + "tsjlxho", + "ipyqtf", + "snwy", + "fgnyt", + "oexcz", + "lbmwh", + "qyfri", + "bpkolgu", + "dgoq", + "rpcxb", + "hmlksi", + "osypjbr", + "mzkrtfc", + "uzbjwp", + "mfeju", + "nqaydl", + "breo", + "bauc", + "xqcldj", + "udsoc", + "heqxlu", + "qunlsw", + "jhbe", + "ckmbip", + "paub", + "mkqht", + "hmjdbut", + "yhvzwbr", + "voxpcq", + "kjae", + "jmsy", + "jsgy", + "fkmtpzo", + "digt", + "yhoglau", + "zwxmpsg", + "hnmur", + "pknt", + "pylih", + "qkhsu", + "afklp", + "cudl", + "oyfz", + "iscygz", + "qpjfgsc", + "khcuavt", + "qhrcso", + "zaukmq", + "jyrnxve", + "jfpbgom", + "dsqgzkr", + "qfoutxr", + "ujmsye", + "gbycfk", + "ybqphuf", + "szpkx", + "tqjup", + "ujzx", + "azmyuol", + "ketm", + "hflzbs", + "dmer", + "jpuo", + "flhnpvq", + "hjpa", + "akbyfv", + "emaon", + "sban", + "wtenih", + "vlihc", + "dayv", + "afvderm", + "mcdb", + "bjmzv", + "ufogctq", + "faldth", + "vfpbit", + "yljxiz", + "pohrzmi", + "hrpxz", + "twudc", + "aibr", + "wpjgar", + "iqjvbrs", + "welhgvs", + "lxcdneb", + "ansoke", + "idyfe", + "horglz", + "tgbq", + "tfphz", + "asjy", + "jaegolx", + "zdcosxf", + "tbrgm", + "ubgdxk", + "bskwv", + "edty", + "cilhyf", + "kvewco", + "fswnoc", + "chxdga", + "pvuk", + "bqumoc", + "rjls", + "rvhyp", + "smke", + "clmx", + "wehzrd", + "egfdqr", + "vned", + "vwghozk", + "mnwlqor", + "uogq", + "imjlz", + "npmiora", + "snjrtb", + "gzkqyl", + "awhkmbz", + "zlwcnim", + "nqeod", + "wdmunj", + "zrkxaqp", + "zvkd", + "qiocjnb", + "ugxfls", + "rhazq", + "patl", + "eadgz", + "xegkh", + "frwa", + "tvjwcek", + "frxg", + "vtsdu", + "gjlinzk", + "zlfgcym", + "qayge", + "uqsn", + "vqhblie", + "unailhe", + "kgysfx", + "faqpzhw", + "ntahqj", + "buexkdn", + "kodbz", + "kxoch", + "cegv", + "thacf", + "itbjwkr", + "ntshx", + "nwlfbz", + "pxkmnl", + "fxbiqy", + "byrfxs", + "ikjsqd", + "pljqku", + "ovbdth", + "zqgaxl", + "mvwtgaj", + "bknu", + "hwtquyl", + "cibn", + "gekvbm", + "avrf", + "kgohp", + "cpazx", + "kruwqh", + "lgqdy", + "jiscdqw", + "nkjgcd", + "etgq", + "kdqlsiv", + "vkzay", + "reywlon", + "qgalhv", + "ehaow", + "ztgjvn", + "bexmznh", + "qtclkd", + "ntdy", + "tvasm", + "xvltpj", + "mycxaik", + "aozx", + "gsei", + "fgwiu", + "fgasvr", + "mtcjnu", + "drxoptn", + "kxfms", + "cift", + "lqfwmxa", + "qgsxou", + "wxsq", + "cfdwnu", + "jefwyr", + "tiraz", + "ltxzw", + "olbvmph", + "fhkp", + "wtkldjg", + "yugnx", + "ziyb", + "jxecq", + "fynbzlv", + "agvzt", + "lrvwhzt", + "nwvzf", + "enfwru", + "sqpf", + "wfpduz", + "dovjus", + "ozthf", + "gcsvh", + "pyszua", + "nfed", + "ysfgkc", + "xtoshv", + "yrcmskn", + "imfeyj", + "ojpsn", + "wyfzh", + "aqtiyhn", + "abhl", + "colfdep", + "cojxz", + "jcqx", + "pzrwl", + "gjckfd", + "ecjkus", + "vjwefo", + "synjv", + "vkye", + "ofyeumw", + "ovqu", + "fxagy", + "nbeyca", + "jfbzyw", + "gphqavd", + "qmbxtjp", + "nverhk", + "iqxlgk", + "bpucgxe", + "hcrawkq", + "djlbkg", + "yrekiwo", + "giwbmn", + "vtir", + "qfupem", + "igfn", + "fbcogym", + "wqliydc", + "vati", + "ueoxhc", + "smljhf", + "lkfnpib", + "thvebn", + "vcmigth", + "wzpg", + "vcatl", + "exrd", + "nufmo", + "wqsjovt", + "ivgojq", + "zstw", + "jnvixl", + "fvuc", + "wdlcv", + "dtqy", + "nzrlv", + "revbgfy", + "phzsnyf", + "wmtndjv", + "pjsocmw", + "ktupnme", + "hufyma", + "coapdv", + "cwhsmbg", + "phlwcu", + "vdcmpg", + "rtmx", + "brekn", + "jhvptg", + "dlrp", + "kgsuvla", + "bpxscew", + "ckxv", + "rscb", + "pjqm", + "ndskle", + "vtoe", + "krht", + "ehrmwk", + "ivehkf", + "gxlsc", + "oxfl", + "khyw", + "egolm", + "mkgt", + "bsehc", + "xhec", + "xzyc", + "dnireaq", + "hdqnpmi", + "culp", + "vyhngqp", + "vljzrx", + "ndgyek", + "fdwasvc", + "vfmxt", + "mkqeit", + "cdjkqza", + "dubeim", + "xbjqrm", + "epydwct", + "qhkwbl", + "lzrcj", + "jryfcim", + "gbfe", + "bfaige", + "ugtqwhy", + "rjyk", + "gwauos", + "goif", + "tlnpf", + "xcoganu", + "pjbwox", + "naugxvl", + "dpukmba", + "ihmlbow", + "ezfb", + "gyspfv", + "aotcwi", + "fatiu", + "itgcne", + "tgmf", + "wpcqdf", + "nqcji", + "dcfe", + "ewsnj", + "bnhzv", + "bhzacei", + "leprv", + "apvuhsw", + "mdlvtn", + "bsjh", + "kydaj", + "azkfs", + "jbogpuv", + "vpwnxla", + "idjxya", + "svmehtw", + "wfay", + "fxkqn", + "igbzcmq", + "vgjrd", + "jcxipy", + "nimpcqj", + "hnizyx", + "sumnc", + "ujyz", + "wchy", + "afioh", + "hactni", + "bdufnxj", + "ohipgd", + "leawbj", + "qxcrsa", + "pyculg", + "kzaxwo", + "kwjdco", + "wzlmp", + "wevaqud", + "eklcr", + "nejkf", + "aswvb", + "rzjk", + "duelti", + "pfnjqh", + "pdnkwh", + "mwbj", + "rohytji", + "nldtcm", + "bdcj", + "bnjkv", + "xfcogv", + "ryqkb", + "edrvuqk", + "mbpk", + "vhzmb", + "sieznp", + "ugaxm", + "mlybh", + "xfwhka", + "nswm", + "cvht", + "mkguvja", + "cnzuxim", + "duez", + "akxlvu", + "vicwo", + "nfapx", + "atdxfyh", + "moqk", + "kyzpg", + "ubop", + "bcgwyuj", + "xfjv", + "tjbpexw", + "quonm", + "zljwr", + "okwjg", + "kghibsn", + "klzigq", + "feqgacd", + "xjlidku", + "xahmisn", + "fgnji", + "ekgmbn", + "mqkpvyi", + "qivs", + "canxwt", + "xjnlm", + "hpvkwy", + "ybmz", + "pzgl", + "mxovbp", + "owfsani", + "dijhlu", + "vjps", + "mpskrl", + "bdoh", + "kwzgnxo", + "fqgh", + "jwlf", + "kmqrgx", + "yobzjv", + "aljdfo", + "lejp", + "myqbx", + "xdwrine", + "uzev", + "slgohfc", + "nhpf", + "dizy", + "aiwu", + "hiczfq", + "xurkpji", + "eoxdilq", + "pqbou", + "pdhn", + "dmjlnr", + "fkcjgy", + "eocr", + "jdghrp", + "xlwojg", + "qdbo", + "lnzhac", + "xonepl", + "depg", + "sghl", + "bxzdtnr", + "ywfbx", + "pkdf", + "gbet", + "sxoeirb", + "zwkf", + "ptdc", + "ahfp", + "yeiovw", + "idbl", + "ctdie", + "ofhslpv", + "ynjuex", + "umwk", + "cmfn", + "fcoymud", + "liycav", + "ksctjex", + "ybnm", + "xypif", + "dhjxzcv", + "ufzab", + "kmsct", + "jxqhkye", + "yaonhtc", + "qvora", + "jptwa", + "reugc", + "sygm", + "nacup", + "jiuec", + "xjptnw", + "zktcqh", + "sfntxe", + "ojvegl", + "sujvol", + "azsdkt", + "jenk", + "niac", + "ckdm", + "wtcdfqx", + "rlnmufv", + "drnsf", + "bdxney", + "gcehzw", + "rmnf", + "vzfpuy", + "blmcuqk", + "vjpr", + "qwrc", + "jwkt", + "kdfuvw", + "lconb", + "cfboi", + "gervhzu", + "qbxjrng", + "pfbjh", + "igcey", + "nvfuqt", + "fnsd", + "epwx", + "edxfls", + "kghnc", + "mawe", + "bqgru", + "anev", + "iycu", + "gosfwc", + "tznpru", + "kzqyj", + "awcut", + "lvze", + "diav", + "nqxivs", + "irtzeyv", + "bsaghr", + "crudt", + "sdtray", + "twbrj", + "khbznda", + "mitdcj", + "lbhnt", + "giecr", + "grjp", + "hyfdbnq", + "lxngyw", + "thusnfe", + "vbxcn", + "hsztd", + "sxyu", + "qnue", + "xmrw", + "tpmuwy", + "qrhe", + "qpldj", + "nspc", + "reblxd", + "vyes", + "actvo", + "lqjvsnc", + "wjnm", + "ubwhoq", + "kvfhxud", + "rcsx", + "muhn", + "lozcy", + "vagq", + "wgavlj", + "jouwpv", + "ufatr", + "fkpjwh", + "rvqj", + "oagmzxj", + "ykcj", + "rbkcpn", + "kgfzhj", + "hacb", + "nfmsjdq", + "mvcwd", + "pzow", + "qoyzwd", + "vtpqc", + "rxwkyn", + "ugjs", + "iltn", + "rtsqeco", + "jslvy", + "osqi", + "xncrt", + "wothvin", + "srim", + "fbqzrmt", + "xlrpb", + "ezsrl", + "kedf", + "htziaef", + "kqbcm", + "yejg", + "kzwnv", + "hiys", + "dkfcp", + "bqgpn", + "oahj", + "cibmgej", + "kofzlrp", + "mzhtcd", + "xtcpl", + "ocyqzg", + "rhfaol", + "nudo", + "chyw", + "xghypt", + "tyavrjm", + "hnis", + "hwzkmvl", + "ecfj", + "zhub", + "jayhul", + "chwq", + "gejvqdx", + "twqsxo", + "erhfmdp", + "gjbzoq", + "urpay", + "fkgi", + "rqnmdci", + "upkfv", + "hkvmub", + "jvge", + "qfbseh", + "ywegl", + "yslvthb", + "qzvtd", + "jvxdef", + "jhig", + "sxza", + "tpzvhe", + "pxqbzef", + "vmjl", + "nswtuy", + "szyxe", + "saqwoi", + "vxtfo", + "npqv", + "wqtk", + "zlsh", + "rktng", + "ijgz", + "lzfwrnm", + "wurgmd", + "epbqsky", + "gpewh", + "kifbmr", + "alxzkes", + "lshcpm", + "eskcruf", + "cvgwa", + "exzfh", + "yhqxs", + "klvzgbp", + "otjiec", + "ipuvdwg", + "kenybx", + "wvldkbf", + "hlfy", + "hymcao", + "gbpzym", + "pnjfv", + "fstceg", + "nqslf", + "yudlgb", + "cxyr", + "xzft", + "tzaw", + "dotsug", + "qesd", + "jrhesm", + "jxinyo", + "qnujo", + "jaqdeuz", + "brnfs", + "cqfkn", + "jvficzr", + "mrlg", + "fswbp", + "tfwl", + "gzkt", + "jxlizy", + "ndft", + "lzeqf", + "unpracm", + "pemjky", + "glcp", + "vnhqtp", + "fbod", + "jkbw", + "swlekq", + "vzshjpx", + "czyqfwj", + "paywc", + "ctsrmg", + "dovqcrg", + "fwetqhl", + "xqhtdu", + "ykzvum", + "pyfhqsw", + "uhmdrkt", + "dblvqz", + "yangl", + "qybdk", + "mphqo", + "zvilh", + "fzluwm", + "krqvghx", + "sqydw", + "mexvp", + "trgz", + "uvlbjy", + "jgbnxo", + "mrdhzo", + "kjmgih", + "oqfmcvz", + "pdgruq", + "flzcyqr", + "quav", + "vtgcxyb", + "jicl", + "xflngyt", + "ohrzl", + "redjtb", + "enzporq", + "iact", + "yrtpis", + "ekpu", + "jlkd", + "shral", + "xhubjkm", + "fpwtu", + "ejwrhxv", + "yhrsaq", + "frbzlw", + "rhygi", + "alwpje", + "qviu", + "hdvz", + "zvbyo", + "txmfng", + "bptvhms", + "euxk", + "wbtrcz", + "tlgsk", + "wlts", + "vpydwcx", + "mnebkv", + "lqndu", + "waeshly", + "rhog", + "mjbw", + "kiqfo", + "hzvya", + "hinb", + "xpjc", + "nzyw", + "zprn", + "wgnefh", + "ebxfqiy", + "xeyb", + "vwjf", + "dfxw", + "xmyute", + "isrjmd", + "redzp", + "vfnqiyk", + "eoslzq", + "jrkez", + "fwjz", + "tkeofc", + "oeqvin", + "ojgr", + "dexz", + "zunqt", + "aexif", + "lijtuf", + "avls", + "lsrz", + "zrmh", + "iklp", + "gujfdl", + "oeuq", + "cjzei", + "tormva", + "mfkrnvg", + "rxsib", + "fdcmph", + "ixkjce", + "fxnjwh", + "slrzeap", + "eriqh", + "apmz", + "kwotyj", + "mhvcydg", + "rioyuae", + "fesih", + "yunav", + "mvagtru", + "dnuir", + "ewftp", + "zsbwvt", + "avdl", + "bqmatks", + "pkli", + "gqme", + "wuaq", + "rjtong", + "quakm", + "rtkwg", + "gfcdu", + "yogxevb", + "alojmhr", + "chvq", + "zgfcwet", + "khoc", + "hrxbn", + "nidr", + "rwxfm", + "ibypon", + "shlvaz", + "ykqw", + "ekcxaug", + "exaq", + "jbne", + "cbjts", + "pbrngit", + "gsdwn", + "ksqpho", + "mjxh", + "pvarx", + "lqbojnd", + "otkshuc", + "jicxfr", + "ldzc", + "aldsfcp", + "vyikc", + "kxpcru", + "zkvgr", + "rcanvsd", + "knzdo", + "ecsp", + "ldmribg", + "zskae", + "vgcfb", + "okhtp", + "knyap", + "phrg", + "gojuyez", + "knmy", + "zvqstj", + "bxerdl", + "fqdb", + "zxmyhpf", + "ujfp", + "etlpzhx", + "lxipar", + "kgxca", + "sljv", + "isybr", + "rmcdeq", + "ptbfal", + "wueaxm", + "dxneyvk", + "fgbwxom", + "aoknhmb", + "punlvo", + "tukzloj", + "adzlc", + "ysnl", + "jtzpk", + "zpquf", + "vlck", + "wqep", + "uzyix", + "nrux", + "bxtkh", + "wutylz", + "eytd", + "gzthfjw", + "xkrm", + "garhido", + "rpyfq", + "hsywuz", + "dxvei", + "cbjdgf", + "dzjqg", + "cgimljx", + "eshfrp", + "ihakcg", + "vpnza", + "vtzjrw", + "tqdao", + "bstgfpd", + "euwc", + "qpzshl", + "retlj", + "rvumcj", + "urew", + "hiat", + "ulacpz", + "gyaiezn", + "nucsiyf", + "mvpjqbg", + "bjis", + "xrnwua", + "fvdkcu", + "rkiu", + "zyfq", + "hbji", + "ciobeuv", + "ghuzxmk", + "tncb", + "bpoteun", + "jitl", + "wyimrb", + "qnrwsuk", + "pydwe", + "xynt", + "smru", + "kfbs", + "fpsij", + "ysemo", + "zpgvsxf", + "lswto", + "vobxsd", + "ynbkvzm", + "igfbc", + "cuelamb", + "ewylp", + "wrzq", + "iuybmd", + "wbhlr", + "ayple", + "ehjfiz", + "slfv", + "cpmtkg", + "oazeutn", + "uhnps", + "hsnvm", + "klvcmg", + "ncflzu", + "uasj", + "ojlpbtn", + "opab", + "qraujm", + "tzko", + "nwbvkx", + "hxskpzm", + "jekqls", + "wrtu", + "snhxzrp", + "qwaey", + "hzsv", + "qbnahyt", + "evqks", + "oidpq", + "adbcwfo", + "pyrw", + "atnfekl", + "mdkp", + "vxtrocg", + "ijhtov", + "xtighu", + "uqifa", + "cmvzu", + "ohpt", + "jyhatx", + "zucwm", + "btosnd", + "lptub", + "qisxpj", + "dfhqp", + "tlev", + "djoykg", + "uwjfrex", + "xywbn", + "bvar", + "poysa", + "kwjymo", + "boxyu", + "vgwnlc", + "efcydr", + "zxrcbel", + "gdvfban", + "amxjen", + "nhrvesu", + "udvfms", + "bcjuqh", + "mswb", + "rsub", + "vgzpy", + "nbiytve", + "zaqbn", + "etsr", + "cobfani", + "ldgf", + "wbzldv", + "zbegnt", + "whuc", + "exigr", + "pygsd", + "amhu", + "lviuqpd", + "yrftz", + "xdzuhg", + "mpgu", + "ctqaru", + "rkejgau", + "rkgwdof", + "tqsf", + "mfln", + "asegyx", + "fkycnu", + "bengzp", + "qdewzh", + "cwoauep", + "zlwui", + "dinrtx", + "geiyn", + "kjgcfpb", + "aovkrd", + "rmhg", + "hxcz", + "qgnwpby", + "lgap", + "newos", + "fdoc", + "cszjflr", + "ovqn", + "btxi", + "rqhya", + "tiwb", + "nytohcb", + "vage", + "litfos", + "dinesxl", + "vxgm", + "axzcrf", + "lrtckhm", + "spkm", + "jlrbes", + "jfds", + "hpniqf", + "cqhump", + "artcd", + "smyvh", + "tcgjf", + "rvpid", + "fpyrst", + "wcqjkg", + "qutyvir", + "rijvsok", + "ekya", + "nfswqe", + "spqdh", + "lqvm", + "jqgrdo", + "gubpw", + "vgal", + "spqlj", + "nrpd", + "qxnskdg", + "ukhm", + "dnjsw", + "atjb", + "cmxe", + "wghktyn", + "avbjwzq", + "zdbcq", + "mkizwn", + "pxtsjv", + "ptzf", + "tjhx", + "kaoyj", + "dgba", + "bkrvo", + "dpmst", + "cofu", + "hdtq", + "shbfrac", + "xspl", + "qwgiof", + "nkwhm", + "navg", + "yurszdw", + "xsiocqu", + "dvymgaw", + "nftp", + "guxc", + "pdfaj", + "sfdk", + "wgad", + "nmluqd", + "uehn", + "nvkwtfj", + "duevtf", + "bkhgej", + "nrsqlx", + "rqfzwt", + "gklt", + "xyhbg", + "wlmevy", + "dtjevyg", + "najwrgx", + "vrka", + "vkbizq", + "qrfv", + "rzxfcsj", + "ipvmtag", + "cjao", + "hdgumkl", + "ernhiox", + "jkeomyg", + "cxawtp", + "ftlykre", + "acxrvms", + "wydbih", + "fdil", + "apcrws", + "rfwum", + "cbzix", + "gwuexp", + "gvqrm", + "audt", + "bohldfn", + "tlro", + "wfge", + "ufcndvz", + "qnpihwv", + "ujcida", + "kodnpx", + "dqkecrt", + "fasgx", + "cdfv", + "uadl", + "ftgyi", + "fzao", + "mtezpdg", + "akhze", + "xvnsd", + "vrzo", + "xvrjm", + "urobn", + "rqkbvgh", + "slxp", + "yiuvf", + "bmwxeh", + "nzjbso", + "borixsu", + "snaim", + "ingqv", + "fljay", + "aegpun", + "fguao", + "xlhr", + "jtwaz", + "ifup", + "ragsuq", + "vhtergk", + "ilbxdwz", + "xsyg", + "phqfn", + "cmgtlqi", + "layzotw", + "ciytbrv", + "sewn", + "iegxvm", + "lremaux", + "bwzrpv", + "evatq", + "usbp", + "rgupt", + "hgpe", + "ubshpo", + "oxzik", + "lytwkg", + "mupz", + "mabjlr", + "cowdfpv", + "hyqi", + "gqtnul", + "cruq", + "mfbxdnl", + "cbvm", + "dtmg", + "lneztgs", + "netr", + "jidv", + "crwp", + "axqom", + "hskd", + "wpcrj", + "xlany", + "liewzh", + "lyqmztx", + "qlpm", + "loua", + "cgaznd", + "nwsbcil", + "azrics", + "beihyp", + "vchbqay", + "vxmlhzj", + "zocrh", + "ybic", + "adpcbu", + "sbudl", + "xrqmc", + "zywlfeh", + "miktpe", + "qbltp", + "dmowg", + "sizjd", + "mfrnip", + "oukp", + "fcbzye", + "psczl", + "wxgfu", + "knyepcd", + "vtcje", + "twhzdcr", + "unkqcf", + "dzrcsbh", + "upiyv", + "sovtg", + "jnrtq", + "rmzkp", + "vljosp", + "uchvnd", + "rdsz", + "jbnq", + "nvkj", + "jtpyf", + "zxgvko", + "axsrdwz", + "mxhvlpr", + "dgmfwqk", + "pler", + "egpxsy", + "nsxja", + "pkrdajt", + "qwpsryg", + "bhpxm", + "ukpn", + "jbznsp", + "pewo", + "wutcxz", + "zetp", + "znpgs", + "ivnmr", + "oael", + "wezjqm", + "cuhzj", + "xkcf", + "ohxfyw", + "kwvpxa", + "myha", + "trmcf", + "eanoqi", + "ctzxdul", + "rojbqu", + "ajbhq", + "vjbkwq", + "xygnwlo", + "mnrydak", + "glphfau", + "pgjcm", + "tzgyc", + "lsfbhad", + "ozbl", + "fdgwtop", + "gcjry", + "hfat", + "yctluh", + "hjfc", + "rysk", + "vauq", + "tlbexo", + "uezikx", + "itomp", + "ybrgn", + "sdplk", + "lbnj", + "hzodx", + "zjsdqra", + "srojl", + "vbjxt", + "xfqhs", + "kqwvod", + "qwkhsa", + "fbmpo", + "nqpxe", + "yxlf", + "rbjs", + "aimows", + "urgtb", + "ilzv", + "prmfi", + "ivnykcq", + "sadht", + "sfzjhwt", + "cxzqosu", + "vguhack", + "bisqrez", + "xbdr", + "vkfz", + "vgkfut", + "ladqey", + "uarl", + "zdoa", + "hgtcdk", + "ihtbx", + "hefw", + "yplcnf", + "nlfxu", + "arjpt", + "lnhqaf", + "cnfw", + "xhjgw", + "yxcbn", + "wdsaxb", + "reuim", + "ufvbxts", + "kgoqrx", + "zyjft", + "hauozlm", + "mdvfg", + "wfteus", + "tyvz", + "qatlxiu", + "kytobm", + "gmnci", + "ryebi", + "njhcrk", + "liuthns", + "nqedusm", + "zyfucn", + "tdijale", + "acpebq", + "ikaoz", + "jdwio", + "fhzrasv", + "kbomids", + "spcdm", + "fducb", + "nbtlz", + "osqj", + "gqfxc", + "zyjuik", + "pudyq", + "mqzxf", + "efcjyu", + "fhwvczx", + "ukleg", + "wmcd", + "olye", + "fcmx", + "vunwjx", + "ajkty", + "dkzbey", + "tnjcmw", + "osfq", + "dkyazvi", + "vyun", + "buynph", + "nzgi", + "hjtlsqw", + "ymdxweg", + "ebapw", + "hiraz", + "oamv", + "nwcfpl", + "umog", + "swczdmk", + "wdig", + "iszjp", + "trkxcq", + "digw", + "udah", + "uhzsbfi", + "wfpqg", + "uibo", + "wnzq", + "dstwuag", + "tcngbv", + "idwbh", + "bszi", + "tvbdxie", + "zlymca", + "txhm", + "zbinylr", + "nmdys", + "lxtbh", + "ljodn", + "qbon", + "iqguew", + "vaowm", + "pvadki", + "fombc", + "mvwkord", + "fxbep", + "wlqa", + "aefgpc", + "dvehbnl", + "ymvfnh", + "ldions", + "mwql", + "keyjzax", + "dchaikn", + "yfzwcg", + "grqv", + "wgyx", + "ismyf", + "pgzlb", + "nmcxh", + "cyqmoge", + "zhes", + "lijqr", + "csypf", + "fkbgt", + "kgoh", + "iktszl", + "xicj", + "uvimbrh", + "hirum", + "ywdlzk", + "nvwkyab", + "pruinq", + "jgfexml", + "hutvfs", + "hqor", + "amtc", + "tnsu", + "zulo", + "ioxchqn", + "vcwb", + "udeyn", + "tqmsl", + "hlotd", + "rzjfitw", + "ikqgo", + "fgokt", + "zfruqc", + "agsh", + "gstfqki", + "apmzinl", + "lwba", + "blqp", + "gazr", + "iclqbp", + "jxuw", + "dyam", + "jcum", + "pnzjyue", + "oztxm", + "ecmval", + "rtwabuk", + "ayqmg", + "eodph", + "lrvn", + "dvnarhi", + "zesv", + "lxecnt", + "gcalip", + "ldmn", + "ifctzw", + "xhjtzbk", + "heyvjns", + "wjfg", + "vgly", + "uilrhdv", + "wutlr", + "xnjr", + "zwvsnm", + "dhpj", + "tkoz", + "jqis", + "yecz", + "mjid", + "owumrk", + "eqhfcuz", + "puncqlw", + "ywhoj", + "yuwhia", + "dlasvye", + "lauk", + "nsdz", + "wsdepol", + "anov", + "vobkj", + "jfhkgds", + "augre", + "vwmfes", + "cuxtgz", + "uahxsb", + "jrtkowq", + "hbnx", + "eudpf", + "psqw", + "bvtyjh", + "ebmxk", + "azqseg", + "naymdv", + "wfml", + "mwisajk", + "xpays", + "henyc", + "mnpdua", + "lxrshyz", + "oebm", + "vjcaoby", + "gryzhf", + "obmp", + "teun", + "cowrfqy", + "wfey", + "wiof", + "gjmkz", + "yznvjak", + "cntxm", + "owklh", + "wyrh", + "ampvid", + "fneic", + "nlyk", + "kiyt", + "vtzm", + "fkmoeb", + "nrhzbac", + "zgsoih", + "tdkmvx", + "puzn", + "rlszyo", + "tfdnu", + "xdkrpvu", + "esnkx", + "gcndm", + "gfrm", + "qcbpsz", + "neyzqoh", + "tmpwjz", + "cytd", + "raepi", + "thajm", + "lrmcsp", + "owkrje", + "dkxbuo", + "gpobfs", + "fcgzkw", + "urnto", + "pmcl", + "ltwyxgf", + "zglbx", + "rjak", + "ohjql", + "bvnsk", + "zhlep", + "wursph", + "dbxqhy", + "ypvs", + "vcqie", + "knuzifm", + "lmfnr", + "pogyc", + "csxz", + "nvbwxis", + "cblh", + "bwdnmj", + "dvchmxn", + "bvwmkhz", + "sneyzqv", + "lmvd", + "gkbu", + "dnauxg", + "nlqsb", + "tdka", + "irqmos", + "gjlzna", + "xbmrpa", + "qynam", + "cxnfhtk", + "hazq", + "oasn", + "fhpkamn", + "uwxherf", + "sdovqtg", + "qesp", + "nfuibhy", + "vwic", + "fsonmpt", + "zkexsn", + "pzylcbn", + "nmdl", + "wfsn", + "cdwmxie", + "hocdk", + "pruklon", + "uacs", + "guibntd", + "ghet", + "wbracjk", + "cqbmdkn", + "ujtyk", + "yzwm", + "ksbeq", + "hdtok", + "qkjcn", + "pwtu", + "zkfpiev", + "osje", + "ptaqe", + "fwspr", + "tvlfhki", + "sghdvyt", + "notuak", + "izdjalm", + "vdhjgx", + "otqrc", + "meylsj", + "brni", + "dahifnj", + "geofzpm", + "xyeurt", + "xfqltvi", + "tycromb", + "pjyeanl", + "pdnb", + "gljba", + "ewgfs", + "bnced", + "klsu", + "keuzirh", + "kzix", + "lhkg", + "hilej", + "hgwviz", + "apluf", + "ljygfw", + "yzmtf", + "ouqahd", + "aspufn", + "scmb", + "uvozqx", + "kwxo", + "rkzhyem", + "xrwghn", + "ftehg", + "kqvamzc", + "jhor", + "uthcs", + "uzebhw", + "mbsoa", + "duzpho", + "cxqlrkb", + "pdtf", + "xlkasqv", + "eapbil", + "lufvjem", + "ahwqx", + "pghqjur", + "vghtcr", + "gmenxr", + "nfmkcg", + "rikpqc", + "ywcg", + "reydoi", + "wczyrb", + "mgdbhxz", + "gdwz", + "vkry", + "ozvlq", + "tqpkzme", + "fburyqx", + "hdnbz", + "fswxd", + "iqbe", + "fsltjxi", + "swjq", + "cdwb", + "kocuxr", + "kedbq", + "zbja", + "oxhwfia", + "nduvqck", + "ugeibqn", + "vhtxwze", + "lztpc", + "xhjbe", + "tcxir", + "ruitkw", + "hsvkl", + "wuyjte", + "ouhyzn", + "calf", + "rwpeklm", + "einwh", + "pzoda", + "yjcuz", + "vqetjk", + "ajpuhl", + "vptdizg", + "fijgmby", + "twaebvy", + "azmo", + "nvuazfl", + "apxvuh", + "owgpx", + "gxhlzj", + "tijvbpf", + "wvyrnju", + "pchawtv", + "eckzpq", + "uolxh", + "ltfwym", + "wmln", + "dzeonj", + "xwakn", + "uvzpd", + "qoprk", + "nesxigw", + "hcewlxm", + "tqdxmev", + "muvey", + "owjtrxb", + "dwqzh", + "rfbj", + "jqokrm", + "grwlkd", + "dufhopc", + "ztjqov", + "sypbew", + "hdynqi", + "obqaun", + "ewncjrq", + "egapl", + "kvol", + "taed", + "mpsr", + "wqms", + "vdaek", + "ktumqcf", + "azthskn", + "igeoqkr", + "bxzmfhn", + "egdnjy", + "ufpivm", + "uovezg", + "jfichv", + "ixgwe", + "tjpfh", + "gwfmor", + "yxtq", + "yewszqd", + "bzrxw", + "zrbag", + "gqvkr", + "ngcxyhb", + "obwv", + "vkhaw", + "nhgjfpe", + "lsfhu", + "ijbxqel", + "mwypklq", + "twkxg", + "hlgnodv", + "snxqw", + "uzmqci", + "wmdzual", + "mzogk", + "jqgtcup", + "ldfeko", + "mqed", + "jnfzl", + "tzfdhbu", + "aymbk", + "dofawg", + "brjhnd", + "ramzye", + "loeysa", + "vfgx", + "rnmvyjs", + "odjkvlp", + "uyiprah", + "fpwla", + "iyax", + "brycdt", + "cvzyljq", + "urdsg", + "hmjdxce", + "ojvfy", + "ebvjaup", + "uyptwvh", + "uoteq", + "adzihbx", + "bdrgax", + "pfnvdoe", + "ydmbcf", + "fwxcsoz", + "heczoau", + "wtgolej", + "segtykf", + "jclvro", + "qxufs", + "jgzrke", + "iwhyox", + "shedp", + "oxnusj", + "ojszy", + "obyspz", + "bolc", + "gxukj", + "rydim", + "nprqd", + "ears", + "xvfwju", + "oqnkm", + "ukie", + "zwedm", + "wnuicab", + "mdvqcr", + "zapj", + "xezvnyl", + "pumn", + "inbs", + "fmzbnc", + "leoyfvz", + "yukdego", + "einu", + "eqsyo", + "iobsgj", + "jlzhes", + "uyij", + "ctkoszj", + "ikpj", + "coml", + "lcybnu", + "mailox", + "tmcbi", + "eymp", + "zuens", + "eqob", + "ojkeb", + "orpd", + "snezcb", + "omzuvq", + "wrzdv", + "uxkz", + "yohem", + "ugmyl", + "sahfd", + "uqlobgy", + "eboycp", + "xmjc", + "brcajs", + "tkoh", + "xkqgjvt", + "bpecv", + "gdwix", + "hfesokt", + "odtznl", + "rtjfc", + "eqomzk", + "zyrh", + "hxuiozc", + "shfc", + "izbesx", + "ghcetw", + "rwysib", + "adgstb", + "bfqxpru", + "qrdjp", + "eavr", + "dplt", + "iorts", + "iwah", + "blhrv", + "gouhm", + "pqigcyn", + "oltjnd", + "afvns", + "nytixh", + "jenq", + "oxdukje", + "ghuys", + "wcni", + "uxcnty", + "husqa", + "uwfxp", + "vdqx", + "uxnzqci", + "mxfjs", + "zdpatbu", + "bhglq", + "yrsfivk", + "bowi", + "suxi", + "kzshtq", + "tikdy", + "wsvt", + "nvqwx", + "ufwrg", + "pmhw", + "qkgasfc", + "jqresg", + "twjvs", + "pdfqyvx", + "opysnt", + "yocehk", + "kqxj", + "pjkuwdz", + "newojy", + "wjiks", + "uhcpnr", + "onajy", + "cklor", + "qltbarm", + "pufvkye", + "worvfmc", + "klvpbr", + "dvwzshn", + "deylxu", + "alygzok", + "fzwsxr", + "jgnoyb", + "cxqolh", + "tibqgh", + "punv", + "adjxemf", + "uwirsp", + "pgqyn", + "aigwv", + "brgkctq", + "nsyed", + "egdiu", + "rapwvt", + "pojftru", + "lgsxu", + "xuib", + "tdbsxku", + "spzlubh", + "jhry", + "zcmlgdp", + "zheq", + "czqyxt", + "nwvphs", + "wozqvp", + "xgya", + "ajkr", + "euhxjf", + "ktqaw", + "gznyv", + "aebnu", + "iqzp", + "uahsm", + "nbrmk", + "sfhla", + "kyiuvl", + "vbcw", + "qjyigm", + "yeam", + "ojezy", + "pxcomlj", + "bijmn", + "xuzmwbl", + "xaeobuq", + "flwthi", + "eliojp", + "xryi", + "evtwpdz", + "ohgsq", + "edli", + "kjuigp", + "levzdt", + "swiryck", + "yhjw", + "jnaydgo", + "srumw", + "hztxrd", + "edtahov", + "ohpr", + "viymfhn", + "delih", + "nqrgbj", + "jpeog", + "cghma", + "itqpy", + "vjwrub", + "oflka", + "kost", + "jmcun", + "wxfiv", + "tvlahby", + "nrqh", + "tranp", + "uieg", + "zjerywh", + "dyuiqw", + "mnpscu", + "ahgt", + "svnt", + "tymekr", + "cyvndl", + "wdcn", + "ozydcmr", + "qmldth", + "gizc", + "fhditjr", + "cnfi", + "zoxnpkf", + "onbfzak", + "lvegd", + "zletjg", + "zjkmvxb", + "qclhgku", + "opglht", + "fqnedsw", + "uchlr", + "tnzyv", + "wefqndo", + "wyvt", + "yfihgvd", + "cmyr", + "nuwti", + "mjihfp", + "mxwjgb", + "vgcmqf", + "emqbifu", + "remtqx", + "ewkr", + "ndihv", + "enym", + "hwsr", + "jovx", + "nfgj", + "vnsgm", + "megvp", + "eqwgzn", + "jcovtse", + "qdkuc", + "havpud", + "rjks", + "qxyjzov", + "scyau", + "dicp", + "nzfj", + "ulitjm", + "nkxqicf", + "lyhve", + "jgue", + "ransfdt", + "ugvdjy", + "uhwilak", + "mohcnu", + "mpxljuz", + "gkyc", + "kflpn", + "rzvyu", + "gzmnl", + "inbgk", + "owzk", + "jxalsd", + "voregay", + "ibts", + "gpakj", + "vtzp", + "mlqxt", + "pbcvn", + "tajzl", + "gcbospl", + "bhjosqm", + "dyko", + "wqiekgf", + "yirh", + "ndtve", + "eiam", + "vgmjuew", + "sovqgu", + "tfxvysr", + "lrzngie", + "wlavex", + "aofiu", + "rpead", + "atdgp", + "yiswdl", + "borva", + "fvopz", + "yhuqf", + "cekpj", + "lnkyr", + "wtyhkj", + "glos", + "evzubxn", + "vymsrc", + "xcasf", + "nfedp", + "qlkn", + "zromfg", + "wtzmefo", + "wiqn", + "wkghs", + "htdj", + "tbphv", + "wmzlctq", + "yojg", + "hrdt", + "gctop", + "epcjyru", + "bgwamf", + "oadrzhb", + "lekyqnw", + "nlzqs", + "fylvrxe", + "zpkrb", + "btkeusm", + "esgkd", + "nqacfp", + "ysmx", + "qigpmjx", + "tblfwz", + "opsk", + "aqrbnt", + "lbojm", + "lrefd", + "zenhg", + "ecbft", + "xolw", + "ghobdp", + "dhprf", + "seqgj", + "vfsrq", + "wolb", + "leco", + "lnef", + "aoiuple", + "ifqmzro", + "vmya", + "bwzvj", + "rsan", + "hikenv", + "abknr", + "zbalqk", + "wvkapf", + "ezhkvi", + "uxvaz", + "opzmrbq", + "undxeyi", + "idlp", + "rkmexgq", + "cabpwx", + "qhfj", + "mofjrn", + "frjne", + "hdfq", + "bgic", + "wlckvi", + "rbmtiv", + "mxeskq", + "utopri", + "pdlirh", + "wmej", + "cwah", + "jfev", + "srwhu", + "tlam", + "pxvo", + "mrcehxb", + "lhupqk", + "hadrzsy", + "dtsm", + "ohvwpeq", + "civau", + "afyb", + "svce", + "cmwnqxs", + "vdlqomk", + "awzi", + "wlpe", + "fgda", + "tpload", + "lnfpqbd", + "ogbmaw", + "pqxvew", + "uaemq", + "lnkuo", + "jcitv", + "rpzwfy", + "ryotcpq", + "yjvu", + "eyqr", + "qelzo", + "xbfznkm", + "itlh", + "erwuyd", + "audgrvs", + "arpe", + "nuek", + "dciu", + "vjpz", + "aowm", + "isbx", + "ufmy", + "glhbpxa", + "wivc", + "rlvw", + "xtleryi", + "nhdy", + "svpf", + "edkbiz", + "rkbczyw", + "pihx", + "evak", + "zpawfg", + "pxiktjd", + "lpfs", + "gqhsyek", + "qbjtve", + "pmdostr", + "nlrg", + "uail", + "jsiun", + "pnqf", + "uijvb", + "zcrxe", + "khol", + "wmgkh", + "yvrxbtk", + "uazyd", + "gohc", + "vnhdpuj", + "eizu", + "ampohi", + "idoqar", + "oclaekr", + "obeu", + "xwbytc", + "yiofl", + "stvpoin", + "fivtwy", + "iqbk", + "vfunq", + "rfctyu", + "zhcf", + "vuoqia", + "lango", + "zckao", + "jtqhl", + "vsarpf", + "iuyvoz", + "lvcjgrm", + "gmnchpx", + "oqblhm", + "tydlf", + "pvocen", + "cikvwhx", + "wfdejsx", + "qwaejz", + "gbqdy", + "lrvhc", + "atzuv", + "cawplfo", + "doxsre", + "yatobcl", + "idtgka", + "gizsfe", + "vcgx", + "fchg", + "hnyrk", + "qpavf", + "nhkgq", + "wkmfnlx", + "qmfs", + "xagqs", + "hjvg", + "trdo", + "beflqi", + "blmsfa", + "rsgoldv", + "iromj", + "jkbfca", + "aqjbcmt", + "kbsfm", + "ojgmlbq", + "meia", + "jxzwsoe", + "ywzumeq", + "ovqzmay", + "melsofa", + "xmgrpw", + "jvbtrif", + "neawkoq", + "meknzyq", + "fhwx", + "bmsui", + "dumvw", + "ispedz", + "esdztj", + "yezm", + "weyxl", + "plen", + "vbhgcw", + "owld", + "yhuvr", + "pvqmfl", + "wyxdbof", + "bvehqok", + "yigop", + "mvwp", + "qlug", + "tlnbisk", + "xqtzh", + "bswiqja", + "uijrm", + "kfbdrty", + "mqbolfv", + "yqjusxv", + "zjfd", + "dtmpa", + "hbpvwjn", + "xdyp", + "oabg", + "diyhp", + "scuqr", + "bjaf", + "jofeiz", + "seqhjcd", + "dfpshl", + "cszd", + "mhnplt", + "xucipjd", + "idgs", + "hiob", + "sxwr", + "ruwglv", + "mwotcvx", + "iqnegzm", + "fydt", + "frljevd", + "hbtu", + "aykirlo", + "vntb", + "znbxfu", + "uaon", + "uzwkoxb", + "fkovl", + "ckmfwyt", + "klcan", + "fiupo", + "tesj", + "veltx", + "ciuoje", + "nbgxmw", + "rdgmuty", + "lwycj", + "pdkz", + "fbnahv", + "qvdi", + "litmnd", + "fblz", + "yhjb", + "mnaf", + "tmkape", + "mjalef", + "ejcm", + "ufmsorv", + "xuhdtgi", + "gzstr", + "nfrk", + "pjityz", + "jzdgoi", + "sdtm", + "dkoabse", + "ajgkubn", + "ehgaqfu", + "tksul", + "ybjwg", + "uowz", + "learjon", + "uvxaepd", + "iwchf", + "odgxzjv", + "sfphxy", + "srulomn", + "flyzapu", + "ibxljw", + "oaqdbl", + "bphu", + "ncetylu", + "tnosjvw", + "yzxqv", + "duzwi", + "goysemz", + "qxvjiks", + "mwalrn", + "edwxo", + "tmszabu", + "etxzjo", + "isgu", + "imncx", + "mhxno", + "tleuwc", + "ycbut", + "ywzmlk", + "tjzf", + "xusrzmq", + "dpwbjoe", + "czjhle", + "mjvzg", + "fuelm", + "qygln", + "xvhlba", + "nusk", + "bpxwtrn", + "ebasmo", + "jwufihk", + "efrnv", + "oanwr", + "pwxg", + "sqcgyr", + "kbnv", + "pazbdt", + "fdnw", + "iwaj", + "jhyd", + "spatc", + "ztlgya", + "asmfl", + "ymetl", + "brtj", + "rcmhiyp", + "mpkwsrq", + "rzbeawt", + "yoxpj", + "ftqzb", + "nqvdlez", + "ikna", + "insc", + "oskr", + "ouesa", + "icsh", + "nviu", + "jsxmcwe", + "irfvs", + "dazv", + "qugy", + "zksa", + "injh", + "slkcuzm", + "dtwxcbo", + "lqfr", + "ifwlk", + "tgdeian", + "emnux", + "ejmlutc", + "pjsz", + "ovwbzs", + "suwi", + "kwfjnzu", + "wpynihb", + "ibqxv", + "kbhf", + "svumqk", + "vybg", + "dbis", + "bphtnoy", + "zkqsr", + "itwvy", + "njwo", + "cket", + "ecqgaru", + "ahcf", + "sozkph", + "hrsteg", + "jkabore", + "jgpk", + "yewtfg", + "tzglscb", + "vlcyimu", + "frutyx", + "aknp", + "iurkgze", + "gwehx", + "ojpit", + "riqm", + "xjgw", + "mzlfo", + "lgnqhrp", + "yfqv", + "wcre", + "warkmg", + "cvima", + "uybwhf", + "uadwghn", + "figkyh", + "wkqoa", + "neumrjl", + "vqmnye", + "uwelm", + "lrudv", + "lmesqc", + "rgweip", + "zekofya", + "ymxntc", + "kfavd", + "lntkocy", + "nwoyq", + "vshcim", + "qtzv", + "nhtpr", + "ghqw", + "ltcd", + "qubo", + "gbpm", + "dpny", + "uegw", + "conwu", + "taxysq", + "phzxt", + "dihe", + "npskqaj", + "sxglbho", + "lwxvy", + "lkwbr", + "qednbpv", + "xulbdtz", + "ackifrg", + "dtego", + "lcxqs", + "xsma", + "vfpuj", + "rcdy", + "jdazyke", + "shjkfnu", + "hbwfg", + "rcud", + "hswbnyz", + "lbyi", + "ugcw", + "sbyegnm", + "ptqycgh", + "wbkvs", + "jzby", + "tvaxkq", + "ebkrhij", + "wjiuxfb", + "ekxsv", + "oxkr", + "amxsugi", + "nyjfs", + "bzpjtic", + "ganwqi", + "uyltki", + "mceosr", + "grxnkwi", + "xcjtika", + "zipqgl", + "wasbqen", + "qpamht", + "cxujhlf", + "folvqp", + "dqiak", + "doszqe", + "rkvoxt", + "mborven", + "kiglxeb", + "epqsmc", + "okzvpig", + "qpogw", + "eqcy", + "mrtjzxg", + "xdlf", + "ekncah", + "tcfso", + "icafr", + "wxdqgm", + "ulre", + "gxru", + "lvkyned", + "zspy", + "ypgt", + "ixdpyvc", + "uptwdq", + "aiqm", + "imsk", + "ngemfsz", + "fuivt", + "hyscpfx", + "qpze", + "jltnces", + "xvhmu", + "orgxnpe", + "yovjgxu", + "amqifzl", + "kjchrg", + "rbyv", + "sloeqd", + "rzdune", + "prznymc", + "gmyezdl", + "vloey", + "mkhiq", + "syvemw", + "islcu", + "zdjteg", + "jznaue", + "dcwbrjo", + "qtumk", + "otdj", + "gxdwqi", + "mzthdq", + "lqhfpbe", + "hmtj", + "dgkuvnl", + "jgmtyhb", + "hvjmn", + "vslyu", + "qwsdil", + "zykdv", + "qzxpi", + "rhuk", + "qhwmucv", + "sdgo", + "ozhvku", + "ewju", + "lthrnke", + "njhs", + "qngkip", + "disfm", + "wfoa", + "mkewp", + "zgyr", + "jert", + "kwbujh", + "udimcej", + "kont", + "qurxsn", + "uijt", + "bcoa", + "dgbqcrs", + "udtyi", + "gwohzuv", + "jpbc", + "mgkot", + "neqao", + "sxealo", + "tmjyswi", + "cqfu", + "gbjqzec", + "htivnyk", + "fchyvou", + "vtxlq", + "xoikf", + "tgfmuj", + "tvbrn", + "ckxrpa", + "hklntm", + "wbaexh", + "ejrs", + "gdqm", + "tylx", + "skvz", + "zwkp", + "joqgwc", + "dbzr", + "yjraqkl", + "xamrpw", + "sabodk", + "pehmfd", + "wsvqkme", + "gqefl", + "csgf", + "fazcrkl", + "gdrjn", + "mjikz", + "qmijr", + "npjom", + "dptj", + "xqbopu", + "kptibo", + "wgiqy", + "aijhym", + "aotwln", + "zoyajtr", + "vilynh", + "mnueqsw", + "qbye", + "nphf", + "jltu", + "zxpebqw", + "dwcj", + "vncl", + "cfmgy", + "olfxd", + "eqhzgyo", + "xhvdsm", + "fwbipq", + "vhyrqs", + "vlom", + "mnfthz", + "hscryvm", + "qgkp", + "biuxvf", + "zhofm", + "jqrs", + "ozrkw", + "ogxe", + "cplgzt", + "cuxf", + "lsmf", + "wmyo", + "ienf", + "aynqc", + "inblxqv", + "bgksv", + "fmwdk", + "vlopzm", + "mxdpsw", + "hgpd", + "kbsno", + "twomd", + "kmaie", + "qtbwhc", + "opmyjq", + "atgh", + "kgpzm", + "mpfo", + "bdikj", + "kgnb", + "vimqjtu", + "bcezsyn", + "geksw", + "uopvsmk", + "wnkqdah", + "qtydrl", + "wsyluct", + "pdayt", + "vhif", + "ntjp", + "tpzxcfg", + "hpfk", + "deiblm", + "zgtwklm", + "hftdiw", + "esjpoh", + "hxorz", + "kagzi", + "pfoyni", + "gxklwz", + "cabqyim", + "ygtam", + "xtjqh", + "jeyauxc", + "ijfxr", + "cyro", + "fezlmr", + "yfsmz", + "wphvio", + "sguiq", + "ukznvhj", + "zojcm", + "gknqzj", + "mochx", + "njri", + "tafnr", + "smvxj", + "gkil", + "raswk", + "pgqxlsk", + "oguicnq", + "gitnwbu", + "rlmjpfb", + "zuphnv", + "yalb", + "xjlcqg", + "czbfua", + "atpqezy", + "fkgl", + "urxn", + "sezqo", + "vqje", + "efkpo", + "lxmov", + "xlkyhm", + "xvqfybj", + "gombc", + "hjpftm", + "tfuv", + "uxoikle", + "yoqnbe", + "wkhce", + "dxgy", + "qrjo", + "zxds", + "kctfmhg", + "lkxi", + "gplwyrn", + "jfxnryu", + "vbhi", + "veslptn", + "wdpc", + "roxt", + "tlvza", + "dtal", + "tkdb", + "otcsydb", + "kxzl", + "ksejay", + "ejvck", + "yahlb", + "jnsax", + "qzvkd", + "aizofyp", + "quady", + "exnl", + "ivskg", + "icot", + "itrp", + "xvua", + "uabch", + "tvzrc", + "rxpws", + "dlufkq", + "dvcaz", + "cqmd", + "iwxnyoj", + "gsbq", + "hjkiq", + "otuvqi", + "dcmu", + "lwgni", + "tcue", + "cnkgizj", + "iezf", + "trhonik", + "jmga", + "txfqoza", + "klbxhf", + "ofbvqpt", + "bwpckxo", + "swkyb", + "bdjfzp", + "xcey", + "aqprlc", + "lxeq", + "cpsxv", + "nwzxsoy", + "gkxoh", + "gosuerx", + "oprmcjk", + "spqmlyg", + "tfdmeqr", + "jdyx", + "hkcqu", + "eogibz", + "ebgz", + "bxfeqd", + "onyklsv", + "ghcw", + "pxlm", + "xywi", + "gmkvd", + "zouf", + "brxp", + "mdeat", + "vhnap", + "uqbei", + "kwcxj", + "cpirf", + "zenc", + "bmxnt", + "bsnyphf", + "xwnaev", + "iyhvcw", + "rqfgxou", + "zspfev", + "zwjt", + "bgqzya", + "aepflw", + "erhyq", + "forwkxq", + "uwfth", + "qzxuf", + "tedqr", + "rugc", + "ijdhcg", + "bogpkmy", + "kztjrd", + "ptqkod", + "gnidolh", + "kfyqwnm", + "guokbit", + "ykvd", + "hpiu", + "uanse", + "bshf", + "fteq", + "gsku", + "hklew", + "bnlh", + "vimzs", + "nwhjptv", + "fkzr", + "mfpj", + "nztdfcp", + "ysdw", + "riup", + "mjfg", + "fcxtyq", + "wkcq", + "zrycve", + "dizqvr", + "ijtshm", + "hegxm", + "grqou", + "dmnabx", + "mpaov", + "tgovaxz", + "apzlm", + "rnklauz", + "tjnrws", + "nhzqyr", + "xqnjcbd", + "teqz", + "sinu", + "uqdvef", + "pezcvt", + "jzdeit", + "apnugz", + "pwsfqx", + "jzdy", + "awnv", + "eotvbqa", + "gcom", + "wordhi", + "msxeu", + "esfwj", + "mogaqry", + "xgbe", + "btsp", + "oypluz", + "jvqpz", + "yldat", + "pwmzusi", + "blvdth", + "cjskxqa", + "emquzb", + "yqdkj", + "mgnklh", + "arfbc", + "jgrzou", + "aembsw", + "qepkr", + "abtjd", + "tczawb", + "dzwpn", + "udwtbim", + "gykrxio", + "nklb", + "rfngxa", + "ghupl", + "fxpcrka", + "jiln", + "jzifr", + "gvsertu", + "qrtk", + "qirsxnu", + "kypxrj", + "nowc", + "wnypg", + "wvye", + "mhondey", + "iwtkpus", + "fovd", + "rfjpnvh", + "hjnok", + "hentroc", + "laox", + "qhfx", + "qyfich", + "sbfljkr", + "qmeg", + "azke", + "snvairj", + "qkpgnlr", + "ndyw", + "acmf", + "xgmiep", + "icvajxp", + "bkvwl", + "dcrxp", + "uliz", + "gfjepiy", + "imze", + "pdrck", + "uzqsio", + "xanvz", + "ofreqzb", + "aymb", + "jwhpt", + "bnrq", + "uzrbvla", + "mtarpz", + "sqwnkec", + "snlqa", + "vxrenf", + "lrbkhjw", + "qbeiu", + "xsliy", + "mhrzj", + "osxqmb", + "gtdxjb", + "uweo", + "umksb", + "bcrmlhj", + "rbtkcow", + "uqkhgpi", + "xdapu", + "gwzvyi", + "haoxcmg", + "mrtkf", + "psrq", + "zuel", + "rzmgcu", + "moquy", + "xwqtk", + "pxqyzra", + "qgcfi", + "acvm", + "xhpnfec", + "rvdfiph", + "gqclbd", + "yiobr", + "hbzxg", + "fxsq", + "ayow", + "nzabed", + "fzjteqi", + "cnwm", + "zjeungx", + "kehz", + "ztshrx", + "tkwl", + "zsocw", + "rzfv", + "jylsmx", + "ojfa", + "cnpotxi", + "etra", + "bcqdpie", + "cytzna", + "racshj", + "todhm", + "bmopfqk", + "utdjxr", + "worbn", + "icfaqn", + "kpbgc", + "isqygxu", + "vngw", + "zmvgk", + "foqjuya", + "dhjnze", + "hqzla", + "rfgosi", + "tuqw", + "viwtso", + "uhczkt", + "ktwjz", + "qokub", + "qyku", + "rdpm", + "wnupi", + "npkcxb", + "mkjh", + "gmiwksp", + "uehxbym", + "xdnugyb", + "hivdwbg", + "canefo", + "yvrkgjp", + "ribtad", + "bplg", + "gelifsn", + "jcklpo", + "ewro", + "laovxt", + "xinjpgu", + "ormu", + "blhz", + "mjkanoq", + "uahtnj", + "hgpoqyj", + "laojpe", + "tdzh", + "rkslig", + "bwptf", + "zqyj", + "ymlfziq", + "oadbe", + "okrdl", + "sbpwo", + "opbi", + "xqdf", + "vjrql", + "noidv", + "yedlkn", + "dlje", + "gzjdr", + "fedci", + "xzyjf", + "nfhz", + "rias", + "sxrjiv", + "iykuxqw", + "gltm", + "nxba", + "amyc", + "ruighqm", + "hobiw", + "fkyn", + "rfzchw", + "prwlm", + "bvfh", + "rqvo", + "ewhuv", + "cioy", + "xuvr", + "nftoqd", + "jcbufs", + "rnbl", + "jmspkh", + "choymlz", + "lrgz", + "roztm", + "mpbwn", + "zxsrm", + "tkmpr", + "ymxq", + "mhty", + "vyha", + "erwc", + "qvsgonl", + "tgdl", + "cnirdsv", + "pjylg", + "slacyi", + "ryuc", + "cpyn", + "fsxhdui", + "dkumt", + "tdwq", + "swqzom", + "tfpi", + "muqv", + "lfnrgsq", + "yoiad", + "rjxq", + "rcfqzh", + "nlyeqcv", + "vpjmhiz", + "kzfcev", + "afokphe", + "gyda", + "ocstdim", + "hguc", + "nrebyai", + "vpdsg", + "ezamvg", + "pibo", + "apxioqb", + "cgtwnf", + "nafs", + "hbgrzf", + "vbgmpq", + "wdqu", + "iaydp", + "hbgui", + "msvngof", + "pfba", + "spgth", + "cegt", + "qsiufe", + "bwyndza", + "xiel", + "knrqtia", + "bhyt", + "hiznbf", + "fwsnz", + "gpxv", + "qihcnd", + "swlebp", + "drjkvl", + "zauv", + "jkiug", + "gkuvai", + "xkqvsdu", + "ijsneb", + "zqsc", + "mubxz", + "gtwov", + "yqshl", + "kefri", + "yxstza", + "dtlhov", + "fkairc", + "pchr", + "uoiqv", + "pxfny", + "gpjiak", + "rfas", + "cephfz", + "zhcrokj", + "hdxuc", + "nzbtpl", + "itwr", + "pyxhezi", + "zqhdjf", + "ijhcv", + "tzox", + "tjfqc", + "rxmanlf", + "lmerknb", + "giswt", + "encido", + "rotk", + "wmdfnkp", + "cbaoyp", + "ufdnoqv", + "hnqzrvy", + "pjcnrf", + "egyqasv", + "ubyrtwa", + "sxkhypm", + "wvpf", + "qvxzj", + "ldevr", + "tjqpb", + "ejzis", + "barfz", + "haxyu", + "awed", + "mbqu", + "fnbuy", + "ulixah", + "qdwxmzi", + "ciprfy", + "zlwhs", + "ngzj", + "jinmb", + "ixzquwf", + "dutelj", + "zedvtmq", + "gkvw", + "ypks", + "dfgc", + "ejoyq", + "nvicwuo", + "ufqkdx", + "hjpwovd", + "lhfgi", + "oefvqx", + "yacs", + "zncudo", + "ztefbaw", + "clksv", + "taywu", + "tjuied", + "cqnb", + "roilvq", + "oqcluxp", + "bsujoti", + "yrdbo", + "eqckt", + "pngymv", + "yjcxmsr", + "hqrdwl", + "keztsup", + "tyoade", + "ktqwe", + "gbtr", + "mzwpugd", + "twvh", + "xptubge", + "aycep", + "bwvzh", + "sxyf", + "dzoy", + "oixa", + "yxwesvr", + "iawmcx", + "njsehpz", + "ekldt", + "ycoued", + "vkwb", + "sbqodaf", + "exht", + "vxlqzm", + "wudrjgl", + "qiomrxp", + "moahqe", + "cflxt", + "iftx", + "mcnegf", + "jselor", + "wnkl", + "srloibg", + "nwtvkeo", + "mhsj", + "inkvq", + "iabgx", + "gonvqy", + "nhmqs", + "rhsmt", + "liqawf", + "cjvdmr", + "embr", + "qplo", + "uetib", + "yvnutre", + "dbmk", + "giavhq", + "fcjht", + "kpnf", + "enpzcjy", + "pkcqs", + "hburzpm", + "bofuezi", + "bwhvcm", + "umpvet", + "zcfs", + "hivo", + "qavr", + "wsigyzc", + "jftymrn", + "oqwalc", + "hvodzrp", + "lnjtaf", + "piqx", + "mgzk", + "jcomfqi", + "gdmz", + "rywu", + "vqjebum", + "rmge", + "zdenv", + "gtfd", + "dcwnrly", + "zxda", + "kmelo", + "cjufn", + "tfqz", + "yvkc", + "zoybne", + "hegfk", + "wxjyqs", + "cmvou", + "eacosp", + "cwbzs", + "teoa", + "vtbx", + "wbmi", + "pxwyq", + "bpnkr", + "ymxcw", + "eisb", + "ohycmvw", + "etfjyas", + "syhc", + "togpu", + "xvks", + "geqn", + "acmve", + "klpdh", + "flwvk", + "jcyur", + "birul", + "hysuqk", + "dicfna", + "bnqfi", + "mqkxdzp", + "bcwemdv", + "bdfi", + "qxtfcb", + "cigxhmk", + "qjuxs", + "supgxq", + "oqdkyc", + "zdcktva", + "oxgcrhj", + "jble", + "vjun", + "coejfa", + "hmco", + "telj", + "byxga", + "pmrnok", + "rfpgloz", + "hbxqtck", + "kzminbw", + "tilw", + "nwhv", + "rlod", + "vjywfk", + "wmoasun", + "nzrf", + "sporz", + "foaj", + "qnyh", + "rzxsnmg", + "exhul", + "itpwgn", + "tupfhj", + "nxpgdjt", + "zyboq", + "xjof", + "qlahx", + "vspbw", + "fryxk", + "vgstrcp", + "kpeob", + "ghtqnzo", + "vrqlzxi", + "xons", + "dmjr", + "pynd", + "tympwg", + "hjrzwla", + "serkncv", + "tirguhm", + "lzvidp", + "rxtsg", + "znmpvb", + "lfcge", + "vguyd", + "nmod", + "pmqn", + "mxqay", + "ctkzfeq", + "qhypmrv", + "zylac", + "ixrm", + "gytmp", + "pvimly", + "lbgt", + "zkxe", + "osagd", + "hbunw", + "nglfurz", + "noze", + "cjpkd", + "gkosj", + "kblnqyc", + "lcdkg", + "wdeghbk", + "qygwzrm", + "uodcqiv", + "oujmxn", + "kwmgy", + "laoqzky", + "jksh", + "fcmp", + "lsgmjd", + "gzril", + "orfw", + "stwfxk", + "uyfhep", + "lrjfeq", + "lpugkdo", + "vanwdgr", + "bwrk", + "phfo", + "ukwyafs", + "sezrx", + "frdqkmi", + "vaxl", + "qsfkh", + "xaezhvl", + "okdhtyr", + "nxqks", + "koprym", + "tedx", + "ujqfw", + "nicj", + "sekzw", + "welt", + "sbex", + "vibfja", + "xtdva", + "csthweb", + "nuevph", + "vjzhko", + "kxzpmeg", + "ysgcta", + "ieblz", + "phyevd", + "uiohgpt", + "blgujn", + "jbron", + "ibprhy", + "czip", + "ciuhn", + "slboa", + "tsncrg", + "enrmgya", + "hwxvkob", + "fzutyc", + "lohi", + "ecimyl", + "xjhvoy", + "vscpx", + "eyakfc", + "jnfac", + "sdhi", + "bvjzkg", + "luhe", + "ehatgm", + "palkn", + "qxpzrg", + "ohbudci", + "fcgh", + "gqywexs", + "ljxpvo", + "wfatkbz", + "plwgosf", + "msvdw", + "ocyz", + "vcws", + "abjgfwv", + "mfiltp", + "gckrup", + "agsx", + "efpndq", + "edql", + "iaejo", + "vcht", + "vhdu", + "eyhd", + "fkbwxoq", + "xyqhtgw", + "vcpm", + "mhpjudy", + "bljtar", + "aknvh", + "nktlz", + "sztifvh", + "lkmabty", + "rkngjal", + "hscqzwt", + "hpzsin", + "wqtckym", + "opzem", + "jzxrmyv", + "dobmqz", + "nzovfg", + "dfnp", + "avdqep", + "xdwrfg", + "gqtj", + "kfep", + "jgil", + "vcok", + "vtyr", + "zwlv", + "gjrpnik", + "zliev", + "ikbf", + "fjgy", + "sufqopd", + "ltbeij", + "kfjad", + "zeonrgi", + "jhzvea", + "qzlasn", + "obvai", + "sprz", + "xkaspgn", + "bujwp", + "pblrvq", + "zfydopx", + "eywzdn", + "rqieo", + "dzwqymp", + "cdervp", + "efuqkij", + "teprxkq", + "kitqd", + "mkupst", + "epbiqox", + "aqzu", + "oadi", + "uhkepls", + "lxangzo", + "fhdcu", + "jfxcs", + "rghdjmv", + "ecjbr", + "fpmgd", + "nwsl", + "bpgvk", + "cmaxue", + "etjy", + "lbad", + "uhrg", + "ghfbn", + "akxcryq", + "rwvbq", + "ohjnyug", + "vsznued", + "zedoct", + "panxkdc", + "kwnrg", + "xeljp", + "qocseyi", + "pabq", + "kmucl", + "ofnqvcu", + "vlqohgx", + "hgqc", + "tmqu", + "ysrwz", + "bxisn", + "klbhqj", + "vrtmnwu", + "artfj", + "rbsnda", + "nfuvja", + "pvyqdew", + "aygnfj", + "johg", + "ukigbtx", + "xjry", + "djgwtqv", + "aelswo", + "yqlvtbj", + "zxohekf", + "kqgb", + "cday", + "vbkgs", + "stknqpy", + "ukea", + "jgmze", + "tskqvdf", + "dqpv", + "apxds", + "sqnotwg", + "nsil", + "tzlkg", + "pwjuzt", + "rvlng", + "iztu", + "jtpr", + "kiqf", + "eztmgr", + "pbwo", + "szix", + "mhriu", + "heon", + "vakcix", + "pjun", + "opqna", + "wdmkaxr", + "lukb", + "rxyfn", + "duxzj", + "cxuzkqv", + "hlic", + "jucrygw", + "jstwyc", + "wqlusj", + "bxnv", + "dkmsb", + "socriw", + "kvth", + "jbwf", + "moef", + "doebjh", + "ltov", + "gjfvldi", + "xcqflke", + "fkxtdg", + "okpl", + "xouy", + "rmogy", + "esygzv", + "galdh", + "xlqup", + "hnrojzy", + "lbagx", + "nikxz", + "quiep", + "gyqsorb", + "ubfq", + "zmbf", + "xwgkn", + "fory", + "fexvpnu", + "lzwdya", + "adkm", + "tejmus", + "rykm", + "rgnjdf", + "tmfjeu", + "ajufe", + "zntxbq", + "nzkbomj", + "osxcju", + "kzbasv", + "qvtmzn", + "elcw", + "afbhve", + "bxkei", + "vyefw", + "arnu", + "phvto", + "fgpit", + "nvebsqw", + "kctufdy", + "cdtvfkx", + "pexhos", + "ridjeay", + "wdqk", + "ltzgyx", + "djro", + "qmfa", + "mpzvih", + "skfjcr", + "yoknhzt", + "zsgemty", + "owmntb", + "zujydm", + "sewfl", + "vkncmxt", + "bnmr", + "bckq", + "fgxdv", + "kgyqnvf", + "calf", + "eyfais", + "nlkdxar", + "dcfavu", + "fxepkvs", + "jlic", + "tgdfkoz", + "yomk", + "fmpnqo", + "huiw", + "tmian", + "xvok", + "moqiytx", + "mabdrh", + "ieph", + "wrbnpvt", + "pail", + "obqpa", + "cqtnlxy", + "skxdamc", + "twakin", + "ipcakfo", + "xfots", + "gjoz", + "bzcwtfg", + "epwz", + "zrbl", + "lsqym", + "yupmxj", + "lkaqgv", + "fvbhprq", + "fgazrqw", + "yxnh", + "sizfe", + "fmztd", + "cjaqpx", + "srdphtv", + "ehyfrmg", + "xrqcmak", + "agyim", + "dwgb", + "mbjhd", + "rkgxcej", + "libqar", + "nhqja", + "bsctpwh", + "ifwxh", + "hdsrkn", + "nkpyorg", + "xdpso", + "rztec", + "hcjg", + "kyqgjr", + "aslgyr", + "gjpzi", + "jpvafsh", + "hocsby", + "azhm", + "vsbego", + "ujdq", + "vilerj", + "bcmynse", + "hgcm", + "vfagdxy", + "ifhmdbw", + "wsmbn", + "ydrvxq", + "fwsuqx", + "hfij", + "mtiwxlg", + "fnobk", + "mwpu", + "efzidpm", + "ybvst", + "gfoh", + "zohpsw", + "lkao", + "zhsuw", + "fdsjgt", + "xuker", + "ikxdsow", + "uprsbcv", + "defkub", + "kaegfu", + "mvtrd", + "wxefb", + "iamvog", + "binef", + "fibx", + "fgtkd", + "dbsrk", + "hidgxms", + "tsxy", + "xfqdyh", + "uhnp", + "akezv", + "iagu", + "xwyjto", + "cgoa", + "ftxqzly", + "antmpz", + "wdas", + "larug", + "mhdszt", + "guyojtx", + "kgardcp", + "hmpcsw", + "szxiah", + "hsklty", + "ybtd", + "xjybvl", + "fvdo", + "lmqi", + "gwpl", + "pauwn", + "ovexj", + "vxwctpj", + "kiehj", + "larqnwu", + "isglt", + "xcra", + "ubrfsm", + "wgpuytv", + "zhncj", + "qztlk", + "rusvh", + "tacmn", + "lfad", + "kzbeso", + "yziv", + "cbeqa", + "mexp", + "fmvo", + "azqx", + "wibedyu", + "jzgf", + "xfbkwiq", + "ulthy", + "cwigqsj", + "fotuq", + "unvw", + "xncwyb", + "rltw", + "eqpb", + "wtlx", + "ywsvgdl", + "cnbv", + "yujqvsx", + "aiom", + "nesvwdc", + "zjghu", + "lciumj", + "flwq", + "jgfnxt", + "wfalk", + "ihpr", + "lzkiqj", + "zcst", + "okzad", + "twpmf", + "rkctqnj", + "jdminql", + "hwcra", + "fmnj", + "ibuxj", + "aqyx", + "ezpvbtn", + "pbtwl", + "tvfl", + "rwqh", + "mrgisa", + "faqdz", + "wpvhayg", + "ergfhp", + "jzxtn", + "lakh", + "ldoqwx", + "hyud", + "bndoj", + "ovwx", + "xohm", + "idho", + "qjdw", + "taqdlxb", + "bzio", + "pgrqsdl", + "jrvfeg", + "hsrzag", + "tfxem", + "ostd", + "vcexoh", + "jilzpwm", + "malt", + "nwsa", + "rdsjz", + "ckgjdw", + "qrmjgyt", + "vflhjwm", + "wvdeofr", + "toeu", + "hgxtv", + "tixnrkp", + "dmkt", + "gjuwpb", + "wdtjup", + "wtfzjsg", + "wiedag", + "cnzo", + "lufk", + "esdfox", + "zsnb", + "zbwqn", + "xfobm", + "veohlkg", + "ilnwf", + "ethzfsa", + "xwzrayf", + "cemxhqu", + "tidb", + "nkphio", + "uompr", + "gcxjh", + "zfwmqk", + "whpvu", + "plyuxmh", + "pbev", + "cpea", + "bydhumk", + "twlmyps", + "dikjoun", + "vrxd", + "kzanh", + "drixlog", + "wstplf", + "yocmhaw", + "thgp", + "yqvrglm", + "tqdn", + "yipkczd", + "qkbojf", + "uemfz", + "bcjumhi", + "rodciw", + "ymilx", + "dhat", + "rsmhen", + "ajxte", + "ckied", + "gsoxz", + "hscj", + "uyrks", + "zcbug", + "truzpgi", + "wyozcnu", + "dkabozc", + "zgjkwx", + "fbpuhqk", + "wbsztrx", + "schq", + "biyeonk", + "jnugsxa", + "imsnwa", + "ivcwnzf", + "fclvigd", + "hajndre", + "qidxron", + "ksopu", + "zdxmwr", + "gbldm", + "fnimc", + "vksf", + "tbhz", + "fhapzr", + "otjvl", + "opif", + "giny", + "kfeyns", + "dact", + "nzpx", + "unzbod", + "fndmceb", + "ojusebv", + "nlibv", + "bwrjdq", + "yzubs", + "teukb", + "ylcm", + "lojb", + "kgpox", + "pfsoeai", + "hiqokzl", + "xpwihl", + "fhol", + "cvpzxhn", + "cjbxvn", + "gefu", + "zmnyl", + "uylhsq", + "ubzq", + "ljmuo", + "mqyad", + "ndpvmqt", + "potxz", + "ljoan", + "vxunil", + "kbyfaj", + "cavhr", + "oqgzpkn", + "gqoxr", + "gzqhw", + "sgwydet", + "qbdlhkx", + "lmrgx", + "xojw", + "bguk", + "mcik", + "pkaltny", + "ducs", + "yumcg", + "redylc", + "qterloz", + "rehusa", + "lqoj", + "flndswz", + "pqwalst", + "ansyft", + "yblf", + "pvfcibg", + "pgzilky", + "dhkw", + "vuqj", + "anpf", + "nqhlc", + "zsio", + "eosp", + "bldmi", + "xztjf", + "yxcqaiw", + "ndhgvq", + "zefrtqh", + "wctb", + "myewud", + "ayns", + "hqgja", + "rzqbpy", + "dkwv", + "xomenk", + "jprn", + "qlxdt", + "vidsq", + "eprk", + "jwga", + "ntjvz", + "ngokbyu", + "klopwri", + "ojfi", + "ulzjbd", + "nqrhyu", + "dvnsftb", + "jeoc", + "bqmchs", + "uwsczn", + "pzmgt", + "ruqbtfn", + "rtab", + "lydspek", + "fazop", + "fntzbsm", + "zmgyo", + "ojanz", + "kjya", + "ylrjcdb", + "movwjen", + "axfru", + "yjrhfc", + "acirbno", + "eiobsvd", + "opechdi", + "lwjvdb", + "ahxisp", + "lhwpt", + "xjrhenb", + "ezmqt", + "cdkeu", + "ymdtnra", + "rudte", + "nebr", + "hqduc", + "mtqv", + "hsotz", + "vyon", + "qtjmzdk", + "fpugmay", + "akgit", + "bocjfea", + "qbkmcdw", + "loejxys", + "cewdjz", + "hkbd", + "obrknix", + "bfzoyed", + "omsb", + "uwkp", + "rpqyx", + "xqgyfe", + "xbas", + "frwaig", + "ekgzdcu", + "oywdq", + "juhkgo", + "kxshefi", + "cgeslr", + "xygszhn", + "yaeinc", + "pnlz", + "qbdvo", + "xckrsv", + "omgk", + "ozqkbe", + "bviru", + "hmwxiu", + "lzdmnh", + "mbwzs", + "ugrzskx", + "tizyuvq", + "pdkgqsh", + "fvglzpe", + "psrn", + "ahvo", + "pnza", + "vqgkap", + "ftbupim", + "qgdafou", + "kylsmnt", + "ymuitk", + "ciyr", + "qrzys", + "xcdwlun", + "nxirelj", + "vsftq", + "vcia", + "xwqoys", + "gzmfsy", + "hipygq", + "ryjcxok", + "vnlmqz", + "mjpnwda", + "olfya", + "bacmfs", + "vqythwn", + "tjsxyfm", + "gcfh", + "bsvy", + "ilza", + "uyzbi", + "gekwq", + "larkh", + "tihu", + "cfmjoi", + "wmfzq", + "fckyga", + "qtvp", + "ytogmih", + "ciuxdp", + "nqaubf", + "zlojer", + "degtjy", + "zftaiwd", + "vfsyxi", + "qskg", + "mauzc", + "yuhr", + "aqlfnmb", + "ybwiu", + "gyvwzeo", + "rvukqgm", + "okhlcyx", + "nsqry", + "pnxwl", + "irlyj", + "vphsq", + "mprg", + "ytejafh", + "vwok", + "fhcmv", + "lcjaoqs", + "xodh", + "jqtsod", + "jgxt", + "bngldmq", + "dgvahw", + "glud", + "uoqpjrt", + "tpwfgxy", + "ebfo", + "bucetoh", + "obmp", + "rhbzg", + "oyfcsgx", + "bzatvh", + "kjavzhi", + "nyzk", + "jpeusr", + "wegxcfo", + "vyjprd", + "lgbtn", + "jrmhuz", + "vgqmxwk", + "tmpn", + "iouk", + "ncesrl", + "qwohcy", + "yfenw", + "zomg", + "rgcxv", + "kuqr", + "qpescd", + "hymuwkp", + "xmlh", + "nhlqxkd", + "rvng", + "uyqk", + "ambgfuz", + "ptcm", + "qmvejp", + "cntiq", + "zknodqv", + "gxnrfp", + "dhlvax", + "ngye", + "soacgw", + "qpbzlvc", + "dhwf", + "fjredc", + "sdoqjnb", + "efojn", + "onekj", + "btsz", + "lmca", + "xmaigur", + "gdqfeo", + "coenf", + "pcugk", + "eihjnk", + "xyrnvhu", + "fdlokva", + "zxrvwfi", + "vwaj", + "ftod", + "tkenhq", + "kxoe", + "islxm", + "vysgt", + "zpvlc", + "zmxw", + "xwdpy", + "yaljms", + "zfqwlex", + "tmbfvxj", + "ogbs", + "siom", + "fwqb", + "drgixbn", + "dfwzjx", + "gtwr", + "bsufk", + "xdmfy", + "xjukv", + "jdmo", + "lhobncs", + "usxiqzk", + "sxjw", + "xsgmqi", + "xrnw", + "syqo", + "itaz", + "utywsz", + "atiguzj", + "ptlr", + "faobmx", + "szfjkbh", + "cfnhkoy", + "kgdev", + "tubnh", + "yqalcwv", + "uxwf", + "scogvk", + "rpsz", + "wuxmy", + "htjvki", + "jtfyrc", + "mjqabrf", + "rbhqxtv", + "yhpkd", + "frlymw", + "aktwf", + "lspand", + "ypotiw", + "gyopsk", + "ptzrj", + "tfwzi", + "oxfv", + "nvxsedt", + "dfchw", + "onvj", + "hyfxwr", + "iayc", + "nbjwm", + "piwbmk", + "vydat", + "lnwhqub", + "sdaxyo", + "qchpm", + "uwexqhf", + "eafstj", + "mkygo", + "dcbh", + "gsfier", + "pnzrcqt", + "vgoc", + "urptwhd", + "djzybf", + "jeqalh", + "dyrxesi", + "zhmt", + "vxbc", + "atkev", + "kburns", + "sgql", + "aktw", + "jlbg", + "vcqya", + "jlmpr", + "omriq", + "cpxq", + "ckzmf", + "hpfur", + "iczfm", + "aofzi", + "gvmt", + "nztj", + "qxtbav", + "zjkhetc", + "dtfzywj", + "ctfqkm", + "fdbekj", + "vckn", + "xyjfp", + "dcjfre", + "torewfy", + "kfmsph", + "wzlec", + "oizmkja", + "scenik", + "riup", + "awtcnb", + "iferq", + "cgad", + "xnvpi", + "mylciu", + "tiwpg", + "wtim", + "ajbpst", + "fvabpty", + "ilmc", + "zykegd", + "lgixa", + "tprvzed", + "cdnzipv", + "xbcolye", + "ucwdqy", + "myubi", + "viayth", + "atkzq", + "pmcyqd", + "cihnsp", + "akwh", + "xngz", + "kzxyf", + "jaytx", + "mjqe", + "kfqwy", + "zeltmi", + "zxrhop", + "pglvt", + "xvym", + "ewmqg", + "nhviz", + "nuejcb", + "gondehq", + "fpmj", + "radm", + "zcptfmo", + "prnq", + "hnvuw", + "upmqv", + "jmao", + "piwn", + "ihkgxw", + "beydfl", + "lxntwbg", + "rfdkh", + "gtsd", + "vidklma", + "gkzv", + "nakcxi", + "lkpfh", + "xcqj", + "nmeou", + "hesztcl", + "vxqhd", + "adun", + "udbklg", + "bmojfrq", + "plcsorh", + "acyhwdg", + "zswonlq", + "dmiyo", + "umzhrc", + "jtblmr", + "ncxaoq", + "owqrnh", + "aexq", + "tfxyock", + "owta", + "ghzsbxa", + "dikm", + "muctl", + "dlfuah", + "marlj", + "uejyxh", + "qtfscn", + "opnsxu", + "ykois", + "cdzv", + "nudti", + "gtbmqvp", + "jzoclif", + "sgjazu", + "ftnb", + "ioghbns", + "riycjz", + "dyegro", + "jnkmye", + "cnpw", + "wsht", + "udysqz", + "tfchey", + "teirlyk", + "zfkejtx", + "kral", + "uvxmnb", + "nzjufs", + "gkpyvh", + "purmitd", + "lgaxesd", + "jnpdlow", + "ztwlgym", + "wbqyo", + "uinoxd", + "epxsgjz", + "frbam", + "nmivyaz", + "tquc", + "pimf", + "ekwt", + "sufyrd", + "cmebzuv", + "erqgxy", + "wrvbadc", + "jeozvg", + "unaytmc", + "plqd", + "nlzo", + "bnrvke", + "omzd", + "aors", + "khzx", + "jbfreag", + "xnhpzok", + "rpxlkg", + "dfujvk", + "xgydq", + "dhobjvc", + "wifhxj", + "kgthw", + "algwby", + "xojtzdc", + "owfy", + "dkanfsw", + "wers", + "nubprv", + "xjhokz", + "qfbyia", + "djvxr", + "yweo", + "oedv", + "fiqkl", + "dcgxotf", + "jbshtc", + "ywteb", + "vtwg", + "xikedq", + "pmth", + "ypvzu", + "zepidhv", + "wsnqgdj", + "hrlxmp", + "psfobc", + "nrucba", + "vkjga", + "gbxrm", + "lzbwnrt", + "gqpftuo", + "zkfdml", + "hzfwn", + "ozuyxq", + "hufmn", + "yhbkgm", + "qgpstyw", + "zfsp", + "gfpmtda", + "hpfva", + "syqpl", + "hyjgvob", + "eyvdx", + "poxl", + "cxghvar", + "ukpdha", + "opuet", + "lnea", + "sgtncwx", + "lqez", + "dofg", + "itqk", + "ihne", + "ajiy", + "hfyrba", + "alfbc", + "hujzgrv", + "seiqgu", + "klpm", + "kqflc", + "wmnx", + "quaevnh", + "hcmx", + "tuidkn", + "qtji", + "dfwi", + "jgaruzv", + "zefvb", + "lgtoie", + "cyhxvkt", + "ntfghuc", + "liesnfb", + "qulcx", + "wvbd", + "qgdsvew", + "gvnirc", + "rwyxho", + "uifzsj", + "kxnb", + "opeu", + "hsfzol", + "fjhwlqo", + "ekghsnf", + "cvyrgjh", + "cfyvz", + "hdmgq", + "mnkje", + "cvji", + "rqgmipx", + "lnuie", + "vhoqgfk", + "xtuj", + "wifxl", + "crwbfsn", + "lghr", + "joqb", + "hjvr", + "bwpi", + "mrgdaqj", + "tegx", + "xywzc", + "syuj", + "dfkiep", + "wmlshv", + "fumzgjw", + "wnuedj", + "ygvfxm", + "voxunwa", + "vaupi", + "gscixel", + "dorbqa", + "lyai", + "vpbkhwx", + "xqtwj", + "asfzgb", + "zqrb", + "dscqt", + "puzkg", + "fzvle", + "opauhqi", + "eirydhg", + "etuk", + "wead", + "ecga", + "ginzyhx", + "xior", + "yuge", + "yjibrh", + "xveqow", + "jqunys", + "bpgf", + "fziv", + "czsfod", + "hvteugk", + "ascgien", + "zyex", + "whusz", + "rlbij", + "byphtvs", + "wkux", + "hrpl", + "aokyzr", + "ugimwey", + "rsagv", + "vycfpkx", + "fgaby", + "uhwrsv", + "ojewun", + "knvj", + "sqnh", + "sqryl", + "vhabxg", + "edvigo", + "xlqbanj", + "rnby", + "lefvsr", + "faqu", + "znux", + "byspejr", + "lmsi", + "wgnd", + "sqkpme", + "jcgqoaz", + "rmwyoh", + "fnhxqbj", + "pjaswxb", + "dqghmy", + "sojq", + "trjh", + "ygcziw", + "olyb", + "zbdk", + "xtgk", + "yfidc", + "gnvblyp", + "ayfhox", + "uyepbwo", + "ibmufrz", + "rdtkhy", + "mkxib", + "xdfu", + "mrwcxzu", + "iobpu", + "tmflbx", + "blfwc", + "cmzvs", + "wzkijar", + "wcmtkjl", + "ehxap", + "sgjhun", + "tdfaem", + "ikvlh", + "cfohj", + "sknogct", + "wnegdo", + "gvojzi", + "vgixka", + "ujesalc", + "hocd", + "iduwpeb", + "rsmv", + "kwvl", + "blvkqne", + "rloxcw", + "zkeywlr", + "ekly", + "rhwmy", + "sorthi", + "fuare", + "zaydvfj", + "zdpkyf", + "lzndt", + "pwzf", + "oesrtiv", + "gycq", + "hdtzqi", + "uial", + "utnbzi", + "ofjs", + "vxmu", + "vtospbn", + "nbawrxg", + "zfcpnr", + "fpnl", + "atdfmvo", + "endpfib", + "laoh", + "wefr", + "cbvz", + "chgw", + "rzaduet", + "udarob", + "xkalf", + "gundhy", + "seaqzl", + "hvbix", + "mheirk", + "lprq", + "avlo", + "xkmuha", + "wcub", + "pvhwm", + "wtmgsno", + "pghu", + "lyxh", + "ghep", + "hadk", + "kohcqln", + "ranflvu", + "njfu", + "gspr", + "ovnsgik", + "polakgw", + "azvqn", + "vfczxk", + "wycx", + "jdglhur", + "mszgap", + "yzfirae", + "ljtneh", + "qsipjg", + "yqvp", + "sgqclmd", + "ivrob", + "jutw", + "catpdh", + "dhuyx", + "iqtz", + "eaoqy", + "ijcwm", + "zxifmea", + "ifpg", + "yxic", + "egwi", + "pfhka", + "adjyq", + "pkvcd", + "atezg", + "gyic", + "acjb", + "atowz", + "npezjdh", + "uknd", + "qvirew", + "nbqu", + "mrokjsq", + "conpbl", + "hrujl", + "ldncif", + "gatirz", + "cnktji", + "gyklsc", + "nkho", + "myuzv", + "awirnkt", + "lsfbg", + "aksldyr", + "uasoxzc", + "lqnvitz", + "mdjarb", + "niycfhw", + "mezl", + "dsnqire", + "eyavmdn", + "jzkrch", + "ganouj", + "ojtpla", + "fukltbi", + "cbnom", + "jlvds", + "lhdtkqy", + "nkewa", + "geulmh", + "ipdatk", + "wkuvb", + "ugbhtmr", + "awmre", + "gmijez", + "uwzqgy", + "bgkofpa", + "esqtwhl", + "bojwzic", + "voqhucx", + "rgcj", + "ckibg", + "eglzpqt", + "ksqulef", + "jsmvpw", + "pfwuhmt", + "okwet", + "bwtm", + "fknryu", + "edbuy", + "geqrkzm", + "sqryzue", + "wklx", + "ahpkrfg", + "lshbuxr", + "ryjdaxv", + "fhijae", + "bkavy", + "sdcubvw", + "rzaxjs", + "leyw", + "anvbemt", + "kcls", + "uimdopk", + "gsqz", + "crkzn", + "jrwd", + "luzmd", + "lsoigcb", + "awpk", + "vneui", + "oyvuwj", + "ydev", + "gktfnpw", + "lhuk", + "ueihd", + "fikwtm", + "asomc", + "rgsyv", + "mvirl", + "dcujesw", + "rquzvbc", + "hesj", + "zigwoyn", + "ulrnmiy", + "oxnwyu", + "armb", + "nfpea", + "kmaq", + "prodln", + "cxkmyez", + "liudxjz", + "afoc", + "uqifj", + "wybcxoq", + "xjpagh", + "hsfbj", + "igcstvu", + "tfycxj", + "utoqi", + "wdnxagz", + "rolbw", + "cdyk", + "qznylft", + "scqomhw", + "jdxmz", + "pigs", + "bzvay", + "fujbts", + "pinrh", + "gcfjk", + "tukizrg", + "ojmklgx", + "thwnfxu", + "pcksx", + "avqdjg", + "jmsfb", + "suafdy", + "cmvnrqu", + "azow", + "qkal", + "zvocytw", + "vabjkiw", + "xwapfc", + "pcdzk", + "usrwoyj", + "tuao", + "wyluq", + "yukp", + "mrios", + "zoitejn", + "zniyl", + "bcimk", + "gnemdh", + "athgjse", + "fvxmy", + "ntes", + "duzpt", + "yosw", + "mztli", + "ysna", + "gtpqes", + "jnyeqb", + "tmgny", + "gjiekam", + "mbyzp", + "sibgh", + "jyofazr", + "uhcgord", + "avyq", + "wknxyh", + "moinly", + "suehx", + "rineafy", + "ntai", + "nztc", + "bxipc", + "cnto", + "ouqbm", + "nvzkcbf", + "ogmdxf", + "mczgeqr", + "zebxut", + "tousw", + "uqomf", + "yiqkn", + "duqxveg", + "aunofg", + "avir", + "eqcud", + "jvtqbu", + "gjvrya", + "vdwn", + "ihwy", + "ioxj", + "jxrzvn", + "xiqkls", + "qxjue", + "ygurcb", + "nvoiqex", + "esnc", + "ovcqw", + "syqbhw", + "itwdmhv", + "pqdyumo", + "nevl", + "rfgjdn", + "pcbnh", + "lgqx", + "xsojb", + "ocne", + "vshwm", + "hurnlo", + "svuc", + "omtva", + "vkphw", + "hqabl", + "cpgsexu", + "jctz", + "siwg", + "uytqkde", + "ypcxru", + "cbjrdp", + "gjsnrxd", + "scntfu", + "ymqn", + "yrlfb", + "ohpqc", + "rmzjbq", + "blyxhp", + "voeuaf", + "cvlg", + "jpbqlxn", + "rkjyxf", + "oabc", + "zxnbd", + "vjwdox", + "jvhwgo", + "gfdm", + "pont", + "eoxwi", + "dtfyn", + "cwvz", + "pjifr", + "xneu", + "wamke", + "wqfkuv", + "hysmb", + "qoeywlh", + "zykvh", + "tnxyqr", + "wngup", + "hcqda", + "byfah", + "sxzakf", + "veoig", + "lrxuwa", + "kmfaucg", + "bexuoac", + "wecjtzf", + "qaceb", + "qgpvrc", + "hvdms", + "sbhec", + "ygfv", + "hnaskb", + "sczfu", + "nysouq", + "fbskcxq", + "rqzj", + "cnwfqyz", + "sfpdjqc", + "vcns", + "gkjcma", + "djsz", + "uhwj", + "jexm", + "bfjwzep", + "omvt", + "rbzp", + "qkhwba", + "ksjyefa", + "yfguaq", + "rnox", + "nlihyo", + "afyze", + "pkdiubm", + "prfj", + "gphdz", + "qreovng", + "yqock", + "rvhwzb", + "fhajzir", + "yacpj", + "dxkm", + "dfvzhns", + "hrvkez", + "mtcr", + "fuqsj", + "fgipe", + "mwsofr", + "wniuh", + "uytp", + "ljfyiuc", + "hudwm", + "rwoyau", + "qzwgl", + "ydxwk", + "sibm", + "oixjmr", + "tqeghdz", + "hmer", + "npyhdl", + "ltqbzig", + "coph", + "xibr", + "owdjer", + "ajvfu", + "tcokl", + "ktqh", + "toekp", + "trwozj", + "hnaupo", + "wykgq", + "hagupif", + "eznqf", + "nfulcm", + "huei", + "sldwtp", + "lxvg", + "syaumr", +] +slow_puzzles = [ + "grsamet", + "rqhwdmc", + "dizcjyv", + "vmdsgpc", + "uvwxsol", + "bekdtpv", + "wfcmjbu", + "bfmgpuv", + "xurdyph", + "qztirfl", + "iqpyfrb", + "kzmxrqa", + "tzenvxo", + "hvrecwi", + "ekucjiv", + "awdnrsg", + "hbnyitx", + "ohtpqjg", + "nzhgakl", + "yivpltm", + "xesflat", + "hcmlxwb", + "gorihca", + "ohurimj", + "pznmruh", + "omfvxyj", + "rnpctzb", + "gpvrojm", + "czbjusf", + "xcdupov", + "akiecuq", + "nczfvqx", + "szndmao", + "invurtm", + "gqfjwht", + "cwdanso", + "jwmsizk", + "gopdubf", + "uilxrow", + "retjkhi", + "qidymvf", + "aythxor", + "sfegkzw", + "ucvgqkt", + "bniwajf", + "cuxwodv", + "nsjkabc", + "zlohftv", + "spydbrh", + "pefsuhv", + "lptrwxn", + "kzerxat", + "ykopexg", + "prxmuwt", + "rqcxykz", + "hgbtreq", + "sljgbvd", + "ibqnlxo", + "rpciseb", + "xuaeofn", + "dqvucyt", + "vohezgu", + "tkqzgpa", + "giazupe", + "ycjlmha", + "gcoblek", + "vbrsolu", + "yavmsuq", + "loqpbzn", + "rpzetkx", + "ydrhvgq", + "zmbkats", + "zpobatv", + "cfvmhrn", + "zhysurb", + "fevjgkt", + "lkungvy", + "ogklzbd", + "vgpsfzo", + "kowuvqc", + "pmsdvfh", + "ovrbmsy", + "rcwxufq", + "mlwciho", + "pqdyzag", + "psghcut", + "ipdewzk", + "aywiuvl", + "cbgdwtv", + "pmwfjkq", + "npdkexw", + "urztjcg", + "tcpqfnr", + "lqjcnvw", + "rvytpub", + "xhgtrzf", + "mpiklbd", + "mwetxui", + "smzuvoy", + "aimlfkg", + "yiewgxc", + "dcoqwmf", + "mtkuxbq", + "pjoylvt", + "xacurge", + "cistlrd", + "xsegudb", + "hcplmay", + "nqhesok", + "qiofkjd", + "yjkgiwv", + "vbemslx", + "zgvteqm", + "bsryqcp", + "shtmicd", + "bihsauz", + "dqzcbvf", + "exphnqz", + "wezyagx", + "plwshvd", + "hcjuidl", + "tdlughk", + "expdnyl", + "noplkwi", + "rsyubfh", + "ydnqbrl", + "jwkfipx", + "rlpuqnt", + "yvebfcs", + "zohakem", + "osyqaih", + "hfsqoau", + "kejhcpv", + "mdkrecl", + "ryghzvf", + "hewvzus", + "zupqoxe", + "axhibjq", + "bfholke", + "jhyanst", + "dotzpwq", + "exgqfza", + "zairmsl", + "dpteshv", + "cdtrvxq", + "zebwxdl", + "tufxelj", + "rwskdlu", + "furtexq", + "kfeqbcg", + "cuazvfh", + "dugwtly", + "ihefugt", + "cuoyipz", + "glkjcsu", + "vfsoklb", + "dihjcrl", + "djhtpmr", + "jwezytv", + "mrgynxo", + "clsidug", + "qlekirm", + "lhfganj", + "nevzlma", + "mvbuqwf", + "tzuomdj", + "mshfxbo", + "fmsahpv", + "hwpeoju", + "pyejlvo", + "myioxnv", + "baghxrd", + "vaymscl", + "tfgwdjk", + "uphmifo", + "eqbvoyw", + "okwfrda", + "szmgnli", + "yjfnspc", + "bawflon", + "idrfhaj", + "wuthain", + "ajhsitf", + "ozcypmg", + "opsgwce", + "jrwqgpy", + "nuecwva", + "rhiotgb", + "qodwfvb", + "mkjqlft", + "cqibdkg", + "xpunykf", + "ihmkxzb", + "isolyhd", + "ohvkqfl", + "pxvdgky", + "bmhldxq", + "pilwfay", + "edvcniw", + "kgezomr", + "pzdwvto", + "eiafukd", + "twpofrd", + "ctpmehq", + "oewqahy", + "onrvluw", + "ntpmkxq", + "gosvuhx", + "egymvoa", + "okybnch", + "ocnpbwd", + "sfdlygi", + "jszwvlf", + "avoemkf", + "gljrqei", + "fluxhys", + "vltpwbr", + "hmwzgjf", + "tzvgfkx", + "csfjkwt", + "jqpbefi", + "cbrqtji", + "hmglozv", + "xjnthyl", + "pibzfot", + "otqbpkf", + "gctdmzw", + "uhkjrqp", + "emcotxd", + "kmfjsdv", + "qnltsby", + "zjrubnd", + "sfuywgb", + "pswxzcb", + "jmpbczi", + "ezqibfs", + "rpjmdzi", + "aweipmh", + "nlaruwk", + "mztbdns", + "megunzv", + "vractxo", + "oyjngwh", + "elcypwd", + "ioekgws", + "emyquhv", + "btiozux", + "zpcmsdj", + "cgtbzyl", + "bkujtcq", + "mazegik", + "xibegqw", + "knaolvi", + "wouqhsl", + "edabgio", + "kbnzgpu", + "xojadkn", + "ewhnfji", + "bvxhtpg", + "hiapbcj", + "rqlodit", + "bunhkmw", + "tjoqemc", + "nuetdzg", + "rfkpvql", + "rmxgfnt", + "guajbvd", + "xijeyhg", + "twqpbvd", + "lzbgemj", + "pywerzb", + "mchadwp", + "gdnpawu", + "aoempby", + "erinuqo", + "lkrebni", + "itvzcqo", + "jpzcblf", + "jbxokra", + "huvzgsi", + "tfwebql", + "wistqxe", + "dtbyrgj", + "zrsudhq", + "fdyhslt", + "gbupeki", + "vegrthm", + "dnpjuyt", + "ofxqnls", + "ajtsvno", + "pkljbyt", + "pydglvz", + "tbzcwin", + "oesfbmg", + "ywizant", + "eaoxysk", + "rqdcnky", + "dcfjylm", + "qocenug", + "ybxzrwv", + "twmyjaz", + "bjchnrq", + "ftxjboa", + "iepouth", + "pmgorxv", + "ryiqezs", + "oswqtld", + "jhumdgr", + "qdfxwcg", + "ghtzyqv", + "tkvnspd", + "agsyqhx", + "wuatmcz", + "qjabpne", + "qyxflnz", + "qsgveln", + "orygbpi", + "tevnajw", + "eyglxub", + "stkpeqg", + "ncayoqw", + "qavtebx", + "qcnwvos", + "hqjfckl", + "eakwjfd", + "bfjcngi", + "olmizxn", + "dzwjnae", + "ujvteiy", + "ndpkuow", + "dizjthu", + "bjqpiex", + "mqlosuy", + "yquvibs", + "hmatidj", + "gmrxavb", + "jdwytxh", + "zjcxgfp", + "mfhkjrq", + "hupevtg", + "atclokq", + "vphcaqy", + "xmkcihb", + "nqreawm", + "eqarxdj", + "ulvaqnr", + "zvotsaf", + "ztmiwkp", + "wtcqsye", + "iywrsoj", + "cmkshvu", + "dntawox", + "xgpmyfb", + "yakwzhx", + "jkmtwgc", + "klqaivn", + "mxvzqyf", + "evgokxb", + "xivbpoa", + "vtlfjgr", + "fwlmjzv", + "ypovhxr", + "pmqxaji", + "pdlqevj", + "tbvlsyi", + "qdkfgra", + "trwnbyi", + "xbnuvyt", + "kjouhrz", + "nujaycg", + "tadlmog", + "pvnqger", + "zmiaqeo", + "epngraq", + "wexgfri", + "imyrslv", + "lbzrkwh", + "kgihmzo", + "tdblpgs", + "qyejufa", + "dxyblaw", + "ixtvnqh", + "fsqmxct", + "zfbngte", + "yihoekg", + "ievjfxg", + "adtiqys", + "qthnkub", + "kcfmuqt", + "qtbhmeo", + "jozgter", + "xebgnko", + "pqfxuob", + "wiseqru", + "rmpcloh", + "jdpnfgv", + "tqsfgki", + "cglknbz", + "vwispmt", + "spmbnfr", + "iyrnugc", + "mxospjd", + "dmpabkv", + "ntkzofw", + "pesalqv", + "ajlfzoi", + "sgzcfdi", + "qsxnklb", + "mdngkzj", + "vscleuk", + "rkfqxlt", + "rwqsgyp", + "ulnwoyh", + "udvhyba", + "yilcqkb", + "qdexrwo", + "ukbfidg", + "qpvnuka", + "ywvdsro", + "vuxcojp", + "ybxuakv", + "nifaxrv", + "lethbwp", + "fetwzjl", + "wvxysnu", + "yxmfoje", + "fqvjbai", + "zsdauvb", + "jaiywtp", + "ycqnrhf", + "ijgnydp", + "mafhwvq", + "lhiuqxp", + "uqdsagr", + "jdxytsb", + "kgyeupd", + "irkaobs", + "jupbxow", + "emwidqr", + "apxrndg", + "qhsovzp", + "epajcht", + "ucyzfwv", + "xamvrgl", + "sectwxz", + "nthzrom", + "qljtyoa", + "mtwgxqn", + "cwqhfzl", + "hznyaxb", + "wfzjxqm", + "auojzxc", + "gsjvahr", + "sxhaqyu", + "wumvzoj", + "ragquhk", + "dwcxukg", + "fkgdmic", + "szbocfv", + "prqocdm", + "irtugwp", + "cteromq", + "owfjlcd", + "hzkwfxi", + "rjqydge", + "xtluqir", + "oryuwek", + "thyexrq", + "nxjqadt", + "gjdvlwb", + "ktqzylb", + "sglqavx", + "lpijxgd", + "liwbxnj", + "cbhfnpv", + "lsgatwx", + "zwpmoag", + "eucsozn", + "dajinfc", + "roynsim", + "xwamryb", + "gtxhfqs", + "abzxvil", + "nivlhou", + "qbnomsl", + "rbmhjsz", + "msoxwbq", + "rsykcmu", + "hkiuybw", + "tepgzhn", + "euzvysp", + "yrfklbw", + "mybguqo", + "tpxardc", + "zunygsc", + "ehyztmi", + "eozbryu", + "ycvumxf", + "aieuwnb", + "bhvnsdz", + "dkeapjx", + "ciuqylb", + "logkmzq", + "zwvhtxa", + "vgkhadn", + "isduxkw", + "diqnxfm", + "mwlepiq", + "cheygzu", + "dhrktsb", + "qoikhwm", + "qwlxhak", + "cankwsy", + "rzetuck", + "tceugbp", + "imwbenu", + "zrbtjdw", + "ahqorku", + "vspaqbf", + "tqgdvrw", + "larntsu", + "hxuskdg", + "acnmvwu", + "msozpal", + "hrifxzb", + "cpqgovl", + "fjepbsa", + "jednlcu", + "mkchpuj", + "xgiwjbf", + "fysnpeq", + "auoclsm", + "evgnjud", + "eqhsjdp", + "dpxtgou", + "xgtdbyr", + "rliaymv", + "ntfwyvb", + "sbhpgcy", + "zdytxoj", + "jxbuhfl", + "diluqkn", + "fhjipnd", + "pvkczds", + "phwjuzl", + "ftuqrav", + "iqudbnj", + "tqbvlrs", + "aoyivju", + "apkqetg", + "tvajfok", + "lmiouab", + "fkuwdix", + "gzprtaq", + "unvjwyz", + "atjueyn", + "gozmtlq", + "cspbmaz", + "xcbfehi", + "jiyfspq", + "kdqxgpl", + "cqlrykw", + "agrklzu", + "otjxrsu", + "eshwciq", + "ksfbepd", + "jzyomxu", + "szqrtax", + "jpfvlqc", + "fnosebl", + "wxrnypg", + "taxhjkg", + "etgzanr", + "olhrbde", + "bvrkaqt", + "nbgaviy", + "alwhbfr", + "cwzgfht", + "uhcmpon", + "ylabfze", + "eaywrtf", + "kauyrhe", + "ryojtqn", + "notadgj", + "dnqoljz", + "rhlsigt", + "jbpudaq", + "ecupxyj", + "svawzij", + "yczgxus", + "gkntodm", + "mqpthbw", + "slgaucw", + "erlkwmi", + "tnwxapv", + "tdpnzxj", + "rvyhgkd", + "yngxpiw", + "mjxqart", + "dgntisk", + "cnwsiav", + "tjglbci", + "ivoxehr", + "zotepxa", + "qsvmfep", + "qkzgmdp", + "xsudcte", + "fxaruec", + "gkoxqem", + "ojdgepk", + "vcbsrni", + "yanzcjk", + "ktcubxa", + "muwvqjt", + "juarfgc", + "wrilbue", + "pjoufcl", + "mtojunh", + "zuniskm", + "wdrnmuj", + "niqtuoz", + "vtugbji", + "edmknsc", + "crngtbv", + "cafvpnj", + "zoitace", + "qyisvwb", + "qkoytnz", + "uanvbgy", + "pacdrty", + "dekaivj", + "zernxjw", + "cosjkvz", + "rdimojk", + "dyfelpx", + "slgvwku", + "rblzojm", + "qdgfmxj", + "kjqoyfr", + "zvknres", + "zfoqucn", + "ofstekc", + "ynpvwdi", + "czlxhmd", + "giodltm", + "hrzgavm", + "xidphtr", + "qjotxds", + "hbscfnk", + "bohntwj", + "udpnqaf", + "dpgkizw", + "xevzwqm", + "dspuoty", + "drhlatg", + "fbxuliv", + "rjqtcuf", + "lmnwgue", + "xpjgyai", + "pxaclvs", + "zrxfnko", + "yqcvenm", + "xiljetb", + "rzvehtc", + "yztgqca", + "pbsinhf", + "ldkpqgn", + "fsioctw", + "tsplfgc", + "agesrop", + "fxobngt", + "wgyphrq", + "hzobcme", + "amnhiqu", + "ikcdahx", + "ebyxsgp", + "tqynskp", + "yztuemo", + "ohlxfcp", + "pvnfiqg", + "vbfgoht", + "eqtziud", + "tfidxbv", + "hqrkbjz", + "ivxzufe", + "bxkqmeh", + "hfvwjpk", + "cjnlkfp", + "aphkesc", + "eailmvb", + "cyhkqfb", + "hxyztwi", + "wqhjxru", + "iauydlo", + "xfigeab", + "dyaefgq", + "eautczs", + "dcgyvmr", + "pvcwyin", + "kgbwpue", + "epkvcqr", + "uirvdsj", + "xzyjsvk", + "yvsfoek", + "nwfhdki", + "hdmxpav", + "qitzvwe", + "rythuva", + "cjykghb", + "jhxmveg", + "pchqdfe", + "kdbthor", + "icejaus", + "maqgbdp", + "ljuknqv", + "jlqfesr", + "dltirve", + "dlcoazv", + "hfcjtqa", + "vbxryeu", + "ydlhswf", + "dfxyrjn", + "nocxyte", + "ishagkx", + "nqjkgof", + "nwrmhba", + "wsucgeo", + "plodhnf", + "rwcqysk", + "mxshcae", + "yhfqmkb", + "rscanit", + "zbfwiku", + "wfjrtph", + "tzurkdj", + "xpzwtqy", + "oxebmnc", + "nxpfkto", + "wgpbxjy", + "kxfwdya", + "vjaqkrl", + "qvrmybl", + "ckmfeob", + "wjknurd", + "zjsopxa", + "ebthlmd", + "bkxeicn", + "rtvmnbl", + "jisuanw", + "pfodcaw", + "scxzalt", + "lzobuqg", + "oenarks", + "pemhcbf", + "wvogxpi", + "ljfykux", + "xuyztsi", + "jkzbfqe", + "artbylf", + "xtpuens", + "vsjqcka", + "jswaoup", + "okerqsm", + "uifsqvd", + "mfwpjzq", + "kmptghq", + "ykboxju", + "wrpacvi", + "eyhmfsp", + "wysklrp", + "xwgkjyo", + "tlnigry", + "rxzmkvc", + "atjlnqo", + "ahfexym", + "tkezgra", + "lfvqcwr", + "hrzjbsg", + "zucnwpt", + "gfaoviu", + "rqsvtol", + "yfcqnsv", + "wdyrfng", + "dmyuxrc", + "yrpmuqz", + "ojaixkc", + "nmwjtlk", + "slvkpfc", + "bqaotgz", + "qghiuzx", + "sevbhpy", + "kvuinol", + "diszwau", + "lhuwjvt", + "viedzwc", + "dkycpet", + "imhjznr", + "amoleyj", + "omjikgl", + "znpitcm", + "njcsdwx", + "ayrdkgw", + "ewyosfr", + "iudjobp", + "evdkfur", + "kqxrfvw", + "yricqvm", + "gobexit", + "gyvktsz", + "oiwhegr", + "lwmxzhv", + "uvmarnz", + "jarlqzi", + "lwcutgh", + "jrwumaq", + "chwjqdu", + "rcnztjm", + "bcmtqpw", + "ewphsab", + "xocfitm", + "wchaukl", + "idzuhec", + "oimvuxr", + "spytifg", + "fgivrjl", + "rcaeonz", + "jexszim", + "cuwydgm", + "bqxyadv", + "sjvatkp", + "eolkwsj", + "nxzflpg", + "yagdjhk", + "byujdwh", + "ranhzil", + "vlkhygj", + "gmecrqa", + "dxhluyp", + "smvekul", + "qohduym", + "tserukh", + "opehrwj", + "xtfdojn", + "kerjtid", + "yfxoqwg", + "mjwtxkr", + "fueipbz", + "jqarifn", + "vwuyqco", + "mbphoix", + "ftsnbgi", + "eaimvoy", + "gwztaey", + "utkfaxj", + "pnqjuhw", + "jwhsoqe", + "gqhfbes", + "lecoqpf", + "tsavcdg", + "onzgive", + "edzschb", + "vuoxbmc", + "jyhdare", + "zkpfnlq", + "aonxsty", + "nbpxdis", + "vqtjzbc", + "uvpsmxk", + "wvixpon", + "jaoqgbc", + "fueqljw", + "exkdasr", + "lfeapzc", + "qlirduv", + "snqtwgf", + "fsbrled", + "idzkrql", + "gkdpmyt", + "nludcqo", + "nozjecm", + "olzgpis", + "cenzimj", + "glqmjka", + "nvyzwpc", + "ndqamij", + "sipzqcl", + "mnhuyqt", + "bpnxowv", + "mnwjsrq", + "zutkeop", + "rynglaj", + "uigzrhk", + "ztnfhag", + "guvrqdj", + "frntxlb", + "etvnzux", + "ceogryq", + "efsytcu", + "fqjzinc", + "zolpfrs", + "pszwrhl", + "spykrvd", + "xkpmnte", + "yscleav", + "qikfeac", + "ujrsyno", + "ehodqrx", + "hqzxaoc", + "vfioqsz", + "jrpwyqm", + "ixztqfm", + "wqsprna", + "hpqunmd", + "bymekxn", + "zumltnq", + "pvjzndx", + "iopasxg", + "pzngfri", + "xmeohui", + "gvmnkqh", + "urxaljs", + "rzhfbpa", + "klnmetj", + "tsmpyib", + "nvjacpu", + "moaqpbk", + "xmebwci", + "dackmez", + "obtsnfl", + "lojzcvx", + "vylhksm", + "bwneozv", + "dysrgnj", + "jtdkpiz", + "aujozcg", + "xytemvf", + "slnjeoq", + "okxdpcq", + "aopzbgn", + "qivesrl", + "wmagsxz", + "ylrjztc", + "whnzecf", + "padrheo", + "iumxnhv", + "xozfkyv", + "fatkqnd", + "jqlkgsn", + "vcwlfeq", + "nxzpidk", + "ruaqsko", + "jfbqyxd", + "fezcudm", + "dmbinzo", + "ljpeaqz", + "yfjkdvq", + "jbxtvfz", + "qduhscp", + "alvfnrd", + "ygseivc", + "jhkcrld", + "rxqzmfi", + "nuhjywv", + "sabmufo", + "jdxizpq", + "gjfwivo", + "movtsla", + "xuagidj", + "vutlwrh", + "tvwxiph", + "cifotvn", + "plvayum", + "mpxefcr", + "rqtmelv", + "gxibjpy", + "uopajed", + "ipqlugn", + "yaxokqd", + "bxnimzt", + "zkplwxg", + "octjery", + "gtihfqd", + "aofvenq", + "xhyvkft", + "mgxdsij", + "mswfdyr", + "xrpiyah", + "ustbhka", + "ucnztbl", + "dufwbnp", + "fqrvmoi", + "whuqizy", + "rztjxky", + "iwcsouq", + "jtazuco", + "przjcdi", + "akmuobx", + "spbmweo", + "yxoswzj", + "grqjzdt", + "afgjowk", + "clrdhjm", + "nvdtiyl", + "nmvcolr", + "magjusr", + "ocykqsa", + "vwmnkoa", + "htkvifu", + "udykxza", + "idqwanc", + "cqdnfkx", + "hxuwmvl", + "idwfgvh", + "yemojwu", + "uqftmgh", + "tybrfsq", + "ohpunjz", + "gtklpre", + "qcxsydb", + "pjasdrc", + "xszivgf", + "lkjfqdi", + "pnkmswl", + "cdnikvo", + "qsenhkw", + "mzwjqgu", + "mzhtwob", + "loncdte", + "gtnhyli", + "pfwbven", + "fidgkrm", + "dvbjnoh", + "vzwqjxm", + "eqnjaup", + "lpgeqkx", + "rhfwbop", + "ghoajpv", + "zrflmsj", + "uoyqicg", + "jdynrsb", + "mqxtjbe", + "ynkpglj", + "lhpjocx", + "kjoxnwl", + "seclabd", + "wfcrytm", + "uctfosp", + "xstklgj", + "lnftuze", + "jliepfd", + "brkdfiw", + "syfxvni", + "ntwaiqs", + "gdhostm", + "cfxnryu", + "jbvlxyf", + "xfdqzys", + "aopfmwv", + "kxscbzi", + "qhylrfa", + "gsojtdh", + "prtwqgj", + "zptvrqh", + "ctrvoma", + "hlrpuoz", + "olcsrbu", + "rsazbcx", + "ktelzxm", + "nklwquv", + "xiloagd", + "qiyjgvm", + "wnmtred", + "qledpua", + "miztpjr", + "osymdtp", + "xhapwtv", + "afzipse", + "sieaucn", + "qcmbhzl", + "eyabqov", + "rpqolwe", + "pqrhjwg", + "njtdhky", + "trxmvpo", + "npavgkx", + "hckbsjg", + "durfmyk", + "zwcmqxk", + "lkqthys", + "whiaeyx", + "uvtmzaq", + "vnugyek", + "zrvwbxa", + "ctxuaev", + "mfoprga", + "hmicsou", + "xgytkmc", + "wbcitpg", + "xzhgpma", + "pqouanz", + "npasuhj", + "abogiwh", + "kgaljme", + "dljafub", + "fxjizhv", + "rszhuvk", + "sgymhro", + "jtegqzd", + "criaynx", + "ykcurfa", + "ysnwhpc", + "nyqujrd", + "lsvrumw", + "rfgewui", + "vdwshob", + "qwpanut", + "urdbyjh", + "ehtrxso", + "trkclzn", + "qcapkio", + "icfgbzo", + "rqwnvtj", + "cdtekfq", + "oiplgau", + "slqcgrh", + "qvgprca", + "eycdufm", + "nfjehcq", + "xaruvqj", + "ighobqv", + "altzvof", + "rcetwgh", + "udslbpx", + "clxoutp", + "buksgdx", + "lyrfenw", + "ofitqcg", + "aqsvlhy", + "kpwzygn", + "lhfstuz", + "kjimpnc", + "nricgue", + "klbgqrt", + "rwmpqgd", + "vwfahjx", + "ldrnheg", + "profbln", + "dclqbvw", + "kugytxp", + "hngqwlf", + "hlegadb", + "zuwaykr", + "vwjdkcb", + "gmfulzc", + "syiqedf", + "phruqly", + "rbytsuj", + "wgoxcvf", + "kyzuirb", + "ovsjcwy", + "mgfzobj", + "xenfuad", + "rsqubxd", + "xjsqyoi", + "fnbzmcr", + "ynumsev", + "xvohpcf", + "zvmxdkc", + "lmuktfg", + "fkmbxvr", + "tplqzgc", + "cfmdrwv", + "kztvelq", + "kwxoryb", + "qblfnsh", + "afkcyeg", + "tsqaldr", + "bvlmwhd", + "xqamfwz", + "gyilkcx", + "xvqwycz", + "ucbglst", + "bawoqrg", + "myklofd", + "zbsxldj", + "jxqlbcp", + "lbhmveq", + "zcbdlui", + "jnxtdsl", + "hpnftxz", + "wmbxvht", + "zbfqwpk", + "huldpay", + "wbzdmkf", + "wnculpa", + "sdlmirq", + "xnvihur", + "yefjkvo", + "aofwsux", + "qxnbtay", + "unfeazm", + "hfxntqp", + "nzhpwqs", + "qupzksc", + "qyvtsin", + "kdaouyw", + "mcqoyvt", + "ultmsax", + "rdwjcfm", + "btlxjeq", + "eohbsvk", + "rsjywbk", + "wpsaycu", + "jhrgmen", + "ywgsavj", + "sexbkow", + "uahmcoj", + "zjvrxuq", + "ecqxgnp", + "wsnblyd", + "rdlpgfe", + "cngjhwv", + "hmcadjk", + "yujdzaf", + "adhekcw", + "kdywvtp", + "rcsmqzf", + "lywgdpi", + "etkdjyu", + "hzbpuxv", + "jhdqmyi", + "xnfwalm", + "kflhoau", + "jkzoaxp", + "rxnadpb", + "cmhqlug", + "oqkgsnx", + "ivqwhmu", + "reskxuc", + "jibctqh", + "mtelrpb", + "rngcdpe", + "zdrbato", + "ltrpgni", + "xchrmae", + "juzwsmq", + "aquydte", + "cutnldj", + "gfpmiqc", + "nybwsqv", + "hobprxi", + "jbutlix", + "irhajoq", + "hnqgjrs", + "nptgdzl", + "wzfkqum", + "glrmytv", + "ubrhjzp", + "cltngbz", + "tmorgby", + "qfysgdh", + "jbzkmxv", + "rzfthua", + "eclubhx", + "stqaxmj", + "fberlax", + "yniqmhj", + "etvjmuq", + "lexfsjd", + "gbfcwja", + "noqcatm", + "cgrusba", + "joslnvt", + "lvxjkya", + "iuodjls", + "dptriuy", + "ksjmrob", + "fayonei", + "bqlinuz", + "vloncir", + "xjekvtd", + "yjshgxp", + "xjfzvhb", + "wcyseoz", + "ldrmnaq", + "beuctgo", + "nlcpmra", + "eixzybg", + "ltiedhv", + "utdvelh", + "nwcqpxi", + "ztviulm", + "htguzse", + "kgurayp", + "bjmqgyn", + "oltpnjk", + "ignlpvj", + "fvdzhjr", + "fyrqboj", + "tvsfjqk", + "bjmkhen", + "gtopnvc", + "meiostp", + "vktldem", + "iyvgfet", + "tpqmxhn", + "pchintg", + "oshzpil", + "tiwxmsv", + "rvgomud", + "eborvhg", + "sqzmkrw", + "jlhmigk", + "bwojtkf", + "cvdxfue", + "xigtvnl", + "gwuhzfi", + "fcjkgro", + "axvqder", + "jcdlibm", + "jfxknyw", + "hjultmw", + "wdkgncj", + "vgrbnlx", + "swdonvc", + "rntqsxe", + "nfuthjc", + "pownasx", + "hyaqixg", + "qhntfeb", + "ezrxilt", + "nmapesr", + "vafbziu", + "xwqcura", + "lbpnxva", + "dtxyrec", + "zjrmghn", + "kzpxclm", + "rqosvnm", + "emrukwx", + "ohgdzyn", + "ypvwhju", + "prckfzo", + "quvlxog", + "imdgexh", + "qimaeho", + "ysloivt", + "magzipr", + "kljywim", + "louymvh", + "vuribya", + "anrpquv", + "iqjybml", + "bnryqsl", + "bnsrmhx", + "syxlmqk", + "qilywtv", + "bqnzjlf", + "kcwdmnx", + "ogtiluy", + "mdviopf", + "qeipodu", + "ezrdtki", + "kzrcanq", + "shxmtdr", + "qlejizg", + "sjpwrih", + "iabglyd", + "thxneru", + "ukrzope", + "zyqwecp", + "izbsurl", + "pagonmy", + "ntgezuw", + "lsyznik", + "fdahkyg", + "hvkjbqx", + "bivxusl", + "tgnioph", + "icvdqwz", + "dpuzfey", + "nvtudlx", + "qoykmwa", + "gqsrbhp", + "xuwsior", + "plhfurm", + "mfpntxu", + "ufcokxy", + "cvumwlg", + "ltdobxm", + "avdfyox", + "jpdamfl", + "swlnxrb", + "yxhzfse", + "nzeyqbr", + "zyhkplf", + "pgwcniy", + "sjtubek", + "uztswpm", + "lcyoput", + "usravek", + "xoqhetf", + "wmgfbju", + "pvnbiwf", + "dqrfkzv", + "uviqpfe", + "yuvjwmh", + "uxdjzlq", + "odngspa", + "idxgwyu", + "arpscyw", + "fhiousw", + "eviscky", + "iojvatk", + "gwsroqv", + "pgjslrk", + "dtygnqe", + "voaizrd", + "yfcasil", + "rpasmgc", + "jmvhkag", + "jhkzvfg", + "iqazpjb", + "xkdaiwf", + "zldguxa", + "wvjcpzg", + "vqarycu", + "jslikyn", + "wgnhszm", + "buhsota", + "qrbxyhs", + "wajpgvr", + "khnwxmg", + "qgjivle", + "nhipryo", + "gkrvqiu", + "xcmhfus", + "thuwiak", + "zgoyfwr", + "xvcuypk", + "zifqgke", + "yhwnksd", + "zcvlgfn", + "pecqohd", + "icmjhwd", + "omhvrdq", + "vmeknxo", + "cfytlxz", + "gniwhku", + "fdwjmiu", + "vtnqeyb", + "tlqvdsy", + "xteusqk", + "kywcivr", + "mjykhvr", + "qvxciea", + "yisklof", + "luasikd", + "ygqtoxn", + "visfcha", + "ufeqmcr", + "qiymnsl", + "vrdbitq", + "aqzkuwr", + "godebtc", + "mksehaz", + "zahible", + "krnzehi", + "wpvjigl", + "dpeboki", + "lspmotu", + "nhgixtl", + "wbfgqmy", + "qsvkntd", + "vcghwsu", + "tkcdweb", + "yzopgvd", + "bzuajeq", + "wvulcob", + "orskgqv", + "dbwfuyn", + "eajtkrm", + "gdohwxp", + "pkojqea", + "rduyqgc", + "xsyrelc", + "imdjrlw", + "ryhsodi", + "wheplqz", + "rgiwpxt", + "yfxndso", + "dztsyjq", + "pcfvhei", + "hvyocsp", + "rnxljdf", + "awqefpk", + "aibsgym", + "mcdyszi", + "dqnwbpy", + "vjdohum", + "vprjdom", + "fohxspe", + "zgpvkyo", + "zgtwndc", + "yzfntgu", + "ltshiwe", + "lfewmyx", + "dzgebvt", + "qmckupr", + "tyvngdz", + "hzusjwl", + "sgtkzny", + "hjwoeyr", + "cgawshl", + "bwicmnp", + "zqukgnv", + "tylnqms", + "veugdmz", + "ekydzhr", + "qdlhzmk", + "pzbjhrw", + "dblpcnw", + "hymczqs", + "avrwdjh", + "aqidplm", + "lovftja", + "yofgmcu", + "bsiquyr", + "qjtycui", + "lwxjvbr", + "jcsqulb", + "jalznwr", + "uhkobvt", + "gyhrmtw", + "xyemukl", + "tdcmywi", + "lnmikes", + "kbslutm", + "sqvhfox", + "ogvnimx", + "ytepijh", + "ihdkupv", + "mqzofjp", + "culpjtr", + "agteqvo", + "uswvfdg", + "vdlsewa", + "uipalxz", + "mndcqes", + "kfowrae", + "respaxn", + "yuotzvq", + "xhwapzr", + "zasuhoj", + "kaqwtir", + "kpmnyau", + "yukiwqt", + "lqeciyr", + "flapbqx", + "fkzhtvq", + "gykshaz", + "nhtmcyq", + "tfbreaz", + "hgmnicl", + "ydukxfe", + "mcxzlnt", + "zpridaq", + "yvagxok", + "felrtap", + "yioajpn", + "lftcdym", + "tophwmn", + "negwpmv", + "jlgwkvz", + "dufengo", + "zbpalxg", + "smuroai", + "viufboc", + "ilenzbc", + "jgkrdny", + "gchitpn", + "ohnqrwj", + "cgivesy", + "ayjsvxn", + "yxpzqos", + "abfciln", + "swtaovp", + "cujzyrx", + "jbczxeg", + "drfoskz", + "fkseoju", + "ldqjhzv", + "jnaqbox", + "jymdazb", + "jxkndut", + "unwmpeh", + "oicqywn", + "ztnuwbv", + "yspvbko", + "mayuesk", + "zdjreub", + "oafnblz", + "hzftidr", + "kbuhnwj", + "lyoawsp", + "koftwyp", + "tcoxyka", + "gjrmixn", + "dwmjtif", + "afozpxc", + "emorwfq", + "umtizhg", + "qiewgck", + "udkwmqo", + "zcosbyu", + "roetwjv", + "jewmykt", + "qbhlcto", + "kjrfhob", + "cefdsyl", + "ctroueh", + "vhtdyob", + "idrnxha", + "sjzlfhg", + "yzthrxl", + "bctxpsd", + "wghapxe", + "tqjarsh", + "htzwifb", + "hfirtjs", + "mkbcghq", + "fthpjkn", + "ohpryxg", + "cnzstob", + "dzbmquf", + "lpfbznw", + "qanjpyw", + "gkztvns", + "iwpcxko", + "bowyvqg", + "kqsmter", + "tqbsumn", + "ilpzxvu", + "ecrjynl", + "ubiaofl", + "ahjrkfc", + "kvhjauf", + "piqnusm", + "xvljdri", + "ztmpolr", + "ksuxzja", + "idvrwet", + "otlzyuf", + "tmqgilc", + "ybkqfmc", + "vednljq", + "tslwhoy", + "kulxdpj", + "uchefrp", + "btufqye", + "nocbkjy", + "hlgiytw", + "drzkqws", + "jpmvydn", + "fbrolzq", + "zpqehtd", + "jqsmreu", + "vbmsckl", + "nagflmq", + "lstvohj", + "bihymjc", + "aydhtzx", + "sorkwiu", + "uvocmzj", + "qgphudy", + "uziaqxk", + "isrmvgz", + "wnqkgzx", + "bcovdyt", + "egnyqdt", + "wqaljiz", + "kmfnalg", + "ldktuon", + "pkogzfr", + "suetgqc", + "tkzyprl", + "evsjxdi", + "cmavsng", + "wvghiuz", + "fcpmywb", + "wngzvck", + "vsbthnf", + "vzjydqr", + "wetnosu", + "kdhnzmv", + "swjrbxh", + "noqgmti", + "dtgicwr", + "kfsjqbh", + "orqaftd", + "mjluezw", + "ynrpjst", + "bzxsgyj", + "dcrvqfs", + "sxqfozm", + "lijwptf", + "nqkxowt", + "wnofibz", + "ehwzrsl", + "iqjwcvb", + "axkjlhw", + "yxesocl", + "nmwpefq", + "aeusrzk", + "rtljfka", + "sbxthgl", + "tjqfclg", + "mifypbk", + "mubqhkx", + "vlyzqaf", + "qlxtyrc", + "kygsexz", + "qnbivmk", + "ipkuqwd", + "kydpfos", + "gjuvely", + "vilqwez", + "zbelrsj", + "rlhxtpo", + "enfdrjw", + "hmtjaxe", + "mrvtjbs", + "nsvjmur", + "lrpwjfm", + "iwtdsrb", + "gdcpwlh", + "jizwyap", + "lynvugi", + "xkzqylf", + "jmivfxo", + "oukacnz", + "wnybkpq", + "kvbwagd", + "pvtqywo", + "embgfpr", + "qofuvne", + "wblkyte", + "ptzxfyc", + "gjpauqv", + "znpfbow", + "jaywvcr", + "gtzmrox", + "gqlchro", + "brvkpny", + "awtcfqi", + "kjiryxd", + "vxehzwa", + "bagojmh", + "ctmxvya", + "efwqlmc", + "ethcqxj", + "nepvxbi", + "adovsjr", + "wtpldcm", + "vkpirwh", + "sirnoku", + "zrjnqmx", + "ownyber", + "wqrefht", + "zgdtqlk", + "eqybdwn", + "kdugzqx", + "xauzrvm", + "hnrufat", + "zwgdtby", + "zcdepku", + "buwjtcx", + "bhaftqo", + "sjrbfxn", + "biatuys", + "gcvroin", + "tidjqrx", + "hkamvgp", + "trnvuip", + "nfcwbyd", + "jtoexhp", + "hetxwgy", + "rqwukdi", + "ewrbldi", + "uvnzpit", + "hrwcigp", + "gkwbdzi", + "rhotbuy", + "ljrkgwc", + "cxhritp", + "qvetion", + "xvpinwg", + "coylgkm", + "flcgsib", + "mjwuaph", + "gqiodvr", + "mxbfnzy", + "rocjgmh", + "lugaztq", + "rpomelw", + "vdbmykq", + "vktbyqm", + "vlryfju", + "gzmrfcs", + "oxfqnzk", + "qxjwzgy", + "rqekbsv", + "pdvrnxh", + "kpedjyo", + "vmoipka", + "fzlipmv", + "aifbrkm", + "pgyofes", + "lyjzqxb", + "fyhdmzi", + "mycojql", + "takymop", + "xeocajp", + "ryzwnlk", + "yixtbde", + "wxmuqft", + "igovczs", + "sjaxkwc", + "cjpdfkw", + "brveokl", + "yapotqx", + "buhcjtx", + "xzouybr", + "iyurtvp", + "jdnozcu", + "zemnbtd", + "qlgprnt", + "ixubwym", + "ragflou", + "mpanzwh", + "sbraelh", + "obimpjy", + "iejxyco", + "duhkmny", + "aftonbx", + "wcdovfj", + "cxskvdn", + "fasvltk", + "hsadzqm", + "uzhdwct", + "zsfxecn", + "cmwofgh", + "bciklzv", + "kzcvpnf", + "urmofcw", + "hwjegts", + "mhqkerc", + "dutncxz", + "xdawyhi", + "opgnrsu", + "xqzaosu", + "zhaylsx", + "jcvwszq", + "bckplen", + "upgnmdt", + "zhoaxye", + "znfgthp", + "joptxws", + "wstgmqp", + "biuknqy", + "tzvdlxf", + "nfqivxj", + "yiuvzag", + "hniswed", + "pvdtmja", + "lbdskpr", + "zlgaend", + "zrofdjw", + "kbgonyf", + "dfwqjvb", + "ianglmr", + "vqwiuym", + "qbiplts", + "gsbtzrk", + "msopvnc", + "zhiqrom", + "wgjuxao", + "rdgbquv", + "ilhkxjq", + "mtonigr", + "vxbdpli", + "hetrjlo", + "armhlxn", + "jairgcv", + "ajpdzvh", + "hduszlg", + "syfevul", + "uketgnf", + "vtdrimf", + "kjfunez", + "xgbydfh", + "tgrqphy", + "soewvyn", + "tuvfznl", + "pxzfsjv", + "wmztobv", + "jnplgms", + "eovikwx", + "dbnkzji", + "pvxodcl", + "xvmjkat", + "miuwgdl", + "lzjeabt", + "bjnfpui", + "pyqthkx", + "rbijyvz", + "xaubwgq", + "mwjkdtc", + "elbkrdv", + "jybgulk", + "nzamyfq", + "qniklmp", + "hzoksgd", + "avbzuyc", + "qydcjsb", + "mdylqas", + "zguvyfs", + "vkuwjfa", + "zqadktn", + "twfqiyx", + "vwzejsq", + "veswhfg", + "eonshmq", + "nqcjfzg", + "dzeyqbi", + "edtznym", + "svtwiej", + "rotubik", + "copwkjq", + "koxvnbs", + "pouirfn", + "ynjvuzm", + "nscwhml", + "inbuflt", + "ricmodf", + "ebcwdup", + "atcngjs", + "wvunqml", + "ihumlgj", + "nflktis", + "amjzxfn", + "nxhokls", + "unxsqbl", + "vcsjegh", + "whuzype", + "ipglwfj", + "thcysdb", + "xhnkqmi", + "ktvfrqa", + "ptycigf", + "rgywiof", + "pztvewo", + "eclishm", + "sajwcbr", + "embfvjo", + "lfokqhc", + "asptfvy", + "pcdhwia", + "keovgcj", + "btynpeh", + "gheluvn", + "ervxdac", + "zksynmq", + "tezrmyq", + "eokgxzi", + "psmqhbz", + "kchzbaj", + "dujgbrw", + "jhxpioe", + "obhardg", + "cvufnow", + "okcqetz", + "wqnhjda", + "opqfknz", + "kirsvtp", + "ydbqhzk", + "ekfucdt", + "uxbyogr", + "glivouq", + "rqtewxp", + "mehylpg", + "qlrphjm", + "axvsejk", + "neshrqo", + "uksyhzd", + "tckdrlp", + "stgjcyw", + "cigznvd", + "nztgdes", + "jluszmo", + "oldbavg", + "vbtydqs", + "xpgdyrh", + "ceakygn", + "rqlpyaz", + "cwyjrpi", + "epoygqk", + "bzwmauf", + "jlmeyqk", + "cldngsy", + "cxuqdjo", + "fqhapux", + "kbgpoxa", + "iaeogtn", + "uqpfotj", + "ovwrcps", + "qzvbrpf", + "gbkcpov", + "impwgae", + "sqwfjkl", + "hzrkvyi", + "gvywrbj", + "chmkign", + "tdcprhk", + "nzqtgfc", + "gwnkhse", + "eovjdqi", + "hgxpyqo", + "rgyhmcu", + "myexsbp", + "bcpyfla", + "exrkbfi", + "emxhopz", + "brjfmia", + "mytvfwg", + "zipcrwd", + "lsgbrdn", + "cfqwzsk", + "rhzwntm", + "bsoeahd", + "edgrzxw", + "wsidtca", + "vihmqkf", + "unjvtwg", + "jrkyxca", + "vnefqdi", + "amsunjc", + "balejyz", + "skcmoae", + "iqrxaev", + "ykrgeoa", + "nfdsuay", + "fhpozxe", + "fvcdzty", + "igfwcqe", + "dvnrmeo", + "suqywhp", + "qtxuvnl", + "eitnvql", + "yvbuxsm", + "owtcjnb", + "nqylrgp", + "nkltamg", + "uihkejq", + "dgpyanc", + "ocwganv", + "wmkrtoy", + "jhywdgo", + "ovxhrgb", + "arsbwnv", + "lgeovhz", + "vijqdyl", + "yoiwltk", + "jfbxcps", + "pajwqsc", + "jumpkot", + "mewbyot", + "vfwzima", + "yrwncop", + "xuanspy", + "gqhudsl", + "diyszwf", + "cusdqon", + "fuszaij", + "bxygqdv", + "dsbzxrl", + "ragvxqt", + "ymvopnc", + "axneptw", + "kzxpfqw", + "cwohrvs", + "asincjy", + "lzdvmkr", + "wpzhbku", + "tgovkij", + "idmtxov", + "dsihoky", + "hdwvscn", + "gapcsky", + "fclxgvd", + "zdqyxvp", + "kzrxnhg", + "ktpqwex", + "dcfxtzg", + "rcnedvb", + "tezchrg", + "kyzbhxs", + "xzydqji", + "ohemwfv", + "ckshtlb", + "xpogzcs", + "wypcsgb", + "jgvwfap", + "xagcnbw", + "pdzlhtm", + "egjodxi", + "fjbtedo", + "sfkzxie", + "eplcajn", + "eopdqsx", + "mdqkuxw", + "ndfxjyk", + "rbxnlau", + "igvphqb", + "wqealvx", + "wygexkr", + "qvjlkti", + "gysonwr", + "ecdypsz", + "ksbitwu", + "rwnvkmy", + "jnfgoqt", + "prqzukh", + "wfivujt", + "njtvypw", + "fvnzhck", + "cexsjql", + "vubtfmo", + "kylqcwu", + "lntojhf", + "dzjayet", + "nvwcmap", + "rcqmxkh", + "giatrho", + "wjoxpty", + "omirulf", + "jwyguae", + "fwqstuh", + "tqfpxbl", + "pxcwimu", + "fbdirqt", + "qcpfwkz", + "heozigt", + "qfzgbsi", + "kenytiz", + "bfmcsop", + "mwgkytz", + "rhgqvcf", + "aibdhur", + "fhvslcw", + "hzkfycp", + "zkqgefr", + "xhlktyg", + "tequpyf", + "gchaqmo", + "uphojtq", + "ibtlnaq", + "fvmhpsu", + "kdtvbfz", + "gbtykul", + "yzipnaq", + "btznjiq", + "jeuihmd", + "gfbevxi", + "zlekuia", + "qztbdnl", + "voqpnzh", + "mnxwpqh", + "vnucqdb", + "vocmixd", + "cqnxgea", + "wijvmhe", + "idraogk", + "cxawfog", + "ryjhwlb", + "kxatwep", + "rhvltyo", + "wgxinfp", + "uzwmhct", + "syapucn", + "govsnxl", + "vygrwpk", + "dpyjxwr", + "iroxcln", + "arzjuyw", + "dnoykux", + "rzmsitj", + "ygkxoai", + "izkseab", + "ouncmdw", + "gjzhbfv", + "ehqijdp", + "vtliwnk", + "iqexmfz", + "wjmspkv", + "mnecijs", + "wkyvaim", + "bkxyair", + "jyqkabv", + "fkmwlvs", + "suncbvw", + "qpyvldn", + "odcbhyv", + "ntejywx", + "apqruhv", + "wqyvfir", + "cdzwsxf", + "ulbpxyn", + "crzesnd", + "xzloauq", + "prysbtl", + "otimbqf", + "zlyamfs", + "yevoxpq", + "nxiupgj", + "ewodxyb", + "prsnhcz", + "suyahqj", + "epfokvm", + "pigeuwc", + "ghamejy", + "nctqjfk", + "bjlvxos", + "wgmzhpe", + "vcgebla", + "cmyrkjs", + "hbxjcku", + "hyqfbit", + "sjykdgi", + "ucyzxam", + "tnuakrl", + "qowtjev", + "jpviowa", + "zcwvygl", + "jtpgubr", + "lohgaew", + "bftkmyw", + "ynmhule", + "jpyglbi", + "aiwkvcq", + "vrsqikt", + "gbwhlkj", + "ermtgbo", + "arjpyik", + "rekvuam", + "muyoerg", + "rhkmizu", + "zplnvca", + "ihyvlte", + "tvlqcer", + "pzchbsy", + "evcmnfu", + "qbpvymc", + "kwusdyj", + "fxroite", + "ncidvah", + "pghrdit", + "rmodznh", + "ymazdko", + "kseuhtr", + "cyakguo", + "hiozanj", + "dmrilts", + "xcqpzoe", + "mvpxqly", + "qrypnjc", + "twgzeny", + "qeyhtcv", + "wozlpcs", + "kqoxhtu", + "nvtycli", + "wmonpst", + "efzgyuc", + "klqpayx", + "nfhsepi", + "rdzxkpl", + "thvcsua", + "fgrzivs", + "kweyjdn", + "flbapqw", + "cpbzuno", + "xierybu", + "svnmtqy", + "amdcuzo", + "gnpahsb", + "yakstpd", + "rpsxwfv", + "uzxpeay", + "cftmupk", + "nxltboe", + "jkxmgwn", + "uiredqn", + "zehvxol", + "tonwijp", + "goxpcjd", + "zpexnjq", + "pcgnvzw", + "xmbpzcy", + "xjgkmuw", + "gbumqiv", + "cktjyxs", + "wnbdmlx", + "vaoedgf", + "dfqznbw", + "mbgovqa", + "gybnsoh", + "ivwthnr", + "uydmacv", + "zmxdthr", + "samhbry", + "gqnhdxb", + "uytcpov", + "bxozrmg", + "xarpdtw", + "scomrtv", + "bhfmnya", + "tbgoluh", + "nocjisa", + "infbqvs", + "nkfjwcq", + "vsjinyr", + "qkryfcu", + "urmqavh", + "beqazrw", + "iszqeyh", + "ntkwvmr", + "funabhq", + "vdsljpy", + "yeowzic", + "mfbhoks", + "pxqiflz", + "joesdax", + "lspigxc", + "vwprkqx", + "snfrojb", + "vjflard", + "gosaeyv", + "juxctel", + "gfjqanl", + "xwvaojz", + "dcgjyrw", + "iemcxrn", + "ntdmipb", + "kcwrpot", + "sqarpex", + "jnymwie", + "msdylkt", + "nbzqtpw", + "wegapro", + "jcpbvfx", + "bletpis", + "rfmjeoc", + "cpjvkls", + "bvkuwjf", + "ximbauw", + "pszunwh", + "eoufvzh", + "jyfshtw", + "xpiqdsy", + "qacznpk", + "saqmbev", + "krwidvf", + "erjowcx", + "tvrwayl", + "mrbtuij", + "lzswctm", + "xgohkcm", + "ihayrwm", + "qnofmxu", + "kodcbqy", + "yhoaxgc", + "ywmeoqp", + "xobhulg", + "hydbtmw", + "adhypmw", + "nptqwga", + "dsvcuxt", + "cvfzepk", + "eydmlzb", + "ywjxfmr", + "stkuyfq", + "obretpw", + "acguphm", + "jbidftl", + "xfoynjq", + "opvhlgx", + "dpvxils", + "ngcqhfd", + "uylrgdx", + "qswbrdz", + "vlncakp", + "iogdrjn", + "anpeqof", + "noluxpi", + "vnuazqp", + "gxdkypz", + "ngcmxtk", + "kibrtov", + "ofhzugs", + "wsgxtdp", + "ruagikv", + "cmbijky", + "wahgeib", + "ztwnomc", + "hyabvqw", + "cxmpedg", + "zlyetsr", + "cewltdv", + "aclkoez", + "odplrkh", + "pasmfzb", + "igjwoqy", + "nbxfsmq", + "hgtbwqp", + "pvohfzt", + "whsotcq", + "dojbhwu", + "zfejybm", + "awecdno", + "nckpmlr", + "bypxcws", + "icramph", + "zvyqnij", + "mwfqgbd", + "ifkbpsr", + "bkqfjet", + "vewapjk", + "neovkxj", + "qxlijvn", + "zipnfaq", + "ejvhmzr", + "msoviet", + "dwrting", + "rijqaok", + "mokqvry", + "dzwlnaq", + "kisrpca", + "ezjnlqx", + "lwzadgh", + "dapyjkg", + "gekolcq", + "ixvtngz", + "zjrfctv", + "uaohxjr", + "cplmjsh", + "ckaxhtr", + "oyepjzf", + "bpwmzdt", + "zbtjqwv", + "wtzcpvf", + "zxfycpg", + "bfcmurx", + "mblwkne", + "sedchmv", + "fupcsvl", + "gnhyfzb", + "kxysdiw", + "upqxeoy", + "riwedhl", + "kzwehlj", + "ubhqwla", + "clsmdkg", + "wktyzxa", + "wqpyack", + "gbrydwx", + "cezqkoa", + "jlbmhxu", + "mbfaire", + "rygxltn", + "gvpjmdn", + "pjlfiux", + "qibwpfj", + "ywvkzgf", + "bmpkcto", + "rheljdu", + "alikfpz", + "yhfasje", + "hkiwgyx", + "fjsqpoa", + "xgmrwao", + "dxkvjql", + "soaxwhu", + "zarbhoj", + "lfsrxvz", + "qrbxpkf", + "ndghepl", + "ptjoadh", + "rqkzniv", + "byswfdc", + "oqjdups", + "gwzlueq", + "pjfhbie", + "ivphwen", + "fvmausz", + "evafslt", + "lpqwsur", + "caiezxk", + "tdspxrv", + "rzxinvf", + "qcfjusz", + "yrdnjzw", + "xwuvbpr", + "rokfpiv", + "jlviksd", + "ksxygbq", + "optreda", + "hdpkawn", + "sqwzpbe", + "gsolekd", + "whvtkjy", + "qtifhna", + "xshrlba", + "scrblzd", + "ykaxwle", + "xupqmdv", + "zarfhdq", + "gsiejnl", + "ifaurzj", + "ctdkfoz", + "jozhers", + "zaqyhxo", + "wkjxcye", + "gyhqndv", + "fckbuid", + "tcuyjso", + "ytepgdq", + "gaeidbk", + "yalihjf", + "njbgyul", + "porwifb", + "zwxhimd", + "ryemjgl", + "dzxwiot", + "izdpxvc", + "ijmtfsr", + "sywgkui", + "wdjnsmy", + "uiqpzsv", + "pwgvjqk", + "cvsmqnh", + "bsglwzr", + "bkezhds", + "ukbeqyp", + "tirhdqp", + "xjnvoud", + "lpjkicg", + "sxvmabw", + "icwkhqx", + "dvbkfyz", + "ucbkipg", + "dclitxf", + "rwxqesy", + "mulcqho", + "fildjwg", + "evizuyd", + "wmqpazd", + "ryqzkml", + "obskhxf", + "qcjupeg", + "cqlgrzn", + "ebrluct", + "vtzmcyr", + "aevskph", + "ryfqcgd", + "jzfueav", + "dwenxvb", + "yfgmohq", + "rfojcpu", + "bjteumd", + "cydjxow", + "afhvjwr", + "wyjnpgh", + "mvxhzen", + "usaydzo", + "vslpowi", + "kfjncxe", + "oubrkht", + "lihkatm", + "ilnmpxt", + "tpuwiqg", + "vmntydl", + "bxpnzrd", + "gtjbnsl", + "tncjdgi", + "ztblavo", + "vsmpanu", + "cjbkngt", + "emhwgjz", + "ampnxgs", + "snmzteq", + "tyxjwzi", + "irfytql", + "ancbkiv", + "ypvmsdo", + "fkdvoaz", + "wbkepjv", + "gkqarln", + "pumxodz", + "sadxifr", + "oavfxky", + "utmbkhq", + "xnvoeui", + "avotgbj", + "fockjem", + "tyjievp", + "ewqbzgu", + "jmolbpi", + "zxybidf", + "dgnqoxr", + "casibgx", + "oshcfmt", + "mnzpcaj", + "vnexzdi", + "wvmtseh", + "khnrejd", + "xauzbgp", + "npohuzm", + "zeugmdp", + "mkyzeci", + "cmqnxks", + "qmcskti", + "uygisxv", + "bygucfd", + "zmvhnar", + "yizcukm", + "bkisotq", + "nyscmgw", + "lcopnit", + "qdgyuts", + "zcfedtp", + "vwqhgmb", + "myorajh", + "oktadir", + "efmnaji", + "oylhaxt", + "ltwzaxc", + "dibqwgh", + "wzfgcdp", + "xugorzi", + "wfjvmst", + "psnylvb", + "govftsc", + "dikvntq", + "mrxhukp", + "cbhdisz", + "xzeypbs", + "zwrfdiy", + "iyqeldw", + "wfqioes", + "qpdfcwh", + "friplmh", + "wyacmuv", + "trbszmy", + "kmvabgy", + "bpicfra", + "omhfyrz", + "rwmvfjn", + "bhxmrlp", + "zxirsgv", + "yerbjki", + "chkavrl", + "iuokewx", + "uczxqsb", + "yfilbkd", + "kydrewt", + "mqcoaft", + "qyoihrk", + "yqnlkrw", + "aqjmvxz", + "sryjfku", + "kyimhxr", + "ekupaxc", + "cbgvkjp", + "kliabjz", + "hdktcay", + "rlakejs", + "ezgvpsb", + "oauzbel", + "aitpfue", + "iuflwmk", + "feoubrk", + "cqdsrle", + "jmvayez", + "psrwnea", + "nwjcrpy", + "ktwlyha", + "kimnrxt", + "uainswe", + "stvcprd", + "gpdmwvi", + "kqpucmv", + "shedgck", + "cyvfekm", + "keagrlf", + "hpdxrzq", + "hyftowl", + "wptmesl", + "rdimksn", + "uyfcxoz", + "ubrytsa", + "chufdye", + "tfzvxac", + "adltrhz", + "sqdwoje", + "iplagvy", + "sguinqd", + "vosqhwm", + "prcsvei", + "cyrmfxi", + "kdncsqa", + "mxgdejs", + "fxpatyj", + "hwgubpj", + "ulztmrc", + "keasjqg", + "ijtcgmw", + "zbkvcsn", + "rfzsmta", + "nqgbtdz", + "fvbgijh", + "godkwqi", + "qakejvw", + "lahexir", + "vwcjqla", + "sopjger", + "hkqstnm", + "cqjktpa", + "rzpqoaj", + "aswxekj", + "pbqfirs", + "uevclzy", + "zrxvhwp", + "hdjxmni", + "pybqxrn", + "exrgzld", + "ypbjrtq", + "lnzojqg", + "oekvgdc", + "hudoxsv", + "oxtpkld", + "irwuvyq", + "epvrltq", + "hfyzuoj", + "unqohxa", + "ydnibxw", + "hdkystg", + "zfbwjpl", + "gjxsvnt", + "scbyevi", + "zedxvbm", + "pklohju", + "frbuoin", + "vkthpod", + "nahsmgl", + "lqpxkfy", + "xmulzhq", + "klmnioy", + "gsfilem", + "pidaecw", + "clxnwgv", + "kmgtqbw", + "xvuwqlp", + "yvdmabg", + "gmpqkwy", + "aremdtn", + "tginwju", + "ielomdw", + "fhwnacm", + "ybiamdc", + "fthjwcl", + "xmecsdo", + "hoxtjlu", + "gvqujkc", + "qjptenf", + "qgprxub", + "mkqietb", + "ihfznre", + "jmxgwbc", + "ldqaxsz", + "ehqdako", + "multkfh", + "ajhmyoc", + "lfzbiad", + "owigqeu", + "ruzxjmk", + "erwuyfp", + "njmtwgc", + "mtejrgy", + "ouvwlng", + "rmwzhuo", + "mkowgxa", + "bqfdgah", + "yswldre", + "uiabkcl", + "rgypixj", + "pzygufa", + "rhbdvie", + "fjpezxd", + "kwbamyg", + "rvpjgny", + "wrexpak", + "yalethm", + "ogmuztv", + "nefwjcu", + "ktwnqfb", + "zibrcom", + "nikyfjh", + "ulszjbh", + "eofqpxu", + "ywntpuj", + "vspmfin", + "xamvipo", + "tiwnpby", + "hibnwtc", + "gnatjqd", + "dbvogpq", + "uhqtbzn", + "cntyjoq", + "gtblpkr", + "huglmej", + "vkugeda", + "skdlmen", + "gdulcph", + "ychosjb", + "zbmaywp", + "lqcjoyr", + "uowhyjd", + "czrmxwq", + "wrsohzl", + "lbzfhgn", + "ixfmokp", + "uplbigv", + "lfmgxnh", + "pldrqty", + "wlihcqz", + "aetpsmc", + "kitfsbz", + "dkorlxp", + "nygfuqo", + "taizfho", + "epxbfdy", + "xjibyvc", + "kwnemua", + "xrhtwol", + "nazslwr", + "gqyamtx", + "fyobxrl", + "xtmfhjp", + "whqecyr", + "xkfzdat", + "xhmkdtr", + "tlexjsk", + "slcnzya", + "dfsxewt", + "bkxmoli", + "wasuohx", + "mkldiqc", + "znshdae", + "zntmasp", + "gpwikax", + "brpigka", + "xmekjpt", + "kwyhrba", + "mypwocx", + "zwujaqx", + "wdlsirp", + "eowbusj", + "cizdpvu", + "xuhbjgt", + "npiojah", + "kmgqvno", + "uimbkhv", + "lypufkz", + "qbtoexp", + "mpgkeif", + "dumglqx", + "vlmrwbf", + "xvmqdak", + "cjbxens", + "xywskmc", + "yjdxfwq", + "hfmwzcl", + "iuwtfkv", + "elyhsam", + "pjdlwik", + "nbqiger", + "rlqwhcv", + "iuypojm", + "jqxbdcl", + "lgruvne", + "gquaxry", + "osmcdkt", + "odzftgj", + "gtjsrxn", + "vzyjsxq", + "ckjuvid", + "vbijafm", + "gofhyzc", + "njgwdul", + "vxeulgw", + "uokqdbx", + "fodilub", + "taxbrch", + "tiafblh", + "lgartsb", + "ountigm", + "ftyuxzv", + "zkcnpti", + "gpkhctl", + "mesngpq", + "mlxegjb", + "nsheakj", + "dmnihsp", + "hvojlua", + "ykjatwu", + "cdisapu", + "ckwfjni", + "tnezhxd", + "muqcglp", + "koavtni", + "tyvcxgl", + "rtnydxb", + "ztuxngk", + "jshdlyi", + "altjngv", + "oruyczk", + "obzhnqt", + "dfwkgsu", + "clrswxk", + "teamgxh", + "sxmnjiq", + "cfsplzt", + "jicpets", + "nacfqyj", + "mkhreoj", + "cpenxam", + "ahqfnup", + "rxdnice", + "xqirwht", + "pbfktxe", + "jezgdvw", + "duanblv", + "ukozavr", + "dnkjalf", + "rghtves", + "jkunzhy", + "tmslzip", + "vjtaopm", + "bcveyhd", + "azdrqhv", + "crgvutn", + "cloktax", + "globfcv", + "lhdxzey", + "pmudvsz", + "xsyqamt", + "cnxvzow", + "eiaongz", + "barsecv", + "mrljwzd", + "ecsyztx", + "hmiefyn", + "jqicnud", + "ylnxtcm", + "urcklfd", + "sukhqjw", + "eohjslw", + "riemvjc", + "ihgepmq", + "apxezdc", + "ajtnylo", + "mkqjcfr", + "nqvwkfo", + "uwjelzc", + "vynpqoe", + "drzomna", + "owqcint", + "ipfahtg", + "sbxarlg", + "rvimwyz", + "sumonkr", + "cgxotzn", + "cifeyjn", + "zcmgbdl", + "marqczx", + "qgxijsa", + "qdsatzi", + "gsxflyh", + "ltvrkds", + "riznvxh", + "zajbtgh", + "kiopdtb", + "mieyqnp", + "uqscxla", + "zkilech", + "aqwifvc", + "qxlvbyc", + "lorvnch", + "vlgjurb", + "yemtgcs", + "ujorvec", + "aysreum", + "cmvzetd", + "tzpaxkm", + "ofwpxms", + "vbnmdxr", + "aifqprm", + "dfgxthp", + "gwzsixb", + "kvgbmza", + "satlyuc", + "dptbmrg", + "hwxqbyu", + "kfwtiqz", + "nlrxefz", + "zusadvp", + "nuthsmf", + "krjcomz", + "yxcrnvw", + "mqxfcdz", + "mypeudt", + "njiwkqg", + "alefmjv", + "sgcdnyj", + "rjntaeg", + "haotdln", + "lnmuptw", + "ramldsn", + "igcuorb", + "jnuehym", + "doqltre", + "dekzrhw", + "pmivgzd", + "rafmxet", + "sqkoner", + "blcdgem", + "ucnhwzy", + "bpesotf", + "wxunbfo", + "yibvqxr", + "nxpschk", + "hivnwfy", + "txvgfnb", + "ulrsjok", + "ctywgzr", + "lvoneut", + "xpkaoce", + "ipryahb", + "gesrvmb", + "kxuezvn", + "eiasfuv", + "abgsude", + "oxdfucp", + "kihanxm", + "lciekrv", + "krhyfzm", + "nthimsj", + "kxnqrwb", + "twdoqey", + "cvpawoz", + "vnzmtlk", + "cmqahkd", + "grlkdij", + "xugvrmh", + "tmnuhai", + "qsnfivw", + "leocams", + "yealjuh", + "cypzstx", + "qblrtpc", + "kxisarj", + "ejqbvoh", + "pbgtfqw", + "ilqsbvr", + "englcqb", + "gjidhnb", + "bcsildo", + "gcxiykh", + "wibhucd", + "rxahyug", + "sfweuli", + "iqgubtd", + "bmlgdky", + "zqjbvdm", + "lvotwmk", + "gsrvfuz", + "weayqgu", + "slntgek", + "zkmyruw", + "kyhjedx", + "ulxzohw", + "eochaks", + "rcuoiys", + "kzrmcbs", + "njpgbem", + "zvpiywl", + "kqwybju", + "jloaibm", + "kcojpie", + "kcovqem", + "ysrunmf", + "pwaemnq", + "dhglnki", + "iqnbvst", + "qnptdzy", + "gpinxal", + "sbmvwad", + "ynfbkwd", + "wmtxqbj", + "dtecknv", + "gdcfuan", + "cfzrkva", + "zhmiows", + "vmndfbg", + "yetpalc", + "ldxfyut", + "vcsdnia", + "jnwehou", + "ljzmdbi", + "mrquktx", + "romuilh", + "cxfgorz", + "hsqatco", + "pszomuy", + "hxpemgd", + "xysikcz", + "wnusztl", + "xwfiqmr", + "prbgdto", + "wrhiplq", + "zikljgo", + "vlcrhei", + "zjtvblu", + "gnaydtf", + "goikcwj", + "zmqwbxf", + "qipfwdn", + "whtepgr", + "yuaetwj", + "mdvqegf", + "coaehxp", + "keutqsi", + "gzboxmr", + "evuoyjc", + "qmctpzu", + "mwrdjnh", + "pcsrygv", + "fxeqbza", + "aqbwcxk", + "vthayio", + "rybkqus", + "mnaykjt", + "ayhxbru", + "amyseur", + "bcekmto", + "tvobplj", + "ugcszjf", + "hjtaufi", + "krxilqh", + "fiohgjx", + "lebxmdh", + "vxatwhr", + "bzqlotu", + "jsnxazm", + "mkjaixc", + "bhujfyz", + "knjaiby", + "ebywjhs", + "mgjvsyi", + "alqnrjw", + "tniwvlm", + "psivaxq", + "wbgavoq", + "lngzbuc", + "vbhsepl", + "zksdoml", + "crvpzjd", + "exgmnsi", + "kojfmyx", + "dhpgawc", + "ovdeukj", + "vrytmea", + "dbgrtca", + "suwovni", + "cgfaeuv", + "zkvjyft", + "zswrdpm", + "ygvfoqc", + "yaugkqv", + "fqtygbk", + "osrejlp", + "xlyckvg", + "riohyjt", + "ypmkoer", + "urocsxf", + "eivjzfu", + "scktugz", + "tibjsmf", + "vzonjpe", + "eomxzhl", + "pejtzxh", + "reacdmb", + "ukbjdfl", + "yuazgkl", + "pzqvran", + "rhsjdtu", + "pjedafm", + "gkhpbza", + "bndowku", + "ortkgcw", + "ieglckp", + "dyhpknq", + "gdbuiys", + "gauoeqh", + "xcwtlbo", + "pluhkmj", + "fqlbjgm", + "gbrtiuc", + "euqtdsg", + "kljhzoq", + "ocbyedm", + "azlpboj", + "gtnejkv", + "ubxqmcz", + "ezmxinp", + "xqmbjzy", + "myvbdju", + "aphzvex", + "wvledxf", + "euvarpl", + "kawmzdi", + "zredloi", + "exmzutn", + "lsrakpd", + "cdhmpyv", + "lewdrgx", + "tvnghbz", + "lhntrof", + "rxtpilk", + "okuxghv", + "mzxrdtk", + "kxmenzl", + "usljvez", + "mltyijz", + "ogzubar", + "fokxlsh", + "nmvqxog", + "gtqruvh", + "syqdicr", + "aebgkxd", + "oshrkqb", + "qidbosc", + "exflkiy", + "gqoebfx", + "xasbgfe", + "zqoxhjp", + "ybxhswu", + "oxklzae", + "cbtvezl", + "pltuwnf", + "qtucfjz", + "tvoalub", + "dmlqvyr", + "xjhabil", + "ypugnib", + "coevwtp", + "arcwszy", + "yxwdcfr", + "utcxiby", + "vjguibw", + "uptslvk", + "dheowvc", + "xtoqcjp", + "hwvoxpa", + "kaufoib", + "rkxfgbi", + "vpfsauj", + "gouzvti", + "htmaley", + "plnguxz", + "vnkdbwp", + "ngmhxks", + "ihwaxmc", + "ydmcvoq", + "hwypsok", + "ynlufsg", + "udyfpic", + "lackthe", + "csyzlfa", + "vteoucm", + "chgawji", + "wfgbdin", + "gzavwnk", + "hytrnvg", + "abkseod", + "hiegpyt", + "bifaqgv", + "aucrhtv", + "gyhnfqt", + "cypkfzo", + "mkwvrcl", + "vczypsg", + "ifsarpd", + "ybmxrea", + "hbkzjmw", + "rdouceh", + "uengifx", + "lcfxasq", + "liyastg", + "sybezhn", + "frcwvby", + "dlvkxsr", + "wvzqxsr", + "dsurnjb", + "lqkdtox", + "nqjuwmc", + "yjhrmws", + "ieupsjd", + "mfxjuks", + "kyvxtin", + "ntcerob", + "qrhivmw", + "wrasztv", + "ozlgjqn", + "jzensip", + "ytkfdsb", + "pyecmbk", + "ebinvwy", + "pkwzuid", + "eukmrla", + "gyuipjv", + "qhjeyku", + "tojgycx", + "zdhysau", + "wscpgxr", + "kasxjlf", + "qpvghaf", + "nlcvegi", + "gpskwfe", + "wscxylo", + "smokhcz", + "oagkxle", + "marqgif", + "truhezk", + "futvziw", + "krzjpox", + "gwayzej", + "ldkgxji", + "xfwzyis", + "kharpim", + "dgpoulz", + "soltijz", + "elksigr", + "bckufes", + "edfocwp", + "aibynfo", + "sohnlgt", + "hbznsdo", + "xrmohzd", + "fexzask", + "ufaljps", + "rjacuen", + "qslbark", + "wqghmra", + "glekpdc", + "pkeoyxn", + "qpyfocr", + "idybstu", + "szgtnpl", + "easgidq", + "zwnftqk", + "ogvinez", + "hpcukid", + "qlmbdjt", + "pxsijhe", + "hnvgrpl", + "qmzyfxa", + "oltfxwz", + "baopifk", + "rltzhmu", + "vxqndgm", + "rkytcoq", + "ekvatpu", + "zgarmch", + "xplqtmb", + "rpvyuon", + "gfywqkb", + "srvxtkf", + "lkisfmb", + "elvszxn", + "aqdytek", + "jbimxau", + "edpjfvz", + "yaikhdt", + "vfrudzj", + "krmocxj", + "fdqkhmj", + "tvdmsap", + "zysrbqw", + "rtyoigu", + "vzbwjux", + "mcdkaet", + "jkdapyn", + "jiesavc", + "vfmlshx", + "jzwxgfq", + "glkcmwy", + "xebmyhr", + "wroefpj", + "zxdthqj", + "dfgtjsh", + "fdljuwr", + "obmaufi", + "smacphb", + "eswyidn", + "saijrkt", + "uzxqrlp", + "qmugtpn", + "qjzpbfa", + "exajpfv", + "uxpfcvm", + "cgyxadv", + "pvyrnib", + "qnpwaxc", + "lmxguha", + "zenrqyl", + "wnrdasi", + "dbzcmle", + "bjdivyu", + "gzquikm", + "yhvdkpm", + "xbrigvw", + "wdgufqp", + "licjgav", + "cqltidm", + "omrqdtv", + "zqolnbd", + "ibrhalx", + "kxqgiea", + "ywqdoeu", + "fulabqy", + "fpvlskn", + "kevxgal", + "kiuhqtc", + "hicfrxe", + "jwinhoz", + "tafqvuc", + "abnluhq", + "pbelyos", + "hvpxwra", + "znoumce", + "jvzbukd", + "tiebsjl", + "chiryex", + "uqpcard", + "kqgrxcv", + "tfkclwp", + "bezgnfu", + "klonmrb", + "vlfcrot", + "zkebdxm", + "jmxvsoz", + "uifoklp", + "wgtjomx", + "icxhnvt", + "ywqglzj", + "lpxcted", + "utkeomp", + "kdfyvge", + "cndegyw", + "oxkntep", + "qvpshaz", + "cygpiho", + "swrxfug", + "lemyinz", + "kfprszm", + "tnpbwlz", + "cvihzmd", + "uaoyeit", + "mvwykfg", + "jomhpub", + "yubrtox", + "rwtenjd", + "srngjem", + "ekycrba", + "vqjmfal", + "xqriaes", + "idkhato", + "ujqzirx", + "cegotxs", + "qzfnbax", + "uyqvdjo", + "csxtifh", + "xkovrid", + "tpejmkf", + "ytnbhvr", + "vntowpa", + "yvnbqkg", + "rhilxmg", + "nwzrjkp", + "nufbayx", + "pwbhouk", + "twjpcin", + "updszke", + "vhkycbd", + "zdxuqfb", + "wedkfqp", + "zapxyon", + "bxprjkg", + "ymdehgw", + "xotjryd", + "cprzsku", + "mvztsqh", + "fnkaqgj", + "outefha", + "qidtyxs", + "lbwkiro", + "tcmudbq", + "efzordg", + "pfywehr", + "ypnkqeh", + "ihqksxl", + "rbtsqof", + "zgxaenq", + "gskrbya", + "vdqgfla", + "ycjskgh", + "xcftbhd", + "gndjyfc", + "nbdhulg", + "thmrfks", + "mqjotdx", + "eticlhd", + "lwycure", + "ermxfqs", + "hpocwzt", + "fvopike", + "romjygp", + "oilnwtg", + "wupjrve", + "bilxusm", + "fsdpczq", + "gnwbzsx", + "jpytvgz", + "ijtvlfx", + "hdyctxl", + "zyhalft", + "rihkefa", + "bkpurgc", + "lxypouh", + "rdpamtj", + "sjrqfez", + "ruapxhj", + "wdfnyom", + "eaxyhsr", + "mxbrysd", + "falyehs", + "jdsixzk", + "iozfbuk", + "eqfatjv", + "udnercj", + "aqunset", + "knycgtv", + "nwtaejk", + "naisoeh", + "xjwvney", + "lkaeufh", + "icsglve", + "mvyidug", + "gqbpwne", + "oymdxqu", + "zncytwf", + "bsgjpzf", + "aszrpde", + "drnzyqc", + "wyjrdns", + "qkdazrs", + "eyhqmuk", + "uscmplj", + "ankuxgj", + "lwrpmca", + "raxoehn", + "wfnuetl", + "qymlbju", + "ogmuies", + "hugnywm", + "dqankrb", + "xmidbps", + "pjlqbnc", + "clubepk", + "wsgmric", + "asgkqot", + "zfgihnb", + "ehkyfzc", + "muxwrjn", + "publvqh", + "fkxlasi", + "rdxkpqw", + "uoxzwql", + "ulsrfah", + "kurgflq", + "yesfbxg", + "zvmpcbs", + "iwmpaed", + "butkyci", + "mcqvljf", + "hkedvlz", + "zrcihpa", + "jrhmczb", + "jixogcm", + "awbjohx", + "ytiehxn", + "xsjnuef", + "dbtmpfl", + "fbiomlx", + "pkbowld", + "anfsceg", + "bokleqn", + "eufpdhj", + "frovmbx", + "mckulfv", + "ugvapoq", + "gpzyqne", + "wesuotf", + "czjxgad", + "mwtczop", + "hqfonmu", + "prtodub", + "uovqmrc", + "dkwncjt", + "iymucka", + "lyzonfb", + "jpskfwu", + "rgyclvt", + "pzhbrnd", + "dqhtfso", + "jhtiqsl", + "phjtdiz", + "udnjkyx", + "dapxuvs", + "igzxtjq", + "rpyhwtx", + "spafqje", + "zjamblu", + "ucgtjsb", + "cemnopg", + "vulbjad", + "crzivup", + "ovkhaqj", + "fphncdt", + "eovsikj", + "qgfpsmz", + "sntlpzf", + "lfepkqg", + "fblonrq", + "xjendvl", + "mocjskh", + "uzkriem", + "nzgdrvk", + "ljrxkot", + "uydiwjg", + "ovuplie", + "frqzkjy", + "cgnwazi", + "efqdlmg", + "zildeco", + "vnouphg", + "txzfwkj", + "wqhladf", + "zjaucsg", + "sjtiyqx", + "wcsfhoy", + "lbtwfks", + "kioqmnz", + "tlwkchi", + "aisqtvr", + "mbcgvpw", + "smqkucj", + "jvblfmx", + "npkgsax", + "yteawif", + "towuigs", + "tdywpae", + "acqvmry", + "icnxuaw", + "pvqurae", + "lqwihjo", + "iyfdclb", + "xbfcrlo", + "avxuqng", + "anpwzkg", + "ihfvyex", + "nbzcdtk", + "mcqxlej", + "encdwyz", + "fnlhjbm", + "fmjegbu", + "scnhmif", + "ljtnbhq", + "difcmrk", + "pqrcliw", + "dylmipb", + "uvmpnas", + "yldtani", + "yqzpvwf", + "qtumwck", + "jkxesam", + "jazvrdh", + "oermjph", + "csuxrka", + "odjzqlt", + "jmibnox", + "phrqtvc", + "uzdkxyf", + "ekrpzay", + "pvdkrmj", + "tpvaxyc", + "seirpav", + "qfdbhvp", + "yvcxfut", + "csjirho", + "xbrmktc", + "kjxazty", + "vjlyrzx", + "vjqslwh", + "npatibh", + "edyspjm", + "pwobgfa", + "yswzmtb", + "dmykfpc", + "qlyvjkh", + "cjbvzpw", + "rwzbeok", + "hayifqm", + "ijynper", + "cpmejyo", + "xwjbnoc", + "lrzmsiy", + "qwmdbip", + "jxktcni", + "ylthxuq", + "axvwrgl", + "efilsja", + "fqgvtcz", + "yfpgrwb", + "ceybinj", + "sofebpz", + "snhgjmo", + "gedzlkw", + "wfapyxm", + "vxmolez", + "flhcjsd", + "ilhepam", + "iawscud", + "nutzgqs", + "jcszadu", + "wkhufyi", + "hdxcbfr", + "uifgxbo", + "yevdqik", + "wmrknuf", + "gkxdups", + "gfcsxtm", + "xcvmspf", + "ikretwd", + "batwqcj", + "hfuwqga", + "zxnyalc", + "osfhewt", + "vwyhrqa", + "athncsq", + "rieyvaw", + "qoyusrz", + "sqzmeuo", + "zneaglt", + "vbqcmwl", + "slgqcdu", + "keamjwd", + "neuqzjx", + "sagyfdq", + "lxptzwv", + "kuyfsha", + "uwlqbix", + "ibjdrsl", + "fxcrows", + "eiqgjhd", + "snclgko", + "dcwfulp", + "naismrq", + "cqsiltk", + "iamtyzf", + "dfothyn", + "dpgwujc", + "sunyhqm", + "qdymvet", + "xuevgrs", + "gierkbo", + "wzealtg", + "hbvxtlg", + "pmuojqf", + "ysjxuta", + "kxjahqc", + "xgidhje", + "ipaqrsw", + "rutkqbd", + "uedasqj", + "qyhwmkx", + "wmugqcj", + "aukxdnf", + "icmojev", + "sjhucfy", + "tofbupr", + "dhnxwsb", + "dienjam", + "gfktmpj", + "tlisagz", + "vsbpoeh", + "qjkfmse", + "gkfunzt", + "tvsyuwn", + "ipwumhn", + "kaymdri", + "xwsmhvi", + "knpbvma", + "igzbfjk", + "grbfesq", + "ytsdqpi", + "lhajswz", + "dblxihs", + "yuftanr", + "sgvlpfw", + "lskyqji", + "wpyaktm", + "jcewpvd", + "tgrqnkl", + "qmbpcrs", + "gzuoqax", + "rnbakyz", + "svzdycp", + "ovpryfe", + "ndbxvsj", + "cabhsur", + "jycadzv", + "ptzbone", + "qneapyk", + "rahkgfj", + "ydqgxen", + "fwgupyi", + "wruoatd", + "aryekvi", + "lkbxctm", + "wgqihab", + "wuckblp", + "lfbwxzi", + "klomzbn", + "orglsba", + "urvefca", + "fghearl", + "nizbvmg", + "bupgtqd", + "vhjldap", + "saveqtw", + "wnvqglp", + "vuegqor", + "xcvkwau", + "bucnzwj", + "rlandmg", + "glyepxn", + "uesfbyg", + "mopefsz", + "frbjoly", + "jmwandb", + "vrybxgh", + "txdkswz", + "yktmcnw", + "kizpcfw", + "nochxbr", + "hfswbjr", + "xhycaqu", + "riaujkf", + "lfnybxa", + "rjfydhw", + "vtuxeli", + "jbmlhzr", + "qxobkzr", + "zuoghxf", + "wcejgxz", + "qbjrenw", + "nqlubgm", + "hgzdxpm", + "adegptj", + "crabytd", + "fwytikg", + "fvptxda", + "oksjumg", + "fxzregv", + "ftzyoap", + "qphsuzi", + "eauqlpx", + "ynvfctw", + "gkjmiwr", + "nexwpiz", + "nabdhgc", + "woxitzh", + "kguhvlm", + "yehxvsw", + "evpkcdt", + "njzctxr", + "uznepcl", + "obygnsx", + "wgxetzu", + "ticnkfw", + "zvtqnbl", + "egtincy", + "beovmrw", + "qdbncwf", + "jqxlhfz", + "lwhcatb", + "nvbysuh", + "idotumc", + "mqusgcf", + "idybcap", + "rlpqioj", + "ecafnox", + "mzrcupl", + "fjsadlk", + "dbpasfu", + "xvukfis", + "anjfplq", + "gsixkah", + "nqyzxhi", + "gfsaqrm", + "qerdoxj", + "qhxswtb", + "bfzkqga", + "mvhbsyk", + "egdxozp", + "xihcojv", + "avgbnql", + "hwvpdjk", + "gvjzopc", + "mqbdgre", + "wxesbik", + "kdmnbyx", + "cdqreup", + "nylhxqw", + "btfnshy", + "jadmryz", + "zspniwt", + "mhrqnit", + "qeksljz", + "veholbr", + "cojxulr", + "izgpsjm", + "plogmyv", + "nuvihsb", + "eqkxdyo", + "xuqbtnm", + "macpxzs", + "lzsphqj", + "moskxnh", + "solxnty", + "bcuzkew", + "gkzcvsj", + "pjrixaf", + "lfswbma", + "puetism", + "jdqrnkc", + "fmvbljx", + "cwilstm", + "ythoqjf", + "lidwxgy", + "hsxeidr", + "ekhzcwn", + "uvftdgy", + "avjlcoq", + "dvmqxel", + "dcubnse", + "drvjwae", + "aqyuxtl", + "wyrbnjk", + "riotegv", + "qldpzny", + "vdgfczm", + "ispchqb", + "uyqteix", + "zvqpbma", + "mzktqlg", + "yuzbspn", + "oxvlrzy", + "ynlgfwj", + "gfkwlpn", + "bxsnfvd", + "btpcghf", + "utaypsi", + "hgoznax", + "ldxogze", + "kxyzaph", + "qdpzcwu", + "tzfsbin", + "kulmfvs", + "yuvmscp", + "oqrepch", + "wrqisnl", + "rqxabhv", + "yexvfia", + "utifshn", + "ivfghsq", + "tjofmkd", + "pkudwsg", + "uevzhns", + "sibaejv", + "sdnrioh", + "smdiybc", + "qzmbixv", + "flyndgt", + "lvcumrw", + "euoiclx", + "bpqrmwd", + "nqlguvw", + "zbyiskr", + "nhjuirv", + "rpxbejd", + "yfhvzad", + "qytlkwe", + "qywlafz", + "bxgshac", + "jalznbp", + "endkghs", + "vynpuil", + "fubxdst", + "ulayceh", + "hdrxnqk", + "wkcrevq", + "ihysnfz", + "wjszfqt", + "lehjfrg", + "uevxocl", + "znehwji", + "bsxhuaj", + "sleizap", + "bhvclip", + "sgatbou", + "ismgwpo", + "dwqtxsz", + "bcpgtnz", + "txvasnp", + "vgfwach", + "lyfhcqm", + "dilkuhm", + "ybvgmzj", + "kjlcuhd", + "crhbvay", + "kobyjxw", + "fjyrzec", + "loefjay", + "ksuqirc", + "ajrfnxp", + "vrnawtc", + "dnbiwoc", + "elpxkoz", + "oaemrbu", + "afhtswq", + "piasgqo", + "zeyaukm", + "ofjclxa", + "vhytsju", + "pqxjlmd", + "ghlvksb", + "bkqvydn", + "gctevzr", + "mjvbzlr", + "jovkwcn", + "cdpnmsg", + "ogauhqf", + "hxbkeaz", + "qipzmob", + "dyxiuzh", + "vtcfonm", + "zujaodf", + "jdaxvib", + "siqfwbg", + "yfzipjd", + "bxoelst", + "ltwnkzq", + "eibnhyx", + "ifdxwky", + "fnzjiem", + "kmjvlyg", + "fkyesgd", + "lkrvfic", + "lkjcnio", + "gfymorh", + "wxszdfv", + "laqpkwz", + "xjhpgfz", + "dxnzatj", + "docjyuk", + "lmtuvig", + "tfcrlmp", + "xwlcojd", + "bpowlha", + "godlwvc", + "bcyixdw", + "meuxhok", + "qsltkmc", + "zcbpote", + "regvazw", + "vekawqu", + "utjkxvc", + "zsrefjt", + "mokasdj", + "mltowhd", + "wybsvlp", + "axzgwps", + "twkhrqu", + "bcerjyk", + "pgdeusc", + "pyxdtcf", + "xrwfcke", + "bpnfxta", + "drbsfze", + "blpnowt", + "himefzr", + "okbfnsx", + "voehrui", + "potcunf", + "pflehuw", + "fyzelbp", + "epicuhz", + "ysegulh", + "fecmaok", + "pqdfgjk", + "qvnowlp", + "bmqxowk", + "nkrtedj", + "vlecyxa", + "malptxb", + "ibqmjxo", + "bekdyuc", + "arudbkh", + "gjbvzyh", + "rxidykp", + "zdpjghy", + "osvbepg", + "gryebni", + "uxwgbzc", + "sidqhnj", + "bqvtcju", + "mbdhqko", + "pqflhck", + "fcsmwen", + "kodgnul", + "nvfptyk", + "tnfojdc", + "ilwcndb", + "nrmzqwj", + "vuqbasr", + "dvjktaz", + "ivzkdam", + "oztprdf", + "vpqdniz", + "ysxpkwj", + "oiqepms", + "wiyafhj", + "cztbwfo", + "qhiflcv", + "uglmrfw", + "jsqfzgu", + "rnshvtq", + "xlntkaz", + "uhqevpj", + "qyhluwx", + "bdokthy", + "usynbgc", + "yxaptdc", + "asxuicv", + "ncxheak", + "nlctwua", + "dkvuwpb", + "oianbfs", + "nihrzcy", + "pkqwxnc", + "zryoiuv", + "lojfzid", + "yvioskf", + "rmhbtec", + "xckluhz", + "cdgwlhm", + "dvtbeiz", + "jklytmi", + "crquahi", + "xchvdma", + "wliovkx", + "twimcqd", + "uiapsqk", + "tdpxcmv", + "cdrelox", + "aodkwib", + "dprcveu", + "svlbhen", + "wbrueos", + "amphkuc", + "kaqpdzl", + "eikbdgt", + "xzrydoi", + "avdwuxr", + "veartbn", + "mtzpcrv", + "qnukilz", + "bpjdola", + "zhjsxvu", + "hvptfoq", + "nhifgsd", + "qfcpmxo", + "fqpkgna", + "xgsmqyv", + "adchxkq", + "nosdapf", + "kexojwd", + "tkgaejm", + "wqpljra", + "oscvtxe", + "qyuahvg", + "efbzgrl", + "fxudawg", + "jpxrotb", + "hrfvago", + "dzncemf", + "aypozrx", + "dakqlhg", + "hjtpiyq", + "qnacfjg", + "omivljq", + "vabwdor", + "nvastjq", + "xljecri", + "hdbcuws", + "tmhlexg", + "rhxlgjo", + "hbdufpo", + "qrhbjia", + "cdawvok", + "mfbydpv", + "aigjdyk", + "cnadbgz", + "zingumt", + "povagqe", + "hfidvrt", + "wdpmxla", + "zwkyqhe", + "gmvkezo", + "rswkxot", + "hymlbpv", + "amiypes", + "odsmjfq", + "kuadhrx", + "jdwhypr", + "zpwvkxt", + "jumzvbp", + "anieutx", + "tymzexd", + "roeuaiw", + "mrcvajf", + "wgsuitq", + "pqfdglj", + "szuktec", + "uvlrmbn", + "vqprnxc", + "befjuop", + "hiyvsge", + "lcotdib", + "srqilwt", + "ujdqven", + "trgxoyp", + "oemkwxf", + "kzcbnty", + "sqxhvel", + "dknozep", + "pxcrljy", + "xikbtjq", + "fegoyuk", + "kfecjns", + "zftlwco", + "gcmqxwk", + "upvizog", + "qxkyhem", + "lmzhgpn", + "niwrqht", + "mwxqatf", + "wvneaki", + "tluckzx", + "ovgcfzq", + "ozhisbl", + "qimlzdc", + "gfuzcni", + "jdgnbep", + "otwchgp", + "wlbxvco", + "qhicnfx", + "tcvnpsq", + "fzjwgxh", + "xthuiyc", + "svdcqlt", + "rwbezvh", + "efnmihd", + "hmsenqa", + "aeqpubv", + "zlgakmw", + "jrzedkb", + "tueqzoa", + "hstqrlo", + "defuhjt", + "xjzkidc", + "ialkezq", + "frlkxeq", + "cuwivmg", + "ulysovw", + "cyrbnph", + "fnkjloy", + "dvljtzf", + "bvgctdo", + "mzhrasb", + "mcgudzh", + "vwemkto", + "ofbwijs", + "ryejdtk", + "kyhbcun", + "gjtsqrm", + "dowayxl", + "lfwqroi", + "wvlybsc", + "ynewgpl", + "ugwvjbz", + "pugsozd", + "fvwctqb", + "efwnuki", + "vhzanqc", + "pciyfkb", + "vjrlzut", + "zdaihrc", + "rgktxmi", + "nbxlrgi", + "brdgzae", + "zrmahyg", + "stvobqk", + "zakmcbl", + "ulaycph", + "yvmhkwg", + "bycxrwk", + "zwmiejt", + "ncmsxrh", + "pjlgyhs", + "scronfd", + "oeulrbp", + "qbeilgn", + "tyujrmh", + "kxyiapb", + "kcmvgsi", + "tiugmev", + "dzqxsyi", + "ifebrza", + "zqbxwvg", + "parnmid", + "emlrtqo", + "vbhmrge", + "xmufzwg", + "tcphskb", + "evcdmsf", + "vwkrgsa", + "wrnujzb", + "rqpizvf", + "fjbguic", + "iaqyujd", + "vgehnmd", + "hcwpaif", + "drxwsnv", + "tvphkcn", + "cfltvxe", + "kvoqejw", + "bikazjg", + "vdnozti", + "ufqdarc", + "dahesjx", + "zpmiygh", + "cyofuzg", + "heirdxb", + "txankef", + "rxzlidu", + "uyszqov", + "cupwejt", + "kyxaizf", + "wmqzytv", + "rnuqmip", + "imkbraf", + "oedbwiy", + "symriwa", + "nysbjhq", + "firbzkc", + "epdsqta", + "tvkrfsa", + "nmbvpgd", + "upbrjek", + "dfnuroe", + "xltenmh", + "vhxojzr", + "gdkibvj", + "gkoijap", + "jkrshwe", + "zxqbiwu", + "iykvsge", + "blsknxo", + "qvtobez", + "rloevgk", + "jeybhpr", + "nrdmetx", + "rglvyma", + "omlfckj", + "okeasrj", + "unwxlvy", + "gusynpc", + "jthlxdi", + "txrwvzq", + "sfloeiz", + "zfbjgmv", + "mbjhxla", + "jxwgrbq", + "fioqmrs", + "roibxyq", + "pwykden", + "zpvdfay", + "jkcxzvu", + "qsacbnd", + "shcqzkj", + "lbfzwgk", + "mdryzvb", + "jlbukmz", + "gvnwxur", + "xyomwda", + "nastfrd", + "mvzicxp", + "iswcklx", + "fliknzm", + "cvnzikp", + "typclva", + "hvilkqs", + "adhltqw", + "iszpxql", + "ujstplq", + "tspwomc", + "fvlhtpg", + "nkxfpvj", + "wgbucpj", + "apbolxt", + "dfwbcul", + "nksiygw", + "gkhyxwm", + "oubynxw", + "wnhytro", + "vrtfhlw", + "dqpxzkj", + "osjvpif", + "tsfepdk", + "nglqfsw", + "mqsiocy", + "slezfiw", + "xrpjuom", + "xfacwky", + "pvnfgdz", + "eroxquz", + "fcgoriw", + "lqstjwe", + "hdsqzle", + "ihcytjr", + "rnmsxcl", + "vojhupe", + "vufzahs", + "vjkmgut", + "bclugnh", + "lhvdqza", + "cjqaltu", + "zelwkmf", + "sgfhqar", + "fijlpge", + "avcfkyu", + "bcgzdvr", + "nwcbtsp", + "qzdfpln", + "qghywjt", + "ecunbfj", + "obdtemr", + "rnawqbc", + "lnegrzc", + "vgbnzql", + "pqlcuij", + "hzvgatp", + "ahsqmkz", + "zkelcmg", + "muirjcq", + "sapkmgv", + "gcswhyp", + "rlzqbje", + "btqzsvw", + "fltwgpo", + "brzxdue", + "tqrfalx", + "tagyvbw", + "sqhtzmo", + "sfbverh", + "bxazmug", + "aiferzo", + "nkgmfrp", + "dihwyjc", + "jideqxv", + "plouray", + "lkouxre", + "pusnatf", + "hpfzswd", + "idzsvgw", + "nyqpxfz", + "jtehixs", + "uftimgb", + "xemovwy", + "neaklmh", + "jeazoqi", + "hytwoiz", + "hgjblop", + "tqpwyvu", + "xsnmtaf", + "hqdeomy", + "frhpnjw", + "dpunzfy", + "njcxdkf", + "cudiajf", + "iwzqsmn", + "hskaxjn", + "swxiymh", + "bisgdtp", + "rhcxgnq", + "bznsykx", + "mryagnu", + "akwsiyb", + "nhqlgzd", + "mhtupzc", + "lhjkudn", + "pjbdsok", + "xkqomuj", + "zliqkxt", + "mpakqgy", + "rplyouw", + "gwqcyfo", + "cygavje", + "sdmcpoi", + "qtujhya", + "oingvhc", + "svelqow", + "snyfmeu", + "axqpdvg", + "avzhipw", + "ouspaex", + "pfxgcqs", + "unriweo", + "egrshba", + "fplqdiz", + "gizlxep", + "tuifzvr", + "ihtbmgx", + "ynuoewl", + "bklqoru", + "tpdsynf", + "maqugjk", + "ntfzhbj", + "wodxfak", + "jpquafn", + "vzuyowt", + "ocyptsv", + "ydnvfek", + "bcrlnkm", + "iuathkq", + "opwvmud", + "onlwmzb", + "odkvepu", + "niyluar", + "wvaoeqi", + "vyetdiw", + "yprqvgu", + "jlyumxd", + "lsizctj", + "kgwblue", + "pzmiytv", + "fxkuznb", + "tnbfygc", + "axzredl", + "fqrmced", + "qpyufhc", + "alxfkdo", + "mlhodui", + "zqadols", + "abfthiu", + "kwotney", + "znbjifs", + "oxlmhgc", + "agzmwqi", + "zmirxbg", + "hrdamwe", + "ukydlqe", + "jhtpayn", + "xeqfkan", + "rgsyutf", + "cufepyn", + "abuhwgc", + "ytksndg", + "qajgith", + "sgqjyfe", + "djuqhbv", + "rwfcvma", + "scmvigu", + "wxhgevk", + "wsufrbq", + "rgfkcsw", + "ufrblio", + "xfuvtdg", + "lyzobxd", + "ldoycgn", + "cjouvbs", + "beuknqp", + "rgolxwy", + "vlirtny", + "cdwrmoj", + "qjpdgvb", + "aopuqfn", + "zcthgif", + "qsmhcpb", + "hwrjdql", + "alzxeqm", + "twyhmpj", + "hiovbdy", + "kzajpwf", + "kfiqchr", + "soyirqa", + "dubsixz", + "qmrjthw", + "trwmxpu", + "yjihkor", + "luwrscx", + "xlszdwv", + "hgsrtaz", + "rldbaoh", + "lvzjqtp", + "vfbopxm", + "inbkace", + "pyqjdac", + "boduwpa", + "uefqxtm", + "pownbyx", + "lnjovpc", + "swzuvbx", + "acxlbyn", + "yrdsalf", + "zukpmsr", + "fiyzbne", + "nowstxd", + "bfeypxn", + "jwskchq", + "vlamskq", + "judnhmx", + "wngesjo", + "eijvuxz", + "ocuzgby", + "uxsqmjv", + "urqhdme", + "xqjhfko", + "nqbsxke", + "arpwkix", + "tdgpaxl", + "dgnrcfw", + "qvspzjn", + "sclwkay", + "oyrlnsi", + "ciwsdtv", + "yfnzgcw", + "vdwqahy", + "wjohiub", + "cjiydmb", + "gxkefvj", + "fzvbyim", + "dcmbhwr", + "avjukci", + "ktznxmr", + "bdethng", + "iacqymh", + "srgkbwn", + "hgtzxrm", + "xuesqgb", + "gbhwsfe", + "xdutwin", + "yegrdqm", + "bqfypgw", + "gwpyskc", + "nszjxyh", + "szwpraf", + "dghyavn", + "xktwzfj", + "bhczlpg", + "edqthzx", + "cxesabf", + "iwcfpmu", + "ckxaqlj", + "ncdupzl", + "crglpws", + "hayzqks", + "inwtdkl", + "wjherqu", + "upbvsty", + "veuswdc", + "bihgzev", + "ioudtbr", + "hlbwtdn", + "excrqaw", + "bgohfcn", + "blgprco", + "hwxarbj", + "chknfab", + "ysdbkuf", + "mjkbzvw", + "jdiprvf", + "vgribau", + "xdjzrsw", + "ibqmoef", + "eczrmou", + "thukdgc", + "esyxdfj", + "ntbzuml", + "kdurfox", + "tmqndrf", + "ofpxywb", + "zchubyv", + "fdrzqbt", + "ewnozul", + "ljuioqg", + "ofdwuzg", + "finwmcq", + "onxfzuk", + "wjrfnvb", + "pkrwyti", + "ykxjbor", + "noxpcjl", + "epiyfjm", + "kfydrxn", + "xrzgvlq", + "gycvqaf", + "cqhijaw", + "zngkijo", + "knrpjyc", + "ompbgzs", + "zswiqnl", + "ulpisjx", + "oizlurv", + "vtuhewg", + "cqbxvzw", + "hjsepcu", + "npkmtsy", + "anfjygp", + "gmhsuzt", + "bremldy", + "nsiergp", + "vcwtilu", + "sobahfz", + "wionsbr", + "msgihve", + "ujiefmp", + "mpixktb", + "knxohqf", + "dbrqypw", + "uzqsvbf", + "hkjsynz", + "dblrsco", + "hzvjxpu", + "pzixhny", + "rchvxou", + "vbqmpln", + "yrnwbtx", + "rgflmez", + "utarmxv", + "jpthlox", + "qfnouak", + "omjtres", + "mdciuwk", + "bspedwn", + "tbzmsok", + "uwbaqpn", + "fdlzahp", + "bpzicuo", + "nesgbfv", + "nuxmbgf", + "bpizhkv", + "dctksay", + "zlhvofq", + "koimtxa", + "pzdwocr", + "jwdmuic", + "ygmcjos", + "rhzyxdt", + "lotmbge", + "tvwebhf", + "rblyaog", + "fvaonle", + "jtsifhe", + "xsrzocu", + "hqkdtjc", + "qikgvsh", + "rngtock", + "rmjdsxk", + "gqzkwln", + "thmqrka", + "vyxrtma", + "dbeikgs", + "awrhdli", + "hdfrewq", + "ubzhkwg", + "hwvbefd", + "klhbmyn", + "jifbuch", + "flnpzas", + "rcobthx", + "czngiet", + "ircahfn", + "xqwoecd", + "oywsmuv", + "crhspuy", + "vyiusrj", + "qtdariv", + "equbmrj", + "xywfpje", + "sifqptl", + "vcstrkm", + "uhimvot", + "qauvhbe", + "eajpfcl", + "cgnfuhs", + "ejbcqth", + "dkvfczw", + "tvchfjq", + "fziaqnt", + "snigeyh", + "ivosrup", + "hnarwop", + "gmcokdj", + "tnvadcb", + "xksiwef", + "wufzhso", + "pngcxez", + "izbpfer", + "xrqzftl", + "nvhypko", + "cmdgnkj", + "tpxcmef", + "jsyqptl", + "ogzcvxp", + "ljgawco", + "mvqftwy", + "xmfihtw", + "ruveahg", + "vosluzc", + "kgzyefp", + "biqtrfw", + "svidaly", + "kwhvyut", + "acudtvb", + "mteorbx", + "vizmlbu", + "jnydihw", + "qsbrovm", + "pmdftsa", + "zpuhxea", + "oqfwxvl", + "ylpgcnq", + "mfeaiys", + "hcequav", + "vcqmary", + "chiokdz", + "idbmesl", + "jyeftmd", + "hbyncrm", + "hlqiote", + "nbiukhd", + "khixtfm", + "xcplkvq", + "utnwfqk", + "dyqebzi", + "wjriptd", + "mngtiux", + "ocxsaiq", + "uljcwdh", + "ehncqxt", + "ltyevow", + "hcotmqa", + "acjbngf", + "rlkzeuf", + "sawnyho", + "vgplaoj", + "vwbqxik", + "wzsuode", + "qmtrkfd", + "irkjzqo", + "zaclyxn", + "vkgiunl", + "otrcimn", + "tphingb", + "pbyldvn", + "lovznfg", + "xrujmko", + "mdiawuh", + "jrcbfgx", + "ndvomgs", + "lakhixj", + "tqscnar", + "inoeaxr", + "cfthdbz", + "oaxsgmn", + "hjgzmpx", + "siuktjg", + "etsfuaz", + "vamefig", + "rdupabn", + "astxfue", + "mhenbkc", + "hspdufo", + "ybokvxi", + "isnlztx", + "ugcjimr", + "tkqvarz", + "ylwioud", + "uwymhqj", + "mcnjwie", + "cfjpeig", + "rphxgtq", + "aonfxei", + "gsdhufm", + "dghpmea", + "hkcpbnl", + "awhknie", + "ncbvoky", + "qgnxitj", + "ysnldbe", + "rfbkden", + "dpmtqvk", + "mfyxjac", + "qitfwde", + "iudnwzc", + "ytaqlib", + "zfxtiqc", + "upqjmtc", + "ndyrgui", + "kfilntm", + "dlqgbmh", + "mieovaq", + "xdynows", + "ncsjpol", + "rimypgb", + "zdphlyw", + "bjlxatm", + "ehfxmyv", + "kjaefqu", + "zrmgjxt", + "utzqbms", + "tkpcsdg", + "tkyeszb", + "guqxbld", + "znftwqj", + "hwkqtjv", + "gtwnupd", + "zjgtfvm", + "alwzgpy", + "gnhdkva", + "vdimgfx", + "fetpcax", + "zmflpkw", + "qaoytur", + "ckjrqob", + "hljwbxm", + "peobmrt", + "jkvnaqt", + "fhvyxtb", + "ziphknj", + "mytdzuk", + "sbogtrp", + "kofpunw", + "ayvpugk", + "gsejabv", + "yhkwoti", + "odkclfr", + "cbxvlyr", + "bnjmzlq", + "igvbqse", + "xvsqroz", + "hsqvufy", + "pdojxbu", + "hguodtk", + "nvdolqx", + "snhgxmw", + "eskzjbr", + "pcqvgdj", + "vblxscg", + "yadqwvs", + "ehzjxaf", + "cmzjyvw", + "yfqgmux", + "smkcqhe", + "csimvyl", + "saytqvz", + "ehjryln", + "yelqxoa", + "djchksi", + "epmbuxz", + "cmewsyl", + "skupgrx", + "pvuaqwz", + "ulrsdmb", + "jyxarcz", + "wzxqjat", + "xjyrvte", + "itqzvdh", + "umwgkfy", + "jwunhsv", + "zgjtion", + "edhtjpx", + "clhtvnr", + "jqktiwv", + "qvwdezf", + "gvsuqyf", + "yfowacl", + "orpuqex", + "arnjehd", + "fmwtljz", + "yedcrom", + "vbudhqn", + "wjmdvhb", + "evltgjz", + "ykebdoi", + "ypmbuwf", + "qkwmptu", + "bjgyrxv", + "dzojifg", + "cdfjvtg", + "zmkxiwc", + "szfndwx", + "yqwpkcu", + "dqvskfg", + "uaovgji", + "nmptyxr", + "tocnihg", + "hlnyase", + "dczsuha", + "jhcsndu", + "qtzflmj", + "dzcpnyw", + "byemutv", + "pyawqko", + "yvoawje", + "bcnmtke", + "xhmurvl", + "waschuq", + "pszvyie", + "misybkl", + "rzdcuhw", + "nhlmvwa", + "amsrbuf", + "jkybxgz", + "thzdjsy", + "voprfaq", + "swpdqug", + "yczworb", + "stlarcp", + "feolzyn", + "jearhsy", + "cafqoid", + "eplvxwg", + "suhkyrm", + "mbgxlah", + "zlwqtvn", + "gjwbima", + "sxwbmki", + "wbxrlph", + "vwbkdaz", + "ugxzvfa", + "kbpoqrg", + "dntmspq", + "xhivmun", + "vmictzs", + "fmwtlgh", + "jaqsorl", + "huykmgt", + "hiorbkf", + "yhngliq", + "cixyrlz", + "zgcndaq", + "auszegy", + "bnpgouz", + "mhfenta", + "jpnkmbo", + "kncudzj", + "mhwruoi", + "oainshr", + "jxorlva", + "cnpjyir", + "uqixwmk", + "aoukhds", + "wnvxtbu", + "ygomntw", + "dyzqfuv", + "kehvuqn", + "ofzumdx", + "iprefsw", + "fzphnbe", + "zumildn", + "hwugpyc", + "tgnuhcd", + "jelhkvu", + "xltumie", + "copzwbu", + "kjmcgws", + "rsxyemt", + "tiqsvol", + "xtdepsf", + "nepuhyi", + "sbqofwc", + "hsixajr", + "nftawmx", + "qgezuwj", + "hxpblcf", + "aekvimt", + "lnerdcy", + "yjiamvr", + "jhrefxi", + "zquxkwo", + "jlixbkm", + "kyaisqd", + "thfiljz", + "zwryflm", + "agfklzj", + "xhvgezd", + "hbwqiux", + "jkdpevc", + "pufihdl", + "ofxvblu", + "bkujoyz", + "ismcbut", + "uxfdbhy", + "pgfsrwk", + "enrulit", + "ohlnxfi", + "dufnopa", + "roqxgjb", + "zldkjqu", + "tlsfbho", + "gnewdmu", + "uvqfnwk", + "pjydkzc", + "uzwfpeb", + "mkqhafy", + "axdonrw", + "nmpbahg", + "rkhzyiw", + "iqaedkz", + "wlzhtgv", + "ojskivy", + "idfjgbs", + "jvzqcpa", + "evcshzn", + "foenkzt", + "eohcxft", + "uyjibwz", + "jeousxg", + "tdayrni", + "luqdjth", + "oingqtb", + "vplsiuo", + "mwzickh", + "agizlkb", + "mjlrxpd", + "mwpgdsh", + "fwmxvcs", + "mcouwty", + "zlubsgv", + "ycgqbho", + "kozncxw", + "pqmynlw", + "cbfmeau", + "lxcmdqk", + "qpzbxac", + "fxpyvdw", + "gmzfxbu", + "xtvdejq", + "opfnzdj", + "awhxjvm", + "bkulehr", + "xwzdgkt", + "fjwbzmd", + "gnmxeuh", + "gadeoiw", + "ldkybvm", + "ozhldet", + "bnxjwyh", + "fobjmxp", + "sztyemx", + "polxfhk", + "yaufhng", + "uvtyqib", + "ctagsqu", + "egqswld", + "mzhcwga", + "rqyksze", + "lhwagen", + "ngkulvs", + "slcqnog", + "gxbchyf", + "auzivlb", + "krsjbne", + "ipxafdj", + "rmicpsn", + "xdsnfja", + "mckzgiw", + "mozquya", + "cgmqrba", + "ribxljp", + "uqhoany", + "ixlgcvb", + "huoebra", + "sgozudy", + "oeuxnrj", + "hnvxcpr", + "rjmftda", + "utjaegc", + "almhuqk", + "kenpdli", + "nhwtjku", + "igfqybd", + "rpidmsq", + "izhsmwb", + "gvifesl", + "xymikdj", + "hvrzalt", + "tubqnsj", + "iaxkfsw", + "iopcsfz", + "evxakty", + "ipeychj", + "wvbsupd", + "ftobhnv", + "uqjdwfz", + "gbkrmiv", + "tuebjzv", + "dfgvtnh", + "idfsgkp", + "bejqtcx", + "vznxdrq", + "rkowebz", + "tfozkld", + "ftjozqn", + "zpwxkng", + "gkylmcv", + "cvzljbf", + "reimzoh", + "artnuli", + "qlusfze", + "azgpcjl", + "fsuvgtk", + "eysufdr", + "oatznjw", + "ezmcuax", + "nldqpfm", + "woipmte", + "sqkhcea", + "senwcfp", + "hljzpwt", + "vcksbrw", + "jkmawup", + "mdztbyo", + "ywerjap", + "ogphdvn", + "jkbxail", + "nvkahsq", + "kafqhtl", + "rpdkzgy", + "krydlxh", + "sfyagmr", + "sqoarzk", + "tsbzqep", + "xltdcsb", + "zgxymsd", + "lsqrydc", + "gsftpbo", + "woqvjuc", + "lziqndv", + "islwxey", + "wvdhtjo", + "manzguy", + "etigmly", + "civthmo", + "yebqifd", + "bmeypxc", + "avwsfdy", + "qhfugnv", + "pubytle", + "dglpfzx", + "zahrkoj", + "uthmlof", + "qefzuvp", + "xyhrpui", + "conekpi", + "wbzcfre", + "dkzxsep", + "fjmervq", + "rxpnoqt", + "zjwnosl", + "jwnyzfu", + "tbcjmiz", + "kbevcql", + "qzhjgso", + "cwbnysu", + "uydxcio", + "dpfvsrc", + "ealzgmy", + "wvkbpcf", + "qyrzfie", + "fktaodu", + "ovzdncw", + "mbvcflg", + "wlrhqzo", + "oxkjuzm", + "eldgrbj", + "gjrytvs", + "nbgyvlc", + "hgswxef", + "sdyhjfx", + "qsjplan", + "zctfdnv", + "wmtpgvr", + "zchjkpv", + "vtplexw", + "mldaphe", + "bhuptwi", + "ryblzuc", + "cplaonq", + "lrxvkey", + "znbmprx", + "rdmiovb", + "rmktwsa", + "ymughtv", + "demplqx", + "rkufezb", + "cezfkxy", + "riksyfu", + "datlpmz", + "anyufwe", + "kyotjev", + "ejlvsri", + "vmdijfo", + "xgtoaki", + "kbwfvht", + "rhlicmv", + "ldoireb", + "grcinkh", + "mxvocwt", + "ohtnrke", + "qvzaebd", + "yarbucz", + "qmitwus", + "pxqbkjt", + "prgwzcj", + "hstdrya", + "fztmiuc", + "dtagwms", + "swzkxav", + "coheslp", + "ofjuxsk", + "fqdvtao", + "tsripgw", + "iqdnjts", + "auzlvjm", + "rugqnyj", + "hcobtnp", + "pajygmq", + "yzfbxvo", + "tbxjrah", + "fkpqmtl", + "wtclpqy", + "qnpxrdm", + "fnvjumh", + "wnuvzbe", + "vksnxdu", + "qtmoybl", + "twpqgux", + "stxwhzg", + "njqashf", + "dqzbmpn", + "cwhixsa", + "ysrwbhn", + "gxhylcf", + "mudceyq", + "cbirwyf", + "jlmxwiu", + "yhnsbxk", + "lewabfz", + "xtmdohw", + "apxtgmn", + "dygmexs", + "shkfjwi", + "kwsfgqr", + "ayjrxzk", + "hbyzgrk", + "rxbugma", + "wycoquk", + "qzjuifm", + "ibovzay", + "adwluxb", + "jtwsbdy", + "yfligod", + "juadtzm", + "kqjnzob", + "ekapqis", + "axhfgmq", + "esqwjli", + "xiopvly", + "wkidrtp", + "fbvakex", + "zytiqha", + "zkbsdyq", + "pyktfwe", + "rnkpbyf", + "upkhsaj", + "vyldbgj", + "hzuiyef", + "fxemocg", + "ktlwpmy", + "ltekonc", + "lvgabif", + "yijcrpq", + "zuhtlrn", + "lkretgz", + "fvjyice", + "gbrcnol", + "hbnpsij", + "qvkfzon", + "fetgavj", + "lzvohym", + "zmlisbp", + "dhroptg", + "pxfvluy", + "yhzviqu", + "spxwidm", + "qgwtcme", + "pfibaso", + "kfdhrem", + "lsqicxe", + "ajftrvp", + "txkncfy", + "wezcovf", + "daehjym", + "lgjyenx", + "hjridlw", + "qyozeix", + "sulgqhj", + "mdobqst", + "ftaskgr", + "opcyuxi", + "noiazjx", + "natgpjd", + "mwoyexi", + "kwlhtrq", + "xamlvgf", + "linydhu", + "sjdnmpt", + "frpoctu", + "oywnicm", + "nzogipq", + "uhjvyde", + "kfiydgt", + "tizuxlq", + "biytfhg", + "nyzschu", + "lycftwx", + "oqysuja", + "arizemf", + "kqwgbit", + "wfqdxbl", + "ebgsvzr", + "haldmgt", + "ivlwcyo", + "chwnkri", + "kushvwn", + "lavjihn", + "dynahke", + "xekibwo", + "ybgmacr", + "dalhcbm", + "luwxbqa", + "tkxynjo", + "ctkjxpr", + "zqerbfk", + "pkilego", + "yfsinxk", + "gapishm", + "tbujfcn", + "gihzspr", + "jsvmezc", + "zehcdmg", + "zgflhrs", + "pxcvfaj", + "ipsdbcx", + "jbexwdq", + "fpyltvd", + "owdtfqs", + "dwmtxoq", + "lowphkr", + "xintzfe", + "svunlft", + "jyleust", + "hoytdni", + "jvitcwb", + "bztkryx", + "lkdwyur", + "mnsfxtq", + "dpecfkz", + "shnuapx", + "rqibwez", + "fegmnpx", + "limaftb", + "qiabmcs", + "omgtqld", + "dpvulae", + "xlowujb", + "qxuthgv", + "rswqzty", + "rseumni", + "lversig", + "kfixnqo", + "hxayjcp", + "kbrdcmy", + "qvsljyi", + "ylqapdz", + "utqafye", + "lksegpm", + "nobfugv", + "hkndbpj", + "dxpwjzb", + "uvoejrh", + "pmuyaeh", + "ylpqfjk", + "wkstnya", + "fkgaewc", + "njxywoz", + "xmjsypd", + "tyjmdiz", + "lqtabgu", + "eruxsvg", + "mhdztwj", + "mnqkhrc", + "jzabumk", + "buxpdty", + "wcbfsdg", + "xfdcipz", + "artsyoz", + "zshkiuq", + "zfkqiwa", + "rsagoxc", + "poqtzxa", + "moaxflz", + "soxvcnd", + "xovkmwf", + "vwcxasf", + "lwrvozu", + "emstwrf", + "matenpo", + "jlskmbu", + "ndivrsp", + "zmhedci", + "wodyihx", + "pezjvcg", + "xmltkbf", + "unmyecj", + "krhcxev", + "qebirth", + "oagtdje", + "kiaxlfd", + "ptlngja", + "zdjgepr", + "zpeaiqf", + "gqrhiey", + "gpnyxsd", + "acgtjln", + "rzwxepv", + "bkowfcn", + "bykrezm", + "mwkyenx", + "jwktzmq", + "hjrnadv", + "ypwainr", + "ycimvfg", + "bndiyga", + "gturwml", + "pzcgbnu", + "fgtdlyb", + "caxqtoy", + "lsohybi", + "edfkiol", + "maqwduz", + "dskwalo", + "ohcmpai", + "tphriyg", + "lpuvkmf", + "ormfqds", + "aiozrpk", + "vjwqrua", + "jsbkxcw", + "ijqeups", + "aokswmz", + "vfanpdy", + "dmpqwer", + "phutszn", + "nfluxtk", + "fznbodj", + "ufanzlq", + "ybjvids", + "elnjqkc", + "yudhemo", + "gwmsaoi", + "pmwqlic", + "awgqsbm", + "mnkhary", + "gpnqfby", + "bivkhdt", + "cygsqxi", + "bmadxsz", + "ncjpuxe", + "yjwxise", + "iqpljyg", + "txabmil", + "aukongl", + "wpoxkea", + "ilswoen", + "qgrijtk", + "mfxhjna", + "hrxpqae", + "quiokhj", + "eikuxyd", + "dmouqpy", + "lruvtye", + "glrhnoy", + "lqpszmb", + "dvgkqws", + "altudzf", + "fwnybkz", + "olimqfc", + "adwnuxr", + "clsokbr", + "rjptogx", + "egfkwds", + "poqrkfg", + "ruxhgtz", + "yirqfpx", + "vabusgj", + "ulfozkr", + "ozmgiqb", + "whcpbgr", + "ufagwxe", + "ltyouxq", + "cxjzvkn", + "ubhgmlc", + "bmpsujl", + "zlmacdr", + "nmukvpf", + "lrfdhym", + "adrpvsx", + "otfgnvj", + "jnlsibo", + "nbepxiy", + "tdkrlze", + "zyiqtal", + "ikunzet", + "bekwuip", + "fkgceja", + "qbzlwna", + "mzfakir", + "bgecxul", + "pkexnbq", + "abfzogx", + "ktfzruo", + "mwxzdap", + "buxzlrc", + "fpxmvng", + "ehufksr", + "akcsrxg", + "qidzots", + "wjpryne", + "ncairwq", + "nymjdar", + "tojxglb", + "sznrlme", + "udsiavf", + "hqwfmrj", + "ieckvzn", + "qprfxye", + "jzkmrfu", + "joncrvw", + "oaijzvf", + "npvamkz", + "okgfshx", + "tkcpvlj", + "vwegczn", + "aztilcd", + "ltajsfp", + "vrjhock", + "tguioxe", + "qznodea", + "cxtiazu", + "zdwltnh", + "zqrhedb", + "rphdvqc", + "qhzlytb", + "ngtpzcu", + "fqnmgej", + "rtnhkxp", + "qxnhawv", + "ubdyzhj", + "koruflg", + "rjsgacm", + "tbkzpyn", + "spialxv", + "nlawvym", + "sxlrvnt", + "dfxerlv", + "ryehgmo", + "vnfubol", + "dxzcbel", + "fhzckiw", + "xlcidfk", + "pwzqglm", + "bnmrtes", + "yjdatlc", + "snwemlq", + "hkofqml", + "wtpsbhl", + "txcnywq", + "pckijha", + "tysljpx", + "eatdogb", + "sxfvjle", + "djwbvco", + "simqolc", + "eigqzas", + "hmpevsi", + "asovigh", + "isfxrlw", + "gmhnyxk", + "dpkfumz", + "kdsoqar", + "lpsdmwg", + "cubyajp", + "szmwjkg", + "wrlijgk", + "maivrpl", + "yacvphw", + "wvbothj", + "ycrmopw", + "dfnjpzt", + "yukvtsa", + "drbwaiq", + "oauhxfw", + "kbydrlo", + "hvtzrpq", + "kpqzorc", + "hqxnezi", + "qfsnkwo", + "nsxdkri", + "lxepbcq", + "dwkuzam", + "oabednq", + "crlbosa", + "ykaxljf", + "hkfrmcp", + "ujpkhox", + "cytghbf", + "ramlnjx", + "oscwdrm", + "ethjqlp", + "mvlwtxk", + "mrafznc", + "olbjahz", + "wpsjyrd", + "grjonbe", + "fmcsyvx", + "xporhns", + "rvmexjh", + "rxziyta", + "zvaplsi", + "tuxghva", + "riehjnt", + "zpkohri", + "kaqgdbr", + "gvpydeh", + "erifvwq", + "nkgtcid", + "dajvmwn", + "idmjafl", + "aixqjgn", + "mjzkpyt", + "psouyxa", + "wscaonu", + "cozhspv", + "gulrqxt", + "bvazrkw", + "pagslko", + "pfdcyzj", + "xdfcgsy", + "egflidx", + "cqylkwr", + "howvxpz", + "sbhcwyr", + "nhwbtej", + "kblanwr", + "wkvjrzo", + "kyghtwi", + "monpefh", + "ekgfozs", + "uwbyslp", + "yclofvs", + "ekoiqvj", + "rekfdwm", + "geuxnra", + "zeahfln", + "qnpbyiv", + "gydmoil", + "yfsmzoh", + "bgevnpz", + "rsaodte", + "mlavoqw", + "rkuyqcl", + "xvdnokq", + "iqtowan", + "ndgazkb", + "ronxvqi", + "wfeacns", + "sohgkvp", + "dblygro", + "njycmzo", + "xjbvukn", + "ctgwmyq", + "oblstfr", + "unzvfkm", + "slhwgaz", + "wifxeqa", + "ydjxrlz", + "qihgbwo", + "vqeafgk", + "lsibhwt", + "ckyuohs", + "tefuwoq", + "hnlgzki", + "divlsoc", + "ysxfgli", + "npdmwqk", + "fnojkvq", + "lhvkegb", + "cwhmebk", + "lkyzvtw", + "rkoifmd", + "xhvjsut", + "fzrxoqk", + "vcsltng", + "adhgjvi", + "tkvicrm", + "vwchkgx", + "djtqxvo", + "tnbmvdp", + "xgjenik", + "yubawtd", + "znwelju", + "sgrltvx", + "cshofqy", + "eyhkupx", + "mhjayos", + "ydlktxh", + "wahtzcx", + "ivmedzq", + "fbqvspn", + "zsrmnvc", + "brcwyem", + "lhdznvu", + "qswkvtc", + "imyhjkg", + "hoztuvy", + "xbhzjwt", + "ovmpajy", + "bpinxea", + "rqwxmpc", + "jibghtu", + "nqiwesz", + "jeuztba", + "iahbmks", + "aiwdqrj", + "cpuazye", + "bwfqsug", + "nhzityo", + "thexlmb", + "jokvcqg", + "ophkedc", + "obuvycx", + "hfolpta", + "yrvqlxk", + "dfubzgp", + "chzxlar", + "vbxelih", + "ecgnwuq", + "poyzbvn", + "bqdtfnr", + "ajonflz", + "zyjgvfl", + "fbldquh", + "estbhva", + "vxdusli", + "nsptofx", + "xzhuepr", + "ubnyflv", + "yzvetwi", + "wfrhqmn", + "rkfxqiw", + "gqdcvwb", + "csaotni", + "nulgtjs", + "dlfsmry", + "zmuplcx", + "njrilhw", + "ikvoync", + "pnymktw", + "nplmsof", + "toclekn", + "dcfzpkl", + "knivsuz", + "fkirsbn", + "keavzid", + "xfzankd", + "trzdpyb", + "ublzxio", + "vozehqp", + "hevitsx", + "tjfduik", + "oijwbek", + "ejargnc", + "rcvdlfh", + "icoebzn", + "hbkotys", + "vwituqr", + "rhwikup", + "qcdnhmy", + "hlczrke", + "penxrlg", + "zvwisgf", + "uedbiny", + "szmbdvy", + "wfgkbiv", + "zrfcygn", + "rcmwndg", + "qoegrlj", + "mxqljty", + "qgfzvuw", + "ustbwrg", + "wufxgph", + "wftksza", + "etnaryi", + "ktfpwhq", + "sxnhvie", + "kxqvjyl", + "zedrojp", + "xwlauvn", + "dpnkhaj", + "vcoliqd", + "kugwstl", + "gmedbco", + "evblxkw", + "nlyugcx", + "ruboczv", + "rstapmb", + "awjhsfd", + "wskxjuy", + "pgfkrld", + "vhfysmq", + "siwpoal", + "onkixzj", + "eolgxna", + "mnrkawz", + "tsdhfvr", + "odysjrn", + "nxdgmpy", + "bljokfz", + "qweoirn", + "jwkchtd", + "bizlxuh", + "zmnqotb", + "lambfez", + "vrzjwsx", + "yocvmgr", + "mvhznik", + "wpubkhc", + "vpgsmdf", + "xjarypw", + "bkmthpo", + "rnzafwd", + "ekcnmsh", + "guqzeah", + "qrsmpoj", + "jlveqyp", + "pzytnmu", + "asdrbux", + "zrqhnut", + "ieypdhf", + "zxbjrqa", + "jvecaqw", + "bxctpzm", + "aougyhj", + "gfelvzb", + "zvinrwp", + "vlpqxrd", + "plmgbsk", + "vjxacdz", + "iepsqkl", + "iovkuzw", + "ecmijvd", + "uvhiaql", + "mcpwjgd", + "fmzwney", + "qbigozc", + "npsylbd", + "jgmhwcq", + "rpocsuw", + "cubmwkq", + "wdyghel", + "qvkiwbn", + "pelthjz", + "sturyxk", + "zwnxvql", + "lsqmydg", + "ygpvqjx", + "ymwcvei", + "cedjaty", + "muilqvk", + "waphful", + "pljozgq", + "fcrmuzi", + "jmyufnc", + "aswjzvr", + "mofpzbi", + "xfouijt", + "dcuzikl", + "jyrvzph", + "jhfiaum", + "psuezqh", + "kdzetlc", + "xeirmaq", + "kzdoeqg", + "szxiomh", + "nbdfztj", + "qojpalr", + "gcwtpbk", + "faoiwnj", + "sjtxrgo", + "xfvklpq", + "afwctyu", + "dujxcwz", + "lgoryud", + "yaobcmx", + "adjkhlt", + "lvtegsy", + "guozhfx", + "wjndixz", + "avqtefw", + "yesbajk", + "menigbt", + "wmqrkei", + "mwbjdxr", + "hamdegr", + "kvdrfmt", + "hbtexwm", + "kijotgx", + "ndkfvwa", + "kpbfloj", + "whkfxig", + "ubegfin", + "vpacwfo", + "iqgcdpy", + "acqysjb", + "nhyismg", + "xdupysw", + "ujaxhgv", + "cwzdnpf", + "gusejoz", + "xkdlybe", + "busjiag", + "ndtumcq", + "pkythjr", + "cnsuzdr", + "vnahtif", + "dcryahv", + "bptoqwc", + "nuctadw", + "vuxeobh", + "yzckltu", + "rikhzfp", + "nwklutb", + "dchtwzq", + "oeyhwfs", + "qchvtop", + "prlkfni", + "jskoudr", + "igyetsl", + "mlzsjdb", + "citazok", + "dtplgcy", + "bopfzih", + "mojpvcr", + "jgpmzfr", + "rogxwah", + "kmrtjnx", + "nqiuxdr", + "nwdjzba", + "pxnveil", + "smjwnrg", + "hutybfk", + "akrytiu", + "lsjkxim", + "zjrbeia", + "rhzwtca", + "aoyetvm", + "aluyzos", + "amlzvsx", + "vxksjni", + "vuatkqd", + "veimqso", + "ftiodwx", + "ulihnjm", + "pcaslim", + "vnkgboq", + "ayfljpg", + "jwucpkq", + "ktjfmuh", + "uvpgaoi", + "ksalwyd", + "svimrdx", + "gsrpmqt", + "ifbetdg", + "izujftl", + "kwcruqy", + "mlikjox", + "ztxkrlm", + "sxhqkia", + "dhbvjpq", + "iuhsmad", + "vzowdjs", + "uamoklh", + "ziyfope", + "dkvgocr", + "tvfgeln", + "yogbzku", + "pqbkrno", + "vsdkcop", + "jqoipsv", + "dqpwuhg", + "fmzueoj", + "kvclnys", + "iofaumc", + "eusoafh", + "vxcmude", + "jzisbdm", + "uarqken", + "rsaqctz", + "wdepsuk", + "qrkbnut", + "voyklhp", + "ufpmgdk", + "hvmljxu", + "xwcimyz", + "zfoxpnc", + "bsheotk", + "xnbqgse", + "bvjznxt", + "uoejxcy", + "uafovmk", + "erntqkd", + "mpargxu", + "xztlrke", + "hkzioye", + "ymasijt", + "wxlreas", + "jclknux", + "lbituac", + "sqbujty", + "cwktpxd", + "thsdnox", + "yvmjusp", + "zoydxcl", + "snycizr", + "rwexyga", + "vzadmws", + "pujfrmx", + "ebjqpta", + "xgzcktb", + "zdygimp", + "xqipzjv", + "lxgmnpj", + "mdpkbxr", + "jmratsb", + "omxfptc", + "cfievpl", + "blyznvf", + "qlpngcv", + "zuklyvp", + "ypentmk", + "jxndshw", + "vmczlpx", + "aodimwv", + "nwhkxov", + "ohnuxbt", + "lkunrsc", + "lbugqas", + "hjvznxc", + "psbhznc", + "gyqkshe", + "tiqckfh", + "jnptykb", + "gjuynvi", + "zteadmj", + "pjfxshn", + "aiedopf", + "mqrgbst", + "peoixcz", + "htivekm", + "mzlypri", + "lnmurek", + "invmzud", + "sezbofx", + "kguafws", + "bgohuaj", + "lszydut", + "qkydeli", + "bglyxdo", + "ugkirvl", + "xjrznug", + "yojmxci", + "eklqubm", + "honlziv", + "mavxowt", + "uoifhkt", + "dueqvip", + "lgckvfp", + "tchrluf", + "dznygit", + "pcansib", + "eqlbtda", + "xghatdy", + "vusbyce", + "wrycsfo", + "oveqjlb", + "xbytwjc", + "krwxzml", + "qoserju", + "wvykehs", + "rjglhdq", + "vktjfyq", + "jrlmvwh", + "knbaxew", + "imrxlzw", + "ytcuovh", + "qobygzk", + "sjlaftv", + "jgoblpa", + "perzsyf", + "iqjptdz", + "pilosuq", + "watbevd", + "rsvjklm", + "urnxpfv", + "ofpzrag", + "duetrbl", + "xberosf", + "tsvxwpd", + "ikjhwnb", + "cifumrt", + "koyficn", + "fnguzsw", + "tpducmb", + "yicpfhj", + "uklfhxm", + "hvriqoe", + "psbnozr", + "rvqkmtw", + "pxanrmv", + "taongkx", + "mwfhcnv", + "yfcmtiw", + "lfngxeb", + "yczidro", + "hmzdspv", + "swtnabz", + "hfnbawj", + "wfainzc", + "dnjfpzt", + "gebodmt", + "iwalugc", + "tcvlhrp", + "awoytch", + "lkdvjpr", + "syztkad", + "ghfmkde", + "mahcies", + "eipdflb", + "djxqleg", + "vapyhdt", + "eqvlxim", + "enrjqod", + "ujedlrg", + "jgeiknd", + "aixsgrp", + "eotpbun", + "eajmwgp", + "acfijzm", + "wvmbeqy", + "gdbseyt", + "qfunreg", + "dunoxki", + "kwgrati", + "ymekdzw", + "xtobsfj", + "sielbnp", + "iyztksh", + "yfszmnl", + "vxfyzbt", + "zbpcoua", + "edhpxtu", + "bgoewjd", + "ndozwpq", + "afgbwzc", + "tomhrfp", + "hdamunc", + "ytihwao", + "qzmlxrp", + "fucbwat", + "wvaplbm", + "lkhnbwu", + "amuqzeh", + "vjsodbr", + "hfwldtv", + "gjmupdo", + "axjpwkc", + "rbtmlzd", + "pekudaw", + "zpyxjkw", + "wijzmvl", + "hqrswxy", + "lawnhvu", + "ljxobsv", + "txpskgr", + "qxodbas", + "fhrluao", + "pvgfkcn", + "gwrsueb", + "evoklsy", + "hlwyvji", + "tpsaunx", + "mhejdso", + "heftzpa", + "dkybehq", + "ofduerz", + "xdulzma", + "lutwmjx", + "lqdimjz", + "ejcamys", + "wubehmf", + "hxiwbez", + "eowpuxv", + "inarjvz", + "zlgtnif", + "uqbkxto", + "ugvbznm", + "zmyvhkt", + "kxtyzqw", + "wrgmuyf", + "davfgzy", + "ehgqzjx", + "clqiynx", + "haqdsru", + "wfevagn", + "wyvpshl", + "wtdlqug", + "lmciybk", + "aclsyix", + "gtkxbvm", + "jcydnwq", + "clhzktx", + "vdmeawz", + "yafmkwc", + "ujfigoa", + "tvnqkih", + "giypuml", + "dzubqaw", + "nfowjxu", + "kbfiqrc", + "shibnka", + "tepcyhw", + "nkfwvbh", + "nhzvjrd", + "ytfokbn", + "tpdlcjf", + "sxaqtdr", + "skdlaht", + "yxqguah", + "elsdbkr", + "xqiomsh", + "bvpwlxn", + "ovmbznc", + "dyiestf", + "cymdwri", + "podfiwm", + "mofpyiw", + "sdbkvfg", + "ctrpiva", + "aehljkx", + "havxrzf", + "gpjhekr", + "pzfasru", + "ilmsyqb", + "idbxjec", + "wveijfg", + "usagmpb", + "naldkhi", + "soknvpf", + "dhajcfw", + "uphigqo", + "egfurak", + "imgatqp", + "laeysjz", + "rdtzkjm", + "jfvinre", + "yhaqnpi", + "hpmjzsx", + "qwpkmzx", + "kiqxenr", + "jqgxymh", + "nrilsbo", + "tdvkwgh", + "agzlvdj", + "hdjgfyr", + "uoxadki", + "qchbgpy", + "vnhlcsi", + "yzgcvhe", + "jfhwxns", + "jxbhklo", + "ifvxhzp", + "yrzwnua", + "wmlrpfh", + "ujrtdab", + "ipdocyw", + "gkntdub", + "dqlxmva", + "mdvsncj", + "oryabti", + "mzkacgo", + "avnpkjg", + "atijqzs", + "jdoiywk", + "lwrbymh", + "xrluomi", + "itanfoz", + "vocsndi", + "ptngizb", + "ircfhkp", + "vfxphgn", + "joiygew", + "rqgvdtw", + "xlmhyic", + "yimehnv", + "jfbzpko", + "ifgsdlk", + "ijfybsn", + "ykdvwpm", + "zpsedyq", + "wjzspnf", + "amvrxdn", + "mfjwkrn", + "exwgyhv", + "fwozcgr", + "pkcmfan", + "lkpzyci", + "kjfedvc", + "onwbcef", + "dvtkbyc", + "eiqznmb", + "fuqwprm", + "vcqmexp", + "dnwbumz", + "lbukays", + "pilgywn", + "unywqvm", + "mydflwx", + "jzyemiw", + "mfvetbk", + "duvshzi", + "glyqzhw", + "idtoqsh", + "sbucdyg", + "ylmwnkr", + "xbodypu", + "dbyiert", + "kfrjioy", + "zubkfgx", + "risozjb", + "ivcsfte", + "sgbomvx", + "wqgndvy", + "xmeszgv", + "fmojcqs", + "prslyct", + "kbxfvoq", + "qflajrc", + "gjqnuvh", + "qoxhepn", + "mckzegi", + "mvoczhd", + "lidfpgt", + "ksujtqb", + "bhcfwug", + "bzhpqec", + "klmbxvf", + "aukjowy", + "whucxbp", + "ncywsdv", + "peyxdbu", + "lkqjhax", + "munrqza", + "hlfagix", + "pknofal", + "zincvty", + "bkxhlyg", + "veaybwp", + "apugkoh", + "nwgtsxb", + "arivdou", + "lzpxfru", + "fhybdvo", + "cfqyhim", + "hkucqpy", + "lnxafys", + "knimvhd", + "ekhcaud", + "urtbcvh", + "rdlaugs", + "wzhauid", + "hialpkt", + "jkvzxwo", + "raubsxl", + "mybtudr", + "bakgxhz", + "dgkjshw", + "trwcdpb", + "bmyesuw", + "jcevmhi", + "ekishwt", + "jkmyoqa", + "xpfthba", + "pknijol", + "fcubmaq", + "oudrkjb", + "mzoafqu", + "qyxadzo", + "xafmreg", + "bqvgsxk", + "yqxzukp", + "egisjam", + "npoykgh", + "tjzavnq", + "qvpsoey", + "rqsdpgc", + "qzdpibe", + "sjtzbho", + "egqfkuo", + "zgsfhjw", + "qodlcma", + "reodhag", + "pmlsdxo", + "rtwivln", + "vpikdmo", + "fmjpvql", + "dgfpaqm", + "zjrftgh", + "jliskep", + "xwmozpr", + "xcskmez", + "apserwx", + "eubnvxo", + "ltcgdae", + "sgbxcfl", + "sulhtda", + "gwtzavf", + "zoiyavj", + "nzerbuk", + "ykvorfx", + "uyehnar", + "jazhebr", + "hrxdyjg", + "vscqpog", + "msnxyir", + "bwdngxu", + "mzogslp", + "ginprjm", + "ndjmvxy", + "nyflqhk", + "wcsthvq", + "dsyzqna", + "slgbwta", + "biqylhm", + "izmpsvh", + "szfpcmn", + "vjotbqg", + "vizgfps", + "zogtspk", + "opuclkd", + "hcazkvi", + "eqgkwac", + "bscmdog", + "weailxy", + "drmobza", + "qnwjgry", + "qobszex", + "axycrfq", + "mhzxogn", + "hzsnral", + "tbxfule", + "utimneq", + "qcjuyog", + "lycwhbm", + "uezqkvl", + "cxiapme", + "rqyhvdc", + "rvmhoyx", + "budpamk", + "xlkvfrp", + "cgiejwz", + "vwfdjeq", + "rlxmqow", + "cigryef", + "ncegisa", + "exicqnw", + "idlbkaz", + "jakrsed", + "nfgoqry", + "pgxjsdl", + "mgnlyvb", + "cadvfqb", + "bkzipty", + "vrgqson", + "ipkvobn", + "fgeuanv", + "guslabd", + "segqhmf", + "ptmdqhs", + "cdqjmxe", + "qmvgsbt", + "bdhyepv", + "wslaodc", + "cydfrat", + "cptlads", + "xhfqruz", + "apynfxm", + "tfwjucg", + "dwgetko", + "gjwaxup", + "qhuvfts", + "qmifexo", + "xsordif", + "hvspfjo", + "rswjpfc", + "zrskbda", + "yrxqtvi", + "unjqaxg", + "ryzmhgp", + "svgarwc", + "yfuabzd", + "rfnzhbx", + "lerhmjz", + "tgqixln", + "rakowdi", + "ijleonm", + "bkzywju", + "gmuveri", + "olsezpy", + "xjzmwly", + "qsoijax", + "ndybrlo", + "zseyldw", + "xoyadqc", + "qavnigt", + "jntzphg", + "fxjrwih", + "kqvngre", + "vrufxac", + "nuftsxi", + "ublxjpi", + "zoiwebx", + "aklwnob", + "bjwvsil", + "pqnecuj", + "hmcfwxl", + "dophmxr", + "bmqnfpv", + "zlvhqxi", + "belqacs", + "yiufckd", + "abrovfe", + "zdryqct", + "atsxlbj", + "ygvoprl", + "pgyqhtw", + "mlixona", + "qorebwg", + "rxmwzoy", + "ylpcoaz", + "lfjgbda", + "xcamidf", + "fuwiebc", + "rdxvkbw", + "urvxgao", + "vagnbcq", + "ukmqbld", + "swrdgxq", + "mohsaul", + "sirmhnl", + "djsknyu", + "zqgblnf", + "ktipahn", + "prxqakv", + "yhtirep", + "dgrilat", + "rjegivm", + "ikotwuz", + "ifvkcex", + "ydnfjpr", + "azfvkmu", + "blzarpu", + "gfhldan", + "mvrhzgi", + "acfgbuv", + "bhwatus", + "sprbzex", + "dazycxp", + "bzjqrxy", + "utzxpdc", + "ouxrnat", + "gntpaxh", + "nhvrtoi", + "tvpbhiu", + "scrbiap", + "rydfxwk", + "mfvwkhc", + "qswveul", + "olumfwa", + "sfnzkue", + "cumlpro", + "hbtgfsk", + "ytejmbw", + "lytaipv", + "vsoxiyp", + "dzybapn", + "edyfakq", + "yhuikva", + "qrxivyu", + "mkewnyj", + "anzbojy", + "ymudlce", + "tucqmyj", + "uapzeyk", + "rcufdxz", + "wfrczib", + "qjmkidr", + "azvrycd", + "hbvlfar", + "ijzruwp", + "kgjqtau", + "ytbxchz", + "xhwvsze", + "oipgnjw", + "grhpduf", + "gwbictk", + "jelybwc", + "jweqlam", + "unjdafs", + "msxkqde", + "gxrdcuw", + "pfbhyud", + "bwsgmly", + "wkqavbc", + "hprzbew", + "diwhmay", + "vgdkbwu", + "srautnc", + "elgfzjw", + "oinvfax", + "ziejtgu", + "kzpxrhd", + "aveomfj", + "dnyjzue", + "gpxnilt", + "xifbzro", + "pfyceud", + "loeupyg", + "ndzmcvg", + "szhfxua", + "jpvrasc", + "yvueolp", + "dsagbzr", + "vxzdagc", + "pgkhetl", + "tpexgjw", + "cpgqhbx", + "dehtiry", + "fyntgqw", + "abdqfly", + "cilkuxf", + "wvdngls", + "tsefaxq", + "bakdliu", + "cvuzenq", + "rycazsv", + "hcneypj", + "qcofbgp", + "yvzaquw", + "tbixyvd", + "hasozyc", + "hkqxvjz", + "buryoag", + "tolmiug", + "ymqksde", + "njqtxbo", + "xzrkhds", + "swbhemg", + "gjismxz", + "gtlrjoa", + "mldoxpj", + "gdcvzxl", + "wutxkqc", + "nojzdab", + "uqnhwgz", + "yzlhqjf", + "htxsjai", + "duxtmzh", + "cykeptd", + "csqmorj", + "gqkeicd", + "zuchieg", + "yvfszix", + "akdibrs", + "aftlmhj", + "sxzevor", + "kemrhiz", + "deiugyj", + "geaxzrh", + "hqwtifg", + "eolqdtv", + "qutxyew", + "yszklvb", + "ynidsbr", + "zcxunwf", + "flhkiwx", + "oqpvgmk", + "uxlpire", + "nrfbzxd", + "hpxfjmn", + "liysmhj", + "haqcgij", + "ohecwya", + "kusvfae", + "iyjexbg", + "ovchxwu", + "rtmailw", + "jeawcdv", + "pjtyodk", + "oplyrca", + "tlpexfv", + "xgjedlf", + "acwfpdi", + "loimvsq", + "tnocpdf", + "ytgknud", + "kluchdp", + "jqgczem", + "zxpfles", + "tclabke", + "wcrpkfd", + "jmyuvsh", + "zivmxsk", + "xmdhivb", + "irlvgpw", + "jfqurpl", + "nqbjzeh", + "yrjeuot", + "ixbcrtv", + "gpbrxdw", + "lypefcv", + "tzqknda", + "cxkhagi", + "uwdmths", + "krvwhex", + "zhqlwpv", + "jvzkyoc", + "fkviynl", + "ksxltyd", + "sfpyhtx", + "dtpfmnk", + "vwadpin", + "pfhwrnu", + "ktebcax", + "tvwdnzo", + "ludhptw", + "sxnphzu", + "mufqjgt", + "mwfnout", + "uairszb", + "tblqmiz", + "ceakpzw", + "nbhsajv", + "ugefzla", + "cmhlsjq", + "nhqslcz", + "felutmd", + "ibxehvc", + "lwyejkp", + "jgztlki", + "aphdjfr", + "dsyerak", + "aixsrun", + "cyjzslp", + "qikdhvf", + "iqohzxy", + "majilwn", + "soafrcv", + "kzvsrox", + "nztwrvq", + "cayghwp", + "mbnuepj", + "ifsjdnb", + "qvtloer", + "lrexmbu", + "knrlpcv", + "ezacynj", + "liejfgs", + "iwqavbs", + "iqxaflu", + "qhtzfnv", + "nfrbagl", + "wmltiah", + "firvmcq", + "uqcmptd", + "gqnelmv", + "pqkvira", + "brxjgmv", + "ubdhvnm", + "diqsaeh", + "ykihsvb", + "ufcspdr", + "lmfcdni", + "mrtspcd", + "nhtgywc", + "crifzkd", + "bzyhrxf", + "dswtnpl", + "ewxrsvb", + "ukylpbd", + "bwjitla", + "ucnfopz", + "exfrshz", + "eidtoqa", + "tqzjoph", + "zltmghn", + "pwhtzyk", + "qnkfgel", + "lezitny", + "zxgklot", + "gvrqpka", + "vnyhzga", + "vawomcu", + "mkrboji", + "xjylksu", + "lrkgpoa", + "dtelzxp", + "anpiqbg", + "ewqrltv", + "ijcsmzt", + "ovzeqhs", + "nxtzyev", + "lhxfync", + "gurypme", + "brwhifz", + "hacpxqk", + "caneguk", + "kbngvyo", + "whjzmxs", + "vsnhkjl", + "evizfgj", + "ayjfqtb", + "juizrvy", + "klnaivq", + "jouzwbe", + "sumyrno", + "qxfztbo", + "tjfmprc", + "yrzdsla", + "rktjiem", + "iwehlty", + "pnchfid", + "vrowekl", + "mlztxka", + "ysbulva", + "kinzwcx", + "cotxhey", + "axwvlpe", + "enmiowv", + "ivfymtq", + "gbepkqr", + "qvlxjot", + "dkcyxng", + "hacweuj", + "cigjmrb", + "anqgjtk", + "tvzsxkb", + "pvrotgk", + "nrfdmvj", + "cplimvk", + "vngqtfu", + "suqnjgy", + "dwhlzuf", + "ktqsdza", + "prjhfys", + "adgxmqk", + "gbvljyp", + "rlybckf", + "wsxftra", + "mwsleuj", + "tkpxnle", + "inyrcqo", + "dklaopv", + "gmvqkxu", + "wvrxmga", + "wyfvmql", + "bpwlsfk", + "xnsjmga", + "spxknoa", + "putledo", + "ahzvsux", + "yqedgoi", + "oespdnl", + "hcmjtdp", + "rbwjhtc", + "ftglrud", + "lzsjynw", + "ajquxvp", + "qcsgnxh", + "mtjelwz", + "qpkrnxb", + "gwtnykf", + "jflaihx", + "ztbvkdo", + "pjeudrl", + "kzmueco", + "tzwhufn", + "wvcmdsg", + "zbtwkaf", + "gwzmquc", + "lvmzobd", + "pshiqow", + "cfxhnat", + "snexdfc", + "ecjkqlt", + "ijwgmun", + "opvbhey", + "wlhiykx", + "ewcljsi", + "fzboenj", + "rzxopjf", + "yocmzsk", + "akstord", + "fgmvsdq", + "dktwfcj", + "qxusemv", + "amedsor", + "puzdbts", + "kbpcmse", + "burvhxl", + "uhgyczf", + "rflqkbv", + "daofijb", + "dwujthx", + "urfakmt", + "wuyrhzb", + "utxwafn", + "yorkniz", + "hgtxzfk", + "cxybofq", + "rtjqsdw", + "qtsnbie", + "wtgrhzk", + "pemuotj", + "nakptgx", + "hbwyqjd", + "nkuwcil", + "smkwpbd", + "rlepukf", + "jkoupfn", + "zwvcdxm", + "bmjhrgn", + "flvmscw", + "wfrxsta", + "prydlcw", + "sbmrdcj", + "ynsazfv", + "syafjpb", + "ubdqhlk", + "txjkdwi", + "mbhpkde", + "cathwyv", + "vnfwpey", + "zupybrk", + "tsqgbdl", + "creylwq", + "bcofnxg", + "lsvpoyn", + "ebwovku", + "miuzvtj", + "thukcdz", + "zngvdsu", + "mjfdtsg", + "monaxgf", + "mlcapfv", + "vyjwlnp", + "csprajb", + "hikunrb", + "kelmvxf", + "rljavpz", + "mcoiwjz", + "uyiwbaj", + "fjvzqrc", + "fjkzwql", + "ituzsgn", + "mzgeufa", + "snbikrc", + "xknbgai", + "vhkpsnd", + "kspgaeo", + "tqfgnpk", + "yzvrmfd", + "vtcbgrk", + "piqsykc", + "dqrvyks", + "supwcte", + "lmhjtos", + "nsomtly", + "oxpqiud", + "zqkdjih", + "aezomqx", + "bokceal", + "obyvxnl", + "yoftswm", + "hucfdmk", + "sewuzld", + "edtbrux", + "edbvzln", + "drjmkuw", + "omdnugf", + "dywmxsi", + "amdhnfk", + "kidalgy", + "pacbfqh", + "ajftlog", + "zwingvb", + "nukwdjy", + "gacylke", + "oewqdsf", + "wvudqsb", + "gktojiy", + "rqtfzbd", + "pzxyajd", + "soexuvg", + "rtfpnab", + "akygdvt", + "sxfzocu", + "bzvtasf", + "wofqyti", + "nystmzc", + "asqiuph", + "ywvpojc", + "cnvsjgu", + "ezofcus", + "vypsnjd", + "sjihpdc", + "cnqysph", + "yltgudr", + "kfxtsaz", + "qcgxvik", + "bjeyuog", + "juptfzs", + "nvargsc", + "gndjhmi", + "jiwrsta", + "shlrgbe", + "lmpvsgk", + "gwceapx", + "tamzcnq", + "jpbeauy", + "qyjirsn", + "gmanioc", + "lakmvpn", + "buakwfx", + "nlqpjwd", + "abhelkf", + "oraqjwe", + "uclhpmv", + "sbywmca", + "jxwpfdb", + "ghdqkrs", + "dgxcyvo", + "ltvizyw", + "fhorxzi", + "afvxljb", + "aticknf", + "wzedaur", + "ocuatfh", + "ciroagu", + "zpruhlo", + "ubfgwqc", + "lrfdksb", + "lowbcdu", + "imupvco", + "rkvyjlw", + "htpsxcm", + "krcljxf", + "auswhqm", + "tirzyxj", + "wusqnao", + "fmuthdi", + "xytgrsv", + "sudhkfg", + "xmkjyeu", + "ciwotrf", + "tqwrpzv", + "hsqwulm", + "jyuxiap", + "ynrslih", + "umhkgyi", + "mhkpiow", + "rvwhaqp", + "wfpkcho", + "zejakbf", + "azuyltd", + "smaburk", + "kgjndle", + "guoyszn", + "gqfsnrl", + "fmghypn", + "ovnxest", + "atbvjhi", + "vaosfcq", + "kgqpytn", + "ntspgcl", + "fvlkruj", + "dwkujeh", + "vbuxson", + "urlbgfm", + "raxtnef", + "knzhevb", + "esarkwi", + "bzsnfyk", + "qwzgkmu", + "ckrfhyo", + "ypdsvaf", + "xlbfuqs", + "ctfqkrs", + "wladkxm", + "uyrjtfc", + "gvqjlnm", + "vluzrhg", + "uatrkfc", + "krutsyw", + "qrmxnlz", + "dbgfrli", + "ijoylxp", + "upjxykf", + "rycavxw", + "artxydq", + "urljyps", + "mchjaps", + "ctlazuk", + "ijfwltb", + "vjpsufg", + "efznuam", + "dcsfbvt", + "qtfmpyw", + "jkhgrbe", + "ptqlxcg", + "jsyqvrb", + "kjsquzp", + "klrsiet", + "sqbkgle", + "gpsmodt", + "rtxilnb", + "onlaksi", + "ahtuckr", + "sepmiob", + "dpswzxi", + "gkispcz", + "clejgyr", + "jnlesfc", + "rqydbxe", + "wnouvym", + "danpuoc", + "hxqavri", + "uijswex", + "xoskerf", + "gkvhcwo", + "wtfansz", + "hpcygfe", + "rdeklzc", + "frzypvl", + "qmcxjoh", + "vbijscr", + "ikfseja", + "srayfeo", + "fbaczwx", + "vfyksrq", + "lpfxtyz", + "lroiatb", + "sytfukq", + "hmugile", + "ligjrwy", + "itshnoz", + "hmrwozp", + "alvothe", + "mfuvhyw", + "hunsrwf", + "nwqdxgr", + "onpkvgs", + "lhceagm", + "pgequjd", + "urhfkcw", + "ubhfxzk", + "utonfqx", + "lnzmybt", + "fgyhqkm", + "dtjparx", + "hmbfqwe", + "vejntzi", + "gjapeys", + "gdcpius", + "zecawmv", + "qvsupnc", + "jesvqnf", + "sgzbchm", + "nqmtvad", + "jqzhkfd", + "gvnmsfq", + "wjqvzop", + "adwbjxq", + "kwmxcps", + "jxvcnge", + "vrqonla", + "stdcefr", + "bxrsmga", + "oulxdhg", + "rsyozjn", + "hwjutxl", + "ynasgqc", + "ozafyqr", + "qjfeyzp", + "rqtmcsy", + "onzgcpq", + "ptkfjaw", + "xfoqcsk", + "mglikdo", + "qnbtfax", + "gdinupa", + "agdpkyr", + "gfczuvm", + "jkdireh", + "gwhfqnt", + "opyncvb", + "gomlkrq", + "oardnil", + "rdwlotz", + "efvlahz", + "exdwfrn", + "htspwgq", + "neckaqi", + "zoibhkw", + "hnvfmes", + "oicnuvb", + "clzwqdh", + "oimadqh", + "fjcqshn", + "urmoqhf", + "wbkjlxr", + "xauektw", + "uqfxlyv", + "fluhdjr", + "ufomstw", + "ehksrix", + "zdhjgis", + "qnuablv", + "vtfdqzm", + "sfaltmh", + "spzvgim", + "aovlpfz", + "mrpgydj", + "ewjipqc", + "sioekjx", + "bakwvsq", + "avbpgke", + "bdvhftn", + "nsxwzab", + "bsdewtu", + "jltzcqv", + "znesmwg", + "qtmprgo", + "rhvpxnt", + "qzdrjyi", + "termqds", + "aqnipsx", + "tfyprxa", + "lyqduxp", + "dwrxyzh", + "tyrogqi", + "gmhvzwf", + "cvwbdxj", + "wlvdyqx", + "rnylfpd", + "nyifktb", + "dlkosmz", + "vfymkgn", + "crayxln", + "cidrabs", + "xqswrnc", + "egcfuay", + "tueymhi", + "amkyphv", + "cvkpwjx", + "aljvqnp", + "fizmctb", + "rhbtdnp", + "ycnribj", + "vodrimb", + "ofwpbev", + "ypavgbw", + "xelnbqi", + "hjlsdwk", + "ygiqkdt", + "oqgnzlp", + "kynchdm", + "cgpnisb", + "gohljim", + "fqadtzj", + "nzvemhi", + "dofprzu", + "gvdzfbl", + "lraigvp", + "isqwoge", + "mcbhpnd", + "hpsxmot", + "wibengl", + "jcifmsw", + "gkderpi", + "myoksnr", + "fwsvhqx", + "wsvctmp", + "shijodn", + "dewvorm", + "falqwcu", + "pymgsxt", + "xbvpflq", + "irxjzml", + "edmpywb", + "praetzj", + "gtiqhjb", + "jzcqbgi", + "nxrvptb", + "ufkidqx", + "gkwdrei", + "qopnbih", + "qnjfacz", + "vorpnjc", + "urkieam", + "badzrup", + "synqpot", + "gujctvd", + "dplnrbw", + "wcgodxp", + "nxalyuj", + "ogschtp", + "xfrcwyz", + "yhdrgbl", + "kxaepyj", + "wfxyzti", + "vxpfgzs", + "szlaxvd", + "espjluz", + "fwblgdc", + "hyzxdwp", + "jponemt", + "kfhsijd", + "ogfilqu", + "avfxswb", + "vzeujyq", + "mizctuq", + "zgvyhkj", + "utclrpz", + "yihwxmr", + "aulskny", + "xlwzbgc", + "fgitnor", + "svczdgi", + "kpeblac", + "nfcjgtk", + "wmyjqlv", + "vxrazmb", + "kfapsqz", + "gsxpqkr", + "qsxfrby", + "mxsqylv", + "iukgcnf", + "xjzfamh", + "zbtqlhf", + "whmlrvy", + "rwngyjk", + "qtxzafp", + "unchgrb", + "iglfvku", + "edqubrv", + "jasulyk", + "ybfcghs", + "fozjiah", + "jgwqmxv", + "adybvwk", + "dyrvfmw", + "osadrqn", + "qhmktvc", + "qmiprzk", + "irjnvba", + "kpohwfc", + "hijoyxv", + "arvkcfu", + "bqgyvop", + "sybwgen", + "vfpbgwx", + "nfezkpq", + "edwrhtj", + "aeghisu", + "ryvoxma", + "dlymwsb", + "oacyrpi", + "balnkxo", + "qvugoly", + "eluwsap", + "zpjekvf", + "hcoaxng", + "morqfed", + "evwqnid", + "mhpcaqe", + "yvdxjrp", + "hjunbrm", + "mxfngvt", + "cwtmsbj", + "tjrylcs", + "byhvact", + "sbwjrai", + "jryxuaw", + "usvlwma", + "kvuxfdo", + "hatngoe", + "juqalyi", + "aurpdcw", + "notisuw", + "lzqikfy", + "ndbqumj", + "weofrhz", + "dmnqzyc", + "gaydzpc", + "augpnbz", + "hfudkjy", + "zyjvske", + "pqwftik", + "ujyzdwv", + "foxngbs", + "wzjkghi", + "hdrfbpy", + "xklidwt", + "mftnexc", + "arhkdtq", + "ptvmglx", + "opiytld", + "vweigka", + "sjrtwho", + "ucmrisq", + "fgawepy", + "jtzirbq", + "jmyuoke", + "qxpebcr", + "skpalcd", + "idukorm", + "mdaqrsz", + "rfaypwj", + "lmvdwhj", + "aqtwpzc", + "qxurvat", + "nqkupbr", + "bsmfgew", + "cpfezav", + "ciwoybe", + "pvrmnac", + "magshki", + "qdmpwfr", + "bghrzdf", + "qtiluns", + "obgjxtu", + "gipworu", + "eroiklp", + "pnsxahz", + "otucvsq", + "yklshmd", + "uygfbzq", + "ctypewi", + "njpcgtm", + "qjizhuy", + "yjtcuho", + "pdozwjs", + "ltsjewp", + "cxpbvgt", + "tcumzko", + "avwjxqy", + "dwtapxk", + "ciqmedw", + "xmbwsnu", + "gqmoxrc", + "wjdvkps", + "zqtihsp", + "znjwkpd", + "xakgiur", + "mlapjqc", + "onackrb", + "usyokmn", + "xdtksre", + "vuybxha", + "fgldnzh", + "dtlcghe", + "iunebtq", + "qcfhyku", + "nwcjgkx", + "dhyjktr", + "hlqgirv", + "kywamqg", + "omzcvtb", + "gtyqjhe", + "ubzqsgd", + "pjwxvmz", + "libcysn", + "rpmkojh", + "rzgisbe", + "lhtumxp", + "xzuevda", + "ksuemav", + "dlensoj", + "aivmrus", + "cjouxli", + "qyfthzo", + "flgwdyk", + "buirgdt", + "clqsnib", + "unbekhx", + "wiuokjr", + "gzcmlah", + "cagmqny", + "xgftczl", + "slnmezt", + "jwhdvzn", + "azsoydx", + "krimqas", + "osjtwza", + "fhnxrqc", + "bnoqtue", + "hiwkxbt", + "jrlhcio", + "sqylmjn", + "nearpjz", + "nrkvuje", + "flumsdp", + "wisvxjp", + "rbufmxi", + "gheopzv", + "mxicjpg", + "fnkwlex", + "cxqtmrh", + "ykerzva", + "mwzfksp", + "zpjifts", + "hqxgmvo", + "gpqlnrz", + "xwuafps", + "kilgyrf", + "nwaqvpy", + "bpjhcmu", + "sdhkqzu", + "cgpizva", + "mxnuyog", + "penhojy", + "eknbtsd", + "aufkile", + "sehnatx", + "bqfhpdy", + "xzvoadg", + "gjtakvs", + "fdbaget", + "fdrcglw", + "uqlerdf", + "hiptvxf", + "vdktmns", + "kwypjbm", + "lajfhvy", + "dtofrgh", + "qjgtfnh", + "pvrqlsb", + "ftjquxp", + "btdryem", + "ntjgecx", + "hxrkeag", + "yntbcld", + "niwjspg", + "erbmgvw", + "ojnkhab", + "gwajfpl", + "piyaosh", + "dubtlgv", + "bfekant", + "scthgvo", + "ejlaomr", + "yzgceur", + "pywnvgt", + "pynkjmf", + "dyuqoaw", + "lizkcqn", + "nzadefs", + "pqbafwc", + "elbgyzx", + "wrxpeln", + "shfxbru", + "ukifblh", + "xpnhare", + "mhszblv", + "vuyleid", + "fixyabu", + "xeobsda", + "bcjetmq", + "msrzncf", + "ijgrohv", + "xniqsbv", + "uvojiap", + "wnpgmux", + "bwntosu", + "zdocfmp", + "mzxuefb", + "znfudsw", + "tasiucv", + "dkagpqj", + "atkjrgi", + "cstoqew", + "notrazu", + "sjroqxl", + "blgdmka", + "ufptgde", + "fxghpjc", + "dkgquwv", + "kzybmew", + "zdxucon", + "tyvblgn", + "yjfvemz", + "dnfaxsi", + "pbxctfz", + "uyrwgkb", + "pisfczb", + "abtprkw", + "lsgzfrp", + "pvmtxrq", + "iengjvx", + "crsgxvu", + "hfpqoza", + "rcfqved", + "eknogic", + "lpgmvuw", + "efpqmol", + "yabewmx", + "vxpinlm", + "goyjazv", + "ixzjlyv", + "jgxvqhm", + "orxtmgf", + "aqpolmf", + "omrsepx", + "cdgyqen", + "jutoyaw", + "rgflebz", + "kijwrvx", + "hmncypk", + "mkctrlu", + "xytfpwr", + "ehjwmra", + "tgzhucv", + "mhfitky", + "dozlnby", + "nlbraqk", + "dxplgwb", + "mtxupen", + "dfpbocl", + "nvtedsm", + "lhoqzpx", + "yosbdtc", + "qexmcri", + "ghjpadz", + "gcleimd", + "pqivaoj", + "bgvlsuz", + "dwiumlr", + "xwbravl", + "dmfvkro", + "ndtyspj", + "uhrsnef", + "xvnjbmg", + "wpyegsu", + "khrnybs", + "jdilqem", + "tqmyxek", + "xtnfrpc", + "mbfzwye", + "znxsrho", + "wvngacs", + "maypzbw", + "poatfkc", + "qzxwyek", + "elmvjsz", + "jzlnhik", + "gbdlwoe", + "lpmwkto", + "gdyoqwn", + "zujmgqr", + "utcpsnl", + "opcnkhb", + "gslnzkd", + "hjvirzy", + "jqntslh", + "twoysbx", + "tbecpsl", + "gbohpsj", + "dygjper", + "uzqhdac", + "wtuniqc", + "pcmdxzg", + "yfpsxzb", + "fucgrzh", + "yolizkg", + "dkowpcm", + "gspzaev", + "uypoagr", + "jghznse", + "gvlrxho", + "dwulcze", + "hleiqbr", + "ocypusl", + "qzdismu", + "elarkbg", + "hfrtkcp", + "rsxjcol", + "decvzwi", + "jeufivx", + "yifblng", + "bxnetmw", + "viewlyd", + "gvmoxsa", + "oujmhpi", + "prjhtyd", + "wbvftoj", + "jsivzwc", + "oqscmku", + "djamzwk", + "kswfvgm", + "wxlheim", + "opsceln", + "zhmsljp", + "qywrsmo", + "mjovfas", + "ofbmgix", + "rwldbxh", + "gioscba", + "sgikfmh", + "vixdsnr", + "pjcfayt", + "epcdryn", + "ihycaql", + "gzpxjnr", + "ntexzow", + "vfzksxb", + "lgfkdjx", + "yikhmbs", + "xfizvtd", + "fdjwvun", + "zdqcyav", + "tdhqnuy", + "gyowjnx", + "dvgnbym", + "sxgvlmf", + "tgpqros", + "iukxqpe", + "nxeluig", + "exhglkb", + "khwbzjn", + "fpdtbgw", + "tvilprf", + "zduvkeq", + "gwmbdeu", + "bpzwugi", + "wviylpm", + "qskrigm", + "xdwebul", + "vnkfwgz", + "rlobmei", + "rkadyxs", + "ceskvij", + "xsczhbj", + "rcuwqbh", + "hntpork", + "xoywufe", + "qcnjwym", + "tvbzwra", + "yrscuif", + "zupalbh", + "wduqgoa", + "qumkzxf", + "ylmxiaz", + "rpsowdg", + "hxzvjdq", + "xmkrtjg", + "selfbdn", + "qkbcsno", + "jnmoxyk", + "gpkqilv", + "lyrjabs", + "brszenj", + "xsmifba", + "nflvdxw", + "hyezdfx", + "ldwezjo", + "jvmsnwe", + "imntbag", + "azlqvij", + "zgpnmxi", + "mgwfonj", + "dhonvbg", + "elfcaon", + "ryafdbm", + "kyfqbnc", + "utzvwrh", + "bspiukc", + "gtwojiz", + "enuqsgk", + "jliprxo", + "qfwmuvt", + "tnauqrm", + "rafgivn", + "rzhtxdc", + "gefzthk", + "jvbymzg", + "bnmepqy", + "tnpekrw", + "qdrhazs", + "sbpciwz", + "msnoqva", + "lxwyefs", + "dfrvxal", + "lpgdxek", + "ckrofpi", + "imgwuho", + "wvhxegj", + "zcdmjxk", + "bqhpati", + "lknowmh", + "zxjvpls", + "xlkadef", + "smokzrg", + "xktrldv", + "wuazxyh", + "svlpehb", + "xgwbokt", + "hrubays", + "xfbihkj", + "rkmwble", + "fqhjbvd", + "tnqceip", + "pogamcd", + "tpgzbxc", + "fbjhzsq", + "mrokybe", + "dwuxgst", + "wqtynaj", + "qvbdkoe", + "tdvpcgk", + "hrbyeqn", + "dtgoshr", + "wqmspxa", + "jorigks", + "mvjuqrt", + "kquacbt", + "hplmrku", + "flqkgzs", + "pgxdoct", + "uewbktz", + "enopmdc", + "lgikcjr", + "rygzosq", + "pzsahug", + "rfgdqvy", + "blcykaw", + "ytxsope", + "gxrhukp", + "zmnwqca", + "ruajkps", + "bzcseil", + "wvhpofl", + "ekjxftz", + "xmtvygw", + "mtvhufn", + "aeqbjcv", + "jvepotx", + "zscikeo", + "wxckptb", + "pfuydhr", + "pxknwfu", + "ykgzslf", + "tqghsox", + "pqydojl", + "gipaqyh", + "nxuqrwb", + "srqvloz", + "ernvfdb", + "qiobtcu", + "dkyzomr", + "ixkmubp", + "ueqticz", + "ifylkqx", + "ianzdme", + "ylgbacf", + "kuvxprs", + "jqofear", + "yvsmrwn", + "nxbaejt", + "mphevwj", + "qobdycx", + "ohpdclv", + "gihlfna", + "mibpdyl", + "iuhfbwd", + "trlmasp", + "njlgyka", + "gxtpvid", + "wsfzlmg", + "daeirtm", + "qlktijo", + "sboizdm", + "xhsipwe", + "wydravh", + "qeihjyz", + "xfvqzhb", + "gzhvfmy", + "kfietsb", + "ubfaxoz", + "phlqucz", + "hjdtauq", + "tcvksau", + "btdwfip", + "sntbigz", + "xadevop", + "vcuqmlt", + "qdayloc", + "drqmsnj", + "qetbgio", + "jihdwor", + "sgqrijy", + "trpxayq", + "ecnkvaq", + "nrxqpyb", + "dsfvjlh", + "vkzferm", + "jbpnrol", + "rzknmib", + "eysfqbk", + "usfoydw", + "wduetgq", + "wzmcaos", + "gruecfx", + "ivukmgj", + "rypxwks", + "chknlbq", + "fymrgop", + "iokutcl", + "ktilrqb", + "dcrsgvj", + "lcqgwzt", + "drlticu", + "gdnexlh", + "ucnwejm", + "lydrfko", + "nchsyjx", + "sdqyvut", + "dabvmnu", + "fiqronu", + "wgmcfuh", + "ozlybmn", + "wsorjdy", + "sariygu", + "kcabslg", + "uhwepif", + "mlrkywd", + "kfbpjec", + "wfbzgki", + "kqagtcx", + "tcqlosj", + "isgrykq", + "trlauwe", + "intbedf", + "vpghqan", + "amytvpb", + "qpuiojc", + "ftyocas", + "dexlnbo", + "rvdyxnb", + "ycadwku", + "tzounmb", + "pdwgxzo", + "fhkwqvo", + "uhqalnb", + "djsobtn", + "zetcmbh", + "vkqxyju", + "aszguri", + "jbnoauv", + "ghjefpl", + "wimoeub", + "zofwepu", + "qvxjylz", + "ovpylnr", + "twglcon", + "plyjzce", + "joeqwpr", + "peznodr", + "zojtwby", + "wltrcpv", + "hiscbnk", + "hnmdxge", + "jhlbics", + "yfsgxhd", + "tnulkrq", + "kelpcby", + "qtvfrgb", + "vmpjceo", + "dahzxno", + "robmzdl", + "gxlovdm", + "nwqdrlh", + "gszrbxl", + "xnliorb", + "csidaxf", + "ghqtpir", + "rtcpnjq", + "gtdahfo", + "merqgwn", + "cpgdmzy", + "bxuohqe", + "gyhnedv", + "fekouyx", + "ovksdzx", + "tqfebkc", + "xrbeshp", + "bvqieup", + "qtdoknu", + "eporlwu", + "nfpkysr", + "dxlnzwh", + "qtasywp", + "dcqvsft", + "zqltwkv", + "xceirku", + "urisbjv", + "dzfobrt", + "jkfdast", + "landizg", + "idblxay", + "gdpyurx", + "qywrdhn", + "erckpny", + "fnqpscy", + "ibknwuz", + "mzsdfir", + "knmwrpi", + "qrkfplj", + "zcweqdv", + "xsytprk", + "rmvwdbg", + "uotpias", + "qtfilmd", + "nflkeuq", + "kwdxetn", + "mqdconj", + "awhslur", + "ktrquoe", + "gjsbpxw", + "kcrhwxi", + "idcsoum", + "wavbpfk", + "dzlwjyc", + "gmoyjar", + "wiorgnu", + "nezjcha", + "jcrkmqf", + "exkqasc", + "thumcxe", + "dfpxivb", + "ixpafwe", + "ohpkywi", + "qhmbgir", + "tjumbfd", + "tksewco", + "ibjasgh", + "mnjbhdk", + "sewjylz", + "vnoaslp", + "xauhtgz", + "lfvaopx", + "qvauobi", + "echwmsz", + "hjikvbd", + "idwshmf", + "hgfxwim", + "ofxsvqc", + "vwkxepc", + "sjwyrge", + "rtsqkfi", + "ndhpiwe", + "cgsokvj", + "sxmtjob", + "jsqdbor", + "iknovue", + "twaqzrb", + "abzhqxk", + "zgxvkle", + "tljadhn", + "gvutcyk", + "bkahtcu", + "fwprbzi", + "saxqzre", + "rlydsnq", + "magvzey", + "qxpefwv", + "qnapuwx", + "vxdpiqn", + "wcnvotf", + "debgptz", + "ukqltpe", + "dmftuzp", + "zoupbnw", + "kqdomrw", + "ruqaxic", + "smqbypw", + "bfatqeg", + "swqebcl", + "cjfkgvx", + "mbuhqzs", + "jshqumx", + "vkbstil", + "prhwyjb", + "yslnpim", + "cjvtquz", + "uzidgpl", + "zjrguho", + "wxaukoz", + "aezykbp", + "exufkcb", + "lbjrhtc", + "tgwqjrl", + "rdtycwb", + "oupntka", + "herxims", + "zkrgads", + "nukjfrt", + "suxnayd", + "zqexvlo", + "hwaprqc", + "mfxqpkc", + "nwyhkfx", + "ygnqkhv", + "cynzrae", + "tmljhxc", + "npvkihr", + "kizprfd", + "hwyosca", + "skgcxao", + "kzqtbjg", + "fhnpdwl", + "qlkrwcu", + "geuqazr", + "lfxpcmo", + "wxgenik", + "cdbesyf", + "sdiubtf", + "dkfysap", + "spqymud", + "wjeylad", + "jwaefku", + "jtaxwvs", + "rvsfqtc", + "lncavto", + "qfnohsw", + "bngqihs", + "gyxjokw", + "bmshzgw", + "uqxokwd", + "nsmobgr", + "lvejwyu", + "rxampih", + "gtzyjic", + "rdcoxqw", + "ygheoaq", + "jlhtqek", + "secnjvx", + "oaszgpd", + "razihwt", + "dvlgpcy", + "wnvpjcm", + "wmfejdv", + "hjlkido", + "dyhltva", + "ltdzjxb", + "enqkjox", + "plizeqd", + "gfdocri", + "nqbaliz", + "xgdlqbo", + "cejpfvg", + "bpgyixf", + "lphrzui", + "phobeuw", + "heilpdv", + "ktejznm", + "dsurozv", + "czxwkvf", + "udgolvr", + "dmqigfc", + "vhdgnbo", + "iasroje", + "nuxazjl", + "gpkeqmv", + "qwspfgn", + "pqwkcyn", + "eghfmby", + "plotzkf", + "khzxybc", + "bhaxcoz", + "sitruld", + "qitgyoe", + "qtsnpbo", + "qyjpgev", + "rcdxvqf", + "pdvazto", + "osqjntm", + "wkjdgua", + "xekwdcj", + "sgywlmc", + "kztdgbo", + "uidezhk", + "itxgfsd", + "acneomq", + "tdejpiv", + "zrdevbw", + "kfbvois", + "xhcpdtz", + "fypnjbd", + "tvxzawb", + "xneazfj", + "qplomnv", + "zgycift", + "pqydnag", + "mbwjcog", + "wigkndt", + "thinjvo", + "rlhwxjg", + "tofcsxr", + "fdzejbx", + "ixklqse", + "qbmgtwp", + "yclwibp", + "flgveju", + "hasbeuz", + "kqpntld", + "tfogaie", + "voimxhe", + "gpzycir", + "nqbjyzh", + "ixdjfty", + "fgyckzn", + "lipbmdk", + "cqjdnwo", + "vrlxkqn", + "htjsbxz", + "ilqbyds", + "auyhgkx", + "rnoxqzv", + "bngzadi", + "khemopi", + "dqfsyjh", + "qpznvuk", + "szgmxwf", + "lpoxvek", + "dsrvxmk", + "pmwilhx", + "ayeknxt", + "fmntekv", + "bujctfs", + "arzciou", + "ncgzlyt", + "cpidbfy", + "vbugtzd", + "hukjvoa", + "ikzunvm", + "qlkhavr", + "ypnisxg", + "whsctnv", + "eahbjsq", + "zrlpgyb", + "yhdekzg", + "demwfps", + "wymfugc", + "isbgkyx", + "ukenmbr", + "crjmkul", + "seizhok", + "lyqnsta", + "zuopwvr", + "wbgohzf", + "bzivofp", + "fspixbg", + "gkxbpna", + "bucixtm", + "rmzipkf", + "ktonvwe", + "byodfkl", + "qlvogdr", + "dvpotyx", + "wbhumil", + "zipsaqt", + "riabues", + "zbmkpta", + "uhgaret", + "eswuxbf", + "qnlorcf", + "dmcfjzs", + "dgsqryz", + "zmgbidr", + "bkvrdal", + "lrqnbpe", + "flirjos", + "ntlbaew", + "xwncpke", + "qbtalns", + "arkqxun", + "gyajshk", + "wlsgfru", + "dymgfsc", + "cfsqrjd", + "hcsktix", + "hrtgfjl", + "pgmoqyw", + "vcdyqbj", + "spvfbqm", + "swpcgva", + "hdwelcs", + "wvtocpd", + "qpojsrx", + "seidjkw", + "clkzanj", + "cetibxa", + "ktsvlxe", + "tlejypx", + "duqcfsh", + "myiluha", + "kzjaoxu", + "fhuqzin", + "qdnhtsp", + "tjgxwnk", + "tcshxvo", + "lrjxaoz", + "glkmsvb", + "uacikfl", + "otkszbf", + "cnoixte", + "blgptuo", + "fwiympx", + "cqktpiv", + "rvkdnpg", + "rcxkgvi", + "kfdtirh", + "vdfbkuy", + "ojcelay", + "yljduxm", + "gywmqbh", + "weriygb", + "rdezmnk", + "dzekayc", + "xpijfkc", + "jgtdalu", + "gkepsfx", + "txnzmyu", + "dnstaub", + "pgibduh", + "qtivgbd", + "snpufzm", + "fbxqwyo", + "geydbcr", + "zhodvnj", + "taryjuk", + "nijxftr", + "zidpywg", + "uehwnlg", + "iedpnvw", + "jeamrkq", + "tmuzisd", + "fvckseb", + "jumdnwo", + "ylmbupg", + "pdgxyaq", + "zpwlqav", + "ozgmqjv", + "jifmkuw", + "xymgcfs", + "cyrqwej", + "ikbplcx", + "qvjubys", + "wkorjzy", + "rnkjecs", + "hsqjzag", + "kugdcjy", + "zkvrwtu", + "hspauvq", + "fwtiojl", + "jqlodtf", + "spfbgah", + "guopart", + "aqencsr", + "uyqhtpw", + "dhyercv", + "xtlncfi", + "gcfuvxa", + "grisbkx", + "rpctowi", + "noerqhw", + "gceykth", + "wlgzsde", + "ypqirxs", + "ihemkbn", + "lsghwft", + "ormplhq", + "uilvoqc", + "yiqaukb", + "fsxdkiu", + "egzdhlf", + "epdrnli", + "ircmgey", + "gnyuhoj", + "ldyvmtb", + "xprifek", + "ogbxkmn", + "bmcfuyr", + "zwfhdcs", + "ucsrthm", + "iykcnus", + "bjcdomf", + "mnrfdlx", + "uqetkcx", + "gcvnkjq", + "vgwuzsj", + "ajxqpig", + "cryizkp", + "dzteauf", + "phuxcqo", + "yaijvek", + "thbvdxz", + "ibpgzxa", + "ewcugvr", + "fjailpr", + "iodghns", + "utjrqab", + "mvpkufq", + "mfupkex", + "fmqwgjz", + "lokpwym", + "fbewtps", + "flbtrwm", + "hvceuoj", + "taezdby", + "fmekshz", + "owpzilv", + "irylkcn", + "jlqrnbp", + "wcrfqex", + "rabdjoy", + "kbmltfh", + "gcnbfir", + "muaibre", + "evhylak", + "nqdemsl", + "pwmqoft", + "mhkjqen", + "rthmvof", + "qdcmuzh", + "tygxkin", + "kljqxbe", + "rstqvzc", + "odpgzck", + "uchnoib", + "hrailzj", + "zxcnpyi", + "nibeqgo", + "ciykmwu", + "ioyhzjb", + "lxfuzac", + "qafhmgy", + "uxratzo", + "sujbvpe", + "yxalrbf", + "tcqahjk", + "wcqdbop", + "twfdcme", + "dgljeuz", + "jmprczo", + "xzesqwr", + "tcngrys", + "febmtwp", + "vtwazbo", + "onedkrh", + "jfhvyen", + "bntafer", + "vdkbtcr", + "vcbljoi", + "kwnhsof", + "blzxvna", + "fdbnzrg", + "bhwaipv", + "giybwft", + "ayergdz", + "cmgfrlj", + "gcbrilu", + "jcgyknv", + "pnqasbl", + "dblgcvm", + "qslvwae", + "znsubap", + "vuqcktz", + "ixcfbew", + "nvfimzo", + "eawchvy", + "xpqcksf", + "rcfqglh", + "iugasmr", + "phrtsyk", + "puvmadk", + "nqefvow", + "bdexjya", + "vihlwsu", + "lpevgqd", + "sqhirja", + "xcepomh", + "lqadrsc", + "wgmjavc", + "ukrebox", + "ugsrmvn", + "xblpfvn", + "advcthy", + "dvmscku", + "wkqpyjn", + "gzydlsp", + "psngebu", + "dobgjpk", + "zidnaqs", + "dywcxeg", + "ybqkfmv", + "qzygeai", + "dlgqvze", + "vetkbdz", + "kxnqhpv", + "uhkjdrp", + "qwpekvo", + "jftgzhi", + "wxhmkic", + "oieysfd", + "ekpftyr", + "eucslaz", + "sctyuik", + "avpykru", + "uvqsfwm", + "zeacvxl", + "csieqnx", + "chrxpfw", + "cptqmuo", + "vnjahbk", + "msyuita", + "efovart", + "vanfypt", + "ewvocya", + "wdmacez", + "tdyuqix", + "pgruvkt", + "rpabyts", + "yehicsw", + "ypgonjw", + "hrvumsl", + "xiykjvz", + "wsokbyr", + "owybfkg", + "kcevbay", + "higsqtk", + "jufrwsy", + "pfhcrkl", + "gsrbnhj", + "npcyife", + "sknzfuc", + "lkpfcid", + "zdiesrl", + "clzrjpg", + "ohfnbad", + "vsjkwgo", + "rtcspgq", + "mgtafcp", + "itlameu", + "gdckaxr", + "lxmekyu", + "sfkgwie", + "vnuhgky", + "ycsxvia", + "lzdhofq", + "rthaxin", + "stxdfwj", + "fubjxyd", + "zngcmow", + "crumqaw", + "nvaoulq", + "whzylks", + "eysnkxu", + "jzyhuxt", + "gmqaips", + "zodhesf", + "zonjypw", + "qibpzxf", + "ktrjsfm", + "gfpsdca", + "cxfdusv", + "ksaxlqg", + "vntwlpg", + "mwkjlvh", + "tgfdrcb", + "lrdkaxz", + "cdghxmo", + "bztfpgw", + "qjvfbde", + "qwumyef", + "frsbhav", + "lkgrqiv", + "ishjfqu", + "kjvwzoi", + "adphzwo", + "syftwvz", + "kdhjarv", + "mgnlivw", + "ofqskrt", + "cfkeayd", + "xskzgil", + "azmkhpw", + "pdxyroa", + "ubhqrnv", + "yxmcopv", + "xicezrd", + "dqklpcn", + "fyumarb", + "whtbnfy", + "jzierpk", + "uvqawpb", + "aiortpe", + "tzpdagq", + "tlshfea", + "ftnimok", + "qfmritc", + "jvhsrkq", + "laxdbzp", + "dhraugs", + "jcpqkgl", + "fjvawdi", + "hpoueml", + "wcnvbop", + "upoasxf", + "zwimrxd", + "wdaurho", + "uhdqwyt", + "njiskcx", + "ykujqsd", + "jzhqwmx", + "dewtasg", + "thqjrve", + "tpxgsri", + "qxhbfna", + "zjelyrw", + "cpzbkmh", + "rfxqiuz", + "dmrxuqg", + "ntsvioe", + "tuchfsj", + "svmtyoe", + "imosvct", + "oursemx", + "mndjxbe", + "insgmth", + "pqdctov", + "safoezd", + "nkweuzv", + "qkhsajn", + "zlejyhw", + "tjfyepi", + "yegiqdx", + "uzrwqkv", + "nxdfwmz", + "jqlgawv", + "wnqelyh", + "qngcjkz", + "jgmndsv", + "enockpj", + "gunbloi", + "flbhqvg", + "biodjlh", + "opjierl", + "zanrksi", + "ychjuns", + "twsgnpy", + "pzimetk", + "iyxpujz", + "wbezqcd", + "clenjxd", + "ldvnyfh", + "onlhmdt", + "wetcrmk", + "yludeth", + "cqmnklj", + "lenqcrt", + "flykvuq", + "rxwneha", + "qoyivkh", + "irlbgud", + "wiqzfbk", + "nihluof", + "gnoiyvr", + "orydblj", + "xjherkv", + "mxfgpqv", + "przlukd", + "eofpbxa", + "kpfehdu", + "jsltqxg", + "bexwaok", + "fsqekop", + "eybhukc", + "vzrijlk", + "fhanqts", + "buhyils", + "eatgcmi", + "kepclaq", + "gavjkwe", + "rchkpsm", + "modhvwb", + "cqpmuyb", + "xqbftlm", + "dqfbxml", + "tzgdaxr", + "ksvbyjz", + "neurcvq", + "lrjpfeg", + "yxqcadj", + "wqihdgy", + "pfhjdci", + "oayveci", + "lztrokh", + "sdvapge", + "zcnjkdb", + "pmojyec", + "ekgqsoi", + "ipjumow", + "jpzknrw", + "dztpwfj", + "dmqgrlx", + "bjkqapo", + "tgxujsp", + "bmkygoa", + "hzbivws", + "gjofwqb", + "asrpyez", + "fqlijhe", + "xnkuarc", + "fzemrbo", + "kmztdqs", + "ughtxpl", + "jzhocps", + "rvkdlce", + "udjyicx", + "bazyksg", + "uyvegka", + "qciazgj", + "zlwoeyd", + "owmbljr", + "fuxneho", + "aswpjol", + "ojdhvci", + "bvgcmpx", + "squahzb", + "gjlpxco", + "hemtqsx", + "ptjeqvo", + "lqyxmpd", + "xgcjiyk", + "zfcqedj", + "kayzmbh", + "ajqbyif", + "srtevpy", + "fhjntqk", + "etvdqmf", + "ymjclew", + "ialnemk", + "vhozibg", + "cqpzyog", + "gnxwpec", + "zkcbgdn", + "sfarheb", + "anipdsv", + "asgvrxz", + "fswogdj", + "fpwlhqg", + "pcrbnvd", + "uqerhvp", + "dgxrkhm", + "pczjdql", + "tfduvpc", + "btgajfq", + "dmiregn", + "pjufksw", + "hsgeacb", + "epazsko", + "ktpgsac", + "hnmjlcr", + "bydrtxn", + "ubtgapw", + "pkhvesu", + "cejzoqm", + "taidzrq", + "luycfzj", + "umpygzq", + "vrtmluj", + "ihdsewp", + "awczpqr", + "nlwaicy", + "rekqfhi", + "tejrzly", + "yujzmdo", + "lfrhqie", + "gqvzdek", + "wcqohzy", + "ydovsct", + "fdzycme", + "mzvgkpn", + "gprjzhy", + "xfwestb", + "mqgeots", + "cnksxiy", + "itqyasw", + "nklatev", + "etspzvc", + "bolkrga", + "nbdcvhg", + "tlqkyaz", + "gnkobem", + "azdylbm", + "wuaygjv", + "bmkrojp", + "vdxscga", + "juswlgi", + "mdqjzny", + "ucnyrsb", + "pwjcdiz", + "ljrbmns", + "fqplvdu", + "lhrpdiu", + "wjyhdxk", + "cirpvxf", + "ymrqfet", + "qyxgrmv", + "vzaqehn", + "zqvwgur", + "hpfovkt", + "pmorils", + "cyridfh", + "dkxynpr", + "heogzms", + "emrixwb", + "xsmpvfq", + "lzvertp", + "hpirolw", + "ngxyszv", + "zblutxv", + "qtpghoi", + "kulexfw", + "jrpflcv", + "btgjqua", + "pbhmkwf", + "jdgmenz", + "jqbsgny", + "psxcqdh", + "uhgdlyp", + "lbpyvxt", + "clptbxy", + "nxihjky", + "noixtfp", + "ljovazm", + "twxnrup", + "zcydrpl", + "lircxmp", + "oqsgpvl", + "ekjstnv", + "prqlejd", + "cmaprtx", + "agkrzli", + "dpcmhta", + "mvityao", + "yavrpfx", + "bzmjgpu", + "uosybkc", + "ojbqcfw", + "zvmjnho", + "rkhgfqy", + "lqdiwuc", + "xivzpys", + "pqfkdtu", + "fizmtjk", + "sgjzdpx", + "egnoumd", + "oezlndi", + "lwiuser", + "ovgkwyx", + "zsvcjyu", + "ivpnrfw", + "vcejzis", + "zqtepax", + "zighpdr", + "cxkwyod", + "dmluknc", + "obansec", + "ciudqyx", + "dahyuvo", + "bedgmft", + "yacmglb", + "ftqgael", + "sinrvqm", + "rbsntdq", + "uztsgvc", + "nbhujix", + "swgfpmj", + "ytegnab", + "todxknb", + "bcpmdli", + "ahkcqrs", + "kultneh", + "rjxvhmy", + "vckerzg", + "zrjgmko", + "igzkdhc", + "gkyhfco", + "efoahml", + "ilctgux", + "yxfqlvg", + "epgfysb", + "hyablfr", + "nvraypf", + "cywuivf", + "oghdjsa", + "ringjdy", + "gnvlckt", + "xbkhgpm", + "hbfcton", + "tzvksfc", + "vxcfwrd", + "bpnwkja", + "zqywrsf", + "pmcnabs", + "piwubtk", + "qxhusng", + "zfsoiam", + "ywlfjcm", + "ranlfsh", + "swtfyei", + "tfijobu", + "plewond", + "ociphtv", + "gnowfts", + "peiamlu", + "fadxvlm", + "clpqijb", + "sgtyjcl", + "pvqmnjx", + "fwqcxme", + "zvstdgo", + "jphgwef", + "duplhyr", + "ptamsjh", + "riojdcv", + "zxvaghe", + "rplgqmh", + "hjutxdn", + "cdeohts", + "rqjeath", + "whforpg", + "yofnwxi", + "kjchuys", + "vefrwqx", + "scqmvok", + "vmakxbz", + "wthzqjm", + "iysmotp", + "iyujqmn", + "zvjsqfy", + "uzrmeqw", + "kwgqzec", + "novabmg", + "sdubwxq", + "zubqrvd", + "qncdfux", + "rvdjmcf", + "ptylvgw", + "hvfqlrj", + "qbkchdn", + "jpbwkva", + "pifrtux", + "mvjwtoe", + "bydfutg", + "tvzmsfj", + "qotxrzg", + "qmxajri", + "ekplswy", + "hrvbtyc", + "gurnpzw", + "yzcouhb", + "jakcroq", + "vtymauj", + "oyseqpl", + "melgjzr", + "lawkzdt", + "uyfgsbo", + "tcjgsod", + "jrsudwk", + "hjgausd", + "hayolvb", + "ujngvtp", + "supqjmi", + "amqxbpw", + "zdbnxrt", + "gazpujw", + "xwbkyan", + "cpiynxw", + "borsfhp", + "euyxsih", + "ilabdhw", + "sevkfzu", + "qvmbsnk", + "zvajgfo", + "euwpacb", + "nemcdyk", + "mdfpsev", + "mcflorn", + "ivbnlft", + "qxkefta", + "krdwcol", + "hfgimbu", + "cshmuot", + "nekofqd", + "cvlfwkx", + "txjqprz", + "elnpaxu", + "dyioemt", + "wjtboha", + "covwqgz", + "deyzlow", + "piuamfo", + "nqxlzfg", + "xsfghpn", + "qogxkyf", + "czgtqjm", + "odcabkf", + "xthwalr", + "ckgamfl", + "yvgaszh", + "otrxihm", + "cflqihz", + "galxhpv", + "cmiebur", + "nuxvgot", + "kszpver", + "mveqxjf", + "wqpvgjd", + "hylpsdk", + "jmeftgu", + "zuodgin", + "twpcfsr", + "myxeilh", + "vuhkzqw", + "bejmloc", + "ijwkycd", + "qxduvjw", + "xocnlah", + "xfhnoja", + "wbcaptz", + "maqkyrp", + "jncehku", + "oqupbmd", + "iqjynmd", + "rimodht", + "urbcvea", + "mqfyhtu", + "zdnohsv", + "jcdxlmt", + "oaphfdt", + "fzivcod", + "tjmhxas", + "osvghdw", + "sjwpdav", + "byicoxj", + "bxvaroh", + "eusmdgt", + "jrmxlyq", + "hpbkrvs", + "gojutxc", + "rlawfvp", + "sugilek", + "sfdwyrt", + "gymbsnr", + "wfgdtsi", + "nwxzycp", + "hmkqzdx", + "bhkrqwm", + "svafoyc", + "okmigzp", + "jrimhog", + "vajyogs", + "xpflizc", + "lfgtinv", + "vmkslrh", + "lkysrhi", + "fvrtemx", + "usxzpig", + "wvulram", + "bvhwryl", + "naxbkli", + "lhatdfq", + "zfnguej", + "cbkxvsj", + "wtvgmsj", + "sizdugb", + "omdsubh", + "veykpsq", + "mqcjvli", + "thdqblj", + "nkcewav", + "ownzrve", + "ojyxnlt", + "zlecsdk", + "sahmwky", + "ybvfroi", + "rfxdqwp", + "grtwnze", + "hpvgakn", + "nqwjosc", + "iczusrn", + "bgcyzqn", + "dazsxbm", + "xrdnulp", + "ognheqx", + "oecrlzw", + "vrzbhjg", + "vbmnazh", + "jcitzou", + "rkptnvf", + "gejhfad", + "nfehick", + "baczhld", + "byxtguf", + "kaqrvid", + "xkebcqj", + "hcibrld", + "miruxhb", + "gopueqx", + "uwjhgid", + "ocpzfbr", + "qbaoyel", + "kpuqsya", + "qrwgshk", + "fjyecmt", + "fumjwsc", + "avqlihk", + "yqghsuk", + "vksutma", + "wplebqc", + "ajvtoil", + "jpydcrv", + "wbzmein", + "crwhibk", + "pzluioe", + "qhvtimf", + "peiuank", + "rstqmwz", + "amuokxf", + "huxkbgz", + "rxjbhpw", + "xkbjdsi", + "ntyalqk", + "oyxhgdn", + "dycsuqw", + "rzfbpxq", + "rqzfkvl", + "rndwcfp", + "jqxmbuo", + "lodvbsk", + "ralhbyp", + "xjazven", + "nrgpjvu", + "cavwkmi", + "gikmlsd", + "gwucrqo", + "jdvmrph", + "hxivmsg", + "uzefjxr", + "gypeojf", + "cfovysr", + "eyzvwnx", + "osfvgen", + "tdsfnzq", + "imupjln", + "zvhemap", + "hpuwqtm", + "twlkozg", + "jvnqftw", + "bxkujyg", + "pmnqrdv", + "srnxoqa", + "qjazfgt", + "xehdunj", + "kirtshw", + "okdesuv", + "xbjdgro", + "gewaxdz", + "ylwtjqb", + "qmfenrz", + "flwrxug", + "efkcxnq", + "qdwmvpu", + "pmtisgx", + "qunzhap", + "cyzlrag", + "ebcijwy", + "wskuzgo", + "posbxrz", + "bgstxuf", + "wqdrgav", + "ygrpxtm", + "fbalsqy", + "vzroimb", + "cmpojfu", + "zckrlqw", + "wjvkymo", + "pjwovhq", + "croydkv", + "woqlhav", + "rtbyekh", + "rhsmuyq", + "kxbhvgl", + "bztkngo", + "uezdang", + "wqbvkjs", + "afxtbdv", + "vouknzq", + "ujyostp", + "cstuxzy", + "ogkieyr", + "dcyhgot", + "afncitu", + "hufrmie", + "wcqsbnv", + "uqnxket", + "pdsefgj", + "xhyvcgd", + "jysmpon", + "ojmyqle", + "frhjlzk", + "douzqan", + "ihfvgdc", + "wupondh", + "lnamcxb", + "tscerlg", + "vykiedn", + "otakcqz", + "zdjoefn", + "wihbfkv", + "dfrpowu", + "hwzsntb", + "rzdpsuw", + "qtrnubk", + "naigcxr", + "itjavre", + "cbwtjka", + "ugmcbwo", + "nuoxajc", + "sucrolp", + "pzwkaqu", + "vmysuir", + "xrdiptg", + "umvzdwi", + "xlenrgj", + "pdseluq", + "ipjetkl", + "qkbmatw", + "eyupdth", + "bpdtjcu", + "fjwnsdg", + "egwacio", + "lxpfvgc", + "zljsmxy", + "vnfwehg", + "hujwtmz", + "eqmtlga", + "gbexkor", + "jgmceda", + "qlbyxfu", + "bpydjav", + "cbuknqh", + "cedywhu", + "omvjhle", + "qavgond", + "lwcjtoi", + "sutqnwp", + "cewmkil", + "kcsnutm", + "gojncfb", + "vahdszx", + "juzyoeh", + "lubrndt", + "ipvkcqn", + "lhkdnpx", + "awqtvji", + "lednivx", + "dsblrfj", + "ulhwbmg", + "zvagsjm", + "yujonxi", + "myqazfx", + "echymwr", + "hsuzoxv", + "pyvnqfi", + "axocdvt", + "cbwqtpl", + "xqeojha", + "alfeqxo", + "brpukcg", + "pkexavh", + "xcornab", + "nvhkmzp", + "dkivrzg", + "xnquizc", + "wkglset", + "cvygdws", + "ukevhcm", + "urzxdmq", + "krwontj", + "rslhapy", + "gsprjox", + "nqhyslc", + "dujyvrl", + "nckzufs", + "wdjbvlg", + "gipcvlz", + "hzsicfx", + "psyhvbd", + "yswdzmb", + "eagjntw", + "jnipqgl", + "vtzamog", + "qkfzret", + "ushxtiz", + "vpgflie", + "nortmha", + "ihjtnbq", + "dwbpazx", + "kmoshav", + "obclmeu", + "apueqnl", + "xasnfdj", + "tznmlrv", + "nfojgtu", + "lxtjbmp", + "pyejrvu", + "jwbfteo", + "ybfosqg", + "stlovnk", + "woyqkge", + "fbdlzwk", + "munpzko", + "fteckjy", + "enwvfuq", + "jhvsuoe", + "nhvzyar", + "ulhsvad", + "sgxfhle", + "tyoifqx", + "cfvyghx", + "zgysjhp", + "xshmayj", + "xoqzpau", + "xwfjkdp", + "kwemxda", + "mctphkb", + "spwzbdh", + "ytogsmb", + "gcofdum", + "hnsdpgc", + "muoczpe", + "ulikxsf", + "cpnewkj", + "rxfbosz", + "pgsmnoe", + "bqagzxv", + "npkstcr", + "obvtxez", + "dyjcwkr", + "eozdvga", + "tlzprsh", + "covrgkl", + "penumag", + "hnvexzw", + "nerqhyt", + "kzxmlfc", + "dfrcbzj", + "ovczghy", + "cjxonel", + "armuwso", + "xryubna", + "cxfjevs", + "ylhucab", + "kuabcjo", + "mxyjklt", + "xceyuid", + "emtvbpr", + "eglqazy", + "nxgmsby", + "hzeogap", + "iaqbxky", + "tcfhnxk", + "vsdrito", + "clygzma", + "xyesloq", + "mcnlshd", + "zpqkseg", + "oyukmta", + "djklpty", + "iukcfgq", + "mwetovh", + "rcweopz", + "mzwtcfs", + "gjidzqh", + "usbkeyv", + "nscvuby", + "psxilhg", + "warphxz", + "yckqgob", + "faspjve", + "rqmxhyn", + "boqfevz", + "uxqigew", + "gdcaowk", + "shnvelt", + "vpgnxlh", + "qjwfncy", + "dvboniy", + "czojwlu", + "qjoetfy", + "pqujrvh", + "tnsjwdl", + "scbkudq", + "ciqpvwm", + "efwnkuz", + "fvysenb", + "lxvjhwa", + "autcdyg", + "fdcbtau", + "fdtyqca", + "salgyuh", + "ueydphg", + "wpxyvmk", + "adjnihq", + "ftloigm", + "ehdwluy", + "wbmfhgd", + "ubiswmn", + "lqbvpgh", + "jbnyxal", + "icvgnbd", + "ucfqrwe", + "jvhzsyi", + "ormphiu", + "ltivfgu", + "cyrpemb", + "nvysuxo", + "lywbdmq", + "jlnshfp", + "ucxwtvp", + "szvagyc", + "dqvseua", + "zilrdca", + "lqwkxhf", + "zcabkfn", + "eyaqijz", + "abjyicf", + "dgcjzap", + "eygkhpl", + "prejdqo", + "vxzufce", + "byxsunq", + "tkdpsjx", + "rtgpsfb", + "ahzywbc", + "gjebzwn", + "matxfpj", + "hdblute", + "yjcnmbg", + "mbpszwr", + "ifqdjyc", + "xqozvum", + "ifqexgo", + "pmbazcu", + "yzorbxe", + "otyznjc", + "xahfmzv", + "kfwlazr", + "jkgqbfp", + "lreifuh", + "obkxtps", + "cyalsqo", + "skcmurh", + "ozyfjql", + "wquzlnd", + "cljmikb", + "utomyas", + "oqvjypr", + "yabrdxw", + "vktygei", + "qdriefh", + "jzxtvey", + "yalujqw", + "hvkgxor", + "utvewcn", + "gvzlwsy", + "rjfpsnz", + "wxsfzpc", + "ahmjikt", + "mwfadzo", + "fjsuglc", + "rqdsmcz", + "zxayjwe", + "hvbemji", + "ravfmzq", + "avbyutw", + "zcmlipw", + "mutidvf", + "zgbukiq", + "evdqygc", + "iswfbce", + "sbevxwj", + "fjxlrhn", + "bkixwtu", + "vkijrml", + "hcypnte", + "bayzidk", + "kcystim", + "pqfehsl", + "pqgkhnv", + "hsejvzc", + "omjnvwt", + "qmcuxle", + "zkovuqe", + "tzvajyc", + "tqzswib", + "ydmcaou", + "guhkrzn", + "xirpqfn", + "xezyrdh", + "vqtfncm", + "fvmjzkl", + "gimzwru", + "rwipbkg", + "inhoygq", + "uoapvsk", + "zmgcaty", + "ruwibdy", + "imzrvco", + "iwmrdja", + "cxpolti", + "hegjspl", + "kvjhuas", + "ksuwlnv", + "tqcnjoe", + "lgmbonf", + "xuvnsrj", + "kpqduiy", + "oksjcwz", + "frajlze", + "malzhjx", + "edyjowc", + "fabpriw", + "mxzustr", + "sqnktpb", + "krwnbzy", + "czvnpwy", + "zojqlab", + "vpwdgix", + "cnfjzke", + "mlipruk", + "sqbrfoy", + "qjbgvap", + "esjcvdz", + "iodtgwm", + "bukdaoi", + "ykufvnm", + "fgphrwl", + "zoqrnba", + "gpbnhdq", + "sdwroia", + "sdptekz", + "mbiluta", + "auncxlr", + "kmjirsp", + "xavnfyt", + "tsruegi", + "apnkbgm", + "fjbhxor", + "nkgjqth", + "pjxbwht", + "pqksjru", + "jcrlbta", + "gnqpewd", + "kmaicgu", + "ayikufn", + "bsreqpg", + "krazgwx", + "uoyjfat", + "nkovcbh", + "rnecofa", + "zpgyxor", + "ubinwtp", + "jlcqevr", + "ensuwyl", + "lajtzik", + "odqrlfz", + "rxotuhb", + "pxlqibe", + "arjimsy", + "ztvbowh", + "antszji", + "ubqamhx", + "cvxmwzt", + "mjsukpa", + "iksdqry", + "qeihwro", + "uogrwnv", + "iqwtuxk", + "dxzybul", + "ocvmkyp", + "ndtgbwm", + "voixwjc", + "leorcxm", + "jkhtsnr", + "dtqjolr", + "fsbjayc", + "wvetqua", + "vzfkpsr", + "mjecont", + "ughaxvk", + "nyqfgxe", + "nplfboc", + "udslbih", + "tlpbkhg", + "idokvtr", + "iybxeaj", + "ztsckli", + "yatlesj", + "tsyuehk", + "xgdprae", + "tgkbdlx", + "bwkzjxm", + "tfyluha", + "wshpmix", + "phkvscg", + "tpwvzrx", + "yrzeqvj", + "lsbjnqo", + "aqrszdh", + "klouftc", + "qjezfdm", + "niywrha", + "howtumx", + "fyjuwhp", + "chasjkq", + "itfvzxo", + "apdblqj", + "qxbploi", + "xhsegqm", + "fvlqhmk", + "jnqfdae", + "tgmaolr", + "xzyetfb", + "qaethyr", + "nieojsy", + "bjimeuo", + "cihfaev", + "hmoczap", + "rdnvymg", + "jzqfyhi", + "abgiryp", + "zsarugx", + "hujgkbw", + "hjdwzml", + "wibmrnq", + "zndwxtk", + "uizcvan", + "pugiteh", + "mcoizyq", + "avjzqfl", + "ivqdtfk", + "xasndmc", + "lnqjcth", + "gjotcas", + "rhtupgd", + "azodyxp", + "fsixhgd", + "xsqtfba", + "ekmasqf", + "kzobqud", + "latgvmo", + "xypwami", + "exnvlbj", + "obrivlx", + "atdsfhk", + "zsvbcyw", + "mbyaesc", + "gclshwd", + "njtszmq", + "herxcbu", + "vemrcws", + "qczkbmg", + "hdrpoga", + "dgynosp", + "iqedgkl", + "lvqaxme", + "qlgwtxk", + "omqxtzn", + "ecpofsd", + "qavfjou", + "crdzqgs", + "nrvwjes", + "jwvrflu", + "fnzatbg", + "pvohxyi", + "eimptdc", + "mkbfnjw", + "yebxnti", + "hgovqrs", + "hwltfza", + "mweajyx", + "klfewcj", + "czmyehb", + "irxdkqa", + "mslvgeh", + "xzyohkg", + "ikbajts", + "gdtvshy", + "pjlbixo", + "tfyjpno", + "brgdszv", + "heqjzsb", + "jxyfbpr", + "wzsoila", + "ufoyjvm", + "kvmrnea", + "mjfrbks", + "sozeklg", + "jgtkxsf", + "obyfknv", + "vwynzhb", + "vdzlico", + "ajnquzh", + "isxymlp", + "hidxfpo", + "fzitnpr", + "qxunjpd", + "jbrmdhp", + "klprwev", + "mnlwkzg", + "pdgthfc", + "alhqnxv", + "akvxdoi", + "biwyltn", + "rucazgb", + "jobgknw", + "oegvcyu", + "nwjxyfo", + "eywdoxl", + "wobhify", + "qfrkvzw", + "legbvcq", + "zgiafsm", + "fujnagh", + "kvljoqp", + "befdczn", + "iwuyqoj", + "hnwrsdz", + "xwvoleu", + "nbfkwru", + "acfsglt", + "rutwzch", + "wmatxzd", + "ovldizf", + "rgaodcn", + "hdwseya", + "emzqpru", + "dapfrwv", + "spjyotz", + "trnhulj", + "fdvajip", + "vwnqguk", + "gsiqfyw", + "ifmbacx", + "vjzigup", + "hfaojms", + "fuiawpq", + "jkitfxa", + "mtpskcf", + "rtkcwiq", + "ujgreoh", + "trudojw", + "pxtrjvs", + "mspcfbx", + "vrjpzdt", + "rhwucyf", + "hrgunbt", + "uoctlgn", + "xsditmo", + "dsvzbnw", + "evptidh", + "dzcheqm", + "snxuvjg", + "kcfnxbr", + "pmdacqe", + "mjpndtc", + "spbcdya", +] From e3a559ab936a409d4e45c321bfe32b57128f7bdd Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 6 Sep 2019 15:57:02 +0200 Subject: [PATCH 14/56] WIP: making some functions for profiling --- leetcode/number-valid-words/numberwords.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/leetcode/number-valid-words/numberwords.py b/leetcode/number-valid-words/numberwords.py index 97889a2..4ab733b 100644 --- a/leetcode/number-valid-words/numberwords.py +++ b/leetcode/number-valid-words/numberwords.py @@ -5,14 +5,28 @@ class Solution: + + @staticmethod + def _diff(w, p): + """separate out for profiling""" + return w.difference(p) + @staticmethod def _word_puzzle(word: set, puzzle_first: str, puzzle: set) -> bool: - return puzzle_first in word and not word.difference(puzzle) + return puzzle_first in word and word.issubset(puzzle) + + @staticmethod + def _all_sets(words): + return [set(w) for w in words] + + @staticmethod + def _ww(wordsets, puzzle): + return [Solution._word_puzzle(w, puzzle[0], set(puzzle)) for w in wordsets] def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]: - wordsets = [set(w) for w in words] + wordsets = Solution._all_sets(words) return [ - sum(self._word_puzzle(w, puzzle[0], set(puzzle)) for w in wordsets) + sum(Solution._ww(wordsets, puzzle)) for puzzle in puzzles ] From bb8fd26abeed1062996faf96be4262069ba97d26 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 6 Sep 2019 19:03:07 +0200 Subject: [PATCH 15/56] number valid words without using bitmasks --- leetcode/number-valid-words/numberwords.py | 99 +++++++++++++++++++--- 1 file changed, 86 insertions(+), 13 deletions(-) diff --git a/leetcode/number-valid-words/numberwords.py b/leetcode/number-valid-words/numberwords.py index 4ab733b..107ccb2 100644 --- a/leetcode/number-valid-words/numberwords.py +++ b/leetcode/number-valid-words/numberwords.py @@ -2,9 +2,21 @@ # https://leetcode.com/problems/number-of-valid-words-for-each-puzzle/ from typing import List +import string +from collections import defaultdict +from itertools import chain, combinations -class Solution: +class Solution1: + """using hint to look at bitmasks""" + @staticmethod + def str2bm(s): + return int("".join('1' if l in s else '0' for l in string.ascii_lowercase), 2) + + @staticmethod + def subsbm(a, b): + """a is subset of b seen as bitmask""" + return not(a & ~ b) @staticmethod def _diff(w, p): @@ -23,22 +35,65 @@ def _all_sets(words): def _ww(wordsets, puzzle): return [Solution._word_puzzle(w, puzzle[0], set(puzzle)) for w in wordsets] - def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]: - wordsets = Solution._all_sets(words) + @staticmethod + def _prepare(words, puzzles): + return [Solution.str2bm(w) for w in words], [(Solution.str2bm(p[0]), Solution.str2bm(p)) for p in puzzles] + + @staticmethod + def _counts(wordbm, puzzlebm): return [ - sum(Solution._ww(wordsets, puzzle)) - for puzzle in puzzles + sum(True for w in wordbm if l & w and Solution.subsbm(w, p)) + for l, p in puzzlebm ] + def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]: + # word prep #words + # puzzle prep #puzzle + # mix and match #words * # puzzle + wordbm, puzzbml = Solution._prepare(words, puzzles) + return Solution._counts(wordbm, puzzbml) + +class Solution: + """using the idea that was used with bitmasks, but without the bitmasks""" + @staticmethod + def normalize(s): + """standard order, every letter only once""" + return "".join(l for l in string.ascii_lowercase if l in s) + + @staticmethod + def _prepare(words): + d = defaultdict(int) + for w in words: + d[Solution.normalize(w)] += 1 + return d + + @staticmethod + def powerset_withfirst(puzzle): + "from itertools recipe adjusted" + f = puzzle[0] + s = list(set(puzzle)) + return [Solution.normalize("".join(p)) + for p in chain.from_iterable(combinations(s, r) for r in range(len(s) + 1)) + if f in p] + + @staticmethod + def _counts(wordcts, puzzle): + return sum(wordcts.get(nw, 0) for nw in Solution.powerset_withfirst(puzzle)) + + def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]: + wordcts = Solution._prepare(words) + return [Solution._counts(wordcts, puzzle) for puzzle in puzzles] + + # noinspection PyProtectedMember -def test_word_puzzle(): - assert Solution._word_puzzle(set("test"), "e", set("set")) - assert not Solution._word_puzzle(set("test"), "a", set("set")) - assert not Solution._word_puzzle(set("test"), "e", set("et")) - assert Solution._word_puzzle( - set("test"), "s", set("sdlfjaslfdjdlhgkdsahfkefdjksjsteettt") - ) +# def test_word_puzzle(): +# assert Solution._word_puzzle(set("test"), "e", set("set")) +# assert not Solution._word_puzzle(set("test"), "a", set("set")) +# assert not Solution._word_puzzle(set("test"), "e", set("et")) +# assert Solution._word_puzzle( +# set("test"), "s", set("sdlfjaslfdjdlhgkdsahfkefdjksjsteettt") +# ) def test_find_example(): @@ -57,4 +112,22 @@ def test_speed1(benchmark): def solution_for(ct): Solution().findNumOfValidWords(slow_words[:ct], slow_puzzles[:ct]) - result = benchmark(solution_for, 1000) + result = benchmark(solution_for, 10000) + + +def iterate_masks(x): + """key ingredient for bitmask solution from a discussion on leetcode""" + y = x + while y: + print(f"{y:b}") + y = (y - 1) & x + + +# for profiling, run without the test stuff around it +if __name__ == "__main__": + from slowtestcase import slow_puzzles, slow_words + + def solution_for(ct): + Solution().findNumOfValidWords(slow_words[:ct], slow_puzzles[:ct]) + + solution_for(100000) From 5f0c7a84bdd7bb1f2f0215357a69dd0e02750247 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sun, 8 Sep 2019 07:52:50 +0200 Subject: [PATCH 16/56] leetcode LFU --- leetcode/lfucache/lfu.py | 304 +++++++++++++++++++++++++++++ leetcode/lfucache/slow_testcase.py | 2 + 2 files changed, 306 insertions(+) create mode 100644 leetcode/lfucache/lfu.py create mode 100644 leetcode/lfucache/slow_testcase.py diff --git a/leetcode/lfucache/lfu.py b/leetcode/lfucache/lfu.py new file mode 100644 index 0000000..4d2dfea --- /dev/null +++ b/leetcode/lfucache/lfu.py @@ -0,0 +1,304 @@ +import heapq +import time +from collections import defaultdict + + +class LFUCache1: + # submission results + # 1. silly bug + # 2. didn't thinkg of capacity == 0 + # 3. assumption about put not counting towards when used was false + + def __init__(self, capacity: int, verbose=False): + self.verbose = verbose + self.capacity = capacity + self.d = {} + self.cts = [] # heap [ct, last_used, key, valid], valid boolean if has already been invalidated + self.ct_refs = {} # dict key -> valid item on heap for that key + self.counter = 0 # avoid having to get real time, every operation increases this by one + + def _print(self, x): + if self.verbose: + print(x) + + def _update_key_data(self, key): + ct = self.ct_refs.get(key, [0, None, key, None]) # last_used and valid will be reset below before use + ct_new = ct.copy() + ct[3] = False # invalidate old copy + ct_new[0] += 1 + ct_new[1] = self.counter + heapq.heappush(self.cts, ct_new) + self.ct_refs[key] = ct_new + + def get(self, key: int) -> int: + self.counter += 1 + if key in self.d.keys(): + self._update_key_data(key) + return self.d[key] + else: + return -1 + + def put(self, key: int, value: int) -> None: + self.counter += 1 + if key in self.d.keys(): + self.d[key] = value + self._update_key_data(key) + return + elif len(self.d) == self.capacity: # need to evict + # search for valid item in queue + ct = [None, None, None, False] + while self.cts and not ct[3]: + #self._print(f"cts{self}") + ct = heapq.heappop(self.cts) + if ct[3]: + del self.d[ct[2]] + del self.ct_refs[ct[2]] + #self._print(f"evict {ct[2]}") + + if len(self.d) < self.capacity: + ct_new = [1, self.counter, key, True] + self.ct_refs[key] = ct_new + #self._print(self.cts) + heapq.heappush(self.cts, ct_new) + self.d[key] = value + #self._print(f"after put {self}") + + def __repr__(self): + return f"LFUCache({self.d}, {self.cts})" + +class LFUCache: + def __init__(self, capacity: int, verbose=False): + self.verbose = verbose + self.capacity = capacity + self.d = {} # map key -> [val, ct, node] + self.cts = defaultdict(DLL) # map ct -> dll of items with that freq + + def _print(self, x): + if self.verbose: + print(x) + + def _update_key_data(self, key): + _, ct, node = self.d[key] + self.cts[ct].remove(node) + ct += 1 + self.cts[ct].add_end(node) + self.d[key][1] = ct + + def get(self, key: int) -> int: + if key in self.d.keys(): + self._update_key_data(key) + return self.d[key][0] + else: + return -1 + + def put(self, key: int, value: int) -> None: + if key in self.d.keys(): + self.d[key][0] = value + self._update_key_data(key) + return + elif len(self.d) == self.capacity and self.capacity > 0: # need to evict, works only when there is data in the cache + # search for valid item in queue + ct = 1 + while self.cts[ct].empty(): + ct += 1 + #self._print(f"count {ct}") + node = self.cts[ct].pop() + del self.d[node.key] + #self._print(f"evict {node.key}") + + if len(self.d) < self.capacity: + node = DLL.new_node(key, value) + self.cts[1].add_end(node) + self.d[key] = [value, 1, node] + #self._print(f"after put {self}") + + def __repr__(self): + return f"LFUCache({self.d}, {self.cts})" + +class DLL: + """Doubly linked list""" + class Node: + def __init__(self, key, val): + self.key = key + self.val = val + self.prev = None + self.next = None + + def __init__(self): + self.head = None + self.tail = None + + @staticmethod + def new_node(key, val): + return DLL.Node(key, val) + + def add_end(self, node): + """New nodes are added at the end""" + if node.next or node.prev: + print("probably error node has next or prev") + if self.tail: + self.tail.next = node + node.prev = self.tail + self.tail = node + else: #empty list + self.head = self.tail = node + + def remove(self, node): + if node.prev and node.next: + node.prev.next, node.next.prev = node.next, node.prev + elif node.prev: + node.prev.next = None + self.tail = node.prev + elif node.next: + node.next.prev = None + self.head = node.next + else: + self.head = self.tail = None # now empty + + node.next = node.prev = None # no dangling pointers + + def empty(self): + return self.head is None and self.tail is None + + def pop(self): + if self.head: + rv = self.head + if self.head and self.head is not self.tail: + self.head.next.prev = None + self.head = self.head.next + rv.next = None + assert rv.prev is None + else: # now empty + self.head = None + self.tail = None + return rv + + assert False + return None + + def __len__(self): + if self.head is None: + return 0 + + ct = 1 + cur = self.head + while cur.next: + ct += 1 + cur = cur.next + return ct + + def __iter__(self): + rv = [] + cur = self.head + while cur: + rv.append([cur.key, cur.val]) + cur = cur.next + return iter(rv) + + def __repr__(self): + return str(list(self)) + + +def test_dll(): + d1 = DLL() + assert 0 == len(d1) + n1 = DLL.new_node(1, 2) + d1.add_end(n1) + assert 1 == len(d1) + n2 = DLL.new_node(1, 3) + d1.add_end(n2) + assert 2 == len(d1) + d1.remove(n1) + assert 1 == len(d1) + d1.add_end(n1) + assert 2 == len(d1) + n3 = DLL.new_node(1, 4) + d1.add_end(n3) + assert 3 == len(d1) + d1.remove(n1) + assert 2 == len(d1) + assert [[1, 3], [1,4]] == list(d1) + +# Your LFUCache object will be instantiated and called as such: +# obj = LFUCache(capacity) +# param_1 = obj.get(key) +# obj.put(key,value) + + +def test_lfu1(): + cache = LFUCache(2, True) + + cache.put(1, 1) + cache.put(2, 2) + print(cache.d) + assert 1 == cache.get(1) + cache.put(3, 3) # evicts key 2 + assert -1 == cache.get(2) + assert 3 == cache.get(3) + print(f"CAHCE {cache}") + cache.put(4, 4) # evicts key 1. + assert -1 == cache.get(1) + assert cache.get(3) == 3 + assert cache.get(4) == 4 + +def test_lfu2(): + ops = ["LFUCache", "put", "put", "get", "get", "get", "put", "put", "get", "get", "get", "get"] + args = [[3], [2, 2], [1, 1], [2], [1], [2], [3, 3], [4, 4], [3], [2], [1], [4]] + + for op, arg in zip(ops, args): + if op == "LFUCache": + c = LFUCache(*arg) + elif op == "put": + c.put(*arg) + elif op == "get": + c.get(*arg) + +def test_lfu3(): + ops = ["LFUCache", "put", "get"] + args = [[0], [0, 0], [0]] + + for op, arg in zip(ops, args): + if op == "LFUCache": + c = LFUCache(*arg) + elif op == "put": + c.put(*arg) + elif op == "get": + c.get(*arg) + + +def run_test(ops, args, expected=None, verbose=True): + for idx, (op, arg) in enumerate(zip(ops, args)): + if verbose: + print(" instruction:", op, arg, expected[idx] if expected else None) + if op == "LFUCache": + c = LFUCache(*arg) + elif op == "put": + c.put(*arg) + elif op == "get": + if expected: + assert expected[idx] == c.get(*arg) + else: + c.get(*arg) + if verbose: + print(c) + + +def test_lfu4(): + run_test(["LFUCache", "put", "put", "put", "put", "get", "get"], + [[2, True], [2, 1], [1, 1], [2, 3], [4, 1], [1], [2]], + [None, None, None, None, None, -1, 3]) + + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(f"Timing {time.monotonic() - self.start}") + +if __name__ == "__main__": + from slow_testcase import ops, args + print(len(ops), len(args)) + + with Timer(): + run_test(ops, args, None, False) diff --git a/leetcode/lfucache/slow_testcase.py b/leetcode/lfucache/slow_testcase.py new file mode 100644 index 0000000..73b1e09 --- /dev/null +++ b/leetcode/lfucache/slow_testcase.py @@ -0,0 +1,2 @@ +ops = ["LFUCache","put","put","put","get","get","put","put","get","put","put","put","get","put","get","put","put","put","put","put","put","put","put","get","put","put","put","put","put","put","put","put","put","put","put","put","put","put","put","get","get","get","put","get","put","put","get","get","put","put","get","get","put","get","get","put","get","put","put","put","get","get","get","put","put","put","get","put","put","put","get","put","put","put","put","get","get","get","put","put","put","get","put","get","get","put","get","put","get","get","put","get","get","get","get","put","put","put","put","get","get","put","put","put","get","get","get","put","put","put","get","put","put","get","put","put","get","get","get","get","put","get","get","put","put","get","get","put","put","put","put","put","put","put","put","put","put","get","get","put","put","get","put","put","get","get","get","put","get","put","put","get","put","get","put","put","put","put","put","get","get","get","put","get","put","put","put","put","put","put","put","put","get","get","get","put","put","put","get","put","put","get","put","get","get","put","get","put","put","get","put","put","put","get","get","get","put","get","get","put","put","get","put","put","put","get","put","get","get","put","put","get","put","put","put","put","get","get","put","put","get","put","put","put","get","put","get","get","get","put","put","put","put","put","put","get","put","put","put","put","get","put","put","get","get","put","put","get","get","put","put","put","put","put","put","get","put","get","put","put","get","get","get","put","get","get","get","put","put","put","put","put","get","get","get","put","put","put","get","put","get","put","get","put","put","put","put","put","put","get","put","put","get","put","get","put","get","put","put","put","get","get","put","put","get","put","put","get","put","get","get","get","get","get","put","put","get","get","get","get","put","get","put","get","put","put","put","get","put","put","get","get","put","put","put","get","put","get","put","get","get","put","get","put","put","put","get","put","put","get","put","get","get","get","put","get","get","put","put","put","put","put","put","get","get","put","get","put","get","get","get","get","put","put","put","put","get","put","put","put","put","put","put","put","put","get","get","get","put","put","put","put","put","get","get","put","put","get","get","put","put","get","put","get","put","put","get","get","put","get","get","put","put","put","get","put","get","put","put","put","put","get","put","put","put","get","put","put","get","put","put","put","put","get","get","get","get","put","get","put","put","get","get","get","get","put","put","get","get","put","get","put","get","get","put","get","put","put","put","put","put","get","put","put","get","put","put","get","put","put","get","put","get","put","put","put","put","get","put","put","put","put","get","get","get","put","put","get","put","get","put","put","put","put","get","put","get","put","put","put","get","put","put","put","put","get","get","get","put","get","get","get","get","put","put","get","get","put","put","get","get","put","get","get","put","get","put","put","put","get","put","put","put","put","get","put","put","get","put","get","put","put","put","get","get","get","put","put","put","put","put","get","get","put","get","put","put","get","get","put","put","get","get","get","get","get","put","get","get","put","put","put","get","put","get","get","put","get","get","put","put","put","get","put","put","put","get","get","get","put","put","put","get","put","put","put","put","put","put","put","get","get","get","get","put","get","get","put","get","put","get","put","get","put","put","get","get","get","put","get","put","put","put","put","get","get","put","get","put","get","get","put","put","get","put","get","get","get","get","put","put","put","put","put","put","put","get","put","put","put","get","get","get","get","put","put","put","put","put","get","put","get","put","get","get","put","put","get","put","put","put","get","get","put","get","get","put","get","get","get","get","get","get","put","put","put","get","put","get","get","put","put","get","put","get","get","put","put","get","put","put","get","put","get","put","get","put","get","get","get","put","get","get","put","put","put","get","get","get","get","put","put","put","put","put","put","get","put","put","put","put","put","put","put","put","put","put","get","put","get","get","get","get","get","put","put","put","put","put","put","get","put","put","get","put","put","get","get","put","get","put","get","get","put","put","get","put","put","get","put","get","get","put","get","get","put","get","get","put","get","put","put","put","get","put","get","put","get","get","put","put","get","put","get","get","put","put","put","get","get","put","get","get","put","put","get","get","get","put","put","put","put","put","put","put","get","get","get","get","get","put","put","put","put","put","put","put","get","put","put","put","put","get","get","put","put","put","get","put","get","get","get","put","put","put","put","get","get","put","put","put","get","get","put","put","get","get","put","get","get","put","put","put","get","put","put","put","get","put","put","get","put","get","get","get","get","put","put","put","get","put","get","get","get","put","put","put","get","put","put","put","put","get","put","put","put","put","get","get","put","put","get","put","put","put","get","get","get","get","put","put","put","get","get","put","put","get","put","put","get","put","get","put","put","get","get","put","get","put","get","put","put","put","get","put","get","put","put","get","get","put","put","put","get","get","get","put","put","get","get","get","get","put","get","put","get","put","put","put","get","put","get","put","get","get","put","get","put","put","get","put","get","put","put","get","get","get","put","put","put","put","put","put","put","put","put","put","put","get","get","get","put","put","put","put","put","put","get","get","put","put","get","put","get","put","get","put","put","get","get","get","get","put","put","put","put","put","put","get","put","put","put","get","put","put","get","get","put","put","put","get","put","put","get","get","get","put","put","put","get","put","get","put","put","put","put","get","get","put","get","put","get","put","get","put","put","get","get","get","get","get","put","put","put","get","put","get","get","put","get","get","put","get","get","get","put","get","get","put","put","get","put","put","get","put","put","put","put","put","put","put","get","put","get","get","put","put","put","put","put","get","get","get","put","put","put","get","put","get","put","put","get","put","put","get","get","put","get","get","put","put","put","put","get","put","put","put","put","put","get","put","get","get","put","get","put","get","put","put","put","get","get","put","get","put","get","put","put","get","get","get","get","put","get","put","put","get","get","put","get","put","put","put","put","get","put","put","put","put","get","put","put","get","put","get","get","put","get","get","get","get","put","get","put","put","put","put","get","put","put","get","put","put","put","put","get","put","get","put","put","put","get","get","put","put","put","get","put","get","get","put","put","put","put","put","get","put","put","get","put","put","get","put","put","put","get","get","get","put","put","put","get","get","get","put","put","get","get","put","get","put","get","put","put","put","put","put","get","get","put","get","put","put","get","get","put","get","put","put","put","put","get","get","put","get","put","put","put","put","put","get","get","put","get","put","put","put","put","put","get","put","get","put","put","put","get","get","put","put","put","put","get","put","get","get","get","put","get","put","put","get","get","get","put","get","get","put","put","put","put","put","put","get","put","put","get","put","put","put","get","get","get","get","get","put","put","put","get","put","get","put","put","get","get","put","put","get","get","put","put","get","get","put","get","get","put","put","put","put","get","get","put","put","put","get","put","get","put","put","put","put","put","put","get","get","get","get","get","get","get","put","put","put","get","get","get","get","put","put","put","put","get","get","get","get","put","get","put","put","put","put","get","get","put","get","get","get","get","get","get","put","get","get","get","put","put","put","put","put","put","get","put","put","get","put","put","get","put","put","put","put","put","put","put","get","get","put","put","get","put","put","get","get","get","put","put","put","put","get","put","put","get","get","put","put","get","put","put","put","put","get","put","get","put","put","get","get","put","put","get","put","put","get","put","put","put","get","put","put","put","put","get","get","put","put","get","put","put","get","put","put","put","get","put","get","put","put","put","get","put","put","put","get","get","put","get","put","put","get","get","put","put","put","get","put","put","get","put","put","get","put","get","put","put","put","put","put","put","put","put","get","get","get","put","put","put","put","put","put","get","get","put","get","put","get","put","get","put","get","get","put","get","put","put","put","put","get","put","get","get","put","put","get","put","get","put","put","put","put","put","put","get","get","get","get","put","get","put","get","put","get","get","put","put","get","put","get","put","get","get","get","put","put","put","get","get","get","put","put","get","put","get","put","get","get","get","put","get","put","put","get","put","put","get","put","put","put","get","get","put","put","put","get","get","get","get","put","get","put","get","put","put","put","put","put","get","get","get","put","put","put","put","put","put","put","put","put","put","put","put","get","get","put","get","get","get","get","get","get","get","put","put","get","put","put","get","get","get","get","get","put","get","get","get","put","put","put","put","get","put","put","put","put","put","put","get","put","get","get","put","put","put","get","get","put","put","put","get","get","get","put","put","put","put","get","put","get","get","put","put","put","put","get","put","put","put","get","put","put","put","put","get","get","get","put","get","put","put","put","get","put","get","put","put","get","get","put","put","put","put","get","get","get","put","get","get","get","put","put","put","get","get","get","put","put","put","put","put","get","put","put","put","put","get","get","put","put","get","put","get","put","put","put","put","get","put","put","get","get","put","put","put","put","put","get","get","get","put","get","get","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","get","get","put","get","put","get","put","get","get","put","get","get","get","get","put","put","put","put","get","get","get","put","get","get","put","put","get","put","get","get","get","put","get","put","get","put","put","get","get","put","put","put","put","put","put","get","get","put","get","put","get","get","put","put","put","put","put","put","put","get","put","put","get","put","put","put","put","put","put","get","put","put","get","get","get","put","get","put","put","get","put","get","get","put","get","get","put","put","put","get","get","get","put","put","get","get","put","get","put","put","get","put","get","put","put","put","put","put","put","put","put","put","put","get","put","get","get","get","put","get","put","put","get","put","put","put","put","put","get","get","put","get","get","get","get","get","put","put","put","put","get","put","put","put","put","get","put","put","get","get","put","put","get","get","put","put","put","put","get","put","get","put","put","get","put","get","put","put","get","put","put","get","get","get","put","get","put","put","put","get","get","put","put","get","put","put","put","get","get","put","get","put","get","get","put","get","put","get","put","get","put","get","get","get","get","put","put","get","put","put","put","get","put","get","get","get","put","get","put","get","put","get","get","get","put","put","put","get","put","get","get","put","put","put","put","get","get","put","put","get","get","put","put","put","put","put","put","put","put","put","put","get","get","get","get","get","get","get","get","put","put","put","put","put","put","put","put","get","get","get","get","put","get","put","put","get","put","get","put","get","put","put","get","put","get","put","put","put","put","get","put","put","get","get","get","put","put","put","put","put","get","put","get","get","get","put","put","put","put","get","put","get","put","get","get","get","get","get","get","put","get","put","put","get","get","get","put","get","get","put","get","put","get","put","put","put","put","put","put","put","get","put","get","put","get","put","put","put","put","get","put","get","put","put","put","get","put","get","put","put","get","get","put","get","put","put","put","put","put","get","put","put","put","get","put","put","get","put","get","get","put","get","put","get","put","get","put","put","get","put","get","get","put","put","get","put","get","put","get","get","put","put","put","put","get","put","put","put","put","put","get","put","get","get","put","put","get","put","get","get","get","put","put","get","get","get","put","get","put","get","put","get","get","put","get","put","get","put","put","put","get","get","get","get","get","put","put","put","get","get","put","get","put","get","put","put","put","put","get","get","get","get","get","put","put","get","get","get","get","get","put","put","get","put","put","get","put","get","put","get","get","put","put","get","put","put","put","get","get","put","put","get","get","get","get","put","get","get","put","put","get","get","get","put","put","get","get","put","get","get","put","put","put","put","put","get","put","put","get","get","put","get","put","put","put","put","get","put","put","put","put","get","get","put","put","get","put","get","put","put","put","put","put","put","put","get","put","get","get","put","put","put","put","put","put","put","put","get","get","put","put","put","put","put","get","put","get","get","put","put","get","put","get","put","put","put","get","get","get","get","put","get","get","put","put","get","get","put","put","put","put","put","get","put","put","put","get","get","get","put","put","put","put","put","get","get","get","get","put","get","get","put","get","put","put","get","get","put","get","put","get","put","get","put","put","get","get","get","get","get","put","put","get","get","put","get","put","put","get","get","put","put","put","put","put","get","get","put","put","put","put","put","get","get","put","put","get","get","put","put","put","get","put","get","put","put","put","put","put","put","get","put","put","get","get","get","put","get","get","put","put","put","put","put","put","get","get","get","put","get","put","put","get","put","get","get","put","put","get","get","put","put","get","put","put","get","get","get","get","get","put","get","get","put","put","get","put","get","put","put","put","put","put","get","put","put","get","get","put","get","get","put","put","put","get","get","get","get","get","put","put","get","put","get","get","put","put","get","put","get","put","get","put","get","get","put","get","get","put","get","put","put","put","put","get","get","put","get","get","get","put","put","put","get","put","get","put","get","put","get","put","get","put","get","put","put","get","get","put","get","put","put","get","put","get","put","put","get","put","put","get","put","get","get","put","put","get","get","put","get","put","put","put","put","put","get","get","put","put","put","get","put","get","get","put","get","get","put","put","put","put","put","get","put","put","get","put","put","put","get","put","put","put","get","get","put","put","put","put","get","get","put","put","put","get","put","get","put","put","get","get","get","get","put","get","get","put","get","get","get","get","put","get","put","put","get","put","put","get","get","get","put","put","get","get","get","get","put","put","put","put","get","put","get","put","get","get","get","put","get","put","put","get","put","put","get","get","get","put","put","put","get","put","put","put","get","get","get","get","put","put","put","put","get","put","put","get","put","get","get","put","get","get","put","get","get","get","put","get","put","get","put","put","get","get","put","put","put","get","put","get","put","get","put","get","get","put","get","get","put","get","get","put","put","put","put","put","put","put","put","get","put","put","get","put","get","put","get","put","get","put","put","put","get","get","get","get","put","put","get","put","get","put","get","put","put","put","get","put","put","put","put","get","put","put","put","put","get","get","put","put","put","put","put","get","put","get","get","put","put","put","put","get","put","put","get","put","get","put","put","get","put","get","put","get","put","put","put","put","get","put","get","get","put","get","put","put","put","get","put","put","get","put","put","get","put","put","put","get","put","get","get","get","get","put","get","get","get","get","get","get","put","get","get","put","get","put","get","put","put","get","put","get","get","put","put","put","get","put","put","put","get","get","get","get","get","put","put","get","get","get","put","get","put","get","put","get","get","get","get","get","get","put","put","get","get","put","get","get","get","get","put","put","put","put","put","put","put","put","put","put","put","put","get","put","get","put","put","put","put","get","put","get","put","put","put","put","get","get","get","put","get","put","get","put","put","put","get","put","put","put","put","get","get","put","put","get","put","get","put","put","put","put","get","get","put","put","put","put","put","get","get","put","put","get","get","get","get","put","put","get","put","get","put","put","put","get","get","put","put","get","put","put","put","put","put","get","put","get","put","put","get","put","get","get","get","get","put","get","put","put","get","put","put","put","get","get","get","put","get","put","put","put","get","put","get","get","put","put","put","put","put","get","put","get","get","get","put","get","put","get","get","get","get","put","get","put","put","put","get","put","get","get","put","put","put","put","get","put","put","put","get","put","get","put","put","put","put","put","get","put","get","put","put","get","get","put","get","get","get","put","get","get","get","get","get","put","get","put","put","put","get","get","put","get","get","put","get","put","get","put","get","put","put","put","put","put","get","get","put","put","put","get","put","put","get","put","get","get","put","put","put","get","get","get","put","put","put","get","put","get","get","get","put","get","get","put","put","put","put","get","put","get","get","get","get","put","get","get","put","put","get","put","put","put","get","put","put","get","put","put","put","get","get","get","put","put","get","put","get","get","get","put","get","get","get","put","get","put","put","get","put","get","get","get","put","put","put","get","put","put","get","get","get","put","put","put","put","get","put","put","put","get","get","put","get","put","get","put","put","put","put","put","get","put","put","put","get","get","put","get","put","put","put","put","put","put","put","put","get","put","put","get","put","get","get","put","put","put","put","put","put","get","get","put","put","get","put","get","get","put","put","put","put","put","get","put","get","put","get","put","put","put","get","put","put","get","put","put","put","get","get","put","put","get","get","get","get","get","get","get","put","put","put","put","put","put","get","get","get","put","put","get","get","put","get","get","get","put","put","put","put","get","put","put","put","get","put","put","put","get","put","put","put","put","put","put","get","get","put","get","get","put","put","put","get","put","get","put","get","get","get","get","get","put","get","put","get","put","get","get","put","get","put","put","put","put","put","get","get","get","put","put","put","get","put","get","get","get","get","get","put","put","put","put","get","put","put","put","get","get","get","get","put","put","get","put","put","get","get","put","put","get","put","put","put","put","get","put","put","get","get","get","put","get","put","put","get","get","get","put","put","put","put","get","get","put","get","put","put","get","put","put","put","get","put","get","get","put","put","get","put","put","put","get","get","get","put","get","get","get","get","put","put","put","put","put","put","put","get","put","put","put","get","get","put","put","put","put","get","get","get","put","put","get","get","put","get","get","put","get","get","get","get","put","get","get","put","get","get","put","put","get","get","put","get","get","get","get","get","get","get","put","get","put","put","get","get","get","put","put","get","get","put","get","put","put","get","get","put","put","put","put","get","get","get","put","put","put","get","put","put","put","put","put","put","get","get","get","get","get","put","put","get","get","get","get","put","get","get","put","get","put","put","put","put","get","get","put","get","get","put","put","put","get","put","put","get","put","get","get","put","put","get","put","put","put","get","get","get","put","put","put","put","put","put","put","get","put","get","get","put","put","put","put","put","get","put","get","put","put","get","put","put","put","put","get","put","get","get","get","get","get","put","put","get","put","put","get","put","get","get","put","get","put","put","get","get","get","put","put","put","put","get","put","get","get","get","get","get","put","put","get","put","get","put","put","get","put","put","get","put","get","put","put","get","put","get","put","put","put","put","get","put","get","get","put","get","put","get","put","get","put","get","get","put","put","put","put","put","put","put","put","get","put","get","put","get","get","get","get","put","get","get","put","put","get","get","put","put","get","put","put","put","put","get","get","get","put","put","get","put","put","put","put","get","put","get","put","put","get","put","get","put","get","put","get","get","put","get","get","put","put","put","put","put","put","put","put","put","get","put","put","get","get","put","put","get","put","put","put","get","get","put","put","put","put","put","put","get","put","get","put","put","get","put","get","put","put","get","put","put","get","put","get","get","put","put","get","put","put","put","get","put","put","put","get","put","put","put","get","put","put","get","put","put","put","get","get","put","put","get","put","put","get","get","get","put","get","get","put","get","put","put","put","put","put","put","get","put","get","put","put","put","get","put","get","put","put","get","get","put","put","put","get","get","get","get","put","put","get","get","put","get","put","put","put","get","put","get","put","get","put","get","put","get","get","put","get","put","put","put","put","get","get","put","put","put","put","get","get","put","get","put","get","get","get","put","put","put","get","get","put","get","put","put","get","get","get","get","get","get","get","get","get","put","put","put","put","put","put","put","put","get","put","put","get","get","get","get","get","put","put","get","put","put","put","get","get","get","get","put","put","get","put","put","put","get","put","put","get","get","put","put","get","put","put","put","get","get","get","get","put","put","put","put","get","get","put","put","put","get","get","get","get","get","put","get","put","get","get","put","get","get","put","put","get","get","put","get","put","get","put","put","get","put","put","get","get","put","get","get","get","put","put","put","put","get","put","put","put","put","put","put","put","put","put","get","put","put","get","get","put","put","get","put","get","put","put","put","get","get","put","put","put","put","get","get","put","get","get","get","put","put","get","put","put","get","get","get","get","get","put","put","get","put","get","get","get","put","put","get","get","put","put","put","put","get","put","get","put","put","put","put","put","put","get","put","get","put","put","get","put","put","put","put","get","get","put","put","put","put","put","put","get","get","put","get","put","get","put","put","put","get","put","get","put","get","get","get","put","put","get","get","get","get","put","put","get","put","put","put","get","put","get","put","get","put","get","get","put","put","get","put","get","get","get","get","put","put","put","get","get","put","get","get","put","put","put","get","get","put","put","put","put","put","get","put","put","put","put","get","put","get","get","get","get","put","put","get","put","put","get","put","put","get","put","put","put","put","put","get","get","put","put","put","get","get","put","get","put","put","get","put","get","put","put","get","get","put","get","put","get","put","put","put","put","get","put","put","put","get","put","put","put","put","get","get","put","put","get","get","put","get","get","get","put","get","put","put","get","get","put","get","get","get","put","put","put","put","get","get","put","get","get","get","put","put","put","put","put","put","put","put","get","get","put","get","put","get","get","put","put","get","get","put","put","get","put","put","get","put","put","put","get","get","get","get","get","put","put","get","put","put","put","get","get","get","put","put","get","put","put","put","get","get","put","get","get","put","get","put","put","get","get","get","put","put","put","put","put","put","put","get","put","put","get","put","put","get","get","put","get","put","put","get","put","put","get","get","get","get","put","get","get","put","get","put","put","get","get","get","get","put","get","get","get","put","put","get","put","get","put","put","get","put","put","put","get","put","put","put","put","get","put","get","put","get","put","put","get","get","get","put","put","get","put","put","put","put","put","put","put","put","put","get","put","put","get","get","get","get","get","put","put","put","get","get","put","put","put","put","put","put","put","put","put","get","put","put","put","get","put","get","get","put","get","get","get","put","put","get","get","put","put","put","get","put","put","put","get","get","get","get","put","get","put","put","put","put","get","put","put","put","get","get","put","put","put","put","get","put","put","get","put","get","put","put","put","put","put","get","get","put","put","get","get","put","put","put","get","put","get","put","put","put","put","put","put","put","put","get","put","get","put","get","put","put","get","put","put","put","put","get","put","get","put","put","put","put","put","put","put","put","get","get","get","put","get","get","get","get","put","get","put","get","get","get","put","put","put","put","put","get","put","get","put","put","get","get","get","put","put","put","get","get","get","put","get","put","get","get","put","get","get","put","get","put","get","put","put","get","get","put","put","put","get","get","put","get","put","put","get","get","get","put","get","get","put","get","put","get","get","get","get","put","put","put","put","get","put","get","put","put","put","get","put","put","put","get","put","put","put","get","put","put","put","put","put","get","get","put","get","get","put","get","put","put","get","put","put","get","put","put","get","get","get","put","put","put","get","get","put","get","put","put","put","get","get","put","put","get","get","put","put","put","put","get","get","put","get","put","put","get","put","get","get","put","put","put","get","get","put","put","get","get","get","put","put","put","put","put","put","put","get","get","put","get","put","put","put","put","put","get","put","put","put","get","put","get","get","put","get","put","put","put","get","put","get","put","get","get","get","put","put","get","get","put","get","put","put","get","put","get","get","put","put","get","get","put","put","put","get","put","get","put","get","put","put","put","put","put","get","get","put","get","get","get","put","put","get","get","get","put","get","put","put","put","put","get","put","put","put","put","put","put","put","get","put","get","put","put","put","put","get","get","put","put","get","put","get","get","get","get","put","put","put","put","get","put","put","get","get","get","get","put","get","put","get","put","put","put","put","get","put","put","put","put","get","get","get","put","get","put","get","get","put","put","get","put","put","get","put","get","put","get","get","put","get","put","put","put","put","put","put","get","get","put","put","put","get","get","get","get","put","get","get","get","put","put","get","get","get","put","get","put","put","put","put","put","put","put","get","put","put","get","get","get","get","get","put","get","get","put","put","put","put","get","put","get","get","put","put","put","put","get","get","put","put","put","get","get","get","get","get","get","put","put","put","get","put","put","put","get","put","get","put","get","put","put","put","put","put","put","get","put","get","put","get","put","put","put","get","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","put","put","put","get","put","put","get","put","get","get","get","get","put","put","get","get","put","put","put","get","put","get","get","put","put","get","put","put","get","put","get","get","put","put","get","get","put","put","put","get","get","put","put","get","put","put","put","put","put","get","put","put","put","get","put","get","get","get","put","put","get","put","get","get","get","put","get","put","get","put","put","get","put","get","put","get","get","get","get","get","put","put","put","get","put","get","get","put","put","get","get","get","put","get","get","put","get","get","get","get","get","put","put","get","get","put","put","put","get","put","get","put","put","put","get","put","get","put","get","put","put","get","get","get","get","put","put","get","get","put","put","get","put","get","put","put","put","put","put","get","put","put","get","get","put","put","put","get","put","put","put","get","get","put","get","put","get","put","put","get","get","put","get","put","put","get","get","put","put","get","put","get","put","get","put","put","get","get","put","get","get","get","put","get","get","put","put","put","get","put","put","put","put","get","put","get","put","get","put","put","get","get","get","get","put","get","put","put","put","put","get","get","put","get","put","get","get","put","put","put","put","get","put","get","get","put","get","put","put","put","put","put","get","put","put","get","put","put","put","get","put","get","get","put","get","get","put","put","put","get","get","put","put","get","get","get","get","put","get","get","get","get","get","put","put","get","put","get","get","put","put","get","put","get","get","put","put","get","put","put","put","put","get","put","get","get","put","get","put","get","get","get","put","put","put","put","put","get","put","put","get","get","put","put","put","put","put","get","get","get","get","get","put","put","put","get","get","get","get","get","get","get","get","put","put","put","get","put","get","put","get","get","get","put","put","put","put","get","put","get","get","get","put","get","put","put","put","put","get","put","put","get","put","put","put","put","get","put","put","put","put","get","put","get","put","put","get","get","get","put","get","put","get","put","put","put","get","get","put","put","put","put","get","get","get","put","put","put","put","get","get","put","get","get","put","put","get","get","get","put","get","put","put","get","put","put","put","get","put","put","get","get","put","get","get","get","put","get","put","put","put","get","get","put","get","put","put","put","get","put","put","put","put","put","put","get","get","get","put","put","get","get","get","get","put","get","get","put","get","get","get","put","get","get","put","put","put","put","get","get","get","put","get","put","get","put","put","put","get","get","put","put","get","put","get","get","put","put","get","get","put","get","get","get","get","put","get","get","get","get","get","put","put","get","put","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","put","put","put","get","get","put","put","put","get","get","put","get","get","get","put","get","get","put","put","get","get","put","put","get","get","put","put","get","get","get","get","put","get","get","put","put","get","get","put","put","get","get","put","put","get","put","put","put","put","get","put","get","put","put","put","get","get","put","put","get","put","put","put","get","get","put","put","put","put","put","get","put","put","put","get","get","put","get","put","put","get","get","put","get","get","put","get","put","put","get","get","get","put","get","put","get","get","get","put","get","put","put","put","put","put","put","put","put","get","put","get","get","put","put","get","get","put","put","put","put","put","get","get","get","get","get","put","put","put","get","get","put","get","put","get","get","put","get","get","put","put","get","put","get","get","put","get","put","put","get","get","get","put","get","get","get","put","put","get","put","put","put","get","put","put","get","get","put","put","put","put","get","put","put","put","put","put","get","get","get","get","put","get","get","get","put","get","put","put","get","put","get","get","get","get","get","get","get","put","put","get","put","get","put","get","get","get","get","get","get","get","get","put","get","get","put","put","get","put","put","put","put","put","put","put","put","put","get","get","get","put","get","put","put","get","put","get","put","put","put","get","get","put","put","get","put","get","put","get","put","put","put","put","get","get","put","put","get","put","get","put","put","get","get","put","get","put","get","put","get","put","put","get","put","get","put","get","put","put","get","get","put","get","put","get","put","put","put","put","put","put","put","put","get","put","get","get","put","put","get","get","put","get","get","get","put","put","put","put","put","get","get","put","put","put","get","put","put","get","put","get","put","get","get","put","put","get","put","get","put","put","get","put","put","get","get","put","put","put","put","put","put","put","get","put","put","put","put","put","put","get","put","get","put","put","put","put","put","get","get","get","put","put","get","put","get","get","get","put","get","put","put","put","put","get","put","put","get","put","get","put","get","put","put","put","get","put","put","put","get","put","put","get","get","put","get","put","get","get","get","put","put","get","put","put","put","put","put","put","put","put","put","put","put","get","put","put","get","get","put","put","get","get","put","put","put","get","put","put","put","get","get","put","get","put","get","put","put","put","put","put","get","put","put","get","get","put","put","put","put","put","get","get","put","get","put","get","get","put","get","put","put","put","put","put","get","get","get","put","get","get","get","put","put","get","get","get","put","put","get","get","get","get","put","get","put","get","put","put","get","get","get","get","get","get","get","get","put","get","put","put","get","get","get","get","put","put","put","put","get","get","put","put","put","put","get","put","get","put","get","get","get","get","get","get","get","put","put","put","put","get","get","get","put","put","get","put","put","put","get","put","put","put","get","put","put","put","put","put","get","get","put","get","put","put","put","put","get","put","put","get","get","get","put","put","put","get","put","get","get","put","get","put","get","put","put","put","get","put","get","put","put","get","put","put","put","put","put","put","put","get","get","get","put","get","get","get","get","get","put","get","put","get","get","get","put","get","get","put","get","put","put","put","put","put","put","get","put","get","put","put","get","put","put","get","put","put","get","get","put","put","get","put","put","put","get","get","put","put","put","put","put","get","put","put","put","put","put","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","get","put","put","get","put","put","put","put","get","get","get","get","get","put","put","get","put","put","put","get","put","get","put","get","get","get","put","put","get","put","put","put","get","put","put","put","get","get","get","put","get","put","put","put","get","put","put","get","put","put","get","get","get","get","get","put","put","get","get","get","get","put","put","get","get","put","put","get","put","put","put","put","get","put","put","put","put","put","put","put","get","put","put","put","put","put","put","get","put","put","put","get","get","put","put","put","put","get","put","put","put","get","put","put","put","get","put","get","get","put","put","get","put","get","get","get","put","get","get","put","put","get","get","get","get","get","put","get","put","get","put","put","get","put","get","put","put","put","put","get","get","put","put","get","put","get","get","put","get","put","put","get","get","put","get","get","put","put","get","put","put","put","get","get","put","get","get","get","put","put","put","put","put","get","put","get","put","put","get","get","get","put","put","get","put","get","put","get","get","put","get","get","put","get","get","put","get","get","put","put","put","get","put","get","put","put","put","get","put","get","put","put","put","get","put","get","put","get","put","put","get","put","put","put","put","put","put","put","put","get","get","put","get","get","get","get","put","get","put","put","get","get","get","put","put","put","put","get","put","put","get","get","get","get","get","get","put","get","put","put","get","put","get","put","put","put","get","put","put","put","get","put","put","put","put","get","get","put","put","get","put","put","put","put","put","put","put","put","get","put","get","put","get","put","get","get","put","put","put","put","get","get","put","get","get","put","put","put","get","get","put","get","put","get","get","put","get","put","get","get","put","get","put","put","get","get","get","put","put","get","put","put","put","put","put","put","put","put","get","get","put","put","put","put","put","get","put","put","put","get","get","put","get","get","put","put","put","put","put","put","put","put","put","get","get","put","put","get","put","get","put","get","get","put","get","get","put","get","put","get","get","get","put","get","put","get","put","get","get","get","get","put","put","put","get","get","get","put","get","get","get","put","put","get","put","get","get","get","put","get","put","get","get","get","get","put","get","get","put","put","put","put","put","get","get","get","get","get","put","put","get","get","get","put","put","get","put","put","get","put","put","put","put","put","put","put","put","get","get","put","put","put","put","get","get","put","get","put","put","get","put","get","get","put","put","get","put","get","get","put","put","put","put","put","put","put","put","put","get","get","get","get","get","get","put","put","put","put","put","put","put","put","put","get","get","put","put","put","put","get","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","get","put","get","put","put","put","get","get","get","put","put","put","put","get","put","get","get","put","put","put","put","put","put","get","put","get","get","get","put","get","put","put","get","get","put","get","get","get","put","get","put","put","get","get","put","put","put","put","put","put","get","get","put","put","put","put","put","get","put","put","get","get","put","get","put","get","put","get","get","get","get","get","put","put","put","put","put","get","get","put","put","put","get","put","put","get","put","get","put","get","put","put","put","put","put","put","get","put","put","get","put","put","put","put","put","put","put","put","put","get","put","put","put","get","put","put","put","get","put","put","put","put","put","get","get","get","put","get","put","get","get","get","get","get","put","get","put","put","get","get","put","put","get","put","put","put","get","put","put","get","put","get","put","put","put","put","put","put","put","get","put","put","put","get","get","get","put","get","put","put","put","get","get","get","get","put","put","put","get","get","get","get","get","get","put","get","put","put","get","put","put","put","put","get","put","get","get","get","get","put","get","put","put","put","put","get","put","get","get","put","put","put","get","put","get","put","get","get","get","get","get","get","get","put","put","put","put","put","get","put","get","get","put","put","put","get","put","put","put","put","put","get","get","get","get","put","get","put","put","put","put","get","get","put","put","put","get","get","get","get","put","get","put","put","put","get","get","get","get","get","put","get","get","get","put","get","put","get","get","put","get","put","put","put","get","get","put","put","get","put","put","get","put","get","get","get","put","get","put","get","get","put","put","put","get","put","get","get","put","get","put","get","put","put","put","put","put","get","get","put","get","put","get","get","put","put","get","get","put","get","put","put","put","get","put","put","put","get","put","get","put","put","get","get","put","put","get","put","put","get","put","get","put","put","put","put","get","get","put","get","get","get","put","put","get","put","get","put","put","put","put","get","get","get","get","put","put","get","get","get","put","put","get","put","put","get","put","put","put","put","put","put","put","put","get","get","get","put","put","put","put","put","put","put","put","put","get","put","get","get","put","get","put","put","get","put","get","put","put","put","get","put","get","get","put","put","get","put","get","put","get","put","put","put","get","get","get","put","get","get","put","get","put","put","put","put","put","put","put","put","put","get","get","get","put","get","put","get","put","put","get","put","put","get","put","get","put","put","get","get","get","get","put","put","get","put","put","put","get","get","put","put","get","put","get","get","put","get","put","get","get","put","get","get","put","put","get","put","put","put","put","get","get","get","get","put","get","get","put","put","get","put","get","get","get","get","put","get","put","put","get","get","put","get","get","put","put","get","put","get","put","put","get","put","put","put","put","put","put","get","put","put","put","get","put","put","put","get","get","get","put","put","put","get","put","get","put","put","put","put","get","put","get","put","put","get","put","get","put","put","put","put","get","get","put","get","get","get","put","get","put","put","put","put","get","put","get","put","put","get","get","put","put","put","put","get","put","put","get","put","put","get","get","put","get","get","get","get","put","put","put","put","put","get","put","get","get","put","put","put","get","put","put","put","put","get","put","put","get","get","put","get","put","put","put","get","get","get","put","put","get","put","get","put","get","get","get","put","get","get","put","get","put","put","get","put","get","put","put","get","get","put","put","put","put","put","put","get","put","put","put","get","put","put","put","get","get","put","put","put","get","get","get","get","put","put","put","get","get","get","put","get","get","put","put","get","get","put","get","put","get","get","get","put","put","get","get","get","get","put","put","get","get","put","put","get","put","put","get","get","get","put","put","put","put","put","get","get","get","put","get","put","get","put","put","get","put","put","put","put","put","get","get","put","get","put","put","get","put","put","put","get","put","put","put","put","put","get","put","put","get","get","get","put","put","get","get","get","put","get","put","get","put","put","put","get","get","put","get","put","get","get","put","put","put","get","put","put","put","put","put","put","put","get","get","put","get","get","put","get","put","put","put","put","get","put","get","put","get","put","get","get","get","get","get","get","get","put","put","put","put","put","put","put","get","get","put","get","put","get","get","put","put","put","put","get","put","get","get","put","get","put","put","get","put","get","put","put","get","put","put","put","get","get","put","get","get","put","put","put","get","put","get","put","get","get","put","put","put","put","put","get","put","put","get","get","put","put","get","put","put","get","get","put","get","get","put","get","put","put","put","get","put","get","put","put","put","put","get","get","put","put","put","put","get","get","put","get","put","put","put","get","put","put","put","put","put","put","get","put","put","put","get","put","put","put","get","put","get","put","put","put","get","get","get","get","put","get","get","get","get","put","put","put","get","get","get","put","get","put","get","put","get","get","put","get","get","put","get","get","put","put","get","get","put","put","put","get","put","put","get","get","put","get","get","get","put","put","put","put","put","get","get","put","get","get","get","put","get","get","put","put","put","get","get","get","put","put","put","put","put","put","put","get","put","get","get","get","get","get","put","put","put","put","get","put","get","get","put","get","get","put","put","get","get","get","get","put","put","get","get","put","get","get","get","get","get","get","put","put","put","get","get","get","get","put","put","get","get","get","get","get","put","get","get","put","put","get","get","put","put","put","put","put","put","get","put","put","put","get","get","get","get","get","put","put","put","put","put","put","get","get","put","put","get","put","get","put","put","get","put","put","put","put","get","put","get","put","get","put","put","put","get","put","get","get","put","get","put","get","get","get","get","get","put","get","put","put","put","get","put","put","get","get","get","put","get","get","get","put","put","get","put","put","put","put","put","get","get","put","get","get","get","put","put","put","get","put","get","put","put","put","put","put","put","put","put","put","get","get","put","get","put","put","put","put","put","put","get","get","get","put","put","get","get","get","put","put","get","get","put","put","put","get","put","put","get","put","put","put","put","get","get","put","put","get","put","put","get","put","get","get","get","put","get","get","get","get","get","put","put","get","get","put","get","get","put","get","put","put","put","put","put","get","get","get","put","get","put","put","get","put","put","put","get","put","put","get","put","put","put","get","get","put","get","get","put","get","get","get","put","put","put","put","get","get","put","put","put","put","put","put","get","put","get","get","put","get","put","get","put","get","get","get","get","get","get","get","put","put","put","put","put","put","put","get","put","put","get","put","put","get","get","put","put","put","get","put","put","put","get","get","put","get","put","get","get","get","put","put","put","get","put","put","put","put","put","put","put","get","put","put","get","get","get","put","get","get","put","get","put","get","get","get","get","put","get","get","get","put","get","put","get","put","get","get","put","put","get","put","put","put","put","put","put","get","put","put","put","put","put","put","put","put","put","get","get","put","put","get","put","put","put","put","get","put","put","get","get","put","put","get","put","put","put","get","put","get","put","get","put","put","put","get","get","put","put","put","put","put","get","get","put","put","put","get","put","put","get","get","put","get","get","put","put","get","put","put","put","get","get","get","get","get","put","put","put","put","get","get","get","put","put","get","get","put","put","get","get","get","put","get","get","put","put","get","get","get","get","put","put","put","put","put","get","get","get","get","get","get","get","put","get","put","get","put","get","get","put","get","put","put","get","get","get","get","get","put","get","get","put","put","put","get","get","put","get","get","get","put","get","put","get","get","get","put","put","put","get","get","get","get","get","put","get","put","put","put","put","get","put","put","get","put","put","put","get","put","get","get","put","put","put","put","put","get","get","put","get","put","put","put","put","put","get","get","get","get","put","get","get","get","put","put","put","put","put","put","put","put","put","get","put","put","get","get","put","get","put","put","put","put","get","get","get","put","put","get","get","put","get","get","put","get","put","get","put","get","get","put","put","get","get","put","put","put","get","put","get","put","get","put","put","put","put","put","put","get","put","put","put","put","put","get","put","get","get","put","put","get","get","put","put","put","put","put","put","get","put","get","put","get","get","put","put","get","get","get","put","put","get","get","put","put","put","put","put","put","put","get","put","put","get","put","put","get","put","put","get","get","put","get","get","get","put","get","put","put","get","get","put","put","put","get","put","get","get","get","get","get","get","put","put","get","put","put","put","get","put","get","put","put","get","put","get","put","get","get","put","get","put","get","put","put","put","put","get","put","get","put","get","get","get","put","put","put","get","put","get","get","put","get","put","get","get","put","get","put","get","get","put","get","get","get","put","put","put","get","get","get","get","put","get","get","put","put","put","put","put","get","put","get","get","put","put","get","get","put","put","get","get","put","put","put","put","put","put","get","get","put","put","get","put","get","get","put","put","put","get","get","get","put","put","put","put","get","put","get","get","get","put","put","get","get","get","get","get","put","put","put","get","get","get","put","put","get","get","get","get","put","put","get","put","put","get","put","put","put","put","put","get","put","put","put","get","put","get","put","put","put","put","put","get","get","put","put","put","put","get","get","get","get","put","get","put","get","get","get","get","put","put","get","put","put","put","put","get","put","put","put","put","get","put","get","put","put","get","put","get","put","put","get","get","put","put","get","get","put","put","get","get","put","get","get","get","get","put","get","get","put","put","put","get","put","get","put","get","put","put","get","get","get","put","get","put","put","put","put","put","put","put","get","get","get","put","put","get","get","get","put","get","get","put","get","get","put","put","put","get","put","get","put","put","put","put","get","put","put","put","get","put","put","get","get","put","get","get","put","put","put","get","get","put","put","get","put","put","put","put","put","get","put","put","get","get","get","put","put","put","get","put","get","put","put","put","get","get","put","get","put","put","put","put","put","put","put","put","put","put","put","put","put","put","get","put","get","get","put","put","put","get","put","put","put","put","put","put","put","put","put","put","put","put","get","put","put","put","get","get","put","put","get","get","put","put","get","put","put","put","get","get","put","put","get","put","get","put","get","get","put","put","put","put","get","put","put","put","get","put","put","put","get","get","put","put","get","get","put","put","put","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","put","get","put","put","put","put","put","get","get","get","put","put","put","get","put","get","put","get","put","put","put","get","put","get","put","get","get","put","put","put","get","put","get","get","get","get","get","put","put","put","get","put","get","put","put","get","get","get","put","put","put","get","put","get","get","put","put","get","get","put","put","put","get","get","put","get","put","get","put","put","put","put","get","put","put","put","put","put","get","get","put","put","get","get","get","get","put","put","get","put","put","get","get","put","get","put","put","get","get","put","put","put","get","get","get","put","get","put","get","put","put","put","get","get","put","put","put","put","put","put","put","put","get","get","put","get","get","put","put","put","put","get","get","get","get","get","put","get","put","get","put","get","put","put","put","get","get","get","get","put","get","put","put","put","get","put","get","get","put","get","get","get","put","put","get","put","get","put","get","get","put","get","put","get","put","get","get","put","put","put","put","put","put","get","put","get","put","get","put","put","get","get","put","get","get","put","get","get","put","put","put","put","put","get","get","put","put","get","put","get","put","get","get","put","get","put","put","put","put","put","get","put","put","put","put","get","get","put","put","get","get","put","put","put","put","get","put","get","put","put","get","put","put","put","put","put","get","put","get","get","put","put","put","get","get","put","get","get","put","put","put","put","put","get","get","put","put","get","get","put","put","get","put","put","get","get","put","get","put","put","get","put","put","put","put","put","put","put","get","get","put","put","put","get","put","put","put","put","get","put","get","put","put","put","get","put","put","put","put","put","put","put","put","put","get","put","put","put","put","put","put","put","get","put","put","put","put","get","get","get","put","put","get","get","put","get","get","get","put","put","get","put","get","put","get","put","get","put","put","put","put","put","get","get","put","put","get","put","get","put","get","put","get","get","put","get","get","put","put","put","put","put","put","put","put","get","put","put","put","put","put","put","put","get","get","get","put","get","get","get","get","put","put","put","get","get","get","put","get","put","get","put","get","put","put","put","get","put","put","put","put","get","put","get","put","get","put","get","put","get","put","put","put","put","put","put","put","put","get","get","get","put","put","put","get","get","put","get","put","get","put","get","put","get","get","get","get","put","put","put","get","get","put","get","put","put","put","put","get","get","get","get","put","get","put","put","put","put","put","put","put","get","put","put","put","get","get","put","get","get","get","put","put","put","put","put","get","put","put","get","get","get","put","put","put","put","put","get","get","put","put","put","get","put","put","get","put","get","put","put","put","put","put","put","get","put","put","get","put","get","get","get","get","put","put","get","put","get","put","get","get","put","put","get","put","put","get","get","get","put","get","put","get","put","get","put","get","get","put","get","get","get","get","put","get","put","put","get","put","put","get","put","put","put","get","get","put","get","put","put","get","put","put","put","put","put","get","get","get","put","put","put","get","put","put","get","get","put","get","get","get","get","get","put","get","put","put","get","put","put","put","get","get","put","get","get","put","get","get","get","get","get","get","put","put","put","put","put","put","get","get","put","put","get","get","put","put","put","put","put","get","put","put","put","put","put","put","put","get","put","put","put","get","put","put","get","get","put","put","put","get","get","get","get","get","put","put","get","put","put","get","put","get","put","get","get","put","put","put","get","put","put","put","get","put","get","put","put","get","put","put","get","get","get","get","put","put","get","get","put","get","get","put","get","put","put","put","get","get","get","get","get","put","get","get","get","put","put","put","get","get","put","put","put","put","get","put","get","get","put","put","get","put","put","get","get","get","put","get","put","put","get","put","get","put","get","put","put","put","put","get","get","put","put","put","put","put","put","put","get","get","put","get","get","put","put","get","put","put","get","put","put","get","put","get","put","get","put","get","get","put","put","get","get","get","get","put","put","get","get","get","get","get","get","put","get","put","get","get","put","put","put","get","put","put","get","get","get","put","put","put","put","put","get","put","put","get","get","put","get","put","get","put","get","get","put","put","put","put","get","put","put","put","get","put","get","get","put","get","get","put","put","get","put","put","put","get","get","get","put","put","get","get","put","get","get","get","put","put","put","get","put","put","put","put","get","put","get","put","get","get","put","put","get","put","put","put","put","put","get","get","get","get","put","put","put","put","get","put","put","put","put","put","get","put","put","get","get","put","put","get","get","put","get","get","put","put","put","get","get","get","put","get","get","get","put","get","put","put","put","put","put","put","put","get","put","get","put","get","get","put","get","put","put","get","get","put","put","put","put","get","put","get","get","get","put","put","put","put","put","get","get","put","get","put","put","get","put","get","get","get","put","put","get","put","put","put","get","put","put","get","put","put","put","put","get","get","get","get","get","get","put","put","put","get","get","put","get","get","get","get","put","put","get","put","get","put","put","put","put","put","put","put","put","put","put","get","put","get","put","get","get","get","put","get","put","get","put","put","put","put","put","put","put","put","put","put","get","put","get","put","put","put","get","get","get","get","get","put","put","put","get","put","put","get","get","get","put","get","put","get","get","get","put","get","put","get","put","put","put","put","get","get","put","get","put","get","put","put","get","get","get","get","get","get","put","get","put","get","put","get","put","get","put","put","get","put","put","put","get","get","get","put","put","put","get","put","put","put","put","put","get","get","get","get","get","get","get","get","get","put","put","put","get","get","get","put","put","get","put","get","get","put","put","put","get","get","put","put","get","put","get","get","put","put","get","put","put","put","put","get","get","get","put","put","get","put","put","put","put","put","put","put","get","get","put","put","put","put","put","put","put","get","put","get","get","get","get","get","put","get","put","get","get","put","put","put","get","put","put","put","get","put","put","put","put","put","put","get","get","get","put","get","put","put","put","put","get","put","put","get","put","put","put","put","put","put","put","get","put","put","put","get","get","get","put","put","get","put","get","put","get","get","put","put","put","get","get","get","get","get","get","get","get","put","put","put","put","put","get","get","put","put","put","get","put","put","put","put","put","put","get","put","put","put","put","get","put","put","get","put","get","get","get","put","get","put","get","put","put","get","put","put","get","get","get","put","put","put","get","get","put","put","get","put","put","get","put","get","get","put","put","get","get","get","put","put","put","get","get","put","put","put","get","put","put","put","put","put","get","get","get","get","get","get","get","get","get","put","put","put","get","put","get","put","put","get","put","put","put","get","get","put","get","put","get","put","get","get","put","get","put","get","put","get","put","get","put","put","put","get","put","get","put","put","put","get","put","get","get","get","get","put","put","get","put","get","get","put","put","get","get","get","put","get","put","get","put","put","put","get","get","get","put","put","get","put","put","get","get","get","get","put","put","get","get","put","get","put","put","put","get","get","put","put","get","put","get","put","put","put","put","put","get","get","get","put","get","get","put","get","put","get","get","put","put","get","get","put","put","put","get","put","put","put","get","get","get","get","put","put","put","get","put","get","put","get","put","get","put","get","put","put","put","get","get","get","put","get","put","get","get","get","get","put","put","get","put","get","put","put","put","put","get","get","get","get","get","put","get","put","put","put","put","put","get","put","get","get","get","get","get","put","get","put","put","put","put","get","put","put","put","put","put","get","put","put","get","get","put","put","put","put","put","get","put","put","get","get","put","put","get","get","get","put","get","get","put","put","put","put","put","get","put","put","get","put","get","put","get","put","put","put","get","put","put","get","get","put","put","put","get","get","put","put","get","put","put","put","get","put","put","get","get","put","get","put","put","get","get","get","get","put","get","get","put","get","put","put","put","put","put","get","get","get","get","put","get","put","put","put","get","put","put","get","get","get","put","put","put","get","get","put","get","put","get","put","put","put","put","get","put","put","get","put","put","get","put","put","put","get","get","put","get","get","put","get","put","put","put","get","get","put","get","get","get","get","put","put","get","put","put","put","get","put","get","put","put","put","put","get","get","put","get","put","put","put","get","put","put","put","put","get","put","get","get","put","put","get","put","get","put","put","put","put","put","put","put","get","put","put","put","get","put","put","put","put","put","put","get","put","get","get","put","put","put","get","put","get","put","put","get","put","put","put","put","put","put","put","put","get","put","get","put","put","put","get","put","put","get","get","put","put","put","get","get","get","put","get","put","put","get","put","put","get","get","put","get","get","put","put","get","get","put","put","put","put","put","put","put","put","put","get","get","get","put","put","get","put","get","get","get","get","get","get","put","get","put","put","get","put","get","put","put","get","put","get","get","put","get","get","get","put","put","put","get","get","put","get","put","put","put","put","get","put","put","put","get","put","get","get","get","get","put","put","get","get","put","get","put","get","get","get","get","get","put","put","get","put","put","get","get","get","get","get","put","put","put","get","get","put","put","get","get","put","put","get","get","get","get","get","put","put","get","get","get","put","put","get","put","get","get","put","put","get","get","get","put","put","put","put","put","get","put","get","put","put","put","put","get","put","put","get","put","put","put","put","put","get","put","get","put","get","put","get","get","get","get","put","put","put","put","get","put","put","put","put","put","put","get","put","get","put","put","put","get","put","get","get","put","get","get","put","put","put","put","put","get","get","put","put","get","put","get","get","get","get","put","put","get","put","get","put","get","get","put","put","put","get","get","put","get","put","get","put","put","put","get","put","put","get","get","put","put","put","get","get","put","get","put","put","put","get","get","put","put","put","get","put","put","get","put","get","get","put","put","get","get","put","put","get","put","get","put","get","put","put","put","put","put","get","put","get","put","get","get","put","get","get","get","get","get","put","put","put","put","put","put","put","get","get","get","get","get","put","put","put","put","get","get","get","put","put","put","put","get","put","put","put","get","put","put","put","get","get","get","get","put","put","put","put","put","put","get","put","get","put","get","put","put","get","put","get","get","get","put","put","get","get","get","get","put","get","put","put","put","get","get","put","put","put","get","put","get","get","put","get","put","get","get","get","put","put","get","get","get","put","put","get","get","get","get","get","get","put","get","put","put","put","put","put","put","put","get","put","get","put","put","get","get","put","put","put","put","put","get","put","get","get","put","get","get","get","put","put","get","put","put","get","get","put","get","put","put","put","put","put","put","put","put","put","get","get","put","put","put","get","put","get","get","put","get","put","put","put","get","get","get","put","put","get","get","get","put","get","put","put","put","put","put","put","get","get","get","put","get","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","put","get","get","get","get","put","put","put","get","put","put","put","get","get","put","put","put","put","put","get","get","put","put","get","get","get","put","put","put","put","put","get","get","put","get","put","put","get","put","put","get","put","put","get","get","put","put","put","put","put","put","put","put","put","get","put","put","put","get","put","get","put","put","get","get","get","get","get","put","put","put","put","put","get","put","get","put","put","put","put","put","get","put","get","put","put","get","put","put","put","get","put","put","put","get","put","put","get","put","put","put","put","get","get","put","put","put","put","put","get","put","put","get","put","put","get","put","get","put","put","get","get","put","put","put","get","put","get","put","put","get","get","get","get","get","get","put","get","get","put","put","put","get","put","get","put","put","put","put","get","get","put","get","put","get","get","put","get","put","put","get","put","get","put","get","put","get","put","get","put","get","put","put","get","put","get","put","put","put","put","put","get","put","put","get","put","put","get","put","put","put","put","get","get","put","get","put","put","get","put","get","get","put","get","put","put","get","get","put","get","put","put","get","put","put","put","put","get","put","put","put","get","put","put","put","get","get","put","get","get","get","put","get","get","put","get","put","put","get","put","put","put","get","put","put","get","get","get","put","get","get","get","get","put","get","put","put","get","get","get","get","put","put","get","put","put","get","get","put","get","put","put","put","put","get","put","put","get","get","get","get","get","get","put","put","put","get","put","get","put","put","put","put","put","get","put","put","put","put","put","put","get","put","put","put","put","get","put","put","get","put","get","put","put","put","put","get","put","put","put","get","put","get","get","put","get","put","put","put","get","put","get","put","put","put","put","put","put","put","put","get","put","put","put","put","get","put","get","get","get","put","put","put","put","put","put","get","put","get","get","get","get","put","put","get","get","put","put","put","get","put","get","put","get","put","put","get","get","put","put","put","get","get","get","get","get","put","get","get","get","get","put","put","get","put","get","put","put","put","put","get","put","put","get","put","get","put","put","get","get","get","put","put","get","put","get","put","get","put","get","put","put","get","get","put","put","get","put","put","get","put","put","put","put","put","put","get","put","put","get","get","put","put","put","put","get","put","put","get","put","get","put","put","put","get","put","put","put","put","put","put","put","put","put","put","get","put","put","put","put","get","put","put","get","get","get","put","get","put","get","get","get","put","get","put","get","put","put","put","get","put","put","get","put","put","get","get","get","put","put","get","get","get","get","get","put","put","get","put","get","put","get","put","put","put","put","get","put","put","put","get","put","get","get","put","put","put","put","put","get","get","get","get","put","get","get","get","get","get","put","get","get","get","put","put","put","get","put","put","put","put","put","put","get","get","get","put","put","get","put","put","put","put","put","put","get","get","get","get","put","put","put","get","put","put","get","get","get","get","get","put","get","put","put","put","put","put","get","put","put","get","put","get","get","put","get","put","get","put","put","get","put","put","put","put","put","put","put","put","put","put","get","put","put","get","get","get","put","put","get","put","get","get","get","put","put","put","get","put","get","get","put","put","put","get","put","get","get","get","get","get","put","get","put","get","get","put","put","put","put","put","put","get","get","put","get","get","get","get","get","put","put","get","put","get","get","get","get","put","put","put","put","get","put","put","get","put","put","put","get","put","get","put","put","get","get","put","put","get","get","put","put","put","put","get","put","get","get","put","put","get","get","get","get","put","get","put","get","put","put","put","get","get","put","get","put","put","put","put","put","get","get","get","put","get","put","put","put","put","put","put","put","put","put","put","get","put","put","put","put","get","put","put","put","get","put","put","put","put","get","put","put","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","put","put","get","put","get","put","put","get","get","put","get","put","put","put","put","get","put","put","get","put","get","put","put","put","put","put","put","put","put","get","get","put","put","get","get","get","get","get","put","get","put","put","get","get","put","get","get","put","put","get","put","put","get","put","get","get","get","get","get","put","put","get","get","get","get","put","put","put","put","put","get","get","get","get","get","put","get","get","get","get","put","put","put","get","put","get","get","put","get","put","get","put","get","get","put","get","put","get","put","put","get","get","get","get","get","get","put","put","put","put","put","get","get","get","put","put","put","put","get","put","put","put","get","get","get","put","put","get","put","put","get","put","get","put","put","put","get","put","get","get","put","put","get","put","get","put","put","put","put","put","put","put","put","put","put","put","get","put","put","put","put","get","get","put","get","put","get","put","get","put","get","put","get","get","get","get","put","put","get","put","put","put","get","put","put","put","put","get","get","put","get","get","get","put","put","put","get","get","get","get","put","get","get","put","put","get","put","get","get","put","put","put","get","put","put","put","put","put","get","put","put","get","get","get","put","put","put","put","get","get","put","put","get","put","put","put","get","put","put","get","put","get","get","put","get","get","put","put","put","put","put","put","put","get","get","get","get","put","get","get","put","put","get","put","put","get","put","put","put","put","put","put","put","get","put","get","get","get","get","put","get","get","put","put","get","put","put","get","get","put","put","put","put","put","put","get","get","put","put","get","get","get","put","put","put","get","get","get","put","put","put","put","put","put","put","get","put","put","get","get","put","put","get","get","get","put","put","get","put","get","get","put","put","put","get","put","put","get","get","put","get","put","put","get","put","put","put","get","put","get","put","get","put","get","get","get","get","put","put","put","get","put","put","get","put","get","put","put","put","put","get","get","get","put","put","put","put","put","put","put","get","get","get","get","get","get","get","put","get","get","put","put","put","put","get","put","get","get","get","get","put","get","get","get","put","get","put","put","put","put","put","get","put","put","put","put","get","get","get","get","get","get","get","get","get","get","get","put","get","get","put","get","put","get","get","get","get","put","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","get","get","get","get","put","put","put","put","get","put","get","get","put","put","put","get","get","put","get","put","get","put","put","put","get","put","put","put","put","put","put","get","put","put","put","put","get","get","put","get","get","get","put","get","put","put","put","put","put","put","get","get","get","get","put","put","put","put","put","put","put","get","get","put","put","put","put","get","put","put","put","put","put","put","put","get","get","get","put","put","get","put","put","put","put","put","get","get","put","get","put","get","get","put","put","get","get","get","put","put","get","put","put","put","put","get","put","get","put","get","get","put","put","get","get","get","put","put","get","put","get","put","get","put","get","get","put","put","put","put","get","get","get","put","get","put","get","put","put","put","put","put","get","get","put","put","get","put","put","get","get","get","get","put","put","get","put","get","get","put","put","get","get","put","get","put","get","put","put","put","put","put","get","put","get","get","get","put","put","put","get","put","get","put","put","put","put","put","put","put","get","get","get","put","get","put","get","get","get","get","put","get","put","get","put","put","get","get","put","put","put","put","put","put","get","get","put","put","put","get","put","put","put","put","get","put","put","get","get","put","get","put","put","get","get","put","get","get","get","put","put","put","get","get","put","put","get","get","put","get","get","get","get","put","get","get","get","put","put","put","get","get","put","put","get","put","put","put","get","put","put","put","put","put","get","get","get","get","get","put","get","get","put","get","get","put","put","get","put","put","put","put","put","put","put","get","get","get","get","put","get","get","get","put","get","put","get","get","get","get","get","put","put","get","put","get","put","get","put","put","get","get","put","put","get","get","put","put","put","put","put","get","get","put","put","put","put","put","put","put","get","put","put","put","get","get","get","put","put","put","get","get","put","put","put","get","get","get","put","get","get","put","put","put","get","get","get","put","put","put","put","get","put","put","put","put","get","get","get","put","put","put","put","get","get","get","get","put","put","put","get","put","put","put","put","put","get","get","put","get","put","get","get","get","put","put","get","put","get","get","get","get","put","put","put","put","get","get","put","get","put","get","get","get","put","get","put","put","put","put","get","put","get","put","put","put","get","put","put","put","put","get","put","get","put","put","get","put","get","get","put","get","put","get","get","get","get","get","get","put","put","put","get","get","put","get","get","put","put","get","get","put","get","get","put","put","put","get","put","get","get","put","put","get","get","put","put","get","get","put","put","put","put","get","put","put","put","put","get","put","get","put","put","put","put","get","get","put","get","put","put","get","put","get","get","put","put","put","put","get","get","get","put","put","put","put","put","put","put","get","put","put","put","put","get","put","put","get","put","get","put","get","put","put","get","put","put","put","get","get","put","put","get","put","put","put","get","get","get","get","get","put","put","put","put","get","get","put","put","put","get","get","get","put","get","get","put","put","get","put","put","put","put","put","get","get","get","get","put","get","put","get","put","get","put","get","put","put","put","get","put","get","put","get","put","put","put","put","put","put","get","put","put","get","get","put","put","put","put","get","put","get","get","put","get","get","get","put","put","get","put","put","put","get","put","put","put","put","put","put","get","put","put","put","get","put","put","put","put","get","put","put","get","put","get","get","put","put","get","put","put","put","get","put","get","get","get","put","put","get","get","put","get","get","put","put","put","put","get","put","put","put","get","get","put","get","get","put","get","put","put","put","get","put","get","get","put","get","get","get","get","get","get","get","put","put","put","put","get","get","put","put","get","get","get","put","get","put","put","get","get","put","get","put","get","put","put","put","put","put","get","put","get","get","put","get","put","put","get","get","put","get","get","get","get","get","put","put","get","put","put","put","put","get","get","get","get","get","put","put","get","get","put","get","put","put","get","put","put","get","put","put","get","put","put","get","get","put","put","put","put","get","put","put","get","get","get","put","put","get","get","put","put","get","put","put","put","put","get","put","get","get","put","get","get","put","put","put","get","get","put","put","put","get","get","put","put","put","put","get","get","get","put","put","put","get","put","put","get","put","put","put","put","get","put","get","put","put","put","get","get","get","get","put","put","put","put","put","get","put","put","get","put","get","put","put","get","put","put","get","put","put","get","get","put","get","get","put","get","get","get","put","put","put","put","put","get","get","put","get","put","get","get","get","put","get","put","put","get","put","put","put","put","get","put","get","get","put","put","put","put","put","put","put","put","get","put","put","put","get","put","get","put","put","put","get","get","get","put","put","put","put","put","get","put","get","get","get","put","get","put","get","put","get","put","put","get","get","put","get","get","put","put","put","put","get","put","put","put","get","get","get","put","put","put","get","put","put","put","put","put","put","get","get","get","get","put","put","put","get","put","get","get","put","put","put","get","put","put","put","put","put","put","get","put","put","put","put","get","put","get","put","get","put","put","get","get","get","get","put","put","put","get","put","put","put","put","put","get","put","put","get","put","get","put","get","get","put","get","put","put","get","put","get","put","put","get","put","put","put","put","get","put","get","put","put","put","get","put","put","get","put","put","put","put","get","put","put","get","get","put","put","put","get","get","put","get","put","put","get","get","put","get","put","put","put","put","get","get","get","put","put","get","get","get","put","get","get","put","get","get","get","put","get","get","put","put","get","get","put","put","put","put","put","get","put","get","put","get","get","put","get","put","put","get","put","put","put","put","get","get","get","put","get","put","put","put","put","get","put","put","put","put","put","put","get","put","get","get","get","put","put","put","put","put","put","put","put","put","get","get","put","put","put","put","get","put","put","get","get","put","put","put","put","put","put","put","put","get","put","put","put","get","put","put","put","put","put","get","put","put","get","put","get","put","put","get","get","get","get","put","put","get","put","put","get","get","put","put","get","put","put","put","put","get","put","get","put","put","get","put","put","get","get","put","get","put","put","put","get","put","put","put","get","get","put","put","get","get","get","put","get","get","get","put","get","put","get","put","put","put","put","put","put","get","put","get","get","put","get","put","get","put","get","get","put","put","put","get","put","get","get","put","get","put","get","get","get","get","put","get","get","get","put","get","put","get","put","get","put","put","get","get","get","get","get","get","get","get","get","put","put","put","get","put","put","put","get","put","get","get","put","get","put","put","put","get","put","get","put","put","put","put","get","get","get","put","get","put","put","put","put","put","put","put","put","put","put","put","get","put","put","put","get","get","put","get","get","put","get","get","put","put","get","get","put","get","put","put","put","put","put","put","put","put","put","put","put","get","get","put","get","put","get","put","put","put","put","get","get","put","put","put","put","put","get","get","get","put","put","put","put","put","get","get","get","get","put","get","put","put","get","get","get","get","put","put","get","put","put","put","get","get","put","put","put","get","get","put","get","put","get","put","put","get","get","get","put","get","put","put","get","put","get","get","put","get","get","put","put","put","put","put","put","put","put","get","put","get","put","put","put","get","get","put","put","put","put","put","put","get","put","get","get","put","put","put","put","get","get","get","get","put","put","put","put","get","put","put","put","put","put","put","put","get","put","get","put","put","put","put","get","put","get","get","put","get","get","get","get","get","get","put","put","get","get","get","get","get","get","put","get","get","put","put","get","put","put","get","get","put","get","get","put","get","put","put","get","put","get","put","put","put","get","get","get","put","get","put","get","get","put","get","get","get","get","get","put","put","get","get","get","put","put","get","get","get","put","get","put","put","put","put","put","put","put","get","get","put","put","put","put","put","put","put","get","put","put","get","get","put","get","get","get","put","get","put","put","put","put","put","get","get","put","get","put","get","put","put","get","get","get","put","put","get","put","get","put","get","get","put","put","get","put","get","get","put","get","put","get","put","put","get","put","put","get","get","put","get","get","get","put","put","put","put","put","put","put","put","get","put","get","get","get","put","put","get","put","put","put","put","get","put","get","put","put","get","put","put","put","put","put","get","put","get","get","put","get","get","put","get","get","put","put","put","get","get","put","put","get","put","put","get","put","get","get","get","get","put","put","put","put","put","get","put","put","get","put","put","put","put","put","get","get","get","put","put","put","get","put","put","put","put","put","put","put","get","put","get","get","put","put","get","get","get","put","get","get","get","put","get","get","put","put","put","get","put","put","put","put","put","put","get","put","put","get","get","put","put","put","put","get","get","get","get","get","get","get","get","put","put","get","get","put","get","put","get","get","get","put","get","put","put","put","put","put","put","put","put","get","put","get","put","put","get","get","put","get","put","get","put","get","put","get","put","put","put","put","get","put","get","get","put","put","put","put","get","put","get","put","put","get","put","put","get","put","get","put","put","get","put","put","put","get","put","put","put","put","get","get","put","put","put","get","put","put","put","put","get","put","put","get","get","get","get","put","put","get","put","put","put","put","put","put","put","put","get","put","put","get","put","get","get","put","get","put","get","put","get","get","put","get","get","put","put","get","put","put","put","get","get","get","put","put","put","get","put","get","put","get","put","put","get","put","get","get","put","put","get","get","get","put","get","put","put","get","put","get","get","get","put","get","put","get","get","put","put","put","get","put","get","get","put","get","get","put","put","put","get","put","put","put","put","get","put","put","get","put","get","get","put","get","get","put","get","put","put","put","get","put","put","get","put","put","put","put","put","get","put","get","put","put","put","put","get","get","get","put","get","get","put","put","get","put","get","put","get","get","put","get","get","get","put","put","put","get","get","put","get","put","get","get","put","put","get","get","get","put","get","put","put","put","put","put","put","put","put","put","put","put","get","get","get","put","get","put","put","put","put","put","put","get","put","put","put","get","get","put","get","get","get","put","get","get","put","put","get","put","put","put","put","put","put","put","get","get","put","get","get","get","get","get","put","get","put","get","get","get","put","put","put","get","get","put","put","get","get","put","put","put","get","put","put","get","put","put","put","put","put","put","get","get","put","put","put","get","put","put","put","put","get","put","put","put","get","get","put","put","get","put","get","put","put","put","put","put","put","put","put","put","get","put","put","put","put","put","get","put","put","put","get","put","put","put","put","put","get","put","put","get","put","get","put","get","put","get","get","put","get","put","put","put","put","get","get","get","put","put","get","put","get","put","get","put","put","get","get","get","get","put","put","get","put","put","put","get","put","put","put","put","put","put","get","get","put","get","get","put","get","get","get","get","get","put","get","put","put","get","get","put","put","get","put","get","get","get","get","put","put","put","put","get","put","put","put","put","put","put","put","put","put","get","get","put","put","put","put","get","put","get","put","put","put","put","get","put","put","get","get","put","get","get","put","get","put","get","get","put","put","get","put","put","get","put","get","get","get","get","put","get","get","put","put","put","put","put","get","put","put","get","put","put","put","get","put","put","get","put","put","put","put","put","put","put","get","get","get","put","put","put","put","put","get","put","get","get","put","put","get","put","put","put","put","get","get","put","put","put","get","put","put","put","get","get","put","get","put","put","put","put","put","get","get","get","put","put","get","get","get","put","put","put","get","put","put","get","put","put","put","put","put","put","get","put","get","get","put","put","put","put","get","put","get","put","get","get","put","put","get","get","put","put","put","put","get","put","put","get","get","get","get","get","get","get","put","put","put","put","get","get","get","get","put","get","get","put","put","get","get","put","get","put","put","put","put","get","put","put","put","put","put","put","get","get","put","put","get","get","get","put","get","get","put","get","get","get","put","put","get","get","put","put","put","get","get","put","get","put","get","get","put","put","get","get","put","put","put","get","get","put","get","put","put","put","get","put","put","put","put","put","get","put","put","get","put","get","get","get","get","put","put","put","put","put","get","put","put","put","put","get","get","put","get","put","put","get","put","get","get","get","put","put","get","get","put","put","get","put","get","put","get","get","get","put","get","get","put","get","put","put","get","get","put","get","put","get","get","get","put","get","put","put","put","get","put","put","put","get","get","get","get","get","get","put","put","get","put","get","put","get","put","get","get","put","put","get","put","put","get","put","put","put","put","get","put","put","put","put","put","put","get","get","get","get","put","put","get","get","put","get","get","put","put","get","put","put","get","put","get","get","put","get","get","put","get","put","put","get","get","get","get","put","put","put","put","get","get","put","get","put","get","get","put","put","get","put","put","get","put","get","get","get","put","get","get","get","get","put","get","get","put","put","get","put","get","put","put","put","get","get","put","get","get","put","get","put","get","put","put","get","put","put","put","put","put","get","get","put","get","get","put","put","put","get","put","put","put","get","put","put","put","put","put","put","put","get","put","put","put","put","get","get","put","put","put","put","put","get","get","get","put","get","put","get","get","put","put","put","get","put","put","get","put","put","get","put","get","put","put","put","put","put","get","put","put","get","put","put","put","put","put","put","put","get","put","put","get","put","get","get","put","get","get","get","put","put","get","put","get","put","put","get","get","put","put","put","put","put","get","put","get","get","get","put","get","put","put","put","put","get","get","get","put","put","put","get","put","put","put","get","put","get","put","put","put","put","get","get","get","put","get","get","get","put","put","get","get","get","get","get","get","get","put","get","get","get","get","put","put","put","put","get","put","get","get","put","get","put","put","get","put","get","get","get","get","put","get","get","get","put","get","put","put","get","get","put","get","put","get","put","put","put","get","put","put","put","put","get","get","get","get","get","put","put","put","put","put","put","put","get","put","put","put","get","put","put","put","put","put","put","put","put","put","get","get","get","put","get","put","put","put","get","put","get","put","get","put","get","put","put","get","get","put","get","put","put","put","put","put","get","get","get","put","get","get","put","get","get","get","get","put","get","put","put","put","put","put","get","get","get","put","get","get","put","put","get","put","get","get","put","put","put","put","put","get","put","get","get","put","put","put","put","get","put","put","put","put","put","get","put","put","put","get","put","put","get","get","put","put","put","get","get","put","get","get","put","get","put","put","get","get","get","get","put","put","get","put","get","put","put","put","put","put","put","get","put","put","put","get","put","get","put","get","get","get","put","get","put","get","put","get","put","put","put","get","put","get","put","put","get","put","get","put","put","get","put","get","put","get","put","get","put","put","get","put","put","get","put","put","get","put","put","put","put","get","get","put","put","put","put","put","get","get","put","put","get","put","get","put","put","put","put","get","get","put","put","get","put","put","get","get","put","get","put","get","get","put","put","get","get","put","put","put","get","put","put","put","get","get","put","put","get","put","get","put","get","get","put","put","get","get","get","get","put","put","put","get","get","put","put","get","get","get","put","get","put","put","put","put","get","get","put","put","put","put","put","get","put","get","put","put","put","get","put","put","get","put","put","put","put","put","get","get","get","put","put","put","put","put","get","get","get","get","get","get","get","get","put","put","get","put","get","put","put","put","get","put","put","put","put","put","put","get","get","put","put","get","put","get","put","get","put","get","put","get","get","put","put","get","put","put","put","put","put","put","put","put","get","get","get","put","put","get","put","get","put","get","get","put","put","put","put","get","put","put","put","get","put","get","get","put","get","put","put","put","put","get","get","get","get","put","put","get","get","put","get","put","get","put","put","get","put","put","get","get","put","put","get","get","get","put","get","get","put","put","get","put","get","put","get","put","put","put","get","put","get","put","get","get","get","get","get","put","get","put","get","put","put","put","put","put","get","put","put","get","get","put","put","put","get","get","get","put","put","put","get","put","get","put","get","get","put","get","put","put","put","get","put","get","put","put","get","put","put","get","get","put","get","put","put","put","get","put","put","get","get","put","put","put","put","get","put","put","get","put","get","put","get","put","get","put","put","put","get","put","put","get","put","put","get","get","get","put","put","get","get","put","put","get","put","put","put","put","get","get","put","put","get","get","put","put","put","get","get","put","get","put","get","put","get","put","put","put","get","get","put","put","put","get","get","put","put","put","put","get","put","get","get","put","put","get","put","put","get","put","get","get","put","get","get","get","put","get","put","put","put","get","get","get","put","get","put","put","put","get","put","put","get","get","get","put","put","put","get","put","put","get","get","get","put","put","put","get","put","put","get","get","get","get","put","put","put","get","put","get","get","put","get","put","put","put","put","put","get","get","put","put","get","get","put","put","get","get","put","put","put","get","put","get","get","put","put","put","get","get","put","put","put","put","get","put","get","put","put","put","get","put","get","put","put","get","put","put","put","put","put","get","get","get","get","put","put","put","put","put","get","put","put","put","get","get","put","get","put","put","get","put","put","get","put","get","get","put","get","get","put","get","put","put","put","put","get","get","put","get","put","get","get","get","get","put","get","get","get","get","put","put","put","get","get","get","put","put","put","put","put","get","get","put","put","get","put","get","put","put","get","get","get","put","put","get","get","get","put","put","put","put","get","put","get","put","put","put","get","put","get","get","get","get","get","put","put","put","put","get","put","put","get","put","get","get","get","put","put","put","get","get","put","get","get","put","put","put","get","put","put","put","put","put","get","get","get","get","get","get","put","get","put","put","put","put","get","put","put","put","get","get","get","get","put","put","get","put","get","get","put","put","get","put","get","get","put","put","get","get","get","get","put","put","get","put","get","put","put","get","get","put","put","put","put","get","get","get","put","put","put","put","put","put","put","get","put","put","get","get","put","get","get","put","put","put","put","put","get","put","get","get","put","get","get","get","put","get","put","put","get","put","put","put","get","put","put","get","put","put","put","put","put","get","put","put","get","put","put","get","put","put","get","put","put","get","get","get","put","put","get","get","put","put","get","put","put","get","get","get","get","put","get","get","get","get","get","get","put","get","put","get","put","get","put","put","put","put","get","put","put","get","put","get","get","get","get","put","put","get","put","get","get","put","put","put","put","get","put","get","get","get","get","put","put","put","put","put","put","put","get","put","put","get","get","put","put","get","put","get","get","get","put","get","put","put","put","get","put","put","put","put","put","put","put","get","get","put","get","put","put","get","get","get","get","put","put","put","put","get","put","get","get","put","put","put","put","get","put","put","put","put","put","put","get","get","get","put","put","get","put","put","get","get","get","put","put","get","put","put","put","get","put","put","get","put","put","put","get","get","get","put","put","get","get","put","get","put","put","get","put","put","put","put","put","put","get","get","put","get","put","put","get","get","get","put","get","get","put","put","put","get","put","get","put","put","get","put","put","get","put","put","get","put","get","put","get","put","put","put","put","put","put","get","get","get","put","put","put","get","get","put","put","get","put","put","get","get","get","get","put","put","put","put","get","get","put","get","get","put","get","put","put","get","put","get","put","get","get","get","put","put","get","get","get","get","get","put","get","get","put","get","put","put","put","put","put","get","get","get","put","get","put","put","get","get","get","put","put","get","put","put","get","get","get","put","get","get","put","get","put","get","put","get","get","put","put","get","get","put","put","get","get","get","put","get","get","get","put","put","get","get","put","put","get","put","put","put","get","put","get","put","put","get","put","put","put","put","put","get","put","put","get","put","put","get","put","put","put","put","put","get","put","put","put","put","put","get","put","get","get","put","get","get","get","put","put","put","get","put","get","get","get","get","put","put","get","get","put","put","put","put","get","put","put","put","put","get","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","get","get","put","get","put","put","put","put","put","get","get","put","put","get","get","get","put","get","put","get","put","get","put","put","put","put","put","get","get","put","get","get","put","put","put","put","put","get","get","get","put","put","put","put","put","get","put","get","put","get","put","put","put","get","put","put","put","put","get","get","put","put","put","get","put","get","put","get","get","get","put","get","put","put","get","put","put","get","get","put","put","get","put","put","put","put","get","get","get","get","put","get","put","put","get","put","get","get","put","put","get","put","put","put","get","put","put","get","get","put","put","get","put","get","put","get","get","put","put","get","get","get","get","put","put","get","put","put","put","get","get","put","get","get","put","get","get","get","get","put","get","put","get","get","get","put","put","get","get","put","put","put","put","get","put","put","put","get","get","get","put","get","get","get","put","put","put","get","get","get","get","put","get","put","get","get","get","put","put","get","put","put","get","put","put","put","put","get","put","put","put","put","put","put","put","put","put","put","get","get","get","get","get","put","get","put","get","get","get","put","get","put","get","get","put","put","put","put","put","get","get","put","put","get","put","put","get","put","put","get","put","get","get","put","get","put","put","put","put","put","get","get","get","get","put","get","get","get","put","put","put","put","get","get","get","put","get","put","put","get","put","get","put","put","get","get","put","get","put","get","put","put","put","put","put","put","put","get","put","put","get","get","put","get","put","put","get","put","put","get","put","put","put","put","get","put","get","get","get","put","get","get","put","put","put","get","get","get","put","put","get","get","get","put","put","put","put","put","get","put","get","get","get","get","get","get","put","get","get","get","put","put","put","put","put","put","get","get","put","get","put","put","put","put","put","put","put","get","get","put","put","get","get","get","put","put","put","get","get","get","get","put","put","put","put","get","put","put","put","get","put","get","get","put","get","put","get","put","put","get","get","put","put","put","get","get","get","put","get","put","put","get","put","get","get","get","put","put","put","put","put","get","get","put","get","get","put","get","get","get","put","put","put","get","put","get","get","get","get","get","get","put","get","put","put","get","get","get","get","put","get","get","get","get","put","put","put","put","put","put","put","get","put","get","put","get","put","get","get","get","put","put","put","put","put","put","put","get","put","put","put","get","put","get","get","put","put","get","put","get","get","get","put","put","put","get","put","put","put","get","put","put","put","put","put","put","get","get","get","put","put","put","put","put","get","get","get","put","put","put","put","put","put","get","get","put","put","get","put","get","put","put","put","put","put","get","get","put","put","put","put","put","get","put","get","put","put","get","get","get","get","put","put","get","put","put","get","put","get","get","get","put","get","put","put","put","get","get","put","get","get","get","put","put","get","put","put","put","put","get","put","put","get","put","put","get","get","get","get","put","put","put","get","get","get","put","put","put","get","put","put","put","get","get","put","get","put","get","put","put","put","put","get","put","put","put","put","get","get","put","put","get","get","get","get","get","put","put","put","put","put","put","put","get","put","get","get","put","put","put","put","get","put","put","get","get","put","get","get","get","get","get","put","get","get","get","put","put","put","put","get","get","get","get","get","get","put","get","put","get","get","get","put","get","put","get","get","put","get","put","put","put","get","put","put","put","put","put","get","get","get","put","get","get","get","put","get","put","put","get","get","get","put","get","get","get","get","get","put","get","get","put","put","put","put","get","put","get","put","get","get","get","put","put","put","put","put","put","get","get","get","put","get","put","put","put","put","put","get","get","put","put","put","get","get","get","put","put","get","put","get","put","put","put","put","get","put","put","put","put","put","put","put","put","put","put","get","get","put","get","put","put","put","get","get","get","put","put","put","get","put","put","put","put","put","get","get","put","get","get","get","put","get","put","put","put","get","get","get","get","put","get","put","put","put","put","put","get","get","put","put","put","get","put","get","get","get","put","put","put","get","get","put","get","put","get","put","put","put","put","get","put","get","get","put","get","get","put","put","get","put","get","put","put","get","get","get","get","get","get","put","put","put","put","get","put","put","get","put","get","put","put","put","get","put","put","get","get","get","put","get","put","put","put","put","get","put","put","put","get","put","put","put","put","put","put","put","get","put","put","put","put","put","get","get","get","put","put","get","put","put","put","get","put","put","put","get","put","get","get","get","put","put","put","put","put","put","put","put","put","put","get","get","get","get","put","put","put","put","get","put","get","put","get","get","get","get","get","get","put","get","put","put","put","put","put","get","get","put","put","get","put","put","put","put","get","put","get","put","get","get","put","get","put","get","put","get","put","put","put","put","put","get","put","put","get","put","put","get","put","put","put","put","get","get","put","put","get","get","get","put","get","get","get","put","get","put","get","get","put","put","put","put","put","put","put","put","get","put","put","put","put","put","put","put","put","put","get","get","put","put","get","put","put","get","put","put","get","get","put","get","get","put","put","get","get","get","get","get","get","get","get","put","get","put","get","get","put","get","put","put","get","get","put","get","get","get","get","get","put","put","put","put","put","get","get","put","get","put","get","put","put","put","put","get","put","get","put","get","put","put","put","get","put","put","put","put","get","put","put","get","put","put","put","get","put","get","get","get","put","get","put","get","get","get","put","put","put","get","put","get","put","put","put","put","get","put","put","get","get","put","put","put","get","get","put","get","get","put","put","put","put","get","get","put","put","put","put","put","get","get","get","put","put","get","put","get","put","put","get","put","put","get","get","put","get","get","put","put","get","put","put","put","get","get","get","put","put","put","put","get","put","get","get","put","put","get","put","put","get","get","get","put","put","put","put","get","put","get","put","put","put","get","get","put","put","put","get","put","get","put","get","put","get","put","put","get","put","get","put","put","put","get","put","get","get","put","put","put","get","get","put","put","get","get","get","put","put","get","get","put","get","get","get","put","put","put","put","put","put","put","put","put","put","put","put","put","put","put","put","get","put","get","put","get","get","put","get","get","get","put","put","get","get","get","get","put","get","put","put","put","get","put","get","get","get","put","get","get","put","get","put","put","get","put","put","get","get","get","get","put","put","put","put","put","put","put","put","put","put","get","put","get","get","put","put","get","get","put","get","get","put","put","put","get","put","put","get","put","get","put","put","put","get","put","get","put","get","put","put","put","get","get","put","put","put","get","get","get","get","put","put","put","get","put","get","put","put","put","get","put","put","get","put","put","put","get","put","put","put","put","put","put","get","get","get","put","put","get","put","get","get","get","get","put","put","put","get","get","get","get","put","get","put","get","put","get","get","put","get","put","put","put","get","put","get","put","put","get","put","get","get","put","put","get","put","put","get","get","get","get","get","get","get","get","put","put","get","get","get","get","put","put","get","put","put","put","put","get","put","put","get","get","put","get","get","put","put","get","get","put","get","put","get","get","put","put","put","get","put","put","put","put","get","put","put","get","get","get","get","get","put","get","get","get","put","put","put","put","put","put","put","get","put","put","get","put","put","put","put","put","put","get","put","put","get","get","get","put","put","get","get","put","get","get","put","get","get","put","put","get","put","put","put","get","get","get","put","get","get","put","put","get","get","put","put","put","put","put","put","put","put","get","put","put","get","get","put","put","put","get","put","get","put","get","get","put","get","get","put","get","put","get","put","put","put","get","get","get","put","get","put","get","get","put","get","put","put","put","get","put","put","put","put","put","get","get","put","put","get","put","put","put","put","get","get","put","get","put","put","get","get","put","put","put","get","get","get","get","get","put","put","put","get","put","get","get","get","get","get","put","get","put","get","get","put","put","put","get","put","put","put","get","put","get","get","get","get","put","get","get","get","put","get","put","put","get","put","put","put","put","get","put","get","put","put","put","put","get","put","put","put","get","get","put","put","get","put","put","put","put","put","put","put","put","get","put","get","put","put","put","get","put","put","get","get","get","put","put","put","get","get","put","get","put","put","get","get","put","get","put","get","get","put","get","get","put","put","put","put","put","put","get","put","put","get","get","put","put","put","put","put","get","put","get","put","get","put","put","put","put","put","get","put","put","put","put","get","put","get","put","put","put","put","put","get","get","get","put","get","put","put","put","put","put","put","get","put","get","put","get","put","put","put","get","get","put","get","get","put","put","get","get","put","put","get","put","put","put","get","put","put","put","get","put","get","get","put","put","put","get","put","get","put","get","get","put","put","put","get","get","put","get","put","put","put","get","put","put","put","put","put","put","put","put","get","get","get","get","put","get","put","put","put","get","put","put","get","put","put","put","get","get","get","get","put","get","get","put","get","put","put","put","put","put","get","put","get","put","get","put","get","put","put","put","put","put","put","put","put","put","put","put","put","get","put","get","put","put","get","put","put","put","get","put","get","get","put","put","put","get","put","put","get","put","put","put","put","put","put","get","get","get","get","put","get","get","put","get","get","get","get","put","get","put","put","put","get","get","get","get","put","put","put","get","put","get","put","put","get","put","put","put","get","get","get","get","get","put","put","get","put","put","get","put","put","get","put","put","put","get","get","get","put","put","get","put","get","put","get","put","put","get","get","put","put","put","get","put","get","put","get","get","put","put","put","get","get","put","put","put","get","put","put","put","put","put","put","get","put","put","get","get","put","put","put","get","put","put","get","put","get","get","get","put","get","put","put","put","put","put","get","get","put","put","get","put","put","put","put","get","get","put","get","get","put","get","put","put","put","get","get","put","get","get","get","put","put","get","put","get","get","put","put","get","put","put","put","put","put","get","put","get","put","get","put","put","put","get","put","put","get","put","put","get","put","put","get","get","put","put","get","put","put","put","get","put","get","put","get","get","put","put","put","put","put","put","put","put","put","get","put","get","get","put","put","put","get","put","get","get","get","put","put","put","get","put","get","put","put","put","put","get","put","get","get","put","put","put","get","get","put","get","get","put","put","put","get","put","get","get","get","put","put","put","put","get","put","get","put","put","get","get","put","put","get","put","put","get","put","put","get","put","put","get","get","get","get","get","put","put","put","put","get","put","put","put","put","put","get","get","put","get","get","get","put","put","put","put","get","put","get","get","get","put","put","put","put","get","put","put","put","get","put","put","put","put","put","get","put","get","put","put","get","get","put","put","get","put","put","put","get","get","get","put","get","get","get","put","put","get","put","get","put","put","put","put","get","put","get","put","get","put","put","get","put","get","put","get","get","put","put","put","put","put","get","put","put","get","get","put","put","put","put","put","get","get","get","get","put","put","get","put","get","put","put","get","put","get","put","put","put","get","put","put","put","put","get","put","get","put","get","put","put","get","put","put","get","put","put","get","get","put","put","get","get","get","put","put","put","get","put","put","get","put","put","put","get","get","get","put","put","get","get","put","put","put","put","get","get","get","get","get","put","put","get","put","get","put","get","put","put","put","put","put","get","get","get","get","put","put","put","put","put","put","get","put","get","put","put","get","get","get","get","get","get","get","put","put","put","put","get","put","put","put","put","put","get","get","put","put","put","get","put","get","get","put","get","put","put","put","get","get","put","put","put","put","put","get","get","get","put","get","get","get","put","put","put","put","put","get","put","get","get","put","get","get","get","put","put","put","put","put","get","get","put","put","get","put","put","get","get","get","get","put","put","put","put","put","get","get","put","put","put","get","put","get","get","get","put","get","get","put","get","put","get","get","get","get","put","put","put","get","get","put","get","put","put","get","put","get","get","put","put","put","get","get","put","get","put","get","get","put","get","get","put","put","put","put","get","put","put","get","put","get","get","put","get","get","get","put","put","put","get","put","get","get","get","get","put","put","get","put","put","put","put","put","get","put","put","get","put","get","put","put","put","put","put","put","put","get","put","put","put","get","get","put","put","get","put","put","put","get","get","get","get","get","get","put","put","put","get","put","put","put","put","put","get","put","put","put","get","put","get","put","get","put","put","put","put","get","put","put","put","get","put","get","get","put","put","put","put","put","get","get","put","put","put","get","get","get","get","get","get","get","get","get","get","get","get","get","get","put","get","put","get","put","put","put","put","put","put","put","get","put","put","get","put","get","put","get","get","get","get","get","put","put","get","put","get","put","put","get","put","put","get","put","get","get","get","put","put","put","get","put","put","put","put","get","put","put","get","put","get","put","get","put","get","get","put","get","put","put","get","put","put","get","put","get","put","get","put","put","put","get","get","put","put","put","get","put","get","put","put","put","get","get","put","get","put","put","get","get","get","put","put","put","put","put","put","get","get","put","get","get","get","put","get","put","get","put","put","get","put","put","put","get","put","put","put","put","put","put","put","put","put","get","get","put","get","put","get","put","put","put","put","get","get","put","put","put","put","get","get","put","put","put","get","put","put","get","put","put","put","put","get","put","get","put","get","put","put","get","put","put","get","put","get","get","put","put","put","get","get","put","get","put","get","get","put","put","get","put","put","put","put","get","put","put","put","get","put","put","put","get","get","put","get","put","get","get","get","put","get","put","get","get","put","get","get","put","get","get","get","put","put","get","put","put","get","get","get","put","put","get","put","put","put","get","put","get","put","put","get","put","get","put","get","put","put","get","put","get","put","put","put","put","put","put","put","get","put","put","get","get","get","get","put","put","put","put","get","put","put","get","put","get","get","put","put","get","put","get","put","put","get","put","put","get","put","put","get","get","get","put","get","put","put","put","put","put","get","get","put","get","put","put","put","put","put","put","put","get","put","get","put","put","get","get","get","put","put","get","put","put","put","put","put","put","put","put","put","get","put","get","get","get","get","get","put","get","put","get","put","put","put","put","put","put","get","get","put","get","get","put","get","put","put","put","put","put","get","get","put","put","put","get","put","put","put","put","put","put","get","put","get","get","get","get","get","get","get","get","get","get","get","get","get","get","put","put","put","put","put","get","put","put","put","put","get","put","put","put","put","put","put","get","get","put","get","put","put","put","put","put","put","put","put","put","put","get","get","put","put","get","put","put","put","put","put","put","get","get","get","put","put","put","put","put","put","get","put","put","put","put","get","get","get","put","get","get","get","get","put","get","get","get","put","get","get","get","put","put","get","put","get","put","put","get","get","get","get","put","put","get","put","put","get","put","get","get","put","put","put","put","put","get","get","put","put","get","put","get","put","put","get","put","get","get","put","get","put","put","get","put","put","put","get","put","put","get","get","put","get","put","get","get","get","get","get","get","get","put","put","get","put","put","put","get","put","get","put","put","put","get","put","get","get","put","put","put","get","put","put","put","put","put","get","put","put","get","put","put","put","put","put","put","get","get","put","get","put","put","put","get","get","put","get","get","put","put","get","put","put","get","get","get","put","put","put","put","get","get","put","put","put","get","put","put","put","put","put","put","get","put","put","get","get","get","put","get","put","put","get","put","get","get","get","get","put","get","put","get","get","put","put","put","get","put","get","put","put","put","get","put","put","get","put","get","put","put","get","get","get","put","put","put","put","put","put","put","put","put","put","get","get","get","put","put","get","get","put","put","get","get","get","put","put","put","get","get","get","get","put","put","put","put","get","get","put","get","put","get","put","put","get","put","put","put","put","put","put","put","put","get","put","get","get","get","get","put","put","put","put","put","get","get","put","put","get","put","put","put","put","get","put","get","put","get","get","put","put","put","get","get","get","get","get","put","get","put","put","get","get","put","get","get","put","put","put","put","get","put","put","get","put","put","put","put","put","get","get","get","put","put","get","get","put","put","put","put","put","put","get","get","get","put","get","get","put","get","put","put","get","put","put","get","get","get","get","get","get","put","put","put","get","put","put","put","get","put","get","put","put","put","get","put","put","get","put","put","get","get","put","put","put","get","put","get","get","get","put","get","get","put","get","get","get","get","get","put","put","put","put","put","get","get","get","put","put","put","get","get","get","put","put","put","put","get","get","get","get","put","put","get","get","get","get","put","put","get","put","get","get","get","put","get","get","get","put","put","put","put","get","put","get","put","get","put","put","put","get","put","put","put","put","get","put","get","put","put","get","put","put","put","get","get","put","put","put","put","put","put","get","put","put","get","put","get","get","get","get","put","put","put","put","get","put","get","put","get","put","put","put","put","get","get","put","put","put","put","get","put","get","put","put","put","put","put","put","put","put","put","get","put","get","get","put","put","put","put","get","get","get","put","put","put","put","put","put","put","get","get","get","put","put","put","get","put","get","put","put","get","put","put","put","get","put","put","get","put","get","get","get","put","get","get","put","get","put","put","get","put","put","put","put","get","get","put","put","put","put","put","get","put","put","get","put","get","get","get","get","get","get","put","put","get","put","put","put","put","get","get","put","put","put","get","get","get","get","get","get","get","get","get","put","put","get","put","put","get","put","put","put","get","get","put","get","put","put","put","get","get","put","get","get","get","put","get","put","get","get","put","put","get","get","put","get","put","put","put","put","get","get","put","get","get","get","get","put","put","get","get","get","put","put","put","put","get","get","put","put","get","put","get","get","get","put","put","get","get","get","get","put","get","get","put","put","put","put","put","get","get","put","put","put","put","put","put","put","get","get","put","get","get","get","put","put","put","put","get","get","put","get","put","get","put","get","get","get","get","put","get","put","get","put","put","put","get","put","get","put","get","put","put","get","get","get","put","put","get","put","get","get","put","get","put","get","put","put","put","put","put","put","put","put","get","put","put","put","get","put","put","get","put","put","put","put","get","get","put","get","get","put","put","get","get","get","get","get","get","get","put","put","get","put","get","get","get","put","get","get","get","get","get","get","get","put","get","put","put","get","put","put","get","get","get","get","put","put","put","put","get","put","get","get","put","put","put","put","get","put","put","get","put","put","put","get","put","get","put","get","put","put","put","put","put","get","get","get","put","get","put","put","get","put","put","put","put","get","get","put","put","put","put","get","put","get","get","put","get","put","get","get","put","put","put","get","put","put","put","get","put","put","put","put","put","get","get","get","get","get","put","put","get","get","put","get","get","put","put","get","put","get","put","get","put","get","get","put","get","put","put","put","put","get","put","get","put","put","put","get","put","put","put","put","get","get","put","put","put","put","get","put","put","put","get","get","put","get","get","get","get","put","put","put","put","put","put","put","get","put","put","put","put","put","get","put","put","get","get","get","get","put","get","get","get","get","put","get","put","put","put","put","put","get","get","get","put","get","get","get","put","get","put","get","get","put","put","put","get","get","put","put","get","put","put","get","get","get","get","get","get","get","put","put","get","get","put","put","get","get","get","put","put","put","put","put","get","get","put","put","put","get","put","put","get","put","get","get","put","put","get","put","get","get","put","get","get","put","put","put","put","get","get","get","get","get","put","get","get","put","get","put","get","get","put","get","get","get","get","get","put","get","get","put","put","put","put","put","get","put","put","get","put","put","put","put","put","put","put","put","put","put","put","put","put","get","put","get","get","get","get","put","put","put","put","get","put","get","put","get","put","put","put","put","put","put","get","put","put","get","get","put","get","put","put","put","put","put","put","get","get","put","put","put","get","put","get","put","put","put","put","put","put","get","get","get","put","put","put","get","get","get","get","put","put","put","put","put","get","put","put","put","put","get","put","put","get","put","put","get","get","put","get","put","get","put","get","get","put","get","get","put","get","get","put","put","put","get","get","put","put","get","get","put","get","put","put","put","put","put","get","put","put","put","put","get","put","get","put","put","get","get","get","get","get","get","put","get","get","put","put","get","get","get","put","get","put","put","put","put","get","get","get","put","get","get","put","get","get","put","put","put","put","put","get","get","put","put","put","put","put","put","put","put","put","get","get","put","put","put","get","put","put","put","get","get","put","get","put","get","put","put","put","put","get","get","put","put","put","get","put","get","get","get","put","get","get","put","get","put","get","put","get","put","put","put","put","put","get","put","put","get","put","get","get","put","put","put","put","get","put","get","get","get","put","get","get","put","get","put","put","put","put","put","get","put","put","put","put","put","put","put","get","get","get","put","put","put","get","get","put","get","put","put","put","put","put","put","put","put","get","put","put","get","put","get","put","put","get","get","get","put","get","put","get","put","put","put","put","put","put","get","put","get","get","put","put","get","get","put","put","get","put","put","put","get","get","get","put","put","get","get","put","put","get","put","get","get","get","put","put","get","put","get","put","put","get","get","get","put","put","get","put","get","put","put","put","put","put","put","put","put","get","get","put","put","put","get","put","get","get","get","put","put","get","put","put","put","get","put","get","get","put","put","put","put","put","get","get","get","get","get","put","put","get","get","put","put","put","put","get","get","get","put","get","put","get","put","put","put","put","put","put","put","put","get","put","get","put","put","put","put","put","get","get","put","put","put","put","put","put","put","get","get","put","get","get","get","put","put","put","get","get","get","get","put","put","get","put","get","get","put","put","put","get","put","get","put","get","put","get","put","put","get","get","get","put","get","put","put","get","get","get"] +args = [[1101],[253,668],[202,206],[1231,3177],[465],[1333],[651,3249],[453,2472],[1050],[145,881],[1256,1320],[342,1528],[37],[280,2814],[11],[878,903],[1278,2808],[942,3238],[397,57],[89,305],[998,1703],[1386,1660],[250,2904],[865],[21,639],[1153,751],[682,3156],[1246,2932],[1347,2057],[955,1432],[1092,3132],[559,340],[998,122],[94,2562],[194,1349],[643,1808],[905,2449],[1361,607],[1374,715],[1052],[535],[1122],[88,137],[732],[81,2229],[219,3241],[501],[1128],[1006,2187],[418,1497],[653],[170],[39,1072],[1080],[1274],[274,2],[1289],[1086,2655],[647,1951],[1216,2505],[1119],[724],[1279],[534,955],[792,1351],[711,1345],[719],[939,2615],[695,2471],[3,962],[694],[399,1117],[837,3074],[937,252],[499,2517],[172],[366],[166],[591,3022],[1384,569],[1181,1727],[387],[832,1386],[1013],[994],[496,1320],[208],[1186,2479],[1092],[1147],[313,3153],[710],[716],[1353],[109],[1220,1526],[1269,2918],[768,253],[1080,385],[623],[465],[1431,2720],[421,934],[943,1794],[577],[737],[213],[73,2109],[1135,2295],[899,2812],[544],[833,1738],[1007,2741],[115],[787,1541],[838,175],[808],[76],[1258],[129],[792,1352],[401],[1206],[1265,3261],[1234,786],[1050],[994],[644,1645],[320,1015],[449,1254],[525,880],[499,2711],[1140,579],[624,2493],[547,2502],[1296,1389],[465,2699],[737],[112],[151,2352],[525,533],[732],[574,2091],[1124,2645],[766],[79],[877],[873,2238],[1250],[1109,453],[796,1600],[1095],[540,1800],[1429],[409,1288],[959,1555],[401,1945],[678,1850],[674,2882],[64],[1245],[1201],[184,2814],[649],[699,2440],[767,492],[211,1386],[1247,1951],[921,904],[1185,2528],[727,450],[583,1540],[207],[1205],[745],[252,1765],[707,242],[64,1462],[957],[1071,2116],[1319,1053],[236],[798,2781],[570],[295],[1340,2681],[136],[168,1650],[1128,3109],[688],[1192,784],[401,1047],[797,2219],[233],[1186],[91],[512,1653],[1288],[1424],[321,2992],[257,2032],[787],[332,1587],[510,700],[896,1710],[850],[85,621],[732],[113],[754,2951],[134,902],[1250],[927,1244],[1248,40],[441,1078],[1304,2908],[1286],[79],[220,2207],[47,528],[835],[1387,1855],[736,704],[669,1932],[208],[3,866],[1363],[1213],[213],[1421,1173],[1423,932],[1427,664],[1143,2247],[362,1730],[9,1226],[898],[115,3264],[1172,1706],[39,185],[784,728],[1150],[926,298],[58,583],[1242],[1115],[363,2338],[1241,2596],[1148],[198],[742,2135],[430,1089],[1192,3104],[583,419],[1101,1930],[617,1926],[1286],[324,1488],[1321],[76,2881],[1243,2711],[1415],[467],[103],[687,1236],[1198],[1346],[760],[945,554],[1195,1002],[212,1565],[506,2242],[534,2949],[63],[845],[899],[754,876],[1076,2403],[677,3117],[1168],[1274,606],[997],[976,1001],[1179],[363,1560],[448,1751],[511,788],[607,2172],[863,236],[616,1954],[45],[261,2260],[169,1025],[159],[111,2522],[1063],[623,383],[826],[969,2266],[1222,3158],[83,658],[1050],[718],[451,1726],[25,644],[1354],[1266,2120],[926,905],[841],[1033,725],[818],[170],[638],[708],[174],[909,1170],[159,2824],[575],[957],[199],[377],[372,2686],[114],[212,1905],[197],[1049,535],[1382,608],[454,1082],[366],[416,1931],[318,1106],[269],[1242],[1333,3264],[1350,220],[200,2216],[392],[556,2487],[464],[1132,3286],[879],[1277],[348,2345],[1039],[715,187],[112,2658],[231,961],[582],[1343,411],[863,1497],[175],[151,1433],[1399],[1080],[23],[328,1188],[850],[870],[900,841],[899,659],[1059,2787],[1052,1571],[14,855],[531,2224],[207],[166],[184,1798],[63],[1396,2011],[1029],[1229],[16],[920],[697,64],[232,2462],[327,3087],[343,2848],[1408],[1122,1839],[1024,513],[553,2238],[1031,3267],[1388,2886],[202,2707],[408,1363],[1190,997],[1167],[1240],[604],[995,2725],[1069,1977],[970,3040],[1044,1124],[1342,1617],[1407],[854],[532,3298],[798,2451],[707],[900],[1232,1737],[1124,1767],[1120],[1407,2412],[41],[1219,127],[670,1219],[849],[1004],[1375,2615],[1089],[922],[1375,1591],[175,3285],[290,2765],[307],[145,62],[1193],[722,19],[257,918],[548,906],[45,1749],[147],[1266,1602],[1063,1991],[602,2624],[1193],[58,1292],[59,2708],[1354],[1168,2694],[301,2115],[47,895],[978,1737],[485],[896],[337],[792],[1418,2340],[68],[1257,1496],[1250,1778],[539],[1323],[917],[231],[110,3163],[875,2046],[875],[184],[705,2580],[395],[806,2123],[801],[1020],[1431,1073],[756],[465,1489],[697,546],[1405,669],[408,2554],[307,712],[17],[891,824],[393,2705],[298],[846,20],[91,2503],[233],[63,2583],[44,3159],[1114],[870,1756],[753],[271,2394],[6,1316],[169,2153],[1283,3],[401],[910,1841],[177,2131],[970,2024],[1372,2361],[335],[1208],[1034],[248,3134],[1156,1114],[1034],[1059,766],[161],[340,1395],[1333,932],[1337,2359],[690,463],[22],[400,1594],[624],[1281,2950],[446,1274],[94,3291],[233],[545,2490],[358,2922],[230,928],[892,783],[559],[608],[537],[1401,686],[550],[1328],[583],[347],[1203,2711],[517,1602],[1279],[434],[536,3206],[1286,2074],[70],[217],[887,2855],[1318],[811],[309,1652],[1284],[449,742],[240,242],[267,778],[1373],[1195,3133],[318,2175],[148,2086],[102,1094],[466],[76,339],[380,2113],[1100],[444,3137],[1184],[539,1008],[173,3020],[802,1192],[3],[538],[956],[888,1452],[11,245],[891,2635],[1317,2008],[1264,1855],[301],[986],[703,677],[1100],[1084,652],[1017,2434],[309],[503],[1068,2129],[317,782],[1010],[916],[604],[828],[1134],[984,2],[374],[203],[440,494],[644,2123],[874,614],[1193],[1108,2917],[907],[1304],[1166,1267],[1302],[1152],[691,1321],[1406,1935],[135,2872],[231],[215,1787],[1019,1319],[1425,2538],[130],[136],[89],[1378,1995],[907,938],[940,675],[1152],[1110,2231],[1080,725],[557,305],[32,701],[1336,771],[827,1267],[265,1352],[1106],[154],[950],[1316],[1249,690],[434],[741],[205,3214],[1080],[318,392],[1304],[1168,1501],[1094],[1061,183],[984,2438],[634],[825],[645],[935,1694],[817],[637,1598],[935,2908],[1385,2609],[862,3199],[883],[604],[1285,1039],[471],[421,373],[439],[1056],[776,2299],[130,1761],[1010],[131,2728],[193],[1134],[837],[969],[793,280],[73,3163],[1412,515],[841,1894],[1270,2117],[349,126],[1272,609],[544],[1403,1263],[526,2679],[612,2793],[852],[1044],[837],[1147],[483,2139],[313,753],[1044,2705],[458,1677],[844,2756],[383],[676,1459],[419],[1103,271],[145],[152],[387,1946],[753,96],[483],[469,2219],[1238,893],[1187,449],[186],[364],[76,3021],[493],[1239],[689,3158],[290],[1424],[1172],[1016],[179],[320],[235,602],[1207,448],[963,1011],[1384],[373,2930],[591],[674],[815,351],[477,906],[106],[1359,721],[898],[96],[1295,1855],[185,2804],[1324],[188,2477],[1411,2209],[1262],[536,579],[1410],[63,1356],[867],[1235,853],[593],[1362],[301],[1233,1089],[1025],[508],[102,1513],[998,1167],[791,3092],[967],[1375],[1386],[525],[494,3177],[1068,2881],[407,127],[1,1707],[976,1828],[869,1597],[1262],[865,1123],[734,1540],[345,1055],[406,236],[669,2175],[342,2691],[1,1713],[938,2940],[1107,2957],[154,867],[1234],[1252,807],[694],[842],[613],[1035],[367],[987,901],[1191,2075],[67,2235],[1430,415],[1251,2659],[612,2552],[231],[1044,516],[735,1796],[1419],[664,1749],[481,1448],[117],[488],[1399,528],[766],[322,3134],[1110],[935],[1045,7],[183,2705],[167],[1012,1063],[391,1748],[1190],[544,2335],[328],[1256],[817,2517],[824],[190],[378,96],[1269],[119],[980,1026],[854],[285,2332],[32,1563],[835,2828],[1063],[501,1231],[587],[36,924],[440],[1313],[221,2040],[1132,139],[1109],[494,152],[875],[468],[566,1741],[216,2546],[1176,2973],[50],[1050],[1051,1558],[191],[1195],[389,2605],[398,2806],[1395],[794],[502],[270,388],[494,2116],[220,3157],[1360,1991],[832,1350],[297,2293],[820,3181],[1062],[746],[563],[1397],[1111],[399,3079],[600,650],[220,283],[149,2674],[96,218],[258,1067],[639,1570],[410],[846,1402],[337,509],[1034,363],[1346,26],[494],[273],[86,3012],[738,1595],[218,1577],[101],[951,1566],[659],[1038],[1251],[1,1526],[251,1074],[1077,1030],[711,163],[393],[493],[208,2504],[50,1405],[418,2039],[1243],[230],[822,663],[722,268],[235],[1338],[1171,136],[1200],[1249],[335,1625],[1286,2238],[1283,1874],[1172],[562,420],[1346,2742],[977,2815],[1202],[47,3169],[747,512],[1009],[103,2428],[651],[544],[285],[860],[203,1860],[1151,2538],[1206,639],[678],[868,2803],[931],[1250],[36],[10,934],[149,1725],[551,717],[558],[82,125],[662,3271],[1409,3040],[83,2883],[154],[1425,1881],[1403,971],[426,2583],[1215,2212],[172],[1394],[1275,2519],[1093,1349],[685],[934,1585],[282,1793],[1109,1251],[827],[1244],[544],[171],[843,2042],[153,2032],[265,2414],[47],[1430],[927,2832],[1111,1997],[1199],[777,2133],[435,1906],[212],[888,3040],[405],[885,2085],[578,1199],[1281],[902],[1320,2670],[414],[978,1082],[774],[879,3051],[1358,2139],[249,2257],[756],[535,1544],[440],[559,855],[137,1366],[780],[321],[779,3010],[1076,3051],[428,293],[227],[1363],[1187],[1153,1992],[294,323],[354],[974],[805],[13],[33,2273],[19],[684,1246],[1289],[1381,2111],[1073,351],[991,535],[461],[333,2928],[1105],[1298,1071],[377],[680],[717,3021],[1348],[720,262],[1010,166],[404],[1105,2192],[443],[1141,525],[1430,1843],[751],[963],[1265],[139,1430],[993,1211],[684,2115],[280,630],[55,3214],[753,610],[1063,1835],[954,2280],[463,787],[1199,187],[982,2508],[155],[411],[1073],[1045,2309],[295,532],[209,1792],[404,2063],[882,579],[927,127],[515],[418],[351,2284],[1169,645],[1183],[707,1651],[18],[43,1452],[281],[728,614],[1172,3154],[559],[135],[646],[191],[148,2640],[761,104],[970,1591],[211,2250],[10,2401],[590,2848],[1206],[637,1786],[644,919],[129,1595],[913],[784,93],[1141,2470],[996],[557],[1366,2980],[671,1115],[87,806],[440],[601,3260],[699,170],[1002],[1240],[770],[892,1914],[1030,473],[160,2552],[566],[186,1304],[191],[594,3016],[1114,1701],[625,1917],[153,566],[1364],[106],[859,3269],[519],[470,2801],[367],[1031,2331],[401],[1378,2259],[322,2146],[466],[1001],[797],[127],[783],[116,3298],[774,3092],[197,2429],[712],[772,30],[1078],[1281],[328,1205],[578],[1311],[793,1132],[1081],[371],[1212],[304,2703],[1031],[332],[891,1876],[514,1963],[1332],[854,353],[1266,1155],[1289],[715,3161],[610,2496],[1116,1135],[343,2787],[1082,242],[1150,2841],[488,580],[757],[565,1710],[765],[483],[131,2019],[1216,2219],[335,2558],[1065,151],[302,1995],[331],[1252],[1430],[108,2597],[1354,3152],[598,1969],[499],[449,1242],[886],[94,414],[245,725],[727],[130,3019],[1296,117],[381],[956],[699,615],[518],[1293],[210,3257],[1374,635],[966,2976],[323,305],[291],[833,1580],[777,2756],[55,2040],[1158,3018],[825,43],[1050],[92,3242],[372],[904],[947,2697],[375],[137,1636],[711],[491,404],[1052,1186],[578,1216],[672],[1164],[423,3102],[411],[1396,567],[837],[1216,1122],[1414,142],[396],[561],[1359],[429],[603,1058],[924],[39,1208],[824,1301],[967],[426],[106,2897],[148],[996,1941],[238,3231],[982,2041],[230,2742],[1398],[1117,1585],[185,965],[904,1767],[698,2147],[672],[1272,3151],[239,648],[682],[434,3259],[796],[1226],[570,2678],[759],[1049],[443],[9],[1207,449],[847],[579,2924],[1415,116],[302,2059],[951,1429],[373],[899,1684],[151,1325],[1032],[1054,3120],[662,2060],[179,1486],[351,2448],[1405],[1421,3258],[101],[723,1773],[1105,236],[292,3011],[866],[662],[32,1098],[229,2868],[321,2663],[1158],[1063,79],[192],[722],[122,624],[716,1248],[509,1589],[1253,2593],[259,2449],[864],[219,2329],[953,120],[1284],[1067,3192],[167,869],[254],[898,227],[317,1090],[960,2626],[852],[685],[1232],[1427,1884],[1236,956],[727,2832],[344],[1011],[210],[1318,3166],[1215,292],[959],[375],[881,2073],[409],[371,2640],[791],[720,359],[1071,1467],[287,697],[900,629],[1292,2802],[23],[946],[311,3019],[1107],[679,518],[1364,2849],[1354],[1033],[1070,1508],[1228],[945,1121],[1018,2529],[934,67],[1243,336],[268],[557],[1294,2830],[112],[1288,2965],[234,1295],[1422,315],[1148,1372],[1426,178],[171],[881],[1317,3291],[1324],[57,2681],[1098,1345],[70,237],[994,2574],[643,1783],[438],[1418,2766],[1045],[152,851],[739,878],[103,3055],[1135],[912],[231,3222],[1234,2613],[202,1365],[192,1889],[439],[215,3150],[769],[1212],[620],[247,45],[426],[1430,287],[941,1787],[406],[308],[914],[804,2245],[706],[635],[1231,1755],[896,495],[48,1808],[838,841],[493,3260],[300,1442],[769],[1295,2107],[1263,135],[193],[880,2171],[934,2914],[333,2158],[1074],[16],[185],[1183],[501],[1257,2292],[830,1588],[354,2220],[1044],[1031,310],[81],[1165,868],[1427,2523],[56],[828],[1229,1506],[160,928],[829],[446],[749,1895],[1170,2944],[1410],[985],[1400,2337],[36],[328],[453,1433],[1379,2967],[352,1395],[961,2980],[862],[1077],[385,557],[431,2976],[297,2757],[562],[1222,3180],[9],[922,2376],[648,198],[989,425],[1172,3294],[117,620],[810,1100],[284],[19],[162],[1297],[842],[1097],[48],[1280,3214],[747,3117],[1050,820],[1371],[145],[267],[297],[52,3099],[351,2801],[1,2315],[821,3085],[1037],[806],[843],[1115],[438,287],[1031],[293,1830],[743,1326],[284,1470],[855,1957],[995],[836],[983,613],[1238],[22],[906],[751],[564],[382],[969,811],[227],[1035],[1109],[685,1109],[569,3032],[865,1439],[374,2481],[193,1601],[917,2884],[712],[91,3081],[571,2782],[717],[808,2719],[679,2043],[814],[937,2789],[1063,890],[830,22],[941,677],[354,1267],[610,2252],[1166,1062],[1108],[684],[1341,1531],[457,1670],[54],[440,39],[609,1403],[481],[1318],[1216],[1364,2810],[681,1709],[1203,2318],[724,287],[630],[701,557],[390,2721],[1048],[201],[1216,3123],[451,1396],[212],[424,2904],[998,743],[441,3297],[206,1546],[1415],[1019,1689],[76],[978,1827],[1220,1505],[756],[990],[157,2315],[1299,3205],[1127],[449,313],[349,712],[915],[718,2310],[4,1878],[614,255],[566],[1074,2311],[687,756],[571,961],[148,3123],[1262],[1018],[372,1175],[646,1231],[98],[399,748],[1395,1053],[40],[1169,2871],[1203,3126],[781,1104],[153],[681,3198],[697],[456,571],[759,1269],[745,2918],[697],[1332,741],[943,1623],[244,1295],[631],[462],[869,763],[399],[1172,2092],[745,1702],[561],[753],[603,2094],[914,780],[1128,318],[216],[556,315],[808,85],[204],[876,215],[1,2648],[24],[886,936],[1028],[969,2636],[1318,3057],[240,3303],[1085,514],[250,1965],[151,491],[1328,1619],[1056,410],[937],[912],[1152],[928,262],[924,2517],[943,2894],[253,2341],[232,2317],[1056,274],[637],[1379],[147,1956],[1189],[935,1185],[192],[383,838],[1008],[441,888],[771],[71],[112,3274],[157],[1229,3125],[180,3081],[349,1526],[1313,366],[327],[154,1219],[1073],[740],[1323,3300],[979,2792],[344],[1055,2906],[160],[327,853],[425,2461],[688,1342],[827,38],[1130,3057],[1360,1786],[829],[1173],[462],[660],[439,1631],[569],[1379,3115],[868],[467,1621],[1287],[1375],[897,33],[1313,1869],[212],[296,339],[596],[731,3135],[1267],[62],[147],[353,1572],[1372,2067],[1403,1312],[1110],[40],[455],[852,489],[1179,1832],[201],[201,661],[1077],[1096,637],[469],[323],[565],[223,660],[1376],[380,1141],[62,2547],[1052],[316,830],[474,1474],[475],[424,1502],[596,2777],[820,2875],[995],[725],[865,1719],[1081,1263],[859,3191],[632],[1205],[420],[933],[921,2603],[1167],[647,180],[744],[14,532],[1079,294],[1275,917],[1145,1309],[126,1011],[1201],[682],[1408],[101,1192],[1391,1133],[751,312],[344,1634],[882,477],[1106,503],[273,766],[1364,520],[1042,2915],[350,2488],[457,624],[320,297],[276],[48],[1396,2209],[615],[1246],[1422],[306],[1349],[1073],[387],[1295,2616],[346,2034],[573],[956,588],[1264,342],[56],[375],[967],[1090],[1241],[1313,3044],[1174],[276],[298],[1160,1625],[1000,2617],[1318,380],[566,949],[362],[1290,1723],[412,1576],[1115,1568],[584,1421],[1049,2800],[1014,1669],[1292],[1096,1910],[1250],[1193],[1222,456],[1116,460],[146,2143],[227],[942],[1148,3258],[1313,1611],[1427,843],[1073],[801],[136],[297,2671],[69,425],[596,3138],[610,3261],[319],[714,2782],[1179],[43],[105,41],[203,2185],[1266,744],[1419,1120],[1376],[1345,3149],[1371,2184],[1188,1949],[615],[252,3080],[837,2152],[798,1487],[481,2329],[257],[846],[1037],[1099,3086],[821],[676,913],[1131,1443],[345,1397],[483],[1,983],[578],[431,623],[994,491],[247],[462],[1174,198],[774,2476],[518,3065],[1322,286],[831],[171],[477],[457,1204],[223],[295],[459],[433,2232],[257,3152],[80,24],[596],[853],[423],[963,1770],[801,1217],[1274,1458],[1355,3183],[425,1193],[966],[270,421],[856,3140],[44,2670],[1407,540],[987],[474],[1050,1633],[46,627],[768],[1209,2646],[135],[1340,2354],[916,1111],[1146,2925],[286,870],[28],[1225,1600],[606,1300],[231],[843],[156,2982],[1124,952],[218,668],[1019,708],[1204,811],[503],[1102],[904],[640,2250],[1333],[715],[346,70],[971,1787],[1243,1097],[684,1868],[1187],[1160,2168],[1311,2264],[798,1254],[1150,867],[976],[329,1136],[468,1505],[639,1122],[1294,280],[693,1889],[1365],[417],[902,1435],[21],[791,2737],[1206],[1338,3219],[832],[493],[615,1020],[1084],[636],[598],[239],[587,2917],[1221,1831],[877,1289],[518,2225],[1096],[823],[819],[579,1091],[491],[276],[743,413],[1279,1208],[921],[499,359],[22],[811],[887],[382,103],[549],[33,14],[752],[1090,2345],[1193,2191],[680],[1170],[715,1226],[596,675],[831,984],[525,2406],[775,741],[215,1349],[863],[603],[389,2046],[904],[103,1098],[1293],[1360],[442,2737],[936,53],[638,1121],[638,2036],[903,2528],[817,2991],[1413,1776],[983],[1414,810],[550,2210],[1083],[363,1200],[970,113],[91,2456],[639,173],[1243,1479],[1137,1],[484],[781,1874],[209,655],[126],[193],[123],[274,2361],[1093],[946,183],[246,2755],[418],[317,2405],[1103],[576],[688,3285],[881],[345],[541,2885],[90,2730],[1429,2360],[14],[403],[260],[641,1069],[457,158],[930],[609],[751,2159],[679],[492,1111],[583,2598],[149],[1314,212],[277],[1372,1675],[662,1961],[1147,2900],[280,2872],[152,2462],[845,403],[633,1583],[341,2912],[995,3227],[217,2074],[1351],[1407,796],[997],[392],[1324],[200,797],[668],[712,757],[1183,584],[1033],[921,1094],[73,2459],[722,1249],[1310,321],[125,2712],[328],[869],[339,1536],[659],[1008],[1273],[1107],[285],[100,1903],[194,1077],[684,1699],[331,1076],[432],[1018,2840],[1098,170],[602,700],[256,1572],[1003],[785,65],[493,764],[298],[263],[353,3159],[1101,46],[382],[566],[59,502],[1099,687],[251,2039],[647,2041],[1238],[873,1185],[643],[303,1871],[85,3111],[37],[217,2369],[309],[364,1660],[1047,2536],[363],[1170,1179],[1231,138],[1214],[1212],[75],[1355,1758],[1074],[460,1717],[67,1579],[881,1866],[195],[693],[917,2357],[735,1730],[86],[1143,106],[899,699],[670,2516],[598],[436],[90,605],[703],[596,71],[481],[540],[326,2291],[259],[271,363],[678],[1235,243],[1317],[49,279],[132],[1225],[1202],[126],[875,575],[979,1051],[1352],[905,977],[767,3172],[423,1514],[974],[35,1908],[1105],[1408],[361],[316,528],[30],[1041,2521],[839],[225,3017],[498],[1178],[701],[983,1450],[480,1890],[95,439],[219],[872,2965],[1092],[620],[1352,308],[283,2578],[500,3097],[881,2788],[1261],[637],[1320,459],[267,1599],[295],[682],[610,1715],[380,3142],[339,131],[437,1558],[1301,2333],[524,1538],[348,3154],[1132,2264],[901,881],[832,891],[776],[605],[452],[514],[754],[138],[1157],[1130],[223,2461],[1371,2692],[94,3115],[194,2010],[574,3233],[1297,321],[1345,686],[1282,711],[1318],[360],[712],[215],[755,2882],[547],[551,258],[698,1986],[1400],[119,3278],[51],[43,2488],[1137],[1005,1675],[780,1745],[357],[791,1793],[521],[1406,1387],[1380,1171],[1119,1435],[735,942],[660],[1008,1768],[519,3247],[1272],[483],[1088],[1402,1816],[1324,2575],[254,907],[565,1539],[973,1991],[1002],[1032,2741],[1093],[411],[165],[635,859],[1143,1208],[891,1505],[1274,2164],[359],[865,2837],[530],[809,2360],[1243],[540],[315],[597],[933],[234],[598,1975],[1122],[1046,2920],[1205,2073],[1022],[1099],[1069],[307,747],[296],[117],[785,417],[570],[548,2457],[340],[588,3097],[1159,192],[809,2890],[205,300],[526,3087],[1287,439],[1368,649],[902],[1349,611],[314],[205,1659],[1168],[551,318],[964,527],[185,2930],[803,458],[1148],[792,1445],[1341],[1342,1808],[1005,2129],[509,3109],[892],[569,1164],[773],[1096,2811],[1214,775],[1379],[1369],[569,2101],[93],[1192,473],[1096,3082],[1270,730],[711,1887],[136,94],[739],[663,1951],[54,994],[1018,106],[866],[785,2763],[1160,1210],[747],[278,174],[281],[583],[582,2377],[911],[216,3083],[921],[1065,949],[71],[506,1263],[1261,3150],[597],[1420,1655],[1151],[730],[218,2224],[302,3132],[1122],[894,340],[39],[1117,1967],[239],[1226],[1244,97],[212,3038],[1249,761],[1349,122],[416],[194,1728],[1203,277],[172,1738],[1055,579],[418,469],[27],[1094,854],[1395],[586],[827,185],[631,274],[1005],[1089,3125],[113],[1330],[1322],[1053,1116],[330,1365],[1337],[441],[362],[576,2992],[574],[1383,170],[188],[921,1307],[1011],[823],[1049,2005],[323],[616,786],[410],[1058,82],[1110,2504],[1026,1571],[296],[602],[331],[91],[373],[772,1918],[861,796],[661,2324],[656],[1301],[1341,1860],[101],[1316,90],[1325],[167,1419],[1095,414],[793,2214],[1418,1932],[833],[1356],[992],[1218],[336],[1055,2996],[708,625],[690],[954],[157],[112],[47],[1170,3128],[659,917],[1366],[215,181],[1003,1168],[1223],[963,1269],[161],[1085,2947],[320],[170],[1048,944],[1102,820],[1244],[152,384],[1063,2370],[1388,2312],[968],[1102],[363,207],[865,1930],[1205],[715],[129],[702],[371,124],[935],[115],[265,135],[744,2886],[26],[329],[1374],[1320,2684],[329,2713],[1053],[747],[641,37],[597],[25],[840,137],[832,3051],[1087,996],[898,269],[666,3279],[939],[575,1939],[1379,1276],[431],[1009],[736,213],[888],[139,60],[1097,1426],[1218,3051],[1291,1168],[30],[323,2707],[494,2659],[1372,1481],[881,273],[278],[176],[413,572],[723,1487],[449],[1317,539],[2],[922,925],[314,2322],[1176,1718],[353,56],[803,1635],[243,551],[972,3212],[1420],[1377,2204],[956],[263],[312,2917],[961,144],[531,277],[243,1204],[1191,376],[399,369],[766,2669],[463,1523],[103],[1328],[416,1876],[693,2762],[613,2263],[532,1506],[1055,971],[870],[1260,1265],[912],[737],[719,331],[1315,1843],[1400],[1304,181],[1291],[163,158],[97,717],[1345,2127],[901],[283],[1126],[725],[967,225],[954],[1070],[783,3272],[944,1532],[45],[475],[350,1106],[133,2866],[973,714],[988,1058],[213,143],[24],[434,284],[1179,826],[363,2266],[596],[849],[642],[511,2760],[1015,2215],[1030,602],[995,1793],[86,1597],[1242],[270],[588],[577],[1255,1881],[1403],[1284],[307,2930],[148],[1257,2199],[657,1343],[574],[325],[976,1696],[678],[55,1551],[1040],[1205,3116],[803],[2,2526],[1014,3239],[1381],[1117],[233],[1095],[971],[281,3279],[27,1320],[1192],[299],[454,1457],[596],[167,2864],[45,2937],[288],[796],[612,3196],[1109,1957],[666,1084],[781,1024],[475,1133],[949],[1360],[796,1140],[1128,2598],[210,419],[1244,1405],[1156,2719],[810],[452],[264,254],[1002,2410],[261],[447],[514,630],[285,1405],[1229,1785],[72],[536,2511],[1378],[1273,2461],[798,2590],[524,1018],[1002,2092],[573,1751],[675,239],[1067],[92,1246],[1352,1145],[1147],[1338],[563],[531,84],[206],[481],[238,1547],[621,2652],[710,2836],[602,2946],[515,1027],[1157,1188],[518],[1188],[680],[346,2308],[513],[348,404],[7,147],[720],[803,1421],[722],[1104],[586,2657],[692,1035],[747],[960],[1420,1800],[24,767],[1347],[534,2004],[859,3143],[100],[1370],[1393],[873],[922],[1348,3247],[935],[1386],[1183,1861],[1178,1693],[1184],[1361,457],[1285],[194,881],[1211,641],[351,1248],[614,163],[329,1025],[888],[34,1592],[125,970],[453],[509],[1299,1194],[238],[421],[713,82],[631,226],[1224,2025],[251],[164],[715],[776],[66],[273,455],[1143,301],[545],[1241,2361],[690],[383],[145,862],[314,1525],[511],[460,3229],[958],[1079,359],[1106],[1316,1345],[819],[840],[826,3024],[953],[1347],[620,1097],[595],[1177,1734],[790,1311],[1298,652],[34,1358],[470],[160],[325,3012],[1386],[692],[566],[507,1189],[1126,2603],[1204,2099],[574],[1323,3024],[208],[965,217],[692],[1199,452],[372],[781,1400],[183],[443,1343],[1292],[818,744],[515,3248],[219],[536],[1256,2614],[719],[277,691],[1214,2912],[802],[509,132],[340],[875,455],[1391,2628],[203],[756,2050],[271,1202],[771],[1395,1096],[702],[884],[916,3041],[838,1186],[694],[657],[1398,1342],[477],[515,656],[12,855],[1415,2493],[226,2506],[1135,1326],[1037],[717],[822,2007],[1419,2577],[1211,2994],[496],[303,693],[592],[574],[1006,904],[966],[545],[469,1109],[878,412],[315,2027],[529,2912],[142,2432],[796],[1286,2209],[954,1277],[18],[741,414],[1423,31],[377,1692],[304],[840,687],[1310,1335],[613,1691],[737],[588],[987,612],[349,1829],[350,280],[477,381],[216],[57],[894,2803],[1368,2735],[488,2593],[1210],[405,2647],[350],[1024,1553],[125,400],[672],[623],[1158],[1204],[904,1636],[530],[613],[226,542],[1016],[291],[80],[922],[443,2868],[1323],[304,2133],[614,757],[149],[265,3075],[334,1821],[421],[325],[1122],[1285,1731],[829,2473],[1429],[1343],[692],[604],[1031,2751],[1355,1530],[334,1446],[259,3007],[980],[838,572],[1292],[156,1240],[1263],[506],[1259],[190,2565],[339],[1084,578],[652,1493],[527],[850,867],[1390,2400],[281],[889],[605],[616,144],[143,46],[180,1939],[652],[1119,1178],[1137,1194],[650,2721],[562],[71],[998],[721],[20,87],[383,2887],[1345,490],[326,3040],[1167],[1216,2085],[701,2707],[31],[1117,1575],[418],[142],[913,332],[519],[1087],[984,1668],[533],[511],[336],[1028,1173],[1050],[810,2579],[249],[204,2242],[1419,509],[775],[68],[99,507],[1136,1815],[148,279],[76],[997,2240],[778],[659,509],[269],[556,298],[801],[822],[952,1900],[68],[1000],[1086,854],[993],[590],[595,2681],[1113,656],[730,1167],[361,2132],[1300,1339],[105,3083],[1144,1301],[572,2344],[885],[793,3216],[617,1519],[8],[1301,2386],[276],[241,1069],[686],[763,2438],[704],[1264,2629],[1160,2906],[129,585],[638],[989],[330],[370],[788,2861],[740,2140],[565],[1199,1541],[248],[934,3112],[1039],[1384,3256],[763,2988],[1201,875],[831],[510,3182],[107,1524],[588,2189],[37,2556],[1230],[130,1655],[858,3136],[501,419],[1030,1671],[867],[365],[1254,473],[1180,1524],[1206,3254],[473,2146],[1396,473],[1067],[1429,1665],[325],[103],[25,3051],[1172,1205],[1149,497],[280,1400],[1227],[570,1290],[825,1615],[864],[429,544],[893],[73,1862],[734,39],[1276],[1360,3041],[1129],[717,248],[881],[1205,1361],[45,2623],[245,1879],[1368,2664],[603],[548,1551],[1096],[866],[85,239],[298],[249,1547],[1162,2229],[284,492],[1325],[654,2398],[569,3132],[942],[668,1388],[814,2874],[1263],[758,1672],[852,2882],[706,1036],[595],[483,2300],[311],[891],[1095],[1117],[1217,1177],[451],[743],[1046],[70],[640],[132],[1374,417],[389],[307],[1338,2031],[930],[1176,2043],[1354],[1192,3132],[240,1541],[1223],[413,2552],[1025],[557],[304,902],[691,1301],[61,3055],[1126],[337,459],[1072,1511],[255,2348],[1353],[1155],[889],[1429],[1407],[326,2407],[245,505],[138],[352],[864],[383,1023],[1118],[629,3180],[183],[950,365],[1000],[1157],[1405],[341],[1389],[1376],[118,119],[1324,533],[1208],[22],[1254,2928],[1110],[536],[518],[1123],[791,1381],[303,2736],[127,3152],[445,1992],[235,1649],[259,1140],[181,2670],[549,851],[812,1847],[1159,2903],[1218,500],[432,1692],[1270],[1156,1503],[1406],[679,932],[261,2066],[1179,1225],[141,3187],[810],[1398,1560],[1097],[680,330],[944,2797],[1370,628],[759,3174],[1117],[1088],[1080],[224,1914],[138],[1106,2760],[134],[3,2978],[19,1564],[782,2467],[851],[189,1558],[1071,2114],[536,836],[1045,276],[94],[1144],[171,318],[18,2417],[989],[729,2881],[308],[409,1173],[775,3137],[734,1014],[827,2738],[1323],[1295],[563,2045],[997,2540],[68,3036],[785,1208],[968,2147],[1431],[744],[1288,143],[875,1805],[1137],[144],[1220],[802],[112,566],[2,2855],[408],[995,1240],[651],[1261,21],[38,489],[1085,440],[665],[89],[800,475],[715,1393],[350],[429,169],[582,2895],[1234,2139],[31,114],[1363,2876],[232],[81,2519],[214],[365,2783],[1078,560],[1232],[1276,23],[372],[152],[1158],[865],[1141,225],[26],[1320,2803],[1008,429],[879],[7,3163],[1417,2128],[805,1348],[1345],[1136],[984],[820,2555],[348],[309,860],[1093,523],[262,144],[1135],[446,627],[1172],[1426],[913,454],[105,2531],[1134,1562],[700,1023],[1181,2099],[938],[309,2944],[1161],[1090],[949],[750,2504],[497],[1194,2390],[127],[1056],[941],[369],[1366,3100],[717],[1207,2903],[1410,1328],[689,692],[731],[1044,2583],[600],[1213],[918,1074],[436,2186],[365,2557],[704,3226],[1391],[611,2001],[744,2990],[247,2909],[1040],[1419,2468],[267],[374,1097],[1324,3250],[957,145],[729,2690],[1263,1589],[270],[1066,575],[1054],[450,2691],[529,1390],[435],[123],[184,2262],[189],[758],[667],[228,2877],[247],[1414],[535],[645],[439],[71,683],[750],[314,2955],[751,1372],[783,2339],[1013],[669],[216,568],[1029],[887],[1086,3232],[1379],[288,1123],[901],[1369,302],[1324],[48,1253],[13,950],[1128,377],[794,244],[20,1384],[665],[981],[258,2835],[512,3299],[374,2369],[1317],[1356,1627],[735,3137],[1189],[617,1882],[1097],[843],[1081,1137],[57,1356],[1255,2869],[1295],[344],[686],[962,1963],[467,1510],[855,1143],[112],[1033,1991],[105],[624],[804],[850,3017],[1316],[1245],[351,2158],[947,620],[369,2969],[336,1386],[193],[928,2829],[1144],[1048],[368],[1429],[271,1870],[1410],[999],[210,1793],[1185,2112],[241],[212,2822],[1404,623],[1059,665],[513],[1167,95],[1218,1675],[928],[270,2518],[452,140],[441,2578],[645],[763],[1399],[277,2935],[629,755],[586],[1200,3256],[633],[899],[622],[332,1806],[502],[472],[452],[48,3102],[1193],[251,1146],[750,2361],[842],[324,2916],[1363],[552],[703],[1251,2851],[348,3037],[580,176],[182],[356,952],[60,2364],[219],[1427],[817],[911,191],[877,3093],[817,93],[182,2856],[843],[9,1592],[1401,2779],[983,1077],[356],[913],[907,122],[981],[722,2610],[909],[453,504],[1397,761],[465,755],[79,2217],[29,2595],[1217],[1105,2935],[952,1994],[1171,302],[754],[235],[41,267],[780],[987,2478],[637,1180],[1126,2111],[116,3098],[84,1024],[543,2536],[702,858],[863,2065],[99],[28,669],[777,1749],[22],[550,3077],[1233],[938],[367,2762],[51,1457],[498,54],[716,1509],[897,1297],[70,166],[1155],[799],[121,1351],[195,948],[1123],[354,1218],[617],[412],[1120,1408],[858,3277],[210,547],[748,1845],[313,3231],[821],[1191,2293],[994],[217,3158],[115],[392,2400],[984,2027],[266,126],[410],[253,2366],[1195,2931],[1104],[450,2345],[934,908],[1007,2228],[1019],[1124],[1110,1047],[1169,2254],[979],[1125],[731],[832],[993],[1426],[1176],[714,1618],[1138,3204],[456,654],[659,279],[938,2176],[171,862],[487],[265],[1],[948,331],[68,114],[432],[1390],[342,105],[889],[311],[261],[1361,2206],[237,830],[231,1824],[885,2921],[1108],[1286,2991],[1257,2283],[1169,658],[864],[555,1279],[1196,1481],[1045,1752],[1145],[1123,2211],[1023,1097],[374,1376],[296,2076],[83,3111],[1098,50],[1375],[600],[375,2366],[757],[1156],[746,814],[1165,1705],[409,2966],[248],[763,1906],[947],[28,276],[1013],[736],[721],[1047],[260],[459,1643],[409],[894,602],[548],[1229,953],[585],[867],[636,2511],[381],[418,1183],[1282,2453],[40,1045],[1415,1234],[482,1344],[394],[481],[56],[1095,2681],[534,1586],[1034,1306],[905],[871,1381],[343],[629],[696],[1305],[1007],[1225,3168],[685,1640],[204,2784],[326,2769],[494],[1083,1455],[360,1096],[1263,1549],[507],[1031],[849],[1340],[808,2719],[1132,1762],[1151],[1296,2889],[413,211],[1368],[1299],[978,1179],[526,439],[677],[298,3182],[510,2135],[7,759],[510,3077],[697],[35,2797],[464,1415],[391],[1061],[573],[1261,1490],[305],[214,2281],[22,3211],[52],[225],[1235],[1129,3169],[1170,880],[707,1036],[279,199],[938],[650],[853,3162],[324],[267,1759],[121,1043],[661],[111,1893],[561,2546],[437,2312],[797],[437,2652],[313],[1116],[402,98],[473,698],[1208],[963,739],[332,37],[1297,2835],[1238],[1208],[140],[1233,387],[1338],[301],[1377],[1170],[362,1228],[336,3174],[1176,1579],[520,761],[807,1166],[186,2527],[512,1590],[1225],[460,846],[1016,1221],[486,1697],[16],[804],[1325,269],[28,2090],[1427,490],[400,2778],[1045],[1191],[980],[258,358],[26,1845],[1077],[849],[516,3132],[969],[829],[726,3106],[1385],[776],[335],[301],[1,1417],[1022],[963],[140,2490],[205],[1406],[497,2529],[1152,2610],[594],[778],[995,1273],[649],[879],[495],[1329],[406],[685],[281],[367,2898],[397],[984,2412],[1335,2130],[855],[155],[983],[1392,2433],[1244,202],[557],[1180],[992,1729],[1393],[419,1790],[695,1572],[414],[1341],[3,448],[1154,85],[1305,2522],[987,1760],[575],[1240],[488],[1063,1525],[322,1035],[1293,1220],[1117],[1051,380],[1334,456],[1185,2721],[711,1136],[697,588],[529,2030],[1161],[146],[33],[392],[1182],[1028,2263],[269,1485],[386],[1296],[830],[1038],[727,486],[757],[616],[727,2730],[745],[1199,1732],[749,3230],[800,2370],[1427,620],[226],[819],[846,3194],[313],[1415],[524,855],[346,387],[1003,2645],[607],[292,158],[1325,417],[676],[1277,927],[884],[505],[607,213],[964,2998],[810],[1024,1365],[131,1230],[732,1784],[1113],[1012],[920],[1246,2851],[191,1349],[201,2190],[187,27],[1166,697],[87,257],[1382,2599],[511],[735,2206],[55],[1350],[219,1623],[1417,1376],[987,2036],[1329,2932],[1386,45],[987],[178,1752],[479],[964,1402],[1076,2874],[69],[970,647],[1221,202],[478,1781],[247,3296],[419],[631,2185],[902],[812],[124],[554],[417],[999,1515],[320,530],[844],[1267,2888],[865,6],[1349],[1239,395],[1348],[72],[441,1043],[720],[1219,3197],[523,1686],[755],[1222],[1430],[279,1019],[64,2530],[1052,556],[647,817],[422],[1305,770],[1155],[1099],[1359],[1327],[1366],[585,2390],[313,2956],[430],[109,275],[188],[1347,149],[86,1617],[641],[308,208],[1252,823],[965],[401,653],[301],[386,3141],[294,2131],[1183],[571,2087],[40],[831,2195],[86,1551],[1215,3297],[180,2605],[384],[642,62],[879],[979],[643,904],[1423],[573,1694],[193],[1099,2249],[1196],[1271,2112],[1396],[872],[1160,2925],[700,253],[150,1880],[553,3208],[831,1856],[32,1690],[363,1660],[662,1086],[558],[211,3217],[456],[479,2342],[854],[1225],[60],[916],[478,2163],[1332],[351],[956,2222],[605,1717],[873],[1326],[484,2996],[1311,709],[1102],[147,600],[152,626],[735,1600],[695,1417],[421],[205],[1111],[8,3133],[1022,3086],[496],[19,1553],[831,1628],[1383,1636],[26,2365],[1115],[1305,1235],[607],[678,3289],[993,1230],[1292],[1191,661],[204],[1072,2908],[1066],[1181,2743],[1099],[128],[1281,5],[1316],[893],[687,133],[464,2046],[812,694],[676,990],[183,2173],[418,946],[932,2930],[219,1166],[970,566],[291],[746,2715],[1421,2009],[1159],[1162],[443,1778],[405,1722],[372],[1416,2230],[13,1086],[1378,643],[505],[488],[979,3217],[347,2532],[958,2907],[940,340],[1207,2255],[559,1555],[746],[813,315],[625],[1268,1081],[1122,1505],[353],[56,1936],[1150],[1386,105],[1352,2981],[1230],[586,1619],[1074,1605],[655],[1257,1238],[986],[174],[1315,1021],[926,663],[1259],[543,1798],[1209,694],[717,1754],[944],[625,347],[1054,3210],[826,2596],[815],[1082,3295],[1186,1267],[1006,740],[846],[1024,1853],[1135,520],[109],[453,2115],[121,2625],[675,1742],[792],[1070],[838,1795],[870,718],[1337],[164,19],[778,56],[761],[1409],[229],[679,2702],[1142],[917],[552,1393],[1388],[63,2021],[164,372],[622,2080],[1335,118],[1014,2677],[901,2487],[845],[1002,246],[936],[541,2433],[1296,282],[254,2276],[1088],[417,87],[432],[746,2022],[1059,542],[1195],[324],[1301,1944],[1154,2464],[689,1457],[932],[54],[52],[112],[1240,2436],[234,2088],[1395],[1176],[301,3173],[1022],[59,692],[1356,727],[122,709],[1138],[38,111],[1402],[27,425],[1380],[953,3009],[452],[938,96],[339],[668],[1330,1933],[1253],[998,127],[1139,883],[164,274],[1036,1945],[18],[815],[1327,1928],[365,89],[772,3197],[552,545],[398],[54],[146,2445],[767],[493,3113],[524],[1074],[1304],[545,667],[836,3299],[342,3265],[1429],[1271],[1143,840],[202],[611,1689],[850,335],[1182],[807],[243],[504],[1107],[684],[607],[515],[995],[195,2190],[26,565],[719,2142],[1122,2326],[1400,1028],[142,486],[203,1181],[939,186],[41],[113,2438],[138,750],[1007],[285],[212],[943],[492],[1342,1475],[1313,1394],[548],[828,1027],[1390,2929],[1023,2914],[1024],[945],[171],[1140],[817,2039],[25,2185],[276],[976,2254],[138,3030],[221,271],[721],[23,738],[392,2088],[466],[1181],[574,1601],[1354,1318],[1235],[182,2085],[111,2801],[137,2159],[24],[558],[814],[602],[1154,1284],[403,2147],[441,1860],[536,605],[819],[134],[305,782],[1291,2869],[1407,421],[664],[916],[521],[873],[725],[456,2983],[868],[818,284],[421],[26],[1259,289],[557],[503],[82,1284],[853,2847],[290],[584],[818,50],[770],[666,1015],[1430],[1312,2519],[1015,138],[283],[29,1607],[1358,2511],[763],[344],[1065,2481],[581],[37],[173],[199,1888],[447,2731],[1385,765],[658,569],[1186],[804,1702],[212,1993],[836,2893],[647,2564],[1007,1981],[1314,2143],[1099,1813],[414,786],[1130,1069],[1387],[85,3025],[596,435],[644],[1342],[785,288],[1193,2933],[849],[1005,1739],[822],[1328,2154],[443,1414],[573,2925],[153],[1268],[180,815],[654,686],[672,588],[1231,2850],[542],[1173],[666,2584],[1298],[553],[717],[168,592],[936,2669],[782],[1364,2102],[489,802],[1389],[413],[605],[1025],[793],[627,1659],[1088,512],[328],[355,893],[1373],[540],[715],[603,1059],[1358,640],[580],[327],[485,915],[1242,1206],[1048,659],[402,1766],[959],[1147,690],[1177],[1120,3253],[789,229],[1250,2139],[862,255],[915,776],[1237,1764],[746],[340,2074],[1415],[811,1219],[27,2701],[131],[952,3197],[93,2707],[87,1845],[504,2750],[838],[456],[1406,247],[1057,2628],[1337,112],[282,1093],[407,1362],[1409,493],[220],[576],[1140,719],[1196],[152,1910],[788],[205,2842],[1136,2731],[1032,2539],[604],[284,782],[735],[232,2797],[225],[516],[1170],[83,1909],[441,2302],[1169],[181],[289],[1361],[252,2072],[600,541],[1115],[1080,360],[1223,1863],[715,1613],[313],[1307,1392],[1128],[1292,1698],[898],[364,840],[31],[269],[1302,244],[1074,2207],[660],[1241,2074],[780],[142],[1316],[146],[926,1086],[1136,3157],[785,2569],[1220],[106],[1382,1534],[65],[1278],[895,695],[1267,1128],[126,1710],[926],[38],[489,139],[555,926],[911,928],[349,1284],[1363,1875],[1423],[1190,1227],[101,736],[477,2410],[1168,626],[697],[1209,1751],[1103],[734],[968],[918],[900,1506],[820,579],[567],[39,3190],[1358,352],[88],[735,1229],[193,820],[1142],[937,3238],[1091,1301],[1147,873],[1246,366],[1359,40],[839],[1210],[1058,878],[1404,339],[125,904],[402],[907],[408,3015],[1194],[306,540],[658,1997],[288],[482,736],[193],[1169,645],[446,740],[1095],[1215],[874,788],[1387],[951,3175],[368],[605,1234],[718,564],[912,101],[730,28],[1240],[582,972],[278,3259],[403,1902],[398],[979,1574],[375,1770],[318,584],[887,3243],[979],[532],[832,1836],[402,1272],[424],[846],[1050,2405],[1149],[1081],[746],[605,1679],[902],[802,1455],[1142,333],[1092],[620],[800,2016],[253],[1214],[923],[1403,1890],[563,919],[110,1794],[333,3046],[1061],[414],[897,2790],[372],[712],[765],[286,1254],[112,74],[933,1577],[820,1062],[42,1779],[1351,1669],[1195,104],[803,307],[238],[1293],[21,127],[106],[113,1418],[193],[1101],[164,1580],[1302,895],[228],[600],[1190,2999],[681,327],[420],[643,826],[383,1859],[338],[974,407],[986,536],[261,3266],[792],[1320],[162],[1076],[1067],[197,540],[259,2727],[506],[223,152],[1147,880],[1206,1654],[1320],[1030],[1415],[387,2267],[866,56],[484],[857,1528],[650,2430],[148,60],[1114],[378],[750,647],[488],[1318],[932,851],[1225],[1147,2752],[1115,1203],[1125],[285],[536],[1042,2167],[583,1897],[1214,2125],[352,1236],[107,756],[306,1261],[240,730],[1174],[26,823],[979,1863],[618],[1360,1940],[792,882],[837],[1109],[235,1974],[826],[771,1243],[1088,1916],[1178],[879,2987],[688,1604],[845],[1330],[583],[133],[1190,672],[442],[201],[1368,3253],[459],[721,1258],[1093,2329],[391],[588],[1070],[518],[1123,817],[470],[748],[266],[1209,2618],[259,3192],[131],[22,2289],[98],[1248,823],[1345,2526],[1312],[1003,1324],[1238,633],[736,2826],[662],[1369,451],[240,2514],[205,1905],[747,2060],[1165],[926,839],[1183],[635,3183],[655],[1060,1068],[560,369],[1159],[1079],[356],[473,1802],[973,448],[942],[390,1930],[26,1513],[227,1982],[140,2283],[502,559],[1413,58],[1266,1316],[1280,666],[824,310],[983],[200,2017],[540,357],[311],[813],[1230],[747],[1344],[302,2006],[1346,379],[578,1219],[851],[319],[250,216],[1339,3296],[825,2072],[1219,3151],[256,667],[132,3006],[1113,766],[460,3219],[607,109],[1357],[1209,1317],[155,402],[834,1737],[1257],[341,6],[928],[302],[526,973],[76],[337],[931],[1277,1870],[235,1750],[923],[1225],[471,455],[933,1157],[363,1355],[697],[1279,1516],[1380,1920],[1020,1263],[1406],[359],[311],[615],[1088,1835],[234],[1033,1381],[227,1244],[551,1774],[1268,915],[823],[900,2556],[843,221],[116,2246],[782],[158],[789,1909],[893,1185],[209,246],[1181,3117],[141],[1161,2553],[585,2099],[256],[177,3182],[786],[1207,824],[1119,2653],[405,2730],[17,1901],[374,95],[658],[234],[829,2149],[1034,1931],[78],[968],[379,2565],[374,3191],[1175,190],[1173],[105,1993],[567],[887,2963],[138,2129],[272,2382],[610,1066],[839,1956],[1388,162],[993,559],[150,532],[84],[79,2906],[800],[46,3146],[302],[1266,163],[1316,337],[1319],[1117,3143],[975,439],[895,1486],[716,3183],[841],[962,1537],[876],[908,1743],[678,1680],[472,829],[1339,1631],[951,1767],[558,400],[96,441],[565,1943],[1054],[457],[189],[864,3108],[1325],[825],[261],[712],[739,1335],[606],[1173,1232],[1055],[1263],[429],[1413,1503],[1127,3052],[766,2478],[540,510],[750,240],[964],[1210,2194],[1072],[12,548],[1294,1151],[548],[1109],[1427],[827,1828],[449,2513],[1376,2104],[1063],[513],[133],[194,3105],[525],[1266,2403],[356],[78],[917,1982],[212],[1175],[668,2577],[534],[986,1528],[782],[461,2133],[537,948],[237],[194],[1086,2460],[327,1103],[345,2167],[372],[953],[989,86],[1119],[906,1961],[235,1678],[671],[1073],[105],[1015,2381],[1270],[701],[46,265],[243],[14,2095],[868],[46],[1315],[149],[121,717],[710,383],[362,3010],[595,1447],[1293],[503,2363],[733],[563,2688],[1115,2045],[1287,1951],[1125],[1295,2597],[39,151],[355,86],[250],[1026,2603],[290,2728],[1297,606],[888],[408,2191],[993,260],[26,883],[352,1338],[784,904],[787],[527],[569,2858],[1211],[801],[1089,2004],[817],[801,2199],[554,1423],[1293],[942,219],[906,1623],[319],[1150,1147],[354,2896],[133],[1054],[293],[723,1899],[462,595],[797,1674],[1236],[1047],[731,27],[1223],[166,1739],[1243,966],[814,461],[23],[219],[575,3282],[909,2809],[878],[1393],[274,1210],[704,673],[937,2932],[836,2315],[1103],[1306],[99,2292],[197],[1259,809],[1139,2337],[1076],[292,1849],[1092],[317],[1402,659],[1074,170],[812,946],[364],[1050],[471,286],[1126,1378],[951],[717],[1160],[1090,2280],[1212,515],[1377,1358],[560,940],[1064,2937],[343,2194],[947,1100],[261],[767],[1321,2386],[225],[756,2362],[999,1071],[241,1120],[1232,624],[1012,458],[1128],[1386,2956],[549,1144],[495,1987],[513],[118,2278],[920],[172],[315,2246],[321],[61,1696],[460,1094],[26,1921],[1123],[306,466],[836],[347,1789],[525],[1199],[21],[906,2197],[7,3251],[1109],[488],[445,1971],[1248],[350,275],[504,3133],[1224],[324,2742],[191],[820],[407,1259],[115,1432],[992],[219],[236,1190],[841,1724],[807,3197],[146],[355,1747],[816],[926,1082],[111],[168,1494],[426,3029],[256,26],[1147,3079],[1098,1036],[134],[1413],[1092,1099],[947],[720],[1309],[958,519],[1227,829],[204],[233],[1143],[757,2463],[710],[864,862],[733,2920],[961,2333],[708,1677],[580],[1138,379],[345,96],[164,2361],[461,2189],[724,2808],[1350,201],[445,2483],[262],[1299,2016],[727],[1048,1604],[1278,951],[390,1092],[575,583],[1282],[839],[908,3063],[2,1579],[1324],[404,1509],[281],[1064],[575],[1126],[922,1966],[476,357],[749,3001],[819,1715],[483],[36,2648],[126,1984],[1338],[1146],[742],[1247],[1323,1385],[379],[1312,2385],[1308],[6,2663],[856,2957],[121,221],[513,2887],[756],[224,1917],[486,1016],[268,1084],[1204,739],[1192],[776],[292],[371,1254],[161],[950,1824],[31],[538],[1070,3208],[1293,3186],[50],[88,2287],[422,710],[1393],[524,2129],[271],[971,1745],[1231],[1363],[375,3066],[866],[319,1173],[64,632],[968,2107],[447,1944],[749,2942],[1252,1688],[465],[122],[1373,207],[600,2907],[947,11],[1213],[1095],[403],[1217],[434,965],[862],[1388],[1318],[1072,1770],[938,2999],[1150],[1196],[596],[1039,2197],[163],[926,634],[664,587],[1147,2875],[829,60],[410,3122],[168,2910],[893,2941],[1029],[584,1387],[96,103],[133],[790],[1184],[821],[1014],[965,489],[137],[1123],[838,971],[763,2952],[328,1377],[433,2741],[568],[498,1493],[394],[1253],[1425,159],[1203,3146],[1137,1279],[571,81],[1007],[1030],[739,2140],[749,1128],[1070,1096],[1250],[1230],[968],[240],[1048],[115],[352,1092],[98,2656],[672,2757],[326],[1054,3260],[161,2328],[1088,1547],[182],[322,1018],[385],[1193,1512],[581],[619,3255],[1400,2408],[592,2864],[466,1035],[1336,2970],[43,1797],[1097],[1248,1606],[261],[722,635],[532],[1398,258],[994,1149],[1216,2582],[100],[1122,2458],[526,444],[354],[1002,1638],[604,1457],[1298,857],[1346,3105],[848,1417],[628],[948,1926],[1143,608],[920,2982],[486,3237],[183,1269],[869],[741,3023],[1107,2391],[834,319],[1278],[1072,1997],[1283,2909],[667],[1052,767],[702],[1335],[227],[965],[170,1490],[630,2432],[593],[1398],[1065,3096],[1163,2605],[119,1472],[344],[1009,2342],[5],[394],[688,2146],[488,2820],[810],[1046,355],[143,1304],[748],[276,2681],[1352],[102],[43,1152],[1143,1180],[345],[67],[543,2127],[448,3007],[1113,2194],[488],[567],[831,874],[1154,720],[982],[1152,2015],[47,257],[1163,1699],[1074,2498],[1252,2170],[1361],[412,2078],[45,406],[1218,421],[567],[256,140],[45],[1162],[679],[422,1590],[282,2600],[519],[231,1675],[1007],[1347],[382],[1160,1966],[1198],[352,2721],[1201],[501,1268],[1333,3151],[256],[13,2476],[300],[957,2051],[792],[1164],[1370],[64],[366],[323,108],[951,411],[413,2087],[983],[502,3263],[1302],[852],[882,2044],[316,2777],[822],[154],[673],[524,468],[1191],[518],[879,444],[521],[985],[602],[232],[853],[206,520],[715,2852],[410],[396],[626,736],[1428,1042],[396,2278],[860],[505,1992],[1094],[1386,2097],[1092,801],[273,2238],[116],[324,1455],[1264],[178,65],[82],[914,423],[9,2408],[569],[882],[846],[483],[401,434],[702,2505],[437],[572],[278,1484],[683,1635],[1273],[926,1800],[726],[705,404],[618,2781],[149,1032],[875,483],[871,2735],[582],[1316,1492],[1387,1336],[907],[1110],[267,3223],[250,3275],[650,545],[913],[456,1928],[216,660],[200,2380],[927],[373],[1181,1145],[1055],[971,1939],[644],[392,467],[930,41],[552],[1055],[448,668],[556],[700,1962],[251,3167],[1346],[404],[181,676],[843,772],[736],[743,711],[1153],[318,546],[1352],[70,3071],[662,1198],[82],[1228],[1377,130],[661],[341],[202],[1207,3164],[1387],[1186],[618,1103],[876,1200],[356,1868],[1023],[717,2769],[1176,1616],[1404,122],[837,1534],[659],[715,3],[299],[702,2894],[17],[447,256],[502,2369],[136],[565],[262],[88],[452,1224],[956],[452,3271],[619,1244],[1082,425],[435,1564],[887],[304],[446,1511],[259],[702,1124],[322],[1199],[239,1148],[1421,3101],[1367,68],[399,2754],[16],[867,868],[97],[310],[1281,1136],[1427],[499,1087],[123,3252],[423,68],[112,349],[104,1283],[626],[1398,1195],[448,2351],[277],[1018,835],[559,60],[117,1667],[164],[323,2678],[866],[142],[371,938],[1231],[1041],[720,403],[1205,154],[779,2561],[347],[632],[858,3261],[1055,1782],[846],[1179],[691],[260],[908,1993],[1128],[83],[1086],[741],[641],[884,1020],[134,1060],[552],[845,2891],[45],[684],[244,1398],[922,2514],[1077],[594,828],[584],[368],[424,391],[47,1057],[329],[505,1639],[114,96],[1070,2527],[111,2234],[533],[1216,1540],[1250],[1134],[486,3040],[587],[1102,1925],[321],[596],[1358],[1279,269],[1284,704],[696,2495],[679,2383],[411,343],[381],[46,2558],[961,2547],[1147],[741],[630,3052],[680,1115],[100,2],[765,842],[571,2426],[626],[534],[972],[1208],[1181],[633,1611],[801,3114],[55,1201],[1299],[1012],[1295],[380],[1261],[552],[1025],[300],[914,2361],[10,1806],[350,2627],[1177],[1164,338],[42],[141,2128],[1153],[695],[693],[1268,3002],[1059,614],[1053,1707],[1410,504],[1238],[949,461],[440],[1325],[1136],[838,3156],[494],[85,263],[1411,1550],[445,592],[824,491],[541],[541,420],[841,2463],[328],[301,2801],[810,1737],[491,820],[1139,1526],[1113],[705,3127],[381,2480],[75,2998],[17,1072],[369],[1243,2299],[902],[1186,2673],[710,413],[799],[732],[547],[590,1038],[140],[1252,1907],[1166],[691,2500],[1339,1557],[491,2243],[314],[397],[1143,2247],[1378,2304],[240,2148],[923,820],[200],[534],[29],[261,2154],[1334,1027],[725,2503],[103,1853],[288],[554],[495,2011],[31],[285],[112,2273],[206,359],[1359],[1231],[1312],[530,2511],[897],[1269,1887],[951,1678],[1348],[1284,3142],[926,623],[677,3007],[1211],[1337,1162],[1359,482],[608],[1367],[941,2979],[367],[1223],[1027],[1312,2057],[536],[386,3240],[115,917],[574,2561],[296],[1385],[1128,1002],[1088],[1004,2401],[970,1431],[503,1012],[413],[83,871],[648,242],[3,803],[1250,982],[1304,2484],[1343,2940],[1142],[1320],[920],[441,1336],[761,942],[1309],[634],[313],[683],[669,1968],[839],[1250],[1022,2635],[219],[384],[224],[856,1190],[472],[639],[241,512],[869,1436],[589,223],[288,531],[37],[660],[138],[116,2064],[777],[179,521],[1249],[840,1048],[757,521],[952,1869],[1326],[705],[450,945],[587,355],[440],[1077,2068],[375],[427],[1269,3254],[257,3301],[900],[542],[1232,518],[1073],[38],[806],[511],[421,1617],[938],[985],[670],[424],[540],[316,445],[141,524],[32],[953,1227],[27,2760],[153,1581],[583,1100],[1374,1348],[577],[1057,2855],[428,1472],[624,2835],[843,22],[537],[784,766],[936,1087],[232,2569],[149,1493],[565,2327],[327,1593],[1300,1868],[54,569],[739],[640],[426,715],[1297,2214],[1305,708],[1122],[256],[224,1108],[493],[638],[205],[759,444],[1004],[347],[1013,2773],[964,2375],[1309],[1136],[670,2973],[893,411],[69],[532],[564,210],[1056,2031],[1346],[59],[927],[206],[172,193],[1396],[915],[889,1024],[69,2397],[31],[55],[785,2444],[1093,950],[629],[1240],[592,1628],[1337,1965],[714],[934,2913],[1007,2907],[429,2380],[784,3211],[877],[329,2028],[1385],[1250,128],[264,897],[1076,47],[251],[442],[389,1222],[1042,2795],[1238],[907,2663],[804,73],[1251,2509],[1082],[372],[165,2390],[1232,3184],[855,212],[52,1183],[928,1798],[204],[1357,1966],[1360,1041],[964,1103],[988],[410],[968,2463],[1002],[1418,1886],[413,3070],[193],[256],[270,679],[1188],[1145],[16,191],[576],[1154,2598],[1068,1785],[1154],[868],[995],[675,20],[646],[1395,561],[1273],[550],[525],[1371,2454],[1305],[553,2461],[1389,1564],[152,2080],[649,1895],[113,1610],[242,2495],[1077,1952],[182,2595],[475],[458,105],[890],[488],[651,1282],[1096,2277],[245],[559],[221,1936],[977,177],[541,2196],[653,2954],[1188,3298],[507],[421],[337],[32],[293],[689,2211],[207,3068],[252,190],[1288],[710],[954,2552],[943],[712,661],[248],[490],[552,585],[1009],[795],[65,2717],[1422,442],[163],[357,905],[996],[374],[1426,631],[830],[95,2723],[1224,3059],[1309],[1120],[846],[1284,888],[391],[733],[297],[606,1819],[117,630],[908],[244,797],[508,1448],[806,2909],[1109],[98,812],[979,3201],[1248],[1400],[1341,15],[109,2682],[416,1051],[556,2751],[1017],[561,2406],[909,2023],[288,31],[478,1264],[652,1262],[717],[888],[425],[578],[573,1746],[818],[414],[556],[1240,2333],[299],[45,87],[1211,1195],[834],[114,2470],[473],[738],[749],[756],[128],[655],[25],[293,1981],[569,886],[315],[327,566],[1205],[894,1877],[142],[1056],[1002],[550],[825],[696],[490],[149],[841,3040],[705],[1058],[162,2051],[936,3214],[667],[1292,2286],[598,1924],[1245,256],[159,1959],[1332,1309],[344,1555],[506,1947],[495,2203],[954,1929],[185],[1095],[481],[1048,2419],[703],[1007,1395],[1241,288],[1297],[327,2076],[285],[1234,46],[223,1803],[524,1715],[464],[582],[544,2095],[158,1175],[1246],[485,2238],[856],[1110,1134],[945],[1224,2932],[377,1012],[920,1505],[536,2299],[396],[90],[879,163],[988,2921],[451],[1237,1305],[1100],[510,2760],[467,2665],[1235],[57],[1182,1296],[492],[114,500],[211],[231,2691],[332],[1039,70],[630,1752],[1143],[582,2762],[505],[250,2376],[1272],[618,876],[534,2208],[636],[249],[1031,842],[441],[489,624],[166],[473,1243],[524,2028],[218,2801],[1355,2801],[1173,600],[976,561],[628,979],[1193,2945],[360],[362,613],[874],[1254],[1396,2475],[30,404],[532],[174],[1249,735],[603],[105],[1196],[1031,2978],[1126,3021],[130,1904],[1208,2947],[125,2220],[233],[1296],[1392,1937],[245,955],[622,2626],[547],[548,1667],[1098,1819],[648],[950,1010],[713],[964,1093],[1313],[928],[142,1708],[755,593],[1000],[1299,2401],[1379],[640,3230],[306,508],[1186],[498,44],[272,1481],[1106],[1081],[104,2757],[1039,898],[967,3278],[645,1030],[124,151],[898,1040],[709,874],[807],[38,1462],[731,2513],[1175,2548],[267,677],[960,138],[427,595],[805],[1388,2578],[977],[763,2471],[598,786],[375,1345],[156,3117],[255,2845],[267],[633],[439],[374,555],[350,2728],[350],[183,2642],[46],[14],[1087],[724,1227],[1084],[1178,1204],[605,3221],[806,195],[848,3011],[976],[74,2371],[392,798],[963],[835,2248],[189],[208,330],[1050],[448,422],[794,608],[986,3270],[1250],[1128,1129],[1358,2682],[1250,2243],[352],[339,311],[1098,1015],[361],[230],[809,2376],[223],[1019,1695],[1142],[91],[711],[805,1423],[760,480],[671],[705,549],[1287,3164],[1297,1382],[1279,1012],[1425,616],[100,1814],[1106,14],[141,2181],[1208,413],[296,2086],[34,2086],[743],[1222,1773],[104,479],[1164],[778],[1333,2846],[140,1244],[206],[1399],[1365,441],[487,1056],[1222,2361],[153],[313,552],[738,1195],[1062,1760],[1398],[690],[86,2542],[667],[194,614],[259],[835,1586],[390,2224],[265,610],[1111,657],[223,2015],[309],[1285,830],[1057,1601],[364],[505],[678,3083],[1423,760],[527,33],[1210,176],[1107,1304],[620],[1412],[1337,1800],[1296],[336,1702],[605],[576],[1359,2553],[429],[928,2142],[405,1517],[79,2079],[589,1290],[630,969],[422],[1104],[1063],[1189,1035],[1026],[1367],[103],[118,1116],[13,1120],[1300],[749],[115],[612,2692],[1202,1192],[1163],[851],[412],[583],[1145,2415],[1149],[149,2764],[258],[391,1880],[1273,3262],[331],[314],[433],[352],[421],[454],[301],[497],[1167,189],[1087],[286,1789],[659,2845],[407],[327],[1217],[1091],[47,737],[1038,1942],[423,3273],[670,2537],[1054],[807],[930,1244],[1109,2654],[921,2639],[730,1590],[553],[29,2697],[1036],[1332,715],[1209],[255],[1187],[1111],[407],[487],[406],[582,1621],[1286,2626],[21,1357],[1189,2299],[564],[1398],[548],[133,1027],[971,734],[732],[957,2896],[679,2361],[885,703],[1295],[1333,3289],[586,3115],[124,2056],[1080],[189,2144],[813,1399],[1222,2202],[694,658],[1237,1708],[1025],[1194],[1116,2346],[1311],[1104,2624],[1289,3046],[1155,310],[396,968],[346],[655,1297],[782,1370],[38],[531],[657],[1196,1958],[1074,375],[59,941],[985],[578,3057],[774],[1086],[66,1221],[650],[299,1554],[875],[736,1478],[1172,1286],[536,465],[1200],[1074,2314],[964],[1003,1488],[1278,2336],[1049],[628,1975],[50,2846],[155,3165],[8,488],[574,2699],[400,786],[15,45],[459],[298],[225],[1092,2970],[269],[1364],[1048],[118],[403],[1185,1882],[441],[146,654],[528],[995],[125],[380,1130],[337],[617],[332,125],[570],[1265,231],[1023,2925],[44,3022],[1347,2485],[475,2545],[1198,164],[1309],[1007,3006],[1297],[660,2830],[542,714],[1025],[1235,1835],[1320,1259],[1250],[294,1508],[418,1751],[535],[812],[908,1693],[759,2896],[366],[1379,2658],[877,2852],[924,1707],[958],[820],[780,1385],[946,2908],[422,297],[1038,2041],[842,1430],[943],[1220,1626],[1176,2536],[1417,1745],[711,289],[766,1178],[53,2960],[705,2712],[143],[492,96],[744,1579],[1114,1148],[190,951],[923,2217],[1411],[84,1029],[1263,3117],[948,132],[1206,3176],[726,888],[817],[636,2106],[1127,848],[885,1930],[515,2598],[1008,627],[388],[916],[554,2478],[79,647],[801],[527,511],[550,2819],[669,771],[1400,3164],[1080],[365],[674],[389],[574],[227,1240],[1299,1598],[126],[1286,914],[1130,618],[166,1136],[948],[311,824],[1],[1068,885],[693],[47],[1183],[509,978],[93,119],[534],[1305,429],[799,3012],[243,803],[802],[323,1265],[258,2963],[249,2374],[1253],[1269],[331],[326,2445],[653],[163,1945],[595,2316],[1080,1565],[142],[898,3138],[1174,2556],[279],[1153,977],[420,1059],[896],[113],[508],[325],[1117],[1342,1585],[1123,2751],[525],[331],[479],[1037],[571,367],[301,2755],[993],[476],[1219,2860],[991,9],[127],[285,2609],[450,644],[177,907],[368,1362],[160],[699,2879],[690,2237],[960,1899],[87,2690],[91,185],[527,1508],[1343,1378],[233],[1313,217],[6,3252],[433,425],[1418,701],[106,525],[177,2230],[373],[1221,1826],[834,2799],[1029,1706],[95],[1277],[621,5],[884,250],[1313,2234],[619,3303],[29],[1312,1733],[911,1451],[1243,2199],[538],[590,2188],[1272,514],[172,2655],[1298],[406,1813],[893],[482],[427,1767],[275,2652],[900],[853,1802],[554],[275],[1376],[267,2281],[111],[598],[365,1911],[376,829],[1182],[1112],[967],[103],[529],[1296,2518],[1105],[1218,2971],[1046],[459,1712],[1127,2488],[197],[1160,48],[1142],[783,2955],[672,1281],[1102,2122],[1398,245],[1015],[606],[603,2200],[8,1395],[1405],[881,1159],[1179],[921],[1373,3006],[1413],[1070,1430],[791,1894],[1421],[1035],[277,2107],[837],[193],[473,3084],[1335,3192],[18],[1430,1378],[894,3233],[903,2535],[573],[797],[656,2580],[853],[605],[312],[930,2780],[325,1430],[924,936],[241,2087],[502,2084],[478],[546,2920],[989],[82,889],[471,427],[1026],[422],[759],[1336,579],[211,2147],[1390],[549,1382],[165],[1382,375],[436],[879],[1333,456],[135],[1342],[1169,1860],[624],[1393],[530,2373],[721],[1385],[611,1372],[776,465],[1224,2265],[504],[874,914],[981],[1006,2584],[1127,928],[1157,861],[766],[1294,1903],[46],[1417,327],[928,204],[1270,2146],[1182],[1330,440],[846],[1378,2022],[833],[173,2081],[1167,1590],[1029],[1191,1926],[150,347],[759,172],[1427,1707],[988,2645],[753,2328],[1365,1709],[229,2822],[695],[68],[1132,2395],[66],[1117],[7],[1261],[1113,2111],[856],[63,2630],[1255,654],[109],[923],[685],[1116,579],[669,1050],[1127,259],[44,1976],[812],[281,2457],[1355,2378],[353],[706],[595],[411],[33],[86],[1429,1043],[542],[1228,309],[351,2368],[890],[224,252],[716],[401,789],[986,1682],[886,1340],[530],[918,670],[213,2330],[255,1938],[554],[1094,2910],[752,1613],[1330,1561],[116,2628],[1300],[868],[555,1534],[1092,1922],[1297],[1168,1523],[638,1537],[783,989],[1389,728],[459,212],[925,359],[382,2351],[952,442],[318],[1013,2552],[1023],[786,560],[934],[753,1787],[897],[250],[298,3087],[153,3268],[532,2548],[877,316],[1414],[1099],[895,777],[359],[349],[858,1450],[1067,445],[380,2461],[204],[839],[190,1008],[1072],[557,2219],[536],[713],[1202,2203],[189],[821,154],[717],[920],[1256,2050],[1321],[180,854],[467,1187],[446],[1426],[1174],[1391,2893],[1362,2067],[719],[1046,2159],[260,2418],[8,168],[1368,2266],[926,1605],[1230,1307],[157,2859],[1200,312],[347],[454],[558,2035],[670,1425],[1138,1480],[219,560],[462,287],[1281],[1089,1213],[35,2385],[794,610],[1069],[1141],[79,743],[527],[340],[1253,195],[354,2075],[796,242],[996,3005],[1265,1530],[16,1673],[1179,44],[1161,2343],[723,585],[1409],[1080],[571,1461],[1105,2523],[1250],[507,2473],[393],[645,1319],[1039],[337],[1348,1183],[1236],[916],[323,1048],[1267],[1123,517],[888],[506],[873],[1131,2819],[778],[667,1429],[635],[158,565],[182],[341],[1037],[1337],[1363,27],[706,299],[397,2511],[75],[632],[607],[1014,2529],[871],[990],[783],[283,2101],[336,559],[449],[525,87],[740],[622],[780],[911,1194],[1266],[711,2609],[516],[1109],[171],[507],[411,1336],[885],[1367],[45,2714],[203,1369],[852,1554],[556,2701],[1036,2356],[255],[11],[212],[894],[40],[346,2051],[376,2963],[1137],[714],[9],[1314,875],[443,2513],[606],[563,496],[933,303],[28],[1425,2838],[385,55],[1204,3190],[927,115],[1037,2050],[368,3118],[304,3185],[1299,796],[789],[992],[200,610],[497,2907],[1058,2930],[255,2010],[1409],[939],[737,376],[851],[1154,3132],[1035,1578],[276],[1010,808],[273],[220],[57,1411],[955,2655],[653],[239,1086],[1325],[40],[10,2898],[577,2480],[1053,623],[1235,2163],[1077,335],[112,1661],[319,963],[1018,917],[72,1912],[477],[107],[122],[325],[321],[923],[894,3012],[819,2374],[665,2183],[15,557],[716,2376],[361,652],[1050,566],[51,61],[86,736],[193],[582],[437,1669],[562,2611],[1250,2191],[850,807],[27],[994,2579],[228,1947],[258],[1085,1095],[449,523],[1061,55],[74,45],[8,911],[310],[438,2957],[623,2554],[1394,3096],[944,1483],[503,64],[1222],[1378],[49,2680],[477],[1203,1265],[636,1866],[108,2355],[782],[100],[1425],[611,406],[601,341],[221,961],[544,1080],[1202],[652,2378],[302],[1368],[501,1425],[1026,3105],[1148,3153],[85,226],[214,2809],[194,1270],[199],[704,1843],[1298],[1033],[585],[658,3284],[67],[281,855],[184,2231],[857],[1418],[1165,771],[273],[1206],[1198],[383,1210],[209],[927,2952],[1107,1957],[515],[1261],[118,759],[1062,1593],[814,1377],[61,1882],[613,968],[1367,2781],[1268],[20],[1174,1389],[676,3248],[292,636],[694,1642],[1269,2317],[449],[103,569],[1263,623],[1070],[549],[993,408],[315],[1225,1907],[1357],[458,830],[1390],[124],[750],[256],[715],[892,2905],[506,689],[1356,1322],[674,1118],[447,2133],[1297],[124],[607,884],[1347,1803],[470,1457],[1098],[807,2504],[1084,2557],[693],[619,2897],[341],[803,2505],[794],[107,2465],[157,2947],[1342,698],[487,1847],[626,1492],[679,1124],[643],[579,2139],[1165,3280],[296],[891,2033],[107,1462],[86,3246],[286,653],[1336,3012],[784,1615],[418,1031],[890,2135],[144,822],[841],[1051,1108],[746,1504],[600,913],[1070],[239,2729],[771,989],[254,3212],[1192],[354,3114],[97,171],[652,2347],[1139,1174],[1358,1711],[136],[382],[1057],[413,3144],[1175],[207,2303],[929],[488],[1408],[614],[1050],[686,2819],[914],[134,206],[84,459],[843],[1014],[1219,1956],[1101,1222],[403],[1378,1126],[631,3208],[970,3229],[440],[1023,2997],[48,1756],[594],[871,1391],[768],[301,841],[377,2507],[565,718],[444,3054],[1292,1509],[1238,3229],[1400,994],[709],[314,3159],[210,1381],[1251,963],[928],[1324],[290],[1228,2950],[719],[240,2173],[29,2145],[670,81],[1055],[468],[483],[1271],[258,929],[623,2292],[1249,1808],[243],[1384],[776],[485],[597],[881],[670,1663],[256],[1318,1870],[1088,1901],[493],[659,613],[687,882],[546,864],[518,1106],[1148],[460,1927],[1182],[1139],[460],[917],[1155,335],[427],[266,1317],[187,190],[1149,2295],[1270,687],[363],[1294,1528],[498],[504],[1342,503],[203,619],[422,640],[1279],[841,2972],[876],[897,2526],[551],[1208],[1140],[1257],[1370],[1305],[819],[1010,3301],[332,1975],[837,690],[1021,1190],[609,428],[771],[1363,1627],[296],[1001],[16,1527],[1417,1218],[1292,1371],[1076],[557,2246],[948,1439],[770,1717],[244,3107],[1168,3182],[638],[855],[217],[1334],[1165,1575],[236],[240,27],[759,738],[1380,2207],[457,1898],[613],[898],[764,233],[46,1936],[69,1831],[857],[926],[481],[1352],[1303,1771],[921],[874,486],[1041,3056],[67,2034],[1387],[129],[518],[980],[443],[472,1468],[1111],[1337],[649],[335,2460],[404],[556,2232],[1151],[588],[1328,78],[1130],[188,2739],[189,3202],[1105,160],[588],[103],[670,2477],[778,2788],[478],[132,3065],[822,2124],[1229],[1385,181],[254],[970],[522],[1412,1420],[589],[1113,2792],[835],[303],[1194,1477],[134,888],[1397,2598],[578],[1199,3084],[432],[178],[423,428],[87],[1185,405],[1428],[755,99],[519,214],[712,688],[891,649],[1281,1316],[429],[864],[335,223],[882],[975,1254],[169],[129],[669,2276],[729,361],[860],[1018],[1247,3214],[1098],[122,1637],[926,107],[615,3070],[1392],[117,236],[75,3008],[688,343],[524],[500,942],[24],[1005,1384],[554,343],[621],[1186],[581,1825],[892,2456],[692],[858,2745],[1043,1937],[1098],[561,376],[1010],[206,2294],[14,574],[765,15],[650,1806],[908],[332],[393,3149],[375],[1305],[1061],[1332,2591],[1384,1573],[1064],[934,2728],[199],[1426,1765],[1188,3097],[1330,604],[1106,852],[81],[940],[693],[894],[556,181],[457,1291],[89],[227],[1116],[619,1691],[429,1795],[26],[503,853],[365,581],[554],[944,2232],[878,1121],[1270,419],[912,374],[622,237],[519,2068],[1001,1811],[623,1264],[1309],[1380],[542],[168,1098],[307,1336],[769,3270],[147,2080],[1201,1808],[420,53],[384,2361],[1028,2306],[942,2917],[549],[534,1804],[333],[1063],[1335,2067],[1402],[1323,139],[872,1824],[1230],[526,2584],[145],[1253,299],[1117,2078],[915,3253],[1158],[1369,2966],[1127],[31],[586,1532],[663,1100],[811],[600,2684],[1155],[975,1565],[554],[150,2761],[811,1079],[332,2339],[1074],[1273],[431],[617,830],[325],[602],[1023,3136],[894],[263,3066],[807,483],[795,1888],[1346,2118],[1221,589],[154,3101],[894,521],[162,566],[132,2741],[1386],[58],[1337],[865,373],[243],[808,1173],[1272],[1421,1087],[1042,2661],[1201],[1267,3138],[404,1946],[950],[1368,6],[324],[1414,1014],[1027,472],[785],[610],[1339],[443],[185,1439],[1146,2051],[1152],[1327,1556],[627,1656],[547,217],[791],[253],[1396,1649],[385,2524],[1015],[1144,2706],[363],[872],[696,634],[1102],[845,2322],[1021],[503],[1293,2149],[27],[830],[451,1018],[1245,2522],[273],[1061,1735],[189,1936],[1143,2891],[865,2568],[426],[1408],[1231],[1019],[134,2599],[892],[578],[1116,2686],[1423,574],[803],[1193,1900],[169],[14],[1332],[271],[343,830],[772],[974,885],[855,963],[236],[413],[1140,2721],[691],[1281],[753,2321],[1296,1095],[937],[342,1082],[1305],[68,1202],[649,2277],[1354],[540,882],[961,2149],[175,1508],[1309,2888],[100,182],[610,364],[1130],[424,2483],[506,1623],[315,2482],[96],[388,64],[446,608],[668,2384],[598],[234],[1409],[351,136],[529,3049],[907,869],[241],[699,2753],[964],[321,942],[397,659],[1018,237],[819,2907],[1294],[1067,2602],[1294],[94,163],[199,999],[172],[1087,1263],[1329],[756,2669],[813,1257],[1071,3185],[105,1974],[1380],[313],[900,2452],[751],[908],[301],[448,2248],[455],[640,2381],[613,62],[751,2724],[1326,3250],[729],[175,59],[1304],[23,581],[222,2121],[766],[130],[963,305],[724,1084],[55,1227],[1401,2304],[44],[632,3089],[1032,2413],[47],[774,1457],[1416,1301],[239],[404],[744,538],[1037],[1253],[359],[1130],[688,1535],[1336,1238],[1282,2607],[863,1971],[19,380],[1248],[603,2572],[129],[1263],[411,2152],[278,145],[668,2173],[672],[770,2420],[1369,1510],[521,2569],[270,487],[352],[321,2960],[1344,2758],[32],[205],[581,2486],[366],[956,450],[478,3284],[717,2448],[1102],[1065],[1002],[668,2829],[119,615],[710],[871,1951],[1159],[1410,2899],[963],[711],[199],[422,622],[1043],[1033],[55,55],[199],[307,2891],[820,2058],[1084],[1027,1672],[428],[1255,1946],[233,2103],[1404],[72],[813,193],[1414,3220],[977,1349],[366,2839],[905,2235],[647,411],[37],[125,881],[312,1901],[89,464],[260],[1157,968],[145,256],[933,274],[817],[1098],[837,2111],[242,2787],[191,687],[770],[470],[585],[440],[1422,993],[752,651],[1251,1208],[93],[1201],[1067],[849,2430],[768],[360],[662,2908],[1277,1671],[1157],[532],[71,3078],[1085],[951,1192],[473],[354],[390],[872,683],[392,3002],[121],[689],[314],[1102],[911,460],[645,2692],[256],[636],[1181,3170],[1293,1826],[1301],[472,854],[306,2272],[121],[41],[1393],[1219,1850],[582,2878],[252,739],[572,238],[164,2481],[267],[753],[779],[281,410],[632],[661,1210],[1357],[1352,278],[259,987],[814],[779,3160],[216,3088],[1255,1313],[357,956],[968,3207],[1171],[206],[635,2554],[349],[1058,264],[201,957],[692],[556,2031],[689,2156],[336,1235],[396],[498,2372],[1042,916],[278,1734],[556,1162],[1016,694],[234],[1357,1284],[100,1776],[1097],[1096],[1025],[1342,356],[489,3038],[713],[913],[1282],[181,1774],[453],[347,336],[1103],[1414,802],[1126,450],[1345,2605],[952],[361],[326,1410],[115],[549,2472],[822],[1379],[1095,860],[140,552],[651,3170],[768],[461,215],[436,1078],[1089,2618],[1356,91],[241,388],[315,1231],[49,1878],[494],[903],[906,1128],[1278],[1311],[806,485],[1056],[1058,1393],[805,2103],[702,207],[460,973],[106],[1256,2482],[112],[802,3039],[236],[585,2715],[858],[101],[403],[1301],[1014],[612],[374],[615,1618],[1017,2513],[1114,1027],[23,2518],[201,2537],[959,787],[1238,2693],[170],[888],[1143,1458],[202],[727,1375],[93],[775],[1122,348],[30,2898],[441,1620],[502,3112],[162],[263,738],[1271],[183],[1275,3288],[3],[897,3236],[68,2682],[84],[71,2692],[971],[654,1792],[1243,2444],[320],[1055,833],[202,242],[96,2478],[813],[238],[284,391],[1394],[360],[1247,2656],[660,1949],[1058,3070],[1397],[1319,3118],[513],[30,2230],[574],[156],[1070,1253],[989,719],[20,2981],[76,299],[1045,2527],[167],[309,915],[160,2916],[1135],[1248],[327,412],[757,2509],[612],[238,1340],[795,1054],[158],[572],[166,2943],[667],[50],[1331,1218],[1226],[842,2851],[165,975],[1309,1463],[1198],[989,1537],[772],[419,1110],[1155,416],[831,3200],[1128,1652],[867],[98],[45,421],[122,3272],[763,1269],[46,1405],[61],[1073],[958,17],[299],[499,151],[1352,1388],[772,799],[464],[895,2069],[149,3056],[658,990],[1399,668],[1202,3016],[572,1552],[768],[492,1004],[1218,1153],[984,554],[1431],[513,966],[143,487],[1037,105],[1251],[661,1731],[1417],[806,1339],[16,2264],[30,2709],[40],[1262],[1002],[46],[1124,1213],[949],[96],[907],[262],[521,1504],[1406,2978],[774,1073],[25],[713],[276],[359,938],[866],[1228,390],[294],[1250,919],[1193],[1201],[395,3068],[33],[174],[1132,1531],[1406],[569],[1182,3184],[341,1207],[974],[47],[951,1257],[322,2939],[1122,2914],[957],[203,2823],[616,568],[94],[347],[1243,2443],[30],[451],[686],[1241,1159],[483,397],[949,2542],[186,2523],[748,3146],[101],[718],[739,1179],[747],[1013],[210],[937,2658],[214],[1257],[377,3014],[1018,1080],[944,2726],[1137],[777],[316],[758,3144],[421,3161],[821,1588],[174,343],[6,1528],[1174,1308],[899,27],[1345],[132,137],[8],[982],[469],[516],[663],[952,3113],[1356,482],[253,2012],[89,1548],[89],[33,3141],[1053],[1378],[1016,858],[551],[137],[70,1419],[134,1322],[349],[1257],[162],[743],[192,2702],[1268,2819],[1369],[599],[485,100],[1218],[1206],[1154],[92],[4],[488],[708,2008],[757,2196],[590,1327],[1040],[790],[406],[563],[1115,1185],[689,1374],[727],[931],[338],[1274],[913],[1355,1661],[1365],[1341],[871,343],[138,2666],[145],[282],[1416,1685],[875,1040],[418,2099],[838,2512],[1057,886],[636,1997],[1274],[1396,1671],[1068,3013],[692,3248],[558],[77],[157],[735],[655],[181,1351],[1399,343],[613,3108],[263,3128],[699,527],[507,50],[1397],[844],[33,364],[995,3028],[1214],[348,2353],[333],[119,485],[1204,2699],[740],[720,1434],[1364,2601],[1417,1621],[722,1921],[223],[1074,2864],[1240],[675,321],[568],[1048,2053],[1413,1841],[831,1264],[531],[1027,2353],[320],[1194],[403,1588],[1406],[1343,3167],[340],[152],[214],[414],[1187],[1016,981],[930],[951,1557],[1217,23],[552,3186],[1417],[549,987],[1037,492],[12],[807],[1217],[1261,1409],[33],[299],[541],[88,1748],[477,3188],[334],[554,1651],[1274,1094],[227,951],[440,1826],[1208,1954],[617],[455],[1403,1866],[132],[620],[118],[421,2322],[261,2493],[798,1004],[737],[220,1589],[946],[3,1940],[375,1592],[337,2850],[382,1527],[415,707],[427,350],[1382,704],[749,2394],[610,2218],[687],[455],[1159,1091],[570],[852,754],[604,1103],[1096,2401],[887,2050],[1176,496],[1323,1251],[282],[971],[875],[51,59],[1129,196],[1039],[866],[902],[872,3175],[454,3016],[86],[655],[553,1988],[1117,3224],[546,2614],[1179],[1121,2990],[1002,1363],[334],[1407,1630],[1106,2303],[391,1945],[5,986],[894],[413],[986,2801],[1178,3157],[156],[1376,2447],[1377,2600],[168],[1329,2401],[1258],[145],[319],[561,531],[1387],[867],[159],[732],[1343],[367,1962],[79,2012],[132],[992],[273,1291],[314],[1117],[285,2563],[527],[1320,288],[1298,594],[249,958],[317,301],[943,2701],[1224],[1232],[822],[879,774],[803],[1146,2526],[1026,3047],[619],[576,1752],[1250,3204],[1192,1919],[570],[300,173],[96,2615],[525],[238,3213],[567,167],[149,3229],[1388],[17],[426,611],[1112],[548],[319,336],[839],[1204],[1212],[260,1858],[1337,191],[725,1376],[305,1282],[1108],[557],[659,358],[1240,2928],[443,1375],[1092,2322],[1317,818],[282,60],[1124],[212,162],[873],[1008],[1106,1370],[602],[930,871],[1191],[526,3000],[1223],[881],[361],[678],[953],[1368],[843],[804,1778],[847,1693],[170,3024],[1064,2565],[751,2324],[561,618],[1158,30],[202],[68,2785],[423,749],[1294],[66,143],[1166,2354],[570],[1061],[273,2541],[205,2513],[454,2531],[421],[940,1026],[509,581],[962,355],[317],[972],[202,455],[947],[308,3161],[99],[257],[1158],[1033,2519],[1113,489],[795,247],[1364],[21,761],[59,3207],[107,799],[375,1322],[841,1691],[1322,2063],[684,2032],[985],[1229,1056],[520,2354],[1142],[307],[1260],[1055,2856],[1357],[122],[473,2815],[772],[61,1877],[1270],[990],[218],[916],[734,2153],[548],[533],[959],[908,918],[1175],[686,129],[810],[447,2487],[194],[849],[1022,2304],[590,1506],[771],[1109,3182],[190,1434],[697,2955],[1048,2686],[84,3039],[1240,3028],[620],[376,1440],[688,1120],[900,1463],[31,1661],[887,2300],[603,1757],[714,1331],[564,2870],[1084,393],[170],[927],[639,1714],[1365,1428],[850],[1374,905],[467,1303],[696,1421],[155,21],[133],[1267,1272],[1008,1300],[530],[72],[344,2904],[267,2577],[10],[544,1302],[1113,2692],[842,1252],[1353],[581,253],[576],[537,2771],[771],[162,2111],[40,2570],[1306,1245],[209],[1345],[581,2674],[471,3105],[483,439],[994,2629],[895,416],[765],[931],[95,691],[31,2620],[1362,250],[1301],[255,249],[1121,1444],[986],[897],[37,1087],[102],[322],[875,3143],[893,266],[910],[1133,1874],[101,1117],[58,2998],[363],[197],[602],[845],[909],[1335,1345],[655,1287],[1056,375],[657,3195],[473],[524],[917],[358,1587],[793,1422],[510],[265],[1287,2631],[470,944],[272],[937],[1167],[365,298],[116],[225],[804,230],[39,768],[1159],[282],[578],[131],[243,418],[752,438],[973,2373],[1131,29],[1188,3246],[1192],[1046],[1036],[315],[1138],[981],[78],[726,1658],[122],[262,2220],[791],[497,1559],[542],[1414],[723,472],[794],[379,2686],[356,2832],[696],[1186],[707],[895],[47],[1233,46],[743],[503],[1123,1947],[126,2468],[1068,434],[88],[825],[1075,1868],[171],[794],[515],[691,2970],[129],[621,1989],[754],[1309],[492],[99,1739],[1241,3181],[35,973],[943],[1382],[698],[579],[1215],[808,409],[273],[614,467],[1011,213],[570,916],[1335,2344],[591],[227,1911],[708,3264],[846],[774,115],[806,1342],[1273,2734],[920],[286,740],[738],[1281],[1376,117],[1049,48],[1031,274],[93,1465],[1263,57],[514],[1057],[844,461],[497],[1014,1820],[656,1327],[432,3153],[404,1606],[71,1800],[1126],[1243],[949],[526],[1220,46],[661],[338],[1250],[346,1317],[1232,2828],[214,3100],[512,608],[65,232],[98,2665],[182,3214],[426,2524],[1090,2931],[821],[972,323],[121,592],[915],[678],[767,1123],[336],[488,548],[1372,519],[474,567],[37,578],[519],[572],[419],[867,1729],[944,2763],[538],[392],[1159,2715],[1417],[756],[742,2509],[865],[1264,767],[127],[921,492],[1319],[616],[239,813],[1392,3283],[54],[1223],[540,1240],[727,2843],[707,652],[1077],[968,1545],[1247],[116,1826],[745],[389,3045],[356,661],[613,2355],[935,1923],[473,768],[774,572],[1274],[44,695],[781,959],[919,955],[96,1631],[112,2459],[740],[67,376],[1074],[610],[1393,2305],[365,2938],[61],[1016],[967,1187],[206,599],[188,2814],[306,1254],[761,1439],[410,3145],[738],[1057,1748],[55],[23,2328],[108],[1270],[95,536],[637,983],[535],[1131],[974],[94,1529],[931,3166],[218],[997],[377,2161],[987,1201],[1098,1983],[804,3186],[808,2573],[662,1977],[837,2425],[188],[996,1121],[131,1289],[433],[1430,2099],[256,2746],[862],[76,2189],[49,2133],[1104],[951],[1346,165],[356],[647],[534],[773,2916],[837],[1267,1419],[631,137],[500],[412],[3,1816],[1242,445],[33,3065],[1203],[248,2913],[1268],[535],[640],[1152],[1057],[530],[215,426],[1208,1042],[389],[1107,2616],[970,1425],[1123,1263],[1354],[339,1480],[219],[273,67],[204,2294],[1378],[52,1582],[662],[1209,745],[965],[673],[15,32],[517],[20,2233],[744],[1253,3067],[1260,2243],[460,3085],[1274,1751],[329],[850,1916],[441],[865,1755],[495],[1372],[1375],[341,249],[247,2563],[47,1162],[303],[1179,3108],[616],[904],[1229,750],[621],[992,603],[101],[866],[340,1398],[831],[167,2806],[1026],[1345],[1422,35],[1157],[858],[1005],[805,2715],[1285,774],[1043,2085],[787],[227],[425],[597],[808,1222],[1179],[1252],[197,2008],[240,1218],[830,1880],[1071,2667],[597,1452],[1406],[1058,96],[1074],[468],[1196,1331],[171,2108],[1108],[689],[638,2515],[773,1876],[660],[921],[1051,3300],[735,2592],[1141,1954],[11,2463],[394,866],[856,3040],[1219],[610],[1070,1833],[396,2477],[758],[462,2556],[464],[338],[1096,225],[115,313],[1358,1278],[1011],[522],[168],[155,882],[1119,935],[1374,1367],[750,1070],[413],[1404,331],[985],[1399],[186],[730,3038],[1402,1924],[333],[565],[437],[1174],[266],[957,1983],[907,1896],[164,2432],[1218],[284],[1401],[628,377],[656,2506],[981],[230],[364],[61],[1234,2082],[257,2136],[108],[597,1321],[1336,1635],[357],[265,2966],[417,2544],[1171,2684],[1357,2460],[221,2144],[1251],[773,1540],[923,1508],[401,1592],[322],[901,2544],[929],[1084,998],[1405,1054],[342,1109],[341,2766],[920,974],[1374],[1302],[496,2788],[671,1846],[284,918],[388,2649],[213],[627],[1268],[68],[1243,1797],[66],[57,1135],[784],[363],[867],[339],[1386,832],[1320,1828],[214],[655,609],[697,692],[648,508],[1062,1360],[1168],[623,1985],[595,1442],[166,249],[491,857],[1421],[73,3161],[763],[470,1928],[482,1183],[876],[763,2364],[118],[1403,232],[218,2180],[137],[1139],[875,828],[727,2219],[1130],[1266],[808,1208],[141,2909],[725],[1071],[1245,890],[567],[1393],[687],[1013],[281,1253],[1],[67],[1042,2732],[232,1001],[925,1317],[786],[1368,3000],[471],[43,1778],[206],[740,1536],[398,1680],[1254],[1376],[405],[416,2632],[1066],[318,1871],[224,2085],[386,802],[1127,111],[1330,908],[1138,562],[1049,188],[164],[739],[1285],[630,756],[854,1779],[326],[730],[860],[488,1871],[182],[896],[1171,64],[1146],[452],[301,2101],[388,2101],[1305,2316],[410],[394,1923],[1289],[916,1080],[1277,3096],[740,2979],[620,1753],[616],[624,2497],[455,3269],[394,3297],[1377],[310,1208],[310,2940],[309],[326],[690,1294],[1054],[646],[486,1688],[1259,2952],[241,1728],[1089],[1029],[724,1354],[1319,2755],[1281],[597,66],[1162,934],[313,1334],[840,468],[1117,127],[1155],[520,1340],[1172,2326],[353],[940],[339],[1237,2203],[1389,1621],[1339,3203],[682],[1036,338],[1014],[150,1430],[204,1604],[659,2195],[1140],[711],[1188,2317],[1197],[1157,1928],[1078,3291],[28,365],[158,3073],[1204,2402],[1034,3217],[560,3025],[545,2088],[383,1404],[788,1721],[1270,2073],[1427,987],[1324,736],[556,35],[112],[495,13],[1257],[216],[644,2305],[704,1745],[655,1416],[1165],[590,339],[594,368],[628,135],[1253,2662],[1198,1949],[81,624],[110,2648],[632,973],[548,1349],[974,428],[1328,382],[1233,1868],[200],[463,1154],[91,1050],[1349,695],[1163],[206],[15,681],[1146,1137],[476],[861],[1305,3291],[698,444],[72],[217,265],[687,2577],[260,3112],[767],[445],[819,2593],[312,633],[193],[1135,375],[1175],[884,2231],[574],[1119],[28,2691],[929,1982],[436,651],[865,1543],[804],[668,39],[327,1861],[1164,1388],[388],[1320,1899],[821,1428],[640,2543],[1092],[680],[776,585],[384,1140],[893],[1274],[1070,118],[499,959],[746,3040],[241,1187],[404,1401],[353],[929,509],[304,2831],[333,920],[1306,1986],[1118,2254],[1074],[1367,876],[585,1912],[931,876],[274,1043],[845,387],[52],[631,905],[1093,1302],[819,1154],[430,975],[1226,2642],[486],[669,3176],[985],[1300,1112],[1009,2691],[920,1210],[3,2477],[603,1002],[195],[1165],[1],[576,531],[88,1743],[370,1256],[270],[891,2805],[1084],[1036,3045],[135],[1069,656],[782,2243],[650,2121],[505],[273,1718],[300],[1156,115],[1127],[206],[1069,654],[933,2302],[244,2462],[1133],[469,113],[1023],[751],[911],[1154],[731],[356,379],[804,1517],[570,440],[87],[1096,2173],[635],[1416,2111],[475,1740],[1355],[409],[714],[589,1823],[1166,856],[1187,804],[356],[524,2251],[3],[668],[787,1716],[1381,125],[1227],[939],[841,534],[1371,1560],[426,3085],[879],[1063],[1156,1972],[114],[684,292],[745],[1195,1216],[746,2696],[340,1067],[722,884],[360],[1012,914],[965,191],[1058,1399],[30,834],[1082,1232],[156],[1282],[106,2457],[728,2782],[1145],[906],[1121],[872],[971,1047],[954,1029],[7],[2,2394],[602,2498],[271],[1191],[641,1851],[1201],[944,2759],[302,510],[842],[114],[944,2111],[840,3164],[305,1755],[956],[957],[152],[971,2865],[487],[1134,206],[1399],[1295,2107],[471,3053],[529,1818],[1033],[1099],[63,2954],[979,1167],[301,2702],[640,2087],[212,2058],[1017,775],[451,507],[998,32],[1316],[81],[1104,2047],[1182],[377],[470,2097],[84,547],[254,2946],[551,36],[526],[1204],[350],[1134],[77],[391,2148],[431],[176,1937],[162],[1148,841],[365],[256,925],[681,2557],[1112,2155],[310],[258],[1242],[1295],[539,2534],[1051],[771,19],[1090,761],[78,2102],[962],[874,787],[166],[245],[58,1585],[1168],[496],[1401],[1411,323],[1061,3046],[1427],[43,2173],[1203],[1216,510],[1134],[305],[360,2227],[1071],[27,2338],[1305],[1261,2865],[766],[1181],[620,2978],[509,664],[1278,1711],[670,871],[193,2543],[791,232],[1138],[723,2938],[672],[1223,295],[363],[717,371],[280,2713],[664],[299],[1195,2445],[887],[673],[1380,2946],[130],[910],[458,878],[294,1043],[962,471],[1301,2006],[1094,3047],[387],[217],[1091,1230],[372,2983],[651],[1194,708],[1137],[344,772],[805],[978],[440,1054],[185],[70,2666],[1383,2842],[1425,2565],[478,606],[831,1105],[1286],[958,2701],[668,3035],[273,1576],[758,1619],[1377],[561],[1038,949],[522,1841],[143],[1226],[375,795],[1005,491],[347,2201],[1232,3262],[728],[960,3128],[1036],[165,425],[140,2904],[1312],[548,1134],[1100,1427],[714,883],[468,759],[328,2211],[1425],[1061,1899],[1001],[514],[612,1423],[343,2741],[1247,745],[44],[1317],[438,866],[464],[722],[24,2198],[805,2215],[1178,361],[270,1821],[1231,485],[168],[1335],[893,276],[808,937],[545],[1272],[43,2771],[1339,684],[795],[794,3264],[719,2549],[963],[355],[682,2892],[1353],[735,3026],[564,203],[1095],[111,2767],[636,267],[147,2770],[269,3297],[952,2366],[1231,1738],[575,2010],[8],[506],[1377,1028],[25,678],[1263,2466],[725],[1200,1772],[855,1064],[72,504],[445,582],[566],[777,1417],[1383],[100,2282],[1381,850],[1371,2481],[660],[1330,2426],[230,1590],[327,971],[1033,720],[146,3270],[78,2322],[190,1407],[555,1589],[284,2122],[161],[446,874],[769,1675],[383,2821],[824,3031],[428,2247],[1284,1783],[846,2233],[796],[752,25],[23,188],[345,2086],[14,1589],[179],[1094],[25],[1122,2114],[563,1601],[1083],[1176],[26,1180],[848],[985],[192],[15,792],[674,2677],[990],[147,2259],[918],[533,1666],[20],[592,2744],[1285],[442,3022],[704,1676],[61,2670],[1217,2313],[652,1659],[1387],[1363],[154,2259],[1368,1320],[507],[1145,2157],[1166],[1248,1738],[524],[1148,2033],[6],[830],[655,2993],[850],[1240],[239,735],[1194,2554],[1020,369],[100,1122],[164,1893],[1037,2411],[1280,1356],[1026,1585],[450],[894,1276],[233,1399],[673,535],[1412,3057],[187,916],[297,673],[1060,142],[1375],[1360],[631],[1399,1212],[1014],[431],[674],[44],[491,141],[303,1406],[691,2428],[43],[237],[292],[174,3263],[700],[758,2255],[37],[1205,1322],[1084],[581,1446],[1404,307],[572,1384],[351],[1349,733],[1047,3269],[404,1029],[1101,738],[623],[154,1231],[366],[1041,3135],[534],[1091,2551],[579],[709,1088],[1121],[163,1552],[1308,301],[287,3111],[1087,1404],[431,777],[239,1750],[1426,395],[1087,1468],[931],[238],[277],[329,1771],[514,2357],[833,29],[1298],[346],[408,2847],[648],[1339,2005],[1363],[518,2818],[578],[20,1874],[1362],[1063],[632],[775],[1227,1656],[604,1566],[977,2891],[1105],[696],[46,1594],[719],[638,230],[59,2120],[52,1080],[1380,1246],[50],[171],[1034],[3],[1351,560],[847],[604,108],[1124,1087],[1269,2335],[292,2206],[985,699],[1044,3217],[139,2123],[1349],[848,240],[1038,2704],[1048,2085],[769],[1179],[1422,1368],[135],[955],[630],[548,1071],[1290,1256],[313,428],[1026,2162],[954,1235],[728],[516,2342],[1308,1837],[1071],[861],[1377],[1426,571],[1296,527],[282,1830],[1208,251],[279,1154],[76],[1128],[743,2108],[235,2134],[1189,1341],[1392],[1045,694],[1082,2336],[663],[278,2519],[428],[452,3110],[202,2027],[279,1852],[996,2832],[681,2647],[1009,2858],[626],[1319,1317],[427,2865],[839],[25,1818],[893],[184],[110],[945],[405,1842],[946,1954],[1042],[1104,774],[647],[195,3201],[889],[74],[696,1605],[919,1147],[341],[1067,193],[638,2549],[1057],[1019],[620],[364,252],[711],[1246,2596],[56],[673,496],[1197],[685,2373],[392],[1240],[1307,1111],[227],[383],[280],[358],[844,2800],[991],[923,3170],[996,1938],[645],[1333,2714],[540,2733],[1314],[165,2768],[158,1111],[402,2455],[212],[1116],[544,2940],[109],[696,2771],[59,3038],[613],[1173,3176],[1292,2512],[284,3214],[174,3259],[912,876],[459],[132],[366],[1050,2235],[86,1343],[562,38],[813],[181,1293],[103,3197],[1426],[461],[577,2367],[145],[77],[759],[842],[833],[1172,2456],[1235],[1388,2519],[1223,2939],[1025],[342,323],[1280,1818],[745,2010],[1111],[706],[1088,1369],[4],[48],[1307,137],[768],[1047],[1092],[593],[1377],[566],[260,1776],[1206,224],[1399,952],[901,2871],[812,2395],[495,875],[565],[308],[1360,2792],[891,2450],[1272],[890],[1355,58],[261,1420],[42,2220],[1067,1465],[560,1377],[383],[825,2167],[1413,3185],[288,637],[507,3146],[403,1473],[975,1799],[505,774],[686],[1209,2067],[643,624],[759,1743],[123],[124,550],[253,1455],[246],[209],[91,68],[913,1681],[878,3248],[671],[1416],[184],[1320],[1328],[23,1424],[1286,824],[906],[549,1372],[1123,2488],[215],[288,163],[1228],[275,1278],[1043],[1021],[1195,1662],[782,317],[179,2327],[108],[1149,509],[1093,281],[483,1141],[270],[940,2428],[814],[1409,233],[209,640],[450],[633,3063],[1373,1265],[48],[162],[255],[359],[619,1899],[396,789],[562],[409],[412,831],[1360],[1074],[151,2927],[1259],[819,2194],[1364,1829],[211,1921],[513],[1351],[1046],[1100],[417],[743,785],[1063],[1215],[1213],[1283,756],[1115,1956],[600,3013],[506],[790],[1332,3148],[840,1769],[899,3227],[176,1146],[514],[1371,1342],[710],[686],[1108,2778],[336,2779],[1125],[603,678],[559,1122],[565],[66],[823],[504,1366],[1384],[851,3275],[1245,502],[580],[608,2734],[531],[886,2432],[1083],[60,2990],[227,1095],[468,444],[128,328],[205],[611],[35,2629],[340,696],[543,338],[170,2349],[543,2678],[747,2587],[634,2410],[447],[1384],[304,1709],[1124],[529],[1223,1730],[880,3050],[672],[635,3167],[494,1106],[516],[469,725],[335,440],[660],[544,102],[646],[1266,148],[908],[387,3201],[687],[871],[1118,307],[195,2415],[952],[896],[310],[819],[1247,1119],[519,185],[1287],[1101],[1023],[335],[1276],[1117],[946,2495],[1358],[865,3118],[143],[494],[855,1670],[1088,2504],[626,699],[344],[351,761],[609,2654],[708],[643],[333],[473,1216],[948,2435],[1126,1868],[451,2734],[587,691],[1107],[1123,2062],[483,623],[1186],[650],[340,1843],[1223],[397,654],[1065],[947,347],[1328],[637],[1381,2418],[333,698],[1098,2797],[974,150],[494],[898,3125],[755,1872],[1045,27],[20],[984,1774],[353],[164],[1222,2687],[904],[672],[149,630],[963,2471],[329],[1043,2284],[1097,187],[1061,597],[1313],[784],[451],[1379,2797],[701,1131],[1199],[1246],[171,1239],[75],[1195],[537],[608,1685],[901,1898],[98,2402],[130],[945,299],[341,2869],[723,2304],[1098,1868],[1243],[168,713],[750],[1262,1359],[1202],[845],[182,3066],[1345,1439],[735],[318,3169],[445,2850],[517,1775],[1207,1862],[97,2107],[1348],[560],[117],[764],[831,418],[111,2227],[208,2645],[1264,2190],[124],[106,2830],[171,282],[768,1039],[1413,476],[1396,14],[119],[24,637],[441,3289],[623],[887],[660,348],[155,2835],[111],[1223],[1186,723],[863],[855],[1081,2929],[1366,2704],[776,850],[855],[855],[1209],[573,1976],[165],[401],[259],[9,2644],[1059],[190,1704],[1023,2928],[1221,1579],[341,2878],[191,1179],[57,2042],[1013,403],[933],[926,2892],[494],[371,126],[444],[1297],[429,1419],[820],[889,1324],[947,3258],[810],[831],[327,1834],[1292,1517],[1356,3303],[1427,197],[281],[476,2824],[582],[228],[162],[70,200],[1240,2464],[1341,425],[1353,283],[2,326],[971],[294],[424,1236],[686],[986,1097],[23,1250],[975],[53,2500],[186],[906],[277],[95,2769],[680,1311],[1001],[448,1616],[56,1971],[685,163],[303],[540,2690],[1354,670],[688],[110,1704],[1026,363],[704,91],[724,599],[149],[409],[704],[1165],[237],[450],[1121,3156],[47,2977],[133,945],[1338],[249],[9,189],[859],[372],[1310],[558],[24,1266],[1178,393],[867],[966,1781],[721],[148,122],[457,1572],[788,956],[62,3259],[500,2157],[578,2382],[562,2175],[227,1990],[949,758],[688,1769],[1145],[516,152],[297],[829,41],[241],[413],[1349],[776,3269],[353],[485,790],[813],[1285,1569],[848,1596],[358,772],[174,2242],[317,813],[665,2494],[113,3266],[298,93],[231,213],[1134,2483],[659],[901,803],[1412],[982,1119],[506,1964],[599,947],[195],[594],[921],[1291],[1378],[28,3106],[638,1013],[859,3274],[611],[589,189],[178,1540],[915],[156],[899],[1386,2053],[441],[208,48],[162],[455],[485],[945,1480],[1326],[67,926],[798],[328,267],[267,1372],[272,682],[459,1978],[920],[974],[340,2411],[1245],[66,309],[1210],[1249,1083],[938,2488],[593],[1061],[1274],[743],[1285],[30],[1396,191],[86],[743,2089],[184],[397,170],[1206],[137,2287],[560],[182,3152],[1320,594],[916],[713,3130],[347,827],[718,2198],[1084],[271],[536],[266,3285],[1050,377],[529,1139],[1227],[32,1678],[942,2821],[59,2634],[545,596],[141,987],[558],[767],[1071],[673],[1187],[1424],[6],[1],[279],[170,2556],[1013,2227],[1171,3124],[352],[729],[113],[1037,977],[522,1758],[1331],[150,1744],[36],[549],[734,2583],[975,1543],[479,1207],[274],[429],[537,2070],[1196,2580],[90],[870,1772],[711],[639],[987,123],[1214,2604],[243],[2,2734],[1182,2527],[482,438],[64,492],[815],[1340],[121],[135,2203],[1336,1651],[1107],[2,1280],[1354,505],[371,738],[1047,475],[708,179],[664,2923],[1219,3145],[992],[426],[1203,3128],[1,2796],[338,9],[1031,2226],[101,904],[1214,2202],[999,3294],[14],[296,32],[374],[1203],[1187],[1358],[331],[912,931],[283],[190,127],[1],[511],[1418,3040],[436,2362],[747,2521],[1041],[1311,1498],[525,2924],[1405,1722],[691],[925,1798],[167,2434],[253,2806],[329,1635],[913,784],[341,1597],[317],[620],[806],[239,1865],[1194],[137,2466],[202,114],[1376,1768],[412,836],[335],[403,232],[48,2118],[1245],[448,592],[569,2316],[1173,2],[1279,1613],[127,2507],[995,541],[602,2111],[921],[102,1822],[742,1693],[355,503],[319],[951],[385],[331,745],[734,1356],[239],[1068,3026],[1226],[1000,1104],[317],[31],[902,238],[527,2106],[276,1041],[1175],[497],[851],[481],[696],[418],[280],[673],[950,1318],[721,1678],[330,2114],[593,2802],[24,1804],[88],[1304],[1006,840],[328,2029],[1010,2953],[868],[1171,2279],[383,1153],[488,1849],[304,623],[614,2286],[1249,150],[268],[1072,2244],[202,3002],[510,24],[829,2184],[170],[341,1792],[334,1107],[1099],[146,3293],[887],[1048],[197],[516,1233],[852],[3,770],[810],[1378,2069],[913,2246],[1153],[1192,2204],[837,513],[563],[536],[948],[1175,2732],[1037,1195],[1095,1540],[108],[62],[119,1896],[968,2996],[667],[139,2474],[173,1605],[545],[945,654],[59],[1285],[770,770],[854,768],[132],[231],[636],[1082,1106],[1131,2927],[643,3276],[1182],[304],[81,2034],[518,1873],[620,195],[858],[237,1421],[422,1747],[759,420],[498,498],[74,2870],[1039],[779],[337],[246],[534],[1362],[672],[1425],[379],[121,3294],[1034,573],[1287,3092],[112],[1263,2082],[362],[910,2207],[921,926],[871],[46,2357],[1085,3006],[83,1319],[548],[1223],[494,2275],[667],[597,2122],[761],[324,1110],[643],[944],[613,29],[1370],[243,809],[98],[184,2165],[393],[756,548],[100],[536,906],[330,1067],[1071,2865],[937],[1172,553],[455],[417,1130],[1401,718],[1202,2821],[1309],[1188,1145],[80],[1039],[843],[1366],[595,1047],[867,889],[1079],[1086,1126],[289],[433],[686,1920],[935,1929],[605],[1188],[615],[70,1153],[1355],[964,1962],[653],[1372,1312],[317,2825],[729,2892],[563],[893],[383],[338,3042],[275,990],[712],[502,250],[1312,1316],[1337],[39],[590],[1286],[278,34],[1396,3200],[122],[515],[1275,1272],[923],[1075,2497],[321,2891],[262,127],[370],[173],[1127,1097],[1018,842],[437],[615,2880],[1333],[1300,1005],[493,2668],[1290,2933],[149,2554],[1285,767],[8],[1013],[783],[983,2696],[547],[1164],[606,2467],[511],[819,676],[414],[70],[243,1906],[684,1788],[814],[669],[937,2128],[991,2493],[628,2301],[1113],[578,840],[375,297],[623,14],[986],[344],[498],[498],[1009,2722],[451,2173],[466,477],[471],[753,1196],[1228],[290,454],[1211],[345,846],[1329],[400,1411],[254],[412,2175],[1361,618],[1401,2188],[63],[829],[168],[298,1633],[79],[323,2827],[43],[612],[644],[943],[415,1244],[1274,1799],[615],[139,2319],[875],[1211,1678],[105,58],[1010,1688],[1416,409],[905],[420],[1386],[733],[60],[1201,153],[493],[522,1081],[651,498],[612,2127],[1309,2150],[272,3238],[1163],[794,2037],[205],[1319],[492],[1119],[963],[961,1983],[152],[317,2517],[65,416],[695,2974],[1108,1499],[979],[1301,2944],[1211,1975],[756,1804],[736,2971],[240,3191],[598],[1263,1652],[1279,1971],[667],[659],[150,360],[924,2584],[1332,1083],[916,1689],[1280,3139],[974],[417,127],[189,39],[490],[536],[1358,1911],[200,3216],[1204],[225],[103],[1059,1593],[1147],[1067],[240,2029],[897,903],[863,1774],[1350,1641],[77,2530],[1141],[155,231],[1261,2675],[68],[308,557],[1290],[298,2779],[890],[577,1438],[113,2522],[362,2306],[503],[1094,1668],[1394,1560],[844],[503],[1297,179],[665,2484],[467,1152],[297],[1351],[15,1839],[936,486],[117],[753,1966],[66,1146],[1105,1395],[293],[1371,2125],[271,3027],[903],[526],[657,1115],[150],[272,1684],[1204,283],[1334],[825],[57],[20],[1356,292],[266],[308],[359,1758],[1067],[1071,1882],[132,1396],[1251,1874],[749,1011],[434,1727],[428],[420],[1279],[908],[884,422],[1120],[427,1265],[592,355],[864,3058],[1186],[1273,1259],[887,938],[1181],[1396],[1224],[441,512],[15,258],[1395,2231],[799],[151],[828,2798],[508],[247,1505],[1171],[647,2687],[14,973],[401,2908],[994,667],[1333],[360,1348],[324,699],[690],[128,597],[1019,876],[1346],[739,2635],[1267,1267],[404,1508],[682],[701],[203,1139],[647],[1306],[1254,437],[741],[724,1418],[811,930],[855,58],[281],[1214],[428,2364],[48],[924],[168],[1022],[479,2500],[150,2182],[555],[122,3277],[613,1713],[101,1961],[721],[146,747],[1269],[850,751],[855,3141],[17,2818],[738,129],[119],[1366],[420,1421],[86],[259,2414],[131,3175],[644,1299],[829],[534,1600],[1102,1998],[420,1037],[104,1343],[291],[357,140],[449],[924],[1211,1621],[1337,2717],[220],[1044,1499],[1224],[991,2889],[614,1109],[1004,1498],[1162,796],[1302,1366],[1407,3253],[441,2547],[152],[133,1507],[1319,3014],[1379,2043],[885],[842,332],[32,763],[1120,1850],[902,1411],[848,2536],[242,2646],[384],[568,1021],[535],[884],[295,1720],[104,534],[256,3279],[883],[424,509],[44],[86,944],[618,1539],[130],[752,1362],[320,471],[385,1034],[969,378],[1176,2589],[1406,1643],[572,1650],[925,1394],[213],[1071,346],[1223],[1112,52],[708,1517],[682,2145],[360],[856,2476],[1303,643],[1240],[934],[343,2364],[1190,1805],[966,1380],[399],[1280],[1219],[584,1000],[1329],[1383,1240],[1200,1750],[716],[842,2201],[1062,974],[894],[1130],[571,193],[720],[765],[466,1167],[1150,304],[1368],[530],[490,1182],[1198,3082],[1323,2335],[1274,474],[133,1865],[968,1119],[388,2435],[66,1238],[808,2666],[177],[637],[395],[1426,1315],[74,3015],[459],[608,83],[525],[1020],[162],[272],[568],[135],[1016,1263],[504],[345,1887],[640,521],[344],[296,157],[726],[450,1076],[242,1139],[358],[630,459],[843],[1134],[1125,3020],[986],[296],[1412],[248,1469],[1075,581],[639,1271],[1053],[1124],[1294,3163],[488],[1318,2900],[227,2777],[901,899],[1149,2558],[51],[1254,2949],[1290,1917],[292,2392],[1404],[1272,2693],[78],[203],[1105],[1056],[1111,2201],[852,1061],[411],[599],[1070,2272],[1246],[563,3048],[448],[364],[927],[27],[691],[150,909],[1299,781],[1295],[1357,1983],[235,286],[460],[367],[160],[1106],[854],[100,3032],[99,1150],[722,2184],[274],[97],[919,671],[14,3289],[50],[170],[957,2228],[1303,1393],[1339],[967],[1126],[1419],[970],[205,2062],[1413,385],[1288],[170],[983],[344,2448],[895,2743],[44],[80,1257],[680],[8],[113,2675],[866,1157],[567],[469],[1033],[773,1012],[1157,1126],[849,2910],[900,2003],[402,1031],[613],[338,505],[1210],[681,1690],[337,125],[1332,3115],[485,1937],[1246],[565,1072],[1328,3057],[210],[1170,1871],[232,288],[274,1428],[572,143],[151,704],[698],[397,3224],[608],[963,823],[601],[974,199],[390],[183],[1412],[675],[247,1623],[866,1921],[653,1532],[945,2170],[45],[111,1537],[883,2699],[728,121],[197,296],[847,285],[1221,2173],[83],[1292,821],[294],[699,1830],[1209,3097],[461,2438],[912],[43,768],[476],[974],[115,573],[1194],[31],[1095,1533],[1169,578],[614,276],[1298,781],[949,2511],[256],[122],[1423,356],[392,882],[360],[566,937],[944],[503],[603],[960],[1405,2635],[1152,186],[1344],[16,1486],[540],[308,2980],[512],[1275],[4,1726],[595,351],[726,2163],[1251],[1405],[1155,1012],[27],[548,29],[87],[1401,1014],[1375,2803],[766,211],[44],[1320,2312],[390,1841],[1166],[1094],[133,2510],[110,358],[232,1368],[816],[1239],[36,1694],[557],[501,369],[199,1874],[1076,2402],[1072],[1421],[852,326],[368,2412],[1402,3161],[224],[49,309],[740,2580],[34],[856,2798],[326],[265],[884,2257],[264,758],[687],[1239],[302,586],[895,940],[815],[408,1670],[716],[1230,599],[283],[1202,2713],[53,1621],[153,2204],[1429,1254],[506,64],[952],[901,1985],[591],[1239,30],[1002],[585],[908,61],[312],[148],[81],[562],[672],[16,1566],[1392,1322],[1362,1071],[708,1188],[33,2500],[769,2162],[1284,2449],[638],[996],[1342],[756],[429],[1008,3251],[1328,1170],[104,2952],[320,1239],[849],[1009],[768],[375,2056],[509,578],[464,129],[1083,606],[817],[106,2750],[1204,2499],[554,2231],[164],[552,99],[1109,1286],[606,1172],[757],[517],[1264],[316],[1333,374],[127,249],[711,181],[1017,3068],[302,3185],[45,456],[757],[1204,1827],[153],[926,2535],[462],[819,1777],[697,2547],[208],[457,1048],[1263],[400],[94],[952,2466],[939,1773],[1316],[1127],[958],[825],[186,2751],[753],[241,2129],[1316,2623],[643,2434],[76],[1216],[823,3126],[1369,2232],[15,326],[1373],[800,2667],[357],[166],[395,2271],[1300],[908,2327],[905],[34],[213],[815,952],[507,1695],[512],[1146],[582],[716,155],[175,795],[342],[1096],[1208],[1428],[1268],[533],[609,1887],[212],[924,503],[225,2755],[919,272],[390,1315],[1337,1475],[1422,1786],[98,1322],[927],[312,2443],[740],[1297,344],[347,868],[1425],[216],[309,3008],[406,277],[1418,785],[66,993],[1260,2603],[444],[743,3025],[261],[1207],[249,1589],[1045],[756],[117],[784,2545],[412,853],[1350],[1142,2415],[595,1233],[189],[262],[1394,2526],[252],[1012,306],[664,1590],[774,560],[187,2317],[1262,499],[419,421],[188,817],[142,2978],[1407,2804],[70],[352],[688,601],[271,2282],[857,868],[910],[910,1584],[1267],[1334],[820,837],[519],[481,2370],[75,15],[572,1632],[1259],[119],[505],[464,618],[635,3281],[432],[822],[1139],[367,2713],[1029],[303,811],[973,2536],[258,1103],[701,1604],[1308,1110],[262,752],[418],[576],[893],[352,701],[1056],[570,3132],[1280,17],[312,35],[559,1006],[547],[1081,1440],[841,128],[674,332],[1158,3020],[514],[1209,3173],[14,3002],[1134,2718],[1379,2477],[1053,2977],[662,2289],[1093],[1019],[375],[242],[317,821],[1125,1969],[1392,2733],[1393],[854,3268],[1238,3067],[348,1539],[1363],[357],[85,3086],[67,270],[1225,504],[216,2743],[599,1060],[464],[855],[1267,1416],[1227,2149],[431],[637],[251],[1291,289],[20,2639],[1043,2780],[351,1557],[1081,3033],[879],[1196],[1085,1668],[97],[800,657],[578,2384],[685],[600,119],[1146,1823],[846],[584,644],[974,1683],[757],[664],[1304,2697],[1377,1142],[539,1587],[1275,2563],[130,927],[87,2177],[790,1626],[973,2716],[482,431],[362],[751,1522],[436,1700],[782,180],[112],[691,1981],[243],[571,1058],[361,91],[229],[383],[383],[64],[744],[1057,955],[726,301],[1304,701],[136,2490],[683,2581],[1249],[154,778],[242],[843,288],[318,1781],[507,1615],[346,1002],[1217,2345],[379],[719,2029],[748],[1228,2043],[1078,2732],[1257],[1277,2371],[373,2894],[127,3105],[1243],[1084,390],[244,1394],[1062,1128],[531],[1081,1576],[1010,1153],[410],[884,2865],[1228,388],[144,3173],[93,571],[421],[418],[1092,3168],[847,425],[1319,27],[272,1090],[910,1723],[120],[1016,2284],[351,2261],[931],[112,568],[255,2783],[25],[738,1342],[316],[600,1225],[280,2152],[543],[104],[958,2012],[394,2558],[32,3043],[829],[575,724],[14],[883,178],[362,1555],[618],[95],[1130],[784],[548],[474],[967,2137],[1131],[934],[1356,1547],[994,3263],[1102,1525],[837],[973,2014],[778],[629,1303],[477,665],[1104,1263],[1231,3071],[26],[1274],[193,1652],[778],[687,2404],[598],[76],[644,2730],[301],[26,3054],[498,3286],[1121],[474,7],[165],[294,93],[359],[477,2597],[194],[218,2893],[517],[594,2632],[509],[936,3212],[1175,2476],[1165],[573,3183],[135],[260,1487],[850,1431],[12,2507],[659,868],[592,204],[1054],[690,100],[1206,2052],[1369],[691,2389],[579,1029],[784],[497,472],[818,1433],[981,1150],[254,1855],[1416],[1154],[1263,185],[121],[1127,1808],[1259,2791],[436],[1326,478],[258],[1060],[922,2315],[164],[984,1658],[895,1418],[1150],[1146],[864,709],[1271],[211,358],[448,2703],[392],[625,2149],[728,3221],[429,746],[1254,2190],[468],[258,3043],[675,252],[1024,956],[721],[27,534],[1262,195],[893,2879],[306],[1101],[724,2063],[1019],[1060],[452],[513,2851],[886],[437],[362,1887],[110],[1405,392],[590,996],[1238],[1315,262],[1117,1929],[146,2119],[971],[337,1916],[381,1820],[757],[844],[1147],[1192,1077],[889],[631],[1004],[550],[437,36],[1361],[888,2942],[257,1054],[428],[1305],[1214],[842],[1014,1079],[1179,930],[572],[278,1495],[548,2066],[538],[1353],[972,2438],[219],[1324,367],[49,549],[1282,2229],[82,2472],[634],[1090,379],[765,1283],[196],[322],[1124],[740],[302],[1123],[96,1805],[694,1518],[20,2008],[1008],[1427,797],[299],[1132,1839],[167,2249],[582,1232],[1411,141],[16,2888],[1074],[1420,2456],[1150,479],[634,2974],[681,2398],[527,50],[712,676],[336],[483,2769],[34,1706],[1027,837],[169,3075],[176],[580,2516],[1368,2764],[193],[91,2880],[892],[144,592],[1089,2799],[302,613],[285,2500],[259],[201,105],[498,1716],[947,1751],[1219],[157,262],[354],[96],[924,1895],[95],[145,2558],[632,401],[1377,2142],[211],[601,1876],[1181],[1038,3220],[843,1031],[265,2581],[766,853],[817,3029],[954,816],[47,3291],[807,1769],[880],[168,2815],[250,2554],[114,2531],[813,1731],[134],[529,2001],[899],[861],[413],[455,157],[663,953],[390,3189],[684,2817],[1156,1503],[484,457],[1430],[681,3074],[1263],[123],[682],[11],[961,1122],[588,2222],[416],[835],[671,2728],[758,1191],[601,3018],[1345],[59,1116],[564],[37,1493],[251],[570,2032],[58,3232],[1132],[366],[232,1108],[967,111],[158,1474],[124],[721],[440],[293],[1249],[1341,1271],[1263],[77],[1049],[1401],[1218,1680],[1429,2156],[770],[1179,1283],[962],[93,2959],[1313,3202],[601,357],[1379,3026],[79],[1140,3097],[469,1643],[669],[830,3110],[622],[524,3075],[1351,1803],[183],[24],[467],[769,2936],[101,1025],[846],[917,1622],[299],[1199,2068],[958],[443,1750],[1316],[1232,1755],[477,2505],[870],[120],[1416,1403],[1259,2257],[584],[1176,3202],[944,165],[197],[907,2442],[893,2256],[17,851],[502,926],[1380,34],[427,2460],[343],[999,1235],[239,1676],[55],[402],[286,1784],[967,1469],[460,76],[863,355],[319],[1048,3064],[156,937],[489],[361,461],[314],[316,1662],[1212,67],[802,2289],[545],[216,383],[158,1763],[208,55],[1317,1540],[352,2396],[801,1311],[1384,3092],[963,1383],[265,1870],[1285,3082],[3],[1003,1780],[1210,559],[773,3250],[640,373],[55],[1279,2805],[1336,395],[518],[1336],[990],[293,3204],[327],[1204,1673],[697],[991],[505],[589,1198],[971],[1298,1367],[508],[239,2198],[384,736],[1088,2052],[1243],[412,2590],[1386,382],[943],[1265,2500],[1163,2971],[950],[336],[595],[400,176],[574,1936],[801],[955],[951],[568],[920],[389,1015],[1328,2147],[361],[651,1125],[331],[781,1821],[142],[747,2726],[507,2284],[1099,1757],[1358,2536],[255],[1102,1093],[434,2611],[1135,150],[1311],[230,2971],[1173],[885],[1306,1919],[989,136],[13,1694],[541,777],[584,2799],[829],[435],[673],[1290],[997,417],[395],[144],[849],[1317],[57],[1398,695],[1198],[968],[1228],[865,3099],[1273,777],[1220,1141],[598],[121,1793],[1192,1316],[31,328],[199,138],[1174,2836],[1257,680],[420],[738],[472],[431,341],[339,2640],[305],[223,2701],[816,662],[486,1239],[663,1215],[479,1419],[491,922],[1400],[581],[1037],[138],[542,2598],[152,2368],[167,61],[1084],[1223,3108],[987,1206],[1089],[1058],[781],[562],[1084],[348,1225],[764],[496,1555],[784,157],[1067,3159],[722,2459],[564,1894],[1010],[181,1630],[1071,178],[505],[1095,670],[762],[186],[708,36],[353],[1193,2999],[1301],[520,396],[296,2870],[399],[1050,741],[614,2329],[35,510],[315,1914],[1430,2827],[1146,2533],[19,2053],[176,174],[905,203],[998,858],[890],[874,981],[1109,347],[989],[117],[614],[1320,2157],[1186,635],[526],[957,1989],[996],[574],[648],[333,2271],[1089,1598],[594,1676],[864],[637,794],[1366],[326],[904,3055],[332,2361],[1301,692],[786],[1168,2392],[339],[132],[743],[296],[684],[401,1398],[74],[759,3098],[21],[1325],[1277,2631],[783,1441],[182,2544],[1044,311],[940,1625],[898,2018],[940],[880],[540,2318],[772],[288],[40],[1244],[1359],[101,2076],[1203,1576],[201],[407,1220],[1150],[391],[921],[691],[113,2391],[114,14],[282,1348],[108,2765],[492],[681,2249],[1019,1923],[565],[1424,1996],[119,1745],[932,687],[369],[906,2926],[449],[35,3288],[708,397],[1088],[77],[370,2840],[1258,1330],[1],[1075],[450,3147],[839,182],[105,354],[306,341],[1061],[520,599],[6],[18],[821,579],[902,2900],[269],[1165],[187],[1405],[1234,1466],[1221],[89,71],[561],[1295,895],[565,1291],[1196,2527],[128],[236],[336,3248],[175],[1160,601],[799,195],[541,1566],[591,1358],[892,1878],[1362],[294],[418],[297,2792],[744],[565,1469],[161,817],[750,1922],[594,2245],[417,1948],[758,2264],[1066,2419],[427,322],[615,1481],[325,1494],[532],[1069,1968],[621,156],[107,674],[1127,1457],[25],[699,1706],[1331,1744],[434,1569],[329],[47,2944],[1089,50],[913,2387],[1353,876],[1265],[1135,556],[663,1055],[980,2569],[917,2630],[596,2790],[561,412],[181],[1349,514],[1212,1062],[1356,3102],[1342,1570],[426],[81,910],[1049,3022],[1307,1340],[165,2966],[1259,169],[884,675],[374,1215],[1407],[666,2598],[1175],[991,2076],[520,26],[284],[296],[964,955],[453],[516,170],[946,1757],[714,2688],[598,1289],[1286],[1018,29],[473,804],[775],[727,2026],[395],[545,545],[21,470],[633,700],[396,2144],[687,3054],[1225,3004],[731,2208],[1326,2396],[776],[271],[218,503],[1286,2306],[1013],[267],[1219],[1267],[1324],[1064,2954],[876],[1144,1697],[953,2964],[1159],[352],[54,2713],[902],[799],[276,3040],[425,2830],[779],[485,776],[452,2445],[613],[1022,1954],[730],[694],[1127],[852],[190],[601,224],[600,1110],[993],[1291],[891],[764],[688,227],[739,3303],[1075,19],[697,2369],[275,1685],[748],[1145],[824],[1429],[1072],[533,1564],[97],[149],[738],[267],[950,86],[493,2802],[959,2468],[175],[217,2776],[1079],[1260],[416,1030],[6],[831,577],[948],[1156,1194],[1309],[153],[1082,2709],[125],[415,2375],[922],[391,874],[1194,437],[537],[679],[1364],[1071],[12],[1142],[684,2743],[1279,1839],[1113,1161],[1309,1407],[346,211],[823],[523],[1426],[1248,1046],[872,209],[150,854],[1098,2601],[1283],[777,850],[603,891],[536,1072],[255],[1223],[591],[1380,616],[1237,2837],[75],[407,2300],[892,2140],[1367],[730,1742],[839],[864,2876],[390,691],[1104,1100],[135],[433,3007],[1123],[271],[286,1481],[115,2447],[629],[860,211],[791],[134,3122],[1327,176],[67,760],[12,654],[1083,441],[1358,1240],[1158,861],[618,1885],[1367,487],[175,106],[39,1035],[923],[132,209],[673,209],[937,2956],[900,1603],[1002],[151],[625,1304],[672],[244,202],[1144],[430,2989],[1064],[907,3012],[270],[929,1214],[978],[954],[688],[999],[217,1887],[805,1032],[688],[993,2763],[444,220],[1221,1384],[1001],[98,1002],[1378,1269],[439,2878],[1116,2208],[463],[1147],[38,1368],[543],[18],[311],[1161,2874],[1294,3045],[489,176],[1252],[1377],[1360],[1192],[595,407],[1289],[927],[985,822],[1256,2158],[1234],[218,142],[462],[345],[757,2736],[1153,2120],[157,1564],[1046],[1277,2927],[1086,2955],[337,2389],[619,2265],[665,1026],[496],[30,2371],[461,1400],[1003],[812],[1256],[290,2012],[462,3110],[1355,1649],[993,1586],[5],[103],[1418,360],[83,2230],[125],[1379,2924],[964,2096],[755,2586],[58],[129,1461],[835,3118],[1303],[813,235],[1310],[367],[287,2402],[844],[794],[1160,2209],[771,2205],[1273,1681],[203,554],[504,182],[525,2294],[257,2743],[896],[272],[1004],[417],[1405,527],[884],[821],[772,827],[167,422],[614],[428,2376],[512,2504],[1014],[1046,3228],[856,1281],[1135,809],[1074,1388],[812,1640],[24,3197],[105,2475],[600],[5,925],[1042],[575],[260],[748],[523,1320],[1346],[140],[283,3166],[858,3222],[1125],[324,3274],[1288,939],[1135],[296],[1187,637],[1013,2160],[6,684],[958,2321],[262,1225],[902,1257],[1425],[552],[1100,1694],[379,395],[521],[754],[14],[1252,276],[85,3062],[846,2515],[571],[419],[1147],[1073,2078],[1053,738],[1304,2983],[202,33],[530,1705],[1366,1454],[42,932],[982],[781,695],[818,1817],[293],[510],[566,203],[1066,750],[273],[523],[1289],[940,385],[793,2359],[628],[279,2673],[753],[12],[1079,1245],[757,2221],[646,1399],[735],[838,1488],[272,107],[723],[844],[816,797],[84],[1342,1076],[642,712],[1018],[890,3125],[763,1415],[539,390],[249],[531,1962],[808],[1093,2626],[139],[225,3012],[546],[406],[473],[369],[1391,1506],[329,559],[400,2141],[1318],[1144,1128],[240,7],[39],[1320,236],[542],[327,2417],[93,2223],[1155,464],[632,1924],[751],[1038],[1280],[1102,1688],[1083,1427],[456,1715],[1048,621],[806,2163],[1392,852],[1293,433],[1205],[1237],[233],[817],[779],[406],[1393],[799,2980],[960],[135],[1379,2763],[1040,3188],[245,2966],[305,1492],[354],[12,1662],[930],[1105],[998],[379],[39,686],[1372],[687],[1423],[1332,1756],[1347],[1191,1716],[1103,271],[169,2001],[1326,2125],[700,2385],[861],[1105,2214],[718,1351],[187,2198],[287,2929],[123],[853],[501],[238],[1226],[987],[569],[25],[149],[314],[81],[1029,1973],[846],[209],[1230,1252],[81],[249,2480],[640],[1030],[736],[241],[1180,1012],[1032,2924],[556,2934],[837,1210],[1236,1024],[766],[1372,3088],[627,1112],[1067,1928],[717,571],[645],[754,2777],[1185,905],[794,1106],[1386,331],[56,848],[654],[139],[766],[167],[793,1817],[707,2948],[244,2125],[596,1060],[226],[1192,2994],[188],[1234],[598,330],[62,3074],[1239,2841],[447],[443],[28,1972],[851],[593,2578],[1232],[1069,888],[69,1423],[160,1183],[934],[217,2412],[1270,57],[125,214],[395,2373],[438,2571],[496,1058],[336],[526,514],[554,2259],[1116,2872],[1148,2774],[1035],[255],[213,366],[132],[1290],[328],[297,3197],[5],[780,1789],[198,1067],[1187,771],[68,2261],[1236,1417],[227,2806],[1044],[288],[409],[1069],[1243,178],[978,3254],[684,96],[703,1879],[238,2880],[757,529],[586,3075],[1331],[1344],[345,2835],[13,184],[907,1257],[1223,1213],[782],[859,1669],[1362,1497],[1394,439],[123,383],[148,2305],[712,1281],[1209,904],[75],[305],[19],[1197,99],[502,2916],[806],[1170,2002],[1417,2335],[1389,2568],[1183,3062],[853,1928],[1166],[733],[461,3148],[100],[1200,916],[335],[1158],[685,3227],[919,260],[976],[1188],[1389],[1385,1702],[1225,752],[1040],[423,1319],[1299,1578],[473,500],[458,950],[113],[915,1974],[815],[455,3191],[685],[519],[208,257],[161,2461],[568],[1272],[1181],[109,791],[1381,2615],[845],[784,2510],[245],[522,2313],[640],[480,200],[806],[1009],[274,1381],[65,3034],[676,3135],[900,2050],[126],[380],[132],[515,871],[1217],[1301,2588],[709],[430,80],[699,636],[28,2592],[1247,344],[755,1645],[932],[494],[1322,838],[1072,1721],[231],[1099,2233],[302,681],[636],[854],[992],[1019],[1128,1910],[579,2699],[1335],[938,815],[1417],[598],[958,2348],[141,2559],[451],[722],[455,42],[451],[294,1017],[1287],[395,1032],[731,436],[784,1234],[1401,2354],[218,2871],[752],[944,2009],[643],[1126],[1374],[16,2653],[944,959],[1034,1621],[1416],[80,2043],[123],[555,1679],[887,890],[981,646],[814,161],[957,146],[397,3216],[1380,2872],[1318],[597],[723],[295,2728],[279],[250,1132],[1108],[609],[97],[481],[200,467],[77],[1274,2055],[1084],[891,1101],[39,416],[937],[291],[1286,1720],[18,1117],[533,2820],[548,329],[1425,743],[923,842],[777],[1209],[938,1544],[915,3283],[359,830],[530],[542,55],[1195,2936],[730,1269],[189,2948],[282],[925,2473],[1207,873],[702],[310],[1293,1365],[603],[1423,2453],[1090,2639],[499],[271],[1408,723],[1061],[1189],[1358],[95,2106],[1299,901],[1162,2483],[786],[164],[1315,1094],[1103,302],[1315],[678],[944,1230],[878],[695],[551],[24],[446,1320],[631],[252],[1007],[740,1620],[733,251],[716,770],[1387],[24],[485,877],[700,832],[316],[791,1162],[1214,1367],[511,1552],[1001],[1398,35],[1272,1125],[878,2442],[457,1746],[1069,1825],[217],[449],[478],[1002],[969],[845,698],[1184],[869],[1091,2473],[1422],[120],[750,2823],[270,1333],[963],[1125,298],[857,667],[1204,1807],[835,2082],[1082,315],[802,1222],[1203,693],[1180],[383],[460],[212],[1126,3300],[1122],[353],[258],[1290,2022],[1013],[260,1500],[1013],[521],[1318],[744],[25],[240,601],[822,928],[314],[1383,1320],[154],[367,2281],[791],[257,1873],[387,722],[224],[667],[702,1456],[1308,2833],[466],[831],[1281,2333],[910,2009],[791,3245],[232,1568],[468,2156],[194],[385],[343,1683],[66,1329],[651,1717],[1088,2202],[441,2816],[28,1707],[571,1138],[347],[839,2365],[510,2512],[261,1593],[842],[496],[1340],[894,2138],[677,1732],[1133,2114],[924],[463],[990,163],[347,554],[591,2361],[130],[837],[1264],[621,10],[2],[1116],[1121,2955],[842,1122],[1315,2031],[147],[1230],[483],[444,1275],[1426,673],[515,941],[900,787],[1252],[934,1919],[905,1181],[83,50],[1327,1901],[652],[292],[34],[556,2888],[944,2829],[1264,2231],[1322,2109],[237],[124],[1099],[895],[529,2251],[1308,2686],[610,1639],[1239],[1029,1589],[988,334],[204,923],[645,1955],[592,2075],[783],[545],[750,987],[767],[555,820],[823],[1245],[105],[668,649],[438,598],[1393],[634,1670],[686],[172],[316],[397],[50,2199],[120,719],[1398,74],[829,2362],[688],[332],[692,1557],[1348],[506,1084],[787],[1429],[1118],[1384,2262],[858],[1192,3108],[50,512],[80,3135],[578,3131],[1236],[1056,2535],[489],[1129,1518],[1419,1134],[1149,1107],[245],[315,18],[574,119],[608,1029],[228,41],[598],[249,796],[413],[1006,128],[678,2035],[856],[600,3067],[265],[624],[713,2190],[1045],[650,1605],[1106],[1428],[243],[1103],[956],[508],[732,2049],[1424,1148],[657,1974],[511],[47],[659,1196],[865],[120],[929,630],[410,1038],[1160],[1048],[688,1682],[215],[1326],[255,342],[537,1732],[828,100],[27],[637,1961],[197],[37],[837,3273],[1340,3058],[1211],[628],[357,166],[1375,2556],[125],[501],[69,2402],[290,2138],[679,1225],[306,893],[780],[1413,2640],[623,1655],[852,821],[726,3197],[1090],[254,2821],[55],[1125,1802],[346,2656],[272,1498],[931,3073],[453],[1141],[1046,1128],[739],[187,2068],[952,2706],[901],[753,2966],[799],[55],[1363,1487],[651,1621],[694,1066],[981,2294],[24],[182],[600],[324,1622],[753,1039],[885,2618],[200,249],[280,1470],[1218,3037],[505,2612],[839],[786,1397],[851,91],[377,2867],[904,2183],[781],[153,2360],[837,2938],[1110],[872,1106],[1425],[912,3133],[107],[435,1222],[293,104],[987],[442,1190],[430,1677],[416,140],[461],[495],[1214,2826],[727,2122],[955],[1012,636],[338,161],[989,1904],[46],[1204],[133],[1029],[224],[491,567],[287,2393],[263,2189],[376,2003],[621],[136],[462,1622],[561,2246],[1337,589],[619],[1405],[274],[705,1330],[600],[1016],[1207,1572],[1237,358],[71],[863,1156],[58,638],[530,292],[5,3155],[199,2844],[119],[130],[1364],[429],[698,797],[142],[948,2163],[1381],[686,2619],[470],[696,2054],[1396],[498,3092],[1012,1910],[164,2796],[674],[328,2037],[1286],[697,938],[1289],[125,3138],[1420,2427],[890,68],[136,5],[587,2079],[87,318],[1257],[1322,1604],[141,2598],[1420],[787],[1179,380],[754,1958],[191,458],[679,2195],[813],[1249,1702],[1291],[855],[1111,2336],[1137],[1401],[1130],[834,1816],[882,658],[1371],[243,2627],[1348,1096],[1362,3074],[202],[980,3199],[216,135],[146,2671],[190,1849],[1413,2250],[1097,1473],[481],[493,2956],[918,2920],[292,3287],[996],[29,2749],[1091,1313],[917,576],[756,2000],[9],[83,1276],[991,1150],[858],[1393,2683],[710],[674],[481,525],[1356,466],[79],[489,2742],[1405,433],[1223,2120],[1114],[254,2505],[1071],[215],[615],[152,2472],[915,1520],[1005],[1166],[918,1367],[1126],[1073],[1208,1276],[245,2238],[86,395],[930,193],[489],[564,2837],[181,385],[67,2673],[450],[257],[880,3132],[685],[519],[1082,2986],[1004],[339,1993],[1258,2245],[585,3253],[1399],[1181,2041],[646],[101],[22,1277],[1107],[398],[728],[56],[750],[1034],[886],[282,115],[423,138],[980,1278],[1250,3147],[573],[239],[1159,1619],[632,1847],[605],[1035],[76],[1177,2079],[1039],[966,1667],[49,1534],[793],[1087],[107,3120],[1360],[965,1134],[1404],[1430,2558],[1029,902],[588,3282],[1359,255],[1038,3250],[74],[9,2537],[97],[886],[304,2011],[532],[1064,1393],[1194,2608],[326],[1077],[41,1109],[131],[1245],[1429],[718],[290],[568,3297],[869,189],[439],[424,1698],[187,874],[402,3],[1112,820],[456],[481],[199],[641],[999],[529,1373],[796,2677],[837],[868],[80,2176],[924],[660,2278],[292,441],[1376],[753,2966],[340,2262],[871],[568,186],[267,2976],[259],[677,3223],[211,2635],[1116],[109],[533,2375],[270,1617],[648,1632],[529,2522],[1277],[728,189],[45,1094],[708],[431],[1252],[1108,2692],[1087,9],[831],[203],[1422,90],[606,2589],[105],[987,3257],[357,2184],[18,2470],[1334,2277],[1221],[79,1656],[949],[318],[350,3172],[438],[307],[942,128],[18,538],[458,2546],[725],[497],[257,344],[1352,1375],[273,1505],[765],[176],[661,567],[1039,1557],[1240,658],[527,2533],[248],[324],[928],[280,3180],[1299,1735],[145,112],[1414],[1160,3258],[639,2974],[5],[164,1569],[399,3196],[1099,2886],[524,3234],[1378],[307,2002],[484],[193,545],[1212,944],[607,1265],[643],[513],[1151],[1119],[243,873],[627,2972],[824,1784],[884,3181],[1048,2991],[67],[1021,861],[557,266],[775],[76,3052],[715],[290,2579],[482,1789],[469],[1088,1408],[499,2869],[1193],[908,1643],[785,246],[307],[785],[1265,2493],[341],[554],[2,2150],[1142],[1147],[965],[979,2870],[1080,2853],[344,2001],[1002,1918],[292,2321],[1401],[348],[1408,372],[232],[773,2274],[1365],[720],[606],[1395,1425],[1088],[571,2601],[1220,2612],[1400],[136,2688],[892,375],[678,2216],[632,260],[427],[696,2552],[1026],[721],[1163,291],[1094,1795],[190,1041],[1164,10],[202,292],[707,1192],[1307,3122],[1338,1805],[1365],[447,1840],[531,3201],[704,477],[606],[749,2745],[812],[1298,2806],[272,3265],[102,947],[825],[796],[229],[224,1110],[134,3265],[1370,913],[1338,2397],[40,1117],[1397],[890,565],[1194],[90],[68],[1152,2946],[276],[1152,1195],[436],[177,898],[1075],[1065,2123],[1351,1515],[1121],[381],[377,27],[1141],[994],[1302,3010],[1401,1133],[338,66],[824,722],[311],[27,2400],[663,2751],[1195,2940],[747],[1320],[955],[32,2226],[970,2586],[145,2527],[307],[1424,2119],[965,2709],[699,2630],[158,2369],[79,272],[626,1859],[54],[572],[42],[463],[575,1181],[276,3120],[695,769],[395],[197,1144],[899],[1273],[447,1840],[385,2031],[661,3291],[709],[1166,524],[941,2093],[727,2957],[1165,2501],[1223,2321],[1121,3065],[1167],[927,2284],[793,602],[916,43],[761,2419],[524],[1094,2623],[1014],[1376,2603],[1175],[885,354],[779,2287],[1357],[1244],[747],[1300],[503,2061],[320,1508],[685,3297],[792],[1343,1250],[1176,469],[889,2016],[1398,2758],[602,1240],[1244],[488,1351],[1373,3159],[599],[38,891],[293],[311,2701],[650],[374],[519,625],[920],[1267,2056],[224,1413],[688],[324,978],[868],[1282,1908],[537,535],[78],[1204,2371],[885,2710],[782,538],[1161,1281],[1195],[128,578],[1192],[814,68],[402,2470],[1186,1756],[441],[461,477],[838,127],[567],[1060,3254],[1390,2728],[950,1479],[687,718],[150],[19,2810],[372,2530],[465],[335],[1344,20],[503,2046],[3,1847],[1365],[1351],[145,545],[126],[835,2005],[1309,2242],[925],[724],[513,59],[123],[131,1884],[733,1878],[507,1957],[146,2027],[717],[84],[222],[1081,1337],[633,314],[945],[836],[863],[1180,1385],[1312],[52],[709,805],[895],[269],[273],[835,838],[1054],[993],[31,1260],[1002,1453],[280],[101],[267,415],[808,690],[640,1243],[733,2622],[626,3030],[1174],[419,1788],[97],[712,287],[332],[51],[905,1359],[1057],[1271,402],[1019,2250],[1237],[1347,3169],[1155,1582],[1402,1788],[850,2326],[1240],[752],[244],[1228,881],[695],[531,2399],[821,2639],[591,199],[109,1426],[456],[977,1892],[154,2916],[594,698],[473,58],[388,835],[1103,3085],[1310],[953,1178],[376],[179],[1156],[644,59],[106,2368],[477,38],[766,2698],[1381,204],[422,356],[991,34],[479,2263],[823,698],[454],[114],[464,2132],[1248,2831],[1405,2942],[1062,282],[511],[662,1624],[1317,1083],[525],[33],[706,1745],[1380,1827],[787,3287],[360,1313],[1152,666],[568,602],[387,2018],[783,2675],[633],[388,1353],[675,3040],[762,1229],[558],[852,339],[237,499],[302,893],[42,672],[468,1065],[340],[27,1081],[455,522],[706],[866,1511],[1330],[976,1245],[316,2990],[1031],[1199],[1038],[903],[987,734],[1372,1944],[37],[983,843],[944,2500],[117],[790],[1105,91],[902,3223],[983],[1268,2059],[442,325],[1365,2725],[711,1856],[612],[259,2927],[1166],[226,893],[1427,814],[10],[336,1853],[71,31],[893],[1269],[389,2568],[487],[1422,3027],[460,1030],[190,50],[1093],[31,3278],[957,1795],[1309,900],[1386],[199],[204,232],[1365,1206],[621],[598],[1215],[113,945],[678],[117],[775],[1005,1129],[9],[971,59],[193],[862,1572],[203,488],[586,3038],[1229,33],[871,2777],[973,2925],[1214],[1156,1492],[1149],[1122],[516,1451],[1222],[834,1584],[283],[718,1517],[548],[1167],[334,1933],[1410,1502],[833,701],[567],[453,2998],[767],[1335],[560,10],[1427],[1227,2966],[1339],[572],[101],[777],[532,2214],[1126],[1122],[1142],[685,2033],[1411],[677,91],[1058],[213,2402],[22],[44,3062],[1169,418],[1227],[420],[1163],[234],[249],[52],[688],[771],[479],[288,231],[20,196],[867,1690],[677],[239,2188],[1215,769],[1142,1070],[799],[1188,2127],[1253],[388],[207,1014],[817],[1031,1951],[1053,2011],[892,2784],[1322],[1029,2569],[755],[460,2098],[1063,1127],[719,3169],[1095,3152],[827],[125],[935],[926,1848],[761],[207,1773],[1370,463],[1328,280],[1122,614],[1192,1254],[298,1141],[439,2280],[1060,1454],[741,204],[363,456],[39,384],[603],[97,520],[384,529],[1040,2377],[906],[1069],[1263,1786],[1426],[419],[1286,3276],[88],[185],[917,431],[1154,345],[306],[1209],[787,2070],[473],[1126,974],[721,144],[1280,1802],[1044,2351],[498,303],[49,820],[247,2467],[232,47],[443,1765],[937,2280],[204,1269],[1385],[293],[2,1593],[506],[99,2872],[634],[521,3221],[414,256],[1090,2551],[117,3022],[592],[1299],[550,2461],[683,2297],[1021,432],[1059,2029],[128,3288],[509],[694],[270],[339,2401],[324,379],[1114,1387],[849,2764],[359,2479],[778],[575],[1084],[821],[241,1694],[1090],[1220,227],[133,2666],[780],[1207],[182],[561],[346,2974],[378,1292],[460],[1187,1399],[927,3131],[1297,369],[520],[923],[836,849],[207,824],[256,1605],[1065],[474],[944,1036],[475],[630,1300],[559],[1348,1186],[1191,2359],[452],[937],[350],[1125,3124],[361],[539,1760],[900,2427],[925],[863,20],[1004],[87],[382,2582],[708],[963],[1207,1558],[1352,1513],[425,2451],[735,2814],[547,2695],[1257,2142],[702,637],[83,734],[148],[974,159],[572],[1408,2460],[1213,896],[508,2943],[1223],[1285],[642,907],[994,1752],[691,3043],[955,2529],[319,1601],[1263,789],[331],[83,903],[268],[114],[307,717],[522,1269],[623,1100],[387,499],[624],[800],[341],[481],[331,1161],[406,3014],[858,604],[541,399],[770],[93,227],[55,3207],[1283,461],[1250,1345],[1293,2596],[906,1165],[815,3086],[1052],[45,1251],[695],[1228,1149],[160,154],[775,976],[728,1425],[478],[1095,3006],[286],[773],[923,2977],[946],[267],[119],[929],[1282],[953],[888,286],[1016,2467],[617],[658],[425],[463],[767],[617],[344,1589],[1036],[1017],[1328,2525],[1114,1213],[665],[1420,1719],[573,2523],[203],[676],[45,1152],[853],[518],[737,2488],[862],[462,1152],[425,2414],[382],[667,352],[638],[1412,2780],[1045,1513],[1191,799],[939],[79],[476],[1020,2916],[1045],[1255,653],[862],[324],[862,1581],[1216],[498],[1187],[76],[963],[1272,510],[752,1301],[630],[737],[792],[740,3148],[613,1699],[42],[538],[185],[1017,2205],[785],[1072,1667],[1345,3250],[608,892],[893,1254],[759,1595],[435,1962],[491,2597],[1228],[253],[332,1816],[1205,2683],[243,44],[577,565],[1364,1267],[583,3031],[1427,1392],[1346],[360,1195],[306,3301],[387],[1264],[1373,2863],[1093],[727],[58],[178,2166],[357],[1311,3121],[1426,2341],[153,3264],[346,656],[751,670],[369],[680],[1162,834],[1243],[598,453],[888],[562,3032],[711,1459],[895],[757],[531],[545,2308],[770,2882],[979],[648,1094],[552],[996,1762],[1409],[220],[1244,2076],[209,1634],[324],[1136,3009],[1190],[886],[32,87],[1387],[918,2141],[479],[320,2747],[1219,1272],[319],[906,2168],[486,2639],[758],[1364],[318,2307],[1426],[64],[1317],[750,160],[59,982],[884,2112],[454,378],[456,3053],[711,2184],[566,125],[28,3134],[1241],[82,509],[520],[1166],[1338],[44,1062],[1404,820],[901],[244,860],[141,604],[33,1168],[110,1884],[1079],[585,410],[254],[364,3194],[1346,1362],[287],[287,2849],[1168,2031],[584,2392],[1210,3172],[569,2151],[192],[268,2964],[1429],[1178],[405,3033],[581],[580],[28,2974],[51],[1354],[129,2144],[313,527],[20,3014],[273],[592],[29,422],[1430,1211],[1280],[119,260],[549,2606],[1130],[1031,42],[1257],[574],[1215],[341],[716,2809],[14,2376],[891,1992],[530,2235],[950,764],[1196],[1221,2333],[1114,817],[543],[968,1572],[285,1945],[650,2408],[23,1384],[917,3076],[498],[27],[637],[249,2697],[417,390],[579,2321],[273],[294,1665],[657,2328],[692,1189],[1355,1926],[889,2201],[335,696],[1238,774],[188],[163,333],[1194],[702],[556,2326],[621,521],[15],[1099],[352],[1291,2163],[767],[669],[1373],[153,205],[1144],[1412],[1356,2909],[644,2859],[478,1649],[1320],[1184,2890],[1242,779],[1258,2831],[886,1409],[378,461],[551,57],[413],[1233,2007],[245,198],[250],[143],[1208,1165],[272,1624],[161,2780],[751,197],[958],[1343],[266],[425],[1220],[724],[56],[271],[709,1401],[621,1354],[784],[969],[1107,731],[1385],[978,1806],[1042],[1344],[77],[237,2119],[897],[1107,428],[71,177],[1094,3101],[396,1565],[842,2670],[667,167],[627,1239],[975,1198],[8],[633,894],[1377],[307,802],[355,108],[429],[220],[1415,2220],[324],[1313,3291],[641],[581,2772],[564],[64,1339],[601],[895,502],[1414,933],[61,3084],[1168,3141],[1129],[336,3116],[777],[397],[977,2294],[603,1665],[147,1721],[227,1687],[440],[707,1807],[946],[1407,1262],[878,2863],[476],[392,1796],[234,1081],[1042],[357,430],[642],[1417,2974],[59,812],[26],[24,1048],[1261,1192],[395,1245],[1188],[767,2973],[1007,2602],[199,1865],[326,873],[1403],[203],[132,2160],[246,1951],[1069,2758],[1070],[882,2733],[1312,2397],[230,2432],[769,1730],[762],[945,1947],[1416,1260],[1431],[1351],[628],[748],[1258,376],[753,2967],[1135],[134,86],[682,493],[243,2196],[173,347],[881,1890],[1130,210],[1335,2630],[113,975],[947],[686,61],[341,1796],[943],[620,2149],[605],[631],[1270,1966],[1155],[125,1717],[773],[548,72],[814],[759],[796,2279],[1354],[113],[607,925],[645,702],[1199],[69,1838],[867,206],[565,1628],[382],[20],[1396],[71,2529],[420,1264],[762,633],[360],[150,62],[66],[544,204],[671],[1013,2099],[1092,2774],[1],[613,798],[1133],[1068],[1028,1136],[987,3020],[826],[42],[1128],[417,1333],[1],[872,340],[1215,2002],[746],[505,1948],[970],[558],[909],[1239,105],[1301],[1080,1483],[1107],[903],[628,2856],[1107,3250],[333,370],[128],[1307,762],[625],[791],[30,1669],[924],[887],[84,1753],[184,2109],[43,1615],[606],[459,870],[821,1533],[396,1973],[325,3086],[1050],[162,1829],[314,2390],[1001],[1249,1220],[586],[201],[589,1681],[239],[48],[753,2392],[19],[641,2867],[37,2819],[537,786],[889],[33,906],[327,2044],[1364],[743,817],[750,1258],[42,3084],[1307,2168],[127,3086],[70],[757,138],[30],[649,2972],[1179,156],[998,1018],[1078,552],[89],[134],[1141],[1330,2007],[120],[421],[574,2772],[16,2426],[262],[1410,1757],[521],[464,1019],[620],[290],[1018,2431],[358],[246],[979],[604,2056],[453,885],[1147,3148],[807],[1173],[198,1768],[151],[966,2364],[414],[985],[1309,1428],[1190,686],[32],[997],[811],[517,1795],[1313],[1120,1780],[885,2708],[42,389],[643,3207],[1192,1544],[488,1341],[431,2352],[282,3217],[652,2691],[1040,1294],[1040,2228],[129],[299],[1109],[1288,206],[507],[52,152],[965,2053],[1310,2274],[25,2160],[416,2409],[901,726],[1163],[1222,994],[828,786],[210,2868],[1057],[1040],[509,475],[890],[240],[1405],[998,1251],[774],[1379],[1273,2691],[563,1257],[883],[44,1822],[1138,1840],[704,1332],[160,2550],[104,1796],[659,645],[415,1604],[1190],[95],[1062,1385],[1064],[1131],[1384],[1156],[668],[605,2408],[754],[1420,1551],[1304],[60],[1042],[613,1916],[1356,571],[1061,2210],[438],[1372],[837,1265],[684,1656],[679],[190],[669,3091],[421,1152],[1155,3096],[1128],[1267,2839],[1085,2793],[1142],[1053,3129],[1060,135],[366,471],[793,1056],[759,2643],[509,746],[39],[230],[933,3210],[1121,1663],[719,1273],[1350],[921,767],[569,2887],[422,2546],[80,1619],[856],[1308,2853],[869,1802],[1147,290],[725],[1196],[748,1010],[1353,1064],[593],[945,2533],[151],[1230,428],[99,3211],[1301,2352],[1239,2090],[1246,1913],[697,1007],[1211,3302],[262,2188],[600,2665],[253],[252,615],[493,1623],[676,3061],[867,3142],[747,3007],[1058],[898,2521],[436,3245],[1428,616],[119],[1335,2641],[1122,1400],[359,2049],[1107,2744],[892,1900],[1075],[334,2219],[821,3045],[1145],[915,2684],[395],[939,676],[62],[350,2933],[800],[403],[703,2714],[845],[1210,2913],[962,3108],[1011,3222],[113,1293],[707],[876],[597],[1151,3224],[241,533],[24],[595,1381],[901],[258,2201],[705],[251,1310],[761,1909],[858],[273],[442],[663],[1254,2923],[813,468],[931],[156,1847],[1294,443],[119,2024],[50],[846,3048],[148,2867],[1042,2173],[1345,475],[247,622],[238,1181],[1389],[303],[597,3059],[1321],[1334],[1093,2665],[537],[162],[178],[1429],[902],[802,807],[890],[674,2418],[929,2786],[375],[485],[801,2935],[877,683],[1340],[709,1252],[267],[14],[668],[1243],[982,130],[977,881],[747,720],[842,2432],[1020],[1186,231],[1150,2346],[1263,2958],[511,885],[1201,3241],[998,2307],[380,1292],[835,3239],[511,1184],[82],[1195],[939,1757],[1133,3066],[446,3263],[562,1649],[1274],[1305,90],[682],[497,2799],[271,2810],[640,1482],[760,797],[940],[222,699],[667,1956],[214],[1214],[79,774],[696],[715],[1171,1299],[1387],[787,507],[1229],[378],[487,1948],[352,3277],[489],[805,3242],[131,1198],[1406],[294,1966],[1175],[786],[1155],[677],[1360,365],[1149],[52],[656,1240],[989,113],[808,226],[98,2580],[1273,716],[373],[949,543],[1025,2846],[1388],[839,2160],[246,849],[1143,476],[41],[1162,1700],[803,2708],[834],[1200,2464],[889,890],[744,1816],[461,1647],[371,2014],[203,2624],[1385,1192],[704],[340],[1341],[226,3075],[921,2591],[1378,2050],[1410,3106],[1349,346],[352],[1021,2168],[959],[729],[785,1100],[1342,1547],[1164],[797,3060],[512,2617],[1384,799],[507,712],[1262],[768],[484,2898],[272,2016],[1033,1454],[1109],[1229,3011],[1277,1237],[959,3292],[11],[46],[118,298],[1059],[340,247],[1071,2187],[129,3286],[188,660],[375,503],[527],[1055],[1363],[624,889],[237,329],[159],[575],[787],[1247,2804],[675,1447],[1278,2366],[744],[1064,1183],[1183,1603],[211],[97,1894],[894,1048],[1395,3138],[194,2944],[765,1507],[1142,3263],[829],[10,480],[81],[507],[1359,2055],[1072,2406],[43,237],[34,658],[942],[919,3170],[1210],[732,2703],[252],[1297],[1299,3248],[685,1820],[1038],[4],[452,2156],[1425,2332],[936,2369],[693,1138],[957],[825,2722],[614,1021],[1103],[163],[111],[1138],[79],[1109],[107],[1332,466],[928,1887],[68,1108],[255,2723],[244],[117],[407],[778],[451,414],[695],[24],[1182,916],[684,1261],[1304],[1080],[1347,49],[799],[1073,1769],[1005,3006],[693,2906],[622,1531],[701],[649,838],[1321,2021],[1355,3017],[1199,424],[1197,723],[974,150],[1226],[823],[898,1203],[155,2159],[468],[1286],[1297],[338,2421],[377],[608],[168,1626],[573],[36],[1178],[662,1840],[1308,1223],[323],[1251],[1254,3047],[501,1815],[221,11],[425],[1029],[1105,865],[132],[1319,134],[1288],[998],[945,1689],[1057,1716],[937],[604],[980,2882],[326,608],[983,1008],[462],[1409],[1131,2104],[59],[107,3195],[738,2178],[998,2730],[696],[669,3105],[1170,471],[169,523],[1008,2684],[1115,3006],[125],[349,1337],[65,358],[157],[1414,2192],[1095],[749],[574],[1242],[1294,2145],[1233,3273],[1412,2854],[15,635],[209,185],[1410],[252,2358],[913,987],[813,403],[1063,642],[310],[39],[1323,3263],[191],[1258,1116],[65,3115],[412],[731,2359],[174],[54],[1216],[172,2799],[90,2176],[1119],[843],[176,1642],[427,7],[859],[1185,1878],[211],[600,765],[503],[436],[919],[241,821],[468],[633],[609,1394],[1417],[2,2826],[147,785],[1349],[1053],[1313,2194],[892],[181,788],[228],[824],[536],[275,1349],[1307],[57,1968],[127,884],[564,1113],[145],[803,1631],[1131,2849],[842,2511],[491],[1087],[311],[1338],[447],[415],[1180,1761],[969,932],[814],[395,1605],[981],[772,3240],[485],[199,2196],[1001],[979],[113,4],[90,676],[66],[838,2770],[836,49],[935],[47,336],[686,1753],[710,2693],[380,473],[643],[430,2317],[618,1526],[397,3084],[1117,1622],[45,3095],[1373,319],[489],[309],[1405],[940],[804,2834],[1060,2051],[565],[964],[236,418],[856],[611],[1222,2285],[156,1786],[209],[1188,611],[167,1645],[1003],[1275,1321],[122],[576],[846,686],[54],[1080],[599,2946],[320],[1308,3114],[766,754],[306],[606],[969],[1161],[1128,2117],[1093,2948],[472,1847],[877,1029],[669],[544],[1096,950],[1404],[1310,3070],[1135],[1350],[1239,938],[1099,2769],[800],[1083,1032],[622,3045],[599],[1193,14],[1411],[1064],[1109],[1173,2377],[883],[98],[274],[359],[1019,2750],[8],[1110],[1295,2252],[783,749],[227],[1235,828],[694],[849,1518],[698,824],[273,1877],[1389],[1410],[777,1120],[1262],[21],[1365,2804],[536],[1330,1828],[431],[136,1254],[432,2781],[110],[1386,2303],[387,1064],[688,281],[1344,1752],[1221,980],[853],[143],[124,380],[1142],[727],[1138,670],[237,3177],[106,1938],[724],[561,1858],[114,1359],[1381,517],[18],[1093,3300],[1417,70],[989,2111],[399,1872],[1379,3088],[710,2059],[1233,2077],[65],[222,2223],[108,1998],[474,2823],[412,2842],[943],[1044],[1331,755],[547,45],[968,2327],[822,1488],[1422,2563],[624],[746],[549],[122,274],[39],[1118,2982],[1395],[726],[886,1820],[686,96],[891,2683],[1197],[127,165],[135,1151],[503],[949,3007],[566,2432],[86],[944,1934],[1340],[267,1894],[651,1573],[631,807],[718,2406],[513,139],[228],[305,436],[57,359],[570],[951,446],[75,2244],[173,1075],[550,1123],[554,2757],[483,3136],[1403,1661],[588],[998,1003],[981,111],[265],[506,1136],[493],[80],[504,2321],[1249],[32],[800],[214,1325],[202,186],[85],[34,883],[771],[39,818],[1090,3100],[615],[778],[1051,1375],[635,1949],[1073,433],[1006,3287],[835,1513],[810],[1048,1266],[1009],[1132],[40],[41,1740],[632],[463,874],[725,147],[987,3275],[958,3210],[795],[673],[9],[913,1218],[1159,1665],[1284,1911],[802],[415,2135],[15,104],[480,1505],[634],[202,862],[929],[318,2907],[1117,1857],[1224,2521],[1386,3009],[285],[244],[493],[924,1653],[1225],[204],[1012],[1052,1241],[726,250],[816],[1171],[596],[170],[1139],[622],[985],[1360,753],[1185],[143],[221],[984],[1365,2119],[1292,1008],[1246,1391],[808,1690],[838],[888,2905],[1408],[256],[164,2296],[359],[165,695],[1235,769],[45],[978,1008],[165],[1338],[551],[117],[833,2034],[186],[1135],[336],[813,3218],[963],[617,887],[479,1402],[633],[238],[106,2912],[589],[1212,214],[1370],[1026,10],[885,1280],[1344,2347],[181],[1375,3256],[75,2693],[1304,259],[998,1659],[704],[592],[895],[380],[343],[381,775],[867,1333],[633,2950],[1110,742],[1026,2497],[568,497],[1043,2970],[292],[92,3176],[1380,1289],[1100,2437],[607],[699,2789],[1112,1050],[95,2121],[178,2402],[1396,2017],[512,415],[195,782],[1178,1263],[473,1438],[1380],[245],[703],[169,2464],[1273],[1000,2440],[1165,2091],[1054,2393],[130],[917,2570],[1327],[1077,133],[1054],[589,2334],[1366],[128,2067],[496,1212],[1000],[553],[889,2104],[336],[838,2856],[815,1178],[1304,974],[1030,1786],[1140,699],[1080],[73],[1007],[1008,1119],[499],[276],[213,351],[481],[1039],[828],[1051],[815,2806],[334],[683,2148],[89,465],[548,1276],[1422,1796],[223,3002],[371],[452],[874],[953,2010],[489],[179],[983,1909],[81,1831],[1199],[509,356],[56],[1255],[1033,2987],[1098,2998],[397,1836],[340,1354],[949,2786],[1109],[994,2500],[687],[1340],[1374,2158],[358,255],[1279,793],[1030,346],[56],[589,2178],[1025,1143],[1058,2729],[548,2829],[61,960],[314],[723,627],[636,1677],[908,1965],[434],[1271,1422],[1300,2715],[1270],[1351],[120,1018],[584,2215],[157,1486],[141],[1065],[722,347],[1095],[1353],[549,591],[1325],[1317,751],[928,665],[1076],[1253],[1157],[1390],[798,1183],[1410,2939],[100],[589,80],[700],[1383,2059],[765,1750],[35,2953],[538,1743],[846,2538],[1178,2278],[559],[770,1241],[694,2610],[1321,1781],[519],[1194,730],[1081],[638,1219],[356],[1306],[1016],[1143,89],[366],[1198,631],[971],[372,457],[1059],[355,3236],[450,200],[198,1681],[567],[853,1967],[1403],[873,846],[427,1049],[1358],[235,2161],[1388],[120,1530],[747,537],[599],[827,2935],[27],[272,467],[939],[947,2643],[818],[453,497],[658,2822],[602],[720,1605],[1175,1475],[464],[1062,2648],[478,2377],[874],[1364,1939],[957,1244],[990,1609],[558,2499],[634],[1129],[365,748],[1100,1140],[937,3268],[993,3135],[859,473],[1307],[798],[1392,1789],[128,291],[157],[531,1300],[340],[219,2237],[741,2205],[331,3203],[1170,2415],[1308],[434],[601,2749],[533,224],[589],[448,1545],[147,2244],[93],[1342],[1080,3104],[593],[190,2737],[1181],[1059],[603,2646],[193,371],[200],[1338],[1331,2843],[1307,369],[97,2330],[647],[402,2531],[1419,851],[307,875],[622],[481],[665,2568],[984,2377],[469],[397,1201],[1331],[921,144],[890],[1278],[547,2515],[1427,1435],[687],[1014],[1285],[344],[1122,3046],[443,1769],[130,3222],[1205],[180],[65,2627],[421,1774],[206],[900],[956],[433,2945],[597],[1147,1542],[1410,159],[1235,2221],[1139,2678],[553],[680],[1421,2393],[842,766],[834,3105],[1149,824],[1336,2232],[376],[306,500],[513],[1254,170],[1422,2828],[702,110],[1371],[409,2502],[1106,887],[582],[747,3184],[762,2095],[597,788],[1238,2933],[813,816],[1180],[954],[835],[321,594],[13,2431],[842,1893],[971,1734],[353,1913],[1278],[1223],[1297],[960],[514],[1025],[1120],[508],[1110,3279],[123,825],[559],[307,736],[578],[40,3000],[927,2892],[1047,888],[378],[890,3120],[341,1680],[1398,279],[620,1988],[1370,2410],[379,2527],[164],[314],[561,1145],[833,1244],[391],[88,2242],[1266],[873,2609],[488],[1077,2380],[1018],[268,251],[996],[1182],[29,549],[67,1274],[217],[386,1071],[87,3028],[516,917],[297,1442],[173,1590],[886,1932],[1255,3289],[525,761],[240],[817],[624],[487,283],[823,3030],[1063],[924,2675],[164],[682,2042],[1375],[120],[1430,1662],[50,1248],[229,2993],[276,258],[945],[1070,2267],[703,2079],[1290,1925],[312],[151,312],[378],[309],[309,1572],[1080],[432,1173],[185,3080],[357,691],[66,380],[47],[205],[962],[265],[973,213],[1111,817],[1059],[1409],[581,2652],[959],[1197,2920],[552],[320,2352],[663,1314],[706],[367,327],[930,1636],[1063],[40],[281,567],[733,1124],[992],[951],[488],[1384,1460],[746],[1036],[488,1558],[353,2306],[678],[1020,841],[60],[311,3168],[373],[523,2253],[368,110],[923,1280],[949],[1021,1785],[1114],[443,1784],[889],[524],[1094],[1354],[1113],[358,731],[236],[1155,272],[95],[1388,3168],[489,615],[176,1162],[68,3031],[403,1628],[1251],[1007,606],[859,594],[889],[811],[578,648],[428,2613],[497,123],[1140],[1335],[607],[1360,2795],[775,364],[829,1534],[1169],[65,789],[311],[338,80],[1321],[909],[993,2471],[1378],[999,1374],[1421,1369],[932,1301],[110],[665,1332],[1238],[1418,3082],[335,1703],[333],[541,2234],[536,2834],[73],[310],[106,3184],[1130],[329,3],[277,2659],[333,416],[511],[819,2637],[661,3236],[849],[1253],[95,843],[1288,2604],[1017,2706],[544,2580],[1392],[1096,628],[310,780],[1204],[934,619],[1429],[707,1709],[1260],[261,923],[563],[68,1374],[454,1206],[636,1411],[15],[337,94],[420,1076],[108],[313,1847],[1013,156],[66],[511],[880],[675,767],[242,2313],[1078],[1133],[628,426],[1019,2882],[630],[1051,2442],[1215,2199],[747,68],[860,1135],[362],[1310],[1402,749],[506,1355],[1288],[1251],[1073,1059],[769,1952],[750,1178],[1267],[1300],[725,2968],[586],[344,335],[737],[233,3050],[1235],[90,74],[573,2734],[824,1573],[760],[1294],[1373,1627],[33,1486],[1272,272],[798],[126],[1166,3191],[157,1069],[274,1168],[1325,669],[960],[444,2836],[1317],[365],[564,566],[193,1030],[1326],[1268,1010],[1255,1486],[701],[959,2213],[896],[967],[362,1117],[1393],[864],[242],[973,3219],[298],[1287,1537],[660,1047],[616,412],[485],[65],[1338],[1407,1825],[1265],[1025,2164],[818,1042],[352,603],[1355],[421,1025],[1274,258],[468],[1342],[443],[139,2418],[385,2140],[391,2040],[1132],[203,2371],[938,1239],[205],[1066],[1368],[295,1023],[850,2177],[1425,265],[66],[113,1133],[1038,2215],[532],[1131],[1247],[524],[428,1400],[903,2133],[380,8],[215],[890,1813],[936],[852],[183,417],[1218],[715,585],[557,1001],[714,1019],[1296,414],[480,986],[1303],[1194],[295,780],[1139,1560],[1149],[1127],[483,1128],[901,221],[325],[1040],[935,2925],[219,2034],[155,1728],[171],[692,1393],[52],[1242],[29,2440],[1385,2992],[328,2333],[952],[603],[1243,394],[325,1869],[1145,2821],[667,1487],[711],[720,1428],[34],[1187,1889],[71,3090],[202,1556],[1374],[1281,1100],[370],[748,815],[271,3091],[783],[909,2815],[810,206],[407,614],[438,2177],[995,926],[146],[565],[1378],[694],[680,2340],[134,3065],[725,1769],[992,2284],[235,2272],[924],[1420,1715],[649,1422],[864,141],[1252],[411],[621,78],[574],[285,2353],[1165,1868],[1428],[127,146],[178,2356],[1218],[1217,2977],[385],[1129],[241,2393],[280],[1010],[61,2234],[1340],[1238,2725],[469,1569],[1296,1768],[1366,2816],[865],[942],[37,1382],[346],[549,2780],[1428],[682],[871],[690],[693,2195],[274],[404],[955],[75],[308,2387],[1084,3187],[931,2344],[1375],[1026],[1049],[519,1282],[1405,103],[992,928],[929,3083],[667,1939],[831],[754],[618,79],[1290,2417],[543],[756,2755],[994],[963,397],[826,1176],[2],[225],[479],[1345,953],[648,891],[422],[102],[59],[538,2705],[876,3149],[974,2198],[324,1668],[820],[35,3025],[1311],[517,1906],[134,537],[1125,1179],[657],[2,291],[42],[598],[1213],[1182],[1262],[115,2523],[507,2760],[435,563],[404,1843],[636],[1036,1585],[1356,1873],[357],[37,3291],[1208],[870],[1390],[108,1090],[1239,1092],[68,582],[504],[111],[1226,278],[438],[1148],[1205,1424],[725,2660],[491,1921],[1163],[263,2428],[1421,614],[572,638],[1047,288],[321,2748],[946],[352],[1275],[993],[74],[516],[548,24],[628],[1222,2299],[287,393],[1135,1485],[97,1375],[71],[1430,1391],[18,2282],[615,1916],[1088],[690],[1253],[950],[759,3276],[893,2175],[1315],[580,88],[440],[899],[1153,2668],[759,879],[1400],[295,363],[81],[1376],[400,119],[866,1352],[204],[109],[146],[1033],[744,175],[778,162],[550],[149,461],[1345],[678,1774],[788,2059],[641],[276],[1151,173],[1226,1431],[1381,1987],[447,57],[1297],[1024],[623],[1120,467],[16,1576],[44,3294],[1297,1578],[778,2612],[877,1793],[449,676],[867],[128,2788],[1152,3168],[90],[59],[193,1253],[926],[1103],[125,580],[1035,2313],[890,2560],[1098,1977],[1137,128],[1346],[1361,1899],[829],[738],[251,80],[1116],[69],[654],[780,2166],[75],[378,804],[396,2567],[1356],[811,1154],[755,1882],[230,599],[1103],[1373,1134],[637,791],[1006],[274,1608],[566,1020],[547,1877],[388,2794],[1413,1773],[844],[429,2049],[308,1025],[1060],[924,2034],[1175,1124],[192],[391,1746],[1262,2887],[484],[1234,3035],[438,3074],[1208],[1267],[64],[326,1838],[1215,5],[225],[966],[936,68],[475,585],[1005],[524,1464],[1003,1458],[338],[1097],[1292],[216],[405,2535],[1167],[1064],[394],[1232],[699],[229],[562,1181],[827],[783,3004],[1040],[383,3298],[802],[1425,257],[1382,780],[779,2237],[1419,3269],[1078],[329,1382],[797,1808],[735],[1290,1996],[4],[439],[539],[900],[346,1421],[861,3046],[1047],[536,929],[955],[498],[978,2208],[1342,1077],[230,2628],[120,3031],[768],[552,226],[1035],[169],[865],[210],[672,2136],[14,1907],[305,2344],[640,1262],[315,11],[651,2115],[127,2590],[152],[518,334],[408,413],[15],[1383],[117,2903],[969,2106],[129],[959,2086],[198],[346],[679],[916,3287],[1378],[325,1319],[562,1003],[1249,2295],[864],[643,1659],[758,1404],[1428,2661],[797,758],[463,1266],[441,478],[445,1058],[1412],[1102],[649,2046],[390],[464,3055],[652,2060],[742],[856],[394],[1308],[511,714],[12,2780],[935,2484],[1184,2305],[488],[121,2576],[121],[168],[50,867],[1063,2961],[1198,693],[921,520],[38],[151,1235],[332,1561],[1203,3090],[604,1337],[1229,2311],[1201,1547],[2],[825],[1026],[1241,922],[939,1307],[945],[744,1353],[612,2530],[433],[113],[1400],[1066,1444],[865,554],[427],[567,754],[566,2598],[1270,1020],[1001],[886,2096],[64,927],[993],[1209,1831],[666,1244],[471,936],[627],[469],[305],[1193,2559],[702,1701],[52],[941],[1209,2829],[1261],[260,989],[1292,1544],[610],[616,3231],[268,695],[780,2624],[547,3091],[274,3124],[651,720],[1135],[682],[147,3126],[218],[998,126],[1210,893],[1097],[35],[1398],[825,2990],[1121],[955],[1038,2019],[683,1567],[17,2559],[1276],[316,2055],[140],[1117,216],[1050,976],[1372],[1185,1669],[894,948],[160],[760,2746],[758,2313],[894],[960,548],[1163],[950,2059],[562],[97,1632],[1113,1032],[1230,3202],[719,2234],[114,1758],[348,1974],[732],[643],[113],[1150,1167],[995,221],[1200,1584],[1318],[219],[561,2470],[217,3168],[149],[820,2241],[661,924],[1088],[447],[660],[52],[646,1427],[373,1077],[1324,118],[83,2454],[92],[665],[820,1458],[465],[262],[402,2895],[147],[1358,2064],[1088,1186],[799],[1270,2433],[995],[964,258],[256],[1117],[1214],[227,1393],[273,1321],[439],[852],[524],[740],[145],[370,1201],[479],[133],[1219,624],[78],[100,118],[832,1838],[850,2846],[1394,2459],[1304,1892],[374],[561],[904],[1119,2781],[825],[1383,3284],[1120,2714],[427],[1236],[759],[278,381],[641,2882],[772],[415,2714],[1247,59],[1240],[1330],[1204],[452,3034],[5],[712],[714,354],[1297],[1376,86],[895],[878,1175],[497],[367],[1024,1920],[415,2137],[368],[78],[508,1262],[1206,639],[46],[869],[313],[1312,1669],[886],[330],[920],[914,927],[344,847],[631],[256],[1195,2746],[411,2506],[729],[887,1152],[602,3182],[984,2962],[598],[791,851],[833],[1072,1907],[1126,2397],[548],[958,1778],[708,840],[663,2734],[42,2052],[937,1083],[439],[827,108],[1077,789],[34],[872,1123],[1221,3218],[456],[134,2223],[671,3271],[86,1525],[1417,189],[230,1667],[589],[299,1134],[1099,2070],[598,2018],[376,977],[395,1426],[1245],[662,3],[903],[833],[1229,1265],[181],[233],[868],[1009,1559],[728,2428],[707,172],[643],[884,2688],[928],[863],[805],[1053],[1179,2397],[1287,2704],[56],[66],[1326,3056],[1181,707],[749,1506],[1009,118],[900],[1349,1277],[834,2714],[757,626],[989,474],[485],[1183,1403],[395,2585],[1316,2513],[1336,2327],[507],[1243,552],[1185,29],[38,1312],[415,1379],[618],[1086,375],[736,2999],[1263,239],[105,897],[532,907],[194],[1081],[593,1614],[106],[453,312],[739,1933],[650,1011],[818,1839],[698,680],[105],[963],[85,174],[545,2044],[1429],[1083],[1376],[1037,738],[1047],[1369,2864],[885],[218,856],[620],[1106,2376],[141,957],[1327,1847],[719,2807],[990,1236],[1040],[872],[1221,1297],[574],[1051],[633,1007],[1358,2163],[406,1281],[1029,462],[975,2878],[1410],[163],[784],[512,1242],[454,2556],[880,2141],[216,2313],[343,3211],[909],[1331,2872],[1372],[646,3171],[745],[139,1840],[1160,2021],[1241,2627],[1130],[857,1377],[332,1754],[414,607],[539,2148],[1219],[325],[1327,2566],[831,2844],[572,2452],[940],[280,2103],[210],[306,1269],[411],[1085],[745],[403,730],[1092],[646,2537],[534,111],[307],[1224,3063],[882,50],[1150],[674],[320,3118],[1340,1071],[1292],[14,1548],[1222,102],[83,966],[1391,378],[528],[862],[145],[564],[231,131],[298],[36,2902],[119,2706],[549],[1050,2469],[244],[589],[685,947],[1036,1403],[1130],[941,3303],[758,933],[1170,784],[244],[1374,2158],[751,2987],[1415],[12],[325,1795],[1022,92],[897],[1424,651],[937],[303,1972],[966],[1410],[943,1457],[107,1042],[1406],[194],[874],[101],[246,2474],[1323,2268],[747],[496,832],[1047,959],[967,570],[741],[531],[486,196],[790],[1195],[928,1282],[1127],[1376],[1310],[822],[1273,918],[1210],[888,2348],[557],[1414],[1045],[125,1957],[310,934],[82],[816],[453,3213],[502,1015],[33,97],[93,754],[105],[255,985],[74,930],[378,1032],[1029],[425],[804],[162,2352],[1246],[128],[1112],[304,3195],[496,423],[641,2275],[20],[1302],[1097],[95],[814,196],[942],[1041,1986],[48],[477],[434],[1223,60],[1018,820],[328],[1334,2678],[554,572],[1270],[1209,2089],[869,849],[260,543],[699,1302],[251],[1296,1991],[632,2203],[738,2773],[1024,2689],[1154,2623],[1379,2353],[223,765],[628,3024],[1325,1458],[946,1148],[1104],[1184],[130],[413],[855],[363,253],[89],[889,777],[1014],[20],[253],[588,2255],[1159],[302,765],[88],[614],[892,3112],[266,3029],[700,1991],[438,2433],[318,2602],[1429],[118],[260,2051],[1336,388],[298],[880,1090],[1408,1969],[227],[43,1830],[845,1361],[573],[870,248],[633],[478],[1371,711],[350],[866,2651],[934,1070],[289,2185],[1023,2262],[1339,1464],[40],[764],[716],[952],[974,3297],[1014],[440],[1296],[950,403],[926,1870],[835,2946],[1124,627],[852],[242],[1398],[911,498],[1001],[1059,2653],[551,2230],[552],[938,1235],[389],[1064,2448],[59,1336],[1157],[1160],[266,2334],[728],[863,1435],[572],[38,3024],[437,2425],[1329,605],[1110,3181],[1282,3031],[742,2150],[466,136],[1136],[695,1556],[253,2215],[156],[762],[520,2168],[1255],[1176,1135],[771,2131],[1149],[607,874],[648,2437],[758],[506,2691],[1186,1138],[169,507],[1241,2599],[190],[476,2600],[260],[1205],[136],[1091,1254],[655],[1065],[408,213],[699,1874],[60,644],[399],[920],[677],[871,1246],[739,1439],[282],[152],[1176],[1238,3089],[91,920],[698,2069],[1398,371],[828,1503],[169],[1273,3023],[637],[472],[540],[1211],[263],[135],[224,3159],[1195],[939],[640],[755,2291],[924,3224],[181,792],[149,2396],[705,1421],[1347,1927],[132],[841],[262,3060],[809],[685,1072],[441,2572],[1263,2143],[402,2283],[156,553],[896,659],[1253,2175],[525],[378],[339,2391],[1266,35],[437],[526],[1198],[782,195],[838,2869],[503,1008],[72],[978],[1228],[1000],[30,1131],[479,1858],[160,386],[842,471],[934],[981,1773],[141,2990],[905,1661],[1260],[1006,423],[1156],[6],[834,1003],[204],[1330,233],[1033],[770,3224],[1277,1111],[976],[1169],[1093,1764],[774,1133],[278,314],[679],[1400],[1314],[919,23],[7],[163,1670],[702,2772],[529],[47,2411],[874],[600],[765],[879,1373],[688,191],[1340,570],[231,566],[757,3064],[460],[897],[922,3266],[640],[143],[488,726],[1149],[1267],[18],[613,380],[1053,53],[1168,1995],[101],[48,1340],[1422],[983],[1176],[3],[775],[509],[47,495],[318],[228,1092],[1224,1879],[297],[26],[238],[1050],[528,1220],[758],[269],[404],[602],[609,2212],[1089,1385],[5,1139],[1035,3104],[473,3003],[1305,3064],[354,460],[598],[606,977],[1249],[733,1399],[156],[712,734],[1171],[940],[1242],[1051,2332],[857,666],[870,3062],[1417,299],[904,195],[1365,639],[353,952],[1136],[454,2854],[504,2164],[942,2793],[1250],[307,887],[1082],[1228],[772,1074],[1173,1106],[394],[656,3180],[1239],[449],[1414],[531,1744],[1019,1704],[600,2007],[1373],[1318,2422],[998,452],[1305,2420],[692],[186,1140],[908,2403],[1353,1087],[719,1702],[841,2557],[1311,1083],[647],[98],[1363],[847,590],[570,553],[1076,2920],[911,1463],[1206,1822],[1114],[1104],[160],[1204,434],[1212,3090],[1373,2737],[551,329],[1155,25],[1011,2999],[1295],[577],[69,2868],[280,233],[382],[716,563],[596],[376,850],[1355,568],[626,525],[1289,1632],[1291,855],[907],[461],[939,191],[1017,1768],[1177,2890],[628,1481],[594,2828],[226],[353,1864],[519],[946,270],[966,2106],[1375],[1365],[717],[1278],[587,2339],[46,128],[1078],[145,807],[745,1072],[318],[1355,1179],[669],[1279],[207],[298,1819],[651],[27,472],[1368,598],[1096,3026],[412],[987],[523,2884],[480],[51],[182],[1152,1990],[60,2235],[693],[1383,720],[71,3214],[570,1],[1365,2513],[557],[1334,2268],[1217,1184],[798],[214,2623],[622,2398],[674],[1090],[204],[571],[1400,980],[900,2072],[635,1722],[904],[1243],[270],[1253,22],[1243,1460],[1099,101],[1224],[1411,2910],[1271,1402],[645,600],[50],[1038],[123,2910],[1167],[1123,1033],[210],[1124,2917],[73,794],[240,2342],[1098,2993],[715],[91,283],[753,1619],[928,1943],[248,2944],[851],[354],[979,632],[1373,809],[718],[26],[499],[1030],[284],[1143,2268],[290,647],[25,2029],[462,418],[1065,1741],[882,903],[155,853],[816],[605,2230],[826],[992],[1,1620],[1304,687],[971,1062],[798,516],[1242],[222,2374],[146,557],[1407],[961],[1409,2898],[707],[771],[321],[1092],[1008],[933,617],[220],[100],[540],[1417,251],[527,1635],[1386,1955],[639,403],[1253],[621],[1324],[955],[230],[1338],[1399,2165],[143],[814,1107],[247],[1134],[1069],[1351,1833],[637],[1410,1473],[538],[971],[1214,3217],[170],[1054,233],[919,1267],[325,1528],[447],[919,2244],[73,167],[430,1906],[1083,589],[1132,279],[876],[1189],[1279],[1191,3175],[505],[139],[786],[818,2691],[13],[222,791],[277,932],[1008],[89],[101],[512,754],[864],[649],[1052],[987],[1216],[1394,1995],[375],[1338],[276,2215],[184,2525],[853,301],[1430,2334],[1381],[1251,1784],[223],[1221,1058],[483],[1210],[1372],[1378,278],[98,2996],[161,1205],[805,1608],[1398,1033],[1424,940],[526],[542],[659],[229,186],[110],[800,1817],[922,3154],[1380,2681],[850,3090],[108,131],[608],[401],[1084,227],[1030,3126],[216,571],[660],[2],[1272],[1166,1796],[889,24],[406],[1253,2855],[277],[688,2429],[1238,1813],[1184,1043],[553,217],[1340],[792,2441],[279,2154],[52,232],[859,89],[1422,847],[940,989],[27,226],[239,965],[774,3125],[1074,31],[462],[252],[1400,3119],[782],[1145,589],[57,2057],[118,515],[391],[1186],[984],[477,1254],[822,870],[26,1961],[894],[143,780],[590,375],[415,1382],[474,1142],[1275,64],[544],[104],[634,806],[1273],[1410],[669],[265,704],[470],[702,2025],[638,1587],[141,3213],[586],[638],[56],[713],[103,1848],[607],[1399,2229],[965,2620],[1359,2413],[720,150],[789,1214],[1065],[587],[934,2035],[855,1027],[820,279],[958],[1078,339],[756],[735],[831],[1263,2161],[270,1463],[1263,2169],[130],[326],[777,1938],[789],[296,501],[1430],[339,1218],[1337,2672],[1259,2496],[48,2222],[80],[1334,3034],[293],[1334],[719,1581],[19],[1176],[590,1544],[506,2523],[1051],[809,337],[939],[1129,2127],[58,371],[1404],[290],[1124],[329],[1407],[284],[801,49],[339,1184],[420,2627],[699,2794],[659],[103,310],[742,2182],[123],[334,2954],[640],[1294,2814],[800,1719],[812,964],[963],[1136,408],[35,418],[1354],[1193],[562],[339,2066],[475],[671,1889],[1084,3002],[1308,3173],[462,1257],[631],[194,2489],[1427,2589],[1382,2173],[155],[225,787],[210,2335],[1080,1548],[634,993],[142,2876],[797,2274],[842,1267],[864],[604,1206],[962,940],[1144,305],[119,2618],[1012,318],[688],[715],[1060],[1378,2475],[825,1249],[1274],[898,2605],[797,2087],[897,118],[228],[856,3004],[966,3226],[853,2213],[14],[1118,859],[701],[463],[780],[1269,47],[930,2195],[201,715],[1165,2724],[421,2154],[47,1527],[24,1744],[878,2324],[1126,3101],[110,2684],[281],[797],[148],[688],[1309,2578],[1043,2689],[1194,165],[982,3129],[831],[157,2957],[1124],[1096,2900],[246],[753],[1324],[962],[449],[1424],[95,2461],[766],[134,2998],[1138,2299],[454,764],[1101,2480],[1143,2189],[997],[965],[60,3025],[769,902],[695],[638,3161],[49,1047],[1198,3290],[96,3107],[1042],[1289,2682],[494],[195,324],[691],[670],[822,1620],[287],[246,976],[963],[422,546],[1127],[1341,1718],[1053,2929],[544,1467],[327,2813],[934,451],[1387],[535,999],[707,1992],[1296],[1010,1032],[816,1136],[619],[55,953],[599,944],[1325,2168],[56,937],[892],[302],[290,2394],[828,3044],[202],[92],[826],[198,1239],[717],[1150],[97],[265,913],[285],[223,1131],[603],[30],[804,2510],[1091,2408],[564,3222],[46,2801],[729,1416],[1130,3236],[652,237],[551,525],[1315],[395,1167],[1362,1076],[58,1724],[709,760],[886,1918],[1149,121],[1139,2579],[615,2768],[70,1612],[273],[1301],[440,2717],[549,1084],[556],[1412,2249],[34,2324],[802],[1162,1056],[1400,3028],[1301],[21],[1275,963],[688],[1020],[1222,3297],[975,2024],[1180],[373],[803],[131],[29],[640],[791],[877],[284,760],[262],[214,611],[907],[759],[688,2270],[567],[358,2134],[829,3282],[999],[1168],[169,1700],[667],[316],[963],[1225],[1122],[1105,1247],[1190,1074],[122,3132],[1335,740],[428,2046],[715],[752],[763,2566],[934],[1072,156],[506],[1402,104],[345,624],[1416,2138],[1412,797],[497],[698,105],[631],[1325,2348],[961],[1278,183],[445,1701],[371,1966],[1305],[1044,1661],[57,2593],[1250,1260],[1196,2978],[908],[1101,3045],[583,344],[1016],[105,1152],[1409,1108],[787,2372],[580],[273,1685],[1128],[628],[1103],[821,1647],[583],[1100,3244],[475],[264],[1265],[1147,2689],[188,2907],[786,2655],[820],[502,2604],[1268],[1114,292],[1356,1238],[241,1916],[928,2662],[675],[259,2530],[482,227],[113],[1086],[736,2465],[1284,647],[380,430],[882],[1120],[131,3198],[1059],[1375],[1115,2958],[853,212],[868,3066],[535,1052],[1400],[1263],[55,3007],[153,1664],[837,440],[358,2270],[1287,2002],[342],[596],[278],[214,1546],[1215,153],[526],[580,2446],[700],[1306,354],[761,448],[357],[816,2422],[256,2867],[1147],[1341],[567,775],[1139],[234],[1422,1929],[971,602],[103],[1265,498],[1178,2843],[1342,2165],[1282],[223],[1319],[777,1342],[592,1230],[1282,2133],[1120,3136],[868],[296,1838],[1246],[723],[1403,1242],[788,890],[1333],[475,2177],[195,1305],[1130],[440],[1332],[1053,655],[236,1397],[159,161],[870,1590],[493],[1427,1926],[1197],[601,478],[739,1139],[1327,2408],[111],[1056],[301,2360],[862,2498],[1226,4],[1408],[1316,67],[1388],[947,2890],[377],[1,2323],[883],[1273,3117],[1329,3116],[704],[1340,1813],[287],[909,3109],[1240,2229],[438,3006],[1384],[929,2925],[28],[77],[776,950],[473,2594],[247,606],[740],[121],[1301,1884],[1030,1255],[328],[217],[515],[697,3159],[463,827],[754],[55],[1015,1886],[373],[222],[177],[702,3195],[832,951],[831,2999],[1317,2176],[1302,998],[842,141],[1137,2258],[85,2474],[440,683],[687,2182],[1017,1383],[322,2306],[88,1726],[420,764],[1283,2580],[848,2814],[972],[26,1415],[1001],[311,429],[612],[552],[878,935],[470],[865],[51],[1337,2741],[1059,1315],[97],[743],[516],[1157],[170,2148],[21],[528,1602],[489,2152],[358,1578],[388],[1369,1594],[313],[89],[35],[37,1472],[643],[355],[1055,2114],[913],[361,1064],[278,2210],[642],[1144,2893],[831,897],[1155],[536],[846],[806],[116,660],[596,310],[1370,1890],[451,2699],[410,2092],[1110,1971],[1356,543],[430,2791],[1373,1829],[490,1758],[767],[1375,589],[1062],[24],[931,1418],[1232,2400],[1064],[814],[370,1191],[738],[70],[407,1479],[380,1290],[858,2710],[204],[601,500],[1321,2947],[68],[502,2610],[1351],[923,2676],[1338,723],[665,1100],[11],[850,1841],[142],[370,3248],[898],[1331,790],[449,301],[615,1054],[641],[880],[388,98],[857,3227],[142,3169],[925],[470],[809],[115],[1426,2109],[1429,1636],[1280,2703],[482],[1236,971],[846],[261,1623],[236,1765],[785,196],[69],[1390,2011],[1335,2747],[1021],[638,622],[141,2841],[1030,2088],[1183],[887,1797],[660,1372],[367,1817],[697,745],[460,2259],[98,2683],[1202],[683],[774],[376,2725],[847,1281],[181],[1214,2089],[1049],[870],[1274],[920],[514,2898],[398,559],[134,816],[962],[169],[169],[889],[1423,808],[1221],[1131,89],[653],[352,894],[231],[4],[56,765],[1070],[1382,2274],[639,1638],[1118,686],[339],[473,2895],[231],[1252,2307],[475,2558],[800],[685,2291],[292],[505],[66,3127],[481,676],[386],[369,2923],[1414,655],[263],[716],[115],[309],[1149],[1266],[202],[597],[1350,2274],[375,519],[1129],[620],[231],[1098],[1420,2289],[246,1038],[998],[344,1549],[342,1773],[552,1013],[802,2063],[379],[777,1771],[1060,1652],[1381],[134],[531,1905],[1390],[361],[185,279],[30,607],[1219],[263],[431,476],[36],[1344,28],[484],[1323],[1341,1373],[1349,1400],[312,2751],[507],[155,2817],[201,593],[448,1965],[769,1776],[397],[934,708],[268,2292],[1339],[341],[559],[1290],[1295],[160,2646],[689],[1045],[891],[601,1287],[1029,2455],[964,1531],[258,39],[339,159],[101,2269],[858,1109],[403],[1085,2722],[1393,575],[572],[807,1760],[910,921],[593,2116],[1165,2999],[992,2286],[499,199],[350],[1361,3141],[1336,1870],[847],[902],[916],[1070,3037],[307,2843],[83],[267],[945,1307],[1303],[216],[834,3065],[1181],[903],[194,200],[728,1506],[659],[1126,2335],[624,965],[318,190],[201],[284],[597],[897,2783],[1230],[621],[311,2419],[1130,914],[1134],[370],[276,983],[1373,1004],[995,2715],[955,160],[1335,826],[1311,2375],[408,957],[783,3263],[665],[1391,1757],[776,794],[568],[822],[1054,1219],[372,2704],[1027,1498],[1332],[15,1550],[388],[1220,1302],[1314],[1056],[976,1081],[732],[583],[453,1593],[311],[398,2072],[145],[1424,621],[1227,1754],[1012,3163],[187],[1260],[528],[295,2320],[1366],[644,2820],[154],[857],[1263,609],[841],[1260,3048],[672,779],[1156,113],[530],[1026,2430],[401,3215],[658,1001],[651,587],[1034,1056],[608],[151],[1165,3243],[930,3033],[69],[518,2121],[367,2581],[656,1751],[855,366],[28],[1246],[530,2475],[830],[1123,1899],[62,3288],[760],[680],[59,1936],[586,1774],[488,1089],[1027],[1256],[217],[1394],[147],[566,1876],[222,1011],[414,2809],[77],[1173,2415],[533],[404],[101],[957],[600],[1245,1134],[140],[832,2958],[316],[473],[464,1092],[1163,2477],[161,953],[1355],[697,489],[1359,1219],[178,2563],[480],[1073,184],[246],[1393],[83],[439],[1137,2179],[992],[601],[1272],[867,1169],[173],[9,804],[450,2296],[216],[285,736],[1029,508],[410,2498],[81,1842],[1279],[1363,1863],[923],[1398,3092],[1050,2034],[909,2451],[769,3019],[862],[828,579],[1212,2395],[983,1457],[699],[1059],[851,20],[639,2628],[663],[736,1783],[965,3122],[564,1458],[1154,2094],[1031,608],[219,2569],[652,1539],[1206,362],[279],[623,1422],[1357],[175,36],[1065,71],[413,1127],[651],[1208,2177],[776,2929],[826],[691],[1240],[1159,2283],[260,234],[1045,752],[717],[979],[1020,561],[181],[1394,2778],[1414,86],[1330],[1126],[807,1794],[983],[241,1550],[1412],[562],[1083,3133],[1075],[979],[1033,1049],[1037,1127],[1112,2738],[563,1850],[1034,2940],[97,1020],[133],[2,3275],[557,2626],[12],[1087],[1201,1017],[854,576],[1008,890],[622,3303],[1236,1284],[1044],[101,2606],[438],[391,1610],[36],[1321,2744],[886,2608],[1205,226],[563,483],[643,1263],[205],[13,2039],[34,789],[840,1818],[451,2700],[325],[596,3162],[746],[903,1542],[987,3165],[1363,602],[432,109],[796,2874],[711],[302],[1145],[791,3133],[735],[52,2352],[1091,3299],[831,2255],[39,3271],[1026,2798],[934,2819],[767],[639,492],[317],[555,3291],[289],[1101,809],[753,933],[806,2442],[1358],[472],[1109,526],[1199],[472],[332,98],[1230,2970],[245],[884],[1429,2108],[903,1925],[1046],[1128,583],[1381,3088],[1260,2708],[461],[1354,3076],[511,2445],[1065,3236],[382],[115,595],[976],[657],[263,1729],[747,809],[684,1404],[475],[518,201],[1042],[339,1678],[1322],[1090],[704,967],[380,1805],[783,2068],[428],[7],[117,3279],[293],[791,2995],[693,2931],[867,1673],[889],[1409,1161],[534,1450],[576,2586],[131,1955],[495,3106],[466,1271],[1228,2574],[718,2965],[801],[388],[1192],[1241],[851,2347],[1021],[1267,1619],[177,772],[7,778],[306],[844,628],[195,3022],[38],[935,1758],[1049,1201],[415,222],[1384],[267],[865],[1141],[424,365],[567],[550],[1403,1262],[135],[755,533],[251,2475],[398,3099],[1091,624],[280,1322],[370],[1218,2763],[1226],[1249,2899],[516],[527,2813],[99],[613,2785],[435,2039],[135,2329],[263,41],[968,363],[984,888],[1225,652],[415,1145],[733,158],[17,781],[441,84],[430,3116],[124],[1413,1781],[1072],[239,2736],[981,1878],[1337],[1091,1252],[366,462],[802,1915],[232],[1209,715],[718],[833],[1385,2529],[982,2603],[190,1531],[1071],[1074,737],[1016,2103],[288],[960,415],[1105,1349],[831,1633],[1173,340],[580,198],[176,1195],[463],[213],[108],[924],[127,332],[429],[235],[937,284],[588],[880],[903],[1339],[122,460],[1381],[388,1118],[1385,2375],[619,724],[113],[461],[932],[217],[976,970],[956,3214],[732,603],[116],[70,226],[869],[1376,2187],[783,1846],[199],[662,2917],[266,2420],[322,542],[394],[807],[1326],[1320],[1007],[1196,230],[534,814],[739],[1225,1689],[680,421],[133],[1091,1799],[852,2562],[400],[165,2104],[334,1886],[530,1410],[954],[1004],[778],[136,2833],[619,532],[500],[195,681],[1093],[833,2703],[892],[592,2784],[40,3157],[134],[175],[141,1254],[258,460],[492,52],[350],[639,2018],[34],[1113,1991],[138],[1207],[1008,992],[475,998],[526,2771],[618],[1222],[1170,202],[429,1019],[1126,1520],[217],[8,2972],[843,379],[612,1704],[1117,1141],[127,1626],[332,2051],[1300],[1380,1462],[647,1110],[1425],[493],[707,1986],[1384,3208],[753,436],[806],[809,1031],[216,2159],[1166],[586,1222],[777],[776],[1381],[1264,1320],[1158],[1272,3005],[1348,1586],[1046,961],[1307,29],[29,3128],[565],[8],[938,1919],[297,2139],[968],[266,2001],[11,566],[915,2274],[435,1488],[1095],[95],[800,2567],[907],[819],[922,1566],[1201],[908,331],[708,3226],[1028,2562],[412],[823],[1360,2937],[907],[1076],[1368],[1232,1813],[78,1866],[763],[540,76],[1314],[1121],[827,2644],[224,2088],[472],[438,2162],[898,1653],[1407,1598],[471,2478],[825,141],[598],[828,1589],[541],[9,81],[247],[1140,2837],[253,334],[439,2621],[556],[1334,267],[1319,1542],[515],[471,608],[1286,3109],[502],[237,1521],[358,1386],[677],[587],[1110,879],[906,2252],[525],[1264,1883],[1007,2628],[717,526],[587],[949,1892],[568],[405,3189],[773],[706],[731,3216],[531,221],[1418,173],[1052,3086],[359,1804],[1298,1778],[228,1118],[307,430],[370,2248],[1338],[169,1623],[1255],[160],[467,2936],[777,939],[104,1094],[760],[478,17],[1029],[869],[755],[219,2881],[1102,2880],[532,759],[70],[170,505],[1184],[547,1392],[1182,1094],[1224,1169],[102,2437],[685],[610,2581],[122],[970],[616,672],[124,2480],[777,2130],[824],[789],[796,523],[1429],[1250],[741,1365],[164,1674],[875,2216],[1176],[361,666],[1006],[618],[1350],[168,2118],[1138,362],[252,1215],[732,2937],[50],[778,823],[798],[294,3300],[996,2245],[140],[733],[847,2194],[146,1225],[1415],[993,1827],[1164,1441],[1036],[124,1021],[535,1018],[517],[736,2307],[897,2650],[272],[601],[666],[1181],[1232],[816,880],[372,2306],[1099,454],[514,2900],[1321],[163,337],[787,2340],[729,1818],[1045,1161],[443,2606],[650],[1146],[1133,1362],[1169],[1369],[938],[896,404],[1142,1817],[124,3226],[350,2027],[591],[1130,495],[903],[355],[1180],[1209,2065],[843,1854],[929,1810],[157,2356],[1126],[415,3072],[357,2036],[605,2182],[738],[1421,2048],[439,1467],[80,2073],[1222,3209],[479,3182],[1019],[103,264],[730],[320,1978],[224,1087],[24],[1224],[583,388],[1263,1675],[1306],[1173,2174],[647,1078],[911,885],[539],[522],[737],[537,732],[504],[1142],[961],[53,1885],[250,1232],[1044],[592,3297],[351],[1136,2418],[736,1160],[1174,3065],[497,1674],[930],[696,3001],[852],[1246,1794],[392],[837,1522],[1165,3092],[789],[987,1671],[934],[1304,799],[75],[935],[562,2547],[1423,901],[890,3063],[1111,301],[1100,2368],[1017],[1193,3102],[490,1082],[826],[1276],[163,1351],[1039,1331],[518,1653],[938,2332],[780,1950],[1279],[714],[1409],[1226],[769,2116],[986,2280],[1012],[694,2338],[142],[767,1919],[1353,1528],[6],[1280,1212],[463],[14,2154],[256,1481],[955,377],[1141],[1,2101],[54,15],[1263,1725],[35,2976],[838],[349,1512],[146],[452,419],[457],[268,1407],[853,1260],[1378],[1290,1511],[895,1831],[659],[1097,1652],[559,2844],[416],[847],[892,2093],[108,536],[1393],[1341],[961],[1354,3274],[292,691],[1165,302],[1052],[1270,738],[619,2515],[1327],[11,2877],[452,2211],[763,399],[393],[1298],[140],[1202,210],[1015,392],[1281],[121],[207,1018],[703,1947],[555,2997],[994,1879],[564],[26],[1362],[1125],[216],[547,1966],[655,1400],[749],[870,2761],[886],[1140,346],[966],[785,2694],[313,1510],[779,2079],[901,782],[575,473],[249],[1047],[276],[797],[1253,2585],[23,604],[5,1810],[1115,863],[42,1296],[807,3151],[280],[112,2313],[37],[1047,2363],[431,2],[986],[1342],[855],[810],[606],[1137],[1204],[493,1537],[313,2813],[86,1868],[632,787],[907],[546,3296],[663,1308],[339,420],[50,866],[1273,815],[1306],[1061],[1079,2366],[299,1650],[649,1886],[835],[415,202],[2],[1156],[680,1300],[810],[35,2356],[608,3144],[910,3206],[261],[219],[665,1108],[1320,230],[979,66],[1230,2910],[1047,1686],[46],[1303],[374],[641,3115],[367],[105],[137],[197,3258],[1080,983],[787,1508],[1115,2069],[1320,1665],[239],[1104,1843],[30],[527],[1188,2637],[1023],[843],[978],[68,1847],[517,460],[351,1432],[561,2162],[214,3183],[1330],[1256],[1173,2967],[148,2072],[550],[329,688],[1192,3177],[535],[584],[200],[271],[1317,63],[1218,1393],[946,2429],[57,2218],[814,793],[1035],[909],[1128,1],[1144,1205],[855,1860],[1082],[1025,1717],[569],[988],[50],[68,524],[506],[727],[1033,2407],[1048],[1246,246],[1306],[577],[890],[756],[741,11],[691,3260],[987,2169],[91],[1191],[1082,575],[431],[1048,3267],[320,834],[896],[1351,1299],[184],[977],[146,1927],[413,177],[1087,1758],[217],[632],[1225,1627],[1180],[504,1619],[754],[1000],[316,3062],[167],[464],[1242,2052],[614,1750],[675,2658],[23,881],[1105],[1428,2755],[12,905],[1349],[383,931],[1216],[652],[260,1596],[191],[1143],[1135],[948,2586],[240,1092],[733,2954],[1260],[565,625],[399],[1098],[393],[817],[1100,1686],[1333,1394],[41],[1395,2275],[425,1151],[788,2921],[925,1440],[475,958],[259],[811,868],[132,1535],[989],[1013,1239],[411],[1359,670],[1283,794],[894,102],[1268,2406],[1050,3060],[172,2765],[1274,1591],[45],[707,2542],[987,1903],[1398,3020],[1427],[1026],[317,1606],[385,2076],[970],[733,1842],[1076,2322],[988,2464],[1282],[66],[1106],[668],[634],[647],[493,650],[526,1241],[255,3137],[661],[1207,377],[556,1200],[963,18],[1309,446],[1362,1713],[729],[991,3110],[1020,1666],[854,2361],[1271],[1365,2836],[845],[1334,2475],[1037],[1186,3064],[235,1121],[406,3293],[381,1219],[942],[139,3241],[1139,1616],[708,2970],[1366],[515,1823],[894],[185],[927,3173],[823,736],[1130,1395],[377,618],[252,2461],[190],[1125],[8,320],[107,1948],[340,277],[1158],[1289],[1044],[797],[351],[1161],[1152],[35],[249],[671],[946],[1180],[742],[524],[44,3090],[1045],[1186,2991],[1314],[795,2668],[994,154],[583,217],[513,885],[877,1779],[397,1024],[159,3230],[1036],[863,2457],[459,610],[1238],[1049,1685],[687],[1364,1252],[543],[149],[1118],[1199],[602],[259,106],[441,52],[445],[32,3143],[942],[692,2873],[449,1204],[793],[896,803],[215,3121],[922],[91,18],[791],[1357],[859],[1051,2996],[480,1885],[1428,1386],[1108],[1400,2985],[396,1140],[1374,214],[874,6],[1400],[171,1509],[1008,1988],[1248],[541,708],[953],[1011,2592],[1222],[384,496],[32],[921],[1328,2483],[782],[701,2722],[1335,1489],[377],[498,931],[1398,2085],[1153],[139,317],[151],[1113,1599],[460],[324,1131],[772,1074],[323,1413],[82],[134],[495,181],[437,1232],[1156,1882],[843],[527,291],[415],[1337,885],[245,231],[342,2294],[807],[290],[185,1845],[216],[887,1466],[1329,274],[394],[1037],[1217],[1249,3188],[424,3261],[959,746],[684,3121],[515,2970],[203,2397],[450],[160],[23,1515],[1163],[957],[932],[512,1025],[528],[829,3289],[1372],[188,422],[383,2436],[260],[261,2057],[396,3139],[1030,486],[615],[479,153],[1395,377],[249,1734],[1354,2061],[1364,187],[803,2364],[1415,1737],[1354,1535],[1274,1873],[656],[814],[150,2004],[1389],[1063,1685],[1393],[517,2841],[1047,1681],[1192,621],[1078,2014],[620],[1143],[876,1854],[1253,1202],[961,2758],[233,2385],[80],[503],[1309,3259],[915,159],[991,3145],[1247],[163,1845],[1035,1141],[1216],[1048,1888],[693,2886],[9,2427],[971,1971],[168],[952,1841],[1307],[948,2001],[1412],[709,2572],[546,1757],[673],[688,1585],[316,714],[740],[312,424],[396],[1329],[41,2303],[721,171],[1355,2535],[906],[959],[111,1101],[1015],[826,3131],[821],[1386],[1358,867],[197,729],[747],[251,3071],[1231,3107],[1381,2098],[547,1323],[1429],[706,3036],[1121,528],[1348,1315],[283],[535,2447],[1422,100],[540,599],[549],[10],[1349,813],[1392],[317,777],[698],[208],[1356],[1260,2838],[1319],[232,1348],[488],[955],[263,3228],[163],[1376],[519,2698],[1269],[1027],[115],[285,2799],[1388,2614],[978],[366,865],[949,1137],[976],[260],[290],[607,2504],[355,1038],[452],[1151,1535],[70,170],[258,2910],[972],[143,2159],[1228],[776,3024],[35,2975],[564],[931,1219],[1293],[1109,3149],[1314],[386,1251],[1401,284],[65],[1170,2003],[740],[1124,2579],[945,2418],[831,1604],[1308,1470],[119,2467],[1167,240],[821,2523],[340],[378,1805],[1126,50],[168],[1209],[895],[7],[1401,710],[869,695],[237,2521],[355,3166],[1240],[204,374],[48,1682],[498],[129,2931],[661],[525],[438,2071],[290,2685],[1228],[170,2860],[74],[1220,3094],[653,1280],[1089],[1264,2961],[791,1552],[1121],[399,2065],[917,32],[270],[307],[1108],[1075,1792],[556],[545,1489],[107,3141],[1411,2535],[1173,1665],[998,13],[494],[866],[825,455],[629],[398,1961],[1260,2915],[532,1781],[975,2857],[587,88],[1017,1676],[1327,88],[457],[659,3157],[1252],[1199,480],[308,2839],[40],[523],[357],[543,2696],[771,1282],[664],[593,1000],[463,3103],[1086,194],[1429,2558],[131,1296],[64,758],[1023,2754],[548,3081],[1175,199],[201],[309,1110],[1185],[1022],[663],[100],[38],[694,2790],[127],[1245,1116],[579],[47,2432],[77,3091],[1100,1264],[1156,2222],[1147,1550],[1403,563],[608],[236],[240,821],[1043],[595],[633,3210],[49],[127,2169],[1287,3223],[998,221],[1140,2447],[1138,174],[196],[1105],[199,1640],[105,1430],[514,2123],[771],[672,1513],[1326,2497],[570,512],[1376,273],[325,599],[464,589],[566],[481,531],[34],[1274],[186],[721],[994],[417],[162],[623],[547],[75],[1079],[1274],[92],[255],[208,256],[1054,1798],[810,1282],[57,2718],[683,2524],[5],[226,2631],[476,927],[796,2290],[284,2799],[739],[649,3156],[1191,2220],[70,1096],[1296,265],[1094,2616],[249,1004],[1351],[1057],[335,1027],[1038],[448,2358],[506,33],[1033,2553],[126,2968],[1142,2145],[872,2270],[1315,2235],[403,2670],[1200,1467],[709,2572],[267],[628],[505,3221],[990,294],[43],[1193,48],[38,1006],[1221,1458],[646,1379],[523,1182],[1125,1342],[168],[903],[316],[653,2276],[92,490],[787,349],[111,2037],[873,523],[1409,1633],[597],[1340,1783],[926,1784],[480,1914],[1251,1244],[975],[772],[319],[1286,1177],[385],[933],[693],[318],[32,1270],[1415],[53],[419],[1123,2594],[192],[525],[1358],[377,2921],[1187,236],[104],[684,2968],[716],[724,3113],[293,1600],[858],[529],[1096],[328],[1290,2030],[1002,2971],[821],[533,996],[1240,1702],[387],[371,2281],[736],[516],[1351,785],[520,2416],[597,2170],[1203,2922],[591,1680],[1200],[1032],[39,3111],[127,963],[567],[1079,2405],[146],[449,1115],[321,300],[731],[109,726],[1288],[1122],[1044,1911],[395],[196,1207],[1100,613],[727],[257,1433],[86,1667],[259,2962],[258],[180,3169],[1283,2721],[37],[1066],[890,2643],[1122],[762,192],[160],[343],[968],[488],[523],[1387],[1128],[897,40],[575,261],[1274],[1356,646],[156,2855],[964,1089],[601],[1004,2888],[1156],[1069,3179],[11,1252],[196,1659],[165],[192,2261],[510],[187],[504,1865],[1292,2934],[895,3026],[1000],[858,1707],[895,2218],[551,1305],[365,2743],[686,1748],[400],[997,1533],[1275,1536],[635],[1122,3190],[611,726],[1147,591],[506,2739],[373,2292],[665,610],[805],[919],[383,3222],[493],[1066,1128],[759,207],[883,828],[285],[832],[342,1212],[614],[186],[1254,606],[15,1248],[1001],[993,1724],[53,2363],[246],[1207],[1317],[234,3229],[993,1186],[1054,870],[1056,3140],[736],[131],[971,131],[488,243],[274,2288],[809],[1269,1858],[473,3029],[357,2041],[192,35],[1193,537],[905,3163],[1334],[172,136],[707,2254],[1172],[1040],[83],[1009,1522],[1220],[117,1034],[87,755],[1232],[461,2660],[817],[564],[1055],[1241],[1296,1532],[1231],[826,2970],[988],[568],[1273,2370],[31,2494],[47,2394],[120],[841,2083],[589],[133,3054],[824,56],[483,730],[370],[1042,2784],[294,1195],[1257],[1227,1589],[96],[1370,626],[356,91],[1419],[1131],[888],[408,726],[1361,1336],[545,1728],[470,2493],[723,2592],[980,1577],[234,2179],[343,2413],[1168,1273],[1240,1736],[111],[254],[868],[1327,877],[104,2780],[1227],[851],[1254,2986],[846,2380],[811],[525],[1149],[1029,2540],[1198,879],[227,2054],[1065],[392],[780],[406],[1365,1588],[1379,545],[907,3044],[241,1641],[491],[1172],[236,248],[154],[1396,902],[998],[974,2920],[591,2595],[320],[1076,2989],[654,591],[998,1330],[808,1879],[751,1382],[749,554],[321,3247],[954,995],[225],[1359,1314],[235],[525],[1208],[343],[819,87],[737,2262],[595,2913],[711,1527],[707,2659],[549],[605],[434,2280],[553,1420],[1410],[1060,1275],[221,1446],[1287,2627],[44,2952],[916],[98,827],[1035],[274,36],[58],[586],[91,2455],[831,1172],[129,3065],[1257],[1301],[1422],[1122],[593],[1165,329],[469],[1277,2956],[63,1801],[281],[1032],[175,2830],[123],[1400],[1406,830],[179,2674],[137,2288],[1177,790],[369],[282,1730],[464,627],[658],[1059,983],[100,1172],[640,3298],[1113,1764],[140,2053],[1329],[1297],[46],[536,410],[598,492],[1302],[286],[224,920],[778,1072],[494,2098],[863,2309],[872,225],[146,904],[344],[288],[418],[802,282],[65],[677],[382,20],[226],[169,2672],[683,1278],[1246],[1165,3074],[676,1759],[1143],[486],[391],[1101],[1340],[1422],[768,278],[511,2753],[1367,2554],[349],[278,2418],[2,219],[842,790],[668],[467,2127],[735],[935,150],[1183,1917],[1397,2319],[611],[373,2897],[632,1481],[1343],[955,1086],[834,1350],[181],[1239],[326,1227],[1264,893],[165,767],[1378],[1172,1177],[916],[581],[802],[123,1505],[103],[1175],[550,2808],[220],[629],[203],[26],[862],[1118,570],[295,1203],[1088,2992],[689,384],[566,2611],[1140],[686],[409],[123,959],[470,1391],[820,2107],[709],[1039],[808],[930,887],[893,2144],[904,2311],[280,482],[294],[1170],[1232],[845],[689,2681],[815,2442],[133],[240],[1332],[337],[132,1938],[716,2644],[1379],[48,355],[404],[341],[806],[1085,2520],[578],[167],[468],[1415,2719],[259,365],[317,1078],[584,571],[995],[528,2085],[1110],[60,1696],[286],[392,450],[593,1222],[821,1400],[27],[434,1481],[433,1676],[871,189],[568,2228],[123],[998,396],[609],[548,612],[854,2301],[872],[247,2710],[979,2850],[1033,355],[305],[310],[167,998],[1338,1998],[825,2480],[1095,388],[41,1678],[973,1904],[710],[252,2667],[277,3210],[150],[1179,911],[773],[1361],[598],[886],[800,688],[655,667],[413,1650],[1429,464],[1215],[393,700],[563],[659,3031],[744],[587,1397],[398,1392],[75,1856],[135,915],[928],[992],[733,760],[666,1464],[379,714],[128,415],[1151],[138,1125],[1219],[1170,1882],[993,2094],[979,1076],[635,1092],[7,296],[578,1863],[699,973],[364,406],[858,3020],[1029],[864,439],[494],[552],[666,2373],[513,430],[984,1222],[1101,2155],[113],[954],[993],[1177,1462],[293,2403],[789,2261],[1090,891],[1336,1577],[1318,2310],[493,2141],[464],[408],[1384],[27,697],[145,625],[991,2015],[48],[387,1847],[1409],[409,1834],[1342,2129],[436],[1214,2824],[1274,2219],[830,12],[293],[418,557],[1176,2587],[941],[818,1888],[1427],[1350],[430],[452,3220],[990],[1340],[497,1665],[373],[558,2724],[1027,1854],[11],[1013,875],[701,2190],[196,2727],[1344,298],[495],[1162],[300,1137],[627,3213],[275,1705],[292,1612],[474,2669],[1027],[46,3062],[556,3124],[1370],[1341,1529],[516],[444],[1249],[500],[476],[447],[513,848],[504,2189],[986],[1037,1545],[1235,1412],[316,1594],[664,2731],[1260],[505],[1152,1131],[892,2890],[959,1416],[636],[258],[1057],[578],[442],[844],[62],[1339],[1223],[852,1837],[1037,3014],[1002],[147,303],[1355,2689],[255],[1217,3281],[254,139],[1064,862],[685],[581],[94,2602],[694],[98,1651],[657,1229],[383,3170],[1193],[694],[517,1963],[492],[158],[925],[1055,2986],[1385],[714,2869],[352],[481],[499,3109],[359,766],[59],[1063],[77,2891],[961],[1293,357],[1074,630],[216,1552],[734,2828],[317],[181],[643,1552],[543],[565],[1405],[1317],[294,655],[1292,2128],[73],[95],[226],[1408,2098],[1351,1860],[776,1716],[335,1608],[411],[560],[120,2127],[740,2218],[515],[484,2609],[798],[314],[276],[1209,936],[883,523],[241],[1181],[763],[644],[136,2490],[1365],[932],[44,1315],[871,1645],[1099,1859],[1125,1958],[238,330],[898],[25],[463,1187],[1391,2461],[1226,3264],[1404,1753],[1065,1272],[910,960],[288,2700],[456],[713],[1358,2395],[1183],[460],[1305],[996,1568],[943,1287],[606,630],[1175,2530],[1148],[1067],[393,1836],[193],[1177,2885],[1173],[644,2750],[82],[179],[1290],[559],[900,392],[1306],[91,2998],[693],[910,2515],[280,2254],[702,2909],[145],[922,2660],[1188],[97,2426],[960],[822,2188],[356,644],[103],[791],[849],[994,842],[471,2033],[284],[195,614],[928],[96],[1230,2256],[237],[1104,2111],[1317],[609,1456],[1155,2852],[709,2272],[658,2367],[322,386],[458,2758],[173,3246],[666,555],[350],[1369,797],[1326,1422],[715,3160],[370],[574,1727],[728,1203],[60],[1193,1295],[994,2857],[190,380],[1420,2840],[1300],[859],[414,2540],[387],[1278],[972,1341],[906,2525],[719],[172],[341],[652],[1276],[819],[1098],[1326,741],[622,2807],[1032],[474,2986],[328],[137],[917],[612,2231],[615],[478],[1029],[244],[808],[914],[488],[492,63],[288],[1163,623],[1303,1269],[192],[815,533],[244,2258],[1019],[1209],[1183],[808],[1191,2545],[1174,2749],[100,776],[1144,191],[1024],[557,1174],[394],[552],[295,3074],[667,603],[1264,171],[1257,1615],[743],[523,1829],[1356,2018],[1219],[962,2786],[1174,2247],[1430,308],[863],[601,3011],[652],[698,1314],[935],[893,1834],[1063,1090],[530,619],[167,997],[1420,1871],[1017],[951],[900],[1373,1100],[695],[94,2079],[1238,2977],[1023],[1304,1350],[1123,346],[1062,902],[1012,994],[1424],[14],[274,3289],[202,3074],[1166,1363],[321,3284],[185],[322,480],[223],[397],[1012,2312],[144],[1128,1231],[805],[31],[822,2282],[1137,659],[1223,2991],[1301],[1367,2461],[274,1022],[504,2331],[1104],[366,2960],[701,541],[169,1117],[642,824],[1320,1354],[471],[1121],[1369],[535],[1291],[1415,2358],[1049,360],[1188],[639],[702,2605],[1069],[799],[967,3269],[966,2077],[1189],[436,1399],[1170],[1010,1170],[467],[1409,1027],[931],[547],[1159,1333],[644],[971,2634],[774,1054],[1388,212],[1106,2492],[1365],[872,406],[599],[1409,2188],[518,2139],[362,549],[539],[832,501],[320,2488],[314,2544],[737,174],[828],[181],[823,1784],[467,357],[764,162],[400,1497],[1389],[394,1510],[763,1028],[854,3221],[1312],[907],[1067,2569],[347],[485],[863],[1162],[1,2070],[792,3170],[1223,1872],[1257,679],[1234,3194],[968,1313],[303,1496],[778],[1215,1757],[382,1155],[1221,737],[1159,767],[992,829],[434],[1233,2510],[425,1899],[391],[63],[1154],[1134],[1143,1939],[400],[711],[68],[1015],[589,1669],[411],[181,1011],[781,2580],[531,121],[695,620],[471,2817],[504],[142],[1280],[1273,2288],[504],[359],[271],[845,2010],[1268],[373,2948],[1288],[1276],[597,2802],[654,245],[1335,598],[418],[368],[944,2670],[1169,250],[792],[131,2126],[707,1783],[560],[283],[141],[1202],[1097],[337],[702],[874,801],[809,114],[889],[165],[1295,1137],[344,1733],[630],[867],[246],[444,147],[1077,1887],[583,909],[750,1997],[1299,2763],[1174],[989],[897,1417],[452,2834],[90,2727],[464],[1103,2037],[352,2783],[154],[144,2465],[318],[315],[966,2765],[1311,3227],[151],[76,1083],[1384],[129],[1087,742],[472],[853],[236,202],[178,149],[746,113],[243,2443],[1336],[1],[530],[1415],[363],[1144,2954],[184],[1003],[384,1764],[482],[735,487],[675],[6],[159,1890],[1],[56],[1059],[1148],[606],[794,1509],[1422],[151],[585,2141],[1240,2748],[336,3197],[92,185],[475,232],[1415],[761,1804],[319,367],[901],[1059,2668],[274,2592],[972,2403],[622,1310],[742,1084],[419,2213],[253,2693],[802,2437],[1358,1567],[649,2881],[474,918],[1006,496],[1073,1548],[750],[607,2549],[1360],[516],[520],[1390],[1258,3179],[1004,1131],[971,1761],[491,561],[239],[125,525],[56],[1000,73],[1230],[11,2518],[826,3],[374,1288],[248,2482],[708,1107],[145,400],[425],[1238,503],[1154,2481],[996],[439],[1411,757],[1167],[333,1898],[236,866],[11,2949],[1036,158],[551,2100],[106,675],[33],[199],[825,1870],[153,1037],[767,1634],[871],[444,677],[1281],[1387,1463],[707,993],[990,28],[483,1981],[673,2786],[209,1784],[1273],[45],[757],[1309,1917],[176,1859],[1183,1222],[82],[422],[668],[1351],[306,2099],[1346,719],[888,73],[1144,3172],[70,2153],[54],[65,995],[1067,2294],[361,72],[1093,2817],[1291],[1368,2398],[1079,1458],[1151],[871,1656],[485,2725],[596],[363],[1207,2820],[525],[1331,2129],[563],[734,716],[707],[792],[1237,2305],[1182],[214],[331,3137],[66],[1211],[1091,219],[1105,1126],[465,1523],[617],[888],[1231,1500],[217,250],[202],[83],[1090,2738],[767],[910,2385],[1052,1815],[26,1515],[236,1277],[192,1661],[273],[424,1404],[947,255],[551,2356],[447,1348],[403],[42,1404],[799],[270,2876],[569,1250],[866],[574],[933],[361],[775],[1408],[741,1104],[412],[415],[736,2771],[54,870],[165],[451],[864],[197,656],[215],[650,1174],[275,2987],[168,768],[1205,627],[172],[1154],[710],[485,597],[1412],[99],[176,2755],[1368],[1347],[88,2182],[306,553],[582,647],[572,2904],[729,2],[172],[732],[138,171],[1353,1665],[393,1005],[140,2849],[1176,3144],[1236,1031],[177,430],[254,2963],[202,1196],[876],[620],[1345,2485],[360,1033],[734,1714],[736],[555,343],[62,1028],[1079,1636],[1028],[271],[586,2055],[791],[1041,3276],[713],[47,963],[202,720],[355,1416],[246,2900],[1256],[1103],[626,598],[779,1541],[1376,2142],[222],[186,1714],[515],[359],[921],[285,1595],[786],[461],[226,2043],[941],[525,2759],[110],[117,1840],[1018],[997,492],[885,594],[1004,147],[464,1426],[15,143],[1179],[14,663],[386,846],[14],[566,1772],[133],[1226],[1189,1528],[296,1164],[1401,292],[223,1331],[1427],[542,2472],[1367],[31],[482],[128,1235],[258],[160],[1060,2329],[1008],[1305,3018],[960,1355],[1396,2700],[1330,509],[403,2039],[946],[712,656],[1255,3040],[87,3124],[124,1331],[916,167],[1036,433],[875,2110],[664],[526],[792],[87,2959],[948,2518],[1041,851],[91],[7],[320,151],[1234],[649,220],[96,2075],[1080,390],[1113,3203],[1108,958],[1226,1807],[813,935],[950,2851],[1351],[1053,613],[722,1525],[1379],[77,374],[606],[9,1613],[903,2445],[727],[598],[1265],[908,3235],[256],[1210,2411],[609],[289,2083],[11,1297],[474,524],[438,3075],[1419,1691],[954,1896],[953],[1123,283],[760],[47],[336,2304],[337,1141],[133],[748],[1298,2620],[1032,2157],[1368],[930,2453],[1027,1465],[1049,2142],[507],[20],[453],[1198,2038],[672,1776],[907],[728],[945,2938],[1346,1131],[1227],[547,1001],[15],[1271],[1149],[36,1507],[231,1125],[181],[1131,2956],[516],[766,1750],[1159,475],[689],[339],[372],[726,3027],[155,1393],[113],[691,3278],[69],[1130,1165],[1223,738],[669,2141],[1326,1467],[940,1015],[775,1347],[1193,1617],[476,1441],[574],[1399],[514,2962],[362,2285],[1162,470],[1362],[1078,1782],[942],[766],[252],[877,2760],[1287,1133],[851],[1211,1150],[373,2031],[1291,1228],[6],[494,369],[1215],[634],[33,2759],[1046,1833],[1036,1389],[1179,429],[307,3231],[584],[348],[223],[1070],[1396],[1305,2213],[512,380],[545],[369],[1323,2988],[1057,748],[838,2115],[628,3301],[18],[630],[810],[1362,3108],[802],[348,1111],[1005],[53,1050],[762,3071],[446,2426],[1102,127],[251,2103],[120,2267],[1324,1796],[1030,2298],[867],[1424,2524],[36],[1053,2774],[66,870],[1169,2054],[711,1152],[464,673],[904],[913],[788,2440],[420,2869],[153,1498],[1103,3117],[299,1659],[1026,2991],[247,1783],[613],[1011],[197,1530],[589],[1421],[500],[1293,184],[1178,1093],[491,468],[521],[638],[1296],[793],[892,1923],[354,1034],[1142],[1217,3126],[1016],[398],[433,1143],[1084,3178],[60,2858],[1426],[952,2626],[630],[110,758],[283],[57,1768],[677],[655,1744],[512,2656],[350],[446],[138],[84,677],[128],[304,595],[617,1316],[510],[580],[748]] From 50caa641ec8adefae73eba7e02bbb05d4978006f Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sun, 8 Sep 2019 07:58:42 +0200 Subject: [PATCH 17/56] the heap based lfu was plenty fast enough with printing disabled --- leetcode/lfucache/lfu.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/leetcode/lfucache/lfu.py b/leetcode/lfucache/lfu.py index 4d2dfea..2baef3d 100644 --- a/leetcode/lfucache/lfu.py +++ b/leetcode/lfucache/lfu.py @@ -266,12 +266,12 @@ def test_lfu3(): c.get(*arg) -def run_test(ops, args, expected=None, verbose=True): +def run_test(ops, args, expected=None, verbose=True, which_flu=0): for idx, (op, arg) in enumerate(zip(ops, args)): if verbose: print(" instruction:", op, arg, expected[idx] if expected else None) if op == "LFUCache": - c = LFUCache(*arg) + c = LFUCache(*arg) if which_flu == 0 else LFUCache1(*arg) elif op == "put": c.put(*arg) elif op == "get": @@ -289,6 +289,20 @@ def test_lfu4(): [None, None, None, None, None, -1, 3]) +def test_lfu_0(benchmark): + """test the speed of submitted with DLL""" + from slow_testcase import ops, args + + benchmark(run_test, ops, args, None, False) + +def test_lfu_1(benchmark): + """test the speed of submitted with DLL""" + from slow_testcase import ops, args + + benchmark(run_test, ops, args, None, False, 1) + + + class Timer: def __enter__(self): self.start = time.monotonic() From b38a16cf9631d08856e38aef8e5a49b0add82ed3 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sun, 8 Sep 2019 08:00:10 +0200 Subject: [PATCH 18/56] feat (numberwords): add some more working with subsets exper --- leetcode/number-valid-words/numberwords.py | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/leetcode/number-valid-words/numberwords.py b/leetcode/number-valid-words/numberwords.py index 107ccb2..6862232 100644 --- a/leetcode/number-valid-words/numberwords.py +++ b/leetcode/number-valid-words/numberwords.py @@ -123,6 +123,31 @@ def iterate_masks(x): y = (y - 1) & x +def iterate2(p): + """second iteration from a solution on leetcode""" + n = ord('a') + a = [1 << (ord(p[0]) - n)] + for c in p[1:]: + t = 1 << (ord(c) - n) + a += [x | t for x in a] + return a + + +class Solution: + def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]: + count = collections.Counter(frozenset(w) for w in words) + # print (count) + res = [] + for p in puzzles: + cur = 0 + for k in range(7): + for c in itertools.combinations(p[1:], k): + cur += count[frozenset(tuple(p[0]) + c)] + + res.append(cur) + return res + + # for profiling, run without the test stuff around it if __name__ == "__main__": from slowtestcase import slow_puzzles, slow_words From f3f8bddf1c11730e57fca00a472f89d2f6588bb2 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 13 Sep 2019 16:14:25 +0200 Subject: [PATCH 19/56] feat (crypto): checked some ideas on letter frequencies --- letter_frequencies.py | 68 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 letter_frequencies.py diff --git a/letter_frequencies.py b/letter_frequencies.py new file mode 100644 index 0000000..01ead29 --- /dev/null +++ b/letter_frequencies.py @@ -0,0 +1,68 @@ +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd + +eng_freq = { + "a": 8.167, + "b": 1.492, + "c": 2.782, + "d": 4.253, + "e": 12.702, + "f": 2.228, + "g": 2.015, + "h": 6.094, + "i": 6.966, + "j": 0.153, + "k": 0.772, + "l": 4.025, + "m": 2.406, + "n": 6.749, + "o": 7.507, + "p": 1.929, + "q": 0.095, + "r": 5.987, + "s": 6.327, + "t": 9.056, + "u": 2.758, + "v": 0.978, + "w": 2.360, + "x": 0.150, + "y": 1.974, + "z": 0.074} + +def meas(fs): + """Single number measure to check how close to frequencies of english + + for correct freqs get 0.065 + for uniform on letters get 0.038 + """ + return sum((f/100)**2 for f in fs) + + +meas(eng_freq.values()) +meas([100/26 for _ in range(26)]) + +freqs = list(eng_freq.values()) + +def barplot(freqs): + plt.bar(np.arange(len(freqs)), freqs) + +barplot(freqs) + +def rot_freqs(freqs, ct): + return freqs[ct:] + freqs[:ct] + +def mixin_freqs(fs, freqs, ct): + return np.array([x + y for x, y in zip(fs, rot_freqs(freqs, ct))]) + + +import random +fs = np.array(freqs) +idxs = [] +for i in range(10_000): + print(meas((100 * fs) / sum(fs))) + idx = random.randrange(0, 26) + idxs.append(idx) + fs = mixin_freqs(fs, freqs, idx) +print(meas((100 * fs) / sum(fs))) +barplot(fs) From a4ddf0740d8c0792cad23f3065be6263582f7788 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 13 Sep 2019 16:16:40 +0200 Subject: [PATCH 20/56] feat (numberwords): add graph showing convergence to uniform --- letter_frequencies.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/letter_frequencies.py b/letter_frequencies.py index 01ead29..f3cf406 100644 --- a/letter_frequencies.py +++ b/letter_frequencies.py @@ -59,10 +59,13 @@ def mixin_freqs(fs, freqs, ct): import random fs = np.array(freqs) idxs = [] -for i in range(10_000): - print(meas((100 * fs) / sum(fs))) +vals = [] +for i in range(200): + vals.append(meas((100 * fs) / sum(fs))) idx = random.randrange(0, 26) idxs.append(idx) fs = mixin_freqs(fs, freqs, idx) print(meas((100 * fs) / sum(fs))) -barplot(fs) + +plt.plot(vals) +plt.title("Showing speed of convergence to uniform") From 38d8872559cc03f642e550b3295c2c20bbed476b Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 20 Sep 2019 18:57:14 +0200 Subject: [PATCH 21/56] feat: multithreaded fizzfuzz (leetcode problem) --- leetcode/fizzbuzz-multith/README.md | 10 ++++ leetcode/fizzbuzz-multith/fizzbuzzm.py | 67 ++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 leetcode/fizzbuzz-multith/README.md create mode 100644 leetcode/fizzbuzz-multith/fizzbuzzm.py diff --git a/leetcode/fizzbuzz-multith/README.md b/leetcode/fizzbuzz-multith/README.md new file mode 100644 index 0000000..7a5ac71 --- /dev/null +++ b/leetcode/fizzbuzz-multith/README.md @@ -0,0 +1,10 @@ +# multithreaded FizzBuzz + +Two issues arose in solving this + +1. how to read the problem to understand what gets called how, +2. everything inside the lock b/c otherwise still could get some extra outputs before all breaks executed (releasing + the lock seemed to lead to extra swapping giving rise to multiple extra outputs when the break was outside the + lock and last) + +Solution off course is silly b/c everything is in the one lock. diff --git a/leetcode/fizzbuzz-multith/fizzbuzzm.py b/leetcode/fizzbuzz-multith/fizzbuzzm.py new file mode 100644 index 0000000..a6adab3 --- /dev/null +++ b/leetcode/fizzbuzz-multith/fizzbuzzm.py @@ -0,0 +1,67 @@ +import threading +from typing import Callable + + +class FizzBuzz: + def __init__(self, n: int): + self.n = n + self.cur = 1 + self.lock = threading.Lock() + + # printFizz() outputs "fizz" + def fizz(self, _print: 'Callable[[], None]') -> None: + while True: + with self.lock: + if self.cur > self.n: + break + if self.cur % 3 == 0 and self.cur % 5 != 0: + _print() + self.cur += 1 + + # printBuzz() outputs "buzz" + def buzz(self, _print: 'Callable[[], None]') -> None: + while True: + with self.lock: + if self.cur > self.n: + break + if self.cur % 3 != 0 and self.cur % 5 == 0: + _print() + self.cur += 1 + + # printFizzBuzz() outputs "fizzbuzz" + def fizzbuzz(self, _print: 'Callable[[], None]') -> None: + while True: + with self.lock: + if self.cur > self.n: + break + if self.cur % 3 == 0 and self.cur % 5 == 0: + _print() + self.cur += 1 + + # printNumber(x) outputs "x", where x is an integer. + def number(self, _print: 'Callable[[int], None]') -> None: + while True: + with self.lock: + if self.cur > self.n: + break + if self.cur % 3 != 0 and self.cur % 5 != 0: + _print(self.cur) + self.cur += 1 + +def run(): + fb = FizzBuzz(15) + t1 = threading.Thread(target=lambda: fb.buzz(lambda: print("buzz"))) + t2 = threading.Thread(target=lambda: fb.fizz(lambda: print("fizz"))) + t3 = threading.Thread(target=lambda: fb.fizzbuzz(lambda: print("fizzbuzz"))) + t4 = threading.Thread(target=lambda: fb.number(lambda n: print(n))) + t1.start() + t2.start() + t3.start() + t4.start() + t1.join() + t2.join() + t3.join() + t4.join() + +if __name__ == "__main__": + run() From ff216d5b93c621c8764e2ff93e1f168f7b80e56d Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sat, 21 Sep 2019 13:03:49 +0200 Subject: [PATCH 22/56] problem(leetcode): multiply string representations of numbers --- leetcode/multiplystrings/multiplystrings.py | 78 +++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 leetcode/multiplystrings/multiplystrings.py diff --git a/leetcode/multiplystrings/multiplystrings.py b/leetcode/multiplystrings/multiplystrings.py new file mode 100644 index 0000000..c605d34 --- /dev/null +++ b/leetcode/multiplystrings/multiplystrings.py @@ -0,0 +1,78 @@ +import random + +class Solution: + def add(self, num1: str, num2: str): + if num1 == "0": + return num2 + elif num2 == "0": + return num1 + + num1 = list(num1) + num1.reverse() + num2 = list(num2) + num2.reverse() + carry = 0 + min_len = min(len(num1), len(num2)) + rv = [] + for idx in range(min_len): + i, j = int(num1[idx]), int(num2[idx]) + v = i + j + carry + rv.append(str(v % 10)) + carry = v // 10 + for idx in range(min_len, len(num1)): + i = int(num1[idx]) + v = i + carry + rv.append(str(v % 10)) + carry = v // 10 + for idx in range(min_len, len(num2)): + i = int(num2[idx]) + v = i + carry + rv.append(str(v % 10)) + carry = v // 10 + + if carry > 0: + rv.append(str(carry)) + rv.reverse() + return "".join(rv) + + def muldigit(self, digit: int, num2: str): + num2 = list(num2) + num2.reverse() + rv = [] + carry = 0 + for idx in range(len(num2)): + v = digit * int(num2[idx]) + carry + rv.append(str(v % 10)) + carry = v // 10 + if carry > 0: + rv.append(str(carry)) + rv.reverse() + return "".join(rv) + + def multiply(self, num1: str, num2: str) -> str: + if num1 == "0" or num2 == "0": + return "0" + + num1 = list(num1) + num1.reverse() + v = "0" + for idx in range(len(num1)): + m = self.muldigit(int(num1[idx]), num2) + "0" * idx + v = self.add(v, m) + return v + +def test_add(): + for _ in range(100): + i, j = random.randrange(0, 1000), random.randrange(0, 1000) + assert Solution().add(str(i), str(j)) == str(i + j) + + +def test1(): + num1 = "2" + num2 = "3" + assert Solution().multiply(num1, num2) == "6" + +def test2(): + num1 = "123" + num2 = "456" + assert Solution().multiply(num1, num2) == "56088" From 09852d9075e5d2bea7cdd85bab7e44477fa753b5 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 27 Sep 2019 11:52:05 +0200 Subject: [PATCH 23/56] feat (sortgrpdep): working but too slow solution --- leetcode/sortgrpdep/sortgrpdep.py | 74 +++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 leetcode/sortgrpdep/sortgrpdep.py diff --git a/leetcode/sortgrpdep/sortgrpdep.py b/leetcode/sortgrpdep/sortgrpdep.py new file mode 100644 index 0000000..e51b6f3 --- /dev/null +++ b/leetcode/sortgrpdep/sortgrpdep.py @@ -0,0 +1,74 @@ +from typing import List +from collections import defaultdict +import time + +class Solution: + def sortItems(self, n: int, m: int, group: List[int], beforeItems: List[List[int]]) -> List[int]: + + def grp(idx): + """The group of element idx; where if idx has group[idx] we assign it to group idx + m by itself""" + g = group[idx] + return g if g >= 0 else idx + m + + # collect the derived order on groups + beforeGrps = defaultdict(set) + for idx, before in enumerate(beforeItems): + beforeGrps[grp(idx)] = beforeGrps[grp(idx)].union({grp(j) for j in before if grp(j) != grp(idx)}) + + itemsLeft = {idx for idx in range(n)} + grpsLeft = {grp(idx) for idx in range(n)} + + rv = [] + while itemsLeft: + candidateGrps = [g for g in grpsLeft if not beforeGrps[g]] + if not candidateGrps: + return [] + minGrp = min(candidateGrps) + grpsLeft.remove(minGrp) + for g in beforeGrps.values(): + if minGrp in g: + g.remove(minGrp) + grpItems = {i for i in itemsLeft if grp(i) == minGrp} + while grpItems: + candidateItems = [i for i in grpItems if not beforeItems[i]] + if not candidateItems: + return [] + minItem = min(candidateItems) + + for l in beforeItems: + if minItem in l: + l.remove(minItem) + rv.append(minItem) + itemsLeft.remove(minItem) + grpItems.remove(minItem) + + return rv + +def test1(): + n = 8 + m = 2 + group = [-1, -1, 1, 0, 0, 1, 0, -1] + beforeItems = [[], [6], [5], [6], [3, 6], [], [], []] + assert Solution().sortItems(n, m, group, beforeItems) == [6, 3, 4, 5, 2, 0, 1, 7] + + +def test2(): + n = 8 + m = 2 + group = [-1, -1, 1, 0, 0, 1, 0, -1] + beforeItems = [[], [6], [5], [6], [3], [], [4], []] + assert Solution().sortItems(n, m, group, beforeItems) == [] + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(f"time {time.monotonic() - self.start}") + +if __name__ == "__main__": + from largetestcase import n, m, group, beforeItems + + # first run 127 seconds + with Timer(): + Solution().sortItems(n, m, group, beforeItems) From aabb3705fd8e1f4a209e3790e810d04b221fb6b6 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 27 Sep 2019 11:52:43 +0200 Subject: [PATCH 24/56] feat (sortgrpdep): add the slow test case --- leetcode/sortgrpdep/largetestcase.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 leetcode/sortgrpdep/largetestcase.py diff --git a/leetcode/sortgrpdep/largetestcase.py b/leetcode/sortgrpdep/largetestcase.py new file mode 100644 index 0000000..3646cc3 --- /dev/null +++ b/leetcode/sortgrpdep/largetestcase.py @@ -0,0 +1,4 @@ +n = 30000 +m = 13931 +group = [6622,7361,1226,13744,10127,4222,13079,7002,3339,7966,13645,10416,544,10424,2768,9775,2951,1245,8043,6673,2530,5367,13450,4595,7522,4073,2532,754,2319,4563,12991,11597,13869,8353,11633,6308,11486,6350,12254,13447,7812,5591,4052,10021,13439,9318,4372,179,8824,13906,6662,987,815,2876,3605,7080,3528,4200,3710,1800,8183,2211,4726,2292,11153,7357,9145,5304,11476,10079,2191,4947,12889,2973,8355,11054,7141,4717,4501,4471,6395,12742,1488,12574,177,8594,12155,10524,11515,13366,11909,9352,9973,2577,7218,5213,1052,2009,245,3627,5717,3943,8854,4913,8408,170,6344,13428,13525,9476,10800,4714,1943,4255,6249,8341,9479,4408,2005,7327,7208,12195,6649,13476,3227,7893,9191,8350,188,10364,374,8004,4103,4905,12191,4561,12659,2839,68,11605,1985,1165,2760,12355,1019,4135,13705,11937,1033,5420,7582,4358,5266,5785,13720,7286,9572,3774,6748,12471,6670,10346,11353,6104,1897,12312,4571,12596,3469,3515,13245,9866,8530,12006,5563,5036,11744,3394,6430,10018,12165,6050,7895,4230,3119,6259,9533,7035,3227,4024,8862,13063,9579,7346,3302,7886,5276,6089,6351,5355,3740,12271,11845,1214,5809,5486,11146,766,1567,8565,2562,7750,5673,8524,919,3694,4003,1678,8450,11113,5866,6915,8805,12769,9749,5632,12133,6134,7092,4892,2235,12299,7627,2269,3712,7970,4750,10980,6058,9699,1074,7333,12607,7044,6538,11540,8579,13517,2302,7394,10142,9854,6912,2182,1838,13179,5429,1061,6410,12628,4158,8589,4585,11539,2019,1952,11212,9389,11771,5854,12370,12139,10229,11744,5314,11246,11745,9469,10800,13580,1107,11872,12117,10867,9643,4674,13055,12943,12326,7767,4621,2746,13620,4542,13411,9200,4778,10098,13415,6252,5149,5273,4530,11436,9307,2095,6650,6798,96,3435,9500,8079,6505,1677,11034,2652,595,3861,2225,10908,7090,10424,951,7615,10442,11947,344,9526,5193,8975,7859,5591,3572,9501,3,6451,9196,9597,7346,12294,4806,7937,8753,12634,2388,3519,1085,11330,12280,11052,11769,13647,3977,12173,11354,1941,5080,9172,5493,907,13095,3465,8296,6947,6031,3584,13258,8649,8029,2763,13870,8546,6934,430,13783,13323,6335,4926,146,11221,5387,5744,6661,10770,224,7501,3701,9964,7156,6570,10958,977,8034,2845,8255,12430,4640,11337,764,10704,3623,2417,2964,6853,19,3350,2033,10627,221,9677,656,6694,12516,12625,12272,1574,1521,2653,10735,9898,11110,9559,3881,12005,1856,9378,9339,8246,6859,4912,44,3669,11008,8905,11378,11269,10792,7917,8242,10403,7496,9983,8848,12808,13507,8339,1883,4972,2753,6949,6106,8635,5326,10586,9516,11098,11941,8294,6110,8885,6495,3643,11483,11913,5544,3594,6095,13481,13387,4880,8707,7751,7367,5866,7454,220,12669,2994,13166,7870,13512,5943,2967,2636,6164,8961,9427,8430,2967,8103,6800,13712,10748,12249,11101,12458,739,12060,7503,13766,7967,4089,2520,8792,11665,4343,2345,12743,12783,4892,222,4958,3786,10436,12906,7059,13523,8206,4802,10048,1677,10268,4073,7663,8376,1213,1342,11459,10779,11888,4508,3686,6525,6236,12725,656,3923,9149,8131,127,1929,8889,283,1706,7846,182,6384,8558,6981,9944,2967,3867,9615,13544,8196,752,7097,7920,3894,7468,12609,7420,11164,1302,689,12171,6788,998,1795,9779,12101,471,6126,8536,11210,10477,10195,5522,3819,1978,12601,2523,9750,864,9729,8447,1652,1646,5104,9459,10147,8922,605,10356,12770,1751,11462,4347,3503,6482,4794,11189,13292,13737,5608,2987,10031,1556,1407,7845,2084,13322,2061,11979,3449,2387,12179,9785,3991,4515,2413,10811,10389,12848,9077,1860,13406,6816,13675,10087,5381,4817,10015,7694,2341,752,10014,6201,7783,4528,6552,550,13629,11583,5067,8377,6806,10648,927,9125,8082,9525,1509,3121,2936,65,4067,523,2195,9019,7734,169,8246,7636,1009,12752,2467,1702,4117,12790,10327,6364,12151,1719,4144,11583,3560,10915,2288,13519,13450,11064,7294,3893,10275,9144,9763,9901,4589,3067,10663,7553,2922,8575,8954,13255,8105,55,4496,3981,12391,7375,10940,12278,8914,1558,12885,2929,12927,6020,4635,3493,4427,13290,3218,13760,8828,6597,5836,11456,12897,11567,10748,13651,7649,13430,1729,4322,10785,2156,10462,11415,7336,4875,11431,421,11030,2074,2953,3396,8813,13247,9640,3227,6835,8563,4482,1361,12728,3196,12792,567,2507,1717,8024,6665,1000,1696,1465,12069,4315,4238,3673,13650,10162,12302,4166,10831,6357,8419,11811,10226,3427,5657,7813,9348,7847,7872,6036,4468,5113,2167,1180,8717,1779,7223,3870,6941,7230,12461,6544,5131,12754,10979,13350,6187,8574,9864,6394,11787,11093,6499,13728,3259,9077,2558,10555,2396,13549,7936,9780,2408,6807,8269,1476,4788,5820,5106,2947,8226,5113,4612,8640,11960,12749,6433,5869,6678,5804,7327,4110,10178,826,8132,2162,6579,9474,11155,5271,12646,10140,192,6803,10281,1722,3933,12557,8525,3341,12976,5108,6107,10260,497,11588,10427,8504,431,10593,13707,11432,9694,8104,12129,9064,10123,2678,5089,1333,8864,7369,13418,11275,11094,224,3066,13649,11997,6902,12243,3423,11050,1937,159,5870,3670,7593,4231,9075,2989,6776,5948,1185,9491,12049,2240,1662,8179,12552,6016,13104,5338,4042,6670,12476,5135,10652,13666,9398,10601,11652,4035,13523,5502,10528,170,6,461,1471,4707,8884,7190,11585,281,7174,12223,5937,6674,6007,5064,11707,5239,3457,10115,9608,4144,7262,10781,6947,11644,2216,2521,8768,8312,3596,11592,13218,10762,6474,3711,13358,2190,6933,3490,4508,3209,11591,4080,13911,11927,1540,3430,6234,10450,3177,10321,3789,13634,10291,6538,10776,8363,5270,227,8354,5140,9896,2417,4433,9418,2660,6678,3516,5327,9170,12035,12591,4358,8670,451,6991,1151,4110,4470,8894,775,4945,565,8746,9241,910,12201,152,5166,6964,12408,3509,2865,6834,1627,380,7053,5612,494,3403,10629,7741,11288,4383,5803,11911,9658,4161,4803,8235,444,4852,2989,12673,5525,1653,4483,5600,1399,2580,8013,8539,3893,4673,3499,12439,5676,744,11483,9140,339,3135,12149,288,6828,12250,6520,11460,11885,1708,2431,7706,4955,12417,10948,9820,11575,13699,7298,3814,693,13674,356,13479,12399,12420,846,2661,11531,2709,4065,12949,3394,5964,1052,1016,4206,1388,5290,8363,6613,11359,1234,8948,6175,453,7924,2211,12761,10593,661,10784,9355,2698,12893,8695,10639,9365,6479,11316,3155,3765,1975,5887,4775,2963,4904,11729,6478,1141,10534,13642,13185,9437,1452,9983,9342,11660,6036,8273,3416,802,12386,2595,8570,11968,6058,7066,11017,5876,13025,7491,10253,3920,10687,13820,7020,3300,8777,1938,13338,1908,9726,12629,7835,9693,13777,10661,170,1598,11926,9494,3189,6858,9491,5125,5741,6809,2985,13321,2418,6504,11503,13455,10141,7857,4385,6451,11005,12701,8303,11408,968,4173,9806,2624,7941,13236,8317,8561,13377,11967,12785,8405,8370,3470,3999,12885,3052,5810,13257,4452,1333,4242,12482,5969,10102,12207,1095,13710,4900,9996,2628,13196,5100,11428,2215,13341,11254,9863,2340,3334,5062,7027,1005,2486,2421,3461,4883,11401,7590,486,3587,7919,10045,9322,11112,4419,508,12936,1488,5121,10136,12241,12541,7571,217,2725,1009,7413,7486,1489,6011,2696,8414,8105,5567,3179,12536,3305,12602,2998,10193,4373,13523,1724,9027,5036,12349,607,5273,8908,3439,6489,10485,11043,9919,13390,1367,12615,11419,12317,11593,289,4230,7242,11829,2942,4623,9986,314,1890,1837,13638,11788,2216,10266,4086,12921,7502,3639,8582,12578,10292,13370,655,13841,2066,13687,10255,8434,1054,10713,7785,11824,2193,3149,1361,9409,6631,6064,10483,13468,10972,9578,7116,4056,6066,11073,6440,13506,11521,10602,10615,12007,7070,10257,10181,1202,4594,10014,6105,7966,1858,4555,1795,12676,3691,7830,8921,552,6274,1757,13052,1165,674,982,9232,6482,10269,3976,9802,10050,11988,11333,5200,11073,8739,10943,3909,3720,2951,5490,3265,10651,923,8652,6262,125,7918,2232,3981,3116,7775,3700,13142,8349,8447,4542,4156,10657,9709,1845,9915,9335,13157,10060,5334,9698,6726,6954,1091,10470,6677,7839,10042,7166,1626,8646,470,2353,10540,2408,8856,1046,5023,8492,13235,6889,6161,11016,3437,7301,9833,10349,4679,7076,10360,1503,889,8798,6925,3746,10608,12082,3707,2036,8616,12981,5013,11343,12372,9346,9575,10254,7890,10111,5092,12393,5174,7958,5838,13448,8057,13127,5131,4799,208,5122,5582,13105,10077,13287,5674,1501,6923,7791,3191,2166,6408,6379,7461,13006,86,8678,6063,1613,6199,6533,3507,9432,2124,5369,2614,3359,4061,1819,3574,7289,10560,10705,2155,510,2559,3727,8951,9802,683,5564,7667,13517,13764,10060,826,13027,11401,1882,5091,1513,3051,10059,10595,7301,11420,9999,10597,7924,9002,2925,7248,2910,9295,12827,7189,1252,6832,10703,3251,7804,13926,10575,1071,1643,10638,194,2798,3834,12477,3866,1073,7898,12536,1199,8095,4714,9739,10522,13232,10200,8301,2883,11263,11413,1607,4582,1758,5757,4473,7811,266,4488,2906,6218,10503,3842,398,5875,10790,8745,756,4424,1535,8114,3093,10503,1538,4009,2413,5317,2009,11978,11116,13787,1376,5755,10932,357,2327,9446,8348,361,10726,3676,12294,8057,9133,13636,10746,1128,12574,13150,1639,1357,7309,13319,8018,11681,11056,2005,8432,4514,2408,3250,10685,1667,2922,4250,6570,8420,4224,7381,8925,5640,5825,1447,10022,5807,4805,4985,3529,11973,11945,9815,13329,8644,3332,11024,1532,313,839,12144,10451,999,9882,6257,5375,5231,8788,2544,2396,2967,420,4732,13760,2725,8484,7767,7694,6070,8008,12667,12207,9326,6886,4893,5773,11110,11709,7399,11091,8045,765,1009,3615,9042,2004,7114,5163,9226,1901,7243,103,4681,8813,4654,5552,11030,11304,6741,6095,12162,11424,6631,8423,3622,8800,11695,3804,11851,272,9935,13767,6509,2758,11618,5681,620,993,5507,1140,6775,821,1337,7724,10076,3329,11417,2316,9495,6873,2304,5686,10019,8673,8,12875,11734,8471,10238,10488,6600,6182,11792,2213,8741,6980,10914,1292,42,714,1357,8523,1454,1316,2123,1827,1942,9934,1298,9672,3872,10974,8265,11324,13737,6427,360,10003,7486,10988,9594,5357,1162,8239,7539,6527,1069,9900,8513,9647,2670,8826,9972,9507,3793,5765,1205,5340,11979,3921,13226,6473,7563,5942,9759,9936,984,6910,1410,8917,12114,7311,385,6724,1191,8974,5373,13151,9513,13668,12811,11751,1884,4717,3915,1487,3973,10124,11362,11490,7384,5690,10432,3673,11809,12314,2092,2338,4236,4293,13422,11582,2020,1977,4616,5499,5225,11165,4919,12366,3614,1693,4489,2352,11739,1732,10079,3397,9367,10755,12833,12348,4552,61,10081,924,9243,8025,8880,9020,11488,12230,13055,12542,7414,4518,9013,2527,13641,13270,6630,10164,11030,12903,2931,6374,6722,3061,5109,2195,8167,5266,13084,4743,8578,13304,13373,7026,11217,13736,13734,4617,7750,765,4468,6156,2062,6398,11969,1236,5695,3701,5950,1945,13051,7628,9477,4252,2147,822,1002,8651,8811,4091,5287,9204,8887,8948,7451,4976,9271,11732,13177,13195,2034,10910,380,3554,9304,9830,1626,5876,2616,260,7906,3044,4347,3999,3740,13202,1196,774,7383,9486,10176,11510,3526,3172,2433,8765,11303,3642,4953,10568,2180,6658,4889,9865,1228,2787,11079,8771,348,10115,13626,1748,4422,7815,11240,791,728,13218,11991,10794,13033,1181,11323,1979,8113,10500,5661,9011,599,6058,10638,6114,8404,8199,1084,11377,1414,4456,812,4937,517,6248,6406,8748,12840,13282,3468,313,6679,7688,10822,12517,12776,6337,1891,3830,5099,624,7763,10196,13103,10553,12669,629,5827,13304,1812,6021,7778,4011,1506,6953,8044,10982,1830,4458,683,1531,2468,981,8410,797,11667,3496,3651,10663,762,10013,8143,8863,10579,4177,7324,1804,2024,5106,6859,4896,2147,5452,4187,13251,8882,3548,995,4761,758,13626,4512,3137,3673,2364,13264,11844,11461,11931,11558,10943,9123,12788,594,8526,10721,10622,7026,1768,8725,5297,5190,12935,1568,1317,926,12271,13818,11708,12851,8490,12478,1101,5269,7513,4863,585,1772,8647,12802,813,9952,3012,11734,4068,8133,1582,11457,4699,911,8587,9537,4272,7,13288,11574,11644,4896,5336,7069,10410,11769,7951,1706,4046,8610,3815,10320,13350,9474,2367,8285,5223,8146,2683,6684,10085,10699,9591,5029,5790,2934,11445,8884,3702,12609,12450,3664,5128,7631,12870,11110,5097,5282,7000,11809,530,9381,11869,8089,3808,7053,9064,11963,4484,457,12107,3190,2278,13878,4669,5727,1364,7098,9888,8264,3890,11581,3537,6338,8549,3316,2863,10387,12814,7371,3069,6776,10979,4261,13865,2377,10809,7877,5490,11570,5998,10376,6913,1795,6257,12629,6794,11335,48,9142,12972,8319,9517,5691,12073,12798,658,7109,3992,9230,9009,1898,7871,10829,10240,3300,11393,388,13096,1622,3503,6163,4670,7515,11283,9378,4447,4554,7439,1244,7630,13666,3623,13404,1722,10089,1694,11250,5397,1662,4018,10985,5893,9765,1821,6073,12861,13016,8905,13362,11424,3298,13016,232,11320,4917,2016,10079,7880,12344,6710,9165,13149,12946,2217,1316,12530,1243,1303,5026,7390,3223,6693,4153,2621,2401,1649,12038,620,4868,10572,298,2982,4709,12899,8676,5090,12775,1445,9411,13215,11853,13759,9003,8622,3387,12595,12583,8103,11030,5673,2324,12376,11149,3234,906,7189,2444,1818,7770,5281,5349,5968,2353,36,12000,2650,6141,8278,774,7298,12172,68,5322,2251,3680,6128,317,3563,8068,3842,1199,10214,2943,10811,12587,1032,3335,262,5985,12303,4294,2951,7106,12306,10291,449,4203,5640,12043,3217,11909,8019,4311,13650,13459,7843,12727,2572,5802,9716,83,11123,13923,13772,10576,2301,2412,6828,416,8789,6949,2362,12475,9835,2745,3685,4316,12850,3155,11335,6313,2052,12452,10510,10688,7158,1569,7479,3512,13769,4766,10098,11841,4622,2275,800,13057,3989,1404,9708,8721,13057,5462,13364,7,3759,2093,10822,5458,2334,5982,10697,11086,3224,12764,2655,9609,8273,2072,12529,9166,5122,13008,3644,9966,6475,13588,13223,6525,11434,6846,4474,513,6557,5867,4878,4481,7039,12074,5141,12509,8498,10613,8897,4192,10835,10366,12873,10323,8627,9021,1260,2911,6436,3574,7173,11965,5210,13507,11222,2420,2788,5197,6862,13266,9476,7764,5789,9309,12097,13881,2401,3031,4737,4824,3483,5168,3520,1553,2721,1761,5097,11979,2129,4572,10113,13240,9506,7128,12219,5736,7543,9042,5875,930,12790,5740,9158,10223,1900,12680,1162,11588,2982,3563,1015,13139,1080,5209,6895,4805,4185,8272,4033,8363,2221,360,10858,160,10602,5951,4996,10430,9117,3429,6159,12739,8117,1290,10163,13860,5598,12720,12008,9618,6532,6664,377,9852,2147,5587,3658,7820,5119,12734,9031,5498,9439,12728,6031,2662,9318,4667,2236,5851,9006,12715,6924,2691,13487,12411,1474,11827,9844,10020,1035,4639,2678,4727,2581,1557,2583,3459,7642,1464,8526,939,7342,6842,5059,13275,9947,12722,2847,7962,2547,6566,9885,3463,4435,11834,2829,8825,6946,12683,2667,8787,1993,4473,7999,13318,9487,11338,11922,10034,3560,5668,9687,4468,7408,6130,10308,1577,13638,2858,5996,13398,1212,9767,10650,6076,9321,12185,4320,1367,3863,174,2514,33,3020,7581,9796,1356,5511,182,2468,174,12103,11497,5531,9685,9081,1951,12514,9527,12126,6348,13105,2111,12732,11346,13101,4554,7299,5567,13317,679,4076,8798,7236,2719,6409,1146,13042,448,7789,2314,7296,5610,2120,7692,10298,2374,2971,8180,2851,11323,10240,6455,3358,9900,11917,11312,7093,2992,12410,9741,9849,327,11538,1140,5052,4323,4661,13906,8514,5655,4764,5770,7592,10373,2039,12137,181,13269,9945,10764,4887,3828,2261,998,2232,1923,9328,257,11682,12020,7182,5173,2940,11806,7460,8784,2878,13180,11862,2116,5406,10194,1107,8819,5294,6251,2811,13075,1994,10223,1233,3614,3408,13269,890,12357,5959,5250,13457,7346,329,8670,5371,9042,9489,13615,9438,12615,4533,9391,3678,2137,9996,3360,3664,10263,9091,5658,6919,8321,458,473,306,13057,4229,62,3718,2952,7832,6606,10802,13178,8519,3831,6298,13307,6150,8953,6021,2029,1008,6477,10458,10688,4829,4236,5457,11657,6881,11673,4412,6291,2052,10011,4943,916,2957,9495,7419,8363,602,7896,9988,4959,6104,12569,4113,8435,13798,1278,10579,12422,2638,1461,345,6753,11987,7164,2335,439,12781,7774,9622,7358,1100,11508,13305,8000,1252,609,8668,10374,3571,2373,5028,7075,13590,4962,1106,5540,11923,1914,2728,10470,12712,3026,4518,3245,203,2083,3041,1683,753,6141,5923,5484,1611,1130,2238,3000,10588,3798,9891,6937,9793,8864,8999,12693,2039,951,12287,8466,4978,4428,13640,11172,3161,2480,8664,2773,703,12763,8554,996,177,7630,8976,3229,9182,8267,10969,2343,7250,6720,5314,4500,2485,13284,2802,4024,4979,9556,4806,10973,12840,11435,11845,3899,4859,5852,8259,7631,11131,963,1796,212,3322,9305,2335,3182,6596,2896,7331,6019,7694,5979,8298,12124,12605,10534,9958,615,11160,6122,9820,7101,5465,8653,9187,8619,3065,12956,1776,13374,4928,8929,2565,5257,1198,12355,5342,2366,5211,12972,13569,13025,1313,12054,7427,3162,2179,5260,13009,6039,11495,13532,11954,9721,6775,8850,7880,11282,3820,9137,283,12916,1293,2240,7331,4207,13657,11924,8390,2802,8313,3819,10636,9410,4630,1717,8778,7825,7699,9324,7742,4132,9795,4017,661,3763,7821,1089,10522,6593,7200,504,9113,556,3011,11364,7676,2270,6997,3383,10733,8256,350,12711,5941,5846,7010,5038,12869,7715,8090,724,10600,5809,120,11747,5254,12185,3180,11171,10060,2878,4649,11931,9868,9302,12734,12918,7847,9276,6925,3832,10849,6145,6438,4211,10271,4204,13152,9398,3009,6643,6756,7119,4047,2781,467,3276,6112,10078,7382,11749,12683,3903,4880,11559,3639,7735,7192,8794,11575,11013,6958,6843,6083,5101,633,1375,6638,7778,276,3757,2546,2553,11450,5942,7939,13298,9061,6615,8991,6564,1257,5748,7019,11100,5260,9913,13020,8478,10803,6505,8653,7530,11298,11153,4196,729,8599,2876,12065,13155,4050,2833,8935,154,966,11338,7402,4117,1027,9717,6794,7379,6429,1065,5274,5586,8220,10274,9996,7157,7357,5083,504,12478,55,5290,5292,6120,4610,11435,682,13050,6685,8939,11923,10239,10879,13525,12532,9085,12046,9545,9274,13376,4921,3253,3894,8663,5412,12109,3021,8094,2080,4059,575,418,12978,7002,9842,1419,9039,2571,7578,11450,13294,237,2448,8180,5654,7645,8281,13143,6905,10202,5366,8790,7570,13910,3919,13913,8713,10649,2735,1336,3450,9470,2579,4571,8372,12851,13497,10362,7574,1220,8734,6677,13671,1532,11970,13739,1280,8397,9121,8548,1852,4081,13463,1767,12255,1982,11737,12424,13473,12468,7490,9003,8529,12160,11883,3117,3054,979,4128,13867,7592,10638,9320,3715,5233,8607,6951,10642,11651,3911,247,921,6675,7162,896,11657,7264,4066,8345,5059,10110,6634,13445,11737,3947,7682,2113,1026,13552,2948,10475,8650,5799,4205,3903,11991,7834,10181,1140,7649,5570,4328,2036,6090,6298,5711,201,10559,517,7316,12197,3503,13854,1819,267,3955,11415,7187,11716,11782,3141,10303,12521,10587,13455,2071,2398,11032,10423,4332,3129,10732,2925,1033,1153,3844,10580,8811,9976,121,6482,11940,11278,11377,6570,2177,5242,4184,11538,7451,3360,11303,9613,4447,10302,6130,13673,10579,1074,5959,13371,566,59,91,6796,1016,10846,8441,11634,253,13450,3883,8028,476,4803,1182,10974,7361,4979,6104,13070,206,3698,5742,6030,2591,9583,9007,2342,12456,9855,6334,4526,8170,6068,2345,9679,6751,7968,10779,6741,8761,3930,8210,165,12455,3493,11962,792,7706,2037,2153,12950,10286,346,4653,6313,9145,2098,5797,5134,3101,13202,3838,13204,10133,6496,5804,13237,7933,8738,13563,4254,3008,12931,365,6505,5518,1990,13601,10114,13362,738,4940,12692,3707,13406,3713,13595,6306,10400,4317,7708,10567,-1,1068,8232,256,13433,12211,12175,10491,7954,10444,2796,13735,11822,10527,10462,6165,6746,949,8503,5967,3779,11389,8575,886,4239,1119,7153,12466,6765,11006,8834,7583,7828,12268,4729,1885,5309,4940,1817,6083,10142,12682,7502,1762,13001,2222,761,10244,2243,12565,7582,1023,11281,9543,1037,13905,13498,3682,4812,5481,9755,4336,5779,9175,12431,4924,12738,1041,11215,4833,8031,5183,11096,122,6047,9717,5814,372,10894,4718,6973,9706,1520,12240,6346,12102,1974,8578,12998,13738,13445,12291,6831,12313,7755,6860,6665,6505,245,5302,10514,278,7168,2587,958,9564,5253,2695,11631,11825,8549,9874,13547,8876,6148,8119,12009,12183,2676,7703,10764,10844,10097,3612,8395,13195,363,2973,10764,4627,160,3146,6433,5012,6041,3131,3329,5460,12990,1778,7263,11493,9089,6306,3100,5966,11480,9169,4978,9889,4647,5398,10036,1589,9028,8109,7102,8702,12078,2165,6127,9342,3111,11362,6951,13795,8936,7555,10130,5051,9955,9405,12409,7850,10319,10996,2015,11995,3635,3570,2251,10760,13896,9781,9313,10975,10968,7084,2031,11660,486,10601,243,2767,9362,7497,1716,9287,4230,3136,58,3588,8918,1876,1620,5101,2842,8976,10776,4716,8289,642,4445,609,9620,8505,3032,9063,3201,3598,8638,13585,4876,4955,978,9384,4833,4775,5367,9614,2532,1241,3389,6836,8665,8498,2899,13296,10601,13723,5661,10546,10356,13837,8523,7821,9685,10344,4861,9175,12360,2069,1479,5691,2654,4853,4013,2268,4892,2862,9271,12103,4008,7616,4575,8492,8514,12904,1419,12211,3573,2738,3864,3021,658,14,7674,4549,7282,11072,8921,108,3961,5011,2618,12996,12332,3126,15,2412,6625,2371,554,3939,7252,6944,2306,9575,12670,8246,10035,7213,2373,10127,315,11292,2005,11725,10861,155,13046,5225,3735,9746,10950,8836,2752,12250,7218,2434,10376,13175,2741,6776,4961,7852,1253,3602,2039,11355,12898,4299,9269,991,3473,305,7295,4965,959,12276,9406,12977,11822,7451,10385,8134,1022,13155,5899,8577,6993,888,13001,11412,173,917,12734,5339,3222,4383,6157,11758,4192,8575,2676,3510,1332,9798,8774,4671,3654,12758,10415,4145,8249,11928,7365,12796,9718,1756,3445,5525,29,3141,8907,2943,11828,13160,11647,9940,9424,1201,2846,8414,10029,13284,2710,7623,6048,5474,13382,8170,12236,1181,6405,12066,8559,8753,2039,4351,12835,11576,3017,9997,9946,10306,108,13195,13727,12318,11525,6849,4287,6280,8733,3117,3532,12602,3009,7544,5459,4720,1511,5093,8055,7013,7877,12765,6063,7887,11570,5802,2530,9886,1956,2917,10612,6756,7859,4949,2479,2171,8212,10940,2114,13788,4973,4078,2442,4635,785,13639,4593,10915,9338,1326,5943,10379,2587,7813,3245,6726,7548,2027,4811,7443,9029,12696,437,10927,7397,3434,210,4293,12367,4535,8493,2087,10728,5195,7221,7184,4329,13478,13809,120,6444,5966,2435,7515,6319,8031,11218,3599,7202,11633,12909,2841,1859,13029,8849,6029,13649,13545,7800,932,4985,1222,12000,9564,10610,12642,5921,13833,1387,821,11760,4925,419,2198,13156,8675,4140,4384,7744,11565,6718,7880,13791,4675,10680,10138,9850,7341,13114,3953,3098,7160,12913,12044,4675,4613,1917,9537,48,2953,10727,11534,10002,1628,3361,11670,2675,7971,4399,778,3022,2622,4827,4483,7218,13025,13036,7291,12954,8417,12986,12829,3271,8144,259,13886,5790,1065,3499,7879,277,7408,7405,7179,12224,2818,13008,4638,5765,12775,8166,7269,12457,6721,13519,1712,9584,7596,2343,1422,6894,764,4261,1840,3955,4722,10693,7446,10983,6687,11134,10550,390,481,52,11222,13771,8270,4506,7144,10619,592,5895,12131,1259,1485,6944,4404,5141,12491,11476,2397,8235,11571,10232,3697,12021,5538,1692,7176,7492,1289,4774,8849,8237,6741,2555,8704,3117,907,2014,12502,12730,6210,9817,5511,7621,2976,10367,499,9269,6469,2305,13062,13537,3111,9256,6403,12892,10334,11541,11535,2574,5625,7639,4351,1363,8388,12671,9270,9569,13630,3721,11019,7688,3520,2764,1818,6146,4415,358,13828,6447,9137,3013,9347,1464,13858,9171,4039,2370,4250,2425,2178,12941,5921,6416,6060,6883,10212,1343,6424,2750,1985,5482,2585,6867,7536,7168,13360,5281,9312,12099,4055,5947,1289,2273,5362,2077,8929,507,4890,6964,9755,3499,10263,11536,11685,7134,10612,12779,8461,5122,10834,1208,8513,7545,11509,11963,631,7849,551,7664,7306,13887,258,6040,2752,11033,8158,3185,4254,10642,6379,11367,13011,10127,11831,6118,648,11621,13565,12114,13135,11624,494,3680,12153,310,10643,6,1283,6324,7009,8987,1372,12998,8423,6019,6738,2051,12090,13888,154,2047,9372,11795,10399,7305,5504,4269,3712,12375,7356,4031,3140,2053,3099,2219,2852,5541,5154,11939,4789,10245,3622,695,9034,9147,11455,12678,7817,350,10962,10548,6240,10615,10087,2231,9463,8890,1950,6657,10697,1191,12182,13698,3229,9981,4150,4909,869,7815,12648,9735,8586,13081,12108,13578,12668,6936,2056,3407,2696,12942,13129,6344,95,10603,708,5581,2065,10157,12283,11443,57,4615,9775,13628,13712,2154,11563,2980,3117,9475,8220,2428,8716,4457,13806,2896,6017,4439,5482,10915,13267,4449,2355,6588,9299,12140,2004,1210,12987,12359,4129,10913,9587,10263,3209,10482,859,11484,12362,13201,3223,4213,8993,5076,3594,7359,12908,9586,1306,8114,8119,5312,12560,8993,5425,333,13472,1301,8407,9618,5259,11117,5114,9875,3363,10282,12723,5813,6376,9421,5844,9505,1018,6485,11894,6560,5820,9418,8139,1720,13011,11309,12611,244,7334,3578,3237,6988,2495,12811,1782,5134,9565,12810,9868,5289,10254,5710,1418,1994,4913,9772,8852,10977,10482,8527,4926,6577,2020,3499,6614,4755,10324,6634,6911,10651,9006,3480,7143,1691,13332,4956,2495,10593,4568,11919,2863,4294,6544,1028,2645,5093,12288,11831,5487,4458,8674,4541,223,9868,4720,10977,3887,7598,5812,9981,7456,3159,9423,2944,190,4866,9925,628,4305,12735,13357,8114,12000,377,8071,1465,6508,11446,8570,12385,11025,11107,7208,5447,9411,6089,5688,1843,10116,9596,528,9415,5401,1700,10840,7768,8595,2645,5417,10694,65,7210,4595,12750,11824,1328,8525,8953,1902,6004,12041,11969,10200,7104,13053,12751,5791,7594,1481,7627,3586,4830,9089,5302,8413,10010,9586,148,2217,12138,10426,6154,8301,10385,8959,4304,1511,563,8702,7510,178,13063,245,12127,5999,12605,2940,6308,8988,7721,3656,13884,8639,12329,2809,1513,4056,3708,10746,3472,11338,13803,224,4584,7029,826,12511,6625,8300,4206,12110,11556,11025,2915,2294,5069,2413,6283,8471,8023,10436,8597,7592,13610,7884,2602,8418,6806,3336,1417,11357,4440,3081,7399,12668,6041,85,4794,8439,6617,3878,406,12045,10759,1770,1509,6833,3589,10879,12926,11590,5875,4978,10867,8035,10189,6030,8696,10649,6270,6113,3245,10303,10055,12701,2756,5083,7832,761,13403,8398,4969,10941,9549,1833,3562,3274,2477,12735,5287,3963,326,2941,5964,8933,10094,2433,9106,6805,13188,12613,2415,357,12709,11141,12762,2335,2933,12369,3899,9410,168,3976,809,1252,2466,7125,3780,235,6203,3242,10442,10307,6292,666,5874,13860,2686,3399,9668,11553,131,11835,799,11361,7620,7519,1643,6166,180,1152,5335,12276,7148,4727,5847,624,1061,1020,8843,8276,3649,3752,12812,555,13341,2845,10671,9371,6785,10257,8950,515,772,13176,6385,5446,9572,1780,12440,10935,4568,130,10194,7695,4791,5529,4966,12288,5674,2463,3441,4838,13105,7855,3559,7618,5700,11544,1814,13036,1352,238,3845,1125,12058,12158,1827,5496,7229,1683,8264,2993,12129,11518,2179,11153,12747,8670,1513,10445,10839,8659,6376,10016,7855,1690,9375,2694,5374,3223,12412,9826,2647,9753,7546,10269,3751,8539,18,12537,1106,4541,12957,8409,3244,4361,12605,662,3654,10270,11979,10269,7823,7096,9066,3219,4352,47,84,8927,5167,6309,13862,4905,10157,812,1113,2791,2002,11898,1573,8261,8096,7610,9398,8618,2427,10177,9396,1209,8119,8673,11433,12432,1294,497,11227,7881,12626,7804,5936,9686,2751,655,7372,12793,11101,3754,11433,4025,5216,11295,2513,831,13042,8721,1375,11538,11862,13001,13011,13381,6524,2683,10642,12543,11476,9022,13831,800,8276,11859,7009,3409,7164,7477,8386,975,1716,9292,13175,3874,11013,8583,2849,2293,13466,2893,5355,6883,7356,3465,8330,6326,5580,1994,4313,13317,4614,3771,13623,8015,3852,7956,837,10854,10812,1057,7550,5794,13892,1658,7579,11943,7485,11636,750,11611,4088,9392,6244,10526,9168,4970,3029,559,10860,11367,655,8389,10088,3192,7164,13665,6800,154,11690,7838,13906,12865,2088,8371,7787,2472,1722,6617,88,7430,7238,9247,11585,1219,5220,1869,5272,11123,6643,7453,3102,4011,1601,3207,5614,10263,7605,3432,2885,7341,3627,1152,6358,1518,6721,7564,6740,425,522,3933,6074,653,2202,9653,8565,543,10863,2814,11086,8376,4867,3976,11744,308,9596,395,4746,957,9212,13581,3478,5219,8621,905,12672,934,8960,5506,13295,5964,7827,4736,12988,12426,9161,5198,4251,8702,3755,4614,9246,1742,1334,9258,13363,10612,10630,4030,8316,10733,9810,8336,5266,8764,8138,1266,11797,12637,3900,9488,10468,9512,7772,3190,10762,5825,8549,1722,3141,9025,3221,4644,503,5444,4688,13882,12635,4509,8317,1250,4376,9440,10831,2881,3519,5505,7919,4400,5398,7570,12654,348,6097,1587,1763,13604,5560,10455,1,3091,10076,2803,8905,3927,9295,1642,6745,1700,737,192,4094,10635,6382,1560,12495,2805,7034,7906,5523,4056,2009,7651,13056,8842,5516,12726,2338,11156,1384,2774,5799,7842,7298,1348,1694,9788,5228,6384,3886,4654,10642,10475,11732,8062,4919,2626,12271,9775,10864,8517,383,2637,12593,1622,1897,11977,8596,9350,7000,7873,1627,6848,4299,8836,10113,8722,13925,9234,10533,274,3669,556,13318,3503,9041,4249,4618,2246,7919,9274,2909,5141,2876,7787,5950,3021,10528,2319,3530,9106,5826,2760,7594,212,9048,11486,9037,9821,8222,2277,3559,10069,1355,9859,5050,6860,6572,5130,4945,12885,12597,5754,2456,11625,8774,5710,76,6919,8664,11114,10124,11067,376,8859,11244,10909,9538,5852,11709,10488,7258,5333,561,4870,2969,2803,8832,13591,11484,3290,5618,1324,378,12816,10941,6624,13582,4040,3474,11054,3883,2380,5787,1216,6728,3433,4581,967,5937,6898,6650,11469,11602,5780,13924,5470,5171,12048,6881,4800,712,10422,10303,6560,2692,8650,13537,2752,10251,3745,10126,7842,13427,870,4324,9109,7147,10975,3221,2538,7849,10095,7370,1602,4730,4060,5,12992,12827,6444,4325,13628,158,966,7675,6158,6230,5847,2901,9650,3644,5425,2385,8455,12840,7207,7054,841,13098,9180,8772,11587,5486,8834,8733,5641,12071,7882,3298,1864,10320,10117,12043,4779,7457,10130,9000,11360,9208,2857,715,204,6358,13725,3206,2966,13899,632,2841,4755,485,5799,5786,9956,4654,5697,8977,7263,2947,3788,3466,13056,13899,12555,12645,2166,2292,11186,3978,9554,9844,11973,7965,252,5932,12149,5983,218,2786,4388,9881,358,9184,6339,11096,9491,4671,12203,3228,7389,11912,2043,5740,1496,12121,6355,13293,378,8423,121,12474,12653,3656,11004,13170,10702,5978,6566,8144,6630,3832,6452,3673,9491,1030,9333,10970,5995,7345,6634,1353,10381,13842,1894,509,7069,2018,7146,8528,9207,828,9122,3699,6595,8986,5046,12735,12476,11134,11655,8730,5842,8359,2254,6723,12968,5384,3253,1101,8494,9605,3605,5604,4880,11286,1192,8664,4467,10690,8755,11896,9518,5344,458,3126,8284,11429,7029,10883,5450,11111,1903,1972,2708,1261,2548,489,4942,1934,3811,105,13593,13709,2848,7359,13293,4984,167,7893,3360,3752,92,9600,1363,6516,11414,6660,9476,411,2560,12915,9231,1502,3933,10227,12620,13342,4060,10877,4275,7970,4763,1034,7075,5145,13539,12916,4143,6776,5320,6572,4214,12925,9172,2895,10580,5005,13771,3570,10687,1774,6921,13741,10228,815,1590,9155,13443,5729,10216,8839,6510,3120,13922,13859,9906,12897,8980,4383,13805,8909,4066,10082,246,5711,11409,3560,11478,9335,3684,11139,12009,13714,4078,10268,6883,8548,13202,12798,3302,527,10205,1116,13065,12111,4665,11751,3966,6213,12657,12353,1812,4873,13025,7286,13027,2978,6617,3474,13254,9820,4787,313,771,8816,6231,2305,6028,2005,1428,13248,4448,5934,11697,13272,13711,6059,6629,6563,7452,2224,1142,7700,7274,154,3417,3155,2091,2467,5883,8493,11543,3653,11531,8295,12586,9768,6493,4118,3785,2663,9230,8171,7782,1966,12842,5036,12575,3502,12488,13000,8937,5612,2247,11418,6033,4989,2919,6906,13397,2847,9916,10237,6066,13176,13084,7663,3303,3150,13827,6019,6213,11531,2829,4839,8369,4370,4802,286,12205,1826,4768,9232,11191,3868,7467,11665,10815,8351,13160,7203,7847,5450,3364,12304,721,9001,9056,11600,12304,7725,11660,9848,3730,13845,6611,6667,2708,8125,10866,10497,4078,7643,10932,7286,240,8475,13842,2215,10500,12664,1154,9830,9130,6554,4016,10283,4335,1633,9354,2607,4120,5586,5886,122,13314,9027,7980,3732,5882,6299,10576,2035,12270,7928,13052,8268,12308,11768,3621,558,13723,7648,13630,11572,958,1085,1276,2747,6583,1302,10651,12196,13284,12116,5842,7753,4996,6240,2355,13330,9985,3379,11377,6328,7731,2503,5668,4537,10387,2780,9418,5395,7255,12413,12213,6517,5047,4289,11403,9834,7219,8662,10794,1660,9009,13874,3331,5455,10829,8798,2933,2561,13394,9030,9245,3884,7033,12201,7348,5049,5686,11469,6248,827,7121,8061,9555,7502,4877,11819,10623,1962,11625,13604,6808,90,8708,3522,341,12812,5980,6196,12219,5677,10263,3418,8454,9197,3248,8736,10735,2969,9102,10050,7462,3907,7437,3872,6527,6885,1779,6847,7733,1793,12211,464,7852,8459,746,9985,11979,5814,1530,7192,6403,765,3293,4308,10659,12571,12643,4548,1014,7077,772,2097,7312,7010,2450,7598,10189,3819,5857,8180,13084,8926,9866,8224,11666,1641,10429,9804,11612,2236,282,12549,1996,1466,4528,1473,4441,11600,8497,11063,13903,9295,785,1393,7559,900,7048,1667,9609,10107,4781,1249,9095,11349,10025,7228,2706,6507,9440,5328,8503,5193,12931,3074,4702,7045,12369,5210,8737,1170,10761,508,12955,11077,4161,12513,10534,12349,11394,12367,9898,11934,4239,11382,6072,10946,2424,2285,8820,500,6843,6400,11120,887,5171,6343,4158,11788,12538,12387,1844,9674,11021,3246,1610,13550,3969,11779,679,10675,1859,10938,6922,9503,4107,2643,690,1436,10454,7125,4520,1544,2786,10318,5235,4976,10169,4204,10432,9973,4232,5331,7038,11742,2866,8488,10215,13673,6004,6981,12585,10513,11432,3627,8123,7857,3555,5795,10947,12100,7179,8545,2310,11055,12838,2374,998,2818,2880,3541,5003,811,4428,5706,4231,5467,9935,6672,5819,8907,10287,9502,4911,7072,10008,8884,9497,9810,6827,8148,3044,3273,10009,5140,498,6621,2358,2346,7217,7607,9554,7971,1494,9197,7180,1670,1987,9615,7413,1873,5844,10461,5208,7485,4990,11268,5374,669,10134,5777,4533,8227,9751,7973,5094,9825,10911,11292,12801,7664,358,4162,8859,10409,3214,6611,9929,5081,11889,3476,11925,6388,5235,13800,13093,11395,8965,2578,3360,1178,10411,1647,9778,11406,715,8810,9607,121,555,12497,5369,10249,13541,2289,8911,13884,1857,3291,12189,13283,11785,362,9598,8943,13749,6982,13920,6067,6730,10700,377,741,8868,5607,9369,13897,1665,4998,10545,2928,371,561,7904,10052,10092,5280,2411,10913,12255,9163,5512,12966,1532,8590,4905,7228,3388,6798,3412,1398,9240,6607,8369,9420,11080,3742,9897,1852,5261,2134,4190,8020,9353,8198,2688,69,11353,115,8072,5163,10600,8971,7259,5718,3662,7596,12447,3640,11721,1773,8696,2303,6542,5192,11577,11832,421,8757,1794,13047,13739,610,3708,7254,6955,11289,10369,4644,12932,9340,4157,7378,8073,2186,11826,6297,9745,9311,13237,2978,12390,1367,9612,5978,284,4791,12213,9318,9046,7626,10971,8200,11635,6316,12869,2499,107,8714,10771,898,6531,13651,11722,3614,5215,2502,9593,2967,1260,9172,10762,7759,819,6837,4723,611,1580,13543,5025,5831,6174,8196,7679,11792,6552,10150,1004,6913,11627,350,11118,5795,8574,5481,8533,8838,12040,13716,11147,13916,2793,3957,10315,13572,3419,214,5155,6963,6151,9314,3651,7920,3621,5238,8500,7350,5802,41,755,8801,8398,2179,6360,3885,1232,2408,4134,13314,13041,444,7645,6218,458,7999,2139,12960,11081,4761,2606,13866,7790,6869,4946,4930,7715,1190,9861,1526,6917,2061,3622,6866,12180,9977,10479,7713,7138,12684,9658,11702,1140,9587,4667,11606,5562,3476,12307,13222,8504,10276,10312,10309,3150,4747,1695,433,1929,8126,9175,4101,3395,11060,5621,10154,10961,6999,2224,1547,11002,1736,1243,12297,258,2476,13468,7772,4550,7264,11192,1337,1174,4445,11484,2543,11342,3225,10677,6398,3065,5151,5919,5264,2345,6137,8850,7241,9160,7246,10517,7607,3095,1614,6480,9132,3738,90,1681,6503,8103,8882,12460,3297,6753,11719,7613,200,10538,3877,13877,6715,13108,2772,826,9819,5996,12833,9936,12628,6108,6410,9607,10105,10337,12122,7836,2094,5567,241,5371,9130,4915,3302,11152,7679,12217,10899,11424,5254,4097,13811,3847,3647,2357,10229,13852,4497,8666,8296,11700,12182,10841,11088,576,4487,1853,3729,4426,8151,5040,12165,5043,1548,4783,8219,11348,4379,7019,10692,4852,4444,4840,9902,13760,6724,9565,4284,449,8723,251,12005,997,9823,4715,4204,5264,10641,11773,471,6297,6160,10275,2122,13565,949,9763,2187,12795,1605,3982,518,3405,7209,5445,12991,4,1162,6906,4931,10652,13546,925,7304,4526,5907,5551,13757,13614,8999,5263,3752,10600,1581,5548,6087,3064,4386,5150,7689,9600,3300,9174,12872,8334,5957,7522,4801,7271,4883,8117,9202,5224,6704,4136,4631,12600,11319,5233,3475,6055,13762,3311,13546,12331,4897,4674,7305,10487,9371,7874,11324,10199,12385,2474,5577,7600,8187,10667,10884,8404,5036,3110,7718,1278,4310,4481,6790,9639,5171,6785,9306,8226,900,1074,4946,8396,1316,12198,1900,12523,8555,8076,11903,7915,5530,2978,13226,279,10964,11035,7849,12387,4445,9924,2088,10088,3823,7172,131,11480,775,5110,10850,8604,13358,10318,13523,12445,3524,13852,173,8275,10165,4896,3229,11569,11362,1833,3032,11071,13254,3293,9834,8478,6454,11992,5017,2206,117,627,4282,2491,9123,10711,10125,3644,6597,11653,3407,7780,5830,452,11025,7507,8298,9791,4548,5273,911,1245,5992,3791,5154,2528,4095,10403,7103,11113,801,3214,3916,5296,895,9294,13019,12759,8972,11029,3793,2178,5025,10499,8704,4364,1461,11896,7866,2845,2870,10141,3620,8648,13351,812,4496,9467,12980,13639,4873,9000,4286,10387,10500,3216,11496,7221,12069,3494,8600,5730,2934,13086,5203,1957,11802,5273,10884,2716,10924,7823,5543,11742,8200,10547,888,1042,4194,10792,515,1625,8279,6664,9162,5728,9690,11118,6108,4599,7340,5853,7517,12394,13143,6381,8034,103,8657,4813,5612,8355,8369,8472,12066,5740,10625,7754,1248,2613,12972,2848,5836,12175,4090,4199,5971,11833,12575,10961,9801,12160,2822,5536,8202,6579,3772,581,12973,6455,9418,6633,11568,9506,9935,8461,966,6625,10280,461,1908,1378,11466,2911,10249,12608,5563,5224,7229,8434,12376,5877,2227,3722,459,5274,13695,10095,636,982,13545,5621,7015,13712,6471,11042,5014,5893,507,4810,11750,12349,2973,13352,9504,1518,11675,3481,5308,10621,6653,7708,9265,12389,5239,11438,5043,5172,13384,7578,6961,1541,9214,9365,13668,5687,317,11712,4928,10303,6088,10096,4688,2357,10654,6482,1127,1526,11011,2813,11892,1114,8490,13372,815,2316,9158,7199,1141,9074,5966,3705,13282,9324,4022,7961,1743,5681,12926,2410,634,2871,4649,13539,10558,6500,12143,2410,5445,13703,10745,11608,7280,1552,1461,13479,2283,11441,4910,10574,10161,12876,13594,6319,6611,3658,13078,2919,13896,10796,5702,12037,11123,9290,6475,11292,3779,13519,8951,10028,7191,1292,9428,9935,7926,11007,3624,4046,8128,13514,4975,3500,5827,3060,13132,2703,13242,10736,10635,8754,10901,3093,8898,13182,4287,5806,11570,5164,8562,11526,6295,7538,4715,8384,3574,10655,13865,4215,7495,9297,12515,8982,4095,9940,5101,637,2397,3857,3966,10515,612,10383,2016,1235,8536,2395,4641,10826,13122,11564,5111,10440,9267,12051,11775,170,3073,1329,10531,4507,6435,10782,12650,3275,5679,11803,4077,6536,9703,2215,148,13029,462,11511,13901,1693,5337,7139,1393,2070,6034,2224,10707,4667,6631,8389,6459,11721,1044,7732,6014,13710,5348,2856,6807,3610,4968,10545,8478,9606,6145,10237,576,12301,8792,4255,7744,11577,8079,2910,12380,10448,3434,8216,7085,7857,4168,8889,10856,182,11765,13386,6715,6297,816,12037,8522,1845,6639,1107,11495,13251,8607,13772,6680,3511,11222,1812,13099,2142,10331,1045,3010,11645,13120,8610,3497,12601,2820,3602,12141,6668,12046,2056,2854,11038,8490,3458,4220,9033,11005,4036,5975,8169,10976,13135,3550,11735,3434,10764,750,2806,2578,8741,7751,13106,3378,12408,165,13444,1883,3087,8209,1796,13436,8118,656,1101,7347,3396,1331,11694,7588,5414,11651,11642,13318,5098,5251,10179,3158,3730,8227,8654,12285,13610,6705,9126,9586,2420,6715,125,3464,2736,1939,6659,4853,5408,10348,8028,6704,3678,4138,12087,11160,1626,8147,1774,10365,11328,247,13236,12900,5848,9067,11647,3909,5344,12542,5941,1062,13714,13828,5516,3309,1125,12544,9747,5125,11270,8513,9933,9244,12279,5359,6116,5629,3213,6214,13229,9429,7051,8022,7470,7430,4593,5200,4166,4966,5757,2424,5065,5709,9501,209,13835,8720,9089,8762,12876,2445,8093,10850,6299,7827,4837,8987,1631,2595,13401,10412,3475,4606,229,9363,1699,3959,3705,12119,6858,12913,6246,741,9237,9297,13067,7537,12367,93,2277,12629,10335,6488,8041,763,6967,8576,7619,5246,12690,9985,5333,10137,3125,7791,5567,12470,4911,11630,13502,5624,1818,3301,2184,8846,10386,10858,13716,8031,12818,7222,12618,3157,10602,4355,75,2020,12825,1952,1177,8963,4441,11044,10061,8414,8682,8380,11400,8460,1459,12106,6213,4101,10049,13021,11229,2418,9216,5360,2734,5854,7221,9166,8526,7769,4410,11611,3003,6098,3372,2952,9629,3634,10910,9859,7340,10248,12908,7168,8303,6187,817,9136,4158,10676,91,6600,7592,6873,3670,11047,12,12034,13802,12340,4194,4310,2111,717,1593,10845,12024,1664,11454,12294,11156,333,1513,9090,1210,2931,13364,3099,9341,2060,6654,4653,852,10827,12520,11365,9402,4131,4874,5007,8257,91,10077,5457,2987,6065,10583,8775,10496,3534,9455,13825,7229,7953,1940,9077,3781,8856,9052,8369,1842,8791,5936,13598,1416,4116,1447,3794,10393,11498,6527,680,6077,12002,7755,6995,11218,11539,3670,5845,13330,9666,7525,2034,1036,13438,841,1186,13337,7370,12115,10448,8296,4710,3264,3392,13747,12740,7044,3382,9959,5369,10257,3589,7226,4256,508,4439,10922,7370,13051,12295,4224,12063,3770,2053,6866,95,1089,3942,6830,11342,2973,9134,12434,4992,3889,3589,5680,12195,3753,11921,5968,8416,13294,3771,8976,2931,8396,7495,6414,2871,5182,5096,7645,8062,5963,6044,8179,8747,3779,3741,769,2553,9412,9243,369,6616,685,3471,2328,3345,4606,6174,3199,1286,675,4423,13578,79,10422,4979,1785,12466,13252,7519,4653,1486,5120,7495,13802,5705,2961,9164,826,4293,10393,13907,2259,7853,8910,4974,9873,9285,11378,6011,1832,4943,12038,12132,10791,2579,7750,4790,3011,6715,4101,11644,9409,7246,9683,10808,8245,4729,12904,12840,10574,1824,12747,6208,11386,1787,4095,4343,3302,11801,9346,11345,13314,12604,365,13073,123,4870,13138,7716,9273,3161,12700,5319,4122,8117,10188,12957,2584,5635,6880,13443,7507,461,6051,9537,12200,2730,13795,12107,8893,3440,13119,13108,13060,13056,5779,12191,29,8552,88,1368,1899,10480,691,7498,13470,2913,5763,4993,12973,2721,9485,8947,2110,8938,6976,9080,7605,394,11243,11812,12099,3858,5635,1039,5540,989,8476,12541,12436,3967,636,4038,1972,6852,6249,6063,4140,11285,1609,13916,7362,158,1257,11637,2893,13754,682,10669,11586,1692,989,5326,6632,2128,9641,8854,11358,12764,770,5244,2277,1788,7245,11035,823,10273,8266,2075,2411,13342,3220,4212,591,9871,9424,10875,5012,8296,7772,2721,11837,13306,1528,12305,3998,7691,1010,13128,10438,6124,3443,10179,13844,4199,1547,8927,8892,8937,9121,1199,917,4759,3619,122,13341,2509,3308,9720,8667,325,7337,6674,9340,804,9593,7973,12432,5407,11117,63,9276,12664,6402,12807,12059,10043,6576,12521,11039,5990,303,4204,9465,6359,1231,3225,464,13190,8041,10379,604,11247,12122,5916,8329,11610,3984,3616,1245,1084,13352,2260,10064,4683,5353,6171,8228,7979,4892,10343,8017,1507,6639,5062,10175,13141,12799,5814,9357,9886,12390,9731,9646,11113,7610,5237,5413,2471,11277,4570,8776,13246,13652,6084,10389,13316,4441,11019,11503,10076,7911,5960,8000,9107,6133,7423,7755,2163,1689,4988,6874,4321,12494,7886,3392,12289,7157,4464,11327,6972,2107,7517,7330,211,9417,2782,4788,2336,1264,5983,2883,2466,9570,10804,4860,1029,1022,9471,4942,4059,3493,10285,188,11418,12375,12731,3512,499,4755,10237,7708,13072,3029,3257,11063,4731,11484,6427,3366,11796,4831,8187,5669,9794,5166,5956,6864,12115,9471,8211,10370,5859,8304,13862,6807,12357,9466,225,12626,2664,8083,5394,7475,12456,10543,1706,2982,3679,6854,7339,8323,11806,8476,1835,13360,12793,2478,10059,13718,7024,7685,1866,10457,8771,13729,8759,6643,3993,1593,1352,11050,12807,2761,7443,11390,907,2315,9922,7734,5094,5078,11788,3209,3725,2681,4136,9864,7233,8192,9328,3647,2072,11783,7594,3460,3887,13486,6392,5880,7440,574,10568,3234,8784,3116,9652,13005,8342,208,10205,11441,6707,5320,983,10688,13572,13627,7910,8094,9285,8493,443,3692,4224,10205,11221,2244,3662,9476,220,404,2514,7480,12884,11727,7563,3624,12859,9308,5178,865,13473,8536,4054,117,8688,12003,13306,8660,5501,1062,10320,5200,7663,10472,11466,9990,1762,6228,9065,9961,4670,8169,10273,4309,9574,7088,8754,1079,6633,10917,11062,5400,13062,6646,11927,8981,7712,10858,6475,5459,3880,6404,8927,5671,2379,3285,9353,175,7579,6883,13152,11786,12611,10279,11971,3272,5139,11194,6789,6787,5007,6878,1792,11290,13085,13720,12811,5650,9230,12852,4186,113,10466,10564,2687,9836,13580,8663,189,5760,12508,12909,6103,2486,8290,5684,3189,12511,8536,11897,13115,8514,4339,9718,1525,12470,4733,9356,160,10442,8230,6340,7383,2473,34,8047,5514,177,4182,11980,12921,11260,2960,9410,12235,11630,10446,5360,3311,607,11873,4365,7223,5127,3615,11396,9340,9620,11468,11497,8756,6940,2041,4041,2507,10044,4862,2935,4258,4555,432,136,6678,3467,794,2,10110,143,10438,4638,10747,4708,1041,8075,8071,13539,4756,5256,11608,9700,12088,3397,6363,9976,132,3143,4426,8506,11910,12801,6400,4212,12007,8747,12672,11404,4124,7822,12744,9310,5687,13505,5719,4180,4270,8562,9209,1484,10085,6998,10545,12833,9235,10198,10270,8835,839,5401,1185,352,12422,1684,4381,13758,2165,10076,690,6856,2848,3929,12915,11676,3779,13096,12087,11700,6462,10091,568,3225,3818,9073,13586,4172,13781,10021,285,5720,9471,5255,6733,4601,5117,4382,13006,2073,7224,6724,340,10292,5621,7279,8638,13430,3902,8065,3557,3624,10710,12087,11382,10255,1094,8283,8123,10314,6335,2561,11578,6630,8768,7687,5113,3802,10312,13301,13477,2655,12446,5005,5967,4433,5716,2202,1465,5736,484,12217,7796,6052,9512,12017,8024,11,10632,13147,2921,515,4132,9410,11866,1831,4621,8415,6503,6305,3645,8328,1822,842,10188,7224,3065,3611,8063,3213,2923,12509,9675,434,10862,8986,11526,13409,624,9523,11916,13267,4810,10608,5989,13454,13307,188,3436,6433,10795,5166,613,13345,10187,3893,2014,8553,9952,12519,8366,4147,8060,7269,5039,6749,8119,8797,1145,13185,5805,1979,12271,10263,3671,13408,824,5634,2220,11932,733,10825,11588,7029,9471,7878,2252,5825,10161,12244,5966,2323,8822,6072,11525,2059,5487,12788,11021,10704,642,681,9406,1299,10885,938,2882,12620,5755,2099,6226,13061,11847,13898,10200,8180,12629,4016,10985,7955,13211,5448,13503,8277,3228,6703,7886,3462,5720,9157,1386,405,10321,9165,10339,11965,9944,7611,7825,3177,13301,7917,3903,4604,2553,6849,10740,4820,2080,4747,4258,3116,555,345,4939,825,8577,3782,7697,1000,13921,13534,11609,6080,10670,6952,8314,4068,5437,10403,2537,11438,8281,10784,2359,2948,9471,9121,12318,9992,3006,12395,223,9716,11623,9715,8585,1127,12748,4903,3213,12325,2453,1665,3847,3470,9790,4275,3730,9321,6336,7264,1239,4356,11792,3875,564,12005,9334,606,5851,5933,1117,2890,665,8093,13037,6203,13206,10234,9762,2099,8180,11496,7051,2494,7625,13164,819,6775,5557,5946,5098,12851,11995,8517,8514,8614,316,3461,8015,11950,9125,7718,8995,578,2890,11657,3164,7444,13140,9709,4876,8903,7651,11834,3144,8230,8053,2258,8283,11138,13001,730,7648,6533,5986,11997,2374,11252,6438,7751,5104,5495,4443,5056,1015,11905,13448,4573,3469,4618,2321,11608,12503,12311,3025,9707,12558,8099,7919,7639,3322,1559,6159,12772,1931,6097,7721,9547,3990,3613,10561,1377,9614,9673,1766,11918,10927,13738,6395,12441,4175,4563,13107,9218,4255,8428,11272,1481,4825,8591,4770,2251,6543,6509,4427,4147,5657,4030,119,13770,7460,9640,8052,1603,12350,301,12875,2497,8401,12275,1267,2131,1464,10610,1675,7725,7966,7538,1275,12743,7402,12134,9198,1500,1170,11025,5172,4629,4292,6114,1868,3031,872,6858,1687,6666,12291,8544,5837,2086,1392,6951,3228,9731,529,8894,4026,2445,4937,10035,6935,988,9555,11450,1655,8814,11805,7121,6671,6047,11975,12809,13870,9589,7344,1104,11447,2556,2643,1079,6592,4416,4456,13512,8571,4307,5948,9480,425,1498,2786,11111,1449,11071,13126,13473,11988,1760,6015,3085,6936,13124,7191,811,13608,11583,9129,12265,3887,7133,5559,11905,6730,2694,7689,9634,9864,4409,1605,7401,9955,3975,11873,484,7305,8654,9726,13557,13565,1645,6262,1067,2137,7679,8117,7378,9908,8792,6671,6526,10257,11088,12484,2286,5610,4829,5816,4977,3598,2978,6207,9328,96,6437,512,5482,8735,9673,6393,8270,156,415,1118,6761,2330,7032,4494,4676,8930,8097,8053,7300,2742,4073,3641,8476,2948,4372,7988,9064,1893,5058,7709,5725,4253,2231,10249,13605,11519,5987,10713,7142,12196,7342,12323,13031,13905,2721,8191,9982,1361,9176,1934,12927,2055,9873,5288,13319,1291,719,8392,441,2284,5709,2813,7740,253,12189,1542,9564,2895,10713,6577,10791,8449,11491,8146,7852,9937,8739,9571,10306,1804,5732,8568,5103,10199,12105,2425,9672,8805,4156,8750,1327,8253,1435,1719,10464,13636,1843,7019,13194,5901,1641,3617,5481,8067,2924,10955,1288,7626,7226,9263,10016,4104,9168,8262,5826,3172,128,8412,11489,5145,419,11683,12571,4565,5114,11997,4781,8911,2727,4851,11821,12880,9951,12389,8569,1941,10388,3513,12139,63,6158,7882,1821,5392,11876,4941,4383,3763,5051,117,6482,2911,3641,281,11782,3467,5349,7360,12453,2005,10610,6744,13409,3553,5447,1675,1342,2312,10215,377,13610,120,6093,12063,5457,9081,12243,5777,3659,13669,3885,4834,1099,9093,3643,1431,8820,3265,13101,4851,3606,2132,13457,3280,2025,7882,5558,1085,5500,2037,5266,6077,10766,5532,10319,1748,1650,9081,6000,7215,10036,4109,12892,8621,344,4668,6086,1956,6543,13089,5079,13902,6564,6843,2435,3386,3734,3094,9166,4940,9225,2555,5116,12762,8268,6664,5496,4074,3721,5178,9839,11500,5829,615,12068,12006,7581,10944,3254,10225,3600,8301,11130,3154,9890,4312,4005,12404,1616,9564,1986,2664,9118,7299,5406,10963,5087,8289,5146,13662,312,2068,9716,9867,8883,9994,5807,9688,3558,7501,4639,13041,8756,5483,11047,10118,2685,1655,11423,3832,816,11925,1528,148,7189,9324,6553,3907,5394,11200,7092,8600,3124,4842,10750,6293,12215,7224,594,961,2577,1978,1423,11415,8010,4395,154,5798,2160,10408,2994,9259,3691,11248,13110,2830,317,8924,6867,886,5601,3880,8820,3556,1483,6748,3014,8263,7910,12846,10703,12072,7493,3633,2809,2868,2982,9538,11938,12678,3518,3670,3639,3657,6429,2854,1650,4322,12882,3006,1934,6659,5891,10265,4617,3125,6365,5086,1390,12245,658,8231,8412,9735,13183,673,1561,12737,9271,7439,1365,12217,6610,703,3143,6792,1786,5484,6909,13573,13524,13675,2254,512,6954,6934,10147,11475,5796,4286,8364,5486,6611,609,6676,7094,1671,13145,8831,4148,11288,2714,10903,1778,11204,12981,3159,13179,7895,8456,1007,8013,4359,3806,11104,6788,5210,11712,5254,6442,7730,12841,3515,3892,5402,3588,12236,9401,6189,10675,8542,5404,13797,6991,10580,13381,9926,8312,6266,13703,7161,11778,12428,8337,11985,13332,485,3737,10441,5903,6827,2916,770,661,10283,13577,6938,11171,4223,5284,1047,4399,7468,13180,9345,11545,152,10273,12168,12453,11400,9219,6028,3036,1739,8386,2148,4392,12974,2177,11076,8887,2463,4370,5195,1741,13768,269,4020,7690,11434,2313,1153,2122,11462,166,4287,12531,12599,7049,11027,7760,437,3746,10643,1991,12735,11739,13583,11196,10203,12389,6700,9983,7407,1962,6504,3705,3088,7836,10676,8364,2048,724,6552,7317,12681,8851,12928,8244,6750,5557,6451,9558,4497,10592,5115,12358,13860,732,338,816,1242,11702,4072,1763,12064,5373,7675,5571,10103,4919,5626,13368,5188,12238,396,13360,933,4658,51,9515,8297,7005,1110,10352,8349,9949,1307,3034,13871,11613,3868,9904,4540,8016,7011,9231,12295,4083,12030,7796,11141,9880,6924,8615,5460,7936,3450,7821,9758,537,8718,6925,12182,12997,7570,4585,13148,2748,1702,2036,2015,12102,13698,7763,5125,11584,5794,341,3309,179,7221,6060,7153,5881,11908,153,1339,6999,13168,12472,5348,5246,4407,12327,12204,7990,13895,4409,3372,9779,11380,4124,1685,3384,6500,13247,6182,6765,816,5136,8310,1136,1920,6762,3990,13889,11358,4101,6428,854,292,10932,13442,8872,467,12336,5375,11708,5750,5438,13213,13091,10298,262,13654,13827,10827,9034,6202,2303,1556,4370,8497,11679,6634,6538,6609,11268,8946,8882,10079,11677,6854,7830,12022,984,12021,12066,4285,7994,6510,6545,7978,7092,5897,13600,2025,6242,6717,2536,5572,1573,11617,37,13412,3263,3249,5555,10222,4648,2552,1046,12629,4158,13733,13453,6700,12907,9897,5149,1113,2563,6618,2864,159,11990,12817,1764,9363,7039,11035,7184,2858,8209,9573,5148,1376,3279,12924,8126,11022,7059,6837,3783,7113,8210,12961,7042,1762,13658,6834,8034,208,1432,1738,4060,10357,2300,11070,4394,6380,6381,1017,8215,4809,3105,10888,787,4285,4183,3459,1472,7694,4252,5159,11797,9666,6474,4143,5992,4633,8452,8360,5735,2862,12585,8124,2662,10119,2694,2668,6880,3844,5814,1997,2024,5012,18,12084,1297,3295,12439,213,7846,4056,12915,12726,5762,13565,9318,5173,1899,5139,13701,2356,8596,1545,5586,2758,7529,11218,13113,4996,3764,11869,10122,891,13709,6610,3081,13196,5399,9256,3908,10438,4050,11869,7326,8931,7850,11885,9324,90,7065,879,10581,4016,6534,3887,6601,3950,5686,10264,2303,12734,7656,8993,657,12741,12718,850,10336,4587,273,6499,13027,10386,3392,1924,214,275,4110,1505,7595,1165,13087,4773,11882,8120,5220,240,12446,11771,12638,1426,9783,11468,7221,1717,2416,8950,8636,9966,3897,11488,12924,10351,1707,6360,1354,2636,13832,8931,9316,9765,4790,13417,13377,12106,8132,8560,3505,8196,7660,1848,7649,3727,13327,9246,9243,5453,8317,2728,11099,4580,4275,4020,5255,12227,5500,10119,3225,13200,1199,3358,13006,2437,2687,122,10188,2276,4182,6754,4176,1803,13648,10859,12173,2089,8814,6395,11976,13211,8933,1719,3696,6417,3937,5028,10051,10941,12208,13240,3265,3849,7333,5623,5419,4230,11624,6691,12137,8036,1591,1868,284,13039,7491,2695,2882,8358,9240,11757,8393,4326,4645,7342,13596,5211,3525,5538,2248,6053,6662,3083,6055,7454,10007,12900,8229,6840,153,11517,6669,13733,8416,697,10168,10890,8653,11872,431,13823,3528,7246,13904,3836,13763,6636,8027,6266,118,8924,11170,9459,12411,10219,2929,13740,1098,5729,460,6037,2256,12730,2386,7598,6736,9336,8927,372,4685,9564,1682,11236,8880,13638,2242,1907,2615,4929,10147,6355,6309,7885,10557,12568,7459,4341,5698,8783,5446,11875,4474,9421,464,7923,13293,8400,928,9203,4719,7945,12945,7549,10683,8651,2008,3539,12327,3240,9491,8179,7840,654,7591,1723,13278,13273,3771,4110,9499,4873,1880,5183,8390,7942,5815,13668,5377,9964,12164,294,7274,12939,6135,308,12024,12386,4758,5048,2964,6281,571,4128,960,3198,5979,6379,6000,12892,11330,6430,1602,622,2439,826,9350,4165,13452,4909,11175,7896,2748,3588,896,7636,8397,97,7871,3946,3743,7701,9098,10479,9187,9304,6682,11894,2260,10690,6049,1159,8229,8218,9787,7672,2505,7377,5920,6089,10380,3095,219,726,9449,785,9033,456,4965,3052,508,3295,4500,13318,964,8902,5776,4084,1552,4613,5032,5320,10815,2208,2511,1843,9803,8360,10102,11664,1086,7666,9591,12526,2742,7741,1601,13837,11052,10634,8264,10434,12629,3328,784,3571,3360,10482,4306,11568,740,3149,6928,8852,4182,10779,6442,13195,3058,7251,3205,2055,8917,4635,7621,3662,11478,13374,12738,3034,7876,13425,9062,9388,3202,98,10442,5703,-1,12245,10419,48,7235,1816,10009,8492,13795,8958,12242,3705,7752,8633,10902,1925,11399,2208,7860,4327,6766,9311,3333,8724,6998,5597,478,4548,11309,4430,8862,11755,4752,11879,772,4443,12376,9244,9487,9198,991,4835,7994,11354,9075,4491,6800,9753,1461,123,9325,9549,12439,509,6978,13599,6468,12308,13748,3674,7071,772,13805,10375,11147,10818,4720,3585,3473,1769,13409,9900,3229,13153,1994,7815,4222,1789,13308,875,10779,3475,1599,9124,9465,3608,7630,12619,3221,9640,1689,10193,899,11523,5109,13557,1858,10170,4821,1686,5243,11367,1931,1573,2158,1309,10062,11268,6372,1594,10181,10157,10232,13117,11001,4618,5029,6075,1111,1803,6976,9030,5564,6990,4397,7214,475,789,6553,9669,7720,7769,13161,9612,6534,1281,7695,9998,8901,9,3087,5699,5019,9199,1244,3850,4807,9854,6460,3630,8071,7331,6807,5061,3361,4952,7910,10633,11232,1573,10484,12560,13540,10704,12183,10958,6515,632,11589,556,3668,7412,1232,9309,2608,13547,9046,1205,12103,5575,7309,8557,10063,3310,7875,3179,6973,1784,5288,557,11003,6771,11804,6847,3690,11473,783,3455,9992,1043,7158,921,11314,3102,10492,904,4184,1088,6820,532,5229,1102,6785,9979,4060,3427,2330,6379,732,1890,5322,13751,2191,10506,13616,12413,9386,542,13231,10665,3340,5189,8079,5155,3738,5135,12982,2813,366,12297,8474,62,1902,4767,10384,11096,11614,13411,9752,5547,10200,100,7464,1788,12112,5416,7243,6624,5364,2944,10570,7165,6839,4967,11251,10432,4752,4617,10140,13107,1597,7630,10099,8170,1948,4390,3417,7788,6166,7309,7019,13009,11033,2390,1238,8016,11023,7086,1052,8785,3001,9189,10334,13339,8713,1206,12564,3285,13597,3832,4778,10377,11253,774,2902,3307,5849,4520,10413,12331,773,8299,5087,2632,2842,5282,4144,10203,9435,1206,11736,9301,9420,7402,13047,9758,10460,6927,13671,5335,8648,3806,11465,1040,11017,13921,11480,921,13371,7274,8140,3200,3942,13372,11059,9019,7219,6609,1624,2041,2726,50,9768,12561,8578,13617,4209,2911,2642,9127,9556,7520,12035,8347,6194,4435,3657,4572,4740,13649,11656,9335,11410,4585,10315,5108,3136,11674,10231,8124,1219,6936,284,6774,4437,985,9255,3478,7894,13095,325,4065,4421,2306,6005,7260,3374,2331,12927,434,8616,7584,9894,191,2202,6006,9637,6876,10327,696,11483,6542,13434,12164,3113,738,1584,753,787,2514,8274,3444,5362,2422,12566,4197,9283,13214,6521,10251,8417,13857,10886,12782,5254,2729,7331,6588,12473,1515,6237,6918,8648,1019,10065,13055,5898,7062,6146,844,7783,12328,9466,7522,2483,1625,6979,9328,2782,4432,4260,6416,10612,4532,10915,5379,11662,295,2502,583,11496,13228,11678,9257,2023,10292,10104,9017,869,6852,2389,6070,11014,9762,4617,5819,13837,10992,5366,2198,638,13867,8721,11452,9180,4210,13502,7740,10543,8725,10739,7742,4597,9906,10283,2605,11126,11039,12295,1103,3703,11034,6468,2414,2632,3295,4613,11873,6014,3269,10158,3399,2926,11671,6750,1143,6570,7328,9894,9645,1346,8045,10154,392,11953,1397,8955,7656,2913,2700,13448,7278,5145,10543,12728,2155,4233,11238,3791,12933,6897,2995,13900,11003,13528,1360,2190,10968,11847,1755,12656,2084,4498,13264,11497,10422,1410,6493,4368,8494,13543,12426,11726,1150,438,4920,9421,12594,239,5631,10240,11915,9164,9061,12812,5975,5904,548,3997,974,11851,10395,5403,8170,942,5442,1160,2475,180,9718,7304,6427,6808,11497,13551,6178,5279,8759,6264,11090,776,4089,5799,5944,12620,9869,9405,4247,3288,3438,806,12305,2251,432,3446,1308,8482,3792,13868,9944,5786,7862,10894,7911,647,10524,10152,2987,7861,13420,3554,8366,5267,9479,6364,7537,3896,4400,6413,2016,2229,10501,13384,10502,6407,7415,6978,12426,3580,12240,557,13624,2193,891,8540,7537,2517,11001,11257,6453,8253,5455,1666,484,9851,3786,6695,13045,11326,7159,3861,11105,9858,1266,6662,4334,2970,10775,11591,6916,11,13657,11076,819,3136,5181,13689,2657,6477,4766,301,11373,13056,2699,5730,4677,2774,4884,13505,6627,6890,5049,7096,12387,1197,8932,5118,11581,13660,8233,8684,12465,3671,6010,10909,1491,3157,682,11763,1908,8555,11835,13338,10039,12100,4100,2567,11264,8323,8124,9387,1466,3425,549,7478,11385,4843,10293,1802,6954,3506,1394,12379,7623,9404,1855,1789,875,6317,1529,11861,5727,3212,13536,10612,5746,5830,5668,9135,13465,12957,9755,6671,13013,1255,3304,5725,2763,793,8558,13436,2020,477,7886,4899,3619,13349,7290,6131,760,868,10840,1932,13607,3706,506,5458,1425,7490,770,11773,3787,11801,10192,8817,731,5750,2162,9749,6207,6296,3470,54,13031,12327,4921,10668,7383,7323,4737,10150,6234,6659,6283,12028,8919,11002,5707,10235,10174,13619,5565,8700,4067,11164,3151,7358,7724,4821,6257,8216,2241,12890,72,8219,11116,2907,13629,5428,10125,6125,3758,7216,7976,7042,9942,4162,569,5241,126,7513,2675,9368,1868,5650,3006,6284,9142,5434,11957,3752,592,855,2395,13441,7388,13927,8363,1502,8911,2774,9634,3494,10569,4186,4806,13132,5080,2269,10501,1577,10940,12212,2447,760,1715,7288,3570,3682,100,5274,2181,10108,2702,13525,11016,12802,3543,7314,11547,9301,5853,5783,1041,2938,8076,1951,10492,1153,1991,1529,2824,9458,3727,1234,4330,7897,6098,13243,2101,11668,13602,5323,13012,1776,4668,2466,12193,7117,636,2016,33,4924,4839,8031,9530,5170,3825,2175,12126,3045,13906,9507,9311,1926,10517,4419,3058,4891,13696,7541,2936,3201,2152,10899,2469,11631,4106,13573,2739,5390,3881,10238,12916,341,9831,11872,4510,12210,10037,5307,4081,1147,10762,4007,12535,10779,4206,11695,13772,5189,2296,13239,8203,12562,2562,664,9278,959,9349,11797,2910,4195,7961,6204,7237,4031,2026,11718,8842,9572,7068,7745,8354,7409,10586,154,2551,13877,11837,12415,12127,9841,851,12332,9807,5904,5389,7803,4119,8489,9957,1236,10155,4042,9872,819,7888,12508,1185,8149,12620,5388,3599,1522,11500,11956,5971,11193,5190,13793,9298,382,11788,11093,10408,13099,5093,10988,12539,3019,2924,3841,10877,13366,1588,13897,5737,3109,1798,3791,5504,9363,1346,4918,11698,11511,3802,11678,9598,10228,13337,4032,763,10300,6423,1506,361,316,10866,1999,7174,811,10025,4367,6743,13125,11000,4981,6325,13123,3756,2858,12558,6007,7708,5794,13561,8477,1067,3601,11971,9276,10272,3286,3384,4940,2809,11966,7346,6921,874,8129,13318,13345,10477,5099,6001,7932,11022,648,340,453,3941,2704,660,2114,1134,1885,625,10251,5855,7677,2621,1080,4232,7161,4651,13423,9038,7043,3360,11804,12272,1138,1268,10887,2939,12064,4362,4261,2847,10654,12772,10321,7097,9887,6697,11145,8173,6917,13564,10803,6926,13009,10820,3904,8147,1828,698,9554,10310,12005,3120,7481,9589,7207,8887,11943,620,1958,6720,8667,6282,12107,7898,10796,11897,8548,11109,9383,4471,2706,11700,5698,2958,13866,1017,2897,3908,3876,11048,10087,13774,2461,3175,11012,5694,4772,9377,10724,10029,852,2126,10498,6299,10393,9973,6680,9383,6703,3172,6549,8883,526,1794,6885,11176,12859,1075,1464,11744,7531,1925,10846,11564,694,4612,749,4060,4681,10609,167,8585,299,11304,12641,12391,6550,269,13141,5063,2853,4840,5905,13556,12474,9791,6567,10453,4458,4417,4750,3876,7194,1809,9060,10560,2755,11947,10925,535,9578,13743,3386,2992,5455,7076,8889,4144,13665,5396,3170,6314,13550,9175,475,7232,8334,12262,388,12805,2418,11565,10345,2643,1973,4652,11512,10278,11070,13912,11619,5134,5415,12608,10423,5592,682,9018,13765,6199,6457,8220,5279,11675,6295,13528,10729,4925,4192,7982,10704,4985,6383,8284,8050,2942,8997,7066,932,9329,10889,10351,6271,1829,8530,7997,2177,7603,5072,5457,9338,6947,6398,1473,4758,4201,11969,11932,6648,6673,2551,12117,4939,2420,2849,7054,8536,9371,13099,3155,797,5234,11771,4690,521,1560,12468,98,10254,430,9765,2451,1606,12394,250,5336,11161,12420,7636,3325,2009,6572,8364,13374,1525,9065,870,8857,10288,10798,1920,12831,13331,8110,268,3606,13685,9628,8157,8895,60,2910,3541,9455,5542,1469,8269,6330,13278,3433,13616,13100,3206,9709,301,12472,1561,13382,2147,4558,5358,6064,80,7523,3727,3391,10332,11593,3018,5336,922,7068,7238,4837,7960,5076,11389,751,8909,7958,580,2005,10036,1072,6888,9079,5683,1000,9202,6717,7847,4217,6099,10550,13524,11933,4099,11395,1959,10976,656,9283,10440,8710,11754,1718,8770,3125,5622,5957,6739,7224,6817,3811,1970,3075,1675,1868,5531,8983,8369,11538,8726,1938,4741,11105,4037,6732,12241,6473,3556,7303,9125,11153,7852,4963,3126,3849,12280,8988,8687,3159,8369,9379,12809,12623,427,4570,8568,5563,1021,13710,11911,9173,11317,4325,12944,1999,9825,1906,4971,2498,4327,3895,7028,6628,11818,2790,7739,6577,6171,2862,6611,7253,5335,10695,1532,11143,11088,2868,12897,12029,11082,11578,11213,5198,8550,7242,12179,5707,1283,3888,6512,11822,2698,3655,6741,2170,415,11341,3828,9910,11912,12245,8911,9192,5865,4372,7100,2601,6824,5902,6748,7647,9452,11900,9385,9276,10330,2490,2266,7418,4291,1591,6303,6939,5432,3243,10873,6143,84,6008,7370,10775,12615,12128,3279,12071,8477,10460,1110,12978,4628,8089,2349,869,685,4420,12184,7411,8294,9864,7570,10388,13031,6557,13694,13068,10559,5182,11967,12153,3937,5357,12513,1071,8946,6051,3067,6063,4144,4021,3076,4040,13163,4659,12494,5401,12042,2801,8492,11062,6057,13643,1965,6077,7739,4735,7022,6657,1185,1142,3215,2570,845,154,6483,11115,10768,7220,1576,3990,9873,1664,2844,6884,9046,1271,4326,1928,7079,893,13299,12961,7884,9293,4268,8176,3679,6176,11235,13398,10307,2138,3644,6960,9376,13181,6001,5745,9545,13153,8969,1067,11827,10450,10927,11517,873,6598,7402,12715,2269,13245,1524,12324,7506,12312,13662,9021,4817,7371,1678,2108,7021,125,5008,727,12126,10583,3246,7591,6479,11514,10508,2366,9598,13692,1968,11709,1820,1315,8882,6573,11761,13190,12991,12922,7666,6315,2504,3037,6234,11683,1950,1939,12882,4371,9967,5891,1273,6619,5934,8369,7166,4622,10143,3468,11470,6704,4788,7509,8676,10029,13856,9478,11,7962,4131,10439,6565,9083,2561,1632,12944,7634,13255,1380,4589,3505,1214,2664,5540,7664,5338,9724,13194,6272,9941,222,3939,153,5641,2382,139,13351,58,11365,5813,5031,399,7777,9616,139,12506,10723,1922,12693,12457,2483,11363,12240,7943,9352,3422,10804,892,5337,13330,3571,413,9827,9009,6078,7246,9104,4881,11681,7965,12736,10136,4772,4556,10600,8057,4464,9045,13035,13304,2880,10021,13705,10394,4211,8209,7115,8158,11071,227,10326,13193,1979,3520,2523,3736,2321,7752,284,10752,432,4877,8219,11491,9553,118,5995,12661,9311,9304,2009,5749,10850,823,3998,11714,7337,5776,4781,2418,5670,5893,999,8583,2894,1033,13049,9455,497,12905,923,4650,8460,11825,5782,9415,3470,879,4164,1746,5560,9002,6823,13610,5899,3544,6090,4197,2744,5964,4652,12349,10564,13061,807,1279,8519,1037,11363,11489,2364,6937,10923,10975,7898,6371,3211,1116,11425,13852,13049,13479,6038,10781,2648,12907,9725,5697,10338,10951,1300,1340,8897,9464,12986,4034,2842,6976,29,2858,4210,1106,3629,4465,2863,12826,10802,1598,8806,5274,7031,1034,8504,5047,12257,9828,6751,3489,6052,9977,12325,4257,4612,10800,13553,6457,13760,6859,5899,3576,8617,8039,10612,1045,390,3568,3439,11548,13802,12404,690,947,4684,10722,7198,2555,146,535,13463,7230,2773,7830,13599,8353,1227,4880,4615,1159,4597,5455,12370,1658,13069,4449,5550,6963,11385,3440,13467,11691,4490,4831,13593,11415,12549,2202,3132,11726,4560,1796,7133,8874,3873,1857,3109,4867,3933,8187,10853,12934,6815,12064,12122,4710,10624,86,157,5841,1186,9178,5872,607,4789,7688,13031,2337,397,13500,7138,1726,11505,3751,10035,9860,2271,416,6020,8183,6790,291,2472,9546,4561,2912,124,61,10263,9785,5865,11257,11283,11721,7022,3629,3425,2619,823,6561,11493,4496,4078,13195,1880,8381,2635,1159,4291,10836,11257,4623,7046,9000,13095,5023,13592,12420,7148,5043,1508,2310,12292,5317,8528,55,9683,1527,7672,7690,8821,472,10299,4927,8894,10593,2787,12175,1643,3863,4199,12475,2934,157,4551,8722,1354,8454,13888,8327,5380,13092,2075,2938,6677,12453,3633,1185,1139,11208,7431,11446,12224,9610,1455,398,5910,545,13623,11107,1686,7728,786,8046,9450,101,3374,6419,8325,4202,2411,3862,6235,9849,12451,4676,7983,5665,12517,8557,9341,2086,8957,12973,2336,3005,12113,6563,6843,5549,7644,10630,1912,4044,848,3914,10254,1755,4352,8519,7337,5387,12389,12993,5901,13379,5722,11320,6723,10639,5381,8960,1629,2172,12986,1331,11689,7047,7167,11829,1573,12969,6035,8782,5405,5115,8848,10724,4590,8708,5046,4732,1054,11931,11349,8997,10140,13563,11728,10649,1939,2041,10722,2306,10543,3980,3873,6757,10682,407,1388,7064,12411,12522,13214,10079,1024,11399,12267,10823,585,570,13116,10152,7520,5228,11398,5823,9549,2325,1163,5037,3199,6243,7371,6929,10340,7788,4151,7274,10738,12525,8005,954,10419,4771,4487,11844,7051,12454,7687,12762,10633,6726,7145,10103,8193,5898,2551,1925,4178,6830,9482,13165,6183,10343,2852,10175,2520,7170,3218,6223,11831,514,8020,5162,11584,9432,5543,5738,4519,11075,5270,8380,9519,10496,7333,873,8669,5840,13790,3146,826,11561,2329,9871,11755,12282,4250,5244,8986,6291,3861,9455,11929,7825,9440,7457,13208,2706,1011,9545,2527,7468,8019,10099,2504,1075,9560,6546,9590,6154,3486,12993,1036,8527,1213,2883,5672,10616,13342,6448,12007,10019,1589,707,305,3877,8295,4584,1758,5637,2025,7806,6932,1539,12482,8088,3318,9006,9802,10949,8912,4914,9867,7245,9658,4839,3173,4862,3772,3106,8715,12924,5027,6395,7229,6797,7837,13242,985,5376,2105,6793,11375,7109,11041,8941,10127,13684,3313,1555,3706,10531,11127,5314,5894,12604,8091,4653,9052,886,1342,11256,8867,11920,3266,5107,2145,262,5422,5073,181,2944,9849,3648,11080,10891,8916,9490,7076,12030,6197,5133,9352,7431,4246,4099,785,12473,11720,6710,4830,505,8695,9280,7580,6641,7479,12381,54,7537,865,7753,9366,3349,128,5272,4425,5609,11625,13002,10990,12242,10167,3057,1280,1041,7030,6678,11496,9388,3376,9491,11603,5092,6122,4046,9268,7623,2180,5382,603,379,12213,4523,6235,7342,4718,10935,12291,197,5262,6714,7828,7248,49,4900,12873,986,13093,13585,12362,7374,7524,13315,13819,9321,12998,8322,8416,7909,4901,252,11737,3278,4554,1207,3400,257,10054,12623,9476,12859,11571,13437,2110,5938,1836,7844,10727,4451,9236,4872,11743,8464,4536,6763,5905,10065,10172,6237,7951,13664,6739,4255,10445,5573,3338,3423,10085,9941,8075,7848,4928,9954,8400,3063,474,12395,11537,2227,6310,10754,685,3838,7461,13194,7325,305,9174,3553,2867,11356,3676,1062,17,12327,928,8698,3474,13883,11025,9599,2158,12354,12879,7838,2451,5763,3491,2211,8492,5429,4496,11348,11703,13661,1329,1481,1934,1361,6128,4276,584,11310,2751,6298,3157,10405,12497,1169,2821,7022,6429,4511,9669,10515,1815,11141,9436,13719,650,165,3775,5438,12624,11328,211,11375,13362,5810,6997,2725,6950,8582,8116,2955,13048,8599,12811,5237,13462,10179,2093,11483,13911,10854,10673,3884,5849,9174,8815,7029,7958,5348,8188,12615,1141,9770,8346,13792,7990,6233,8870,2125,12529,8402,7585,8591,6053,12101,4832,1621,7746,982,13882,7204,9599,4639,8292,7319,10831,3804,11857,7172,10980,12628,10346,144,11252,12008,13363,11530,10099,5860,1497,10073,5726,1992,5227,13058,12403,6635,123,13894,3132,10833,10967,11897,4266,3960,8633,13548,12467,8533,966,11766,132,1728,11630,13049,5772,10204,72,5149,2851,5735,13796,2819,7082,6247,8779,12046,5185,5150,4651,10933,13866,3041,3895,11514,45,10405,13504,11067,3199,12659,4003,3557,9593,10976,1274,12577,8900,6806,7184,7919,11087,3931,11516,9436,6996,8950,2244,10429,7183,4022,6246,5556,13925,13427,2185,984,8460,3318,13528,601,13343,5742,1740,4187,2782,10739,4526,8359,13617,6430,10881,7749,7256,120,11933,821,7168,9971,3431,8295,13126,4758,4860,1329,10654,11215,9357,3508,3175,5146,12154,10678,2136,11147,10327,9516,1143,8449,10467,4855,9890,6804,6961,5360,114,9880,11709,10245,10963,7326,7372,7880,2723,9128,12631,7064,4234,10995,3439,3996,2923,9135,3983,5791,7895,13264,13373,13532,8485,2567,7429,13871,5536,4172,6124,1632,5199,11056,12668,10736,10030,11147,9787,13002,5362,10108,6683,279,9247,8066,2648,1092,6991,748,3406,3129,4917,683,12874,6446,7931,4373,5845,10194,3407,1181,2964,1622,13452,9477,11955,8413,10996,1812,11204,3847,3733,10958,2827,2517,9831,8814,11116,5951,13491,3543,6804,8567,10247,5389,1827,4756,5070,11901,5903,3770,4567,6105,8062,7482,4788,726,7657,8418,1558,5165,6252,8359,3955,4161,4506,1719,1413,7475,1521,4032,4517,6952,5165,11825,4487,4463,37,1264,8870,6226,8445,12290,13380,6369,3268,8284,6752,7421,7689,12079,6899,7736,7806,1158,1418,9890,10335,6153,2341,13440,6828,13367,1340,3566,7768,13554,5153,13086,1599,5660,7600,5543,2573,4181,7196,7184,1857,9846,3310,5102,11259,1600,13195,10135,10244,2865,1400,13551,12086,919,1116,12421,4020,3267,9774,11953,11016,95,5284,11947,10070,7501,12548,7197,13628,2004,11462,247,7300,13613,7427,12840,13296,6117,6651,13733,48,12115,7401,7543,6528,3524,2736,3504,8608,6795,13743,4887,7401,2977,3748,12061,10315,12859,2846,11416,13387,7690,5654,3938,5882,5285,9395,4197,5363,5318,11204,5791,3998,5762,6793,3173,9938,2374,8017,12854,868,2668,12355,6717,11917,1617,2504,12516,8603,12682,2592,5729,13800,7397,7799,9765,6237,9276,3184,12917,9735,10780,1081,7023,1775,7112,1376,13709,11299,9944,6769,2242,7186,9598,9806,12429,8542,7519,7396,523,8566,12759,758,6047,9309,13249,8556,10193,8047,1885,8622,6832,5149,2874,119,8491,12186,11263,288,7136,6043,12887,7096,10449,690,3137,8902,9655,3411,2528,1415,1009,12923,675,8571,5660,13708,13874,6767,4517,5407,1135,5389,1399,2078,235,8501,12707,170,4571,8002,4339,3801,12907,3089,6737,6020,6268,10228,134,10179,12715,62,3616,3870,6095,10129,686,8588,11885,10084,1496,2155,8046,6395,5583,8134,13656,10649,6932,5209,3240,411,7684,4668,7154,5445,9593,6525,13226,11923,4486,3171,6154,12328,3313,10267,10526,6769,935,6854,10222,887,10068,10821,4803,13645,7865,1586,8988,3704,9947,160,6619,9507,8795,6995,12779,4832,9001,10784,3529,336,113,10647,110,5077,12618,4400,2997,11794,4542,4087,8811,9539,9309,10611,9839,4846,5212,12469,11699,12721,7384,6247,6491,11170,9797,12779,7459,1885,13505,6249,8968,5607,78,10572,2784,13022,8564,9484,13335,3367,12049,12917,13286,325,6300,12717,6467,3102,10881,5436,1066,3646,13406,2915,1070,325,13402,5478,12967,524,11209,3754,4761,12403,9018,4956,8279,11335,2718,9988,3745,1897,8618,12468,754,8776,9000,12715,5049,5698,4229,8592,2132,6085,4735,10613,13112,3516,8035,12152,10844,12840,6701,12537,9426,8992,3656,11144,12118,584,5971,9723,11989,5647,2947,13171,5984,3494,465,5638,10608,953,8115,2300,7587,11034,6593,10638,13840,6368,3631,6634,7283,6015,12404,1296,276,8308,13681,6763,744,3004,11518,3210,11035,8862,4765,11868,2061,4309,8565,12583,13819,4116,5689,1005,7363,7155,5195,2388,6952,9010,10695,5353,4583,9934,4464,6353,3727,1156,10217,5764,13394,378,13083,12958,13759,13352,9904,11104,2611,5199,9470,12764,12054,9385,2611,8328,485,11769,7238,4276,857,3189,11262,12903,5763,7078,461,388,1178,2165,3393,10509,11024,5663,13810,7941,360,13415,2709,7351,4945,7597,4468,865,7872,5541,9144,12786,1650,1280,7649,13891,2890,8708,5261,13431,4931,6104,13648,12361,12580,7450,3698,2722,1194,3997,3704,12123,7653,2514,11240,9560,9064,6584,2951,8935,286,10456,10265,3364,5743,7776,2208,10273,7291,13422,2464,12076,11042,4227,1489,6566,5730,9193,3307,8050,10575,899,336,9501,8672,10613,10572,1999,13077,5020,12496,12482,6091,6282,1818,4028,7394,8066,2190,12425,11229,5377,2111,9376,3313,11050,193,8687,8298,12907,9988,1371,3727,3821,4540,13791,9568,7365,10966,3355,2286,1114,9309,688,3824,12457,7593,9663,2343,3355,5352,5706,3659,13349,9735,2053,9712,2069,3380,1138,4307,5969,13652,5282,5488,10861,11955,6211,10646,11465,9079,12016,3997,588,7709,9373,10466,9581,8251,7,6909,272,11374,11767,8313,11241,1042,11659,5071,838,589,12537,4785,2548,8781,5366,555,4017,10409,3206,11567,2855,7737,11052,1725,4349,661,2831,7671,10499,1050,11234,10111,9433,7872,7598,5524,7488,12970,4860,1147,3839,13261,11838,411,13061,5728,1241,11867,2627,8656,3823,8756,3065,11033,7210,4843,11099,8411,11629,8156,7755,187,9538,12066,10123,9067,6397,13273,9646,8927,153,7871,8244,11423,1110,13864,10424,13104,4196,7358,10853,11989,7124,817,5185,1032,3533,6441,1916,743,11151,4881,5247,5782,5814,5053,6844,5486,6992,9449,13452,12532,7841,6800,11661,8903,9717,2027,8592,342,13766,1444,6841,8133,632,8091,9317,8636,6357,4036,9467,4021,76,12148,4782,8280,9967,12287,13772,12353,9660,1334,4376,8842,745,6300,7463,2492,5247,1510,6436,4955,1449,3274,11623,12204,11511,5909,277,5923,3038,6361,7373,12882,610,1123,1172,10828,2007,10411,13315,11469,11808,10824,9560,4283,2207,3051,1483,3240,5414,12360,13539,277,11906,7611,2818,11055,3731,9273,975,13236,6374,10326,12977,7111,9691,8867,117,5568,5842,5691,372,1837,9907,1171,6001,10268,13832,13415,5345,4275,4657,1842,9075,7699,4222,4138,13083,7150,8163,151,2198,3921,10349,4391,5595,3397,10204,7341,2836,351,2676,11670,6155,8810,12094,11773,4499,12777,7783,624,11008,4007,7944,9517,9893,823,12200,6990,5882,11949,11473,3414,5553,6597,37,10598,1294,9223,3781,11929,5651,12983,3159,4331,1474,10619,6006,5275,6543,721,11423,6019,3464,2499,3579,8055,568,6501,7994,2667,3800,7453,3848,1602,10301,1572,3199,4848,10659,10655,4296,3994,9824,2382,10233,7943,8034,906,7251,8652,6556,6202,11408,9993,2724,3118,8466,2991,135,12665,5409,6333,8840,538,7290,1264,10335,5177,12576,5832,1537,3436,7148,7566,5236,11633,8467,11355,13693,5681,5818,4955,3926,7014,7154,6857,1563,4584,2060,13524,313,4526,8744,6445,4278,6452,13160,12081,10083,2499,7500,56,8171,12585,8461,2673,8494,3835,11881,1992,3730,677,11070,13677,8583,4248,6699,8784,12253,7523,7725,869,3982,1428,11743,1419,13368,11660,5209,6919,1537,9301,2087,10552,12687,9022,1144,8404,12729,2684,8630,9037,2389,5260,1392,11413,7642,679,7213,2172,1352,4308,9817,180,5782,11311,3921,626,10650,10744,3816,6715,13202,288,12872,4755,13915,6946,9890,9589,9550,13436,3943,8738,12560,2768,8610,5585,13452,3443,3692,10259,1341,204,2732,11785,5522,2496,253,8225,3543,8514,11948,12725,2295,9628,1957,4680,13836,6869,8195,163,4118,5045,6160,11778,2511,2932,7613,9242,11008,6373,2580,1375,5152,3380,5334,11876,10746,13632,1396,5500,11915,5655,5418,11245,13840,13515,3298,6959,9984,5992,5937,5445,983,3962,2284,4237,4106,9030,3453,11734,8786,7000,1165,4727,7180,10313,356,521,6136,13092,5778,4645,1642,1254,6070,9838,8239,1914,4593,635,5607,13756,10871,8093,12992,5143,1249,10292,3031,10172,4042,3825,13074,2670,6051,5275,11117,4879,9259,5178,12956,13356,5467,9614,1168,7286,8004,12405,5707,4286,6240,5292,7573,12245,1847,12215,7879,7980,3078,5434,10331,9885,3169,368,11328,10696,5950,11351,11634,8849,11699,5235,2235,10724,13728,8518,4896,3552,4899,4709,2175,867,12150,7830,4509,11530,13650,12135,13410,7657,6124,7319,1683,13912,11908,6389,5130,1782,11833,3210,10736,1170,3995,1496,11380,5588,432,5731,1171,6274,11664,4840,163,4241,8636,7777,10306,5861,2468,1897,10808,7749,11788,7971,9056,6371,13319,2796,3510,4223,12050,190,900,113,5287,2994,11413,4531,10828,4484,12012,3425,1812,11369,310,8625,13202,5565,7745,9840,3026,4805,12461,3337,10590,13842,7612,11533,11522,3050,5199,7065,13725,2492,10621,11562,6058,11263,10898,502,9428,12118,12480,784,3402,10158,418,8830,2439,11016,13077,463,3729,6403,4527,3743,2874,13049,2130,6489,13124,1051,1816,4455,9142,2162,12553,10617,9529,215,11786,13538,10484,534,13805,12638,6662,2130,2954,11375,11157,2126,2986,5267,719,12594,893,9875,6986,12866,9299,4081,349,10851,5114,5693,4533,7980,13182,2357,12906,10127,11014,12199,13021,3811,4832,7971,3842,3062,13024,8624,2882,614,13884,2061,9661,7280,2351,9965,8977,1274,13024,1452,1851,6419,5163,13407,2170,2071,6499,11220,13202,1606,4549,5986,2358,982,2493,13606,5832,2754,4577,11791,8285,10133,546,6804,1703,2646,5309,1919,7002,6467,13295,13716,11086,1947,4474,5444,10496,2058,9681,11562,3506,12849,5602,8153,3540,2895,7525,1740,4983,489,12450,9031,7129,1920,2207,7466,2865,6971,6909,8331,8679,4542,6327,10281,3068,6278,12055,5705,3662,12850,11591,3251,9769,1934,3759,1882,11942,1160,7795,11095,8884,11975,12777,2767,12175,10044,13015,8293,11030,8580,13199,13718,12928,10255,1365,13201,11681,892,9505,7577,4263,10969,9489,193,9434,943,9194,9039,6922,2096,3283,6335,6992,8239,411,7195,6692,61,5639,3376,7138,11465,12666,8671,7716,2165,525,6299,5826,3165,5150,6411,4049,10397,1951,4971,1211,410,6324,8480,3781,2126,5438,9737,8085,6537,11128,5840,2,7553,9187,6317,8635,9627,13457,10879,5088,9598,12792,8630,7724,5721,13420,8854,1865,12638,9481,12650,8977,8187,13208,10993,459,13864,922,9272,12612,11574,8541,11,8516,7034,12829,13849,7078,9826,3579,6101,5603,6272,12081,3486,10095,12299,10853,7423,10690,194,630,5623,383,4101,6939,13017,6950,6870,5820,7653,6579,1148,10788,11804,11982,13741,10590,4149,743,206,7816,7749,7690,1671,13361,2366,9489,161,1629,13337,11136,6049,9598,13298,3316,2849,9848,3874,11530,5714,1467,5913,2209,1559,10772,2420,2647,392,1114,852,6266,1370,4458,5015,706,11317,11009,3354,4001,11681,10849,841,9464,6584,12407,9568,10781,7539,2236,4491,9420,2985,12904,1086,2001,7760,4373,9219,1977,11391,1082,989,13298,10511,13130,13545,4530,11986,11040,5535,10738,1818,5407,10906,1657,13848,6467,9294,578,5700,9897,6483,11317,11307,2866,12238,5802,5194,4576,3378,11904,13629,10118,10837,6014,6966,9720,7092,10768,3997,10599,9900,7931,8921,1075,10460,2281,10135,605,6529,7628,3660,3005,4502,13366,13413,3071,4014,9870,777,9536,10803,13851,1875,11576,11437,1226,6351,7346,7750,9709,13233,6560,9254,12563,11179,1163,1147,5657,9703,8531,8052,9418,13551,3627,12341,7509,8399,7909,1435,561,5235,10188,9497,1000,4267,11978,11161,9237,11361,11742,7263,6588,4909,12589,13392,7863,9159,4387,5208,11162,3291,3075,541,13877,10072,11205,1739,9564,13290,5751,4420,2628,6070,580,3947,10147,12929,1336,10689,11247,12101,1305,7610,10015,3190,8559,7477,4184,11181,9385,13594,11234,669,7199,5667,7277,4576,7817,7902,7338,171,8613,9244,6458,8443,9125,6956,10601,2873,11631,1225,9826,859,7099,9679,640,6426,3933,11939,12372,7398,8160,1937,5158,1524,4822,13923,4147,7672,13768,4263,5946,4920,4360,7189,7617,12791,526,865,293,434,8812,3165,8189,13185,1547,7886,9803,13698,10447,10097,4932,5524,12589,760,10110,4144,2848,1856,8435,13205,7054,12553,9822,11598,12986,8855,3137,10770,1372,5914,1829,12412,3877,1309,7001,5883,289,13283,6105,6888,10271,10901,3151,1380,9129,5530,9843,1486,5176,11205,10257,13446,10533,13054,11701,9478,12086,2277,1,3143,11860,6295,1642,9654,6757,1809,10212,293,7304,9562,10924,10531,3806,2528,5679,1447,3366,2678,4298,4752,1017,9434,8550,1033,9744,3304,430,5315,11263,3789,7402,13035,13624,8905,12159,3922,1396,5844,11177,108,8714,10165,9592,13324,768,6965,13811,455,5574,4327,592,10835,8832,13205,10613,6841,13308,4877,11581,10568,2368,5353,13894,7543,13045,9266,1809,1391,9156,320,1295,12437,8571,13066,6186,3246,925,9554,3495,5884,225,11760,7175,10598,9291,13707,8878,10475,10380,12059,11970,12610,6962,8763,12696,7850,8600,3247,9196,6884,13518,1184,11966,2193,1136,6569,12483,6044,13559,8377,1747,997,1937,1860,8415,6722,7506,5064,8937,1094,10343,4059,6793,13486,12209,12248,8387,10843,1477,2014,6789,3010,13930,12370,13904,10036,755,1649,6925,3071,9000,5895,2114,4504,12729,50,9977,4739,4471,1742,4991,10342,1351,9703,2197,3971,1464,7735,13176,8840,5324,9917,5149,10176,1774,3837,7878,10818,12110,11559,10073,4393,11095,13373,11335,10785,107,4284,13799,3046,8962,10510,795,7110,7705,10378,1755,6818,12944,9363,11973,11367,1602,7113,174,12360,9782,4772,6450,4606,11613,7563,12724,13759,6558,613,1418,2189,6044,4494,129,10842,5856,1541,7811,3519,12993,7187,9896,11755,1327,5727,9396,10142,7987,3578,11141,7645,544,7224,12802,5129,10130,9910,6667,1658,4198,3943,12677,13677,2044,12590,4347,9032,13121,5562,3248,11982,1406,10302,11305,12805,6921,5255,13558,7061,4856,12391,12696,2903,5595,1876,2533,8787,10123,10842,8038,8854,12744,8184,4546,1504,10397,3853,12959,10762,13672,12057,9979,8965,1934,3254,12786,11133,5559,4657,249,10824,4521,3123,7013,13303,3820,11200,8274,1653,5700,13393,5846,2913,2384,11337,11765,4214,5283,3173,4931,11590,10714,1840,4344,13280,6342,862,8450,11186,12360,2919,5428,641,13775,1984,11860,10782,7793,13599,3021,10522,8557,1357,8765,13649,9170,3681,8357,4064,2199,12780,492,9822,13441,3784,4550,7841,3739,11824,635,4225,11405,2637,1430,191,4615,3391,8173,3407,12525,5223,7342,9103,13545,6673,8497,5868,8221,6816,3842,1563,3018,2979,7842,10826,5494,10105,7496,13130,12549,12347,11989,2460,460,5138,1225,2072,314,12155,2812,11228,2343,7860,12738,2438,13418,3893,8764,4343,4625,11184,616,13439,3076,4763,12475,8431,9819,6525,9461,7603,4286,11657,1326,11158,10980,11283,3670,7454,906,12209,6333,9485,9367,11540,11150,10602,1594,4081,8029,3070,7630,12187,8077,5064,6448,7750,2745,6927,11076,7431,7467,13056,2312,1352,6507,13202,5945,8595,671,2127,63,13059,3378,4524,7928,6116,6992,566,2694,5887,13580,13610,12567,5771,11531,4450,8811,11226,11010,139,2506,9192,810,2245,9094,9465,13047,9533,5226,6649,571,13854,3297,3692,4169,12846,7555,3640,4419,4902,2304,2334,13760,3884,9287,7815,2330,7120,3526,5089,1443,2204,10591,10338,1112,12599,6384,7557,36,9481,6415,3958,3384,7678,2140,11572,1696,5230,8389,6693,9425,3396,429,5465,13458,10543,2052,11693,12636,388,10054,10586,13576,9381,6724,1852,9666,11759,11003,73,4190,7875,13563,24,12063,2516,13488,4925,4451,11653,11566,6773,263,2070,6575,13266,4039,12350,6641,6877,11238,4633,12332,8896,2553,9511,12513,1282,6744,5114,189,10385,7089,4400,12256,10472,1156,3678,5556,4259,12776,8052,1079,6391,4255,2002,5578,2997,12883,9027,13140,8684,10290,2633,0,10197,1401,1073,3289,13251,7792,2017,9391,10492,4764,5318,8843,2527,10187,2241,11474,11220,11823,5436,10246,530,7036,3927,13244,2212,848,12424,5255,13370,1742,3841,12153,9148,7494,6450,4082,10984,22,4848,7276,13182,6139,7567,13610,805,10984,3318,2640,6983,8947,7487,9464,1316,3773,10649,12927,2801,3244,7282,12374,2375,11213,4602,2928,5516,2843,5894,10671,7336,2196,1181,13265,204,12346,7066,11274,10670,6443,5966,8755,9010,8203,1853,710,12401,13171,9702,7745,221,230,3672,1446,10021,12583,12567,3063,2773,1759,1381,8574,11923,5468,5483,7851,10775,486,13106,9557,13108,12061,6561,1671,7153,5158,6206,4149,7120,13014,8798,7353,4491,3219,1400,13069,2423,8494,9769,12944,10347,5135,2222,723,10014,131,11950,9748,11120,10214,1904,7223,11642,7429,11900,3430,13156,12916,260,12466,3401,8113,251,1240,5203,9558,7961,13091,8095,6781,10983,9842,10870,3412,1439,8948,2510,399,11600,2088,9570,7882,1019,2405,7480,9590,7147,13518,13848,8824,3142,4092,6161,9595,1093,3973,11650,11384,1129,5464,4279,12169,7514,5805,13257,12194,13424,13923,6155,9206,8557,9814,13519,9971,11601,3876,9646,3657,6736,4593,13771,6849,769,1578,9740,13290,9792,10473,3760,10958,12622,7848,338,8556,6993,9838,4471,11537,5333,6910,10465,6461,2684,582,4406,5783,9994,8569,13362,7278,5065,2471,10922,8908,10169,12964,4593,10876,10474,8515,7374,8591,1924,11858,605,9123,5249,2146,712,680,8568,13129,9780,2953,11977,10332,13164,2766,4430,2773,9786,2653,2711,734,4676,9714,4340,8621,7753,9906,1464,3447,3147,4406,7548,11071,1663,101,10943,5742,7727,11445,8501,5228,392,10795,7661,9682,5671,2671,13893,13423,11467,10021,5152,2009,10983,11947,9309,4077,13529,1925,13605,10103,9992,1014,953,671,10710,7104,520,6119,469,8171,6439,10974,10118,10077,7664,1511,9072,336,12718,4552,2138,1412,7274,1480,11936,3554,3619,2559,11224,11528,6300,13599,7879,3385,6478,6295,7019,3289,11931,2733,12818,10130,3176,8862,13422,1929,2151,10721,9634,4296,10388,5444,10727,13212,2253,2150,12142,12662,13511,4319,647,2744,4277,3201,7102,11365,8181,9017,1843,8186,4563,1147,8292,3701,1517,3863,1425,4964,6848,6577,11480,501,3265,6499,1693,2055,6800,7195,10384,1839,12846,5378,8944,12346,12731,2109,1265,10728,4043,5007,6398,1444,11908,2021,9308,2296,7882,12709,4807,1030,7895,12938,12228,13757,7415,8475,4860,4118,7027,3779,8716,8069,11147,7383,8069,32,13506,8435,3057,1785,13263,754,12140,1474,6736,7324,1033,12947,11964,7973,11148,12886,11554,11913,10889,9991,8685,3061,701,8737,1558,3576,11594,7484,3754,7382,13589,9591,9379,13897,2834,9615,7507,13682,2333,6501,3503,7202,6685,8671,3351,8159,12075,7013,13,2285,5647,3481,11570,10124,6285,12798,13164,5441,10099,5899,8161,9024,9610,4314,10733,11074,1849,2840,660,10597,13293,8895,6097,4448,1649,13746,5337,6136,7035,12071,8614,11032,12861,3987,4981,10402,13774,4870,7836,6170,10972,10713,12500,5131,10655,2850,9396,8705,5726,10562,9243,3914,4546,9316,183,5624,11427,5405,2202,5566,4964,9797,7751,129,6215,11049,6620,1032,7351,12784,3823,8567,8859,11455,4205,3180,5783,7422,9697,607,2603,10809,528,4148,6332,13223,8882,13434,9280,7947,10928,4807,182,12592,6497,9050,2979,12676,12624,4026,2452,8750,2501,440,6675,1850,4331,9761,1086,7724,9534,12034,12932,9083,6528,6259,263,9437,1224,7410,3436,11843,12912,7882,346,8719,8599,9073,8360,3165,1324,5514,6812,9562,11827,481,12281,12014,525,5097,1590,4168,1002,11071,13091,251,9219,2482,8597,13794,7371,11015,8482,3162,3344,7697,4998,10635,3506,5057,4194,313,6464,8950,4466,12118,8048,427,6678,12676,10005,7022,8542,8117,12467,7334,4970,8598,8098,3150,11897,3149,9862,9239,990,4653,2027,7610,9676,6361,8162,9953,4306,12651,1210,10829,76,4312,8853,6104,7692,7174,3696,11409,7027,6229,10578,5500,2270,8830,5355,922,13061,9859,10933,7839,4529,88,10422,289,4335,12084,6909,2045,215,11407,10319,933,12439,5776,7966,11409,9774,8165,1549,6401,13034,8534,11455,410,3953,2732,7311,10804,4711,5468,10571,10745,7771,5516,6256,8187,8746,1282,12958,8087,12176,12444,10938,1374,1031,9383,7748,7772,6727,13043,7464,4559,11363,12217,13512,1313,494,4885,7549,1796,3539,12645,4303,4214,9948,6540,8494,11477,13614,3362,1073,9633,9053,3996,556,12846,10178,2841,6436,10189,10476,11195,1149,10115,8225,2629,7859,1716,6586,4033,11725,1899,8024,13159,10817,858,1816,3895,597,3777,10019,11411,247,11459,1255,7838,1609,1024,8477,12878,20,12406,1724,8854,7712,10712,8538,6413,6163,2001,6705,2465,6018,7394,4062,12932,505,10247,6437,10351,8716,8820,5118,4344,2142,4444,9779,2967,9416,1381,10286,13034,6653,9432,13426,1506,9016,12849,8734,6330,9326,9640,1482,4393,6278,9522,7941,11361,11660,13497,5381,11463,6701,458,11597,13271,9940,4723,7017,13723,8427,464,4014,4709,8464,9580,12167,9807,12466,11621,2853,13268,5824,5685,7352,4845,10485,2580,4161,6249,12049,6721,4276,7500,2902,10002,6069,757,1729,7177,12782,9601,7397,475,7703,786,12667,2492,2620,7418,11877,1319,2818,1138,1221,2983,11634,8547,8233,10974,9705,2883,11683,4756,11555,13284,8714,12363,8953,13092,10013,3923,9834,2057,4465,4075,12363,11653,827,4737,10068,4101,6404,3376,10895,5225,3377,5936,12228,5780,12038,10759,12672,800,11144,8054,10692,10687,3100,6505,1924,7867,3512,11933,12685,10205,2095,13862,13865,3920,1963,10452,4031,6529,2370,1888,6021,12342,1879,7772,5143,11108,10351,8296,7562,422,11374,4385,1474,404,7375,8919,7974,12517,12750,8248,8260,4544,7074,416,3514,2634,11257,5471,10787,9200,11720,2311,3008,10746,8244,11849,6807,765,4735,11258,1090,12685,5875,13143,2555,8086,4799,10237,12459,3291,11002,4072,6179,177,12153,9003,13556,13373,10862,10065,3600,11556,7377,4963,7571,7419,10651,3149,6440,4926,6922,10003,3408,3258,2363,12877,4727,8897,4232,6778,10982,2723,8243,5741,2857,1055,1915,8320,2781,9342,13166,7332,4089,3168,6726,11395,9230,5653,2992,12084,5178,5550,11620,13381,13263,13134,5734,5933,5948,12183,8056,11269,1398,5815,2600,12723,10083,1454,7419,6323,4440,12804,8663,7496,7826,2087,7982,11408,7474,344,7106,1208,1340,10399,4767,1310,12980,1131,11628,13447,6289,2296,2462,13654,5744,7680,4031,1224,1228,1705,2427,11147,9487,9743,9352,11022,12552,25,7794,7853,9275,8910,6526,5509,13041,322,4874,4894,6757,3095,4338,9764,702,8511,11553,3880,9802,3188,4998,9014,3183,1202,3910,6220,658,3453,8272,8179,9696,10623,318,4431,2851,12704,6598,11276,13070,7928,5144,3701,2881,7386,3043,12682,7936,513,103,3151,508,5732,8600,952,1361,13777,1404,4307,1800,10338,1672,4175,9266,3771,7071,7484,12066,141,3940,97,6778,5547,7784,6378,2665,5280,641,9349,13047,2155,6888,4800,1547,4375,10991,2479,6052,3421,12183,12568,2956,8451,13471,6179,7866,9326,2155,3856,3534,4633,4362,7533,13041,12389,10194,2612,8583,1915,4626,10764,4516,1749,6254,2916,7682,3661,1032,8389,11668,5526,7884,10930,7299,2521,7435,3089,6796,5722,10471,1561,5171,3164,12626,242,13875,5786,6077,12088,2611,11437,11182,4675,2895,7967,11508,5693,3850,10243,12343,9147,8532,5039,12115,11847,9192,3130,7687,9935,9988,7229,7386,9470,967,3868,11785,6393,6900,10147,7989,9819,3340,11703,2767,9269,465,2795,11752,10374,10708,4275,6322,8245,9291,3445,7403,5541,8239,4647,10265,9160,2068,8578,8049,13849,7988,7795,7727,1675,195,7493,7525,2890,1715,9790,3836,13211,8606,12287,13630,2368,6362,9303,10115,2811,210,3220,7139,9299,6681,8137,5058,8164,13160,10682,10189,2076,2898,5224,12986,3896,11569,13210,5702,3627,12015,1170,8771,13255,7457,12645,6744,10779,13135,2646,6453,11585,4147,861,10102,9117,2091,6825,5069,9783,9573,7448,5666,5764,5867,10821,2471,12999,654,7247,644,13544,5788,8554,9685,13045,1583,6516,1785,7738,4567,9637,4939,11466,1163,2132,12015,10862,3375,7197,11059,7935,6210,6811,4685,486,8059,6375,1621,5138,11643,1722,2987,8018,8284,8887,4746,4755,6908,7166,5206,11720,11945,7323,11477,1767,8561,7114,1276,9063,3269,2834,5095,9362,10233,4381,5958,9129,4075,2231,8116,12126,950,10218,2888,4265,13580,13561,8805,1179,5847,5844,8312,7228,984,3942,2936,8583,4181,467,99,11614,11447,6138,7627,5529,5074,8831,919,2674,3035,6933,11372,10237,1212,12025,6598,177,8858,13608,2586,8188,6650,7839,10726,12829,7849,8518,806,10743,7136,2581,9487,3382,2365,5872,10269,13474,9897,12414,5408,8513,8384,4934,4788,11204,10337,299,8714,1529,11943,12249,8650,3468,9869,2076,7404,11476,10763,1107,68,3556,13195,10400,1589,1351,748,3648,6955,4465,9817,9998,7254,9940,3882,13492,1480,9185,10473,10995,7539,3414,7292,2600,11750,276,8471,5962,9367,4947,6724,12934,4856,8073,8376,2434,4660,450,10023,8621,11135,6903,6982,10989,11382,2493,13639,4920,12561,1721,5917,11345,8721,8559,9529,5155,10000,4580,7107,2018,3455,167,9810,3330,6981,547,7287,6492,6698,5190,7088,5970,3398,9820,10071,10043,10307,11446,6466,9915,8544,8576,135,5062,4408,9006,10096,7267,8422,7823,7357,10822,7057,13512,6743,13587,13395,11408,6777,11344,5851,7536,10509,12921,10358,4974,13809,4839,12009,13108,11208,12854,1113,1938,10197,12886,8417,3218,6109,13579,12862,1350,6123,3013,503,9983,13904,6216,4019,9229,11482,3766,12916,4607,13758,3928,770,832,3714,5509,6301,13400,5523,12393,6905,7667,4369,3285,10390,10782,10367,3372,9089,7435,3862,9743,4519,72,3899,1625,1210,2828,6314,11482,2678,6405,5820,7763,7252,9268,954,12582,10661,13588,5181,10090,1178,7996,3664,205,5116,1636,13121,1280,8824,9934,6267,10932,9168,3750,10936,13926,2423,2836,1078,1562,6353,6878,8590,3996,7622,9871,6224,3596,8984,8621,4206,10359,11036,4669,12562,9198,464,4616,6420,11233,200,9789,306,4000,12466,2694,12086,3809,4696,9376,13480,10276,8660,2238,13727,4565,4556,10147,5841,13583,8670,9097,13904,6498,596,1149,5428,2041,13731,11761,7592,13802,178,9423,10491,8073,353,4763,708,5926,6087,2562,1465,2445,241,7180,7616,4700,501,13330,2662,11596,7367,10971,3373,2040,11655,4284,13347,1959,9879,13929,1099,6227,13457,6907,4145,9419,11583,394,13914,11218,3674,8095,7360,629,5891,5035,3472,2115,5849,12353,5973,9344,11987,1784,5444,3042,9648,10392,8627,9476,9096,2513,4765,2414,3628,5708,8078,2998,7303,5640,12002,9980,10203,1755,9452,10271,11177,7254,12487,2633,6850,6959,6471,12997,2079,7857,7065,7080,7619,11288,862,12553,10778,47,13316,12483,12560,6616,3845,11038,12473,183,6858,6324,4665,2339,12300,6053,11988,9454,7777,3380,3146,13771,6266,9134,5332,8813,8113,5981,4114,3940,6231,13044,781,11617,9797,3469,528,6182,12033,2696,10496,10199,11019,9686,9285,1865,5804,5631,13719,10269,2307,6132,241,9422,13243,11286,10740,3981,4586,8381,11378,6620,11515,12099,12733,9357,3862,4307,9174,8042,10340,4051,9983,9423,1152,8603,5981,3230,5174,4753,10661,12513,7919,7746,11439,5606,12725,3605,8238,5584,12888,9206,8995,4382,2031,8679,986,8882,8265,13384,4582,10277,1371,4792,9599,7855,13181,11294,4322,671,10015,7283,8238,122,5934,4225,5293,2498,10684,11394,11667,5251,8840,5142,344,3243,10969,5973,9305,8628,7730,11066,1279,13239,13874,11232,2551,9561,6448,1092,6954,10756,954,8513,8385,12054,9524,8206,7630,1678,13,4101,9163,6149,9063,10231,2780,9491,3808,1966,3310,11460,10435,7909,13750,10717,11451,12784,10513,11039,8476,7584,12477,3167,7245,5816,3615,7806,11591,2389,1671,5390,4560,7568,7705,10449,1291,11236,82,4101,1969,9995,2426,12575,12208,982,9968,1825,2927,8170,9339,7826,2175,1003,8721,2227,3453,7831,3693,2593,1283,9803,6126,12263,6518,4916,10705,11405,2389,1640,7497,8790,8227,7496,4079,1872,7952,13241,13343,583,8967,13523,9279,5887,11631,3792,8769,3542,8505,6895,2762,9806,13082,4768,5384,4722,1515,8293,3225,2802,584,337,2908,4643,2042,440,5575,12696,11169,726,3722,9067,13717,4779,251,6856,93,11495,964,9662,3625,3308,2466,10739,11833,578,932,8768,6998,4317,3454,13375,3697,3129,9954,9672,11311,3167,5033,12643,5191,3016,692,9599,8666,4363,11449,9394,2217,3480,11747,9084,5920,6755,6488,2207,11098,11700,13341,12040,10427,5213,3134,5721,3699,11126,9173,7658,11410,11220,11484,8025,9100,7432,2461,4889,10085,12570,1596,8182,4998,8005,5704,7995,675,6294,13107,3250,159,6461,8142,4005,5892,9389,2549,9498,12656,5878,12363,10683,7804,8589,11139,1795,9643,8027,8266,12896,1871,9009,6060,4444,8882,12760,10693,367,11882,4665,9944,9054,10534,6449,6191,3419,12622,2442,7392,2879,6055,2309,1181,11928,1640,1674,5637,10686,9177,13700,11480,3573,1530,9361,4785,1899,1070,10991,9400,7146,10003,4943,13486,7132,3578,12760,12840,4832,8793,3445,2598,8920,11101,1045,2093,12823,11851,57,10519,10810,12436,12562,3293,760,3669,9080,12855,6243,6477,1117,13481,12400,8887,8969,3173,6072,8011,3173,6540,3576,11178,4503,1684,9506,11531,6742,4624,5301,12284,108,12757,11125,12280,5950,2279,7772,782,1994,1597,6183,2276,6274,3593,7355,12106,2008,3629,934,10429,10160,8809,2717,1835,12229,7051,2796,6956,1049,9580,2872,3208,4246,5738,12463,7883,2301,9033,9820,8663,1176,2982,13328,5423,1219,5989,9202,8649,807,5385,828,5182,7328,1527,12360,2282,4178,1499,386,6372,1198,8629,9478,6283,1508,6022,13178,6929,1333,10507,2971,9499,9259,2410,5216,958,11571,1583,7581,12246,12567,13059,7247,3602,4928,12632,9802,5654,13336,453,4825,12334,5605,8051,1933,9002,12435,11390,9442,11241,6824,9818,5861,10171,392,10580,10191,10828,13831,153,10705,7435,985,6378,11445,3435,2024,118,11215,9429,13790,3567,336,1487,3571,10685,7177,8684,11324,13422,8425,4805,12772,3968,7776,11521,13660,7484,1349,4510,6777,5159,4782,10063,8972,483,3875,10066,1090,2174,8777,1060,5477,1285,11594,8229,7191,4016,2750,379,10623,768,4408,10868,4442,13563,11902,10113,879,13521,148,1324,11729,11183,12920,12907,1996,1600,1508,11046,13541,8036,8651,12818,6745,11965,4878,10397,8370,428,2260,13242,12334,2669,8218,9397,158,4208,8440,9741,7927,7125,7227,3242,8678,5542,4358,1143,1725,11163,2252,3461,6556,1389,1618,2760,12806,8430,2407,43,6654,10415,3930,4554,6135,12570,9588,999,5757,4083,2712,3448,3511,5913,2001,13366,10793,9227,8442,6055,9607,7426,8,4021,1835,12052,7201,3673,3340,87,1150,4751,1210,12908,4164,1478,11734,3213,3989,8000,8242,13071,10593,5778,4024,4832,7458,636,8958,5922,8273,4367,13560,2103,5709,160,5584,1807,3303,4339,3946,12448,7445,5935,2280,8528,10724,4880,2578,8178,12839,11284,4736,12847,6933,12678,1711,11079,11979,5071,3291,3875,9228,13484,2577,777,304,5378,13844,8053,1220,11742,1916,3463,4459,7075,12009,8911,13245,12661,8725,11739,1071,3762,2996,11276,1823,10246,5358,7235,5007,2978,6216,4807,7813,3486,8971,836,6151,13906,6891,9344,462,3308,853,8630,802,2252,2974,9756,10810,11939,6472,9660,2252,10775,4296,963,6675,10039,4062,2621,6681,10469,11679,5576,10352,9670,10092,5588,7474,11954,7056,12764,9705,4596,13517,9404,3002,1946,6127,10895,1069,9143,7700,5786,1729,5290,2100,4792,13649,1756,11228,3958,8563,2159,12844,6917,3224,12180,9688,11941,10724,796,13290,13002,3487,7533,1477,10571,422,13675,447,1002,2406,7331,3224,10520,468,6524,3670,6237,10920,12760,877,12509,11622,3715,1805,2646,5030,2079,2010,11210,13012,6715,10682,9279,10177,3318,4019,6032,11119,4538,9347,6919,11009,9415,8286,10485,11794,4645,3213,11924,6608,1260,9684,5272,1331,9175,605,12594,9817,1407,9681,2714,1915,11911,1516,5549,11488,9448,11407,10921,5412,11972,11279,4467,9793,5440,7845,4328,10678,6715,7018,8220,3991,5134,13175,7365,13290,1393,677,13285,8496,3964,9541,4475,5534,11000,2747,3759,11996,8332,12213,3186,46,13559,1752,7493,3726,8738,11934,574,3598,7815,3396,10262,4591,2174,12318,6410,469,10069,12484,1876,11232,10803,8845,13449,1952,684,5701,9072,9122,6082,8534,11928,851,9746,12361,10846,8015,11258,6394,5618,5671,9915,11520,6995,4838,7669,3179,8671,7230,3469,11359,2118,11075,9959,11243,12385,908,5235,11652,7384,2136,1841,2765,4670,9355,5082,5597,6089,264,6483,4012,12321,1844,13291,12689,10913,7848,13296,2142,10580,5103,2527,9075,2164,7619,8535,13622,5402,126,5313,5742,8933,1111,9733,3062,7199,413,3508,184,9152,8376,2397,9979,1652,11363,1789,10481,7298,983,10043,5785,13776,1741,10950,4849,6045,7133,11288,2429,8031,8875,6241,12739,10148,9496,10277,7877,4706,4283,5970,4156,11609,11534,5994,10001,10744,3040,11643,12754,4057,10854,10300,4713,548,7030,1569,6110,1982,3030,3659,9368,7490,941,8026,5474,4230,9642,4880,10537,7688,5546,13695,2449,9029,7764,5498,8097,5983,1511,1540,12654,500,7989,12566,4521,5614,8068,9662,4278,3818,181,5788,7030,3490,3233,9849,13547,1075,11881,12386,1378,2508,10936,4560,6260,4080,4432,2563,8062,7604,3327,7885,3807,10705,9358,4414,4059,9993,8644,395,3896,2508,2885,3916,2772,5979,13334,7434,6452,11345,5577,11395,6867,8483,7243,5351,1047,246,6916,11995,900,2618,386,507,10315,4297,13109,1436,13839,13730,7803,1551,5999,2014,991,12480,3966,483,12815,10444,5481,1796,553,1865,1063,2430,1262,5029,10978,12587,6867,5435,7527,5535,3676,7836,2037,224,1886,671,8682,7292,8318,4503,12584,6636,3904,875,8424,13342,2030,10750,735,6586,11909,6650,3933,9145,3209,1653,7249,11106,9157,212,5523,10070,9097,5554,6462,4465,11420,819,684,11537,13177,4791,3829,431,11516,7403,3070,11804,11259,4420,783,12165,2075,8727,7612,9375,191,12341,6534,13551,13660,10898,5425,6912,4000,5393,12209,10637,13252,7287,5889,2615,1554,6423,6374,6228,2527,1761,1246,12160,2143,10475,13607,2635,12202,606,2331,8579,6200,866,4886,13473,2395,12399,3878,10649,9527,2841,3122,11701,13199,11752,5935,2848,1251,1360,13548,10241,13468,9534,5131,1814,5441,11987,10568,2778,1780,11870,10116,853,10176,9413,13690,9682,228,8292,4391,9655,7601,12032,911,148,2591,8460,4932,3023,9201,4584,11135,260,5133,6682,3417,11230,1446,4027,6865,6038,9104,3848,4557,2054,1539,3368,1947,7493,9282,6241,12765,13036,4209,11332,5446,3775,2458,13549,5086,10908,5198,8125,8157,11347,8840,772,10401,942,4685,6117,9020,10151,11523,797,10045,11430,6898,12177,6915,8491,12488,1471,1532,11913,13537,4006,8075,12558,13058,3276,3815,7922,2607,2201,5070,11626,5857,11981,3360,13139,7157,9844,1193,8458,5009,13377,10993,4713,5624,5252,1767,9857,8404,512,9360,11024,6651,1433,1043,7095,8392,2179,6193,10823,10791,7985,12505,6702,12126,11341,4341,6182,9915,9764,7785,7668,4813,7978,8479,5504,13398,9283,11443,4984,3690,6994,11354,6446,5475,3125,5985,13689,2289,6085,4793,10867,6471,5266,65,1166,8539,12096,5528,6915,2449,11869,8177,5868,4842,5739,8249,7397,9693,1874,10574,10881,7031,1762,3405,3480,5956,9381,6072,5977,1585,8433,6607,104,12423,12134,3028,7654,11853,7170,3190,2937,76,7203,11987,4270,7246,1944,9730,10024,5855,89,7568,10978,11871,10846,1410,3968,9259,13038,11909,2485,1428,10553,4656,190,458,12906,3415,6936,2583,985,5221,7976,8542,754,4759,13500,11924,6444,5345,9895,9074,3106,13817,778,7244,4175,12310,12691,5456,5249,6,12828,8178,9580,2356,12038,3490,4309,7982,13024,9465,3167,7494,4556,8637,2146,5263,7240,4351,10240,10078,12901,3591,10911,8451,5134,5143,8181,2214,4234,12177,12719,10488,13904,3329,9915,7952,1682,7374,13094,11722,9922,8985,8602,7214,10143,5726,1301,6084,8866,9321,12495,8789,13362,4892,12867,11409,12437,8783,3240,7318,7486,3379,4044,3742,5491,13761,5681,13848,2845,10799,4746,8414,3428,4046,2680,3377,4653,7117,11799,12193,3481,7306,11621,12082,1553,5066,11318,13608,9861,9287,12775,2800,4539,5848,10087,13118,7796,8498,13302,2236,2228,8875,11157,12477,394,3343,8522,3911,5614,11847,1979,4778,11008,4864,13929,402,12153,8514,9686,8202,9770,7274,6741,8751,4495,5307,8622,922,3386,7044,9194,3138,671,11527,4480,6671,12180,13053,1321,10807,1410,599,4781,2540,7158,6369,6857,7406,4731,11219,85,5615,9841,8278,11485,6423,552,8055,838,392,10698,573,2005,3139,4084,3657,947,10251,10658,1871,2159,9885,4494,4915,10278,4314,10280,3195,2999,5245,2924,853,8645,11992,13227,13056,13699,5737,214,11314,12658,5535,4304,13775,370,6417,3291,11026,691,7453,986,13223,12546,2057,7561,3808,10867,4755,8636,6010,9915,11689,3247,1952,11176,4920,11311,2161,5115,2770,7128,1395,4226,4104,3992,450,5106,11843,9162,10888,8871,4564,11800,6078,5499,10605,4366,12042,3292,13249,3261,12187,12495,940,9129,2078,10186,13186,7796,2549,4731,7381,13196,510,9989,8923,13626,12316,4031,5568,27,6959,4885,10906,3933,8279,5461,9677,5615,6421,13256,9604,577,11203,10711,8911,275,6795,9548,767,8652,6175,3855,9319,2920,10190,11136,13209,9206,3773,5552,5960,6262,7444,11242,8284,647,3524,1703,3113,5011,1457,13797,6821,6921,404,989,7755,4301,13748,516,6398,12813,13761,7455,4442,5307,4981,13509,2081,4211,6362,1810,9174,8732,10800,12723,1133,8537,6754,1484,13116,12318,7671,7631,6090,3443,6741,3969,7203,5387,11230,4896,12046,13383,4369,389,3700,279,7133,1894,13106,7963,12786,11275,8157,2735,1629,176,6898,2476,242,5962,4058,7131,4820,2057,2725,7754,13194,356,5493,8990,12124,3556,8833,12965,142,9531,6764,727,13416,11549,2718,7944,3796,4552,12404,8406,679,2413,6500,11956,11574,2326,7238,4360,11398,6139,6632,2778,2187,7826,7857,9006,3870,4360,3155,1239,8672,12247,609,6451,10537,7499,10714,4195,9863,83,192,12130,8062,12918,13399,5216,4467,7284,8984,9847,4685,7558,2278,11259,4911,1105,6813,8473,9,759,3749,3320,9266,9504,6492,2314,10298,11914,4670,5830,2672,3288,5378,7404,8444,7435,1899,2507,5748,9144,11194,7809,12135,8573,8807,4366,3208,6834,13551,1725,4692,173,660,8899,3816,2629,11253,9259,4844,5233,6406,3519,1682,9799,10936,13400,8347,512,11975,5456,4648,3742,343,12578,3986,12565,13037,13289,7707,1702,6295,7210,2113,4655,12617,13540,12689,7613,2138,5553,6417,7928,4438,13516,11613,8257,4261,909,7947,13681,9937,2170,10602,10483,1601,5833,7822,6637,5168,585,698,10263,10970,9313,352,6386,4976,7758,2866,6683,6612,8899,3937,13365,2113,8043,1498,2580,1698,10589,1559,258,9275,8894,12441,2905,9821,12046,9914,10760,8549,8996,6931,8713,5490,10511,10522,12195,5645,12167,2531,7987,3605,13760,11549,7194,3781,13607,12505,7580,3867,10540,139,8489,7340,4005,7340,10293,2098,2983,1078,8812,2798,10241,12336,1260,3115,9468,982,5856,3042,4904,6443,7643,3981,4734,6554,1183,7617,6144,2251,2234,9587,4719,3225,9355,4078,13901,7091,1502,4717,13510,2590,11947,3910,5814,3236,8967,678,8496,10303,6003,9459,11389,11205,10723,3415,11557,883,5326,1190,2510,6193,10491,9280,1479,9230,6586,8500,10490,4861,781,4387,677,2552,6303,4184,9407,11177,13047,11190,2711,2578,10290,4507,1205,5477,9573,1257,9722,1741,3807,8804,81,8231,12698,11555,1809,7853,12430,1313,3149,2667,5400,182,5415,6005,6290,10297,12794,10451,3708,5026,12962,12328,3451,7310,12369,10522,4583,4446,12015,11304,5215,2200,13055,8985,1020,13090,11546,10387,1554,38,5766,11517,8425,7395,13723,11228,1305,7748,2367,11181,5928,4605,7810,9201,7706,6111,4878,1653,9059,12573,9096,12462,12799,4770,11729,6892,6401,10921,4383,1715,12630,2005,1194,1109,9323,9614,6710,245,9403,13909,6235,3547,10584,12240,10750,821,8096,12569,8993,12378,4571,656,5447,4993,5396,12420,3162,8627,3034,5542,8872,2445,3416,9310,10315,1877,5455,4875,3242,8151,11819,3567,2970,1904,4769,2057,13197,8052,11345,1422,9996,5347,9079,8610,5602,915,11615,3088,2139,6477,2777,8822,737,3311,5213,13323,4265,4099,12205,1969,13480,9427,592,13819,517,12839,4321,6574,6204,5446,4360,938,11415,5312,7285,13920,6327,1526,10184,12402,8044,11845,9356,9946,12871,2827,6854,13124,6300,8615,6991,9400,2416,9494,5525,13920,472,11179,4729,5210,3056,6179,4810,9708,12385,7687,2467,6931,12484,12744,5538,6742,5388,630,3318,12519,7413,11776,4579,13045,13352,11984,12157,12127,12093,13843,9011,11780,8432,5867,9196,7460,13616,2066,13090,10762,3680,5460,8799,8071,13783,9878,6175,8376,5167,5552,10334,11722,9512,10376,1309,8369,5115,12695,13168,1752,7115,10335,2119,4784,420,10034,10419,11943,5653,12913,8414,4471,13796,11818,8220,8370,2120,8265,7961,2224,9582,3219,12410,12290,11144,11191,6836,4698,8878,3796,11344,10353,6452,4479,8864,6361,4479,3560,13713,558,150,5510,11203,787,10953,1137,6600,7782,11868,2925,3719,4583,7838,10206,9261,2781,4667,1219,4790,13490,10723,3158,2355,1046,13271,10886,13904,4700,11337,1041,5262,11871,4145,9106,10173,6016,4769,9332,4758,271,6116,5758,11765,9368,7,5987,1522,3671,12398,755,4446,11268,2108,6629,3373,13602,2055,7907,13384,10984,5853,7969,5951,8843,1008,10076,5857,12043,8067,9644,10277,2451,6762,4230,12389,5991,550,5443,5639,11398,4869,7931,1221,8461,11965,12923,6128,1997,3878,738,3829,5677,13300,10725,12618,11315,1034,13188,11612,9069,12249,4847,12710,7326,7645,6265,12569,12280,5675,6948,9481,4454,12543,517,1403,8924,13883,6197,10797,9138,6629,3814,11907,1760,7533,2583,10413,364,6435,11810,9750,13189,10630,3703,1652,1922,9937,4627,3311,9172,3692,1318,6209,8355,6311,8599,10234,13092,12884,12638,205,6065,13444,3732,3504,457,3495,9056,9046,13343,5790,8353,1955,8819,6565,1412,3849,8287,926,5074,7711,11317,5441,9668,2101,4642,9104,5701,11339,11746,11698,2543,2944,2791,405,11215,10613,7093,10506,10794,5312,13100,3311,1336,6332,684,8670,11255,12345,8007,9035,6984,8517,1194,2192,5468,4018,13318,2762,1612,6778,704,9837,5103,9723,2997,13236,1944,4837,8374,7749,2858,5360,10665,1899,1096,3496,1505,6889,9617,4671,8351,13328,13291,11129,1481,10531,13274,6161,4228,3782,2826,12467,2727,8054,12394,102,2268,12195,8547,5685,8683,3945,11211,10124,10434,7947,5944,6343,12575,5800,12389,2516,2610,1439,3190,1947,11197,10856,13404,9707,1805,5411,11156,8641,6580,2112,9737,3965,10501,12127,10156,10429,12002,2706,5504,8436,8614,3965,4417,9052,3688,10948,6361,12585,12994,1019,9453,7799,9605,11707,1421,10612,9112,12165,8967,6956,6976,3071,9274,13105,3042,6621,9422,2476,6289,1687,9205,12604,7219,10380,256,6288,9585,2215,10090,4289,6734,6072,5854,11028,13580,8078,6833,217,3753,5274,784,4047,3409,566,4422,10475,8026,10449,2240,7218,3204,8345,4334,11004,12640,2850,9288,5258,9180,11630,4655,1499,2213,765,10036,10181,8862,6152,2786,4069,3834,13724,6745,108,12963,3325,1485,12072,5635,10133,7099,13836,3398,9457,3493,5987,1451,8545,9955,10470,1353,9875,8408,9964,2421,3144,8286,13033,6490,6720,13689,647,7158,6845,7104,8547,3657,13763,11755,4268,13157,955,1352,6632,7488,8265,9368,5625,12069,8614,11610,3330,1235,13416,4720,10705,4100,13910,12987,1206,11310,3249,12658,823,8583,2993,13,442,5819,8902,7180,5542,9526,1790,10931,1960,8771,10832,6538,2390,10000,5116,341,785,12728,5126,1149,13083,9101,4176,5622,12355,8676,3073,7077,13373,13108,1902,13003,8174,2246,2801,571,12078,693,2865,10884,1528,7200,2928,8283,655,4621,7387,9218,5146,3042,13545,12442,12272,7230,10874,7989,5868,3037,133,7847,4964,9935,5600,3240,1192,3221,4535,568,8850,7810,5856,6322,7422,5416,13776,884,9234,4704,4494,4660,8437,5184,7488,5162,8900,5195,3660,13146,11378,11054,4595,13023,1229,11163,2231,1936,6395,12250,7100,5036,5995,3225,8797,1987,886,10059,9655,6405,2340,13899,8619,3728,1615,500,1234,9159,12567,1685,5146,7808,398,13329,5838,10452,10632,2267,5735,2380,2890,2285,9086,1323,12199,12825,7715,4098,3850,10155,1583,2501,6988,7366,8586,9183,12645,10467,5260,6171,7624,8953,3182,2182,13441,10308,1089,4072,4711,13294,11296,4897,7866,12066,12723,1791,10817,11207,4502,5618,2955,7694,13426,11118,12754,1969,555,6344,439,8070,1526,3552,7255,10382,2664,2308,858,1239,11726,12891,2572,3797,6891,6906,6378,11420,4102,9565,7608,8852,8421,4116,10953,11787,10524,4348,1694,6322,12517,6674,9422,3933,1431,13921,6145,6974,11494,8350,7446,12463,10069,3526,8457,10195,7992,4100,3146,7894,12935,10447,6093,9800,13406,8479,3978,9935,12695,679,6864,3101,5262,4518,6863,13811,2033,11970,11348,6442,2718,7560,12732,213,7298,3144,6720,8142,3112,6718,3567,4668,11850,4446,12478,11880,8846,1071,9202,10009,3939,795,6934,7288,989,6170,13683,3036,12609,12152,12770,6974,4851,1752,10178,8186,11766,13758,12980,12144,8554,4836,8019,7673,3352,5955,3880,6686,5481,13585,9166,5419,9219,6813,10649,4300,11272,3473,2481,12733,1665,2127,9450,5012,7770,2636,11003,2612,6216,8326,13187,8863,13863,1543,11002,10670,12026,3616,5879,4107,4549,12466,4739,8001,5210,6752,11445,9413,6134,5732,13599,9713,2101,9650,10286,13157,5724,6224,2951,7588,8103,9966,8510,12917,7581,11849,11701,10702,5276,6874,4001,12774,4460,9189,10259,10311,9577,5607,7438,3956,8370,9831,9666,9610,8870,3882,10319,4439,13064,9312,4000,10572,8811,5581,4987,11066,5156,13487,1292,7579,10127,13131,4838,4479,9832,9935,9681,13811,12327,6944,12199,5013,5236,7831,13628,8173,4248,6547,12826,9439,4568,3628,10346,10344,10700,5689,8272,7437,730,3885,5897,12423,7358,5306,13026,13435,3136,6553,7004,12679,5912,10936,1769,13185,7889,13793,7582,3899,13721,6776,9371,13240,13433,6084,5477,3317,2989,5650,3115,9461,13420,4481,3671,6238,7616,6260,7210,9552,1379,4086,3292,11490,12306,7689,6933,3392,7904,8941,13563,12622,6902,13652,329,7652,4625,13453,927,8245,1087,6553,8798,6901,9297,11674,4154,5084,12341,10819,10371,12249,8193,4887,3994,7630,12184,10402,8518,441,2600,5508,1370,10265,5617,11878,4449,5351,12479,908,10227,36,2213,10756,5867,12975,1574,4202,12163,5945,12632,377,9159,3040,10782,2483,7232,5763,12266,188,591,6472,1019,11512,12629,13736,10256,122,4633,10903,13153,11456,11732,992,1794,2194,6039,217,1363,10661,5916,7419,90,6444,1265,10959,12605,12222,7642,9143,10856,12028,3369,935,2987,8869,12250,5803,5435,3353,9780,3375,7101,239,7135,2186,752,7395,9853,10834,5641,9828,9622,6381,1517,6892,10769,9096,1587,9755,1964,8985,5171,2481,8398,2064,7421,3753,57,4974,8370,12030,3315,4442,13551,2914,8244,6973,6357,7712,7890,3815,12295,10826,7090,10118,7476,2196,5689,3791,5237,7053,12011,6050,7460,8458,11905,8147,10014,9260,13176,6417,12735,13412,7198,8680,7442,722,7081,6812,3418,1780,12508,3151,10961,12578,13603,3838,1613,4648,12314,3444,121,12730,1051,7632,9961,6756,3176,1490,3927,329,582,8923,1145,6003,6857,13551,12186,5427,2450,12002,4025,10096,6784,3301,932,4015,3608,173,757,981,6994,773,8417,3319,7630,6138,11404,7367,5660,8826,10740,7822,427,11473,4630,4802,1116,7210,1175,13722,5266,5922,12012,11623,12106,7148,2441,5324,40,9196,11029,13231,4539,8723,9708,8797,3674,4834,8142,3135,1274,6959,10138,10092,6849,1523,8057,11292,11967,3579,4803,13385,7544,2537,3742,3911,12331,1421,2929,300,5618,2041,8591,13344,11615,10479,9975,12289,1279,2725,11886,13671,11229,9401,4253,5945,4554,8606,4272,1297,10789,11385,7368,9004,6779,3739,5213,51,5570,1683,4694,7178,10721,7418,9548,11320,6919,11500,10684,829,10900,12323,2345,9081,5079,11983,8074,12227,13871,590,11805,7472,7582,8507,954,2327,12192,11227,6885,12499,5669,6056,12235,9976,1186,8649,11083,4348,9780,3613,13508,3156,4714,1837,11638,7281,5803,5620,7312,6325,100,10288,11176,5285,11164,13783,2622,233,9681,11209,765,6736,12131,3187,13030,4036,10390,11713,8586,13219,12211,1008,12289,4870,7951,6966,5572,13785,3884,7976,9220,5705,1581,6666,2497,9782,13881,2421,13495,10683,864,5682,11812,12836,5167,536,11698,13571,1516,12618,9167,3708,12401,1019,4773,13732,10981,3362,7494,10111,7921,4439,5288,13589,6803,13253,11580,12013,13178,10878,2827,27,6060,2920,10686,11864,12761,8763,1414,291,10991,8805,2330,4790,13707,11111,950,8786,10960,1872,161,3257,1098,79,965,2164,3464,10179,5466,1037,58,354,5338,12860,9872,5437,6429,2194,629,10307,12246,5075,5311,11876,6258,2161,3468,6412,3540,6519,10128,7431,4829,7335,11448,668,308,6663,11900,1966,11688,10358,3148,1042,3251,1817,9803,12964,7902,9279,2171,5854,9639,8264,1559,1423,3374,2793,1952,12674,4676,6142,13233,8394,3897,12793,7459,13916,1087,11067,4706,1199,13422,4828,12665,13854,12643,11545,10497,7511,7261,7129,6706,1455,10171,5295,8215,4693,10379,10570,5850,2500,8454,7248,3261,6760,12578,6874,1130,11149,5706,5102,7778,10671,3856,3430,2655,1871,7534,28,778,6071,11479,2699,371,5207,4536,5497,6045,11053,7430,4948,8301,671,8421,12260,13094,7520,12471,57,3295,3509,6374,3274,8181,3289,10266,2620,12414,9741,4974,3473,424,13463,2016,9101,10734,8189,6371,10336,13321,12489,1067,11706,7711,1438,8085,421,4829,776,8582,12892,4137,1059,418,4592,5472,10232,3860,9565,12385,2729,1728,964,5079,4199,918,5866,10258,140,12297,13163,12334,2221,12480,1893,13500,10134,3930,2837,4389,11562,12642,10497,1547,8907,5381,8687,11922,3674,8805,7962,3383,4481,8716,569,6345,2833,3029,8069,5852,3982,7885,11239,2544,11561,13663,12586,11084,3927,3869,5599,6583,6883,5532,6987,4544,12294,9027,12025,332,1609,9804,4635,6326,1085,2836,1062,6064,3487,1049,12351,8592,8386,973,10960,2295,8029,2711,8207,957,3301,6851,10788,11141,13307,5117,7368,6077,6338,7975,5526,10096,5536,3032,78,5889,8889,7106,3485,5600,3682,7915,11229,200,2071,8665,4526,3366,1324,2823,9398,2802,2898,13083,1129,12347,2420,3468,9417,9646,8234,9952,8777,12333,9508,13770,7042,7250,1555,1509,7775,4341,8951,7730,8151,12017,5853,2200,4473,2586,9372,2841,9153,4479,8932,12815,855,336,3430,11847,10272,6565,8195,3950,9208,7737,496,4668,2175,4385,4255,1101,6625,3401,12546,9390,1708,1017,2626,3307,2396,6998,12789,7821,5936,12401,11171,2787,1917,3163,8724,13312,3498,2047,2911,8699,989,13361,9772,8903,11396,9062,11773,12269,12781,9613,11214,12239,3328,13231,9709,7456,1226,11447,6339,1125,12058,9497,12949,12457,374,10936,7028,2843,2436,11242,5822,4551,1561,10098,12007,12373,13528,7297,9922,3187,1003,303,7080,10087,9007,7197,5694,1635,1285,2470,8817,7458,9114,1067,7265,8259,1476,6582,5524,6379,12338,12089,8744,13146,8572,11124,1488,5511,2111,6071,12759,10197,2573,7105,8566,7177,12258,3718,474,9794,5245,1756,13073,13567,8271,5535,13597,1059,1779,696,10022,2689,589,12196,3723,13328,10654,1379,9224,3864,2201,9398,10370,883,13105,1889,2517,11055,4662,1674,3288,13531,13059,12131,1221,9104,2149,12042,4799,2988,12178,6277,6854,1437,9592,9102,84,6098,9971,489,8842,78,12063,8268,634,2952,2780,7964,421,389,5341,11312,8856,12992,12113,9102,11904,5904,1078,9975,12183,4892,8570,5736,5490,9586,1538,11922,4194,355,4327,10438,1483,13074,2861,11587,12337,3199,2783,4211,7032,10783,3697,3438,4169,9402,3741,6235,903,835,6695,12128,456,11454,8400,10297,6789,13068,3428,6884,5889,10784,12645,3628,1791,3830,10444,9064,10134,8885,2021,6736,8017,13135,13063,173,11483,5702,5241,10766,13554,1622,5365,9673,2139,11536,5897,12675,8398,7907,3417,5406,5990,3418,2554,4516,10473,4826,6292,2323,73,1379,5157,10023,5524,13864,9735,1363,9435,9327,11868,7966,6764,6204,3273,11751,8545,6945,8297,6455,5324,1895,5572,1785,6044,1227,2393,12041,10582,9331,13030,5293,1182,694,6215,4736,2083,9443,13129,8145,12498,12677,5027,13744,9324,2812,1252,9860,11375,3990,5123,6612,13017,10904,9981,4920,2865,6087,2836,2650,12986,8690,819,951,6850,5993,12603,6748,10840,9896,6636,467,7975,6926,11201,3739,11938,4490,6976,1248,1029,7004,8172,11811,9505,13488,11060,7597,10887,4618,8336,12544,13070,3237,6317,1326,9000,12943,10757,7900,389,7346,8328,8312,5016,2443,5449,9568,5890,536,1129,10802,13829,2818,10726,1464,1815,11135,1303,9316,8125,12715,9231,7805,3181,8414,12186,6953,9784,8261,4913,9793,1772,3750,12303,8070,6617,12783,12828,446,5767,749,3879,12958,7016,4232,7321,1106,7487,5554,672,7870,1559,8114,6190,12955,11993,1147,7700,6473,1859,8668,826,13110,3872,1164,4822,12939,11258,535,13042,1309,10244,8689,11566,10241,1646,7065,13284,4149,1469,12075,13921,13867,570,7044,10143,1956,9563,11166,3695,9718,3102,8743,12622,5965,7178,10296,8206,6650,12198,4672,7966,2518,3853,10218,8098,12090,9331,12232,3018,26,341,9313,12991,10353,10990,10303,10516,4521,7376,7195,9874,12879,13623,12070,1861,6250,9643,10670,3090,6843,10464,10215,541,9215,9196,7473,7189,3943,3176,5812,6308,2963,11262,7852,5774,10549,8986,7720,10656,5523,9742,11762,214,4408,3552,10939,13906,3266,2094,2626,8986,4867,852,12343,2194,13699,337,10866,6337,11104,6657,10140,2556,6263,8418,1561,942,7359,6465,8478,10414,11733,10715,4898,8503,3046,921,5764,13080,13007,1895,818,8383,1779,3800,1711,6827,2819,7774,9832,12195,9131,4942,4408,11782,4776,6963,3193,2795,13264,1615,8396,5635,6875,9574,3214,1774,2038,12641,11013,5723,12342,7681,8491,724,1062,5396,11714,4253,1937,4322,10877,5729,7592,13080,4788,5385,11734,7318,1700,10532,13144,11404,13832,11691,4697,9905,8863,7109,8852,5572,2200,7799,982,11089,4137,1894,4071,9324,11905,13298,2332,296,518,2049,2717,11032,9426,3415,12030,12489,9012,11721,3224,2386,2260,12346,8976,2795,4223,3753,5346,194,6638,12281,7044,7595,7312,10034,5386,12710,5713,5168,1249,938,12620,13020,12197,2768,3821,1109,6507,11113,1125,8435,9012,4459,6173,10861,2642,1511,10289,2171,13042,7421,5616,12153,3714,7322,12219,10515,1328,2136,8301,5577,4424,7116,8296,10273,5119,9787,2220,7448,7130,7602,592,5872,2627,6272,4423,694,8106,1388,10949,2159,4314,11178,10062,7358,2872,13158,12017,675,11559,7058,8297,2166,8695,5247,3828,3437,7150,12969,4230,13626,11919,3019,7726,11461,7372,13836,8470,3460,11549,2544,11846,2637,8184,1621,7021,1258,11053,1528,6965,4059,5001,2362,10015,5472,6049,4099,3258,11330,9845,13553,11279,8712,12956,2751,10486,9707,13720,11123,5362,8914,5179,13458,9888,5304,3599,8183,5704,7677,4955,3865,9560,9881,10020,1629,8407,6144,1807,3098,13888,7799,6042,13605,8595,3630,6136,9144,7829,711,8155,4820,10240,1011,9420,7072,13657,9079,7725,12339,11683,9461,7211,6632,13773,3632,2893,3546,11730,3571,13101,11775,3962,13819,7854,2683,2363,9715,10341,9717,68,7933,2430,4586,12030,12858,13330,7925,6749,8040,4570,9837,1119,4624,13842,12012,4150,8803,378,2797,12286,5731,1628,9129,5939,12996,9884,11675,10003,6558,79,5339,1484,10545,12886,5419,12881,5997,1013,8780,10538,11369,12284,2335,2560,2811,6727,10384,1332,5382,1521,6578,3560,5116,3904,1498,11298,5328,9591,6104,12467,9620,1568,4147,3220,4881,6666,10854,6568,4585,54,2582,3525,2664,8993,6029,1040,10273,8907,2686,6371,7344,2560,8524,8669,1848,2460,9977,909,3675,442,6484,10253,13276,4899,8890,10425,12265,1529,7113,9132,10359,11059,864,11137,8895,11194,257,4233,12467,3158,8413,10850,11685,10723,12453,13037,7969,6340,9417,9178,1397,11732,3727,8909,4762,6437,11235,785,12807,423,13348,3475,8760,10788,6169,9751,5379,8981,7697,1189,6357,11688,8012,10365,1961,1192,9382,12689,7809,13115,459,6110,8552,13251,10254,7999,9775,2209,11129,3394,1376,5075,1275,3621,1010,10738,7273,785,1116,8363,10760,7383,3803,9084,3382,7103,9839,1820,6314,12640,2369,6176,2416,12575,12737,3568,5235,9048,488,8730,984,4000,3106,3816,9193,11601,13241,9159,2023,6778,3482,4812,12861,3973,2520,2927,5375,11688,8998,11541,4614,7671,13224,11254,12175,2535,10451,9561,9874,3750,4585,3769,842,10168,7317,1033,665,1969,13344,537,3207,6573,9123,12957,2471,12168,9270,6951,2687,3493,12624,7586,5986,13217,12320,7029,2277,3973,6010,2579,1221,7873,9173,3063,4269,4228,1261,10137,8159,2551,13073,132,6915,3561,931,12334,12338,4841,4244,11310,5965,11187,12612,4427,2415,9703,9694,6596,10676,6860,3633,6903,5720,8395,8718,6434,5115,10434,12973,6506,7381,8331,2858,8915,13200,327,8872,12289,7199,8803,489,6045,6608,2118,12722,5219,3493,6952,9977,2195,5091,10619,4191,12841,11898,9179,9396,708,8847,6355,9228,1999,586,11233,12531,11795,8364,8013,2513,13578,1897,4984,12466,11397,11149,1712,2120,11171,13454,12848,2727,4188,12090,3983,11612,3498,12000,2144,10989,8408,9487,10708,913,3658,10669,5501,1925,1426,12070,9678,9421,614,11397,5472,-1,12723,4690,6263,9492,11339,5110,6901,5704,5863,9185,4593,7802,3106,10610,1561,6316,5678,5232,4447,852,639,7261,12415,221,7627,12739,12222,5776,4492,189,8826,3100,95,7450,6345,13747,12817,4998,957,11081,7066,11063,3475,10266,3670,4633,12928,11535,8481,3841,4531,5142,12864,2610,446,874,8449,7857,13858,2880,7497,3732,537,2448,13589,7920,9659,1693,4093,3716,8177,3583,11647,11169,165,12385,5829,3438,7308,1885,2563,290,7628,12541,9982,9056,5291,12866,8814,7601,4484,3451,5034,12760,220,6433,5325,998,3686,11977,4954,7708,11481,9178,2971,3540,11361,3531,2689,10472,7243,10028,10918,643,759,5959,7836,8084,12302,3580,8954,12821,5928,9052,8301,9057,11017,8105,4602,5920,3149,12848,10316,5658,1247,11355,13558,10025,6315,5876,9144,8950,8165,13033,8277,7224,11801,9883,1152,2908,9295,8360,2199,10208,10664,13670,5238,659,3923,9902,3551,4375,12951,1807,2330,4933,7974,5822,3368,4034,11524,12157,10771,1477,11490,11023,2992,8693,4784,13547,11921,13336,2914,10166,7272,5002,11179,2773,5379,4476,638,10927,7556,1815,2907,5554,644,7249,13885,11437,9878,13105,13918,11882,9931,3155,6021,13618,11572,2112,9556,13352,8792,7982,8796,9691,3237,7468,1755,10932,12686,10025,1292,8295,2256,2370,7050,9360,12008,9709,10978,7187,11954,11883,1812,3511,7573,1751,4859,7243,5786,797,7577,1768,10486,2483,1024,372,3564,8229,4595,9251,865,8726,9828,1606,2455,1932,541,5423,8682,6668,2832,9829,2486,359,4489,2442,10346,12690,9198,12976,48,8122,13864,3708,13011,12722,4540,8608,12556,11817,9115,10896,7279,4008,4014,11474,13317,11822,8660,2886,6035,5699,11993,11982,1130,7840,4923,5527,12720,9479,1403,5397,11124,281,4512,1074,6666,8967,10710,917,4032,6885,4169,10935,12721,7292,6271,3078,12271,4978,4176,12404,553,9095,13767,3969,6333,2839,13211,11440,11199,414,6066,4276,9681,5986,5130,3637,13885,1194,2690,2312,9759,10503,11137,7476,8208,10281,10900,1431,1356,12165,2175,12460,8497,7957,11321,11988,258,5414,7339,8268,8430,2026,8363,12251,6199,7309,10781,11023,5868,3159,490,11059,12581,13108,7297,9958,13715,13458,4997,10334,6863,7288,1846,3608,12332,2230,4012,1049,7672,3167,9739,10499,1503,9788,5645,9885,4334,9727,13846,12663,5707,10644,12489,9229,9761,5607,8492,12363,9040,13629,1832,8650,1997,3288,1259,10503,119,6854,2760,310,2104,10844,4302,7835,5321,1576,7654,3039,10533,8139,5623,7521,3393,8668,6929,2143,2213,9003,5432,1975,1344,2042,2147,2369,13592,3318,13283,10655,13885,7195,1017,4779,11198,7530,2540,9559,952,9550,2606,3743,10842,10385,10107,2405,9885,11761,9991,7035,8873,10327,11826,652,1189,1404,2472,12124,1727,3870,1026,8590,11685,13796,3289,10062,907,2742,8025,11950,48,9756,4523,7988,11777,4846,10958,303,11797,9140,611,13536,657,4412,13844,7860,10652,4433,4380,13428,12771,2570,4924,1437,1238,3717,4025,13005,2120,11456,5095,6208,2940,13638,11303,483,4074,5080,2952,10934,10780,7706,300,13773,9038,3117,7053,13152,11089,6806,12976,5702,2623,1186,11458,3666,1223,10925,13902,10958,4235,3537,9794,2776,7987,10358,4028,1060,499,10215,12670,269,13809,7700,10532,6552,9601,7096,7453,12617,4040,680,3066,9724,5128,12053,8962,7287,5713,6417,5418,5062,8508,8375,4484,13390,7692,8056,4816,4884,11555,4207,7418,8385,11405,10797,8009,1119,746,6560,11235,1438,3805,4385,9285,8575,3247,1909,9443,1580,10262,12868,13060,10506,1350,13208,8545,5338,5777,239,2150,4319,8935,1641,6784,8839,6058,5829,6229,13832,13089,2215,8208,9161,11616,340,10469,6933,4931,10710,1904,5929,5510,8981,7076,294,3867,1264,11099,2869,9134,10296,11196,1761,2501,3567,11079,82,7869,8481,10006,5187,5448,2322,206,5701,10317,3963,4880,2770,2981,12808,5577,2684,8784,7743,6808,13054,11405,12882,75,11667,6842,1593,1930,4060,10009,537,7592,9383,2420,8514,13873,7562,11285,13184,5867,12718,2739,4766,7691,2443,5070,10833,6142,3330,6716,11432,8689,2122,12304,10969,13097,620,13006,5177,9955,9029,11086,7943,5070,9833,11237,5906,8474,10629,12999,12497,8068,6544,13050,13697,273,7748,4695,6368,6311,9929,6906,2793,7688,9600,12174,683,13585,2126,1106,9925,11605,6415,2999,843,13445,3428,71,8654,6862,11958,9335,11575,7752,9194,221,10516,4195,13223,3648,5275,3436,363,13683,8044,11870,932,8609,5796,3669,11630,4785,10708,3948,10922,7467,11287,11442,6768,936,11536,2331,5738,12522,4528,4173,11100,13214,261,10269,10705,6458,12624,9857,10499,11671,7738,11609,10744,9157,7352,6698,1780,627,10994,5697,6759,1268,1783,799,7549,1266,8345,13465,282,11999,990,6104,9252,11785,12855,13455,80,7888,3718,12828,7065,12894,483,10078,11146,3160,6417,9145,3720,4430,11507,850,1392,13210,11506,1698,3941,2954,8113,12988,10948,4407,6573,1503,13677,342,12326,3838,10245,8129,3124,5204,2222,10571,10322,2585,2883,6183,6575,9127,2069,1056,4187,1474,5709,3000,5760,1240,10567,9409,9206,13111,6634,8684,7266,10175,8863,6461,12041,7658,8132,7798,7992,6755,4926,2450,11147,6719,5154,4700,6176,12627,3861,2455,9117,7069,8597,3296,4518,2799,11043,6324,3257,5390,261,6635,9124,5821,382,10433,1032,11258,3036,375,9630,12471,314,8005,13700,13449,1305,9177,3140,6975,7962,4089,6039,13851,4430,5318,9659,12834,3825,206,4664,3092,6610,11379,6047,1706,7698,5725,9782,9111,12345,5837,6773,12738,4226,8870,11612,812,4297,6900,11400,11485,10197,8814,5243,12529,11359,6471,730,5763,2594,5983,11046,4396,2492,6587,12144,13611,1639,5596,5549,11081,3964,12815,9146,10413,7203,11517,13201,4279,7781,110,1583,11985,12792,12140,10399,2251,565,12740,7196,11245,7611,10730,9818,12421,7582,8427,6052,3381,3543,9201,8525,11516,12515,5320,6836,1308,2394,12943,11771,6029,7272,11157,4650,10368,7447,9325,2466,8405,11357,59,2364,12704,1978,8725,10974,50,2209,1865,3076,5640,12268,11370,12028,11016,12919,9553,5294,7222,12484,2273,12944,9047,12446,13167,3197,10379,9914,5606,8564,5344,11566,7352,11710,6257,3811,8486,13381,12667,8639,5107,497,10449,3002,13040,5874,12317,7672,5909,4894,202,361,13527,11576,10013,5045,6935,11061,9549,9838,10384,11854,1715,3668,2021,11375,3066,8876,7041,1253,12534,4722,10505,1163,10984,1153,8894,6050,1457,10172,2744,10414,10837,7691,10444,13853,2660,925,3838,10000,1026,9744,9188,9017,7820,10595,2440,1712,7868,5107,9454,11716,680,7321,5215,6688,4658,8912,5651,7802,12339,11766,6750,2001,12758,13069,8944,10965,642,616,1719,1622,1491,10674,9492,7673,413,2947,6799,7085,12760,10464,460,674,10282,6559,5138,6024,6515,1496,5555,1506,11183,1842,6836,8713,113,10207,433,11655,560,6809,9980,5752,4413,9182,12034,3656,5333,7473,4842,11201,10714,9986,10124,9848,11503,3116,1996,9674,4106,4203,4033,8047,159,5557,1300,3165,3040,9408,3560,2340,7466,8600,2338,9284,12838,8060,3442,2141,6334,12861,8567,9153,10647,6362,813,7400,9811,12163,13753,11506,8098,13566,7314,5166,12284,11948,8140,12823,12176,10086,232,1020,13809,7433,2297,10391,2850,12471,553,106,11874,2140,4642,8341,9273,10607,5764,10585,13171,13580,8571,9831,9690,4606,13552,11656,9188,9473,4910,1791,2212,816,6236,6840,402,1500,6328,11581,5733,12809,1529,10923,11473,7487,12888,2318,12640,10667,12676,6658,3358,2567,6088,4433,8819,9023,6598,199,8086,9571,11429,6472,1767,2217,6494,7894,2455,13013,9595,10006,1843,8725,3010,3681,13856,11468,9594,8591,2881,8446,13515,12669,5789,7619,9357,5134,10648,7977,11752,5456,736,1223,5520,10333,4914,3471,5053,2001,7502,12618,9510,9246,11177,13872,9109,2397,9013,13360,844,10380,3123,12178,7960,5482,4751,9635,3949,516,12175,890,1300,8947,5945,3310,13029,10860,1136,948,9296,13259,12250,8303,63,5061,10080,13526,12570,4854,9938,9882,1309,1973,6646,772,12369,13651,424,13099,9566,2917,3515,3929,8028,3093,13181,7257,11778,7722,10161,11076,4553,1957,7317,10569,7153,11874,9773,4022,11108,4007,5933,10560,4668,10517,4952,1757,6184,5306,1753,3928,3597,5773,6622,12294,4695,10170,12722,6059,12038,7065,12283,13223,4364,5645,8652,1470,12583,13237,10024,105,1114,3424,13731,8888,8910,13634,7521,1890,601,7605,4748,1920,2668,5843,531,4464,9731,8690,6492,4893,702,9148,13157,13586,1915,4850,9040,3509,5257,5425,12763,4557,7247,13290,46,5546,8440,8077,9970,387,3338,5899,6044,12173,1094,6633,1424,9884,8036,12315,7725,1296,11176,3508,10314,1056,3376,5883,13718,6093,5017,12862,1177,1891,4124,13790,10029,12321,6071,6380,6899,5518,2807,5342,5667,964,204,696,13800,10612,779,4367,7306,12610,5371,3338,10855,327,9507,2456,2855,8091,13760,2487,2298,10360,500,671,12272,7952,5006,1750,4414,4620,1046,2398,12845,1193,4772,898,985,6547,11562,9982,4302,7176,8512,9232,8682,13591,9709,2009,11621,111,7906,1828,4933,11909,5424,10777,11239,9721,1420,10916,11814,5158,5362,11131,1538,12488,4381,339,191,1043,11766,2571,12094,8749,1498,2710,7006,5116,7956,7316,12781,518,11792,4502,12512,9447,10330,11140,232,9771,1591,7546,3540,2073,9103,67,228,8948,8132,12797,13912,12625,12809,2352,4711,9366,5807,8967,6110,1826,1479,12903,13778,4049,13535,4925,12282,6864,13023,5957,4171,7613,10627,1564,5086,4638,8493,2809,986,10966,7993,3712,1147,4954,13055,11008,2505,250,10515,10513,1988,3964,11826,10941,2382,12417,9391,5971,1544,13658,7394,11102,1830,8866,10715,7660,10483,13242,13116,11355,12741,4752,7311,2516,12721,3628,10460,5872,12434,12902,7750,13104,2928,10231,12545,5606,9533,4055,5628,2296,2867,9962,9794,7311,9061,3193,11462,8265,8477,12619,7126,11061,2511,9397,1556,3615,13428,6567,6816,11431,10016,10414,11256,3176,1467,13182,8900,1013,6029,7017,1145,4359,11359,4038,13807,1604,312,6938,2597,6447,13593,10516,7160,10899,2882,4654,13674,10040,13162,1162,2680,3804,931,6475,245,6779,3886,6476,13818,3419,4406,6092,1073,11004,2180,1987,168,2731,5948,3580,3984,11281,4604,1972,4088,1942,1668,4339,8403,13084,9116,11466,628,2638,6010,12074,5018,3912,6167,13647,2046,6558,2684,11680,5373,9582,12727,3843,2151,1336,2117,2339,4985,1574,2268,9418,2776,3238,5195,639,11487,9482,9867,2207,13711,13121,415,9347,5933,10213,6748,8885,12123,12475,7542,1153,6537,9386,9784,8462,4556,3738,3520,13172,7992,10500,9963,7964,2986,11880,12655,7321,121,11022,6386,1304,5262,989,10088,7034,2855,1904,2970,9849,8676,2625,6925,10971,13799,12193,1453,12984,3570,10905,8697,674,9757,8797,13123,2004,10334,1852,2844,11703,10855,2496,3998,2615,6524,825,7806,7821,3033,5880,8709,1199,3015,13431,4685,9934,5097,7745,3174,6365,8672,4373,4594,5595,6941,7378,11886,11485,4781,9241,8944,8636,12105,1008,10296,3480,8388,6360,6551,1460,12703,2619,4118,4478,12850,7568,7537,3723,13563,4454,3148,11229,9339,8225,9605,12646,2005,5931,13686,2272,12025,13736,6127,1367,3052,12120,7752,5020,12013,5770,8713,10772,1708,4224,5167,651,8145,8609,7937,2817,5231,10794,7260,9999,13202,371,1067,12074,8016,13503,10486,1308,9786,13218,4744,11520,11931,2155,7644,794,6142,12810,12902,4823,12340,9392,12488,1910,3454,566,4082,5905,7565,775,8654,5452,3322,7733,9196,12433,3198,9331,11894,3488,7278,12815,9639,6916,7829,9704,1396,9525,76,3937,7157,7139,12309,1538,7473,6751,7550,7996,6469,13748,5827,11201,6516,5166,10495,1416,10990,6757,10392,12261,1799,9947,13276,5454,11254,3400,8238,10593,2640,11957,3431,7071,9083,1993,10061,4933,7204,8589,1871,10032,8815,4200,8093,3024,3337,6954,4802,13250,12939,317,12628,12291,11504,12311,11245,722,3249,1749,10485,5098,2136,6106,1647,1205,10541,9090,2334,10927,13003,7661,3657,5342,8621,18,2749,8521,2991,13285,11505,7486,13806,13356,12606,3063,146,5227,1068,7022,3692,3494,12073,6457,138,13658,2762,12170,10835,10879,5100,7837,2651,7520,6433,11320,3673,10079,5815,9671,13620,10129,783,2242,12085,12267,9730,3731,6842,2874,6359,8982,4882,185,11785,5438,5367,8063,3905,3119,13916,4264,5390,6449,4672,2902,5137,4236,11401,10087,7566,11813,5908,812,2278,1087,198,1985,12865,3152,12213,6385,7700,13173,1107,2089,9380,6361,13099,12862,9011,1642,6503,10010,11722,13250,9456,7812,10404,10804,10487,13706,6336,7310,3755,2903,9768,9140,4595,12791,11387,7733,4383,9856,13240,2311,6858,2207,10093,10063,422,9155,766,11412,7170,3547,843,5421,3624,11203,1580,5576,4659,6812,5003,6735,6893,1708,6930,2894,1304,8940,1660,10243,6213,415,515,9482,223,9455,12584,54,7114,11829,643,4857,5668,12903,6475,1328,11866,11435,7250,223,6326,10639,8402,8800,4671,8301,78,3617,2604,10939,12455,11451,1252,10033,2556,13020,2553,2777,1828,8826,5990,1095,4587,2347,9450,12322,204,11285,10575,13896,3130,9133,4969,4368,11439,13149,11565,13370,13337,10478,2820,7661,6275,11767,9510,38,8080,10902,3798,10740,7152,12144,10264,2184,13159,3444,6304,7821,2275,3080,1756,12426,12215,4416,6397,3246,13402,13304,11498,6085,1650,5486,2034,749,4260,11135,2742,12282,6087,10303,3246,1804,2861,3991,6240,2382,11953,3923,13223,10925,12149,13135,6386,2352,7079,8329,2880,11872,1385,771,1914,10610,7939,4803,6057,1532,6734,9019,908,2549,11352,4706,7925,21,1953,12845,817,10242,4383,3328,3885,11168,10015,10388,6673,9827,12303,675,5431,2993,8287,8722,10678,3426,8661,774,702,8547,7465,5776,11046,6799,11663,11381,810,9373,5906,8915,10705,2322,10991,7867,7008,8735,1142,11057,11749,3438,9634,9399,2262,4688,3800,9496,2905,4369,1663,4804,7541,10837,10207,5837,2532,2122,6015,4892,7259,5190,5173,5540,1088,1991,3555,858,13034,12193,11503,6539,2047,9970,1508,8572,3098,7945,7825,259,7715,13418,9103,1384,7778,6311,2884,10637,3517,5011,12014,12358,970,10682,6060,877,7833,2444,4718,13277,7158,668,10155,5647,2047,5933,2760,2876,4675,7844,12383,6600,8452,10733,9103,7142,4270,5484,12332,6928,6595,12608,9832,12641,11204,1495,12527,4554,2705,4226,3141,13309,2342,5449,11302,7973,6862,11874,8977,4323,10753,9381,705,9588,4483,10399,12174,10501,7794,3631,11492,11195,11307,9962,9529,6484,12216,13566,6065,2036,5904,7796,4130,11982,10019,13028,5816,3157,5035,9480,2781,1656,11158,3550,13837,7608,7136,3107,10714,5613,5234,1845,1359,13417,145,4568,9791,10570,3646,12703,8466,6689,11650,12361,12084,5867,7353,3992,951,7334,89,1976,13726,5611,3954,4893,2425,1790,6248,1092,8703,240,3098,12998,3076,4249,1160,5043,10624,10842,69,9655,12465,12194,3030,1953,4324,449,7223,9009,6242,4029,594,9842,7618,11314,3783,12443,10323,13123,8389,8380,174,11901,10384,5235,5506,12333,1576,5904,4413,11918,2194,8363,2851,2554,6982,9011,1355,5857,6019,9043,9330,9875,9666,5985,3207,13803,11645,7335,3890,2551,3925,7765,12348,8053,2420,877,12194,5934,12314,7035,4793,12623,1455,2239,10878,3654,751,425,8714,4131,2368,9265,13626,7023,10220,1257,5356,12980,6080,1799,897,5112,11269,4145,9545,3638,2734,56,11762,13611,7934,4402,1701,9362,5683,2742,3784,2641,8681,13384,9273,10168,3399,11807,2455,2075,8354,2253,7673,6404,11304,10197,5293,7654,3822,3759,10812,4863,8839,12594,7091,8813,2384,8602,13105,7859,12935,13202,10860,9021,2823,3406,1359,1556,3322,5976,11791,7374,12559,312,12942,8850,13828,2749,588,8978,4754,11955,4943,5910,11397,24,1990,7433,8673,13139,2799,5834,2712,11934,560,3634,9974,12053,1185,4450,1585,1054,4054,4792,1897,12224,1822,3094,66,6090,7709,6578,633,3233,7069,9981,3828,4848,12854,3111,6568,6475,6105,7782,155,12631,1357,2109,13252,5912,8768,3972,5440,9537,13085,5908,10505,4462,13674,2199,5642,1997,4757,13709,3745,1355,3275,2890,8247,661,13288,9619,6181,7550,5855,10931,1200,6735,12804,3521,5915,10962,1578,8183,13913,6706,2645,4868,6613,2624,8297,9035,4577,3628,9627,12839,13369,6848,8875,5154,7219,10701,11907,8124,1172,8703,9389,8779,9326,11366,6955,10767,759,439,5624,12069,7135,6588,7206,3636,3686,7687,13719,7079,2466,12933,8672,1482,4560,5754,9721,6789,10844,5114,7115,11320,9836,9692,3124,10980,11209,12196,43,7191,4534,9191,5333,13818,7996,2038,2749,1301,6107,10611,807,4398,4562,5779,11036,11508,537,3590,6732,866,2232,13167,7966,12934,91,12010,1382,1853,9749,9827,1606,7562,5359,364,13145,5328,10820,9152,1907,12818,9795,8990,3947,2764,1808,4489,2815,746,13295,1437,6200,569,420,6407,2489,11716,10445,6113,11765,9248,11559,668,2967,8647,792,11957,9552,8890,1662,6817,4461,4841,3966,13656,7198,11663,7648,5867,8608,7474,10447,589,9336,8436,13745,3306,12128,3787,705,1930,12661,9492,3463,12555,7466,4237,7537,1386,11460,10016,1605,9182,4891,6470,2740,6231,1665,8038,8797,7851,8040,5913,4067,13380,10225,4868,6256,6745,12460,7570,8695,3014,9797,4063,3639,5735,3511,11598,885,7512,12913,13812,10565,13857,12537,6662,1028,8168,4217,3577,12721,1565,4753,1337,1050,9369,13373,2855,9486,6713,6259,5116,424,3892,6089,13013,5529,8328,1498,10425,12910,11264,936,4767,9424,11901,13647,1049,4300,7316,10809,9372,10677,1643,5943,8918,9532,3241,12406,7280,10320,8669,3043,13489,8211,12303,13180,12875,10303,9300,384,6586,5819,5339,7755,9840,13596,952,674,3987,8491,5665,3111,10328,11895,11431,1941,4513,7569,24,8099,12513,6541,7378,12350,13521,4207,894,10152,4039,7215,11548,5539,9081,3888,6615,9943,13524,12587,10445,6959,12035,7761,4477,12103,8480,8321,4831,11007,1176,13925,125,591,5659,5443,9693,11620,1930,11615,1770,11413,13332,4,2789,426,10988,6426,6420,3584,7306,11944,115,3192,11188,9189,6632,5685,76,11460,8131,13525,3181,1836,6092,13621,8420,6236,2760,8885,3927,12740,12033,10538,13628,7155,11252,4364,13048,2493,13237,8916,10544,11716,11053,5515,491,7669,2719,2732,12070,5920,638,12802,5079,12916,219,1299,5405,10840,9698,9253,3874,1207,533,8934,13902,12777,13739,1450,662,395,9846,473,4063,9910,13095,9942,9038,1186,3418,8309,9312,3904,1264,8072,8610,13089,6931,12180,7720,13103,514,3955,10669,6756,8629,13285,13458,10027,10171,9061,1162,5486,8583,13822,776,10418,7500,9413,9456,404,6870,2930,7754,12868,1000,4887,7038,999,706,10200,872,13535,2805,3701,5601,2210,2240,7747,8215,15,4000,12182,9931,6014,8238,3807,5607,12786,3075,10773,1573,9752,13451,7907,12890,1832,7871,7737,7645,13787,4348,8261,6175,912,12564,1622,6626,6131,8063,10687,11826,6283,10915,353,10984,10043,13457,2754,7373,9270,11104,11018,10931,7888,5007,10177,6328,12248,2899,1040,10005,7620,7483,7317,10965,2303,5043,4165,4003,5598,13116,6689,10989,12665,12420,9179,4265,9979,4247,12734,52,6769,6920,13281,13593,190,5667,5779,1286,4593,11800,13634,6113,7692,2294,3065,5942,2095,5013,7531,8383,12352,12532,7505,3626,8902,4255,6186,4856,11230,8591,350,10556,9113,6510,2652,12897,1259,12635,13069,10757,6324,1267,334,13179,3386,3322,3633,10077,2067,9813,953,6024,4222,3871,10782,10931,11144,7436,1590,10364,9603,7178,9455,10287,13844,4463,10232,0,9244,10897,10049,8614,1049,12675,9415,1919,2892,11690,2666,6740,11881,6422,1876,1019,12577,2859,7156,8118,7325,8313,12830,2180,5206,13693,7904,12848,4325,4206,3361,170,484,1532,2708,2389,1702,10017,4465,11657,9104,8328,3048,12265,11269,216,12938,1715,11648,1863,834,6757,10852,1825,12545,9761,6145,10811,13838,13172,2547,4540,1650,7081,13903,12683,3280,10680,765,5827,7779,3071,9255,9099,5589,1149,2944,6397,10377,561,9828,3273,8659,8652,3807,8685,6048,12041,5908,1323,12861,7976,11487,13841,9924,3773,9530,4059,4070,13095,1234,6858,13117,3580,309,2484,12777,8993,7901,12835,5455,3516,2933,7217,5403,7280,11406,8341,6079,9301,1144,7287,4996,7640,4801,6255,5997,12987,13880,5011,6515,11306,8064,8662,7395,3366,13858,129,7739,11295,1506,915,5557,3820,7030,4162,8549,9586,9362,13894,7297,13693,12564,5820,8516,9888,13312,4860,4092,13674,2977,5741,1206,1030,6186,7077,10022,13224,4513,598,5719,7952,9131,10172,2857,1106,7567,4252,3615,11073,5607,7824,625,10001,11117,4721,10568,8400,1286,9543,1678,6096,12439,2184,6334,1893,5734,3273,9788,313,4054,2795,5414,5579,5386,11729,4912,5827,13702,3567,5504,10372,9145,5822,7925,13158,5025,8210,4588,3706,2014,3740,1328,5738,7171,5572,2804,7780,12487,11425,9933,9585,10635,8103,951,12752,7508,18,4530,13038,9009,7296,9296,4667,7919,5902,1220,10590,13295,69,10281,3357,5011,9032,3943,7919,13443,4657,6328,7846,570,9243,8206,13288,7035,9134,8015,2853,7312,5536,219,807,5985,8035,3126,7296,6826,13910,12643,5697,12429,1423,5648,446,6073,7105,8826,13786,3321,13257,7066,11961,7354,4429,6267,4647,972,2016,3431,13287,6411,13708,5198,936,11416,300,11845,12281,12034,13283,11004,7525,1827,8238,9720,8596,2730,3511,13496,13869,2083,7708,3069,6254,5900,8999,6762,7439,11378,10640,2762,934,13503,2680,7489,6267,7823,13719,12274,13631,13375,13863,12120,8633,5609,6065,93,8630,3903,1040,10172,4186,12207,945,2528,8306,10364,5203,4120,6477,11797,2205,395,10188,12704,2935,10704,1774,3408,10777,11699,11524,1060,318,8365,3465,10830,1447,10102,7333,10789,11235,2258,9205,4877,11059,11036,13202,11927,1779,1789,12070,5042,9458,10367,2753,2627,333,13247,5227,11077,8798,11608,250,1722,13792,9525,2793,7179,799,8712,10487,9926,13722,10010,5261,5494,7482,4569,8866,888,125,3414,2673,7072,12347,9723,11478,5565,513,7628,8876,11080,5310,502,11940,8544,206,903,10520,9352,5791,12130,6872,8005,1392,10035,10757,5790,2695,5856,5126,399,5668,2854,13245,5206,6690,3258,13533,13846,6965,11049,5725,1751,4562,11233,10700,1001,13306,8714,12417,10055,6520,8575,10029,12338,4793,5346,12953,6312,9391,6796,355,7319,728,10101,9853,10112,8903,3221,2052,9512,2457,10650,12310,1386,3223,6261,7625,12959,3775,1945,9646,8991,9759,4243,12507,10967,13125,8591,12605,11569,2558,8208,2205,13617,13863,37,3476,2509,9437,1628,10468,12773,5582,11924,4191,3311,1696,6794,11447,10156,10767,11626,2552,3161,4844,5638,783,3429,5084,12582,10861,8158,8908,1993,8652,7276,11217,5749,9260,6657,9076,4638,12282,748,4979,2281,4089,3973,3858,13258,9590,13087,1262,13622,8900,10703,1141,8534,1951,8302,2139,11042,10707,2000,10701,12673,4535,6866,10937,5609,2735,2879,6908,1912,11681,8257,280,5688,10240,2394,167,2380,3511,8389,8390,433,5740,8768,11302,4614,2010,13297,6271,5736,11880,1284,1566,6613,5159,7907,7379,8239,9448,4287,8526,13191,5634,10687,11035,13759,10174,8411,13620,12807,5170,10507,8769,3227,7087,3974,8297,2487,13420,8276,493,7521,4531,7343,13272,10201,8706,10013,10364,8737,9446,7313,5993,852,11380,9981,7848,4554,9677,9408,4179,8978,188,7907,10870,865,4402,8797,12381,855,9609,3024,13300,653,756,1260,13441,12132,9086,13165,4703,10975,2639,550,4545,3452,2282,11071,7227,6425,12514,6927,6242,3358,10155,13764,4842,6313,11962,9554,1489,123,748,143,6429,3948,3937,11101,13406,1022,13030,9906,534,12603,13148,9957,8902,12723,11393,1797,8922,13389,290,6471,4854,2407,7197,13720,5278,11018,2000,11871,7158,13351,4562,12789,5483,226,274,10837,9894,13254,13569,5833,1058,6814,12450,11174,9246,4275,784,9688,4440,7618,2559,11403,4947,12985,126,4727,9091,8878,3288,5152,8411,2847,5566,7200,5578,13689,5791,1418,12980,8950,447,12866,12137,8254,3078,6564,6212,2351,5740,4817,8709,1238,813,4585,4404,4536,6426,374,10307,8903,3202,2964,11169,11269,6052,6076,4713,1819,7957,11769,12670,6846,7995,2947,11321,3992,3178,9767,1297,1153,2577,11216,8686,4138,537,13027,4440,6085,2593,11471,10396,10355,782,2006,6036,2244,978,6469,5803,13741,8513,9303,8818,3697,13303,8087,282,13106,5309,9957,8838,12501,2062,5617,1271,3669,5653,5961,4077,7673,2366,5589,13313,6162,7558,13753,1543,1398,4777,13408,10162,6472,600,9792,7566,2303,4322,7423,7272,10768,2323,3723,3884,8744,3271,3652,4047,655,4088,5619,1457,3145,3969,12715,5356,12577,12149,4692,653,9606,2295,9250,4291,12653,3516,10460,3404,12283,8367,393,12558,8379,2843,5373,5626,4824,9268,6759,7855,10478,10233,5669,5373,13259,4721,7900,11151,11639,13612,791,6788,4864,11699,8435,12972,6400,8377,13111,1169,8860,7955,9310,1469,2295,2958,11489,3400,1933,13272,6913,3445,10074,1782,6288,6500,4931,4118,13173,5896,36,8936,5443,12400,4811,13458,6071,11491,6424,6217,3995,7152,2320,2161,6018,11061,2463,963,6329,9294,3746,4034,1778,2918,2974,13084,8381,1231,2114,11079,4645,1958,6947,4481,8330,12814,12677,5934,6383,11629,1377,3897,10246,10968,9563,1970,4099,10359,2082,11411,13079,13490,13252,6820,13214,6449,1756,3948,2994,8690,2643,435,1981,4155,13570,12492,8543,1919,1933,8071,4190,6600,5792,1045,4201,2929,3910,9088,7204,733,10349,3405,2398,3848,3194,7611,3401,9228,13893,10280,5027,810,6364,10511,1772,7477,11728,12338,11680,13735,2916,502,11143,11248,6505,2528,11314,3055,2468,3961,9948,13220,11425,1388,12362,2444,2785,7486,410,2498,9602,1957,10231,11165,5899,12412,8671,2000,10064,7436,8583,8893,423,8369,4117,12055,7253,3538,1160,5042,4541,2528,7471,7940,3502,11941,4075,6767,1198,12360,10421,1960,856,11160,7812,7898,787,8978,12313,4279,8785,6927,9084,6124,4628,12699,3512,11211,2275,8209,3740,5156,4276,11813,3380,670,4271,9982,9868,2804,1830,2524,9697,2324,4654,4641,13729,3112,2515,3156,8047,13095,2941,2532,1179,7371,8887,8756,12895,6309,4901,4442,10508,13697,9449,295,11162,1899,11496,6572,5807,8453,13112,2308,2699,11280,10848,10625,1129,5370,4814,1588,8313,10844,10085,11823,8767,870,11007,821,9351,10355,4128,8293,13666,757,8302,9130,5855,491,12723,1936,12463,12558,2489,4146,8636,13693,7089,12613,7704,5313,12337,13914,10129,1023,11390,9852,11461,5856,8152,5454,1706,5951,748,6317,12234,6407,3288,3283,10607,2000,8046,13073,4196,500,57,2923,7177,2894,10982,11603,4984,639,6789,9412,5586,1887,8426,9601,8856,13536,2589,7749,12502,6268,6672,12600,10283,2392,13631,8235,3625,13551,10177,8725,3653,6412,7845,8691,12921,1691,2962,7628,1133,11726,3160,3619,11270,11414,611,13033,3324,10175,6846,5071,10665,11298,10744,11264,3652,8913,3486,10268,11855,12027,5340,12762,7003,4212,6809,11274,11504,10031,2016,64,474,924,10930,10142,10504,7836,12744,2428,2070,7425,6765,7977,7157,12587,8675,8515,8771,206,12867,2693,4959,13749,7688,12812,335,5476,9544,6958,11896,2604,10987,9990,13255,11794,1266,2525,6770,13889,12790,1125,11210,5630,2264,4923,4977,4977,4275,4650,2781,161,12926,2230,1553,5146,5214,459,11292,588,11489,11775,5521,10217,12702,6001,9770,8406,9878,5961,6518,127,12577,8938,12826,8801,5796,2153,13389,2458,7447,9685,9960,3528,4534,7189,13314,6877,724,11348,7546,6258,8845,3569,7497,13537,673,4828,4629,11522,11700,7101,11343,13782,3419,12823,12851,6530,11916,9016,13290,7563,6324,9861,5110,4105,1450,7123,10561,2438,3218,5059,4883,10249,7924,9762,12813,9188,4096,3367,9582,2761,8480,6414,2107,1725,8795,6213,6006,9718,5435,2355,2560,13550,8968,7163,8125,2946,13852,12617,11989,10359,11598,5530,545,6967,3213,9026,603,4219,11199,11129,5985,12742,11644,4394,9204,13132,6060,5365,5104,12265,3419,720,978,8407,3128,11290,13877,7949,10260,10014,2886,9405,3022,13418,8863,3466,3278,972,5935,3199,2340,7217,679,1983,1936,3547,678,13196,1051,1833,8025,9150,6064,12305,1509,2912,12012,6498,11446,4457,3266,4507,13521,13038,11003,13533,5976,6184,11045,8274,8252,7815,11535,4162,12918,2140,9245,2392,62,13291,10611,6115,6636,3924,8836,8629,13225,8501,859,5771,9977,10226,8139,12697,8458,3423,8313,2814,13920,10620,4887,4301,2783,2936,8298,8291,4539,1160,5863,8206,1739,12884,9062,5084,2250,12769,12134,8110,7853,8944,13193,1196,4811,8314,3600,12258,5137,2515,2653,9764,6815,939,281,10378,3053,8510,3608,13720,10413,7613,3853,11383,262,6165,13839,12677,7329,8225,7289,12247,12422,4330,2748,5385,3941,13817,3633,7672,7988,10283,9904,20,2378,11038,13319,12772,7861,6024,3558,8399,3490,2556,5596,11028,11260,133,5353,13486,3456,1891,8753,7936,4232,10756,4033,4693,2207,11005,8553,2725,8574,1594,10743,12654,2898,8160,1584,10023,13316,7712,8653,10669,5687,9134,2762,6643,13765,8540,10017,6688,4089,10524,359,9389,4711,6620,7741,9209,12069,13878,1517,1317,4653,3005,2484,12144,659,4968,2007,7200,12925,11049,12008,4274,7382,1088,3038,12317,10863,9494,6240,3951,12661,7737,8943,8366,9737,11459,5341,11079,6514,9382,1270,5043,10269,12107,9203,13122,4656,9802,8053,11756,3831,5032,10864,4940,860,2846,5141,8638,9681,12297,13649,2359,9396,13761,11304,11356,511,8063,1535,10519,2015,8834,1956,7149,10343,12656,301,1045,4199,11260,11013,3833,10060,2964,3638,10005,11592,12994,5706,12569,5011,12508,4808,10842,9634,890,11678,7616,12818,6929,5003,11675,5044,4802,8951,12591,10830,6664,2829,5947,3014,1150,488,5318,11392,9096,3533,1719,5303,13634,7351,2272,13050,3449,10141,862,4967,11057,11588,6704,12768,4667,8774,4247,13239,6074,2223,1115,4191,12274,11243,13426,10480,3884,8978,11308,13222,1714,9981,6389,1045,4623,3629,5322,6033,109,12882,6751,2029,2004,10057,4603,6085,3430,2730,13071,3110,2086,12011,2159,999,5949,5268,8984,1578,13146,149,8482,118,12527,10891,8250,12163,8203,3634,10683,13296,2934,11765,6346,4960,8043,4901,5755,399,5066,13867,2373,5732,3881,13667,7845,4879,5509,4314,4700,8252,7665,5993,12649,13315,10004,5485,1093,4143,8229,4668,16,1525,10940,3631,4724,11315,10838,3833,5744,7776,9428,6365,4740,8560,10201,3007,13560,3564,2994,13190,4616,3718,2699,13219,11288,8609,5043,13086,9582,10765,1637,7035,10595,10787,8043,5990,5244,5155,6609,3346,3823,11658,2993,10271,4279,9552,5678,6008,716,12564,5184,12705,11653,12326,9749,1963,2684,2718,10781,7308,9026,1479,11214,8152,10429,10860,9108,12868,6256,3004,5497,4075,8949,13458,3345,1308,5316,5298,6449,1716,1595,3851,10792,5552,5024,2260,753,9629,7604,6408,4169,11085,4276,12971,8466,8593,9843,10608,104,12713,4071,12421,13126,10514,10832,8503,5932,1168,2478,5324,7558,6610,11345,7440,5980,10258,2441,13350,13092,12846,7772,3850,10749,3099,5447,2853,4124,5394,6378,12761,5550,8102,8696,8611,11095,10964,3816,3379,11183,12812,5908,10134,10952,5770,4442,8939,12894,1589,2295,13587,7295,9211,7250,702,6512,13321,9684,4601,12289,3948,2584,7345,4686,1400,8233,1501,844,4385,10328,141,4322,7111,602,10986,13825,13213,12570,9376,6255,2601,1882,11283,9610,12111,8301,8645,10806,7059,6372,12409,12093,12263,12370,6240,3736,4622,10776,5199,13120,6781,3163,2776,5473,9518,6939,1378,9102,6171,10892,10223,10041,8471,12279,8891,3761,1553,2503,3410,5332,13266,3552,6924,5139,8312,6621,8911,9737,4891,9022,1758,11645,469,13170,10764,12176,5274,3430,9510,3371,6417,10714,3484,694,826,7647,3735,7725,12689,13603,4994,7347,8646,10593,13472,2085,7871,10890,1451,8526,4671,10321,8226,4296,4576,6067,1020,739,7873,6956,12966,10544,6891,9684,11107,6574,12100,1747,1365,7360,7408,6278,960,4284,3483,11765,2455,4494,6722,3928,161,8956,3347,6383,11782,10883,1488,5329,13144,12278,1764,8938,8274,9899,1797,11060,2298,8608,12101,1283,5753,9753,6484,1213,5101,3522,7975,11355,2845,11388,1083,6752,7809,8570,9602,13502,10724,2567,10130,9062,13649,12162,3036,12266,10425,9593,7577,1201,968,8383,7454,8347,9553,10473,10906,3645,5433,6836,1952,3943,5690,1843,13887,3066,5692,7843,13503,12955,2289,7681,11708,12835,302,13653,4496,11592,1100,8594,9518,11946,6512,4552,12609,4452,1385,9242,2441,6820,13411,6473,7250,9150,4622,10867,4197,5092,9261,11275,11840,13341,5177,10847,2702,10401,12707,8233,10746,1479,6974,9796,5041,4294,11225,8729,7548,7389,5997,12831,5700,13587,9000,9765,2296,3323,8066,3887,934,7848,4646,2983,1213,3237,4445,3432,10021,8294,12431,10447,6265,336,12711,11130,10645,7771,7206,1284,2286,2935,10760,5756,12915,3666,6202,4258,6246,9437,5753,12626,11555,6476,7101,12029,854,8935,1480,1122,7434,12997,6566,3437,2320,2928,13652,6166,2943,3017,3479,5292,2855,12435,9035,11634,744,11007,5923,8174,13337,7755,3937,7117,4338,12791,11571,6615,10595,5855,11023,1630,1204,2736,1742,6035,3354,575,2445,2314,7568,9370,3870,451,11786,10730,2270,1671,6864,9497,1336,9460,12428,4230,1133,2602,8531,11616,9915,3994,1808,10332,9166,5508,975,9147,12820,4947,8487,9752,6692,5271,11070,6793,12157,13746,13038,12662,3966,878,11263,13627,6383,2129,5686,1346,13688,4877,10641,7372,12282,10189,9576,2726,9444,1866,5027,11469,13885,3773,6300,596,4399,3801,3485,13038,6169,1617,4974,7911,7749,4193,3652,3551,4054,3225,1966,1364,6051,6477,2187,3561,12249,2269,7201,7971,12040,5033,1792,7411,6626,2655,474,975,13184,6087,11213,10454,8660,8375,4280,5031,13020,5584,3256,10281,4643,8317,1815,4659,6494,4231,7997,7403,1682,2902,12734,2471,8445,3817,2135,11401,13090,9094,8386,8163,8015,12946,12060,3810,3719,13815,2861,6703,8943,1340,13358,8761,9,10750,6934,1815,10082,8153,5785,3750,13841,6807,10671,5231,213,7095,12525,7322,10506,7378,9916,12778,496,9200,11454,12164,7070,4371,5894,6191,8065,3571,8822,7568,7697,10967,2306,12891,424,6927,12517,13731,11902,1723,12944,4629,13373,991,9837,569,13798,9709,13606,8656,8131,13400,7192,11424,13008,447,3244,8310,6612,497,5993,8053,13062,3698,9116,11398,3859,11744,6747,2432,9619,8161,13262,2020,8559,5425,5081,3338,2160,6598,8180,7397,10356,6481,11312,10351,11354,9241,5510,7209,8175,13332,8359,4266,2489,6776,2786,10700,10770,4884,7706,6358,9775,10361,7053,8805,5464,8525,7221,11716,5926,10170,40,13000,9469,4565,5109,12575,2256,3804,8181,11118,8883,10820,6053,1204,10243,9356,5683,4369,9598,4057,3394,13227,6581,5590,11519,5214,13678,12403,1902,11263,11269,9766,12040,1327,8398,9347,10902,5689,5094,9535,5646,13877,9906,3097,8767,10165,7754,3729,11487,1012,11336,1027,6158,11133,2629,9387,11051,13017,7339,7666,3899,4998,394,6866,12635,13038,10340,2685,11554,12286,2322,10339,12085,10076,7653,11616,7468,2419,11691,2666,13685,12381,5729,5346,7925,9902,1238,7009,8284,10638,437,2690,12901,10946,3834,9105,5388,10365,10127,7451,13095,4341,11512,1301,12849,8147,4848,12022,12632,12660,13134,5189,8727,2514,11556,11146,8129,1858,6556,12286,1893,8360,11642,3805,11170,7422,6376,7394,1604,7690,10401,2844,12717,10098,7517,3256,6350,2694,12447,11740,3981,10994,5819,4591,7006,1871,9273,6344,11577,8857,1993,3605,7016,9311,905,3712,12753,5143,3352,925,560,1923,12584,3269,5373,133,3429,5971,10184,2603,2207,3684,9450,13916,9217,6403,10733,4595,7634,3813,8629,4349,10771,372,12193,3056,790,6499,11216,12466,12376,4664,4800,7172,8151,5625,7173,8490,10093,7300,12014,12443,4761,4505,11775,1278,9772,3195,13186,1467,7142,8748,4315,8986,12090,11034,653,9330,1319,175,2498,7571,7093,7321,10367,12175,11315,1969,1603,13349,7664,9453,3436,5593,11767,854,4861,10841,10466,7567,6123,13497,10243,2691,9073,7593,12141,1518,7614,6066,1545,3120,9882,8060,9828,2775,11337,9048,4575,8064,13857,10152,2608,11292,9989,13144,5544,13063,7734,13165,1312,12307,8446,8547,6373,1601,12166,8121,648,2322,6736,1124,2993,7084,7972,1463,12748,2656,10294,11441,12833,1786,5704,8768,3067,10066,2117,12082,1694,6997,12967,11794,3494,12337,2271,9436,3307,12149,363,432,7617,13751,475,5937,1146,5482,11801,11849,99,7710,5834,12392,6277,6262,379,8455,12426,3351,4952,10174,6106,4081,10778,682,8427,11441,2756,4375,5262,5970,4402,2619,1824,2310,12020,11672,3810,2447,9452,9223,12993,2617,7551,2059,11498,11032,2141,1618,3500,1499,7150,5065,13187,1897,12678,1191,5955,4652,9210,13116,1739,5314,6443,6257,3406,10742,4558,393,10251,770,5168,6641,3144,6274,566,7653,8244,2242,7524,2217,1267,9087,9164,9263,11247,10456,12335,180,3966,1484,9598,13890,10075,11812,8906,2954,891,11074,10613,9970,9123,6796,13308,5221,10846,7221,10156,13785,8309,12298,10339,12385,4640,6795,4329,9385,6354,8564,12630,6124,8649,10152,13601,1123,767,508,7220,6861,10596,50,1957,1656,1598,9707,2515,9263,1676,8949,13512,12659,5536,1027,1004,10928,8400,11242,1992,9434,11409,12710,7782,4556,3645,4531,10440,4464,11736,11265,11482,11948,13696,10667,6712,7836,8283,12612,5123,8731,9251,9253,6552,3189,648,4692,9524,1607,1846,1844,1839,13548,6452,9833,753,6793,8593,3786,7575,12043,314,4139,3535,456,10007,11386,1553,6190,9067,11440,13239,7308,5309,4681,10937,8097,12407,6397,3686,5948,5718,8567,6983,513,3824,8265,13852,3919,7494,8960,11812,7244,2977,7374,3380,1260,5443,3122,8858,13512,7511,2263,6953,5539,1248,9971,3480,1567,200,10350,8762,349,12795,1430,6099,11567,2265,11389,883,1838,1375,6504,12635,10525,2256,2261,8335,10031,3697,3668,4884,5226,7635,7706,3640,295,1801,1840,3459,2791,12764,7747,10640,4621,10168,7904,12443,3671,4387,8776,6681,3435,8045,13774,12615,13390,2210,8732,2869,5289,2855,13812,7276,3666,2765,7710,7996,12629,3270,452,63,10825,3827,2899,2401,8997,6345,7266,7411,5008,1264,3961,6662,8319,10075,924,310,3038,1254,12456,10246,9445,8786,2110,1635,9863,9019,2581,2491,8379,10820,11534,10139,11592,2501,10772,13631,357,10898,475,8448,7439,2079,4918,12048,10380,6843,1786,8950,9092,3069,8190,9529,12158,366,12459,904,5637,7858,10403,2538,8327,2944,2497,7985,409,11764,7972,42,9574,3121,1824,5304,9920,6349,9783,10321,3688,11013,9446,3394,4158,11348,2285,10886,6948,4724,4170,11878,2072,12674,9820,199,11799,266,5068,3456,10577,4406,7241,5724,10416,6753,3090,10888,10351,9770,11837,4853,3351,13793,13886,13343,4625,12674,10085,12445,2081,3912,3772,3366,12243,4756,546,10216,9422,4128,2522,10923,10232,5876,12147,6064,1328,8103,10948,1764,13158,7821,10612,11506,12132,5988,8467,10769,7227,9206,11119,1767,108,8857,12581,10605,11954,593,12106,4350,4458,10968,10007,2304,8719,4162,6650,7952,8363,10991,2924,13737,3389,8622,8812,12601,13147,2577,5862,7890,12294,3198,244,8419,10549,4271,8409,12410,1363,425,4932,3714,6233,12974,8214,2635,20,8867,8666,9964,4747,6805,7457,9387,4992,4216,7546,12300,12523,9599,8214,8705,8025,3366,9330,6566,723,9852,12392,12004,9315,9257,4892,206,7599,1783,4987,2978,4985,1117,3665,6035,7487,12813,13067,11996,2760,2675,2553,9405,3972,3894,5455,2918,8744,2027,7021,6717,7096,11787,1621,10129,6519,1963,8272,412,6235,4726,13392,5801,12113,13599,8719,3093,2708,4308,4744,10150,2687,13886,4123,6420,3249,5373,8446,2282,11759,2949,13271,11115,12153,13194,3739,7648,5744,3507,12333,4754,12220,1750,11085,2579,11584,11968,1246,1365,10789,1649,5761,10233,2926,7015,3480,11766,831,5313,10940,6743,6354,1678,333,8513,10327,5085,1536,1899,1033,570,11553,10452,6789,3763,3584,2532,6885,10761,6947,7077,1355,2088,3667,8929,8542,1216,8924,5698,6583,3333,1613,1310,13311,11304,8728,4068,9011,7039,11372,1963,3730,8655,13557,11296,1233,6897,10099,12179,8303,8740,2631,11492,9512,13369,8443,13723,1900,7447,7354,10075,13828,6754,10544,37,13160,5980,11187,2980,10240,13468,9317,2617,3946,11904,7924,9906,3839,6254,6256,13702,13863,8188,189,2593,6312,11397,3324,11430,7935,11545,3823,6035,6956,6646,3005,3268,1245,6998,11719,2912,2184,6320,303,594,344,6118,11702,2589,6209,3354,3350,10682,191,1080,3314,7537,13574,7601,11946,12265,857,770,8651,5515,11650,5405,8721,5404,5283,10351,4778,2805,10007,13638,4958,12410,8513,650,4972,7149,8423,12020,5744,13337,12273,13744,11026,13122,1169,11119,6369,1930,2843,1524,4216,8803,12109,2725,67,9024,1882,131,5590,6400,9857,5611,2170,9100,1555,1126,603,3160,12484,2479,3782,8280,1419,4024,11263,3426,5291,8734,2090,5108,9836,2787,9592,8597,6027,8627,7884,6466,7028,393,7682,12772,9121,1273,5244,7232,1714,2585,8911,3991,11018,9369,10608,7210,11397,9648,11914,5735,12534,5610,932,13635,3406,11378,139,9343,8115,3565,11867,4237,1444,7677,5673,8355,6838,8902,6980,6815,62,650,5804,9648,12614,9805,10135,8616,12280,4215,10925,5348,12212,11079,13322,4170,6571,5202,4114,1521,10046,8400,9856,3721,1043,8136,12393,10530,7108,9878,4116,7133,6093,5716,6822,10301,11436,10636,2287,6477,3246,6458,246,5345,7962,11062,3374,12833,13814,720,709,2047,1445,13340,7676,11545,5322,2302,10565,11118,11670,12499,1682,2746,4172,9524,1001,9350,13673,7023,3718,11808,5150,3706,3797,13555,13394,1074,4098,8905,9070,4982,2723,8080,10403,7373,13280,8645,9135,12796,6799,5545,13196,11703,5248,8300,9698,1138,13896,10951,1583,7830,7047,10003,5281,2334,4691,10864,7725,7630,10238,2370,9794,167,2782,13202,2082,11333,13853,10371,535,3865,7586,4408,12388,12493,8924,10184,7746,5047,7563,4569,4657,1661,1863,8639,2280,13715,12000,12144,10583,7085,8252,1743,8932,5780,2869,9152,7706,1026,6502,1091,10354,12083,8118,10364,2248,2891,4908,6175,12438,4665,2305,2872,9421,6999,9897,2454,12141,10835,2836,6328,1166,8230,12404,6361,12995,3856,1077,9560,9025,13278,6059,12410,11234,427,13489,603,4455,6104,846,2721,5791,12294,9577,3334,540,11753,3196] +beforeItems = [[9962,19668,21740,15254,28491,11658,29277,18515,21806,18392,13399,852,23022,11035,27393,18726,20263,18271,12493,8316,4278,10281,8724,23826,13717,25106,15114,3557,18622,17615,25023,10801,22058,15373,14767,14399,11437,12036,26787,29706,5013,16454,2578,6102,26014,27203,11342,7808,2535,3781,28663,14271,21346,9939,19407,27448,25927,7639,14532,27612,6098,15224,8208,18920,11158,29484,5632,18007,6185,10187,17744,13391,17849,2715,21061,16259,22759,24996,6686,434,10742,13905,25389,12993,7268,19366,11126,29052,21448,21796,3408,10856,763,6367,3873,17165,17224,279,3548,22371,481,22780,23099,15101,7357,14259,25312,28589,20045,2729,13886,22821,12647,7703,15029,27904,18302,23412,4148,22300,6964,11136,3745,20067,8186,1498,21230,29416,26695,21659,17876,2626,26669,16959,21209,2144,21817,16720,19005,3163,4407,25145,9505,26208,19092,6798,21025,13590,9359,7199,21177,7886,10054,6068,28516,25542,3007,15320,3965,19112,27169,22429,22054,29214,17087,24153,15003,10467,22365,7183,10514,25905,13554,29517,2610,16515,21303,21536,14146,6494,5397,11309,21662,29141,21176,26267,1048,2574,6282,25892,2379,7533,1161,15779,16011,23973,1037,17096,26734,24206,6860,12557,550,22773,11586,25003,988,29242,1998,11234,18672,22567,16102,13269,27493,17371,21797,25457,19775,12277,12927,22774,17901,25222,21249,11873,17381,3863,6746,12984,12203,22241,26636,14890,8914,569,6074,28552,4849,24028,14203,20876,10052,15688,9741,603,15400,13449,20698,18749,28743,8791,13094,16168,25943,7635,16380,23084,9753,12396,6881,26867,27921,20612,22732,29811,4102,4066,17184,20498,2977,12690,27722,25129,19884,10384,23789,16473,23541,17037,21252,27927,3294,10661,25127,12111,21232,19147,25302,24086,17727,17469,12878,14497,6053,20561,5277,11573,24740,19487,12146,2348,28923,14229,1909,3246,27283,6622,16062,24534,28943,24539,18128,12571,9911,5546,27407,6386,17498,19847,21041,22256,29530,7012,11891,16950,17185,8481,3675,19121,23562,17471,23156,7286,17313,7447,21620,1428,24793,23891,24361,3501,2296,5058,12787,29190,22272,10177,17600,20050,18200,29362,2007,3872,27115,8483,25955,4004,23896,4457,4489,23942,18407,8823,9258,10301,11501,27511,3468,14842,17101,9801,29939,7003,9585,25440,7809,26064,28976,13434,510,15625,21975,7811,21085,14709,12463,6885,20377,5300,21060,11592,21641,18864,16246,29800,3646,26650,9573,14928,4946,4130,19485,21979,19346,15156,17512,25442,5074,13652,17792,11451,8828,9629,13629,20087,10704,7158,15939,13160,14642,24095,9555,23484,11668,13914,2060,23178,19437,8836,22053,29330,2533,7394,25557,29778,3776,28216,9657,22379,2413,20631,7429,29975,13075,8627,13594,22982,28748,5210,15643,1709,22399,3389,1044,19819,23307,16183,21159,6046,11754,16511,10973,1225,19955,18180,11588,2884,12049,28861,26765,20890,3277,15808,1725,24908,16251,21952,18684,12696,7680,28885,22682,19365,22233,1353,16269,15507,25531,18067,8152,23610,8553,21216,10395,12070,24238,24128,26228,23958,24693,3150,28302,23827,5654,1733,12374,564,13655,14192,6703,7699,12770,19882,16544,25132,5925,15408,21449,5658,9234,8816,13382,8623,8545,29225,10612,18882,18070,21269,22678,11112,8037,27178,11665,16124,10072,10564,25035,9857,19266,14067,6063,15335,9018,19506,14730,29523,18574,19560,4091,5789,6369,20674,24143,5338,17105,27027,5959,5458,19763,20030,24410,8607,13371,3336,771,26336,29208,19811,19586,26671,13157,28786,12983,21792,6096,11458,5447,14263,19841,15775,11249,9610,19521,24081,24124,12340,2189,304,9144,27171,14081,15437,25101,22087,1294,20586,18387,19083,19258,325,16026,22559,26713,24965,4347,11345,17875,22692,26089,23838,19961,6405,5454,9107,26543,14141,28346,5879,9269,17388,11546,12270,2223,23129,10481,12105,29561,12919,977,14343,23295,12264,20239,28393,11366,504,9010,9483,25102,20531,8026,7106,22440,3779,28444,27534,21969,9687,8571,25429,3856,801,14094,28889,15280,6659,22253,16651,8227,27553,15961,716,10901,7319,16895,17980,11956,22561,5715,7580,26576,2102,26569,17483,24422,12981,14544,371,5107,13388,5083,29283,23787,17857,1137,3792,5493,12332,18717,11934,26655,27861,14320,27888,6219,12437,25783,26193,3998,17117,6279,8108,20771,9725,1488,6033,20181,1868,21520,9305,13634,14016,10682,9412,12629,5422,8597,9274,10660,12042,475,27039,17029,15578,11835,13080,2925,17914,19207,17841,28930,17567,3092,15735,28821,22905,10595,20101,15123,26457,15958,14422,8270,11805,29631,28052,27621,6545,2879,18856,9909,2788,12217,11576,28133,26556,21866,5748,6244,16108,18181,15150,7911,27529,15120,22469,9512,11777,8194,3187,15201,15098,1383,20483,15637,10852,5888,13383,19974,29109,8609,26002,9235,4339,9,9561,15359,8032,24757,25347,20402,8219,3216,24466,16879,17112,10136,25673,16261,25245,4863,16644,12305,29632,29757,27920,25314,11475,8277,13738,1532,8437,11545,5612,3263,18640,2188,22271,9791,16828,7658,2948,24362,8934,18164,150,27085,9479,8390,9315,11391,2519,2225,7725,13735,21553,13175,15513,17364,27782,11807,27981,23257,8015,20494,14762,26374,11459,5947,9353,22630,9080,1157,25189,25151,17233,17614,28791,24337,26996,20429,1133,21632,29286,20389,26709,18928,3179,17412,6661,9316,24310,12457,3268,2253,24738,28255,18940,16672,15797,10007,22522,16676,27237,16540,23819,15142,15699,16498,20139,4743,15304,11375,24839,9650,1619,14500,23077,11203,23368,29621,14210,24316,18797,20688,11922,2508,1471,19011,6040,12097,1583,21174,9516,9242,15308,24315,15266,27457,6043,9300,25615,80,10639,23197,13349,8647,22581,1886,28611,12822,872,13136,713,12301,21881,4900,15309,22685,6148,10385,24822,764,12870,27894,23803,208,4584,9895,10568,22394,7558,23327,5898,3258,20770,15209,27021,21873,24388,7528,21677,24753,28931,2087,28853,6444,8303,15682,1301,14160,20599,2903,6557,16916,27273,3318,15846,27041,14571,28944,16424,13385,15458,24723,1320,6824,20456,9967,15718,13423,9193,11802,29293,12710,27244,7697,14378,19349,26310,16830,10897,16296,22274,6103,6864,9778,22031,3353,2623,17837,29358,5582,5719,22238,14630,1468,2921,6598,7242,23890,18042,4013,25204,27374,17609,16858,25695,6544,19605,21903,15355,24448,29025,4557,27138,1665,20628,570,27945,7001,6258,14068,9628,19421,594,2680,16937,184,14903,11528,572,20491,29051,24883,3875,10983,29078,19309,18252,15243,28359,22980,2448,20843,26235,3852,21845,17553,16052,2716,1461,4965,28494,2341,24429,4054,19981,8375,7258,149,18801,24669,27968,2168,10879,24938,13299,1300,28080,11929,24885,19224,7614,22882,18881,10388,9964,10315,17840,5601,5259,13484,22668,29785,8161,23149,9416,20973,11001,7289,4264,8784,407,6222,9897,15681,20417,9336,11180,1533,19029,10799,11463,13121,14212,15395,3587,29070,26413,20595,13757,21914,11402,5709,13896,16655,5304,12721,12541,3139,7581,15007,10875,26468,16254,17919,9823,2842,19579,27149,27763,19443,23483,2873,23825,16076,23717,5463,9012,11942,3442,8473,7151,3760,16935,15786,7990,8808,16324,5949,26319,18198,28794,10608,10314,9889,5961,29205,7052,2424,28201,23929,21203,17519,20568,29020,24700,22839,25475,1445,18476,6276,10293,6643,7010,24418,20809,41,12750,24005,21935,11678,22290,2152,10331,19123,19751,17941,17339,3407,23918,49,2913,6797,13951,26119,22829,17025,18183,17058,5132,20162,22742,10950,20361,1691,29997,19590,18176,12961,16836,21381,20321,21156,19768,29761,6171,3083,2327,337,26511,10647,10407,23968,15455,10440,2515,17015,23024,19550,13010,21450,18197,20682,28583,23869,16222,10075,20630,15369,18516,28653,5144,2916,23349,6303,18599,13238,17741,4530,23498,3920,21967,14996,15864,8742,15297,19390,1723,19600,5798,23133,16517,19445,11213,10329,12803,13161,11359,302,6825,8462,8025,10056,10220,19368,8735,7988,21192,3333,3974,19223,16638,2311,18978,29810,17292,3911,5428,11632,17869,2292,5425,17207,1899,7715,4233,5473,11223,21715,19188,10859,20286,29485,29947,1717,28568,29072,9906,20205,5862,21202,11036,9625,14201,24273,18092,14058,537,8432,18877,11025,2616,7790,19279,21021,17570,12006,675,25078,9215,14003,1099,5518,24322,11656,17122,26472,13236,17826,9506,26088,28938,20089,7449,9077,987,13967,5772,26213,14045,4601,10978,4657,19966,4501,25165,18483,14430,8371,21634,16996,5494,9605,21248,4734,15256,25782,21227,15107,1951,24379,9746,5035,8409,9896,21765,3982,4026,6845,17107,8695,12997,4246,18866,12020,4053,655,4011,16943,11011,17255,21240,18894,6092,8441,10059,7730,27563,28350,4036,16505,16346,18610,20908,24468,11796,12600,12294,13346,13126,24114,29290,1275,1914,11659,16472,11776,12152,26297,27496,12445,9099,3509,21928,8422,3367,21867,7240,28727,7428,10631,28829,27569,3200,16112,16965,27251,2140,4375,24284,21709,7616,26811,18145,8561,16470,3221,5011,15709,17604,9399,27890,1591,29916,10884,25481,6336,14161,346,5310,262,4545,5230,18632,24981,26757,16670,8684,9886,21243,19025,21929,2030,25529,3823,22639,26863,255,18452,4484,9172,3340,7393,6547,24759,26797,22377,25978,29999,21120,4575,11962,20053,1867,12005,2475,5075,17922,26279,5306,19687,4984,26539,8356,1452,28608,13899,26997,13363,21031,3222,157,18939,18106,12088,6135,974,17353,3651,11725,2374,29294,25680,24754,8714,8737,19425,14348,4509,20070,14464,7293,10762,11447,19417,8143,10077,514,22688,16414,13695,12077,7156,25752,24242,1246,15933,5503,15769,429,15542,6708,4216,25477,4175,17621,2157,4828,24891,16527,2384,25675,15374,9584,26659,27201,9457,16374,8415,1289,8949,12356,23456,16940,11646,8350,19794,7041,6125,16352,16969,10873,25878,13311,28796,27723,25819,20467,19804,23162,15312,1414,20183,1063,17939,2502,1302,29770,602,21206,19244,359,13663,9551,24068,8140,4288,10297,241,29507,477,25159,23121,13205,8034,28484,28376,13534,29726,26626,8766,9361,204,9831,4323,42,9835,19572,12185,25072,22579,23480,23814,2742,5138,14935,14580,22427,27458,2936,6604,7077,18408,5975,20882,5371,4176,8056,19299,13453,4204,23580,4714,6315,12756,10094,21106,5736,11224,15644,14912,11983,27637,23071,5600,9436,18862,20225,5407,2744,9796,18359,2173,4627,13888,18923,7690,12899,12977,25516,28755,28185,3711,5172,17486,3798,12349,24220,18054,10798,24179,19039,17010,8041,2064,7901,28872,10348,29403,19637,5891,6304,1118,1363,6689,10194,29704,28507,9292,18580,22370,19215,25856,9586,8092,25275,6065,4720,16039,485,14697,14644,9029,5079,17150,3104,19198,8744,3659,23147,18863,11043,8355,12707,1931,28005,18544,28213,21105,22333,10229,13263,23523,25246,22719,24838,8900,22167,14530,21545,8707,12642,18173,23346,5834,12390,6089,12735,26986,2131,10578,5559,12375,14973,17734,23001,15119,17564,14272,23718,19953,23757,28966,25144,12422,13549,24795,2807,2585,12029,20658,28416,14391,3387,22724,15803,4879,16645,17318,14002,20011,7510,10257,6351,16563,14612,27953,27172,21408,22347,24078,17563,5349,7180,26779,9069,4801,20644,17420,21858,14258,12130,20434,29436,21927,8633,13496,25790,18088,9750,12714,14899,6,16377,21650,23377,16734,11443,22092,18082,27582,4433,13098,4987,29738,19465,12163,9131,17989,2865,20927,28700,25805,11295,28725,10878,16682,3567,20059,24378,28713,8941,16542,27103,10577,17634,21435,26063,6052,9159,25888,7094,2201,15845,1426,7080,26536,17090,383,26728,24886,21764,18205,27631,12705,13840,16342,10561,28551,2795,17908,29447,17992,2643,14133,25508,6931,3718,15899,12177,12460,22486,4458,4320,8815,9146,6093,15467,3033,18307,24590,13894,19656,4416,7564,14954,17973,7260,13220,20657,7124,25646,12831,11144,15540,22426,7127,1317,6071,24457,14930,8727,26369,10515,17187,19460,7921,23916,3446,25553,2824,12639,4656,1477,22547,24244,21213,24771,9072,27314,15232,21604,4817,21490,14257,4905,25550,4875,14534,26618,21163,7574,7067,8139,1641,4811,28505,29424,2658,25774,19474,73,18873,13846,7433,14588,3279,17099,742,22425,24979,10995,26529,5702,22,10501,26393,14820,1727,9063,4426,18317,9076,24987,24175,6827,23173,11077,15599,382,8131,7673,16361,11855,27104,25207,10028,18954,28231,16812,3390,29936,9591,9684,2193,13381,29888,16066,896,1890,15178,3537,1699,24152,24052,13442,10777,629,5149,18889,21289,22424,26931,4237,15584,26823,7925,11400,4666,20305,28421,21965,3894,29971,24027,20160,6081,12734,13530,24806,9356,4023,3245,7097,29210,2625,5928,24563,1888,26727,13750,25896,3906,2890,24687,15593,12550,2238,7640,11628,9957,27326,2124,10756,14312,10694,10746,19024,11465,18888,18411,2780,5827,3514,3341,27766,7955,19003,2611,9405,10614,12652,14050,19567,4167,27915,9761,3339,9106,29588,1898,20853,17301,7280,17074,1237,19777,5239,26739,10922,29045,11875,9779,14804,29254,12907,23639,22375,26118,7367,16014,26896,28506,10080,21067,1528,7742,2674,12697,29932,3419,12668,8069,13014,9810,2203,24414,17447,5758,16666,11495,13516,17350,6339,23225,14098,14028,19374,16575,18943,29209,13500,23911,24204,11231,24508,24436,21720,12700,19285,22342,19700,12256,5721,17740,13732,23908,21529,7484,16193,8673,21402,20902,12555,19970,22961,29185,24212,28427,9228,2460,27746,26933,13697,29459,21407,4658,2338,11726,7919,22419,10174,12417,8994,28372,4235,15245,23485,18228,4035,11985,8942,22753,21518,24183,15841,28524,26189,7185,19093,26735,1006,15538,4449,1529,17401,7543,27724,6160,10912,14277,29040,25581,11314,8110,5203,19099,2724,26331,1884,29352,14074,20718,10265,12330,21328,16475,7339,28619,9496,24391,28119,24023,17683,21848,11662,2477,1367,11694,26848,1621,10300,17762,21736,8926,15826,12191,16652,2232,25282,20496,18368,18030,19239,17182,13635,6888,28554,16991,26332,1531,17108,23407,915,15069,179,10401,9698,3500,8243,18872,10045,14026,29091,10818,22599,15781,4141,15292,5581,22180,12777,5923,18222,19817,27361,5434,27658,21391,10736,460,9422,23373,24900,10576,12160,26042,23326,25278,13826,17314,5872,5233,28558,16679,8918,22359,22123,23943,6095,14778,6903,1249,12221,1636,20247,13028,1187,20222,11904,24818,20012,5242,18492,27778,4958,16989,29855,11757,13931,6224,22304,1959,5090,9319,27830,3223,22601,26035,14663,21849,29637,18175,28785,26624,15618,23112,25480,21241,6666,8781,6701,9110,27742,15072,10081,5166,19713,8563,24560,27114,29348,26599,4326,25592,19441,26845,20656,2462,270,28464,13230,13766,8365,5046,12884,24616,12419,16077,4468,487,13581,10252,1166,12906,2415,22234,18766,11238,18212,14861,16357,24350,11814,19742,19041,25040,14037,2217,24467,12231,15928,3806,24830,5821,1812,11184,25360,15073,18342,23784,18443,6656,1123,29845,22056,23100,22957,6200,27272,2097,26396,2672,1090,29102,22940,26544,27922,27537,27799,22048,8188,858,27119,8204,14322,23947,18539,12910,5876,18835,29222,14119,18867,14232,894,26895,2057,21820,3266,2171,19977,6610,25253,1839,13539,4277,26263,26638,15407,16314,18427,3156,13790,5513,20411,12170,6017,16997,26036,3066,25607,7677,13166,6028,21167,5262,10971,23322,3524,28259,3964,2431,1110,3546,2998,9863,3884,27528,11741,26065,12779,26126,16032,26436,1252,29729,11024,10925,25071,14647,14287,9081,25647,15159,21345,9464,25987,16399,1903,7552,1697,6944,16546,13085,27784,27253,29381,16525,22906,10244,12259,16791,14483,25631,20606,15176,4691,17554,21711,16311,20036,19141,17929,17413,19562,16234,17725,380,20996,2978,10476,7622,5311,8443,4001,22490,8713,13472,16958,24224,11488,11047,14462,10626,22867,18471,29169,24524,16378,3332,13338,8721,2125,4046,20906,21954,21554,7366,5942,25643,4770,27639,15207,3927,18609,2026,21872,5734,25838,1117,13839,21234,24149,29490,1798,28092,17503,19911,26928,9682,19786,7987,14398,25898,10218,4597,23524,15586,11050,2762,10359,7654,10360,4340,18638,15264,23593,27026,1663,7201,27604,19542,16549,1305,28277,13102,24889,7322,12780,22837,20570,1128,804,24850,14748,29902,29344,21135,22725,25243,8408,10148,20696,25909,21274,6121,24433,27503,4825,22996,19771,5627,1101,6233,20703,24460,7798,15269,29244,16919,5731,25016,15982,6559,21437,28904,26245,2806,21789,20795,4949,16022,5668,14091,11989,1757,95,2584,9196,9271,21302,4147,17573,24120,28271,3572,6256,8858,3811,23284,6900,2917,28095,25109,3827,13920,29582,15568,19059,1559,16820,15978,24716,21168,10087,17816,26067,13145,16188,13049,16891,20123,3426,14610,3517,19944,28402,29405,9921,15165,453,28439,15324,10728,25669,61,29265,8173,15257,12336,8502,1607,6133,23724,13660,299,15381,5339,11481,26561,29548,15061,25408,16182,10214,27239,24252,15375,19286,17829,20773,1735,8344,2024,26432,10186,5151,19746,7380,18543,5778,25335,2466,19595,14387,21388,22158,11575,29766,1922,12921,22312,15911,24993,15555,14892,15752,4818,2964,12307,8478,29893,19406,26582,17491,13878,15449,4803,4517,7934,17713,16350,17862,21726,27800,9705,6573,27700,16138,27212,17442,23023,23386,22878,19972,8830,9581,25143,3670,848,1986,462,8320,8838,21978,9455,19482,20197,14191,24936,18501,22949,736,23747,17785,17658,6458,16742,21555,28197,20563,16782,16042,18645,16925,15655,16215,4806,5785,21678,27827,19272,20680,12909,23983,18748,29994,2605,3900,26722,24473,7316,671,4889,9937,9850,11870,20881,11482,18231,21465,8539,29234,28210,10984,18542,16060,27106,13111,5344,8913,26162,7860,12606,16752,9214,14266,16558,27761,19854,7378,21069,3265,29183,25547,9187,10046,861,28566,21068,7194,25630,3579,11834,19634,28698,20004,23913,25344,4822,990,21483,17263,1876,24283,18908,19356,4843,24006,18262,13828,16079,11055,20241,11728,15544,9013,22275,4936,16040,15307,23621,1027,13380,8407,26791,22350,20025,21712,26347,26327,11651,25613,20097,13960,9908,14779,25266,14208,6181,27980,13681,9463,1548,11500,26524,3705,25096,1540,24778,24513,14007,2315,8380,9827,21474,13882,9981,3749,5016,14084,3813,9143,19238,9485,29917,18784,5477,15716,26308,4424,1177,16087,1682,14165,10098,23969,10207,3106,3687,6771,19946,3356,23760,13631,15401,4618,13993,24159,24303,26687,25863,8560,13084,14299,25685,13271,14908,22988,19232,11275,21657,893,28922,5519,11540,28049,28946,29568,3923,19057,12416,3255,10284,17579,15076,16235,11200,5575,15619,26573,19891,3584,27123,26012,9824,717,7474,16905,16153,2858,7266,11918,2961,7274,17877,1293,16192,7333,10099,23396,19856,2401,10413,11523,749,23240,29000,26027,877,1902,18047,14179,24225,14302,4423,20912,28942,20267,1084,9579,17347,636,9184,25846,29033,6959,24039,13699,2847,20273,26990,13025,12469,5531,16030,23046,4671,14924,3773,6514,9112,28681,6293,3549,29664,12483,19833,15001,10340,9642,21989,4471,1521,5153,21226,15970,19208,2493,10947,10180,11338,29985,1022,1805,17177,20448,1932,1446,29162,27166,17378,11153,12769,2558,6075,14280,7203,8736,24641,4202,3440,16471,5321,5122,9701,19126,6620,16453,8984,21332,18232,18206,12502,14323,25075,22832,13065,28783,19305,16501,23461,7740,3224,17078,2604,28155,946,24042,18661,8233,26614,21628,16640,27028,10457,7435,17052,13489,12366,6739,25099,14030,13560,17291,26694,17239,28106,10579,870,26853,85,13869,29892,19551,20132,5158,28949,26399,27065,21350,16952,15742,18973,29380,5403,7754,26507,4577,4158,1299,5118,10511,5528,5766,16172,27626,7530,25022,19433,1357,23370,11565,7072,2524,11049,5160,29687,15384,11217,22962,6840,22015,16423,17443,600,24897,23972,1386,5619,28096,13052,10013,28732,6108,12974,370,11421,13556,8106,9965,7391,20018,5111,29798,17479,22052,14695,13327,22164,17,17946,2723,4030,17509,19453,17204,11666,15440,8434,22992,1243,23236,8363,25114,2931,11107,3211,8504,9764,2512,6453,16018,1823,22841,1541,13637,10796,26447,14459,17139,11177,6354,190,91,9347,9240,22600,5991,8309,15397,19311,20210,24650,15396,29993,17423,19159,5017,24586,26106,6365,2426,7002,5514,15640,8395,28731,64,28474,9344,25890,17672,19044,9524,6292,17800,19242,27822,25339,13221,18235,2272,25659,26822,14286,24476,28776,17060,7154,22313,24334,22524,12304,28665,5545,19766,26557,24308,4695,12273,27590,12585,20386,14678,25990,21016,28633,12975,10849,21349,12386,19089,24099,26390,17756,1894,10399,780,1780,22138,3448,27270,16961,16702,9837,10753,26026,18508,8234,28695,22653,11838,2301,12505,1724,21743,62,15999,14559,24412,3769,4027,1514,8065,16034,8851,616,26124,4105,16567,8258,6176,17036,19133,9992,28223,17887,1100,2849,8797,25821,4445,16177,22603,25014,4784,10034,5887,20590,15524,21957,21443,25268,9357,22848,13463,22435,17783,21579,10992,25416,1082,15528,25614,15044,14738,24988,28314,7308,14549,28481,21937,15214,3693,25446,1329,24189,22903,4623,3475,27737,10952,685,25368,8240,18762,3086,9341,14306,3011,4547,7752,19233,9278,11115,27996,14328,17293,25110,14701,19107,10962,13798,19511,17143,20309,10672,10963,20989,22876,11245,16605,1841,11164,5966,21878,25141,18148,10144,4622,11006,23620,29066,14339,7906,28275,7512,10545,25289,12411,2122,22856,5223,25238,995,16242,23654,29921,7878,23650,17304,14625,21569,16928,22720,9608,24578,28279,27032,16601,18285,20639,28443,17175,28145,8496,5114,23359,13748,18151,9478,29318,2641,1297,7977,14054,21423,6846,27549,24929,17336,7803,7996,3594,723,16111,2150,354,26504,27152,5640,18300,889,6744,21700,20926,15642,19344,13937,5859,19409,5081,22351,11081,28281,15196,26379,23488,18959,1211,21379,29820,9309,10759,10725,2216,21962,25317,18896,21785,6584,28077,9066,10336,22444,9636,27191,23192,12089,3924,1174,8495,5464,17077,22862,6325,20915,5191,21882,27865,7778,12932,25321,27087,11556,22029,9304,14581,2262,4676,27848,10480,7704,29038,13070,18083,22896,11069,10149,15038,3082,11801,403,20042,27343,11769,14925,21424,973,13451,19319,5431,29012,25150,1066,3409,16134,23965,374,10200,28881,29967,20055,2934,16462,5550,2373,15389,26962,12886,20814,25157,25502,14599,19213,22647,9525,9904,1904,3837,23201,29366,18915,27224,8710,29062,18545,20796,6217,24369,13163,10029,24435,24761,3841,25229,2886,12525,7401,24878,13739,15532,28040,15921,23188,29041,6138,6683,7818,20061,10438,17003,24451,7442,5256,22298,14382,21401,21208,18909,15582,172,11994,19965,19494,22698,19654,4877,9409,9151,8795,96,8463,16144,19883,11098,9338,26673,14352,25929,8268,8178,27497,11262,4783,20312,21356,11859,8602,22511,13062,9793,3828,3146,10727,19648,3787,2635,22247,17679,27268,29951,17119,269,22779,2228,27053,28898,9038,9259,9168,29763,17023,3229,13909,26625,11405,6401,1851,28170,25885,21257,1693,19228,7320,21104,5084,6120,25746,1380,26427,26467,13002,24825,5747,29958,17606,10652,12189,5767,29021,22870,18081,3533,18284,14145,9759,9634,14490,1381,29019,16732,20464,10503,18413,28138,23395,173,4431,29156,4400,24324,3166,16298,4742,3996,11550,1594,20445,4992,18541,20044,16051,856,29885,13066,21446,14185,12362,19098,27681,22358,25844,3782,4112,28433,17661,4845,23235,7503,25731,29767,25320,19886,10509,17361,25178,19938,128,27794,2353,10839,1208,9938,17397,164,14743,6677,17094,29247,11229,7462,6162,29088,16839,20390,3869,19063,26375,23018,449,26934,5642,21556,24098,16994,8639,3441,9188,11377,16362,8439,2368,11084,13992,11808,9706,15172,9713,14381,1629,920,27257,14103,2602,9383,12658,9861,29577,18650,7985,18134,517,1969,6758,21354,22017,25710,26851,4986,10932,24972,24655,29970,21003,19901,5867,29049,24694,21210,1760,27207,19532,7267,12663,7472,16643,15940,19792,21026,16785,18224,6018,3191,11682,26401,26105,18854,26852,25835,14386,13139,8130,19937,20708,24314,15731,20935,19607,23060,16805,11719,25767,4690,29413,11711,28906,5086,28792,3577,3219,11974,23794,5039,7620,1098,23159,4015,27436,2582,7982,6434,19982,15674,27162,29096,26841,27756,7743,402,17178,1454,23564,3511,5664,23573,19638,17434,25355,24574,20290,16706,13482,9558,27097,10776,17649,11045,26801,29273,2073,13870,17342,18361,15737,247,18620,3801,26775,20805,20880,12019,24423,3547,9340,1617,7079,1622,10014,7869,19513,11000,8394,29480,18823,9488,25715,12847,15938,23800,4080,23623,5392,19343,20151,25351,6079,2710,29120,18401,21493,27949,23693,10620,6648,13375,22114,9093,22366,17155,3069,19472,14541,7404,25859,3175,20013,20610,14893,5120,11253,14550,20148,9006,12573,24992,54,17750,10985,22550,18789,8665,7205,23415,13842,3896,20626,26043,27979,5015,18425,10110,14244,4366,12243,4926,25804,20681,862,12240,19752,21509,28582,2696,16303,5474,11399,7064,26147,6616,9207,24698,2096,229,10555,4952,1333,19866,20525,14052,2325,25879,7700,20490,5555,28132,15113,21652,28777,22945,7926,1557,26188,20923,10860,16534,15484,10624,29158,12922,7422,27044,26039,22321,392,1774,9821,15071,7587,12903,9652,21773,23660,6766,16432,12519,27574,5022,2601,2801,14341,4515,10845,13753,9089,7522,17990,17507,2875,12742,26961,4839,29118,10800,4207,8051,27552,2958,1749,6402,20966,12166,21471,29235,21144,16968,14927,14693,13809,21308,6637,16017,10145,5385,4897,3866,20830,22527,26976,20992,16295,3759,29776,9431,1356,7814,8645,11561,3563,26889,1988,20253,15941,12835,5219,26899,9658,3581,27625,14136,7479,11856,12942,24594,20149,3634,10767,16823,3044,25755,29724,18848,6835,25884,15710,21018,3185,751,2725,1751,15677,10697,28313,12635,9643,14442,2366,23691,13177,14197,5218,23394,8765,23158,25871,15726,13123,4255,6980,89,26294,2498,17205,23854,6272,22641,2142,26202,10427,10123,15671,9393,4476,12520,23174,26069,307,27140,7026,752,516,26287,23804,3304,7746,16104,2930,6426,26248,15259,15525,6251,5926,22493,13746,5335,26715,15133,24712,4041,22348,17131,29597,25818,13384,9830,18758,27372,14495,27078,7307,5828,23674,11554,23619,24538,19350,21955,28500,8121,15051,21681,14018,3657,5410,1194,29836,22296,2736,393,22886,29881,21984,24207,27965,5043,23492,2056,24012,589,24589,2829,23029,8081,26919,7008,13227,14871,1952,15262,28867,5478,2187,22109,27660,3820,8137,11214,17548,4565,18742,933,26171,5265,9594,20815,4083,12091,14814,20692,4194,24854,18075,13690,28694,28587,16840,15106,6076,8448,14033,6691,3103,16656,15174,25910,2054,7940,1891,28900,28907,28336,12778,23736,2015,21463,19740,6839,5366,24826,28452,23220,16551,12964,13018,8576,22095,17284,10387,4970,5133,5497,10766,18467,6515,23037,14648,19530,28448,15739,20731,13648,27341,23642,9160,20136,18003,17133,4962,20400,5047,16867,29979,18346,16712,20505,12110,665,13051,9770,433,10430,27786,17181,26629,3702,7013,7749,7850,2564,3767,4314,6232,29393,22528,29465,9593,10036,9931,22237,25405,9842,18303,12365,27052,20987,26499,17537,13507,23021,2644,17523,2751,10565,22026,27427,22858,7209,10772,24529,11160,2067,15778,19541,20311,17526,29719,19236,19772,17071,22656,18528,26154,28983,1635,9644,27842,17850,1279,21567,23353,9352,639,29989,22672,4685,12532,18378,28218,6572,9898,12410,20037,23363,10896,26502,12125,18339,17481,28826,14254,26018,3730,25691,18319,53,24280,29780,23038,2697,8038,23870,3764,16618,23531,8118,29848,7881,541,10435,28149,691,27091,15909,23561,27109,24236,17515,9535,656,1946,11143,20492,285,14737,25265,1705,14492,21149,24958,26834,10172,10914,4950,6893,8794,11852,28685,21164,17696,24046,21959,25239,11106,12958,23696,18618,27939,24947,24870,10841,2954,21986,29047,29395,1451,6459,22202,23575,1907,10104,26857,13246,29144,13569,17200,14719,24472,29180,29532,2981,8637,1379,347,24296,22607,29652,19170,16730,7273,3648,575,19124,10253,2291,22249,9181,13565,27311,13900,3226,12399,1553,5369,21033,26833,5634,28680,19583,15388,28709,526,29563,10670,3321,10714,18880,3519,6379,12435,3966,9866,7820,15882,8451,10249,8920,14904,1209,16637,10477,13680,26884,4259,4205,29223,7215,25436,10212,14216,2707,16204,19522,2826,24,28615,12327,11751,7504,180,28266,10182,18294,26073,17328,27614,9859,29572,1840,20544,6110,1155,6774,29707,27580,15515,19855,19167,27954,26849,20706,25688,17335,9985,19211,11442,18250,19091,18947,6933,12572,5624,13401,2491,83,29520,4704,4195,19021,6972,19226,3737,25925,8565,7830,11921,14217,170,16483,25390,10115,18546,28284,16260,8531,9291,5816,6727,27187,20091,4867,14759,17607,13725,29670,20276,9263,16035,14941,3078,8476,21890,19801,17522,1507,19026,16195,17502,24413,11268,10496,20801,11444,18159,21462,6503,23316,124,24274,14869,10260,2293,18847,6619,21871,19789,10788,4186,185,8251,28191,9043,1494,7179,20001,16914,23767,17920,17228,4799,14605,25567,26664,4693,27424,4715,210,28141,21199,9261,24070,1673,6530,6960,26345,13615,23306,22361,16176,18154,20057,10043,8683,28735,14293,9548,6009,17389,23538,15925,26453,27351,23190,27368,15654,3513,24575,15512,28059,28061,2745,19300,24990,17926,10383,11187,5722,29854,4739,584,17230,6788,21781,28759,22593,11721,13209,11800,25934,10666,14985,1555,19164,16735,28379,24873,21429,26789,14011,14265,3463,20201,16145,2093,17405,26832,16139,8886,20542,8964,13837,2032,5844,9198,23130,18750,5924,23410,25810,5583,18274,17645,14004,23185,15623,11750,28544,2133,6752,9702,21030,841,22188,480,19588,8282,26086,5698,7313,27610,25397,2718,10373,22080,8956,6647,8849,10444,15492,17562,25802,17788,3345,27562,3755,5449,10654,3845,11908,24117,8423,15558,1059,27813,22676,29059,28828,21038,4034,29945,13744,11869,18328,9566,168,21607,5387,26070,8396,12096,17219,8052,14966,25595,15678,1683,5845,25759,27353,13319,10403,21009,10862,26756,186,19246,9546,27673,22700,2854,19463,8618,18278,3027,14579,15551,12764,28270,6253,4829,21127,21942,2746,15270,20334,26122,6238,21286,29752,17294,8871,29311,28656,21710,23268,3809,15881,4674,27208,17764,11141,2036,26258,23788,24390,8059,867,15070,5476,2771,8046,17363,20904,5042,18451,24748,19257,11491,2356,6073,2411,10507,4781,22956,3695,2247,20288,9384,28642,14843,16596,3032,25039,24406,17430,25937,6342,5615,10239,11347,21466,25843,27061,26964,549,26084,16096,22616,11372,29961,7547,4612,15891,18008,17524,6375,4903,4025,10111,12300,51,23666,21425,24739,955,6951,3556,6140,1159,27472,2487,25179,27022,16827,7659,23519,322,28035,27531,1590,2330,26743,17505,5787,19100,5927,22013,20693,5538,27296,18388,18926,29791,3530,5740,28208,16495,26658,16073,7597,27946,8492,14241,23866,20700,1314,15557,4118,7839,18644,17751,6202,27878,7238,8480,7777,17775,21816,8030,21977,29837,9873,21329,8518,19293,26361,21528,27023,14835,7397,22864,17947,113,1752,14517,24409,9489,19216,18998,27762,9190,12890,12725,17028,17156,3571,25172,25997,23233,18694,14164,19749,8093,14577,13345,1747,28567,27500,24299,14937,21019,24245,13474,24408,25413,14987,17046,8638,6716,18344,4527,3763,5305,16406,1598,641,4909,17748,13330,18625,21933,24381,15689,546,3164,24281,16733,15526,11096,16329,27336,8655,3523,4886,12223,28495,10392,19939,22863,22461,17007,16674,2108,10677,18777,27879,2147,3286,6706,26441,26869,18256,28991,14171,13572,28137,10752,10168,18337,19703,22933,17176,27227,28537,25627,23997,10806,7872,10433,8529,28449,27906,14770,14806,2632,10596,22622,23525,11254,13807,17281,29419,26195,13466,7323,6417,8321,15865,7317,28600,7061,3880,27956,12682,2179,16016,16397,2099,27133,9807,2389,12985,24312,9700,3791,14787,16847,317,1935,20972,18585,28089,1163,2289,8244,16081,24705,6159,28575,8973,21921,8789,10158,1016,2527,3676,12421,5048,18723,22069,16559,18843,11104,6901,6268,23300,25100,23663,6428,8323,18236,27566,3603,5820,11999,19915,26915,11709,2177,5490,3775,1835,14539,9311,11722,24067,19517,23441,8567,28142,15208,13917,14629,28016,12888,3576,14193,24250,1311,2869,6496,6183,4386,2920,20341,27596,28780,5705,14901,17904,14567,5710,20527,25954,9473,22894,23901,21568,17081,10208,25580,9691,13321,24325,28357,12999,16793,5024,9096,11513,10716,26364,21814,5753,15112,3701,14932,5847,25671,27317,19418,29574,11606,9730,26356,4564,17851,21099,11886,23345,17264,24030,10419,20810,6455,15965,24755,3528,24505,20730,19620,14807,19702,1609,17691,18814,23055,22686,19683,9165,6187,4191,12506,27738,24944,18272,24688,16420,7009,13672,3633,21158,27963,8909,21752,2202,16373,22481,9678,26293,14447,10829,410,18113,16210,9363,25437,14851,16355,10855,811,8430,10142,17711,240,23837,12363,21802,8169,24701,28069,15433,19701,6057,17690,11610,13964,17923,768,23312,23044,17396,2127,14661,18160,23422,6061,20118,1335,9162,5101,29481,7968,72,19858,26421,4948,13784,12095,22954,18697,12065,12792,2750,27494,25995,18020,2851,6605,20990,21198,17854,23568,12321,14939,23471,26637,9141,2254,9695,29082,14503,6779,24010,13073,16012,23399,2492,13749,7991,6290,22193,27182,10429,9381,15645,14317,11089,27194,14728,11216,4746,11993,27232,15696,17518,6886,4571,29313,24487,11397,3130,21296,20041,22196,21282,29991,14977,2443,6223,3783,21046,18191,11812,16713,21387,1923,4178,10910,22951,13814,29522,8424,21511,11756,8064,14886,24880,15049,905,20500,15497,8295,12952,15721,19598,25474,15466,3803,17327,17018,1530,1855,20859,28470,4632,20032,23323,2112,957,13550,14491,28409,22244,15519,2777,25586,12763,4840,3585,24336,17231,6332,5661,27177,9877,16947,26969,17899,7586,21899,24587,13692,14868,11933,23547,11729,3189,583,26579,23735,396,6583,26501,22255,29229,5183,6248,3100,1387,1684,7653,19277,3016,18724,12641,23146,23061,19209,2947,8452,24895,18233,2995,3433,10240,491,26733,16275,18099,20892,25661,7537,24547,17694,22471,25809,26017,16289,12632,17462,4802,15818,28762,13095,11845,17822,12808,19578,7076,9252,23631,25300,2618,5735,14282,9123,13225,14847,21833,23059,25570,8512,20713,2755,7609,12845,11296,465,21323,17008,5686,1283,25514,10938,10366,823,22947,21456,624,5194,1045,29505,13245,11438,5405,14053,1730,29402,6565,17466,2399,2664,23376,18824,18349,24794,12885,15281,23849,7736,112,2898,5676,4168,8786,8980,12026,19991,1220,21136,7682,27045,18800,29959,2312,16537,16189,15226,19273,9731,6801,24626,29514,28373,22701,18780,27771,6905,12826,23702,25781,349,9970,3681,28529,27905,17009,21594,2908,20852,20797,16150,1981,21281,11907,3678,22733,22061,19477,7917,10026,26547,9606,5508,18161,12908,17647,16209,22640,16885,10887,25449,10988,7999,29111,648,13628,22939,12488,1018,2332,4394,11685,9327,26487,29608,9474,22162,26024,22618,24172,12514,14551,12083,23611,17425,2814,6406,19671,28995,25284,24767,1384,14686,26146,8635,12643,19627,11105,14520,10824,22681,12948,11319,2495,10989,11972,24228,6464,14099,29955,24917,17767,14742,16887,15403,23723,29886,2743,24807,11070,12913,1767,26055,961,10722,29683,16748,10591,29746,17722,27716,21300,26984,2047,15715,8279,29243,9675,23212,24667,850,8389,10475,4518,882,20347,8174,15890,4180,9475,3157,20217,24051,28945,3113,5985,25323,12755,17151,5109,24765,17873,11431,29060,456,29374,24642,5378,16474,138,7288,15580,8095,3495,10843,9631,25906,22530,18936,6136,9103,27912,13486,1342,13410,6243,1146,15078,26911,4611,23031,6237,3382,15482,25831,14953,21868,3394,3835,16829,28556,20323,5124,2235,20768,18576,23941,23615,5353,8824,17937,6589,21112,23208,22281,17671,3402,334,5837,12494,24373,14963,26519,13286,20173,29075,14316,5117,12509,13183,37,819,29859,27001,1816,26718,25511,26269,19274,16611,3183,2856,21843,24071,20356,4985,13955,20559,25217,12431,28742,18725,8782,264,22772,666,21294,3948,29383,10103,2360,493,9648,24622,5482,18607,8876,18059,27962,6778,6952,16313,13682,4359,1080,12251,23700,21769,15206,28643,24797,16623,25793,23644,6913,10379,22540,13356,27145,28980,24692,13118,29862,5738,19074,12202,16396,16354,16221,12530,2039,7249,28186,14413,4382,25375,1505,13328,20907,17511,19127,13822,27018,1596,7207,7092,5331,22464,6374,8522,5533,14656,25399,14370,22258,9120,29990,7488,11336,20580,23559,27688,8274,9302,8734,3685,23194,4283,17145,4851,20755,16803,10638,18315,28209,18458,6717,3198,12911,25459,15386,13030,27524,18957,23815,10975,29080,16888,22687,5870,10662,4434,19192,26053,17971,16846,24105,12495,26134,10835,4068,7759,9811,18184,16110,17582,2895,28997,12066,1419,23889,7480,18903,11378,3726,14997,15194,24104,15134,10431,2091,1196,11663,27867,3004,232,4160,25578,22884,25941,3882,22226,19948,13448,18781,22890,23634,16932,14513,29213,14211,21532,11305,27993,24845,2671,14578,802,12760,4587,18902,11731,3424,1549,22953,23566,15452,28520,3117,18445,6736,17362,8024,29528,5732,20447,2412,21052,6969,4306,27196,19838,25240,22494,5725,5255,7443,14350,3565,4945,18982,17787,22039,22257,3141,24989,10047,3280,19592,18799,29343,15596,13440,1004,18033,24090,20981,44,12746,12430,18825,17385,18857,26666,17755,18734,28152,21879,25024,27649,3449,7960,17173,11493,19809,29034,3609,10997,7137,1002,26949,2579,13829,6775,2905,21279,16359,4980,4563,23487,19720,13801,16299,24080,119,14022,14298,15111,13315,19896,15652,23742,21088,26077,10417,15041,15344,10688,2615,25298,27055,28253,29792,2868,6025,1830,28978,18579,2458,15713,14450,3344,9284,16770,7550,12482,12546,7817,17050,8063,22766,16053,17273,18822,17402,14331,1703,29650,687,18372,8007,20360,6539,23383,22143,9941,16852,8822,17726,20715,13444,12790,4044,16983,26872,29368,6578,610,17352,3165,8705,11906,1362,8471,24831,28027,2192,7514,21706,27732,6412,12244,28250,14260,29044,12971,8210,2737,22716,24275,29832,26178,6023,14593,22354,5846,23398,29623,2530,29689,14383,14097,1860,17825,26798,9672,16272,20704,14615,6201,21078,4401,23137,2153,19902,28429,28273,14838,21863,6949,12334,2704,8191,8449,11975,12934,19608,21062,3719,5683,7802,13562,9462,22782,12197,9567,23710,5471,5146,13164,12604,701,19765,2767,24675,519,25349,7017,26977,11065,8785,23285,7457,23338,20534,21145,25571,3673,14465,28798,14780,1685,19263,15235,14725,14874,27400,12406,1485,14970,9280,29236,3012,2395,23382,16266,22571,11765,8834,9844,12716,13815,11641,13541,14,13806,8111,27875,5866,16662,23641,3022,4668,19678,296,196,16698,26255,26040,9091,681,6538,24905,13142,6152,12733,18586,13370,10877,25636,28046,8682,26989,6227,29470,9752,26282,1448,3957,2863,13158,8301,3057,27955,16208,6211,18479,14222,26194,15811,25591,25874,25521,25231,13811,7760,15697,7083,20129,7520,11304,12592,14702,10128,22118,213,883,18690,16244,13343,11957,20103,29221,6414,13552,11560,2764,28939,26430,28144,21703,28757,26750,22717,9732,5586,25466,29476,7664,2586,2896,19289,2386,19306,27882,1740,19470,29128,28752,15597,10553,443,19723,20306,23591,19718,15377,13971,10289,22788,8841,3391,3840,9073,10358,13691,6803,11879,13253,5260,16821,25579,26456,22446,13389,10826,9321,14734,10944,12456,24040,2588,8889,24331,18102,2976,7950,8530,5379,24357,10405,24170,21472,25917,16973,6506,29769,21253,27635,5829,8564,17848,3119,24932,15454,14818,15162,11412,2661,23432,26696,28988,17885,28465,1797,25334,25881,21794,18710,3669,21348,27242,10513,29607,12574,9681,12598,26045,9051,6203,6700,23533,23557,8590,19859,4341,13140,5060,2014,23816,3518,2484,11445,10170,7044,10033,6094,662,5005,5419,23516,19375,21491,8248,23262,19650,23565,27226,17610,10121,26692,6489,9762,22308,5997,25057,12528,2563,20667,6947,76,18804,15177,19853,25745,15215,1236,18393,16781,12926,391,15152,5956,10699,12542,9794,6696,19455,16007,24817,20171,27255,25419,27608,28198,11952,3704,6403,21950,21327,12817,9233,28006,29511,5692,2029,26135,12072,14199,29134,17422,23817,10146,9232,9200,8053,20537,15747,24784,23003,27365,19388,28104,6870,12607,20954,14817,16219,25064,13608,17463,11326,26477,14898,18627,8486,15621,21537,12991,24020,3812,29084,24496,14213,922,20603,7476,18673,4033,16256,24809,28664,5406,7458,26469,7585,17416,15046,25350,2694,3024,28764,1543,11195,26707,21242,953,2375,21638,11469,118,10974,1551,15318,26172,18124,29121,15840,22137,2708,28912,14486,25541,28593,15248,10278,175,14034,19707,22082,27581,28247,24265,21048,16421,10701,14187,28809,22431,14005,26861,19570,24785,12620,8083,1375,19744,16718,1634,25258,6688,29333,2942,24721,29316,29068,2955,23256,24260,22888,14076,6943,24557,18504,27565,23288,20484,19325,13871,17859,17884,10088,25186,22412,13362,28718,17333,27425,26710,9229,22022,7037,9522,15339,13915,5774,14325,22846,14301,16392,3386,18648,4610,17202,26847,21072,4383,14261,24491,10143,22620,14914,16356,27269,10955,7835,9469,24045,3170,6934,24112,6383,21625,23247,19968,24951,15352,292,20762,21322,155,22141,9726,2589,29659,21412,6953,10525,24871,11715,2100,16741,1637,2083,25684,2204,17544,5631,29115,4225,22248,24994,19806,6523,28338,23075,28954,5920,20785,27541,5150,7691,17697,1608,24967,28050,14902,12361,25066,22447,1413,25683,2850,16716,26372,28490,28626,327,8997,25658,3305,28081,23216,15399,9754,26495,29207,8455,29074,16061,14639,20240,18739,18254,3586,16976,25718,21341,8276,27302,18853,23486,29093,17057,19332,18267,25424,23497,2514,20231,16609,13540,6247,21497,27433,16199,963,3589,14269,10617,27431,14669,17643,25539,24610,23242,16569,23778,3871,8297,18063,16184,20474,3173,15163,26405,3686,24398,29645,5614,14974,19310,26273,18488,29246,29540,10569,14634,23237,23924,5754,6678,24144,3696,6308,16393,25634,15202,11563,19234,16408,14866,8961,4543,22755,9324,2449,23379,28029,1755,21851,20446,12387,26192,21839,22230,26455,13416,22544,1411,25605,8988,15216,8467,13968,27025,20842,5962,3862,12050,18731,14959,26038,8944,27107,28278,25426,25716,15804,22770,21353,17540,2572,5028,15430,3089,13584,19589,7135,6161,6594,10836,77,20192,15518,17957,1610,4707,4820,14290,3814,26891,23545,4100,29835,19006,17370,12708,28975,27147,490,16835,26681,266,21438,21739,7446,2394,19034,15952,22165,17709,6344,4918,11773,7230,21073,17340,21809,7220,7592,7460,7225,20585,17746,14137,5220,22570,27419,27860,24037,28478,7264,17247,20671,2428,3461,1121,11334,14273,27775,18918,8028,22066,21066,1745,12377,6570,11116,23350,27371,11843,6445,18129,13481,20298,27083,1012,19085,18347,8664,6879,5852,27785,15531,22911,574,5234,5066,23166,19908,29046,8589,18657,6038,15912,29271,19219,20035,8708,14566,15330,8842,11913,7056,4640,18006,26266,19640,8246,7281,21964,29898,18249,28576,18190,13499,10256,19484,19202,3688,27038,5639,12972,29647,18405,16954,28510,746,16100,18380,20640,2371,16747,8998,22178,24894,7423,2673,27231,6770,29907,17718,10491,2278,23305,20891,28014,14691,2928,9358,21533,20485,3620,29742,27656,28607,20676,13439,29119,16861,29762,6446,271,22602,8517,11381,13563,14750,29011,27442,6262,28929,13557,28702,26603,12041,13559,26479,22246,9317,24094,8586,16191,25522,4451,15964,6673,22948,27984,15592,22995,8413,21883,2651,28927,17714,12338,1092,15212,10154,14706,17700,15025,26033,7150,26731,18470,7075,14671,4764,27285,11506,10443,11264,8643,27957,9213,24477,11257,8929,4357,15413,24341,25912,26304,2855,22093,26810,9137,21494,28010,23169,27816,25221,5456,6724,21027,4629,4705,16825,23120,12452,1802,19531,1612,24803,26982,4554,4721,4912,14602,1373,74,28276,16602,12206,12998,13495,4709,14452,6447,16446,925,9892,19413,15685,28689,6956,23667,17550,1472,115,1158,7178,27013,28660,5563,9614,25192,27258,22792,20252,17020,3053,15954,2624,17528,11980,29304,13969,9690,3731,2035,19778,25180,29702,17441,10546,26580,20170,22392,13242,22565,5860,15770,2362,15717,9987,26051,25795,29171,24735,1827,2052,29773,1164,27929,13280,19435,18858,6329,17860,820,28918,17004,15667,4104,12424,4625,23421,9411,23720,16194,4870,27558,21074,290,27012,5065,28395,7915,4928,13392,9528,18093,29795,4479,6937,25184,25162,26306,29007,23664,22627,12679,28629,9087,29398,3296,16814,7148,14649,5291,20414,18771,22144,10086,7301,6755,24729,3928,20327,3262,13571,7502,6270,13450,13674,29681,5443,8762,28487,6761,20188,3452,21647,10337,2261,28488,24775,19055,20397,2174,20858,28678,18237,16083,16767,23765,20591,16448,19326,25081,28536,12287,26835,1346,21087,3085,24731,18485,22810,17710,25729,18925,3716,2963,26598,20851,26611,3169,15441,29351,29927,19623,23069,6630,8748,13932,23450,29992,27356,23442,28882,29851,21992,12003,15024,6743,626,1765,22334,18341,10840,2738,4744,20428,11839,21795,24659,22417,15805,11970,10863,23113,20774,9722,18430,7772,8261,9175,15657,2277,8088,22917,8349,8697,15683,7145,12722,15058,1131,6878,5110,3351,21340,17377,699,19695,11324,21469,315,23095,25256,26647,12253,25370,28426,25138,5488,92,24130,24146,25618,25588,14988,8125,23290,1235,28993,14684,13597,11579,22900,24600,522,6144,29727,11379,2467,2549,22064,4251,7058,22793,14682,16842,174,9306,16318,14169,18286,999,14267,10138,14044,18968,21834,4613,26796,27263,14832,5486,5510,24558,11059,13764,18883,11260,26359,5342,8207,12153,16970,21318,21576,15676,2212,22260,29565,17064,27040,25701,21,27975,10396,799,26506,4872,13473,28592,9430,12873,3917,12500,4797,1435,24266,17797,18518,27743,14215,28315,169,22155,18428,21110,25894,26387,14700,23145,19251,8688,12709,17194,22802,6985,22789,6649,11337,3438,15694,24073,24097,23473,18647,20255,2459,20379,27155,18895,23730,14673,26138,2456,6534,20687,25506,9262,3949,20740,15410,13859,560,27274,29628,543,3667,15799,25412,10432,2748,26537,19825,20777,25845,25702,7186,18217,1564,21247,28225,18123,12827,4152,15428,24109,6242,431,11920,6433,14735,11503,10734,13235,12109,30,9059,3430,11578,24198,17902,11446,9554,29064,22374,7489,10760,8217,9219,5370,12689,21384,4181,11353,22657,4459,20807,17757,20917,14670,16247,5126,15485,6086,9194,25160,24949,3287,20710,11060,6142,27695,24662,789,15723,7579,10721,26280,21079,6681,2482,16739,3034,21427,120,1800,16212,28064,6782,19394,7501,622,6992,12035,19117,3699,2809,17630,6410,25154,10127,27057,28779,5460,458,4065,4048,10410,7535,7022,16403,19875,5551,10276,20503,4089,940,6179,7157,2843,25798,1764,24821,1278,14454,9129,11244,15886,11817,22384,27834,5697,26900,15298,19247,10732,18261,1761,11591,5082,28734,27881,23602,1434,28139,10118,8334,9902,20941,15535,8910,28503,10092,25473,4654,11074,22808,439,7733,26792,27872,8532,9094,29758,28941,28054,4166,24956,7527,26942,11468,7024,25862,7121,20567,16166,22812,9880,17560,24425,7175,16466,571,17414,18986,17495,12462,12267,876,21924,14812,8610,28750,1460,14001,26100,27734,19582,11820,26675,11818,19520,3496,26283,25326,19827,18963,19053,26094,23030,25032,2878,3297,24278,12450,23493,27160,8554,10312,14424,9326,28852,18591,8651,27491,13524,29238,2440,26103,25883,26232,5824,16988,21178,16417,18785,19358,19495,1466,20297,29406,17652,27589,17846,20526,18935,16744,22004,21207,9098,22104,25158,18992,10364,15160,8622,3955,25961,7050,12472,5357,28913,11676,17494,17695,3532,28280,20272,9397,8524,23051,14891,5003,24218,8245,4254,18719,1441,3217,7451,3918,18363,8254,9296,13666,10423,27885,14394,20533,11329,3494,13272,6836,9768,13654,27129,2255,25233,10902,23759,9115,1457,154,22721,5423,1156,531,28355,27513,29408,22537,28230,12168,12857,6842,28962,1185,24652,25928,4591,14335,1193,16090,9979,22324,14797,28015,22198,21582,1659,23959,9659,24355,6072,13998,15533,5236,26708,23938,21169,20062,26635,22135,18637,22117,4474,2975,29765,27049,18296,9210,24492,18891,12403,197,9720,27126,13277,27464,275,25501,15447,27969,21742,29035,19217,9805,1437,8040,4291,13324,26527,529,7408,21179,15326,20408,5483,1793,4101,18550,506,7508,17282,8398,29737,26609,24671,9789,28203,12688,15331,3242,4932,19061,17172,2161,14660,12527,28775,2675,14219,19330,20128,8328,27354,1994,11743,27579,27715,1420,25093,24168,497,1928,12661,25372,13488,29453,6769,22242,15606,21084,6553,23241,1093,18157,12228,10483,10426,7084,1215,28456,17261,1199,27010,24571,14225,29599,19693,312,18058,25609,15363,20573,14664,13143,14366,25498,28240,14178,7644,18119,25381,16843,10247,19383,18242,13195,27402,27811,23217,25223,3136,2017,19183,9058,13529,6382,28838,11291,9773,21344,18876,19593,26773,9023,9639,17784,15862,9432,19900,3851,14643,9748,19986,18357,9798,17906,11364,15350,28075,7607,3649,10342,1949,21734,4947,5401,10356,25816,12713,18590,9030,4615,6718,6796,2924,19725,13679,21762,29394,14860,3429,25400,12982,26344,28522,4422,4755,3722,27941,4346,27623,12093,3411,8090,9704,8933,7254,3370,9451,11456,29686,23481,6341,9504,28018,23686,10267,29338,2866,24847,5054,28747,18078,17916,17192,23187,15323,6560,1049,13976,8366,20883,6220,16074,23342,19086,14863,15404,12854,21898,24552,28947,4780,19187,3151,9139,8077,4442,20817,27265,29363,7825,15556,16593,15536,13100,2071,26530,7689,24163,15453,4103,18350,13506,2922,7726,3497,27301,14805,17619,11464,9042,3093,1806,28381,29341,26377,25594,16477,21221,10674,5782,9745,15665,16214,26606,27509,24353,23050,5826,11023,22767,2885,9955,4295,18023,9952,12743,24565,12496,16824,13340,25164,5562,18107,15860,9739,18860,10781,22833,23978,19743,20413,24927,16460,5938,12234,9429,27159,14688,7992,29255,2657,25168,21943,2838,18639,13059,19252,20554,18491,28353,3736,16445,24791,7786,425,27833,24354,17500,4344,10871,9054,16648,11094,2043,26125,13610,16946,21284,4570,21288,5939,11396,12051,9035,9015,18554,22852,14139,729,20330,28383,7299,4923,12946,2402,21705,21116,5418,19585,16173,15193,11517,884,7827,29804,7621,3192,9465,16860,16901,26860,6178,23569,20266,9257,27075,16325,18170,10636,17675,23967,1686,7557,13959,16869,21015,18517,4238,4910,19038,2287,15406,19998,21415,14582,16553,17456,1678,22363,10830,14813,12994,20052,3126,15874,1351,12296,12458,6582,27120,27870,996,27776,18496,29412,9040,13708,22543,19755,11407,13892,18636,17623,14102,9392,4369,11587,16810,8503,14428,7970,12860,21265,23809,10598,16955,5899,24857,22191,29830,15179,18255,5029,1602,22811,14198,11698,8114,1666,1801,12369,16589,28625,8006,7611,7384,26960,24279,25936,29806,16931,116,6625,28936,13135,18358,24230,9816,13393,18616,18914,16328,2768,18421,20331,26607,24154,1481,133,26262,19787,15340,7262,18974,16088,27664,4472,3832,16010,28217,4279,5769,20558,23052,5784,2892,13987,11388,29178,6891,11335,3249,28654,10140,27510,18091,28479,39,12101,9494,9183,23361,2709,17977,7647,3328,15708,24085,23859,24714,6756,21550,11485,4660,9408,16264,1404,5720,22309,22574,26223,26602,3598,3780,11057,28131,27542,7459,19688,1291,12420,1901,17432,11792,11318,10765,12412,632,129,9928,10449,6525,22212,12902,13700,29918,27218,13825,6742,16336,21945,27628,23618,5593,14556,27409,9927,585,16282,6923,24050,3288,27092,10465,11127,29882,16630,16036,17808,25059,4043,25880,27321,22621,21775,9533,28110,24136,22318,25504,24582,22067,5307,20487,21504,22049,13425,3155,3905,8506,8739,23043,21005,10853,18727,2735,3488,12737,29389,21503,26820,12379,9373,19013,11861,19722,495,20336,5281,21791,5027,13911,9208,24122,515,29620,19111,16341,21768,15988,29730,22646,25396,19555,7824,24201,11321,9490,9104,500,11435,1073,6483,20716,25561,3986,565,6473,23833,21815,4188,13944,195,20552,25926,6454,20056,20047,21737,21464,19381,22449,17109,25095,16123,21266,5917,24545,29300,2810,29919,15948,4408,4050,28184,27324,19014,29239,19569,1144,4338,2061,11167,7485,5448,11986,11931,21770,26224,15725,24480,4626,20562,22063,20224,12605,15462,7821,20329,265,27725,7738,23272,8215,6340,23613,26754,6032,6481,4106,23066,1647,7837,10927,6345,25316,958,3888,5652,25994,10828,14756,29073,7657,8224,503,11548,20213,16684,22353,668,11198,2310,6580,11596,10068,22349,2860,6745,3672,26299,24277,22070,8523,22407,16197,22327,15679,12582,12126,22492,27928,6197,12814,19913,27937,2042,14233,22822,25857,2282,26483,17998,10131,8510,6058,27243,8726,25972,21512,23594,20957,7519,20937,14740,9612,20502,20316,4398,18201,23013,13305,7197,21885,19201,29227,21788,28401,3143,26619,16583,27519,873,19601,11686,22208,2637,21330,10024,20424,5653,22596,12012,20930,27832,593,5733,29821,14793,7615,20823,20546,20489,11828,19153,25333,4652,15851,26302,20760,29194,4117,19735,29909,25065,13331,14518,26809,17452,17776,14031,1350,3329,11313,4894,25964,8674,2469,10785,6609,8141,16190,976,20677,17534,15893,18760,15080,24011,16561,28961,1714,14487,1354,4397,10237,19312,29360,6088,2645,26426,4904,7233,7337,14205,438,3816,27118,13979,18065,25589,18263,9173,3958,851,16285,2834,24864,2872,23552,15563,29132,21747,17667,11577,22518,28782,14440,12453,23606,19712,29693,530,20281,684,13902,20743,14821,13296,1971,23150,15650,23336,8458,18910,3887,10921,1957,2165,2176,15227,23135,21901,21342,7908,9529,17213,8307,24681,10083,15334,10108,14284,22591,5207,22476,22978,28114,19706,18474,9427,4624,28269,24983,19868,23595,11822,12232,6321,11549,1794,25310,25107,7411,11194,18280,5605,18219,8562,19508,5038,25682,26683,28034,24881,12427,10649,5915,23877,7170,10334,11601,15901,29065,17033,17306,22922,18871,1885,10865,14417,23505,16468,3118,8694,9349,8211,9224,26096,4427,11053,8156,24661,12545,6498,14457,14372,18326,12120,3122,13536,25456,17154,2220,663,3220,1039,7184,27751,12789,11881,28846,2778,11218,20812,26325,9562,959,14967,18737,18570,13580,7395,4667,8387,23329,15720,14845,7584,29787,18348,20506,23499,17189,1908,20925,29147,11289,27526,16892,21823,8466,20549,23708,24856,6574,27370,11634,16174,11723,21724,24164,11995,12856,4192,21113,7284,25585,9374,6362,12487,7695,3025,20691,24270,26840,17428,17979,17559,12275,13532,2528,25756,15830,22045,24034,1238,659,10958,8284,5350,377,13436,22128,9624,28017,14285,9396,6062,20684,22448,27,17805,17017,18305,12594,1390,22990,2294,24975,1779,21320,14410,12683,14825,21622,27997,16241,24577,26385,12940,20724,14128,23745,25573,1811,5154,29910,12149,18837,16360,4149,7870,13970,13848,24162,19461,29441,15892,18185,19617,1176,2390,1406,15017,29749,4062,12409,20186,4589,19750,2387,5313,22160,23846,5723,5430,11652,12209,25149,6973,22516,21560,20454,29464,20163,6642,9696,29969,28800,17642,1626,18655,20629,20501,10693,26826,25325,14587,29114,26265,29155,28028,26806,25237,5472,17827,12306,9074,12302,26137,20675,6213,14496,19140,18424,7191,27748,9772,6732,5091,25346,18171,20758,25654,28384,14796,25921,15310,28597,23234,7805,28442,13198,22869,24014,29191,19960,24475,28636,22077,23713,15889,20043,27421,16545,6874,26803,15250,15275,13528,24654,17681,2984,2470,28371,7863,19554,27229,2828,10067,404,26288,26827,5685,25735,14250,10317,5659,16239,11649,13873,1843,2027,10848,9298,24959,19104,29653,13438,24882,3009,29668,9875,1927,23981,10784,8302,17089,9260,26151,29665,29306,17774,21585,12497,29759,7935,8702,20896,17881,4084,4477,29716,7713,17701,3752,18002,4636,11953,23761,12618,13342,419,3914,15672,10466,11740,17079,20003,19048,15390,10933,11222,25642,6039,10372,936,11362,19524,12247,21325,14242,3447,25962,23403,17005,18597,1920,1427,2163,27165,3959,7710,2763,28348,15995,1575,21405,4729,24032,10686,12791,15045,250,6898,15277,27477,3785,547,8703,14626,12774,23027,14971,21940,12547,9607,22462,28003,4250,17795,20960,23446,11514,29560,3926,21051,12269,29690,20661,4122,8176,2279,6784,9377,27318,10456,10898,19708,7914,745,27858,29739,15090,24606,21422,18125,19989,833,15063,26736,3347,29231,619,8862,8453,17474,1202,2166,5391,17206,7994,4641,19538,7882,25769,13743,1603,27064,3903,17044,4047,28677,13127,3538,20697,20370,23011,2552,10468,321,26829,26518,7030,20720,17421,29995,14481,12551,8778,9776,17954,15231,8653,29685,3450,6030,8113,12694,16494,16691,2365,22520,25991,10225,6045,10303,1819,23094,26701,13933,7294,29667,9147,10274,19488,22771,6419,23743,22666,17896,24518,16426,2072,19288,22697,3372,18442,5365,24470,22453,17454,75,14038,28349,16229,5106,8636,23977,13930,29245,25751,17931,12666,16322,23883,7070,2199,217,17895,2559,20477,22477,16911,23915,8249,21686,10684,20898,12074,23865,4129,243,5537,12848,23935,20690,9372,18127,11315,20597,15221,13122,13737,25583,2633,4959,26461,14101,23630,23732,13492,22282,3101,29925,10805,7128,2023,5643,3094,9127,25367,17984,16659,15949,24867,20520,4402,28127,19489,11494,21267,23489,25206,4399,123,17254,22729,19036,20756,9061,28233,24488,26168,14376,27063,20548,4664,25028,13577,11868,16949,27005,2712,9180,27000,22877,28079,14808,28601,17738,15906,22218,23245,5408,6129,29877,14278,6288,27935,8551,10420,6723,7089,27288,22892,26351,18950,10101,19732,13613,15780,13113,27852,8096,6749,7686,29781,1277,13318,24346,12920,2836,29275,13791,14792,25564,17759,2883,227,7463,23671,8948,17587,9901,11393,8322,25116,21138,455,16271,13214,13570,19499,19134,15115,4031,28236,18679,9721,28578,7138,10628,28041,11075,24523,25629,1954,14469,11487,21392,24985,25269,1462,17622,8347,15255,28875,12085,23086,20243,7775,12333,2859,6182,5226,19357,25732,6359,19903,26201,28175,11813,22261,4378,19852,17216,8369,8615,11896,27463,11825,11924,2438,16330,17068,26225,13107,167,18666,3090,7633,1053,13148,12508,4244,6422,26672,23079,24906,5936,3510,3956,29876,13332,17098,25897,10616,26732,1842,27641,13411,12196,29321,6105,13641,4717,19828,11542,15366,673,2943,26572,1695,12879,29008,4771,18036,6914,20614,10416,22170,3311,10235,24401,16948,11631,14409,6407,17731,6531,28268,7152,16245,4681,27077,17707,3314,27810,26409,18420,20449,15294,10994,16226,5439,25330,5869,3979,24624,6805,29446,13543,13664,28180,23706,11390,237,14849,19442,1430,18559,4275,5197,21000,8123,19152,4884,1490,542,9264,6896,10621,14230,2053,8541,4706,18805,28103,12147,24131,7865,4754,15847,10412,26723,1652,11798,12308,23855,3042,14046,11644,230,14515,19353,29281,19663,27050,2070,11269,19471,14270,12353,2457,29697,21980,16457,15116,6266,27276,23281,23238,27773,14907,25807,20510,5014,20932,23991,20113,6080,5237,15198,777,12851,23939,22460,3274,27774,28102,17343,28609,19434,27866,20621,1260,7000,9000,502,18396,2000,1091,4590,2923,23458,15021,13152,19544,15348,26936,19087,13585,3178,26742,24874,5190,21790,26753,4352,25698,16404,23811,22326,26873,25276,1112,12448,17049,17698,13990,7494,15972,24516,7942,611,5616,25958,27102,2660,6427,14523,10680,3795,16582,23739,7168,21096,5319,13876,20764,14958,6069,28969,12350,29251,1579,4605,2044,15418,24481,24896,25946,19408,25328,10527,26335,3290,25875,20169,15500,3612,10096,24332,14429,19109,28441,38,21546,23996,26924,1504,12143,27978,17742,6981,10027,18318,19958,16957,3181,14546,13281,6915,4578,6963,28177,1879,1111,9138,14156,13625,28635,10653,4006,21102,26812,28167,17348,11552,8985,6189,16400,4871,27168,8313,11209,5903,1918,23776,3366,16097,19686,8732,7605,15416,16089,21214,18728,18239,4862,12316,6083,1256,22276,9082,22149,20939,8644,3439,14471,5680,7702,15253,19189,27823,25639,12589,24580,13972,13521,966,14561,16795,21201,9227,20000,17201,10376,17976,24328,23231,4430,25760,12672,25496,13827,6013,14120,12512,5346,27606,21014,478,15378,3129,983,16225,15680,27926,11819,28817,18495,26275,24801,11287,19536,621,28740,28901,26113,21930,8701,15661,16614,18203,14745,13454,25201,5717,13689,20280,29303,18403,28111,21798,8202,3664,932,7356,12108,7799,13794,15461,1788,18179,10757,17252,18434,14117,11385,286,12061,26921,23714,26231,18116,28693,20584,24842,12426,8751,23709,19518,14911,27080,18705,19481,4038,6154,18765,10972,16663,29564,14727,28763,29849,3172,25854,13936,5930,17132,25678,19360,9729,5941,90,4224,3995,17467,23160,9167,5279,24440,22142,20450,7015,9100,9375,5871,9559,12447,20480,12578,21375,3368,29905,27883,17934,26859,6876,15691,19694,28803,2132,8326,24507,18759,6787,26058,12055,23265,21439,9769,15028,24261,21893,910,4752,26967,24974,29953,26505,2654,2544,21461,19905,15429,8569,19387,29477,12719,9552,6823,27312,10979,29200,24394,16125,25030,23402,26198,29658,28207,27934,9788,23453,5044,6641,1009,24222,6592,23792,7791,24707,342,18165,3236,11292,11168,22628,28126,482,18787,28480,788,3662,5649,9323,5240,21586,7441,26434,3932,23777,20741,19081,4940,28738,13531,5072,7536,1572,29976,26689,9783,20685,10895,17599,25739,24288,24503,9982,16616,12567,11029,26397,21876,15490,29438,27967,5765,5532,11707,27054,26443,22555,18693,8519,16934,14921,16979,12869,4665,2184,19527,22963,17936,15876,11003,27871,4943,472,15763,5960,644,23681,26705,17115,13467,12566,28156,6048,29923,5657,29579,21862,23572,24076,10369,19400,47,20233,3209,29342,19249,4893,28009,1114,16707,10287,18665,16929,12717,4179,16806,3464,2555,11294,10167,19867,26776,26227,10557,3985,16486,20006,19095,24132,26966,11147,22538,2050,1219,6439,24689,29192,9109,25056,8416,8971,17953,23141,13688,29443,3056,19576,104,23727,24766,15480,879,7517,23271,5978,24912,17409,4183,15372,20799,15040,1326,18507,18383,1008,3631,7351,21626,1784,2116,9915,22777,17527,29960,17095,27925,19137,9282,2914,7309,24115,16923,6254,21656,23678,18122,5355,3070,18282,3963,11911,25696,12471,24555,1035,7382,9510,21404,11247,12656,27113,7969,14681,26117,5516,6005,8870,12830,24386,10234,16294,19179,21103,28048,7279,27839,29328,23393,25776,4750,14248,14176,23897,19910,25505,16658,11788,2128,13021,9404,11340,2086,21853,5522,4516,15300,22736,20175,11580,11232,1973,12478,26545,2077,28396,3677,11979,4413,21254,2474,14140,29457,24631,22728,14040,27230,15686,6558,17781,28910,13621,10954,28564,26818,17997,7049,23987,6231,20365,28620,7115,12046,24746,19166,239,28497,14010,11424,24559,13747,16129,28728,6588,18117,6104,20934,5157,10012,17983,7716,3930,24082,2183,6601,28606,24567,16178,14173,21185,26445,22932,14955,24719,22907,24548,14364,29962,14624,13808,29857,22292,12329,26363,20075,26600,11401,26169,9447,2066,4440,21109,18932,20218,1676,1369,19606,3310,21028,10197,17935,26341,3327,6917,8981,19761,12354,3684,19737,3080,19291,28940,7912,3650,4938,26486,14307,14753,26167,6660,25200,23624,7780,13494,23335,5173,28477,7149,21170,28453,361,29472,26143,18426,12347,9212,6763,18677,8657,24768,13424,15412,24542,2882,21963,18016,16223,4881,26007,25935,28182,26085,16995,2888,11426,2376,3114,17706,16607,29375,25703,2683,10917,17323,22587,26123,21860,26108,15658,1132,27117,2647,7078,16768,15067,20969,12881,22103,1292,19396,13373,27411,29252,16915,4218,796,9849,20662,29869,20669,620,7851,21476,23940,26465,10778,14345,13988,22529,1748,15748,2603,3842,7173,12004,8239,29694,10307,1103,11655,3630,1057,15842,11736,4805,13770,8404,22525,3357,12182,23183,12067,2629,20142,22293,7948,26290,16160,2719,479,15960,29188,9045,2796,7857,12692,2250,27216,12184,19850,27824,22868,20538,3559,18138,7096,8485,24621,29901,20514,4836,20761,8107,10319,1701,846,26583,11490,25989,27473,22119,11093,26758,15673,8237,15278,10117,10976,25552,18192,21602,11100,6919,20873,28511,8868,8758,24282,15517,2852,3602,21399,23955,19320,1605,7694,15012,20961,5416,24893,13698,8787,16788,25766,6872,23895,12712,2944,21646,21245,21452,25324,3015,18744,895,5965,12957,10463,13642,7354,12355,19205,19783,10685,20971,17365,16571,87,5902,7693,5232,27964,26593,18105,6790,20279,467,3789,24717,8060,26276,11960,26649,9541,10526,14087,26376,24614,21707,12701,15189,6757,19602,5010,18465,22693,5839,22101,11978,6651,29462,7414,18178,12281,7663,8722,3320,5625,8578,3515,18051,14943,10345,27014,20782,607,24865,4692,10864,3369,25365,22633,18927,12871,25353,4856,26523,4519,4318,5288,28091,21445,12524,5280,14641,23033,16084,15784,3029,7445,28987,27708,17533,27176,22928,24648,24364,28051,24062,4334,26567,17053,13713,21804,23836,12048,9890,110,25402,10797,45,25832,19926,10102,15121,12324,24647,5908,13493,11138,21693,28730,2728,9500,20683,20265,27404,215,2005,5467,27591,5093,16796,19609,12318,26925,26528,15656,4153,17431,24047,20944,6794,3539,13000,21538,10224,16578,10809,463,28220,13134,6844,400,26097,14751,27222,26846,23294,12762,16745,17801,12978,21400,3847,9205,29202,13579,10411,2214,25520,24639,1173,15127,16982,27394,10219,12215,10900,14106,16371,21688,20405,14526,6961,15302,22283,14439,15837,10678,13417,6289,21741,18429,21309,25388,8212,21772,1233,23783,17712,8628,23248,19539,1179,22254,29184,7321,16082,15581,10286,17354,17782,29753,27550,6859,901,10272,11706,5541,18706,2136,1649,14687,28617,17410,3661,16612,25008,27084,19894,9708,24445,25670,9016,11322,12799,21690,2444,24997,23675,27918,11815,23108,12568,20468,21522,20107,26592,14357,20350,13369,7029,8716,2243,4765,28400,23587,10641,17257,29347,16673,24532,3915,16358,15091,10030,6143,24751,27408,28613,26783,23102,15523,2248,22997,5557,29432,4710,5231,15541,22294,16441,17375,6890,3601,22901,17576,15171,21704,20841,24674,6863,29353,59,7875,21385,6041,24248,7304,18199,24907,21917,24054,5085,10744,26540,26693,29153,19892,22614,14786,28692,12638,7034,3535,12904,16276,1773,2476,3732,9582,5188,14236,10504,15630,21664,5656,29364,4099,8962,5209,4983,12601,1396,16503,15053,22977,27672,29090,5529,7767,28603,1400,15314,29138,22582,4450,7859,4308,23701,21482,29863,1422,2662,3994,7838,15894,18260,1807,1883,737,7731,23756,2593,4929,3655,11243,4294,20604,9814,2739,11976,3174,3014,2911,28569,27415,8105,11541,17994,12441,5587,1640,5033,20742,16027,24255,16337,21909,29445,22805,27360,5322,28414,27383,27331,25084,3396,20409,22800,29100,16070,21017,27136,29600,5706,15402,19796,798,16099,9626,12114,6698,2303,3055,17386,2831,21140,9492,9031,18556,5971,4630,253,24971,16939,9056,9470,23062,11919,14699,11283,29337,23449,21543,26563,18311,16608,28179,9312,2562,24960,3977,1862,8687,1787,22875,9855,28547,23684,18448,6418,23763,3075,8491,19168,25722,24603,2398,13016,14455,27071,29626,26813,11853,6471,18934,22987,7856,22643,27931,9108,8179,27192,18365,20566,23554,27693,20609,24911,25252,295,15420,12539,5201,20063,16004,4927,25291,9378,23014,20416,17962,159,29555,2425,6695,26102,24338,14425,18155,10255,2966,5324,18032,15589,9195,7692,17566,23411,23879,10004,19457,7650,24664,10048,13323,19568,19122,4110,8725,4834,15807,12966,27100,8400,4019,7903,9763,22915,17794,28833,20442,10833,16449,7496,1255,8833,28671,7416,5783,7358,27669,21813,13844,20387,552,10881,60,18273,22914,25080,20246,23738,14304,9435,27093,7424,20395,28291,15831,5641,15760,16562,26568,29107,27971,26348,7453,5823,14132,2012,24485,24887,24904,9887,6586,20975,63,13153,1777,24522,29262,17660,1043,19161,6765,16135,12087,16278,11261,6776,18605,1978,6702,7913,24456,21431,10176,4975,9477,27977,14703,566,835,7349,27573,904,3921,10326,1095,29624,17963,4136,10965,28714,6353,16270,5897,15867,10743,21134,25587,27355,29772,28787,878,27815,8299,11519,17490,6309,11912,25847,23282,19618,12138,10810,10548,4315,29232,13810,4775,18500,14149,22473,5703,26882,8035,15438,15495,22942,9249,14319,28380,14990,10820,29688,2701,3453,19934,29094,6733,6657,9997,28087,7534,778,1135,26411,1716,4736,9209,23807,2915,23868,26392,15605,29754,19826,17858,27380,25808,10053,11246,27901,3307,24196,16528,9322,13445,21595,14110,19978,12392,17344,2929,16962,26546,8433,1706,16015,26825,7924,16481,20633,15169,8469,20174,26261,7291,3416,10226,5284,19791,800,8802,16848,8087,12255,25707,27792,11797,26930,7223,1804,25537,6522,18815,28437,4395,7634,22124,6109,10531,11031,21527,23479,27831,13397,28430,24317,5836,6993,27796,7123,26747,6190,17349,24231,15502,19846,21508,1094,12949,2752,12348,10893,17322,2105,28746,11063,18754,26993,6577,22713,27991,1897,12720,21406,3939,22071,19954,18879,6008,57,24323,2945,2181,10061,308,9934,16436,25147,111,10634,18946,20353,17427,11518,4058,2575,24859,22512,27714,24653,25602,15795,2034,17103,29131,22785,16766,26074,7953,11186,4956,16613,6726,5912,15136,15287,8464,28968,13568,5198,12009,14202,18953,9735,4546,11312,6380,367,25750,27399,16711,12876,7939,3315,11849,21143,28990,29148,26548,6307,19447,23881,11242,2521,10642,21093,2628,12246,11538,18223,12955,765,3706,20262,29677,21256,11169,1719,29585,27914,1296,9882,2295,12388,25257,22749,18497,16832,27787,650,17703,16627,11810,2845,14249,5246,2234,26682,20848,21818,28181,16140,4620,13983,14324,1267,15590,25543,3987,18330,11763,9599,26749,6508,23230,19019,2063,15289,3154,14537,24135,23699,8062,22866,9884,28117,22536,29952,26615,437,14524,8138,20229,1442,9116,8155,28531,12295,5848,22173,18989,18423,12809,1680,21800,6479,25860,27689,8968,14107,29149,15616,1522,4661,17878,16268,17874,20781,25895,12989,5728,25938,28679,13288,19512,23989,7255,17952,8874,13728,25749,9251,15424,12475,15347,29329,982,29504,22140,17918,1105,1815,3682,7311,7208,18764,13097,25525,13965,18310,23840,26360,25758,27167,11871,25709,28573,17196,6319,25869,28501,23749,1588,6676,12364,5375,14606,18247,6595,14047,17069,4230,260,17856,23647,8312,14944,4756,5393,27943,17724,25052,1915,22521,7577,27443,13361,17287,21606,12657,12807,9199,22009,6394,18966,4199,24976,381,375,12335,11067,22809,2450,10327,23574,29866,28204,3184,24127,21480,11951,4596,2245,4506,12797,20550,16009,17590,13804,10261,24142,4059,3462,26746,6606,1587,27344,26627,14627,22057,3159,12704,21367,24397,23831,14438,28118,2321,12032,17326,29017,26944,13722,16301,257,586,23020,6697,7335,3152,7596,10008,22671,5121,29545,26218,1318,18979,24953,2342,28806,17186,21076,22110,7218,21988,14019,17496,25687,20325,17012,20572,6728,22976,25361,10562,19738,19271,7498,1019,20872,18258,27523,4944,23698,24758,7113,22264,1148,24579,20031,8903,27418,7548,10183,20150,17596,2107,27332,25584,17949,23703,19483,8939,20943,28053,20301,855,13547,1336,24017,25489,1502,21766,22018,27828,16647,7237,29794,17982,26459,27440,27923,28622,4172,22163,29471,19047,25625,12960,19254,6668,11016,11884,12840,5952,9974,26842,8160,8850,24033,29373,5790,9379,17648,25187,11155,7413,25010,25706,79,23797,17565,18385,11830,7961,11909,6989,18776,16117,17981,9391,9710,7188,25311,25410,15459,2608,11051,15118,24743,5380,13604,26199,19760,24584,25136,22034,9313,17411,28098,20048,20238,9355,26133,6169,10738,20373,5241,15935,13124,6821,11199,28107,23802,12517,9654,2999,23114,20125,14514,19,18410,17144,17879,5982,682,27137,1892,23181,21836,242,6984,25169,25576,22761,23692,24454,5842,27624,16704,27034,12563,11660,12190,22506,3316,4131,28802,3617,29578,2540,27757,15976,19543,27898,20806,14063,17790,28012,6705,14881,16487,24862,25443,19423,2516,1129,2526,8042,29377,19149,18581,14979,9142,10147,3658,15325,11536,21589,15022,23534,3002,21186,18097,12724,23688,7562,29220,13503,9239,17636,4922,18626,17127,7439,15981,559,28655,2471,7142,11220,11178,24182,8185,4673,18751,28982,13651,1524,1178,22787,1036,3051,20251,7833,19734,18643,7741,5995,16615,8013,21098,310,8187,25495,18689,23737,8444,17804,21610,18983,25262,4289,28722,27426,20820,5764,22055,5148,9114,32,9466,22406,26786,7675,14075,19992,2864,13639,28265,19933,14482,12283,13116,3073,10484,6773,1592,28683,16507,2646,25904,177,2597,10999,3976,15968,5115,12076,17626,22904,18225,24259,4355,5437,29506,18829,13895,15186,23786,24194,8720,27108,2156,12882,28147,12844,9102,4866,18066,9314,28085,25957,12498,14135,5098,6366,24632,21808,23578,3182,26196,4051,11208,235,5333,3973,26365,11037,25054,25507,26876,11276,11829,22012,20412,28163,20493,13186,17299,6158,20746,25566,3697,22704,1287,11271,13047,3112,2427,13616,9998,23015,15345,5850,19045,4617,21760,22452,29750,16987,18538,14415,8686,20974,24934,10354,8144,4532,21891,7368,14889,9671,1328,17045,9874,2354,17235,17446,7265,540,13232,22635,22203,12038,2994,8853,27633,10648,16723,2170,483,15460,16550,13854,20439,21987,26412,3739,3162,6212,20378,18615,27779,22819,3030,16069,25015,5933,2137,21002,11937,1523,15306,15228,18011,19802,11925,7981,24157,1240,12467,25771,12205,5633,17149,13776,4582,19642,17897,3774,12174,23291,23856,13626,22924,19094,8764,25512,14275,29498,8402,19994,17236,28469,6707,871,15761,27659,5193,25727,2316,21972,1368,15843,25569,10250,10402,26009,24942,24962,12428,26358,27339,29602,26706,15989,29557,219,25676,10280,1192,3431,20783,20102,16047,8336,21283,9669,15109,11584,12,24348,24964,6277,29289,1615,29553,24290,10866,7572,15956,20250,19032,12123,15848,8728,5594,5977,21121,21219,4548,19380,11367,16681,24804,24171,3444,9946,15853,29217,17915,21108,16792,11079,11278,17334,7033,3937,10246,28784,1250,23196,2313,25491,21006,20732,8779,15624,4276,17598,16755,26680,26657,28659,1519,19404,21521,16509,24326,4335,24158,8033,4303,9817,18816,14824,12956,22322,25042,5170,3644,22674,28896,9423,16784,25966,6928,2258,24747,1463,25494,12684,3691,5382,582,15937,645,13661,29310,25713,19906,12889,16936,5953,21453,2782,5136,11033,21277,14511,12522,4452,21475,23251,25998,25354,8770,2263,21953,28675,7638,26903,7774,27615,27498,26271,18696,5384,22078,28970,16817,8286,25544,20826,29649,13476,17161,22007,4388,3575,13350,278,22762,13154,21261,22679,16701,16288,17059,16789,22245,17065,4164,29287,5976,27313,892,24263,25970,3232,1087,24079,16763,9537,19581,5637,1392,15660,22317,20342,14395,13546,21653,21637,5453,4635,7219,1075,12843,5178,3485,15086,709,20622,19835,5854,1058,9456,12389,21782,5435,20440,13108,3404,8846,3821,29160,7594,8955,16786,25975,26136,1738,12289,19895,3282,19130,28351,7028,21746,25197,11080,26702,23607,23211,16202,9547,20046,8689,27158,8124,2974,10415,13173,29269,25126,2381,18245,7938,14617,7111,26272,8080,14931,12124,13029,27652,7602,11520,4895,16912,25037,24240,15265,24462,22612,324,23036,13422,1620,17830,10353,1483,17601,22973,26156,18691,11013,3400,7986,9388,20096,1450,10233,25261,8148,8330,28362,4760,29170,1332,1444,11148,3993,11893,9245,11611,1186,15849,4007,17262,17222,28527,25142,4713,11833,27157,20800,5359,23002,5775,25356,8384,17390,16057,16729,22495,12451,17394,9815,20593,20232,24069,2242,17152,17400,11795,16480,13322,22828,25062,13880,23058,24403,19240,1887,19395,4607,8017,214,29625,15483,20021,11702,3989,5565,15191,12018,24543,6927,16815,24928,19659,14620,2734,16577,10990,7769,6667,13622,27204,9825,17516,27362,15549,23851,28570,28366,26591,8345,3087,2215,19936,22552,13838,4349,642,19414,9587,23517,6031,19372,4553,20287,29500,15451,6513,26339,1852,29067,14575,1064,19323,27148,21297,528,27479,1895,21276,25329,13553,3212,2110,3428,2583,20088,26588,12449,17556,22985,27862,29448,4524,9171,25431,14764,12357,13595,5491,9480,19503,236,23151,6731,22356,6501,26476,2740,27741,3592,12017,5395,14667,16740,17813,10114,23835,26371,20095,2447,4324,13131,24192,6650,4120,11453,4453,26963,12282,24549,6188,19839,23635,2118,23839,14508,605,12753,29864,22517,29099,15018,9014,18417,13435,12291,6500,5585,12918,5004,1900,4481,10946,6241,27876,8232,21032,23752,27124,12562,15258,13916,26902,16633,26440,12119,22040,2509,26802,14083,23115,16395,28810,12415,8054,15996,9989,23543,19440,20651,28422,1338,13041,358,20146,18562,4878,19359,19976,11185,10846,15263,25083,18141,23276,27184,16258,14791,7087,1560,767,7370,13477,17158,12492,11170,26296,19403,2952,12219,11746,7883,27303,1402,5884,16859,23902,1253,5682,5064,26044,20029,29733,16724,23277,25313,24913,7325,10623,13981,28650,4694,23679,551,22344,21716,10868,28187,22044,11,23922,7583,10658,27423,12454,1213,12678,18817,3483,11248,11761,17589,18080,4177,12732,22739,27287,27806,3214,1221,11310,13730,9780,29317,5572,23045,18336,17241,10349,18086,26770,7810,9247,21748,27189,17766,18708,2434,21380,17853,23164,20172,9441,14720,27932,6977,26554,2571,13576,14209,10956,29903,11288,27475,4069,10282,19537,981,2670,11619,24676,26517,22971,26022,17330,5932,21615,15487,29186,23328,5651,27062,23244,15048,16594,9565,15328,1391,6157,22299,23358,7623,27619,28083,8733,6820,27897,11327,1069,16592,20608,16610,29320,14752,15027,678,25664,12373,20867,21771,27175,24919,21674,11529,309,8273,7610,27127,6623,22398,21091,4821,17141,22649,523,341,24344,19071,26550,10949,7305,24866,4935,23598,26935,5858,22409,16590,23998,414,16841,7927,29807,17852,3491,10485,15814,16321,8729,28325,15195,6526,17482,26764,1151,4380,29734,9514,17779,12611,28959,28621,26370,27840,4914,21907,9421,3111,6350,2164,13694,22369,5257,17499,1493,5221,23750,3849,18493,24745,12586,28116,21993,22898,29136,15554,29636,15724,20865,28908,3876,19676,16516,27151,19799,28981,19030,21654,12664,5452,26880,8079,26565,8930,22192,25218,26418,6122,28649,10517,5088,6851,13771,17312,29369,13184,22306,3470,12044,21676,9226,13405,11755,415,11826,18641,6754,27698,6899,20763,20345,24119,3861,3744,25272,9434,19050,16232,8570,5729,20968,22266,23317,14884,16363,9549,23012,29747,7889,10273,19798,6442,6832,8067,3038,12245,25865,26090,24869,15756,11302,8331,8420,22036,19807,7613,20857,2813,11779,3728,13191,21224,20897,23687,22504,12309,22604,15034,18730,11085,3573,17006,13633,24627,4809,7880,15145,14354,29450,941,5922,19534,26328,6855,20856,11803,7511,23676,8681,843,2037,11987,20963,27217,9924,2051,28183,9345,17332,15759,9310,28632,24103,5681,3504,17267,16772,11346,22590,18329,7006,27705,18660,28871,7668,3237,21390,10737,13919,19571,24699,27518,28243,22364,14264,20488,25762,12883,14755,25098,10761,21880,24209,13761,17815,28150,17220,15520,22874,23081,28605,26807,17286,17839,5886,28964,29615,13043,27015,3758,6119,23769,19575,19829,22859,4850,11357,29700,3201,16918,3455,17279,9476,22310,5881,8776,6868,6042,4461,7114,15608,13868,8049,22240,28760,27234,25379,22652,22707,25742,3922,13779,22684,7896,26559,21187,23303,20358,29538,7275,27221,5626,2352,11733,26981,10414,29586,17768,10328,20359,21583,10060,21613,27966,29904,15924,5446,11991,23372,4116,15084,22315,29895,25915,16922,17967,13803,8654,15603,4813,11949,4974,16286,7165,11492,26220,29499,8535,28303,22533,20371,27011,19724,10558,18322,15701,2218,16568,11473,23405,2378,29878,14190,5261,14830,21660,16019,1385,21900,9903,9380,9564,15815,15916,28618,15435,25385,10606,5020,12674,25902,14506,14882,19767,8761,238,3624,9446,24295,21428,6938,3079,14645,20164,24241,27277,4488,6236,25274,16248,25133,26349,14527,4228,10505,19797,4409,25952,2754,12513,9680,14375,28364,256,6892,2138,21731,7385,16668,22589,26824,20374,22513,28682,4747,12320,18486,9350,22278,21805,22960,16870,29709,4731,15534,9829,652,6645,17258,3663,21666,21838,27202,16370,10085,21575,26533,697,10754,19874,24106,26937,17106,5495,20051,3359,5527,18813,4541,14251,25907,9126,4286,3865,29536,22794,23764,2240,18624,11657,13415,2794,12937,20206,29711,24770,29284,4740,28744,22088,25641,4376,26165,1595,14340,6347,15161,24918,4738,16349,25430,22946,25694,28466,3346,4307,23356,27527,11901,17197,6337,21573,13027,18404,1623,7531,28389,2004,24969,18548,6372,19328,521,22145,14802,1042,20776,24319,23016,20627,17739,1581,20430,18736,4560,5155,25215,17051,9244,11363,25598,28638,29179,7045,29154,4163,26793,21655,14351,19060,26648,22508,7888,7696,25119,23171,5773,11770,14773,10391,26049,20518,15626,7589,7217,761,4542,23153,9576,16945,25748,27567,3717,17733,2363,16279,4651,29827,11932,14829,9449,1967,26918,618,26515,26330,15288,22459,19175,5994,8907,11417,21827,28577,20122,17130,11525,28716,1810,10908,13032,1312,23299,3227,6313,6430,27620,14900,366,18422,16560,21305,11409,19942,3026,8595,28869,2996,19334,19621,13404,12653,23122,13762,6331,5910,27179,22396,15173,6465,28164,22651,10262,29593,27802,9718,13567,17437,23180,22433,28078,985,6193,5840,7353,2861,3338,3243,7143,12436,24271,4719,16231,14888,8459,5100,11703,28934,13167,10580,1939,27438,29831,12587,10377,23308,14138,27643,5018,15154,19633,20472,20362,4687,14418,4236,18938,16697,7989,16410,3786,3890,8304,2006,9845,18204,28108,22575,21581,21075,4982,14355,15768,8831,9185,16085,29802,14066,29779,17464,3456,9609,8425,14147,11836,18912,4602,9777,1692,29799,15612,20753,25067,10018,3747,27364,3934,12339,6010,9364,3010,3076,3067,82,4842,29949,25487,420,26301,28065,3137,2547,26784,8393,10611,13150,12180,21058,20836,3607,2627,4223,3231,23755,18060,12378,19684,10715,12341,18595,7932,10566,24619,19402,162,20905,20665,20296,19632,24824,27869,4096,4988,26642,5669,23195,12315,12133,8676,21596,5777,9293,10188,15566,29622,13300,3269,11860,10981,21114,23391,24695,26410,28751,17951,17248,15137,5780,28377,10733,24318,7995,11505,14188,24703,16801,22072,3091,10787,1814,13767,863,12080,26322,29420,5141,2699,313,3267,18803,14142,2840,5986,13653,25644,24232,11874,18240,29850,141,28878,1337,20227,11735,16816,6932,13617,11674,7959,20078,29549,14690,6978,24147,18763,786,23439,26158,23725,29815,11598,21056,24526,8826,25464,5293,15170,29151,14980,1432,7216,2490,18288,13583,19340,25803,10592,18168,26264,7467,3925,21034,20738,25082,20725,22456,29036,18614,6982,7773,2357,8827,18729,25315,13973,16450,15190,9444,7375,10793,3095,117,4960,23810,16834,6671,23385,24184,26661,6614,22168,9553,19458,15011,20535,17270,16162,9484,20203,1055,2268,9693,20524,4586,3794,10991,6998,6020,25800,17277,14297,24133,12407,13649,23659,1147,18578,163,28472,12303,24515,24657,23249,7246,8817,21012,1542,29808,13669,18331,9637,13727,182,18061,1149,10703,2383,18494,29974,15066,8266,13555,5199,17382,8854,24213,9248,5373,4544,26182,28387,4234,17120,3251,17311,12073,27401,8225,21642,10192,18565,2391,28534,5613,22205,298,21701,24811,27677,25485,18076,6106,20453,17111,28818,9905,13787,8392,13071,22845,4887,14359,5213,512,15963,8296,13228,6554,9117,16411,7054,2031,20702,10549,25619,11255,1216,6284,28523,6239,205,1127,28322,23704,7144,23167,27521,11969,35,21024,3503,20924,21043,18851,27902,6206,11452,28996,25104,11982,7326,4559,24550,9589,6735,23495,5492,23314,26210,3834,11040,26760,25152,6126,29397,1929,9936,22378,3833,17811,3105,14374,8869,28030,25791,71,24720,28687,16063,14913,488,15927,7057,28928,4899,23076,18353,11183,12238,23558,19132,12939,20529,272,26837,11941,17796,13963,15757,24910,6652,23117,18956,4360,25027,9365,7560,2196,18460,21044,6416,9661,28125,2594,8659,10037,7828,17933,9230,27024,19845,21200,2822,8484,24304,18649,6710,20822,28097,2844,20476,13055,16600,26419,12423,2940,8960,16599,11647,14296,15820,17031,27345,1786,12846,13760,17232,15382,29526,5675,5972,12236,27982,29354,17866,2985,4898,21732,22126,11679,29110,27073,16041,16006,22689,25986,13627,27561,4281,19367,4795,6875,2200,25744,4915,9795,28043,27405,19612,17880,17272,28634,15035,8022,5465,13881,18712,4074,11899,12325,20143,24399,10001,12276,22790,29164,22217,25191,19770,29595,9674,9452,13006,7964,10105,23252,21107,1007,29576,473,12662,1776,26645,12239,13612,12510,18018,16164,14155,13845,13479,16634,8873,14675,13994,4187,18721,23006,5672,14855,21231,3107,24064,6192,6817,2013,25422,16619,17988,7412,24502,17188,20775,19843,7929,6974,12812,1944,23478,68,23582,24247,13755,5316,7794,2265,18270,17460,5429,29539,23138,17729,11150,20086,21070,6316,13662,25225,10171,27909,3520,11230,16107,26425,7196,3050,27976,22872,16978,11862,5900,2620,16031,14857,20131,2595,11794,20645,23680,4268,6781,5693,1712,27817,18004,15607,4514,28334,20999,16907,13003,18917,24382,19795,24276,19452,15711,21285,16850,3615,18189,14782,8768,23378,10622,25861,15050,18899,27647,15064,18967,7117,6291,11832,3558,26251,2468,3330,6811,20351,1934,13456,17338,20983,12823,15305,22535,10711,25837,24197,17861,23387,28339,25484,15349,19456,4725,7270,1750,2799,20504,10786,2033,17436,11076,3381,18746,1109,24016,16556,17476,2659,24161,20982,5440,18802,19857,3205,672,6250,3451,26246,21718,1263,17890,26596,20750,28403,27480,28320,19729,28347,16773,12054,28886,26564,13317,592,10445,25590,4580,10039,26926,5542,19993,9021,15274,2904,2370,5187,211,22632,29981,5868,17227,13316,3342,6994,12775,25606,8893,19181,18701,24419,21600,4859,22466,29533,6180,29140,4814,421,15153,27807,15967,25374,3006,13997,21173,25122,3703,2501,20060,22650,6813,26388,5204,25617,8419,454,8229,3457,9834,5169,15992,22352,224,2271,1408,26323,13413,705,14553,16572,2423,27134,28367,9083,18193,1231,9482,22373,21055,9596,21540,29589,11237,28451,26665,3385,25036,4539,26186,27650,28446,25770,22020,16942,8099,7278,5215,6296,26450,11865,19971,4869,17678,18094,4864,7302,5208,352,14768,19689,28745,5724,29077,25279,17393,13189,25327,27003,26983,18440,3395,106,20637,24923,11073,17737,11015,21196,4700,11602,5037,6026,13498,15758,11358,2721,11900,26508,5856,13522],[14580,24234,11776,8312,10963,12128,7258,14205,21527,11823,6121,7507,29462,21802,20076,9903,18055,5743,23215,5739,12024,10342,21813,4423,18764,7350,7441,23212,15269,24978,26575,9087,10208,22463,19186,10146,6837,1809,25353,13708,19292,17655,5554,8534,21489,19599,17808,626,21986,1532,2178,14960,10744,17710,3810,14086,4149,24832,15402,23851,28331,27030,13064,18054,25826,360,13363,7961,24533,6792,26928,13772,4421,14927,27058,10220,25229,15221,28908,27614,2339,19825,5339,28353,15809,17522,20945,25722,20499,5294,20853,18746,3960,18027,16354,12839,29205,9262,2069,8968,28299,1874,18842,10699,5288,734,27679,20654,18843,27968,16735,7592,15988,18735,6915,15967,19620,23836,4251,19280,6032,18632,7763,15342,7505,10473,2684,28275,3206,2733,8532,10188,10637,15143,4823,27373,5633,722,10801,223,23400,12868,6475,21407,15291,12913,26315,4294,11396,12949,6157,7067,11777,17350,4286,28555,7143,16878,12483,25669,1430,16460,4956,10175,17061,8707,26624,28119,7390,8270,21640,27067,27117,8991,22385,26013,22749,16287,28037,29541,4963,17876,8895,21976,11479,29629,5926,3459,8746,9454,1284,11911,28962,20354,13922,20182,13727,18579,3354,9378,527,3092,23450,16124,1215,2760,868,1142,15901,24401,9663,26540,11897,24896,27282,3058,24291,25297,29129,17464,4043,23311,17467,24382,11081,5373,13176,9866,18025,20520,2696,2601,11620,9046,11047,24563,22524,6315,23357,2742,10478,8846,9352,3698,12600,21923,12695,24336,11617,9430,21100,24940,21683,15530,19017,20983,13848,26715,10041,24948,12356,19663,11403,27099,8736,11622,8504,2482,14715,13983,12877,25862,21425,9285,27378,19541,24046,28661,11824,18933,25410,25737,28234,19480,24549,17410,3330,13735,25431,14533,28667,3174,26178,6911,19838,26760,16748,19755,14062,19425,9489,15441,13062,5269,24469,9090,22686,23766,13048,21193,27100,29338,29380,28863,25825,29903,29970,17050,16945,2795,16328,20519,28858,6000,8680,6799,21336,8555,3659,29213,23747,29161,25139,26924,25209,645,25365,22915,21920,19040,25095,29343,15814,16631,28746,15671,18625,3088,12258,23468,7579,8319,2268,6786,17559,24607,26578,5767,17236,26588,10409,16262,693,4168,20931,5074,28892,3132,25480,15918,16210,21242,28120,16418,10517,5341,11141,4494,27266,15124,17865,28180,22945,11987,372,7448,24450,25521,2136,25089,28396,4204,21992,11251,4758,22892,21463,10493,17057,3008,17023,14682,26203,20228,15289,10716,8978,3778,29427,5112,22614,18141,15798,18326,637,27366,23083,20184,9740,471,22468,20382,15509,18350,4832,28288,23391,14236,7035,874,6481,25612,7423,20247,160,26216,23110,13218,18701,22972,26192,5862,619,13635,14845,15889,10415,28819,25154,9326,6962,29495,19107,19068,3716,25635,27157,411,9710,22102,12351,23080,9460,27605,8366,21747,8834,18238,6946,14863,16517,12714,1334,22577,26498,11362,28770,15849,18750,22001,7847,13297,15079,21415,8657,29788,4833,4754,20559,18857,11686,970,4444,14671,10163,6676,23831,6024,26842,12119,26350,2238,7222,22735,24042,29804,24335,2161,28715,5650,14712,19640,14615,17922,6675,1346,17503,16498,12006,3041,2067,8674,6389,10105,17549,2078,23065,12421,3812,9958,22539,27356,4775,3990,21904,16736,20244,28225,12474,9450,24186,2259,531,26425,16680,2893,13126,22808,27234,18811,15271,23399,26804,18516,14595,23438,4152,12623,23634,2972,27218,13622,16942,27483,27882,12429,27171,15261,16045,19300,25325,24721,25955,25783,4472,9584,290,10875,16948,13084,27184,6329,7547,28284,12396,28372,9734,14397,9647,22055,14509,6189,5091,8408,9828,4008,15879,15067,14175,10495,15818,14824,2938,16484,26797,14075,29634,6999,26031,8265,24970,24509,15257,5378,21837,21105,13187,28344,13617,10256,6902,26438,16687,20884,24451,12145,25971,3023,27256,730,9778,13628,24883,28326,8941,5499,28982,11502,15104,15524,1725,29756,24653,2432,19188,29433,17538,13184,2251,1965,26163,10625,357,19034,9552,1545,20554,20598,4361,1808,325,8273,27727,3929,12190,22162,5338,19192,7465,14308,10917,11861,3175,10876,13141,1571,2959,22086,17344,10576,10272,8913,29243,16310,20063,2318,28618,14183,29924,26818,9108,26812,9540,713,24238,8672,27622,29098,19,20588,15196,2782,6943,1010,17013,28572,4690,12168,23511,4018,13207,700,2200,10544,29369,2971,20152,27743,7560,11312,16491,22117,8579,7431,7430,23302,9035,4597,15741,5173,7396,8286,23653,2956,21156,22014,17771,29023,29976,3699,7795,38,29505,12842,10826,7314,17349,4849,16405,26697,28633,7377,18698,17966,8807,20874,11460,5738,11886,19452,29127,18664,23679,17774,29598,25411,6998,23288,26140,18039,17677,19233,17324,26109,19012,768,10497,14095,16934,12131,23815,21607,16654,6041,10394,5561,24016,451,13938,18342,11159,21712,1309,1690,17318,7415,11202,12815,1103,23916,14007,27515,14265,26361,22403,10686,1750,12443,17886,4836,19582,9060,27065,15769,5802,17331,19065,21367,22666,7022,623,8350,23088,26790,15968,13011,18287,948,3986,2976,18069,26483,4724,29037,4643,28911,18679,6774,18182,22431,23419,29678,269,22236,14041,5147,3727,14518,18591,15800,19236,1379,19699,14000,24753,17198,29707,6355,25843,29255,14548,14510,12925,27846,27039,29238,14758,17713,16116,13904,4456,29120,609,18861,18281,2935,10217,13759,3009,19223,24194,27197,7949,18121,16514,27566,27546,14100,18476,4056,12856,15686,9951,14739,29090,23751,9005,14512,15472,17316,3415,12248,20150,12183,8765,29913,13139,7188,23129,24358,4307,18474,22053,29564,12253,8345,26967,29403,21305,17288,27610,21936,22554,22653,13906,21861,7743,11657,17681,7903,1151,9452,2225,16838,15601,12838,2336,5213,10232,21420,9220,3317,7398,15179,12550,11727,2180,18761,11318,19479,24287,4566,11873,26174,125,26623,29349,3801,312,22255,19567,5700,919,24338,7736,20642,15285,15768,26688,12688,6760,12231,17847,10912,8060,2649,26168,6297,6087,5877,12939,25257,14057,9119,6761,22027,18417,22946,23991,21268,16070,18981,17882,3344,18990,24281,7162,26083,14546,21429,27016,20782,18291,10122,24785,4630,10548,16334,17539,26305,20426,17035,22113,26245,3723,5437,588,24937,18666,1094,28263,28889,9786,25678,2357,26318,1556,9680,22858,29863,21830,27500,22947,20965,24548,25227,29928,23040,3728,6443,7523,21000,12772,10063,4658,3401,15880,4511,17528,12514,12367,9655,27418,12147,6820,6484,24531,4816,7948,22984,10202,9509,1783,20593,8692,22112,25478,27659,26264,8916,9066,18084,5189,29145,13996,21257,20349,993,10601,18556,29643,24872,24790,5030,7612,17712,17814,5473,10949,26653,18812,6166,10378,12646,26664,5929,17660,14173,24050,4287,2349,26560,27118,27560,1371,12191,29699,23590,28945,27408,20886,14835,4030,21892,20691,22518,1746,22838,12076,26625,14239,7028,8151,22813,4545,19959,20768,20085,21299,6280,9292,9027,10652,15201,7913,18598,880,26523,20852,28158,36,12955,15603,26713,7173,20213,17665,17941,15817,15215,21045,10616,6183,16119,25388,12989,3308,24547,16068,20721,2964,18845,1259,5617,4608,28397,12642,490,28104,15650,11960,20107,29745,13155,21352,6247,28261,25830,20142,26128,19607,10267,28450,15191,12622,12330,3012,12988,19816,20575,2571,22841,27722,24635,9407,14554,25368,24317,23898,8477,17347,2278,10191,29662,2273,29012,16000,5777,12691,1005,20138,16611,29664,8639,8032,1562,10952,7112,11058,2930,5336,16488,7288,4394,5315,17259,11491,14686,8118,28301,25096,17619,13024,20363,13276,18059,2774,1239,27025,9251,12346,21963,7030,12942,1769,4798,21499,27015,9293,9064,7955,3605,12614,12860,23954,10036,13781,11827,28547,6495,2713,4851,3785,18637,13671,6383,6787,7009,5093,954,19649,1504,25816,28219,23777,263,16624,11454,2462,9163,9433,25844,29667,3603,24656,937,28826,15112,13194,18753,25136,20286,19770,9875,15128,12133,13774,5106,22787,9077,27163,2195,13087,13427,11969,2187,20745,13239,23024,26844,5222,17737,27028,1447,7759,16898,3202,7057,13002,19037,18709,10026,19133,11965,8331,25532,22116,8482,24006,25020,16111,11906,18865,22566,8176,10351,11643,14898,14831,24306,7054,14069,25298,2767,25506,3149,19722,758,1081,22414,5809,1584,4002,21275,7334,18916,24898,4636,24329,22432,19357,2262,715,13008,311,15806,1274,27052,10594,12028,15662,22200,27489,10057,4464,20746,7639,26701,16315,4065,17386,18925,15193,12099,21316,2694,6319,19540,14977,18984,7493,3995,4012,26562,16636,25366,27194,3279,26418,26674,174,24021,7767,21509,22782,14938,27332,7685,29055,6092,15573,18123,28317,613,23232,29108,16800,16149,12931,9423,16401,17071,4717,19333,14650,13768,23270,17610,4369,11770,7739,2907,10043,4700,14968,4606,17018,17716,15152,23946,8089,17262,4632,4205,10858,5664,136,1408,3020,19847,22584,23029,26481,19082,865,180,12467,14485,23003,26975,21671,1592,6663,26906,23512,19643,20748,26254,10827,19013,29576,29244,25267,24561,25017,28615,16626,13455,25894,12088,8967,8806,2253,7324,280,11654,7045,10844,28833,15623,29926,2789,19349,28171,21198,29670,9395,1579,6221,24422,6776,16159,26212,4264,27720,10690,28028,18187,20370,12727,22279,28432,1048,10817,6489,21708,22328,13710,6061,16057,5813,18567,24390,22714,4037,3094,12822,7568,28380,22967,29228,17191,10065,20222,18112,3948,17613,23134,12758,17452,27092,27690,28477,16534,9893,12740,11258,6483,11108,16870,382,26125,4035,15294,11986,21081,971,7004,7240,13827,13382,17171,24751,15911,14288,24322,10121,8389,18648,627,16367,12846,17609,26851,13441,26587,17902,3420,13066,27769,26317,2749,3110,17718,25789,18551,16079,10681,25508,6913,16516,25334,24507,26353,2218,2070,12827,11277,20355,2716,11786,28725,295,7957,28853,4995,2448,25225,12451,27542,1784,7657,9585,26229,20793,20157,16348,17179,20887,10073,19414,6897,8035,8204,28501,15480,3499,27095,18251,11319,6507,12205,12142,13462,351,5122,25170,24711,27969,22664,19863,13031,11132,320,256,21168,17961,26706,13179,29663,16738,767,21327,3809,8018,2346,9301,24806,3559,13282,21003,20101,7828,2220,4596,4261,1671,10470,2989,19205,27382,29605,18979,15225,6493,10328,22155,23268,13602,6876,12778,24520,941,2781,20509,15321,29493,1640,13310,17752,21832,24005,22675,25639,586,16050,27823,18784,878,27464,3341,21896,14660,3909,11551,20456,25814,16661,8498,22952,2541,24912,15228,11983,576,11094,8610,16955,18478,9037,22090,9653,28475,25556,20672,26979,9931,12791,26088,18235,11270,18216,7780,20388,1265,14301,16513,9109,16535,19606,5201,7740,6195,9770,10390,22482,6069,475,17336,26461,2234,17443,10671,12947,13372,28761,26841,22218,13344,6047,5100,27994,10215,3458,17870,25264,19905,19788,2761,15392,21899,24394,7370,26719,4221,20632,25414,503,3167,25876,5962,22315,18747,3963,19066,14856,8818,27982,9368,18924,19024,22188,17187,6793,3706,10237,27150,6091,1667,25572,23674,5029,4791,29146,3609,26228,4092,27898,12137,7656,172,2764,2943,15439,250,29793,19265,20604,29362,1930,9003,13128,9635,2814,29565,13039,18677,18286,24831,19635,29445,16069,20095,29236,10735,22628,26922,14668,8778,29806,1460,28541,12999,13654,26150,18136,17092,11296,25811,9528,7712,12541,23843,23798,28978,20829,16018,29448,12383,5794,4996,13098,24593,27113,21646,23941,18368,16156,4107,7080,2597,11001,28297,10483,4777,9072,29724,8220,27109,29452,29652,17911,15462,6723,10165,12094,22064,3099,9921,8209,14697,5475,1996,15703,10914,22819,3328,21348,546,20200,7661,9535,8795,11825,5433,3042,13426,27684,2331,17089,5639,24111,3818,20468,11610,4900,12709,20693,25260,20452,24613,24911,9356,99,11962,15123,21443,16583,14829,16667,8572,6591,100,1514,12262,28635,1339,24884,23811,11498,23880,28756,28032,11412,13737,13317,9445,18198,24133,4638,29498,27305,25338,5806,22496,7311,6447,19591,15956,12239,12604,21643,4371,23108,19431,27223,9453,14541,20794,23572,14094,7599,27771,139,17747,3118,7870,1633,1438,22145,1407,884,12007,26533,16833,3796,22481,17067,4024,9534,20732,2605,9933,20600,7228,26799,25689,17111,1459,10079,15819,8172,9673,4424,13608,5386,27750,2939,1250,1427,10674,27413,5679,29231,6246,23259,22697,10906,12903,7798,23520,2431,22369,3264,2316,8693,10737,21178,13334,4462,26325,24921,17328,6637,14947,3886,4414,16675,17706,27629,8932,18900,22295,23415,28530,28142,5068,8634,20375,19870,24362,2305,29515,9900,12978,7119,2020,2275,12270,26011,25827,29078,19829,2105,24949,10695,1030,11708,4997,24328,14722,23584,249,13666,10556,7679,19445,17184,3394,2679,25606,22347,8548,11955,13936,15612,8014,1399,25404,1966,22111,20292,26124,6600,9549,3544,6891,1810,27651,26090,9823,29547,12848,5150,17282,6432,27495,16873,17669,17553,13679,26467,14505,5730,21588,2199,27726,20060,28236,21109,29144,28624,16244,15679,20039,26057,9720,28745,17741,28352,11920,22247,14653,16840,28148,13298,27884,14024,14721,19304,15637,25528,8061,5333,28704,19518,12087,3688,21895,5160,14777,17406,13816,23191,24150,26424,8293,4248,11365,8655,3777,18681,29700,26490,1637,14361,11963,6259,19978,24419,23716,20245,27850,1934,10365,9505,22830,8605,9651,10348,11232,3570,5251,5067,27010,5774,22839,1405,21898,14344,10278,3369,16073,6896,21779,11338,11530,17779,12607,7529,19291,25172,24621,12086,3287,10064,703,12852,10810,18825,29454,9948,26272,20009,8343,21743,16293,16576,3067,28710,19025,19871,29910,9271,24319,8166,2875,13749,25120,10151,23871,14995,19432,21167,12360,4274,7117,2660,17463,25489,22294,1290,10882,1978,12799,19573,10921,21285,14526,16686,6654,12362,5681,344,22342,3429,14558,29973,10352,21507,5715,26885,13145,19912,22244,8156,2417,24265,10595,23677,22853,23256,17201,20546,17366,10094,15192,6140,2913,16536,18337,16706,3095,1947,29113,6933,1332,19879,27938,1034,5556,28125,22989,3667,27753,1251,5293,16567,18448,11046,4981,25190,16302,29430,24828,23246,900,9302,14214,20549,21624,19011,12233,24903,9263,10632,5432,28356,27577,22324,14082,4025,28893,29331,1875,4743,12885,28431,20761,27457,26395,11836,24000,1630,29809,19945,13201,18931,28387,12864,10455,16787,16813,5949,3177,18646,26120,23658,8600,8889,22443,15958,15458,6075,12271,6768,21373,55,15354,11425,20077,658,20114,17112,28790,3303,20740,2870,4482,4079,27217,9440,14212,3742,24491,22073,10871,5683,499,13731,6537,27912,27430,4569,21839,26332,5480,10717,14559,21685,15907,11171,17433,28324,2361,28952,29102,9608,22263,6752,3529,8435,3844,12561,1544,2886,6353,15310,2553,9230,6168,18063,17928,25362,29240,16615,27442,1510,26414,18236,10466,15724,2970,10574,4341,19277,28469,16827,13940,7670,82,8158,4835,2048,18705,27623,29521,21362,5220,24612,18538,5866,11583,27166,21838,20973,2094,12572,12171,8005,2401,22099,13786,15560,19625,29119,10203,29130,8064,274,7944,14568,20233,9167,22165,26935,3229,21308,27050,2183,26980,7892,15762,11719,8378,24149,7196,6435,24669,12267,10314,20646,27977,3700,13367,11609,8586,3608,153,5810,6607,8358,8382,20530,17129,25006,16231,6649,2080,25499,24116,15260,19681,14761,26234,12528,1678,12984,13619,6574,6599,15105,8359,16055,18748,25864,25860,27386,15959,29735,22030,205,14184,27074,28467,7858,4505,14511,29658,27672,24247,19956,29871,18277,12647,10712,28005,24169,3107,18097,11922,16190,9918,15437,1776,10835,9115,22212,26442,9159,18674,6249,14452,23918,18345,8472,18233,27975,5161,29019,5425,29117,23864,1876,10205,6459,20411,21332,10410,585,5186,12222,12512,19435,13146,25605,2160,2356,19076,9063,28951,2546,15870,28128,24400,8033,11556,25262,18103,27794,4561,7524,17704,7844,12596,20488,1413,18946,16023,5701,706,26704,24028,5232,29162,22721,25374,29472,23789,25188,19403,3249,8769,8716,7363,9172,14752,15413,19549,29040,14963,11604,18704,2036,25654,29373,7772,18114,2303,26153,238,23174,3383,5750,1622,18777,23635,10941,28191,18082,14107,8781,5766,5304,13743,1117,13464,10000,11245,22252,14382,15046,12661,8012,4587,5951,22392,28972,27320,18682,5028,23285,18661,11814,4144,14907,4985,27309,27564,385,26756,26107,18418,12952,6397,10534,23731,8784,22733,11221,25954,18839,8180,21916,25059,17618,19005,17576,25717,15558,2167,17173,23013,16289,19283,17007,29182,25998,12951,24179,12938,22545,8084,27427,12435,20749,18773,19940,13473,22644,16721,6368,24724,10490,1587,12299,13947,18513,14624,21991,20585,1029,28701,5620,26014,26223,23672,2061,19844,12798,15912,104,12192,21450,11557,20429,19810,4781,18600,14685,791,25594,19026,20521,1941,25990,29464,28,1184,7349,13534,27289,26814,24720,22863,28495,12589,9480,22048,7455,19317,2338,4715,16026,27248,13173,29801,19264,20409,5260,20921,11143,15681,2846,27904,12072,5414,8486,27567,1981,26056,19417,24104,4970,16030,22186,8362,22635,10246,751,6394,24039,20111,20252,9431,7025,2362,27752,1283,27400,5116,9364,23927,5511,17947,3862,4281,3993,8278,22966,7834,21289,1162,17447,13071,21050,15157,13158,7694,29140,685,27710,19282,5346,27499,17568,22559,7868,10582,27814,13862,29341,13513,26745,28186,16798,20771,19594,24012,3645,17497,10044,12577,6701,27654,8282,20920,29751,15708,13566,14169,13575,13869,19198,22625,13582,29153,24652,19813,26903,6349,12699,15207,21329,19153,17578,5726,13769,1658,27873,7664,6925,26607,13368,7023,20999,10607,22020,13361,17460,7565,13674,12651,1502,10340,2980,28824,25735,23363,6558,24997,1691,387,28471,1686,21269,15110,23459,8939,12765,9783,10569,17177,13707,23318,12655,14519,18380,22864,20442,2641,16366,21889,7732,15020,6064,29072,8428,8210,27294,11954,3061,4266,27931,16406,11857,28865,4249,844,21011,659,13395,24849,28804,9638,27568,1225,5217,26934,6049,1031,16801,7623,20376,20811,12419,17760,18014,26340,4534,20879,8261,3955,17329,26068,8422,7084,21207,16298,11197,128,7758,27076,3004,19911,29382,7586,15058,26609,29432,26312,11061,6926,7741,5434,24498,1853,688,15981,13265,26227,11499,15411,14888,19585,20948,2368,13560,27880,19750,20784,22791,8805,9639,22168,6377,23764,16359,756,2184,29672,11648,3613,29630,15672,24972,16544,6615,4426,47,13865,16969,19211,27972,22587,5391,29314,6051,21758,21038,29997,2763,10169,4231,8203,16416,22332,1294,8497,9174,23087,10358,23721,23659,28335,21360,28686,6919,23401,15281,20096,18311,29635,20257,7747,10006,10433,16448,23299,20221,7086,22240,6056,2589,12836,10519,16927,15056,1453,28020,28463,13224,1464,2773,18083,15245,4225,27319,29333,12737,27269,20754,5955,17090,25627,24245,24302,21831,19492,2350,8717,5793,10486,3561,13017,6335,22923,21266,13588,12862,28693,1374,14074,19539,20066,22687,25540,16842,17293,5552,29449,27155,17914,9268,22905,5329,24369,1855,18074,24615,25085,20080,28308,8979,23909,13746,28526,14978,13545,25462,12560,3780,443,13678,29978,9247,27839,22927,4881,2606,25232,20185,10395,6536,512,23019,8909,21891,4659,18550,26283,359,5913,23109,28033,12859,15926,15717,29800,24928,27063,14921,17025,10376,23375,14973,10866,1462,25880,8047,26566,28334,21186,3634,21654,25798,23773,28763,29320,28077,10240,1717,28639,14823,11558,8701,6843,20262,3756,5849,19988,4236,4748,15645,12095,26776,21220,18918,5211,4868,4932,12816,1270,26762,9009,25342,13926,10982,13415,24487,24769,28923,14191,6367,18095,15051,12245,24191,22641,49,10171,12961,21669,16420,8957,19014,25747,14738,1157,24174,27877,12365,20144,9494,389,9477,9114,22998,26897,4029,18458,5243,29668,8030,10141,23931,7977,6362,5016,14196,7684,28138,19180,20505,1730,23339,14891,18992,1957,81,15308,21755,18613,5371,15668,25616,11437,20865,15914,24572,6399,22353,16665,2664,22049,7978,22305,17096,29376,27775,5669,14645,17338,20027,17789,17127,24030,4686,6764,682,12143,19547,19224,19962,19935,11826,9677,21422,28857,9996,9849,29983,18243,24876,26854,21017,21801,6798,10451,11072,8329,26335,11544,843,3183,27555,16194,316,6519,20742,29398,7486,10449,28579,2044,22122,22213,12434,26730,18392,9572,12166,29266,8768,21470,7643,23877,28548,8511,6434,16863,7866,11698,6824,5236,22441,14144,14152,21529,27503,15737,23587,10198,5169,22063,6478,12624,12634,10181,18700,22517,12320,17424,14321,25721,10603,20556,20445,27552,11167,14045,18653,29992,7036,24107,15089,15850,29395,14965,8193,8340,28525,19039,21845,23078,17963,13160,2552,7031,26116,15327,27696,25927,23297,11276,16998,1366,24619,27153,8731,1027,9508,17137,2549,8517,15706,11522,27762,21514,26516,14832,28458,14335,4508,29718,7328,24472,7788,27054,21897,21243,23929,25024,23519,177,27057,10765,19938,7509,2815,10759,3322,25324,7835,8976,22419,16307,13037,29808,22477,6449,6439,6023,4669,27701,26175,2293,2953,12893,20024,28940,2595,8697,29787,20230,17372,7800,1118,6450,2825,2117,15951,12933,22243,12382,17458,11199,11288,17673,2017,20907,15857,24777,1134,26905,23209,18479,23794,2231,4589,1951,12962,19305,25138,19719,9619,29591,1563,831,11234,7846,12818,5900,9701,10211,9377,18134,20270,69,18779,16529,19720,18461,21784,24688,27394,10035,18962,21761,25197,23729,23441,9641,257,15575,26273,29138,26602,24798,19684,28155,26520,2102,21253,25675,19846,15430,22533,3076,2515,18139,26936,6202,10164,26847,12358,1974,5313,29091,16865,22388,7812,7644,615,17810,21363,20856,6613,11590,2142,14037,20574,21128,4392,13860,10824,23600,6387,6212,28143,12752,5048,27141,9311,17769,9276,800,15656,24389,2297,15029,3261,29583,44,18000,5694,20312,21635,14908,4466,6040,15876,23488,29041,21543,18767,23220,11349,12165,8702,18758,29622,17919,28980,19898,15057,7393,27817,8919,22216,8475,9105,8386,20984,5159,16806,16047,7242,27160,13446,13967,10706,2586,11467,28523,25525,14188,24754,16755,19222,20434,4829,4395,19320,12770,14853,6667,29106,13647,10700,7122,23115,9204,23570,12112,3519,21209,4620,26394,26758,19108,3705,7572,26415,3690,5411,26708,15139,8569,6167,21311,13825,3195,29930,4239,3771,13108,88,8662,7487,15898,18627,16215,28798,18108,20971,14534,6486,18351,17978,15831,16225,29271,16140,3236,7682,518,24900,27402,1458,20305,15432,16152,3592,1163,9557,8161,27671,15655,26882,21726,2387,23151,17123,21873,9902,1969,14598,16132,7200,8613,29706,25941,3739,19420,26787,224,20751,14849,10019,15743,22633,1819,29610,12414,2844,27667,27520,23615,29016,923,12527,16575,11364,544,19273,22343,8374,4578,7265,16506,20087,10172,3908,4136,22729,20246,17800,16176,3404,13840,17962,16550,108,28549,14234,8661,1764,24098,19992,23761,12831,25872,12070,29796,8756,4918,26832,14351,27277,29247,19646,3702,2758,2991,8597,17405,17875,18138,11956,21149,11812,7814,3019,2124,29071,6646,24705,5488,3432,29064,29256,9519,21254,5625,15963,25533,8865,26449,12625,16610,18864,13244,17995,7177,10286,10406,14948,28051,2798,22881,18142,15651,18408,10343,1078,905,12887,1543,2255,24816,3991,25934,27292,12711,29639,9600,22013,9563,10469,13303,1228,8983,3919,27634,326,8299,24885,15350,24557,4028,27383,15345,18912,3272,6022,17736,9266,10353,1662,13714,28336,5923,28928,26210,196,3133,12338,26001,18972,26991,8627,16082,6104,20647,19197,3899,15635,1765,4602,11946,483,16809,25494,19501,9389,9497,17581,22065,19651,23984,14025,5673,5522,26822,23939,138,12730,26301,6145,3196,19405,23476,18883,29785,2592,5760,9136,28818,20535,26900,23402,12930,20806,18227,1963,3849,1012,15943,23253,14155,18597,11724,23506,10842,29283,7244,16419,2374,8101,9550,20846,25149,27547,18959,25486,21631,20518,27094,24802,4327,25965,13293,16044,15979,13547,22511,25166,13215,18536,8063,2300,18936,4143,17666,10221,11679,19106,5971,7697,15144,18557,16206,20589,29355,6326,23834,4269,22133,18683,14499,23277,4363,10432,11112,17036,10030,17381,10954,22807,29200,10570,21412,736,14483,24864,7914,17595,26151,11507,1526,12068,338,11237,23656,11324,16580,2837,7770,24829,18721,25670,16542,24967,1825,11226,4109,2378,25086,13975,11150,14735,1952,16482,27432,16424,305,18183,29937,22411,8794,4252,22235,3726,25886,7891,16022,11006,20673,12156,6993,27061,13165,22719,21759,15579,12644,7401,2045,15165,25461,4004,8492,18209,24467,11796,20636,13448,3633,19429,8173,7627,14121,14315,462,17205,9987,29075,4834,13326,16990,11828,16431,29503,26846,21212,10898,29511,12018,12919,1789,6055,17720,20539,342,25208,7150,7266,17189,19638,14744,17211,29143,19483,26164,25566,5839,13514,14148,719,23758,1572,21433,25833,5092,3451,975,7498,20616,1647,4453,25242,15753,29647,15807,12520,12496,25647,21541,25307,2697,24580,9794,23835,3269,25180,13719,11788,19362,7635,3961,18527,8296,6388,3304,20199,18098,11879,6347,9967,14922,4978,24195,20407,20469,6825,20210,21978,606,26298,29582,5909,17915,9924,25949,5102,15780,25882,20752,26463,3222,19584,16349,6094,20249,12385,20769,14843,28595,1380,10124,5272,11346,11063,26067,17499,6241,25082,26549,2031,16016,12790,14411,6861,23150,8837,3259,16389,17815,10496,8031,20618,2443,24254,29927,27514,26699,417,14661,5512,7962,18413,14501,6592,28907,11287,25125,8908,13664,18181,21199,8722,25832,29364,29628,6802,936,28039,470,12759,7477,20214,11979,3643,22806,9384,13670,21505,4277,22962,23156,11173,17427,11111,5374,20317,21160,1497,18904,5103,6866,27361,16709,8419,13262,24763,27816,9024,17731,23779,17805,15199,19523,1093,22483,19002,17231,3883,25277,27822,989,17733,20379,9344,20454,28879,24782,10790,6767,12879,901,3016,430,29878,20659,25680,26655,24962,14886,16179,4861,22740,27043,664,27232,13111,8948,19342,20660,17118,25469,4714,12275,27699,27322,862,26573,19227,2884,20450,21342,26190,15244,2003,27492,14494,15499,25436,7561,10130,1480,28486,28854,14229,8615,28932,11533,21950,4420,29007,28843,6,12735,24036,5271,16075,16791,17573,21741,6312,19698,24405,26875,29128,13109,10708,18914,8471,19648,16597,93,3166,7271,26404,578,4355,28977,28764,11418,28744,21717,29559,4931,22416,26648,21919,5665,2960,1904,17074,10003,25454,23387,23166,8681,21129,7131,15949,1604,7428,14098,22222,20194,3212,17422,7987,17430,6661,22154,4957,20969,13015,1372,15566,3290,26830,5615,27590,29118,19344,4039,4614,8758,1591,5530,8214,15511,14687,27121,2514,23636,12029,28084,27889,3474,21915,8431,16691,29080,10816,1878,25051,26572,21314,21794,29896,15036,216,1477,12402,18723,28291,29850,2818,20420,7925,15697,15153,4207,23210,3965,8325,679,12590,10891,17822,1733,1298,20665,22600,11203,12817,13658,8623,5043,11480,2081,16608,2228,6127,22462,16230,21104,26180,2983,20504,18580,25841,2240,14764,23276,3215,15954,29077,10131,3491,26277,22585,29318,13020,13243,15380,24993,15070,215,11295,27214,25434,29439,29352,928,27208,16845,4047,18809,15258,15084,18717,14513,19858,24415,4260,17749,9052,8887,27602,9780,28107,24651,17938,12452,1644,22932,4275,28997,753,17340,29798,17327,18771,7618,21790,4882,12066,16963,10391,23523,25667,20234,18604,12163,10553,18797,16930,3060,17983,28474,27306,1559,19907,26662,16434,6976,26398,21326,497,26239,2302,11884,15331,21812,8376,19444,7437,14298,8725,7773,15863,5493,22936,26915,7596,11980,21599,25119,204,7735,13546,13625,29685,8388,28370,18716,15833,20926,17064,21575,5312,10423,26946,2542,474,5498,14524,18831,18913,9722,26948,19251,8470,21783,11080,17162,28156,18405,10746,26255,28628,16282,17968,2963,1654,649,4378,3864,21503,5796,1530,29925,14792,28170,20431,21047,4529,5349,11433,11601,22356,18869,7161,22512,27915,27376,1839,4808,12475,308,15634,194,28496,22691,15397,8134,7354,26856,861,11366,9382,29221,19636,27151,26888,9049,19263,27663,5953,3456,27196,16634,10156,26177,18975,7755,7049,16939,1833,26022,27974,25359,27416,14023,28153,17216,689,22926,9069,18348,8847,19566,27134,1594,28038,2511,28223,8057,7317,2732,2817,5035,24341,28185,9884,15702,20706,29560,28874,11793,27253,17883,14120,7816,4258,15429,12794,2988,25633,9843,19046,20137,14994,10703,18125,11384,5658,23935,8234,2118,6238,15134,25011,18086,21172,12319,9504,19335,17571,3566,27901,27754,28777,29693,5906,12829,28829,14986,12710,3732,22296,18581,21552,20720,13704,6815,28097,10293,2247,14073,9627,26734,11517,14834,7111,14019,24417,33,28577,6852,25802,1660,23828,17149,15744,13875,26259,4134,4157,11007,18099,21597,6863,18885,9308,5364,24764,20640,4325,15813,25430,21246,9434,9988,8917,3560,15259,5823,18518,8309,26274,7920,19465,29435,19307,25243,22226,10152,9340,19384,24087,10273,17685,6963,18742,401,5077,2615,25692,28253,29264,9026,15925,5987,15902,5223,842,20307,4347,10874,9252,16743,27540,29291,20372,655,25665,27916,16557,16303,4888,23544,5640,19601,24781,26351,13543,15094,910,15869,13972,18037,26649,10442,7526,28460,21572,4768,2978,5054,1409,17166,5567,794,7348,485,18554,21115,3626,15017,20364,14666,5657,29088,4778,11306,15990,3376,4060,22831,1826,28409,6524,12721,24228,1852,25074,12345,14970,26130,11386,5026,4393,11016,14195,20832,5098,7696,24326,25903,20680,9706,21382,14302,11804,23648,10218,8493,15915,6741,822,25642,8461,5936,7253,4948,24126,12583,11569,27318,1051,24743,22167,19967,5591,3211,10045,12618,16104,10371,18317,1256,11419,26491,7764,3656,10933,1872,16814,19315,6004,16919,10511,9151,10807,19338,1172,24120,11626,1994,18654,14979,17645,19476,10179,974,5687,4796,3857,28279,1131,4697,14637,8928,12146,5470,10678,4989,12045,23316,14267,12456,4354,12909,7665,2042,19581,25702,15292,20483,13336,27433,23957,27114,27260,15309,21521,21828,9154,13648,13118,24448,4752,16821,3580,7972,9233,2557,24742,6589,18540,16875,12310,24161,17435,12178,25986,4199,22425,10298,23921,7138,2125,17683,19740,15556,8247,6619,13640,10973,14658,8903,723,29562,23103,12976,9940,5775,23670,9160,26914,15552,7453,16381,24807,29666,12861,14481,10450,22736,7015,8443,7335,5873,23432,3325,29011,26208,15720,866,1895,27086,13162,8544,18076,25351,17346,19743,7247,6284,14097,14305,4865,13663,1185,9294,3097,3452,22471,13690,701,23567,7262,3573,19183,20837,27073,10361,9574,24577,14881,14644,25734,1505,8251,24662,15533,20360,13599,8255,27006,12963,16683,8250,6694,16240,3014,4478,11995,22479,15459,23604,9775,5982,17699,17239,20160,5383,23050,19830,12683,11701,15242,22377,11388,9581,597,26813,10022,29068,6624,19859,4305,29485,23806,23609,4431,18361,8097,523,12228,13805,26244,5174,3217,5284,9696,591,14108,29661,12693,29275,24047,29765,19316,10958,11749,19079,21315,22575,21946,18599,3674,4454,22971,26290,24706,23085,1281,21469,15353,543,17643,13253,5320,2175,12185,27858,2545,16770,4921,4486,15004,25552,13653,854,26617,3207,26003,11010,6823,2150,8728,4526,27876,28088,3347,13770,5087,10123,20258,15997,24088,23952,24677,3984,13175,29429,22638,11355,13970,18068,12014,4335,6407,27227,21967,16323,12594,4161,14101,2381,9861,28337,29513,28041,15025,26102,2210,803,5771,1159,25293,14374,9310,14724,4844,16949,11893,18215,20170,4538,20358,25070,207,24443,16750,17400,1814,27592,21999,14855,20119,16618,10557,26316,4858,27554,10997,9648,25645,16614,6605,19714,11838,4379,17511,3103,3219,15941,6709,1759,1421,25327,20440,22494,20391,5071,17214,11564,20866,20870,4340,5942,3112,18467,1921,28146,23692,22176,8427,9410,20661,2874,20273,24634,101,7536,17323,8446,2810,3399,5827,2084,15303,208,23113,25456,29150,23989,10271,21684,16411,1063,19169,10615,25630,826,15778,28150,6835,5881,20352,4598,26839,13134,23541,28407,677,10173,8510,25033,14861,20873,4483,9386,293,10968,10295,10621,2243,18800,3511,26474,2923,23824,13920,21555,19924,9804,10096,9207,783,24825,686,26221,21090,21226,12266,24188,3396,1354,17241,25793,2994,3619,5864,130,3932,2616,24492,2823,27088,6989,4946,5865,21628,24654,5996,8458,19546,21012,17365,22612,1960,3710,25638,6258,4872,9883,28989,26073,23111,28141,2486,48,15047,28665,14060,23790,21586,14248,28898,15140,14040,20726,11902,24334,17478,1478,16886,23453,24189,3715,5880,3508,11848,2153,2918,26251,18827,5117,21076,20565,10182,27022,24988,19481,1521,29443,5638,15596,11239,24585,13140,17008,27755,29097,10484,3046,15908,6535,2046,18564,24529,302,15336,26470,16042,7361,17070,29807,3790,28855,21389,13592,7605,19933,27019,17863,25565,19200,25777,29648,13431,18958,25064,13963,27576,23430,24925,3433,6455,20789,16290,29616,15727,3253,8102,25822,75,27127,9811,12783,5268,4972,16696,14441,16185,4040,26527,9273,1179,20796,19069,17830,6917,8607,14163,16309,24142,11779,1167,11370,12675,7673,6230,3108,10605,27711,21218,24567,22570,14873,2053,817,19981,6463,17798,27273,3574,21538,6973,11041,1200,17799,25570,24397,14260,13005,5306,25899,13595,7548,20990,17017,12154,28817,10900,3628,7,17339,28237,26541,7225,19455,18921,21060,26265,25804,16198,28578,5316,5732,3549,7929,13976,7829,2372,25057,19411,11918,4990,18606,21082,22269,24625,22062,16561,10014,9443,29844,26331,29920,24650,5948,2392,29156,793,13092,9808,24708,4415,4787,24202,12096,15740,2345,22024,8719,1745,23913,17413,18944,26651,15618,7701,9632,3496,4447,12160,5018,27978,28897,2917,8083,26258,9573,26042,146,1301,19015,15917,13515,11944,21405,15830,16953,25723,13716,3515,9537,14342,17398,10233,6717,25756,11330,19365,19120,10241,12217,14801,17075,23254,5741,16584,27110,22184,16602,8922,21729,20773,24982,16243,6718,21028,25336,14847,1260,25580,23271,28851,16227,7183,26252,25077,28551,13966,12510,14438,22922,4813,16095,20641,8468,28106,18274,28113,13842,7790,23757,14360,25394,15929,23165,11160,8410,23396,11728,1441,21200,3625,11205,2525,18577,10751,20274,11636,9081,17536,16850,27583,28781,14153,21930,23830,698,25389,28692,5023,10135,26515,9962,19678,27254,26364,332,20622,16387,13902,21344,18483,18229,9165,8859,25028,8108,14641,650,6172,22438,10538,2663,17033,12141,16674,1484,8322,442,14111,7531,8732,24820,23034,28754,10540,1977,24411,25165,23647,8884,22992,12291,7952,20722,10435,9307,26838,13226,24924,11334,5635,25983,6870,18152,29637,19533,29267,14581,2434,6393,2832,13451,8216,4238,1249,29163,15503,22329,6006,27192,20508,12470,1317,1823,17192,11391,14165,23599,29360,15749,12654,7182,2019,14961,1112,25097,17982,8659,24241,19440,19276,8871,10795,15095,20447,9854,5326,5472,29225,10447,28671,29133,7273,10669,9590,9735,18111,13250,2455,14719,4590,14109,6385,14263,8626,10879,11168,19985,17306,26007,27596,15111,3158,20047,23241,15156,24406,11660,21860,13946,2724,4192,7614,12394,25984,9991,16950,16763,16718,15154,3916,14560,168,14803,5723,22859,22778,4727,16051,27862,12708,13669,16975,20304,26788,29105,23169,20892,11442,25976,17095,9343,25658,16410,27422,3085,25752,6655,21410,7259,20955,21604,11837,22803,26770,6360,1376,23847,12652,27077,10889,24440,27460,16091,530,6509,2058,8786,1090,13868,27451,15585,4279,19449,27558,4129,26703,22390,9353,14457,7289,29013,27496,2894,2364,489,3976,24124,21023,6795,16744,23708,25295,27342,5065,5526,2039,27484,15882,29657,18535,20242,1821,16988,2166,28727,23371,15000,15528,21006,23447,13256,17909,24458,25400,8393,16207,11474,552,11687,1710,26479,11125,9306,4437,29321,23730,13272,15189,17234,1727,1551,22506,1575,14852,710,27424,7165,13202,27172,27768,28489,15137,9586,741,6401,17369,13476,13941,4496,28109,13883,6687,13849,19110,8879,17295,12898,16200,12581,9091,9259,3677,29698,13951,9848,16603,27434,25311,29673,9051,16329,17367,6949,4739,27801,10479,11568,13736,1857,14092,24702,22981,10277,23178,6248,18544,26010,19052,14271,23128,25310,28870,23075,12956,15586,4854,14233,5695,14479,22469,1958,1299,19296,24034,24154,3378,18628,7973,21276,639,28193,14620,9598,3581,12645,15276,17917,18110,18985,170,27541,17113,20022,20133,18462,14817,1468,7585,6805,10996,6079,3987,25350,178,4502,5642,14032,13898,11766,5677,19250,12408,15320,9594,18594,26026,4568,16131,9444,19630,25015,1471,23568,14704,3868,8759,23258,9288,9741,21532,8239,28673,10667,7566,13258,1786,29962,22948,1071,2011,13497,6714,10213,11210,15654,18280,9416,10153,15699,22052,22316,23863,9559,5990,11408,12851,22955,21865,8006,29047,3463,2731,19602,27879,25115,17897,14283,427,2686,22980,24478,9929,18007,17332,25850,13584,20399,15563,18960,18886,17164,29536,22613,1760,24183,14971,10468,5265,8929,29642,4390,10263,24497,8598,19843,11413,17534,3783,2566,11246,23117,25263,14243,12386,25016,25711,18786,28509,12298,4867,10693,19141,16382,4521,24311,7752,23900,23715,25363,5583,5911,17456,6816,16727,14327,28228,20224,20116,15969,2216,7024,15884,7926,6178,29458,4034,1858,13388,3772,7865,20633,3359,23230,29528,3353,11350,1547,6585,173,9556,4114,25401,17566,11772,2085,5137,1796,17220,24412,2065,22119,16490,20801,27551,21229,6208,11476,23663,5931,16168,5952,29880,29802,5621,9201,8647,562,29501,1615,16666,25162,27115,1325,14379,19874,10176,8663,26644,27917,12883,10841,16033,29508,5011,21558,22029,4476,20016,28328,26809,21102,1919,5668,6499,24599,1355,8890,23671,29834,26826,24007,14640,2707,6321,16141,9764,9576,167,13682,22174,1105,23928,26046,11816,11807,28749,21637,5400,15365,27263,29208,11745,18211,7625,8136,592,20733,2256,6128,11888,19550,19372,15093,1880,9901,19382,24361,17374,4223,9850,1072,22814,3266,20777,5628,23660,3324,22250,27013,11818,24765,26535,10236,12922,25865,27847,5170,17851,15555,24294,12633,25174,28377,17649,16154,12513,22780,20219,7152,14161,1136,14399,9104,16189,5645,21177,11939,17161,23321,12027,947,24090,18638,16860,20981,675,21516,24846,431,23464,2104,19741,18207,10577,24307,9411,22717,26282,2828,18858,20100,21606,19998,10464,1044,9796,14424,10050,21117,21906,16216,11327,11374,17101,12954,9050,22849,15235,13953,12,4093,17056,5858,21795,21136,11175,23857,5690,7886,18596,13594,15065,23250,12054,22258,25383,19968,415,6899,3773,2914,29354,2688,14680,1053,24333,3545,1499,3774,22486,4046,16983,5219,25450,28333,26635,29875,6662,12139,13330,15229,22287,20231,4282,9792,14931,2164,27158,2060,29506,20502,95,242,10330,24933,26062,10509,23006,27159,2612,23535,709,5560,22513,3117,29975,11166,6286,23281,24020,29100,20415,18496,19995,2942,6118,25251,2014,908,6120,5325,16768,19095,8222,10092,10339,10881,4471,1403,19187,11993,7256,11504,29908,28371,26347,22205,16502,23472,5027,3803,24164,4091,17172,22227,18983,22809,21462,16393,22234,8894,7418,25319,10367,29868,13132,6845,28680,19488,25220,9915,15688,21517,20579,7409,26297,22805,3501,26391,24655,8344,22974,27170,28182,1670,19147,4552,2564,11908,21108,7545,12195,15141,11182,8670,9959,16006,10649,22299,19706,13944,10125,23500,12304,20506,2335,20439,9057,1997,9899,20942,28592,15730,4318,3358,14827,3100,3155,2551,25104,4679,11608,21092,6232,225,13934,27797,25511,9010,20738,24550,19637,29159,8530,22598,17094,7302,9196,25948,25081,3141,14945,27618,7357,14119,29949,12331,18197,7175,10646,2722,1429,21663,23710,17389,20187,15456,27734,4459,16719,20072,20322,8798,10037,17305,12738,16508,14736,18801,20255,3622,21940,24735,8264,28950,9141,28820,17080,19571,24013,20992,15164,1026,22911,12067,22008,23882,18647,16493,15007,27837,14371,7942,20195,13591,129,29441,3106,19862,18018,8267,7928,16365,22082,690,29345,12366,22038,10947,2006,14700,29921,2921,12888,17969,24892,18582,6505,24376,9168,12328,8438,798,4579,3650,6361,20978,19042,29330,8020,8539,14454,7969,8891,11669,13088,18356,19055,16326,28304,13459,4061,1114,22265,4845,21634,13123,28645,10102,22289,12135,3925,8855,17824,9596,9403,10403,23179,22914,7315,17556,26869,1918,1877,13512,27344,21786,24725,22422,15073,22170,2629,8481,17632,27561,14199,16841,7074,3711,18339,2865,18917,23680,9636,19749,4737,12093,5073,17547,24367,848,9789,9367,16178,13884,22382,22223,19274,1280,1022,25160,8640,1014,8417,10711,5240,20436,2904,20348,1807,16937,12533,23457,27185,11481,14618,8850,27444,10955,14359,7990,21010,15176,18466,19932,7757,26224,18692,27120,14828,3627,16701,1388,18991,20209,29419,16134,12992,21591,11062,10002,20827,2366,26840,26555,12603,3591,16693,16451,1247,27297,24676,22523,11475,14551,17034,25090,7145,18768,24586,5350,14725,27261,21971,18734,11060,27868,20261,13711,22138,27091,1491,22968,29714,20715,28886,3498,2410,29029,18491,20779,2242,11029,21612,16844,16143,15751,15220,11017,4164,3547,11550,2430,24859,22582,20668,18547,14170,18807,24484,23955,25699,15952,11988,21395,20985,8974,3087,24551,19101,12698,8327,3049,5737,15018,6598,2082,26976,3794,9668,18680,2757,3205,13536,24454,25583,18044,13189,16977,11414,13896,7397,4185,7801,28685,22164,1113,6632,8398,26608,28768,25491,10757,1672,12062,11935,14621,4744,28502,19899,13241,23507,12748,25898,13035,7652,27450,9691,24248,17764,15048,10200,8003,28302,14001,19524,6520,28090,18052,17817,28323,7607,16625,4410,10992,14269,17813,1481,12457,20557,3395,21587,16717,24936,65,12236,4933,13878,27878,9841,18340,1474,19350,9317,1845,21147,19493,27763,2619,14866,29384,20975,12034,10150,4802,26376,26118,7318,10749,5649,18397,25674,4741,13252,5792,11702,22088,6982,448,13535,17939,13667,7754,13562,22847,16558,29538,15673,23801,23248,6887,25402,29972,6576,10206,23187,2202,13375,23687,16135,19301,271,20374,5965,21675,4986,20910,10692,17839,6316,8935,5603,15224,17688,21951,24259,16620,7481,12777,24604,6487,2658,14983,505,7274,5747,10926,29101,12309,3680,9222,23678,23229,21163,8556,19138,25522,11621,22187,11067,17150,2501,15403,27343,18965,29122,6977,21559,21022,6617,25343,26678,6131,24239,21816,5710,1389,4764,26904,27856,21176,15714,23530,23948,13340,9028,13429,12610,18240,24455,9547,4467,19467,14592,24092,27866,25019,28412,18855,17494,16554,20090,7164,2066,14495,24285,16024,1822,20149,10177,20648,11925,7298,17989,28807,26681,26285,13851,15721,29988,24460,11616,10990,6603,25355,2717,6160,19831,18943,28642,15537,16059,24536,4345,29838,15370,16740,27812,22762,15581,7020,16605,26642,24246,2879,19213,16153,459,542,21148,22631,1782,10523,29245,21402,27661,15076,8421,18519,23767,7789,18268,4206,1174,21914,15604,641,14014,12161,2670,2227,25896,10385,25746,10300,12582,1469,7484,28999,15975,5405,22338,6083,21682,25978,876,28793,25909,28852,631,29852,4,23741,29224,21791,20689,11512,1331,26256,13392,8145,9771,29114,5502,26209,23286,20389,13065,13192,12318,24644,12825,14807,21686,7589,28446,13505,28747,28462,22685,4183,29008,13029,29613,11945,27670,8724,1288,14532,24610,6990,5458,15786,14105,20595,661,13016,21106,13314,25274,4806,890,17755,20163,19886,26938,10222,6734,23082,2853,9034,10797,19370,12787,20250,25255,26079,898,11263,14529,26806,13943,9040,22627,24279,12082,17284,28640,28190,11611,18919,22748,3025,23912,23534,3281,7446,12530,20536,2741,14348,16972,17357,28073,24758,15282,28630,8738,5647,25644,21907,8595,21473,20055,9744,20217,4571,6372,11310,7078,11792,20477,27784,19114,4728,27919,5292,6810,10408,2681,29618,17309,29368,28415,7144,19525,14469,15391,7204,21506,684,24821,10341,17408,19880,26497,13485,21306,18077,24797,6526,19756,16796,3798,4460,5800,7260,13706,14048,21547,5667,22720,16828,23135,13589,21854,7248,12792,16344,26585,17244,3897,8284,15049,8675,2149,29872,17687,29692,21629,6251,18934,29165,7234,21113,2993,11683,9016,4105,2609,26085,15994,859,109,22674,4707,15878,14031,7091,7864,12002,7878,3384,4320,27144,5385,28894,12785,7098,4725,157,29050,23896,9984,20895,9432,4786,29466,3494,24788,19738,21466,21925,3361,17953,22424,29876,16913,27228,20284,26339,19869,6778,24614,20031,23775,14974,384,6138,18231,6156,68,14782,22797,13688,17121,20248,28286,18219,21338,25698,3136,27530,1811,10628,17894,22833,28771,16522,9483,17077,26712,13370,3950,4116,12545,18860,20840,6756,23810,3753,27204,12751,1414,6559,12981,6698,24964,11860,16017,2665,23561,18158,21139,7267,19695,6137,14272,20958,7533,10980,13418,22472,25056,22313,725,20032,22256,12869,5296,25773,8244,29437,13261,9038,25875,23619,6712,17834,29482,13929,19815,21370,13054,12025,28338,13817,10819,16061,2510,16592,12713,4695,13994,14557,6085,10902,23612,9872,9593,4837,9874,9755,978,26477,2744,29152,24187,4383,17333,13986,17322,29089,9137,23107,3851,14756,12557,25176,27198,1065,29312,24648,25424,2005,7726,2425,18493,422,22126,13009,22703,18137,2958,8962,15442,2647,13598,13633,7364,19543,8307,20416,14002,6010,13167,24471,16810,18824,26716,9927,6235,8159,2788,15496,23471,24874,3518,5347,27522,11508,15054,20894,7389,8106,1411,29965,29317,13646,3922,4670,8042,565,12849,27436,15249,9813,5824,5264,26989,29232,3026,26661,2965,7921,9216,21300,10740,28605,17532,14154,11260,16314,18436,13725,10305,18620,18789,19563,19744,1104,15272,21592,28400,12449,3903,8301,26658,24583,23304,13348,23760,11379,16716,12717,22961,19336,18475,14622,15860,18003,27078,25034,4082,15388,21969,3115,13384,27840,25137,16653,1143,14391,7610,11628,10159,25890,2487,13585,6959,9309,2572,15483,2296,17663,16338,19103,19312,8801,19600,1684,1729,25269,22283,22293,12920,21984,19173,28416,23524,28017,6038,28043,12188,2538,14393,6726,12004,16643,7295,19972,11989,4436,1859,16462,239,24576,27925,1593,21561,10144,29366,3440,24624,9117,24374,25640,17582,2478,22933,18549,19142,26300,20455,26640,966,21590,21435,24267,29956,20987,9905,1861,9254,29654,26636,21882,16774,13756,980,26943,23435,12969,7587,6112,272,18062,11800,29394,16500,21515,26075,17296,16713,12703,15393,9474,27161,25794,6084,29166,16935,20700,20883,19459,12650,15255,8201,4604,10074,29958,3138,12317,14506,4413,188,10526,5820,17199,26063,15605,2621,9086,19080,4465,18228,18737,19016,5946,13551,19556,13319,10093,22595,8170,4903,29211,18757,19642,6468,15037,3743,2940,1791,18323,16888,4117,12668,28394,21844,2583,8985,8429,26954,5817,11806,9756,23990,10872,12182,21843,15227,2375,28015,432,25801,3822,14042,22087,25261,20425,22568,19752,17942,4045,21581,22827,10505,7934,12080,26385,27156,10086,23714,26672,818,29626,16475,8792,18341,6060,24628,8119,14314,2799,569,9731,19404,19235,3053,20543,17254,24573,28759,25650,3503,12809,19811,15847,1293,27212,16917,24479,27603,23373,1132,19451,28173,19030,1194,12235,24757,17194,22043,8630,14663,12407,19680,28144,7822,27834,17700,6485,4980,26348,17477,12958,18854,14818,4533,29830,7294,21180,2712,11174,6275,29607,29717,28885,18377,11035,21931,19861,6281,14245,5263,1454,662,20316,10338,27226,20578,7546,810,1722,4551,22211,14182,23414,4649,1417,26825,15162,8426,3885,25920,17449,28411,29000,22458,29711,29199,9772,3752,23119,25877,965,15170,19521,19652,23526,19272,13004,22737,6907,17638,3054,8841,8208,26018,8750,16201,21952,6390,22574,18307,14080,21921,16236,11152,20021,18585,7783,25924,21452,14428,214,5307,1758,27579,23564,15492,18009,8684,8955,4430,25328,26558,11968,27510,2812,18390,22957,9523,20515,15775,3104,24633,11208,28695,3293,12415,18996,5614,19191,2311,17594,11215,26546,23664,12378,19923,26868,202,26931,9058,21261,15013,26149,29074,4054,24559,3587,29897,21598,8132,12252,5630,17864,12743,28986,28625,28340,19421,19220,19597,10640,23995,21773,26577,19903,9139,5986,8635,11614,11002,24004,25987,13568,11534,15793,12050,18357,20899,7971,1798,5606,11537,29043,21512,13166,23771,1620,1230,4073,24135,17009,28905,12281,584,9773,20872,19020,14072,28282,5460,21964,5748,11940,12003,24173,20919,547,6511,15827,15631,11966,15279,7573,4246,7079,18751,12521,18645,10747,15946,3612,2037,29378,17155,13854,28163,22054,15181,27872,16872,2839,13808,22920,24685,20028,2878,12387,12568,12552,8988,4609,23070,2747,5691,14748,15771,5850,10895,21493,4513,20178,4749,2423,11051,19690,27031,15040,17728,5429,20151,20088,5130,19647,15725,16637,17217,5746,20634,18173,23193,29727,2182,1652,19329,11926,3466,17852,26955,10522,12061,3198,25184,21731,14110,24767,22543,3946,20401,9603,18316,23675,19084,28359,17222,373,13100,22259,19160,25122,7414,5310,12169,23243,24170,21584,15732,21868,8211,11909,11526,28267,18017,23640,5997,26225,17629,26817,6338,14279,5245,26459,21525,19408,18310,23066,11185,21659,25038,2924,12773,1255,3906,15922,24518,13286,29812,20342,14222,356,23305,28609,20351,5354,26033,26231,13880,22092,17512,7371,4443,7180,12001,656,21677,10453,9842,9997,5466,25457,15091,11817,27314,27830,12476,5468,3056,18452,10219,5520,13858,25977,15982,26059,19088,19004,21571,28229,1015,9134,25969,14543,10190,1695,20131,14588,9935,26785,27669,15652,27729,22734,27325,4869,7655,2631,8752,20609,720,26511,946,1891,8545,26997,4601,3228,18833,24623,9385,1766,15738,15010,26859,29057,3576,10078,11473,13182,11529,2325,28388,14655,22072,15349,10860,19805,6510,20685,25973,2415,24231,6504,27420,28726,27852,18282,246,23861,11930,19577,18266,20534,19757,27137,20218,15875,3817,5467,17965,25809,16214,27340,13278,4951,12858,16726,27205,16297,6628,11737,3766,14138,14276,11189,1042,29777,18242,19484,6305,27708,18738,1689,24839,7761,2682,17248,10622,22656,8505,28899,10252,14517,29278,22884,16245,12553,10680,5918,16731,26843,15346,13809,22393,7195,9936,21472,13213,20966,8016,18038,21312,26571,7908,24918,24235,7109,535,19767,22576,3120,17029,8651,12707,8262,14966,13338,19676,834,24370,17195,28098,22690,29274,20486,19253,26249,3223,28821,9362,14795,26537,1844,20831,19872,14969,26334,26417,17377,11095,27300,2284,21534,11486,6124,18545,23069,14846,19934,18938,28343,11730,994,1305,8205,5804,25821,28405,29155,18541,2212,6073,28849,7209,27060,26099,9994,4195,10276,23737,24579,26775,6716,8171,487,19152,29569,27476,23879,11742,22906,5452,19654,5275,9238,155,23953,16511,9178,25435,1680,5022,21982,14450,6954,22308,16803,4474,16578,11359,29385,26586,21707,18261,22405,25475,21079,26594,15161,21188,3204,25233,28504,7699,22620,25800,19261,12480,2032,21578,26219,9278,10235,16805,3846,11450,23949,21292,9361,16660,24175,15066,16146,2876,3140,4937,26110,15788,19795,5088,28623,3884,24489,29258,12872,23536,2786,26488,19791,22189,5162,5960,23020,13453,16439,21387,22232,11329,20236,20216,748,9328,28062,17796,3302,22777,22459,20833,17255,22776,22415,5286,12548,28518,25361,9076,20597,2444,10425,10420,5115,5415,5420,5353,24449,29659,23139,3517,211,7555,22003,7996,14914,1906,17819,6371,607,17417,29708,2974,11757,25761,4398,18889,23983,16771,12361,9456,19507,14964,20791,12103,19734,27827,26333,24100,203,26097,10507,17828,838,28580,8730,2578,21580,26045,28970,27456,10129,12664,16371,16208,14193,15172,11901,12125,23705,23631,4101,7051,15251,21196,12301,26182,20127,6884,13504,12833,15905,16978,23054,23992,17124,18935,6082,1428,13309,6054,6586,16720,19385,21418,4001,4859,8080,12998,2307,6652,23723,16812,24904,16285,9799,4104,1742,5229,9821,6540,1531,21087,888,7345,5423,22346,17589,28591,18573,5914,1621,22208,26093,19096,21066,25966,22220,26261,25471,6236,28092,13813,29191,21195,14567,23548,18523,5590,19971,14287,14883,27080,20323,28803,25252,11516,21870,23926,6905,3047,9192,231,21371,7412,3902,22409,10541,24365,24205,20624,17083,15516,7063,6800,23362,22046,3048,11394,5977,25577,3342,3170,24430,12503,4672,19056,4293,13401,5042,13304,15240,27928,6929,20571,20314,5548,4176,22125,11665,5736,28108,11932,16573,24917,28322,10299,1302,697,14603,10856,21456,12108,15015,19562,289,567,8188,6070,13776,23608,2056,7516,4193,904,22607,7365,14349,24803,27180,28825,26767,5469,21518,1046,24298,852,11196,2468,15774,17880,4920,28096,28507,7517,16130,23392,171,28878,29789,13346,29709,2347,27888,11882,26807,117,1199,14292,5801,16891,28919,11740,2671,23805,5860,29295,29684,12685,27487,24410,12202,11126,17691,6602,12063,17593,28607,4544,23084,12123,3352,12303,14619,20384,7293,27216,11122,17646,29172,25112,5757,4337,25035,14255,6931,14068,8147,16014,11520,28152,9228,14634,15932,6446,5057,7901,19864,10317,9448,17247,379,23885,12495,23452,27724,6906,23823,18755,13205,6923,15842,12912,28318,537,26618,9191,29175,23335,12768,18373,1139,27468,16166,10012,9245,13359,2528,23218,5744,3595,6264,13518,16879,12746,23291,20167,16192,11928,4434,404,16457,28373,5507,14386,9226,20206,9791,15183,1149,29575,15633,18852,10998,25671,3867,7646,5409,6872,20675,21958,7489,24,10920,11871,1033,4875,12670,25005,21416,837,21893,1523,26269,2507,559,21495,16352,13400,1566,13651,26238,22837,860,9690,28320,5574,15178,3825,20800,19633,19398,14675,14570,10809,20263,16689,6074,22645,871,28705,11124,9246,14555,7611,5941,23874,22722,14038,10331,28856,13475,23484,13800,3386,20635,19471,18094,5197,11927,7251,26576,14297,6379,2049,4761,19389,5838,10088,6604,16703,11308,13530,15180,25859,19621,20577,17122,20180,2968,15837,7731,27981,6418,29481,17811,20166,24947,6669,15862,27397,22196,28797,6700,3763,27224,18785,9357,14932,541,18410,7556,16020,15356,7090,6544,29049,1707,6935,25132,24347,501,9827,21573,7434,12159,1541,9106,2279,3942,20686,4259,20950,10196,27498,20857,18122,16515,21214,19710,2801,5754,26427,26,12350,28519,22678,2523,21993,23646,29116,1901,4733,2290,26206,8581,21031,14129,20911,4000,3448,19473,19820,7818,22291,28670,23138,20755,1837,24998,16761,3326,4633,12274,5082,4189,13225,12895,3105,11729,13417,16749,10813,28224,26387,28266,12841,4917,9327,26769,18431,24441,24165,14672,8232,8791,5461,2292,9198,24010,9733,13532,9660,21086,7439,7082,4795,11974,21850,19931,2674,1220,19498,16126,21737,14711,3091,3910,28262,8174,20630,2398,10560,23194,961,1954,22261,2912,15782,352,9062,20029,1676,21554,13672,13472,6492,2563,23295,6042,12230,10416,23876,23833,7416,20201,3765,23142,24145,25764,8155,12632,28052,22231,21298,16308,10901,1802,9615,20716,11292,9816,4729,15588,744,23985,24465,29570,424,1865,40,15962,14201,13576,4445,24534,26169,4916,9881,27799,5670,7875,27284,19174,3571,16912,25885,25557,16657,11050,16021,7651,19288,4757,21752,8217,13616,22774,1463,15305,23713,6644,25163,7391,6616,29523,25347,10127,2165,28938,13487,275,13879,3769,22051,18438,2831,17647,18347,14262,21621,19708,26136,2754,25914,27295,25529,8400,8092,1017,20701,29021,9512,23666,17004,14118,24274,29507,24138,17920,1448,8564,28408,7994,15611,20747,29898,3678,28617,13720,7133,24712,13433,6395,17493,1896,19407,8488,1009,11845,7520,5980,12140,11801,1694,11881,1805,17907,14862,14034,24679,22772,4682,589,28232,27354,20881,4586,6918,14137,15230,22321,22451,28210,9520,4267,2527,5317,9061,16466,23300,15677,29829,7845,13740,10929,8775,7362,22134,7384,13328,3563,11542,10421,3362,3655,460,19345,12203,11722,22708,25496,26368,1641,16586,21545,7590,19361,16486,20045,21817,21274,11397,12728,15609,9404,26413,28227,6130,12505,8812,26145,8139,18026,7692,20438,6268,21792,19279,28791,24286,4210,18846,17891,25866,26774,17521,1016,14181,10853,1347,17041,17985,26422,19071,840,15198,13032,29478,8065,22297,19244,11852,4292,10400,16737,19097,15426,20591,13789,22242,4011,7649,16715,14701,22851,12554,15466,9461,12008,5210,10061,14011,29790,2445,8096,24901,27550,13471,27673,16874,7474,9785,10166,21396,17235,148,5961,5417,13881,7510,11343,12052,3665,18697,20802,2062,5646,23513,7460,18389,26372,19704,6086,15989,11253,9396,11484,159,27482,14727,10383,13043,19217,663,92,15894,10814,21765,27947,1313,9412,7171,24525,26952,8708,11453,21656,11717,1074,19387,25447,4150,17550,4356,13668,9539,5352,18002,6336,16702,28455,12967,22257,29252,27179,26630,10040,25278,13960,15060,3648,13174,24698,9566,26337,7669,3441,23042,17684,24519,17060,2532,7467,15701,4681,18398,16579,28230,28926,27789,28361,2505,9570,14999,22508,500,1244,1314,29543,2485,8496,27685,3746,14916,19670,18524,6366,18693,25782,27045,16556,1768,21056,18218,21867,3881,4756,2791,17014,5131,26874,27290,16652,13270,12341,17076,25463,9329,8512,26891,24206,7738,19422,25101,18998,11131,19619,23966,1892,24645,20001,23379,5193,26489,13794,14561,13056,28485,21283,9017,13572,27785,4612,23462,9920,13292,28872,26801,13687,10639,6425,15059,8500,29696,28656,18041,13490,6763,9479,6139,4891,4831,23911,15406,8183,19897,7626,21009,16958,161,14984,29413,24617,21303,8715,14709,3408,6009,20126,21793,21024,5562,22349,21723,17500,26858,7821,11678,22878,22760,19185,11584,14467,3203,6554,2941,5095,4339,9221,2858,5671,12084,27580,12436,1310,20346,6348,9258,22886,24760,12401,19627,29747,14648,14126,17144,4362,8148,11606,7157,19348,16793,12428,12186,11640,4212,2854,3156,2249,21666,5001,26872,13050,28669,2973,26603,9173,8051,809,21286,1598,16137,24535,10337,4710,5099,15478,20315,299,25312,27367,5474,12194,29516,21123,17944,17210,22986,5533,25212,18525,9083,11285,7675,19477,7275,9633,11600,25150,5588,3500,27203,16449,26563,3985,5568,15791,4141,13828,22124,7327,11580,19588,20290,21119,23421,2596,27364,13105,23086,28053,12965,5483,10072,2580,985,27149,5891,6679,8184,15991,10136,7099,20260,787,667,21083,4812,22801,16224,4817,4488,12745,20943,29836,21696,10918,5756,27910,4451,24255,19624,24861,13086,7034,17108,4314,6176,22277,9350,23035,7221,7169,12591,22689,2436,22951,19028,16915,13030,23247,10656,9664,13300,6159,9626,18213,17640,24956,9008,18640,25527,19374,13436,9675,24346,11031,7433,5278,12412,3586,29316,26917,11634,14247,14285,8726,11452,16700,26551,5047,6325,16995,7261,12571,4140,29003,2281,42,22362,26035,3858,8856,10689,6149,3230,14219,18997,3971,26270,4694,7101,22201,16549,7873,24582,3555,29517,11053,23378,20410,9478,23704,27948,17085,25488,28181,7307,26598,5822,26457,10530,10752,24084,15474,25530,21014,3493,29716,4518,15854,27108,19781,6105,21853,23360,7463,25464,264,16118,10186,25201,27368,4346,26996,22931,25581,25223,28014,6967,1935,18945,25799,14258,5836,2172,15206,19763,3970,669,27776,9409,14008,20962,24642,11043,10488,23127,16619,11839,23685,16632,8454,21392,13398,9840,26393,10485,13882,28360,20880,26521,24408,24752,13713,2981,2667,5207,12570,25725,2821,4126,6910,9184,26999,24515,3351,10067,11048,19789,7313,29030,6237,12035,21810,29819,16009,22564,25776,16346,29797,414,26777,4668,16350,24959,2492,14458,6641,22522,25518,8067,21191,6350,2215,16088,22850,10049,20620,24893,22516,13425,16790,11443,1207,4736,8292,23227,6909,12440,22573,19836,7838,21255,26741,5143,8143,7668,16677,26896,17314,20174,10862,2687,9283,4288,19085,17912,10629,13498,11789,25906,17751,29185,13198,8771,23844,6788,26965,22877,6059,22047,2353,15766,2888,22310,3480,25007,8227,16238,691,6979,4789,17393,790,23719,23998,15087,8495,16960,15443,4066,5014,3962,7277,26949,16929,7634,9790,22821,6924,27177,11635,23618,10456,10943,3447,14132,14802,25392,25834,15583,15329,6415,11250,4794,13221,7909,1971,1323,11896,13275,7742,13135,5764,10261,24386,2034,29242,9990,26108,24847,1318,10617,29752,2534,9944,15232,3974,440,14877,5037,11578,26077,29577,15592,25531,25624,24852,27033,26768,11301,11157,14901,14020,7479,29499,17073,41,22910,7862,17230,13686,2608,26901,10642,3336,2414,19790,2421,1473,17546,29157,28499,12802,28917,27848,19325,29423,23987,14244,28832,29420,8257,1169,19360,9241,26589,11841,5205,2668,27897,10366,22105,24544,25084,304,15008,20265,26328,27145,833,24288,17506,17517,28174,9670,15602,4187,21192,9917,11369,8087,11255,7064,19212,19961,8632,23063,6043,24886,15325,21776,13494,9355,19340,7292,12397,25704,1193,27467,1361,5916,5241,4814,23542,3412,21593,9401,22298,17154,1665,1212,23188,27044,17793,4228,10969,20820,10010,7147,27466,27105,5394,14431,18720,3270,11138,5156,5270,24383,14052,13177,4605,23979,6346,11984,8519,1838,288,995,24252,26517,3824,28074,22939,2591,15287,13637,9580,22544,23557,2043,28200,29115,8352,26532,29299,17662,21782,29823,29268,22874,11161,6922,13237,19091,27677,5009,29644,4618,21679,19873,9969,14029,14437,27104,25472,2883,19685,11723,15731,10780,21372,27792,21553,20061,19915,23621,13974,26373,3512,24996,25578,2590,9499,13386,6912,2790,9787,17767,1211,13659,19634,3683,13577,14949,21294,16360,7817,23427,29214,23944,17541,26638,18230,2021,19505,28426,2012,20513,22348,26345,3845,18468,14941,27821,10961,18691,20463,19559,5593,25710,14141,27014,22978,15881,21912,19047,21222,13601,6750,13785,1475,19909,28822,10516,12263,24040,16164,27991,26675,2068,23223,7606,14924,16733,6141,2830,25470,5970,27783,774,318,11560,28969,21018,20186,14906,20682,9634,16782,6566,1968,11059,2709,5301,19568,18288,479,5422,2934,8167,28085,15964,1890,14706,2197,6503,1324,21926,2283,24770,2145,22963,27971,6668,12678,6037,24380,29884,4427,17785,3218,18586,11985,15467,26132,3234,7575,5063,16504,1338,6593,10551,11721,7105,20723,23149,22921,10930,22026,27730,28779,407,2148,25945,29749,27976,14451,6126,7421,2040,26161,2792,21542,2947,29933,10959,26420,9203,5762,7904,7777,3188,9855,24966,28521,4790,4077,4838,23328,3062,13570,2257,20818,29296,16543,11641,18364,1950,5070,22325,5676,21852,15993,28421,12485,6971,12180,640,15693,20283,25951,13807,18176,22835,10025,8838,17496,17082,8236,19500,22290,3398,28975,9015,11082,23225,20936,19168,4432,9313,17465,27748,27681,22871,15120,4940,12287,3879,5448,17337,17197,25030,8002,6674,10475,25476,14905,21985,3975,23565,29307,12433,9983,27338,26982,115,5484,21623,17466,22374,10721,13844,13630,5305,19238,22883,18853,23338,8442,7312,17292,17730,22207,3607,26962,9972,23867,29170,10651,11539,29141,21928,5984,16169,19611,16476,20792,25755,11783,16944,9325,28276,29004,4907,5368,9551,23207,1886,12193,12238,5319,10559,13642,6727,1488,10264,824,8124,22551,3430,22400,4067,27584,1780,22818,17984,26724,14185,19023,17170,9482,22983,2999,6985,10054,13284,19135,10985,14601,5601,11972,25054,15113,3146,4272,13153,399,17952,29442,14772,21144,11929,4087,24863,8098,28427,27521,17000,29010,4099,24532,11381,9101,12744,17276,24119,16270,20657,22309,18459,3160,2439,1024,6216,9694,519,5797,15998,20893,17196,19259,23448,27405,18671,821,7902,2452,16797,19184,28936,13121,17181,9569,19834,19132,17484,18898,28524,14674,6814,9818,6822,15553,3159,28061,19655,13136,19129,23062,875,18503,6285,16986,21938,28668,28164,19617,918,15286,10803,6721,12199,24836,25683,558,20120,19891,22380,10446,24605,1632,17934,15506,27970,11559,25536,5842,8616,8113,20952,28606,9678,9277,20332,23469,13762,23038,11850,13992,12980,23755,8357,21340,22727,23970,4422,26581,9517,23477,22354,23186,11791,10426,3476,3178,23272,11576,4870,23440,14791,8347,16074,26795,2343,17006,13520,8300,13722,17711,5311,6430,22288,18064,19127,22337,4507,4145,21232,6462,21709,3163,12576,10476,8192,7136,9723,8721,13320,8218,15773,25437,21687,17525,28082,5132,10774,11032,10429,16098,1635,5969,27808,13352,3370,2675,28937,6853,25198,20877,717,12944,27103,28679,364,4442,17540,11703,2995,8168,16564,14202,24466,27181,26162,18805,9014,25715,12804,14404,28029,29980,24257,28059,18941,22779,24373,27506,5177,25140,18868,27313,23278,23865,127,2315,20303,1001,807,6557,28604,11880,9393,4640,24995,9847,27020,18893,20934,13046,133,18576,3154,16884,15848,6984,4767,6516,190,3021,21388,23538,540,7641,21170,9181,15936,10472,25625,625,11315,28056,17489,5496,26452,24442,16999,27375,6527,25626,9567,15684,1467,26069,9954,4178,25579,27221,24221,29180,23280,26941,7190,29721,13890,24738,27188,14400,6373,1827,8342,20056,7436,8306,14440,27407,9542,29367,27955,26933,23370,27024,145,19578,5276,17143,24324,16264,6606,28168,13413,27760,12538,24902,26596,22439,14487,16013,20795,13428,10139,23265,13414,20321,29934,26660,4863,22977,10942,11417,27007,17202,26226,15469,9392,29617,19718,18170,20295,16333,14830,10467,21331,27517,24675,28520,17432,16404,5041,806,29909,11465,13040,11293,24342,20516,18295,29874,13886,26867,20083,3915,12867,25432,8892,21431,9746,19506,1192,19352,11093,907,29567,22118,10085,4242,20190,5648,6975,1385,27803,29792,29999,22661,4626,6279,9315,12209,15344,24353,8501,24699,16499,10984,10908,9446,10029,29230,5714,7033,9798,2765,27640,12079,26263,24595,2188,9498,2847,7889,10216,21398,24618,10794,12592,17735,14523,9742,12555,8125,2206,29022,4647,20587,5704,1755,1176,23154,21874,18371,5807,4405,19275,25185,8291,3487,25107,22107,25546,9714,10644,1779,4370,5790,18030,16823,2270,9390,11875,25271,7310,24571,11565,4367,19761,2086,6581,22401,24171,16604,21636,12022,3762,15852,1697,25360,25815,18774,15383,18552,23081,5454,5153,22452,9721,23782,24732,28480,4051,17394,11795,26752,27191,7850,15486,23047,26471,5753,12705,2261,7975,28988,7135,2412,11274,6809,14926,15064,564,8658,29998,728,26493,15966,16182,13997,29736,21609,21215,25341,25346,22790,2838,22465,4908,9394,6276,11714,7663,7413,9428,2928,18802,3364,10865,14759,18696,23251,10521,7970,9128,18528,7239,5145,15366,7751,20610,22611,21166,13129,27370,19003,29082,27026,28619,2539,29671,24906,23249,13846,17692,19669,1731,22904,15736,13214,23578,7941,14833,9870,9164,5828,21281,10370,16676,12077,14256,7950,14231,4822,1352,15376,23336,19450,29187,8631,25330,2689,20005,23296,19415,1870,5534,2481,20471,19207,3116,7149,10960,27165,15231,23334,29546,4763,1596,6898,25282,4696,20631,28723,25691,19773,26754,8107,10554,29329,15783,24433,1522,6457,1124,13639,27346,12210,891,3427,4759,26336,6052,2955,12000,25707,2076,6291,9487,26819,22474,14296,15995,27098,28419,18016,21058,6116,28202,9265,20750,27429,5787,1375,6681,20590,23597,1525,8774,4892,24774,2241,7332,21531,29500,13541,5239,29914,9116,22834,3520,2111,16052,4019,15355,26103,21972,22420,24018,18770,23684,20405,3248,26320,15296,11249,19157,4262,6862,11212,26382,3258,18655,9249,5566,28611,5050,2567,29280,13001,1383,10108,18980,26408,10369,8628,1771,26565,21030,16688,6961,23576,14884,319,13057,26789,7457,2098,23470,26828,6142,18354,6452,20529,27966,19751,21301,28652,25516,2946,10742,3977,15384,26440,3363,25682,1816,10384,5959,24446,20674,26944,13600,25000,15301,24418,25555,21075,18837,15900,11401,8290,6193,22022,629,17626,6477,25651,13144,23491,4897,20938,5863,909,27348,25254,9890,12638,10336,4175,23780,20542,27035,22679,8942,23694,22713,1817,11982,2559,683,6302,15834,23301,15619,16835,16007,6342,17068,5444,12282,16089,14925,7375,29032,26792,25169,27210,2114,10597,23958,19842,28503,19930,5114,9686,27964,12684,19154,29204,4171,28211,3953,22264,12478,15888,2882,12966,24726,1226,20136,9980,7521,16304,19592,4559,16976,20301,1693,19302,13919,29361,17529,17773,28212,25300,13841,12757,29730,12175,13537,22237,7243,11515,26639,26736,19194,4055,21225,22929,17429,1152,17768,8230,4821,1252,24434,5912,2144,10623,17505,29160,14030,22640,18384,21237,10458,7532,24198,26528,8000,28913,5991,6927,10828,12207,18626,29828,4169,11430,8678,23720,29858,8162,10349,10413,29606,27936,24177,1359,9406,26370,18823,4063,9788,13469,3319,15159,20583,18492,5731,8177,3468,18257,22746,14377,4760,13689,29147,21764,19976,19094,1328,19857,2499,1925,8328,21346,9078,6453,9205,28682,20690,3301,21228,10238,2850,20851,3267,24260,4475,28876,26310,6147,23275,25318,19979,21063,10531,13755,1869,20329,14432,29985,12085,525,718,2543,27609,9146,28713,381,25207,17482,24185,11103,1059,25380,23735,10225,12845,1292,19290,18970,9985,5081,3225,8361,24420,24500,15306,6502,17246,24444,24930,18374,13091,26958,24762,4577,21887,12329,9459,28724,23596,7309,25656,4961,18469,23974,5857,13989,11261,29755,21872,8181,12968,1080,5178,24486,9582,4801,3481,19590,23046,11357,8714,8977,22089,7519,12089,23740,15106,23869,18232,3882,1582,7321,19246,11183,17850,21321,22262,16347,13784,19245,25840,11894,16394,10427,5722,13102,6671,1646,14544,13933,13104,2652,24029,10158,5957,17586,21414,10946,6015,23213,16400,11345,23611,2599,4804,4396,15253,11332,23337,28808,8499,11767,29197,5769,12702,6078,25713,3460,16212,3442,21265,17997,1931,24008,13564,14812,23975,1555,21,18639,12863,10506,22857,7917,15812,20890,3179,14737,4713,5198,20070,19668,21236,7760,4412,25741,28451,21347,8780,14268,6508,27168,19006,7346,26296,29545,8573,25292,13295,27668,6098,19914,7707,28413,5663,19150,21989,18782,20078,1390,16853,19328,11321,23791,2342,19675,20432,23116,647,19472,16539,22210,13775,4747,25569,9334,7884,21386,2498,27637,15219,13999,29595,4947,8487,24232,15505,10939,8100,19464,12732,1712,5886,22399,5206,27725,9001,27999,26894,10193,26405,13181,11438,7622,13403,21481,11471,15859,6314,5419,3945,25690,20841,24429,11236,6920,28901,25317,3028,25835,3242,23380,13229,7580,3686,5988,1883,21871,19650,18200,11887,16223,18204,18402,22149,19926,6211,9518,21307,4510,13718,4539,13351,6344,23095,12257,1358,24890,22418,5451,26652,28564,20046,10542,24490,25779,29035,8045,27791,29704,16783,1797,4635,16412,12502,8713,14325,23137,6885,11320,15381,11410,7840,16570,2429,25513,8740,1381,23887,10291,16923,1836,437,17958,10851,12526,18269,24060,3855,27350,10016,17856,14520,18265,5830,3601,15420,5581,12847,21662,25047,18897,23323,5541,13517,3083,25915,13234,1528,12936,10761,19840,4032,27608,5426,7715,6737,13767,18174,25646,27863,10738,16742,15277,16175,23222,21490,15083,7070,24230,29769,3582,28927,28750,16869,2678,3827,20481,28140,8138,17063,2802,5360,21908,25397,11478,13235,10532,25426,19294,21355,10360,16658,260,27944,3139,368,1410,26008,26717,7344,25037,16589,13379,616,19679,23960,23746,9749,25736,931,2516,13782,1436,22045,24684,2683,19458,12850,8318,863,7647,6964,18140,3403,2119,26344,10465,2587,29408,1589,4132,20397,1527,19721,4388,18561,7574,724,7237,16553,8808,16962,8785,4855,18665,1268,25045,24818,25775,25467,9387,27630,15669,20479,13660,20285,11645,26058,9462,22909,19371,24214,14033,3956,17481,27231,23522,4994,22784,24407,13907,29621,5135,1987,4374,5185,12626,20951,16218,4188,19848,3553,20493,10536,24755,27501,18109,10021,25031,16274,21977,26392,24130,1625,13055,6263,2985,22453,18792,21956,21909,913,3660,24242,16174,11554,3504,7040,3356,9784,6374,13927,13610,22571,2204,705,15055,17273,7358,18908,2521,21820,27529,16380,4769,8305,14553,24791,6997,22498,7569,3552,22555,13864,29167,14,9135,27790,9236,8465,23495,3692,27926,21440,24215,26009,26291,28700,9126,26289,897,12637,24180,14566,7208,14365,29308,28514,17167,13824,19487,10957,19970,23381,9681,12081,538,4500,29178,15939,28443,9904,11085,10627,8546,20466,9330,12629,2087,24566,15885,23817,21688,19569,24799,29899,5716,26778,3828,3084,17763,10310,21745,17514,7598,17297,5139,15405,2806,3779,25517,25390,27601,17407,16789,9937,5308,2428,3064,22725,16029,29701,71,28314,12241,2864,18241,18828,25589,22230,16318,15077,8437,1420,19671,18297,7608,22747,25728,11470,11566,27645,11831,22608,29723,671,24951,11865,27425,26295,12821,13702,24574,11738,14480,25884,18128,23583,14521,15776,26959,17510,1261,28542,9045,20253,17098,3811,3786,9298,8540,20787,1970,19792,2656,4358,23853,25607,9110,6416,24855,19804,21841,23141,17026,4033,7733,20465,8982,17045,29410,9759,19557,10417,27716,1777,1213,27038,29900,13381,17678,3741,7893,17361,25686,28707,7286,6609,11385,23290,28517,9227,25940,26167,20237,428,20373,12917,1871,5829,11629,13416,27643,11383,1266,8245,9125,12055,9047,9779,28806,19826,253,9379,12771,19497,10588,5428,22706,18407,28672,3522,2624,21821,11546,10379,24409,22158,14850,17597,17853,15568,24207,28860,10363,26021,18043,27920,6277,9945,16496,17674,25673,16724,23217,13090,22427,6500,22426,22917,10251,25147,25418,23591,26887,7880,19727,14746,28244,24521,19910,29411,25407,10265,18471,12742,24772,9898,2633,14525,19337,9683,8799,25483,24543,8584,23351,28121,29574,9630,22341,646,3208,17604,1300,14841,22744,14190,4852,23467,5005,1171,9887,17845,18559,1724,27587,2755,14162,10109,6019,13606,9429,5608,14703,20122,25700,7041,18100,11990,8656,3090,8824,5024,18301,14740,12726,8839,25643,25956,17311,4433,15594,7300,20797,29906,11405,26362,6569,22763,4477,19482,7819,7329,4237,18923,15541,8229,4349,14556,19394,28861,12032,9421,1512,23181,6103,7017,29259,17782,1540,1614,16609,20038,17380,16571,1218,21902,94,23143,7922,7769,1144,11266,8996,6561,12206,11241,22660,7779,6177,12784,5569,26506,15446,5273,15729,9274,13231,15050,644,14651,8906,20091,1946,24953,3416,22276,27582,25143,10134,3913,19884,18346,5216,19989,20444,12724,3532,18504,9303,2769,20927,550,16616,25681,29463,20688,16987,9769,750,26155,5652,5587,11808,10782,19725,27678,4592,6170,21835,11970,10107,4300,14115,10707,29825,1196,4799,21886,11331,25765,13437,7776,15841,18531,10007,10575,10966,17703,18308,22928,1990,13260,7100,28347,24787,8843,11878,4138,5060,3952,20168,14539,4656,7411,19950,10015,27571,29596,11289,23743,8649,20159,21980,5719,15052,6775,10729,12100,17714,17448,28566,18631,976,12454,7081,24691,18511,6123,29600,22177,12875,17533,17138,10262,19148,16103,15475,7775,23159,10027,3542,7215,2666,2822,19613,14189,23317,17385,16092,7750,27220,16392,8561,22108,15712,2735,19438,5133,9150,25807,18487,17657,15639,21661,20102,17047,11303,1243,25058,27744,10411,11068,28078,8580,25902,14358,7128,16170,7241,16036,12974,23461,3035,10779,7333,21847,1190,27899,14194,29036,3835,26355,29891,29519,9131,15205,5799,12659,10017,9919,1330,695,17898,4678,8464,27046,27351,23676,18522,28274,27330,13147,16984,11011,20603,10657,4022,17028,23610,3631,1444,335,27458,28026,13452,5331,13219,29848,2201,17994,5727,23345,10579,7269,11548,29262,15315,29783,15934,12531,14781,11200,22550,5937,11866,29107,29294,3693,12410,18155,3893,24841,25187,28176,15718,29121,29879,17128,7174,13373,13447,3439,5138,3568,25371,3696,21807,1897,22528,26916,11711,24985,21665,15171,15824,26308,28586,24606,15577,83,17605,21524,21465,18199,5252,19885,18763,25202,967,29222,17470,8923,29457,24681,25788,8368,4843,25417,6601,23606,17756,20264,13985,8747,18614,3610,15448,23752,9185,28067,17877,1257,26771,17390,9601,26480,22456,11127,16003,23100,10344,12828,10847,23549,7851,25287,16129,25164,12901,18781,17434,19098,6341,6851,7141,25739,37,6648,5910,9679,1998,15246,4779,25560,19697,21295,4934,13939,24355,25652,15502,27251,14264,1039,27083,3737,9345,21987,14958,29459,28016,11592,22444,7432,11340,5758,19475,10510,2047,1889,25493,2643,28597,18446,14946,1583,3275,737,27544,12030,13432,26096,5200,9491,788,13130,17139,8483,23884,20365,13611,14836,4738,10058,1801,25824,4926,189,5540,18104,7982,28846,7055,15264,26643,6234,26852,21439,17991,27921,22128,16547,18836,29964,1638,17901,2143,11107,323,9545,23807,4537,9349,18010,11625,23569,1345,11563,2054,26686,18451,12800,27219,11593,21582,12152,13347,8111,17527,21937,9829,28044,16259,4425,4704,563,18453,23074,18810,13478,9739,12033,27111,17356,3670,9820,7932,19062,18456,15789,12819,7584,20814,15401,2775,2698,18080,11099,8925,6572,9729,5366,26862,554,29081,21885,7613,21205,20414,26969,26765,25265,6543,25230,25916,14307,2967,15772,24316,26037,17495,28296,1386,18237,29566,1513,4217,12039,14054,6542,5944,10905,491,11448,4487,2319,22209,14135,6306,3850,22136,28946,8527,4520,17585,20075,6330,4108,20467,1297,28270,20871,29623,20340,23454,8078,20662,8596,22668,11119,25114,7714,9197,25451,21818,10664,4200,17265,29173,25749,10533,20064,22643,15839,27363,24931,27737,9188,11510,18851,10056,20592,5490,11077,22712,28922,5927,26432,10387,22726,24108,17833,2405,9067,24589,5983,1912,19134,4968,11700,3210,22359,2871,16454,5188,12779,26992,14016,21762,24172,24526,16964,8444,28204,29397,577,6942,6265,29763,9856,7142,7583,1415,5108,3776,2866,3309,21576,3901,657,17472,3475,12260,27445,29633,29552,5324,25372,15845,13439,24899,5761,28285,3045,2916,17037,18617,1967,7202,6454,24014,21910,24292,16369,22624,5342,23036,4064,22548,27148,7542,7762,26735,1795,20282,8313,9914,4506,12907,1832,19508,6691,7863,20473,28976,21522,16269,9922,1164,11328,17975,6093,9697,4776,13457,22908,8026,19531,9768,8698,759,17436,11644,9000,23287,6744,3722,6300,24152,9074,6635,28890,6018,22383,5228,24894,20547,29951,15980,6758,19230,7687,25419,1569,24357,17016,19468,20461,10515,12696,7372,24854,23727,12466,4958,4581,28967,3213,3380,20712,19614,12497,8776,8402,3589,10727,10178,19817,4461,5903,13212,26601,16678,26148,4499,28955,11193,18988,111,27186,10585,22421,10710,27206,9868,1995,19351,4954,23586,8743,26895,6690,25913,27138,3151,24022,17486,20145,29325,5972,6703,18387,25102,6735,28049,16463,24823,6201,7617,19823,4594,15431,6071,12325,11830,20433,5323,27782,19311,18382,23176,3807,15519,2133,14425,23051,17786,8249,12114,18065,26853,19784,2152,1907,9657,895,23682,5158,14635,8436,12288,22605,17440,9886,19112,18867,12359,2824,17858,1425,19430,10663,3617,29803,8050,25178,8582,2358,9726,5015,18826,23699,26939,17321,5928,10402,9335,15377,22306,10843,26530,10677,17781,17471,10441,27169,17981,26426,22823,19058,8560,21939,26237,29853,29287,20259,7832,16695,20786,15670,16031,19470,7744,17040,29251,19166,23910,26019,1568,21485,5958,3300,1451,1980,28439,19109,28683,15661,28643,26171,4514,29551,3251,8618,21025,25117,17854,4708,17724,22558,4121,7089,912,23030,25598,29216,3153,29504,11916,14858,15454,11372,4253,11661,28795,17651,996,1937,27838,10062,4898,29682,13961,12639,24833,9625,6461,26669,11632,5624,28939,13979,28646,24961,8671,3738,11305,14892,28242,11953,14889,28065,25510,2245,19942,16010,1648,29194,20418,13161,4208,25663,6309,28449,28251,9943,17757,26981,11317,25296,15921,16664,8594,26751,25740,16261,9019,25922,10160,23056,28873,21052,4574,25240,26510,9419,28448,20869,28398,26964,19161,2840,1445,3374,29054,19605,1100,12762,28366,19866,9324,17039,2562,22179,3345,1657,16785,16384,5086,28021,24736,1961,21464,19256,15197,16754,28581,14206,7785,10115,15158,29957,10325,1129,21153,23205,5706,16415,21146,14857,14730,15484,6928,7512,8686,28738,23489,9611,13652,4404,26365,461,27913,16989,11057,9022,4895,3426,3720,11899,1492,1642,21560,27474,1424,24223,15130,4615,17592,11682,15390,25849,9864,6745,12665,4886,18203,8927,19538,20805,21585,11217,11024,4103,21734,11525,18976,26061,17921,5883,27276,14341,23560,16283,22021,10944,5379,11652,12469,20125,27257,29319,28389,15692,19368,14665,29139,2402,4216,14919,11691,11218,22350,10142,4929,17001,11040,21127,6711,17658,8346,24973,22538,20759,10739,11589,1158,3068,14311,7896,14106,4671,8039,20268,11856,17229,18712,26453,10970,15024,4878,2644,25526,19369,6266,2185,22005,8653,7882,19087,24015,24197,3297,1008,22352,1223,12272,3435,15422,2739,16034,17923,16239,13958,20569,2588,15970,1542,18520,26519,18707,12462,3457,12455,2171,22461,7245,8049,2079,15399,4133,8043,20663,24277,26360,8813,9986,10333,13331,15675,7046,20171,8718,9127,13586,8396,8793,4846,2419,22366,12889,29298,19204,24270,24068,17301,23999,14702,24694,829,25158,15398,11382,15419,13894,27896,28610,15508,15871,7986,20625,25818,19427,20555,22074,28884,16905,5148,11468,9654,14204,23712,28960,3898,1406,9194,1803,21250,27334,5854,20211,13233,8062,19572,244,12323,21411,24530,20448,10038,15674,20165,21883,26860,7781,17281,3082,17330,24151,17225,19703,10743,8877,9646,1000,18331,21054,16711,6839,25887,24768,12167,25716,29342,14409,22783,1178,8403,12653,14583,9012,28979,8007,19156,21668,14489,8190,20897,6736,5121,24343,16078,19996,560,4576,2820,17820,18276,28194,1466,17156,23279,13656,17203,15829,8434,16769,1482,17249,11811,5749,13822,29675,327,29148,14088,16447,8703,27620,29832,8040,15107,17158,19298,18663,29339,25226,29137,16219,27774,63,29215,24349,29946,14203,29415,21334,23809,20932,7616,21234,28278,19688,23282,27336,25218,1595,2770,16229,11076,7331,28649,23015,15416,18067,29969,21486,17159,3551,24975,11148,12916,13830,2400,23515,10722,8621,25563,25279,9661,26583,18376,7853,15374,2463,24011,13565,5356,23428,27749,8592,27036,27595,20560,14614,24587,29869,17165,2607,25018,11673,9966,21070,24131,20653,10953,12151,11975,2035,1433,8563,13810,29916,1903,6411,15690,13477,6313,27271,25891,13376,9511,28775,11070,15984,16792,412,16722,1450,8538,9982,17906,4359,23423,22646,15002,11300,8526,7979,21565,29038,17825,16096,29784,28550,18070,15168,14586,764,12104,11718,4220,15117,14112,19876,25911,20002,7720,14254,11707,1577,12906,25996,1037,22766,24129,16862,3080,24163,232,14066,26495,11184,5551,21476,24608,17051,1985,20967,24935,16612,21774,11238,6228,350,16322,14717,13615,27349,1929,28129,5821,13397,10701,22096,142,15534,514,1102,10398,6351,27810,25959,4815,21546,10698,11867,7837,5848,24804,16337,21134,2258,27119,611,1431,26971,1153,27650,21263,24122,15500,7667,15182,9153,4784,21715,6013,3530,24713,9708,16889,13068,10836,16265,22131,15916,11456,4711,12694,16202,19228,28506,21842,19849,12355,25415,508,22251,18150,6184,17734,9554,2785,10281,7511,20280,22572,2088,2326,22603,20097,25109,3010,2902,17157,29126,18148,18505,317,13990,16837,27201,9200,1307,24503,19474,20203,11449,28473,11227,12580,763,28880,21471,28500,12578,22890,4299,2650,26728,19946,29125,200,26047,1842,20106,9124,26469,11147,10566,12681,17689,28346,16306,26800,18526,5553,28638,23121,2131,7223,9182,25492,23200,21667,7672,18147,27559,17272,10834,4556,15177,26595,3101,8606,28452,19182,4554,7953,16332,26956,15098,20050,9370,10143,9418,22769,22698,322,26727,11572,8751,10180,5675,20799,3657,18673,6135,12047,29911,2299,28184,5876,28357,165,8175,28022,19626,22505,23358,23934,17062,495,27585,515,6296,11913,28561,19239,24834,11180,29557,13793,5075,10812,15548,5059,8861,19579,17535,8241,3921,446,19241,28198,19009,18189,23184,14780,17868,21169,21277,2829,15138,6068,22826,22413,6122,26222,12075,17437,25490,6579,16456,10147,12021,22673,18630,25071,4020,5224,15378,4377,8034,953,25693,23623,12830,20484,15085,406,1362,7997,20710,27569,13604,6445,3246,9782,2126,12566,19439,6317,6512,24019,10602,25108,6650,11755,11254,20093,5781,29953,9457,6614,476,29791,28875,21641,18715,21970,21244,27473,12285,18013,14363,12023,8164,27943,29638,14710,15683,17441,18565,7065,19271,24303,20563,429,24099,13871,12559,25078,28987,6506,18873,24794,9399,2312,10804,29235,9372,22464,12855,14896,3540,12091,26682,28192,3900,21004,785,14491,4654,6151,26536,27940,13732,28812,11957,15542,8897,7008,13853,7068,19980,1716,9743,13649,15593,23769,22127,15758,20514,17973,22680,27985,5811,6666,23393,23155,28990,22669,6080,11018,17661,20496,1830,21421,25146,19777,7756,4446,29212,13603,22969,28786,26029,5144,6529,16004,4257,12734,10988,25245,15517,23195,17795,14787,20909,13949,21600,20902,20995,4181,18928,10254,24513,7337,19812,24309,1940,14293,1038,26054,26053,4771,8384,60,20068,26230,12886,19951,3676,21406,2746,13120,1524,26680,5585,18336,2803,371,24216,14284,16903,549,26201,27874,21189,870,3751,4400,26399,6005,8076,4118,14950,6834,26631,6857,3102,18254,17419,16186,7630,917,14339,8761,29469,22976,24393,26048,12056,16941,14046,26089,23933,28947,24873,8989,9253,17557,11667,28719,22159,1922,5479,4352,21487,29065,4773,5878,28391,12689,20320,11775,15372,5547,5509,4830,8146,23002,23140,20813,4209,8885,4631,28664,19232,29227,10419,3238,28076,16627,3943,9536,15061,6239,13692,21501,3764,24482,2451,3590,29620,6808,2109,29365,17672,1781,2628,16767,22562,5191,10424,25246,8025,15767,573,11121,20327,21349,22609,26831,13580,5893,23852,12977,2155,29229,22110,10890,22229,23875,21961,7674,9692,18574,15078,6521,25797,16981,7677,5845,17580,6311,14096,25932,12876,22855,19255,8095,27674,10937,5036,11573,23774,21605,12157,19530,2910,18212,4712,15638,3271,3768,11282,21670,4078,5563,7224,27463,28687,25861,26913,2397,9312,20204,2460,1989,8157,26983,8126,24167,16199,15202,22618,4877,24447,23329,26811,5430,7016,18102,22339,11389,23849,29822,21094,4973,8995,15367,9397,8478,22323,3725,28154,14071,9822,20599,6400,27756,21494,19176,20698,11853,23478,5046,20121,3639,23349,21691,20807,29234,18884,51,507,3392,27819,10357,22460,27454,29774,12376,20972,5051,20804,17010,2530,5052,11420,3450,9158,9846,15799,4131,24209,21772,2413,7874,28203,12009,17208,9595,2581,29171,6482,23090,377,16952,27372,10104,4302,18087,10396,26764,10792,13301,8666,21067,14600,18727,3546,19045,28206,694,28214,19044,4041,17896,29301,1311,21754,28217,1775,20153,5995,6293,8608,28257,28659,26837,403,9564,21997,27066,10572,6541,10884,5689,13539,26232,9472,19900,9941,6381,28902,7427,5254,7038,14187,12459,1043,24076,14773,9347,14930,6877,16260,2680,29571,118,26363,11891,11596,27911,1156,25128,28784,630,477,5713,1231,29902,17498,4912,27286,6352,8711,7713,14814,13124,2226,18421,19922,3578,27835,23417,19496,16638,939,11496,26808,7938,3662,22322,6651,23384,8547,13503,12216,18766,16414,15214,176,25249,5559,6269,6588,12677,2594,29209,20367,29887,1600,12344,25021,25503,1189,12882,23359,26930,6099,19691,5550,24740,20065,19894,4163,18736,9039,5515,14355,3802,20568,27594,19875,25010,9449,23208,14545,24360,5868,18205,15597,8669,3978,24384,14631,25770,24299,1432,972,8246,7900,19919,20123,9140,11190,28483,582,22592,15960,24986,14063,5514,1902,24957,17924,24069,4667,24524,29866,10987,12598,5981,3876,23214,27572,27680,17425,2380,13925,7485,15005,77,10756,29453,28522,2784,23906,8705,22132,12511,27143,10051,24054,22140,1028,26923,7654,14159,29257,27949,7935,19828,18223,20266,29431,26836,8753,5543,19379,24225,5249,21345,8543,17140,3800,11488,21400,29062,29938,13928,12551,18930,1083,25309,20196,2750,18660,18974,7988,4306,6686,10964,22731,5889,4135,5261,276,18144,28221,10679,24423,14448,14081,13484,27391,26198,25688,26138,24051,23803,22934,18079,9824,27128,1719,7748,23639,8550,24403,10613,22935,13077,18566,28677,11518,27310,7001,2213,4007,6523,5094,7488,23443,14990,29272,2291,2223,6683,5463,2520,26078,22527,24263,15667,14564,24719,18353,18318,8682,17818,25129,20785,19249,13385,23481,29134,17042,9836,4950,8364,21625,25323,416,21719,28850,3933,26676,20269,6705,4887,11869,3904,13834,28985,1655,6916,24059,4588,765,29679,14456,26665,17502,20808,19702,6772,19689,6801,7466,502,24017,18955,25967,22547,1109,10564,1520,7250,20302,7301,14083,14295,4585,110,11536,17256,18365,18622,3444,6888,15787,26183,26204,8980,13675,11091,25697,19800,3804,28841,29046,7103,2483,29193,13561,17233,18512,27895,28910,27960,9029,18429,18385,13796,20497,20003,1770,6739,20602,26139,24979,6375,19399,6791,14579,23872,2092,11958,1552,24756,17258,8377,21213,10397,13677,19070,21330,10624,9524,13874,17616,14146,7395,25617,24236,11934,18362,7824,16443,21036,21142,7849,10269,11655,21614,17849,22792,5124,8815,789,7383,9156,2655,8601,19561,1387,3349,1800,17614,10126,25784,24070,4334,27241,23532,680,23904,5157,9493,6113,12353,10185,28167,7218,3596,26389,28300,1045,22006,1392,3966,22104,29905,2512,12244,16497,8379,25026,16994,22899,17955,22622,19067,13901,17554,16808,10033,28632,11631,24629,12991,7469,14699,7746,22930,14816,5359,2008,24314,15425,3989,6095,24881,27423,20781,24083,4151,12615,4549,27636,27047,27477,15009,28776,23668,6358,17100,1493,8816,3286,10500,4297,21550,20293,9142,28753,449,24348,1472,20998,20086,23981,12441,16780,8297,25094,1606,1539,28447,13634,24570,8864,27293,9190,20498,9762,16450,11936,15985,3557,12211,1736,3994,12500,25023,21467,13034,12372,12971,25732,17837,7564,23858,3479,25781,28650,3240,25709,19412,9033,19657,2224,23785,5907,28538,10428,7374,8304,15118,23562,14639,18888,9894,27632,26633,15417,11441,12834,2344,26250,29987,6639,2661,18153,13795,26850,13049,885,4155,9932,2464,4687,26616,7496,25813,12788,1115,8975,6179,28562,10399,14903,4582,29042,28258,9360,3707,1721,27826,27851,7745,18008,25724,11624,26984,19443,25848,3482,3928,8591,12453,18001,5976,4720,8153,2310,17889,1067,25988,12663,24470,10863,15864,19528,25304,5357,16777,29158,18162,7930,16083,7096,13294,4540,20059,28027,18335,19486,472,14496,21834,24888,20169,26494,28040,672,22770,25515,15913,20849],[5065,16457,2038,438,19185,20442,23548,17013,21742,9958,23500,23480,6194,21493,11433,26562,25888,24920,11087,15839,11312,23532,6251,12975,6425,8142,28939,13852,27992,3683,24325,27398,7835,14981,2981,26799,6991,28046,2521,24006,5134,17900,9280,7580,14986,552,23595,20856,2097,3835,6981,19364,22886,615,25452,25800,22712,28418,21155,21898,2860,10795,9778,15638,23481,23510,28339,29844,12380,7734,10976,22913,20665,6595,10429,23049,17357,18900,10784,7526,1081,18671,10816,28941,20314,27061,23034,28382,20678,12519,25517,4425,5320,28379,2831,7766,29930,21677,8877,8130,28006,24986,4776,29211,25219,1855,22508,24330,4659,9686,20059,13419,25244,17912,4287,6064,1972,15285,24524,17564,18659,4275,19109,17943,31,12711,24965,21257,18652,1991,23176,7575,16956,28313,22345,9993,20337,15594,28248,18938,23668,14204,1832,17975,10172,23687,4750,2724,23,2189,18424,17687,7545,18152,12135,7022,20497,25866,24892,25081,7960,17020,2941,11166,8967,605,25126,463,28098,5483,11657,21787,20500,4024,27319,29382,11037,29277,9892,26260,21959,5931,10015,15931,10751,7208,10442,17655,18694,20213,7948,17988,1956,12642,10833,24013,9863,18794,25433,24247,7701,23769,22206,13198,22230,16269,2222,5646,14685,21301,17153,5535,7635,20946,14590,8379,21949,27826,12692,28656,20727,23492,12446,17447,3395,1021,26752,11271,25496,29435,24745,15350,1518,16382,2213,20135,1813,13424,11999,12208,23783,22879,18212,298,17940,4766,17875,28416,21506,18975,26347,12895,4039,6306,24380,19566,19312,9578,10446,766,7628,9278,12039,1154,19561,25230,10473,17499,3414,11068,9665,19112,22966,15269,9975,7658,27346,15571,27106,16493,3101,13927,11570,3598,13740,3467,3065,26657,16477,25636,28140,18651,15881,19318,762,27724,14440,4759,29347,2616,3999,13535,11545,3868,11611,2910,29025,26091,18386,23225,18574,19282,16727,5529,26668,7532,20464,5218,3518,16125,6321,3181,20818,27980,17889,7143,23107,18914,4279,20404,51,16576,4705,10021,6082,13036,14707,12445,21354,2523,2126,28749,20347,579,13883,20357,1566,28284,11847,21357,16419,16570,23536,13158,15090,10609,23619,17213,5794,25954,17373,8224,19228,17259,20537,4353,1448,21419,10659,21363,12129,14034,20208,2847,23975,27545,5153,24531,4912,11664,22890,26289,20633,6844,17576,4296,27559,28984,27314,2183,17654,23099,25822,2742,10457,27662,26440,8308,18280,5756,27057,22877,19752,16820,22679,11268,11019,20897,13372,24575,29093,11,10147,14922,4744,19727,28271,9956,27185,7685,28448,26131,9813,23996,1775,27855,13490,17070,7699,16763,26264,4588,14079,25549,17579,1759,21516,7372,17293,4464,4645,14153,20075,16101,21192,5664,27239,11536,5582,7056,19847,212,5230,12723,8321,26635,21937,11927,25297,22390,10510,24171,22368,15513,14702,4959,730,22551,8809,768,19396,14499,7095,19872,27389,15382,26035,18640,4520,5376,12320,108,22403,16894,737,18473,3600,22955,8270,23521,7886,952,9165,1176,13241,1327,27062,26730,12891,18766,4251,5960,17317,8028,6876,72,18726,19763,9965,11153,29234,6870,25499,23126,26079,2984,21794,17100,2274,2916,10515,17322,13067,18733,10264,2346,25325,12823,23443,19677,24097,27575,29401,3426,16046,5993,3731,12058,14018,24880,9455,7933,28254,28048,8041,28915,14789,28818,20358,27719,6122,2161,26310,10129,26357,276,12106,27047,12250,13441,25232,3891,20550,5591,28822,26183,6774,1869,5518,28725,25575,10492,5940,6303,15665,12301,8374,20634,28980,18723,17318,21774,15146,23503,18033,14503,5830,29744,22610,5301,1837,10108,14899,11460,300,16716,1258,2143,15178,936,29546,16282,12720,4822,22313,4591,836,18702,7202,26173,4487,7970,3308,3847,18740,11998,19973,10949,3244,11870,26037,19985,21672,5551,24262,17729,10588,25106,5767,779,28738,21484,10433,22430,17072,15742,17528,15707,14708,9452,6270,17034,4388,5523,20928,971,13931,14796,4015,21759,25298,22974,21626,22081,18784,28682,7757,16892,3063,25014,5170,19410,29627,26964,25676,1557,8638,17848,17310,5066,9329,10178,13458,15403,1342,19058,27391,20906,14428,25327,2501,11828,6622,18967,3206,23615,18873,99,22070,12717,8399,6327,1196,19317,27024,12756,22876,20382,9132,19685,1981,18757,19266,7100,18667,6601,9509,10308,16873,2207,21924,5821,27205,24164,1741,26537,10747,20592,17976,25912,24661,7258,17730,8556,20997,14001,24913,1062,27096,27818,3733,12884,18871,4577,9367,20534,13326,11307,27696,7093,7005,27490,11569,26979,22501,20182,14539,21450,10905,16783,11876,23104,26869,21311,18317,21502,12019,27600,13031,24927,12785,1431,29795,24267,18463,9331,16179,18340,7087,20120,25272,17761,14785,21341,21858,22942,13249,8115,6396,16076,24153,17292,1647,14722,12133,24282,16703,25972,29069,17097,17303,24001,14793,10571,2234,4843,10479,1041,26394,21886,27888,16334,20758,29947,27677,23969,27751,26851,19483,3496,4340,24980,15562,20415,11873,3418,27306,28177,16691,18088,10443,10969,29702,14667,14633,23782,24790,13699,13640,11514,13683,4316,16071,29029,1560,28315,3632,2530,10660,7849,24746,5849,7252,1643,6395,28694,17386,5511,11403,27782,12236,18165,5495,190,19067,16174,17174,4515,76,19259,11357,25948,7298,7837,11261,2385,2138,7266,5233,25953,12341,1808,26719,6751,22708,10369,14084,28496,248,22957,19505,1416,6758,6958,15379,18470,22029,20444,20911,1895,6089,18595,13690,12577,28548,2035,18032,23560,16939,5172,23870,16103,11306,29306,29966,5185,23684,20839,13050,10521,14471,23992,8136,5369,24003,24779,15721,22258,28796,3342,24165,1546,22281,15778,28546,15082,18697,19529,28911,9393,22026,20478,11575,22426,10349,15384,27465,18343,16154,26626,16953,17420,7591,757,6131,3182,20143,8484,22777,12539,6868,12021,13947,28205,4202,20729,29233,19870,15268,25605,18722,3513,15179,21024,12867,20102,22536,20968,20234,12724,29381,24184,27735,4644,12180,21082,7605,21833,18885,8585,320,9258,2704,14003,27543,6309,17199,26787,12315,28914,21812,26942,10868,7289,28567,2686,19229,29913,13710,3871,3231,17381,29831,21099,17764,17151,21298,20762,14250,2759,14731,12419,23185,22684,21782,15996,17308,9694,18205,2612,13763,15216,24161,10464,20316,19072,2966,21556,16182,10698,10033,2356,12123,11668,10764,764,6238,5552,17367,3371,1157,13226,4899,22256,10317,15953,23139,24635,7481,29214,10568,21720,20867,23526,13146,18172,26541,1336,26608,21478,29762,1490,6017,28212,29140,14725,23700,19787,22333,26266,19704,26989,23473,9123,27969,24285,26458,9392,1014,19382,23325,4160,9075,26048,26594,28820,21050,22527,25626,21652,27976,15928,26985,11026,23557,22326,7466,18082,26163,14586,14298,17146,4521,25678,25332,19017,352,3846,4941,19781,29842,7243,24742,6301,16470,13290,29010,12775,15682,13682,29240,25823,955,14895,4525,21766,18460,857,657,7878,5499,29676,9046,14626,17519,11734,1911,29366,5038,2107,13126,25762,25507,9475,12864,1159,3369,7467,22933,28655,16036,20857,21485,11531,17069,3066,6218,25319,20152,1771,25261,2569,5681,4511,27302,29315,28621,11807,7678,28224,2401,23364,23134,4276,19011,11050,9606,11018,2816,15919,26819,26912,20386,11247,13550,10736,4144,9775,26666,16361,21624,13582,25393,24696,1120,6815,16336,8794,22711,15293,3544,12273,18076,27741,27105,11560,7769,13618,19502,25151,2428,17454,10562,20636,10734,24382,6816,725,29461,25225,29726,29593,2631,6110,20470,2576,26503,10093,5116,18366,22292,7944,5905,5445,21664,28658,22329,13515,4660,6147,14646,22993,11108,12426,12948,22223,16815,17275,12974,2262,26980,2992,2701,14455,18297,14154,15776,27941,10144,14794,26829,7621,1297,6967,11083,9731,10261,24895,13525,27433,23073,5442,5791,20759,16980,3291,5389,8174,15888,11231,22099,1898,19284,3586,1692,27235,25554,29062,7565,14524,26330,3042,19456,15541,19627,8452,14009,24228,9494,24642,17059,22395,8196,14550,5402,817,1535,5779,3084,29996,15334,5887,1412,1312,21021,8633,6756,24127,23851,4138,354,3061,6837,17368,10856,11685,27666,23138,27305,23751,12352,16751,2938,8801,15075,9972,20448,5179,5979,21901,16005,20809,15755,17148,4541,377,9749,3742,23193,16098,26434,9268,1136,21612,14498,27834,9017,1254,27526,6488,17516,23387,24039,21951,14601,1002,17532,7506,4231,28028,867,16385,226,4910,209,15413,15894,3689,13021,10664,27965,22885,6557,599,24491,4569,11621,14997,10714,7376,4407,14872,9823,25985,25456,12670,24784,10020,24447,21185,6094,4777,8333,18240,12316,12116,29791,8094,19241,29808,20688,18686,96,11498,7759,20193,12764,20876,6683,25816,9644,11992,28449,6678,26750,3168,28982,13032,2165,28026,13083,17019,24173,9626,12456,18676,10381,25398,5925,7987,19792,6450,22562,23665,12953,10067,29754,13870,26099,12235,10495,28318,5619,15010,26194,16295,5178,19542,4648,16268,18138,3441,25898,27920,27136,3534,24839,22992,11432,19577,17845,12140,12288,1731,11983,28690,11713,28118,13894,5968,16314,22078,19536,531,15353,19296,24901,21184,14311,15617,22998,19019,16270,12588,14031,23620,27993,20720,1839,3556,7498,16077,19936,21266,13168,468,21365,24683,18916,20899,28509,15490,24971,3985,454,18091,7426,25632,6039,9055,11729,3127,1543,10458,892,19387,4724,10788,3914,24710,14885,9970,6779,24950,20188,3585,24955,18678,23243,24418,16616,4317,21126,28431,13560,20424,11046,8325,6615,2432,10086,12190,7669,2001,17509,15378,10997,13665,14647,20957,21695,17175,2219,2921,29055,17479,21154,28003,16881,7331,3790,1673,3477,11510,23671,5926,27181,23538,6830,8861,22064,14416,18744,4182,9540,6643,992,20106,24858,8767,2545,333,15309,2045,8976,16224,13356,6278,26100,21592,9004,3112,7930,23482,21370,4906,3075,1099,487,7956,9517,16918,10498,9106,1599,5823,13309,6965,267,16480,21281,5888,29940,1879,10309,6795,15788,29535,6499,10066,17901,23411,11326,27674,28321,27547,5275,1782,23056,18023,26287,21039,28079,24988,139,29359,8272,27276,3828,4126,6892,12999,26359,1425,1435,25118,23168,16712,20789,13790,22197,10758,14178,2391,18701,2900,4826,21900,27401,289,29954,28964,15196,18029,10587,8569,8764,1788,3250,440,21480,16192,28552,12761,24415,20409,4200,19457,7691,15200,2417,705,27172,122,8348,6057,8040,6517,4108,807,15425,20822,20939,27485,28879,29367,26522,29088,18393,15364,2493,5607,9069,4702,15344,18288,17933,9560,21663,22603,17417,11056,17984,26525,19309,16469,12060,26080,16239,3958,26156,155,1507,7011,15157,7928,4771,20258,25753,2881,7388,1719,9741,5163,1169,10790,8185,19589,23694,11857,28968,7558,21659,1185,12233,13906,7847,21832,14544,2256,28015,1314,26762,16973,8035,3037,25406,16503,24553,15728,18174,4709,23438,1985,1499,11568,10472,20813,16086,29521,23461,28243,13182,28376,15660,17952,12548,12162,14083,23389,10869,14609,27021,4191,8709,20913,15080,1322,11804,29020,19592,23253,931,14436,26605,11294,2763,16911,7650,3294,8928,11909,17164,15587,7457,27200,19918,14103,26263,1949,2313,26973,22517,1489,17444,27898,5807,27397,11349,8888,5827,21946,26622,15329,13708,14822,649,14779,1432,7429,28836,12198,3058,17638,2484,12275,16846,28793,7687,18859,13136,15347,2574,17675,3545,3302,28097,10615,22215,10041,16359,349,1616,27324,12960,29225,6993,22721,11264,15772,27762,6842,6470,25402,2962,28421,6370,13009,11021,22157,25185,9226,20128,26768,16106,21733,8890,28895,1079,15926,10248,20938,21584,12013,4055,14431,27630,22796,26655,19970,11854,3306,4290,17962,29684,6419,20313,10025,587,14065,15174,17280,8261,2315,17665,21927,3853,5339,17980,22818,12009,5465,7825,9620,332,19947,26808,23129,27101,29200,17635,8204,15444,19156,16743,26237,2879,19938,3560,9065,25304,7662,4045,1555,25205,16315,22928,22691,27118,12274,18094,20140,26860,16568,659,4646,13332,20400,19670,12736,12428,16519,10849,10269,13709,10169,20402,22189,7078,16019,11184,13774,9044,15278,10518,8383,18576,7622,3316,6140,29534,5532,5908,24543,23651,8703,3303,21619,16375,21920,22264,26463,9336,6750,8382,29928,19224,13732,12064,23184,20259,432,8776,13389,10374,29016,14545,8510,28724,872,16958,17225,11761,2834,15912,13323,25275,19217,23614,4183,29751,24983,23727,8113,7117,2926,16521,711,8207,5344,21715,17603,14196,8567,26360,14109,11838,4012,8406,6994,8983,22074,29344,28365,29058,16561,8951,4475,11578,24832,23622,18662,9774,29848,3884,9260,10411,20694,29639,12245,11726,29723,24505,15692,22398,29708,20886,19448,7741,1267,1368,5870,14384,26713,23174,18233,18040,23427,567,20069,18758,4229,16675,25103,12502,14474,4219,13131,18331,16875,360,11465,7695,23906,2702,3917,11717,19478,17799,26749,2793,22695,9897,2471,25579,13474,9460,7811,8135,21543,24652,25212,10460,12858,9072,7247,3730,9143,12757,29002,4778,4967,28462,1823,4271,24621,8517,6,19625,2634,25267,28525,15565,15271,13327,4241,7145,20725,10273,22432,7573,27858,14092,10803,26426,13160,7761,20329,11448,11596,24764,18027,27656,26861,14323,14292,1460,19910,18944,22352,21027,18993,7609,13101,17325,26513,9430,26803,28625,5569,15608,27746,7992,7839,18683,29111,15143,19403,8707,5104,2602,12530,24833,29067,28847,12495,7879,4632,4680,19644,2478,26647,8490,28227,17198,16258,18876,21930,8957,6473,13439,29649,22859,9853,13274,15031,13420,10840,4397,27525,29040,947,26902,3758,24714,11109,24450,23091,6857,15370,16003,22171,169,21816,14430,1683,9437,6744,19980,11418,3557,23708,14598,17334,27560,14715,8960,29885,16636,26773,12951,20530,21477,488,20088,27651,13523,43,13561,18872,21675,16107,15077,9317,27962,9372,4894,29919,21945,106,20814,11566,9581,3894,6639,16914,19941,15117,27712,29490,5472,5974,21538,8713,26977,1710,5787,24087,13611,7352,18203,7071,3562,6249,9117,1348,3803,24344,16012,9109,19892,13171,26021,943,12496,11627,6614,28086,11731,16495,13202,9764,17348,29304,13108,27470,20850,3922,21498,28646,19035,7408,4393,29787,13437,16205,16536,27916,13720,12777,26583,2950,18157,5773,17567,29022,18213,17510,13229,21201,8354,18775,5130,6856,28218,8043,26365,15995,25484,21162,29588,14493,28425,22910,4488,4592,28707,27277,20702,17109,27229,9008,18430,14720,14917,21615,18606,25951,28962,29474,29238,22327,26582,5,548,11341,4380,29287,9436,25780,3511,16806,6071,9154,5278,15804,5536,14681,25324,2840,27104,15731,14090,29084,4672,22277,26744,18251,13834,23562,9433,5377,6199,10200,17283,2014,22518,15410,8350,738,15041,29763,23830,15454,22216,27159,19471,11933,29578,8884,10646,7681,8030,26677,3035,14482,24789,10842,8805,28468,25062,4284,19210,741,4103,22720,29322,13899,10978,7448,20423,9067,2163,9285,25439,28022,21315,8314,15020,7918,29305,26745,26250,27802,8741,16014,12924,28813,28168,16272,257,26297,4323,27422,19261,26697,17762,4781,5009,7301,21059,12079,17049,20949,13382,7316,26181,26261,22626,2475,27036,24180,25169,2785,20040,8660,19917,24962,8467,27445,19091,18073,29896,17927,19628,22822,17150,25751,18902,2344,15005,13059,2140,12306,5929,7263,18888,9914,12811,15754,10642,25749,5192,8678,12980,15073,23862,16583,22791,25226,7840,2449,26122,6455,7592,2247,18860,6667,12571,28717,4877,28788,24866,27382,2659,22982,18450,24700,9020,28408,5857,3738,7065,5853,23205,16938,15911,27448,19070,15860,1772,18771,16698,6265,13047,22134,22754,19400,29557,1263,17217,8726,5613,22165,8414,1995,24756,20420,27731,27728,10221,4050,24909,28807,21974,10942,11662,25013,12372,17179,15414,15232,3574,457,12087,86,3233,9489,19119,8751,9891,21483,20093,16621,11298,29804,29929,15781,974,16544,21196,12570,26028,29678,26746,23626,9938,8003,13747,20643,1996,1383,10992,8973,3843,20671,18133,12683,21509,28910,12904,4815,14191,14463,9338,22110,29180,1909,8141,29481,21931,3347,14043,12248,12154,25525,24847,26240,8613,21941,26041,10759,9324,24838,1935,2008,20853,11922,1947,10278,3592,19365,18258,15331,8211,21559,9414,17688,28672,6792,1907,14782,12086,12672,23852,13163,12735,23161,20738,26728,16992,9805,5544,22406,8061,13897,26770,15938,16840,29151,20742,8434,26978,16373,15523,15340,27052,27110,24052,22437,24989,7751,21424,11244,29895,26177,25363,13100,29045,13278,3691,14798,22218,21573,1655,16043,18692,24693,28572,10360,23310,12544,3055,13659,20151,21220,20629,20965,6230,7950,6034,19162,14512,27001,303,11241,7209,6880,14433,15949,15281,5211,9926,15639,17087,21770,28706,9534,19907,7170,4214,4485,975,24967,1362,20294,22882,11422,27595,3017,8121,25029,25,23859,9447,5262,14504,20953,885,14841,12311,4743,24589,2251,23767,13875,26812,12839,4911,926,10084,8653,3381,16697,26939,13557,9366,2817,22245,15438,22727,27163,1705,26904,6650,28599,7996,23682,25027,17209,29976,26229,9167,29545,19009,28148,18926,12338,26848,6623,18786,8824,8248,19552,2913,27287,18079,13259,6281,19603,20558,465,5980,3771,11744,24060,20732,14879,7492,560,17503,8454,27648,22425,19420,6769,7317,19848,4995,7705,21583,10387,2672,9743,26012,27756,20626,23792,26790,19350,23689,10154,9161,15675,8267,18816,19932,29642,1720,25989,324,13619,20111,15813,7228,19709,26682,23232,3423,27961,14969,3823,21429,23050,27838,479,22355,2771,21486,22918,21219,13224,27222,726,9358,3661,13519,26831,14564,13234,1761,19816,10347,4121,14169,22257,27361,7954,14011,15662,11556,7698,27187,8842,21444,4566,12563,7404,23324,25784,751,3191,15098,26111,4246,29458,15678,28368,19381,17216,18316,20010,17741,5254,23765,16902,5440,22932,21845,19675,21384,6905,4984,10721,26692,21778,11623,27747,6114,15043,7299,10105,10713,224,3444,12130,14473,10383,183,25307,4617,17722,13129,11421,9080,26055,24392,14692,29597,20499,5649,4902,4454,3194,3023,21207,13361,17022,9375,21276,8485,1302,3422,9487,17626,23628,10121,1206,10325,23391,19367,29989,1922,16849,11281,4136,871,21111,899,11285,8757,26775,21841,24292,28904,16549,11080,22259,23582,26375,17172,3204,4283,27634,11956,23317,18928,1125,9301,133,21925,7171,12928,25960,1748,13256,6552,18572,12262,18455,2159,28349,8626,20788,4280,12812,17868,24315,20917,1568,28155,5725,14984,6794,10912,21181,25204,3874,5383,1934,2691,10843,29357,3657,357,420,15710,29079,25595,23475,2665,25773,9971,18890,8685,4406,22213,21469,19524,27259,6940,28547,10206,20277,23938,22203,18311,20369,14301,14740,29980,28241,4263,3379,16160,26497,1602,12734,2824,19602,25670,19499,4755,24059,11126,1938,3815,16739,22351,6328,25583,16446,12292,7778,28784,11497,29979,1800,5260,6170,15821,2997,25390,4477,28581,27572,8369,22889,499,28163,1558,24232,2093,9740,25036,4540,24636,10452,29202,17699,27536,17173,22063,22037,7074,3537,17738,2336,11908,17423,18544,27911,12930,4801,9322,21539,704,14234,3285,27274,24970,14808,13724,15190,15520,3979,26193,28900,140,4130,1628,7278,301,21763,18021,15722,17156,20765,6883,10604,957,23252,20603,22420,2167,8380,17908,29052,23386,25462,3838,6547,29661,13764,17401,14846,16034,26185,954,23745,18509,3678,9790,20123,10247,6072,8480,902,7500,20333,1714,1959,22372,4424,15481,12032,14081,1298,19461,17492,14188,18365,12105,18760,29853,1279,7496,150,12587,2805,23215,23801,24302,14883,8362,5337,24933,2837,14842,1035,28132,27146,14896,3925,29127,22019,4767,27851,29218,29400,10820,4886,17074,24499,12131,21494,4404,16884,15393,16772,10499,20287,3577,1019,27403,28953,13762,9251,14873,15484,2399,22702,4587,13070,27262,12335,27994,9253,3385,16526,13703,839,18438,21897,24440,16320,2726,14697,1440,29070,8436,15357,1684,24250,4971,18230,3043,23414,26604,25338,26366,16345,2192,5806,15632,4156,17231,13180,9745,25864,16449,136,6141,22817,10913,745,2132,24318,9262,27844,15276,9726,23152,25928,8163,27590,21753,11666,25178,15096,7292,18100,15360,2249,29153,25966,28293,16733,12451,10491,13578,17640,13193,15208,12439,10891,12490,6588,13291,15398,1817,11069,25227,21622,13528,6731,18403,16585,5878,23378,9777,18735,18342,7563,28636,8494,17429,12002,1982,8640,10835,14934,18352,4677,13671,317,24623,2288,19519,25079,21216,18327,27861,10168,26698,573,23858,18715,2046,6518,3242,8969,28002,27562,6447,13772,29082,16922,1611,29832,2338,12897,24998,25664,11105,13983,9784,6861,4946,29674,16552,25187,638,6696,27285,18670,17513,21690,18030,21406,11948,12943,13411,26203,17548,25058,18004,28933,1343,769,3105,14432,16667,12436,12595,25943,10885,14998,6279,27901,5947,1455,13955,9953,9851,20761,21758,10146,19714,25282,24217,16112,28924,21909,19920,12900,6609,18617,11636,6973,4331,2090,6244,4664,1552,17295,1901,2115,3614,8291,26538,13809,24829,4980,1308,27409,14450,25829,25837,27708,20081,20894,16545,12602,13892,27489,28762,24512,29629,1785,19007,1436,28590,1528,14659,8352,9029,887,24236,23559,17629,25646,20675,2671,17436,29170,1722,5786,21885,11797,11313,4866,22035,11462,9310,29115,7112,15037,23522,29544,1289,19874,15990,16935,24176,4248,22493,28961,23918,6647,13184,3030,6402,27216,14614,11442,15747,27745,4134,2030,25030,27046,10181,4035,10666,20544,10696,15008,4058,7366,4085,25256,13694,20154,25979,8096,5457,25292,18381,5053,14688,10053,11263,4656,1355,19673,18591,18845,27658,15485,4786,15563,25952,24443,13064,8665,5181,2786,1481,12695,17005,10965,15290,13593,25182,9557,930,19746,25356,8991,752,24573,2307,16792,893,14148,1752,6106,4975,24265,27494,21979,7213,29257,12073,20236,24276,12596,13428,22534,16364,14595,1542,1088,19431,6909,4769,28047,29559,18927,10092,22293,15029,9490,8089,4698,21864,5008,16986,9584,12027,28740,26072,17152,18236,13907,17594,5213,5963,27193,3160,7902,17407,13812,6514,25623,2620,13711,546,8405,3568,10760,13466,24514,28075,26286,27913,13660,14211,7516,21435,7420,20966,518,26257,7313,28076,3507,25166,24944,18227,27563,7641,8886,18950,14517,25193,4244,14739,13242,28244,7392,15452,3048,11045,21777,3721,4927,4855,22298,29101,9832,26222,5226,19393,12579,10523,17947,443,18855,503,17767,11273,7860,25245,28147,6172,3734,19020,15449,12005,26155,15989,2100,7108,9479,7307,4065,21454,18163,11625,14016,2961,8959,6409,13051,21629,4016,25756,8203,3521,20087,8478,7543,5238,1717,223,11671,7062,3428,23342,12508,11774,28242,20549,22674,14212,28801,21374,309,24535,13236,2467,3552,22385,21975,11323,7801,7578,7413,16430,22597,23175,1641,11157,663,8143,1563,25353,18962,5645,2673,13568,28225,29508,21905,13589,5401,28346,27311,4446,8051,21783,27640,19158,4147,29950,21769,1612,5250,1010,15769,713,1645,1330,24548,1215,21616,435,337,2898,17798,22833,11320,5524,237,7490,16664,11208,7047,17771,1413,27249,20920,13952,6716,19884,19655,1222,11481,28106,521,3356,10055,27210,9864,11859,23717,5667,23550,17101,52,5236,5145,17377,25851,24752,29548,21146,18007,20778,23141,7052,18820,6980,20923,88,28191,4193,11974,17844,18295,1777,17950,15526,11867,7248,23425,22638,15897,18467,27243,17201,25797,22192,17860,20888,13495,6884,14525,22436,16032,9987,29235,171,12749,5709,20861,15743,25806,8293,19661,2480,18666,19136,24398,16404,13195,23598,3984,8,8150,12534,1148,23372,5603,13986,18690,23102,25330,29650,12070,22697,24322,9835,19593,10718,14630,29688,4247,29705,8548,4300,23661,24715,28186,2730,22098,455,6497,23892,3977,3953,27435,6334,13554,2070,15548,1727,23412,21745,25532,18515,547,6078,27622,8636,20361,16650,13057,25578,14768,11708,2888,29897,21491,9565,26307,25049,20165,11419,9980,12834,18639,6895,23643,8947,13813,27255,19036,10350,23308,7905,5012,5671,27812,8975,914,2297,12217,7829,26881,27385,22769,2989,28664,17095,22520,25932,26560,3067,16858,21992,7912,26708,27269,7834,15542,11864,28246,13818,13383,7511,17045,17360,3419,6862,439,6811,15377,24340,15924,28814,1766,27354,18028,23068,9440,12153,9006,19750,22739,21709,23609,4921,12629,17867,18022,4004,11113,29001,17502,23370,617,5975,483,24856,27540,23716,25645,25697,18440,13499,13221,400,13761,8338,2851,21757,9599,18741,28500,2958,1453,20205,25783,21707,6200,25383,16465,24212,8623,9239,16865,10136,14562,10122,8775,7569,3707,7306,28252,28932,9159,4961,21117,2802,4437,12959,1026,18128,6193,7027,13482,18751,6989,23420,22294,13977,3193,9404,27611,26563,5599,3407,24721,28574,22227,13114,20410,18262,26785,15576,19860,22810,14348,5896,24361,4458,27871,9760,19616,22363,10900,17586,28882,14615,15925,19192,62,4385,26662,7415,19693,13518,21854,12769,4173,27618,5958,2469,8923,28492,21776,13626,17471,26614,6713,8878,26718,12885,19857,6369,2039,23260,20103,21427,15946,27417,29981,25254,28792,3820,4383,22800,7042,24926,193,7844,10431,2654,22533,25657,10156,25785,23357,9636,26367,11944,5075,17004,16768,23518,9057,21732,24290,16340,24627,18221,20935,25378,7167,19463,2185,12307,9466,15838,12705,9021,18158,15138,14252,2136,28563,2974,14375,16245,2998,27883,11901,29318,27873,11082,24314,17559,23789,4010,414,3609,2255,11461,15763,9615,23358,5146,10404,14122,9190,29081,22073],[1893,13020,9548,3936,15687,6549,20626,4607,19254,28536,14883,19186,19760,28241,9188,16964,18429,15667,8355,2345,6666,9783,18403,24069,17747,14651,6345,6041,9157,1041,10331,18350,16003,21552,26540,25431,28033,7639,4330,18464,23718,27889,26833,19964,11689,20295,26160,24140,22538,2076,7805,5964,26810,20817,26771,5264,25404,4040,26211,29668,27220,21669,1195,13291,10352,20993,5790,28952,16687,22823,18855,308,11229,7615,6175,17731,5742,6698,26421,15053,23249,6930,6875,2582,6771,5390,11975,28719,24260,25441,27481,29155,20542,5,13366,15244,4158,12694,17487,13132,531,1144,1578,7624,18185,7673,6699,22289,463,6895,29223,20491,7882,18655,12845,27582,25701,6763,3237,15935,3923,27305,6753,649,11035,25867,3158,304,13696,29565,3667,27223,8116,17242,22437,3660,5929,6939,11704,5544,26490,795,26920,6461,14811,979,15837,25240,4940,10384,15447,14595,1684,2239,4835,4233,2767,11421,20139,3950,6997,12668,27560,1464,27601,7880,3867,22524,28556,29500,8506,2251,11165,4500,17113,1877,6151,10093,2563,20206,1213,12976,24123,12152,26076,23942,15074,7814,1767,4053,2126,22470,18325,24248,20204,19243,13102,21320,14467,5072,20999,4224,22184,15302,22348,24726,6696,2583,18649,12265,18807,14137,21076,15776,18588,16831,3753,6120,7794,5981,25718,12397,9135,16032,20644,15884,2592,28905,19334,18140,4470,20021,22228,23330,5612,3126,6096,18393,7592,19709,15266,26137,15349,13792,13200,110,28914,7598,26195,18484,7878,16200,26230,5164,21836,836,27429,12579,14046,9522,24199,26541,10039,9513,15589,20950,8311,8977,28560,29407,828,5377,1906,17365,6312,24193,26187,8485,26028,8808,6281,27748,22209,3812,4593,12729,21956,1873,4896,7284,3987,27300,19294,10150,29704,16480,29238,19907,14085,25769,6708,10509,8578,4511,13943,24793,23403,16753,2390,28851,7935,17873,12602,19185,25851,7129,20168,25002,14982,19931,25983,3247,681,20872,13155,13442,16534,23737,22987,18176,2668,7437,5646,26573,7177,16251,11571,22212,11816,5841,12940,27925,18437,27966,10333,9765,21227,29906,16749,2825,8386,28188,29410,1316,13815,12911,6398,3747,929,22804,15489,13285,3818,4261,11611,26096,22460,5116,10677,7970,438,18018,17040],[11749,12453,7987,12062,6754,12113,8165,17647,16761,6428,3214,19879,8216,12742,4551,23728,12317,12843,12063,20664,22050,16903,21628,13677,5002,5090,2941,15487,26247,24934,18232,7019,1115,11875,13433,18180,29246,11510,10646,2307,12429,29351,10571,13151,22300,3854,9383,13911,23920,26020,28405,16972,1623,23158],[21426,18436,20188,28745,21830,7312,13117,14359,2390,1907,21153,29280,19253,22228,19560,2225,8045,20287,5689,27574,29767,3719],[11971,4001,13648,18554,25803],[28353,20561,5856,22915,9037,17885,10311,7029,26341,5889,5930],[6168,20354,19788,28997,3263,12960,3559,8182,13834,27079,20867],[7075,18569,24376],[28624,2957,26629,19679,2455,17930,9775,21132,10364,28531],[],[2156],[22302],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]] From d2de196e5f3d65a0a6af61d3a248ed9e24611e74 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sat, 5 Oct 2019 11:34:41 +0200 Subject: [PATCH 25/56] feat (plusone): simple leetcode for speed --- leetcode/plusone/plusone.py | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 leetcode/plusone/plusone.py diff --git a/leetcode/plusone/plusone.py b/leetcode/plusone/plusone.py new file mode 100644 index 0000000..0d4c45d --- /dev/null +++ b/leetcode/plusone/plusone.py @@ -0,0 +1,39 @@ +from typing import List + + +class Solution: + def plusOne(self, digits: List[int]) -> List[int]: + return self.plusOne_helper(digits, carry=1, idx=len(digits)-1) + + def plusOne_helper(self, digits, carry, idx): + val = digits[idx] + carry + new_digit = val % 10 + new_carry = val // 10 + + digits[idx] = new_digit + if idx == 0: + if new_carry == 0: + return digits + else: + return [new_carry] + digits + else: + if new_carry == 0: + return digits + else: + return self.plusOne_helper(digits, new_carry, idx-1) + + +def test1(): + Input = [1, 2, 3] + Output = [1, 2, 4] + assert Solution().plusOne(Input) == Output + +def test2(): + Input = [4, 3, 2, 1] + Output = [4, 3, 2, 2] + assert Solution().plusOne(Input) == Output + +def test3(): + Input = [9, 9, 9, 9] + Output = [1, 0, 0, 0, 0] + assert Solution().plusOne(Input) == Output From d452a6569a5d88230fe9e0405598c5405264f5a9 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Mon, 14 Oct 2019 18:49:31 +0200 Subject: [PATCH 26/56] feat (crypto): playing with a biased key stream --- biasstream.py | 54 + data/Frankenstein.txt | 7834 ++++++++++++++++++++++ data/PridePrejudice.txt | 13427 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 21315 insertions(+) create mode 100644 biasstream.py create mode 100644 data/Frankenstein.txt create mode 100644 data/PridePrejudice.txt diff --git a/biasstream.py b/biasstream.py new file mode 100644 index 0000000..6a316d8 --- /dev/null +++ b/biasstream.py @@ -0,0 +1,54 @@ +# generate a stream with bias, see how can use that in a one time pad + +import string +import random + +from collections import Counter + + +def one_letter_less(letter, f): + d = {l: 1/26 + (1/26 - f)/25 for l in string.ascii_lowercase} + d[letter] = f + return d + + +d_even = {l: 1/26 for l in string.ascii_lowercase} +d_qless = one_letter_less("q", 1/100) + + +def gen_seq(d, l): + return random.choices(list(d.keys()), list(d.values()), k=l) + + +def apply(m, k): + return [chr(((ord(i) - ord('a') + ord(j) - ord('a')) % 26) + ord('a')) for i, j in zip(m, k)] + + +def inv_apply(m, k): + return [chr(((ord(i) - ord('a') - (ord(j) - ord('a'))) % 26) + ord('a')) for i, j in zip(m, k)] + + +k1 = gen_seq(d_qless, 10_000) +m1 = gen_seq(d_even, 10_000) +m2 = gen_seq(d_even, 10_000) +c = apply(random.choice([m1, m2]), k1) +print(Counter(k1)) + +print(Counter(inv_apply(c, m1))) +print(Counter(inv_apply(c, m2))) + +# two texts from project Gutenberg (just wanted two large English texts) +text1 = [l.lower() for l in open("data/PridePrejudice.txt").read() if l in string.ascii_letters] +text2 = [l.lower() for l in open("data/Frankenstein.txt").read() if l in string.ascii_letters] + +f1 = {l: v/len(text1) for l, v in Counter(text1).items()} +f2 = {l: v/len(text2) for l, v in Counter(text2).items()} +diff = {l: f1[l] - f2[l] for l in string.ascii_lowercase} +max(abs(v) for v in diff.values()) + +t1 = text1[:10_000] +t2 = text2[:10_000] +c = apply(random.choice([t1, t2]), k1) +print(Counter(inv_apply(c, t1))) +print(Counter(inv_apply(c, t2))) +inv_apply(c, k1) diff --git a/data/Frankenstein.txt b/data/Frankenstein.txt new file mode 100644 index 0000000..f49e665 --- /dev/null +++ b/data/Frankenstein.txt @@ -0,0 +1,7834 @@ + +Project Gutenberg's Frankenstein, by Mary Wollstonecraft (Godwin) Shelley + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.net + + +Title: Frankenstein + or The Modern Prometheus + +Author: Mary Wollstonecraft (Godwin) Shelley + +Release Date: June 17, 2008 [EBook #84] +Last updated: January 13, 2018 + +Language: English + +Character set encoding: UTF-8 + +*** START OF THIS PROJECT GUTENBERG EBOOK FRANKENSTEIN *** + + + + +Produced by Judith Boss, Christy Phillips, Lynn Hanninen, +and David Meltzer. HTML version by Al Haines. +Further corrections by Menno de Leeuw. + + + +Frankenstein; + + +or, the Modern Prometheus + + + + +by + + +Mary Wollstonecraft (Godwin) Shelley + + + + + + +CONTENTS + + + + +Letter 1 + +Letter 2 + +Letter 3 + +Letter 4 + +Chapter 1 + +Chapter 2 + +Chapter 3 + +Chapter 4 + +Chapter 5 + +Chapter 6 + +Chapter 7 + +Chapter 8 + +Chapter 9 + +Chapter 10 + +Chapter 11 + +Chapter 12 + +Chapter 13 + +Chapter 14 + +Chapter 15 + +Chapter 16 + +Chapter 17 + +Chapter 18 + +Chapter 19 + +Chapter 20 + +Chapter 21 + +Chapter 22 + +Chapter 23 + +Chapter 24 + + + + + +Letter 1 + +_To Mrs. Saville, England._ + + +St. Petersburgh, Dec. 11th, 17—. + + +You will rejoice to hear that no disaster has accompanied the +commencement of an enterprise which you have regarded with such evil +forebodings. I arrived here yesterday, and my first task is to assure +my dear sister of my welfare and increasing confidence in the success +of my undertaking. + +I am already far north of London, and as I walk in the streets of +Petersburgh, I feel a cold northern breeze play upon my cheeks, which +braces my nerves and fills me with delight. Do you understand this +feeling? This breeze, which has travelled from the regions towards +which I am advancing, gives me a foretaste of those icy climes. +Inspirited by this wind of promise, my daydreams become more fervent +and vivid. I try in vain to be persuaded that the pole is the seat of +frost and desolation; it ever presents itself to my imagination as the +region of beauty and delight. There, Margaret, the sun is for ever +visible, its broad disk just skirting the horizon and diffusing a +perpetual splendour. There—for with your leave, my sister, I will put +some trust in preceding navigators—there snow and frost are banished; +and, sailing over a calm sea, we may be wafted to a land surpassing in +wonders and in beauty every region hitherto discovered on the habitable +globe. Its productions and features may be without example, as the +phenomena of the heavenly bodies undoubtedly are in those undiscovered +solitudes. What may not be expected in a country of eternal light? I +may there discover the wondrous power which attracts the needle and may +regulate a thousand celestial observations that require only this +voyage to render their seeming eccentricities consistent for ever. I +shall satiate my ardent curiosity with the sight of a part of the world +never before visited, and may tread a land never before imprinted by +the foot of man. These are my enticements, and they are sufficient to +conquer all fear of danger or death and to induce me to commence this +laborious voyage with the joy a child feels when he embarks in a little +boat, with his holiday mates, on an expedition of discovery up his +native river. But supposing all these conjectures to be false, you +cannot contest the inestimable benefit which I shall confer on all +mankind, to the last generation, by discovering a passage near the pole +to those countries, to reach which at present so many months are +requisite; or by ascertaining the secret of the magnet, which, if at +all possible, can only be effected by an undertaking such as mine. + +These reflections have dispelled the agitation with which I began my +letter, and I feel my heart glow with an enthusiasm which elevates me +to heaven, for nothing contributes so much to tranquillise the mind as +a steady purpose—a point on which the soul may fix its intellectual +eye. This expedition has been the favourite dream of my early years. I +have read with ardour the accounts of the various voyages which have +been made in the prospect of arriving at the North Pacific Ocean +through the seas which surround the pole. You may remember that a +history of all the voyages made for purposes of discovery composed the +whole of our good Uncle Thomas’ library. My education was neglected, +yet I was passionately fond of reading. These volumes were my study +day and night, and my familiarity with them increased that regret which +I had felt, as a child, on learning that my father’s dying injunction +had forbidden my uncle to allow me to embark in a seafaring life. + +These visions faded when I perused, for the first time, those poets +whose effusions entranced my soul and lifted it to heaven. I also +became a poet and for one year lived in a paradise of my own creation; +I imagined that I also might obtain a niche in the temple where the +names of Homer and Shakespeare are consecrated. You are well +acquainted with my failure and how heavily I bore the disappointment. +But just at that time I inherited the fortune of my cousin, and my +thoughts were turned into the channel of their earlier bent. + +Six years have passed since I resolved on my present undertaking. I +can, even now, remember the hour from which I dedicated myself to this +great enterprise. I commenced by inuring my body to hardship. I +accompanied the whale-fishers on several expeditions to the North Sea; +I voluntarily endured cold, famine, thirst, and want of sleep; I often +worked harder than the common sailors during the day and devoted my +nights to the study of mathematics, the theory of medicine, and those +branches of physical science from which a naval adventurer might derive +the greatest practical advantage. Twice I actually hired myself as an +under-mate in a Greenland whaler, and acquitted myself to admiration. I +must own I felt a little proud when my captain offered me the second +dignity in the vessel and entreated me to remain with the greatest +earnestness, so valuable did he consider my services. + +And now, dear Margaret, do I not deserve to accomplish some great purpose? +My life might have been passed in ease and luxury, but I preferred glory to +every enticement that wealth placed in my path. Oh, that some encouraging +voice would answer in the affirmative! My courage and my resolution is +firm; but my hopes fluctuate, and my spirits are often depressed. I am +about to proceed on a long and difficult voyage, the emergencies of which +will demand all my fortitude: I am required not only to raise the spirits +of others, but sometimes to sustain my own, when theirs are failing. + +This is the most favourable period for travelling in Russia. They fly +quickly over the snow in their sledges; the motion is pleasant, and, in +my opinion, far more agreeable than that of an English stagecoach. The +cold is not excessive, if you are wrapped in furs—a dress which I have +already adopted, for there is a great difference between walking the +deck and remaining seated motionless for hours, when no exercise +prevents the blood from actually freezing in your veins. I have no +ambition to lose my life on the post-road between St. Petersburgh and +Archangel. + +I shall depart for the latter town in a fortnight or three weeks; and my +intention is to hire a ship there, which can easily be done by paying the +insurance for the owner, and to engage as many sailors as I think necessary +among those who are accustomed to the whale-fishing. I do not intend to +sail until the month of June; and when shall I return? Ah, dear sister, how +can I answer this question? If I succeed, many, many months, perhaps years, +will pass before you and I may meet. If I fail, you will see me again soon, +or never. + +Farewell, my dear, excellent Margaret. Heaven shower down blessings on you, +and save me, that I may again and again testify my gratitude for all your +love and kindness. + +Your affectionate brother, + +R. Walton + + + + + + +Letter 2 + + + + +_To Mrs. Saville, England._ + + +Archangel, 28th March, 17—. + + +How slowly the time passes here, encompassed as I am by frost and snow! +Yet a second step is taken towards my enterprise. I have hired a +vessel and am occupied in collecting my sailors; those whom I have +already engaged appear to be men on whom I can depend and are certainly +possessed of dauntless courage. + +But I have one want which I have never yet been able to satisfy, and the +absence of the object of which I now feel as a most severe evil, I have no +friend, Margaret: when I am glowing with the enthusiasm of success, there +will be none to participate my joy; if I am assailed by disappointment, no +one will endeavour to sustain me in dejection. I shall commit my thoughts +to paper, it is true; but that is a poor medium for the communication of +feeling. I desire the company of a man who could sympathise with me, whose +eyes would reply to mine. You may deem me romantic, my dear sister, but I +bitterly feel the want of a friend. I have no one near me, gentle yet +courageous, possessed of a cultivated as well as of a capacious mind, whose +tastes are like my own, to approve or amend my plans. How would such a +friend repair the faults of your poor brother! I am too ardent in execution +and too impatient of difficulties. But it is a still greater evil to me +that I am self-educated: for the first fourteen years of my life I ran wild +on a common and read nothing but our Uncle Thomas’ books of voyages. +At that age I became acquainted with the celebrated poets of our own +country; but it was only when it had ceased to be in my power to derive its +most important benefits from such a conviction that I perceived the +necessity of becoming acquainted with more languages than that of my native +country. Now I am twenty-eight and am in reality more illiterate than many +schoolboys of fifteen. It is true that I have thought more and that my +daydreams are more extended and magnificent, but they want (as the painters +call it) _keeping;_ and I greatly need a friend who would have sense +enough not to despise me as romantic, and affection enough for me to +endeavour to regulate my mind. + +Well, these are useless complaints; I shall certainly find no friend on the +wide ocean, nor even here in Archangel, among merchants and seamen. Yet +some feelings, unallied to the dross of human nature, beat even in these +rugged bosoms. My lieutenant, for instance, is a man of wonderful courage +and enterprise; he is madly desirous of glory, or rather, to word my phrase +more characteristically, of advancement in his profession. He is an +Englishman, and in the midst of national and professional prejudices, +unsoftened by cultivation, retains some of the noblest endowments of +humanity. I first became acquainted with him on board a whale vessel; +finding that he was unemployed in this city, I easily engaged him to assist +in my enterprise. + +The master is a person of an excellent disposition and is remarkable in the +ship for his gentleness and the mildness of his discipline. This +circumstance, added to his well-known integrity and dauntless courage, made +me very desirous to engage him. A youth passed in solitude, my best years +spent under your gentle and feminine fosterage, has so refined the +groundwork of my character that I cannot overcome an intense distaste to +the usual brutality exercised on board ship: I have never believed it to be +necessary, and when I heard of a mariner equally noted for his kindliness +of heart and the respect and obedience paid to him by his crew, I felt +myself peculiarly fortunate in being able to secure his services. I heard +of him first in rather a romantic manner, from a lady who owes to him the +happiness of her life. This, briefly, is his story. Some years ago he loved +a young Russian lady of moderate fortune, and having amassed a considerable +sum in prize-money, the father of the girl consented to the match. He saw +his mistress once before the destined ceremony; but she was bathed in +tears, and throwing herself at his feet, entreated him to spare her, +confessing at the same time that she loved another, but that he was poor, +and that her father would never consent to the union. My generous friend +reassured the suppliant, and on being informed of the name of her lover, +instantly abandoned his pursuit. He had already bought a farm with his +money, on which he had designed to pass the remainder of his life; but he +bestowed the whole on his rival, together with the remains of his +prize-money to purchase stock, and then himself solicited the young +woman’s father to consent to her marriage with her lover. But the old +man decidedly refused, thinking himself bound in honour to my friend, who, +when he found the father inexorable, quitted his country, nor returned +until he heard that his former mistress was married according to her +inclinations. “What a noble fellow!” you will exclaim. He is +so; but then he is wholly uneducated: he is as silent as a Turk, and a kind +of ignorant carelessness attends him, which, while it renders his conduct +the more astonishing, detracts from the interest and sympathy which +otherwise he would command. + +Yet do not suppose, because I complain a little or because I can +conceive a consolation for my toils which I may never know, that I am +wavering in my resolutions. Those are as fixed as fate, and my voyage +is only now delayed until the weather shall permit my embarkation. The +winter has been dreadfully severe, but the spring promises well, and it +is considered as a remarkably early season, so that perhaps I may sail +sooner than I expected. I shall do nothing rashly: you know me +sufficiently to confide in my prudence and considerateness whenever the +safety of others is committed to my care. + +I cannot describe to you my sensations on the near prospect of my +undertaking. It is impossible to communicate to you a conception of +the trembling sensation, half pleasurable and half fearful, with which +I am preparing to depart. I am going to unexplored regions, to “the +land of mist and snow,” but I shall kill no albatross; therefore do not +be alarmed for my safety or if I should come back to you as worn and +woeful as the “Ancient Mariner.” You will smile at my allusion, but I +will disclose a secret. I have often attributed my attachment to, my +passionate enthusiasm for, the dangerous mysteries of ocean to that +production of the most imaginative of modern poets. There is something +at work in my soul which I do not understand. I am practically +industrious—painstaking, a workman to execute with perseverance and +labour—but besides this there is a love for the marvellous, a belief +in the marvellous, intertwined in all my projects, which hurries me out +of the common pathways of men, even to the wild sea and unvisited +regions I am about to explore. + +But to return to dearer considerations. Shall I meet you again, after +having traversed immense seas, and returned by the most southern cape of +Africa or America? I dare not expect such success, yet I cannot bear to +look on the reverse of the picture. Continue for the present to write to +me by every opportunity: I may receive your letters on some occasions when +I need them most to support my spirits. I love you very tenderly. +Remember me with affection, should you never hear from me again. + +Your affectionate brother, + Robert Walton + + + + + + +Letter 3 + + + + +_To Mrs. Saville, England._ + + +July 7th, 17—. + + +My dear Sister, + +I write a few lines in haste to say that I am safe—and well advanced +on my voyage. This letter will reach England by a merchantman now on +its homeward voyage from Archangel; more fortunate than I, who may not +see my native land, perhaps, for many years. I am, however, in good +spirits: my men are bold and apparently firm of purpose, nor do the +floating sheets of ice that continually pass us, indicating the dangers +of the region towards which we are advancing, appear to dismay them. We +have already reached a very high latitude; but it is the height of +summer, and although not so warm as in England, the southern gales, +which blow us speedily towards those shores which I so ardently desire +to attain, breathe a degree of renovating warmth which I had not +expected. + +No incidents have hitherto befallen us that would make a figure in a +letter. One or two stiff gales and the springing of a leak are +accidents which experienced navigators scarcely remember to record, and +I shall be well content if nothing worse happen to us during our voyage. + +Adieu, my dear Margaret. Be assured that for my own sake, as well as +yours, I will not rashly encounter danger. I will be cool, +persevering, and prudent. + +But success _shall_ crown my endeavours. Wherefore not? Thus far I +have gone, tracing a secure way over the pathless seas, the very stars +themselves being witnesses and testimonies of my triumph. Why not +still proceed over the untamed yet obedient element? What can stop the +determined heart and resolved will of man? + +My swelling heart involuntarily pours itself out thus. But I must +finish. Heaven bless my beloved sister! + +R.W. + + + + + + +Letter 4 + + + + +_To Mrs. Saville, England._ + + +August 5th, 17—. + + +So strange an accident has happened to us that I cannot forbear +recording it, although it is very probable that you will see me before +these papers can come into your possession. + +Last Monday (July 31st) we were nearly surrounded by ice, which closed +in the ship on all sides, scarcely leaving her the sea-room in which +she floated. Our situation was somewhat dangerous, especially as we +were compassed round by a very thick fog. We accordingly lay to, +hoping that some change would take place in the atmosphere and weather. + +About two o’clock the mist cleared away, and we beheld, stretched out +in every direction, vast and irregular plains of ice, which seemed to +have no end. Some of my comrades groaned, and my own mind began to +grow watchful with anxious thoughts, when a strange sight suddenly +attracted our attention and diverted our solicitude from our own +situation. We perceived a low carriage, fixed on a sledge and drawn by +dogs, pass on towards the north, at the distance of half a mile; a +being which had the shape of a man, but apparently of gigantic stature, +sat in the sledge and guided the dogs. We watched the rapid progress +of the traveller with our telescopes until he was lost among the +distant inequalities of the ice. + +This appearance excited our unqualified wonder. We were, as we believed, +many hundred miles from any land; but this apparition seemed to denote that +it was not, in reality, so distant as we had supposed. Shut in, however, by +ice, it was impossible to follow his track, which we had observed with the +greatest attention. + +About two hours after this occurrence we heard the ground sea, and before +night the ice broke and freed our ship. We, however, lay to until the +morning, fearing to encounter in the dark those large loose masses which +float about after the breaking up of the ice. I profited of this time to +rest for a few hours. + +In the morning, however, as soon as it was light, I went upon deck and +found all the sailors busy on one side of the vessel, apparently +talking to someone in the sea. It was, in fact, a sledge, like that we +had seen before, which had drifted towards us in the night on a large +fragment of ice. Only one dog remained alive; but there was a human +being within it whom the sailors were persuading to enter the vessel. +He was not, as the other traveller seemed to be, a savage inhabitant of +some undiscovered island, but a European. When I appeared on deck the +master said, “Here is our captain, and he will not allow you to perish +on the open sea.” + +On perceiving me, the stranger addressed me in English, although with a +foreign accent. “Before I come on board your vessel,” said he, +“will you have the kindness to inform me whither you are bound?” + +You may conceive my astonishment on hearing such a question addressed +to me from a man on the brink of destruction and to whom I should have +supposed that my vessel would have been a resource which he would not +have exchanged for the most precious wealth the earth can afford. I +replied, however, that we were on a voyage of discovery towards the +northern pole. + +Upon hearing this he appeared satisfied and consented to come on board. +Good God! Margaret, if you had seen the man who thus capitulated for +his safety, your surprise would have been boundless. His limbs were +nearly frozen, and his body dreadfully emaciated by fatigue and +suffering. I never saw a man in so wretched a condition. We attempted +to carry him into the cabin, but as soon as he had quitted the fresh +air he fainted. We accordingly brought him back to the deck and +restored him to animation by rubbing him with brandy and forcing him to +swallow a small quantity. As soon as he showed signs of life we +wrapped him up in blankets and placed him near the chimney of the +kitchen stove. By slow degrees he recovered and ate a little soup, +which restored him wonderfully. + +Two days passed in this manner before he was able to speak, and I often +feared that his sufferings had deprived him of understanding. When he +had in some measure recovered, I removed him to my own cabin and +attended on him as much as my duty would permit. I never saw a more +interesting creature: his eyes have generally an expression of +wildness, and even madness, but there are moments when, if anyone +performs an act of kindness towards him or does him any the most +trifling service, his whole countenance is lighted up, as it were, with +a beam of benevolence and sweetness that I never saw equalled. But he +is generally melancholy and despairing, and sometimes he gnashes his +teeth, as if impatient of the weight of woes that oppresses him. + +When my guest was a little recovered I had great trouble to keep off +the men, who wished to ask him a thousand questions; but I would not +allow him to be tormented by their idle curiosity, in a state of body +and mind whose restoration evidently depended upon entire repose. +Once, however, the lieutenant asked why he had come so far upon the ice +in so strange a vehicle. + +His countenance instantly assumed an aspect of the deepest gloom, and +he replied, “To seek one who fled from me.” + +“And did the man whom you pursued travel in the same fashion?” + +“Yes.” + +“Then I fancy we have seen him, for the day before we picked you up we +saw some dogs drawing a sledge, with a man in it, across the ice.” + +This aroused the stranger’s attention, and he asked a multitude of +questions concerning the route which the dæmon, as he called him, had +pursued. Soon after, when he was alone with me, he said, “I have, +doubtless, excited your curiosity, as well as that of these good +people; but you are too considerate to make inquiries.” + +“Certainly; it would indeed be very impertinent and inhuman in me to +trouble you with any inquisitiveness of mine.” + +“And yet you rescued me from a strange and perilous situation; you have +benevolently restored me to life.” + +Soon after this he inquired if I thought that the breaking up of the +ice had destroyed the other sledge. I replied that I could not answer +with any degree of certainty, for the ice had not broken until near +midnight, and the traveller might have arrived at a place of safety +before that time; but of this I could not judge. + +From this time a new spirit of life animated the decaying frame of the +stranger. He manifested the greatest eagerness to be upon deck to watch for +the sledge which had before appeared; but I have persuaded him to remain in +the cabin, for he is far too weak to sustain the rawness of the atmosphere. +I have promised that someone should watch for him and give him instant +notice if any new object should appear in sight. + +Such is my journal of what relates to this strange occurrence up to the +present day. The stranger has gradually improved in health but is very +silent and appears uneasy when anyone except myself enters his cabin. +Yet his manners are so conciliating and gentle that the sailors are all +interested in him, although they have had very little communication +with him. For my own part, I begin to love him as a brother, and his +constant and deep grief fills me with sympathy and compassion. He must +have been a noble creature in his better days, being even now in wreck +so attractive and amiable. + +I said in one of my letters, my dear Margaret, that I should find no friend +on the wide ocean; yet I have found a man who, before his spirit had been +broken by misery, I should have been happy to have possessed as the brother +of my heart. + +I shall continue my journal concerning the stranger at intervals, +should I have any fresh incidents to record. + + + + +August 13th, 17—. + + +My affection for my guest increases every day. He excites at once my +admiration and my pity to an astonishing degree. How can I see so +noble a creature destroyed by misery without feeling the most poignant +grief? He is so gentle, yet so wise; his mind is so cultivated, and +when he speaks, although his words are culled with the choicest art, +yet they flow with rapidity and unparalleled eloquence. + +He is now much recovered from his illness and is continually on the deck, +apparently watching for the sledge that preceded his own. Yet, although +unhappy, he is not so utterly occupied by his own misery but that he +interests himself deeply in the projects of others. He has frequently +conversed with me on mine, which I have communicated to him without +disguise. He entered attentively into all my arguments in favour of my +eventual success and into every minute detail of the measures I had taken +to secure it. I was easily led by the sympathy which he evinced to use the +language of my heart, to give utterance to the burning ardour of my soul +and to say, with all the fervour that warmed me, how gladly I would +sacrifice my fortune, my existence, my every hope, to the furtherance of my +enterprise. One man’s life or death were but a small price to pay for +the acquirement of the knowledge which I sought, for the dominion I should +acquire and transmit over the elemental foes of our race. As I spoke, a +dark gloom spread over my listener’s countenance. At first I +perceived that he tried to suppress his emotion; he placed his hands before +his eyes, and my voice quivered and failed me as I beheld tears trickle +fast from between his fingers; a groan burst from his heaving breast. I +paused; at length he spoke, in broken accents: “Unhappy man! Do you +share my madness? Have you drunk also of the intoxicating draught? Hear me; +let me reveal my tale, and you will dash the cup from your lips!” + +Such words, you may imagine, strongly excited my curiosity; but the +paroxysm of grief that had seized the stranger overcame his weakened +powers, and many hours of repose and tranquil conversation were +necessary to restore his composure. + +Having conquered the violence of his feelings, he appeared to despise +himself for being the slave of passion; and quelling the dark tyranny of +despair, he led me again to converse concerning myself personally. He asked +me the history of my earlier years. The tale was quickly told, but it +awakened various trains of reflection. I spoke of my desire of finding a +friend, of my thirst for a more intimate sympathy with a fellow mind than +had ever fallen to my lot, and expressed my conviction that a man could +boast of little happiness who did not enjoy this blessing. + +“I agree with you,” replied the stranger; “we are +unfashioned creatures, but half made up, if one wiser, better, dearer than +ourselves—such a friend ought to be—do not lend his aid to +perfectionate our weak and faulty natures. I once had a friend, the most +noble of human creatures, and am entitled, therefore, to judge respecting +friendship. You have hope, and the world before you, and have no cause for +despair. But I—I have lost everything and cannot begin life +anew.” + +As he said this his countenance became expressive of a calm, settled +grief that touched me to the heart. But he was silent and presently +retired to his cabin. + +Even broken in spirit as he is, no one can feel more deeply than he +does the beauties of nature. The starry sky, the sea, and every sight +afforded by these wonderful regions seem still to have the power of +elevating his soul from earth. Such a man has a double existence: he +may suffer misery and be overwhelmed by disappointments, yet when he +has retired into himself, he will be like a celestial spirit that has a +halo around him, within whose circle no grief or folly ventures. + +Will you smile at the enthusiasm I express concerning this divine +wanderer? You would not if you saw him. You have been tutored and +refined by books and retirement from the world, and you are therefore +somewhat fastidious; but this only renders you the more fit to +appreciate the extraordinary merits of this wonderful man. Sometimes I +have endeavoured to discover what quality it is which he possesses that +elevates him so immeasurably above any other person I ever knew. I +believe it to be an intuitive discernment, a quick but never-failing +power of judgment, a penetration into the causes of things, unequalled +for clearness and precision; add to this a facility of expression and a +voice whose varied intonations are soul-subduing music. + + + + +August 19th, 17—. + + +Yesterday the stranger said to me, “You may easily perceive, Captain +Walton, that I have suffered great and unparalleled misfortunes. I had +determined at one time that the memory of these evils should die with +me, but you have won me to alter my determination. You seek for +knowledge and wisdom, as I once did; and I ardently hope that the +gratification of your wishes may not be a serpent to sting you, as mine +has been. I do not know that the relation of my disasters will be +useful to you; yet, when I reflect that you are pursuing the same +course, exposing yourself to the same dangers which have rendered me +what I am, I imagine that you may deduce an apt moral from my tale, one +that may direct you if you succeed in your undertaking and console you +in case of failure. Prepare to hear of occurrences which are usually +deemed marvellous. Were we among the tamer scenes of nature I might +fear to encounter your unbelief, perhaps your ridicule; but many things +will appear possible in these wild and mysterious regions which would +provoke the laughter of those unacquainted with the ever-varied powers +of nature; nor can I doubt but that my tale conveys in its series +internal evidence of the truth of the events of which it is composed.” + +You may easily imagine that I was much gratified by the offered +communication, yet I could not endure that he should renew his grief by +a recital of his misfortunes. I felt the greatest eagerness to hear +the promised narrative, partly from curiosity and partly from a strong +desire to ameliorate his fate if it were in my power. I expressed +these feelings in my answer. + +“I thank you,” he replied, “for your sympathy, but it is +useless; my fate is nearly fulfilled. I wait but for one event, and then I +shall repose in peace. I understand your feeling,” continued he, +perceiving that I wished to interrupt him; “but you are mistaken, my +friend, if thus you will allow me to name you; nothing can alter my +destiny; listen to my history, and you will perceive how irrevocably it is +determined.” + +He then told me that he would commence his narrative the next day when I +should be at leisure. This promise drew from me the warmest thanks. I have +resolved every night, when I am not imperatively occupied by my duties, to +record, as nearly as possible in his own words, what he has related during +the day. If I should be engaged, I will at least make notes. This +manuscript will doubtless afford you the greatest pleasure; but to me, who +know him, and who hear it from his own lips—with what interest and +sympathy shall I read it in some future day! Even now, as I commence my +task, his full-toned voice swells in my ears; his lustrous eyes dwell on me +with all their melancholy sweetness; I see his thin hand raised in +animation, while the lineaments of his face are irradiated by the soul +within. Strange and harrowing must be his story, frightful the storm which +embraced the gallant vessel on its course and wrecked it—thus! + + + + + +Chapter 1 + +I am by birth a Genevese, and my family is one of the most +distinguished of that republic. My ancestors had been for many years +counsellors and syndics, and my father had filled several public +situations with honour and reputation. He was respected by all who +knew him for his integrity and indefatigable attention to public +business. He passed his younger days perpetually occupied by the +affairs of his country; a variety of circumstances had prevented his +marrying early, nor was it until the decline of life that he became a +husband and the father of a family. + +As the circumstances of his marriage illustrate his character, I cannot +refrain from relating them. One of his most intimate friends was a +merchant who, from a flourishing state, fell, through numerous +mischances, into poverty. This man, whose name was Beaufort, was of a +proud and unbending disposition and could not bear to live in poverty +and oblivion in the same country where he had formerly been +distinguished for his rank and magnificence. Having paid his debts, +therefore, in the most honourable manner, he retreated with his +daughter to the town of Lucerne, where he lived unknown and in +wretchedness. My father loved Beaufort with the truest friendship and +was deeply grieved by his retreat in these unfortunate circumstances. +He bitterly deplored the false pride which led his friend to a conduct +so little worthy of the affection that united them. He lost no time in +endeavouring to seek him out, with the hope of persuading him to begin +the world again through his credit and assistance. + +Beaufort had taken effectual measures to conceal himself, and it was ten +months before my father discovered his abode. Overjoyed at this discovery, +he hastened to the house, which was situated in a mean street near the +Reuss. But when he entered, misery and despair alone welcomed him. Beaufort +had saved but a very small sum of money from the wreck of his fortunes, but +it was sufficient to provide him with sustenance for some months, and in +the meantime he hoped to procure some respectable employment in a +merchant’s house. The interval was, consequently, spent in inaction; +his grief only became more deep and rankling when he had leisure for +reflection, and at length it took so fast hold of his mind that at the end +of three months he lay on a bed of sickness, incapable of any exertion. + +His daughter attended him with the greatest tenderness, but she saw +with despair that their little fund was rapidly decreasing and that +there was no other prospect of support. But Caroline Beaufort +possessed a mind of an uncommon mould, and her courage rose to support +her in her adversity. She procured plain work; she plaited straw and +by various means contrived to earn a pittance scarcely sufficient to +support life. + +Several months passed in this manner. Her father grew worse; her time +was more entirely occupied in attending him; her means of subsistence +decreased; and in the tenth month her father died in her arms, leaving +her an orphan and a beggar. This last blow overcame her, and she knelt +by Beaufort’s coffin weeping bitterly, when my father entered the +chamber. He came like a protecting spirit to the poor girl, who +committed herself to his care; and after the interment of his friend he +conducted her to Geneva and placed her under the protection of a +relation. Two years after this event Caroline became his wife. + +There was a considerable difference between the ages of my parents, but +this circumstance seemed to unite them only closer in bonds of devoted +affection. There was a sense of justice in my father’s upright mind +which rendered it necessary that he should approve highly to love +strongly. Perhaps during former years he had suffered from the +late-discovered unworthiness of one beloved and so was disposed to set +a greater value on tried worth. There was a show of gratitude and +worship in his attachment to my mother, differing wholly from the +doting fondness of age, for it was inspired by reverence for her +virtues and a desire to be the means of, in some degree, recompensing +her for the sorrows she had endured, but which gave inexpressible grace +to his behaviour to her. Everything was made to yield to her wishes +and her convenience. He strove to shelter her, as a fair exotic is +sheltered by the gardener, from every rougher wind and to surround her +with all that could tend to excite pleasurable emotion in her soft and +benevolent mind. Her health, and even the tranquillity of her hitherto +constant spirit, had been shaken by what she had gone through. During +the two years that had elapsed previous to their marriage my father had +gradually relinquished all his public functions; and immediately after +their union they sought the pleasant climate of Italy, and the change +of scene and interest attendant on a tour through that land of wonders, +as a restorative for her weakened frame. + +From Italy they visited Germany and France. I, their eldest child, was born +at Naples, and as an infant accompanied them in their rambles. I remained +for several years their only child. Much as they were attached to each +other, they seemed to draw inexhaustible stores of affection from a very +mine of love to bestow them upon me. My mother’s tender caresses and +my father’s smile of benevolent pleasure while regarding me are my +first recollections. I was their plaything and their idol, and something +better—their child, the innocent and helpless creature bestowed on +them by Heaven, whom to bring up to good, and whose future lot it was in +their hands to direct to happiness or misery, according as they fulfilled +their duties towards me. With this deep consciousness of what they owed +towards the being to which they had given life, added to the active spirit +of tenderness that animated both, it may be imagined that while during +every hour of my infant life I received a lesson of patience, of charity, +and of self-control, I was so guided by a silken cord that all seemed but +one train of enjoyment to me. + +For a long time I was their only care. My mother had much desired to have a +daughter, but I continued their single offspring. When I was about five +years old, while making an excursion beyond the frontiers of Italy, they +passed a week on the shores of the Lake of Como. Their benevolent +disposition often made them enter the cottages of the poor. This, to my +mother, was more than a duty; it was a necessity, a +passion—remembering what she had suffered, and how she had been +relieved—for her to act in her turn the guardian angel to the +afflicted. During one of their walks a poor cot in the foldings of a vale +attracted their notice as being singularly disconsolate, while the number +of half-clothed children gathered about it spoke of penury in its worst +shape. One day, when my father had gone by himself to Milan, my mother, +accompanied by me, visited this abode. She found a peasant and his wife, +hard working, bent down by care and labour, distributing a scanty meal to +five hungry babes. Among these there was one which attracted my mother far +above all the rest. She appeared of a different stock. The four others were +dark-eyed, hardy little vagrants; this child was thin and very fair. Her +hair was the brightest living gold, and despite the poverty of her +clothing, seemed to set a crown of distinction on her head. Her brow was +clear and ample, her blue eyes cloudless, and her lips and the moulding of +her face so expressive of sensibility and sweetness that none could behold +her without looking on her as of a distinct species, a being heaven-sent, +and bearing a celestial stamp in all her features. + +The peasant woman, perceiving that my mother fixed eyes of wonder and +admiration on this lovely girl, eagerly communicated her history. She was +not her child, but the daughter of a Milanese nobleman. Her mother was a +German and had died on giving her birth. The infant had been placed with +these good people to nurse: they were better off then. They had not been +long married, and their eldest child was but just born. The father of their +charge was one of those Italians nursed in the memory of the antique glory +of Italy—one among the _schiavi ognor frementi,_ who exerted +himself to obtain the liberty of his country. He became the victim of its +weakness. Whether he had died or still lingered in the dungeons of Austria +was not known. His property was confiscated; his child became an orphan and +a beggar. She continued with her foster parents and bloomed in their rude +abode, fairer than a garden rose among dark-leaved brambles. + +When my father returned from Milan, he found playing with me in the hall of +our villa a child fairer than pictured cherub—a creature who seemed +to shed radiance from her looks and whose form and motions were lighter +than the chamois of the hills. The apparition was soon explained. With his +permission my mother prevailed on her rustic guardians to yield their +charge to her. They were fond of the sweet orphan. Her presence had seemed +a blessing to them, but it would be unfair to her to keep her in poverty +and want when Providence afforded her such powerful protection. They +consulted their village priest, and the result was that Elizabeth Lavenza +became the inmate of my parents’ house—my more than +sister—the beautiful and adored companion of all my occupations and +my pleasures. + +Everyone loved Elizabeth. The passionate and almost reverential +attachment with which all regarded her became, while I shared it, my +pride and my delight. On the evening previous to her being brought to +my home, my mother had said playfully, “I have a pretty present for my +Victor—tomorrow he shall have it.” And when, on the morrow, she +presented Elizabeth to me as her promised gift, I, with childish +seriousness, interpreted her words literally and looked upon Elizabeth +as mine—mine to protect, love, and cherish. All praises bestowed on +her I received as made to a possession of my own. We called each other +familiarly by the name of cousin. No word, no expression could body +forth the kind of relation in which she stood to me—my more than +sister, since till death she was to be mine only. + + + + + +Chapter 2 + +We were brought up together; there was not quite a year difference in +our ages. I need not say that we were strangers to any species of +disunion or dispute. Harmony was the soul of our companionship, and +the diversity and contrast that subsisted in our characters drew us +nearer together. Elizabeth was of a calmer and more concentrated +disposition; but, with all my ardour, I was capable of a more intense +application and was more deeply smitten with the thirst for knowledge. +She busied herself with following the aerial creations of the poets; +and in the majestic and wondrous scenes which surrounded our Swiss +home —the sublime shapes of the mountains, the changes of the seasons, +tempest and calm, the silence of winter, and the life and turbulence of +our Alpine summers—she found ample scope for admiration and delight. +While my companion contemplated with a serious and satisfied spirit the +magnificent appearances of things, I delighted in investigating their +causes. The world was to me a secret which I desired to divine. +Curiosity, earnest research to learn the hidden laws of nature, +gladness akin to rapture, as they were unfolded to me, are among the +earliest sensations I can remember. + +On the birth of a second son, my junior by seven years, my parents gave +up entirely their wandering life and fixed themselves in their native +country. We possessed a house in Geneva, and a _campagne_ on Belrive, +the eastern shore of the lake, at the distance of rather more than a +league from the city. We resided principally in the latter, and the +lives of my parents were passed in considerable seclusion. It was my +temper to avoid a crowd and to attach myself fervently to a few. I was +indifferent, therefore, to my school-fellows in general; but I united +myself in the bonds of the closest friendship to one among them. Henry +Clerval was the son of a merchant of Geneva. He was a boy of singular +talent and fancy. He loved enterprise, hardship, and even danger for +its own sake. He was deeply read in books of chivalry and romance. He +composed heroic songs and began to write many a tale of enchantment and +knightly adventure. He tried to make us act plays and to enter into +masquerades, in which the characters were drawn from the heroes of +Roncesvalles, of the Round Table of King Arthur, and the chivalrous +train who shed their blood to redeem the holy sepulchre from the hands +of the infidels. + +No human being could have passed a happier childhood than myself. My +parents were possessed by the very spirit of kindness and indulgence. +We felt that they were not the tyrants to rule our lot according to +their caprice, but the agents and creators of all the many delights +which we enjoyed. When I mingled with other families I distinctly +discerned how peculiarly fortunate my lot was, and gratitude assisted +the development of filial love. + +My temper was sometimes violent, and my passions vehement; but by some +law in my temperature they were turned not towards childish pursuits +but to an eager desire to learn, and not to learn all things +indiscriminately. I confess that neither the structure of languages, +nor the code of governments, nor the politics of various states +possessed attractions for me. It was the secrets of heaven and earth +that I desired to learn; and whether it was the outward substance of +things or the inner spirit of nature and the mysterious soul of man +that occupied me, still my inquiries were directed to the metaphysical, +or in its highest sense, the physical secrets of the world. + +Meanwhile Clerval occupied himself, so to speak, with the moral +relations of things. The busy stage of life, the virtues of heroes, +and the actions of men were his theme; and his hope and his dream was +to become one among those whose names are recorded in story as the +gallant and adventurous benefactors of our species. The saintly soul +of Elizabeth shone like a shrine-dedicated lamp in our peaceful home. +Her sympathy was ours; her smile, her soft voice, the sweet glance of +her celestial eyes, were ever there to bless and animate us. She was +the living spirit of love to soften and attract; I might have become +sullen in my study, rough through the ardour of my nature, but that +she was there to subdue me to a semblance of her own gentleness. And +Clerval—could aught ill entrench on the noble spirit of Clerval? Yet +he might not have been so perfectly humane, so thoughtful in his +generosity, so full of kindness and tenderness amidst his passion for +adventurous exploit, had she not unfolded to him the real loveliness of +beneficence and made the doing good the end and aim of his soaring +ambition. + +I feel exquisite pleasure in dwelling on the recollections of childhood, +before misfortune had tainted my mind and changed its bright visions of +extensive usefulness into gloomy and narrow reflections upon self. Besides, +in drawing the picture of my early days, I also record those events which +led, by insensible steps, to my after tale of misery, for when I would +account to myself for the birth of that passion which afterwards ruled my +destiny I find it arise, like a mountain river, from ignoble and almost +forgotten sources; but, swelling as it proceeded, it became the torrent +which, in its course, has swept away all my hopes and joys. + +Natural philosophy is the genius that has regulated my fate; I desire, +therefore, in this narration, to state those facts which led to my +predilection for that science. When I was thirteen years of age we all went +on a party of pleasure to the baths near Thonon; the inclemency of the +weather obliged us to remain a day confined to the inn. In this house I +chanced to find a volume of the works of Cornelius Agrippa. I opened it +with apathy; the theory which he attempts to demonstrate and the wonderful +facts which he relates soon changed this feeling into enthusiasm. A new +light seemed to dawn upon my mind, and bounding with joy, I communicated my +discovery to my father. My father looked carelessly at the title page of my +book and said, “Ah! Cornelius Agrippa! My dear Victor, do not waste +your time upon this; it is sad trash.” + +If, instead of this remark, my father had taken the pains to explain to me +that the principles of Agrippa had been entirely exploded and that a modern +system of science had been introduced which possessed much greater powers +than the ancient, because the powers of the latter were chimerical, while +those of the former were real and practical, under such circumstances I +should certainly have thrown Agrippa aside and have contented my +imagination, warmed as it was, by returning with greater ardour to my +former studies. It is even possible that the train of my ideas would never +have received the fatal impulse that led to my ruin. But the cursory glance +my father had taken of my volume by no means assured me that he was +acquainted with its contents, and I continued to read with the greatest +avidity. + +When I returned home my first care was to procure the whole works of this +author, and afterwards of Paracelsus and Albertus Magnus. I read and +studied the wild fancies of these writers with delight; they appeared to me +treasures known to few besides myself. I have described myself as always +having been imbued with a fervent longing to penetrate the secrets of +nature. In spite of the intense labour and wonderful discoveries of modern +philosophers, I always came from my studies discontented and unsatisfied. +Sir Isaac Newton is said to have avowed that he felt like a child picking +up shells beside the great and unexplored ocean of truth. Those of his +successors in each branch of natural philosophy with whom I was acquainted +appeared even to my boy’s apprehensions as tyros engaged in the same +pursuit. + +The untaught peasant beheld the elements around him and was acquainted +with their practical uses. The most learned philosopher knew little +more. He had partially unveiled the face of Nature, but her immortal +lineaments were still a wonder and a mystery. He might dissect, +anatomise, and give names; but, not to speak of a final cause, causes +in their secondary and tertiary grades were utterly unknown to him. I +had gazed upon the fortifications and impediments that seemed to keep +human beings from entering the citadel of nature, and rashly and +ignorantly I had repined. + +But here were books, and here were men who had penetrated deeper and knew +more. I took their word for all that they averred, and I became their +disciple. It may appear strange that such should arise in the eighteenth +century; but while I followed the routine of education in the schools of +Geneva, I was, to a great degree, self-taught with regard to my favourite +studies. My father was not scientific, and I was left to struggle with a +child’s blindness, added to a student’s thirst for knowledge. +Under the guidance of my new preceptors I entered with the greatest +diligence into the search of the philosopher’s stone and the elixir +of life; but the latter soon obtained my undivided attention. Wealth was an +inferior object, but what glory would attend the discovery if I could +banish disease from the human frame and render man invulnerable to any but +a violent death! + +Nor were these my only visions. The raising of ghosts or devils was a +promise liberally accorded by my favourite authors, the fulfilment of which +I most eagerly sought; and if my incantations were always unsuccessful, I +attributed the failure rather to my own inexperience and mistake than to a +want of skill or fidelity in my instructors. And thus for a time I was +occupied by exploded systems, mingling, like an unadept, a thousand +contradictory theories and floundering desperately in a very slough of +multifarious knowledge, guided by an ardent imagination and childish +reasoning, till an accident again changed the current of my ideas. + +When I was about fifteen years old we had retired to our house near +Belrive, when we witnessed a most violent and terrible thunderstorm. It +advanced from behind the mountains of Jura, and the thunder burst at once +with frightful loudness from various quarters of the heavens. I remained, +while the storm lasted, watching its progress with curiosity and delight. +As I stood at the door, on a sudden I beheld a stream of fire issue from an +old and beautiful oak which stood about twenty yards from our house; and so +soon as the dazzling light vanished, the oak had disappeared, and nothing +remained but a blasted stump. When we visited it the next morning, we found +the tree shattered in a singular manner. It was not splintered by the +shock, but entirely reduced to thin ribbons of wood. I never beheld +anything so utterly destroyed. + +Before this I was not unacquainted with the more obvious laws of +electricity. On this occasion a man of great research in natural +philosophy was with us, and excited by this catastrophe, he entered on +the explanation of a theory which he had formed on the subject of +electricity and galvanism, which was at once new and astonishing to me. +All that he said threw greatly into the shade Cornelius Agrippa, +Albertus Magnus, and Paracelsus, the lords of my imagination; but by +some fatality the overthrow of these men disinclined me to pursue my +accustomed studies. It seemed to me as if nothing would or could ever +be known. All that had so long engaged my attention suddenly grew +despicable. By one of those caprices of the mind which we are perhaps +most subject to in early youth, I at once gave up my former +occupations, set down natural history and all its progeny as a deformed +and abortive creation, and entertained the greatest disdain for a +would-be science which could never even step within the threshold of +real knowledge. In this mood of mind I betook myself to the +mathematics and the branches of study appertaining to that science as +being built upon secure foundations, and so worthy of my consideration. + +Thus strangely are our souls constructed, and by such slight ligaments +are we bound to prosperity or ruin. When I look back, it seems to me +as if this almost miraculous change of inclination and will was the +immediate suggestion of the guardian angel of my life—the last effort +made by the spirit of preservation to avert the storm that was even +then hanging in the stars and ready to envelop me. Her victory was +announced by an unusual tranquillity and gladness of soul which +followed the relinquishing of my ancient and latterly tormenting +studies. It was thus that I was to be taught to associate evil with +their prosecution, happiness with their disregard. + +It was a strong effort of the spirit of good, but it was ineffectual. +Destiny was too potent, and her immutable laws had decreed my utter and +terrible destruction. + + + + + +Chapter 3 + +When I had attained the age of seventeen my parents resolved that I +should become a student at the university of Ingolstadt. I had +hitherto attended the schools of Geneva, but my father thought it +necessary for the completion of my education that I should be made +acquainted with other customs than those of my native country. My +departure was therefore fixed at an early date, but before the day +resolved upon could arrive, the first misfortune of my life +occurred—an omen, as it were, of my future misery. + +Elizabeth had caught the scarlet fever; her illness was severe, and she was +in the greatest danger. During her illness many arguments had been urged to +persuade my mother to refrain from attending upon her. She had at first +yielded to our entreaties, but when she heard that the life of her +favourite was menaced, she could no longer control her anxiety. She +attended her sickbed; her watchful attentions triumphed over the malignity +of the distemper—Elizabeth was saved, but the consequences of this +imprudence were fatal to her preserver. On the third day my mother +sickened; her fever was accompanied by the most alarming symptoms, and the +looks of her medical attendants prognosticated the worst event. On her +deathbed the fortitude and benignity of this best of women did not desert +her. She joined the hands of Elizabeth and myself. “My +children,” she said, “my firmest hopes of future happiness were +placed on the prospect of your union. This expectation will now be the +consolation of your father. Elizabeth, my love, you must supply my place to +my younger children. Alas! I regret that I am taken from you; and, happy +and beloved as I have been, is it not hard to quit you all? But these are +not thoughts befitting me; I will endeavour to resign myself cheerfully to +death and will indulge a hope of meeting you in another world.” + +She died calmly, and her countenance expressed affection even in death. +I need not describe the feelings of those whose dearest ties are rent +by that most irreparable evil, the void that presents itself to the +soul, and the despair that is exhibited on the countenance. It is so +long before the mind can persuade itself that she whom we saw every day +and whose very existence appeared a part of our own can have departed +for ever—that the brightness of a beloved eye can have been +extinguished and the sound of a voice so familiar and dear to the ear +can be hushed, never more to be heard. These are the reflections of +the first days; but when the lapse of time proves the reality of the +evil, then the actual bitterness of grief commences. Yet from whom has +not that rude hand rent away some dear connection? And why should I +describe a sorrow which all have felt, and must feel? The time at +length arrives when grief is rather an indulgence than a necessity; and +the smile that plays upon the lips, although it may be deemed a +sacrilege, is not banished. My mother was dead, but we had still +duties which we ought to perform; we must continue our course with the +rest and learn to think ourselves fortunate whilst one remains whom the +spoiler has not seized. + +My departure for Ingolstadt, which had been deferred by these events, +was now again determined upon. I obtained from my father a respite of +some weeks. It appeared to me sacrilege so soon to leave the repose, +akin to death, of the house of mourning and to rush into the thick of +life. I was new to sorrow, but it did not the less alarm me. I was +unwilling to quit the sight of those that remained to me, and above +all, I desired to see my sweet Elizabeth in some degree consoled. + +She indeed veiled her grief and strove to act the comforter to us all. +She looked steadily on life and assumed its duties with courage and +zeal. She devoted herself to those whom she had been taught to call +her uncle and cousins. Never was she so enchanting as at this time, +when she recalled the sunshine of her smiles and spent them upon us. +She forgot even her own regret in her endeavours to make us forget. + +The day of my departure at length arrived. Clerval spent the last +evening with us. He had endeavoured to persuade his father to permit +him to accompany me and to become my fellow student, but in vain. His +father was a narrow-minded trader and saw idleness and ruin in the +aspirations and ambition of his son. Henry deeply felt the misfortune +of being debarred from a liberal education. He said little, but when +he spoke I read in his kindling eye and in his animated glance a +restrained but firm resolve not to be chained to the miserable details +of commerce. + +We sat late. We could not tear ourselves away from each other nor +persuade ourselves to say the word “Farewell!” It was said, and we +retired under the pretence of seeking repose, each fancying that the +other was deceived; but when at morning’s dawn I descended to the +carriage which was to convey me away, they were all there—my father +again to bless me, Clerval to press my hand once more, my Elizabeth to +renew her entreaties that I would write often and to bestow the last +feminine attentions on her playmate and friend. + +I threw myself into the chaise that was to convey me away and indulged in +the most melancholy reflections. I, who had ever been surrounded by +amiable companions, continually engaged in endeavouring to bestow mutual +pleasure—I was now alone. In the university whither I was going I +must form my own friends and be my own protector. My life had hitherto +been remarkably secluded and domestic, and this had given me invincible +repugnance to new countenances. I loved my brothers, Elizabeth, and +Clerval; these were “old familiar faces,” but I believed myself +totally unfitted for the company of strangers. Such were my reflections as +I commenced my journey; but as I proceeded, my spirits and hopes rose. I +ardently desired the acquisition of knowledge. I had often, when at home, +thought it hard to remain during my youth cooped up in one place and had +longed to enter the world and take my station among other human beings. +Now my desires were complied with, and it would, indeed, have been folly to +repent. + +I had sufficient leisure for these and many other reflections during my +journey to Ingolstadt, which was long and fatiguing. At length the +high white steeple of the town met my eyes. I alighted and was +conducted to my solitary apartment to spend the evening as I pleased. + +The next morning I delivered my letters of introduction and paid a visit to +some of the principal professors. Chance—or rather the evil +influence, the Angel of Destruction, which asserted omnipotent sway over me +from the moment I turned my reluctant steps from my father’s +door—led me first to M. Krempe, professor of natural philosophy. He +was an uncouth man, but deeply imbued in the secrets of his science. He +asked me several questions concerning my progress in the different branches +of science appertaining to natural philosophy. I replied carelessly, and +partly in contempt, mentioned the names of my alchemists as the principal +authors I had studied. The professor stared. “Have you,” he +said, “really spent your time in studying such nonsense?” + +I replied in the affirmative. “Every minute,” continued M. Krempe with +warmth, “every instant that you have wasted on those books is utterly +and entirely lost. You have burdened your memory with exploded systems +and useless names. Good God! In what desert land have you lived, +where no one was kind enough to inform you that these fancies which you +have so greedily imbibed are a thousand years old and as musty as they +are ancient? I little expected, in this enlightened and scientific +age, to find a disciple of Albertus Magnus and Paracelsus. My dear +sir, you must begin your studies entirely anew.” + +So saying, he stepped aside and wrote down a list of several books +treating of natural philosophy which he desired me to procure, and +dismissed me after mentioning that in the beginning of the following +week he intended to commence a course of lectures upon natural +philosophy in its general relations, and that M. Waldman, a fellow +professor, would lecture upon chemistry the alternate days that he +omitted. + +I returned home not disappointed, for I have said that I had long +considered those authors useless whom the professor reprobated; but I +returned not at all the more inclined to recur to these studies in any +shape. M. Krempe was a little squat man with a gruff voice and a +repulsive countenance; the teacher, therefore, did not prepossess me in +favour of his pursuits. In rather a too philosophical and connected a +strain, perhaps, I have given an account of the conclusions I had come +to concerning them in my early years. As a child I had not been +content with the results promised by the modern professors of natural +science. With a confusion of ideas only to be accounted for by my +extreme youth and my want of a guide on such matters, I had retrod the +steps of knowledge along the paths of time and exchanged the +discoveries of recent inquirers for the dreams of forgotten alchemists. +Besides, I had a contempt for the uses of modern natural philosophy. +It was very different when the masters of the science sought +immortality and power; such views, although futile, were grand; but now +the scene was changed. The ambition of the inquirer seemed to limit +itself to the annihilation of those visions on which my interest in +science was chiefly founded. I was required to exchange chimeras of +boundless grandeur for realities of little worth. + +Such were my reflections during the first two or three days of my +residence at Ingolstadt, which were chiefly spent in becoming +acquainted with the localities and the principal residents in my new +abode. But as the ensuing week commenced, I thought of the information +which M. Krempe had given me concerning the lectures. And although I +could not consent to go and hear that little conceited fellow deliver +sentences out of a pulpit, I recollected what he had said of M. +Waldman, whom I had never seen, as he had hitherto been out of town. + +Partly from curiosity and partly from idleness, I went into the lecturing +room, which M. Waldman entered shortly after. This professor was very +unlike his colleague. He appeared about fifty years of age, but with an +aspect expressive of the greatest benevolence; a few grey hairs covered his +temples, but those at the back of his head were nearly black. His person +was short but remarkably erect and his voice the sweetest I had ever heard. +He began his lecture by a recapitulation of the history of chemistry and +the various improvements made by different men of learning, pronouncing +with fervour the names of the most distinguished discoverers. He then took +a cursory view of the present state of the science and explained many of +its elementary terms. After having made a few preparatory experiments, he +concluded with a panegyric upon modern chemistry, the terms of which I +shall never forget: + +“The ancient teachers of this science,” said he, +“promised impossibilities and performed nothing. The modern masters +promise very little; they know that metals cannot be transmuted and that +the elixir of life is a chimera but these philosophers, whose hands seem +only made to dabble in dirt, and their eyes to pore over the microscope or +crucible, have indeed performed miracles. They penetrate into the recesses +of nature and show how she works in her hiding-places. They ascend into the +heavens; they have discovered how the blood circulates, and the nature of +the air we breathe. They have acquired new and almost unlimited powers; +they can command the thunders of heaven, mimic the earthquake, and even +mock the invisible world with its own shadows.” + +Such were the professor’s words—rather let me say such the words of +the fate—enounced to destroy me. As he went on I felt as if my soul +were grappling with a palpable enemy; one by one the various keys were +touched which formed the mechanism of my being; chord after chord was +sounded, and soon my mind was filled with one thought, one conception, +one purpose. So much has been done, exclaimed the soul of +Frankenstein—more, far more, will I achieve; treading in the steps +already marked, I will pioneer a new way, explore unknown powers, and +unfold to the world the deepest mysteries of creation. + +I closed not my eyes that night. My internal being was in a state of +insurrection and turmoil; I felt that order would thence arise, but I +had no power to produce it. By degrees, after the morning’s dawn, +sleep came. I awoke, and my yesternight’s thoughts were as a dream. +There only remained a resolution to return to my ancient studies and to +devote myself to a science for which I believed myself to possess a +natural talent. On the same day I paid M. Waldman a visit. His +manners in private were even more mild and attractive than in public, +for there was a certain dignity in his mien during his lecture which in +his own house was replaced by the greatest affability and kindness. I +gave him pretty nearly the same account of my former pursuits as I had +given to his fellow professor. He heard with attention the little +narration concerning my studies and smiled at the names of Cornelius +Agrippa and Paracelsus, but without the contempt that M. Krempe had +exhibited. He said that “These were men to whose indefatigable zeal +modern philosophers were indebted for most of the foundations of their +knowledge. They had left to us, as an easier task, to give new names +and arrange in connected classifications the facts which they in a +great degree had been the instruments of bringing to light. The +labours of men of genius, however erroneously directed, scarcely ever +fail in ultimately turning to the solid advantage of mankind.” I +listened to his statement, which was delivered without any presumption +or affectation, and then added that his lecture had removed my +prejudices against modern chemists; I expressed myself in measured +terms, with the modesty and deference due from a youth to his +instructor, without letting escape (inexperience in life would have +made me ashamed) any of the enthusiasm which stimulated my intended +labours. I requested his advice concerning the books I ought to +procure. + +“I am happy,” said M. Waldman, “to have gained a +disciple; and if your application equals your ability, I have no doubt of +your success. Chemistry is that branch of natural philosophy in which the +greatest improvements have been and may be made; it is on that account that +I have made it my peculiar study; but at the same time, I have not +neglected the other branches of science. A man would make but a very sorry +chemist if he attended to that department of human knowledge alone. If your +wish is to become really a man of science and not merely a petty +experimentalist, I should advise you to apply to every branch of natural +philosophy, including mathematics.” + +He then took me into his laboratory and explained to me the uses of his +various machines, instructing me as to what I ought to procure and +promising me the use of his own when I should have advanced far enough in +the science not to derange their mechanism. He also gave me the list of +books which I had requested, and I took my leave. + +Thus ended a day memorable to me; it decided my future destiny. + + + + + +Chapter 4 + +From this day natural philosophy, and particularly chemistry, in the +most comprehensive sense of the term, became nearly my sole occupation. +I read with ardour those works, so full of genius and discrimination, +which modern inquirers have written on these subjects. I attended the +lectures and cultivated the acquaintance of the men of science of the +university, and I found even in M. Krempe a great deal of sound sense +and real information, combined, it is true, with a repulsive +physiognomy and manners, but not on that account the less valuable. In +M. Waldman I found a true friend. His gentleness was never tinged by +dogmatism, and his instructions were given with an air of frankness and +good nature that banished every idea of pedantry. In a thousand ways +he smoothed for me the path of knowledge and made the most abstruse +inquiries clear and facile to my apprehension. My application was at +first fluctuating and uncertain; it gained strength as I proceeded and +soon became so ardent and eager that the stars often disappeared in the +light of morning whilst I was yet engaged in my laboratory. + +As I applied so closely, it may be easily conceived that my progress +was rapid. My ardour was indeed the astonishment of the students, and +my proficiency that of the masters. Professor Krempe often asked me, +with a sly smile, how Cornelius Agrippa went on, whilst M. Waldman +expressed the most heartfelt exultation in my progress. Two years +passed in this manner, during which I paid no visit to Geneva, but was +engaged, heart and soul, in the pursuit of some discoveries which I +hoped to make. None but those who have experienced them can conceive +of the enticements of science. In other studies you go as far as +others have gone before you, and there is nothing more to know; but in +a scientific pursuit there is continual food for discovery and wonder. +A mind of moderate capacity which closely pursues one study must +infallibly arrive at great proficiency in that study; and I, who +continually sought the attainment of one object of pursuit and was +solely wrapped up in this, improved so rapidly that at the end of two +years I made some discoveries in the improvement of some chemical +instruments, which procured me great esteem and admiration at the +university. When I had arrived at this point and had become as well +acquainted with the theory and practice of natural philosophy as +depended on the lessons of any of the professors at Ingolstadt, my +residence there being no longer conducive to my improvements, I thought +of returning to my friends and my native town, when an incident +happened that protracted my stay. + +One of the phenomena which had peculiarly attracted my attention was +the structure of the human frame, and, indeed, any animal endued with +life. Whence, I often asked myself, did the principle of life proceed? +It was a bold question, and one which has ever been considered as a +mystery; yet with how many things are we upon the brink of becoming +acquainted, if cowardice or carelessness did not restrain our +inquiries. I revolved these circumstances in my mind and determined +thenceforth to apply myself more particularly to those branches of +natural philosophy which relate to physiology. Unless I had been +animated by an almost supernatural enthusiasm, my application to this +study would have been irksome and almost intolerable. To examine the +causes of life, we must first have recourse to death. I became +acquainted with the science of anatomy, but this was not sufficient; I +must also observe the natural decay and corruption of the human body. +In my education my father had taken the greatest precautions that my +mind should be impressed with no supernatural horrors. I do not ever +remember to have trembled at a tale of superstition or to have feared +the apparition of a spirit. Darkness had no effect upon my fancy, and +a churchyard was to me merely the receptacle of bodies deprived of +life, which, from being the seat of beauty and strength, had become +food for the worm. Now I was led to examine the cause and progress of +this decay and forced to spend days and nights in vaults and +charnel-houses. My attention was fixed upon every object the most +insupportable to the delicacy of the human feelings. I saw how the +fine form of man was degraded and wasted; I beheld the corruption of +death succeed to the blooming cheek of life; I saw how the worm +inherited the wonders of the eye and brain. I paused, examining and +analysing all the minutiae of causation, as exemplified in the change +from life to death, and death to life, until from the midst of this +darkness a sudden light broke in upon me—a light so brilliant and +wondrous, yet so simple, that while I became dizzy with the immensity +of the prospect which it illustrated, I was surprised that among so +many men of genius who had directed their inquiries towards the same +science, that I alone should be reserved to discover so astonishing a +secret. + +Remember, I am not recording the vision of a madman. The sun does not +more certainly shine in the heavens than that which I now affirm is +true. Some miracle might have produced it, yet the stages of the +discovery were distinct and probable. After days and nights of +incredible labour and fatigue, I succeeded in discovering the cause of +generation and life; nay, more, I became myself capable of bestowing +animation upon lifeless matter. + +The astonishment which I had at first experienced on this discovery +soon gave place to delight and rapture. After so much time spent in +painful labour, to arrive at once at the summit of my desires was the +most gratifying consummation of my toils. But this discovery was so +great and overwhelming that all the steps by which I had been +progressively led to it were obliterated, and I beheld only the result. +What had been the study and desire of the wisest men since the creation +of the world was now within my grasp. Not that, like a magic scene, it +all opened upon me at once: the information I had obtained was of a +nature rather to direct my endeavours so soon as I should point them +towards the object of my search than to exhibit that object already +accomplished. I was like the Arabian who had been buried with the dead +and found a passage to life, aided only by one glimmering and seemingly +ineffectual light. + +I see by your eagerness and the wonder and hope which your eyes +express, my friend, that you expect to be informed of the secret with +which I am acquainted; that cannot be; listen patiently until the end +of my story, and you will easily perceive why I am reserved upon that +subject. I will not lead you on, unguarded and ardent as I then was, +to your destruction and infallible misery. Learn from me, if not by my +precepts, at least by my example, how dangerous is the acquirement of +knowledge and how much happier that man is who believes his native town +to be the world, than he who aspires to become greater than his nature +will allow. + +When I found so astonishing a power placed within my hands, I hesitated +a long time concerning the manner in which I should employ it. +Although I possessed the capacity of bestowing animation, yet to +prepare a frame for the reception of it, with all its intricacies of +fibres, muscles, and veins, still remained a work of inconceivable +difficulty and labour. I doubted at first whether I should attempt the +creation of a being like myself, or one of simpler organization; but my +imagination was too much exalted by my first success to permit me to +doubt of my ability to give life to an animal as complex and wonderful +as man. The materials at present within my command hardly appeared +adequate to so arduous an undertaking, but I doubted not that I should +ultimately succeed. I prepared myself for a multitude of reverses; my +operations might be incessantly baffled, and at last my work be +imperfect, yet when I considered the improvement which every day takes +place in science and mechanics, I was encouraged to hope my present +attempts would at least lay the foundations of future success. Nor +could I consider the magnitude and complexity of my plan as any +argument of its impracticability. It was with these feelings that I +began the creation of a human being. As the minuteness of the parts +formed a great hindrance to my speed, I resolved, contrary to my first +intention, to make the being of a gigantic stature, that is to say, +about eight feet in height, and proportionably large. After having +formed this determination and having spent some months in successfully +collecting and arranging my materials, I began. + +No one can conceive the variety of feelings which bore me onwards, like +a hurricane, in the first enthusiasm of success. Life and death +appeared to me ideal bounds, which I should first break through, and +pour a torrent of light into our dark world. A new species would bless +me as its creator and source; many happy and excellent natures would +owe their being to me. No father could claim the gratitude of his +child so completely as I should deserve theirs. Pursuing these +reflections, I thought that if I could bestow animation upon lifeless +matter, I might in process of time (although I now found it impossible) +renew life where death had apparently devoted the body to corruption. + +These thoughts supported my spirits, while I pursued my undertaking +with unremitting ardour. My cheek had grown pale with study, and my +person had become emaciated with confinement. Sometimes, on the very +brink of certainty, I failed; yet still I clung to the hope which the +next day or the next hour might realise. One secret which I alone +possessed was the hope to which I had dedicated myself; and the moon +gazed on my midnight labours, while, with unrelaxed and breathless +eagerness, I pursued nature to her hiding-places. Who shall conceive +the horrors of my secret toil as I dabbled among the unhallowed damps +of the grave or tortured the living animal to animate the lifeless +clay? My limbs now tremble, and my eyes swim with the remembrance; but +then a resistless and almost frantic impulse urged me forward; I seemed +to have lost all soul or sensation but for this one pursuit. It was +indeed but a passing trance, that only made me feel with renewed +acuteness so soon as, the unnatural stimulus ceasing to operate, I had +returned to my old habits. I collected bones from charnel-houses and +disturbed, with profane fingers, the tremendous secrets of the human +frame. In a solitary chamber, or rather cell, at the top of the house, +and separated from all the other apartments by a gallery and staircase, +I kept my workshop of filthy creation; my eyeballs were starting from +their sockets in attending to the details of my employment. The +dissecting room and the slaughter-house furnished many of my materials; +and often did my human nature turn with loathing from my occupation, +whilst, still urged on by an eagerness which perpetually increased, I +brought my work near to a conclusion. + +The summer months passed while I was thus engaged, heart and soul, in +one pursuit. It was a most beautiful season; never did the fields +bestow a more plentiful harvest or the vines yield a more luxuriant +vintage, but my eyes were insensible to the charms of nature. And the +same feelings which made me neglect the scenes around me caused me also +to forget those friends who were so many miles absent, and whom I had +not seen for so long a time. I knew my silence disquieted them, and I +well remembered the words of my father: “I know that while you are +pleased with yourself you will think of us with affection, and we shall +hear regularly from you. You must pardon me if I regard any +interruption in your correspondence as a proof that your other duties +are equally neglected.” + +I knew well therefore what would be my father’s feelings, but I could +not tear my thoughts from my employment, loathsome in itself, but which +had taken an irresistible hold of my imagination. I wished, as it +were, to procrastinate all that related to my feelings of affection +until the great object, which swallowed up every habit of my nature, +should be completed. + +I then thought that my father would be unjust if he ascribed my neglect +to vice or faultiness on my part, but I am now convinced that he was +justified in conceiving that I should not be altogether free from +blame. A human being in perfection ought always to preserve a calm and +peaceful mind and never to allow passion or a transitory desire to +disturb his tranquillity. I do not think that the pursuit of knowledge +is an exception to this rule. If the study to which you apply yourself +has a tendency to weaken your affections and to destroy your taste for +those simple pleasures in which no alloy can possibly mix, then that +study is certainly unlawful, that is to say, not befitting the human +mind. If this rule were always observed; if no man allowed any pursuit +whatsoever to interfere with the tranquillity of his domestic +affections, Greece had not been enslaved, Cæsar would have spared his +country, America would have been discovered more gradually, and the +empires of Mexico and Peru had not been destroyed. + +But I forget that I am moralizing in the most interesting part of my +tale, and your looks remind me to proceed. + +My father made no reproach in his letters and only took notice of my +silence by inquiring into my occupations more particularly than before. +Winter, spring, and summer passed away during my labours; but I did not +watch the blossom or the expanding leaves—sights which before always +yielded me supreme delight—so deeply was I engrossed in my +occupation. The leaves of that year had withered before my work drew near +to a close, and now every day showed me more plainly how well I had +succeeded. But my enthusiasm was checked by my anxiety, and I appeared +rather like one doomed by slavery to toil in the mines, or any other +unwholesome trade than an artist occupied by his favourite employment. +Every night I was oppressed by a slow fever, and I became nervous to a most +painful degree; the fall of a leaf startled me, and I shunned my fellow +creatures as if I had been guilty of a crime. Sometimes I grew alarmed at +the wreck I perceived that I had become; the energy of my purpose alone +sustained me: my labours would soon end, and I believed that exercise and +amusement would then drive away incipient disease; and I promised myself +both of these when my creation should be complete. + + + + + +Chapter 5 + +It was on a dreary night of November that I beheld the accomplishment +of my toils. With an anxiety that almost amounted to agony, I +collected the instruments of life around me, that I might infuse a +spark of being into the lifeless thing that lay at my feet. It was +already one in the morning; the rain pattered dismally against the +panes, and my candle was nearly burnt out, when, by the glimmer of the +half-extinguished light, I saw the dull yellow eye of the creature +open; it breathed hard, and a convulsive motion agitated its limbs. + +How can I describe my emotions at this catastrophe, or how delineate +the wretch whom with such infinite pains and care I had endeavoured to +form? His limbs were in proportion, and I had selected his features as +beautiful. Beautiful! Great God! His yellow skin scarcely covered +the work of muscles and arteries beneath; his hair was of a lustrous +black, and flowing; his teeth of a pearly whiteness; but these +luxuriances only formed a more horrid contrast with his watery eyes, +that seemed almost of the same colour as the dun-white sockets in which +they were set, his shrivelled complexion and straight black lips. + +The different accidents of life are not so changeable as the feelings +of human nature. I had worked hard for nearly two years, for the sole +purpose of infusing life into an inanimate body. For this I had +deprived myself of rest and health. I had desired it with an ardour +that far exceeded moderation; but now that I had finished, the beauty +of the dream vanished, and breathless horror and disgust filled my +heart. Unable to endure the aspect of the being I had created, I +rushed out of the room and continued a long time traversing my +bed-chamber, unable to compose my mind to sleep. At length lassitude +succeeded to the tumult I had before endured, and I threw myself on the +bed in my clothes, endeavouring to seek a few moments of forgetfulness. +But it was in vain; I slept, indeed, but I was disturbed by the wildest +dreams. I thought I saw Elizabeth, in the bloom of health, walking in +the streets of Ingolstadt. Delighted and surprised, I embraced her, +but as I imprinted the first kiss on her lips, they became livid with +the hue of death; her features appeared to change, and I thought that I +held the corpse of my dead mother in my arms; a shroud enveloped her +form, and I saw the grave-worms crawling in the folds of the flannel. +I started from my sleep with horror; a cold dew covered my forehead, my +teeth chattered, and every limb became convulsed; when, by the dim and +yellow light of the moon, as it forced its way through the window +shutters, I beheld the wretch—the miserable monster whom I had +created. He held up the curtain of the bed; and his eyes, if eyes they +may be called, were fixed on me. His jaws opened, and he muttered some +inarticulate sounds, while a grin wrinkled his cheeks. He might have +spoken, but I did not hear; one hand was stretched out, seemingly to +detain me, but I escaped and rushed downstairs. I took refuge in the +courtyard belonging to the house which I inhabited, where I remained +during the rest of the night, walking up and down in the greatest +agitation, listening attentively, catching and fearing each sound as if +it were to announce the approach of the demoniacal corpse to which I +had so miserably given life. + +Oh! No mortal could support the horror of that countenance. A mummy +again endued with animation could not be so hideous as that wretch. I +had gazed on him while unfinished; he was ugly then, but when those +muscles and joints were rendered capable of motion, it became a thing +such as even Dante could not have conceived. + +I passed the night wretchedly. Sometimes my pulse beat so quickly and +hardly that I felt the palpitation of every artery; at others, I nearly +sank to the ground through languor and extreme weakness. Mingled with +this horror, I felt the bitterness of disappointment; dreams that had +been my food and pleasant rest for so long a space were now become a +hell to me; and the change was so rapid, the overthrow so complete! + +Morning, dismal and wet, at length dawned and discovered to my +sleepless and aching eyes the church of Ingolstadt, its white steeple +and clock, which indicated the sixth hour. The porter opened the gates +of the court, which had that night been my asylum, and I issued into +the streets, pacing them with quick steps, as if I sought to avoid the +wretch whom I feared every turning of the street would present to my +view. I did not dare return to the apartment which I inhabited, but +felt impelled to hurry on, although drenched by the rain which poured +from a black and comfortless sky. + +I continued walking in this manner for some time, endeavouring by +bodily exercise to ease the load that weighed upon my mind. I +traversed the streets without any clear conception of where I was or +what I was doing. My heart palpitated in the sickness of fear, and I +hurried on with irregular steps, not daring to look about me: + + Like one who, on a lonely road, + Doth walk in fear and dread, + And, having once turned round, walks on, + And turns no more his head; + Because he knows a frightful fiend + Doth close behind him tread. + + [Coleridge’s “Ancient Mariner.”] + + + +Continuing thus, I came at length opposite to the inn at which the various +diligences and carriages usually stopped. Here I paused, I knew not why; +but I remained some minutes with my eyes fixed on a coach that was coming +towards me from the other end of the street. As it drew nearer I observed +that it was the Swiss diligence; it stopped just where I was standing, and +on the door being opened, I perceived Henry Clerval, who, on seeing me, +instantly sprung out. “My dear Frankenstein,” exclaimed he, +“how glad I am to see you! How fortunate that you should be here at +the very moment of my alighting!” + +Nothing could equal my delight on seeing Clerval; his presence brought back +to my thoughts my father, Elizabeth, and all those scenes of home so dear +to my recollection. I grasped his hand, and in a moment forgot my horror +and misfortune; I felt suddenly, and for the first time during many months, +calm and serene joy. I welcomed my friend, therefore, in the most cordial +manner, and we walked towards my college. Clerval continued talking for +some time about our mutual friends and his own good fortune in being +permitted to come to Ingolstadt. “You may easily believe,” said +he, “how great was the difficulty to persuade my father that all +necessary knowledge was not comprised in the noble art of book-keeping; +and, indeed, I believe I left him incredulous to the last, for his constant +answer to my unwearied entreaties was the same as that of the Dutch +schoolmaster in The Vicar of Wakefield: ‘I have ten thousand florins +a year without Greek, I eat heartily without Greek.’ But his +affection for me at length overcame his dislike of learning, and he has +permitted me to undertake a voyage of discovery to the land of +knowledge.” + +“It gives me the greatest delight to see you; but tell me how you left +my father, brothers, and Elizabeth.” + +“Very well, and very happy, only a little uneasy that they hear from +you so seldom. By the by, I mean to lecture you a little upon their +account myself. But, my dear Frankenstein,” continued he, stopping +short and gazing full in my face, “I did not before remark how very ill +you appear; so thin and pale; you look as if you had been watching for +several nights.” + +“You have guessed right; I have lately been so deeply engaged in one +occupation that I have not allowed myself sufficient rest, as you see; +but I hope, I sincerely hope, that all these employments are now at an +end and that I am at length free.” + +I trembled excessively; I could not endure to think of, and far less to +allude to, the occurrences of the preceding night. I walked with a +quick pace, and we soon arrived at my college. I then reflected, and +the thought made me shiver, that the creature whom I had left in my +apartment might still be there, alive and walking about. I dreaded to +behold this monster, but I feared still more that Henry should see him. +Entreating him, therefore, to remain a few minutes at the bottom of the +stairs, I darted up towards my own room. My hand was already on the +lock of the door before I recollected myself. I then paused, and a +cold shivering came over me. I threw the door forcibly open, as +children are accustomed to do when they expect a spectre to stand in +waiting for them on the other side; but nothing appeared. I stepped +fearfully in: the apartment was empty, and my bedroom was also freed +from its hideous guest. I could hardly believe that so great a good +fortune could have befallen me, but when I became assured that my enemy +had indeed fled, I clapped my hands for joy and ran down to Clerval. + +We ascended into my room, and the servant presently brought breakfast; +but I was unable to contain myself. It was not joy only that possessed +me; I felt my flesh tingle with excess of sensitiveness, and my pulse +beat rapidly. I was unable to remain for a single instant in the same +place; I jumped over the chairs, clapped my hands, and laughed aloud. +Clerval at first attributed my unusual spirits to joy on his arrival, +but when he observed me more attentively, he saw a wildness in my eyes +for which he could not account, and my loud, unrestrained, heartless +laughter frightened and astonished him. + +“My dear Victor,” cried he, “what, for God’s sake, +is the matter? Do not laugh in that manner. How ill you are! What is the +cause of all this?” + +“Do not ask me,” cried I, putting my hands before my eyes, for I +thought I saw the dreaded spectre glide into the room; “_he_ can +tell. Oh, save me! Save me!” I imagined that the monster seized me; +I struggled furiously and fell down in a fit. + +Poor Clerval! What must have been his feelings? A meeting, which he +anticipated with such joy, so strangely turned to bitterness. But I +was not the witness of his grief, for I was lifeless and did not +recover my senses for a long, long time. + +This was the commencement of a nervous fever which confined me for +several months. During all that time Henry was my only nurse. I +afterwards learned that, knowing my father’s advanced age and unfitness +for so long a journey, and how wretched my sickness would make +Elizabeth, he spared them this grief by concealing the extent of my +disorder. He knew that I could not have a more kind and attentive +nurse than himself; and, firm in the hope he felt of my recovery, he +did not doubt that, instead of doing harm, he performed the kindest +action that he could towards them. + +But I was in reality very ill, and surely nothing but the unbounded and +unremitting attentions of my friend could have restored me to life. +The form of the monster on whom I had bestowed existence was for ever +before my eyes, and I raved incessantly concerning him. Doubtless my +words surprised Henry; he at first believed them to be the wanderings +of my disturbed imagination, but the pertinacity with which I +continually recurred to the same subject persuaded him that my disorder +indeed owed its origin to some uncommon and terrible event. + +By very slow degrees, and with frequent relapses that alarmed and +grieved my friend, I recovered. I remember the first time I became +capable of observing outward objects with any kind of pleasure, I +perceived that the fallen leaves had disappeared and that the young +buds were shooting forth from the trees that shaded my window. It was +a divine spring, and the season contributed greatly to my +convalescence. I felt also sentiments of joy and affection revive in +my bosom; my gloom disappeared, and in a short time I became as +cheerful as before I was attacked by the fatal passion. + +“Dearest Clerval,” exclaimed I, “how kind, how very good +you are to me. This whole winter, instead of being spent in study, as you +promised yourself, has been consumed in my sick room. How shall I ever +repay you? I feel the greatest remorse for the disappointment of which I +have been the occasion, but you will forgive me.” + +“You will repay me entirely if you do not discompose yourself, but get +well as fast as you can; and since you appear in such good spirits, I +may speak to you on one subject, may I not?” + +I trembled. One subject! What could it be? Could he allude to an object on +whom I dared not even think? + +“Compose yourself,” said Clerval, who observed my change of +colour, “I will not mention it if it agitates you; but your father +and cousin would be very happy if they received a letter from you in your +own handwriting. They hardly know how ill you have been and are uneasy at +your long silence.” + +“Is that all, my dear Henry? How could you suppose that my first +thought would not fly towards those dear, dear friends whom I love and +who are so deserving of my love?” + +“If this is your present temper, my friend, you will perhaps be glad +to see a letter that has been lying here some days for you; it is from +your cousin, I believe.” + + + + + +Chapter 6 + +Clerval then put the following letter into my hands. It was from my +own Elizabeth: + +“My dearest Cousin, + +“You have been ill, very ill, and even the constant letters of dear +kind Henry are not sufficient to reassure me on your account. You are +forbidden to write—to hold a pen; yet one word from you, dear Victor, +is necessary to calm our apprehensions. For a long time I have thought +that each post would bring this line, and my persuasions have +restrained my uncle from undertaking a journey to Ingolstadt. I have +prevented his encountering the inconveniences and perhaps dangers of so +long a journey, yet how often have I regretted not being able to +perform it myself! I figure to myself that the task of attending on +your sickbed has devolved on some mercenary old nurse, who could never +guess your wishes nor minister to them with the care and affection of +your poor cousin. Yet that is over now: Clerval writes that indeed +you are getting better. I eagerly hope that you will confirm this +intelligence soon in your own handwriting. + +“Get well—and return to us. You will find a happy, cheerful home and +friends who love you dearly. Your father’s health is vigorous, and he +asks but to see you, but to be assured that you are well; and not a +care will ever cloud his benevolent countenance. How pleased you would +be to remark the improvement of our Ernest! He is now sixteen and full +of activity and spirit. He is desirous to be a true Swiss and to enter +into foreign service, but we cannot part with him, at least until his +elder brother returns to us. My uncle is not pleased with the idea of +a military career in a distant country, but Ernest never had your +powers of application. He looks upon study as an odious fetter; his +time is spent in the open air, climbing the hills or rowing on the +lake. I fear that he will become an idler unless we yield the point +and permit him to enter on the profession which he has selected. + +“Little alteration, except the growth of our dear children, has taken +place since you left us. The blue lake and snow-clad mountains—they +never change; and I think our placid home and our contented hearts are +regulated by the same immutable laws. My trifling occupations take up +my time and amuse me, and I am rewarded for any exertions by seeing +none but happy, kind faces around me. Since you left us, but one +change has taken place in our little household. Do you remember on +what occasion Justine Moritz entered our family? Probably you do not; +I will relate her history, therefore in a few words. Madame Moritz, +her mother, was a widow with four children, of whom Justine was the +third. This girl had always been the favourite of her father, but +through a strange perversity, her mother could not endure her, and +after the death of M. Moritz, treated her very ill. My aunt observed +this, and when Justine was twelve years of age, prevailed on her mother +to allow her to live at our house. The republican institutions of our +country have produced simpler and happier manners than those which +prevail in the great monarchies that surround it. Hence there is less +distinction between the several classes of its inhabitants; and the +lower orders, being neither so poor nor so despised, their manners are +more refined and moral. A servant in Geneva does not mean the same +thing as a servant in France and England. Justine, thus received in +our family, learned the duties of a servant, a condition which, in our +fortunate country, does not include the idea of ignorance and a +sacrifice of the dignity of a human being. + +“Justine, you may remember, was a great favourite of yours; and I +recollect you once remarked that if you were in an ill humour, one +glance from Justine could dissipate it, for the same reason that +Ariosto gives concerning the beauty of Angelica—she looked so +frank-hearted and happy. My aunt conceived a great attachment for her, +by which she was induced to give her an education superior to that +which she had at first intended. This benefit was fully repaid; +Justine was the most grateful little creature in the world: I do not +mean that she made any professions I never heard one pass her lips, but +you could see by her eyes that she almost adored her protectress. +Although her disposition was gay and in many respects inconsiderate, +yet she paid the greatest attention to every gesture of my aunt. She +thought her the model of all excellence and endeavoured to imitate her +phraseology and manners, so that even now she often reminds me of her. + +“When my dearest aunt died every one was too much occupied in their own +grief to notice poor Justine, who had attended her during her illness +with the most anxious affection. Poor Justine was very ill; but other +trials were reserved for her. + +“One by one, her brothers and sister died; and her mother, with the +exception of her neglected daughter, was left childless. The +conscience of the woman was troubled; she began to think that the +deaths of her favourites was a judgement from heaven to chastise her +partiality. She was a Roman Catholic; and I believe her confessor +confirmed the idea which she had conceived. Accordingly, a few months +after your departure for Ingolstadt, Justine was called home by her +repentant mother. Poor girl! She wept when she quitted our house; she +was much altered since the death of my aunt; grief had given softness +and a winning mildness to her manners, which had before been remarkable +for vivacity. Nor was her residence at her mother’s house of a nature +to restore her gaiety. The poor woman was very vacillating in her +repentance. She sometimes begged Justine to forgive her unkindness, +but much oftener accused her of having caused the deaths of her +brothers and sister. Perpetual fretting at length threw Madame Moritz +into a decline, which at first increased her irritability, but she is +now at peace for ever. She died on the first approach of cold weather, +at the beginning of this last winter. Justine has just returned to us; +and I assure you I love her tenderly. She is very clever and gentle, +and extremely pretty; as I mentioned before, her mien and her +expression continually remind me of my dear aunt. + +“I must say also a few words to you, my dear cousin, of little darling +William. I wish you could see him; he is very tall of his age, with +sweet laughing blue eyes, dark eyelashes, and curling hair. When he +smiles, two little dimples appear on each cheek, which are rosy with +health. He has already had one or two little _wives,_ but Louisa Biron +is his favourite, a pretty little girl of five years of age. + +“Now, dear Victor, I dare say you wish to be indulged in a little +gossip concerning the good people of Geneva. The pretty Miss Mansfield +has already received the congratulatory visits on her approaching +marriage with a young Englishman, John Melbourne, Esq. Her ugly +sister, Manon, married M. Duvillard, the rich banker, last autumn. Your +favourite schoolfellow, Louis Manoir, has suffered several misfortunes +since the departure of Clerval from Geneva. But he has already +recovered his spirits, and is reported to be on the point of marrying a +lively pretty Frenchwoman, Madame Tavernier. She is a widow, and much +older than Manoir; but she is very much admired, and a favourite with +everybody. + +“I have written myself into better spirits, dear cousin; but my anxiety +returns upon me as I conclude. Write, dearest Victor,—one line—one +word will be a blessing to us. Ten thousand thanks to Henry for his +kindness, his affection, and his many letters; we are sincerely +grateful. Adieu! my cousin; take care of yourself; and, I entreat +you, write! + +“Elizabeth Lavenza. + + +“Geneva, March 18th, 17—.” + + + +“Dear, dear Elizabeth!” I exclaimed, when I had read her +letter: “I will write instantly and relieve them from the anxiety +they must feel.” I wrote, and this exertion greatly fatigued me; but +my convalescence had commenced, and proceeded regularly. In another +fortnight I was able to leave my chamber. + +One of my first duties on my recovery was to introduce Clerval to the +several professors of the university. In doing this, I underwent a +kind of rough usage, ill befitting the wounds that my mind had +sustained. Ever since the fatal night, the end of my labours, and the +beginning of my misfortunes, I had conceived a violent antipathy even +to the name of natural philosophy. When I was otherwise quite restored +to health, the sight of a chemical instrument would renew all the agony +of my nervous symptoms. Henry saw this, and had removed all my +apparatus from my view. He had also changed my apartment; for he +perceived that I had acquired a dislike for the room which had +previously been my laboratory. But these cares of Clerval were made of +no avail when I visited the professors. M. Waldman inflicted torture +when he praised, with kindness and warmth, the astonishing progress I +had made in the sciences. He soon perceived that I disliked the +subject; but not guessing the real cause, he attributed my feelings to +modesty, and changed the subject from my improvement, to the science +itself, with a desire, as I evidently saw, of drawing me out. What +could I do? He meant to please, and he tormented me. I felt as if he +had placed carefully, one by one, in my view those instruments which +were to be afterwards used in putting me to a slow and cruel death. I +writhed under his words, yet dared not exhibit the pain I felt. +Clerval, whose eyes and feelings were always quick in discerning the +sensations of others, declined the subject, alleging, in excuse, his +total ignorance; and the conversation took a more general turn. I +thanked my friend from my heart, but I did not speak. I saw plainly +that he was surprised, but he never attempted to draw my secret from +me; and although I loved him with a mixture of affection and reverence +that knew no bounds, yet I could never persuade myself to confide in +him that event which was so often present to my recollection, but which +I feared the detail to another would only impress more deeply. + +M. Krempe was not equally docile; and in my condition at that time, of +almost insupportable sensitiveness, his harsh blunt encomiums gave me even +more pain than the benevolent approbation of M. Waldman. “D—n +the fellow!” cried he; “why, M. Clerval, I assure you he has +outstript us all. Ay, stare if you please; but it is nevertheless true. A +youngster who, but a few years ago, believed in Cornelius Agrippa as firmly +as in the gospel, has now set himself at the head of the university; and if +he is not soon pulled down, we shall all be out of countenance.—Ay, +ay,” continued he, observing my face expressive of suffering, +“M. Frankenstein is modest; an excellent quality in a young man. +Young men should be diffident of themselves, you know, M. Clerval: I was +myself when young; but that wears out in a very short time.” + +M. Krempe had now commenced an eulogy on himself, which happily turned +the conversation from a subject that was so annoying to me. + +Clerval had never sympathised in my tastes for natural science; and his +literary pursuits differed wholly from those which had occupied me. He +came to the university with the design of making himself complete +master of the oriental languages, and thus he should open a field for +the plan of life he had marked out for himself. Resolved to pursue no +inglorious career, he turned his eyes toward the East, as affording +scope for his spirit of enterprise. The Persian, Arabic, and Sanskrit +languages engaged his attention, and I was easily induced to enter on +the same studies. Idleness had ever been irksome to me, and now that I +wished to fly from reflection, and hated my former studies, I felt +great relief in being the fellow-pupil with my friend, and found not +only instruction but consolation in the works of the orientalists. I +did not, like him, attempt a critical knowledge of their dialects, for +I did not contemplate making any other use of them than temporary +amusement. I read merely to understand their meaning, and they well +repaid my labours. Their melancholy is soothing, and their joy +elevating, to a degree I never experienced in studying the authors of +any other country. When you read their writings, life appears to +consist in a warm sun and a garden of roses,—in the smiles and frowns +of a fair enemy, and the fire that consumes your own heart. How +different from the manly and heroical poetry of Greece and Rome! + +Summer passed away in these occupations, and my return to Geneva was +fixed for the latter end of autumn; but being delayed by several +accidents, winter and snow arrived, the roads were deemed impassable, +and my journey was retarded until the ensuing spring. I felt this +delay very bitterly; for I longed to see my native town and my beloved +friends. My return had only been delayed so long, from an +unwillingness to leave Clerval in a strange place, before he had become +acquainted with any of its inhabitants. The winter, however, was spent +cheerfully; and although the spring was uncommonly late, when it came +its beauty compensated for its dilatoriness. + +The month of May had already commenced, and I expected the letter daily +which was to fix the date of my departure, when Henry proposed a +pedestrian tour in the environs of Ingolstadt, that I might bid a +personal farewell to the country I had so long inhabited. I acceded +with pleasure to this proposition: I was fond of exercise, and Clerval +had always been my favourite companion in the ramble of this nature +that I had taken among the scenes of my native country. + +We passed a fortnight in these perambulations: my health and spirits +had long been restored, and they gained additional strength from the +salubrious air I breathed, the natural incidents of our progress, and +the conversation of my friend. Study had before secluded me from the +intercourse of my fellow-creatures, and rendered me unsocial; but +Clerval called forth the better feelings of my heart; he again taught +me to love the aspect of nature, and the cheerful faces of children. +Excellent friend! how sincerely you did love me, and endeavour to +elevate my mind until it was on a level with your own. A selfish +pursuit had cramped and narrowed me, until your gentleness and +affection warmed and opened my senses; I became the same happy creature +who, a few years ago, loved and beloved by all, had no sorrow or care. +When happy, inanimate nature had the power of bestowing on me the most +delightful sensations. A serene sky and verdant fields filled me with +ecstasy. The present season was indeed divine; the flowers of spring +bloomed in the hedges, while those of summer were already in bud. I +was undisturbed by thoughts which during the preceding year had pressed +upon me, notwithstanding my endeavours to throw them off, with an +invincible burden. + +Henry rejoiced in my gaiety, and sincerely sympathised in my feelings: he +exerted himself to amuse me, while he expressed the sensations that filled +his soul. The resources of his mind on this occasion were truly +astonishing: his conversation was full of imagination; and very often, in +imitation of the Persian and Arabic writers, he invented tales of wonderful +fancy and passion. At other times he repeated my favourite poems, or drew +me out into arguments, which he supported with great ingenuity. + +We returned to our college on a Sunday afternoon: the peasants were +dancing, and every one we met appeared gay and happy. My own spirits were +high, and I bounded along with feelings of unbridled joy and hilarity. + + + + + +Chapter 7 + +On my return, I found the following letter from my father:— + +“My dear Victor, + +“You have probably waited impatiently for a letter to fix the date of +your return to us; and I was at first tempted to write only a few +lines, merely mentioning the day on which I should expect you. But +that would be a cruel kindness, and I dare not do it. What would be +your surprise, my son, when you expected a happy and glad welcome, to +behold, on the contrary, tears and wretchedness? And how, Victor, can +I relate our misfortune? Absence cannot have rendered you callous to +our joys and griefs; and how shall I inflict pain on my long absent +son? I wish to prepare you for the woeful news, but I know it is +impossible; even now your eye skims over the page to seek the words +which are to convey to you the horrible tidings. + +“William is dead!—that sweet child, whose smiles delighted and warmed +my heart, who was so gentle, yet so gay! Victor, he is murdered! + +“I will not attempt to console you; but will simply relate the +circumstances of the transaction. + +“Last Thursday (May 7th), I, my niece, and your two brothers, went to +walk in Plainpalais. The evening was warm and serene, and we prolonged +our walk farther than usual. It was already dusk before we thought of +returning; and then we discovered that William and Ernest, who had gone +on before, were not to be found. We accordingly rested on a seat until +they should return. Presently Ernest came, and enquired if we had seen +his brother; he said, that he had been playing with him, that William +had run away to hide himself, and that he vainly sought for him, and +afterwards waited for a long time, but that he did not return. + +“This account rather alarmed us, and we continued to search for him +until night fell, when Elizabeth conjectured that he might have +returned to the house. He was not there. We returned again, with +torches; for I could not rest, when I thought that my sweet boy had +lost himself, and was exposed to all the damps and dews of night; +Elizabeth also suffered extreme anguish. About five in the morning I +discovered my lovely boy, whom the night before I had seen blooming and +active in health, stretched on the grass livid and motionless; the +print of the murder’s finger was on his neck. + +“He was conveyed home, and the anguish that was visible in my +countenance betrayed the secret to Elizabeth. She was very earnest to +see the corpse. At first I attempted to prevent her but she persisted, +and entering the room where it lay, hastily examined the neck of the +victim, and clasping her hands exclaimed, ‘O God! I have murdered my +darling child!’ + +“She fainted, and was restored with extreme difficulty. When she again +lived, it was only to weep and sigh. She told me, that that same +evening William had teased her to let him wear a very valuable +miniature that she possessed of your mother. This picture is gone, and +was doubtless the temptation which urged the murderer to the deed. We +have no trace of him at present, although our exertions to discover him +are unremitted; but they will not restore my beloved William! + +“Come, dearest Victor; you alone can console Elizabeth. She weeps +continually, and accuses herself unjustly as the cause of his death; +her words pierce my heart. We are all unhappy; but will not that be an +additional motive for you, my son, to return and be our comforter? +Your dear mother! Alas, Victor! I now say, Thank God she did not live +to witness the cruel, miserable death of her youngest darling! + +“Come, Victor; not brooding thoughts of vengeance against the assassin, +but with feelings of peace and gentleness, that will heal, instead of +festering, the wounds of our minds. Enter the house of mourning, my +friend, but with kindness and affection for those who love you, and not +with hatred for your enemies. + +“Your affectionate and afflicted father, + +“Alphonse Frankenstein. + + + +“Geneva, May 12th, 17—.” + + + +Clerval, who had watched my countenance as I read this letter, was +surprised to observe the despair that succeeded the joy I at first +expressed on receiving new from my friends. I threw the letter on the +table, and covered my face with my hands. + +“My dear Frankenstein,” exclaimed Henry, when he perceived me +weep with bitterness, “are you always to be unhappy? My dear friend, +what has happened?” + +I motioned him to take up the letter, while I walked up and down the +room in the extremest agitation. Tears also gushed from the eyes of +Clerval, as he read the account of my misfortune. + +“I can offer you no consolation, my friend,” said he; +“your disaster is irreparable. What do you intend to do?” + +“To go instantly to Geneva: come with me, Henry, to order the horses.” + +During our walk, Clerval endeavoured to say a few words of consolation; +he could only express his heartfelt sympathy. “Poor William!” said he, +“dear lovely child, he now sleeps with his angel mother! Who that had +seen him bright and joyous in his young beauty, but must weep over his +untimely loss! To die so miserably; to feel the murderer’s grasp! How +much more a murdered that could destroy radiant innocence! Poor little +fellow! one only consolation have we; his friends mourn and weep, but +he is at rest. The pang is over, his sufferings are at an end for ever. +A sod covers his gentle form, and he knows no pain. He can no longer +be a subject for pity; we must reserve that for his miserable +survivors.” + +Clerval spoke thus as we hurried through the streets; the words +impressed themselves on my mind and I remembered them afterwards in +solitude. But now, as soon as the horses arrived, I hurried into a +cabriolet, and bade farewell to my friend. + +My journey was very melancholy. At first I wished to hurry on, for I longed +to console and sympathise with my loved and sorrowing friends; but when I +drew near my native town, I slackened my progress. I could hardly sustain +the multitude of feelings that crowded into my mind. I passed through +scenes familiar to my youth, but which I had not seen for nearly six years. +How altered every thing might be during that time! One sudden and +desolating change had taken place; but a thousand little circumstances +might have by degrees worked other alterations, which, although they were +done more tranquilly, might not be the less decisive. Fear overcame me; I +dared no advance, dreading a thousand nameless evils that made me tremble, +although I was unable to define them. + +I remained two days at Lausanne, in this painful state of mind. I +contemplated the lake: the waters were placid; all around was calm; and the +snowy mountains, “the palaces of nature,” were not changed. By +degrees the calm and heavenly scene restored me, and I continued my journey +towards Geneva. + +The road ran by the side of the lake, which became narrower as I +approached my native town. I discovered more distinctly the black +sides of Jura, and the bright summit of Mont Blanc. I wept like a +child. “Dear mountains! my own beautiful lake! how do you welcome your +wanderer? Your summits are clear; the sky and lake are blue and +placid. Is this to prognosticate peace, or to mock at my unhappiness?” + +I fear, my friend, that I shall render myself tedious by dwelling on +these preliminary circumstances; but they were days of comparative +happiness, and I think of them with pleasure. My country, my beloved +country! who but a native can tell the delight I took in again +beholding thy streams, thy mountains, and, more than all, thy lovely +lake! + +Yet, as I drew nearer home, grief and fear again overcame me. Night also +closed around; and when I could hardly see the dark mountains, I felt still +more gloomily. The picture appeared a vast and dim scene of evil, and I +foresaw obscurely that I was destined to become the most wretched of human +beings. Alas! I prophesied truly, and failed only in one single +circumstance, that in all the misery I imagined and dreaded, I did not +conceive the hundredth part of the anguish I was destined to endure. + +It was completely dark when I arrived in the environs of Geneva; the gates +of the town were already shut; and I was obliged to pass the night at +Secheron, a village at the distance of half a league from the city. The sky +was serene; and, as I was unable to rest, I resolved to visit the spot +where my poor William had been murdered. As I could not pass through the +town, I was obliged to cross the lake in a boat to arrive at Plainpalais. +During this short voyage I saw the lightning playing on the summit of Mont +Blanc in the most beautiful figures. The storm appeared to approach +rapidly, and, on landing, I ascended a low hill, that I might observe its +progress. It advanced; the heavens were clouded, and I soon felt the rain +coming slowly in large drops, but its violence quickly increased. + +I quitted my seat, and walked on, although the darkness and storm +increased every minute, and the thunder burst with a terrific crash +over my head. It was echoed from Salêve, the Juras, and the Alps of +Savoy; vivid flashes of lightning dazzled my eyes, illuminating the +lake, making it appear like a vast sheet of fire; then for an instant +every thing seemed of a pitchy darkness, until the eye recovered itself +from the preceding flash. The storm, as is often the case in +Switzerland, appeared at once in various parts of the heavens. The +most violent storm hung exactly north of the town, over the part of the +lake which lies between the promontory of Belrive and the village of +Copêt. Another storm enlightened Jura with faint flashes; and another +darkened and sometimes disclosed the Môle, a peaked mountain to the +east of the lake. + +While I watched the tempest, so beautiful yet terrific, I wandered on with +a hasty step. This noble war in the sky elevated my spirits; I clasped my +hands, and exclaimed aloud, “William, dear angel! this is thy +funeral, this thy dirge!” As I said these words, I perceived in the +gloom a figure which stole from behind a clump of trees near me; I stood +fixed, gazing intently: I could not be mistaken. A flash of lightning +illuminated the object, and discovered its shape plainly to me; its +gigantic stature, and the deformity of its aspect more hideous than belongs +to humanity, instantly informed me that it was the wretch, the filthy +dæmon, to whom I had given life. What did he there? Could he be (I +shuddered at the conception) the murderer of my brother? No sooner did that +idea cross my imagination, than I became convinced of its truth; my teeth +chattered, and I was forced to lean against a tree for support. The figure +passed me quickly, and I lost it in the gloom. Nothing in human shape could +have destroyed the fair child. _He_ was the murderer! I could not +doubt it. The mere presence of the idea was an irresistible proof of the +fact. I thought of pursuing the devil; but it would have been in vain, for +another flash discovered him to me hanging among the rocks of the nearly +perpendicular ascent of Mont Salêve, a hill that bounds Plainpalais on the +south. He soon reached the summit, and disappeared. + +I remained motionless. The thunder ceased; but the rain still +continued, and the scene was enveloped in an impenetrable darkness. I +revolved in my mind the events which I had until now sought to forget: +the whole train of my progress toward the creation; the appearance of +the works of my own hands at my bedside; its departure. Two years had +now nearly elapsed since the night on which he first received life; and +was this his first crime? Alas! I had turned loose into the world a +depraved wretch, whose delight was in carnage and misery; had he not +murdered my brother? + +No one can conceive the anguish I suffered during the remainder of the +night, which I spent, cold and wet, in the open air. But I did not +feel the inconvenience of the weather; my imagination was busy in +scenes of evil and despair. I considered the being whom I had cast +among mankind, and endowed with the will and power to effect purposes +of horror, such as the deed which he had now done, nearly in the light +of my own vampire, my own spirit let loose from the grave, and forced +to destroy all that was dear to me. + +Day dawned; and I directed my steps towards the town. The gates were +open, and I hastened to my father’s house. My first thought was to +discover what I knew of the murderer, and cause instant pursuit to be +made. But I paused when I reflected on the story that I had to tell. A +being whom I myself had formed, and endued with life, had met me at +midnight among the precipices of an inaccessible mountain. I +remembered also the nervous fever with which I had been seized just at +the time that I dated my creation, and which would give an air of +delirium to a tale otherwise so utterly improbable. I well knew that +if any other had communicated such a relation to me, I should have +looked upon it as the ravings of insanity. Besides, the strange nature +of the animal would elude all pursuit, even if I were so far credited +as to persuade my relatives to commence it. And then of what use would +be pursuit? Who could arrest a creature capable of scaling the +overhanging sides of Mont Salêve? These reflections determined me, and +I resolved to remain silent. + +It was about five in the morning when I entered my father’s house. I +told the servants not to disturb the family, and went into the library +to attend their usual hour of rising. + +Six years had elapsed, passed in a dream but for one indelible trace, and I +stood in the same place where I had last embraced my father before my +departure for Ingolstadt. Beloved and venerable parent! He still remained +to me. I gazed on the picture of my mother, which stood over the +mantel-piece. It was an historical subject, painted at my father’s +desire, and represented Caroline Beaufort in an agony of despair, kneeling +by the coffin of her dead father. Her garb was rustic, and her cheek pale; +but there was an air of dignity and beauty, that hardly permitted the +sentiment of pity. Below this picture was a miniature of William; and my +tears flowed when I looked upon it. While I was thus engaged, Ernest +entered: he had heard me arrive, and hastened to welcome me: +“Welcome, my dearest Victor,” said he. “Ah! I wish you +had come three months ago, and then you would have found us all joyous and +delighted. You come to us now to share a misery which nothing can +alleviate; yet your presence will, I hope, revive our father, who seems +sinking under his misfortune; and your persuasions will induce poor +Elizabeth to cease her vain and tormenting self-accusations.—Poor +William! he was our darling and our pride!” + +Tears, unrestrained, fell from my brother’s eyes; a sense of mortal +agony crept over my frame. Before, I had only imagined the +wretchedness of my desolated home; the reality came on me as a new, and +a not less terrible, disaster. I tried to calm Ernest; I enquired more +minutely concerning my father, and here I named my cousin. + +“She most of all,” said Ernest, “requires consolation; she accused +herself of having caused the death of my brother, and that made her +very wretched. But since the murderer has been discovered—” + +“The murderer discovered! Good God! how can that be? who could attempt +to pursue him? It is impossible; one might as well try to overtake the +winds, or confine a mountain-stream with a straw. I saw him too; he +was free last night!” + +“I do not know what you mean,” replied my brother, in accents of +wonder, “but to us the discovery we have made completes our misery. No +one would believe it at first; and even now Elizabeth will not be +convinced, notwithstanding all the evidence. Indeed, who would credit +that Justine Moritz, who was so amiable, and fond of all the family, +could suddenly become so capable of so frightful, so appalling a crime?” + +“Justine Moritz! Poor, poor girl, is she the accused? But it is +wrongfully; every one knows that; no one believes it, surely, Ernest?” + +“No one did at first; but several circumstances came out, that have +almost forced conviction upon us; and her own behaviour has been so +confused, as to add to the evidence of facts a weight that, I fear, +leaves no hope for doubt. But she will be tried today, and you will +then hear all.” + +He then related that, the morning on which the murder of poor William +had been discovered, Justine had been taken ill, and confined to her +bed for several days. During this interval, one of the servants, +happening to examine the apparel she had worn on the night of the +murder, had discovered in her pocket the picture of my mother, which +had been judged to be the temptation of the murderer. The servant +instantly showed it to one of the others, who, without saying a word to +any of the family, went to a magistrate; and, upon their deposition, +Justine was apprehended. On being charged with the fact, the poor girl +confirmed the suspicion in a great measure by her extreme confusion of +manner. + +This was a strange tale, but it did not shake my faith; and I replied +earnestly, “You are all mistaken; I know the murderer. Justine, poor, +good Justine, is innocent.” + +At that instant my father entered. I saw unhappiness deeply impressed +on his countenance, but he endeavoured to welcome me cheerfully; and, +after we had exchanged our mournful greeting, would have introduced +some other topic than that of our disaster, had not Ernest exclaimed, +“Good God, papa! Victor says that he knows who was the murderer of +poor William.” + +“We do also, unfortunately,” replied my father, “for indeed I had +rather have been for ever ignorant than have discovered so much +depravity and ungratitude in one I valued so highly.” + +“My dear father, you are mistaken; Justine is innocent.” + +“If she is, God forbid that she should suffer as guilty. She is to be +tried today, and I hope, I sincerely hope, that she will be acquitted.” + +This speech calmed me. I was firmly convinced in my own mind that +Justine, and indeed every human being, was guiltless of this murder. I +had no fear, therefore, that any circumstantial evidence could be +brought forward strong enough to convict her. My tale was not one to +announce publicly; its astounding horror would be looked upon as +madness by the vulgar. Did any one indeed exist, except I, the +creator, who would believe, unless his senses convinced him, in the +existence of the living monument of presumption and rash ignorance +which I had let loose upon the world? + +We were soon joined by Elizabeth. Time had altered her since I last +beheld her; it had endowed her with loveliness surpassing the beauty of +her childish years. There was the same candour, the same vivacity, but +it was allied to an expression more full of sensibility and intellect. +She welcomed me with the greatest affection. “Your arrival, my dear +cousin,” said she, “fills me with hope. You perhaps will find some +means to justify my poor guiltless Justine. Alas! who is safe, if she +be convicted of crime? I rely on her innocence as certainly as I do +upon my own. Our misfortune is doubly hard to us; we have not only +lost that lovely darling boy, but this poor girl, whom I sincerely +love, is to be torn away by even a worse fate. If she is condemned, I +never shall know joy more. But she will not, I am sure she will not; +and then I shall be happy again, even after the sad death of my little +William.” + +“She is innocent, my Elizabeth,” said I, “and that shall +be proved; fear nothing, but let your spirits be cheered by the assurance +of her acquittal.” + +“How kind and generous you are! every one else believes in her guilt, +and that made me wretched, for I knew that it was impossible: and to +see every one else prejudiced in so deadly a manner rendered me +hopeless and despairing.” She wept. + +“Dearest niece,” said my father, “dry your tears. If she +is, as you believe, innocent, rely on the justice of our laws, and the +activity with which I shall prevent the slightest shadow of +partiality.” + + + + + +Chapter 8 + +We passed a few sad hours until eleven o’clock, when the trial was to +commence. My father and the rest of the family being obliged to attend +as witnesses, I accompanied them to the court. During the whole of +this wretched mockery of justice I suffered living torture. It was to +be decided whether the result of my curiosity and lawless devices would +cause the death of two of my fellow beings: one a smiling babe full of +innocence and joy, the other far more dreadfully murdered, with every +aggravation of infamy that could make the murder memorable in horror. +Justine also was a girl of merit and possessed qualities which promised +to render her life happy; now all was to be obliterated in an +ignominious grave, and I the cause! A thousand times rather would I +have confessed myself guilty of the crime ascribed to Justine, but I +was absent when it was committed, and such a declaration would have +been considered as the ravings of a madman and would not have +exculpated her who suffered through me. + +The appearance of Justine was calm. She was dressed in mourning, and +her countenance, always engaging, was rendered, by the solemnity of her +feelings, exquisitely beautiful. Yet she appeared confident in +innocence and did not tremble, although gazed on and execrated by +thousands, for all the kindness which her beauty might otherwise have +excited was obliterated in the minds of the spectators by the +imagination of the enormity she was supposed to have committed. She +was tranquil, yet her tranquillity was evidently constrained; and as +her confusion had before been adduced as a proof of her guilt, she +worked up her mind to an appearance of courage. When she entered the +court she threw her eyes round it and quickly discovered where we were +seated. A tear seemed to dim her eye when she saw us, but she quickly +recovered herself, and a look of sorrowful affection seemed to attest +her utter guiltlessness. + +The trial began, and after the advocate against her had stated the +charge, several witnesses were called. Several strange facts combined +against her, which might have staggered anyone who had not such proof +of her innocence as I had. She had been out the whole of the night on +which the murder had been committed and towards morning had been +perceived by a market-woman not far from the spot where the body of the +murdered child had been afterwards found. The woman asked her what she +did there, but she looked very strangely and only returned a confused +and unintelligible answer. She returned to the house about eight +o’clock, and when one inquired where she had passed the night, she +replied that she had been looking for the child and demanded earnestly +if anything had been heard concerning him. When shown the body, she +fell into violent hysterics and kept her bed for several days. The +picture was then produced which the servant had found in her pocket; +and when Elizabeth, in a faltering voice, proved that it was the same +which, an hour before the child had been missed, she had placed round +his neck, a murmur of horror and indignation filled the court. + +Justine was called on for her defence. As the trial had proceeded, her +countenance had altered. Surprise, horror, and misery were strongly +expressed. Sometimes she struggled with her tears, but when she was +desired to plead, she collected her powers and spoke in an audible +although variable voice. + +“God knows,” she said, “how entirely I am innocent. But I +do not pretend that my protestations should acquit me; I rest my innocence +on a plain and simple explanation of the facts which have been adduced +against me, and I hope the character I have always borne will incline my +judges to a favourable interpretation where any circumstance appears +doubtful or suspicious.” + +She then related that, by the permission of Elizabeth, she had passed +the evening of the night on which the murder had been committed at the +house of an aunt at Chêne, a village situated at about a league from +Geneva. On her return, at about nine o’clock, she met a man who asked +her if she had seen anything of the child who was lost. She was +alarmed by this account and passed several hours in looking for him, +when the gates of Geneva were shut, and she was forced to remain +several hours of the night in a barn belonging to a cottage, being +unwilling to call up the inhabitants, to whom she was well known. Most +of the night she spent here watching; towards morning she believed that +she slept for a few minutes; some steps disturbed her, and she awoke. +It was dawn, and she quitted her asylum, that she might again endeavour +to find my brother. If she had gone near the spot where his body lay, +it was without her knowledge. That she had been bewildered when +questioned by the market-woman was not surprising, since she had passed +a sleepless night and the fate of poor William was yet uncertain. +Concerning the picture she could give no account. + +“I know,” continued the unhappy victim, “how heavily and +fatally this one circumstance weighs against me, but I have no power of +explaining it; and when I have expressed my utter ignorance, I am only left +to conjecture concerning the probabilities by which it might have been +placed in my pocket. But here also I am checked. I believe that I have no +enemy on earth, and none surely would have been so wicked as to destroy me +wantonly. Did the murderer place it there? I know of no opportunity +afforded him for so doing; or, if I had, why should he have stolen the +jewel, to part with it again so soon? + +“I commit my cause to the justice of my judges, yet I see no room for +hope. I beg permission to have a few witnesses examined concerning my +character, and if their testimony shall not overweigh my supposed +guilt, I must be condemned, although I would pledge my salvation on my +innocence.” + +Several witnesses were called who had known her for many years, and +they spoke well of her; but fear and hatred of the crime of which they +supposed her guilty rendered them timorous and unwilling to come +forward. Elizabeth saw even this last resource, her excellent +dispositions and irreproachable conduct, about to fail the accused, +when, although violently agitated, she desired permission to address +the court. + +“I am,” said she, “the cousin of the unhappy child who +was murdered, or rather his sister, for I was educated by and have lived +with his parents ever since and even long before his birth. It may +therefore be judged indecent in me to come forward on this occasion, but +when I see a fellow creature about to perish through the cowardice of her +pretended friends, I wish to be allowed to speak, that I may say what I +know of her character. I am well acquainted with the accused. I have lived +in the same house with her, at one time for five and at another for nearly +two years. During all that period she appeared to me the most amiable and +benevolent of human creatures. She nursed Madame Frankenstein, my aunt, in +her last illness, with the greatest affection and care and afterwards +attended her own mother during a tedious illness, in a manner that excited +the admiration of all who knew her, after which she again lived in my +uncle’s house, where she was beloved by all the family. She was +warmly attached to the child who is now dead and acted towards him like a +most affectionate mother. For my own part, I do not hesitate to say that, +notwithstanding all the evidence produced against her, I believe and rely +on her perfect innocence. She had no temptation for such an action; as to +the bauble on which the chief proof rests, if she had earnestly desired it, +I should have willingly given it to her, so much do I esteem and value +her.” + +A murmur of approbation followed Elizabeth’s simple and powerful +appeal, but it was excited by her generous interference, and not in +favour of poor Justine, on whom the public indignation was turned with +renewed violence, charging her with the blackest ingratitude. She +herself wept as Elizabeth spoke, but she did not answer. My own +agitation and anguish was extreme during the whole trial. I believed +in her innocence; I knew it. Could the dæmon who had (I did not for a +minute doubt) murdered my brother also in his hellish sport have +betrayed the innocent to death and ignominy? I could not sustain the +horror of my situation, and when I perceived that the popular voice and +the countenances of the judges had already condemned my unhappy victim, +I rushed out of the court in agony. The tortures of the accused did +not equal mine; she was sustained by innocence, but the fangs of +remorse tore my bosom and would not forgo their hold. + +I passed a night of unmingled wretchedness. In the morning I went to +the court; my lips and throat were parched. I dared not ask the fatal +question, but I was known, and the officer guessed the cause of my +visit. The ballots had been thrown; they were all black, and Justine +was condemned. + +I cannot pretend to describe what I then felt. I had before +experienced sensations of horror, and I have endeavoured to bestow upon +them adequate expressions, but words cannot convey an idea of the +heart-sickening despair that I then endured. The person to whom I +addressed myself added that Justine had already confessed her guilt. +“That evidence,” he observed, “was hardly required in so glaring a +case, but I am glad of it, and, indeed, none of our judges like to +condemn a criminal upon circumstantial evidence, be it ever so +decisive.” + +This was strange and unexpected intelligence; what could it mean? Had +my eyes deceived me? And was I really as mad as the whole world would +believe me to be if I disclosed the object of my suspicions? I +hastened to return home, and Elizabeth eagerly demanded the result. + +“My cousin,” replied I, “it is decided as you may have expected; all +judges had rather that ten innocent should suffer than that one guilty +should escape. But she has confessed.” + +This was a dire blow to poor Elizabeth, who had relied with firmness upon +Justine’s innocence. “Alas!” said she. “How shall I +ever again believe in human goodness? Justine, whom I loved and esteemed as +my sister, how could she put on those smiles of innocence only to betray? +Her mild eyes seemed incapable of any severity or guile, and yet she has +committed a murder.” + +Soon after we heard that the poor victim had expressed a desire to see my +cousin. My father wished her not to go but said that he left it to her own +judgment and feelings to decide. “Yes,” said Elizabeth, +“I will go, although she is guilty; and you, Victor, shall accompany +me; I cannot go alone.” The idea of this visit was torture to me, yet +I could not refuse. + +We entered the gloomy prison chamber and beheld Justine sitting on some +straw at the farther end; her hands were manacled, and her head rested on +her knees. She rose on seeing us enter, and when we were left alone with +her, she threw herself at the feet of Elizabeth, weeping bitterly. My +cousin wept also. + +“Oh, Justine!” said she. “Why did you rob me of my last consolation? +I relied on your innocence, and although I was then very wretched, I +was not so miserable as I am now.” + +“And do you also believe that I am so very, very wicked? Do you also +join with my enemies to crush me, to condemn me as a murderer?” Her +voice was suffocated with sobs. + +“Rise, my poor girl,” said Elizabeth; “why do you kneel, +if you are innocent? I am not one of your enemies, I believed you +guiltless, notwithstanding every evidence, until I heard that you had +yourself declared your guilt. That report, you say, is false; and be +assured, dear Justine, that nothing can shake my confidence in you for a +moment, but your own confession.” + +“I did confess, but I confessed a lie. I confessed, that I might +obtain absolution; but now that falsehood lies heavier at my heart than +all my other sins. The God of heaven forgive me! Ever since I was +condemned, my confessor has besieged me; he threatened and menaced, +until I almost began to think that I was the monster that he said I +was. He threatened excommunication and hell fire in my last moments if +I continued obdurate. Dear lady, I had none to support me; all looked +on me as a wretch doomed to ignominy and perdition. What could I do? +In an evil hour I subscribed to a lie; and now only am I truly +miserable.” + +She paused, weeping, and then continued, “I thought with horror, my +sweet lady, that you should believe your Justine, whom your blessed +aunt had so highly honoured, and whom you loved, was a creature capable +of a crime which none but the devil himself could have perpetrated. +Dear William! dearest blessed child! I soon shall see you again in +heaven, where we shall all be happy; and that consoles me, going as I +am to suffer ignominy and death.” + +“Oh, Justine! Forgive me for having for one moment distrusted you. +Why did you confess? But do not mourn, dear girl. Do not fear. I +will proclaim, I will prove your innocence. I will melt the stony +hearts of your enemies by my tears and prayers. You shall not die! +You, my playfellow, my companion, my sister, perish on the scaffold! +No! No! I never could survive so horrible a misfortune.” + +Justine shook her head mournfully. “I do not fear to die,” she said; +“that pang is past. God raises my weakness and gives me courage to +endure the worst. I leave a sad and bitter world; and if you remember +me and think of me as of one unjustly condemned, I am resigned to the +fate awaiting me. Learn from me, dear lady, to submit in patience to +the will of heaven!” + +During this conversation I had retired to a corner of the prison room, +where I could conceal the horrid anguish that possessed me. Despair! +Who dared talk of that? The poor victim, who on the morrow was to pass +the awful boundary between life and death, felt not, as I did, such +deep and bitter agony. I gnashed my teeth and ground them together, +uttering a groan that came from my inmost soul. Justine started. When +she saw who it was, she approached me and said, “Dear sir, you are very +kind to visit me; you, I hope, do not believe that I am guilty?” + +I could not answer. “No, Justine,” said Elizabeth; “he is more +convinced of your innocence than I was, for even when he heard that you +had confessed, he did not credit it.” + +“I truly thank him. In these last moments I feel the sincerest +gratitude towards those who think of me with kindness. How sweet is +the affection of others to such a wretch as I am! It removes more than +half my misfortune, and I feel as if I could die in peace now that my +innocence is acknowledged by you, dear lady, and your cousin.” + +Thus the poor sufferer tried to comfort others and herself. She indeed +gained the resignation she desired. But I, the true murderer, felt the +never-dying worm alive in my bosom, which allowed of no hope or +consolation. Elizabeth also wept and was unhappy, but hers also was +the misery of innocence, which, like a cloud that passes over the fair +moon, for a while hides but cannot tarnish its brightness. Anguish and +despair had penetrated into the core of my heart; I bore a hell within +me which nothing could extinguish. We stayed several hours with +Justine, and it was with great difficulty that Elizabeth could tear +herself away. “I wish,” cried she, “that I were to die with you; I +cannot live in this world of misery.” + +Justine assumed an air of cheerfulness, while she with difficulty +repressed her bitter tears. She embraced Elizabeth and said in a voice +of half-suppressed emotion, “Farewell, sweet lady, dearest Elizabeth, +my beloved and only friend; may heaven, in its bounty, bless and +preserve you; may this be the last misfortune that you will ever +suffer! Live, and be happy, and make others so.” + +And on the morrow Justine died. Elizabeth’s heart-rending eloquence +failed to move the judges from their settled conviction in the +criminality of the saintly sufferer. My passionate and indignant +appeals were lost upon them. And when I received their cold answers +and heard the harsh, unfeeling reasoning of these men, my purposed +avowal died away on my lips. Thus I might proclaim myself a madman, +but not revoke the sentence passed upon my wretched victim. She +perished on the scaffold as a murderess! + +From the tortures of my own heart, I turned to contemplate the deep and +voiceless grief of my Elizabeth. This also was my doing! And my +father’s woe, and the desolation of that late so smiling home all was +the work of my thrice-accursed hands! Ye weep, unhappy ones, but these +are not your last tears! Again shall you raise the funeral wail, and +the sound of your lamentations shall again and again be heard! +Frankenstein, your son, your kinsman, your early, much-loved friend; he +who would spend each vital drop of blood for your sakes, who has no +thought nor sense of joy except as it is mirrored also in your dear +countenances, who would fill the air with blessings and spend his life +in serving you—he bids you weep, to shed countless tears; happy beyond +his hopes, if thus inexorable fate be satisfied, and if the destruction +pause before the peace of the grave have succeeded to your sad torments! + +Thus spoke my prophetic soul, as, torn by remorse, horror, and despair, +I beheld those I loved spend vain sorrow upon the graves of William and +Justine, the first hapless victims to my unhallowed arts. + + + + + +Chapter 9 + +Nothing is more painful to the human mind than, after the feelings have +been worked up by a quick succession of events, the dead calmness of +inaction and certainty which follows and deprives the soul both of hope +and fear. Justine died, she rested, and I was alive. The blood flowed +freely in my veins, but a weight of despair and remorse pressed on my +heart which nothing could remove. Sleep fled from my eyes; I wandered +like an evil spirit, for I had committed deeds of mischief beyond +description horrible, and more, much more (I persuaded myself) was yet +behind. Yet my heart overflowed with kindness and the love of virtue. +I had begun life with benevolent intentions and thirsted for the moment +when I should put them in practice and make myself useful to my fellow +beings. Now all was blasted; instead of that serenity of conscience +which allowed me to look back upon the past with self-satisfaction, and +from thence to gather promise of new hopes, I was seized by remorse and +the sense of guilt, which hurried me away to a hell of intense tortures +such as no language can describe. + +This state of mind preyed upon my health, which had perhaps never +entirely recovered from the first shock it had sustained. I shunned +the face of man; all sound of joy or complacency was torture to me; +solitude was my only consolation—deep, dark, deathlike solitude. + +My father observed with pain the alteration perceptible in my disposition +and habits and endeavoured by arguments deduced from the feelings of his +serene conscience and guiltless life to inspire me with fortitude and +awaken in me the courage to dispel the dark cloud which brooded over me. +“Do you think, Victor,” said he, “that I do not suffer +also? No one could love a child more than I loved your +brother”—tears came into his eyes as he spoke—“but +is it not a duty to the survivors that we should refrain from augmenting +their unhappiness by an appearance of immoderate grief? It is also a duty +owed to yourself, for excessive sorrow prevents improvement or enjoyment, +or even the discharge of daily usefulness, without which no man is fit for +society.” + +This advice, although good, was totally inapplicable to my case; I +should have been the first to hide my grief and console my friends if +remorse had not mingled its bitterness, and terror its alarm, with my +other sensations. Now I could only answer my father with a look of +despair and endeavour to hide myself from his view. + +About this time we retired to our house at Belrive. This change was +particularly agreeable to me. The shutting of the gates regularly at +ten o’clock and the impossibility of remaining on the lake after that +hour had rendered our residence within the walls of Geneva very irksome +to me. I was now free. Often, after the rest of the family had +retired for the night, I took the boat and passed many hours upon the +water. Sometimes, with my sails set, I was carried by the wind; and +sometimes, after rowing into the middle of the lake, I left the boat to +pursue its own course and gave way to my own miserable reflections. I +was often tempted, when all was at peace around me, and I the only +unquiet thing that wandered restless in a scene so beautiful and +heavenly—if I except some bat, or the frogs, whose harsh and +interrupted croaking was heard only when I approached the shore—often, +I say, I was tempted to plunge into the silent lake, that the waters +might close over me and my calamities for ever. But I was restrained, +when I thought of the heroic and suffering Elizabeth, whom I tenderly +loved, and whose existence was bound up in mine. I thought also of my +father and surviving brother; should I by my base desertion leave them +exposed and unprotected to the malice of the fiend whom I had let loose +among them? + +At these moments I wept bitterly and wished that peace would revisit my +mind only that I might afford them consolation and happiness. But that +could not be. Remorse extinguished every hope. I had been the author of +unalterable evils, and I lived in daily fear lest the monster whom I had +created should perpetrate some new wickedness. I had an obscure feeling +that all was not over and that he would still commit some signal crime, +which by its enormity should almost efface the recollection of the past. +There was always scope for fear so long as anything I loved remained +behind. My abhorrence of this fiend cannot be conceived. When I thought of +him I gnashed my teeth, my eyes became inflamed, and I ardently wished to +extinguish that life which I had so thoughtlessly bestowed. When I +reflected on his crimes and malice, my hatred and revenge burst all bounds +of moderation. I would have made a pilgrimage to the highest peak of the +Andes, could I, when there, have precipitated him to their base. I wished +to see him again, that I might wreak the utmost extent of abhorrence on his +head and avenge the deaths of William and Justine. + +Our house was the house of mourning. My father’s health was deeply +shaken by the horror of the recent events. Elizabeth was sad and +desponding; she no longer took delight in her ordinary occupations; all +pleasure seemed to her sacrilege toward the dead; eternal woe and tears she +then thought was the just tribute she should pay to innocence so blasted +and destroyed. She was no longer that happy creature who in earlier youth +wandered with me on the banks of the lake and talked with ecstasy of our +future prospects. The first of those sorrows which are sent to wean us from +the earth had visited her, and its dimming influence quenched her dearest +smiles. + +“When I reflect, my dear cousin,” said she, “on the miserable death of +Justine Moritz, I no longer see the world and its works as they before +appeared to me. Before, I looked upon the accounts of vice and +injustice that I read in books or heard from others as tales of ancient +days or imaginary evils; at least they were remote and more familiar to +reason than to the imagination; but now misery has come home, and men +appear to me as monsters thirsting for each other’s blood. Yet I am +certainly unjust. Everybody believed that poor girl to be guilty; and +if she could have committed the crime for which she suffered, assuredly +she would have been the most depraved of human creatures. For the sake +of a few jewels, to have murdered the son of her benefactor and friend, +a child whom she had nursed from its birth, and appeared to love as if +it had been her own! I could not consent to the death of any human +being, but certainly I should have thought such a creature unfit to +remain in the society of men. But she was innocent. I know, I feel +she was innocent; you are of the same opinion, and that confirms me. +Alas! Victor, when falsehood can look so like the truth, who can +assure themselves of certain happiness? I feel as if I were walking on +the edge of a precipice, towards which thousands are crowding and +endeavouring to plunge me into the abyss. William and Justine were +assassinated, and the murderer escapes; he walks about the world free, +and perhaps respected. But even if I were condemned to suffer on the +scaffold for the same crimes, I would not change places with such a +wretch.” + +I listened to this discourse with the extremest agony. I, not in deed, +but in effect, was the true murderer. Elizabeth read my anguish in my +countenance, and kindly taking my hand, said, “My dearest friend, you +must calm yourself. These events have affected me, God knows how +deeply; but I am not so wretched as you are. There is an expression of +despair, and sometimes of revenge, in your countenance that makes me +tremble. Dear Victor, banish these dark passions. Remember the +friends around you, who centre all their hopes in you. Have we lost +the power of rendering you happy? Ah! While we love, while we are +true to each other, here in this land of peace and beauty, your native +country, we may reap every tranquil blessing—what can disturb our +peace?” + +And could not such words from her whom I fondly prized before every +other gift of fortune suffice to chase away the fiend that lurked in my +heart? Even as she spoke I drew near to her, as if in terror, lest at +that very moment the destroyer had been near to rob me of her. + +Thus not the tenderness of friendship, nor the beauty of earth, nor of +heaven, could redeem my soul from woe; the very accents of love were +ineffectual. I was encompassed by a cloud which no beneficial +influence could penetrate. The wounded deer dragging its fainting +limbs to some untrodden brake, there to gaze upon the arrow which had +pierced it, and to die, was but a type of me. + +Sometimes I could cope with the sullen despair that overwhelmed me, but +sometimes the whirlwind passions of my soul drove me to seek, by bodily +exercise and by change of place, some relief from my intolerable +sensations. It was during an access of this kind that I suddenly left +my home, and bending my steps towards the near Alpine valleys, sought +in the magnificence, the eternity of such scenes, to forget myself and +my ephemeral, because human, sorrows. My wanderings were directed +towards the valley of Chamounix. I had visited it frequently during my +boyhood. Six years had passed since then: _I_ was a wreck, but nought +had changed in those savage and enduring scenes. + +I performed the first part of my journey on horseback. I afterwards +hired a mule, as the more sure-footed and least liable to receive +injury on these rugged roads. The weather was fine; it was about the +middle of the month of August, nearly two months after the death of +Justine, that miserable epoch from which I dated all my woe. The +weight upon my spirit was sensibly lightened as I plunged yet deeper in +the ravine of Arve. The immense mountains and precipices that overhung +me on every side, the sound of the river raging among the rocks, and +the dashing of the waterfalls around spoke of a power mighty as +Omnipotence—and I ceased to fear or to bend before any being less +almighty than that which had created and ruled the elements, here +displayed in their most terrific guise. Still, as I ascended higher, +the valley assumed a more magnificent and astonishing character. +Ruined castles hanging on the precipices of piny mountains, the +impetuous Arve, and cottages every here and there peeping forth from +among the trees formed a scene of singular beauty. But it was +augmented and rendered sublime by the mighty Alps, whose white and +shining pyramids and domes towered above all, as belonging to another +earth, the habitations of another race of beings. + +I passed the bridge of Pélissier, where the ravine, which the river +forms, opened before me, and I began to ascend the mountain that +overhangs it. Soon after, I entered the valley of Chamounix. This +valley is more wonderful and sublime, but not so beautiful and +picturesque as that of Servox, through which I had just passed. The +high and snowy mountains were its immediate boundaries, but I saw no +more ruined castles and fertile fields. Immense glaciers approached +the road; I heard the rumbling thunder of the falling avalanche and +marked the smoke of its passage. Mont Blanc, the supreme and +magnificent Mont Blanc, raised itself from the surrounding _aiguilles_, +and its tremendous _dôme_ overlooked the valley. + +A tingling long-lost sense of pleasure often came across me during this +journey. Some turn in the road, some new object suddenly perceived and +recognised, reminded me of days gone by, and were associated with the +lighthearted gaiety of boyhood. The very winds whispered in soothing +accents, and maternal Nature bade me weep no more. Then again the +kindly influence ceased to act—I found myself fettered again to grief +and indulging in all the misery of reflection. Then I spurred on my +animal, striving so to forget the world, my fears, and more than all, +myself—or, in a more desperate fashion, I alighted and threw myself on +the grass, weighed down by horror and despair. + +At length I arrived at the village of Chamounix. Exhaustion succeeded +to the extreme fatigue both of body and of mind which I had endured. +For a short space of time I remained at the window watching the pallid +lightnings that played above Mont Blanc and listening to the rushing of +the Arve, which pursued its noisy way beneath. The same lulling sounds +acted as a lullaby to my too keen sensations; when I placed my head +upon my pillow, sleep crept over me; I felt it as it came and blessed +the giver of oblivion. + + + + + +Chapter 10 + +I spent the following day roaming through the valley. I stood beside +the sources of the Arveiron, which take their rise in a glacier, that +with slow pace is advancing down from the summit of the hills to +barricade the valley. The abrupt sides of vast mountains were before +me; the icy wall of the glacier overhung me; a few shattered pines were +scattered around; and the solemn silence of this glorious +presence-chamber of imperial Nature was broken only by the brawling +waves or the fall of some vast fragment, the thunder sound of the +avalanche or the cracking, reverberated along the mountains, of the +accumulated ice, which, through the silent working of immutable laws, +was ever and anon rent and torn, as if it had been but a plaything in +their hands. These sublime and magnificent scenes afforded me the +greatest consolation that I was capable of receiving. They elevated me +from all littleness of feeling, and although they did not remove my +grief, they subdued and tranquillised it. In some degree, also, they +diverted my mind from the thoughts over which it had brooded for the +last month. I retired to rest at night; my slumbers, as it were, +waited on and ministered to by the assemblance of grand shapes which I +had contemplated during the day. They congregated round me; the +unstained snowy mountain-top, the glittering pinnacle, the pine woods, +and ragged bare ravine, the eagle, soaring amidst the clouds—they all +gathered round me and bade me be at peace. + +Where had they fled when the next morning I awoke? All of +soul-inspiriting fled with sleep, and dark melancholy clouded every +thought. The rain was pouring in torrents, and thick mists hid the +summits of the mountains, so that I even saw not the faces of those +mighty friends. Still I would penetrate their misty veil and seek them +in their cloudy retreats. What were rain and storm to me? My mule was +brought to the door, and I resolved to ascend to the summit of +Montanvert. I remembered the effect that the view of the tremendous +and ever-moving glacier had produced upon my mind when I first saw it. +It had then filled me with a sublime ecstasy that gave wings to the +soul and allowed it to soar from the obscure world to light and joy. +The sight of the awful and majestic in nature had indeed always the +effect of solemnising my mind and causing me to forget the passing +cares of life. I determined to go without a guide, for I was well +acquainted with the path, and the presence of another would destroy the +solitary grandeur of the scene. + +The ascent is precipitous, but the path is cut into continual and short +windings, which enable you to surmount the perpendicularity of the +mountain. It is a scene terrifically desolate. In a thousand spots +the traces of the winter avalanche may be perceived, where trees lie +broken and strewed on the ground, some entirely destroyed, others bent, +leaning upon the jutting rocks of the mountain or transversely upon +other trees. The path, as you ascend higher, is intersected by ravines +of snow, down which stones continually roll from above; one of them is +particularly dangerous, as the slightest sound, such as even speaking +in a loud voice, produces a concussion of air sufficient to draw +destruction upon the head of the speaker. The pines are not tall or +luxuriant, but they are sombre and add an air of severity to the scene. +I looked on the valley beneath; vast mists were rising from the rivers +which ran through it and curling in thick wreaths around the opposite +mountains, whose summits were hid in the uniform clouds, while rain +poured from the dark sky and added to the melancholy impression I +received from the objects around me. Alas! Why does man boast of +sensibilities superior to those apparent in the brute; it only renders +them more necessary beings. If our impulses were confined to hunger, +thirst, and desire, we might be nearly free; but now we are moved by +every wind that blows and a chance word or scene that that word may +convey to us. + + We rest; a dream has power to poison sleep. + We rise; one wand’ring thought pollutes the day. + We feel, conceive, or reason; laugh or weep, + Embrace fond woe, or cast our cares away; + It is the same: for, be it joy or sorrow, + The path of its departure still is free. + Man’s yesterday may ne’er be like his morrow; + Nought may endure but mutability! + + + +It was nearly noon when I arrived at the top of the ascent. For some +time I sat upon the rock that overlooks the sea of ice. A mist covered +both that and the surrounding mountains. Presently a breeze dissipated +the cloud, and I descended upon the glacier. The surface is very +uneven, rising like the waves of a troubled sea, descending low, and +interspersed by rifts that sink deep. The field of ice is almost a +league in width, but I spent nearly two hours in crossing it. The +opposite mountain is a bare perpendicular rock. From the side where I +now stood Montanvert was exactly opposite, at the distance of a league; +and above it rose Mont Blanc, in awful majesty. I remained in a recess +of the rock, gazing on this wonderful and stupendous scene. The sea, +or rather the vast river of ice, wound among its dependent mountains, +whose aerial summits hung over its recesses. Their icy and glittering +peaks shone in the sunlight over the clouds. My heart, which was +before sorrowful, now swelled with something like joy; I exclaimed, +“Wandering spirits, if indeed ye wander, and do not rest in your narrow +beds, allow me this faint happiness, or take me, as your companion, +away from the joys of life.” + +As I said this I suddenly beheld the figure of a man, at some distance, +advancing towards me with superhuman speed. He bounded over the +crevices in the ice, among which I had walked with caution; his +stature, also, as he approached, seemed to exceed that of man. I was +troubled; a mist came over my eyes, and I felt a faintness seize me, +but I was quickly restored by the cold gale of the mountains. I +perceived, as the shape came nearer (sight tremendous and abhorred!) +that it was the wretch whom I had created. I trembled with rage and +horror, resolving to wait his approach and then close with him in +mortal combat. He approached; his countenance bespoke bitter anguish, +combined with disdain and malignity, while its unearthly ugliness +rendered it almost too horrible for human eyes. But I scarcely +observed this; rage and hatred had at first deprived me of utterance, +and I recovered only to overwhelm him with words expressive of furious +detestation and contempt. + +“Devil,” I exclaimed, “do you dare approach me? And do +not you fear the fierce vengeance of my arm wreaked on your miserable head? +Begone, vile insect! Or rather, stay, that I may trample you to dust! And, +oh! That I could, with the extinction of your miserable existence, restore +those victims whom you have so diabolically murdered!” + +“I expected this reception,” said the dæmon. “All men hate the +wretched; how, then, must I be hated, who am miserable beyond all +living things! Yet you, my creator, detest and spurn me, thy creature, +to whom thou art bound by ties only dissoluble by the annihilation of +one of us. You purpose to kill me. How dare you sport thus with life? +Do your duty towards me, and I will do mine towards you and the rest of +mankind. If you will comply with my conditions, I will leave them and +you at peace; but if you refuse, I will glut the maw of death, until it +be satiated with the blood of your remaining friends.” + +“Abhorred monster! Fiend that thou art! The tortures of hell are too +mild a vengeance for thy crimes. Wretched devil! You reproach me with +your creation, come on, then, that I may extinguish the spark which I +so negligently bestowed.” + +My rage was without bounds; I sprang on him, impelled by all the +feelings which can arm one being against the existence of another. + +He easily eluded me and said, + +“Be calm! I entreat you to hear me before you give vent to your hatred +on my devoted head. Have I not suffered enough, that you seek to +increase my misery? Life, although it may only be an accumulation of +anguish, is dear to me, and I will defend it. Remember, thou hast made +me more powerful than thyself; my height is superior to thine, my +joints more supple. But I will not be tempted to set myself in +opposition to thee. I am thy creature, and I will be even mild and +docile to my natural lord and king if thou wilt also perform thy part, +the which thou owest me. Oh, Frankenstein, be not equitable to every +other and trample upon me alone, to whom thy justice, and even thy +clemency and affection, is most due. Remember that I am thy creature; +I ought to be thy Adam, but I am rather the fallen angel, whom thou +drivest from joy for no misdeed. Everywhere I see bliss, from which I +alone am irrevocably excluded. I was benevolent and good; misery made +me a fiend. Make me happy, and I shall again be virtuous.” + +“Begone! I will not hear you. There can be no community between you +and me; we are enemies. Begone, or let us try our strength in a fight, +in which one must fall.” + +“How can I move thee? Will no entreaties cause thee to turn a +favourable eye upon thy creature, who implores thy goodness and +compassion? Believe me, Frankenstein, I was benevolent; my soul glowed +with love and humanity; but am I not alone, miserably alone? You, my +creator, abhor me; what hope can I gather from your fellow creatures, +who owe me nothing? They spurn and hate me. The desert mountains and +dreary glaciers are my refuge. I have wandered here many days; the +caves of ice, which I only do not fear, are a dwelling to me, and the +only one which man does not grudge. These bleak skies I hail, for they +are kinder to me than your fellow beings. If the multitude of mankind +knew of my existence, they would do as you do, and arm themselves for +my destruction. Shall I not then hate them who abhor me? I will keep +no terms with my enemies. I am miserable, and they shall share my +wretchedness. Yet it is in your power to recompense me, and deliver +them from an evil which it only remains for you to make so great, that +not only you and your family, but thousands of others, shall be +swallowed up in the whirlwinds of its rage. Let your compassion be +moved, and do not disdain me. Listen to my tale; when you have heard +that, abandon or commiserate me, as you shall judge that I deserve. +But hear me. The guilty are allowed, by human laws, bloody as they +are, to speak in their own defence before they are condemned. Listen +to me, Frankenstein. You accuse me of murder, and yet you would, with +a satisfied conscience, destroy your own creature. Oh, praise the +eternal justice of man! Yet I ask you not to spare me; listen to me, +and then, if you can, and if you will, destroy the work of your hands.” + +“Why do you call to my remembrance,” I rejoined, “circumstances of +which I shudder to reflect, that I have been the miserable origin and +author? Cursed be the day, abhorred devil, in which you first saw +light! Cursed (although I curse myself) be the hands that formed you! +You have made me wretched beyond expression. You have left me no power +to consider whether I am just to you or not. Begone! Relieve me from +the sight of your detested form.” + +“Thus I relieve thee, my creator,” he said, and placed his hated hands +before my eyes, which I flung from me with violence; “thus I take from +thee a sight which you abhor. Still thou canst listen to me and grant +me thy compassion. By the virtues that I once possessed, I demand this +from you. Hear my tale; it is long and strange, and the temperature of +this place is not fitting to your fine sensations; come to the hut upon +the mountain. The sun is yet high in the heavens; before it descends +to hide itself behind your snowy precipices and illuminate another +world, you will have heard my story and can decide. On you it rests, +whether I quit for ever the neighbourhood of man and lead a harmless +life, or become the scourge of your fellow creatures and the author of +your own speedy ruin.” + +As he said this he led the way across the ice; I followed. My heart +was full, and I did not answer him, but as I proceeded, I weighed the +various arguments that he had used and determined at least to listen to +his tale. I was partly urged by curiosity, and compassion confirmed my +resolution. I had hitherto supposed him to be the murderer of my +brother, and I eagerly sought a confirmation or denial of this opinion. +For the first time, also, I felt what the duties of a creator towards +his creature were, and that I ought to render him happy before I +complained of his wickedness. These motives urged me to comply with +his demand. We crossed the ice, therefore, and ascended the opposite +rock. The air was cold, and the rain again began to descend; we +entered the hut, the fiend with an air of exultation, I with a heavy +heart and depressed spirits. But I consented to listen, and seating +myself by the fire which my odious companion had lighted, he thus began +his tale. + + + + + +Chapter 11 + +“It is with considerable difficulty that I remember the original era of +my being; all the events of that period appear confused and indistinct. +A strange multiplicity of sensations seized me, and I saw, felt, heard, +and smelt at the same time; and it was, indeed, a long time before I +learned to distinguish between the operations of my various senses. By +degrees, I remember, a stronger light pressed upon my nerves, so that I +was obliged to shut my eyes. Darkness then came over me and troubled +me, but hardly had I felt this when, by opening my eyes, as I now +suppose, the light poured in upon me again. I walked and, I believe, +descended, but I presently found a great alteration in my sensations. +Before, dark and opaque bodies had surrounded me, impervious to my +touch or sight; but I now found that I could wander on at liberty, with +no obstacles which I could not either surmount or avoid. The light +became more and more oppressive to me, and the heat wearying me as I +walked, I sought a place where I could receive shade. This was the +forest near Ingolstadt; and here I lay by the side of a brook resting +from my fatigue, until I felt tormented by hunger and thirst. This +roused me from my nearly dormant state, and I ate some berries which I +found hanging on the trees or lying on the ground. I slaked my thirst +at the brook, and then lying down, was overcome by sleep. + +“It was dark when I awoke; I felt cold also, and half frightened, as it +were, instinctively, finding myself so desolate. Before I had quitted +your apartment, on a sensation of cold, I had covered myself with some +clothes, but these were insufficient to secure me from the dews of +night. I was a poor, helpless, miserable wretch; I knew, and could +distinguish, nothing; but feeling pain invade me on all sides, I sat +down and wept. + +“Soon a gentle light stole over the heavens and gave me a sensation of +pleasure. I started up and beheld a radiant form rise from among the +trees. [The moon] I gazed with a kind of wonder. It moved slowly, +but it enlightened my path, and I again went out in search of berries. +I was still cold when under one of the trees I found a huge cloak, with +which I covered myself, and sat down upon the ground. No distinct +ideas occupied my mind; all was confused. I felt light, and hunger, +and thirst, and darkness; innumerable sounds rang in my ears, and on +all sides various scents saluted me; the only object that I could +distinguish was the bright moon, and I fixed my eyes on that with +pleasure. + +“Several changes of day and night passed, and the orb of night had +greatly lessened, when I began to distinguish my sensations from each +other. I gradually saw plainly the clear stream that supplied me with +drink and the trees that shaded me with their foliage. I was delighted +when I first discovered that a pleasant sound, which often saluted my +ears, proceeded from the throats of the little winged animals who had +often intercepted the light from my eyes. I began also to observe, +with greater accuracy, the forms that surrounded me and to perceive the +boundaries of the radiant roof of light which canopied me. Sometimes I +tried to imitate the pleasant songs of the birds but was unable. +Sometimes I wished to express my sensations in my own mode, but the +uncouth and inarticulate sounds which broke from me frightened me into +silence again. + +“The moon had disappeared from the night, and again, with a lessened +form, showed itself, while I still remained in the forest. My +sensations had by this time become distinct, and my mind received every +day additional ideas. My eyes became accustomed to the light and to +perceive objects in their right forms; I distinguished the insect from +the herb, and by degrees, one herb from another. I found that the +sparrow uttered none but harsh notes, whilst those of the blackbird and +thrush were sweet and enticing. + +“One day, when I was oppressed by cold, I found a fire which had been +left by some wandering beggars, and was overcome with delight at the +warmth I experienced from it. In my joy I thrust my hand into the live +embers, but quickly drew it out again with a cry of pain. How strange, +I thought, that the same cause should produce such opposite effects! I +examined the materials of the fire, and to my joy found it to be +composed of wood. I quickly collected some branches, but they were wet +and would not burn. I was pained at this and sat still watching the +operation of the fire. The wet wood which I had placed near the heat +dried and itself became inflamed. I reflected on this, and by touching +the various branches, I discovered the cause and busied myself in +collecting a great quantity of wood, that I might dry it and have a +plentiful supply of fire. When night came on and brought sleep with +it, I was in the greatest fear lest my fire should be extinguished. I +covered it carefully with dry wood and leaves and placed wet branches +upon it; and then, spreading my cloak, I lay on the ground and sank +into sleep. + +“It was morning when I awoke, and my first care was to visit the fire. +I uncovered it, and a gentle breeze quickly fanned it into a flame. I +observed this also and contrived a fan of branches, which roused the +embers when they were nearly extinguished. When night came again I +found, with pleasure, that the fire gave light as well as heat and that +the discovery of this element was useful to me in my food, for I found +some of the offals that the travellers had left had been roasted, and +tasted much more savoury than the berries I gathered from the trees. I +tried, therefore, to dress my food in the same manner, placing it on +the live embers. I found that the berries were spoiled by this +operation, and the nuts and roots much improved. + +“Food, however, became scarce, and I often spent the whole day +searching in vain for a few acorns to assuage the pangs of hunger. When +I found this, I resolved to quit the place that I had hitherto +inhabited, to seek for one where the few wants I experienced would be +more easily satisfied. In this emigration I exceedingly lamented the +loss of the fire which I had obtained through accident and knew not how +to reproduce it. I gave several hours to the serious consideration of +this difficulty, but I was obliged to relinquish all attempt to supply +it, and wrapping myself up in my cloak, I struck across the wood +towards the setting sun. I passed three days in these rambles and at +length discovered the open country. A great fall of snow had taken +place the night before, and the fields were of one uniform white; the +appearance was disconsolate, and I found my feet chilled by the cold +damp substance that covered the ground. + +“It was about seven in the morning, and I longed to obtain food and +shelter; at length I perceived a small hut, on a rising ground, which +had doubtless been built for the convenience of some shepherd. This +was a new sight to me, and I examined the structure with great +curiosity. Finding the door open, I entered. An old man sat in it, +near a fire, over which he was preparing his breakfast. He turned on +hearing a noise, and perceiving me, shrieked loudly, and quitting the +hut, ran across the fields with a speed of which his debilitated form +hardly appeared capable. His appearance, different from any I had ever +before seen, and his flight somewhat surprised me. But I was enchanted +by the appearance of the hut; here the snow and rain could not +penetrate; the ground was dry; and it presented to me then as exquisite +and divine a retreat as Pandæmonium appeared to the dæmons of hell +after their sufferings in the lake of fire. I greedily devoured the +remnants of the shepherd’s breakfast, which consisted of bread, cheese, +milk, and wine; the latter, however, I did not like. Then, overcome by +fatigue, I lay down among some straw and fell asleep. + +“It was noon when I awoke, and allured by the warmth of the sun, which +shone brightly on the white ground, I determined to recommence my +travels; and, depositing the remains of the peasant’s breakfast in a +wallet I found, I proceeded across the fields for several hours, until +at sunset I arrived at a village. How miraculous did this appear! The +huts, the neater cottages, and stately houses engaged my admiration by +turns. The vegetables in the gardens, the milk and cheese that I saw +placed at the windows of some of the cottages, allured my appetite. One +of the best of these I entered, but I had hardly placed my foot within +the door before the children shrieked, and one of the women fainted. +The whole village was roused; some fled, some attacked me, until, +grievously bruised by stones and many other kinds of missile weapons, I +escaped to the open country and fearfully took refuge in a low hovel, +quite bare, and making a wretched appearance after the palaces I had +beheld in the village. This hovel however, joined a cottage of a neat +and pleasant appearance, but after my late dearly bought experience, I +dared not enter it. My place of refuge was constructed of wood, but so +low that I could with difficulty sit upright in it. No wood, however, +was placed on the earth, which formed the floor, but it was dry; and +although the wind entered it by innumerable chinks, I found it an +agreeable asylum from the snow and rain. + +“Here, then, I retreated and lay down happy to have found a shelter, +however miserable, from the inclemency of the season, and still more +from the barbarity of man. As soon as morning dawned I crept from my +kennel, that I might view the adjacent cottage and discover if I could +remain in the habitation I had found. It was situated against the back +of the cottage and surrounded on the sides which were exposed by a pig +sty and a clear pool of water. One part was open, and by that I had +crept in; but now I covered every crevice by which I might be perceived +with stones and wood, yet in such a manner that I might move them on +occasion to pass out; all the light I enjoyed came through the sty, and +that was sufficient for me. + +“Having thus arranged my dwelling and carpeted it with clean straw, I +retired, for I saw the figure of a man at a distance, and I remembered +too well my treatment the night before to trust myself in his power. I +had first, however, provided for my sustenance for that day by a loaf +of coarse bread, which I purloined, and a cup with which I could drink +more conveniently than from my hand of the pure water which flowed by +my retreat. The floor was a little raised, so that it was kept +perfectly dry, and by its vicinity to the chimney of the cottage it was +tolerably warm. + +“Being thus provided, I resolved to reside in this hovel until +something should occur which might alter my determination. It was +indeed a paradise compared to the bleak forest, my former residence, +the rain-dropping branches, and dank earth. I ate my breakfast with +pleasure and was about to remove a plank to procure myself a little +water when I heard a step, and looking through a small chink, I beheld +a young creature, with a pail on her head, passing before my hovel. The +girl was young and of gentle demeanour, unlike what I have since found +cottagers and farmhouse servants to be. Yet she was meanly dressed, a +coarse blue petticoat and a linen jacket being her only garb; her fair +hair was plaited but not adorned: she looked patient yet sad. I lost +sight of her, and in about a quarter of an hour she returned bearing +the pail, which was now partly filled with milk. As she walked along, +seemingly incommoded by the burden, a young man met her, whose +countenance expressed a deeper despondence. Uttering a few sounds with +an air of melancholy, he took the pail from her head and bore it to the +cottage himself. She followed, and they disappeared. Presently I saw +the young man again, with some tools in his hand, cross the field +behind the cottage; and the girl was also busied, sometimes in the +house and sometimes in the yard. + +“On examining my dwelling, I found that one of the windows of the +cottage had formerly occupied a part of it, but the panes had been +filled up with wood. In one of these was a small and almost +imperceptible chink through which the eye could just penetrate. +Through this crevice a small room was visible, whitewashed and clean +but very bare of furniture. In one corner, near a small fire, sat an +old man, leaning his head on his hands in a disconsolate attitude. The +young girl was occupied in arranging the cottage; but presently she +took something out of a drawer, which employed her hands, and she sat +down beside the old man, who, taking up an instrument, began to play +and to produce sounds sweeter than the voice of the thrush or the +nightingale. It was a lovely sight, even to me, poor wretch who had +never beheld aught beautiful before. The silver hair and benevolent +countenance of the aged cottager won my reverence, while the gentle +manners of the girl enticed my love. He played a sweet mournful air +which I perceived drew tears from the eyes of his amiable companion, of +which the old man took no notice, until she sobbed audibly; he then +pronounced a few sounds, and the fair creature, leaving her work, knelt +at his feet. He raised her and smiled with such kindness and affection +that I felt sensations of a peculiar and overpowering nature; they were +a mixture of pain and pleasure, such as I had never before experienced, +either from hunger or cold, warmth or food; and I withdrew from the +window, unable to bear these emotions. + +“Soon after this the young man returned, bearing on his shoulders a +load of wood. The girl met him at the door, helped to relieve him of +his burden, and taking some of the fuel into the cottage, placed it on +the fire; then she and the youth went apart into a nook of the cottage, +and he showed her a large loaf and a piece of cheese. She seemed +pleased and went into the garden for some roots and plants, which she +placed in water, and then upon the fire. She afterwards continued her +work, whilst the young man went into the garden and appeared busily +employed in digging and pulling up roots. After he had been employed +thus about an hour, the young woman joined him and they entered the +cottage together. + +“The old man had, in the meantime, been pensive, but on the appearance +of his companions he assumed a more cheerful air, and they sat down to +eat. The meal was quickly dispatched. The young woman was again +occupied in arranging the cottage, the old man walked before the +cottage in the sun for a few minutes, leaning on the arm of the youth. +Nothing could exceed in beauty the contrast between these two excellent +creatures. One was old, with silver hairs and a countenance beaming +with benevolence and love; the younger was slight and graceful in his +figure, and his features were moulded with the finest symmetry, yet his +eyes and attitude expressed the utmost sadness and despondency. The +old man returned to the cottage, and the youth, with tools different +from those he had used in the morning, directed his steps across the +fields. + +“Night quickly shut in, but to my extreme wonder, I found that the +cottagers had a means of prolonging light by the use of tapers, and was +delighted to find that the setting of the sun did not put an end to the +pleasure I experienced in watching my human neighbours. In the evening +the young girl and her companion were employed in various occupations +which I did not understand; and the old man again took up the +instrument which produced the divine sounds that had enchanted me in +the morning. So soon as he had finished, the youth began, not to play, +but to utter sounds that were monotonous, and neither resembling the +harmony of the old man’s instrument nor the songs of the birds; I since +found that he read aloud, but at that time I knew nothing of the +science of words or letters. + +“The family, after having been thus occupied for a short time, +extinguished their lights and retired, as I conjectured, to rest.” + + + + + +Chapter 12 + +“I lay on my straw, but I could not sleep. I thought of the +occurrences of the day. What chiefly struck me was the gentle manners +of these people, and I longed to join them, but dared not. I +remembered too well the treatment I had suffered the night before from +the barbarous villagers, and resolved, whatever course of conduct I +might hereafter think it right to pursue, that for the present I would +remain quietly in my hovel, watching and endeavouring to discover the +motives which influenced their actions. + +“The cottagers arose the next morning before the sun. The young woman +arranged the cottage and prepared the food, and the youth departed +after the first meal. + +“This day was passed in the same routine as that which preceded it. +The young man was constantly employed out of doors, and the girl in +various laborious occupations within. The old man, whom I soon +perceived to be blind, employed his leisure hours on his instrument or +in contemplation. Nothing could exceed the love and respect which the +younger cottagers exhibited towards their venerable companion. They +performed towards him every little office of affection and duty with +gentleness, and he rewarded them by his benevolent smiles. + +“They were not entirely happy. The young man and his companion often +went apart and appeared to weep. I saw no cause for their unhappiness, +but I was deeply affected by it. If such lovely creatures were +miserable, it was less strange that I, an imperfect and solitary being, +should be wretched. Yet why were these gentle beings unhappy? They +possessed a delightful house (for such it was in my eyes) and every +luxury; they had a fire to warm them when chill and delicious viands +when hungry; they were dressed in excellent clothes; and, still more, +they enjoyed one another’s company and speech, interchanging each day +looks of affection and kindness. What did their tears imply? Did they +really express pain? I was at first unable to solve these questions, +but perpetual attention and time explained to me many appearances which +were at first enigmatic. + +“A considerable period elapsed before I discovered one of the causes of +the uneasiness of this amiable family: it was poverty, and they +suffered that evil in a very distressing degree. Their nourishment +consisted entirely of the vegetables of their garden and the milk of +one cow, which gave very little during the winter, when its masters +could scarcely procure food to support it. They often, I believe, +suffered the pangs of hunger very poignantly, especially the two +younger cottagers, for several times they placed food before the old +man when they reserved none for themselves. + +“This trait of kindness moved me sensibly. I had been accustomed, +during the night, to steal a part of their store for my own +consumption, but when I found that in doing this I inflicted pain on +the cottagers, I abstained and satisfied myself with berries, nuts, and +roots which I gathered from a neighbouring wood. + +“I discovered also another means through which I was enabled to assist +their labours. I found that the youth spent a great part of each day +in collecting wood for the family fire, and during the night I often +took his tools, the use of which I quickly discovered, and brought home +firing sufficient for the consumption of several days. + +“I remember, the first time that I did this, the young woman, when she +opened the door in the morning, appeared greatly astonished on seeing a great +pile of wood on the outside. She uttered some words in a loud voice, and the +youth joined her, who also expressed surprise. I observed, with pleasure, +that he did not go to the forest that day, but spent it in repairing the +cottage and cultivating the garden. + +“By degrees I made a discovery of still greater moment. I found that +these people possessed a method of communicating their experience and +feelings to one another by articulate sounds. I perceived that the words +they spoke sometimes produced pleasure or pain, smiles or sadness, in the +minds and countenances of the hearers. This was indeed a godlike science, +and I ardently desired to become acquainted with it. But I was baffled in +every attempt I made for this purpose. Their pronunciation was quick, and +the words they uttered, not having any apparent connection with visible +objects, I was unable to discover any clue by which I could unravel the +mystery of their reference. By great application, however, and after having +remained during the space of several revolutions of the moon in my hovel, I +discovered the names that were given to some of the most familiar objects of +discourse; I learned and applied the words, _fire, milk, bread,_ and +_wood._ I learned also the names of the cottagers themselves. The youth +and his companion had each of them several names, but the old man had only +one, which was _father._ The girl was called _sister_ or +_Agatha,_ and the youth _Felix, brother,_ or _son_. I cannot +describe the delight I felt when I learned the ideas appropriated to each of +these sounds and was able to pronounce them. I distinguished several other +words without being able as yet to understand or apply them, such as _good, +dearest, unhappy._ + +“I spent the winter in this manner. The gentle manners and beauty of +the cottagers greatly endeared them to me; when they were unhappy, I +felt depressed; when they rejoiced, I sympathised in their joys. I saw +few human beings besides them, and if any other happened to enter the +cottage, their harsh manners and rude gait only enhanced to me the +superior accomplishments of my friends. The old man, I could perceive, +often endeavoured to encourage his children, as sometimes I found that +he called them, to cast off their melancholy. He would talk in a +cheerful accent, with an expression of goodness that bestowed pleasure +even upon me. Agatha listened with respect, her eyes sometimes filled +with tears, which she endeavoured to wipe away unperceived; but I +generally found that her countenance and tone were more cheerful after +having listened to the exhortations of her father. It was not thus +with Felix. He was always the saddest of the group, and even to my +unpractised senses, he appeared to have suffered more deeply than his +friends. But if his countenance was more sorrowful, his voice was more +cheerful than that of his sister, especially when he addressed the old +man. + +“I could mention innumerable instances which, although slight, marked +the dispositions of these amiable cottagers. In the midst of poverty +and want, Felix carried with pleasure to his sister the first little +white flower that peeped out from beneath the snowy ground. Early in +the morning, before she had risen, he cleared away the snow that +obstructed her path to the milk-house, drew water from the well, and +brought the wood from the outhouse, where, to his perpetual +astonishment, he found his store always replenished by an invisible +hand. In the day, I believe, he worked sometimes for a neighbouring +farmer, because he often went forth and did not return until dinner, +yet brought no wood with him. At other times he worked in the garden, +but as there was little to do in the frosty season, he read to the old +man and Agatha. + +“This reading had puzzled me extremely at first, but by degrees I +discovered that he uttered many of the same sounds when he read as when +he talked. I conjectured, therefore, that he found on the paper signs +for speech which he understood, and I ardently longed to comprehend +these also; but how was that possible when I did not even understand +the sounds for which they stood as signs? I improved, however, +sensibly in this science, but not sufficiently to follow up any kind of +conversation, although I applied my whole mind to the endeavour, for I +easily perceived that, although I eagerly longed to discover myself to +the cottagers, I ought not to make the attempt until I had first become +master of their language, which knowledge might enable me to make them +overlook the deformity of my figure, for with this also the contrast +perpetually presented to my eyes had made me acquainted. + +“I had admired the perfect forms of my cottagers—their grace, beauty, +and delicate complexions; but how was I terrified when I viewed myself +in a transparent pool! At first I started back, unable to believe that +it was indeed I who was reflected in the mirror; and when I became +fully convinced that I was in reality the monster that I am, I was +filled with the bitterest sensations of despondence and mortification. +Alas! I did not yet entirely know the fatal effects of this miserable +deformity. + +“As the sun became warmer and the light of day longer, the snow +vanished, and I beheld the bare trees and the black earth. From this +time Felix was more employed, and the heart-moving indications of +impending famine disappeared. Their food, as I afterwards found, was +coarse, but it was wholesome; and they procured a sufficiency of it. +Several new kinds of plants sprang up in the garden, which they +dressed; and these signs of comfort increased daily as the season +advanced. + +“The old man, leaning on his son, walked each day at noon, when it did +not rain, as I found it was called when the heavens poured forth its +waters. This frequently took place, but a high wind quickly dried the +earth, and the season became far more pleasant than it had been. + +“My mode of life in my hovel was uniform. During the morning I +attended the motions of the cottagers, and when they were dispersed in +various occupations, I slept; the remainder of the day was spent in +observing my friends. When they had retired to rest, if there was any +moon or the night was star-light, I went into the woods and collected +my own food and fuel for the cottage. When I returned, as often as it +was necessary, I cleared their path from the snow and performed those +offices that I had seen done by Felix. I afterwards found that these +labours, performed by an invisible hand, greatly astonished them; and +once or twice I heard them, on these occasions, utter the words _good +spirit, wonderful_; but I did not then understand the signification +of these terms. + +“My thoughts now became more active, and I longed to discover the +motives and feelings of these lovely creatures; I was inquisitive to +know why Felix appeared so miserable and Agatha so sad. I thought +(foolish wretch!) that it might be in my power to restore happiness to +these deserving people. When I slept or was absent, the forms of the +venerable blind father, the gentle Agatha, and the excellent Felix +flitted before me. I looked upon them as superior beings who would be +the arbiters of my future destiny. I formed in my imagination a +thousand pictures of presenting myself to them, and their reception of +me. I imagined that they would be disgusted, until, by my gentle +demeanour and conciliating words, I should first win their favour and +afterwards their love. + +“These thoughts exhilarated me and led me to apply with fresh ardour to +the acquiring the art of language. My organs were indeed harsh, but +supple; and although my voice was very unlike the soft music of their +tones, yet I pronounced such words as I understood with tolerable ease. +It was as the ass and the lap-dog; yet surely the gentle ass whose +intentions were affectionate, although his manners were rude, deserved +better treatment than blows and execration. + +“The pleasant showers and genial warmth of spring greatly altered the +aspect of the earth. Men who before this change seemed to have been +hid in caves dispersed themselves and were employed in various arts of +cultivation. The birds sang in more cheerful notes, and the leaves +began to bud forth on the trees. Happy, happy earth! Fit habitation +for gods, which, so short a time before, was bleak, damp, and +unwholesome. My spirits were elevated by the enchanting appearance of +nature; the past was blotted from my memory, the present was tranquil, +and the future gilded by bright rays of hope and anticipations of joy.” + + + + + +Chapter 13 + +“I now hasten to the more moving part of my story. I shall relate +events that impressed me with feelings which, from what I had been, +have made me what I am. + +“Spring advanced rapidly; the weather became fine and the skies +cloudless. It surprised me that what before was desert and gloomy +should now bloom with the most beautiful flowers and verdure. My +senses were gratified and refreshed by a thousand scents of delight and +a thousand sights of beauty. + +“It was on one of these days, when my cottagers periodically rested +from labour—the old man played on his guitar, and the children +listened to him—that I observed the countenance of Felix was +melancholy beyond expression; he sighed frequently, and once his father +paused in his music, and I conjectured by his manner that he inquired +the cause of his son’s sorrow. Felix replied in a cheerful accent, and +the old man was recommencing his music when someone tapped at the door. + +“It was a lady on horseback, accompanied by a country-man as a guide. +The lady was dressed in a dark suit and covered with a thick black +veil. Agatha asked a question, to which the stranger only replied by +pronouncing, in a sweet accent, the name of Felix. Her voice was +musical but unlike that of either of my friends. On hearing this word, +Felix came up hastily to the lady, who, when she saw him, threw up her +veil, and I beheld a countenance of angelic beauty and expression. Her +hair of a shining raven black, and curiously braided; her eyes were +dark, but gentle, although animated; her features of a regular +proportion, and her complexion wondrously fair, each cheek tinged with +a lovely pink. + +“Felix seemed ravished with delight when he saw her, every trait of +sorrow vanished from his face, and it instantly expressed a degree of +ecstatic joy, of which I could hardly have believed it capable; his +eyes sparkled, as his cheek flushed with pleasure; and at that moment I +thought him as beautiful as the stranger. She appeared affected by +different feelings; wiping a few tears from her lovely eyes, she held +out her hand to Felix, who kissed it rapturously and called her, as +well as I could distinguish, his sweet Arabian. She did not appear to +understand him, but smiled. He assisted her to dismount, and +dismissing her guide, conducted her into the cottage. Some +conversation took place between him and his father, and the young +stranger knelt at the old man’s feet and would have kissed his hand, +but he raised her and embraced her affectionately. + +“I soon perceived that although the stranger uttered articulate sounds +and appeared to have a language of her own, she was neither understood +by nor herself understood the cottagers. They made many signs which I +did not comprehend, but I saw that her presence diffused gladness +through the cottage, dispelling their sorrow as the sun dissipates the +morning mists. Felix seemed peculiarly happy and with smiles of +delight welcomed his Arabian. Agatha, the ever-gentle Agatha, kissed +the hands of the lovely stranger, and pointing to her brother, made +signs which appeared to me to mean that he had been sorrowful until she +came. Some hours passed thus, while they, by their countenances, +expressed joy, the cause of which I did not comprehend. Presently I +found, by the frequent recurrence of some sound which the stranger +repeated after them, that she was endeavouring to learn their language; +and the idea instantly occurred to me that I should make use of the +same instructions to the same end. The stranger learned about twenty +words at the first lesson; most of them, indeed, were those which I had +before understood, but I profited by the others. + +“As night came on, Agatha and the Arabian retired early. When they +separated Felix kissed the hand of the stranger and said, ‘Good night +sweet Safie.’ He sat up much longer, conversing with his father, and +by the frequent repetition of her name I conjectured that their lovely +guest was the subject of their conversation. I ardently desired to +understand them, and bent every faculty towards that purpose, but found +it utterly impossible. + +“The next morning Felix went out to his work, and after the usual +occupations of Agatha were finished, the Arabian sat at the feet of the +old man, and taking his guitar, played some airs so entrancingly +beautiful that they at once drew tears of sorrow and delight from my +eyes. She sang, and her voice flowed in a rich cadence, swelling or +dying away like a nightingale of the woods. + +“When she had finished, she gave the guitar to Agatha, who at first +declined it. She played a simple air, and her voice accompanied it in +sweet accents, but unlike the wondrous strain of the stranger. The old +man appeared enraptured and said some words which Agatha endeavoured to +explain to Safie, and by which he appeared to wish to express that she +bestowed on him the greatest delight by her music. + +“The days now passed as peaceably as before, with the sole alteration +that joy had taken place of sadness in the countenances of my friends. +Safie was always gay and happy; she and I improved rapidly in the +knowledge of language, so that in two months I began to comprehend most +of the words uttered by my protectors. + +“In the meanwhile also the black ground was covered with herbage, and +the green banks interspersed with innumerable flowers, sweet to the +scent and the eyes, stars of pale radiance among the moonlight woods; +the sun became warmer, the nights clear and balmy; and my nocturnal +rambles were an extreme pleasure to me, although they were considerably +shortened by the late setting and early rising of the sun, for I never +ventured abroad during daylight, fearful of meeting with the same +treatment I had formerly endured in the first village which I entered. + +“My days were spent in close attention, that I might more speedily +master the language; and I may boast that I improved more rapidly than +the Arabian, who understood very little and conversed in broken +accents, whilst I comprehended and could imitate almost every word that +was spoken. + +“While I improved in speech, I also learned the science of letters as +it was taught to the stranger, and this opened before me a wide field +for wonder and delight. + +“The book from which Felix instructed Safie was Volney’s _Ruins +of Empires_. I should not have understood the purport of this book had not +Felix, in reading it, given very minute explanations. He had chosen this +work, he said, because the declamatory style was framed in imitation of the +Eastern authors. Through this work I obtained a cursory knowledge of history +and a view of the several empires at present existing in the world; it gave +me an insight into the manners, governments, and religions of the different +nations of the earth. I heard of the slothful Asiatics, of the stupendous +genius and mental activity of the Grecians, of the wars and wonderful virtue +of the early Romans—of their subsequent degenerating—of the +decline of that mighty empire, of chivalry, Christianity, and kings. I heard +of the discovery of the American hemisphere and wept with Safie over the +hapless fate of its original inhabitants. + +“These wonderful narrations inspired me with strange feelings. Was +man, indeed, at once so powerful, so virtuous and magnificent, yet so +vicious and base? He appeared at one time a mere scion of the evil +principle and at another as all that can be conceived of noble and +godlike. To be a great and virtuous man appeared the highest honour +that can befall a sensitive being; to be base and vicious, as many on +record have been, appeared the lowest degradation, a condition more +abject than that of the blind mole or harmless worm. For a long time I +could not conceive how one man could go forth to murder his fellow, or +even why there were laws and governments; but when I heard details of +vice and bloodshed, my wonder ceased and I turned away with disgust and +loathing. + +“Every conversation of the cottagers now opened new wonders to me. +While I listened to the instructions which Felix bestowed upon the +Arabian, the strange system of human society was explained to me. I +heard of the division of property, of immense wealth and squalid +poverty, of rank, descent, and noble blood. + +“The words induced me to turn towards myself. I learned that the +possessions most esteemed by your fellow creatures were high and +unsullied descent united with riches. A man might be respected with +only one of these advantages, but without either he was considered, +except in very rare instances, as a vagabond and a slave, doomed to +waste his powers for the profits of the chosen few! And what was I? Of +my creation and creator I was absolutely ignorant, but I knew that I +possessed no money, no friends, no kind of property. I was, besides, +endued with a figure hideously deformed and loathsome; I was not even +of the same nature as man. I was more agile than they and could +subsist upon coarser diet; I bore the extremes of heat and cold with +less injury to my frame; my stature far exceeded theirs. When I looked +around I saw and heard of none like me. Was I, then, a monster, a blot +upon the earth, from which all men fled and whom all men disowned? + +“I cannot describe to you the agony that these reflections inflicted +upon me; I tried to dispel them, but sorrow only increased with +knowledge. Oh, that I had for ever remained in my native wood, nor +known nor felt beyond the sensations of hunger, thirst, and heat! + +“Of what a strange nature is knowledge! It clings to the mind when it +has once seized on it like a lichen on the rock. I wished sometimes to +shake off all thought and feeling, but I learned that there was but one +means to overcome the sensation of pain, and that was death—a state +which I feared yet did not understand. I admired virtue and good +feelings and loved the gentle manners and amiable qualities of my +cottagers, but I was shut out from intercourse with them, except +through means which I obtained by stealth, when I was unseen and +unknown, and which rather increased than satisfied the desire I had of +becoming one among my fellows. The gentle words of Agatha and the +animated smiles of the charming Arabian were not for me. The mild +exhortations of the old man and the lively conversation of the loved +Felix were not for me. Miserable, unhappy wretch! + +“Other lessons were impressed upon me even more deeply. I heard of the +difference of sexes, and the birth and growth of children, how the +father doted on the smiles of the infant, and the lively sallies of the +older child, how all the life and cares of the mother were wrapped up +in the precious charge, how the mind of youth expanded and gained +knowledge, of brother, sister, and all the various relationships which +bind one human being to another in mutual bonds. + +“But where were my friends and relations? No father had watched my +infant days, no mother had blessed me with smiles and caresses; or if +they had, all my past life was now a blot, a blind vacancy in which I +distinguished nothing. From my earliest remembrance I had been as I +then was in height and proportion. I had never yet seen a being +resembling me or who claimed any intercourse with me. What was I? The +question again recurred, to be answered only with groans. + +“I will soon explain to what these feelings tended, but allow me now to +return to the cottagers, whose story excited in me such various +feelings of indignation, delight, and wonder, but which all terminated +in additional love and reverence for my protectors (for so I loved, in +an innocent, half-painful self-deceit, to call them).” + + + + + +Chapter 14 + +“Some time elapsed before I learned the history of my friends. It was +one which could not fail to impress itself deeply on my mind, unfolding +as it did a number of circumstances, each interesting and wonderful to +one so utterly inexperienced as I was. + +“The name of the old man was De Lacey. He was descended from a good +family in France, where he had lived for many years in affluence, +respected by his superiors and beloved by his equals. His son was bred +in the service of his country, and Agatha had ranked with ladies of the +highest distinction. A few months before my arrival they had lived in +a large and luxurious city called Paris, surrounded by friends and +possessed of every enjoyment which virtue, refinement of intellect, or +taste, accompanied by a moderate fortune, could afford. + +“The father of Safie had been the cause of their ruin. He was a +Turkish merchant and had inhabited Paris for many years, when, for some +reason which I could not learn, he became obnoxious to the government. +He was seized and cast into prison the very day that Safie arrived from +Constantinople to join him. He was tried and condemned to death. The +injustice of his sentence was very flagrant; all Paris was indignant; +and it was judged that his religion and wealth rather than the crime +alleged against him had been the cause of his condemnation. + +“Felix had accidentally been present at the trial; his horror and +indignation were uncontrollable when he heard the decision of the +court. He made, at that moment, a solemn vow to deliver him and then +looked around for the means. After many fruitless attempts to gain +admittance to the prison, he found a strongly grated window in an +unguarded part of the building, which lighted the dungeon of the +unfortunate Muhammadan, who, loaded with chains, waited in despair the +execution of the barbarous sentence. Felix visited the grate at night +and made known to the prisoner his intentions in his favour. The Turk, +amazed and delighted, endeavoured to kindle the zeal of his deliverer +by promises of reward and wealth. Felix rejected his offers with +contempt, yet when he saw the lovely Safie, who was allowed to visit +her father and who by her gestures expressed her lively gratitude, the +youth could not help owning to his own mind that the captive possessed +a treasure which would fully reward his toil and hazard. + +“The Turk quickly perceived the impression that his daughter had made +on the heart of Felix and endeavoured to secure him more entirely in +his interests by the promise of her hand in marriage so soon as he +should be conveyed to a place of safety. Felix was too delicate to +accept this offer, yet he looked forward to the probability of the +event as to the consummation of his happiness. + +“During the ensuing days, while the preparations were going forward for +the escape of the merchant, the zeal of Felix was warmed by several +letters that he received from this lovely girl, who found means to +express her thoughts in the language of her lover by the aid of an old +man, a servant of her father who understood French. She thanked him in +the most ardent terms for his intended services towards her parent, and +at the same time she gently deplored her own fate. + +“I have copies of these letters, for I found means, during my residence +in the hovel, to procure the implements of writing; and the letters +were often in the hands of Felix or Agatha. Before I depart I will +give them to you; they will prove the truth of my tale; but at present, +as the sun is already far declined, I shall only have time to repeat +the substance of them to you. + +“Safie related that her mother was a Christian Arab, seized and made a +slave by the Turks; recommended by her beauty, she had won the heart of +the father of Safie, who married her. The young girl spoke in high and +enthusiastic terms of her mother, who, born in freedom, spurned the +bondage to which she was now reduced. She instructed her daughter in +the tenets of her religion and taught her to aspire to higher powers of +intellect and an independence of spirit forbidden to the female +followers of Muhammad. This lady died, but her lessons were indelibly +impressed on the mind of Safie, who sickened at the prospect of again +returning to Asia and being immured within the walls of a harem, +allowed only to occupy herself with infantile amusements, ill-suited to +the temper of her soul, now accustomed to grand ideas and a noble +emulation for virtue. The prospect of marrying a Christian and +remaining in a country where women were allowed to take a rank in +society was enchanting to her. + +“The day for the execution of the Turk was fixed, but on the night +previous to it he quitted his prison and before morning was distant +many leagues from Paris. Felix had procured passports in the name of +his father, sister, and himself. He had previously communicated his +plan to the former, who aided the deceit by quitting his house, under +the pretence of a journey and concealed himself, with his daughter, in +an obscure part of Paris. + +“Felix conducted the fugitives through France to Lyons and across Mont +Cenis to Leghorn, where the merchant had decided to wait a favourable +opportunity of passing into some part of the Turkish dominions. + +“Safie resolved to remain with her father until the moment of his +departure, before which time the Turk renewed his promise that she +should be united to his deliverer; and Felix remained with them in +expectation of that event; and in the meantime he enjoyed the society +of the Arabian, who exhibited towards him the simplest and tenderest +affection. They conversed with one another through the means of an +interpreter, and sometimes with the interpretation of looks; and Safie +sang to him the divine airs of her native country. + +“The Turk allowed this intimacy to take place and encouraged the hopes +of the youthful lovers, while in his heart he had formed far other +plans. He loathed the idea that his daughter should be united to a +Christian, but he feared the resentment of Felix if he should appear +lukewarm, for he knew that he was still in the power of his deliverer +if he should choose to betray him to the Italian state which they +inhabited. He revolved a thousand plans by which he should be enabled +to prolong the deceit until it might be no longer necessary, and +secretly to take his daughter with him when he departed. His plans +were facilitated by the news which arrived from Paris. + +“The government of France were greatly enraged at the escape of their +victim and spared no pains to detect and punish his deliverer. The +plot of Felix was quickly discovered, and De Lacey and Agatha were +thrown into prison. The news reached Felix and roused him from his +dream of pleasure. His blind and aged father and his gentle sister lay +in a noisome dungeon while he enjoyed the free air and the society of +her whom he loved. This idea was torture to him. He quickly arranged +with the Turk that if the latter should find a favourable opportunity +for escape before Felix could return to Italy, Safie should remain as a +boarder at a convent at Leghorn; and then, quitting the lovely Arabian, +he hastened to Paris and delivered himself up to the vengeance of the +law, hoping to free De Lacey and Agatha by this proceeding. + +“He did not succeed. They remained confined for five months before the +trial took place, the result of which deprived them of their fortune +and condemned them to a perpetual exile from their native country. + +“They found a miserable asylum in the cottage in Germany, where I +discovered them. Felix soon learned that the treacherous Turk, for +whom he and his family endured such unheard-of oppression, on +discovering that his deliverer was thus reduced to poverty and ruin, +became a traitor to good feeling and honour and had quitted Italy with +his daughter, insultingly sending Felix a pittance of money to aid him, +as he said, in some plan of future maintenance. + +“Such were the events that preyed on the heart of Felix and rendered +him, when I first saw him, the most miserable of his family. He could +have endured poverty, and while this distress had been the meed of his +virtue, he gloried in it; but the ingratitude of the Turk and the loss +of his beloved Safie were misfortunes more bitter and irreparable. The +arrival of the Arabian now infused new life into his soul. + +“When the news reached Leghorn that Felix was deprived of his wealth +and rank, the merchant commanded his daughter to think no more of her +lover, but to prepare to return to her native country. The generous +nature of Safie was outraged by this command; she attempted to +expostulate with her father, but he left her angrily, reiterating his +tyrannical mandate. + +“A few days after, the Turk entered his daughter’s apartment and told +her hastily that he had reason to believe that his residence at Leghorn +had been divulged and that he should speedily be delivered up to the +French government; he had consequently hired a vessel to convey him to +Constantinople, for which city he should sail in a few hours. He +intended to leave his daughter under the care of a confidential +servant, to follow at her leisure with the greater part of his +property, which had not yet arrived at Leghorn. + +“When alone, Safie resolved in her own mind the plan of conduct that it +would become her to pursue in this emergency. A residence in Turkey +was abhorrent to her; her religion and her feelings were alike averse +to it. By some papers of her father which fell into her hands she +heard of the exile of her lover and learnt the name of the spot where +he then resided. She hesitated some time, but at length she formed her +determination. Taking with her some jewels that belonged to her and a +sum of money, she quitted Italy with an attendant, a native of Leghorn, +but who understood the common language of Turkey, and departed for +Germany. + +“She arrived in safety at a town about twenty leagues from the cottage +of De Lacey, when her attendant fell dangerously ill. Safie nursed her +with the most devoted affection, but the poor girl died, and the +Arabian was left alone, unacquainted with the language of the country +and utterly ignorant of the customs of the world. She fell, however, +into good hands. The Italian had mentioned the name of the spot for +which they were bound, and after her death the woman of the house in +which they had lived took care that Safie should arrive in safety at +the cottage of her lover.” + + + + + +Chapter 15 + +“Such was the history of my beloved cottagers. It impressed me deeply. +I learned, from the views of social life which it developed, to admire +their virtues and to deprecate the vices of mankind. + +“As yet I looked upon crime as a distant evil, benevolence and +generosity were ever present before me, inciting within me a desire to +become an actor in the busy scene where so many admirable qualities +were called forth and displayed. But in giving an account of the +progress of my intellect, I must not omit a circumstance which occurred +in the beginning of the month of August of the same year. + +“One night during my accustomed visit to the neighbouring wood where I +collected my own food and brought home firing for my protectors, I found on +the ground a leathern portmanteau containing several articles of dress and +some books. I eagerly seized the prize and returned with it to my hovel. +Fortunately the books were written in the language, the elements of which I +had acquired at the cottage; they consisted of _Paradise Lost_, a volume +of _Plutarch’s Lives_, and the _Sorrows of Werter_. The +possession of these treasures gave me extreme delight; I now continually +studied and exercised my mind upon these histories, whilst my friends were +employed in their ordinary occupations. + +“I can hardly describe to you the effect of these books. They produced +in me an infinity of new images and feelings, that sometimes raised me +to ecstasy, but more frequently sunk me into the lowest dejection. In +the _Sorrows of Werter_, besides the interest of its simple and affecting +story, so many opinions are canvassed and so many lights thrown upon +what had hitherto been to me obscure subjects that I found in it a +never-ending source of speculation and astonishment. The gentle and +domestic manners it described, combined with lofty sentiments and +feelings, which had for their object something out of self, accorded +well with my experience among my protectors and with the wants which +were for ever alive in my own bosom. But I thought Werter himself a +more divine being than I had ever beheld or imagined; his character +contained no pretension, but it sank deep. The disquisitions upon +death and suicide were calculated to fill me with wonder. I did not +pretend to enter into the merits of the case, yet I inclined towards +the opinions of the hero, whose extinction I wept, without precisely +understanding it. + +“As I read, however, I applied much personally to my own feelings and +condition. I found myself similar yet at the same time strangely +unlike to the beings concerning whom I read and to whose conversation I +was a listener. I sympathised with and partly understood them, but I +was unformed in mind; I was dependent on none and related to none. +‘The path of my departure was free,’ and there was none to lament my +annihilation. My person was hideous and my stature gigantic. What did +this mean? Who was I? What was I? Whence did I come? What was my +destination? These questions continually recurred, but I was unable to +solve them. + +“The volume of _Plutarch’s Lives_ which I possessed contained the +histories of the first founders of the ancient republics. This book +had a far different effect upon me from the _Sorrows of Werter_. I +learned from Werter’s imaginations despondency and gloom, but Plutarch +taught me high thoughts; he elevated me above the wretched sphere of my +own reflections, to admire and love the heroes of past ages. Many +things I read surpassed my understanding and experience. I had a very +confused knowledge of kingdoms, wide extents of country, mighty rivers, +and boundless seas. But I was perfectly unacquainted with towns and +large assemblages of men. The cottage of my protectors had been the +only school in which I had studied human nature, but this book +developed new and mightier scenes of action. I read of men concerned +in public affairs, governing or massacring their species. I felt the +greatest ardour for virtue rise within me, and abhorrence for vice, as +far as I understood the signification of those terms, relative as they +were, as I applied them, to pleasure and pain alone. Induced by these +feelings, I was of course led to admire peaceable lawgivers, Numa, +Solon, and Lycurgus, in preference to Romulus and Theseus. The +patriarchal lives of my protectors caused these impressions to take a +firm hold on my mind; perhaps, if my first introduction to humanity had +been made by a young soldier, burning for glory and slaughter, I should +have been imbued with different sensations. + +“But _Paradise Lost_ excited different and far deeper emotions. I read +it, as I had read the other volumes which had fallen into my hands, as +a true history. It moved every feeling of wonder and awe that the +picture of an omnipotent God warring with his creatures was capable of +exciting. I often referred the several situations, as their similarity +struck me, to my own. Like Adam, I was apparently united by no link to +any other being in existence; but his state was far different from mine +in every other respect. He had come forth from the hands of God a +perfect creature, happy and prosperous, guarded by the especial care of +his Creator; he was allowed to converse with and acquire knowledge from +beings of a superior nature, but I was wretched, helpless, and alone. +Many times I considered Satan as the fitter emblem of my condition, for +often, like him, when I viewed the bliss of my protectors, the bitter +gall of envy rose within me. + +“Another circumstance strengthened and confirmed these feelings. Soon +after my arrival in the hovel I discovered some papers in the pocket of +the dress which I had taken from your laboratory. At first I had +neglected them, but now that I was able to decipher the characters in +which they were written, I began to study them with diligence. It was +your journal of the four months that preceded my creation. You +minutely described in these papers every step you took in the progress +of your work; this history was mingled with accounts of domestic +occurrences. You doubtless recollect these papers. Here they are. +Everything is related in them which bears reference to my accursed +origin; the whole detail of that series of disgusting circumstances +which produced it is set in view; the minutest description of my odious +and loathsome person is given, in language which painted your own +horrors and rendered mine indelible. I sickened as I read. ‘Hateful +day when I received life!’ I exclaimed in agony. ‘Accursed creator! +Why did you form a monster so hideous that even _you_ turned from me in +disgust? God, in pity, made man beautiful and alluring, after his own +image; but my form is a filthy type of yours, more horrid even from the +very resemblance. Satan had his companions, fellow devils, to admire +and encourage him, but I am solitary and abhorred.’ + +“These were the reflections of my hours of despondency and solitude; +but when I contemplated the virtues of the cottagers, their amiable and +benevolent dispositions, I persuaded myself that when they should +become acquainted with my admiration of their virtues they would +compassionate me and overlook my personal deformity. Could they turn +from their door one, however monstrous, who solicited their compassion +and friendship? I resolved, at least, not to despair, but in every way +to fit myself for an interview with them which would decide my fate. I +postponed this attempt for some months longer, for the importance +attached to its success inspired me with a dread lest I should fail. +Besides, I found that my understanding improved so much with every +day’s experience that I was unwilling to commence this undertaking +until a few more months should have added to my sagacity. + +“Several changes, in the meantime, took place in the cottage. The +presence of Safie diffused happiness among its inhabitants, and I also +found that a greater degree of plenty reigned there. Felix and Agatha +spent more time in amusement and conversation, and were assisted in +their labours by servants. They did not appear rich, but they were +contented and happy; their feelings were serene and peaceful, while +mine became every day more tumultuous. Increase of knowledge only +discovered to me more clearly what a wretched outcast I was. I +cherished hope, it is true, but it vanished when I beheld my person +reflected in water or my shadow in the moonshine, even as that frail +image and that inconstant shade. + +“I endeavoured to crush these fears and to fortify myself for the trial +which in a few months I resolved to undergo; and sometimes I allowed my +thoughts, unchecked by reason, to ramble in the fields of Paradise, and +dared to fancy amiable and lovely creatures sympathising with my +feelings and cheering my gloom; their angelic countenances breathed +smiles of consolation. But it was all a dream; no Eve soothed my +sorrows nor shared my thoughts; I was alone. I remembered Adam’s +supplication to his Creator. But where was mine? He had abandoned me, +and in the bitterness of my heart I cursed him. + +“Autumn passed thus. I saw, with surprise and grief, the leaves decay +and fall, and nature again assume the barren and bleak appearance it +had worn when I first beheld the woods and the lovely moon. Yet I did +not heed the bleakness of the weather; I was better fitted by my +conformation for the endurance of cold than heat. But my chief +delights were the sight of the flowers, the birds, and all the gay +apparel of summer; when those deserted me, I turned with more attention +towards the cottagers. Their happiness was not decreased by the +absence of summer. They loved and sympathised with one another; and +their joys, depending on each other, were not interrupted by the +casualties that took place around them. The more I saw of them, the +greater became my desire to claim their protection and kindness; my +heart yearned to be known and loved by these amiable creatures; to see +their sweet looks directed towards me with affection was the utmost +limit of my ambition. I dared not think that they would turn them from +me with disdain and horror. The poor that stopped at their door were +never driven away. I asked, it is true, for greater treasures than a +little food or rest: I required kindness and sympathy; but I did not +believe myself utterly unworthy of it. + +“The winter advanced, and an entire revolution of the seasons had taken +place since I awoke into life. My attention at this time was solely +directed towards my plan of introducing myself into the cottage of my +protectors. I revolved many projects, but that on which I finally +fixed was to enter the dwelling when the blind old man should be alone. +I had sagacity enough to discover that the unnatural hideousness of my +person was the chief object of horror with those who had formerly +beheld me. My voice, although harsh, had nothing terrible in it; I +thought, therefore, that if in the absence of his children I could gain +the good will and mediation of the old De Lacey, I might by his means +be tolerated by my younger protectors. + +“One day, when the sun shone on the red leaves that strewed the ground +and diffused cheerfulness, although it denied warmth, Safie, Agatha, +and Felix departed on a long country walk, and the old man, at his own +desire, was left alone in the cottage. When his children had departed, +he took up his guitar and played several mournful but sweet airs, more +sweet and mournful than I had ever heard him play before. At first his +countenance was illuminated with pleasure, but as he continued, +thoughtfulness and sadness succeeded; at length, laying aside the +instrument, he sat absorbed in reflection. + +“My heart beat quick; this was the hour and moment of trial, which +would decide my hopes or realise my fears. The servants were gone to a +neighbouring fair. All was silent in and around the cottage; it was an +excellent opportunity; yet, when I proceeded to execute my plan, my +limbs failed me and I sank to the ground. Again I rose, and exerting +all the firmness of which I was master, removed the planks which I had +placed before my hovel to conceal my retreat. The fresh air revived +me, and with renewed determination I approached the door of their +cottage. + +“I knocked. ‘Who is there?’ said the old man. ‘Come in.’ + +“I entered. ‘Pardon this intrusion,’ said I; ‘I am +a traveller in want of a little rest; you would greatly oblige me if you +would allow me to remain a few minutes before the fire.’ + +“‘Enter,’ said De Lacey, ‘and I will try in what +manner I can to relieve your wants; but, unfortunately, my children are +from home, and as I am blind, I am afraid I shall find it difficult to +procure food for you.’ + +“‘Do not trouble yourself, my kind host; I have food; it is +warmth and rest only that I need.’ + +“I sat down, and a silence ensued. I knew that every minute was +precious to me, yet I remained irresolute in what manner to commence +the interview, when the old man addressed me. + +‘By your language, stranger, I suppose you are my countryman; are you +French?’ + +“‘No; but I was educated by a French family and understand that +language only. I am now going to claim the protection of some friends, +whom I sincerely love, and of whose favour I have some hopes.’ + +“‘Are they Germans?’ + +“‘No, they are French. But let us change the subject. I am an +unfortunate and deserted creature, I look around and I have no relation +or friend upon earth. These amiable people to whom I go have never +seen me and know little of me. I am full of fears, for if I fail +there, I am an outcast in the world for ever.’ + +“‘Do not despair. To be friendless is indeed to be unfortunate, but +the hearts of men, when unprejudiced by any obvious self-interest, are +full of brotherly love and charity. Rely, therefore, on your hopes; +and if these friends are good and amiable, do not despair.’ + +“‘They are kind—they are the most excellent creatures in the world; +but, unfortunately, they are prejudiced against me. I have good +dispositions; my life has been hitherto harmless and in some degree +beneficial; but a fatal prejudice clouds their eyes, and where they +ought to see a feeling and kind friend, they behold only a detestable +monster.’ + +“‘That is indeed unfortunate; but if you are really blameless, cannot +you undeceive them?’ + +“‘I am about to undertake that task; and it is on that account that I +feel so many overwhelming terrors. I tenderly love these friends; I +have, unknown to them, been for many months in the habits of daily +kindness towards them; but they believe that I wish to injure them, and +it is that prejudice which I wish to overcome.’ + +“‘Where do these friends reside?’ + +“‘Near this spot.’ + +“The old man paused and then continued, ‘If you will unreservedly +confide to me the particulars of your tale, I perhaps may be of use in +undeceiving them. I am blind and cannot judge of your countenance, but +there is something in your words which persuades me that you are +sincere. I am poor and an exile, but it will afford me true pleasure +to be in any way serviceable to a human creature.’ + +“‘Excellent man! I thank you and accept your generous offer. You +raise me from the dust by this kindness; and I trust that, by your aid, +I shall not be driven from the society and sympathy of your fellow +creatures.’ + +“‘Heaven forbid! Even if you were really criminal, for that can only +drive you to desperation, and not instigate you to virtue. I also am +unfortunate; I and my family have been condemned, although innocent; +judge, therefore, if I do not feel for your misfortunes.’ + +“‘How can I thank you, my best and only benefactor? From your lips +first have I heard the voice of kindness directed towards me; I shall +be for ever grateful; and your present humanity assures me of success +with those friends whom I am on the point of meeting.’ + +“‘May I know the names and residence of those friends?’ + +“I paused. This, I thought, was the moment of decision, which was to +rob me of or bestow happiness on me for ever. I struggled vainly for +firmness sufficient to answer him, but the effort destroyed all my +remaining strength; I sank on the chair and sobbed aloud. At that +moment I heard the steps of my younger protectors. I had not a moment +to lose, but seizing the hand of the old man, I cried, ‘Now is the +time! Save and protect me! You and your family are the friends whom I +seek. Do not you desert me in the hour of trial!’ + +“‘Great God!’ exclaimed the old man. ‘Who are you?’ + +“At that instant the cottage door was opened, and Felix, Safie, and +Agatha entered. Who can describe their horror and consternation on +beholding me? Agatha fainted, and Safie, unable to attend to her +friend, rushed out of the cottage. Felix darted forward, and with +supernatural force tore me from his father, to whose knees I clung, in +a transport of fury, he dashed me to the ground and struck me violently +with a stick. I could have torn him limb from limb, as the lion rends +the antelope. But my heart sank within me as with bitter sickness, and +I refrained. I saw him on the point of repeating his blow, when, +overcome by pain and anguish, I quitted the cottage, and in the general +tumult escaped unperceived to my hovel.” + + + + + +Chapter 16 + +“Cursed, cursed creator! Why did I live? Why, in that instant, did I +not extinguish the spark of existence which you had so wantonly +bestowed? I know not; despair had not yet taken possession of me; my +feelings were those of rage and revenge. I could with pleasure have +destroyed the cottage and its inhabitants and have glutted myself with +their shrieks and misery. + +“When night came I quitted my retreat and wandered in the wood; and +now, no longer restrained by the fear of discovery, I gave vent to my +anguish in fearful howlings. I was like a wild beast that had broken +the toils, destroying the objects that obstructed me and ranging +through the wood with a stag-like swiftness. Oh! What a miserable +night I passed! The cold stars shone in mockery, and the bare trees +waved their branches above me; now and then the sweet voice of a bird +burst forth amidst the universal stillness. All, save I, were at rest +or in enjoyment; I, like the arch-fiend, bore a hell within me, and +finding myself unsympathised with, wished to tear up the trees, spread +havoc and destruction around me, and then to have sat down and enjoyed +the ruin. + +“But this was a luxury of sensation that could not endure; I became +fatigued with excess of bodily exertion and sank on the damp grass in +the sick impotence of despair. There was none among the myriads of men +that existed who would pity or assist me; and should I feel kindness +towards my enemies? No; from that moment I declared everlasting war +against the species, and more than all, against him who had formed me +and sent me forth to this insupportable misery. + +“The sun rose; I heard the voices of men and knew that it was +impossible to return to my retreat during that day. Accordingly I hid +myself in some thick underwood, determining to devote the ensuing hours +to reflection on my situation. + +“The pleasant sunshine and the pure air of day restored me to some +degree of tranquillity; and when I considered what had passed at the +cottage, I could not help believing that I had been too hasty in my +conclusions. I had certainly acted imprudently. It was apparent that +my conversation had interested the father in my behalf, and I was a +fool in having exposed my person to the horror of his children. I +ought to have familiarised the old De Lacey to me, and by degrees to +have discovered myself to the rest of his family, when they should have +been prepared for my approach. But I did not believe my errors to be +irretrievable, and after much consideration I resolved to return to the +cottage, seek the old man, and by my representations win him to my +party. + +“These thoughts calmed me, and in the afternoon I sank into a profound +sleep; but the fever of my blood did not allow me to be visited by +peaceful dreams. The horrible scene of the preceding day was for ever +acting before my eyes; the females were flying and the enraged Felix +tearing me from his father’s feet. I awoke exhausted, and finding that +it was already night, I crept forth from my hiding-place, and went in +search of food. + +“When my hunger was appeased, I directed my steps towards the +well-known path that conducted to the cottage. All there was at peace. +I crept into my hovel and remained in silent expectation of the +accustomed hour when the family arose. That hour passed, the sun +mounted high in the heavens, but the cottagers did not appear. I +trembled violently, apprehending some dreadful misfortune. The inside +of the cottage was dark, and I heard no motion; I cannot describe the +agony of this suspense. + +“Presently two countrymen passed by, but pausing near the cottage, they +entered into conversation, using violent gesticulations; but I did not +understand what they said, as they spoke the language of the country, +which differed from that of my protectors. Soon after, however, Felix +approached with another man; I was surprised, as I knew that he had not +quitted the cottage that morning, and waited anxiously to discover from +his discourse the meaning of these unusual appearances. + +“‘Do you consider,’ said his companion to him, +‘that you will be obliged to pay three months’ rent and to lose +the produce of your garden? I do not wish to take any unfair advantage, and +I beg therefore that you will take some days to consider of your +determination.’ + +“‘It is utterly useless,’ replied Felix; ‘we can +never again inhabit your cottage. The life of my father is in the greatest +danger, owing to the dreadful circumstance that I have related. My wife and +my sister will never recover from their horror. I entreat you not to reason +with me any more. Take possession of your tenement and let me fly from this +place.’ + +“Felix trembled violently as he said this. He and his companion +entered the cottage, in which they remained for a few minutes, and then +departed. I never saw any of the family of De Lacey more. + +“I continued for the remainder of the day in my hovel in a state of +utter and stupid despair. My protectors had departed and had broken +the only link that held me to the world. For the first time the +feelings of revenge and hatred filled my bosom, and I did not strive to +control them, but allowing myself to be borne away by the stream, I +bent my mind towards injury and death. When I thought of my friends, +of the mild voice of De Lacey, the gentle eyes of Agatha, and the +exquisite beauty of the Arabian, these thoughts vanished and a gush of +tears somewhat soothed me. But again when I reflected that they had +spurned and deserted me, anger returned, a rage of anger, and unable to +injure anything human, I turned my fury towards inanimate objects. As +night advanced, I placed a variety of combustibles around the cottage, +and after having destroyed every vestige of cultivation in the garden, +I waited with forced impatience until the moon had sunk to commence my +operations. + +“As the night advanced, a fierce wind arose from the woods and quickly +dispersed the clouds that had loitered in the heavens; the blast tore +along like a mighty avalanche and produced a kind of insanity in my +spirits that burst all bounds of reason and reflection. I lighted the +dry branch of a tree and danced with fury around the devoted cottage, +my eyes still fixed on the western horizon, the edge of which the moon +nearly touched. A part of its orb was at length hid, and I waved my +brand; it sank, and with a loud scream I fired the straw, and heath, +and bushes, which I had collected. The wind fanned the fire, and the +cottage was quickly enveloped by the flames, which clung to it and +licked it with their forked and destroying tongues. + +“As soon as I was convinced that no assistance could save any part of +the habitation, I quitted the scene and sought for refuge in the woods. + +“And now, with the world before me, whither should I bend my steps? I +resolved to fly far from the scene of my misfortunes; but to me, hated +and despised, every country must be equally horrible. At length the +thought of you crossed my mind. I learned from your papers that you +were my father, my creator; and to whom could I apply with more fitness +than to him who had given me life? Among the lessons that Felix had +bestowed upon Safie, geography had not been omitted; I had learned from +these the relative situations of the different countries of the earth. +You had mentioned Geneva as the name of your native town, and towards +this place I resolved to proceed. + +“But how was I to direct myself? I knew that I must travel in a +southwesterly direction to reach my destination, but the sun was my +only guide. I did not know the names of the towns that I was to pass +through, nor could I ask information from a single human being; but I +did not despair. From you only could I hope for succour, although +towards you I felt no sentiment but that of hatred. Unfeeling, +heartless creator! You had endowed me with perceptions and passions +and then cast me abroad an object for the scorn and horror of mankind. +But on you only had I any claim for pity and redress, and from you I +determined to seek that justice which I vainly attempted to gain from +any other being that wore the human form. + +“My travels were long and the sufferings I endured intense. It was +late in autumn when I quitted the district where I had so long resided. +I travelled only at night, fearful of encountering the visage of a +human being. Nature decayed around me, and the sun became heatless; +rain and snow poured around me; mighty rivers were frozen; the surface +of the earth was hard and chill, and bare, and I found no shelter. Oh, +earth! How often did I imprecate curses on the cause of my being! The +mildness of my nature had fled, and all within me was turned to gall +and bitterness. The nearer I approached to your habitation, the more +deeply did I feel the spirit of revenge enkindled in my heart. Snow +fell, and the waters were hardened, but I rested not. A few incidents +now and then directed me, and I possessed a map of the country; but I +often wandered wide from my path. The agony of my feelings allowed me +no respite; no incident occurred from which my rage and misery could +not extract its food; but a circumstance that happened when I arrived +on the confines of Switzerland, when the sun had recovered its warmth +and the earth again began to look green, confirmed in an especial +manner the bitterness and horror of my feelings. + +“I generally rested during the day and travelled only when I was +secured by night from the view of man. One morning, however, finding +that my path lay through a deep wood, I ventured to continue my journey +after the sun had risen; the day, which was one of the first of spring, +cheered even me by the loveliness of its sunshine and the balminess of +the air. I felt emotions of gentleness and pleasure, that had long +appeared dead, revive within me. Half surprised by the novelty of +these sensations, I allowed myself to be borne away by them, and +forgetting my solitude and deformity, dared to be happy. Soft tears +again bedewed my cheeks, and I even raised my humid eyes with +thankfulness towards the blessed sun, which bestowed such joy upon me. + +“I continued to wind among the paths of the wood, until I came to its +boundary, which was skirted by a deep and rapid river, into which many +of the trees bent their branches, now budding with the fresh spring. +Here I paused, not exactly knowing what path to pursue, when I heard +the sound of voices, that induced me to conceal myself under the shade +of a cypress. I was scarcely hid when a young girl came running +towards the spot where I was concealed, laughing, as if she ran from +someone in sport. She continued her course along the precipitous sides +of the river, when suddenly her foot slipped, and she fell into the +rapid stream. I rushed from my hiding-place and with extreme labour, +from the force of the current, saved her and dragged her to shore. She +was senseless, and I endeavoured by every means in my power to restore +animation, when I was suddenly interrupted by the approach of a rustic, +who was probably the person from whom she had playfully fled. On +seeing me, he darted towards me, and tearing the girl from my arms, +hastened towards the deeper parts of the wood. I followed speedily, I +hardly knew why; but when the man saw me draw near, he aimed a gun, +which he carried, at my body and fired. I sank to the ground, and my +injurer, with increased swiftness, escaped into the wood. + +“This was then the reward of my benevolence! I had saved a human being +from destruction, and as a recompense I now writhed under the miserable +pain of a wound which shattered the flesh and bone. The feelings of +kindness and gentleness which I had entertained but a few moments +before gave place to hellish rage and gnashing of teeth. Inflamed by +pain, I vowed eternal hatred and vengeance to all mankind. But the +agony of my wound overcame me; my pulses paused, and I fainted. + +“For some weeks I led a miserable life in the woods, endeavouring to +cure the wound which I had received. The ball had entered my shoulder, +and I knew not whether it had remained there or passed through; at any +rate I had no means of extracting it. My sufferings were augmented +also by the oppressive sense of the injustice and ingratitude of their +infliction. My daily vows rose for revenge—a deep and deadly revenge, +such as would alone compensate for the outrages and anguish I had +endured. + +“After some weeks my wound healed, and I continued my journey. The +labours I endured were no longer to be alleviated by the bright sun or +gentle breezes of spring; all joy was but a mockery which insulted my +desolate state and made me feel more painfully that I was not made for +the enjoyment of pleasure. + +“But my toils now drew near a close, and in two months from this time I +reached the environs of Geneva. + +“It was evening when I arrived, and I retired to a hiding-place among +the fields that surround it to meditate in what manner I should apply +to you. I was oppressed by fatigue and hunger and far too unhappy to +enjoy the gentle breezes of evening or the prospect of the sun setting +behind the stupendous mountains of Jura. + +“At this time a slight sleep relieved me from the pain of reflection, +which was disturbed by the approach of a beautiful child, who came +running into the recess I had chosen, with all the sportiveness of +infancy. Suddenly, as I gazed on him, an idea seized me that this +little creature was unprejudiced and had lived too short a time to have +imbibed a horror of deformity. If, therefore, I could seize him and +educate him as my companion and friend, I should not be so desolate in +this peopled earth. + +“Urged by this impulse, I seized on the boy as he passed and drew him +towards me. As soon as he beheld my form, he placed his hands before +his eyes and uttered a shrill scream; I drew his hand forcibly from his +face and said, ‘Child, what is the meaning of this? I do not intend to +hurt you; listen to me.’ + +“He struggled violently. ‘Let me go,’ he cried; +‘monster! Ugly wretch! You wish to eat me and tear me to pieces. You +are an ogre. Let me go, or I will tell my papa.’ + +“‘Boy, you will never see your father again; you must come with me.’ + +“‘Hideous monster! Let me go. My papa is a syndic—he is M. +Frankenstein—he will punish you. You dare not keep me.’ + +“‘Frankenstein! you belong then to my enemy—to him towards whom I have +sworn eternal revenge; you shall be my first victim.’ + +“The child still struggled and loaded me with epithets which carried +despair to my heart; I grasped his throat to silence him, and in a +moment he lay dead at my feet. + +“I gazed on my victim, and my heart swelled with exultation and hellish +triumph; clapping my hands, I exclaimed, ‘I too can create desolation; +my enemy is not invulnerable; this death will carry despair to him, and +a thousand other miseries shall torment and destroy him.’ + +“As I fixed my eyes on the child, I saw something glittering on his +breast. I took it; it was a portrait of a most lovely woman. In spite +of my malignity, it softened and attracted me. For a few moments I +gazed with delight on her dark eyes, fringed by deep lashes, and her +lovely lips; but presently my rage returned; I remembered that I was +for ever deprived of the delights that such beautiful creatures could +bestow and that she whose resemblance I contemplated would, in +regarding me, have changed that air of divine benignity to one +expressive of disgust and affright. + +“Can you wonder that such thoughts transported me with rage? I only +wonder that at that moment, instead of venting my sensations in +exclamations and agony, I did not rush among mankind and perish in the +attempt to destroy them. + +“While I was overcome by these feelings, I left the spot where I had +committed the murder, and seeking a more secluded hiding-place, I +entered a barn which had appeared to me to be empty. A woman was +sleeping on some straw; she was young, not indeed so beautiful as her +whose portrait I held, but of an agreeable aspect and blooming in the +loveliness of youth and health. Here, I thought, is one of those whose +joy-imparting smiles are bestowed on all but me. And then I bent over +her and whispered, ‘Awake, fairest, thy lover is near—he who would +give his life but to obtain one look of affection from thine eyes; my +beloved, awake!’ + +“The sleeper stirred; a thrill of terror ran through me. Should she +indeed awake, and see me, and curse me, and denounce the murderer? Thus +would she assuredly act if her darkened eyes opened and she beheld me. +The thought was madness; it stirred the fiend within me—not I, but +she, shall suffer; the murder I have committed because I am for ever +robbed of all that she could give me, she shall atone. The crime had +its source in her; be hers the punishment! Thanks to the lessons of +Felix and the sanguinary laws of man, I had learned now to work +mischief. I bent over her and placed the portrait securely in one of +the folds of her dress. She moved again, and I fled. + +“For some days I haunted the spot where these scenes had taken place, +sometimes wishing to see you, sometimes resolved to quit the world and +its miseries for ever. At length I wandered towards these mountains, +and have ranged through their immense recesses, consumed by a burning +passion which you alone can gratify. We may not part until you have +promised to comply with my requisition. I am alone and miserable; man +will not associate with me; but one as deformed and horrible as myself +would not deny herself to me. My companion must be of the same species +and have the same defects. This being you must create.” + + + + + +Chapter 17 + +The being finished speaking and fixed his looks upon me in the +expectation of a reply. But I was bewildered, perplexed, and unable to +arrange my ideas sufficiently to understand the full extent of his +proposition. He continued, + +“You must create a female for me with whom I can live in the +interchange of those sympathies necessary for my being. This you alone +can do, and I demand it of you as a right which you must not refuse to +concede.” + +The latter part of his tale had kindled anew in me the anger that had +died away while he narrated his peaceful life among the cottagers, and +as he said this I could no longer suppress the rage that burned within +me. + +“I do refuse it,” I replied; “and no torture shall ever extort a +consent from me. You may render me the most miserable of men, but you +shall never make me base in my own eyes. Shall I create another like +yourself, whose joint wickedness might desolate the world. Begone! I +have answered you; you may torture me, but I will never consent.” + +“You are in the wrong,” replied the fiend; “and instead +of threatening, I am content to reason with you. I am malicious because I +am miserable. Am I not shunned and hated by all mankind? You, my creator, +would tear me to pieces and triumph; remember that, and tell me why I +should pity man more than he pities me? You would not call it murder if you +could precipitate me into one of those ice-rifts and destroy my frame, the +work of your own hands. Shall I respect man when he condemns me? Let him +live with me in the interchange of kindness, and instead of injury I would +bestow every benefit upon him with tears of gratitude at his acceptance. +But that cannot be; the human senses are insurmountable barriers to our +union. Yet mine shall not be the submission of abject slavery. I will +revenge my injuries; if I cannot inspire love, I will cause fear, and +chiefly towards you my arch-enemy, because my creator, do I swear +inextinguishable hatred. Have a care; I will work at your destruction, nor +finish until I desolate your heart, so that you shall curse the hour of +your birth.” + +A fiendish rage animated him as he said this; his face was wrinkled +into contortions too horrible for human eyes to behold; but presently +he calmed himself and proceeded— + +“I intended to reason. This passion is detrimental to me, for you do +not reflect that _you_ are the cause of its excess. If any being felt +emotions of benevolence towards me, I should return them a hundred and a +hundredfold; for that one creature’s sake I would make peace with the +whole kind! But I now indulge in dreams of bliss that cannot be realised. +What I ask of you is reasonable and moderate; I demand a creature of +another sex, but as hideous as myself; the gratification is small, but it +is all that I can receive, and it shall content me. It is true, we shall be +monsters, cut off from all the world; but on that account we shall be more +attached to one another. Our lives will not be happy, but they will be +harmless and free from the misery I now feel. Oh! My creator, make me +happy; let me feel gratitude towards you for one benefit! Let me see that I +excite the sympathy of some existing thing; do not deny me my +request!” + +I was moved. I shuddered when I thought of the possible consequences +of my consent, but I felt that there was some justice in his argument. +His tale and the feelings he now expressed proved him to be a creature +of fine sensations, and did I not as his maker owe him all the portion +of happiness that it was in my power to bestow? He saw my change of +feeling and continued, + +“If you consent, neither you nor any other human being shall ever see +us again; I will go to the vast wilds of South America. My food is not +that of man; I do not destroy the lamb and the kid to glut my appetite; +acorns and berries afford me sufficient nourishment. My companion will +be of the same nature as myself and will be content with the same fare. +We shall make our bed of dried leaves; the sun will shine on us as on +man and will ripen our food. The picture I present to you is peaceful +and human, and you must feel that you could deny it only in the +wantonness of power and cruelty. Pitiless as you have been towards me, +I now see compassion in your eyes; let me seize the favourable moment +and persuade you to promise what I so ardently desire.” + +“You propose,” replied I, “to fly from the habitations of +man, to dwell in those wilds where the beasts of the field will be your +only companions. How can you, who long for the love and sympathy of man, +persevere in this exile? You will return and again seek their kindness, and +you will meet with their detestation; your evil passions will be renewed, +and you will then have a companion to aid you in the task of destruction. +This may not be; cease to argue the point, for I cannot consent.” + +“How inconstant are your feelings! But a moment ago you were moved by +my representations, and why do you again harden yourself to my complaints? +I swear to you, by the earth which I inhabit, and by you that made me, that +with the companion you bestow, I will quit the neighbourhood of man and +dwell, as it may chance, in the most savage of places. My evil passions +will have fled, for I shall meet with sympathy! My life will flow quietly +away, and in my dying moments I shall not curse my maker.” + +His words had a strange effect upon me. I compassionated him and +sometimes felt a wish to console him, but when I looked upon him, when +I saw the filthy mass that moved and talked, my heart sickened and my +feelings were altered to those of horror and hatred. I tried to stifle +these sensations; I thought that as I could not sympathise with him, I +had no right to withhold from him the small portion of happiness which +was yet in my power to bestow. + +“You swear,” I said, “to be harmless; but have you not +already shown a degree of malice that should reasonably make me distrust +you? May not even this be a feint that will increase your triumph by +affording a wider scope for your revenge?” + +“How is this? I must not be trifled with, and I demand an answer. If +I have no ties and no affections, hatred and vice must be my portion; +the love of another will destroy the cause of my crimes, and I shall +become a thing of whose existence everyone will be ignorant. My vices +are the children of a forced solitude that I abhor, and my virtues will +necessarily arise when I live in communion with an equal. I shall feel +the affections of a sensitive being and become linked to the chain of +existence and events from which I am now excluded.” + +I paused some time to reflect on all he had related and the various +arguments which he had employed. I thought of the promise of virtues which +he had displayed on the opening of his existence and the subsequent blight +of all kindly feeling by the loathing and scorn which his protectors had +manifested towards him. His power and threats were not omitted in my +calculations; a creature who could exist in the ice-caves of the glaciers +and hide himself from pursuit among the ridges of inaccessible precipices +was a being possessing faculties it would be vain to cope with. After a +long pause of reflection I concluded that the justice due both to him and +my fellow creatures demanded of me that I should comply with his request. +Turning to him, therefore, I said, + +“I consent to your demand, on your solemn oath to quit Europe for ever, +and every other place in the neighbourhood of man, as soon as I shall +deliver into your hands a female who will accompany you in your exile.” + +“I swear,” he cried, “by the sun, and by the blue sky of +heaven, and by the fire of love that burns my heart, that if you grant my +prayer, while they exist you shall never behold me again. Depart to your +home and commence your labours; I shall watch their progress with +unutterable anxiety; and fear not but that when you are ready I shall +appear.” + +Saying this, he suddenly quitted me, fearful, perhaps, of any change in +my sentiments. I saw him descend the mountain with greater speed than +the flight of an eagle, and quickly lost among the undulations of the +sea of ice. + +His tale had occupied the whole day, and the sun was upon the verge of +the horizon when he departed. I knew that I ought to hasten my descent +towards the valley, as I should soon be encompassed in darkness; but my +heart was heavy, and my steps slow. The labour of winding among the +little paths of the mountain and fixing my feet firmly as I advanced +perplexed me, occupied as I was by the emotions which the occurrences +of the day had produced. Night was far advanced when I came to the +halfway resting-place and seated myself beside the fountain. The stars +shone at intervals as the clouds passed from over them; the dark pines +rose before me, and every here and there a broken tree lay on the +ground; it was a scene of wonderful solemnity and stirred strange +thoughts within me. I wept bitterly, and clasping my hands in agony, I +exclaimed, “Oh! stars and clouds and winds, ye are all about to mock +me; if ye really pity me, crush sensation and memory; let me become as +nought; but if not, depart, depart, and leave me in darkness.” + +These were wild and miserable thoughts, but I cannot describe to you +how the eternal twinkling of the stars weighed upon me and how I +listened to every blast of wind as if it were a dull ugly siroc on its +way to consume me. + +Morning dawned before I arrived at the village of Chamounix; I took no +rest, but returned immediately to Geneva. Even in my own heart I could +give no expression to my sensations—they weighed on me with a +mountain’s weight and their excess destroyed my agony beneath them. +Thus I returned home, and entering the house, presented myself to the +family. My haggard and wild appearance awoke intense alarm, but I +answered no question, scarcely did I speak. I felt as if I were placed +under a ban—as if I had no right to claim their sympathies—as if +never more might I enjoy companionship with them. Yet even thus I +loved them to adoration; and to save them, I resolved to dedicate +myself to my most abhorred task. The prospect of such an occupation +made every other circumstance of existence pass before me like a dream, +and that thought only had to me the reality of life. + + + + + +Chapter 18 + +Day after day, week after week, passed away on my return to Geneva; and +I could not collect the courage to recommence my work. I feared the +vengeance of the disappointed fiend, yet I was unable to overcome my +repugnance to the task which was enjoined me. I found that I could not +compose a female without again devoting several months to profound +study and laborious disquisition. I had heard of some discoveries +having been made by an English philosopher, the knowledge of which was +material to my success, and I sometimes thought of obtaining my +father’s consent to visit England for this purpose; but I clung to +every pretence of delay and shrank from taking the first step in an +undertaking whose immediate necessity began to appear less absolute to +me. A change indeed had taken place in me; my health, which had +hitherto declined, was now much restored; and my spirits, when +unchecked by the memory of my unhappy promise, rose proportionably. My +father saw this change with pleasure, and he turned his thoughts +towards the best method of eradicating the remains of my melancholy, +which every now and then would return by fits, and with a devouring +blackness overcast the approaching sunshine. At these moments I took +refuge in the most perfect solitude. I passed whole days on the lake +alone in a little boat, watching the clouds and listening to the +rippling of the waves, silent and listless. But the fresh air and +bright sun seldom failed to restore me to some degree of composure, and +on my return I met the salutations of my friends with a readier smile +and a more cheerful heart. + +It was after my return from one of these rambles that my father, +calling me aside, thus addressed me, + +“I am happy to remark, my dear son, that you have resumed your former +pleasures and seem to be returning to yourself. And yet you are still +unhappy and still avoid our society. For some time I was lost in +conjecture as to the cause of this, but yesterday an idea struck me, +and if it is well founded, I conjure you to avow it. Reserve on such a +point would be not only useless, but draw down treble misery on us all.” + +I trembled violently at his exordium, and my father continued— + +“I confess, my son, that I have always looked forward to your +marriage with our dear Elizabeth as the tie of our domestic comfort and the +stay of my declining years. You were attached to each other from your +earliest infancy; you studied together, and appeared, in dispositions and +tastes, entirely suited to one another. But so blind is the experience of +man that what I conceived to be the best assistants to my plan may have +entirely destroyed it. You, perhaps, regard her as your sister, without any +wish that she might become your wife. Nay, you may have met with another +whom you may love; and considering yourself as bound in honour to +Elizabeth, this struggle may occasion the poignant misery which you appear +to feel.” + +“My dear father, reassure yourself. I love my cousin tenderly and +sincerely. I never saw any woman who excited, as Elizabeth does, my +warmest admiration and affection. My future hopes and prospects are +entirely bound up in the expectation of our union.” + +“The expression of your sentiments of this subject, my dear Victor, +gives me more pleasure than I have for some time experienced. If you +feel thus, we shall assuredly be happy, however present events may cast +a gloom over us. But it is this gloom which appears to have taken so +strong a hold of your mind that I wish to dissipate. Tell me, +therefore, whether you object to an immediate solemnisation of the +marriage. We have been unfortunate, and recent events have drawn us +from that everyday tranquillity befitting my years and infirmities. You +are younger; yet I do not suppose, possessed as you are of a competent +fortune, that an early marriage would at all interfere with any future +plans of honour and utility that you may have formed. Do not suppose, +however, that I wish to dictate happiness to you or that a delay on +your part would cause me any serious uneasiness. Interpret my words +with candour and answer me, I conjure you, with confidence and +sincerity.” + +I listened to my father in silence and remained for some time incapable +of offering any reply. I revolved rapidly in my mind a multitude of +thoughts and endeavoured to arrive at some conclusion. Alas! To me +the idea of an immediate union with my Elizabeth was one of horror and +dismay. I was bound by a solemn promise which I had not yet fulfilled +and dared not break, or if I did, what manifold miseries might not +impend over me and my devoted family! Could I enter into a festival +with this deadly weight yet hanging round my neck and bowing me to the +ground? I must perform my engagement and let the monster depart with +his mate before I allowed myself to enjoy the delight of a union from +which I expected peace. + +I remembered also the necessity imposed upon me of either journeying to +England or entering into a long correspondence with those philosophers +of that country whose knowledge and discoveries were of indispensable +use to me in my present undertaking. The latter method of obtaining +the desired intelligence was dilatory and unsatisfactory; besides, I +had an insurmountable aversion to the idea of engaging myself in my +loathsome task in my father’s house while in habits of familiar +intercourse with those I loved. I knew that a thousand fearful +accidents might occur, the slightest of which would disclose a tale to +thrill all connected with me with horror. I was aware also that I +should often lose all self-command, all capacity of hiding the +harrowing sensations that would possess me during the progress of my +unearthly occupation. I must absent myself from all I loved while thus +employed. Once commenced, it would quickly be achieved, and I might be +restored to my family in peace and happiness. My promise fulfilled, +the monster would depart for ever. Or (so my fond fancy imaged) some +accident might meanwhile occur to destroy him and put an end to my +slavery for ever. + +These feelings dictated my answer to my father. I expressed a wish to +visit England, but concealing the true reasons of this request, I +clothed my desires under a guise which excited no suspicion, while I +urged my desire with an earnestness that easily induced my father to +comply. After so long a period of an absorbing melancholy that +resembled madness in its intensity and effects, he was glad to find +that I was capable of taking pleasure in the idea of such a journey, +and he hoped that change of scene and varied amusement would, before my +return, have restored me entirely to myself. + +The duration of my absence was left to my own choice; a few months, or +at most a year, was the period contemplated. One paternal kind +precaution he had taken to ensure my having a companion. Without +previously communicating with me, he had, in concert with Elizabeth, +arranged that Clerval should join me at Strasburgh. This interfered +with the solitude I coveted for the prosecution of my task; yet at the +commencement of my journey the presence of my friend could in no way be +an impediment, and truly I rejoiced that thus I should be saved many +hours of lonely, maddening reflection. Nay, Henry might stand between +me and the intrusion of my foe. If I were alone, would he not at times +force his abhorred presence on me to remind me of my task or to +contemplate its progress? + +To England, therefore, I was bound, and it was understood that my union +with Elizabeth should take place immediately on my return. My father’s +age rendered him extremely averse to delay. For myself, there was one +reward I promised myself from my detested toils—one consolation for my +unparalleled sufferings; it was the prospect of that day when, +enfranchised from my miserable slavery, I might claim Elizabeth and +forget the past in my union with her. + +I now made arrangements for my journey, but one feeling haunted me +which filled me with fear and agitation. During my absence I should +leave my friends unconscious of the existence of their enemy and +unprotected from his attacks, exasperated as he might be by my +departure. But he had promised to follow me wherever I might go, and +would he not accompany me to England? This imagination was dreadful in +itself, but soothing inasmuch as it supposed the safety of my friends. +I was agonised with the idea of the possibility that the reverse of +this might happen. But through the whole period during which I was the +slave of my creature I allowed myself to be governed by the impulses of +the moment; and my present sensations strongly intimated that the fiend +would follow me and exempt my family from the danger of his +machinations. + +It was in the latter end of September that I again quitted my native +country. My journey had been my own suggestion, and Elizabeth +therefore acquiesced, but she was filled with disquiet at the idea of +my suffering, away from her, the inroads of misery and grief. It had +been her care which provided me a companion in Clerval—and yet a man +is blind to a thousand minute circumstances which call forth a woman’s +sedulous attention. She longed to bid me hasten my return; a thousand +conflicting emotions rendered her mute as she bade me a tearful, silent +farewell. + +I threw myself into the carriage that was to convey me away, hardly +knowing whither I was going, and careless of what was passing around. +I remembered only, and it was with a bitter anguish that I reflected on +it, to order that my chemical instruments should be packed to go with +me. Filled with dreary imaginations, I passed through many beautiful +and majestic scenes, but my eyes were fixed and unobserving. I could +only think of the bourne of my travels and the work which was to occupy +me whilst they endured. + +After some days spent in listless indolence, during which I traversed +many leagues, I arrived at Strasburgh, where I waited two days for +Clerval. He came. Alas, how great was the contrast between us! He +was alive to every new scene, joyful when he saw the beauties of the +setting sun, and more happy when he beheld it rise and recommence a new +day. He pointed out to me the shifting colours of the landscape and +the appearances of the sky. “This is what it is to live,” he cried; +“now I enjoy existence! But you, my dear Frankenstein, wherefore are +you desponding and sorrowful!” In truth, I was occupied by gloomy +thoughts and neither saw the descent of the evening star nor the golden +sunrise reflected in the Rhine. And you, my friend, would be far more +amused with the journal of Clerval, who observed the scenery with an +eye of feeling and delight, than in listening to my reflections. I, a +miserable wretch, haunted by a curse that shut up every avenue to +enjoyment. + +We had agreed to descend the Rhine in a boat from Strasburgh to +Rotterdam, whence we might take shipping for London. During this +voyage we passed many willowy islands and saw several beautiful towns. +We stayed a day at Mannheim, and on the fifth from our departure from +Strasburgh, arrived at Mainz. The course of the Rhine below Mainz +becomes much more picturesque. The river descends rapidly and winds +between hills, not high, but steep, and of beautiful forms. We saw +many ruined castles standing on the edges of precipices, surrounded by +black woods, high and inaccessible. This part of the Rhine, indeed, +presents a singularly variegated landscape. In one spot you view +rugged hills, ruined castles overlooking tremendous precipices, with +the dark Rhine rushing beneath; and on the sudden turn of a promontory, +flourishing vineyards with green sloping banks and a meandering river +and populous towns occupy the scene. + +We travelled at the time of the vintage and heard the song of the labourers +as we glided down the stream. Even I, depressed in mind, and my spirits +continually agitated by gloomy feelings, even I was pleased. I lay at the +bottom of the boat, and as I gazed on the cloudless blue sky, I seemed to +drink in a tranquillity to which I had long been a stranger. And if these +were my sensations, who can describe those of Henry? He felt as if he had +been transported to Fairy-land and enjoyed a happiness seldom tasted by +man. “I have seen,” he said, “the most beautiful scenes +of my own country; I have visited the lakes of Lucerne and Uri, where the +snowy mountains descend almost perpendicularly to the water, casting black +and impenetrable shades, which would cause a gloomy and mournful appearance +were it not for the most verdant islands that relieve the eye by their gay +appearance; I have seen this lake agitated by a tempest, when the wind tore +up whirlwinds of water and gave you an idea of what the water-spout must be +on the great ocean; and the waves dash with fury the base of the mountain, +where the priest and his mistress were overwhelmed by an avalanche and +where their dying voices are still said to be heard amid the pauses of the +nightly wind; I have seen the mountains of La Valais, and the Pays de Vaud; +but this country, Victor, pleases me more than all those wonders. The +mountains of Switzerland are more majestic and strange, but there is a +charm in the banks of this divine river that I never before saw equalled. +Look at that castle which overhangs yon precipice; and that also on the +island, almost concealed amongst the foliage of those lovely trees; and now +that group of labourers coming from among their vines; and that village +half hid in the recess of the mountain. Oh, surely the spirit that inhabits +and guards this place has a soul more in harmony with man than those who +pile the glacier or retire to the inaccessible peaks of the mountains of +our own country.” + +Clerval! Beloved friend! Even now it delights me to record your words and +to dwell on the praise of which you are so eminently deserving. He was a +being formed in the “very poetry of nature.” His wild and +enthusiastic imagination was chastened by the sensibility of his heart. His +soul overflowed with ardent affections, and his friendship was of that +devoted and wondrous nature that the worldly-minded teach us to look for only +in the imagination. But even human sympathies were not sufficient to +satisfy his eager mind. The scenery of external nature, which others regard +only with admiration, he loved with ardour:— + + ——The sounding cataract + Haunted him like a passion: the tall rock, + The mountain, and the deep and gloomy wood, + Their colours and their forms, were then to him + An appetite; a feeling, and a love, + That had no need of a remoter charm, + By thought supplied, or any interest + Unborrow’d from the eye. + + [Wordsworth’s “Tintern Abbey”.] + + + +And where does he now exist? Is this gentle and lovely being lost +for ever? Has this mind, so replete with ideas, imaginations fanciful +and magnificent, which formed a world, whose existence depended on the +life of its creator;—has this mind perished? Does it now only exist +in my memory? No, it is not thus; your form so divinely wrought, and +beaming with beauty, has decayed, but your spirit still visits and +consoles your unhappy friend. + +Pardon this gush of sorrow; these ineffectual words are but a slight +tribute to the unexampled worth of Henry, but they soothe my heart, +overflowing with the anguish which his remembrance creates. I will +proceed with my tale. + +Beyond Cologne we descended to the plains of Holland; and we resolved to +post the remainder of our way, for the wind was contrary and the stream of +the river was too gentle to aid us. + +Our journey here lost the interest arising from beautiful scenery, but we +arrived in a few days at Rotterdam, whence we proceeded by sea to England. +It was on a clear morning, in the latter days of December, that I first saw +the white cliffs of Britain. The banks of the Thames presented a new scene; +they were flat but fertile, and almost every town was marked by the +remembrance of some story. We saw Tilbury Fort and remembered the Spanish +Armada, Gravesend, Woolwich, and Greenwich—places which I had heard +of even in my country. + +At length we saw the numerous steeples of London, St. Paul’s towering +above all, and the Tower famed in English history. + + + + + +Chapter 19 + +London was our present point of rest; we determined to remain several +months in this wonderful and celebrated city. Clerval desired the +intercourse of the men of genius and talent who flourished at this +time, but this was with me a secondary object; I was principally +occupied with the means of obtaining the information necessary for the +completion of my promise and quickly availed myself of the letters of +introduction that I had brought with me, addressed to the most +distinguished natural philosophers. + +If this journey had taken place during my days of study and happiness, +it would have afforded me inexpressible pleasure. But a blight had +come over my existence, and I only visited these people for the sake of +the information they might give me on the subject in which my interest +was so terribly profound. Company was irksome to me; when alone, I +could fill my mind with the sights of heaven and earth; the voice of +Henry soothed me, and I could thus cheat myself into a transitory +peace. But busy, uninteresting, joyous faces brought back despair to +my heart. I saw an insurmountable barrier placed between me and my +fellow men; this barrier was sealed with the blood of William and +Justine, and to reflect on the events connected with those names filled +my soul with anguish. + +But in Clerval I saw the image of my former self; he was inquisitive +and anxious to gain experience and instruction. The difference of +manners which he observed was to him an inexhaustible source of +instruction and amusement. He was also pursuing an object he had long +had in view. His design was to visit India, in the belief that he had +in his knowledge of its various languages, and in the views he had +taken of its society, the means of materially assisting the progress of +European colonization and trade. In Britain only could he further the +execution of his plan. He was for ever busy, and the only check to his +enjoyments was my sorrowful and dejected mind. I tried to conceal this +as much as possible, that I might not debar him from the pleasures +natural to one who was entering on a new scene of life, undisturbed by +any care or bitter recollection. I often refused to accompany him, +alleging another engagement, that I might remain alone. I now also +began to collect the materials necessary for my new creation, and this +was to me like the torture of single drops of water continually falling +on the head. Every thought that was devoted to it was an extreme +anguish, and every word that I spoke in allusion to it caused my lips +to quiver, and my heart to palpitate. + +After passing some months in London, we received a letter from a person in +Scotland who had formerly been our visitor at Geneva. He mentioned the +beauties of his native country and asked us if those were not sufficient +allurements to induce us to prolong our journey as far north as Perth, +where he resided. Clerval eagerly desired to accept this invitation, and I, +although I abhorred society, wished to view again mountains and streams and +all the wondrous works with which Nature adorns her chosen dwelling-places. + +We had arrived in England at the beginning of October, and it was now +February. We accordingly determined to commence our journey towards the +north at the expiration of another month. In this expedition we did not +intend to follow the great road to Edinburgh, but to visit Windsor, Oxford, +Matlock, and the Cumberland lakes, resolving to arrive at the completion of +this tour about the end of July. I packed up my chemical instruments and +the materials I had collected, resolving to finish my labours in some +obscure nook in the northern highlands of Scotland. + +We quitted London on the 27th of March and remained a few days at +Windsor, rambling in its beautiful forest. This was a new scene to us +mountaineers; the majestic oaks, the quantity of game, and the herds of +stately deer were all novelties to us. + +From thence we proceeded to Oxford. As we entered this city, our minds +were filled with the remembrance of the events that had been transacted +there more than a century and a half before. It was here that Charles +I. had collected his forces. This city had remained faithful to him, +after the whole nation had forsaken his cause to join the standard of +Parliament and liberty. The memory of that unfortunate king and his +companions, the amiable Falkland, the insolent Goring, his queen, and +son, gave a peculiar interest to every part of the city which they +might be supposed to have inhabited. The spirit of elder days found a +dwelling here, and we delighted to trace its footsteps. If these +feelings had not found an imaginary gratification, the appearance of +the city had yet in itself sufficient beauty to obtain our admiration. +The colleges are ancient and picturesque; the streets are almost +magnificent; and the lovely Isis, which flows beside it through meadows +of exquisite verdure, is spread forth into a placid expanse of waters, +which reflects its majestic assemblage of towers, and spires, and +domes, embosomed among aged trees. + +I enjoyed this scene, and yet my enjoyment was embittered both by the +memory of the past and the anticipation of the future. I was formed +for peaceful happiness. During my youthful days discontent never +visited my mind, and if I was ever overcome by _ennui_, the sight of what +is beautiful in nature or the study of what is excellent and sublime in +the productions of man could always interest my heart and communicate +elasticity to my spirits. But I am a blasted tree; the bolt has +entered my soul; and I felt then that I should survive to exhibit what +I shall soon cease to be—a miserable spectacle of wrecked humanity, +pitiable to others and intolerable to myself. + +We passed a considerable period at Oxford, rambling among its environs +and endeavouring to identify every spot which might relate to the most +animating epoch of English history. Our little voyages of discovery +were often prolonged by the successive objects that presented +themselves. We visited the tomb of the illustrious Hampden and the +field on which that patriot fell. For a moment my soul was elevated +from its debasing and miserable fears to contemplate the divine ideas +of liberty and self-sacrifice of which these sights were the monuments +and the remembrancers. For an instant I dared to shake off my chains +and look around me with a free and lofty spirit, but the iron had eaten +into my flesh, and I sank again, trembling and hopeless, into my +miserable self. + +We left Oxford with regret and proceeded to Matlock, which was our next +place of rest. The country in the neighbourhood of this village +resembled, to a greater degree, the scenery of Switzerland; but +everything is on a lower scale, and the green hills want the crown of +distant white Alps which always attend on the piny mountains of my +native country. We visited the wondrous cave and the little cabinets +of natural history, where the curiosities are disposed in the same +manner as in the collections at Servox and Chamounix. The latter name +made me tremble when pronounced by Henry, and I hastened to quit +Matlock, with which that terrible scene was thus associated. + +From Derby, still journeying northwards, we passed two months in +Cumberland and Westmorland. I could now almost fancy myself among the +Swiss mountains. The little patches of snow which yet lingered on the +northern sides of the mountains, the lakes, and the dashing of the +rocky streams were all familiar and dear sights to me. Here also we +made some acquaintances, who almost contrived to cheat me into +happiness. The delight of Clerval was proportionably greater than +mine; his mind expanded in the company of men of talent, and he found +in his own nature greater capacities and resources than he could have +imagined himself to have possessed while he associated with his +inferiors. “I could pass my life here,” said he to me; “and among +these mountains I should scarcely regret Switzerland and the Rhine.” + +But he found that a traveller’s life is one that includes much pain +amidst its enjoyments. His feelings are for ever on the stretch; and +when he begins to sink into repose, he finds himself obliged to quit +that on which he rests in pleasure for something new, which again +engages his attention, and which also he forsakes for other novelties. + +We had scarcely visited the various lakes of Cumberland and Westmorland +and conceived an affection for some of the inhabitants when the period +of our appointment with our Scotch friend approached, and we left them +to travel on. For my own part I was not sorry. I had now neglected my +promise for some time, and I feared the effects of the dæmon’s +disappointment. He might remain in Switzerland and wreak his vengeance +on my relatives. This idea pursued me and tormented me at every moment +from which I might otherwise have snatched repose and peace. I waited +for my letters with feverish impatience; if they were delayed I was +miserable and overcome by a thousand fears; and when they arrived and I +saw the superscription of Elizabeth or my father, I hardly dared to +read and ascertain my fate. Sometimes I thought that the fiend +followed me and might expedite my remissness by murdering my companion. +When these thoughts possessed me, I would not quit Henry for a moment, +but followed him as his shadow, to protect him from the fancied rage of +his destroyer. I felt as if I had committed some great crime, the +consciousness of which haunted me. I was guiltless, but I had indeed +drawn down a horrible curse upon my head, as mortal as that of crime. + +I visited Edinburgh with languid eyes and mind; and yet that city might +have interested the most unfortunate being. Clerval did not like it so well +as Oxford, for the antiquity of the latter city was more pleasing to him. +But the beauty and regularity of the new town of Edinburgh, its romantic +castle and its environs, the most delightful in the world, Arthur’s +Seat, St. Bernard’s Well, and the Pentland Hills, compensated him for +the change and filled him with cheerfulness and admiration. But I was +impatient to arrive at the termination of my journey. + +We left Edinburgh in a week, passing through Coupar, St. Andrew’s, and +along the banks of the Tay, to Perth, where our friend expected us. +But I was in no mood to laugh and talk with strangers or enter into +their feelings or plans with the good humour expected from a guest; and +accordingly I told Clerval that I wished to make the tour of Scotland +alone. “Do you,” said I, “enjoy yourself, and let this be our +rendezvous. I may be absent a month or two; but do not interfere with +my motions, I entreat you; leave me to peace and solitude for a short +time; and when I return, I hope it will be with a lighter heart, more +congenial to your own temper.” + +Henry wished to dissuade me, but seeing me bent on this plan, ceased to +remonstrate. He entreated me to write often. “I had rather be with +you,” he said, “in your solitary rambles, than with these Scotch +people, whom I do not know; hasten, then, my dear friend, to return, +that I may again feel myself somewhat at home, which I cannot do in +your absence.” + +Having parted from my friend, I determined to visit some remote spot of +Scotland and finish my work in solitude. I did not doubt but that the +monster followed me and would discover himself to me when I should have +finished, that he might receive his companion. + +With this resolution I traversed the northern highlands and fixed on one of +the remotest of the Orkneys as the scene of my labours. It was a place +fitted for such a work, being hardly more than a rock whose high sides were +continually beaten upon by the waves. The soil was barren, scarcely +affording pasture for a few miserable cows, and oatmeal for its +inhabitants, which consisted of five persons, whose gaunt and scraggy limbs +gave tokens of their miserable fare. Vegetables and bread, when they +indulged in such luxuries, and even fresh water, was to be procured from +the mainland, which was about five miles distant. + +On the whole island there were but three miserable huts, and one of +these was vacant when I arrived. This I hired. It contained but two +rooms, and these exhibited all the squalidness of the most miserable +penury. The thatch had fallen in, the walls were unplastered, and the +door was off its hinges. I ordered it to be repaired, bought some +furniture, and took possession, an incident which would doubtless have +occasioned some surprise had not all the senses of the cottagers been +benumbed by want and squalid poverty. As it was, I lived ungazed at +and unmolested, hardly thanked for the pittance of food and clothes +which I gave, so much does suffering blunt even the coarsest sensations +of men. + +In this retreat I devoted the morning to labour; but in the evening, +when the weather permitted, I walked on the stony beach of the sea to +listen to the waves as they roared and dashed at my feet. It was a +monotonous yet ever-changing scene. I thought of Switzerland; it was +far different from this desolate and appalling landscape. Its hills +are covered with vines, and its cottages are scattered thickly in the +plains. Its fair lakes reflect a blue and gentle sky, and when +troubled by the winds, their tumult is but as the play of a lively +infant when compared to the roarings of the giant ocean. + +In this manner I distributed my occupations when I first arrived, but +as I proceeded in my labour, it became every day more horrible and +irksome to me. Sometimes I could not prevail on myself to enter my +laboratory for several days, and at other times I toiled day and night +in order to complete my work. It was, indeed, a filthy process in +which I was engaged. During my first experiment, a kind of +enthusiastic frenzy had blinded me to the horror of my employment; my +mind was intently fixed on the consummation of my labour, and my eyes +were shut to the horror of my proceedings. But now I went to it in +cold blood, and my heart often sickened at the work of my hands. + +Thus situated, employed in the most detestable occupation, immersed in +a solitude where nothing could for an instant call my attention from +the actual scene in which I was engaged, my spirits became unequal; I +grew restless and nervous. Every moment I feared to meet my +persecutor. Sometimes I sat with my eyes fixed on the ground, fearing +to raise them lest they should encounter the object which I so much +dreaded to behold. I feared to wander from the sight of my fellow +creatures lest when alone he should come to claim his companion. + +In the mean time I worked on, and my labour was already considerably +advanced. I looked towards its completion with a tremulous and eager +hope, which I dared not trust myself to question but which was +intermixed with obscure forebodings of evil that made my heart sicken +in my bosom. + + + + + +Chapter 20 + +I sat one evening in my laboratory; the sun had set, and the moon was just +rising from the sea; I had not sufficient light for my employment, and I +remained idle, in a pause of consideration of whether I should leave my +labour for the night or hasten its conclusion by an unremitting attention +to it. As I sat, a train of reflection occurred to me which led me to +consider the effects of what I was now doing. Three years before, I was +engaged in the same manner and had created a fiend whose unparalleled +barbarity had desolated my heart and filled it for ever with the bitterest +remorse. I was now about to form another being of whose dispositions I was +alike ignorant; she might become ten thousand times more malignant than her +mate and delight, for its own sake, in murder and wretchedness. He had +sworn to quit the neighbourhood of man and hide himself in deserts, but she +had not; and she, who in all probability was to become a thinking and +reasoning animal, might refuse to comply with a compact made before her +creation. They might even hate each other; the creature who already lived +loathed his own deformity, and might he not conceive a greater abhorrence +for it when it came before his eyes in the female form? She also might turn +with disgust from him to the superior beauty of man; she might quit him, +and he be again alone, exasperated by the fresh provocation of being +deserted by one of his own species. + +Even if they were to leave Europe and inhabit the deserts of the new world, +yet one of the first results of those sympathies for which the dæmon +thirsted would be children, and a race of devils would be propagated upon +the earth who might make the very existence of the species of man a +condition precarious and full of terror. Had I right, for my own benefit, +to inflict this curse upon everlasting generations? I had before been moved +by the sophisms of the being I had created; I had been struck senseless by +his fiendish threats; but now, for the first time, the wickedness of my +promise burst upon me; I shuddered to think that future ages might curse me +as their pest, whose selfishness had not hesitated to buy its own peace at +the price, perhaps, of the existence of the whole human race. + +I trembled and my heart failed within me, when, on looking up, I saw by +the light of the moon the dæmon at the casement. A ghastly grin +wrinkled his lips as he gazed on me, where I sat fulfilling the task +which he had allotted to me. Yes, he had followed me in my travels; he +had loitered in forests, hid himself in caves, or taken refuge in wide +and desert heaths; and he now came to mark my progress and claim the +fulfilment of my promise. + +As I looked on him, his countenance expressed the utmost extent of +malice and treachery. I thought with a sensation of madness on my +promise of creating another like to him, and trembling with passion, +tore to pieces the thing on which I was engaged. The wretch saw me +destroy the creature on whose future existence he depended for +happiness, and with a howl of devilish despair and revenge, withdrew. + +I left the room, and locking the door, made a solemn vow in my own +heart never to resume my labours; and then, with trembling steps, I +sought my own apartment. I was alone; none were near me to dissipate +the gloom and relieve me from the sickening oppression of the most +terrible reveries. + +Several hours passed, and I remained near my window gazing on the sea; +it was almost motionless, for the winds were hushed, and all nature +reposed under the eye of the quiet moon. A few fishing vessels alone +specked the water, and now and then the gentle breeze wafted the sound +of voices as the fishermen called to one another. I felt the silence, +although I was hardly conscious of its extreme profundity, until my ear +was suddenly arrested by the paddling of oars near the shore, and a +person landed close to my house. + +In a few minutes after, I heard the creaking of my door, as if some one +endeavoured to open it softly. I trembled from head to foot; I felt a +presentiment of who it was and wished to rouse one of the peasants who +dwelt in a cottage not far from mine; but I was overcome by the sensation +of helplessness, so often felt in frightful dreams, when you in vain +endeavour to fly from an impending danger, and was rooted to the spot. + +Presently I heard the sound of footsteps along the passage; the door +opened, and the wretch whom I dreaded appeared. Shutting the door, he +approached me and said in a smothered voice, + +“You have destroyed the work which you began; what is it that you +intend? Do you dare to break your promise? I have endured toil and misery; +I left Switzerland with you; I crept along the shores of the Rhine, among +its willow islands and over the summits of its hills. I have dwelt many +months in the heaths of England and among the deserts of Scotland. I have +endured incalculable fatigue, and cold, and hunger; do you dare destroy my +hopes?” + +“Begone! I do break my promise; never will I create another like +yourself, equal in deformity and wickedness.” + +“Slave, I before reasoned with you, but you have proved yourself +unworthy of my condescension. Remember that I have power; you believe +yourself miserable, but I can make you so wretched that the light of +day will be hateful to you. You are my creator, but I am your master; +obey!” + +“The hour of my irresolution is past, and the period of your power is +arrived. Your threats cannot move me to do an act of wickedness; but +they confirm me in a determination of not creating you a companion in +vice. Shall I, in cool blood, set loose upon the earth a dæmon whose +delight is in death and wretchedness? Begone! I am firm, and your +words will only exasperate my rage.” + +The monster saw my determination in my face and gnashed his teeth in the +impotence of anger. “Shall each man,” cried he, “find a +wife for his bosom, and each beast have his mate, and I be alone? I had +feelings of affection, and they were requited by detestation and scorn. +Man! You may hate, but beware! Your hours will pass in dread and misery, +and soon the bolt will fall which must ravish from you your happiness for +ever. Are you to be happy while I grovel in the intensity of my +wretchedness? You can blast my other passions, but revenge +remains—revenge, henceforth dearer than light or food! I may die, but +first you, my tyrant and tormentor, shall curse the sun that gazes on your +misery. Beware, for I am fearless and therefore powerful. I will watch with +the wiliness of a snake, that I may sting with its venom. Man, you shall +repent of the injuries you inflict.” + +“Devil, cease; and do not poison the air with these sounds of malice. +I have declared my resolution to you, and I am no coward to bend +beneath words. Leave me; I am inexorable.” + +“It is well. I go; but remember, I shall be with you on your +wedding-night.” + +I started forward and exclaimed, “Villain! Before you sign my +death-warrant, be sure that you are yourself safe.” + +I would have seized him, but he eluded me and quitted the house with +precipitation. In a few moments I saw him in his boat, which shot +across the waters with an arrowy swiftness and was soon lost amidst the +waves. + +All was again silent, but his words rang in my ears. I burned with rage to +pursue the murderer of my peace and precipitate him into the ocean. I +walked up and down my room hastily and perturbed, while my imagination +conjured up a thousand images to torment and sting me. Why had I not +followed him and closed with him in mortal strife? But I had suffered him +to depart, and he had directed his course towards the mainland. I shuddered +to think who might be the next victim sacrificed to his insatiate revenge. +And then I thought again of his words—“_I will be with you on +your wedding-night._” That, then, was the period fixed for the +fulfilment of my destiny. In that hour I should die and at once satisfy and +extinguish his malice. The prospect did not move me to fear; yet when I +thought of my beloved Elizabeth, of her tears and endless sorrow, when she +should find her lover so barbarously snatched from her, tears, the first I +had shed for many months, streamed from my eyes, and I resolved not to fall +before my enemy without a bitter struggle. + +The night passed away, and the sun rose from the ocean; my feelings became +calmer, if it may be called calmness when the violence of rage sinks into +the depths of despair. I left the house, the horrid scene of the last +night’s contention, and walked on the beach of the sea, which I +almost regarded as an insuperable barrier between me and my fellow +creatures; nay, a wish that such should prove the fact stole across me. I +desired that I might pass my life on that barren rock, wearily, it is true, +but uninterrupted by any sudden shock of misery. If I returned, it was to +be sacrificed or to see those whom I most loved die under the grasp of a +dæmon whom I had myself created. + +I walked about the isle like a restless spectre, separated from all it +loved and miserable in the separation. When it became noon, and the +sun rose higher, I lay down on the grass and was overpowered by a deep +sleep. I had been awake the whole of the preceding night, my nerves +were agitated, and my eyes inflamed by watching and misery. The sleep +into which I now sank refreshed me; and when I awoke, I again felt as +if I belonged to a race of human beings like myself, and I began to +reflect upon what had passed with greater composure; yet still the +words of the fiend rang in my ears like a death-knell; they appeared +like a dream, yet distinct and oppressive as a reality. + +The sun had far descended, and I still sat on the shore, satisfying my +appetite, which had become ravenous, with an oaten cake, when I saw a +fishing-boat land close to me, and one of the men brought me a packet; +it contained letters from Geneva, and one from Clerval entreating me to +join him. He said that he was wearing away his time fruitlessly where +he was, that letters from the friends he had formed in London desired +his return to complete the negotiation they had entered into for his +Indian enterprise. He could not any longer delay his departure; but as +his journey to London might be followed, even sooner than he now +conjectured, by his longer voyage, he entreated me to bestow as much of +my society on him as I could spare. He besought me, therefore, to +leave my solitary isle and to meet him at Perth, that we might proceed +southwards together. This letter in a degree recalled me to life, and +I determined to quit my island at the expiration of two days. + +Yet, before I departed, there was a task to perform, on which I shuddered +to reflect; I must pack up my chemical instruments, and for that purpose I +must enter the room which had been the scene of my odious work, and I must +handle those utensils the sight of which was sickening to me. The next +morning, at daybreak, I summoned sufficient courage and unlocked the door +of my laboratory. The remains of the half-finished creature, whom I had +destroyed, lay scattered on the floor, and I almost felt as if I had +mangled the living flesh of a human being. I paused to collect myself and +then entered the chamber. With trembling hand I conveyed the instruments +out of the room, but I reflected that I ought not to leave the relics of my +work to excite the horror and suspicion of the peasants; and I accordingly +put them into a basket, with a great quantity of stones, and laying them +up, determined to throw them into the sea that very night; and in the +meantime I sat upon the beach, employed in cleaning and arranging my +chemical apparatus. + +Nothing could be more complete than the alteration that had taken place +in my feelings since the night of the appearance of the dæmon. I had +before regarded my promise with a gloomy despair as a thing that, with +whatever consequences, must be fulfilled; but I now felt as if a film +had been taken from before my eyes and that I for the first time saw +clearly. The idea of renewing my labours did not for one instant occur +to me; the threat I had heard weighed on my thoughts, but I did not +reflect that a voluntary act of mine could avert it. I had resolved in +my own mind that to create another like the fiend I had first made +would be an act of the basest and most atrocious selfishness, and I +banished from my mind every thought that could lead to a different +conclusion. + +Between two and three in the morning the moon rose; and I then, putting my +basket aboard a little skiff, sailed out about four miles from the shore. +The scene was perfectly solitary; a few boats were returning towards land, +but I sailed away from them. I felt as if I was about the commission of a +dreadful crime and avoided with shuddering anxiety any encounter with my +fellow creatures. At one time the moon, which had before been clear, was +suddenly overspread by a thick cloud, and I took advantage of the moment of +darkness and cast my basket into the sea; I listened to the gurgling sound +as it sank and then sailed away from the spot. The sky became clouded, but +the air was pure, although chilled by the northeast breeze that was then +rising. But it refreshed me and filled me with such agreeable sensations +that I resolved to prolong my stay on the water, and fixing the rudder in a +direct position, stretched myself at the bottom of the boat. Clouds hid the +moon, everything was obscure, and I heard only the sound of the boat as its +keel cut through the waves; the murmur lulled me, and in a short time I +slept soundly. + +I do not know how long I remained in this situation, but when I awoke I +found that the sun had already mounted considerably. The wind was high, and +the waves continually threatened the safety of my little skiff. I found +that the wind was northeast and must have driven me far from the coast from +which I had embarked. I endeavoured to change my course but quickly found +that if I again made the attempt the boat would be instantly filled with +water. Thus situated, my only resource was to drive before the wind. I +confess that I felt a few sensations of terror. I had no compass with me +and was so slenderly acquainted with the geography of this part of the +world that the sun was of little benefit to me. I might be driven into the +wide Atlantic and feel all the tortures of starvation or be swallowed up in +the immeasurable waters that roared and buffeted around me. I had already +been out many hours and felt the torment of a burning thirst, a prelude to +my other sufferings. I looked on the heavens, which were covered by clouds +that flew before the wind, only to be replaced by others; I looked upon the +sea; it was to be my grave. “Fiend,” I exclaimed, “your +task is already fulfilled!” I thought of Elizabeth, of my father, and +of Clerval—all left behind, on whom the monster might satisfy his +sanguinary and merciless passions. This idea plunged me into a reverie so +despairing and frightful that even now, when the scene is on the point of +closing before me for ever, I shudder to reflect on it. + +Some hours passed thus; but by degrees, as the sun declined towards the +horizon, the wind died away into a gentle breeze and the sea became +free from breakers. But these gave place to a heavy swell; I felt sick +and hardly able to hold the rudder, when suddenly I saw a line of high +land towards the south. + +Almost spent, as I was, by fatigue and the dreadful suspense I endured +for several hours, this sudden certainty of life rushed like a flood of +warm joy to my heart, and tears gushed from my eyes. + +How mutable are our feelings, and how strange is that clinging love we have +of life even in the excess of misery! I constructed another sail with a +part of my dress and eagerly steered my course towards the land. It had a +wild and rocky appearance, but as I approached nearer I easily perceived +the traces of cultivation. I saw vessels near the shore and found myself +suddenly transported back to the neighbourhood of civilised man. I +carefully traced the windings of the land and hailed a steeple which I at +length saw issuing from behind a small promontory. As I was in a state of +extreme debility, I resolved to sail directly towards the town, as a place +where I could most easily procure nourishment. Fortunately I had money with +me. As I turned the promontory I perceived a small neat town and a good +harbour, which I entered, my heart bounding with joy at my unexpected +escape. + +As I was occupied in fixing the boat and arranging the sails, several +people crowded towards the spot. They seemed much surprised at my +appearance, but instead of offering me any assistance, whispered +together with gestures that at any other time might have produced in me +a slight sensation of alarm. As it was, I merely remarked that they +spoke English, and I therefore addressed them in that language. “My +good friends,” said I, “will you be so kind as to tell me the name of +this town and inform me where I am?” + +“You will know that soon enough,” replied a man with a hoarse voice. +“Maybe you are come to a place that will not prove much to your taste, +but you will not be consulted as to your quarters, I promise you.” + +I was exceedingly surprised on receiving so rude an answer from a +stranger, and I was also disconcerted on perceiving the frowning and +angry countenances of his companions. “Why do you answer me so +roughly?” I replied. “Surely it is not the custom of Englishmen to +receive strangers so inhospitably.” + +“I do not know,” said the man, “what the custom of the +English may be, but it is the custom of the Irish to hate villains.” + +While this strange dialogue continued, I perceived the crowd rapidly +increase. Their faces expressed a mixture of curiosity and anger, which +annoyed and in some degree alarmed me. I inquired the way to the inn, but +no one replied. I then moved forward, and a murmuring sound arose from the +crowd as they followed and surrounded me, when an ill-looking man +approaching tapped me on the shoulder and said, “Come, sir, you must +follow me to Mr. Kirwin’s to give an account of yourself.” + +“Who is Mr. Kirwin? Why am I to give an account of myself? Is not +this a free country?” + +“Ay, sir, free enough for honest folks. Mr. Kirwin is a magistrate, +and you are to give an account of the death of a gentleman who was +found murdered here last night.” + +This answer startled me, but I presently recovered myself. I was innocent; +that could easily be proved; accordingly I followed my conductor in silence +and was led to one of the best houses in the town. I was ready to sink from +fatigue and hunger, but being surrounded by a crowd, I thought it politic +to rouse all my strength, that no physical debility might be construed into +apprehension or conscious guilt. Little did I then expect the calamity that +was in a few moments to overwhelm me and extinguish in horror and despair +all fear of ignominy or death. + +I must pause here, for it requires all my fortitude to recall the memory of +the frightful events which I am about to relate, in proper detail, to my +recollection. + + + + + +Chapter 21 + +I was soon introduced into the presence of the magistrate, an old +benevolent man with calm and mild manners. He looked upon me, however, +with some degree of severity, and then, turning towards my conductors, +he asked who appeared as witnesses on this occasion. + +About half a dozen men came forward; and, one being selected by the +magistrate, he deposed that he had been out fishing the night before with +his son and brother-in-law, Daniel Nugent, when, about ten o’clock, +they observed a strong northerly blast rising, and they accordingly put in +for port. It was a very dark night, as the moon had not yet risen; they did +not land at the harbour, but, as they had been accustomed, at a creek about +two miles below. He walked on first, carrying a part of the fishing tackle, +and his companions followed him at some distance. As he was proceeding +along the sands, he struck his foot against something and fell at his +length on the ground. His companions came up to assist him, and by the +light of their lantern they found that he had fallen on the body of a man, +who was to all appearance dead. Their first supposition was that it was the +corpse of some person who had been drowned and was thrown on shore by the +waves, but on examination they found that the clothes were not wet and even +that the body was not then cold. They instantly carried it to the cottage +of an old woman near the spot and endeavoured, but in vain, to restore it +to life. It appeared to be a handsome young man, about five and twenty +years of age. He had apparently been strangled, for there was no sign of +any violence except the black mark of fingers on his neck. + +The first part of this deposition did not in the least interest me, but +when the mark of the fingers was mentioned I remembered the murder of +my brother and felt myself extremely agitated; my limbs trembled, and a +mist came over my eyes, which obliged me to lean on a chair for +support. The magistrate observed me with a keen eye and of course drew +an unfavourable augury from my manner. + +The son confirmed his father’s account, but when Daniel Nugent was +called he swore positively that just before the fall of his companion, he +saw a boat, with a single man in it, at a short distance from the shore; +and as far as he could judge by the light of a few stars, it was the same +boat in which I had just landed. + +A woman deposed that she lived near the beach and was standing at the door +of her cottage, waiting for the return of the fishermen, about an hour +before she heard of the discovery of the body, when she saw a boat with +only one man in it push off from that part of the shore where the corpse +was afterwards found. + +Another woman confirmed the account of the fishermen having brought the +body into her house; it was not cold. They put it into a bed and +rubbed it, and Daniel went to the town for an apothecary, but life was +quite gone. + +Several other men were examined concerning my landing, and they agreed +that, with the strong north wind that had arisen during the night, it +was very probable that I had beaten about for many hours and had been +obliged to return nearly to the same spot from which I had departed. +Besides, they observed that it appeared that I had brought the body +from another place, and it was likely that as I did not appear to know +the shore, I might have put into the harbour ignorant of the distance +of the town of —— from the place where I had deposited the corpse. + +Mr. Kirwin, on hearing this evidence, desired that I should be taken into +the room where the body lay for interment, that it might be observed what +effect the sight of it would produce upon me. This idea was probably +suggested by the extreme agitation I had exhibited when the mode of the +murder had been described. I was accordingly conducted, by the magistrate +and several other persons, to the inn. I could not help being struck by the +strange coincidences that had taken place during this eventful night; but, +knowing that I had been conversing with several persons in the island I had +inhabited about the time that the body had been found, I was perfectly +tranquil as to the consequences of the affair. + +I entered the room where the corpse lay and was led up to the coffin. How +can I describe my sensations on beholding it? I feel yet parched with +horror, nor can I reflect on that terrible moment without shuddering and +agony. The examination, the presence of the magistrate and witnesses, +passed like a dream from my memory when I saw the lifeless form of Henry +Clerval stretched before me. I gasped for breath, and throwing myself on +the body, I exclaimed, “Have my murderous machinations deprived you +also, my dearest Henry, of life? Two I have already destroyed; other +victims await their destiny; but you, Clerval, my friend, my +benefactor—” + +The human frame could no longer support the agonies that I endured, and +I was carried out of the room in strong convulsions. + +A fever succeeded to this. I lay for two months on the point of death; my +ravings, as I afterwards heard, were frightful; I called myself the +murderer of William, of Justine, and of Clerval. Sometimes I entreated my +attendants to assist me in the destruction of the fiend by whom I was +tormented; and at others I felt the fingers of the monster already grasping +my neck, and screamed aloud with agony and terror. Fortunately, as I spoke +my native language, Mr. Kirwin alone understood me; but my gestures and +bitter cries were sufficient to affright the other witnesses. + +Why did I not die? More miserable than man ever was before, why did I not +sink into forgetfulness and rest? Death snatches away many blooming +children, the only hopes of their doting parents; how many brides and +youthful lovers have been one day in the bloom of health and hope, and the +next a prey for worms and the decay of the tomb! Of what materials was I +made that I could thus resist so many shocks, which, like the turning of +the wheel, continually renewed the torture? + +But I was doomed to live and in two months found myself as awaking from +a dream, in a prison, stretched on a wretched bed, surrounded by +gaolers, turnkeys, bolts, and all the miserable apparatus of a dungeon. +It was morning, I remember, when I thus awoke to understanding; I had +forgotten the particulars of what had happened and only felt as if some +great misfortune had suddenly overwhelmed me; but when I looked around +and saw the barred windows and the squalidness of the room in which I +was, all flashed across my memory and I groaned bitterly. + +This sound disturbed an old woman who was sleeping in a chair beside +me. She was a hired nurse, the wife of one of the turnkeys, and her +countenance expressed all those bad qualities which often characterise +that class. The lines of her face were hard and rude, like that of +persons accustomed to see without sympathising in sights of misery. Her +tone expressed her entire indifference; she addressed me in English, +and the voice struck me as one that I had heard during my sufferings. + +“Are you better now, sir?” said she. + +I replied in the same language, with a feeble voice, “I believe I am; +but if it be all true, if indeed I did not dream, I am sorry that I am +still alive to feel this misery and horror.” + +“For that matter,” replied the old woman, “if you mean about the +gentleman you murdered, I believe that it were better for you if you +were dead, for I fancy it will go hard with you! However, that’s none +of my business; I am sent to nurse you and get you well; I do my duty +with a safe conscience; it were well if everybody did the same.” + +I turned with loathing from the woman who could utter so unfeeling a +speech to a person just saved, on the very edge of death; but I felt +languid and unable to reflect on all that had passed. The whole series +of my life appeared to me as a dream; I sometimes doubted if indeed it +were all true, for it never presented itself to my mind with the force +of reality. + +As the images that floated before me became more distinct, I grew +feverish; a darkness pressed around me; no one was near me who soothed +me with the gentle voice of love; no dear hand supported me. The +physician came and prescribed medicines, and the old woman prepared +them for me; but utter carelessness was visible in the first, and the +expression of brutality was strongly marked in the visage of the +second. Who could be interested in the fate of a murderer but the +hangman who would gain his fee? + +These were my first reflections, but I soon learned that Mr. Kirwin had +shown me extreme kindness. He had caused the best room in the prison +to be prepared for me (wretched indeed was the best); and it was he who +had provided a physician and a nurse. It is true, he seldom came to +see me, for although he ardently desired to relieve the sufferings of +every human creature, he did not wish to be present at the agonies and +miserable ravings of a murderer. He came, therefore, sometimes to see +that I was not neglected, but his visits were short and with long +intervals. + +One day, while I was gradually recovering, I was seated in a chair, my eyes +half open and my cheeks livid like those in death. I was overcome by gloom +and misery and often reflected I had better seek death than desire to +remain in a world which to me was replete with wretchedness. At one time I +considered whether I should not declare myself guilty and suffer the +penalty of the law, less innocent than poor Justine had been. Such were my +thoughts when the door of my apartment was opened and Mr. Kirwin entered. +His countenance expressed sympathy and compassion; he drew a chair close to +mine and addressed me in French, + +“I fear that this place is very shocking to you; can I do anything to +make you more comfortable?” + +“I thank you, but all that you mention is nothing to me; on the whole +earth there is no comfort which I am capable of receiving.” + +“I know that the sympathy of a stranger can be but of little relief to +one borne down as you are by so strange a misfortune. But you will, I +hope, soon quit this melancholy abode, for doubtless evidence can +easily be brought to free you from the criminal charge.” + +“That is my least concern; I am, by a course of strange events, become +the most miserable of mortals. Persecuted and tortured as I am and +have been, can death be any evil to me?” + +“Nothing indeed could be more unfortunate and agonising than the +strange chances that have lately occurred. You were thrown, by some +surprising accident, on this shore, renowned for its hospitality, +seized immediately, and charged with murder. The first sight that was +presented to your eyes was the body of your friend, murdered in so +unaccountable a manner and placed, as it were, by some fiend across +your path.” + +As Mr. Kirwin said this, notwithstanding the agitation I endured on +this retrospect of my sufferings, I also felt considerable surprise at +the knowledge he seemed to possess concerning me. I suppose some +astonishment was exhibited in my countenance, for Mr. Kirwin hastened +to say, + +“Immediately upon your being taken ill, all the papers that were on +your person were brought me, and I examined them that I might discover some +trace by which I could send to your relations an account of your misfortune +and illness. I found several letters, and, among others, one which I +discovered from its commencement to be from your father. I instantly wrote +to Geneva; nearly two months have elapsed since the departure of my letter. +But you are ill; even now you tremble; you are unfit for agitation of any +kind.” + +“This suspense is a thousand times worse than the most horrible event; +tell me what new scene of death has been acted, and whose murder I am +now to lament?” + +“Your family is perfectly well,” said Mr. Kirwin with +gentleness; “and someone, a friend, is come to visit you.” + +I know not by what chain of thought the idea presented itself, but it +instantly darted into my mind that the murderer had come to mock at my +misery and taunt me with the death of Clerval, as a new incitement for +me to comply with his hellish desires. I put my hand before my eyes, +and cried out in agony, + +“Oh! Take him away! I cannot see him; for God’s sake, do not +let him enter!” + +Mr. Kirwin regarded me with a troubled countenance. He could not help +regarding my exclamation as a presumption of my guilt and said in +rather a severe tone, + +“I should have thought, young man, that the presence of your father +would have been welcome instead of inspiring such violent repugnance.” + +“My father!” cried I, while every feature and every muscle was relaxed +from anguish to pleasure. “Is my father indeed come? How kind, how +very kind! But where is he, why does he not hasten to me?” + +My change of manner surprised and pleased the magistrate; perhaps he +thought that my former exclamation was a momentary return of delirium, +and now he instantly resumed his former benevolence. He rose and +quitted the room with my nurse, and in a moment my father entered it. + +Nothing, at this moment, could have given me greater pleasure than the +arrival of my father. I stretched out my hand to him and cried, + +“Are you then safe—and Elizabeth—and Ernest?” + +My father calmed me with assurances of their welfare and endeavoured, by +dwelling on these subjects so interesting to my heart, to raise my +desponding spirits; but he soon felt that a prison cannot be the abode of +cheerfulness. “What a place is this that you inhabit, my son!” +said he, looking mournfully at the barred windows and wretched appearance +of the room. “You travelled to seek happiness, but a fatality seems +to pursue you. And poor Clerval—” + +The name of my unfortunate and murdered friend was an agitation too +great to be endured in my weak state; I shed tears. + +“Alas! Yes, my father,” replied I; “some destiny of the +most horrible kind hangs over me, and I must live to fulfil it, or surely I +should have died on the coffin of Henry.” + +We were not allowed to converse for any length of time, for the +precarious state of my health rendered every precaution necessary that +could ensure tranquillity. Mr. Kirwin came in and insisted that my +strength should not be exhausted by too much exertion. But the +appearance of my father was to me like that of my good angel, and I +gradually recovered my health. + +As my sickness quitted me, I was absorbed by a gloomy and black +melancholy that nothing could dissipate. The image of Clerval was +for ever before me, ghastly and murdered. More than once the agitation +into which these reflections threw me made my friends dread a dangerous +relapse. Alas! Why did they preserve so miserable and detested a +life? It was surely that I might fulfil my destiny, which is now +drawing to a close. Soon, oh, very soon, will death extinguish these +throbbings and relieve me from the mighty weight of anguish that bears +me to the dust; and, in executing the award of justice, I shall also +sink to rest. Then the appearance of death was distant, although the +wish was ever present to my thoughts; and I often sat for hours +motionless and speechless, wishing for some mighty revolution that +might bury me and my destroyer in its ruins. + +The season of the assizes approached. I had already been three months +in prison, and although I was still weak and in continual danger of a +relapse, I was obliged to travel nearly a hundred miles to the country +town where the court was held. Mr. Kirwin charged himself with every +care of collecting witnesses and arranging my defence. I was spared +the disgrace of appearing publicly as a criminal, as the case was not +brought before the court that decides on life and death. The grand +jury rejected the bill, on its being proved that I was on the Orkney +Islands at the hour the body of my friend was found; and a fortnight +after my removal I was liberated from prison. + +My father was enraptured on finding me freed from the vexations of a +criminal charge, that I was again allowed to breathe the fresh +atmosphere and permitted to return to my native country. I did not +participate in these feelings, for to me the walls of a dungeon or a +palace were alike hateful. The cup of life was poisoned for ever, and +although the sun shone upon me, as upon the happy and gay of heart, I +saw around me nothing but a dense and frightful darkness, penetrated by +no light but the glimmer of two eyes that glared upon me. Sometimes +they were the expressive eyes of Henry, languishing in death, the dark +orbs nearly covered by the lids and the long black lashes that fringed +them; sometimes it was the watery, clouded eyes of the monster, as I +first saw them in my chamber at Ingolstadt. + +My father tried to awaken in me the feelings of affection. He talked +of Geneva, which I should soon visit, of Elizabeth and Ernest; but +these words only drew deep groans from me. Sometimes, indeed, I felt a +wish for happiness and thought with melancholy delight of my beloved +cousin or longed, with a devouring _maladie du pays_, to see once more +the blue lake and rapid Rhone, that had been so dear to me in early +childhood; but my general state of feeling was a torpor in which a +prison was as welcome a residence as the divinest scene in nature; and +these fits were seldom interrupted but by paroxysms of anguish and +despair. At these moments I often endeavoured to put an end to the +existence I loathed, and it required unceasing attendance and vigilance +to restrain me from committing some dreadful act of violence. + +Yet one duty remained to me, the recollection of which finally +triumphed over my selfish despair. It was necessary that I should +return without delay to Geneva, there to watch over the lives of those +I so fondly loved and to lie in wait for the murderer, that if any +chance led me to the place of his concealment, or if he dared again to +blast me by his presence, I might, with unfailing aim, put an end to +the existence of the monstrous image which I had endued with the +mockery of a soul still more monstrous. My father still desired to +delay our departure, fearful that I could not sustain the fatigues of a +journey, for I was a shattered wreck—the shadow of a human being. My +strength was gone. I was a mere skeleton, and fever night and day +preyed upon my wasted frame. + +Still, as I urged our leaving Ireland with such inquietude and impatience, +my father thought it best to yield. We took our passage on board a vessel +bound for Havre-de-Grace and sailed with a fair wind from the Irish shores. +It was midnight. I lay on the deck looking at the stars and listening to +the dashing of the waves. I hailed the darkness that shut Ireland from my +sight, and my pulse beat with a feverish joy when I reflected that I should +soon see Geneva. The past appeared to me in the light of a frightful dream; +yet the vessel in which I was, the wind that blew me from the detested +shore of Ireland, and the sea which surrounded me, told me too forcibly +that I was deceived by no vision and that Clerval, my friend and dearest +companion, had fallen a victim to me and the monster of my creation. I +repassed, in my memory, my whole life; my quiet happiness while residing +with my family in Geneva, the death of my mother, and my departure for +Ingolstadt. I remembered, shuddering, the mad enthusiasm that hurried me on +to the creation of my hideous enemy, and I called to mind the night in +which he first lived. I was unable to pursue the train of thought; a +thousand feelings pressed upon me, and I wept bitterly. + +Ever since my recovery from the fever, I had been in the custom of taking +every night a small quantity of laudanum, for it was by means of this drug +only that I was enabled to gain the rest necessary for the preservation of +life. Oppressed by the recollection of my various misfortunes, I now +swallowed double my usual quantity and soon slept profoundly. But sleep did +not afford me respite from thought and misery; my dreams presented a +thousand objects that scared me. Towards morning I was possessed by a kind +of nightmare; I felt the fiend’s grasp in my neck and could not free +myself from it; groans and cries rang in my ears. My father, who was +watching over me, perceiving my restlessness, awoke me; the dashing waves +were around, the cloudy sky above, the fiend was not here: a sense of +security, a feeling that a truce was established between the present hour +and the irresistible, disastrous future imparted to me a kind of calm +forgetfulness, of which the human mind is by its structure peculiarly +susceptible. + + + + + +Chapter 22 + +The voyage came to an end. We landed, and proceeded to Paris. I soon +found that I had overtaxed my strength and that I must repose before I +could continue my journey. My father’s care and attentions were +indefatigable, but he did not know the origin of my sufferings and +sought erroneous methods to remedy the incurable ill. He wished me to +seek amusement in society. I abhorred the face of man. Oh, not +abhorred! They were my brethren, my fellow beings, and I felt +attracted even to the most repulsive among them, as to creatures of an +angelic nature and celestial mechanism. But I felt that I had no right +to share their intercourse. I had unchained an enemy among them whose +joy it was to shed their blood and to revel in their groans. How they +would, each and all, abhor me and hunt me from the world, did they know +my unhallowed acts and the crimes which had their source in me! + +My father yielded at length to my desire to avoid society and strove by +various arguments to banish my despair. Sometimes he thought that I +felt deeply the degradation of being obliged to answer a charge of +murder, and he endeavoured to prove to me the futility of pride. + +“Alas! My father,” said I, “how little do you know me. +Human beings, their feelings and passions, would indeed be degraded if such +a wretch as I felt pride. Justine, poor unhappy Justine, was as innocent +as I, and she suffered the same charge; she died for it; and I am the cause +of this—I murdered her. William, Justine, and Henry—they all +died by my hands.” + +My father had often, during my imprisonment, heard me make the same +assertion; when I thus accused myself, he sometimes seemed to desire an +explanation, and at others he appeared to consider it as the offspring of +delirium, and that, during my illness, some idea of this kind had presented +itself to my imagination, the remembrance of which I preserved in my +convalescence. I avoided explanation and maintained a continual silence +concerning the wretch I had created. I had a persuasion that I should be +supposed mad, and this in itself would for ever have chained my tongue. But, +besides, I could not bring myself to disclose a secret which would fill my +hearer with consternation and make fear and unnatural horror the inmates of +his breast. I checked, therefore, my impatient thirst for sympathy and was +silent when I would have given the world to have confided the fatal secret. +Yet, still, words like those I have recorded would burst uncontrollably +from me. I could offer no explanation of them, but their truth in part +relieved the burden of my mysterious woe. + +Upon this occasion my father said, with an expression of unbounded wonder, +“My dearest Victor, what infatuation is this? My dear son, I entreat +you never to make such an assertion again.” + +“I am not mad,” I cried energetically; “the sun and the heavens, who +have viewed my operations, can bear witness of my truth. I am the +assassin of those most innocent victims; they died by my machinations. +A thousand times would I have shed my own blood, drop by drop, to have +saved their lives; but I could not, my father, indeed I could not +sacrifice the whole human race.” + +The conclusion of this speech convinced my father that my ideas were +deranged, and he instantly changed the subject of our conversation and +endeavoured to alter the course of my thoughts. He wished as much as +possible to obliterate the memory of the scenes that had taken place in +Ireland and never alluded to them or suffered me to speak of my +misfortunes. + +As time passed away I became more calm; misery had her dwelling in my +heart, but I no longer talked in the same incoherent manner of my own +crimes; sufficient for me was the consciousness of them. By the utmost +self-violence I curbed the imperious voice of wretchedness, which +sometimes desired to declare itself to the whole world, and my manners +were calmer and more composed than they had ever been since my journey +to the sea of ice. + +A few days before we left Paris on our way to Switzerland, I received the +following letter from Elizabeth: + +“My dear Friend, + +“It gave me the greatest pleasure to receive a letter from my uncle +dated at Paris; you are no longer at a formidable distance, and I may +hope to see you in less than a fortnight. My poor cousin, how much you +must have suffered! I expect to see you looking even more ill than +when you quitted Geneva. This winter has been passed most miserably, +tortured as I have been by anxious suspense; yet I hope to see peace in +your countenance and to find that your heart is not totally void of +comfort and tranquillity. + +“Yet I fear that the same feelings now exist that made you so miserable +a year ago, even perhaps augmented by time. I would not disturb you at +this period, when so many misfortunes weigh upon you, but a +conversation that I had with my uncle previous to his departure renders +some explanation necessary before we meet. + +Explanation! You may possibly say, What can Elizabeth have to explain? If +you really say this, my questions are answered and all my doubts satisfied. +But you are distant from me, and it is possible that you may dread and yet +be pleased with this explanation; and in a probability of this being the +case, I dare not any longer postpone writing what, during your absence, I +have often wished to express to you but have never had the courage to begin. + +“You well know, Victor, that our union had been the favourite plan of +your parents ever since our infancy. We were told this when young, and +taught to look forward to it as an event that would certainly take +place. We were affectionate playfellows during childhood, and, I +believe, dear and valued friends to one another as we grew older. But +as brother and sister often entertain a lively affection towards each +other without desiring a more intimate union, may not such also be our +case? Tell me, dearest Victor. Answer me, I conjure you by our mutual +happiness, with simple truth—Do you not love another? + +“You have travelled; you have spent several years of your life at +Ingolstadt; and I confess to you, my friend, that when I saw you last +autumn so unhappy, flying to solitude from the society of every +creature, I could not help supposing that you might regret our +connection and believe yourself bound in honour to fulfil the wishes of +your parents, although they opposed themselves to your inclinations. +But this is false reasoning. I confess to you, my friend, that I love +you and that in my airy dreams of futurity you have been my constant +friend and companion. But it is your happiness I desire as well as my +own when I declare to you that our marriage would render me eternally +miserable unless it were the dictate of your own free choice. Even now +I weep to think that, borne down as you are by the cruellest +misfortunes, you may stifle, by the word _honour_, all hope of that +love and happiness which would alone restore you to yourself. I, who +have so disinterested an affection for you, may increase your miseries +tenfold by being an obstacle to your wishes. Ah! Victor, be assured +that your cousin and playmate has too sincere a love for you not to be +made miserable by this supposition. Be happy, my friend; and if you +obey me in this one request, remain satisfied that nothing on earth +will have the power to interrupt my tranquillity. + +“Do not let this letter disturb you; do not answer tomorrow, or the +next day, or even until you come, if it will give you pain. My uncle +will send me news of your health, and if I see but one smile on your +lips when we meet, occasioned by this or any other exertion of mine, I +shall need no other happiness. + +“Elizabeth Lavenza. + + + +“Geneva, May 18th, 17—” + + + +This letter revived in my memory what I had before forgotten, the threat of +the fiend—“_I will be with you on your +wedding-night!_” Such was my sentence, and on that night would the +dæmon employ every art to destroy me and tear me from the glimpse of +happiness which promised partly to console my sufferings. On that night he +had determined to consummate his crimes by my death. Well, be it so; a +deadly struggle would then assuredly take place, in which if he were +victorious I should be at peace and his power over me be at an end. If he +were vanquished, I should be a free man. Alas! What freedom? Such as the +peasant enjoys when his family have been massacred before his eyes, his +cottage burnt, his lands laid waste, and he is turned adrift, homeless, +penniless, and alone, but free. Such would be my liberty except that in my +Elizabeth I possessed a treasure, alas, balanced by those horrors of +remorse and guilt which would pursue me until death. + +Sweet and beloved Elizabeth! I read and reread her letter, and some +softened feelings stole into my heart and dared to whisper paradisiacal +dreams of love and joy; but the apple was already eaten, and the +angel’s arm bared to drive me from all hope. Yet I would die to make +her happy. If the monster executed his threat, death was inevitable; yet, +again, I considered whether my marriage would hasten my fate. My +destruction might indeed arrive a few months sooner, but if my torturer +should suspect that I postponed it, influenced by his menaces, he would +surely find other and perhaps more dreadful means of revenge. He had vowed +_to be with me on my wedding-night_, yet he did not consider that +threat as binding him to peace in the meantime, for as if to show me that +he was not yet satiated with blood, he had murdered Clerval immediately +after the enunciation of his threats. I resolved, therefore, that if my +immediate union with my cousin would conduce either to hers or my +father’s happiness, my adversary’s designs against my life +should not retard it a single hour. + +In this state of mind I wrote to Elizabeth. My letter was calm and +affectionate. “I fear, my beloved girl,” I said, “little happiness +remains for us on earth; yet all that I may one day enjoy is centred in +you. Chase away your idle fears; to you alone do I consecrate my life +and my endeavours for contentment. I have one secret, Elizabeth, a +dreadful one; when revealed to you, it will chill your frame with +horror, and then, far from being surprised at my misery, you will only +wonder that I survive what I have endured. I will confide this tale of +misery and terror to you the day after our marriage shall take place, +for, my sweet cousin, there must be perfect confidence between us. But +until then, I conjure you, do not mention or allude to it. This I most +earnestly entreat, and I know you will comply.” + +In about a week after the arrival of Elizabeth’s letter we returned +to Geneva. The sweet girl welcomed me with warm affection, yet tears were +in her eyes as she beheld my emaciated frame and feverish cheeks. I saw a +change in her also. She was thinner and had lost much of that heavenly +vivacity that had before charmed me; but her gentleness and soft looks of +compassion made her a more fit companion for one blasted and miserable as I +was. + +The tranquillity which I now enjoyed did not endure. Memory brought madness +with it, and when I thought of what had passed, a real insanity possessed +me; sometimes I was furious and burnt with rage, sometimes low and +despondent. I neither spoke nor looked at anyone, but sat motionless, +bewildered by the multitude of miseries that overcame me. + +Elizabeth alone had the power to draw me from these fits; her gentle voice +would soothe me when transported by passion and inspire me with human +feelings when sunk in torpor. She wept with me and for me. When reason +returned, she would remonstrate and endeavour to inspire me with +resignation. Ah! It is well for the unfortunate to be resigned, but for the +guilty there is no peace. The agonies of remorse poison the luxury there is +otherwise sometimes found in indulging the excess of grief. + +Soon after my arrival my father spoke of my immediate marriage with +Elizabeth. I remained silent. + +“Have you, then, some other attachment?” + +“None on earth. I love Elizabeth and look forward to our union with +delight. Let the day therefore be fixed; and on it I will consecrate +myself, in life or death, to the happiness of my cousin.” + +“My dear Victor, do not speak thus. Heavy misfortunes have befallen +us, but let us only cling closer to what remains and transfer our love +for those whom we have lost to those who yet live. Our circle will be +small but bound close by the ties of affection and mutual misfortune. +And when time shall have softened your despair, new and dear objects of +care will be born to replace those of whom we have been so cruelly +deprived.” + +Such were the lessons of my father. But to me the remembrance of the +threat returned; nor can you wonder that, omnipotent as the fiend had +yet been in his deeds of blood, I should almost regard him as +invincible, and that when he had pronounced the words “_I shall be with +you on your wedding-night_,” I should regard the threatened fate as +unavoidable. But death was no evil to me if the loss of Elizabeth were +balanced with it, and I therefore, with a contented and even cheerful +countenance, agreed with my father that if my cousin would consent, the +ceremony should take place in ten days, and thus put, as I imagined, +the seal to my fate. + +Great God! If for one instant I had thought what might be the hellish +intention of my fiendish adversary, I would rather have banished myself +for ever from my native country and wandered a friendless outcast over +the earth than have consented to this miserable marriage. But, as if +possessed of magic powers, the monster had blinded me to his real +intentions; and when I thought that I had prepared only my own death, I +hastened that of a far dearer victim. + +As the period fixed for our marriage drew nearer, whether from cowardice or +a prophetic feeling, I felt my heart sink within me. But I concealed my +feelings by an appearance of hilarity that brought smiles and joy to the +countenance of my father, but hardly deceived the ever-watchful and nicer +eye of Elizabeth. She looked forward to our union with placid contentment, +not unmingled with a little fear, which past misfortunes had impressed, +that what now appeared certain and tangible happiness might soon dissipate +into an airy dream and leave no trace but deep and everlasting regret. + +Preparations were made for the event, congratulatory visits were received, +and all wore a smiling appearance. I shut up, as well as I could, in my own +heart the anxiety that preyed there and entered with seeming earnestness +into the plans of my father, although they might only serve as the +decorations of my tragedy. Through my father’s exertions a part of +the inheritance of Elizabeth had been restored to her by the Austrian +government. A small possession on the shores of Como belonged to her. It +was agreed that, immediately after our union, we should proceed to Villa +Lavenza and spend our first days of happiness beside the beautiful lake +near which it stood. + +In the meantime I took every precaution to defend my person in case the +fiend should openly attack me. I carried pistols and a dagger +constantly about me and was ever on the watch to prevent artifice, and +by these means gained a greater degree of tranquillity. Indeed, as the +period approached, the threat appeared more as a delusion, not to be +regarded as worthy to disturb my peace, while the happiness I hoped for +in my marriage wore a greater appearance of certainty as the day fixed +for its solemnisation drew nearer and I heard it continually spoken of +as an occurrence which no accident could possibly prevent. + +Elizabeth seemed happy; my tranquil demeanour contributed greatly to +calm her mind. But on the day that was to fulfil my wishes and my +destiny, she was melancholy, and a presentiment of evil pervaded her; +and perhaps also she thought of the dreadful secret which I had +promised to reveal to her on the following day. My father was in the +meantime overjoyed, and, in the bustle of preparation, only recognised in +the melancholy of his niece the diffidence of a bride. + +After the ceremony was performed a large party assembled at my +father’s, but it was agreed that Elizabeth and I should commence our +journey by water, sleeping that night at Evian and continuing our +voyage on the following day. The day was fair, the wind favourable; +all smiled on our nuptial embarkation. + +Those were the last moments of my life during which I enjoyed the +feeling of happiness. We passed rapidly along; the sun was hot, but we +were sheltered from its rays by a kind of canopy while we enjoyed the +beauty of the scene, sometimes on one side of the lake, where we saw +Mont Salêve, the pleasant banks of Montalègre, and at a distance, +surmounting all, the beautiful Mont Blanc, and the assemblage of snowy +mountains that in vain endeavour to emulate her; sometimes coasting the +opposite banks, we saw the mighty Jura opposing its dark side to the +ambition that would quit its native country, and an almost +insurmountable barrier to the invader who should wish to enslave it. + +I took the hand of Elizabeth. “You are sorrowful, my love. Ah! If +you knew what I have suffered and what I may yet endure, you would +endeavour to let me taste the quiet and freedom from despair that this +one day at least permits me to enjoy.” + +“Be happy, my dear Victor,” replied Elizabeth; “there is, I hope, +nothing to distress you; and be assured that if a lively joy is not +painted in my face, my heart is contented. Something whispers to me +not to depend too much on the prospect that is opened before us, but I +will not listen to such a sinister voice. Observe how fast we move +along and how the clouds, which sometimes obscure and sometimes rise +above the dome of Mont Blanc, render this scene of beauty still more +interesting. Look also at the innumerable fish that are swimming in +the clear waters, where we can distinguish every pebble that lies at +the bottom. What a divine day! How happy and serene all nature +appears!” + +Thus Elizabeth endeavoured to divert her thoughts and mine from all +reflection upon melancholy subjects. But her temper was fluctuating; +joy for a few instants shone in her eyes, but it continually gave place +to distraction and reverie. + +The sun sank lower in the heavens; we passed the river Drance and +observed its path through the chasms of the higher and the glens of the +lower hills. The Alps here come closer to the lake, and we approached +the amphitheatre of mountains which forms its eastern boundary. The +spire of Evian shone under the woods that surrounded it and the range +of mountain above mountain by which it was overhung. + +The wind, which had hitherto carried us along with amazing rapidity, +sank at sunset to a light breeze; the soft air just ruffled the water +and caused a pleasant motion among the trees as we approached the +shore, from which it wafted the most delightful scent of flowers and +hay. The sun sank beneath the horizon as we landed, and as I touched +the shore I felt those cares and fears revive which soon were to clasp +me and cling to me for ever. + + + + + +Chapter 23 + +It was eight o’clock when we landed; we walked for a short time on the +shore, enjoying the transitory light, and then retired to the inn and +contemplated the lovely scene of waters, woods, and mountains, obscured +in darkness, yet still displaying their black outlines. + +The wind, which had fallen in the south, now rose with great violence +in the west. The moon had reached her summit in the heavens and was +beginning to descend; the clouds swept across it swifter than the +flight of the vulture and dimmed her rays, while the lake reflected the +scene of the busy heavens, rendered still busier by the restless waves +that were beginning to rise. Suddenly a heavy storm of rain descended. + +I had been calm during the day, but so soon as night obscured the +shapes of objects, a thousand fears arose in my mind. I was anxious +and watchful, while my right hand grasped a pistol which was hidden in +my bosom; every sound terrified me, but I resolved that I would sell my +life dearly and not shrink from the conflict until my own life or that +of my adversary was extinguished. + +Elizabeth observed my agitation for some time in timid and fearful silence, +but there was something in my glance which communicated terror to her, and +trembling, she asked, “What is it that agitates you, my dear Victor? +What is it you fear?” + +“Oh! Peace, peace, my love,” replied I; “this night, and +all will be safe; but this night is dreadful, very dreadful.” + +I passed an hour in this state of mind, when suddenly I reflected how +fearful the combat which I momentarily expected would be to my wife, +and I earnestly entreated her to retire, resolving not to join her +until I had obtained some knowledge as to the situation of my enemy. + +She left me, and I continued some time walking up and down the passages +of the house and inspecting every corner that might afford a retreat to +my adversary. But I discovered no trace of him and was beginning to +conjecture that some fortunate chance had intervened to prevent the +execution of his menaces when suddenly I heard a shrill and dreadful +scream. It came from the room into which Elizabeth had retired. As I +heard it, the whole truth rushed into my mind, my arms dropped, the +motion of every muscle and fibre was suspended; I could feel the blood +trickling in my veins and tingling in the extremities of my limbs. This +state lasted but for an instant; the scream was repeated, and I rushed +into the room. + +Great God! Why did I not then expire! Why am I here to relate the +destruction of the best hope and the purest creature on earth? She was +there, lifeless and inanimate, thrown across the bed, her head hanging down +and her pale and distorted features half covered by her hair. Everywhere I +turn I see the same figure—her bloodless arms and relaxed form flung +by the murderer on its bridal bier. Could I behold this and live? Alas! +Life is obstinate and clings closest where it is most hated. For a moment +only did I lose recollection; I fell senseless on the ground. + +When I recovered I found myself surrounded by the people of the inn; their +countenances expressed a breathless terror, but the horror of others +appeared only as a mockery, a shadow of the feelings that oppressed me. I +escaped from them to the room where lay the body of Elizabeth, my love, my +wife, so lately living, so dear, so worthy. She had been moved from the +posture in which I had first beheld her, and now, as she lay, her head upon +her arm and a handkerchief thrown across her face and neck, I might have +supposed her asleep. I rushed towards her and embraced her with ardour, but +the deadly languor and coldness of the limbs told me that what I now held +in my arms had ceased to be the Elizabeth whom I had loved and cherished. +The murderous mark of the fiend’s grasp was on her neck, and the +breath had ceased to issue from her lips. + +While I still hung over her in the agony of despair, I happened to look up. +The windows of the room had before been darkened, and I felt a kind of +panic on seeing the pale yellow light of the moon illuminate the chamber. +The shutters had been thrown back, and with a sensation of horror not to be +described, I saw at the open window a figure the most hideous and abhorred. +A grin was on the face of the monster; he seemed to jeer, as with his +fiendish finger he pointed towards the corpse of my wife. I rushed towards +the window, and drawing a pistol from my bosom, fired; but he eluded me, +leaped from his station, and running with the swiftness of lightning, +plunged into the lake. + +The report of the pistol brought a crowd into the room. I pointed to +the spot where he had disappeared, and we followed the track with +boats; nets were cast, but in vain. After passing several hours, we +returned hopeless, most of my companions believing it to have been a +form conjured up by my fancy. After having landed, they proceeded to +search the country, parties going in different directions among the +woods and vines. + +I attempted to accompany them and proceeded a short distance from the +house, but my head whirled round, my steps were like those of a drunken +man, I fell at last in a state of utter exhaustion; a film covered my +eyes, and my skin was parched with the heat of fever. In this state I +was carried back and placed on a bed, hardly conscious of what had +happened; my eyes wandered round the room as if to seek something that +I had lost. + +After an interval I arose, and as if by instinct, crawled into the room +where the corpse of my beloved lay. There were women weeping around; I +hung over it and joined my sad tears to theirs; all this time no +distinct idea presented itself to my mind, but my thoughts rambled to +various subjects, reflecting confusedly on my misfortunes and their +cause. I was bewildered, in a cloud of wonder and horror. The death +of William, the execution of Justine, the murder of Clerval, and lastly +of my wife; even at that moment I knew not that my only remaining +friends were safe from the malignity of the fiend; my father even now +might be writhing under his grasp, and Ernest might be dead at his +feet. This idea made me shudder and recalled me to action. I started +up and resolved to return to Geneva with all possible speed. + +There were no horses to be procured, and I must return by the lake; but the +wind was unfavourable, and the rain fell in torrents. However, it was +hardly morning, and I might reasonably hope to arrive by night. I hired men +to row and took an oar myself, for I had always experienced relief from +mental torment in bodily exercise. But the overflowing misery I now felt, +and the excess of agitation that I endured rendered me incapable of any +exertion. I threw down the oar, and leaning my head upon my hands, gave way +to every gloomy idea that arose. If I looked up, I saw scenes which were +familiar to me in my happier time and which I had contemplated but the day +before in the company of her who was now but a shadow and a recollection. +Tears streamed from my eyes. The rain had ceased for a moment, and I saw +the fish play in the waters as they had done a few hours before; they had +then been observed by Elizabeth. Nothing is so painful to the human mind as +a great and sudden change. The sun might shine or the clouds might lower, +but nothing could appear to me as it had done the day before. A fiend had +snatched from me every hope of future happiness; no creature had ever been +so miserable as I was; so frightful an event is single in the history of +man. + +But why should I dwell upon the incidents that followed this last +overwhelming event? Mine has been a tale of horrors; I have reached their +_acme_, and what I must now relate can but be tedious to you. Know +that, one by one, my friends were snatched away; I was left desolate. My +own strength is exhausted, and I must tell, in a few words, what remains of +my hideous narration. + +I arrived at Geneva. My father and Ernest yet lived, but the former sunk +under the tidings that I bore. I see him now, excellent and venerable old +man! His eyes wandered in vacancy, for they had lost their charm and their +delight—his Elizabeth, his more than daughter, whom he doted on with +all that affection which a man feels, who in the decline of life, having +few affections, clings more earnestly to those that remain. Cursed, cursed +be the fiend that brought misery on his grey hairs and doomed him to waste +in wretchedness! He could not live under the horrors that were accumulated +around him; the springs of existence suddenly gave way; he was unable to +rise from his bed, and in a few days he died in my arms. + +What then became of me? I know not; I lost sensation, and chains and +darkness were the only objects that pressed upon me. Sometimes, +indeed, I dreamt that I wandered in flowery meadows and pleasant vales +with the friends of my youth, but I awoke and found myself in a +dungeon. Melancholy followed, but by degrees I gained a clear +conception of my miseries and situation and was then released from my +prison. For they had called me mad, and during many months, as I +understood, a solitary cell had been my habitation. + +Liberty, however, had been a useless gift to me, had I not, as I +awakened to reason, at the same time awakened to revenge. As the +memory of past misfortunes pressed upon me, I began to reflect on their +cause—the monster whom I had created, the miserable dæmon whom I had +sent abroad into the world for my destruction. I was possessed by a +maddening rage when I thought of him, and desired and ardently prayed +that I might have him within my grasp to wreak a great and signal +revenge on his cursed head. + +Nor did my hate long confine itself to useless wishes; I began to +reflect on the best means of securing him; and for this purpose, about +a month after my release, I repaired to a criminal judge in the town +and told him that I had an accusation to make, that I knew the +destroyer of my family, and that I required him to exert his whole +authority for the apprehension of the murderer. + +The magistrate listened to me with attention and kindness. “Be +assured, sir,” said he, “no pains or exertions on my part shall +be spared to discover the villain.” + +“I thank you,” replied I; “listen, therefore, to the +deposition that I have to make. It is indeed a tale so strange that I +should fear you would not credit it were there not something in truth +which, however wonderful, forces conviction. The story is too connected to +be mistaken for a dream, and I have no motive for falsehood.” My +manner as I thus addressed him was impressive but calm; I had formed in my +own heart a resolution to pursue my destroyer to death, and this purpose +quieted my agony and for an interval reconciled me to life. I now related +my history briefly but with firmness and precision, marking the dates with +accuracy and never deviating into invective or exclamation. + +The magistrate appeared at first perfectly incredulous, but as I continued +he became more attentive and interested; I saw him sometimes shudder with +horror; at others a lively surprise, unmingled with disbelief, was painted +on his countenance. + +When I had concluded my narration, I said, “This is the being whom I +accuse and for whose seizure and punishment I call upon you to exert your +whole power. It is your duty as a magistrate, and I believe and hope that +your feelings as a man will not revolt from the execution of those +functions on this occasion.” + +This address caused a considerable change in the physiognomy of my own +auditor. He had heard my story with that half kind of belief that is given +to a tale of spirits and supernatural events; but when he was called upon +to act officially in consequence, the whole tide of his incredulity +returned. He, however, answered mildly, “I would willingly afford you +every aid in your pursuit, but the creature of whom you speak appears to +have powers which would put all my exertions to defiance. Who can follow an +animal which can traverse the sea of ice and inhabit caves and dens where +no man would venture to intrude? Besides, some months have elapsed since +the commission of his crimes, and no one can conjecture to what place he +has wandered or what region he may now inhabit.” + +“I do not doubt that he hovers near the spot which I inhabit, and if +he has indeed taken refuge in the Alps, he may be hunted like the chamois +and destroyed as a beast of prey. But I perceive your thoughts; you do not +credit my narrative and do not intend to pursue my enemy with the +punishment which is his desert.” + +As I spoke, rage sparkled in my eyes; the magistrate was intimidated. +“You are mistaken,” said he. “I will exert myself, and if +it is in my power to seize the monster, be assured that he shall suffer +punishment proportionate to his crimes. But I fear, from what you have +yourself described to be his properties, that this will prove +impracticable; and thus, while every proper measure is pursued, you should +make up your mind to disappointment.” + +“That cannot be; but all that I can say will be of little avail. My +revenge is of no moment to you; yet, while I allow it to be a vice, I +confess that it is the devouring and only passion of my soul. My rage +is unspeakable when I reflect that the murderer, whom I have turned +loose upon society, still exists. You refuse my just demand; I have +but one resource, and I devote myself, either in my life or death, to +his destruction.” + +I trembled with excess of agitation as I said this; there was a frenzy +in my manner, and something, I doubt not, of that haughty fierceness +which the martyrs of old are said to have possessed. But to a Genevan +magistrate, whose mind was occupied by far other ideas than those of +devotion and heroism, this elevation of mind had much the appearance of +madness. He endeavoured to soothe me as a nurse does a child and +reverted to my tale as the effects of delirium. + +“Man,” I cried, “how ignorant art thou in thy pride of +wisdom! Cease; you know not what it is you say.” + +I broke from the house angry and disturbed and retired to meditate on +some other mode of action. + + + + + +Chapter 24 + +My present situation was one in which all voluntary thought was +swallowed up and lost. I was hurried away by fury; revenge alone +endowed me with strength and composure; it moulded my feelings and +allowed me to be calculating and calm at periods when otherwise +delirium or death would have been my portion. + +My first resolution was to quit Geneva for ever; my country, which, when I +was happy and beloved, was dear to me, now, in my adversity, became +hateful. I provided myself with a sum of money, together with a few jewels +which had belonged to my mother, and departed. + +And now my wanderings began which are to cease but with life. I have +traversed a vast portion of the earth and have endured all the hardships +which travellers in deserts and barbarous countries are wont to meet. How I +have lived I hardly know; many times have I stretched my failing limbs upon +the sandy plain and prayed for death. But revenge kept me alive; I dared +not die and leave my adversary in being. + +When I quitted Geneva my first labour was to gain some clue by which I +might trace the steps of my fiendish enemy. But my plan was unsettled, +and I wandered many hours round the confines of the town, uncertain +what path I should pursue. As night approached I found myself at the +entrance of the cemetery where William, Elizabeth, and my father +reposed. I entered it and approached the tomb which marked their +graves. Everything was silent except the leaves of the trees, which +were gently agitated by the wind; the night was nearly dark, and the +scene would have been solemn and affecting even to an uninterested +observer. The spirits of the departed seemed to flit around and to +cast a shadow, which was felt but not seen, around the head of the +mourner. + +The deep grief which this scene had at first excited quickly gave way to +rage and despair. They were dead, and I lived; their murderer also lived, +and to destroy him I must drag out my weary existence. I knelt on the grass +and kissed the earth and with quivering lips exclaimed, “By the +sacred earth on which I kneel, by the shades that wander near me, by the +deep and eternal grief that I feel, I swear; and by thee, O Night, and the +spirits that preside over thee, to pursue the dæmon who caused this misery, +until he or I shall perish in mortal conflict. For this purpose I will +preserve my life; to execute this dear revenge will I again behold the sun +and tread the green herbage of earth, which otherwise should vanish from my +eyes for ever. And I call on you, spirits of the dead, and on you, wandering +ministers of vengeance, to aid and conduct me in my work. Let the cursed +and hellish monster drink deep of agony; let him feel the despair that now +torments me.” + +I had begun my adjuration with solemnity and an awe which almost assured me +that the shades of my murdered friends heard and approved my devotion, but +the furies possessed me as I concluded, and rage choked my utterance. + +I was answered through the stillness of night by a loud and fiendish +laugh. It rang on my ears long and heavily; the mountains re-echoed +it, and I felt as if all hell surrounded me with mockery and laughter. +Surely in that moment I should have been possessed by frenzy and have +destroyed my miserable existence but that my vow was heard and that I +was reserved for vengeance. The laughter died away, when a well-known +and abhorred voice, apparently close to my ear, addressed me in an +audible whisper, “I am satisfied, miserable wretch! You have +determined to live, and I am satisfied.” + +I darted towards the spot from which the sound proceeded, but the devil +eluded my grasp. Suddenly the broad disk of the moon arose and shone +full upon his ghastly and distorted shape as he fled with more than +mortal speed. + +I pursued him, and for many months this has been my task. Guided by a +slight clue, I followed the windings of the Rhone, but vainly. The +blue Mediterranean appeared, and by a strange chance, I saw the fiend +enter by night and hide himself in a vessel bound for the Black Sea. I +took my passage in the same ship, but he escaped, I know not how. + +Amidst the wilds of Tartary and Russia, although he still evaded me, I +have ever followed in his track. Sometimes the peasants, scared by +this horrid apparition, informed me of his path; sometimes he himself, +who feared that if I lost all trace of him I should despair and die, +left some mark to guide me. The snows descended on my head, and I saw +the print of his huge step on the white plain. To you first entering +on life, to whom care is new and agony unknown, how can you understand +what I have felt and still feel? Cold, want, and fatigue were the +least pains which I was destined to endure; I was cursed by some devil +and carried about with me my eternal hell; yet still a spirit of good +followed and directed my steps and when I most murmured would suddenly +extricate me from seemingly insurmountable difficulties. Sometimes, +when nature, overcome by hunger, sank under the exhaustion, a repast +was prepared for me in the desert that restored and inspirited me. The +fare was, indeed, coarse, such as the peasants of the country ate, but +I will not doubt that it was set there by the spirits that I had +invoked to aid me. Often, when all was dry, the heavens cloudless, and +I was parched by thirst, a slight cloud would bedim the sky, shed the +few drops that revived me, and vanish. + +I followed, when I could, the courses of the rivers; but the dæmon +generally avoided these, as it was here that the population of the +country chiefly collected. In other places human beings were seldom +seen, and I generally subsisted on the wild animals that crossed my +path. I had money with me and gained the friendship of the villagers +by distributing it; or I brought with me some food that I had killed, +which, after taking a small part, I always presented to those who had +provided me with fire and utensils for cooking. + +My life, as it passed thus, was indeed hateful to me, and it was during +sleep alone that I could taste joy. O blessed sleep! Often, when most +miserable, I sank to repose, and my dreams lulled me even to rapture. The +spirits that guarded me had provided these moments, or rather hours, of +happiness that I might retain strength to fulfil my pilgrimage. Deprived of +this respite, I should have sunk under my hardships. During the day I was +sustained and inspirited by the hope of night, for in sleep I saw my +friends, my wife, and my beloved country; again I saw the benevolent +countenance of my father, heard the silver tones of my Elizabeth’s +voice, and beheld Clerval enjoying health and youth. Often, when wearied by +a toilsome march, I persuaded myself that I was dreaming until night should +come and that I should then enjoy reality in the arms of my dearest +friends. What agonising fondness did I feel for them! How did I cling to +their dear forms, as sometimes they haunted even my waking hours, and +persuade myself that they still lived! At such moments vengeance, that +burned within me, died in my heart, and I pursued my path towards the +destruction of the dæmon more as a task enjoined by heaven, as the +mechanical impulse of some power of which I was unconscious, than as the +ardent desire of my soul. + +What his feelings were whom I pursued I cannot know. Sometimes, indeed, he +left marks in writing on the barks of the trees or cut in stone that guided +me and instigated my fury. “My reign is not yet +over”—these words were legible in one of these +inscriptions—“you live, and my power is complete. Follow me; I +seek the everlasting ices of the north, where you will feel the misery of +cold and frost, to which I am impassive. You will find near this place, if +you follow not too tardily, a dead hare; eat and be refreshed. Come on, my +enemy; we have yet to wrestle for our lives, but many hard and miserable +hours must you endure until that period shall arrive.” + +Scoffing devil! Again do I vow vengeance; again do I devote thee, +miserable fiend, to torture and death. Never will I give up my search +until he or I perish; and then with what ecstasy shall I join my +Elizabeth and my departed friends, who even now prepare for me the +reward of my tedious toil and horrible pilgrimage! + +As I still pursued my journey to the northward, the snows thickened and the +cold increased in a degree almost too severe to support. The peasants were +shut up in their hovels, and only a few of the most hardy ventured forth to +seize the animals whom starvation had forced from their hiding-places to +seek for prey. The rivers were covered with ice, and no fish could be +procured; and thus I was cut off from my chief article of maintenance. + +The triumph of my enemy increased with the difficulty of my labours. One +inscription that he left was in these words: “Prepare! Your toils +only begin; wrap yourself in furs and provide food, for we shall soon enter +upon a journey where your sufferings will satisfy my everlasting +hatred.” + +My courage and perseverance were invigorated by these scoffing words; I +resolved not to fail in my purpose, and calling on Heaven to support +me, I continued with unabated fervour to traverse immense deserts, +until the ocean appeared at a distance and formed the utmost boundary +of the horizon. Oh! How unlike it was to the blue seasons of the +south! Covered with ice, it was only to be distinguished from land by +its superior wildness and ruggedness. The Greeks wept for joy when +they beheld the Mediterranean from the hills of Asia, and hailed with +rapture the boundary of their toils. I did not weep, but I knelt down +and with a full heart thanked my guiding spirit for conducting me in +safety to the place where I hoped, notwithstanding my adversary’s gibe, +to meet and grapple with him. + +Some weeks before this period I had procured a sledge and dogs and thus +traversed the snows with inconceivable speed. I know not whether the +fiend possessed the same advantages, but I found that, as before I had +daily lost ground in the pursuit, I now gained on him, so much so that +when I first saw the ocean he was but one day’s journey in advance, and +I hoped to intercept him before he should reach the beach. With new +courage, therefore, I pressed on, and in two days arrived at a wretched +hamlet on the seashore. I inquired of the inhabitants concerning the +fiend and gained accurate information. A gigantic monster, they said, +had arrived the night before, armed with a gun and many pistols, +putting to flight the inhabitants of a solitary cottage through fear of +his terrific appearance. He had carried off their store of winter +food, and placing it in a sledge, to draw which he had seized on a +numerous drove of trained dogs, he had harnessed them, and the same +night, to the joy of the horror-struck villagers, had pursued his +journey across the sea in a direction that led to no land; and they +conjectured that he must speedily be destroyed by the breaking of the +ice or frozen by the eternal frosts. + +On hearing this information I suffered a temporary access of despair. +He had escaped me, and I must commence a destructive and almost endless +journey across the mountainous ices of the ocean, amidst cold that few +of the inhabitants could long endure and which I, the native of a +genial and sunny climate, could not hope to survive. Yet at the idea +that the fiend should live and be triumphant, my rage and vengeance +returned, and like a mighty tide, overwhelmed every other feeling. +After a slight repose, during which the spirits of the dead hovered +round and instigated me to toil and revenge, I prepared for my journey. + +I exchanged my land-sledge for one fashioned for the inequalities of +the Frozen Ocean, and purchasing a plentiful stock of provisions, I +departed from land. + +I cannot guess how many days have passed since then, but I have endured +misery which nothing but the eternal sentiment of a just retribution +burning within my heart could have enabled me to support. Immense and +rugged mountains of ice often barred up my passage, and I often heard +the thunder of the ground sea, which threatened my destruction. But +again the frost came and made the paths of the sea secure. + +By the quantity of provision which I had consumed, I should guess that +I had passed three weeks in this journey; and the continual protraction +of hope, returning back upon the heart, often wrung bitter drops of +despondency and grief from my eyes. Despair had indeed almost secured +her prey, and I should soon have sunk beneath this misery. Once, after +the poor animals that conveyed me had with incredible toil gained the +summit of a sloping ice mountain, and one, sinking under his fatigue, +died, I viewed the expanse before me with anguish, when suddenly my eye +caught a dark speck upon the dusky plain. I strained my sight to +discover what it could be and uttered a wild cry of ecstasy when I +distinguished a sledge and the distorted proportions of a well-known +form within. Oh! With what a burning gush did hope revisit my heart! +Warm tears filled my eyes, which I hastily wiped away, that they might +not intercept the view I had of the dæmon; but still my sight was +dimmed by the burning drops, until, giving way to the emotions that +oppressed me, I wept aloud. + +But this was not the time for delay; I disencumbered the dogs of their +dead companion, gave them a plentiful portion of food, and after an +hour’s rest, which was absolutely necessary, and yet which was bitterly +irksome to me, I continued my route. The sledge was still visible, nor +did I again lose sight of it except at the moments when for a short +time some ice-rock concealed it with its intervening crags. I indeed +perceptibly gained on it, and when, after nearly two days’ journey, I +beheld my enemy at no more than a mile distant, my heart bounded within +me. + +But now, when I appeared almost within grasp of my foe, my hopes were +suddenly extinguished, and I lost all trace of him more utterly than I had +ever done before. A ground sea was heard; the thunder of its progress, as +the waters rolled and swelled beneath me, became every moment more ominous +and terrific. I pressed on, but in vain. The wind arose; the sea roared; +and, as with the mighty shock of an earthquake, it split and cracked with a +tremendous and overwhelming sound. The work was soon finished; in a few +minutes a tumultuous sea rolled between me and my enemy, and I was left +drifting on a scattered piece of ice that was continually lessening and +thus preparing for me a hideous death. + +In this manner many appalling hours passed; several of my dogs died, and I +myself was about to sink under the accumulation of distress when I saw your +vessel riding at anchor and holding forth to me hopes of succour and life. +I had no conception that vessels ever came so far north and was astounded +at the sight. I quickly destroyed part of my sledge to construct oars, and +by these means was enabled, with infinite fatigue, to move my ice raft in +the direction of your ship. I had determined, if you were going southwards, +still to trust myself to the mercy of the seas rather than abandon my +purpose. I hoped to induce you to grant me a boat with which I could pursue +my enemy. But your direction was northwards. You took me on board when my +vigour was exhausted, and I should soon have sunk under my multiplied +hardships into a death which I still dread, for my task is unfulfilled. + +Oh! When will my guiding spirit, in conducting me to the dæmon, allow +me the rest I so much desire; or must I die, and he yet live? If I do, +swear to me, Walton, that he shall not escape, that you will seek him +and satisfy my vengeance in his death. And do I dare to ask of you to +undertake my pilgrimage, to endure the hardships that I have undergone? +No; I am not so selfish. Yet, when I am dead, if he should appear, if +the ministers of vengeance should conduct him to you, swear that he +shall not live—swear that he shall not triumph over my accumulated +woes and survive to add to the list of his dark crimes. He is eloquent +and persuasive, and once his words had even power over my heart; but +trust him not. His soul is as hellish as his form, full of treachery +and fiend-like malice. Hear him not; call on the names of William, +Justine, Clerval, Elizabeth, my father, and of the wretched Victor, and +thrust your sword into his heart. I will hover near and direct the +steel aright. + +Walton, _in continuation._ + + +August 26th, 17—. + + +You have read this strange and terrific story, Margaret; and do you not +feel your blood congeal with horror, like that which even now curdles +mine? Sometimes, seized with sudden agony, he could not continue his +tale; at others, his voice broken, yet piercing, uttered with +difficulty the words so replete with anguish. His fine and lovely eyes +were now lighted up with indignation, now subdued to downcast sorrow +and quenched in infinite wretchedness. Sometimes he commanded his +countenance and tones and related the most horrible incidents with a +tranquil voice, suppressing every mark of agitation; then, like a +volcano bursting forth, his face would suddenly change to an expression +of the wildest rage as he shrieked out imprecations on his persecutor. + +His tale is connected and told with an appearance of the simplest truth, +yet I own to you that the letters of Felix and Safie, which he showed me, +and the apparition of the monster seen from our ship, brought to me a +greater conviction of the truth of his narrative than his asseverations, +however earnest and connected. Such a monster has, then, really existence! +I cannot doubt it, yet I am lost in surprise and admiration. Sometimes I +endeavoured to gain from Frankenstein the particulars of his +creature’s formation, but on this point he was impenetrable. + +“Are you mad, my friend?” said he. “Or whither does your +senseless curiosity lead you? Would you also create for yourself and the +world a demoniacal enemy? Peace, peace! Learn my miseries and do not seek +to increase your own.” + +Frankenstein discovered that I made notes concerning his history; he asked +to see them and then himself corrected and augmented them in many places, +but principally in giving the life and spirit to the conversations he held +with his enemy. “Since you have preserved my narration,” said +he, “I would not that a mutilated one should go down to +posterity.” + +Thus has a week passed away, while I have listened to the strangest +tale that ever imagination formed. My thoughts and every feeling of my +soul have been drunk up by the interest for my guest which this tale +and his own elevated and gentle manners have created. I wish to soothe +him, yet can I counsel one so infinitely miserable, so destitute of +every hope of consolation, to live? Oh, no! The only joy that he can +now know will be when he composes his shattered spirit to peace and +death. Yet he enjoys one comfort, the offspring of solitude and +delirium; he believes that when in dreams he holds converse with his +friends and derives from that communion consolation for his miseries or +excitements to his vengeance, that they are not the creations of his +fancy, but the beings themselves who visit him from the regions of a +remote world. This faith gives a solemnity to his reveries that render +them to me almost as imposing and interesting as truth. + +Our conversations are not always confined to his own history and +misfortunes. On every point of general literature he displays +unbounded knowledge and a quick and piercing apprehension. His +eloquence is forcible and touching; nor can I hear him, when he relates +a pathetic incident or endeavours to move the passions of pity or love, +without tears. What a glorious creature must he have been in the days +of his prosperity, when he is thus noble and godlike in ruin! He seems +to feel his own worth and the greatness of his fall. + +“When younger,” said he, “I believed myself destined for +some great enterprise. My feelings are profound, but I possessed a coolness +of judgment that fitted me for illustrious achievements. This sentiment of +the worth of my nature supported me when others would have been oppressed, +for I deemed it criminal to throw away in useless grief those talents that +might be useful to my fellow creatures. When I reflected on the work I had +completed, no less a one than the creation of a sensitive and rational +animal, I could not rank myself with the herd of common projectors. But +this thought, which supported me in the commencement of my career, now +serves only to plunge me lower in the dust. All my speculations and hopes +are as nothing, and like the archangel who aspired to omnipotence, I am +chained in an eternal hell. My imagination was vivid, yet my powers of +analysis and application were intense; by the union of these qualities I +conceived the idea and executed the creation of a man. Even now I cannot +recollect without passion my reveries while the work was incomplete. I trod +heaven in my thoughts, now exulting in my powers, now burning with the idea +of their effects. From my infancy I was imbued with high hopes and a lofty +ambition; but how am I sunk! Oh! My friend, if you had known me as I once +was, you would not recognise me in this state of degradation. Despondency +rarely visited my heart; a high destiny seemed to bear me on, until I fell, +never, never again to rise.” + +Must I then lose this admirable being? I have longed for a friend; I have +sought one who would sympathise with and love me. Behold, on these desert +seas I have found such a one, but I fear I have gained him only to know his +value and lose him. I would reconcile him to life, but he repulses the idea. + +“I thank you, Walton,” he said, “for your kind intentions towards so +miserable a wretch; but when you speak of new ties and fresh +affections, think you that any can replace those who are gone? Can any +man be to me as Clerval was, or any woman another Elizabeth? Even +where the affections are not strongly moved by any superior excellence, +the companions of our childhood always possess a certain power over our +minds which hardly any later friend can obtain. They know our +infantine dispositions, which, however they may be afterwards modified, +are never eradicated; and they can judge of our actions with more +certain conclusions as to the integrity of our motives. A sister or a +brother can never, unless indeed such symptoms have been shown early, +suspect the other of fraud or false dealing, when another friend, +however strongly he may be attached, may, in spite of himself, be +contemplated with suspicion. But I enjoyed friends, dear not only +through habit and association, but from their own merits; and wherever +I am, the soothing voice of my Elizabeth and the conversation of +Clerval will be ever whispered in my ear. They are dead, and but one +feeling in such a solitude can persuade me to preserve my life. If I +were engaged in any high undertaking or design, fraught with extensive +utility to my fellow creatures, then could I live to fulfil it. But +such is not my destiny; I must pursue and destroy the being to whom I +gave existence; then my lot on earth will be fulfilled and I may die.” + +My beloved Sister, + +September 2d. + + +I write to you, encompassed by peril and ignorant whether I am ever +doomed to see again dear England and the dearer friends that inhabit +it. I am surrounded by mountains of ice which admit of no escape and +threaten every moment to crush my vessel. The brave fellows whom I +have persuaded to be my companions look towards me for aid, but I have +none to bestow. There is something terribly appalling in our +situation, yet my courage and hopes do not desert me. Yet it is +terrible to reflect that the lives of all these men are endangered +through me. If we are lost, my mad schemes are the cause. + +And what, Margaret, will be the state of your mind? You will not hear of my +destruction, and you will anxiously await my return. Years will pass, and +you will have visitings of despair and yet be tortured by hope. Oh! My +beloved sister, the sickening failing of your heart-felt expectations is, +in prospect, more terrible to me than my own death. But you have a husband +and lovely children; you may be happy. Heaven bless you and make you so! + +My unfortunate guest regards me with the tenderest compassion. He +endeavours to fill me with hope and talks as if life were a possession +which he valued. He reminds me how often the same accidents have +happened to other navigators who have attempted this sea, and in spite +of myself, he fills me with cheerful auguries. Even the sailors feel +the power of his eloquence; when he speaks, they no longer despair; he +rouses their energies, and while they hear his voice they believe these +vast mountains of ice are mole-hills which will vanish before the +resolutions of man. These feelings are transitory; each day of +expectation delayed fills them with fear, and I almost dread a mutiny +caused by this despair. + +September 5th. + + +A scene has just passed of such uncommon interest that, although it is +highly probable that these papers may never reach you, yet I cannot +forbear recording it. + +We are still surrounded by mountains of ice, still in imminent danger +of being crushed in their conflict. The cold is excessive, and many of +my unfortunate comrades have already found a grave amidst this scene of +desolation. Frankenstein has daily declined in health; a feverish fire +still glimmers in his eyes, but he is exhausted, and when suddenly +roused to any exertion, he speedily sinks again into apparent +lifelessness. + +I mentioned in my last letter the fears I entertained of a mutiny. +This morning, as I sat watching the wan countenance of my friend—his +eyes half closed and his limbs hanging listlessly—I was roused by half +a dozen of the sailors, who demanded admission into the cabin. They +entered, and their leader addressed me. He told me that he and his +companions had been chosen by the other sailors to come in deputation +to me to make me a requisition which, in justice, I could not refuse. +We were immured in ice and should probably never escape, but they +feared that if, as was possible, the ice should dissipate and a free +passage be opened, I should be rash enough to continue my voyage and +lead them into fresh dangers, after they might happily have surmounted +this. They insisted, therefore, that I should engage with a solemn +promise that if the vessel should be freed I would instantly direct my +course southwards. + +This speech troubled me. I had not despaired, nor had I yet conceived +the idea of returning if set free. Yet could I, in justice, or even in +possibility, refuse this demand? I hesitated before I answered, when +Frankenstein, who had at first been silent, and indeed appeared hardly +to have force enough to attend, now roused himself; his eyes sparkled, +and his cheeks flushed with momentary vigour. Turning towards the men, +he said, + +“What do you mean? What do you demand of your captain? Are you, then, +so easily turned from your design? Did you not call this a glorious +expedition? “And wherefore was it glorious? Not because the way was +smooth and placid as a southern sea, but because it was full of dangers and +terror, because at every new incident your fortitude was to be called forth +and your courage exhibited, because danger and death surrounded it, and +these you were to brave and overcome. For this was it a glorious, for this +was it an honourable undertaking. You were hereafter to be hailed as the +benefactors of your species, your names adored as belonging to brave men +who encountered death for honour and the benefit of mankind. And now, +behold, with the first imagination of danger, or, if you will, the first +mighty and terrific trial of your courage, you shrink away and are content +to be handed down as men who had not strength enough to endure cold and +peril; and so, poor souls, they were chilly and returned to their warm +firesides. Why, that requires not this preparation; ye need not have come +thus far and dragged your captain to the shame of a defeat merely to prove +yourselves cowards. Oh! Be men, or be more than men. Be steady to your +purposes and firm as a rock. This ice is not made of such stuff as your +hearts may be; it is mutable and cannot withstand you if you say that it +shall not. Do not return to your families with the stigma of disgrace +marked on your brows. Return as heroes who have fought and conquered and +who know not what it is to turn their backs on the foe.” + +He spoke this with a voice so modulated to the different feelings expressed +in his speech, with an eye so full of lofty design and heroism, that can +you wonder that these men were moved? They looked at one another and were +unable to reply. I spoke; I told them to retire and consider of what had +been said, that I would not lead them farther north if they strenuously +desired the contrary, but that I hoped that, with reflection, their courage +would return. + +They retired and I turned towards my friend, but he was sunk in languor and +almost deprived of life. + +How all this will terminate, I know not, but I had rather die than +return shamefully, my purpose unfulfilled. Yet I fear such will be my +fate; the men, unsupported by ideas of glory and honour, can never +willingly continue to endure their present hardships. + +September 7th. + + +The die is cast; I have consented to return if we are not destroyed. +Thus are my hopes blasted by cowardice and indecision; I come back +ignorant and disappointed. It requires more philosophy than I possess +to bear this injustice with patience. + +September 12th. + + +It is past; I am returning to England. I have lost my hopes of utility +and glory; I have lost my friend. But I will endeavour to detail these +bitter circumstances to you, my dear sister; and while I am wafted +towards England and towards you, I will not despond. + +September 9th, the ice began to move, and roarings like thunder were heard +at a distance as the islands split and cracked in every direction. We were +in the most imminent peril, but as we could only remain passive, my chief +attention was occupied by my unfortunate guest whose illness increased in +such a degree that he was entirely confined to his bed. The ice cracked +behind us and was driven with force towards the north; a breeze sprang from +the west, and on the 11th the passage towards the south became perfectly +free. When the sailors saw this and that their return to their native +country was apparently assured, a shout of tumultuous joy broke from them, +loud and long-continued. Frankenstein, who was dozing, awoke and asked the +cause of the tumult. “They shout,” I said, “because they +will soon return to England.” + +“Do you, then, really return?” + +“Alas! Yes; I cannot withstand their demands. I cannot lead them +unwillingly to danger, and I must return.” + +“Do so, if you will; but I will not. You may give up your purpose, but +mine is assigned to me by Heaven, and I dare not. I am weak, but +surely the spirits who assist my vengeance will endow me with +sufficient strength.” Saying this, he endeavoured to spring from the +bed, but the exertion was too great for him; he fell back and fainted. + +It was long before he was restored, and I often thought that life was +entirely extinct. At length he opened his eyes; he breathed with +difficulty and was unable to speak. The surgeon gave him a composing +draught and ordered us to leave him undisturbed. In the meantime he +told me that my friend had certainly not many hours to live. + +His sentence was pronounced, and I could only grieve and be patient. I sat +by his bed, watching him; his eyes were closed, and I thought he slept; but +presently he called to me in a feeble voice, and bidding me come near, +said, “Alas! The strength I relied on is gone; I feel that I shall +soon die, and he, my enemy and persecutor, may still be in being. Think +not, Walton, that in the last moments of my existence I feel that burning +hatred and ardent desire of revenge I once expressed; but I feel myself +justified in desiring the death of my adversary. During these last days I +have been occupied in examining my past conduct; nor do I find it blamable. +In a fit of enthusiastic madness I created a rational creature and was +bound towards him to assure, as far as was in my power, his happiness and +well-being. This was my duty, but there was another still paramount to +that. My duties towards the beings of my own species had greater claims to +my attention because they included a greater proportion of happiness or +misery. Urged by this view, I refused, and I did right in refusing, to +create a companion for the first creature. He showed unparalleled malignity +and selfishness in evil; he destroyed my friends; he devoted to destruction +beings who possessed exquisite sensations, happiness, and wisdom; nor do I +know where this thirst for vengeance may end. Miserable himself that he may +render no other wretched, he ought to die. The task of his destruction was +mine, but I have failed. When actuated by selfish and vicious motives, I +asked you to undertake my unfinished work, and I renew this request now, +when I am only induced by reason and virtue. + +“Yet I cannot ask you to renounce your country and friends to fulfil +this task; and now that you are returning to England, you will have +little chance of meeting with him. But the consideration of these +points, and the well balancing of what you may esteem your duties, I +leave to you; my judgment and ideas are already disturbed by the near +approach of death. I dare not ask you to do what I think right, for I +may still be misled by passion. + +“That he should live to be an instrument of mischief disturbs me; in +other respects, this hour, when I momentarily expect my release, is the +only happy one which I have enjoyed for several years. The forms of +the beloved dead flit before me, and I hasten to their arms. Farewell, +Walton! Seek happiness in tranquillity and avoid ambition, even if it +be only the apparently innocent one of distinguishing yourself in +science and discoveries. Yet why do I say this? I have myself been +blasted in these hopes, yet another may succeed.” + +His voice became fainter as he spoke, and at length, exhausted by his +effort, he sank into silence. About half an hour afterwards he +attempted again to speak but was unable; he pressed my hand feebly, and +his eyes closed for ever, while the irradiation of a gentle smile passed +away from his lips. + +Margaret, what comment can I make on the untimely extinction of this +glorious spirit? What can I say that will enable you to understand the +depth of my sorrow? All that I should express would be inadequate and +feeble. My tears flow; my mind is overshadowed by a cloud of +disappointment. But I journey towards England, and I may there find +consolation. + +I am interrupted. What do these sounds portend? It is midnight; the +breeze blows fairly, and the watch on deck scarcely stir. Again there +is a sound as of a human voice, but hoarser; it comes from the cabin +where the remains of Frankenstein still lie. I must arise and examine. +Good night, my sister. + +Great God! what a scene has just taken place! I am yet dizzy with the +remembrance of it. I hardly know whether I shall have the power to detail +it; yet the tale which I have recorded would be incomplete without this +final and wonderful catastrophe. + +I entered the cabin where lay the remains of my ill-fated and admirable +friend. Over him hung a form which I cannot find words to +describe—gigantic in stature, yet uncouth and distorted in its +proportions. As he hung over the coffin, his face was concealed by long +locks of ragged hair; but one vast hand was extended, in colour and +apparent texture like that of a mummy. When he heard the sound of my +approach, he ceased to utter exclamations of grief and horror and sprung +towards the window. Never did I behold a vision so horrible as his face, of +such loathsome yet appalling hideousness. I shut my eyes involuntarily and +endeavoured to recollect what were my duties with regard to this destroyer. +I called on him to stay. + +He paused, looking on me with wonder, and again turning towards the +lifeless form of his creator, he seemed to forget my presence, and +every feature and gesture seemed instigated by the wildest rage of some +uncontrollable passion. + +“That is also my victim!” he exclaimed. “In his murder my +crimes are consummated; the miserable series of my being is wound to its +close! Oh, Frankenstein! Generous and self-devoted being! What does it +avail that I now ask thee to pardon me? I, who irretrievably destroyed thee +by destroying all thou lovedst. Alas! He is cold, he cannot answer +me.” + +His voice seemed suffocated, and my first impulses, which had suggested to +me the duty of obeying the dying request of my friend in destroying his +enemy, were now suspended by a mixture of curiosity and compassion. I +approached this tremendous being; I dared not again raise my eyes to his +face, there was something so scaring and unearthly in his ugliness. I +attempted to speak, but the words died away on my lips. The monster +continued to utter wild and incoherent self-reproaches. At length I +gathered resolution to address him in a pause of the tempest of his passion. + +“Your repentance,” I said, “is now superfluous. If you +had listened to the voice of conscience and heeded the stings of remorse +before you had urged your diabolical vengeance to this extremity, +Frankenstein would yet have lived.” + +“And do you dream?” said the dæmon. “Do you think that I was then +dead to agony and remorse? He,” he continued, pointing to the corpse, +“he suffered not in the consummation of the deed. Oh! Not the +ten-thousandth portion of the anguish that was mine during the +lingering detail of its execution. A frightful selfishness hurried me +on, while my heart was poisoned with remorse. Think you that the +groans of Clerval were music to my ears? My heart was fashioned to be +susceptible of love and sympathy, and when wrenched by misery to vice +and hatred, it did not endure the violence of the change without +torture such as you cannot even imagine. + +“After the murder of Clerval I returned to Switzerland, heart-broken +and overcome. I pitied Frankenstein; my pity amounted to horror; I +abhorred myself. But when I discovered that he, the author at once of +my existence and of its unspeakable torments, dared to hope for +happiness, that while he accumulated wretchedness and despair upon me +he sought his own enjoyment in feelings and passions from the +indulgence of which I was for ever barred, then impotent envy and bitter +indignation filled me with an insatiable thirst for vengeance. I +recollected my threat and resolved that it should be accomplished. I +knew that I was preparing for myself a deadly torture, but I was the +slave, not the master, of an impulse which I detested yet could not +disobey. Yet when she died! Nay, then I was not miserable. I had +cast off all feeling, subdued all anguish, to riot in the excess of my +despair. Evil thenceforth became my good. Urged thus far, I had no +choice but to adapt my nature to an element which I had willingly +chosen. The completion of my demoniacal design became an insatiable +passion. And now it is ended; there is my last victim!” + +I was at first touched by the expressions of his misery; yet, when I called +to mind what Frankenstein had said of his powers of eloquence and +persuasion, and when I again cast my eyes on the lifeless form of my +friend, indignation was rekindled within me. “Wretch!” I said. +“It is well that you come here to whine over the desolation that you +have made. You throw a torch into a pile of buildings, and when they are +consumed, you sit among the ruins and lament the fall. Hypocritical fiend! +If he whom you mourn still lived, still would he be the object, again would +he become the prey, of your accursed vengeance. It is not pity that you +feel; you lament only because the victim of your malignity is withdrawn +from your power.” + +“Oh, it is not thus—not thus,” interrupted the being. +“Yet such must be the impression conveyed to you by what appears to +be the purport of my actions. Yet I seek not a fellow feeling in my misery. +No sympathy may I ever find. When I first sought it, it was the love of +virtue, the feelings of happiness and affection with which my whole being +overflowed, that I wished to be participated. But now that virtue has +become to me a shadow, and that happiness and affection are turned into +bitter and loathing despair, in what should I seek for sympathy? I am +content to suffer alone while my sufferings shall endure; when I die, I am +well satisfied that abhorrence and opprobrium should load my memory. Once +my fancy was soothed with dreams of virtue, of fame, and of enjoyment. Once +I falsely hoped to meet with beings who, pardoning my outward form, would +love me for the excellent qualities which I was capable of unfolding. I was +nourished with high thoughts of honour and devotion. But now crime has +degraded me beneath the meanest animal. No guilt, no mischief, no +malignity, no misery, can be found comparable to mine. When I run over the +frightful catalogue of my sins, I cannot believe that I am the same +creature whose thoughts were once filled with sublime and transcendent +visions of the beauty and the majesty of goodness. But it is even so; the +fallen angel becomes a malignant devil. Yet even that enemy of God and man +had friends and associates in his desolation; I am alone. + +“You, who call Frankenstein your friend, seem to have a knowledge of my +crimes and his misfortunes. But in the detail which he gave you of them +he could not sum up the hours and months of misery which I endured +wasting in impotent passions. For while I destroyed his hopes, I did +not satisfy my own desires. They were for ever ardent and craving; still +I desired love and fellowship, and I was still spurned. Was there no +injustice in this? Am I to be thought the only criminal, when all +humankind sinned against me? Why do you not hate Felix, who drove his +friend from his door with contumely? Why do you not execrate the rustic +who sought to destroy the saviour of his child? Nay, these are virtuous +and immaculate beings! I, the miserable and the abandoned, am an +abortion, to be spurned at, and kicked, and trampled on. Even now my +blood boils at the recollection of this injustice. + +“But it is true that I am a wretch. I have murdered the lovely and +the helpless; I have strangled the innocent as they slept and grasped to +death his throat who never injured me or any other living thing. I have +devoted my creator, the select specimen of all that is worthy of love and +admiration among men, to misery; I have pursued him even to that +irremediable ruin. There he lies, white and cold in death. You hate me, but +your abhorrence cannot equal that with which I regard myself. I look on the +hands which executed the deed; I think on the heart in which the +imagination of it was conceived and long for the moment when these hands +will meet my eyes, when that imagination will haunt my thoughts no more. + +“Fear not that I shall be the instrument of future mischief. My work +is nearly complete. Neither yours nor any man’s death is needed to +consummate the series of my being and accomplish that which must be done, +but it requires my own. Do not think that I shall be slow to perform this +sacrifice. I shall quit your vessel on the ice raft which brought me +thither and shall seek the most northern extremity of the globe; I shall +collect my funeral pile and consume to ashes this miserable frame, that its +remains may afford no light to any curious and unhallowed wretch who would +create such another as I have been. I shall die. I shall no longer feel the +agonies which now consume me or be the prey of feelings unsatisfied, yet +unquenched. He is dead who called me into being; and when I shall be no +more, the very remembrance of us both will speedily vanish. I shall no +longer see the sun or stars or feel the winds play on my cheeks. Light, +feeling, and sense will pass away; and in this condition must I find my +happiness. Some years ago, when the images which this world affords first +opened upon me, when I felt the cheering warmth of summer and heard the +rustling of the leaves and the warbling of the birds, and these were all to +me, I should have wept to die; now it is my only consolation. Polluted by +crimes and torn by the bitterest remorse, where can I find rest but in +death? + +“Farewell! I leave you, and in you the last of humankind whom these +eyes will ever behold. Farewell, Frankenstein! If thou wert yet alive +and yet cherished a desire of revenge against me, it would be better +satiated in my life than in my destruction. But it was not so; thou +didst seek my extinction, that I might not cause greater wretchedness; +and if yet, in some mode unknown to me, thou hadst not ceased to think +and feel, thou wouldst not desire against me a vengeance greater than +that which I feel. Blasted as thou wert, my agony was still superior to +thine, for the bitter sting of remorse will not cease to rankle in my +wounds until death shall close them for ever. + +“But soon,” he cried with sad and solemn enthusiasm, “I +shall die, and what I now feel be no longer felt. Soon these burning +miseries will be extinct. I shall ascend my funeral pile triumphantly and +exult in the agony of the torturing flames. The light of that conflagration +will fade away; my ashes will be swept into the sea by the winds. My spirit +will sleep in peace, or if it thinks, it will not surely think thus. +Farewell.” + +He sprang from the cabin-window as he said this, upon the ice raft +which lay close to the vessel. He was soon borne away by the waves and +lost in darkness and distance. + + + + +End of the Project Gutenberg EBook of Frankenstein, by +Mary Wollstonecraft (Godwin) Shelley + +*** END OF THIS PROJECT GUTENBERG EBOOK FRANKENSTEIN *** + +***** This file should be named 84-0.txt or 84-0.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.org/8/84/ + +Produced by Judith Boss, Christy Phillips, Lynn Hanninen, +and David Meltzer. HTML version by Al Haines. +Further corrections by Menno de Leeuw. + + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.net/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" +or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase "Project Gutenberg" appears, or with which the phrase "Project +Gutenberg" is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.net + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase "Project Gutenberg" associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +"Plain Vanilla ASCII" or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.net), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original "Plain Vanilla ASCII" or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, "Information about donations to + the Project Gutenberg Literary Archive Foundation." + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +"Defects," such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, is critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including including checks, online payments and credit card +donations. To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.net + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + + + + + + + + + + + + diff --git a/data/PridePrejudice.txt b/data/PridePrejudice.txt new file mode 100644 index 0000000..166df7b --- /dev/null +++ b/data/PridePrejudice.txt @@ -0,0 +1,13427 @@ +The Project Gutenberg EBook of Pride and Prejudice, by Jane Austen + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org + + +Title: Pride and Prejudice + +Author: Jane Austen + +Posting Date: August 26, 2008 [EBook #1342] +Release Date: June, 1998 +Last Updated: March 10, 2018 + +Language: English + +Character set encoding: UTF-8 + +*** START OF THIS PROJECT GUTENBERG EBOOK PRIDE AND PREJUDICE *** + + + + +Produced by Anonymous Volunteers + + + + + +PRIDE AND PREJUDICE + +By Jane Austen + + + +Chapter 1 + + +It is a truth universally acknowledged, that a single man in possession +of a good fortune, must be in want of a wife. + +However little known the feelings or views of such a man may be on his +first entering a neighbourhood, this truth is so well fixed in the minds +of the surrounding families, that he is considered the rightful property +of some one or other of their daughters. + +“My dear Mr. Bennet,” said his lady to him one day, “have you heard that +Netherfield Park is let at last?” + +Mr. Bennet replied that he had not. + +“But it is,” returned she; “for Mrs. Long has just been here, and she +told me all about it.” + +Mr. Bennet made no answer. + +“Do you not want to know who has taken it?” cried his wife impatiently. + +“_You_ want to tell me, and I have no objection to hearing it.” + +This was invitation enough. + +“Why, my dear, you must know, Mrs. Long says that Netherfield is taken +by a young man of large fortune from the north of England; that he came +down on Monday in a chaise and four to see the place, and was so much +delighted with it, that he agreed with Mr. Morris immediately; that he +is to take possession before Michaelmas, and some of his servants are to +be in the house by the end of next week.” + +“What is his name?” + +“Bingley.” + +“Is he married or single?” + +“Oh! Single, my dear, to be sure! A single man of large fortune; four or +five thousand a year. What a fine thing for our girls!” + +“How so? How can it affect them?” + +“My dear Mr. Bennet,” replied his wife, “how can you be so tiresome! You +must know that I am thinking of his marrying one of them.” + +“Is that his design in settling here?” + +“Design! Nonsense, how can you talk so! But it is very likely that he +_may_ fall in love with one of them, and therefore you must visit him as +soon as he comes.” + +“I see no occasion for that. You and the girls may go, or you may send +them by themselves, which perhaps will be still better, for as you are +as handsome as any of them, Mr. Bingley may like you the best of the +party.” + +“My dear, you flatter me. I certainly _have_ had my share of beauty, but +I do not pretend to be anything extraordinary now. When a woman has five +grown-up daughters, she ought to give over thinking of her own beauty.” + +“In such cases, a woman has not often much beauty to think of.” + +“But, my dear, you must indeed go and see Mr. Bingley when he comes into +the neighbourhood.” + +“It is more than I engage for, I assure you.” + +“But consider your daughters. Only think what an establishment it would +be for one of them. Sir William and Lady Lucas are determined to +go, merely on that account, for in general, you know, they visit no +newcomers. Indeed you must go, for it will be impossible for _us_ to +visit him if you do not.” + +“You are over-scrupulous, surely. I dare say Mr. Bingley will be very +glad to see you; and I will send a few lines by you to assure him of my +hearty consent to his marrying whichever he chooses of the girls; though +I must throw in a good word for my little Lizzy.” + +“I desire you will do no such thing. Lizzy is not a bit better than the +others; and I am sure she is not half so handsome as Jane, nor half so +good-humoured as Lydia. But you are always giving _her_ the preference.” + +“They have none of them much to recommend them,” replied he; “they are +all silly and ignorant like other girls; but Lizzy has something more of +quickness than her sisters.” + +“Mr. Bennet, how _can_ you abuse your own children in such a way? You +take delight in vexing me. You have no compassion for my poor nerves.” + +“You mistake me, my dear. I have a high respect for your nerves. They +are my old friends. I have heard you mention them with consideration +these last twenty years at least.” + +“Ah, you do not know what I suffer.” + +“But I hope you will get over it, and live to see many young men of four +thousand a year come into the neighbourhood.” + +“It will be no use to us, if twenty such should come, since you will not +visit them.” + +“Depend upon it, my dear, that when there are twenty, I will visit them +all.” + +Mr. Bennet was so odd a mixture of quick parts, sarcastic humour, +reserve, and caprice, that the experience of three-and-twenty years had +been insufficient to make his wife understand his character. _Her_ mind +was less difficult to develop. She was a woman of mean understanding, +little information, and uncertain temper. When she was discontented, +she fancied herself nervous. The business of her life was to get her +daughters married; its solace was visiting and news. + + + +Chapter 2 + + +Mr. Bennet was among the earliest of those who waited on Mr. Bingley. He +had always intended to visit him, though to the last always assuring +his wife that he should not go; and till the evening after the visit was +paid she had no knowledge of it. It was then disclosed in the following +manner. Observing his second daughter employed in trimming a hat, he +suddenly addressed her with: + +“I hope Mr. Bingley will like it, Lizzy.” + +“We are not in a way to know _what_ Mr. Bingley likes,” said her mother +resentfully, “since we are not to visit.” + +“But you forget, mamma,” said Elizabeth, “that we shall meet him at the +assemblies, and that Mrs. Long promised to introduce him.” + +“I do not believe Mrs. Long will do any such thing. She has two nieces +of her own. She is a selfish, hypocritical woman, and I have no opinion +of her.” + +“No more have I,” said Mr. Bennet; “and I am glad to find that you do +not depend on her serving you.” + +Mrs. Bennet deigned not to make any reply, but, unable to contain +herself, began scolding one of her daughters. + +“Don't keep coughing so, Kitty, for Heaven's sake! Have a little +compassion on my nerves. You tear them to pieces.” + +“Kitty has no discretion in her coughs,” said her father; “she times +them ill.” + +“I do not cough for my own amusement,” replied Kitty fretfully. “When is +your next ball to be, Lizzy?” + +“To-morrow fortnight.” + +“Aye, so it is,” cried her mother, “and Mrs. Long does not come back +till the day before; so it will be impossible for her to introduce him, +for she will not know him herself.” + +“Then, my dear, you may have the advantage of your friend, and introduce +Mr. Bingley to _her_.” + +“Impossible, Mr. Bennet, impossible, when I am not acquainted with him +myself; how can you be so teasing?” + +“I honour your circumspection. A fortnight's acquaintance is certainly +very little. One cannot know what a man really is by the end of a +fortnight. But if _we_ do not venture somebody else will; and after all, +Mrs. Long and her neices must stand their chance; and, therefore, as +she will think it an act of kindness, if you decline the office, I will +take it on myself.” + +The girls stared at their father. Mrs. Bennet said only, “Nonsense, +nonsense!” + +“What can be the meaning of that emphatic exclamation?” cried he. “Do +you consider the forms of introduction, and the stress that is laid on +them, as nonsense? I cannot quite agree with you _there_. What say you, +Mary? For you are a young lady of deep reflection, I know, and read +great books and make extracts.” + +Mary wished to say something sensible, but knew not how. + +“While Mary is adjusting her ideas,” he continued, “let us return to Mr. +Bingley.” + +“I am sick of Mr. Bingley,” cried his wife. + +“I am sorry to hear _that_; but why did not you tell me that before? If +I had known as much this morning I certainly would not have called +on him. It is very unlucky; but as I have actually paid the visit, we +cannot escape the acquaintance now.” + +The astonishment of the ladies was just what he wished; that of Mrs. +Bennet perhaps surpassing the rest; though, when the first tumult of joy +was over, she began to declare that it was what she had expected all the +while. + +“How good it was in you, my dear Mr. Bennet! But I knew I should +persuade you at last. I was sure you loved your girls too well to +neglect such an acquaintance. Well, how pleased I am! and it is such a +good joke, too, that you should have gone this morning and never said a +word about it till now.” + +“Now, Kitty, you may cough as much as you choose,” said Mr. Bennet; and, +as he spoke, he left the room, fatigued with the raptures of his wife. + +“What an excellent father you have, girls!” said she, when the door was +shut. “I do not know how you will ever make him amends for his kindness; +or me, either, for that matter. At our time of life it is not so +pleasant, I can tell you, to be making new acquaintances every day; but +for your sakes, we would do anything. Lydia, my love, though you _are_ +the youngest, I dare say Mr. Bingley will dance with you at the next +ball.” + +“Oh!” said Lydia stoutly, “I am not afraid; for though I _am_ the +youngest, I'm the tallest.” + +The rest of the evening was spent in conjecturing how soon he would +return Mr. Bennet's visit, and determining when they should ask him to +dinner. + + + +Chapter 3 + + +Not all that Mrs. Bennet, however, with the assistance of her five +daughters, could ask on the subject, was sufficient to draw from her +husband any satisfactory description of Mr. Bingley. They attacked him +in various ways--with barefaced questions, ingenious suppositions, and +distant surmises; but he eluded the skill of them all, and they were at +last obliged to accept the second-hand intelligence of their neighbour, +Lady Lucas. Her report was highly favourable. Sir William had been +delighted with him. He was quite young, wonderfully handsome, extremely +agreeable, and, to crown the whole, he meant to be at the next assembly +with a large party. Nothing could be more delightful! To be fond of +dancing was a certain step towards falling in love; and very lively +hopes of Mr. Bingley's heart were entertained. + +“If I can but see one of my daughters happily settled at Netherfield,” + said Mrs. Bennet to her husband, “and all the others equally well +married, I shall have nothing to wish for.” + +In a few days Mr. Bingley returned Mr. Bennet's visit, and sat about +ten minutes with him in his library. He had entertained hopes of being +admitted to a sight of the young ladies, of whose beauty he had +heard much; but he saw only the father. The ladies were somewhat more +fortunate, for they had the advantage of ascertaining from an upper +window that he wore a blue coat, and rode a black horse. + +An invitation to dinner was soon afterwards dispatched; and already +had Mrs. Bennet planned the courses that were to do credit to her +housekeeping, when an answer arrived which deferred it all. Mr. Bingley +was obliged to be in town the following day, and, consequently, unable +to accept the honour of their invitation, etc. Mrs. Bennet was quite +disconcerted. She could not imagine what business he could have in town +so soon after his arrival in Hertfordshire; and she began to fear that +he might be always flying about from one place to another, and never +settled at Netherfield as he ought to be. Lady Lucas quieted her fears +a little by starting the idea of his being gone to London only to get +a large party for the ball; and a report soon followed that Mr. Bingley +was to bring twelve ladies and seven gentlemen with him to the assembly. +The girls grieved over such a number of ladies, but were comforted the +day before the ball by hearing, that instead of twelve he brought only +six with him from London--his five sisters and a cousin. And when +the party entered the assembly room it consisted of only five +altogether--Mr. Bingley, his two sisters, the husband of the eldest, and +another young man. + +Mr. Bingley was good-looking and gentlemanlike; he had a pleasant +countenance, and easy, unaffected manners. His sisters were fine women, +with an air of decided fashion. His brother-in-law, Mr. Hurst, merely +looked the gentleman; but his friend Mr. Darcy soon drew the attention +of the room by his fine, tall person, handsome features, noble mien, and +the report which was in general circulation within five minutes +after his entrance, of his having ten thousand a year. The gentlemen +pronounced him to be a fine figure of a man, the ladies declared he +was much handsomer than Mr. Bingley, and he was looked at with great +admiration for about half the evening, till his manners gave a disgust +which turned the tide of his popularity; for he was discovered to be +proud; to be above his company, and above being pleased; and not all +his large estate in Derbyshire could then save him from having a most +forbidding, disagreeable countenance, and being unworthy to be compared +with his friend. + +Mr. Bingley had soon made himself acquainted with all the principal +people in the room; he was lively and unreserved, danced every dance, +was angry that the ball closed so early, and talked of giving +one himself at Netherfield. Such amiable qualities must speak for +themselves. What a contrast between him and his friend! Mr. Darcy danced +only once with Mrs. Hurst and once with Miss Bingley, declined being +introduced to any other lady, and spent the rest of the evening in +walking about the room, speaking occasionally to one of his own party. +His character was decided. He was the proudest, most disagreeable man +in the world, and everybody hoped that he would never come there again. +Amongst the most violent against him was Mrs. Bennet, whose dislike of +his general behaviour was sharpened into particular resentment by his +having slighted one of her daughters. + +Elizabeth Bennet had been obliged, by the scarcity of gentlemen, to sit +down for two dances; and during part of that time, Mr. Darcy had been +standing near enough for her to hear a conversation between him and Mr. +Bingley, who came from the dance for a few minutes, to press his friend +to join it. + +“Come, Darcy,” said he, “I must have you dance. I hate to see you +standing about by yourself in this stupid manner. You had much better +dance.” + +“I certainly shall not. You know how I detest it, unless I am +particularly acquainted with my partner. At such an assembly as this +it would be insupportable. Your sisters are engaged, and there is not +another woman in the room whom it would not be a punishment to me to +stand up with.” + +“I would not be so fastidious as you are,” cried Mr. Bingley, “for a +kingdom! Upon my honour, I never met with so many pleasant girls in +my life as I have this evening; and there are several of them you see +uncommonly pretty.” + +“_You_ are dancing with the only handsome girl in the room,” said Mr. +Darcy, looking at the eldest Miss Bennet. + +“Oh! She is the most beautiful creature I ever beheld! But there is one +of her sisters sitting down just behind you, who is very pretty, and I +dare say very agreeable. Do let me ask my partner to introduce you.” + +“Which do you mean?” and turning round he looked for a moment at +Elizabeth, till catching her eye, he withdrew his own and coldly said: +“She is tolerable, but not handsome enough to tempt _me_; I am in no +humour at present to give consequence to young ladies who are slighted +by other men. You had better return to your partner and enjoy her +smiles, for you are wasting your time with me.” + +Mr. Bingley followed his advice. Mr. Darcy walked off; and Elizabeth +remained with no very cordial feelings toward him. She told the story, +however, with great spirit among her friends; for she had a lively, +playful disposition, which delighted in anything ridiculous. + +The evening altogether passed off pleasantly to the whole family. Mrs. +Bennet had seen her eldest daughter much admired by the Netherfield +party. Mr. Bingley had danced with her twice, and she had been +distinguished by his sisters. Jane was as much gratified by this as +her mother could be, though in a quieter way. Elizabeth felt Jane's +pleasure. Mary had heard herself mentioned to Miss Bingley as the most +accomplished girl in the neighbourhood; and Catherine and Lydia had been +fortunate enough never to be without partners, which was all that they +had yet learnt to care for at a ball. They returned, therefore, in good +spirits to Longbourn, the village where they lived, and of which they +were the principal inhabitants. They found Mr. Bennet still up. With +a book he was regardless of time; and on the present occasion he had a +good deal of curiosity as to the event of an evening which had raised +such splendid expectations. He had rather hoped that his wife's views on +the stranger would be disappointed; but he soon found out that he had a +different story to hear. + +“Oh! my dear Mr. Bennet,” as she entered the room, “we have had a most +delightful evening, a most excellent ball. I wish you had been there. +Jane was so admired, nothing could be like it. Everybody said how well +she looked; and Mr. Bingley thought her quite beautiful, and danced with +her twice! Only think of _that_, my dear; he actually danced with her +twice! and she was the only creature in the room that he asked a second +time. First of all, he asked Miss Lucas. I was so vexed to see him stand +up with her! But, however, he did not admire her at all; indeed, nobody +can, you know; and he seemed quite struck with Jane as she was going +down the dance. So he inquired who she was, and got introduced, and +asked her for the two next. Then the two third he danced with Miss King, +and the two fourth with Maria Lucas, and the two fifth with Jane again, +and the two sixth with Lizzy, and the _Boulanger_--” + +“If he had had any compassion for _me_,” cried her husband impatiently, +“he would not have danced half so much! For God's sake, say no more of +his partners. Oh that he had sprained his ankle in the first dance!” + +“Oh! my dear, I am quite delighted with him. He is so excessively +handsome! And his sisters are charming women. I never in my life saw +anything more elegant than their dresses. I dare say the lace upon Mrs. +Hurst's gown--” + +Here she was interrupted again. Mr. Bennet protested against any +description of finery. She was therefore obliged to seek another branch +of the subject, and related, with much bitterness of spirit and some +exaggeration, the shocking rudeness of Mr. Darcy. + +“But I can assure you,” she added, “that Lizzy does not lose much by not +suiting _his_ fancy; for he is a most disagreeable, horrid man, not at +all worth pleasing. So high and so conceited that there was no enduring +him! He walked here, and he walked there, fancying himself so very +great! Not handsome enough to dance with! I wish you had been there, my +dear, to have given him one of your set-downs. I quite detest the man.” + + + +Chapter 4 + + +When Jane and Elizabeth were alone, the former, who had been cautious in +her praise of Mr. Bingley before, expressed to her sister just how very +much she admired him. + +“He is just what a young man ought to be,” said she, “sensible, +good-humoured, lively; and I never saw such happy manners!--so much +ease, with such perfect good breeding!” + +“He is also handsome,” replied Elizabeth, “which a young man ought +likewise to be, if he possibly can. His character is thereby complete.” + +“I was very much flattered by his asking me to dance a second time. I +did not expect such a compliment.” + +“Did not you? I did for you. But that is one great difference between +us. Compliments always take _you_ by surprise, and _me_ never. What +could be more natural than his asking you again? He could not help +seeing that you were about five times as pretty as every other woman +in the room. No thanks to his gallantry for that. Well, he certainly is +very agreeable, and I give you leave to like him. You have liked many a +stupider person.” + +“Dear Lizzy!” + +“Oh! you are a great deal too apt, you know, to like people in general. +You never see a fault in anybody. All the world are good and agreeable +in your eyes. I never heard you speak ill of a human being in your +life.” + +“I would not wish to be hasty in censuring anyone; but I always speak +what I think.” + +“I know you do; and it is _that_ which makes the wonder. With _your_ +good sense, to be so honestly blind to the follies and nonsense of +others! Affectation of candour is common enough--one meets with it +everywhere. But to be candid without ostentation or design--to take the +good of everybody's character and make it still better, and say nothing +of the bad--belongs to you alone. And so you like this man's sisters, +too, do you? Their manners are not equal to his.” + +“Certainly not--at first. But they are very pleasing women when you +converse with them. Miss Bingley is to live with her brother, and keep +his house; and I am much mistaken if we shall not find a very charming +neighbour in her.” + +Elizabeth listened in silence, but was not convinced; their behaviour at +the assembly had not been calculated to please in general; and with more +quickness of observation and less pliancy of temper than her sister, +and with a judgement too unassailed by any attention to herself, she +was very little disposed to approve them. They were in fact very fine +ladies; not deficient in good humour when they were pleased, nor in the +power of making themselves agreeable when they chose it, but proud and +conceited. They were rather handsome, had been educated in one of the +first private seminaries in town, had a fortune of twenty thousand +pounds, were in the habit of spending more than they ought, and of +associating with people of rank, and were therefore in every respect +entitled to think well of themselves, and meanly of others. They were of +a respectable family in the north of England; a circumstance more deeply +impressed on their memories than that their brother's fortune and their +own had been acquired by trade. + +Mr. Bingley inherited property to the amount of nearly a hundred +thousand pounds from his father, who had intended to purchase an +estate, but did not live to do it. Mr. Bingley intended it likewise, and +sometimes made choice of his county; but as he was now provided with a +good house and the liberty of a manor, it was doubtful to many of those +who best knew the easiness of his temper, whether he might not spend the +remainder of his days at Netherfield, and leave the next generation to +purchase. + +His sisters were anxious for his having an estate of his own; but, +though he was now only established as a tenant, Miss Bingley was by no +means unwilling to preside at his table--nor was Mrs. Hurst, who had +married a man of more fashion than fortune, less disposed to consider +his house as her home when it suited her. Mr. Bingley had not been of +age two years, when he was tempted by an accidental recommendation +to look at Netherfield House. He did look at it, and into it for +half-an-hour--was pleased with the situation and the principal +rooms, satisfied with what the owner said in its praise, and took it +immediately. + +Between him and Darcy there was a very steady friendship, in spite of +great opposition of character. Bingley was endeared to Darcy by the +easiness, openness, and ductility of his temper, though no disposition +could offer a greater contrast to his own, and though with his own he +never appeared dissatisfied. On the strength of Darcy's regard, Bingley +had the firmest reliance, and of his judgement the highest opinion. +In understanding, Darcy was the superior. Bingley was by no means +deficient, but Darcy was clever. He was at the same time haughty, +reserved, and fastidious, and his manners, though well-bred, were not +inviting. In that respect his friend had greatly the advantage. Bingley +was sure of being liked wherever he appeared, Darcy was continually +giving offense. + +The manner in which they spoke of the Meryton assembly was sufficiently +characteristic. Bingley had never met with more pleasant people or +prettier girls in his life; everybody had been most kind and attentive +to him; there had been no formality, no stiffness; he had soon felt +acquainted with all the room; and, as to Miss Bennet, he could not +conceive an angel more beautiful. Darcy, on the contrary, had seen a +collection of people in whom there was little beauty and no fashion, for +none of whom he had felt the smallest interest, and from none received +either attention or pleasure. Miss Bennet he acknowledged to be pretty, +but she smiled too much. + +Mrs. Hurst and her sister allowed it to be so--but still they admired +her and liked her, and pronounced her to be a sweet girl, and one +whom they would not object to know more of. Miss Bennet was therefore +established as a sweet girl, and their brother felt authorized by such +commendation to think of her as he chose. + + + +Chapter 5 + + +Within a short walk of Longbourn lived a family with whom the Bennets +were particularly intimate. Sir William Lucas had been formerly in trade +in Meryton, where he had made a tolerable fortune, and risen to the +honour of knighthood by an address to the king during his mayoralty. +The distinction had perhaps been felt too strongly. It had given him a +disgust to his business, and to his residence in a small market town; +and, in quitting them both, he had removed with his family to a house +about a mile from Meryton, denominated from that period Lucas Lodge, +where he could think with pleasure of his own importance, and, +unshackled by business, occupy himself solely in being civil to all +the world. For, though elated by his rank, it did not render him +supercilious; on the contrary, he was all attention to everybody. By +nature inoffensive, friendly, and obliging, his presentation at St. +James's had made him courteous. + +Lady Lucas was a very good kind of woman, not too clever to be a +valuable neighbour to Mrs. Bennet. They had several children. The eldest +of them, a sensible, intelligent young woman, about twenty-seven, was +Elizabeth's intimate friend. + +That the Miss Lucases and the Miss Bennets should meet to talk over +a ball was absolutely necessary; and the morning after the assembly +brought the former to Longbourn to hear and to communicate. + +“_You_ began the evening well, Charlotte,” said Mrs. Bennet with civil +self-command to Miss Lucas. “_You_ were Mr. Bingley's first choice.” + +“Yes; but he seemed to like his second better.” + +“Oh! you mean Jane, I suppose, because he danced with her twice. To be +sure that _did_ seem as if he admired her--indeed I rather believe he +_did_--I heard something about it--but I hardly know what--something +about Mr. Robinson.” + +“Perhaps you mean what I overheard between him and Mr. Robinson; did not +I mention it to you? Mr. Robinson's asking him how he liked our Meryton +assemblies, and whether he did not think there were a great many +pretty women in the room, and _which_ he thought the prettiest? and his +answering immediately to the last question: 'Oh! the eldest Miss Bennet, +beyond a doubt; there cannot be two opinions on that point.'” + +“Upon my word! Well, that is very decided indeed--that does seem as +if--but, however, it may all come to nothing, you know.” + +“_My_ overhearings were more to the purpose than _yours_, Eliza,” said +Charlotte. “Mr. Darcy is not so well worth listening to as his friend, +is he?--poor Eliza!--to be only just _tolerable_.” + +“I beg you would not put it into Lizzy's head to be vexed by his +ill-treatment, for he is such a disagreeable man, that it would be quite +a misfortune to be liked by him. Mrs. Long told me last night that he +sat close to her for half-an-hour without once opening his lips.” + +“Are you quite sure, ma'am?--is not there a little mistake?” said Jane. +“I certainly saw Mr. Darcy speaking to her.” + +“Aye--because she asked him at last how he liked Netherfield, and he +could not help answering her; but she said he seemed quite angry at +being spoke to.” + +“Miss Bingley told me,” said Jane, “that he never speaks much, +unless among his intimate acquaintances. With _them_ he is remarkably +agreeable.” + +“I do not believe a word of it, my dear. If he had been so very +agreeable, he would have talked to Mrs. Long. But I can guess how it +was; everybody says that he is eat up with pride, and I dare say he had +heard somehow that Mrs. Long does not keep a carriage, and had come to +the ball in a hack chaise.” + +“I do not mind his not talking to Mrs. Long,” said Miss Lucas, “but I +wish he had danced with Eliza.” + +“Another time, Lizzy,” said her mother, “I would not dance with _him_, +if I were you.” + +“I believe, ma'am, I may safely promise you _never_ to dance with him.” + +“His pride,” said Miss Lucas, “does not offend _me_ so much as pride +often does, because there is an excuse for it. One cannot wonder that so +very fine a young man, with family, fortune, everything in his favour, +should think highly of himself. If I may so express it, he has a _right_ +to be proud.” + +“That is very true,” replied Elizabeth, “and I could easily forgive +_his_ pride, if he had not mortified _mine_.” + +“Pride,” observed Mary, who piqued herself upon the solidity of her +reflections, “is a very common failing, I believe. By all that I have +ever read, I am convinced that it is very common indeed; that human +nature is particularly prone to it, and that there are very few of us +who do not cherish a feeling of self-complacency on the score of some +quality or other, real or imaginary. Vanity and pride are different +things, though the words are often used synonymously. A person may +be proud without being vain. Pride relates more to our opinion of +ourselves, vanity to what we would have others think of us.” + +“If I were as rich as Mr. Darcy,” cried a young Lucas, who came with +his sisters, “I should not care how proud I was. I would keep a pack of +foxhounds, and drink a bottle of wine a day.” + +“Then you would drink a great deal more than you ought,” said Mrs. +Bennet; “and if I were to see you at it, I should take away your bottle +directly.” + +The boy protested that she should not; she continued to declare that she +would, and the argument ended only with the visit. + + + +Chapter 6 + + +The ladies of Longbourn soon waited on those of Netherfield. The visit +was soon returned in due form. Miss Bennet's pleasing manners grew on +the goodwill of Mrs. Hurst and Miss Bingley; and though the mother was +found to be intolerable, and the younger sisters not worth speaking to, +a wish of being better acquainted with _them_ was expressed towards +the two eldest. By Jane, this attention was received with the greatest +pleasure, but Elizabeth still saw superciliousness in their treatment +of everybody, hardly excepting even her sister, and could not like them; +though their kindness to Jane, such as it was, had a value as arising in +all probability from the influence of their brother's admiration. It +was generally evident whenever they met, that he _did_ admire her and +to _her_ it was equally evident that Jane was yielding to the preference +which she had begun to entertain for him from the first, and was in a +way to be very much in love; but she considered with pleasure that it +was not likely to be discovered by the world in general, since Jane +united, with great strength of feeling, a composure of temper and a +uniform cheerfulness of manner which would guard her from the suspicions +of the impertinent. She mentioned this to her friend Miss Lucas. + +“It may perhaps be pleasant,” replied Charlotte, “to be able to impose +on the public in such a case; but it is sometimes a disadvantage to be +so very guarded. If a woman conceals her affection with the same skill +from the object of it, she may lose the opportunity of fixing him; and +it will then be but poor consolation to believe the world equally in +the dark. There is so much of gratitude or vanity in almost every +attachment, that it is not safe to leave any to itself. We can all +_begin_ freely--a slight preference is natural enough; but there are +very few of us who have heart enough to be really in love without +encouragement. In nine cases out of ten a woman had better show _more_ +affection than she feels. Bingley likes your sister undoubtedly; but he +may never do more than like her, if she does not help him on.” + +“But she does help him on, as much as her nature will allow. If I can +perceive her regard for him, he must be a simpleton, indeed, not to +discover it too.” + +“Remember, Eliza, that he does not know Jane's disposition as you do.” + +“But if a woman is partial to a man, and does not endeavour to conceal +it, he must find it out.” + +“Perhaps he must, if he sees enough of her. But, though Bingley and Jane +meet tolerably often, it is never for many hours together; and, as they +always see each other in large mixed parties, it is impossible that +every moment should be employed in conversing together. Jane should +therefore make the most of every half-hour in which she can command his +attention. When she is secure of him, there will be more leisure for +falling in love as much as she chooses.” + +“Your plan is a good one,” replied Elizabeth, “where nothing is in +question but the desire of being well married, and if I were determined +to get a rich husband, or any husband, I dare say I should adopt it. But +these are not Jane's feelings; she is not acting by design. As yet, +she cannot even be certain of the degree of her own regard nor of its +reasonableness. She has known him only a fortnight. She danced four +dances with him at Meryton; she saw him one morning at his own house, +and has since dined with him in company four times. This is not quite +enough to make her understand his character.” + +“Not as you represent it. Had she merely _dined_ with him, she might +only have discovered whether he had a good appetite; but you must +remember that four evenings have also been spent together--and four +evenings may do a great deal.” + +“Yes; these four evenings have enabled them to ascertain that they +both like Vingt-un better than Commerce; but with respect to any other +leading characteristic, I do not imagine that much has been unfolded.” + +“Well,” said Charlotte, “I wish Jane success with all my heart; and +if she were married to him to-morrow, I should think she had as good a +chance of happiness as if she were to be studying his character for a +twelvemonth. Happiness in marriage is entirely a matter of chance. If +the dispositions of the parties are ever so well known to each other or +ever so similar beforehand, it does not advance their felicity in the +least. They always continue to grow sufficiently unlike afterwards to +have their share of vexation; and it is better to know as little as +possible of the defects of the person with whom you are to pass your +life.” + +“You make me laugh, Charlotte; but it is not sound. You know it is not +sound, and that you would never act in this way yourself.” + +Occupied in observing Mr. Bingley's attentions to her sister, Elizabeth +was far from suspecting that she was herself becoming an object of some +interest in the eyes of his friend. Mr. Darcy had at first scarcely +allowed her to be pretty; he had looked at her without admiration at the +ball; and when they next met, he looked at her only to criticise. But no +sooner had he made it clear to himself and his friends that she hardly +had a good feature in her face, than he began to find it was rendered +uncommonly intelligent by the beautiful expression of her dark eyes. To +this discovery succeeded some others equally mortifying. Though he had +detected with a critical eye more than one failure of perfect symmetry +in her form, he was forced to acknowledge her figure to be light and +pleasing; and in spite of his asserting that her manners were not those +of the fashionable world, he was caught by their easy playfulness. Of +this she was perfectly unaware; to her he was only the man who made +himself agreeable nowhere, and who had not thought her handsome enough +to dance with. + +He began to wish to know more of her, and as a step towards conversing +with her himself, attended to her conversation with others. His doing so +drew her notice. It was at Sir William Lucas's, where a large party were +assembled. + +“What does Mr. Darcy mean,” said she to Charlotte, “by listening to my +conversation with Colonel Forster?” + +“That is a question which Mr. Darcy only can answer.” + +“But if he does it any more I shall certainly let him know that I see +what he is about. He has a very satirical eye, and if I do not begin by +being impertinent myself, I shall soon grow afraid of him.” + +On his approaching them soon afterwards, though without seeming to have +any intention of speaking, Miss Lucas defied her friend to mention such +a subject to him; which immediately provoking Elizabeth to do it, she +turned to him and said: + +“Did you not think, Mr. Darcy, that I expressed myself uncommonly +well just now, when I was teasing Colonel Forster to give us a ball at +Meryton?” + +“With great energy; but it is always a subject which makes a lady +energetic.” + +“You are severe on us.” + +“It will be _her_ turn soon to be teased,” said Miss Lucas. “I am going +to open the instrument, Eliza, and you know what follows.” + +“You are a very strange creature by way of a friend!--always wanting me +to play and sing before anybody and everybody! If my vanity had taken +a musical turn, you would have been invaluable; but as it is, I would +really rather not sit down before those who must be in the habit of +hearing the very best performers.” On Miss Lucas's persevering, however, +she added, “Very well, if it must be so, it must.” And gravely glancing +at Mr. Darcy, “There is a fine old saying, which everybody here is of +course familiar with: 'Keep your breath to cool your porridge'; and I +shall keep mine to swell my song.” + +Her performance was pleasing, though by no means capital. After a song +or two, and before she could reply to the entreaties of several that +she would sing again, she was eagerly succeeded at the instrument by her +sister Mary, who having, in consequence of being the only plain one in +the family, worked hard for knowledge and accomplishments, was always +impatient for display. + +Mary had neither genius nor taste; and though vanity had given her +application, it had given her likewise a pedantic air and conceited +manner, which would have injured a higher degree of excellence than she +had reached. Elizabeth, easy and unaffected, had been listened to with +much more pleasure, though not playing half so well; and Mary, at the +end of a long concerto, was glad to purchase praise and gratitude by +Scotch and Irish airs, at the request of her younger sisters, who, +with some of the Lucases, and two or three officers, joined eagerly in +dancing at one end of the room. + +Mr. Darcy stood near them in silent indignation at such a mode of +passing the evening, to the exclusion of all conversation, and was too +much engrossed by his thoughts to perceive that Sir William Lucas was +his neighbour, till Sir William thus began: + +“What a charming amusement for young people this is, Mr. Darcy! There +is nothing like dancing after all. I consider it as one of the first +refinements of polished society.” + +“Certainly, sir; and it has the advantage also of being in vogue amongst +the less polished societies of the world. Every savage can dance.” + +Sir William only smiled. “Your friend performs delightfully,” he +continued after a pause, on seeing Bingley join the group; “and I doubt +not that you are an adept in the science yourself, Mr. Darcy.” + +“You saw me dance at Meryton, I believe, sir.” + +“Yes, indeed, and received no inconsiderable pleasure from the sight. Do +you often dance at St. James's?” + +“Never, sir.” + +“Do you not think it would be a proper compliment to the place?” + +“It is a compliment which I never pay to any place if I can avoid it.” + +“You have a house in town, I conclude?” + +Mr. Darcy bowed. + +“I had once had some thought of fixing in town myself--for I am fond +of superior society; but I did not feel quite certain that the air of +London would agree with Lady Lucas.” + +He paused in hopes of an answer; but his companion was not disposed +to make any; and Elizabeth at that instant moving towards them, he was +struck with the action of doing a very gallant thing, and called out to +her: + +“My dear Miss Eliza, why are you not dancing? Mr. Darcy, you must allow +me to present this young lady to you as a very desirable partner. You +cannot refuse to dance, I am sure when so much beauty is before you.” + And, taking her hand, he would have given it to Mr. Darcy who, though +extremely surprised, was not unwilling to receive it, when she instantly +drew back, and said with some discomposure to Sir William: + +“Indeed, sir, I have not the least intention of dancing. I entreat you +not to suppose that I moved this way in order to beg for a partner.” + +Mr. Darcy, with grave propriety, requested to be allowed the honour of +her hand, but in vain. Elizabeth was determined; nor did Sir William at +all shake her purpose by his attempt at persuasion. + +“You excel so much in the dance, Miss Eliza, that it is cruel to deny +me the happiness of seeing you; and though this gentleman dislikes the +amusement in general, he can have no objection, I am sure, to oblige us +for one half-hour.” + +“Mr. Darcy is all politeness,” said Elizabeth, smiling. + +“He is, indeed; but, considering the inducement, my dear Miss Eliza, +we cannot wonder at his complaisance--for who would object to such a +partner?” + +Elizabeth looked archly, and turned away. Her resistance had not +injured her with the gentleman, and he was thinking of her with some +complacency, when thus accosted by Miss Bingley: + +“I can guess the subject of your reverie.” + +“I should imagine not.” + +“You are considering how insupportable it would be to pass many evenings +in this manner--in such society; and indeed I am quite of your opinion. +I was never more annoyed! The insipidity, and yet the noise--the +nothingness, and yet the self-importance of all those people! What would +I give to hear your strictures on them!” + +“Your conjecture is totally wrong, I assure you. My mind was more +agreeably engaged. I have been meditating on the very great pleasure +which a pair of fine eyes in the face of a pretty woman can bestow.” + +Miss Bingley immediately fixed her eyes on his face, and desired he +would tell her what lady had the credit of inspiring such reflections. +Mr. Darcy replied with great intrepidity: + +“Miss Elizabeth Bennet.” + +“Miss Elizabeth Bennet!” repeated Miss Bingley. “I am all astonishment. +How long has she been such a favourite?--and pray, when am I to wish you +joy?” + +“That is exactly the question which I expected you to ask. A lady's +imagination is very rapid; it jumps from admiration to love, from love +to matrimony, in a moment. I knew you would be wishing me joy.” + +“Nay, if you are serious about it, I shall consider the matter is +absolutely settled. You will be having a charming mother-in-law, indeed; +and, of course, she will always be at Pemberley with you.” + +He listened to her with perfect indifference while she chose to +entertain herself in this manner; and as his composure convinced her +that all was safe, her wit flowed long. + + + +Chapter 7 + + +Mr. Bennet's property consisted almost entirely in an estate of two +thousand a year, which, unfortunately for his daughters, was entailed, +in default of heirs male, on a distant relation; and their mother's +fortune, though ample for her situation in life, could but ill supply +the deficiency of his. Her father had been an attorney in Meryton, and +had left her four thousand pounds. + +She had a sister married to a Mr. Phillips, who had been a clerk to +their father and succeeded him in the business, and a brother settled in +London in a respectable line of trade. + +The village of Longbourn was only one mile from Meryton; a most +convenient distance for the young ladies, who were usually tempted +thither three or four times a week, to pay their duty to their aunt and +to a milliner's shop just over the way. The two youngest of the family, +Catherine and Lydia, were particularly frequent in these attentions; +their minds were more vacant than their sisters', and when nothing +better offered, a walk to Meryton was necessary to amuse their morning +hours and furnish conversation for the evening; and however bare of news +the country in general might be, they always contrived to learn some +from their aunt. At present, indeed, they were well supplied both with +news and happiness by the recent arrival of a militia regiment in the +neighbourhood; it was to remain the whole winter, and Meryton was the +headquarters. + +Their visits to Mrs. Phillips were now productive of the most +interesting intelligence. Every day added something to their knowledge +of the officers' names and connections. Their lodgings were not long a +secret, and at length they began to know the officers themselves. Mr. +Phillips visited them all, and this opened to his nieces a store of +felicity unknown before. They could talk of nothing but officers; and +Mr. Bingley's large fortune, the mention of which gave animation +to their mother, was worthless in their eyes when opposed to the +regimentals of an ensign. + +After listening one morning to their effusions on this subject, Mr. +Bennet coolly observed: + +“From all that I can collect by your manner of talking, you must be two +of the silliest girls in the country. I have suspected it some time, but +I am now convinced.” + +Catherine was disconcerted, and made no answer; but Lydia, with perfect +indifference, continued to express her admiration of Captain Carter, +and her hope of seeing him in the course of the day, as he was going the +next morning to London. + +“I am astonished, my dear,” said Mrs. Bennet, “that you should be so +ready to think your own children silly. If I wished to think slightingly +of anybody's children, it should not be of my own, however.” + +“If my children are silly, I must hope to be always sensible of it.” + +“Yes--but as it happens, they are all of them very clever.” + +“This is the only point, I flatter myself, on which we do not agree. I +had hoped that our sentiments coincided in every particular, but I must +so far differ from you as to think our two youngest daughters uncommonly +foolish.” + +“My dear Mr. Bennet, you must not expect such girls to have the sense of +their father and mother. When they get to our age, I dare say they will +not think about officers any more than we do. I remember the time when +I liked a red coat myself very well--and, indeed, so I do still at my +heart; and if a smart young colonel, with five or six thousand a year, +should want one of my girls I shall not say nay to him; and I thought +Colonel Forster looked very becoming the other night at Sir William's in +his regimentals.” + +“Mamma,” cried Lydia, “my aunt says that Colonel Forster and Captain +Carter do not go so often to Miss Watson's as they did when they first +came; she sees them now very often standing in Clarke's library.” + +Mrs. Bennet was prevented replying by the entrance of the footman with +a note for Miss Bennet; it came from Netherfield, and the servant waited +for an answer. Mrs. Bennet's eyes sparkled with pleasure, and she was +eagerly calling out, while her daughter read, + +“Well, Jane, who is it from? What is it about? What does he say? Well, +Jane, make haste and tell us; make haste, my love.” + +“It is from Miss Bingley,” said Jane, and then read it aloud. + +“MY DEAR FRIEND,-- + +“If you are not so compassionate as to dine to-day with Louisa and me, +we shall be in danger of hating each other for the rest of our lives, +for a whole day's tete-a-tete between two women can never end without a +quarrel. Come as soon as you can on receipt of this. My brother and the +gentlemen are to dine with the officers.--Yours ever, + +“CAROLINE BINGLEY” + +“With the officers!” cried Lydia. “I wonder my aunt did not tell us of +_that_.” + +“Dining out,” said Mrs. Bennet, “that is very unlucky.” + +“Can I have the carriage?” said Jane. + +“No, my dear, you had better go on horseback, because it seems likely to +rain; and then you must stay all night.” + +“That would be a good scheme,” said Elizabeth, “if you were sure that +they would not offer to send her home.” + +“Oh! but the gentlemen will have Mr. Bingley's chaise to go to Meryton, +and the Hursts have no horses to theirs.” + +“I had much rather go in the coach.” + +“But, my dear, your father cannot spare the horses, I am sure. They are +wanted in the farm, Mr. Bennet, are they not?” + +“They are wanted in the farm much oftener than I can get them.” + +“But if you have got them to-day,” said Elizabeth, “my mother's purpose +will be answered.” + +She did at last extort from her father an acknowledgment that the horses +were engaged. Jane was therefore obliged to go on horseback, and her +mother attended her to the door with many cheerful prognostics of a +bad day. Her hopes were answered; Jane had not been gone long before +it rained hard. Her sisters were uneasy for her, but her mother was +delighted. The rain continued the whole evening without intermission; +Jane certainly could not come back. + +“This was a lucky idea of mine, indeed!” said Mrs. Bennet more than +once, as if the credit of making it rain were all her own. Till the +next morning, however, she was not aware of all the felicity of her +contrivance. Breakfast was scarcely over when a servant from Netherfield +brought the following note for Elizabeth: + +“MY DEAREST LIZZY,-- + +“I find myself very unwell this morning, which, I suppose, is to be +imputed to my getting wet through yesterday. My kind friends will not +hear of my returning till I am better. They insist also on my seeing Mr. +Jones--therefore do not be alarmed if you should hear of his having been +to me--and, excepting a sore throat and headache, there is not much the +matter with me.--Yours, etc.” + +“Well, my dear,” said Mr. Bennet, when Elizabeth had read the note +aloud, “if your daughter should have a dangerous fit of illness--if she +should die, it would be a comfort to know that it was all in pursuit of +Mr. Bingley, and under your orders.” + +“Oh! I am not afraid of her dying. People do not die of little trifling +colds. She will be taken good care of. As long as she stays there, it is +all very well. I would go and see her if I could have the carriage.” + +Elizabeth, feeling really anxious, was determined to go to her, though +the carriage was not to be had; and as she was no horsewoman, walking +was her only alternative. She declared her resolution. + +“How can you be so silly,” cried her mother, “as to think of such a +thing, in all this dirt! You will not be fit to be seen when you get +there.” + +“I shall be very fit to see Jane--which is all I want.” + +“Is this a hint to me, Lizzy,” said her father, “to send for the +horses?” + +“No, indeed, I do not wish to avoid the walk. The distance is nothing +when one has a motive; only three miles. I shall be back by dinner.” + +“I admire the activity of your benevolence,” observed Mary, “but every +impulse of feeling should be guided by reason; and, in my opinion, +exertion should always be in proportion to what is required.” + +“We will go as far as Meryton with you,” said Catherine and Lydia. +Elizabeth accepted their company, and the three young ladies set off +together. + +“If we make haste,” said Lydia, as they walked along, “perhaps we may +see something of Captain Carter before he goes.” + +In Meryton they parted; the two youngest repaired to the lodgings of one +of the officers' wives, and Elizabeth continued her walk alone, crossing +field after field at a quick pace, jumping over stiles and springing +over puddles with impatient activity, and finding herself at last +within view of the house, with weary ankles, dirty stockings, and a face +glowing with the warmth of exercise. + +She was shown into the breakfast-parlour, where all but Jane were +assembled, and where her appearance created a great deal of surprise. +That she should have walked three miles so early in the day, in such +dirty weather, and by herself, was almost incredible to Mrs. Hurst and +Miss Bingley; and Elizabeth was convinced that they held her in contempt +for it. She was received, however, very politely by them; and in their +brother's manners there was something better than politeness; there +was good humour and kindness. Mr. Darcy said very little, and Mr. +Hurst nothing at all. The former was divided between admiration of the +brilliancy which exercise had given to her complexion, and doubt as +to the occasion's justifying her coming so far alone. The latter was +thinking only of his breakfast. + +Her inquiries after her sister were not very favourably answered. Miss +Bennet had slept ill, and though up, was very feverish, and not +well enough to leave her room. Elizabeth was glad to be taken to her +immediately; and Jane, who had only been withheld by the fear of giving +alarm or inconvenience from expressing in her note how much she longed +for such a visit, was delighted at her entrance. She was not equal, +however, to much conversation, and when Miss Bingley left them +together, could attempt little besides expressions of gratitude for the +extraordinary kindness she was treated with. Elizabeth silently attended +her. + +When breakfast was over they were joined by the sisters; and Elizabeth +began to like them herself, when she saw how much affection and +solicitude they showed for Jane. The apothecary came, and having +examined his patient, said, as might be supposed, that she had caught +a violent cold, and that they must endeavour to get the better of it; +advised her to return to bed, and promised her some draughts. The advice +was followed readily, for the feverish symptoms increased, and her head +ached acutely. Elizabeth did not quit her room for a moment; nor were +the other ladies often absent; the gentlemen being out, they had, in +fact, nothing to do elsewhere. + +When the clock struck three, Elizabeth felt that she must go, and very +unwillingly said so. Miss Bingley offered her the carriage, and she only +wanted a little pressing to accept it, when Jane testified such concern +in parting with her, that Miss Bingley was obliged to convert the offer +of the chaise to an invitation to remain at Netherfield for the present. +Elizabeth most thankfully consented, and a servant was dispatched to +Longbourn to acquaint the family with her stay and bring back a supply +of clothes. + + + +Chapter 8 + + +At five o'clock the two ladies retired to dress, and at half-past six +Elizabeth was summoned to dinner. To the civil inquiries which then +poured in, and amongst which she had the pleasure of distinguishing the +much superior solicitude of Mr. Bingley's, she could not make a very +favourable answer. Jane was by no means better. The sisters, on hearing +this, repeated three or four times how much they were grieved, how +shocking it was to have a bad cold, and how excessively they disliked +being ill themselves; and then thought no more of the matter: and their +indifference towards Jane when not immediately before them restored +Elizabeth to the enjoyment of all her former dislike. + +Their brother, indeed, was the only one of the party whom she could +regard with any complacency. His anxiety for Jane was evident, and his +attentions to herself most pleasing, and they prevented her feeling +herself so much an intruder as she believed she was considered by the +others. She had very little notice from any but him. Miss Bingley was +engrossed by Mr. Darcy, her sister scarcely less so; and as for Mr. +Hurst, by whom Elizabeth sat, he was an indolent man, who lived only to +eat, drink, and play at cards; who, when he found her to prefer a plain +dish to a ragout, had nothing to say to her. + +When dinner was over, she returned directly to Jane, and Miss Bingley +began abusing her as soon as she was out of the room. Her manners were +pronounced to be very bad indeed, a mixture of pride and impertinence; +she had no conversation, no style, no beauty. Mrs. Hurst thought the +same, and added: + +“She has nothing, in short, to recommend her, but being an excellent +walker. I shall never forget her appearance this morning. She really +looked almost wild.” + +“She did, indeed, Louisa. I could hardly keep my countenance. Very +nonsensical to come at all! Why must _she_ be scampering about the +country, because her sister had a cold? Her hair, so untidy, so blowsy!” + +“Yes, and her petticoat; I hope you saw her petticoat, six inches deep +in mud, I am absolutely certain; and the gown which had been let down to +hide it not doing its office.” + +“Your picture may be very exact, Louisa,” said Bingley; “but this was +all lost upon me. I thought Miss Elizabeth Bennet looked remarkably +well when she came into the room this morning. Her dirty petticoat quite +escaped my notice.” + +“_You_ observed it, Mr. Darcy, I am sure,” said Miss Bingley; “and I am +inclined to think that you would not wish to see _your_ sister make such +an exhibition.” + +“Certainly not.” + +“To walk three miles, or four miles, or five miles, or whatever it is, +above her ankles in dirt, and alone, quite alone! What could she mean by +it? It seems to me to show an abominable sort of conceited independence, +a most country-town indifference to decorum.” + +“It shows an affection for her sister that is very pleasing,” said +Bingley. + +“I am afraid, Mr. Darcy,” observed Miss Bingley in a half whisper, “that +this adventure has rather affected your admiration of her fine eyes.” + +“Not at all,” he replied; “they were brightened by the exercise.” A +short pause followed this speech, and Mrs. Hurst began again: + +“I have an excessive regard for Miss Jane Bennet, she is really a very +sweet girl, and I wish with all my heart she were well settled. But with +such a father and mother, and such low connections, I am afraid there is +no chance of it.” + +“I think I have heard you say that their uncle is an attorney in +Meryton.” + +“Yes; and they have another, who lives somewhere near Cheapside.” + +“That is capital,” added her sister, and they both laughed heartily. + +“If they had uncles enough to fill _all_ Cheapside,” cried Bingley, “it +would not make them one jot less agreeable.” + +“But it must very materially lessen their chance of marrying men of any +consideration in the world,” replied Darcy. + +To this speech Bingley made no answer; but his sisters gave it their +hearty assent, and indulged their mirth for some time at the expense of +their dear friend's vulgar relations. + +With a renewal of tenderness, however, they returned to her room on +leaving the dining-parlour, and sat with her till summoned to coffee. +She was still very poorly, and Elizabeth would not quit her at all, till +late in the evening, when she had the comfort of seeing her sleep, and +when it seemed to her rather right than pleasant that she should go +downstairs herself. On entering the drawing-room she found the whole +party at loo, and was immediately invited to join them; but suspecting +them to be playing high she declined it, and making her sister the +excuse, said she would amuse herself for the short time she could stay +below, with a book. Mr. Hurst looked at her with astonishment. + +“Do you prefer reading to cards?” said he; “that is rather singular.” + +“Miss Eliza Bennet,” said Miss Bingley, “despises cards. She is a great +reader, and has no pleasure in anything else.” + +“I deserve neither such praise nor such censure,” cried Elizabeth; “I am +_not_ a great reader, and I have pleasure in many things.” + +“In nursing your sister I am sure you have pleasure,” said Bingley; “and +I hope it will be soon increased by seeing her quite well.” + +Elizabeth thanked him from her heart, and then walked towards the +table where a few books were lying. He immediately offered to fetch her +others--all that his library afforded. + +“And I wish my collection were larger for your benefit and my own +credit; but I am an idle fellow, and though I have not many, I have more +than I ever looked into.” + +Elizabeth assured him that she could suit herself perfectly with those +in the room. + +“I am astonished,” said Miss Bingley, “that my father should have left +so small a collection of books. What a delightful library you have at +Pemberley, Mr. Darcy!” + +“It ought to be good,” he replied, “it has been the work of many +generations.” + +“And then you have added so much to it yourself, you are always buying +books.” + +“I cannot comprehend the neglect of a family library in such days as +these.” + +“Neglect! I am sure you neglect nothing that can add to the beauties of +that noble place. Charles, when you build _your_ house, I wish it may be +half as delightful as Pemberley.” + +“I wish it may.” + +“But I would really advise you to make your purchase in that +neighbourhood, and take Pemberley for a kind of model. There is not a +finer county in England than Derbyshire.” + +“With all my heart; I will buy Pemberley itself if Darcy will sell it.” + +“I am talking of possibilities, Charles.” + +“Upon my word, Caroline, I should think it more possible to get +Pemberley by purchase than by imitation.” + +Elizabeth was so much caught with what passed, as to leave her very +little attention for her book; and soon laying it wholly aside, she drew +near the card-table, and stationed herself between Mr. Bingley and his +eldest sister, to observe the game. + +“Is Miss Darcy much grown since the spring?” said Miss Bingley; “will +she be as tall as I am?” + +“I think she will. She is now about Miss Elizabeth Bennet's height, or +rather taller.” + +“How I long to see her again! I never met with anybody who delighted me +so much. Such a countenance, such manners! And so extremely accomplished +for her age! Her performance on the pianoforte is exquisite.” + +“It is amazing to me,” said Bingley, “how young ladies can have patience +to be so very accomplished as they all are.” + +“All young ladies accomplished! My dear Charles, what do you mean?” + +“Yes, all of them, I think. They all paint tables, cover screens, and +net purses. I scarcely know anyone who cannot do all this, and I am sure +I never heard a young lady spoken of for the first time, without being +informed that she was very accomplished.” + +“Your list of the common extent of accomplishments,” said Darcy, “has +too much truth. The word is applied to many a woman who deserves it no +otherwise than by netting a purse or covering a screen. But I am very +far from agreeing with you in your estimation of ladies in general. I +cannot boast of knowing more than half-a-dozen, in the whole range of my +acquaintance, that are really accomplished.” + +“Nor I, I am sure,” said Miss Bingley. + +“Then,” observed Elizabeth, “you must comprehend a great deal in your +idea of an accomplished woman.” + +“Yes, I do comprehend a great deal in it.” + +“Oh! certainly,” cried his faithful assistant, “no one can be really +esteemed accomplished who does not greatly surpass what is usually met +with. A woman must have a thorough knowledge of music, singing, drawing, +dancing, and the modern languages, to deserve the word; and besides +all this, she must possess a certain something in her air and manner of +walking, the tone of her voice, her address and expressions, or the word +will be but half-deserved.” + +“All this she must possess,” added Darcy, “and to all this she must +yet add something more substantial, in the improvement of her mind by +extensive reading.” + +“I am no longer surprised at your knowing _only_ six accomplished women. +I rather wonder now at your knowing _any_.” + +“Are you so severe upon your own sex as to doubt the possibility of all +this?” + +“I never saw such a woman. I never saw such capacity, and taste, and +application, and elegance, as you describe united.” + +Mrs. Hurst and Miss Bingley both cried out against the injustice of her +implied doubt, and were both protesting that they knew many women who +answered this description, when Mr. Hurst called them to order, with +bitter complaints of their inattention to what was going forward. As all +conversation was thereby at an end, Elizabeth soon afterwards left the +room. + +“Elizabeth Bennet,” said Miss Bingley, when the door was closed on her, +“is one of those young ladies who seek to recommend themselves to the +other sex by undervaluing their own; and with many men, I dare say, it +succeeds. But, in my opinion, it is a paltry device, a very mean art.” + +“Undoubtedly,” replied Darcy, to whom this remark was chiefly addressed, +“there is a meanness in _all_ the arts which ladies sometimes condescend +to employ for captivation. Whatever bears affinity to cunning is +despicable.” + +Miss Bingley was not so entirely satisfied with this reply as to +continue the subject. + +Elizabeth joined them again only to say that her sister was worse, and +that she could not leave her. Bingley urged Mr. Jones being sent for +immediately; while his sisters, convinced that no country advice could +be of any service, recommended an express to town for one of the most +eminent physicians. This she would not hear of; but she was not so +unwilling to comply with their brother's proposal; and it was settled +that Mr. Jones should be sent for early in the morning, if Miss Bennet +were not decidedly better. Bingley was quite uncomfortable; his sisters +declared that they were miserable. They solaced their wretchedness, +however, by duets after supper, while he could find no better relief +to his feelings than by giving his housekeeper directions that every +attention might be paid to the sick lady and her sister. + + + +Chapter 9 + + +Elizabeth passed the chief of the night in her sister's room, and in the +morning had the pleasure of being able to send a tolerable answer to the +inquiries which she very early received from Mr. Bingley by a housemaid, +and some time afterwards from the two elegant ladies who waited on his +sisters. In spite of this amendment, however, she requested to have a +note sent to Longbourn, desiring her mother to visit Jane, and form her +own judgement of her situation. The note was immediately dispatched, and +its contents as quickly complied with. Mrs. Bennet, accompanied by her +two youngest girls, reached Netherfield soon after the family breakfast. + +Had she found Jane in any apparent danger, Mrs. Bennet would have been +very miserable; but being satisfied on seeing her that her illness was +not alarming, she had no wish of her recovering immediately, as her +restoration to health would probably remove her from Netherfield. She +would not listen, therefore, to her daughter's proposal of being carried +home; neither did the apothecary, who arrived about the same time, think +it at all advisable. After sitting a little while with Jane, on Miss +Bingley's appearance and invitation, the mother and three daughters all +attended her into the breakfast parlour. Bingley met them with hopes +that Mrs. Bennet had not found Miss Bennet worse than she expected. + +“Indeed I have, sir,” was her answer. “She is a great deal too ill to be +moved. Mr. Jones says we must not think of moving her. We must trespass +a little longer on your kindness.” + +“Removed!” cried Bingley. “It must not be thought of. My sister, I am +sure, will not hear of her removal.” + +“You may depend upon it, Madam,” said Miss Bingley, with cold civility, +“that Miss Bennet will receive every possible attention while she +remains with us.” + +Mrs. Bennet was profuse in her acknowledgments. + +“I am sure,” she added, “if it was not for such good friends I do not +know what would become of her, for she is very ill indeed, and suffers +a vast deal, though with the greatest patience in the world, which is +always the way with her, for she has, without exception, the sweetest +temper I have ever met with. I often tell my other girls they are +nothing to _her_. You have a sweet room here, Mr. Bingley, and a +charming prospect over the gravel walk. I do not know a place in the +country that is equal to Netherfield. You will not think of quitting it +in a hurry, I hope, though you have but a short lease.” + +“Whatever I do is done in a hurry,” replied he; “and therefore if I +should resolve to quit Netherfield, I should probably be off in five +minutes. At present, however, I consider myself as quite fixed here.” + +“That is exactly what I should have supposed of you,” said Elizabeth. + +“You begin to comprehend me, do you?” cried he, turning towards her. + +“Oh! yes--I understand you perfectly.” + +“I wish I might take this for a compliment; but to be so easily seen +through I am afraid is pitiful.” + +“That is as it happens. It does not follow that a deep, intricate +character is more or less estimable than such a one as yours.” + +“Lizzy,” cried her mother, “remember where you are, and do not run on in +the wild manner that you are suffered to do at home.” + +“I did not know before,” continued Bingley immediately, “that you were a +studier of character. It must be an amusing study.” + +“Yes, but intricate characters are the _most_ amusing. They have at +least that advantage.” + +“The country,” said Darcy, “can in general supply but a few subjects for +such a study. In a country neighbourhood you move in a very confined and +unvarying society.” + +“But people themselves alter so much, that there is something new to be +observed in them for ever.” + +“Yes, indeed,” cried Mrs. Bennet, offended by his manner of mentioning +a country neighbourhood. “I assure you there is quite as much of _that_ +going on in the country as in town.” + +Everybody was surprised, and Darcy, after looking at her for a moment, +turned silently away. Mrs. Bennet, who fancied she had gained a complete +victory over him, continued her triumph. + +“I cannot see that London has any great advantage over the country, for +my part, except the shops and public places. The country is a vast deal +pleasanter, is it not, Mr. Bingley?” + +“When I am in the country,” he replied, “I never wish to leave it; +and when I am in town it is pretty much the same. They have each their +advantages, and I can be equally happy in either.” + +“Aye--that is because you have the right disposition. But that +gentleman,” looking at Darcy, “seemed to think the country was nothing +at all.” + +“Indeed, Mamma, you are mistaken,” said Elizabeth, blushing for her +mother. “You quite mistook Mr. Darcy. He only meant that there was not +such a variety of people to be met with in the country as in the town, +which you must acknowledge to be true.” + +“Certainly, my dear, nobody said there were; but as to not meeting +with many people in this neighbourhood, I believe there are few +neighbourhoods larger. I know we dine with four-and-twenty families.” + +Nothing but concern for Elizabeth could enable Bingley to keep his +countenance. His sister was less delicate, and directed her eyes towards +Mr. Darcy with a very expressive smile. Elizabeth, for the sake of +saying something that might turn her mother's thoughts, now asked her if +Charlotte Lucas had been at Longbourn since _her_ coming away. + +“Yes, she called yesterday with her father. What an agreeable man Sir +William is, Mr. Bingley, is not he? So much the man of fashion! So +genteel and easy! He has always something to say to everybody. _That_ +is my idea of good breeding; and those persons who fancy themselves very +important, and never open their mouths, quite mistake the matter.” + +“Did Charlotte dine with you?” + +“No, she would go home. I fancy she was wanted about the mince-pies. For +my part, Mr. Bingley, I always keep servants that can do their own work; +_my_ daughters are brought up very differently. But everybody is to +judge for themselves, and the Lucases are a very good sort of girls, +I assure you. It is a pity they are not handsome! Not that I think +Charlotte so _very_ plain--but then she is our particular friend.” + +“She seems a very pleasant young woman.” + +“Oh! dear, yes; but you must own she is very plain. Lady Lucas herself +has often said so, and envied me Jane's beauty. I do not like to boast +of my own child, but to be sure, Jane--one does not often see anybody +better looking. It is what everybody says. I do not trust my own +partiality. When she was only fifteen, there was a man at my brother +Gardiner's in town so much in love with her that my sister-in-law was +sure he would make her an offer before we came away. But, however, he +did not. Perhaps he thought her too young. However, he wrote some verses +on her, and very pretty they were.” + +“And so ended his affection,” said Elizabeth impatiently. “There has +been many a one, I fancy, overcome in the same way. I wonder who first +discovered the efficacy of poetry in driving away love!” + +“I have been used to consider poetry as the _food_ of love,” said Darcy. + +“Of a fine, stout, healthy love it may. Everything nourishes what is +strong already. But if it be only a slight, thin sort of inclination, I +am convinced that one good sonnet will starve it entirely away.” + +Darcy only smiled; and the general pause which ensued made Elizabeth +tremble lest her mother should be exposing herself again. She longed to +speak, but could think of nothing to say; and after a short silence Mrs. +Bennet began repeating her thanks to Mr. Bingley for his kindness to +Jane, with an apology for troubling him also with Lizzy. Mr. Bingley was +unaffectedly civil in his answer, and forced his younger sister to be +civil also, and say what the occasion required. She performed her part +indeed without much graciousness, but Mrs. Bennet was satisfied, and +soon afterwards ordered her carriage. Upon this signal, the youngest of +her daughters put herself forward. The two girls had been whispering to +each other during the whole visit, and the result of it was, that the +youngest should tax Mr. Bingley with having promised on his first coming +into the country to give a ball at Netherfield. + +Lydia was a stout, well-grown girl of fifteen, with a fine complexion +and good-humoured countenance; a favourite with her mother, whose +affection had brought her into public at an early age. She had high +animal spirits, and a sort of natural self-consequence, which the +attention of the officers, to whom her uncle's good dinners, and her own +easy manners recommended her, had increased into assurance. She was very +equal, therefore, to address Mr. Bingley on the subject of the ball, and +abruptly reminded him of his promise; adding, that it would be the most +shameful thing in the world if he did not keep it. His answer to this +sudden attack was delightful to their mother's ear: + +“I am perfectly ready, I assure you, to keep my engagement; and when +your sister is recovered, you shall, if you please, name the very day of +the ball. But you would not wish to be dancing when she is ill.” + +Lydia declared herself satisfied. “Oh! yes--it would be much better to +wait till Jane was well, and by that time most likely Captain Carter +would be at Meryton again. And when you have given _your_ ball,” she +added, “I shall insist on their giving one also. I shall tell Colonel +Forster it will be quite a shame if he does not.” + +Mrs. Bennet and her daughters then departed, and Elizabeth returned +instantly to Jane, leaving her own and her relations' behaviour to the +remarks of the two ladies and Mr. Darcy; the latter of whom, however, +could not be prevailed on to join in their censure of _her_, in spite of +all Miss Bingley's witticisms on _fine eyes_. + + + +Chapter 10 + + +The day passed much as the day before had done. Mrs. Hurst and Miss +Bingley had spent some hours of the morning with the invalid, who +continued, though slowly, to mend; and in the evening Elizabeth joined +their party in the drawing-room. The loo-table, however, did not appear. +Mr. Darcy was writing, and Miss Bingley, seated near him, was watching +the progress of his letter and repeatedly calling off his attention by +messages to his sister. Mr. Hurst and Mr. Bingley were at piquet, and +Mrs. Hurst was observing their game. + +Elizabeth took up some needlework, and was sufficiently amused in +attending to what passed between Darcy and his companion. The perpetual +commendations of the lady, either on his handwriting, or on the evenness +of his lines, or on the length of his letter, with the perfect unconcern +with which her praises were received, formed a curious dialogue, and was +exactly in union with her opinion of each. + +“How delighted Miss Darcy will be to receive such a letter!” + +He made no answer. + +“You write uncommonly fast.” + +“You are mistaken. I write rather slowly.” + +“How many letters you must have occasion to write in the course of a +year! Letters of business, too! How odious I should think them!” + +“It is fortunate, then, that they fall to my lot instead of yours.” + +“Pray tell your sister that I long to see her.” + +“I have already told her so once, by your desire.” + +“I am afraid you do not like your pen. Let me mend it for you. I mend +pens remarkably well.” + +“Thank you--but I always mend my own.” + +“How can you contrive to write so even?” + +He was silent. + +“Tell your sister I am delighted to hear of her improvement on the harp; +and pray let her know that I am quite in raptures with her beautiful +little design for a table, and I think it infinitely superior to Miss +Grantley's.” + +“Will you give me leave to defer your raptures till I write again? At +present I have not room to do them justice.” + +“Oh! it is of no consequence. I shall see her in January. But do you +always write such charming long letters to her, Mr. Darcy?” + +“They are generally long; but whether always charming it is not for me +to determine.” + +“It is a rule with me, that a person who can write a long letter with +ease, cannot write ill.” + +“That will not do for a compliment to Darcy, Caroline,” cried her +brother, “because he does _not_ write with ease. He studies too much for +words of four syllables. Do not you, Darcy?” + +“My style of writing is very different from yours.” + +“Oh!” cried Miss Bingley, “Charles writes in the most careless way +imaginable. He leaves out half his words, and blots the rest.” + +“My ideas flow so rapidly that I have not time to express them--by which +means my letters sometimes convey no ideas at all to my correspondents.” + +“Your humility, Mr. Bingley,” said Elizabeth, “must disarm reproof.” + +“Nothing is more deceitful,” said Darcy, “than the appearance of +humility. It is often only carelessness of opinion, and sometimes an +indirect boast.” + +“And which of the two do you call _my_ little recent piece of modesty?” + +“The indirect boast; for you are really proud of your defects in +writing, because you consider them as proceeding from a rapidity of +thought and carelessness of execution, which, if not estimable, you +think at least highly interesting. The power of doing anything with +quickness is always prized much by the possessor, and often without any +attention to the imperfection of the performance. When you told Mrs. +Bennet this morning that if you ever resolved upon quitting Netherfield +you should be gone in five minutes, you meant it to be a sort of +panegyric, of compliment to yourself--and yet what is there so very +laudable in a precipitance which must leave very necessary business +undone, and can be of no real advantage to yourself or anyone else?” + +“Nay,” cried Bingley, “this is too much, to remember at night all the +foolish things that were said in the morning. And yet, upon my honour, +I believe what I said of myself to be true, and I believe it at this +moment. At least, therefore, I did not assume the character of needless +precipitance merely to show off before the ladies.” + +“I dare say you believed it; but I am by no means convinced that +you would be gone with such celerity. Your conduct would be quite as +dependent on chance as that of any man I know; and if, as you were +mounting your horse, a friend were to say, 'Bingley, you had better +stay till next week,' you would probably do it, you would probably not +go--and at another word, might stay a month.” + +“You have only proved by this,” cried Elizabeth, “that Mr. Bingley did +not do justice to his own disposition. You have shown him off now much +more than he did himself.” + +“I am exceedingly gratified,” said Bingley, “by your converting what my +friend says into a compliment on the sweetness of my temper. But I am +afraid you are giving it a turn which that gentleman did by no means +intend; for he would certainly think better of me, if under such a +circumstance I were to give a flat denial, and ride off as fast as I +could.” + +“Would Mr. Darcy then consider the rashness of your original intentions +as atoned for by your obstinacy in adhering to it?” + +“Upon my word, I cannot exactly explain the matter; Darcy must speak for +himself.” + +“You expect me to account for opinions which you choose to call mine, +but which I have never acknowledged. Allowing the case, however, to +stand according to your representation, you must remember, Miss Bennet, +that the friend who is supposed to desire his return to the house, and +the delay of his plan, has merely desired it, asked it without offering +one argument in favour of its propriety.” + +“To yield readily--easily--to the _persuasion_ of a friend is no merit +with you.” + +“To yield without conviction is no compliment to the understanding of +either.” + +“You appear to me, Mr. Darcy, to allow nothing for the influence of +friendship and affection. A regard for the requester would often make +one readily yield to a request, without waiting for arguments to reason +one into it. I am not particularly speaking of such a case as you have +supposed about Mr. Bingley. We may as well wait, perhaps, till the +circumstance occurs before we discuss the discretion of his behaviour +thereupon. But in general and ordinary cases between friend and friend, +where one of them is desired by the other to change a resolution of no +very great moment, should you think ill of that person for complying +with the desire, without waiting to be argued into it?” + +“Will it not be advisable, before we proceed on this subject, to +arrange with rather more precision the degree of importance which is to +appertain to this request, as well as the degree of intimacy subsisting +between the parties?” + +“By all means,” cried Bingley; “let us hear all the particulars, not +forgetting their comparative height and size; for that will have more +weight in the argument, Miss Bennet, than you may be aware of. I assure +you, that if Darcy were not such a great tall fellow, in comparison with +myself, I should not pay him half so much deference. I declare I do not +know a more awful object than Darcy, on particular occasions, and in +particular places; at his own house especially, and of a Sunday evening, +when he has nothing to do.” + +Mr. Darcy smiled; but Elizabeth thought she could perceive that he was +rather offended, and therefore checked her laugh. Miss Bingley warmly +resented the indignity he had received, in an expostulation with her +brother for talking such nonsense. + +“I see your design, Bingley,” said his friend. “You dislike an argument, +and want to silence this.” + +“Perhaps I do. Arguments are too much like disputes. If you and Miss +Bennet will defer yours till I am out of the room, I shall be very +thankful; and then you may say whatever you like of me.” + +“What you ask,” said Elizabeth, “is no sacrifice on my side; and Mr. +Darcy had much better finish his letter.” + +Mr. Darcy took her advice, and did finish his letter. + +When that business was over, he applied to Miss Bingley and Elizabeth +for an indulgence of some music. Miss Bingley moved with some alacrity +to the pianoforte; and, after a polite request that Elizabeth would lead +the way which the other as politely and more earnestly negatived, she +seated herself. + +Mrs. Hurst sang with her sister, and while they were thus employed, +Elizabeth could not help observing, as she turned over some music-books +that lay on the instrument, how frequently Mr. Darcy's eyes were fixed +on her. She hardly knew how to suppose that she could be an object of +admiration to so great a man; and yet that he should look at her +because he disliked her, was still more strange. She could only imagine, +however, at last that she drew his notice because there was something +more wrong and reprehensible, according to his ideas of right, than in +any other person present. The supposition did not pain her. She liked +him too little to care for his approbation. + +After playing some Italian songs, Miss Bingley varied the charm by +a lively Scotch air; and soon afterwards Mr. Darcy, drawing near +Elizabeth, said to her: + +“Do not you feel a great inclination, Miss Bennet, to seize such an +opportunity of dancing a reel?” + +She smiled, but made no answer. He repeated the question, with some +surprise at her silence. + +“Oh!” said she, “I heard you before, but I could not immediately +determine what to say in reply. You wanted me, I know, to say 'Yes,' +that you might have the pleasure of despising my taste; but I always +delight in overthrowing those kind of schemes, and cheating a person of +their premeditated contempt. I have, therefore, made up my mind to tell +you, that I do not want to dance a reel at all--and now despise me if +you dare.” + +“Indeed I do not dare.” + +Elizabeth, having rather expected to affront him, was amazed at his +gallantry; but there was a mixture of sweetness and archness in her +manner which made it difficult for her to affront anybody; and Darcy +had never been so bewitched by any woman as he was by her. He really +believed, that were it not for the inferiority of her connections, he +should be in some danger. + +Miss Bingley saw, or suspected enough to be jealous; and her great +anxiety for the recovery of her dear friend Jane received some +assistance from her desire of getting rid of Elizabeth. + +She often tried to provoke Darcy into disliking her guest, by talking of +their supposed marriage, and planning his happiness in such an alliance. + +“I hope,” said she, as they were walking together in the shrubbery +the next day, “you will give your mother-in-law a few hints, when this +desirable event takes place, as to the advantage of holding her tongue; +and if you can compass it, do cure the younger girls of running after +officers. And, if I may mention so delicate a subject, endeavour to +check that little something, bordering on conceit and impertinence, +which your lady possesses.” + +“Have you anything else to propose for my domestic felicity?” + +“Oh! yes. Do let the portraits of your uncle and aunt Phillips be placed +in the gallery at Pemberley. Put them next to your great-uncle the +judge. They are in the same profession, you know, only in different +lines. As for your Elizabeth's picture, you must not have it taken, for +what painter could do justice to those beautiful eyes?” + +“It would not be easy, indeed, to catch their expression, but their +colour and shape, and the eyelashes, so remarkably fine, might be +copied.” + +At that moment they were met from another walk by Mrs. Hurst and +Elizabeth herself. + +“I did not know that you intended to walk,” said Miss Bingley, in some +confusion, lest they had been overheard. + +“You used us abominably ill,” answered Mrs. Hurst, “running away without +telling us that you were coming out.” + +Then taking the disengaged arm of Mr. Darcy, she left Elizabeth to walk +by herself. The path just admitted three. Mr. Darcy felt their rudeness, +and immediately said: + +“This walk is not wide enough for our party. We had better go into the +avenue.” + +But Elizabeth, who had not the least inclination to remain with them, +laughingly answered: + +“No, no; stay where you are. You are charmingly grouped, and appear +to uncommon advantage. The picturesque would be spoilt by admitting a +fourth. Good-bye.” + +She then ran gaily off, rejoicing as she rambled about, in the hope of +being at home again in a day or two. Jane was already so much recovered +as to intend leaving her room for a couple of hours that evening. + + + +Chapter 11 + + +When the ladies removed after dinner, Elizabeth ran up to her +sister, and seeing her well guarded from cold, attended her into the +drawing-room, where she was welcomed by her two friends with many +professions of pleasure; and Elizabeth had never seen them so agreeable +as they were during the hour which passed before the gentlemen appeared. +Their powers of conversation were considerable. They could describe an +entertainment with accuracy, relate an anecdote with humour, and laugh +at their acquaintance with spirit. + +But when the gentlemen entered, Jane was no longer the first object; +Miss Bingley's eyes were instantly turned toward Darcy, and she had +something to say to him before he had advanced many steps. He addressed +himself to Miss Bennet, with a polite congratulation; Mr. Hurst also +made her a slight bow, and said he was “very glad;” but diffuseness +and warmth remained for Bingley's salutation. He was full of joy and +attention. The first half-hour was spent in piling up the fire, lest she +should suffer from the change of room; and she removed at his desire +to the other side of the fireplace, that she might be further from +the door. He then sat down by her, and talked scarcely to anyone +else. Elizabeth, at work in the opposite corner, saw it all with great +delight. + +When tea was over, Mr. Hurst reminded his sister-in-law of the +card-table--but in vain. She had obtained private intelligence that Mr. +Darcy did not wish for cards; and Mr. Hurst soon found even his open +petition rejected. She assured him that no one intended to play, and +the silence of the whole party on the subject seemed to justify her. Mr. +Hurst had therefore nothing to do, but to stretch himself on one of the +sofas and go to sleep. Darcy took up a book; Miss Bingley did the same; +and Mrs. Hurst, principally occupied in playing with her bracelets +and rings, joined now and then in her brother's conversation with Miss +Bennet. + +Miss Bingley's attention was quite as much engaged in watching Mr. +Darcy's progress through _his_ book, as in reading her own; and she +was perpetually either making some inquiry, or looking at his page. She +could not win him, however, to any conversation; he merely answered her +question, and read on. At length, quite exhausted by the attempt to be +amused with her own book, which she had only chosen because it was the +second volume of his, she gave a great yawn and said, “How pleasant +it is to spend an evening in this way! I declare after all there is no +enjoyment like reading! How much sooner one tires of anything than of a +book! When I have a house of my own, I shall be miserable if I have not +an excellent library.” + +No one made any reply. She then yawned again, threw aside her book, and +cast her eyes round the room in quest for some amusement; when hearing +her brother mentioning a ball to Miss Bennet, she turned suddenly +towards him and said: + +“By the bye, Charles, are you really serious in meditating a dance at +Netherfield? I would advise you, before you determine on it, to consult +the wishes of the present party; I am much mistaken if there are +not some among us to whom a ball would be rather a punishment than a +pleasure.” + +“If you mean Darcy,” cried her brother, “he may go to bed, if he +chooses, before it begins--but as for the ball, it is quite a settled +thing; and as soon as Nicholls has made white soup enough, I shall send +round my cards.” + +“I should like balls infinitely better,” she replied, “if they were +carried on in a different manner; but there is something insufferably +tedious in the usual process of such a meeting. It would surely be much +more rational if conversation instead of dancing were made the order of +the day.” + +“Much more rational, my dear Caroline, I dare say, but it would not be +near so much like a ball.” + +Miss Bingley made no answer, and soon afterwards she got up and walked +about the room. Her figure was elegant, and she walked well; but +Darcy, at whom it was all aimed, was still inflexibly studious. In +the desperation of her feelings, she resolved on one effort more, and, +turning to Elizabeth, said: + +“Miss Eliza Bennet, let me persuade you to follow my example, and take a +turn about the room. I assure you it is very refreshing after sitting so +long in one attitude.” + +Elizabeth was surprised, but agreed to it immediately. Miss Bingley +succeeded no less in the real object of her civility; Mr. Darcy looked +up. He was as much awake to the novelty of attention in that quarter as +Elizabeth herself could be, and unconsciously closed his book. He was +directly invited to join their party, but he declined it, observing that +he could imagine but two motives for their choosing to walk up and down +the room together, with either of which motives his joining them would +interfere. “What could he mean? She was dying to know what could be his +meaning?”--and asked Elizabeth whether she could at all understand him? + +“Not at all,” was her answer; “but depend upon it, he means to be severe +on us, and our surest way of disappointing him will be to ask nothing +about it.” + +Miss Bingley, however, was incapable of disappointing Mr. Darcy in +anything, and persevered therefore in requiring an explanation of his +two motives. + +“I have not the smallest objection to explaining them,” said he, as soon +as she allowed him to speak. “You either choose this method of passing +the evening because you are in each other's confidence, and have secret +affairs to discuss, or because you are conscious that your figures +appear to the greatest advantage in walking; if the first, I would be +completely in your way, and if the second, I can admire you much better +as I sit by the fire.” + +“Oh! shocking!” cried Miss Bingley. “I never heard anything so +abominable. How shall we punish him for such a speech?” + +“Nothing so easy, if you have but the inclination,” said Elizabeth. “We +can all plague and punish one another. Tease him--laugh at him. Intimate +as you are, you must know how it is to be done.” + +“But upon my honour, I do _not_. I do assure you that my intimacy has +not yet taught me _that_. Tease calmness of manner and presence of +mind! No, no; I feel he may defy us there. And as to laughter, we will +not expose ourselves, if you please, by attempting to laugh without a +subject. Mr. Darcy may hug himself.” + +“Mr. Darcy is not to be laughed at!” cried Elizabeth. “That is an +uncommon advantage, and uncommon I hope it will continue, for it would +be a great loss to _me_ to have many such acquaintances. I dearly love a +laugh.” + +“Miss Bingley,” said he, “has given me more credit than can be. +The wisest and the best of men--nay, the wisest and best of their +actions--may be rendered ridiculous by a person whose first object in +life is a joke.” + +“Certainly,” replied Elizabeth--“there are such people, but I hope I +am not one of _them_. I hope I never ridicule what is wise and good. +Follies and nonsense, whims and inconsistencies, _do_ divert me, I own, +and I laugh at them whenever I can. But these, I suppose, are precisely +what you are without.” + +“Perhaps that is not possible for anyone. But it has been the study +of my life to avoid those weaknesses which often expose a strong +understanding to ridicule.” + +“Such as vanity and pride.” + +“Yes, vanity is a weakness indeed. But pride--where there is a real +superiority of mind, pride will be always under good regulation.” + +Elizabeth turned away to hide a smile. + +“Your examination of Mr. Darcy is over, I presume,” said Miss Bingley; +“and pray what is the result?” + +“I am perfectly convinced by it that Mr. Darcy has no defect. He owns it +himself without disguise.” + +“No,” said Darcy, “I have made no such pretension. I have faults enough, +but they are not, I hope, of understanding. My temper I dare not vouch +for. It is, I believe, too little yielding--certainly too little for the +convenience of the world. I cannot forget the follies and vices of others +so soon as I ought, nor their offenses against myself. My feelings +are not puffed about with every attempt to move them. My temper +would perhaps be called resentful. My good opinion once lost, is lost +forever.” + +“_That_ is a failing indeed!” cried Elizabeth. “Implacable resentment +_is_ a shade in a character. But you have chosen your fault well. I +really cannot _laugh_ at it. You are safe from me.” + +“There is, I believe, in every disposition a tendency to some particular +evil--a natural defect, which not even the best education can overcome.” + +“And _your_ defect is to hate everybody.” + +“And yours,” he replied with a smile, “is willfully to misunderstand +them.” + +“Do let us have a little music,” cried Miss Bingley, tired of a +conversation in which she had no share. “Louisa, you will not mind my +waking Mr. Hurst?” + +Her sister had not the smallest objection, and the pianoforte was +opened; and Darcy, after a few moments' recollection, was not sorry for +it. He began to feel the danger of paying Elizabeth too much attention. + + + +Chapter 12 + + +In consequence of an agreement between the sisters, Elizabeth wrote the +next morning to their mother, to beg that the carriage might be sent for +them in the course of the day. But Mrs. Bennet, who had calculated on +her daughters remaining at Netherfield till the following Tuesday, which +would exactly finish Jane's week, could not bring herself to receive +them with pleasure before. Her answer, therefore, was not propitious, at +least not to Elizabeth's wishes, for she was impatient to get home. Mrs. +Bennet sent them word that they could not possibly have the carriage +before Tuesday; and in her postscript it was added, that if Mr. Bingley +and his sister pressed them to stay longer, she could spare them +very well. Against staying longer, however, Elizabeth was positively +resolved--nor did she much expect it would be asked; and fearful, on the +contrary, as being considered as intruding themselves needlessly long, +she urged Jane to borrow Mr. Bingley's carriage immediately, and at +length it was settled that their original design of leaving Netherfield +that morning should be mentioned, and the request made. + +The communication excited many professions of concern; and enough was +said of wishing them to stay at least till the following day to work +on Jane; and till the morrow their going was deferred. Miss Bingley was +then sorry that she had proposed the delay, for her jealousy and dislike +of one sister much exceeded her affection for the other. + +The master of the house heard with real sorrow that they were to go so +soon, and repeatedly tried to persuade Miss Bennet that it would not be +safe for her--that she was not enough recovered; but Jane was firm where +she felt herself to be right. + +To Mr. Darcy it was welcome intelligence--Elizabeth had been at +Netherfield long enough. She attracted him more than he liked--and Miss +Bingley was uncivil to _her_, and more teasing than usual to himself. +He wisely resolved to be particularly careful that no sign of admiration +should _now_ escape him, nothing that could elevate her with the hope +of influencing his felicity; sensible that if such an idea had been +suggested, his behaviour during the last day must have material weight +in confirming or crushing it. Steady to his purpose, he scarcely spoke +ten words to her through the whole of Saturday, and though they were +at one time left by themselves for half-an-hour, he adhered most +conscientiously to his book, and would not even look at her. + +On Sunday, after morning service, the separation, so agreeable to almost +all, took place. Miss Bingley's civility to Elizabeth increased at last +very rapidly, as well as her affection for Jane; and when they parted, +after assuring the latter of the pleasure it would always give her +to see her either at Longbourn or Netherfield, and embracing her most +tenderly, she even shook hands with the former. Elizabeth took leave of +the whole party in the liveliest of spirits. + +They were not welcomed home very cordially by their mother. Mrs. Bennet +wondered at their coming, and thought them very wrong to give so much +trouble, and was sure Jane would have caught cold again. But their +father, though very laconic in his expressions of pleasure, was really +glad to see them; he had felt their importance in the family circle. The +evening conversation, when they were all assembled, had lost much of +its animation, and almost all its sense by the absence of Jane and +Elizabeth. + +They found Mary, as usual, deep in the study of thorough-bass and human +nature; and had some extracts to admire, and some new observations of +threadbare morality to listen to. Catherine and Lydia had information +for them of a different sort. Much had been done and much had been said +in the regiment since the preceding Wednesday; several of the officers +had dined lately with their uncle, a private had been flogged, and it +had actually been hinted that Colonel Forster was going to be married. + + + +Chapter 13 + + +“I hope, my dear,” said Mr. Bennet to his wife, as they were at +breakfast the next morning, “that you have ordered a good dinner to-day, +because I have reason to expect an addition to our family party.” + +“Who do you mean, my dear? I know of nobody that is coming, I am sure, +unless Charlotte Lucas should happen to call in--and I hope _my_ dinners +are good enough for her. I do not believe she often sees such at home.” + +“The person of whom I speak is a gentleman, and a stranger.” + +Mrs. Bennet's eyes sparkled. “A gentleman and a stranger! It is Mr. +Bingley, I am sure! Well, I am sure I shall be extremely glad to see Mr. +Bingley. But--good Lord! how unlucky! There is not a bit of fish to be +got to-day. Lydia, my love, ring the bell--I must speak to Hill this +moment.” + +“It is _not_ Mr. Bingley,” said her husband; “it is a person whom I +never saw in the whole course of my life.” + +This roused a general astonishment; and he had the pleasure of being +eagerly questioned by his wife and his five daughters at once. + +After amusing himself some time with their curiosity, he thus explained: + +“About a month ago I received this letter; and about a fortnight ago +I answered it, for I thought it a case of some delicacy, and requiring +early attention. It is from my cousin, Mr. Collins, who, when I am dead, +may turn you all out of this house as soon as he pleases.” + +“Oh! my dear,” cried his wife, “I cannot bear to hear that mentioned. +Pray do not talk of that odious man. I do think it is the hardest thing +in the world, that your estate should be entailed away from your own +children; and I am sure, if I had been you, I should have tried long ago +to do something or other about it.” + +Jane and Elizabeth tried to explain to her the nature of an entail. They +had often attempted to do it before, but it was a subject on which +Mrs. Bennet was beyond the reach of reason, and she continued to rail +bitterly against the cruelty of settling an estate away from a family of +five daughters, in favour of a man whom nobody cared anything about. + +“It certainly is a most iniquitous affair,” said Mr. Bennet, “and +nothing can clear Mr. Collins from the guilt of inheriting Longbourn. +But if you will listen to his letter, you may perhaps be a little +softened by his manner of expressing himself.” + +“No, that I am sure I shall not; and I think it is very impertinent of +him to write to you at all, and very hypocritical. I hate such false +friends. Why could he not keep on quarreling with you, as his father did +before him?” + +“Why, indeed; he does seem to have had some filial scruples on that +head, as you will hear.” + +“Hunsford, near Westerham, Kent, 15th October. + +“Dear Sir,-- + +“The disagreement subsisting between yourself and my late honoured +father always gave me much uneasiness, and since I have had the +misfortune to lose him, I have frequently wished to heal the breach; but +for some time I was kept back by my own doubts, fearing lest it might +seem disrespectful to his memory for me to be on good terms with anyone +with whom it had always pleased him to be at variance.--'There, Mrs. +Bennet.'--My mind, however, is now made up on the subject, for having +received ordination at Easter, I have been so fortunate as to be +distinguished by the patronage of the Right Honourable Lady Catherine de +Bourgh, widow of Sir Lewis de Bourgh, whose bounty and beneficence has +preferred me to the valuable rectory of this parish, where it shall be +my earnest endeavour to demean myself with grateful respect towards her +ladyship, and be ever ready to perform those rites and ceremonies which +are instituted by the Church of England. As a clergyman, moreover, I +feel it my duty to promote and establish the blessing of peace in +all families within the reach of my influence; and on these grounds I +flatter myself that my present overtures are highly commendable, and +that the circumstance of my being next in the entail of Longbourn estate +will be kindly overlooked on your side, and not lead you to reject the +offered olive-branch. I cannot be otherwise than concerned at being the +means of injuring your amiable daughters, and beg leave to apologise for +it, as well as to assure you of my readiness to make them every possible +amends--but of this hereafter. If you should have no objection to +receive me into your house, I propose myself the satisfaction of waiting +on you and your family, Monday, November 18th, by four o'clock, and +shall probably trespass on your hospitality till the Saturday se'ennight +following, which I can do without any inconvenience, as Lady Catherine +is far from objecting to my occasional absence on a Sunday, provided +that some other clergyman is engaged to do the duty of the day.--I +remain, dear sir, with respectful compliments to your lady and +daughters, your well-wisher and friend, + +“WILLIAM COLLINS” + +“At four o'clock, therefore, we may expect this peace-making gentleman,” + said Mr. Bennet, as he folded up the letter. “He seems to be a most +conscientious and polite young man, upon my word, and I doubt not will +prove a valuable acquaintance, especially if Lady Catherine should be so +indulgent as to let him come to us again.” + +“There is some sense in what he says about the girls, however, and if +he is disposed to make them any amends, I shall not be the person to +discourage him.” + +“Though it is difficult,” said Jane, “to guess in what way he can mean +to make us the atonement he thinks our due, the wish is certainly to his +credit.” + +Elizabeth was chiefly struck by his extraordinary deference for Lady +Catherine, and his kind intention of christening, marrying, and burying +his parishioners whenever it were required. + +“He must be an oddity, I think,” said she. “I cannot make him +out.--There is something very pompous in his style.--And what can he +mean by apologising for being next in the entail?--We cannot suppose he +would help it if he could.--Could he be a sensible man, sir?” + +“No, my dear, I think not. I have great hopes of finding him quite the +reverse. There is a mixture of servility and self-importance in his +letter, which promises well. I am impatient to see him.” + +“In point of composition,” said Mary, “the letter does not seem +defective. The idea of the olive-branch perhaps is not wholly new, yet I +think it is well expressed.” + +To Catherine and Lydia, neither the letter nor its writer were in any +degree interesting. It was next to impossible that their cousin should +come in a scarlet coat, and it was now some weeks since they had +received pleasure from the society of a man in any other colour. As for +their mother, Mr. Collins's letter had done away much of her ill-will, +and she was preparing to see him with a degree of composure which +astonished her husband and daughters. + +Mr. Collins was punctual to his time, and was received with great +politeness by the whole family. Mr. Bennet indeed said little; but the +ladies were ready enough to talk, and Mr. Collins seemed neither in +need of encouragement, nor inclined to be silent himself. He was a +tall, heavy-looking young man of five-and-twenty. His air was grave and +stately, and his manners were very formal. He had not been long seated +before he complimented Mrs. Bennet on having so fine a family of +daughters; said he had heard much of their beauty, but that in this +instance fame had fallen short of the truth; and added, that he did +not doubt her seeing them all in due time disposed of in marriage. This +gallantry was not much to the taste of some of his hearers; but Mrs. +Bennet, who quarreled with no compliments, answered most readily. + +“You are very kind, I am sure; and I wish with all my heart it may +prove so, for else they will be destitute enough. Things are settled so +oddly.” + +“You allude, perhaps, to the entail of this estate.” + +“Ah! sir, I do indeed. It is a grievous affair to my poor girls, you +must confess. Not that I mean to find fault with _you_, for such things +I know are all chance in this world. There is no knowing how estates +will go when once they come to be entailed.” + +“I am very sensible, madam, of the hardship to my fair cousins, and +could say much on the subject, but that I am cautious of appearing +forward and precipitate. But I can assure the young ladies that I come +prepared to admire them. At present I will not say more; but, perhaps, +when we are better acquainted--” + +He was interrupted by a summons to dinner; and the girls smiled on each +other. They were not the only objects of Mr. Collins's admiration. The +hall, the dining-room, and all its furniture, were examined and praised; +and his commendation of everything would have touched Mrs. Bennet's +heart, but for the mortifying supposition of his viewing it all as his +own future property. The dinner too in its turn was highly admired; and +he begged to know to which of his fair cousins the excellency of its +cooking was owing. But he was set right there by Mrs. Bennet, who +assured him with some asperity that they were very well able to keep a +good cook, and that her daughters had nothing to do in the kitchen. He +begged pardon for having displeased her. In a softened tone she declared +herself not at all offended; but he continued to apologise for about a +quarter of an hour. + + + +Chapter 14 + + +During dinner, Mr. Bennet scarcely spoke at all; but when the servants +were withdrawn, he thought it time to have some conversation with his +guest, and therefore started a subject in which he expected him to +shine, by observing that he seemed very fortunate in his patroness. Lady +Catherine de Bourgh's attention to his wishes, and consideration for +his comfort, appeared very remarkable. Mr. Bennet could not have chosen +better. Mr. Collins was eloquent in her praise. The subject elevated him +to more than usual solemnity of manner, and with a most important aspect +he protested that “he had never in his life witnessed such behaviour in +a person of rank--such affability and condescension, as he had himself +experienced from Lady Catherine. She had been graciously pleased to +approve of both of the discourses which he had already had the honour of +preaching before her. She had also asked him twice to dine at Rosings, +and had sent for him only the Saturday before, to make up her pool of +quadrille in the evening. Lady Catherine was reckoned proud by many +people he knew, but _he_ had never seen anything but affability in her. +She had always spoken to him as she would to any other gentleman; she +made not the smallest objection to his joining in the society of the +neighbourhood nor to his leaving the parish occasionally for a week or +two, to visit his relations. She had even condescended to advise him to +marry as soon as he could, provided he chose with discretion; and had +once paid him a visit in his humble parsonage, where she had perfectly +approved all the alterations he had been making, and had even vouchsafed +to suggest some herself--some shelves in the closet up stairs.” + +“That is all very proper and civil, I am sure,” said Mrs. Bennet, “and +I dare say she is a very agreeable woman. It is a pity that great ladies +in general are not more like her. Does she live near you, sir?” + +“The garden in which stands my humble abode is separated only by a lane +from Rosings Park, her ladyship's residence.” + +“I think you said she was a widow, sir? Has she any family?” + +“She has only one daughter, the heiress of Rosings, and of very +extensive property.” + +“Ah!” said Mrs. Bennet, shaking her head, “then she is better off than +many girls. And what sort of young lady is she? Is she handsome?” + +“She is a most charming young lady indeed. Lady Catherine herself says +that, in point of true beauty, Miss de Bourgh is far superior to the +handsomest of her sex, because there is that in her features which marks +the young lady of distinguished birth. She is unfortunately of a sickly +constitution, which has prevented her from making that progress in many +accomplishments which she could not have otherwise failed of, as I am +informed by the lady who superintended her education, and who still +resides with them. But she is perfectly amiable, and often condescends +to drive by my humble abode in her little phaeton and ponies.” + +“Has she been presented? I do not remember her name among the ladies at +court.” + +“Her indifferent state of health unhappily prevents her being in town; +and by that means, as I told Lady Catherine one day, has deprived the +British court of its brightest ornament. Her ladyship seemed pleased +with the idea; and you may imagine that I am happy on every occasion to +offer those little delicate compliments which are always acceptable +to ladies. I have more than once observed to Lady Catherine, that +her charming daughter seemed born to be a duchess, and that the most +elevated rank, instead of giving her consequence, would be adorned by +her. These are the kind of little things which please her ladyship, and +it is a sort of attention which I conceive myself peculiarly bound to +pay.” + +“You judge very properly,” said Mr. Bennet, “and it is happy for you +that you possess the talent of flattering with delicacy. May I ask +whether these pleasing attentions proceed from the impulse of the +moment, or are the result of previous study?” + +“They arise chiefly from what is passing at the time, and though I +sometimes amuse myself with suggesting and arranging such little elegant +compliments as may be adapted to ordinary occasions, I always wish to +give them as unstudied an air as possible.” + +Mr. Bennet's expectations were fully answered. His cousin was as absurd +as he had hoped, and he listened to him with the keenest enjoyment, +maintaining at the same time the most resolute composure of countenance, +and, except in an occasional glance at Elizabeth, requiring no partner +in his pleasure. + +By tea-time, however, the dose had been enough, and Mr. Bennet was glad +to take his guest into the drawing-room again, and, when tea was over, +glad to invite him to read aloud to the ladies. Mr. Collins readily +assented, and a book was produced; but, on beholding it (for everything +announced it to be from a circulating library), he started back, and +begging pardon, protested that he never read novels. Kitty stared at +him, and Lydia exclaimed. Other books were produced, and after some +deliberation he chose Fordyce's Sermons. Lydia gaped as he opened the +volume, and before he had, with very monotonous solemnity, read three +pages, she interrupted him with: + +“Do you know, mamma, that my uncle Phillips talks of turning away +Richard; and if he does, Colonel Forster will hire him. My aunt told me +so herself on Saturday. I shall walk to Meryton to-morrow to hear more +about it, and to ask when Mr. Denny comes back from town.” + +Lydia was bid by her two eldest sisters to hold her tongue; but Mr. +Collins, much offended, laid aside his book, and said: + +“I have often observed how little young ladies are interested by books +of a serious stamp, though written solely for their benefit. It amazes +me, I confess; for, certainly, there can be nothing so advantageous to +them as instruction. But I will no longer importune my young cousin.” + +Then turning to Mr. Bennet, he offered himself as his antagonist at +backgammon. Mr. Bennet accepted the challenge, observing that he acted +very wisely in leaving the girls to their own trifling amusements. +Mrs. Bennet and her daughters apologised most civilly for Lydia's +interruption, and promised that it should not occur again, if he would +resume his book; but Mr. Collins, after assuring them that he bore his +young cousin no ill-will, and should never resent her behaviour as any +affront, seated himself at another table with Mr. Bennet, and prepared +for backgammon. + + + +Chapter 15 + + +Mr. Collins was not a sensible man, and the deficiency of nature had +been but little assisted by education or society; the greatest part +of his life having been spent under the guidance of an illiterate and +miserly father; and though he belonged to one of the universities, he +had merely kept the necessary terms, without forming at it any useful +acquaintance. The subjection in which his father had brought him up had +given him originally great humility of manner; but it was now a +good deal counteracted by the self-conceit of a weak head, living in +retirement, and the consequential feelings of early and unexpected +prosperity. A fortunate chance had recommended him to Lady Catherine de +Bourgh when the living of Hunsford was vacant; and the respect which +he felt for her high rank, and his veneration for her as his patroness, +mingling with a very good opinion of himself, of his authority as a +clergyman, and his right as a rector, made him altogether a mixture of +pride and obsequiousness, self-importance and humility. + +Having now a good house and a very sufficient income, he intended to +marry; and in seeking a reconciliation with the Longbourn family he had +a wife in view, as he meant to choose one of the daughters, if he found +them as handsome and amiable as they were represented by common report. +This was his plan of amends--of atonement--for inheriting their father's +estate; and he thought it an excellent one, full of eligibility and +suitableness, and excessively generous and disinterested on his own +part. + +His plan did not vary on seeing them. Miss Bennet's lovely face +confirmed his views, and established all his strictest notions of what +was due to seniority; and for the first evening _she_ was his settled +choice. The next morning, however, made an alteration; for in a +quarter of an hour's tete-a-tete with Mrs. Bennet before breakfast, a +conversation beginning with his parsonage-house, and leading naturally +to the avowal of his hopes, that a mistress might be found for it at +Longbourn, produced from her, amid very complaisant smiles and general +encouragement, a caution against the very Jane he had fixed on. “As to +her _younger_ daughters, she could not take upon her to say--she could +not positively answer--but she did not _know_ of any prepossession; her +_eldest_ daughter, she must just mention--she felt it incumbent on her +to hint, was likely to be very soon engaged.” + +Mr. Collins had only to change from Jane to Elizabeth--and it was soon +done--done while Mrs. Bennet was stirring the fire. Elizabeth, equally +next to Jane in birth and beauty, succeeded her of course. + +Mrs. Bennet treasured up the hint, and trusted that she might soon have +two daughters married; and the man whom she could not bear to speak of +the day before was now high in her good graces. + +Lydia's intention of walking to Meryton was not forgotten; every sister +except Mary agreed to go with her; and Mr. Collins was to attend them, +at the request of Mr. Bennet, who was most anxious to get rid of him, +and have his library to himself; for thither Mr. Collins had followed +him after breakfast; and there he would continue, nominally engaged with +one of the largest folios in the collection, but really talking to Mr. +Bennet, with little cessation, of his house and garden at Hunsford. Such +doings discomposed Mr. Bennet exceedingly. In his library he had been +always sure of leisure and tranquillity; and though prepared, as he told +Elizabeth, to meet with folly and conceit in every other room of the +house, he was used to be free from them there; his civility, therefore, +was most prompt in inviting Mr. Collins to join his daughters in their +walk; and Mr. Collins, being in fact much better fitted for a walker +than a reader, was extremely pleased to close his large book, and go. + +In pompous nothings on his side, and civil assents on that of his +cousins, their time passed till they entered Meryton. The attention of +the younger ones was then no longer to be gained by him. Their eyes were +immediately wandering up in the street in quest of the officers, and +nothing less than a very smart bonnet indeed, or a really new muslin in +a shop window, could recall them. + +But the attention of every lady was soon caught by a young man, whom +they had never seen before, of most gentlemanlike appearance, walking +with another officer on the other side of the way. The officer was +the very Mr. Denny concerning whose return from London Lydia came +to inquire, and he bowed as they passed. All were struck with the +stranger's air, all wondered who he could be; and Kitty and Lydia, +determined if possible to find out, led the way across the street, under +pretense of wanting something in an opposite shop, and fortunately +had just gained the pavement when the two gentlemen, turning back, had +reached the same spot. Mr. Denny addressed them directly, and entreated +permission to introduce his friend, Mr. Wickham, who had returned with +him the day before from town, and he was happy to say had accepted a +commission in their corps. This was exactly as it should be; for the +young man wanted only regimentals to make him completely charming. +His appearance was greatly in his favour; he had all the best part of +beauty, a fine countenance, a good figure, and very pleasing address. +The introduction was followed up on his side by a happy readiness +of conversation--a readiness at the same time perfectly correct and +unassuming; and the whole party were still standing and talking together +very agreeably, when the sound of horses drew their notice, and Darcy +and Bingley were seen riding down the street. On distinguishing the +ladies of the group, the two gentlemen came directly towards them, and +began the usual civilities. Bingley was the principal spokesman, and +Miss Bennet the principal object. He was then, he said, on his way to +Longbourn on purpose to inquire after her. Mr. Darcy corroborated +it with a bow, and was beginning to determine not to fix his eyes +on Elizabeth, when they were suddenly arrested by the sight of the +stranger, and Elizabeth happening to see the countenance of both as they +looked at each other, was all astonishment at the effect of the meeting. +Both changed colour, one looked white, the other red. Mr. Wickham, +after a few moments, touched his hat--a salutation which Mr. Darcy just +deigned to return. What could be the meaning of it? It was impossible to +imagine; it was impossible not to long to know. + +In another minute, Mr. Bingley, but without seeming to have noticed what +passed, took leave and rode on with his friend. + +Mr. Denny and Mr. Wickham walked with the young ladies to the door of +Mr. Phillip's house, and then made their bows, in spite of Miss Lydia's +pressing entreaties that they should come in, and even in spite of +Mrs. Phillips's throwing up the parlour window and loudly seconding the +invitation. + +Mrs. Phillips was always glad to see her nieces; and the two eldest, +from their recent absence, were particularly welcome, and she was +eagerly expressing her surprise at their sudden return home, which, as +their own carriage had not fetched them, she should have known nothing +about, if she had not happened to see Mr. Jones's shop-boy in the +street, who had told her that they were not to send any more draughts to +Netherfield because the Miss Bennets were come away, when her civility +was claimed towards Mr. Collins by Jane's introduction of him. She +received him with her very best politeness, which he returned with +as much more, apologising for his intrusion, without any previous +acquaintance with her, which he could not help flattering himself, +however, might be justified by his relationship to the young ladies who +introduced him to her notice. Mrs. Phillips was quite awed by such an +excess of good breeding; but her contemplation of one stranger was soon +put to an end by exclamations and inquiries about the other; of whom, +however, she could only tell her nieces what they already knew, that +Mr. Denny had brought him from London, and that he was to have a +lieutenant's commission in the ----shire. She had been watching him the +last hour, she said, as he walked up and down the street, and had Mr. +Wickham appeared, Kitty and Lydia would certainly have continued the +occupation, but unluckily no one passed windows now except a few of the +officers, who, in comparison with the stranger, were become “stupid, +disagreeable fellows.” Some of them were to dine with the Phillipses +the next day, and their aunt promised to make her husband call on Mr. +Wickham, and give him an invitation also, if the family from Longbourn +would come in the evening. This was agreed to, and Mrs. Phillips +protested that they would have a nice comfortable noisy game of lottery +tickets, and a little bit of hot supper afterwards. The prospect of such +delights was very cheering, and they parted in mutual good spirits. Mr. +Collins repeated his apologies in quitting the room, and was assured +with unwearying civility that they were perfectly needless. + +As they walked home, Elizabeth related to Jane what she had seen pass +between the two gentlemen; but though Jane would have defended either +or both, had they appeared to be in the wrong, she could no more explain +such behaviour than her sister. + +Mr. Collins on his return highly gratified Mrs. Bennet by admiring +Mrs. Phillips's manners and politeness. He protested that, except Lady +Catherine and her daughter, he had never seen a more elegant woman; +for she had not only received him with the utmost civility, but even +pointedly included him in her invitation for the next evening, although +utterly unknown to her before. Something, he supposed, might be +attributed to his connection with them, but yet he had never met with so +much attention in the whole course of his life. + + + +Chapter 16 + + +As no objection was made to the young people's engagement with their +aunt, and all Mr. Collins's scruples of leaving Mr. and Mrs. Bennet for +a single evening during his visit were most steadily resisted, the coach +conveyed him and his five cousins at a suitable hour to Meryton; and +the girls had the pleasure of hearing, as they entered the drawing-room, +that Mr. Wickham had accepted their uncle's invitation, and was then in +the house. + +When this information was given, and they had all taken their seats, Mr. +Collins was at leisure to look around him and admire, and he was so much +struck with the size and furniture of the apartment, that he declared he +might almost have supposed himself in the small summer breakfast +parlour at Rosings; a comparison that did not at first convey much +gratification; but when Mrs. Phillips understood from him what +Rosings was, and who was its proprietor--when she had listened to the +description of only one of Lady Catherine's drawing-rooms, and found +that the chimney-piece alone had cost eight hundred pounds, she felt all +the force of the compliment, and would hardly have resented a comparison +with the housekeeper's room. + +In describing to her all the grandeur of Lady Catherine and her mansion, +with occasional digressions in praise of his own humble abode, and +the improvements it was receiving, he was happily employed until the +gentlemen joined them; and he found in Mrs. Phillips a very attentive +listener, whose opinion of his consequence increased with what she +heard, and who was resolving to retail it all among her neighbours as +soon as she could. To the girls, who could not listen to their cousin, +and who had nothing to do but to wish for an instrument, and examine +their own indifferent imitations of china on the mantelpiece, the +interval of waiting appeared very long. It was over at last, however. +The gentlemen did approach, and when Mr. Wickham walked into the room, +Elizabeth felt that she had neither been seeing him before, nor thinking +of him since, with the smallest degree of unreasonable admiration. +The officers of the ----shire were in general a very creditable, +gentlemanlike set, and the best of them were of the present party; but +Mr. Wickham was as far beyond them all in person, countenance, air, and +walk, as _they_ were superior to the broad-faced, stuffy uncle Phillips, +breathing port wine, who followed them into the room. + +Mr. Wickham was the happy man towards whom almost every female eye was +turned, and Elizabeth was the happy woman by whom he finally seated +himself; and the agreeable manner in which he immediately fell into +conversation, though it was only on its being a wet night, made her feel +that the commonest, dullest, most threadbare topic might be rendered +interesting by the skill of the speaker. + +With such rivals for the notice of the fair as Mr. Wickham and the +officers, Mr. Collins seemed to sink into insignificance; to the young +ladies he certainly was nothing; but he had still at intervals a kind +listener in Mrs. Phillips, and was by her watchfulness, most abundantly +supplied with coffee and muffin. When the card-tables were placed, he +had the opportunity of obliging her in turn, by sitting down to whist. + +“I know little of the game at present,” said he, “but I shall be glad +to improve myself, for in my situation in life--” Mrs. Phillips was very +glad for his compliance, but could not wait for his reason. + +Mr. Wickham did not play at whist, and with ready delight was he +received at the other table between Elizabeth and Lydia. At first there +seemed danger of Lydia's engrossing him entirely, for she was a most +determined talker; but being likewise extremely fond of lottery tickets, +she soon grew too much interested in the game, too eager in making bets +and exclaiming after prizes to have attention for anyone in particular. +Allowing for the common demands of the game, Mr. Wickham was therefore +at leisure to talk to Elizabeth, and she was very willing to hear +him, though what she chiefly wished to hear she could not hope to be +told--the history of his acquaintance with Mr. Darcy. She dared not +even mention that gentleman. Her curiosity, however, was unexpectedly +relieved. Mr. Wickham began the subject himself. He inquired how far +Netherfield was from Meryton; and, after receiving her answer, asked in +a hesitating manner how long Mr. Darcy had been staying there. + +“About a month,” said Elizabeth; and then, unwilling to let the subject +drop, added, “He is a man of very large property in Derbyshire, I +understand.” + +“Yes,” replied Mr. Wickham; “his estate there is a noble one. A clear +ten thousand per annum. You could not have met with a person more +capable of giving you certain information on that head than myself, for +I have been connected with his family in a particular manner from my +infancy.” + +Elizabeth could not but look surprised. + +“You may well be surprised, Miss Bennet, at such an assertion, after +seeing, as you probably might, the very cold manner of our meeting +yesterday. Are you much acquainted with Mr. Darcy?” + +“As much as I ever wish to be,” cried Elizabeth very warmly. “I have +spent four days in the same house with him, and I think him very +disagreeable.” + +“I have no right to give _my_ opinion,” said Wickham, “as to his being +agreeable or otherwise. I am not qualified to form one. I have known him +too long and too well to be a fair judge. It is impossible for _me_ +to be impartial. But I believe your opinion of him would in general +astonish--and perhaps you would not express it quite so strongly +anywhere else. Here you are in your own family.” + +“Upon my word, I say no more _here_ than I might say in any house in +the neighbourhood, except Netherfield. He is not at all liked in +Hertfordshire. Everybody is disgusted with his pride. You will not find +him more favourably spoken of by anyone.” + +“I cannot pretend to be sorry,” said Wickham, after a short +interruption, “that he or that any man should not be estimated beyond +their deserts; but with _him_ I believe it does not often happen. The +world is blinded by his fortune and consequence, or frightened by his +high and imposing manners, and sees him only as he chooses to be seen.” + +“I should take him, even on _my_ slight acquaintance, to be an +ill-tempered man.” Wickham only shook his head. + +“I wonder,” said he, at the next opportunity of speaking, “whether he is +likely to be in this country much longer.” + +“I do not at all know; but I _heard_ nothing of his going away when I +was at Netherfield. I hope your plans in favour of the ----shire will +not be affected by his being in the neighbourhood.” + +“Oh! no--it is not for _me_ to be driven away by Mr. Darcy. If _he_ +wishes to avoid seeing _me_, he must go. We are not on friendly terms, +and it always gives me pain to meet him, but I have no reason for +avoiding _him_ but what I might proclaim before all the world, a sense +of very great ill-usage, and most painful regrets at his being what he +is. His father, Miss Bennet, the late Mr. Darcy, was one of the best men +that ever breathed, and the truest friend I ever had; and I can never +be in company with this Mr. Darcy without being grieved to the soul by +a thousand tender recollections. His behaviour to myself has been +scandalous; but I verily believe I could forgive him anything and +everything, rather than his disappointing the hopes and disgracing the +memory of his father.” + +Elizabeth found the interest of the subject increase, and listened with +all her heart; but the delicacy of it prevented further inquiry. + +Mr. Wickham began to speak on more general topics, Meryton, the +neighbourhood, the society, appearing highly pleased with all that +he had yet seen, and speaking of the latter with gentle but very +intelligible gallantry. + +“It was the prospect of constant society, and good society,” he added, +“which was my chief inducement to enter the ----shire. I knew it to be +a most respectable, agreeable corps, and my friend Denny tempted me +further by his account of their present quarters, and the very great +attentions and excellent acquaintances Meryton had procured them. +Society, I own, is necessary to me. I have been a disappointed man, and +my spirits will not bear solitude. I _must_ have employment and society. +A military life is not what I was intended for, but circumstances have +now made it eligible. The church _ought_ to have been my profession--I +was brought up for the church, and I should at this time have been in +possession of a most valuable living, had it pleased the gentleman we +were speaking of just now.” + +“Indeed!” + +“Yes--the late Mr. Darcy bequeathed me the next presentation of the best +living in his gift. He was my godfather, and excessively attached to me. +I cannot do justice to his kindness. He meant to provide for me amply, +and thought he had done it; but when the living fell, it was given +elsewhere.” + +“Good heavens!” cried Elizabeth; “but how could _that_ be? How could his +will be disregarded? Why did you not seek legal redress?” + +“There was just such an informality in the terms of the bequest as to +give me no hope from law. A man of honour could not have doubted the +intention, but Mr. Darcy chose to doubt it--or to treat it as a merely +conditional recommendation, and to assert that I had forfeited all claim +to it by extravagance, imprudence--in short anything or nothing. Certain +it is, that the living became vacant two years ago, exactly as I was +of an age to hold it, and that it was given to another man; and no +less certain is it, that I cannot accuse myself of having really done +anything to deserve to lose it. I have a warm, unguarded temper, and +I may have spoken my opinion _of_ him, and _to_ him, too freely. I can +recall nothing worse. But the fact is, that we are very different sort +of men, and that he hates me.” + +“This is quite shocking! He deserves to be publicly disgraced.” + +“Some time or other he _will_ be--but it shall not be by _me_. Till I +can forget his father, I can never defy or expose _him_.” + +Elizabeth honoured him for such feelings, and thought him handsomer than +ever as he expressed them. + +“But what,” said she, after a pause, “can have been his motive? What can +have induced him to behave so cruelly?” + +“A thorough, determined dislike of me--a dislike which I cannot but +attribute in some measure to jealousy. Had the late Mr. Darcy liked me +less, his son might have borne with me better; but his father's uncommon +attachment to me irritated him, I believe, very early in life. He had +not a temper to bear the sort of competition in which we stood--the sort +of preference which was often given me.” + +“I had not thought Mr. Darcy so bad as this--though I have never liked +him. I had not thought so very ill of him. I had supposed him to be +despising his fellow-creatures in general, but did not suspect him of +descending to such malicious revenge, such injustice, such inhumanity as +this.” + +After a few minutes' reflection, however, she continued, “I _do_ +remember his boasting one day, at Netherfield, of the implacability of +his resentments, of his having an unforgiving temper. His disposition +must be dreadful.” + +“I will not trust myself on the subject,” replied Wickham; “I can hardly +be just to him.” + +Elizabeth was again deep in thought, and after a time exclaimed, “To +treat in such a manner the godson, the friend, the favourite of his +father!” She could have added, “A young man, too, like _you_, whose very +countenance may vouch for your being amiable”--but she contented herself +with, “and one, too, who had probably been his companion from childhood, +connected together, as I think you said, in the closest manner!” + +“We were born in the same parish, within the same park; the greatest +part of our youth was passed together; inmates of the same house, +sharing the same amusements, objects of the same parental care. _My_ +father began life in the profession which your uncle, Mr. Phillips, +appears to do so much credit to--but he gave up everything to be of +use to the late Mr. Darcy and devoted all his time to the care of the +Pemberley property. He was most highly esteemed by Mr. Darcy, a most +intimate, confidential friend. Mr. Darcy often acknowledged himself to +be under the greatest obligations to my father's active superintendence, +and when, immediately before my father's death, Mr. Darcy gave him a +voluntary promise of providing for me, I am convinced that he felt it to +be as much a debt of gratitude to _him_, as of his affection to myself.” + +“How strange!” cried Elizabeth. “How abominable! I wonder that the very +pride of this Mr. Darcy has not made him just to you! If from no better +motive, that he should not have been too proud to be dishonest--for +dishonesty I must call it.” + +“It _is_ wonderful,” replied Wickham, “for almost all his actions may +be traced to pride; and pride had often been his best friend. It has +connected him nearer with virtue than with any other feeling. But we are +none of us consistent, and in his behaviour to me there were stronger +impulses even than pride.” + +“Can such abominable pride as his have ever done him good?” + +“Yes. It has often led him to be liberal and generous, to give his money +freely, to display hospitality, to assist his tenants, and relieve the +poor. Family pride, and _filial_ pride--for he is very proud of what +his father was--have done this. Not to appear to disgrace his family, +to degenerate from the popular qualities, or lose the influence of the +Pemberley House, is a powerful motive. He has also _brotherly_ pride, +which, with _some_ brotherly affection, makes him a very kind and +careful guardian of his sister, and you will hear him generally cried up +as the most attentive and best of brothers.” + +“What sort of girl is Miss Darcy?” + +He shook his head. “I wish I could call her amiable. It gives me pain to +speak ill of a Darcy. But she is too much like her brother--very, very +proud. As a child, she was affectionate and pleasing, and extremely fond +of me; and I have devoted hours and hours to her amusement. But she is +nothing to me now. She is a handsome girl, about fifteen or sixteen, +and, I understand, highly accomplished. Since her father's death, her +home has been London, where a lady lives with her, and superintends her +education.” + +After many pauses and many trials of other subjects, Elizabeth could not +help reverting once more to the first, and saying: + +“I am astonished at his intimacy with Mr. Bingley! How can Mr. Bingley, +who seems good humour itself, and is, I really believe, truly amiable, +be in friendship with such a man? How can they suit each other? Do you +know Mr. Bingley?” + +“Not at all.” + +“He is a sweet-tempered, amiable, charming man. He cannot know what Mr. +Darcy is.” + +“Probably not; but Mr. Darcy can please where he chooses. He does not +want abilities. He can be a conversible companion if he thinks it worth +his while. Among those who are at all his equals in consequence, he is +a very different man from what he is to the less prosperous. His +pride never deserts him; but with the rich he is liberal-minded, just, +sincere, rational, honourable, and perhaps agreeable--allowing something +for fortune and figure.” + +The whist party soon afterwards breaking up, the players gathered round +the other table and Mr. Collins took his station between his cousin +Elizabeth and Mrs. Phillips. The usual inquiries as to his success were +made by the latter. It had not been very great; he had lost every +point; but when Mrs. Phillips began to express her concern thereupon, +he assured her with much earnest gravity that it was not of the least +importance, that he considered the money as a mere trifle, and begged +that she would not make herself uneasy. + +“I know very well, madam,” said he, “that when persons sit down to a +card-table, they must take their chances of these things, and happily I +am not in such circumstances as to make five shillings any object. There +are undoubtedly many who could not say the same, but thanks to Lady +Catherine de Bourgh, I am removed far beyond the necessity of regarding +little matters.” + +Mr. Wickham's attention was caught; and after observing Mr. Collins for +a few moments, he asked Elizabeth in a low voice whether her relation +was very intimately acquainted with the family of de Bourgh. + +“Lady Catherine de Bourgh,” she replied, “has very lately given him +a living. I hardly know how Mr. Collins was first introduced to her +notice, but he certainly has not known her long.” + +“You know of course that Lady Catherine de Bourgh and Lady Anne Darcy +were sisters; consequently that she is aunt to the present Mr. Darcy.” + +“No, indeed, I did not. I knew nothing at all of Lady Catherine's +connections. I never heard of her existence till the day before +yesterday.” + +“Her daughter, Miss de Bourgh, will have a very large fortune, and it is +believed that she and her cousin will unite the two estates.” + +This information made Elizabeth smile, as she thought of poor Miss +Bingley. Vain indeed must be all her attentions, vain and useless her +affection for his sister and her praise of himself, if he were already +self-destined for another. + +“Mr. Collins,” said she, “speaks highly both of Lady Catherine and her +daughter; but from some particulars that he has related of her ladyship, +I suspect his gratitude misleads him, and that in spite of her being his +patroness, she is an arrogant, conceited woman.” + +“I believe her to be both in a great degree,” replied Wickham; “I have +not seen her for many years, but I very well remember that I never liked +her, and that her manners were dictatorial and insolent. She has the +reputation of being remarkably sensible and clever; but I rather believe +she derives part of her abilities from her rank and fortune, part from +her authoritative manner, and the rest from the pride for her +nephew, who chooses that everyone connected with him should have an +understanding of the first class.” + +Elizabeth allowed that he had given a very rational account of it, and +they continued talking together, with mutual satisfaction till supper +put an end to cards, and gave the rest of the ladies their share of Mr. +Wickham's attentions. There could be no conversation in the noise +of Mrs. Phillips's supper party, but his manners recommended him to +everybody. Whatever he said, was said well; and whatever he did, done +gracefully. Elizabeth went away with her head full of him. She could +think of nothing but of Mr. Wickham, and of what he had told her, all +the way home; but there was not time for her even to mention his name +as they went, for neither Lydia nor Mr. Collins were once silent. Lydia +talked incessantly of lottery tickets, of the fish she had lost and the +fish she had won; and Mr. Collins in describing the civility of Mr. and +Mrs. Phillips, protesting that he did not in the least regard his losses +at whist, enumerating all the dishes at supper, and repeatedly fearing +that he crowded his cousins, had more to say than he could well manage +before the carriage stopped at Longbourn House. + + + +Chapter 17 + + +Elizabeth related to Jane the next day what had passed between Mr. +Wickham and herself. Jane listened with astonishment and concern; she +knew not how to believe that Mr. Darcy could be so unworthy of Mr. +Bingley's regard; and yet, it was not in her nature to question the +veracity of a young man of such amiable appearance as Wickham. The +possibility of his having endured such unkindness, was enough to +interest all her tender feelings; and nothing remained therefore to be +done, but to think well of them both, to defend the conduct of each, +and throw into the account of accident or mistake whatever could not be +otherwise explained. + +“They have both,” said she, “been deceived, I dare say, in some way +or other, of which we can form no idea. Interested people have perhaps +misrepresented each to the other. It is, in short, impossible for us to +conjecture the causes or circumstances which may have alienated them, +without actual blame on either side.” + +“Very true, indeed; and now, my dear Jane, what have you got to say on +behalf of the interested people who have probably been concerned in the +business? Do clear _them_ too, or we shall be obliged to think ill of +somebody.” + +“Laugh as much as you choose, but you will not laugh me out of my +opinion. My dearest Lizzy, do but consider in what a disgraceful light +it places Mr. Darcy, to be treating his father's favourite in such +a manner, one whom his father had promised to provide for. It is +impossible. No man of common humanity, no man who had any value for his +character, could be capable of it. Can his most intimate friends be so +excessively deceived in him? Oh! no.” + +“I can much more easily believe Mr. Bingley's being imposed on, than +that Mr. Wickham should invent such a history of himself as he gave me +last night; names, facts, everything mentioned without ceremony. If it +be not so, let Mr. Darcy contradict it. Besides, there was truth in his +looks.” + +“It is difficult indeed--it is distressing. One does not know what to +think.” + +“I beg your pardon; one knows exactly what to think.” + +But Jane could think with certainty on only one point--that Mr. Bingley, +if he _had_ been imposed on, would have much to suffer when the affair +became public. + +The two young ladies were summoned from the shrubbery, where this +conversation passed, by the arrival of the very persons of whom they had +been speaking; Mr. Bingley and his sisters came to give their personal +invitation for the long-expected ball at Netherfield, which was fixed +for the following Tuesday. The two ladies were delighted to see their +dear friend again, called it an age since they had met, and repeatedly +asked what she had been doing with herself since their separation. To +the rest of the family they paid little attention; avoiding Mrs. Bennet +as much as possible, saying not much to Elizabeth, and nothing at all to +the others. They were soon gone again, rising from their seats with an +activity which took their brother by surprise, and hurrying off as if +eager to escape from Mrs. Bennet's civilities. + +The prospect of the Netherfield ball was extremely agreeable to every +female of the family. Mrs. Bennet chose to consider it as given in +compliment to her eldest daughter, and was particularly flattered +by receiving the invitation from Mr. Bingley himself, instead of a +ceremonious card. Jane pictured to herself a happy evening in the +society of her two friends, and the attentions of their brother; and +Elizabeth thought with pleasure of dancing a great deal with Mr. +Wickham, and of seeing a confirmation of everything in Mr. Darcy's look +and behaviour. The happiness anticipated by Catherine and Lydia depended +less on any single event, or any particular person, for though they +each, like Elizabeth, meant to dance half the evening with Mr. Wickham, +he was by no means the only partner who could satisfy them, and a ball +was, at any rate, a ball. And even Mary could assure her family that she +had no disinclination for it. + +“While I can have my mornings to myself,” said she, “it is enough--I +think it is no sacrifice to join occasionally in evening engagements. +Society has claims on us all; and I profess myself one of those +who consider intervals of recreation and amusement as desirable for +everybody.” + +Elizabeth's spirits were so high on this occasion, that though she did +not often speak unnecessarily to Mr. Collins, she could not help asking +him whether he intended to accept Mr. Bingley's invitation, and if +he did, whether he would think it proper to join in the evening's +amusement; and she was rather surprised to find that he entertained no +scruple whatever on that head, and was very far from dreading a rebuke +either from the Archbishop, or Lady Catherine de Bourgh, by venturing to +dance. + +“I am by no means of the opinion, I assure you,” said he, “that a ball +of this kind, given by a young man of character, to respectable people, +can have any evil tendency; and I am so far from objecting to dancing +myself, that I shall hope to be honoured with the hands of all my fair +cousins in the course of the evening; and I take this opportunity of +soliciting yours, Miss Elizabeth, for the two first dances especially, +a preference which I trust my cousin Jane will attribute to the right +cause, and not to any disrespect for her.” + +Elizabeth felt herself completely taken in. She had fully proposed being +engaged by Mr. Wickham for those very dances; and to have Mr. Collins +instead! her liveliness had never been worse timed. There was no help +for it, however. Mr. Wickham's happiness and her own were perforce +delayed a little longer, and Mr. Collins's proposal accepted with as +good a grace as she could. She was not the better pleased with his +gallantry from the idea it suggested of something more. It now first +struck her, that _she_ was selected from among her sisters as worthy +of being mistress of Hunsford Parsonage, and of assisting to form a +quadrille table at Rosings, in the absence of more eligible visitors. +The idea soon reached to conviction, as she observed his increasing +civilities toward herself, and heard his frequent attempt at a +compliment on her wit and vivacity; and though more astonished than +gratified herself by this effect of her charms, it was not long before +her mother gave her to understand that the probability of their marriage +was extremely agreeable to _her_. Elizabeth, however, did not choose +to take the hint, being well aware that a serious dispute must be the +consequence of any reply. Mr. Collins might never make the offer, and +till he did, it was useless to quarrel about him. + +If there had not been a Netherfield ball to prepare for and talk of, the +younger Miss Bennets would have been in a very pitiable state at this +time, for from the day of the invitation, to the day of the ball, there +was such a succession of rain as prevented their walking to Meryton +once. No aunt, no officers, no news could be sought after--the very +shoe-roses for Netherfield were got by proxy. Even Elizabeth might have +found some trial of her patience in weather which totally suspended the +improvement of her acquaintance with Mr. Wickham; and nothing less than +a dance on Tuesday, could have made such a Friday, Saturday, Sunday, and +Monday endurable to Kitty and Lydia. + + + +Chapter 18 + + +Till Elizabeth entered the drawing-room at Netherfield, and looked in +vain for Mr. Wickham among the cluster of red coats there assembled, a +doubt of his being present had never occurred to her. The certainty +of meeting him had not been checked by any of those recollections that +might not unreasonably have alarmed her. She had dressed with more than +usual care, and prepared in the highest spirits for the conquest of all +that remained unsubdued of his heart, trusting that it was not more than +might be won in the course of the evening. But in an instant arose +the dreadful suspicion of his being purposely omitted for Mr. Darcy's +pleasure in the Bingleys' invitation to the officers; and though +this was not exactly the case, the absolute fact of his absence was +pronounced by his friend Denny, to whom Lydia eagerly applied, and who +told them that Wickham had been obliged to go to town on business the +day before, and was not yet returned; adding, with a significant smile, +“I do not imagine his business would have called him away just now, if +he had not wanted to avoid a certain gentleman here.” + +This part of his intelligence, though unheard by Lydia, was caught by +Elizabeth, and, as it assured her that Darcy was not less answerable for +Wickham's absence than if her first surmise had been just, every +feeling of displeasure against the former was so sharpened by immediate +disappointment, that she could hardly reply with tolerable civility to +the polite inquiries which he directly afterwards approached to make. +Attendance, forbearance, patience with Darcy, was injury to Wickham. She +was resolved against any sort of conversation with him, and turned away +with a degree of ill-humour which she could not wholly surmount even in +speaking to Mr. Bingley, whose blind partiality provoked her. + +But Elizabeth was not formed for ill-humour; and though every prospect +of her own was destroyed for the evening, it could not dwell long on her +spirits; and having told all her griefs to Charlotte Lucas, whom she had +not seen for a week, she was soon able to make a voluntary transition +to the oddities of her cousin, and to point him out to her particular +notice. The first two dances, however, brought a return of distress; +they were dances of mortification. Mr. Collins, awkward and solemn, +apologising instead of attending, and often moving wrong without being +aware of it, gave her all the shame and misery which a disagreeable +partner for a couple of dances can give. The moment of her release from +him was ecstasy. + +She danced next with an officer, and had the refreshment of talking of +Wickham, and of hearing that he was universally liked. When those dances +were over, she returned to Charlotte Lucas, and was in conversation with +her, when she found herself suddenly addressed by Mr. Darcy who took +her so much by surprise in his application for her hand, that, +without knowing what she did, she accepted him. He walked away again +immediately, and she was left to fret over her own want of presence of +mind; Charlotte tried to console her: + +“I dare say you will find him very agreeable.” + +“Heaven forbid! _That_ would be the greatest misfortune of all! To find +a man agreeable whom one is determined to hate! Do not wish me such an +evil.” + +When the dancing recommenced, however, and Darcy approached to claim her +hand, Charlotte could not help cautioning her in a whisper, not to be a +simpleton, and allow her fancy for Wickham to make her appear unpleasant +in the eyes of a man ten times his consequence. Elizabeth made no +answer, and took her place in the set, amazed at the dignity to which +she was arrived in being allowed to stand opposite to Mr. Darcy, and +reading in her neighbours' looks, their equal amazement in beholding +it. They stood for some time without speaking a word; and she began to +imagine that their silence was to last through the two dances, and at +first was resolved not to break it; till suddenly fancying that it would +be the greater punishment to her partner to oblige him to talk, she made +some slight observation on the dance. He replied, and was again +silent. After a pause of some minutes, she addressed him a second time +with:--“It is _your_ turn to say something now, Mr. Darcy. I talked +about the dance, and _you_ ought to make some sort of remark on the size +of the room, or the number of couples.” + +He smiled, and assured her that whatever she wished him to say should be +said. + +“Very well. That reply will do for the present. Perhaps by and by I may +observe that private balls are much pleasanter than public ones. But +_now_ we may be silent.” + +“Do you talk by rule, then, while you are dancing?” + +“Sometimes. One must speak a little, you know. It would look odd to be +entirely silent for half an hour together; and yet for the advantage of +_some_, conversation ought to be so arranged, as that they may have the +trouble of saying as little as possible.” + +“Are you consulting your own feelings in the present case, or do you +imagine that you are gratifying mine?” + +“Both,” replied Elizabeth archly; “for I have always seen a great +similarity in the turn of our minds. We are each of an unsocial, +taciturn disposition, unwilling to speak, unless we expect to say +something that will amaze the whole room, and be handed down to +posterity with all the eclat of a proverb.” + +“This is no very striking resemblance of your own character, I am sure,” + said he. “How near it may be to _mine_, I cannot pretend to say. _You_ +think it a faithful portrait undoubtedly.” + +“I must not decide on my own performance.” + +He made no answer, and they were again silent till they had gone down +the dance, when he asked her if she and her sisters did not very often +walk to Meryton. She answered in the affirmative, and, unable to resist +the temptation, added, “When you met us there the other day, we had just +been forming a new acquaintance.” + +The effect was immediate. A deeper shade of _hauteur_ overspread his +features, but he said not a word, and Elizabeth, though blaming herself +for her own weakness, could not go on. At length Darcy spoke, and in a +constrained manner said, “Mr. Wickham is blessed with such happy manners +as may ensure his _making_ friends--whether he may be equally capable of +_retaining_ them, is less certain.” + +“He has been so unlucky as to lose _your_ friendship,” replied Elizabeth +with emphasis, “and in a manner which he is likely to suffer from all +his life.” + +Darcy made no answer, and seemed desirous of changing the subject. At +that moment, Sir William Lucas appeared close to them, meaning to pass +through the set to the other side of the room; but on perceiving Mr. +Darcy, he stopped with a bow of superior courtesy to compliment him on +his dancing and his partner. + +“I have been most highly gratified indeed, my dear sir. Such very +superior dancing is not often seen. It is evident that you belong to the +first circles. Allow me to say, however, that your fair partner does not +disgrace you, and that I must hope to have this pleasure often repeated, +especially when a certain desirable event, my dear Eliza (glancing at +her sister and Bingley) shall take place. What congratulations will then +flow in! I appeal to Mr. Darcy:--but let me not interrupt you, sir. You +will not thank me for detaining you from the bewitching converse of that +young lady, whose bright eyes are also upbraiding me.” + +The latter part of this address was scarcely heard by Darcy; but Sir +William's allusion to his friend seemed to strike him forcibly, and his +eyes were directed with a very serious expression towards Bingley and +Jane, who were dancing together. Recovering himself, however, shortly, +he turned to his partner, and said, “Sir William's interruption has made +me forget what we were talking of.” + +“I do not think we were speaking at all. Sir William could not have +interrupted two people in the room who had less to say for themselves. +We have tried two or three subjects already without success, and what we +are to talk of next I cannot imagine.” + +“What think you of books?” said he, smiling. + +“Books--oh! no. I am sure we never read the same, or not with the same +feelings.” + +“I am sorry you think so; but if that be the case, there can at least be +no want of subject. We may compare our different opinions.” + +“No--I cannot talk of books in a ball-room; my head is always full of +something else.” + +“The _present_ always occupies you in such scenes--does it?” said he, +with a look of doubt. + +“Yes, always,” she replied, without knowing what she said, for her +thoughts had wandered far from the subject, as soon afterwards appeared +by her suddenly exclaiming, “I remember hearing you once say, Mr. Darcy, +that you hardly ever forgave, that your resentment once created was +unappeasable. You are very cautious, I suppose, as to its _being +created_.” + +“I am,” said he, with a firm voice. + +“And never allow yourself to be blinded by prejudice?” + +“I hope not.” + +“It is particularly incumbent on those who never change their opinion, +to be secure of judging properly at first.” + +“May I ask to what these questions tend?” + +“Merely to the illustration of _your_ character,” said she, endeavouring +to shake off her gravity. “I am trying to make it out.” + +“And what is your success?” + +She shook her head. “I do not get on at all. I hear such different +accounts of you as puzzle me exceedingly.” + +“I can readily believe,” answered he gravely, “that reports may vary +greatly with respect to me; and I could wish, Miss Bennet, that you were +not to sketch my character at the present moment, as there is reason to +fear that the performance would reflect no credit on either.” + +“But if I do not take your likeness now, I may never have another +opportunity.” + +“I would by no means suspend any pleasure of yours,” he coldly replied. +She said no more, and they went down the other dance and parted in +silence; and on each side dissatisfied, though not to an equal degree, +for in Darcy's breast there was a tolerably powerful feeling towards +her, which soon procured her pardon, and directed all his anger against +another. + +They had not long separated, when Miss Bingley came towards her, and +with an expression of civil disdain accosted her: + +“So, Miss Eliza, I hear you are quite delighted with George Wickham! +Your sister has been talking to me about him, and asking me a thousand +questions; and I find that the young man quite forgot to tell you, among +his other communication, that he was the son of old Wickham, the late +Mr. Darcy's steward. Let me recommend you, however, as a friend, not to +give implicit confidence to all his assertions; for as to Mr. Darcy's +using him ill, it is perfectly false; for, on the contrary, he has +always been remarkably kind to him, though George Wickham has treated +Mr. Darcy in a most infamous manner. I do not know the particulars, but +I know very well that Mr. Darcy is not in the least to blame, that he +cannot bear to hear George Wickham mentioned, and that though my brother +thought that he could not well avoid including him in his invitation to +the officers, he was excessively glad to find that he had taken himself +out of the way. His coming into the country at all is a most insolent +thing, indeed, and I wonder how he could presume to do it. I pity you, +Miss Eliza, for this discovery of your favourite's guilt; but really, +considering his descent, one could not expect much better.” + +“His guilt and his descent appear by your account to be the same,” said +Elizabeth angrily; “for I have heard you accuse him of nothing worse +than of being the son of Mr. Darcy's steward, and of _that_, I can +assure you, he informed me himself.” + +“I beg your pardon,” replied Miss Bingley, turning away with a sneer. +“Excuse my interference--it was kindly meant.” + +“Insolent girl!” said Elizabeth to herself. “You are much mistaken +if you expect to influence me by such a paltry attack as this. I see +nothing in it but your own wilful ignorance and the malice of Mr. +Darcy.” She then sought her eldest sister, who had undertaken to make +inquiries on the same subject of Bingley. Jane met her with a smile of +such sweet complacency, a glow of such happy expression, as sufficiently +marked how well she was satisfied with the occurrences of the evening. +Elizabeth instantly read her feelings, and at that moment solicitude for +Wickham, resentment against his enemies, and everything else, gave way +before the hope of Jane's being in the fairest way for happiness. + +“I want to know,” said she, with a countenance no less smiling than her +sister's, “what you have learnt about Mr. Wickham. But perhaps you have +been too pleasantly engaged to think of any third person; in which case +you may be sure of my pardon.” + +“No,” replied Jane, “I have not forgotten him; but I have nothing +satisfactory to tell you. Mr. Bingley does not know the whole of +his history, and is quite ignorant of the circumstances which have +principally offended Mr. Darcy; but he will vouch for the good conduct, +the probity, and honour of his friend, and is perfectly convinced that +Mr. Wickham has deserved much less attention from Mr. Darcy than he has +received; and I am sorry to say by his account as well as his sister's, +Mr. Wickham is by no means a respectable young man. I am afraid he has +been very imprudent, and has deserved to lose Mr. Darcy's regard.” + +“Mr. Bingley does not know Mr. Wickham himself?” + +“No; he never saw him till the other morning at Meryton.” + +“This account then is what he has received from Mr. Darcy. I am +satisfied. But what does he say of the living?” + +“He does not exactly recollect the circumstances, though he has heard +them from Mr. Darcy more than once, but he believes that it was left to +him _conditionally_ only.” + +“I have not a doubt of Mr. Bingley's sincerity,” said Elizabeth warmly; +“but you must excuse my not being convinced by assurances only. Mr. +Bingley's defense of his friend was a very able one, I dare say; but +since he is unacquainted with several parts of the story, and has learnt +the rest from that friend himself, I shall venture to still think of +both gentlemen as I did before.” + +She then changed the discourse to one more gratifying to each, and on +which there could be no difference of sentiment. Elizabeth listened with +delight to the happy, though modest hopes which Jane entertained of Mr. +Bingley's regard, and said all in her power to heighten her confidence +in it. On their being joined by Mr. Bingley himself, Elizabeth withdrew +to Miss Lucas; to whose inquiry after the pleasantness of her last +partner she had scarcely replied, before Mr. Collins came up to them, +and told her with great exultation that he had just been so fortunate as +to make a most important discovery. + +“I have found out,” said he, “by a singular accident, that there is now +in the room a near relation of my patroness. I happened to overhear the +gentleman himself mentioning to the young lady who does the honours of +the house the names of his cousin Miss de Bourgh, and of her mother Lady +Catherine. How wonderfully these sort of things occur! Who would have +thought of my meeting with, perhaps, a nephew of Lady Catherine de +Bourgh in this assembly! I am most thankful that the discovery is made +in time for me to pay my respects to him, which I am now going to +do, and trust he will excuse my not having done it before. My total +ignorance of the connection must plead my apology.” + +“You are not going to introduce yourself to Mr. Darcy!” + +“Indeed I am. I shall entreat his pardon for not having done it earlier. +I believe him to be Lady Catherine's _nephew_. It will be in my power to +assure him that her ladyship was quite well yesterday se'nnight.” + +Elizabeth tried hard to dissuade him from such a scheme, assuring him +that Mr. Darcy would consider his addressing him without introduction +as an impertinent freedom, rather than a compliment to his aunt; that +it was not in the least necessary there should be any notice on either +side; and that if it were, it must belong to Mr. Darcy, the superior in +consequence, to begin the acquaintance. Mr. Collins listened to her +with the determined air of following his own inclination, and, when she +ceased speaking, replied thus: + +“My dear Miss Elizabeth, I have the highest opinion in the world in +your excellent judgement in all matters within the scope of your +understanding; but permit me to say, that there must be a wide +difference between the established forms of ceremony amongst the laity, +and those which regulate the clergy; for, give me leave to observe that +I consider the clerical office as equal in point of dignity with +the highest rank in the kingdom--provided that a proper humility of +behaviour is at the same time maintained. You must therefore allow me to +follow the dictates of my conscience on this occasion, which leads me to +perform what I look on as a point of duty. Pardon me for neglecting to +profit by your advice, which on every other subject shall be my constant +guide, though in the case before us I consider myself more fitted by +education and habitual study to decide on what is right than a young +lady like yourself.” And with a low bow he left her to attack Mr. +Darcy, whose reception of his advances she eagerly watched, and whose +astonishment at being so addressed was very evident. Her cousin prefaced +his speech with a solemn bow and though she could not hear a word of +it, she felt as if hearing it all, and saw in the motion of his lips the +words “apology,” “Hunsford,” and “Lady Catherine de Bourgh.” It vexed +her to see him expose himself to such a man. Mr. Darcy was eyeing him +with unrestrained wonder, and when at last Mr. Collins allowed him time +to speak, replied with an air of distant civility. Mr. Collins, however, +was not discouraged from speaking again, and Mr. Darcy's contempt seemed +abundantly increasing with the length of his second speech, and at the +end of it he only made him a slight bow, and moved another way. Mr. +Collins then returned to Elizabeth. + +“I have no reason, I assure you,” said he, “to be dissatisfied with my +reception. Mr. Darcy seemed much pleased with the attention. He answered +me with the utmost civility, and even paid me the compliment of saying +that he was so well convinced of Lady Catherine's discernment as to be +certain she could never bestow a favour unworthily. It was really a very +handsome thought. Upon the whole, I am much pleased with him.” + +As Elizabeth had no longer any interest of her own to pursue, she turned +her attention almost entirely on her sister and Mr. Bingley; and the +train of agreeable reflections which her observations gave birth to, +made her perhaps almost as happy as Jane. She saw her in idea settled in +that very house, in all the felicity which a marriage of true affection +could bestow; and she felt capable, under such circumstances, of +endeavouring even to like Bingley's two sisters. Her mother's thoughts +she plainly saw were bent the same way, and she determined not to +venture near her, lest she might hear too much. When they sat down to +supper, therefore, she considered it a most unlucky perverseness which +placed them within one of each other; and deeply was she vexed to find +that her mother was talking to that one person (Lady Lucas) freely, +openly, and of nothing else but her expectation that Jane would soon +be married to Mr. Bingley. It was an animating subject, and Mrs. Bennet +seemed incapable of fatigue while enumerating the advantages of the +match. His being such a charming young man, and so rich, and living but +three miles from them, were the first points of self-gratulation; and +then it was such a comfort to think how fond the two sisters were of +Jane, and to be certain that they must desire the connection as much as +she could do. It was, moreover, such a promising thing for her younger +daughters, as Jane's marrying so greatly must throw them in the way of +other rich men; and lastly, it was so pleasant at her time of life to be +able to consign her single daughters to the care of their sister, that +she might not be obliged to go into company more than she liked. It was +necessary to make this circumstance a matter of pleasure, because on +such occasions it is the etiquette; but no one was less likely than Mrs. +Bennet to find comfort in staying home at any period of her life. She +concluded with many good wishes that Lady Lucas might soon be equally +fortunate, though evidently and triumphantly believing there was no +chance of it. + +In vain did Elizabeth endeavour to check the rapidity of her mother's +words, or persuade her to describe her felicity in a less audible +whisper; for, to her inexpressible vexation, she could perceive that the +chief of it was overheard by Mr. Darcy, who sat opposite to them. Her +mother only scolded her for being nonsensical. + +“What is Mr. Darcy to me, pray, that I should be afraid of him? I am +sure we owe him no such particular civility as to be obliged to say +nothing _he_ may not like to hear.” + +“For heaven's sake, madam, speak lower. What advantage can it be for you +to offend Mr. Darcy? You will never recommend yourself to his friend by +so doing!” + +Nothing that she could say, however, had any influence. Her mother would +talk of her views in the same intelligible tone. Elizabeth blushed and +blushed again with shame and vexation. She could not help frequently +glancing her eye at Mr. Darcy, though every glance convinced her of what +she dreaded; for though he was not always looking at her mother, she was +convinced that his attention was invariably fixed by her. The expression +of his face changed gradually from indignant contempt to a composed and +steady gravity. + +At length, however, Mrs. Bennet had no more to say; and Lady Lucas, who +had been long yawning at the repetition of delights which she saw no +likelihood of sharing, was left to the comforts of cold ham and +chicken. Elizabeth now began to revive. But not long was the interval of +tranquillity; for, when supper was over, singing was talked of, and +she had the mortification of seeing Mary, after very little entreaty, +preparing to oblige the company. By many significant looks and silent +entreaties, did she endeavour to prevent such a proof of complaisance, +but in vain; Mary would not understand them; such an opportunity of +exhibiting was delightful to her, and she began her song. Elizabeth's +eyes were fixed on her with most painful sensations, and she watched her +progress through the several stanzas with an impatience which was very +ill rewarded at their close; for Mary, on receiving, amongst the thanks +of the table, the hint of a hope that she might be prevailed on to +favour them again, after the pause of half a minute began another. +Mary's powers were by no means fitted for such a display; her voice was +weak, and her manner affected. Elizabeth was in agonies. She looked at +Jane, to see how she bore it; but Jane was very composedly talking to +Bingley. She looked at his two sisters, and saw them making signs +of derision at each other, and at Darcy, who continued, however, +imperturbably grave. She looked at her father to entreat his +interference, lest Mary should be singing all night. He took the hint, +and when Mary had finished her second song, said aloud, “That will do +extremely well, child. You have delighted us long enough. Let the other +young ladies have time to exhibit.” + +Mary, though pretending not to hear, was somewhat disconcerted; and +Elizabeth, sorry for her, and sorry for her father's speech, was afraid +her anxiety had done no good. Others of the party were now applied to. + +“If I,” said Mr. Collins, “were so fortunate as to be able to sing, I +should have great pleasure, I am sure, in obliging the company with an +air; for I consider music as a very innocent diversion, and perfectly +compatible with the profession of a clergyman. I do not mean, however, +to assert that we can be justified in devoting too much of our time +to music, for there are certainly other things to be attended to. The +rector of a parish has much to do. In the first place, he must make +such an agreement for tithes as may be beneficial to himself and not +offensive to his patron. He must write his own sermons; and the time +that remains will not be too much for his parish duties, and the care +and improvement of his dwelling, which he cannot be excused from making +as comfortable as possible. And I do not think it of light importance +that he should have attentive and conciliatory manners towards everybody, +especially towards those to whom he owes his preferment. I cannot acquit +him of that duty; nor could I think well of the man who should omit an +occasion of testifying his respect towards anybody connected with the +family.” And with a bow to Mr. Darcy, he concluded his speech, which had +been spoken so loud as to be heard by half the room. Many stared--many +smiled; but no one looked more amused than Mr. Bennet himself, while his +wife seriously commended Mr. Collins for having spoken so sensibly, +and observed in a half-whisper to Lady Lucas, that he was a remarkably +clever, good kind of young man. + +To Elizabeth it appeared that, had her family made an agreement to +expose themselves as much as they could during the evening, it would +have been impossible for them to play their parts with more spirit or +finer success; and happy did she think it for Bingley and her sister +that some of the exhibition had escaped his notice, and that his +feelings were not of a sort to be much distressed by the folly which he +must have witnessed. That his two sisters and Mr. Darcy, however, should +have such an opportunity of ridiculing her relations, was bad enough, +and she could not determine whether the silent contempt of the +gentleman, or the insolent smiles of the ladies, were more intolerable. + +The rest of the evening brought her little amusement. She was teased by +Mr. Collins, who continued most perseveringly by her side, and though +he could not prevail on her to dance with him again, put it out of her +power to dance with others. In vain did she entreat him to stand up with +somebody else, and offer to introduce him to any young lady in the room. +He assured her, that as to dancing, he was perfectly indifferent to it; +that his chief object was by delicate attentions to recommend himself to +her and that he should therefore make a point of remaining close to her +the whole evening. There was no arguing upon such a project. She owed +her greatest relief to her friend Miss Lucas, who often joined them, and +good-naturedly engaged Mr. Collins's conversation to herself. + +She was at least free from the offense of Mr. Darcy's further notice; +though often standing within a very short distance of her, quite +disengaged, he never came near enough to speak. She felt it to be the +probable consequence of her allusions to Mr. Wickham, and rejoiced in +it. + +The Longbourn party were the last of all the company to depart, and, by +a manoeuvre of Mrs. Bennet, had to wait for their carriage a quarter of +an hour after everybody else was gone, which gave them time to see how +heartily they were wished away by some of the family. Mrs. Hurst and her +sister scarcely opened their mouths, except to complain of fatigue, and +were evidently impatient to have the house to themselves. They repulsed +every attempt of Mrs. Bennet at conversation, and by so doing threw a +languor over the whole party, which was very little relieved by the +long speeches of Mr. Collins, who was complimenting Mr. Bingley and his +sisters on the elegance of their entertainment, and the hospitality and +politeness which had marked their behaviour to their guests. Darcy said +nothing at all. Mr. Bennet, in equal silence, was enjoying the scene. +Mr. Bingley and Jane were standing together, a little detached from the +rest, and talked only to each other. Elizabeth preserved as steady a +silence as either Mrs. Hurst or Miss Bingley; and even Lydia was too +much fatigued to utter more than the occasional exclamation of “Lord, +how tired I am!” accompanied by a violent yawn. + +When at length they arose to take leave, Mrs. Bennet was most pressingly +civil in her hope of seeing the whole family soon at Longbourn, and +addressed herself especially to Mr. Bingley, to assure him how happy he +would make them by eating a family dinner with them at any time, without +the ceremony of a formal invitation. Bingley was all grateful pleasure, +and he readily engaged for taking the earliest opportunity of waiting on +her, after his return from London, whither he was obliged to go the next +day for a short time. + +Mrs. Bennet was perfectly satisfied, and quitted the house under the +delightful persuasion that, allowing for the necessary preparations of +settlements, new carriages, and wedding clothes, she should undoubtedly +see her daughter settled at Netherfield in the course of three or four +months. Of having another daughter married to Mr. Collins, she thought +with equal certainty, and with considerable, though not equal, pleasure. +Elizabeth was the least dear to her of all her children; and though the +man and the match were quite good enough for _her_, the worth of each +was eclipsed by Mr. Bingley and Netherfield. + + + +Chapter 19 + + +The next day opened a new scene at Longbourn. Mr. Collins made his +declaration in form. Having resolved to do it without loss of time, as +his leave of absence extended only to the following Saturday, and having +no feelings of diffidence to make it distressing to himself even at +the moment, he set about it in a very orderly manner, with all the +observances, which he supposed a regular part of the business. On +finding Mrs. Bennet, Elizabeth, and one of the younger girls together, +soon after breakfast, he addressed the mother in these words: + +“May I hope, madam, for your interest with your fair daughter Elizabeth, +when I solicit for the honour of a private audience with her in the +course of this morning?” + +Before Elizabeth had time for anything but a blush of surprise, Mrs. +Bennet answered instantly, “Oh dear!--yes--certainly. I am sure Lizzy +will be very happy--I am sure she can have no objection. Come, Kitty, I +want you up stairs.” And, gathering her work together, she was hastening +away, when Elizabeth called out: + +“Dear madam, do not go. I beg you will not go. Mr. Collins must excuse +me. He can have nothing to say to me that anybody need not hear. I am +going away myself.” + +“No, no, nonsense, Lizzy. I desire you to stay where you are.” And upon +Elizabeth's seeming really, with vexed and embarrassed looks, about to +escape, she added: “Lizzy, I _insist_ upon your staying and hearing Mr. +Collins.” + +Elizabeth would not oppose such an injunction--and a moment's +consideration making her also sensible that it would be wisest to get it +over as soon and as quietly as possible, she sat down again and tried to +conceal, by incessant employment the feelings which were divided between +distress and diversion. Mrs. Bennet and Kitty walked off, and as soon as +they were gone, Mr. Collins began. + +“Believe me, my dear Miss Elizabeth, that your modesty, so far from +doing you any disservice, rather adds to your other perfections. You +would have been less amiable in my eyes had there _not_ been this little +unwillingness; but allow me to assure you, that I have your respected +mother's permission for this address. You can hardly doubt the +purport of my discourse, however your natural delicacy may lead you to +dissemble; my attentions have been too marked to be mistaken. Almost as +soon as I entered the house, I singled you out as the companion of +my future life. But before I am run away with by my feelings on this +subject, perhaps it would be advisable for me to state my reasons for +marrying--and, moreover, for coming into Hertfordshire with the design +of selecting a wife, as I certainly did.” + +The idea of Mr. Collins, with all his solemn composure, being run away +with by his feelings, made Elizabeth so near laughing, that she could +not use the short pause he allowed in any attempt to stop him further, +and he continued: + +“My reasons for marrying are, first, that I think it a right thing for +every clergyman in easy circumstances (like myself) to set the example +of matrimony in his parish; secondly, that I am convinced that it will +add very greatly to my happiness; and thirdly--which perhaps I ought +to have mentioned earlier, that it is the particular advice and +recommendation of the very noble lady whom I have the honour of calling +patroness. Twice has she condescended to give me her opinion (unasked +too!) on this subject; and it was but the very Saturday night before I +left Hunsford--between our pools at quadrille, while Mrs. Jenkinson was +arranging Miss de Bourgh's footstool, that she said, 'Mr. Collins, you +must marry. A clergyman like you must marry. Choose properly, choose +a gentlewoman for _my_ sake; and for your _own_, let her be an active, +useful sort of person, not brought up high, but able to make a small +income go a good way. This is my advice. Find such a woman as soon as +you can, bring her to Hunsford, and I will visit her.' Allow me, by the +way, to observe, my fair cousin, that I do not reckon the notice +and kindness of Lady Catherine de Bourgh as among the least of the +advantages in my power to offer. You will find her manners beyond +anything I can describe; and your wit and vivacity, I think, must be +acceptable to her, especially when tempered with the silence and +respect which her rank will inevitably excite. Thus much for my general +intention in favour of matrimony; it remains to be told why my views +were directed towards Longbourn instead of my own neighbourhood, where I +can assure you there are many amiable young women. But the fact is, that +being, as I am, to inherit this estate after the death of your honoured +father (who, however, may live many years longer), I could not satisfy +myself without resolving to choose a wife from among his daughters, that +the loss to them might be as little as possible, when the melancholy +event takes place--which, however, as I have already said, may not +be for several years. This has been my motive, my fair cousin, and +I flatter myself it will not sink me in your esteem. And now nothing +remains for me but to assure you in the most animated language of the +violence of my affection. To fortune I am perfectly indifferent, and +shall make no demand of that nature on your father, since I am well +aware that it could not be complied with; and that one thousand pounds +in the four per cents, which will not be yours till after your mother's +decease, is all that you may ever be entitled to. On that head, +therefore, I shall be uniformly silent; and you may assure yourself that +no ungenerous reproach shall ever pass my lips when we are married.” + +It was absolutely necessary to interrupt him now. + +“You are too hasty, sir,” she cried. “You forget that I have made no +answer. Let me do it without further loss of time. Accept my thanks for +the compliment you are paying me. I am very sensible of the honour of +your proposals, but it is impossible for me to do otherwise than to +decline them.” + +“I am not now to learn,” replied Mr. Collins, with a formal wave of the +hand, “that it is usual with young ladies to reject the addresses of the +man whom they secretly mean to accept, when he first applies for their +favour; and that sometimes the refusal is repeated a second, or even a +third time. I am therefore by no means discouraged by what you have just +said, and shall hope to lead you to the altar ere long.” + +“Upon my word, sir,” cried Elizabeth, “your hope is a rather +extraordinary one after my declaration. I do assure you that I am not +one of those young ladies (if such young ladies there are) who are so +daring as to risk their happiness on the chance of being asked a second +time. I am perfectly serious in my refusal. You could not make _me_ +happy, and I am convinced that I am the last woman in the world who +could make you so. Nay, were your friend Lady Catherine to know me, I +am persuaded she would find me in every respect ill qualified for the +situation.” + +“Were it certain that Lady Catherine would think so,” said Mr. Collins +very gravely--“but I cannot imagine that her ladyship would at all +disapprove of you. And you may be certain when I have the honour of +seeing her again, I shall speak in the very highest terms of your +modesty, economy, and other amiable qualification.” + +“Indeed, Mr. Collins, all praise of me will be unnecessary. You +must give me leave to judge for myself, and pay me the compliment +of believing what I say. I wish you very happy and very rich, and by +refusing your hand, do all in my power to prevent your being otherwise. +In making me the offer, you must have satisfied the delicacy of your +feelings with regard to my family, and may take possession of Longbourn +estate whenever it falls, without any self-reproach. This matter may +be considered, therefore, as finally settled.” And rising as she +thus spoke, she would have quitted the room, had Mr. Collins not thus +addressed her: + +“When I do myself the honour of speaking to you next on the subject, I +shall hope to receive a more favourable answer than you have now given +me; though I am far from accusing you of cruelty at present, because I +know it to be the established custom of your sex to reject a man on +the first application, and perhaps you have even now said as much to +encourage my suit as would be consistent with the true delicacy of the +female character.” + +“Really, Mr. Collins,” cried Elizabeth with some warmth, “you puzzle me +exceedingly. If what I have hitherto said can appear to you in the form +of encouragement, I know not how to express my refusal in such a way as +to convince you of its being one.” + +“You must give me leave to flatter myself, my dear cousin, that your +refusal of my addresses is merely words of course. My reasons for +believing it are briefly these: It does not appear to me that my hand is +unworthy of your acceptance, or that the establishment I can offer would +be any other than highly desirable. My situation in life, my connections +with the family of de Bourgh, and my relationship to your own, are +circumstances highly in my favour; and you should take it into further +consideration, that in spite of your manifold attractions, it is by no +means certain that another offer of marriage may ever be made you. Your +portion is unhappily so small that it will in all likelihood undo +the effects of your loveliness and amiable qualifications. As I must +therefore conclude that you are not serious in your rejection of me, +I shall choose to attribute it to your wish of increasing my love by +suspense, according to the usual practice of elegant females.” + +“I do assure you, sir, that I have no pretensions whatever to that kind +of elegance which consists in tormenting a respectable man. I would +rather be paid the compliment of being believed sincere. I thank you +again and again for the honour you have done me in your proposals, but +to accept them is absolutely impossible. My feelings in every respect +forbid it. Can I speak plainer? Do not consider me now as an elegant +female, intending to plague you, but as a rational creature, speaking +the truth from her heart.” + +“You are uniformly charming!” cried he, with an air of awkward +gallantry; “and I am persuaded that when sanctioned by the express +authority of both your excellent parents, my proposals will not fail of +being acceptable.” + +To such perseverance in wilful self-deception Elizabeth would make +no reply, and immediately and in silence withdrew; determined, if +he persisted in considering her repeated refusals as flattering +encouragement, to apply to her father, whose negative might be uttered +in such a manner as to be decisive, and whose behaviour at least could +not be mistaken for the affectation and coquetry of an elegant female. + + + +Chapter 20 + + +Mr. Collins was not left long to the silent contemplation of his +successful love; for Mrs. Bennet, having dawdled about in the vestibule +to watch for the end of the conference, no sooner saw Elizabeth open +the door and with quick step pass her towards the staircase, than she +entered the breakfast-room, and congratulated both him and herself in +warm terms on the happy prospect of their nearer connection. Mr. Collins +received and returned these felicitations with equal pleasure, and then +proceeded to relate the particulars of their interview, with the result +of which he trusted he had every reason to be satisfied, since the +refusal which his cousin had steadfastly given him would naturally flow +from her bashful modesty and the genuine delicacy of her character. + +This information, however, startled Mrs. Bennet; she would have been +glad to be equally satisfied that her daughter had meant to encourage +him by protesting against his proposals, but she dared not believe it, +and could not help saying so. + +“But, depend upon it, Mr. Collins,” she added, “that Lizzy shall be +brought to reason. I will speak to her about it directly. She is a very +headstrong, foolish girl, and does not know her own interest but I will +_make_ her know it.” + +“Pardon me for interrupting you, madam,” cried Mr. Collins; “but if +she is really headstrong and foolish, I know not whether she would +altogether be a very desirable wife to a man in my situation, who +naturally looks for happiness in the marriage state. If therefore she +actually persists in rejecting my suit, perhaps it were better not +to force her into accepting me, because if liable to such defects of +temper, she could not contribute much to my felicity.” + +“Sir, you quite misunderstand me,” said Mrs. Bennet, alarmed. “Lizzy is +only headstrong in such matters as these. In everything else she is as +good-natured a girl as ever lived. I will go directly to Mr. Bennet, and +we shall very soon settle it with her, I am sure.” + +She would not give him time to reply, but hurrying instantly to her +husband, called out as she entered the library, “Oh! Mr. Bennet, you +are wanted immediately; we are all in an uproar. You must come and make +Lizzy marry Mr. Collins, for she vows she will not have him, and if you +do not make haste he will change his mind and not have _her_.” + +Mr. Bennet raised his eyes from his book as she entered, and fixed them +on her face with a calm unconcern which was not in the least altered by +her communication. + +“I have not the pleasure of understanding you,” said he, when she had +finished her speech. “Of what are you talking?” + +“Of Mr. Collins and Lizzy. Lizzy declares she will not have Mr. Collins, +and Mr. Collins begins to say that he will not have Lizzy.” + +“And what am I to do on the occasion? It seems an hopeless business.” + +“Speak to Lizzy about it yourself. Tell her that you insist upon her +marrying him.” + +“Let her be called down. She shall hear my opinion.” + +Mrs. Bennet rang the bell, and Miss Elizabeth was summoned to the +library. + +“Come here, child,” cried her father as she appeared. “I have sent for +you on an affair of importance. I understand that Mr. Collins has made +you an offer of marriage. Is it true?” Elizabeth replied that it was. +“Very well--and this offer of marriage you have refused?” + +“I have, sir.” + +“Very well. We now come to the point. Your mother insists upon your +accepting it. Is it not so, Mrs. Bennet?” + +“Yes, or I will never see her again.” + +“An unhappy alternative is before you, Elizabeth. From this day you must +be a stranger to one of your parents. Your mother will never see you +again if you do _not_ marry Mr. Collins, and I will never see you again +if you _do_.” + +Elizabeth could not but smile at such a conclusion of such a beginning, +but Mrs. Bennet, who had persuaded herself that her husband regarded the +affair as she wished, was excessively disappointed. + +“What do you mean, Mr. Bennet, in talking this way? You promised me to +_insist_ upon her marrying him.” + +“My dear,” replied her husband, “I have two small favours to request. +First, that you will allow me the free use of my understanding on the +present occasion; and secondly, of my room. I shall be glad to have the +library to myself as soon as may be.” + +Not yet, however, in spite of her disappointment in her husband, did +Mrs. Bennet give up the point. She talked to Elizabeth again and again; +coaxed and threatened her by turns. She endeavoured to secure Jane +in her interest; but Jane, with all possible mildness, declined +interfering; and Elizabeth, sometimes with real earnestness, and +sometimes with playful gaiety, replied to her attacks. Though her manner +varied, however, her determination never did. + +Mr. Collins, meanwhile, was meditating in solitude on what had passed. +He thought too well of himself to comprehend on what motives his cousin +could refuse him; and though his pride was hurt, he suffered in no other +way. His regard for her was quite imaginary; and the possibility of her +deserving her mother's reproach prevented his feeling any regret. + +While the family were in this confusion, Charlotte Lucas came to spend +the day with them. She was met in the vestibule by Lydia, who, flying to +her, cried in a half whisper, “I am glad you are come, for there is such +fun here! What do you think has happened this morning? Mr. Collins has +made an offer to Lizzy, and she will not have him.” + +Charlotte hardly had time to answer, before they were joined by Kitty, +who came to tell the same news; and no sooner had they entered the +breakfast-room, where Mrs. Bennet was alone, than she likewise began on +the subject, calling on Miss Lucas for her compassion, and entreating +her to persuade her friend Lizzy to comply with the wishes of all her +family. “Pray do, my dear Miss Lucas,” she added in a melancholy tone, +“for nobody is on my side, nobody takes part with me. I am cruelly used, +nobody feels for my poor nerves.” + +Charlotte's reply was spared by the entrance of Jane and Elizabeth. + +“Aye, there she comes,” continued Mrs. Bennet, “looking as unconcerned +as may be, and caring no more for us than if we were at York, provided +she can have her own way. But I tell you, Miss Lizzy--if you take it +into your head to go on refusing every offer of marriage in this way, +you will never get a husband at all--and I am sure I do not know who is +to maintain you when your father is dead. I shall not be able to keep +you--and so I warn you. I have done with you from this very day. I told +you in the library, you know, that I should never speak to you again, +and you will find me as good as my word. I have no pleasure in talking +to undutiful children. Not that I have much pleasure, indeed, in talking +to anybody. People who suffer as I do from nervous complaints can have +no great inclination for talking. Nobody can tell what I suffer! But it +is always so. Those who do not complain are never pitied.” + +Her daughters listened in silence to this effusion, sensible that +any attempt to reason with her or soothe her would only increase the +irritation. She talked on, therefore, without interruption from any of +them, till they were joined by Mr. Collins, who entered the room with +an air more stately than usual, and on perceiving whom, she said to +the girls, “Now, I do insist upon it, that you, all of you, hold +your tongues, and let me and Mr. Collins have a little conversation +together.” + +Elizabeth passed quietly out of the room, Jane and Kitty followed, but +Lydia stood her ground, determined to hear all she could; and Charlotte, +detained first by the civility of Mr. Collins, whose inquiries after +herself and all her family were very minute, and then by a little +curiosity, satisfied herself with walking to the window and pretending +not to hear. In a doleful voice Mrs. Bennet began the projected +conversation: “Oh! Mr. Collins!” + +“My dear madam,” replied he, “let us be for ever silent on this point. +Far be it from me,” he presently continued, in a voice that marked his +displeasure, “to resent the behaviour of your daughter. Resignation +to inevitable evils is the duty of us all; the peculiar duty of a +young man who has been so fortunate as I have been in early preferment; +and I trust I am resigned. Perhaps not the less so from feeling a doubt +of my positive happiness had my fair cousin honoured me with her hand; +for I have often observed that resignation is never so perfect as +when the blessing denied begins to lose somewhat of its value in our +estimation. You will not, I hope, consider me as showing any disrespect +to your family, my dear madam, by thus withdrawing my pretensions to +your daughter's favour, without having paid yourself and Mr. Bennet the +compliment of requesting you to interpose your authority in my +behalf. My conduct may, I fear, be objectionable in having accepted my +dismission from your daughter's lips instead of your own. But we are all +liable to error. I have certainly meant well through the whole affair. +My object has been to secure an amiable companion for myself, with due +consideration for the advantage of all your family, and if my _manner_ +has been at all reprehensible, I here beg leave to apologise.” + + + +Chapter 21 + + +The discussion of Mr. Collins's offer was now nearly at an end, and +Elizabeth had only to suffer from the uncomfortable feelings necessarily +attending it, and occasionally from some peevish allusions of her +mother. As for the gentleman himself, _his_ feelings were chiefly +expressed, not by embarrassment or dejection, or by trying to avoid her, +but by stiffness of manner and resentful silence. He scarcely ever spoke +to her, and the assiduous attentions which he had been so sensible of +himself were transferred for the rest of the day to Miss Lucas, whose +civility in listening to him was a seasonable relief to them all, and +especially to her friend. + +The morrow produced no abatement of Mrs. Bennet's ill-humour or ill +health. Mr. Collins was also in the same state of angry pride. Elizabeth +had hoped that his resentment might shorten his visit, but his plan did +not appear in the least affected by it. He was always to have gone on +Saturday, and to Saturday he meant to stay. + +After breakfast, the girls walked to Meryton to inquire if Mr. Wickham +were returned, and to lament over his absence from the Netherfield ball. +He joined them on their entering the town, and attended them to their +aunt's where his regret and vexation, and the concern of everybody, was +well talked over. To Elizabeth, however, he voluntarily acknowledged +that the necessity of his absence _had_ been self-imposed. + +“I found,” said he, “as the time drew near that I had better not meet +Mr. Darcy; that to be in the same room, the same party with him for so +many hours together, might be more than I could bear, and that scenes +might arise unpleasant to more than myself.” + +She highly approved his forbearance, and they had leisure for a full +discussion of it, and for all the commendation which they civilly +bestowed on each other, as Wickham and another officer walked back with +them to Longbourn, and during the walk he particularly attended to +her. His accompanying them was a double advantage; she felt all the +compliment it offered to herself, and it was most acceptable as an +occasion of introducing him to her father and mother. + +Soon after their return, a letter was delivered to Miss Bennet; it came +from Netherfield. The envelope contained a sheet of elegant, little, +hot-pressed paper, well covered with a lady's fair, flowing hand; and +Elizabeth saw her sister's countenance change as she read it, and saw +her dwelling intently on some particular passages. Jane recollected +herself soon, and putting the letter away, tried to join with her usual +cheerfulness in the general conversation; but Elizabeth felt an anxiety +on the subject which drew off her attention even from Wickham; and no +sooner had he and his companion taken leave, than a glance from Jane +invited her to follow her up stairs. When they had gained their own room, +Jane, taking out the letter, said: + +“This is from Caroline Bingley; what it contains has surprised me a good +deal. The whole party have left Netherfield by this time, and are on +their way to town--and without any intention of coming back again. You +shall hear what she says.” + +She then read the first sentence aloud, which comprised the information +of their having just resolved to follow their brother to town directly, +and of their meaning to dine in Grosvenor Street, where Mr. Hurst had a +house. The next was in these words: “I do not pretend to regret anything +I shall leave in Hertfordshire, except your society, my dearest friend; +but we will hope, at some future period, to enjoy many returns of that +delightful intercourse we have known, and in the meanwhile may +lessen the pain of separation by a very frequent and most unreserved +correspondence. I depend on you for that.” To these highflown +expressions Elizabeth listened with all the insensibility of distrust; +and though the suddenness of their removal surprised her, she saw +nothing in it really to lament; it was not to be supposed that their +absence from Netherfield would prevent Mr. Bingley's being there; and as +to the loss of their society, she was persuaded that Jane must cease to +regard it, in the enjoyment of his. + +“It is unlucky,” said she, after a short pause, “that you should not be +able to see your friends before they leave the country. But may we not +hope that the period of future happiness to which Miss Bingley looks +forward may arrive earlier than she is aware, and that the delightful +intercourse you have known as friends will be renewed with yet greater +satisfaction as sisters? Mr. Bingley will not be detained in London by +them.” + +“Caroline decidedly says that none of the party will return into +Hertfordshire this winter. I will read it to you:” + +“When my brother left us yesterday, he imagined that the business which +took him to London might be concluded in three or four days; but as we +are certain it cannot be so, and at the same time convinced that when +Charles gets to town he will be in no hurry to leave it again, we have +determined on following him thither, that he may not be obliged to spend +his vacant hours in a comfortless hotel. Many of my acquaintances are +already there for the winter; I wish that I could hear that you, my +dearest friend, had any intention of making one of the crowd--but of +that I despair. I sincerely hope your Christmas in Hertfordshire may +abound in the gaieties which that season generally brings, and that your +beaux will be so numerous as to prevent your feeling the loss of the +three of whom we shall deprive you.” + +“It is evident by this,” added Jane, “that he comes back no more this +winter.” + +“It is only evident that Miss Bingley does not mean that he _should_.” + +“Why will you think so? It must be his own doing. He is his own +master. But you do not know _all_. I _will_ read you the passage which +particularly hurts me. I will have no reserves from _you_.” + +“Mr. Darcy is impatient to see his sister; and, to confess the truth, +_we_ are scarcely less eager to meet her again. I really do not think +Georgiana Darcy has her equal for beauty, elegance, and accomplishments; +and the affection she inspires in Louisa and myself is heightened into +something still more interesting, from the hope we dare entertain of +her being hereafter our sister. I do not know whether I ever before +mentioned to you my feelings on this subject; but I will not leave the +country without confiding them, and I trust you will not esteem them +unreasonable. My brother admires her greatly already; he will have +frequent opportunity now of seeing her on the most intimate footing; +her relations all wish the connection as much as his own; and a sister's +partiality is not misleading me, I think, when I call Charles most +capable of engaging any woman's heart. With all these circumstances to +favour an attachment, and nothing to prevent it, am I wrong, my dearest +Jane, in indulging the hope of an event which will secure the happiness +of so many?” + +“What do you think of _this_ sentence, my dear Lizzy?” said Jane as she +finished it. “Is it not clear enough? Does it not expressly declare that +Caroline neither expects nor wishes me to be her sister; that she is +perfectly convinced of her brother's indifference; and that if she +suspects the nature of my feelings for him, she means (most kindly!) to +put me on my guard? Can there be any other opinion on the subject?” + +“Yes, there can; for mine is totally different. Will you hear it?” + +“Most willingly.” + +“You shall have it in a few words. Miss Bingley sees that her brother is +in love with you, and wants him to marry Miss Darcy. She follows him +to town in hope of keeping him there, and tries to persuade you that he +does not care about you.” + +Jane shook her head. + +“Indeed, Jane, you ought to believe me. No one who has ever seen you +together can doubt his affection. Miss Bingley, I am sure, cannot. She +is not such a simpleton. Could she have seen half as much love in Mr. +Darcy for herself, she would have ordered her wedding clothes. But the +case is this: We are not rich enough or grand enough for them; and she +is the more anxious to get Miss Darcy for her brother, from the notion +that when there has been _one_ intermarriage, she may have less trouble +in achieving a second; in which there is certainly some ingenuity, and +I dare say it would succeed, if Miss de Bourgh were out of the way. But, +my dearest Jane, you cannot seriously imagine that because Miss Bingley +tells you her brother greatly admires Miss Darcy, he is in the smallest +degree less sensible of _your_ merit than when he took leave of you on +Tuesday, or that it will be in her power to persuade him that, instead +of being in love with you, he is very much in love with her friend.” + +“If we thought alike of Miss Bingley,” replied Jane, “your +representation of all this might make me quite easy. But I know the +foundation is unjust. Caroline is incapable of wilfully deceiving +anyone; and all that I can hope in this case is that she is deceiving +herself.” + +“That is right. You could not have started a more happy idea, since you +will not take comfort in mine. Believe her to be deceived, by all means. +You have now done your duty by her, and must fret no longer.” + +“But, my dear sister, can I be happy, even supposing the best, in +accepting a man whose sisters and friends are all wishing him to marry +elsewhere?” + +“You must decide for yourself,” said Elizabeth; “and if, upon mature +deliberation, you find that the misery of disobliging his two sisters is +more than equivalent to the happiness of being his wife, I advise you by +all means to refuse him.” + +“How can you talk so?” said Jane, faintly smiling. “You must know that +though I should be exceedingly grieved at their disapprobation, I could +not hesitate.” + +“I did not think you would; and that being the case, I cannot consider +your situation with much compassion.” + +“But if he returns no more this winter, my choice will never be +required. A thousand things may arise in six months!” + +The idea of his returning no more Elizabeth treated with the utmost +contempt. It appeared to her merely the suggestion of Caroline's +interested wishes, and she could not for a moment suppose that those +wishes, however openly or artfully spoken, could influence a young man +so totally independent of everyone. + +She represented to her sister as forcibly as possible what she felt +on the subject, and had soon the pleasure of seeing its happy effect. +Jane's temper was not desponding, and she was gradually led to hope, +though the diffidence of affection sometimes overcame the hope, that +Bingley would return to Netherfield and answer every wish of her heart. + +They agreed that Mrs. Bennet should only hear of the departure of the +family, without being alarmed on the score of the gentleman's conduct; +but even this partial communication gave her a great deal of concern, +and she bewailed it as exceedingly unlucky that the ladies should happen +to go away just as they were all getting so intimate together. After +lamenting it, however, at some length, she had the consolation that Mr. +Bingley would be soon down again and soon dining at Longbourn, and the +conclusion of all was the comfortable declaration, that though he had +been invited only to a family dinner, she would take care to have two +full courses. + + + +Chapter 22 + + +The Bennets were engaged to dine with the Lucases and again during the +chief of the day was Miss Lucas so kind as to listen to Mr. Collins. +Elizabeth took an opportunity of thanking her. “It keeps him in good +humour,” said she, “and I am more obliged to you than I can express.” + Charlotte assured her friend of her satisfaction in being useful, and +that it amply repaid her for the little sacrifice of her time. This was +very amiable, but Charlotte's kindness extended farther than Elizabeth +had any conception of; its object was nothing else than to secure her +from any return of Mr. Collins's addresses, by engaging them towards +herself. Such was Miss Lucas's scheme; and appearances were so +favourable, that when they parted at night, she would have felt almost +secure of success if he had not been to leave Hertfordshire so very +soon. But here she did injustice to the fire and independence of his +character, for it led him to escape out of Longbourn House the next +morning with admirable slyness, and hasten to Lucas Lodge to throw +himself at her feet. He was anxious to avoid the notice of his cousins, +from a conviction that if they saw him depart, they could not fail to +conjecture his design, and he was not willing to have the attempt known +till its success might be known likewise; for though feeling almost +secure, and with reason, for Charlotte had been tolerably encouraging, +he was comparatively diffident since the adventure of Wednesday. +His reception, however, was of the most flattering kind. Miss Lucas +perceived him from an upper window as he walked towards the house, and +instantly set out to meet him accidentally in the lane. But little had +she dared to hope that so much love and eloquence awaited her there. + +In as short a time as Mr. Collins's long speeches would allow, +everything was settled between them to the satisfaction of both; and as +they entered the house he earnestly entreated her to name the day that +was to make him the happiest of men; and though such a solicitation must +be waived for the present, the lady felt no inclination to trifle with +his happiness. The stupidity with which he was favoured by nature must +guard his courtship from any charm that could make a woman wish for its +continuance; and Miss Lucas, who accepted him solely from the pure +and disinterested desire of an establishment, cared not how soon that +establishment were gained. + +Sir William and Lady Lucas were speedily applied to for their consent; +and it was bestowed with a most joyful alacrity. Mr. Collins's present +circumstances made it a most eligible match for their daughter, to whom +they could give little fortune; and his prospects of future wealth were +exceedingly fair. Lady Lucas began directly to calculate, with more +interest than the matter had ever excited before, how many years longer +Mr. Bennet was likely to live; and Sir William gave it as his decided +opinion, that whenever Mr. Collins should be in possession of the +Longbourn estate, it would be highly expedient that both he and his wife +should make their appearance at St. James's. The whole family, in short, +were properly overjoyed on the occasion. The younger girls formed hopes +of _coming out_ a year or two sooner than they might otherwise have +done; and the boys were relieved from their apprehension of Charlotte's +dying an old maid. Charlotte herself was tolerably composed. She had +gained her point, and had time to consider of it. Her reflections were +in general satisfactory. Mr. Collins, to be sure, was neither sensible +nor agreeable; his society was irksome, and his attachment to her must +be imaginary. But still he would be her husband. Without thinking highly +either of men or matrimony, marriage had always been her object; it was +the only provision for well-educated young women of small fortune, +and however uncertain of giving happiness, must be their pleasantest +preservative from want. This preservative she had now obtained; and at +the age of twenty-seven, without having ever been handsome, she felt all +the good luck of it. The least agreeable circumstance in the business +was the surprise it must occasion to Elizabeth Bennet, whose friendship +she valued beyond that of any other person. Elizabeth would wonder, +and probably would blame her; and though her resolution was not to be +shaken, her feelings must be hurt by such a disapprobation. She resolved +to give her the information herself, and therefore charged Mr. Collins, +when he returned to Longbourn to dinner, to drop no hint of what had +passed before any of the family. A promise of secrecy was of course very +dutifully given, but it could not be kept without difficulty; for the +curiosity excited by his long absence burst forth in such very direct +questions on his return as required some ingenuity to evade, and he was +at the same time exercising great self-denial, for he was longing to +publish his prosperous love. + +As he was to begin his journey too early on the morrow to see any of the +family, the ceremony of leave-taking was performed when the ladies moved +for the night; and Mrs. Bennet, with great politeness and cordiality, +said how happy they should be to see him at Longbourn again, whenever +his engagements might allow him to visit them. + +“My dear madam,” he replied, “this invitation is particularly +gratifying, because it is what I have been hoping to receive; and +you may be very certain that I shall avail myself of it as soon as +possible.” + +They were all astonished; and Mr. Bennet, who could by no means wish for +so speedy a return, immediately said: + +“But is there not danger of Lady Catherine's disapprobation here, my +good sir? You had better neglect your relations than run the risk of +offending your patroness.” + +“My dear sir,” replied Mr. Collins, “I am particularly obliged to you +for this friendly caution, and you may depend upon my not taking so +material a step without her ladyship's concurrence.” + +“You cannot be too much upon your guard. Risk anything rather than her +displeasure; and if you find it likely to be raised by your coming to us +again, which I should think exceedingly probable, stay quietly at home, +and be satisfied that _we_ shall take no offence.” + +“Believe me, my dear sir, my gratitude is warmly excited by such +affectionate attention; and depend upon it, you will speedily receive +from me a letter of thanks for this, and for every other mark of your +regard during my stay in Hertfordshire. As for my fair cousins, though +my absence may not be long enough to render it necessary, I shall now +take the liberty of wishing them health and happiness, not excepting my +cousin Elizabeth.” + +With proper civilities the ladies then withdrew; all of them equally +surprised that he meditated a quick return. Mrs. Bennet wished to +understand by it that he thought of paying his addresses to one of her +younger girls, and Mary might have been prevailed on to accept him. +She rated his abilities much higher than any of the others; there was +a solidity in his reflections which often struck her, and though by no +means so clever as herself, she thought that if encouraged to read +and improve himself by such an example as hers, he might become a very +agreeable companion. But on the following morning, every hope of this +kind was done away. Miss Lucas called soon after breakfast, and in a +private conference with Elizabeth related the event of the day before. + +The possibility of Mr. Collins's fancying himself in love with her +friend had once occurred to Elizabeth within the last day or two; but +that Charlotte could encourage him seemed almost as far from +possibility as she could encourage him herself, and her astonishment was +consequently so great as to overcome at first the bounds of decorum, and +she could not help crying out: + +“Engaged to Mr. Collins! My dear Charlotte--impossible!” + +The steady countenance which Miss Lucas had commanded in telling her +story, gave way to a momentary confusion here on receiving so direct a +reproach; though, as it was no more than she expected, she soon regained +her composure, and calmly replied: + +“Why should you be surprised, my dear Eliza? Do you think it incredible +that Mr. Collins should be able to procure any woman's good opinion, +because he was not so happy as to succeed with you?” + +But Elizabeth had now recollected herself, and making a strong effort +for it, was able to assure with tolerable firmness that the prospect of +their relationship was highly grateful to her, and that she wished her +all imaginable happiness. + +“I see what you are feeling,” replied Charlotte. “You must be surprised, +very much surprised--so lately as Mr. Collins was wishing to marry +you. But when you have had time to think it over, I hope you will be +satisfied with what I have done. I am not romantic, you know; I never +was. I ask only a comfortable home; and considering Mr. Collins's +character, connection, and situation in life, I am convinced that my +chance of happiness with him is as fair as most people can boast on +entering the marriage state.” + +Elizabeth quietly answered “Undoubtedly;” and after an awkward pause, +they returned to the rest of the family. Charlotte did not stay much +longer, and Elizabeth was then left to reflect on what she had heard. +It was a long time before she became at all reconciled to the idea of so +unsuitable a match. The strangeness of Mr. Collins's making two offers +of marriage within three days was nothing in comparison of his being now +accepted. She had always felt that Charlotte's opinion of matrimony was +not exactly like her own, but she had not supposed it to be possible +that, when called into action, she would have sacrificed every better +feeling to worldly advantage. Charlotte the wife of Mr. Collins was a +most humiliating picture! And to the pang of a friend disgracing herself +and sunk in her esteem, was added the distressing conviction that it +was impossible for that friend to be tolerably happy in the lot she had +chosen. + + + +Chapter 23 + + +Elizabeth was sitting with her mother and sisters, reflecting on what +she had heard, and doubting whether she was authorised to mention +it, when Sir William Lucas himself appeared, sent by his daughter, to +announce her engagement to the family. With many compliments to them, +and much self-gratulation on the prospect of a connection between the +houses, he unfolded the matter--to an audience not merely wondering, but +incredulous; for Mrs. Bennet, with more perseverance than politeness, +protested he must be entirely mistaken; and Lydia, always unguarded and +often uncivil, boisterously exclaimed: + +“Good Lord! Sir William, how can you tell such a story? Do not you know +that Mr. Collins wants to marry Lizzy?” + +Nothing less than the complaisance of a courtier could have borne +without anger such treatment; but Sir William's good breeding carried +him through it all; and though he begged leave to be positive as to the +truth of his information, he listened to all their impertinence with the +most forbearing courtesy. + +Elizabeth, feeling it incumbent on her to relieve him from so unpleasant +a situation, now put herself forward to confirm his account, by +mentioning her prior knowledge of it from Charlotte herself; and +endeavoured to put a stop to the exclamations of her mother and sisters +by the earnestness of her congratulations to Sir William, in which she +was readily joined by Jane, and by making a variety of remarks on the +happiness that might be expected from the match, the excellent character +of Mr. Collins, and the convenient distance of Hunsford from London. + +Mrs. Bennet was in fact too much overpowered to say a great deal while +Sir William remained; but no sooner had he left them than her feelings +found a rapid vent. In the first place, she persisted in disbelieving +the whole of the matter; secondly, she was very sure that Mr. Collins +had been taken in; thirdly, she trusted that they would never be +happy together; and fourthly, that the match might be broken off. Two +inferences, however, were plainly deduced from the whole: one, that +Elizabeth was the real cause of the mischief; and the other that she +herself had been barbarously misused by them all; and on these two +points she principally dwelt during the rest of the day. Nothing could +console and nothing could appease her. Nor did that day wear out her +resentment. A week elapsed before she could see Elizabeth without +scolding her, a month passed away before she could speak to Sir William +or Lady Lucas without being rude, and many months were gone before she +could at all forgive their daughter. + +Mr. Bennet's emotions were much more tranquil on the occasion, and such +as he did experience he pronounced to be of a most agreeable sort; for +it gratified him, he said, to discover that Charlotte Lucas, whom he had +been used to think tolerably sensible, was as foolish as his wife, and +more foolish than his daughter! + +Jane confessed herself a little surprised at the match; but she said +less of her astonishment than of her earnest desire for their happiness; +nor could Elizabeth persuade her to consider it as improbable. Kitty +and Lydia were far from envying Miss Lucas, for Mr. Collins was only a +clergyman; and it affected them in no other way than as a piece of news +to spread at Meryton. + +Lady Lucas could not be insensible of triumph on being able to retort +on Mrs. Bennet the comfort of having a daughter well married; and she +called at Longbourn rather oftener than usual to say how happy she was, +though Mrs. Bennet's sour looks and ill-natured remarks might have been +enough to drive happiness away. + +Between Elizabeth and Charlotte there was a restraint which kept them +mutually silent on the subject; and Elizabeth felt persuaded that +no real confidence could ever subsist between them again. Her +disappointment in Charlotte made her turn with fonder regard to her +sister, of whose rectitude and delicacy she was sure her opinion could +never be shaken, and for whose happiness she grew daily more anxious, +as Bingley had now been gone a week and nothing more was heard of his +return. + +Jane had sent Caroline an early answer to her letter, and was counting +the days till she might reasonably hope to hear again. The promised +letter of thanks from Mr. Collins arrived on Tuesday, addressed to +their father, and written with all the solemnity of gratitude which a +twelvemonth's abode in the family might have prompted. After discharging +his conscience on that head, he proceeded to inform them, with many +rapturous expressions, of his happiness in having obtained the affection +of their amiable neighbour, Miss Lucas, and then explained that it was +merely with the view of enjoying her society that he had been so ready +to close with their kind wish of seeing him again at Longbourn, whither +he hoped to be able to return on Monday fortnight; for Lady Catherine, +he added, so heartily approved his marriage, that she wished it to take +place as soon as possible, which he trusted would be an unanswerable +argument with his amiable Charlotte to name an early day for making him +the happiest of men. + +Mr. Collins's return into Hertfordshire was no longer a matter of +pleasure to Mrs. Bennet. On the contrary, she was as much disposed to +complain of it as her husband. It was very strange that he should come +to Longbourn instead of to Lucas Lodge; it was also very inconvenient +and exceedingly troublesome. She hated having visitors in the house +while her health was so indifferent, and lovers were of all people the +most disagreeable. Such were the gentle murmurs of Mrs. Bennet, and +they gave way only to the greater distress of Mr. Bingley's continued +absence. + +Neither Jane nor Elizabeth were comfortable on this subject. Day after +day passed away without bringing any other tidings of him than the +report which shortly prevailed in Meryton of his coming no more to +Netherfield the whole winter; a report which highly incensed Mrs. +Bennet, and which she never failed to contradict as a most scandalous +falsehood. + +Even Elizabeth began to fear--not that Bingley was indifferent--but that +his sisters would be successful in keeping him away. Unwilling as +she was to admit an idea so destructive of Jane's happiness, and so +dishonorable to the stability of her lover, she could not prevent its +frequently occurring. The united efforts of his two unfeeling sisters +and of his overpowering friend, assisted by the attractions of Miss +Darcy and the amusements of London might be too much, she feared, for +the strength of his attachment. + +As for Jane, _her_ anxiety under this suspense was, of course, more +painful than Elizabeth's, but whatever she felt she was desirous of +concealing, and between herself and Elizabeth, therefore, the subject +was never alluded to. But as no such delicacy restrained her mother, +an hour seldom passed in which she did not talk of Bingley, express her +impatience for his arrival, or even require Jane to confess that if he +did not come back she would think herself very ill used. It needed +all Jane's steady mildness to bear these attacks with tolerable +tranquillity. + +Mr. Collins returned most punctually on Monday fortnight, but his +reception at Longbourn was not quite so gracious as it had been on his +first introduction. He was too happy, however, to need much attention; +and luckily for the others, the business of love-making relieved them +from a great deal of his company. The chief of every day was spent by +him at Lucas Lodge, and he sometimes returned to Longbourn only in time +to make an apology for his absence before the family went to bed. + +Mrs. Bennet was really in a most pitiable state. The very mention of +anything concerning the match threw her into an agony of ill-humour, +and wherever she went she was sure of hearing it talked of. The sight +of Miss Lucas was odious to her. As her successor in that house, she +regarded her with jealous abhorrence. Whenever Charlotte came to see +them, she concluded her to be anticipating the hour of possession; and +whenever she spoke in a low voice to Mr. Collins, was convinced that +they were talking of the Longbourn estate, and resolving to turn herself +and her daughters out of the house, as soon as Mr. Bennet were dead. She +complained bitterly of all this to her husband. + +“Indeed, Mr. Bennet,” said she, “it is very hard to think that Charlotte +Lucas should ever be mistress of this house, that I should be forced to +make way for _her_, and live to see her take her place in it!” + +“My dear, do not give way to such gloomy thoughts. Let us hope for +better things. Let us flatter ourselves that I may be the survivor.” + +This was not very consoling to Mrs. Bennet, and therefore, instead of +making any answer, she went on as before. + +“I cannot bear to think that they should have all this estate. If it was +not for the entail, I should not mind it.” + +“What should not you mind?” + +“I should not mind anything at all.” + +“Let us be thankful that you are preserved from a state of such +insensibility.” + +“I never can be thankful, Mr. Bennet, for anything about the entail. How +anyone could have the conscience to entail away an estate from one's own +daughters, I cannot understand; and all for the sake of Mr. Collins too! +Why should _he_ have it more than anybody else?” + +“I leave it to yourself to determine,” said Mr. Bennet. + + + +Chapter 24 + + +Miss Bingley's letter arrived, and put an end to doubt. The very first +sentence conveyed the assurance of their being all settled in London for +the winter, and concluded with her brother's regret at not having had +time to pay his respects to his friends in Hertfordshire before he left +the country. + +Hope was over, entirely over; and when Jane could attend to the rest +of the letter, she found little, except the professed affection of the +writer, that could give her any comfort. Miss Darcy's praise occupied +the chief of it. Her many attractions were again dwelt on, and Caroline +boasted joyfully of their increasing intimacy, and ventured to predict +the accomplishment of the wishes which had been unfolded in her former +letter. She wrote also with great pleasure of her brother's being an +inmate of Mr. Darcy's house, and mentioned with raptures some plans of +the latter with regard to new furniture. + +Elizabeth, to whom Jane very soon communicated the chief of all this, +heard it in silent indignation. Her heart was divided between concern +for her sister, and resentment against all others. To Caroline's +assertion of her brother's being partial to Miss Darcy she paid no +credit. That he was really fond of Jane, she doubted no more than she +had ever done; and much as she had always been disposed to like him, she +could not think without anger, hardly without contempt, on that easiness +of temper, that want of proper resolution, which now made him the slave +of his designing friends, and led him to sacrifice of his own happiness +to the caprice of their inclination. Had his own happiness, however, +been the only sacrifice, he might have been allowed to sport with it in +whatever manner he thought best, but her sister's was involved in it, as +she thought he must be sensible himself. It was a subject, in short, +on which reflection would be long indulged, and must be unavailing. She +could think of nothing else; and yet whether Bingley's regard had really +died away, or were suppressed by his friends' interference; whether +he had been aware of Jane's attachment, or whether it had escaped his +observation; whatever were the case, though her opinion of him must be +materially affected by the difference, her sister's situation remained +the same, her peace equally wounded. + +A day or two passed before Jane had courage to speak of her feelings to +Elizabeth; but at last, on Mrs. Bennet's leaving them together, after a +longer irritation than usual about Netherfield and its master, she could +not help saying: + +“Oh, that my dear mother had more command over herself! She can have no +idea of the pain she gives me by her continual reflections on him. But +I will not repine. It cannot last long. He will be forgot, and we shall +all be as we were before.” + +Elizabeth looked at her sister with incredulous solicitude, but said +nothing. + +“You doubt me,” cried Jane, slightly colouring; “indeed, you have +no reason. He may live in my memory as the most amiable man of my +acquaintance, but that is all. I have nothing either to hope or fear, +and nothing to reproach him with. Thank God! I have not _that_ pain. A +little time, therefore--I shall certainly try to get the better.” + +With a stronger voice she soon added, “I have this comfort immediately, +that it has not been more than an error of fancy on my side, and that it +has done no harm to anyone but myself.” + +“My dear Jane!” exclaimed Elizabeth, “you are too good. Your sweetness +and disinterestedness are really angelic; I do not know what to say +to you. I feel as if I had never done you justice, or loved you as you +deserve.” + +Miss Bennet eagerly disclaimed all extraordinary merit, and threw back +the praise on her sister's warm affection. + +“Nay,” said Elizabeth, “this is not fair. _You_ wish to think all the +world respectable, and are hurt if I speak ill of anybody. I only want +to think _you_ perfect, and you set yourself against it. Do not +be afraid of my running into any excess, of my encroaching on your +privilege of universal good-will. You need not. There are few people +whom I really love, and still fewer of whom I think well. The more I see +of the world, the more am I dissatisfied with it; and every day confirms +my belief of the inconsistency of all human characters, and of the +little dependence that can be placed on the appearance of merit or +sense. I have met with two instances lately, one I will not mention; the +other is Charlotte's marriage. It is unaccountable! In every view it is +unaccountable!” + +“My dear Lizzy, do not give way to such feelings as these. They will +ruin your happiness. You do not make allowance enough for difference +of situation and temper. Consider Mr. Collins's respectability, and +Charlotte's steady, prudent character. Remember that she is one of a +large family; that as to fortune, it is a most eligible match; and be +ready to believe, for everybody's sake, that she may feel something like +regard and esteem for our cousin.” + +“To oblige you, I would try to believe almost anything, but no one else +could be benefited by such a belief as this; for were I persuaded that +Charlotte had any regard for him, I should only think worse of her +understanding than I now do of her heart. My dear Jane, Mr. Collins is a +conceited, pompous, narrow-minded, silly man; you know he is, as well as +I do; and you must feel, as well as I do, that the woman who married him +cannot have a proper way of thinking. You shall not defend her, though +it is Charlotte Lucas. You shall not, for the sake of one individual, +change the meaning of principle and integrity, nor endeavour to persuade +yourself or me, that selfishness is prudence, and insensibility of +danger security for happiness.” + +“I must think your language too strong in speaking of both,” replied +Jane; “and I hope you will be convinced of it by seeing them happy +together. But enough of this. You alluded to something else. You +mentioned _two_ instances. I cannot misunderstand you, but I entreat +you, dear Lizzy, not to pain me by thinking _that person_ to blame, and +saying your opinion of him is sunk. We must not be so ready to fancy +ourselves intentionally injured. We must not expect a lively young man +to be always so guarded and circumspect. It is very often nothing but +our own vanity that deceives us. Women fancy admiration means more than +it does.” + +“And men take care that they should.” + +“If it is designedly done, they cannot be justified; but I have no idea +of there being so much design in the world as some persons imagine.” + +“I am far from attributing any part of Mr. Bingley's conduct to design,” + said Elizabeth; “but without scheming to do wrong, or to make others +unhappy, there may be error, and there may be misery. Thoughtlessness, +want of attention to other people's feelings, and want of resolution, +will do the business.” + +“And do you impute it to either of those?” + +“Yes; to the last. But if I go on, I shall displease you by saying what +I think of persons you esteem. Stop me whilst you can.” + +“You persist, then, in supposing his sisters influence him?” + +“Yes, in conjunction with his friend.” + +“I cannot believe it. Why should they try to influence him? They can +only wish his happiness; and if he is attached to me, no other woman can +secure it.” + +“Your first position is false. They may wish many things besides his +happiness; they may wish his increase of wealth and consequence; they +may wish him to marry a girl who has all the importance of money, great +connections, and pride.” + +“Beyond a doubt, they _do_ wish him to choose Miss Darcy,” replied Jane; +“but this may be from better feelings than you are supposing. They have +known her much longer than they have known me; no wonder if they love +her better. But, whatever may be their own wishes, it is very unlikely +they should have opposed their brother's. What sister would think +herself at liberty to do it, unless there were something very +objectionable? If they believed him attached to me, they would not try +to part us; if he were so, they could not succeed. By supposing such an +affection, you make everybody acting unnaturally and wrong, and me most +unhappy. Do not distress me by the idea. I am not ashamed of having been +mistaken--or, at least, it is light, it is nothing in comparison of what +I should feel in thinking ill of him or his sisters. Let me take it in +the best light, in the light in which it may be understood.” + +Elizabeth could not oppose such a wish; and from this time Mr. Bingley's +name was scarcely ever mentioned between them. + +Mrs. Bennet still continued to wonder and repine at his returning no +more, and though a day seldom passed in which Elizabeth did not account +for it clearly, there was little chance of her ever considering it with +less perplexity. Her daughter endeavoured to convince her of what she +did not believe herself, that his attentions to Jane had been merely the +effect of a common and transient liking, which ceased when he saw her +no more; but though the probability of the statement was admitted at +the time, she had the same story to repeat every day. Mrs. Bennet's best +comfort was that Mr. Bingley must be down again in the summer. + +Mr. Bennet treated the matter differently. “So, Lizzy,” said he one day, +“your sister is crossed in love, I find. I congratulate her. Next to +being married, a girl likes to be crossed a little in love now and then. +It is something to think of, and it gives her a sort of distinction +among her companions. When is your turn to come? You will hardly bear to +be long outdone by Jane. Now is your time. Here are officers enough in +Meryton to disappoint all the young ladies in the country. Let Wickham +be _your_ man. He is a pleasant fellow, and would jilt you creditably.” + +“Thank you, sir, but a less agreeable man would satisfy me. We must not +all expect Jane's good fortune.” + +“True,” said Mr. Bennet, “but it is a comfort to think that whatever of +that kind may befall you, you have an affectionate mother who will make +the most of it.” + +Mr. Wickham's society was of material service in dispelling the gloom +which the late perverse occurrences had thrown on many of the Longbourn +family. They saw him often, and to his other recommendations was now +added that of general unreserve. The whole of what Elizabeth had already +heard, his claims on Mr. Darcy, and all that he had suffered from him, +was now openly acknowledged and publicly canvassed; and everybody was +pleased to know how much they had always disliked Mr. Darcy before they +had known anything of the matter. + +Miss Bennet was the only creature who could suppose there might be +any extenuating circumstances in the case, unknown to the society +of Hertfordshire; her mild and steady candour always pleaded for +allowances, and urged the possibility of mistakes--but by everybody else +Mr. Darcy was condemned as the worst of men. + + + +Chapter 25 + + +After a week spent in professions of love and schemes of felicity, +Mr. Collins was called from his amiable Charlotte by the arrival of +Saturday. The pain of separation, however, might be alleviated on his +side, by preparations for the reception of his bride; as he had reason +to hope, that shortly after his return into Hertfordshire, the day would +be fixed that was to make him the happiest of men. He took leave of his +relations at Longbourn with as much solemnity as before; wished his fair +cousins health and happiness again, and promised their father another +letter of thanks. + +On the following Monday, Mrs. Bennet had the pleasure of receiving +her brother and his wife, who came as usual to spend the Christmas +at Longbourn. Mr. Gardiner was a sensible, gentlemanlike man, greatly +superior to his sister, as well by nature as education. The Netherfield +ladies would have had difficulty in believing that a man who lived +by trade, and within view of his own warehouses, could have been so +well-bred and agreeable. Mrs. Gardiner, who was several years younger +than Mrs. Bennet and Mrs. Phillips, was an amiable, intelligent, elegant +woman, and a great favourite with all her Longbourn nieces. Between the +two eldest and herself especially, there subsisted a particular regard. +They had frequently been staying with her in town. + +The first part of Mrs. Gardiner's business on her arrival was to +distribute her presents and describe the newest fashions. When this was +done she had a less active part to play. It became her turn to listen. +Mrs. Bennet had many grievances to relate, and much to complain of. They +had all been very ill-used since she last saw her sister. Two of her +girls had been upon the point of marriage, and after all there was +nothing in it. + +“I do not blame Jane,” she continued, “for Jane would have got Mr. +Bingley if she could. But Lizzy! Oh, sister! It is very hard to think +that she might have been Mr. Collins's wife by this time, had it not +been for her own perverseness. He made her an offer in this very room, +and she refused him. The consequence of it is, that Lady Lucas will have +a daughter married before I have, and that the Longbourn estate is just +as much entailed as ever. The Lucases are very artful people indeed, +sister. They are all for what they can get. I am sorry to say it of +them, but so it is. It makes me very nervous and poorly, to be thwarted +so in my own family, and to have neighbours who think of themselves +before anybody else. However, your coming just at this time is the +greatest of comforts, and I am very glad to hear what you tell us, of +long sleeves.” + +Mrs. Gardiner, to whom the chief of this news had been given before, +in the course of Jane and Elizabeth's correspondence with her, made her +sister a slight answer, and, in compassion to her nieces, turned the +conversation. + +When alone with Elizabeth afterwards, she spoke more on the subject. “It +seems likely to have been a desirable match for Jane,” said she. “I am +sorry it went off. But these things happen so often! A young man, such +as you describe Mr. Bingley, so easily falls in love with a pretty girl +for a few weeks, and when accident separates them, so easily forgets +her, that these sort of inconsistencies are very frequent.” + +“An excellent consolation in its way,” said Elizabeth, “but it will not +do for _us_. We do not suffer by _accident_. It does not often +happen that the interference of friends will persuade a young man of +independent fortune to think no more of a girl whom he was violently in +love with only a few days before.” + +“But that expression of 'violently in love' is so hackneyed, so +doubtful, so indefinite, that it gives me very little idea. It is as +often applied to feelings which arise from a half-hour's acquaintance, +as to a real, strong attachment. Pray, how _violent was_ Mr. Bingley's +love?” + +“I never saw a more promising inclination; he was growing quite +inattentive to other people, and wholly engrossed by her. Every time +they met, it was more decided and remarkable. At his own ball he +offended two or three young ladies, by not asking them to dance; and I +spoke to him twice myself, without receiving an answer. Could there be +finer symptoms? Is not general incivility the very essence of love?” + +“Oh, yes!--of that kind of love which I suppose him to have felt. Poor +Jane! I am sorry for her, because, with her disposition, she may not get +over it immediately. It had better have happened to _you_, Lizzy; you +would have laughed yourself out of it sooner. But do you think she +would be prevailed upon to go back with us? Change of scene might be +of service--and perhaps a little relief from home may be as useful as +anything.” + +Elizabeth was exceedingly pleased with this proposal, and felt persuaded +of her sister's ready acquiescence. + +“I hope,” added Mrs. Gardiner, “that no consideration with regard to +this young man will influence her. We live in so different a part of +town, all our connections are so different, and, as you well know, we go +out so little, that it is very improbable that they should meet at all, +unless he really comes to see her.” + +“And _that_ is quite impossible; for he is now in the custody of his +friend, and Mr. Darcy would no more suffer him to call on Jane in such +a part of London! My dear aunt, how could you think of it? Mr. Darcy may +perhaps have _heard_ of such a place as Gracechurch Street, but he +would hardly think a month's ablution enough to cleanse him from its +impurities, were he once to enter it; and depend upon it, Mr. Bingley +never stirs without him.” + +“So much the better. I hope they will not meet at all. But does not Jane +correspond with his sister? _She_ will not be able to help calling.” + +“She will drop the acquaintance entirely.” + +But in spite of the certainty in which Elizabeth affected to place this +point, as well as the still more interesting one of Bingley's being +withheld from seeing Jane, she felt a solicitude on the subject which +convinced her, on examination, that she did not consider it entirely +hopeless. It was possible, and sometimes she thought it probable, that +his affection might be reanimated, and the influence of his friends +successfully combated by the more natural influence of Jane's +attractions. + +Miss Bennet accepted her aunt's invitation with pleasure; and the +Bingleys were no otherwise in her thoughts at the same time, than as she +hoped by Caroline's not living in the same house with her brother, +she might occasionally spend a morning with her, without any danger of +seeing him. + +The Gardiners stayed a week at Longbourn; and what with the Phillipses, +the Lucases, and the officers, there was not a day without its +engagement. Mrs. Bennet had so carefully provided for the entertainment +of her brother and sister, that they did not once sit down to a family +dinner. When the engagement was for home, some of the officers always +made part of it--of which officers Mr. Wickham was sure to be one; and +on these occasions, Mrs. Gardiner, rendered suspicious by Elizabeth's +warm commendation, narrowly observed them both. Without supposing them, +from what she saw, to be very seriously in love, their preference +of each other was plain enough to make her a little uneasy; and +she resolved to speak to Elizabeth on the subject before she left +Hertfordshire, and represent to her the imprudence of encouraging such +an attachment. + +To Mrs. Gardiner, Wickham had one means of affording pleasure, +unconnected with his general powers. About ten or a dozen years ago, +before her marriage, she had spent a considerable time in that very +part of Derbyshire to which he belonged. They had, therefore, many +acquaintances in common; and though Wickham had been little there since +the death of Darcy's father, it was yet in his power to give her fresher +intelligence of her former friends than she had been in the way of +procuring. + +Mrs. Gardiner had seen Pemberley, and known the late Mr. Darcy by +character perfectly well. Here consequently was an inexhaustible subject +of discourse. In comparing her recollection of Pemberley with the minute +description which Wickham could give, and in bestowing her tribute of +praise on the character of its late possessor, she was delighting both +him and herself. On being made acquainted with the present Mr. Darcy's +treatment of him, she tried to remember some of that gentleman's +reputed disposition when quite a lad which might agree with it, and +was confident at last that she recollected having heard Mr. Fitzwilliam +Darcy formerly spoken of as a very proud, ill-natured boy. + + + +Chapter 26 + + +Mrs. Gardiner's caution to Elizabeth was punctually and kindly given +on the first favourable opportunity of speaking to her alone; after +honestly telling her what she thought, she thus went on: + +“You are too sensible a girl, Lizzy, to fall in love merely because +you are warned against it; and, therefore, I am not afraid of speaking +openly. Seriously, I would have you be on your guard. Do not involve +yourself or endeavour to involve him in an affection which the want +of fortune would make so very imprudent. I have nothing to say against +_him_; he is a most interesting young man; and if he had the fortune he +ought to have, I should think you could not do better. But as it is, you +must not let your fancy run away with you. You have sense, and we all +expect you to use it. Your father would depend on _your_ resolution and +good conduct, I am sure. You must not disappoint your father.” + +“My dear aunt, this is being serious indeed.” + +“Yes, and I hope to engage you to be serious likewise.” + +“Well, then, you need not be under any alarm. I will take care of +myself, and of Mr. Wickham too. He shall not be in love with me, if I +can prevent it.” + +“Elizabeth, you are not serious now.” + +“I beg your pardon, I will try again. At present I am not in love with +Mr. Wickham; no, I certainly am not. But he is, beyond all comparison, +the most agreeable man I ever saw--and if he becomes really attached to +me--I believe it will be better that he should not. I see the imprudence +of it. Oh! _that_ abominable Mr. Darcy! My father's opinion of me does +me the greatest honour, and I should be miserable to forfeit it. My +father, however, is partial to Mr. Wickham. In short, my dear aunt, I +should be very sorry to be the means of making any of you unhappy; but +since we see every day that where there is affection, young people +are seldom withheld by immediate want of fortune from entering into +engagements with each other, how can I promise to be wiser than so many +of my fellow-creatures if I am tempted, or how am I even to know that it +would be wisdom to resist? All that I can promise you, therefore, is not +to be in a hurry. I will not be in a hurry to believe myself his first +object. When I am in company with him, I will not be wishing. In short, +I will do my best.” + +“Perhaps it will be as well if you discourage his coming here so very +often. At least, you should not _remind_ your mother of inviting him.” + +“As I did the other day,” said Elizabeth with a conscious smile: “very +true, it will be wise in me to refrain from _that_. But do not imagine +that he is always here so often. It is on your account that he has been +so frequently invited this week. You know my mother's ideas as to the +necessity of constant company for her friends. But really, and upon my +honour, I will try to do what I think to be the wisest; and now I hope +you are satisfied.” + +Her aunt assured her that she was, and Elizabeth having thanked her for +the kindness of her hints, they parted; a wonderful instance of advice +being given on such a point, without being resented. + +Mr. Collins returned into Hertfordshire soon after it had been quitted +by the Gardiners and Jane; but as he took up his abode with the Lucases, +his arrival was no great inconvenience to Mrs. Bennet. His marriage was +now fast approaching, and she was at length so far resigned as to think +it inevitable, and even repeatedly to say, in an ill-natured tone, that +she “_wished_ they might be happy.” Thursday was to be the wedding day, +and on Wednesday Miss Lucas paid her farewell visit; and when she +rose to take leave, Elizabeth, ashamed of her mother's ungracious and +reluctant good wishes, and sincerely affected herself, accompanied her +out of the room. As they went downstairs together, Charlotte said: + +“I shall depend on hearing from you very often, Eliza.” + +“_That_ you certainly shall.” + +“And I have another favour to ask you. Will you come and see me?” + +“We shall often meet, I hope, in Hertfordshire.” + +“I am not likely to leave Kent for some time. Promise me, therefore, to +come to Hunsford.” + +Elizabeth could not refuse, though she foresaw little pleasure in the +visit. + +“My father and Maria are coming to me in March,” added Charlotte, “and I +hope you will consent to be of the party. Indeed, Eliza, you will be as +welcome as either of them.” + +The wedding took place; the bride and bridegroom set off for Kent from +the church door, and everybody had as much to say, or to hear, on +the subject as usual. Elizabeth soon heard from her friend; and their +correspondence was as regular and frequent as it had ever been; that +it should be equally unreserved was impossible. Elizabeth could never +address her without feeling that all the comfort of intimacy was over, +and though determined not to slacken as a correspondent, it was for the +sake of what had been, rather than what was. Charlotte's first letters +were received with a good deal of eagerness; there could not but be +curiosity to know how she would speak of her new home, how she would +like Lady Catherine, and how happy she would dare pronounce herself to +be; though, when the letters were read, Elizabeth felt that Charlotte +expressed herself on every point exactly as she might have foreseen. She +wrote cheerfully, seemed surrounded with comforts, and mentioned nothing +which she could not praise. The house, furniture, neighbourhood, and +roads, were all to her taste, and Lady Catherine's behaviour was most +friendly and obliging. It was Mr. Collins's picture of Hunsford and +Rosings rationally softened; and Elizabeth perceived that she must wait +for her own visit there to know the rest. + +Jane had already written a few lines to her sister to announce their +safe arrival in London; and when she wrote again, Elizabeth hoped it +would be in her power to say something of the Bingleys. + +Her impatience for this second letter was as well rewarded as impatience +generally is. Jane had been a week in town without either seeing or +hearing from Caroline. She accounted for it, however, by supposing that +her last letter to her friend from Longbourn had by some accident been +lost. + +“My aunt,” she continued, “is going to-morrow into that part of the +town, and I shall take the opportunity of calling in Grosvenor Street.” + +She wrote again when the visit was paid, and she had seen Miss Bingley. +“I did not think Caroline in spirits,” were her words, “but she was very +glad to see me, and reproached me for giving her no notice of my coming +to London. I was right, therefore, my last letter had never reached +her. I inquired after their brother, of course. He was well, but so much +engaged with Mr. Darcy that they scarcely ever saw him. I found that +Miss Darcy was expected to dinner. I wish I could see her. My visit was +not long, as Caroline and Mrs. Hurst were going out. I dare say I shall +see them soon here.” + +Elizabeth shook her head over this letter. It convinced her that +accident only could discover to Mr. Bingley her sister's being in town. + +Four weeks passed away, and Jane saw nothing of him. She endeavoured to +persuade herself that she did not regret it; but she could no longer be +blind to Miss Bingley's inattention. After waiting at home every morning +for a fortnight, and inventing every evening a fresh excuse for her, the +visitor did at last appear; but the shortness of her stay, and yet more, +the alteration of her manner would allow Jane to deceive herself no +longer. The letter which she wrote on this occasion to her sister will +prove what she felt. + +“My dearest Lizzy will, I am sure, be incapable of triumphing in her +better judgement, at my expense, when I confess myself to have been +entirely deceived in Miss Bingley's regard for me. But, my dear sister, +though the event has proved you right, do not think me obstinate if I +still assert that, considering what her behaviour was, my confidence was +as natural as your suspicion. I do not at all comprehend her reason for +wishing to be intimate with me; but if the same circumstances were to +happen again, I am sure I should be deceived again. Caroline did not +return my visit till yesterday; and not a note, not a line, did I +receive in the meantime. When she did come, it was very evident that +she had no pleasure in it; she made a slight, formal apology, for not +calling before, said not a word of wishing to see me again, and was +in every respect so altered a creature, that when she went away I was +perfectly resolved to continue the acquaintance no longer. I pity, +though I cannot help blaming her. She was very wrong in singling me out +as she did; I can safely say that every advance to intimacy began on +her side. But I pity her, because she must feel that she has been acting +wrong, and because I am very sure that anxiety for her brother is the +cause of it. I need not explain myself farther; and though _we_ know +this anxiety to be quite needless, yet if she feels it, it will easily +account for her behaviour to me; and so deservedly dear as he is to +his sister, whatever anxiety she must feel on his behalf is natural and +amiable. I cannot but wonder, however, at her having any such fears now, +because, if he had at all cared about me, we must have met, long ago. +He knows of my being in town, I am certain, from something she said +herself; and yet it would seem, by her manner of talking, as if she +wanted to persuade herself that he is really partial to Miss Darcy. I +cannot understand it. If I were not afraid of judging harshly, I should +be almost tempted to say that there is a strong appearance of duplicity +in all this. But I will endeavour to banish every painful thought, +and think only of what will make me happy--your affection, and the +invariable kindness of my dear uncle and aunt. Let me hear from you very +soon. Miss Bingley said something of his never returning to Netherfield +again, of giving up the house, but not with any certainty. We had better +not mention it. I am extremely glad that you have such pleasant accounts +from our friends at Hunsford. Pray go to see them, with Sir William and +Maria. I am sure you will be very comfortable there.--Yours, etc.” + +This letter gave Elizabeth some pain; but her spirits returned as she +considered that Jane would no longer be duped, by the sister at least. +All expectation from the brother was now absolutely over. She would not +even wish for a renewal of his attentions. His character sunk on +every review of it; and as a punishment for him, as well as a possible +advantage to Jane, she seriously hoped he might really soon marry Mr. +Darcy's sister, as by Wickham's account, she would make him abundantly +regret what he had thrown away. + +Mrs. Gardiner about this time reminded Elizabeth of her promise +concerning that gentleman, and required information; and Elizabeth +had such to send as might rather give contentment to her aunt than to +herself. His apparent partiality had subsided, his attentions were over, +he was the admirer of some one else. Elizabeth was watchful enough to +see it all, but she could see it and write of it without material pain. +Her heart had been but slightly touched, and her vanity was satisfied +with believing that _she_ would have been his only choice, had fortune +permitted it. The sudden acquisition of ten thousand pounds was the most +remarkable charm of the young lady to whom he was now rendering himself +agreeable; but Elizabeth, less clear-sighted perhaps in this case than +in Charlotte's, did not quarrel with him for his wish of independence. +Nothing, on the contrary, could be more natural; and while able to +suppose that it cost him a few struggles to relinquish her, she was +ready to allow it a wise and desirable measure for both, and could very +sincerely wish him happy. + +All this was acknowledged to Mrs. Gardiner; and after relating the +circumstances, she thus went on: “I am now convinced, my dear aunt, that +I have never been much in love; for had I really experienced that pure +and elevating passion, I should at present detest his very name, and +wish him all manner of evil. But my feelings are not only cordial +towards _him_; they are even impartial towards Miss King. I cannot find +out that I hate her at all, or that I am in the least unwilling to +think her a very good sort of girl. There can be no love in all this. My +watchfulness has been effectual; and though I certainly should be a more +interesting object to all my acquaintances were I distractedly in love +with him, I cannot say that I regret my comparative insignificance. +Importance may sometimes be purchased too dearly. Kitty and Lydia take +his defection much more to heart than I do. They are young in the +ways of the world, and not yet open to the mortifying conviction that +handsome young men must have something to live on as well as the plain.” + + + +Chapter 27 + + +With no greater events than these in the Longbourn family, and otherwise +diversified by little beyond the walks to Meryton, sometimes dirty and +sometimes cold, did January and February pass away. March was to take +Elizabeth to Hunsford. She had not at first thought very seriously of +going thither; but Charlotte, she soon found, was depending on the plan +and she gradually learned to consider it herself with greater pleasure +as well as greater certainty. Absence had increased her desire of seeing +Charlotte again, and weakened her disgust of Mr. Collins. There +was novelty in the scheme, and as, with such a mother and such +uncompanionable sisters, home could not be faultless, a little change +was not unwelcome for its own sake. The journey would moreover give her +a peep at Jane; and, in short, as the time drew near, she would have +been very sorry for any delay. Everything, however, went on smoothly, +and was finally settled according to Charlotte's first sketch. She was +to accompany Sir William and his second daughter. The improvement +of spending a night in London was added in time, and the plan became +perfect as plan could be. + +The only pain was in leaving her father, who would certainly miss her, +and who, when it came to the point, so little liked her going, that he +told her to write to him, and almost promised to answer her letter. + +The farewell between herself and Mr. Wickham was perfectly friendly; on +his side even more. His present pursuit could not make him forget that +Elizabeth had been the first to excite and to deserve his attention, the +first to listen and to pity, the first to be admired; and in his manner +of bidding her adieu, wishing her every enjoyment, reminding her of +what she was to expect in Lady Catherine de Bourgh, and trusting their +opinion of her--their opinion of everybody--would always coincide, there +was a solicitude, an interest which she felt must ever attach her to +him with a most sincere regard; and she parted from him convinced that, +whether married or single, he must always be her model of the amiable +and pleasing. + +Her fellow-travellers the next day were not of a kind to make her +think him less agreeable. Sir William Lucas, and his daughter Maria, a +good-humoured girl, but as empty-headed as himself, had nothing to say +that could be worth hearing, and were listened to with about as much +delight as the rattle of the chaise. Elizabeth loved absurdities, but +she had known Sir William's too long. He could tell her nothing new of +the wonders of his presentation and knighthood; and his civilities were +worn out, like his information. + +It was a journey of only twenty-four miles, and they began it so early +as to be in Gracechurch Street by noon. As they drove to Mr. Gardiner's +door, Jane was at a drawing-room window watching their arrival; when +they entered the passage she was there to welcome them, and Elizabeth, +looking earnestly in her face, was pleased to see it healthful and +lovely as ever. On the stairs were a troop of little boys and girls, +whose eagerness for their cousin's appearance would not allow them to +wait in the drawing-room, and whose shyness, as they had not seen +her for a twelvemonth, prevented their coming lower. All was joy and +kindness. The day passed most pleasantly away; the morning in bustle and +shopping, and the evening at one of the theatres. + +Elizabeth then contrived to sit by her aunt. Their first object was her +sister; and she was more grieved than astonished to hear, in reply to +her minute inquiries, that though Jane always struggled to support her +spirits, there were periods of dejection. It was reasonable, however, +to hope that they would not continue long. Mrs. Gardiner gave her the +particulars also of Miss Bingley's visit in Gracechurch Street, and +repeated conversations occurring at different times between Jane and +herself, which proved that the former had, from her heart, given up the +acquaintance. + +Mrs. Gardiner then rallied her niece on Wickham's desertion, and +complimented her on bearing it so well. + +“But my dear Elizabeth,” she added, “what sort of girl is Miss King? I +should be sorry to think our friend mercenary.” + +“Pray, my dear aunt, what is the difference in matrimonial affairs, +between the mercenary and the prudent motive? Where does discretion end, +and avarice begin? Last Christmas you were afraid of his marrying me, +because it would be imprudent; and now, because he is trying to get +a girl with only ten thousand pounds, you want to find out that he is +mercenary.” + +“If you will only tell me what sort of girl Miss King is, I shall know +what to think.” + +“She is a very good kind of girl, I believe. I know no harm of her.” + +“But he paid her not the smallest attention till her grandfather's death +made her mistress of this fortune.” + +“No--why should he? If it were not allowable for him to gain _my_ +affections because I had no money, what occasion could there be for +making love to a girl whom he did not care about, and who was equally +poor?” + +“But there seems an indelicacy in directing his attentions towards her +so soon after this event.” + +“A man in distressed circumstances has not time for all those elegant +decorums which other people may observe. If _she_ does not object to it, +why should _we_?” + +“_Her_ not objecting does not justify _him_. It only shows her being +deficient in something herself--sense or feeling.” + +“Well,” cried Elizabeth, “have it as you choose. _He_ shall be +mercenary, and _she_ shall be foolish.” + +“No, Lizzy, that is what I do _not_ choose. I should be sorry, you know, +to think ill of a young man who has lived so long in Derbyshire.” + +“Oh! if that is all, I have a very poor opinion of young men who live in +Derbyshire; and their intimate friends who live in Hertfordshire are not +much better. I am sick of them all. Thank Heaven! I am going to-morrow +where I shall find a man who has not one agreeable quality, who has +neither manner nor sense to recommend him. Stupid men are the only ones +worth knowing, after all.” + +“Take care, Lizzy; that speech savours strongly of disappointment.” + +Before they were separated by the conclusion of the play, she had the +unexpected happiness of an invitation to accompany her uncle and aunt in +a tour of pleasure which they proposed taking in the summer. + +“We have not determined how far it shall carry us,” said Mrs. Gardiner, +“but, perhaps, to the Lakes.” + +No scheme could have been more agreeable to Elizabeth, and her +acceptance of the invitation was most ready and grateful. “Oh, my dear, +dear aunt,” she rapturously cried, “what delight! what felicity! You +give me fresh life and vigour. Adieu to disappointment and spleen. What +are young men to rocks and mountains? Oh! what hours of transport +we shall spend! And when we _do_ return, it shall not be like other +travellers, without being able to give one accurate idea of anything. We +_will_ know where we have gone--we _will_ recollect what we have seen. +Lakes, mountains, and rivers shall not be jumbled together in our +imaginations; nor when we attempt to describe any particular scene, +will we begin quarreling about its relative situation. Let _our_ +first effusions be less insupportable than those of the generality of +travellers.” + + + +Chapter 28 + + +Every object in the next day's journey was new and interesting to +Elizabeth; and her spirits were in a state of enjoyment; for she had +seen her sister looking so well as to banish all fear for her health, +and the prospect of her northern tour was a constant source of delight. + +When they left the high road for the lane to Hunsford, every eye was in +search of the Parsonage, and every turning expected to bring it in view. +The palings of Rosings Park was their boundary on one side. Elizabeth +smiled at the recollection of all that she had heard of its inhabitants. + +At length the Parsonage was discernible. The garden sloping to the +road, the house standing in it, the green pales, and the laurel hedge, +everything declared they were arriving. Mr. Collins and Charlotte +appeared at the door, and the carriage stopped at the small gate which +led by a short gravel walk to the house, amidst the nods and smiles of +the whole party. In a moment they were all out of the chaise, rejoicing +at the sight of each other. Mrs. Collins welcomed her friend with the +liveliest pleasure, and Elizabeth was more and more satisfied with +coming when she found herself so affectionately received. She saw +instantly that her cousin's manners were not altered by his marriage; +his formal civility was just what it had been, and he detained her some +minutes at the gate to hear and satisfy his inquiries after all her +family. They were then, with no other delay than his pointing out the +neatness of the entrance, taken into the house; and as soon as they +were in the parlour, he welcomed them a second time, with ostentatious +formality to his humble abode, and punctually repeated all his wife's +offers of refreshment. + +Elizabeth was prepared to see him in his glory; and she could not help +in fancying that in displaying the good proportion of the room, its +aspect and its furniture, he addressed himself particularly to her, +as if wishing to make her feel what she had lost in refusing him. But +though everything seemed neat and comfortable, she was not able to +gratify him by any sigh of repentance, and rather looked with wonder at +her friend that she could have so cheerful an air with such a companion. +When Mr. Collins said anything of which his wife might reasonably be +ashamed, which certainly was not unseldom, she involuntarily turned her +eye on Charlotte. Once or twice she could discern a faint blush; but +in general Charlotte wisely did not hear. After sitting long enough to +admire every article of furniture in the room, from the sideboard to +the fender, to give an account of their journey, and of all that had +happened in London, Mr. Collins invited them to take a stroll in the +garden, which was large and well laid out, and to the cultivation of +which he attended himself. To work in this garden was one of his most +respectable pleasures; and Elizabeth admired the command of countenance +with which Charlotte talked of the healthfulness of the exercise, and +owned she encouraged it as much as possible. Here, leading the way +through every walk and cross walk, and scarcely allowing them an +interval to utter the praises he asked for, every view was pointed out +with a minuteness which left beauty entirely behind. He could number the +fields in every direction, and could tell how many trees there were in +the most distant clump. But of all the views which his garden, or which +the country or kingdom could boast, none were to be compared with the +prospect of Rosings, afforded by an opening in the trees that bordered +the park nearly opposite the front of his house. It was a handsome +modern building, well situated on rising ground. + +From his garden, Mr. Collins would have led them round his two meadows; +but the ladies, not having shoes to encounter the remains of a white +frost, turned back; and while Sir William accompanied him, Charlotte +took her sister and friend over the house, extremely well pleased, +probably, to have the opportunity of showing it without her husband's +help. It was rather small, but well built and convenient; and everything +was fitted up and arranged with a neatness and consistency of which +Elizabeth gave Charlotte all the credit. When Mr. Collins could be +forgotten, there was really an air of great comfort throughout, and by +Charlotte's evident enjoyment of it, Elizabeth supposed he must be often +forgotten. + +She had already learnt that Lady Catherine was still in the country. It +was spoken of again while they were at dinner, when Mr. Collins joining +in, observed: + +“Yes, Miss Elizabeth, you will have the honour of seeing Lady Catherine +de Bourgh on the ensuing Sunday at church, and I need not say you will +be delighted with her. She is all affability and condescension, and I +doubt not but you will be honoured with some portion of her notice +when service is over. I have scarcely any hesitation in saying she +will include you and my sister Maria in every invitation with which she +honours us during your stay here. Her behaviour to my dear Charlotte is +charming. We dine at Rosings twice every week, and are never allowed +to walk home. Her ladyship's carriage is regularly ordered for us. I +_should_ say, one of her ladyship's carriages, for she has several.” + +“Lady Catherine is a very respectable, sensible woman indeed,” added +Charlotte, “and a most attentive neighbour.” + +“Very true, my dear, that is exactly what I say. She is the sort of +woman whom one cannot regard with too much deference.” + +The evening was spent chiefly in talking over Hertfordshire news, +and telling again what had already been written; and when it closed, +Elizabeth, in the solitude of her chamber, had to meditate upon +Charlotte's degree of contentment, to understand her address in guiding, +and composure in bearing with, her husband, and to acknowledge that it +was all done very well. She had also to anticipate how her visit +would pass, the quiet tenor of their usual employments, the vexatious +interruptions of Mr. Collins, and the gaieties of their intercourse with +Rosings. A lively imagination soon settled it all. + +About the middle of the next day, as she was in her room getting ready +for a walk, a sudden noise below seemed to speak the whole house in +confusion; and, after listening a moment, she heard somebody running +up stairs in a violent hurry, and calling loudly after her. She opened +the door and met Maria in the landing place, who, breathless with +agitation, cried out-- + +“Oh, my dear Eliza! pray make haste and come into the dining-room, for +there is such a sight to be seen! I will not tell you what it is. Make +haste, and come down this moment.” + +Elizabeth asked questions in vain; Maria would tell her nothing more, +and down they ran into the dining-room, which fronted the lane, in +quest of this wonder; It was two ladies stopping in a low phaeton at the +garden gate. + +“And is this all?” cried Elizabeth. “I expected at least that the pigs +were got into the garden, and here is nothing but Lady Catherine and her +daughter.” + +“La! my dear,” said Maria, quite shocked at the mistake, “it is not +Lady Catherine. The old lady is Mrs. Jenkinson, who lives with them; +the other is Miss de Bourgh. Only look at her. She is quite a little +creature. Who would have thought that she could be so thin and small?” + +“She is abominably rude to keep Charlotte out of doors in all this wind. +Why does she not come in?” + +“Oh, Charlotte says she hardly ever does. It is the greatest of favours +when Miss de Bourgh comes in.” + +“I like her appearance,” said Elizabeth, struck with other ideas. “She +looks sickly and cross. Yes, she will do for him very well. She will +make him a very proper wife.” + +Mr. Collins and Charlotte were both standing at the gate in conversation +with the ladies; and Sir William, to Elizabeth's high diversion, was +stationed in the doorway, in earnest contemplation of the greatness +before him, and constantly bowing whenever Miss de Bourgh looked that +way. + +At length there was nothing more to be said; the ladies drove on, and +the others returned into the house. Mr. Collins no sooner saw the two +girls than he began to congratulate them on their good fortune, which +Charlotte explained by letting them know that the whole party was asked +to dine at Rosings the next day. + + + +Chapter 29 + + +Mr. Collins's triumph, in consequence of this invitation, was complete. +The power of displaying the grandeur of his patroness to his wondering +visitors, and of letting them see her civility towards himself and his +wife, was exactly what he had wished for; and that an opportunity +of doing it should be given so soon, was such an instance of Lady +Catherine's condescension, as he knew not how to admire enough. + +“I confess,” said he, “that I should not have been at all surprised by +her ladyship's asking us on Sunday to drink tea and spend the evening at +Rosings. I rather expected, from my knowledge of her affability, that it +would happen. But who could have foreseen such an attention as this? Who +could have imagined that we should receive an invitation to dine there +(an invitation, moreover, including the whole party) so immediately +after your arrival!” + +“I am the less surprised at what has happened,” replied Sir William, +“from that knowledge of what the manners of the great really are, which +my situation in life has allowed me to acquire. About the court, such +instances of elegant breeding are not uncommon.” + +Scarcely anything was talked of the whole day or next morning but their +visit to Rosings. Mr. Collins was carefully instructing them in what +they were to expect, that the sight of such rooms, so many servants, and +so splendid a dinner, might not wholly overpower them. + +When the ladies were separating for the toilette, he said to Elizabeth-- + +“Do not make yourself uneasy, my dear cousin, about your apparel. Lady +Catherine is far from requiring that elegance of dress in us which +becomes herself and her daughter. I would advise you merely to put on +whatever of your clothes is superior to the rest--there is no occasion +for anything more. Lady Catherine will not think the worse of you +for being simply dressed. She likes to have the distinction of rank +preserved.” + +While they were dressing, he came two or three times to their different +doors, to recommend their being quick, as Lady Catherine very much +objected to be kept waiting for her dinner. Such formidable accounts of +her ladyship, and her manner of living, quite frightened Maria Lucas +who had been little used to company, and she looked forward to her +introduction at Rosings with as much apprehension as her father had done +to his presentation at St. James's. + +As the weather was fine, they had a pleasant walk of about half a +mile across the park. Every park has its beauty and its prospects; and +Elizabeth saw much to be pleased with, though she could not be in such +raptures as Mr. Collins expected the scene to inspire, and was but +slightly affected by his enumeration of the windows in front of the +house, and his relation of what the glazing altogether had originally +cost Sir Lewis de Bourgh. + +When they ascended the steps to the hall, Maria's alarm was every +moment increasing, and even Sir William did not look perfectly calm. +Elizabeth's courage did not fail her. She had heard nothing of Lady +Catherine that spoke her awful from any extraordinary talents or +miraculous virtue, and the mere stateliness of money or rank she thought +she could witness without trepidation. + +From the entrance-hall, of which Mr. Collins pointed out, with a +rapturous air, the fine proportion and the finished ornaments, they +followed the servants through an ante-chamber, to the room where Lady +Catherine, her daughter, and Mrs. Jenkinson were sitting. Her ladyship, +with great condescension, arose to receive them; and as Mrs. Collins had +settled it with her husband that the office of introduction should +be hers, it was performed in a proper manner, without any of those +apologies and thanks which he would have thought necessary. + +In spite of having been at St. James's, Sir William was so completely +awed by the grandeur surrounding him, that he had but just courage +enough to make a very low bow, and take his seat without saying a word; +and his daughter, frightened almost out of her senses, sat on the edge +of her chair, not knowing which way to look. Elizabeth found herself +quite equal to the scene, and could observe the three ladies before her +composedly. Lady Catherine was a tall, large woman, with strongly-marked +features, which might once have been handsome. Her air was not +conciliating, nor was her manner of receiving them such as to make her +visitors forget their inferior rank. She was not rendered formidable by +silence; but whatever she said was spoken in so authoritative a tone, +as marked her self-importance, and brought Mr. Wickham immediately to +Elizabeth's mind; and from the observation of the day altogether, she +believed Lady Catherine to be exactly what he represented. + +When, after examining the mother, in whose countenance and deportment +she soon found some resemblance of Mr. Darcy, she turned her eyes on the +daughter, she could almost have joined in Maria's astonishment at her +being so thin and so small. There was neither in figure nor face any +likeness between the ladies. Miss de Bourgh was pale and sickly; her +features, though not plain, were insignificant; and she spoke very +little, except in a low voice, to Mrs. Jenkinson, in whose appearance +there was nothing remarkable, and who was entirely engaged in listening +to what she said, and placing a screen in the proper direction before +her eyes. + +After sitting a few minutes, they were all sent to one of the windows to +admire the view, Mr. Collins attending them to point out its beauties, +and Lady Catherine kindly informing them that it was much better worth +looking at in the summer. + +The dinner was exceedingly handsome, and there were all the servants and +all the articles of plate which Mr. Collins had promised; and, as he had +likewise foretold, he took his seat at the bottom of the table, by her +ladyship's desire, and looked as if he felt that life could furnish +nothing greater. He carved, and ate, and praised with delighted +alacrity; and every dish was commended, first by him and then by Sir +William, who was now enough recovered to echo whatever his son-in-law +said, in a manner which Elizabeth wondered Lady Catherine could bear. +But Lady Catherine seemed gratified by their excessive admiration, and +gave most gracious smiles, especially when any dish on the table proved +a novelty to them. The party did not supply much conversation. Elizabeth +was ready to speak whenever there was an opening, but she was seated +between Charlotte and Miss de Bourgh--the former of whom was engaged in +listening to Lady Catherine, and the latter said not a word to her all +dinner-time. Mrs. Jenkinson was chiefly employed in watching how little +Miss de Bourgh ate, pressing her to try some other dish, and fearing +she was indisposed. Maria thought speaking out of the question, and the +gentlemen did nothing but eat and admire. + +When the ladies returned to the drawing-room, there was little to +be done but to hear Lady Catherine talk, which she did without any +intermission till coffee came in, delivering her opinion on every +subject in so decisive a manner, as proved that she was not used to +have her judgement controverted. She inquired into Charlotte's domestic +concerns familiarly and minutely, gave her a great deal of advice as +to the management of them all; told her how everything ought to be +regulated in so small a family as hers, and instructed her as to the +care of her cows and her poultry. Elizabeth found that nothing was +beneath this great lady's attention, which could furnish her with an +occasion of dictating to others. In the intervals of her discourse +with Mrs. Collins, she addressed a variety of questions to Maria and +Elizabeth, but especially to the latter, of whose connections she knew +the least, and who she observed to Mrs. Collins was a very genteel, +pretty kind of girl. She asked her, at different times, how many sisters +she had, whether they were older or younger than herself, whether any of +them were likely to be married, whether they were handsome, where they +had been educated, what carriage her father kept, and what had been +her mother's maiden name? Elizabeth felt all the impertinence of +her questions but answered them very composedly. Lady Catherine then +observed, + +“Your father's estate is entailed on Mr. Collins, I think. For your +sake,” turning to Charlotte, “I am glad of it; but otherwise I see no +occasion for entailing estates from the female line. It was not thought +necessary in Sir Lewis de Bourgh's family. Do you play and sing, Miss +Bennet?” + +“A little.” + +“Oh! then--some time or other we shall be happy to hear you. Our +instrument is a capital one, probably superior to----You shall try it +some day. Do your sisters play and sing?” + +“One of them does.” + +“Why did not you all learn? You ought all to have learned. The Miss +Webbs all play, and their father has not so good an income as yours. Do +you draw?” + +“No, not at all.” + +“What, none of you?” + +“Not one.” + +“That is very strange. But I suppose you had no opportunity. Your mother +should have taken you to town every spring for the benefit of masters.” + +“My mother would have had no objection, but my father hates London.” + +“Has your governess left you?” + +“We never had any governess.” + +“No governess! How was that possible? Five daughters brought up at home +without a governess! I never heard of such a thing. Your mother must +have been quite a slave to your education.” + +Elizabeth could hardly help smiling as she assured her that had not been +the case. + +“Then, who taught you? who attended to you? Without a governess, you +must have been neglected.” + +“Compared with some families, I believe we were; but such of us as +wished to learn never wanted the means. We were always encouraged to +read, and had all the masters that were necessary. Those who chose to be +idle, certainly might.” + +“Aye, no doubt; but that is what a governess will prevent, and if I had +known your mother, I should have advised her most strenuously to engage +one. I always say that nothing is to be done in education without steady +and regular instruction, and nobody but a governess can give it. It is +wonderful how many families I have been the means of supplying in that +way. I am always glad to get a young person well placed out. Four nieces +of Mrs. Jenkinson are most delightfully situated through my means; and +it was but the other day that I recommended another young person, +who was merely accidentally mentioned to me, and the family are quite +delighted with her. Mrs. Collins, did I tell you of Lady Metcalf's +calling yesterday to thank me? She finds Miss Pope a treasure. 'Lady +Catherine,' said she, 'you have given me a treasure.' Are any of your +younger sisters out, Miss Bennet?” + +“Yes, ma'am, all.” + +“All! What, all five out at once? Very odd! And you only the second. The +younger ones out before the elder ones are married! Your younger sisters +must be very young?” + +“Yes, my youngest is not sixteen. Perhaps _she_ is full young to be +much in company. But really, ma'am, I think it would be very hard upon +younger sisters, that they should not have their share of society and +amusement, because the elder may not have the means or inclination to +marry early. The last-born has as good a right to the pleasures of youth +as the first. And to be kept back on _such_ a motive! I think it would +not be very likely to promote sisterly affection or delicacy of mind.” + +“Upon my word,” said her ladyship, “you give your opinion very decidedly +for so young a person. Pray, what is your age?” + +“With three younger sisters grown up,” replied Elizabeth, smiling, “your +ladyship can hardly expect me to own it.” + +Lady Catherine seemed quite astonished at not receiving a direct answer; +and Elizabeth suspected herself to be the first creature who had ever +dared to trifle with so much dignified impertinence. + +“You cannot be more than twenty, I am sure, therefore you need not +conceal your age.” + +“I am not one-and-twenty.” + +When the gentlemen had joined them, and tea was over, the card-tables +were placed. Lady Catherine, Sir William, and Mr. and Mrs. Collins sat +down to quadrille; and as Miss de Bourgh chose to play at cassino, the +two girls had the honour of assisting Mrs. Jenkinson to make up her +party. Their table was superlatively stupid. Scarcely a syllable was +uttered that did not relate to the game, except when Mrs. Jenkinson +expressed her fears of Miss de Bourgh's being too hot or too cold, or +having too much or too little light. A great deal more passed at the +other table. Lady Catherine was generally speaking--stating the mistakes +of the three others, or relating some anecdote of herself. Mr. Collins +was employed in agreeing to everything her ladyship said, thanking her +for every fish he won, and apologising if he thought he won too many. +Sir William did not say much. He was storing his memory with anecdotes +and noble names. + +When Lady Catherine and her daughter had played as long as they chose, +the tables were broken up, the carriage was offered to Mrs. Collins, +gratefully accepted and immediately ordered. The party then gathered +round the fire to hear Lady Catherine determine what weather they were +to have on the morrow. From these instructions they were summoned by +the arrival of the coach; and with many speeches of thankfulness on Mr. +Collins's side and as many bows on Sir William's they departed. As soon +as they had driven from the door, Elizabeth was called on by her cousin +to give her opinion of all that she had seen at Rosings, which, for +Charlotte's sake, she made more favourable than it really was. But her +commendation, though costing her some trouble, could by no means satisfy +Mr. Collins, and he was very soon obliged to take her ladyship's praise +into his own hands. + + + +Chapter 30 + + +Sir William stayed only a week at Hunsford, but his visit was long +enough to convince him of his daughter's being most comfortably settled, +and of her possessing such a husband and such a neighbour as were not +often met with. While Sir William was with them, Mr. Collins devoted his +morning to driving him out in his gig, and showing him the country; but +when he went away, the whole family returned to their usual employments, +and Elizabeth was thankful to find that they did not see more of her +cousin by the alteration, for the chief of the time between breakfast +and dinner was now passed by him either at work in the garden or in +reading and writing, and looking out of the window in his own book-room, +which fronted the road. The room in which the ladies sat was backwards. +Elizabeth had at first rather wondered that Charlotte should not prefer +the dining-parlour for common use; it was a better sized room, and had a +more pleasant aspect; but she soon saw that her friend had an excellent +reason for what she did, for Mr. Collins would undoubtedly have been +much less in his own apartment, had they sat in one equally lively; and +she gave Charlotte credit for the arrangement. + +From the drawing-room they could distinguish nothing in the lane, and +were indebted to Mr. Collins for the knowledge of what carriages went +along, and how often especially Miss de Bourgh drove by in her phaeton, +which he never failed coming to inform them of, though it happened +almost every day. She not unfrequently stopped at the Parsonage, and +had a few minutes' conversation with Charlotte, but was scarcely ever +prevailed upon to get out. + +Very few days passed in which Mr. Collins did not walk to Rosings, and +not many in which his wife did not think it necessary to go likewise; +and till Elizabeth recollected that there might be other family livings +to be disposed of, she could not understand the sacrifice of so many +hours. Now and then they were honoured with a call from her ladyship, +and nothing escaped her observation that was passing in the room during +these visits. She examined into their employments, looked at their work, +and advised them to do it differently; found fault with the arrangement +of the furniture; or detected the housemaid in negligence; and if she +accepted any refreshment, seemed to do it only for the sake of finding +out that Mrs. Collins's joints of meat were too large for her family. + +Elizabeth soon perceived, that though this great lady was not in +commission of the peace of the county, she was a most active magistrate +in her own parish, the minutest concerns of which were carried to her +by Mr. Collins; and whenever any of the cottagers were disposed to +be quarrelsome, discontented, or too poor, she sallied forth into the +village to settle their differences, silence their complaints, and scold +them into harmony and plenty. + +The entertainment of dining at Rosings was repeated about twice a week; +and, allowing for the loss of Sir William, and there being only one +card-table in the evening, every such entertainment was the counterpart +of the first. Their other engagements were few, as the style of living +in the neighbourhood in general was beyond Mr. Collins's reach. This, +however, was no evil to Elizabeth, and upon the whole she spent her time +comfortably enough; there were half-hours of pleasant conversation with +Charlotte, and the weather was so fine for the time of year that she had +often great enjoyment out of doors. Her favourite walk, and where she +frequently went while the others were calling on Lady Catherine, was +along the open grove which edged that side of the park, where there was +a nice sheltered path, which no one seemed to value but herself, and +where she felt beyond the reach of Lady Catherine's curiosity. + +In this quiet way, the first fortnight of her visit soon passed away. +Easter was approaching, and the week preceding it was to bring an +addition to the family at Rosings, which in so small a circle must be +important. Elizabeth had heard soon after her arrival that Mr. Darcy was +expected there in the course of a few weeks, and though there were not +many of her acquaintances whom she did not prefer, his coming would +furnish one comparatively new to look at in their Rosings parties, and +she might be amused in seeing how hopeless Miss Bingley's designs on him +were, by his behaviour to his cousin, for whom he was evidently +destined by Lady Catherine, who talked of his coming with the greatest +satisfaction, spoke of him in terms of the highest admiration, and +seemed almost angry to find that he had already been frequently seen by +Miss Lucas and herself. + +His arrival was soon known at the Parsonage; for Mr. Collins was walking +the whole morning within view of the lodges opening into Hunsford Lane, +in order to have the earliest assurance of it, and after making his +bow as the carriage turned into the Park, hurried home with the great +intelligence. On the following morning he hastened to Rosings to pay his +respects. There were two nephews of Lady Catherine to require them, for +Mr. Darcy had brought with him a Colonel Fitzwilliam, the younger son of +his uncle Lord ----, and, to the great surprise of all the party, when +Mr. Collins returned, the gentlemen accompanied him. Charlotte had seen +them from her husband's room, crossing the road, and immediately running +into the other, told the girls what an honour they might expect, adding: + +“I may thank you, Eliza, for this piece of civility. Mr. Darcy would +never have come so soon to wait upon me.” + +Elizabeth had scarcely time to disclaim all right to the compliment, +before their approach was announced by the door-bell, and shortly +afterwards the three gentlemen entered the room. Colonel Fitzwilliam, +who led the way, was about thirty, not handsome, but in person and +address most truly the gentleman. Mr. Darcy looked just as he had been +used to look in Hertfordshire--paid his compliments, with his usual +reserve, to Mrs. Collins, and whatever might be his feelings toward her +friend, met her with every appearance of composure. Elizabeth merely +curtseyed to him without saying a word. + +Colonel Fitzwilliam entered into conversation directly with the +readiness and ease of a well-bred man, and talked very pleasantly; but +his cousin, after having addressed a slight observation on the house and +garden to Mrs. Collins, sat for some time without speaking to anybody. +At length, however, his civility was so far awakened as to inquire of +Elizabeth after the health of her family. She answered him in the usual +way, and after a moment's pause, added: + +“My eldest sister has been in town these three months. Have you never +happened to see her there?” + +She was perfectly sensible that he never had; but she wished to see +whether he would betray any consciousness of what had passed between +the Bingleys and Jane, and she thought he looked a little confused as he +answered that he had never been so fortunate as to meet Miss Bennet. The +subject was pursued no farther, and the gentlemen soon afterwards went +away. + + + +Chapter 31 + + +Colonel Fitzwilliam's manners were very much admired at the Parsonage, +and the ladies all felt that he must add considerably to the pleasures +of their engagements at Rosings. It was some days, however, before they +received any invitation thither--for while there were visitors in the +house, they could not be necessary; and it was not till Easter-day, +almost a week after the gentlemen's arrival, that they were honoured by +such an attention, and then they were merely asked on leaving church to +come there in the evening. For the last week they had seen very little +of Lady Catherine or her daughter. Colonel Fitzwilliam had called at the +Parsonage more than once during the time, but Mr. Darcy they had seen +only at church. + +The invitation was accepted of course, and at a proper hour they joined +the party in Lady Catherine's drawing-room. Her ladyship received +them civilly, but it was plain that their company was by no means so +acceptable as when she could get nobody else; and she was, in fact, +almost engrossed by her nephews, speaking to them, especially to Darcy, +much more than to any other person in the room. + +Colonel Fitzwilliam seemed really glad to see them; anything was a +welcome relief to him at Rosings; and Mrs. Collins's pretty friend had +moreover caught his fancy very much. He now seated himself by her, and +talked so agreeably of Kent and Hertfordshire, of travelling and staying +at home, of new books and music, that Elizabeth had never been half so +well entertained in that room before; and they conversed with so much +spirit and flow, as to draw the attention of Lady Catherine herself, +as well as of Mr. Darcy. _His_ eyes had been soon and repeatedly turned +towards them with a look of curiosity; and that her ladyship, after a +while, shared the feeling, was more openly acknowledged, for she did not +scruple to call out: + +“What is that you are saying, Fitzwilliam? What is it you are talking +of? What are you telling Miss Bennet? Let me hear what it is.” + +“We are speaking of music, madam,” said he, when no longer able to avoid +a reply. + +“Of music! Then pray speak aloud. It is of all subjects my delight. I +must have my share in the conversation if you are speaking of music. +There are few people in England, I suppose, who have more true enjoyment +of music than myself, or a better natural taste. If I had ever learnt, +I should have been a great proficient. And so would Anne, if her health +had allowed her to apply. I am confident that she would have performed +delightfully. How does Georgiana get on, Darcy?” + +Mr. Darcy spoke with affectionate praise of his sister's proficiency. + +“I am very glad to hear such a good account of her,” said Lady +Catherine; “and pray tell her from me, that she cannot expect to excel +if she does not practice a good deal.” + +“I assure you, madam,” he replied, “that she does not need such advice. +She practises very constantly.” + +“So much the better. It cannot be done too much; and when I next write +to her, I shall charge her not to neglect it on any account. I often +tell young ladies that no excellence in music is to be acquired without +constant practice. I have told Miss Bennet several times, that she +will never play really well unless she practises more; and though Mrs. +Collins has no instrument, she is very welcome, as I have often told +her, to come to Rosings every day, and play on the pianoforte in Mrs. +Jenkinson's room. She would be in nobody's way, you know, in that part +of the house.” + +Mr. Darcy looked a little ashamed of his aunt's ill-breeding, and made +no answer. + +When coffee was over, Colonel Fitzwilliam reminded Elizabeth of having +promised to play to him; and she sat down directly to the instrument. He +drew a chair near her. Lady Catherine listened to half a song, and then +talked, as before, to her other nephew; till the latter walked away +from her, and making with his usual deliberation towards the pianoforte +stationed himself so as to command a full view of the fair performer's +countenance. Elizabeth saw what he was doing, and at the first +convenient pause, turned to him with an arch smile, and said: + +“You mean to frighten me, Mr. Darcy, by coming in all this state to hear +me? I will not be alarmed though your sister _does_ play so well. There +is a stubbornness about me that never can bear to be frightened at the +will of others. My courage always rises at every attempt to intimidate +me.” + +“I shall not say you are mistaken,” he replied, “because you could not +really believe me to entertain any design of alarming you; and I have +had the pleasure of your acquaintance long enough to know that you find +great enjoyment in occasionally professing opinions which in fact are +not your own.” + +Elizabeth laughed heartily at this picture of herself, and said to +Colonel Fitzwilliam, “Your cousin will give you a very pretty notion of +me, and teach you not to believe a word I say. I am particularly unlucky +in meeting with a person so able to expose my real character, in a part +of the world where I had hoped to pass myself off with some degree of +credit. Indeed, Mr. Darcy, it is very ungenerous in you to mention all +that you knew to my disadvantage in Hertfordshire--and, give me leave to +say, very impolitic too--for it is provoking me to retaliate, and such +things may come out as will shock your relations to hear.” + +“I am not afraid of you,” said he, smilingly. + +“Pray let me hear what you have to accuse him of,” cried Colonel +Fitzwilliam. “I should like to know how he behaves among strangers.” + +“You shall hear then--but prepare yourself for something very dreadful. +The first time of my ever seeing him in Hertfordshire, you must know, +was at a ball--and at this ball, what do you think he did? He danced +only four dances, though gentlemen were scarce; and, to my certain +knowledge, more than one young lady was sitting down in want of a +partner. Mr. Darcy, you cannot deny the fact.” + +“I had not at that time the honour of knowing any lady in the assembly +beyond my own party.” + +“True; and nobody can ever be introduced in a ball-room. Well, Colonel +Fitzwilliam, what do I play next? My fingers wait your orders.” + +“Perhaps,” said Darcy, “I should have judged better, had I sought an +introduction; but I am ill-qualified to recommend myself to strangers.” + +“Shall we ask your cousin the reason of this?” said Elizabeth, still +addressing Colonel Fitzwilliam. “Shall we ask him why a man of sense and +education, and who has lived in the world, is ill qualified to recommend +himself to strangers?” + +“I can answer your question,” said Fitzwilliam, “without applying to +him. It is because he will not give himself the trouble.” + +“I certainly have not the talent which some people possess,” said Darcy, +“of conversing easily with those I have never seen before. I cannot +catch their tone of conversation, or appear interested in their +concerns, as I often see done.” + +“My fingers,” said Elizabeth, “do not move over this instrument in the +masterly manner which I see so many women's do. They have not the same +force or rapidity, and do not produce the same expression. But then I +have always supposed it to be my own fault--because I will not take the +trouble of practising. It is not that I do not believe _my_ fingers as +capable as any other woman's of superior execution.” + +Darcy smiled and said, “You are perfectly right. You have employed your +time much better. No one admitted to the privilege of hearing you can +think anything wanting. We neither of us perform to strangers.” + +Here they were interrupted by Lady Catherine, who called out to know +what they were talking of. Elizabeth immediately began playing again. +Lady Catherine approached, and, after listening for a few minutes, said +to Darcy: + +“Miss Bennet would not play at all amiss if she practised more, and +could have the advantage of a London master. She has a very good notion +of fingering, though her taste is not equal to Anne's. Anne would have +been a delightful performer, had her health allowed her to learn.” + +Elizabeth looked at Darcy to see how cordially he assented to his +cousin's praise; but neither at that moment nor at any other could she +discern any symptom of love; and from the whole of his behaviour to Miss +de Bourgh she derived this comfort for Miss Bingley, that he might have +been just as likely to marry _her_, had she been his relation. + +Lady Catherine continued her remarks on Elizabeth's performance, mixing +with them many instructions on execution and taste. Elizabeth received +them with all the forbearance of civility, and, at the request of the +gentlemen, remained at the instrument till her ladyship's carriage was +ready to take them all home. + + + +Chapter 32 + + +Elizabeth was sitting by herself the next morning, and writing to Jane +while Mrs. Collins and Maria were gone on business into the village, +when she was startled by a ring at the door, the certain signal of a +visitor. As she had heard no carriage, she thought it not unlikely to +be Lady Catherine, and under that apprehension was putting away her +half-finished letter that she might escape all impertinent questions, +when the door opened, and, to her very great surprise, Mr. Darcy, and +Mr. Darcy only, entered the room. + +He seemed astonished too on finding her alone, and apologised for his +intrusion by letting her know that he had understood all the ladies were +to be within. + +They then sat down, and when her inquiries after Rosings were made, +seemed in danger of sinking into total silence. It was absolutely +necessary, therefore, to think of something, and in this emergence +recollecting _when_ she had seen him last in Hertfordshire, and +feeling curious to know what he would say on the subject of their hasty +departure, she observed: + +“How very suddenly you all quitted Netherfield last November, Mr. Darcy! +It must have been a most agreeable surprise to Mr. Bingley to see you +all after him so soon; for, if I recollect right, he went but the day +before. He and his sisters were well, I hope, when you left London?” + +“Perfectly so, I thank you.” + +She found that she was to receive no other answer, and, after a short +pause added: + +“I think I have understood that Mr. Bingley has not much idea of ever +returning to Netherfield again?” + +“I have never heard him say so; but it is probable that he may spend +very little of his time there in the future. He has many friends, and +is at a time of life when friends and engagements are continually +increasing.” + +“If he means to be but little at Netherfield, it would be better for +the neighbourhood that he should give up the place entirely, for then we +might possibly get a settled family there. But, perhaps, Mr. Bingley did +not take the house so much for the convenience of the neighbourhood as +for his own, and we must expect him to keep it or quit it on the same +principle.” + +“I should not be surprised,” said Darcy, “if he were to give it up as +soon as any eligible purchase offers.” + +Elizabeth made no answer. She was afraid of talking longer of his +friend; and, having nothing else to say, was now determined to leave the +trouble of finding a subject to him. + +He took the hint, and soon began with, “This seems a very comfortable +house. Lady Catherine, I believe, did a great deal to it when Mr. +Collins first came to Hunsford.” + +“I believe she did--and I am sure she could not have bestowed her +kindness on a more grateful object.” + +“Mr. Collins appears to be very fortunate in his choice of a wife.” + +“Yes, indeed, his friends may well rejoice in his having met with one +of the very few sensible women who would have accepted him, or have made +him happy if they had. My friend has an excellent understanding--though +I am not certain that I consider her marrying Mr. Collins as the +wisest thing she ever did. She seems perfectly happy, however, and in a +prudential light it is certainly a very good match for her.” + +“It must be very agreeable for her to be settled within so easy a +distance of her own family and friends.” + +“An easy distance, do you call it? It is nearly fifty miles.” + +“And what is fifty miles of good road? Little more than half a day's +journey. Yes, I call it a _very_ easy distance.” + +“I should never have considered the distance as one of the _advantages_ +of the match,” cried Elizabeth. “I should never have said Mrs. Collins +was settled _near_ her family.” + +“It is a proof of your own attachment to Hertfordshire. Anything beyond +the very neighbourhood of Longbourn, I suppose, would appear far.” + +As he spoke there was a sort of smile which Elizabeth fancied she +understood; he must be supposing her to be thinking of Jane and +Netherfield, and she blushed as she answered: + +“I do not mean to say that a woman may not be settled too near her +family. The far and the near must be relative, and depend on many +varying circumstances. Where there is fortune to make the expenses of +travelling unimportant, distance becomes no evil. But that is not the +case _here_. Mr. and Mrs. Collins have a comfortable income, but not +such a one as will allow of frequent journeys--and I am persuaded my +friend would not call herself _near_ her family under less than _half_ +the present distance.” + +Mr. Darcy drew his chair a little towards her, and said, “_You_ cannot +have a right to such very strong local attachment. _You_ cannot have +been always at Longbourn.” + +Elizabeth looked surprised. The gentleman experienced some change of +feeling; he drew back his chair, took a newspaper from the table, and +glancing over it, said, in a colder voice: + +“Are you pleased with Kent?” + +A short dialogue on the subject of the country ensued, on either side +calm and concise--and soon put an end to by the entrance of Charlotte +and her sister, just returned from her walk. The tete-a-tete surprised +them. Mr. Darcy related the mistake which had occasioned his intruding +on Miss Bennet, and after sitting a few minutes longer without saying +much to anybody, went away. + +“What can be the meaning of this?” said Charlotte, as soon as he was +gone. “My dear, Eliza, he must be in love with you, or he would never +have called us in this familiar way.” + +But when Elizabeth told of his silence, it did not seem very likely, +even to Charlotte's wishes, to be the case; and after various +conjectures, they could at last only suppose his visit to proceed from +the difficulty of finding anything to do, which was the more probable +from the time of year. All field sports were over. Within doors there +was Lady Catherine, books, and a billiard-table, but gentlemen cannot +always be within doors; and in the nearness of the Parsonage, or the +pleasantness of the walk to it, or of the people who lived in it, the +two cousins found a temptation from this period of walking thither +almost every day. They called at various times of the morning, sometimes +separately, sometimes together, and now and then accompanied by their +aunt. It was plain to them all that Colonel Fitzwilliam came because he +had pleasure in their society, a persuasion which of course recommended +him still more; and Elizabeth was reminded by her own satisfaction in +being with him, as well as by his evident admiration of her, of her +former favourite George Wickham; and though, in comparing them, she saw +there was less captivating softness in Colonel Fitzwilliam's manners, +she believed he might have the best informed mind. + +But why Mr. Darcy came so often to the Parsonage, it was more difficult +to understand. It could not be for society, as he frequently sat there +ten minutes together without opening his lips; and when he did speak, +it seemed the effect of necessity rather than of choice--a sacrifice +to propriety, not a pleasure to himself. He seldom appeared really +animated. Mrs. Collins knew not what to make of him. Colonel +Fitzwilliam's occasionally laughing at his stupidity, proved that he was +generally different, which her own knowledge of him could not have told +her; and as she would liked to have believed this change the effect +of love, and the object of that love her friend Eliza, she set herself +seriously to work to find it out. She watched him whenever they were at +Rosings, and whenever he came to Hunsford; but without much success. He +certainly looked at her friend a great deal, but the expression of that +look was disputable. It was an earnest, steadfast gaze, but she often +doubted whether there were much admiration in it, and sometimes it +seemed nothing but absence of mind. + +She had once or twice suggested to Elizabeth the possibility of his +being partial to her, but Elizabeth always laughed at the idea; and Mrs. +Collins did not think it right to press the subject, from the danger of +raising expectations which might only end in disappointment; for in her +opinion it admitted not of a doubt, that all her friend's dislike would +vanish, if she could suppose him to be in her power. + + +In her kind schemes for Elizabeth, she sometimes planned her marrying +Colonel Fitzwilliam. He was beyond comparison the most pleasant man; he +certainly admired her, and his situation in life was most eligible; but, +to counterbalance these advantages, Mr. Darcy had considerable patronage +in the church, and his cousin could have none at all. + + + +Chapter 33 + + +More than once did Elizabeth, in her ramble within the park, +unexpectedly meet Mr. Darcy. She felt all the perverseness of the +mischance that should bring him where no one else was brought, and, to +prevent its ever happening again, took care to inform him at first that +it was a favourite haunt of hers. How it could occur a second time, +therefore, was very odd! Yet it did, and even a third. It seemed like +wilful ill-nature, or a voluntary penance, for on these occasions it was +not merely a few formal inquiries and an awkward pause and then away, +but he actually thought it necessary to turn back and walk with her. He +never said a great deal, nor did she give herself the trouble of talking +or of listening much; but it struck her in the course of their third +rencontre that he was asking some odd unconnected questions--about +her pleasure in being at Hunsford, her love of solitary walks, and her +opinion of Mr. and Mrs. Collins's happiness; and that in speaking of +Rosings and her not perfectly understanding the house, he seemed to +expect that whenever she came into Kent again she would be staying +_there_ too. His words seemed to imply it. Could he have Colonel +Fitzwilliam in his thoughts? She supposed, if he meant anything, he must +mean an allusion to what might arise in that quarter. It distressed +her a little, and she was quite glad to find herself at the gate in the +pales opposite the Parsonage. + +She was engaged one day as she walked, in perusing Jane's last letter, +and dwelling on some passages which proved that Jane had not written in +spirits, when, instead of being again surprised by Mr. Darcy, she saw +on looking up that Colonel Fitzwilliam was meeting her. Putting away the +letter immediately and forcing a smile, she said: + +“I did not know before that you ever walked this way.” + +“I have been making the tour of the park,” he replied, “as I generally +do every year, and intend to close it with a call at the Parsonage. Are +you going much farther?” + +“No, I should have turned in a moment.” + +And accordingly she did turn, and they walked towards the Parsonage +together. + +“Do you certainly leave Kent on Saturday?” said she. + +“Yes--if Darcy does not put it off again. But I am at his disposal. He +arranges the business just as he pleases.” + +“And if not able to please himself in the arrangement, he has at least +pleasure in the great power of choice. I do not know anybody who seems +more to enjoy the power of doing what he likes than Mr. Darcy.” + +“He likes to have his own way very well,” replied Colonel Fitzwilliam. +“But so we all do. It is only that he has better means of having it +than many others, because he is rich, and many others are poor. I speak +feelingly. A younger son, you know, must be inured to self-denial and +dependence.” + +“In my opinion, the younger son of an earl can know very little of +either. Now seriously, what have you ever known of self-denial and +dependence? When have you been prevented by want of money from going +wherever you chose, or procuring anything you had a fancy for?” + +“These are home questions--and perhaps I cannot say that I have +experienced many hardships of that nature. But in matters of greater +weight, I may suffer from want of money. Younger sons cannot marry where +they like.” + +“Unless where they like women of fortune, which I think they very often +do.” + +“Our habits of expense make us too dependent, and there are not many +in my rank of life who can afford to marry without some attention to +money.” + +“Is this,” thought Elizabeth, “meant for me?” and she coloured at the +idea; but, recovering herself, said in a lively tone, “And pray, what +is the usual price of an earl's younger son? Unless the elder brother is +very sickly, I suppose you would not ask above fifty thousand pounds.” + +He answered her in the same style, and the subject dropped. To interrupt +a silence which might make him fancy her affected with what had passed, +she soon afterwards said: + +“I imagine your cousin brought you down with him chiefly for the sake of +having someone at his disposal. I wonder he does not marry, to secure a +lasting convenience of that kind. But, perhaps, his sister does as well +for the present, and, as she is under his sole care, he may do what he +likes with her.” + +“No,” said Colonel Fitzwilliam, “that is an advantage which he must +divide with me. I am joined with him in the guardianship of Miss Darcy.” + +“Are you indeed? And pray what sort of guardians do you make? Does your +charge give you much trouble? Young ladies of her age are sometimes a +little difficult to manage, and if she has the true Darcy spirit, she +may like to have her own way.” + +As she spoke she observed him looking at her earnestly; and the manner +in which he immediately asked her why she supposed Miss Darcy likely to +give them any uneasiness, convinced her that she had somehow or other +got pretty near the truth. She directly replied: + +“You need not be frightened. I never heard any harm of her; and I dare +say she is one of the most tractable creatures in the world. She is a +very great favourite with some ladies of my acquaintance, Mrs. Hurst and +Miss Bingley. I think I have heard you say that you know them.” + +“I know them a little. Their brother is a pleasant gentlemanlike man--he +is a great friend of Darcy's.” + +“Oh! yes,” said Elizabeth drily; “Mr. Darcy is uncommonly kind to Mr. +Bingley, and takes a prodigious deal of care of him.” + +“Care of him! Yes, I really believe Darcy _does_ take care of him in +those points where he most wants care. From something that he told me in +our journey hither, I have reason to think Bingley very much indebted to +him. But I ought to beg his pardon, for I have no right to suppose that +Bingley was the person meant. It was all conjecture.” + +“What is it you mean?” + +“It is a circumstance which Darcy could not wish to be generally known, +because if it were to get round to the lady's family, it would be an +unpleasant thing.” + +“You may depend upon my not mentioning it.” + +“And remember that I have not much reason for supposing it to be +Bingley. What he told me was merely this: that he congratulated himself +on having lately saved a friend from the inconveniences of a most +imprudent marriage, but without mentioning names or any other +particulars, and I only suspected it to be Bingley from believing +him the kind of young man to get into a scrape of that sort, and from +knowing them to have been together the whole of last summer.” + +“Did Mr. Darcy give you reasons for this interference?” + +“I understood that there were some very strong objections against the +lady.” + +“And what arts did he use to separate them?” + +“He did not talk to me of his own arts,” said Fitzwilliam, smiling. “He +only told me what I have now told you.” + +Elizabeth made no answer, and walked on, her heart swelling with +indignation. After watching her a little, Fitzwilliam asked her why she +was so thoughtful. + +“I am thinking of what you have been telling me,” said she. “Your +cousin's conduct does not suit my feelings. Why was he to be the judge?” + +“You are rather disposed to call his interference officious?” + +“I do not see what right Mr. Darcy had to decide on the propriety of his +friend's inclination, or why, upon his own judgement alone, he was to +determine and direct in what manner his friend was to be happy. +But,” she continued, recollecting herself, “as we know none of the +particulars, it is not fair to condemn him. It is not to be supposed +that there was much affection in the case.” + +“That is not an unnatural surmise,” said Fitzwilliam, “but it is a +lessening of the honour of my cousin's triumph very sadly.” + +This was spoken jestingly; but it appeared to her so just a picture +of Mr. Darcy, that she would not trust herself with an answer, and +therefore, abruptly changing the conversation talked on indifferent +matters until they reached the Parsonage. There, shut into her own room, +as soon as their visitor left them, she could think without interruption +of all that she had heard. It was not to be supposed that any other +people could be meant than those with whom she was connected. There +could not exist in the world _two_ men over whom Mr. Darcy could have +such boundless influence. That he had been concerned in the measures +taken to separate Bingley and Jane she had never doubted; but she had +always attributed to Miss Bingley the principal design and arrangement +of them. If his own vanity, however, did not mislead him, _he_ was +the cause, his pride and caprice were the cause, of all that Jane had +suffered, and still continued to suffer. He had ruined for a while +every hope of happiness for the most affectionate, generous heart in the +world; and no one could say how lasting an evil he might have inflicted. + +“There were some very strong objections against the lady,” were Colonel +Fitzwilliam's words; and those strong objections probably were, her +having one uncle who was a country attorney, and another who was in +business in London. + +“To Jane herself,” she exclaimed, “there could be no possibility of +objection; all loveliness and goodness as she is!--her understanding +excellent, her mind improved, and her manners captivating. Neither +could anything be urged against my father, who, though with some +peculiarities, has abilities Mr. Darcy himself need not disdain, and +respectability which he will probably never reach.” When she thought of +her mother, her confidence gave way a little; but she would not allow +that any objections _there_ had material weight with Mr. Darcy, whose +pride, she was convinced, would receive a deeper wound from the want of +importance in his friend's connections, than from their want of sense; +and she was quite decided, at last, that he had been partly governed +by this worst kind of pride, and partly by the wish of retaining Mr. +Bingley for his sister. + +The agitation and tears which the subject occasioned, brought on a +headache; and it grew so much worse towards the evening, that, added to +her unwillingness to see Mr. Darcy, it determined her not to attend her +cousins to Rosings, where they were engaged to drink tea. Mrs. Collins, +seeing that she was really unwell, did not press her to go and as much +as possible prevented her husband from pressing her; but Mr. Collins +could not conceal his apprehension of Lady Catherine's being rather +displeased by her staying at home. + + + +Chapter 34 + + +When they were gone, Elizabeth, as if intending to exasperate herself +as much as possible against Mr. Darcy, chose for her employment the +examination of all the letters which Jane had written to her since her +being in Kent. They contained no actual complaint, nor was there any +revival of past occurrences, or any communication of present suffering. +But in all, and in almost every line of each, there was a want of that +cheerfulness which had been used to characterise her style, and which, +proceeding from the serenity of a mind at ease with itself and kindly +disposed towards everyone, had been scarcely ever clouded. Elizabeth +noticed every sentence conveying the idea of uneasiness, with an +attention which it had hardly received on the first perusal. Mr. Darcy's +shameful boast of what misery he had been able to inflict, gave her +a keener sense of her sister's sufferings. It was some consolation +to think that his visit to Rosings was to end on the day after the +next--and, a still greater, that in less than a fortnight she should +herself be with Jane again, and enabled to contribute to the recovery of +her spirits, by all that affection could do. + +She could not think of Darcy's leaving Kent without remembering that +his cousin was to go with him; but Colonel Fitzwilliam had made it clear +that he had no intentions at all, and agreeable as he was, she did not +mean to be unhappy about him. + +While settling this point, she was suddenly roused by the sound of the +door-bell, and her spirits were a little fluttered by the idea of its +being Colonel Fitzwilliam himself, who had once before called late in +the evening, and might now come to inquire particularly after her. +But this idea was soon banished, and her spirits were very differently +affected, when, to her utter amazement, she saw Mr. Darcy walk into the +room. In an hurried manner he immediately began an inquiry after her +health, imputing his visit to a wish of hearing that she were better. +She answered him with cold civility. He sat down for a few moments, and +then getting up, walked about the room. Elizabeth was surprised, but +said not a word. After a silence of several minutes, he came towards her +in an agitated manner, and thus began: + +“In vain I have struggled. It will not do. My feelings will not be +repressed. You must allow me to tell you how ardently I admire and love +you.” + +Elizabeth's astonishment was beyond expression. She stared, coloured, +doubted, and was silent. This he considered sufficient encouragement; +and the avowal of all that he felt, and had long felt for her, +immediately followed. He spoke well; but there were feelings besides +those of the heart to be detailed; and he was not more eloquent on the +subject of tenderness than of pride. His sense of her inferiority--of +its being a degradation--of the family obstacles which had always +opposed to inclination, were dwelt on with a warmth which seemed due to +the consequence he was wounding, but was very unlikely to recommend his +suit. + +In spite of her deeply-rooted dislike, she could not be insensible to +the compliment of such a man's affection, and though her intentions did +not vary for an instant, she was at first sorry for the pain he was to +receive; till, roused to resentment by his subsequent language, she +lost all compassion in anger. She tried, however, to compose herself to +answer him with patience, when he should have done. He concluded with +representing to her the strength of that attachment which, in spite +of all his endeavours, he had found impossible to conquer; and with +expressing his hope that it would now be rewarded by her acceptance of +his hand. As he said this, she could easily see that he had no doubt +of a favourable answer. He _spoke_ of apprehension and anxiety, but +his countenance expressed real security. Such a circumstance could +only exasperate farther, and, when he ceased, the colour rose into her +cheeks, and she said: + +“In such cases as this, it is, I believe, the established mode to +express a sense of obligation for the sentiments avowed, however +unequally they may be returned. It is natural that obligation should +be felt, and if I could _feel_ gratitude, I would now thank you. But I +cannot--I have never desired your good opinion, and you have certainly +bestowed it most unwillingly. I am sorry to have occasioned pain to +anyone. It has been most unconsciously done, however, and I hope will be +of short duration. The feelings which, you tell me, have long prevented +the acknowledgment of your regard, can have little difficulty in +overcoming it after this explanation.” + +Mr. Darcy, who was leaning against the mantelpiece with his eyes fixed +on her face, seemed to catch her words with no less resentment than +surprise. His complexion became pale with anger, and the disturbance +of his mind was visible in every feature. He was struggling for the +appearance of composure, and would not open his lips till he believed +himself to have attained it. The pause was to Elizabeth's feelings +dreadful. At length, with a voice of forced calmness, he said: + +“And this is all the reply which I am to have the honour of expecting! +I might, perhaps, wish to be informed why, with so little _endeavour_ at +civility, I am thus rejected. But it is of small importance.” + +“I might as well inquire,” replied she, “why with so evident a desire +of offending and insulting me, you chose to tell me that you liked me +against your will, against your reason, and even against your character? +Was not this some excuse for incivility, if I _was_ uncivil? But I have +other provocations. You know I have. Had not my feelings decided against +you--had they been indifferent, or had they even been favourable, do you +think that any consideration would tempt me to accept the man who has +been the means of ruining, perhaps for ever, the happiness of a most +beloved sister?” + +As she pronounced these words, Mr. Darcy changed colour; but the emotion +was short, and he listened without attempting to interrupt her while she +continued: + +“I have every reason in the world to think ill of you. No motive can +excuse the unjust and ungenerous part you acted _there_. You dare not, +you cannot deny, that you have been the principal, if not the only means +of dividing them from each other--of exposing one to the censure of the +world for caprice and instability, and the other to its derision for +disappointed hopes, and involving them both in misery of the acutest +kind.” + +She paused, and saw with no slight indignation that he was listening +with an air which proved him wholly unmoved by any feeling of remorse. +He even looked at her with a smile of affected incredulity. + +“Can you deny that you have done it?” she repeated. + +With assumed tranquillity he then replied: “I have no wish of denying +that I did everything in my power to separate my friend from your +sister, or that I rejoice in my success. Towards _him_ I have been +kinder than towards myself.” + +Elizabeth disdained the appearance of noticing this civil reflection, +but its meaning did not escape, nor was it likely to conciliate her. + +“But it is not merely this affair,” she continued, “on which my dislike +is founded. Long before it had taken place my opinion of you was +decided. Your character was unfolded in the recital which I received +many months ago from Mr. Wickham. On this subject, what can you have to +say? In what imaginary act of friendship can you here defend yourself? +or under what misrepresentation can you here impose upon others?” + +“You take an eager interest in that gentleman's concerns,” said Darcy, +in a less tranquil tone, and with a heightened colour. + +“Who that knows what his misfortunes have been, can help feeling an +interest in him?” + +“His misfortunes!” repeated Darcy contemptuously; “yes, his misfortunes +have been great indeed.” + +“And of your infliction,” cried Elizabeth with energy. “You have reduced +him to his present state of poverty--comparative poverty. You have +withheld the advantages which you must know to have been designed for +him. You have deprived the best years of his life of that independence +which was no less his due than his desert. You have done all this! +and yet you can treat the mention of his misfortune with contempt and +ridicule.” + +“And this,” cried Darcy, as he walked with quick steps across the room, +“is your opinion of me! This is the estimation in which you hold me! +I thank you for explaining it so fully. My faults, according to this +calculation, are heavy indeed! But perhaps,” added he, stopping in +his walk, and turning towards her, “these offenses might have been +overlooked, had not your pride been hurt by my honest confession of the +scruples that had long prevented my forming any serious design. These +bitter accusations might have been suppressed, had I, with greater +policy, concealed my struggles, and flattered you into the belief of +my being impelled by unqualified, unalloyed inclination; by reason, by +reflection, by everything. But disguise of every sort is my abhorrence. +Nor am I ashamed of the feelings I related. They were natural and +just. Could you expect me to rejoice in the inferiority of your +connections?--to congratulate myself on the hope of relations, whose +condition in life is so decidedly beneath my own?” + +Elizabeth felt herself growing more angry every moment; yet she tried to +the utmost to speak with composure when she said: + +“You are mistaken, Mr. Darcy, if you suppose that the mode of your +declaration affected me in any other way, than as it spared me the concern +which I might have felt in refusing you, had you behaved in a more +gentlemanlike manner.” + +She saw him start at this, but he said nothing, and she continued: + +“You could not have made the offer of your hand in any possible way that +would have tempted me to accept it.” + +Again his astonishment was obvious; and he looked at her with an +expression of mingled incredulity and mortification. She went on: + +“From the very beginning--from the first moment, I may almost say--of +my acquaintance with you, your manners, impressing me with the fullest +belief of your arrogance, your conceit, and your selfish disdain of +the feelings of others, were such as to form the groundwork of +disapprobation on which succeeding events have built so immovable a +dislike; and I had not known you a month before I felt that you were the +last man in the world whom I could ever be prevailed on to marry.” + +“You have said quite enough, madam. I perfectly comprehend your +feelings, and have now only to be ashamed of what my own have been. +Forgive me for having taken up so much of your time, and accept my best +wishes for your health and happiness.” + +And with these words he hastily left the room, and Elizabeth heard him +the next moment open the front door and quit the house. + +The tumult of her mind, was now painfully great. She knew not how +to support herself, and from actual weakness sat down and cried for +half-an-hour. Her astonishment, as she reflected on what had passed, +was increased by every review of it. That she should receive an offer of +marriage from Mr. Darcy! That he should have been in love with her for +so many months! So much in love as to wish to marry her in spite of +all the objections which had made him prevent his friend's marrying +her sister, and which must appear at least with equal force in his +own case--was almost incredible! It was gratifying to have inspired +unconsciously so strong an affection. But his pride, his abominable +pride--his shameless avowal of what he had done with respect to +Jane--his unpardonable assurance in acknowledging, though he could +not justify it, and the unfeeling manner in which he had mentioned Mr. +Wickham, his cruelty towards whom he had not attempted to deny, soon +overcame the pity which the consideration of his attachment had for +a moment excited. She continued in very agitated reflections till the +sound of Lady Catherine's carriage made her feel how unequal she was to +encounter Charlotte's observation, and hurried her away to her room. + + + +Chapter 35 + + +Elizabeth awoke the next morning to the same thoughts and meditations +which had at length closed her eyes. She could not yet recover from the +surprise of what had happened; it was impossible to think of anything +else; and, totally indisposed for employment, she resolved, soon after +breakfast, to indulge herself in air and exercise. She was proceeding +directly to her favourite walk, when the recollection of Mr. Darcy's +sometimes coming there stopped her, and instead of entering the park, +she turned up the lane, which led farther from the turnpike-road. The +park paling was still the boundary on one side, and she soon passed one +of the gates into the ground. + +After walking two or three times along that part of the lane, she was +tempted, by the pleasantness of the morning, to stop at the gates and +look into the park. The five weeks which she had now passed in Kent had +made a great difference in the country, and every day was adding to the +verdure of the early trees. She was on the point of continuing her walk, +when she caught a glimpse of a gentleman within the sort of grove which +edged the park; he was moving that way; and, fearful of its being Mr. +Darcy, she was directly retreating. But the person who advanced was now +near enough to see her, and stepping forward with eagerness, pronounced +her name. She had turned away; but on hearing herself called, though +in a voice which proved it to be Mr. Darcy, she moved again towards the +gate. He had by that time reached it also, and, holding out a letter, +which she instinctively took, said, with a look of haughty composure, +“I have been walking in the grove some time in the hope of meeting you. +Will you do me the honour of reading that letter?” And then, with a +slight bow, turned again into the plantation, and was soon out of sight. + +With no expectation of pleasure, but with the strongest curiosity, +Elizabeth opened the letter, and, to her still increasing wonder, +perceived an envelope containing two sheets of letter-paper, written +quite through, in a very close hand. The envelope itself was likewise +full. Pursuing her way along the lane, she then began it. It was dated +from Rosings, at eight o'clock in the morning, and was as follows:-- + +“Be not alarmed, madam, on receiving this letter, by the apprehension +of its containing any repetition of those sentiments or renewal of those +offers which were last night so disgusting to you. I write without any +intention of paining you, or humbling myself, by dwelling on wishes +which, for the happiness of both, cannot be too soon forgotten; and the +effort which the formation and the perusal of this letter must occasion, +should have been spared, had not my character required it to be written +and read. You must, therefore, pardon the freedom with which I demand +your attention; your feelings, I know, will bestow it unwillingly, but I +demand it of your justice. + +“Two offenses of a very different nature, and by no means of equal +magnitude, you last night laid to my charge. The first mentioned was, +that, regardless of the sentiments of either, I had detached Mr. Bingley +from your sister, and the other, that I had, in defiance of various +claims, in defiance of honour and humanity, ruined the immediate +prosperity and blasted the prospects of Mr. Wickham. Wilfully and +wantonly to have thrown off the companion of my youth, the acknowledged +favourite of my father, a young man who had scarcely any other +dependence than on our patronage, and who had been brought up to expect +its exertion, would be a depravity, to which the separation of two young +persons, whose affection could be the growth of only a few weeks, could +bear no comparison. But from the severity of that blame which was last +night so liberally bestowed, respecting each circumstance, I shall hope +to be in the future secured, when the following account of my actions +and their motives has been read. If, in the explanation of them, which +is due to myself, I am under the necessity of relating feelings which +may be offensive to yours, I can only say that I am sorry. The necessity +must be obeyed, and further apology would be absurd. + +“I had not been long in Hertfordshire, before I saw, in common with +others, that Bingley preferred your elder sister to any other young +woman in the country. But it was not till the evening of the dance +at Netherfield that I had any apprehension of his feeling a serious +attachment. I had often seen him in love before. At that ball, while I +had the honour of dancing with you, I was first made acquainted, by Sir +William Lucas's accidental information, that Bingley's attentions to +your sister had given rise to a general expectation of their marriage. +He spoke of it as a certain event, of which the time alone could +be undecided. From that moment I observed my friend's behaviour +attentively; and I could then perceive that his partiality for Miss +Bennet was beyond what I had ever witnessed in him. Your sister I also +watched. Her look and manners were open, cheerful, and engaging as ever, +but without any symptom of peculiar regard, and I remained convinced +from the evening's scrutiny, that though she received his attentions +with pleasure, she did not invite them by any participation of +sentiment. If _you_ have not been mistaken here, _I_ must have been +in error. Your superior knowledge of your sister must make the latter +probable. If it be so, if I have been misled by such error to inflict +pain on her, your resentment has not been unreasonable. But I shall not +scruple to assert, that the serenity of your sister's countenance and +air was such as might have given the most acute observer a conviction +that, however amiable her temper, her heart was not likely to be +easily touched. That I was desirous of believing her indifferent is +certain--but I will venture to say that my investigation and decisions +are not usually influenced by my hopes or fears. I did not believe +her to be indifferent because I wished it; I believed it on impartial +conviction, as truly as I wished it in reason. My objections to the +marriage were not merely those which I last night acknowledged to have +the utmost force of passion to put aside, in my own case; the want of +connection could not be so great an evil to my friend as to me. But +there were other causes of repugnance; causes which, though still +existing, and existing to an equal degree in both instances, I had +myself endeavoured to forget, because they were not immediately before +me. These causes must be stated, though briefly. The situation of your +mother's family, though objectionable, was nothing in comparison to that +total want of propriety so frequently, so almost uniformly betrayed by +herself, by your three younger sisters, and occasionally even by your +father. Pardon me. It pains me to offend you. But amidst your concern +for the defects of your nearest relations, and your displeasure at this +representation of them, let it give you consolation to consider that, to +have conducted yourselves so as to avoid any share of the like censure, +is praise no less generally bestowed on you and your elder sister, than +it is honourable to the sense and disposition of both. I will only say +farther that from what passed that evening, my opinion of all parties +was confirmed, and every inducement heightened which could have led +me before, to preserve my friend from what I esteemed a most unhappy +connection. He left Netherfield for London, on the day following, as +you, I am certain, remember, with the design of soon returning. + +“The part which I acted is now to be explained. His sisters' uneasiness +had been equally excited with my own; our coincidence of feeling was +soon discovered, and, alike sensible that no time was to be lost in +detaching their brother, we shortly resolved on joining him directly in +London. We accordingly went--and there I readily engaged in the office +of pointing out to my friend the certain evils of such a choice. I +described, and enforced them earnestly. But, however this remonstrance +might have staggered or delayed his determination, I do not suppose +that it would ultimately have prevented the marriage, had it not been +seconded by the assurance that I hesitated not in giving, of your +sister's indifference. He had before believed her to return his +affection with sincere, if not with equal regard. But Bingley has great +natural modesty, with a stronger dependence on my judgement than on his +own. To convince him, therefore, that he had deceived himself, was +no very difficult point. To persuade him against returning into +Hertfordshire, when that conviction had been given, was scarcely the +work of a moment. I cannot blame myself for having done thus much. There +is but one part of my conduct in the whole affair on which I do not +reflect with satisfaction; it is that I condescended to adopt the +measures of art so far as to conceal from him your sister's being in +town. I knew it myself, as it was known to Miss Bingley; but her +brother is even yet ignorant of it. That they might have met without +ill consequence is perhaps probable; but his regard did not appear to me +enough extinguished for him to see her without some danger. Perhaps this +concealment, this disguise was beneath me; it is done, however, and it +was done for the best. On this subject I have nothing more to say, no +other apology to offer. If I have wounded your sister's feelings, it +was unknowingly done and though the motives which governed me may to +you very naturally appear insufficient, I have not yet learnt to condemn +them. + +“With respect to that other, more weighty accusation, of having injured +Mr. Wickham, I can only refute it by laying before you the whole of his +connection with my family. Of what he has _particularly_ accused me I +am ignorant; but of the truth of what I shall relate, I can summon more +than one witness of undoubted veracity. + +“Mr. Wickham is the son of a very respectable man, who had for many +years the management of all the Pemberley estates, and whose good +conduct in the discharge of his trust naturally inclined my father to +be of service to him; and on George Wickham, who was his godson, his +kindness was therefore liberally bestowed. My father supported him at +school, and afterwards at Cambridge--most important assistance, as his +own father, always poor from the extravagance of his wife, would have +been unable to give him a gentleman's education. My father was not only +fond of this young man's society, whose manners were always engaging; he +had also the highest opinion of him, and hoping the church would be +his profession, intended to provide for him in it. As for myself, it is +many, many years since I first began to think of him in a very different +manner. The vicious propensities--the want of principle, which he was +careful to guard from the knowledge of his best friend, could not escape +the observation of a young man of nearly the same age with himself, +and who had opportunities of seeing him in unguarded moments, which Mr. +Darcy could not have. Here again I shall give you pain--to what degree +you only can tell. But whatever may be the sentiments which Mr. Wickham +has created, a suspicion of their nature shall not prevent me from +unfolding his real character--it adds even another motive. + +“My excellent father died about five years ago; and his attachment to +Mr. Wickham was to the last so steady, that in his will he particularly +recommended it to me, to promote his advancement in the best manner +that his profession might allow--and if he took orders, desired that a +valuable family living might be his as soon as it became vacant. There +was also a legacy of one thousand pounds. His own father did not long +survive mine, and within half a year from these events, Mr. Wickham +wrote to inform me that, having finally resolved against taking orders, +he hoped I should not think it unreasonable for him to expect some more +immediate pecuniary advantage, in lieu of the preferment, by which he +could not be benefited. He had some intention, he added, of studying +law, and I must be aware that the interest of one thousand pounds would +be a very insufficient support therein. I rather wished, than believed +him to be sincere; but, at any rate, was perfectly ready to accede to +his proposal. I knew that Mr. Wickham ought not to be a clergyman; the +business was therefore soon settled--he resigned all claim to assistance +in the church, were it possible that he could ever be in a situation to +receive it, and accepted in return three thousand pounds. All connection +between us seemed now dissolved. I thought too ill of him to invite him +to Pemberley, or admit his society in town. In town I believe he chiefly +lived, but his studying the law was a mere pretence, and being now free +from all restraint, his life was a life of idleness and dissipation. +For about three years I heard little of him; but on the decease of the +incumbent of the living which had been designed for him, he applied to +me again by letter for the presentation. His circumstances, he assured +me, and I had no difficulty in believing it, were exceedingly bad. He +had found the law a most unprofitable study, and was now absolutely +resolved on being ordained, if I would present him to the living in +question--of which he trusted there could be little doubt, as he was +well assured that I had no other person to provide for, and I could not +have forgotten my revered father's intentions. You will hardly blame +me for refusing to comply with this entreaty, or for resisting every +repetition to it. His resentment was in proportion to the distress of +his circumstances--and he was doubtless as violent in his abuse of me +to others as in his reproaches to myself. After this period every +appearance of acquaintance was dropped. How he lived I know not. But +last summer he was again most painfully obtruded on my notice. + +“I must now mention a circumstance which I would wish to forget myself, +and which no obligation less than the present should induce me to unfold +to any human being. Having said thus much, I feel no doubt of your +secrecy. My sister, who is more than ten years my junior, was left to +the guardianship of my mother's nephew, Colonel Fitzwilliam, and myself. +About a year ago, she was taken from school, and an establishment formed +for her in London; and last summer she went with the lady who presided +over it, to Ramsgate; and thither also went Mr. Wickham, undoubtedly by +design; for there proved to have been a prior acquaintance between him +and Mrs. Younge, in whose character we were most unhappily deceived; and +by her connivance and aid, he so far recommended himself to Georgiana, +whose affectionate heart retained a strong impression of his kindness to +her as a child, that she was persuaded to believe herself in love, and +to consent to an elopement. She was then but fifteen, which must be her +excuse; and after stating her imprudence, I am happy to add, that I owed +the knowledge of it to herself. I joined them unexpectedly a day or two +before the intended elopement, and then Georgiana, unable to support the +idea of grieving and offending a brother whom she almost looked up to as +a father, acknowledged the whole to me. You may imagine what I felt and +how I acted. Regard for my sister's credit and feelings prevented +any public exposure; but I wrote to Mr. Wickham, who left the place +immediately, and Mrs. Younge was of course removed from her charge. Mr. +Wickham's chief object was unquestionably my sister's fortune, which +is thirty thousand pounds; but I cannot help supposing that the hope of +revenging himself on me was a strong inducement. His revenge would have +been complete indeed. + +“This, madam, is a faithful narrative of every event in which we have +been concerned together; and if you do not absolutely reject it as +false, you will, I hope, acquit me henceforth of cruelty towards Mr. +Wickham. I know not in what manner, under what form of falsehood he +had imposed on you; but his success is not perhaps to be wondered +at. Ignorant as you previously were of everything concerning either, +detection could not be in your power, and suspicion certainly not in +your inclination. + +“You may possibly wonder why all this was not told you last night; but +I was not then master enough of myself to know what could or ought to +be revealed. For the truth of everything here related, I can appeal more +particularly to the testimony of Colonel Fitzwilliam, who, from our +near relationship and constant intimacy, and, still more, as one of +the executors of my father's will, has been unavoidably acquainted +with every particular of these transactions. If your abhorrence of _me_ +should make _my_ assertions valueless, you cannot be prevented by +the same cause from confiding in my cousin; and that there may be +the possibility of consulting him, I shall endeavour to find some +opportunity of putting this letter in your hands in the course of the +morning. I will only add, God bless you. + +“FITZWILLIAM DARCY” + + + +Chapter 36 + + +If Elizabeth, when Mr. Darcy gave her the letter, did not expect it to +contain a renewal of his offers, she had formed no expectation at all of +its contents. But such as they were, it may well be supposed how eagerly +she went through them, and what a contrariety of emotion they excited. +Her feelings as she read were scarcely to be defined. With amazement did +she first understand that he believed any apology to be in his power; +and steadfastly was she persuaded, that he could have no explanation +to give, which a just sense of shame would not conceal. With a strong +prejudice against everything he might say, she began his account of what +had happened at Netherfield. She read with an eagerness which hardly +left her power of comprehension, and from impatience of knowing what the +next sentence might bring, was incapable of attending to the sense of +the one before her eyes. His belief of her sister's insensibility she +instantly resolved to be false; and his account of the real, the worst +objections to the match, made her too angry to have any wish of doing +him justice. He expressed no regret for what he had done which satisfied +her; his style was not penitent, but haughty. It was all pride and +insolence. + +But when this subject was succeeded by his account of Mr. Wickham--when +she read with somewhat clearer attention a relation of events which, +if true, must overthrow every cherished opinion of his worth, and which +bore so alarming an affinity to his own history of himself--her +feelings were yet more acutely painful and more difficult of definition. +Astonishment, apprehension, and even horror, oppressed her. She wished +to discredit it entirely, repeatedly exclaiming, “This must be false! +This cannot be! This must be the grossest falsehood!”--and when she had +gone through the whole letter, though scarcely knowing anything of the +last page or two, put it hastily away, protesting that she would not +regard it, that she would never look in it again. + +In this perturbed state of mind, with thoughts that could rest on +nothing, she walked on; but it would not do; in half a minute the letter +was unfolded again, and collecting herself as well as she could, she +again began the mortifying perusal of all that related to Wickham, and +commanded herself so far as to examine the meaning of every sentence. +The account of his connection with the Pemberley family was exactly what +he had related himself; and the kindness of the late Mr. Darcy, though +she had not before known its extent, agreed equally well with his own +words. So far each recital confirmed the other; but when she came to the +will, the difference was great. What Wickham had said of the living +was fresh in her memory, and as she recalled his very words, it was +impossible not to feel that there was gross duplicity on one side or the +other; and, for a few moments, she flattered herself that her wishes did +not err. But when she read and re-read with the closest attention, the +particulars immediately following of Wickham's resigning all pretensions +to the living, of his receiving in lieu so considerable a sum as three +thousand pounds, again was she forced to hesitate. She put down +the letter, weighed every circumstance with what she meant to be +impartiality--deliberated on the probability of each statement--but with +little success. On both sides it was only assertion. Again she read +on; but every line proved more clearly that the affair, which she had +believed it impossible that any contrivance could so represent as to +render Mr. Darcy's conduct in it less than infamous, was capable of a +turn which must make him entirely blameless throughout the whole. + +The extravagance and general profligacy which he scrupled not to lay at +Mr. Wickham's charge, exceedingly shocked her; the more so, as she could +bring no proof of its injustice. She had never heard of him before his +entrance into the ----shire Militia, in which he had engaged at the +persuasion of the young man who, on meeting him accidentally in town, +had there renewed a slight acquaintance. Of his former way of life +nothing had been known in Hertfordshire but what he told himself. As +to his real character, had information been in her power, she had +never felt a wish of inquiring. His countenance, voice, and manner had +established him at once in the possession of every virtue. She tried +to recollect some instance of goodness, some distinguished trait of +integrity or benevolence, that might rescue him from the attacks of +Mr. Darcy; or at least, by the predominance of virtue, atone for those +casual errors under which she would endeavour to class what Mr. Darcy +had described as the idleness and vice of many years' continuance. But +no such recollection befriended her. She could see him instantly before +her, in every charm of air and address; but she could remember no more +substantial good than the general approbation of the neighbourhood, and +the regard which his social powers had gained him in the mess. After +pausing on this point a considerable while, she once more continued to +read. But, alas! the story which followed, of his designs on Miss +Darcy, received some confirmation from what had passed between Colonel +Fitzwilliam and herself only the morning before; and at last she was +referred for the truth of every particular to Colonel Fitzwilliam +himself--from whom she had previously received the information of his +near concern in all his cousin's affairs, and whose character she had no +reason to question. At one time she had almost resolved on applying to +him, but the idea was checked by the awkwardness of the application, and +at length wholly banished by the conviction that Mr. Darcy would never +have hazarded such a proposal, if he had not been well assured of his +cousin's corroboration. + +She perfectly remembered everything that had passed in conversation +between Wickham and herself, in their first evening at Mr. Phillips's. +Many of his expressions were still fresh in her memory. She was _now_ +struck with the impropriety of such communications to a stranger, and +wondered it had escaped her before. She saw the indelicacy of putting +himself forward as he had done, and the inconsistency of his professions +with his conduct. She remembered that he had boasted of having no fear +of seeing Mr. Darcy--that Mr. Darcy might leave the country, but that +_he_ should stand his ground; yet he had avoided the Netherfield ball +the very next week. She remembered also that, till the Netherfield +family had quitted the country, he had told his story to no one but +herself; but that after their removal it had been everywhere discussed; +that he had then no reserves, no scruples in sinking Mr. Darcy's +character, though he had assured her that respect for the father would +always prevent his exposing the son. + +How differently did everything now appear in which he was concerned! +His attentions to Miss King were now the consequence of views solely and +hatefully mercenary; and the mediocrity of her fortune proved no longer +the moderation of his wishes, but his eagerness to grasp at anything. +His behaviour to herself could now have had no tolerable motive; he had +either been deceived with regard to her fortune, or had been gratifying +his vanity by encouraging the preference which she believed she had most +incautiously shown. Every lingering struggle in his favour grew fainter +and fainter; and in farther justification of Mr. Darcy, she could not +but allow that Mr. Bingley, when questioned by Jane, had long ago +asserted his blamelessness in the affair; that proud and repulsive as +were his manners, she had never, in the whole course of their +acquaintance--an acquaintance which had latterly brought them much +together, and given her a sort of intimacy with his ways--seen anything +that betrayed him to be unprincipled or unjust--anything that spoke him +of irreligious or immoral habits; that among his own connections he was +esteemed and valued--that even Wickham had allowed him merit as a +brother, and that she had often heard him speak so affectionately of his +sister as to prove him capable of _some_ amiable feeling; that had his +actions been what Mr. Wickham represented them, so gross a violation of +everything right could hardly have been concealed from the world; and +that friendship between a person capable of it, and such an amiable man +as Mr. Bingley, was incomprehensible. + +She grew absolutely ashamed of herself. Of neither Darcy nor Wickham +could she think without feeling she had been blind, partial, prejudiced, +absurd. + +“How despicably I have acted!” she cried; “I, who have prided myself +on my discernment! I, who have valued myself on my abilities! who have +often disdained the generous candour of my sister, and gratified +my vanity in useless or blameable mistrust! How humiliating is this +discovery! Yet, how just a humiliation! Had I been in love, I could +not have been more wretchedly blind! But vanity, not love, has been my +folly. Pleased with the preference of one, and offended by the neglect +of the other, on the very beginning of our acquaintance, I have courted +prepossession and ignorance, and driven reason away, where either were +concerned. Till this moment I never knew myself.” + +From herself to Jane--from Jane to Bingley, her thoughts were in a line +which soon brought to her recollection that Mr. Darcy's explanation +_there_ had appeared very insufficient, and she read it again. Widely +different was the effect of a second perusal. How could she deny that +credit to his assertions in one instance, which she had been obliged to +give in the other? He declared himself to be totally unsuspicious of her +sister's attachment; and she could not help remembering what Charlotte's +opinion had always been. Neither could she deny the justice of his +description of Jane. She felt that Jane's feelings, though fervent, were +little displayed, and that there was a constant complacency in her air +and manner not often united with great sensibility. + +When she came to that part of the letter in which her family were +mentioned in terms of such mortifying, yet merited reproach, her sense +of shame was severe. The justice of the charge struck her too forcibly +for denial, and the circumstances to which he particularly alluded as +having passed at the Netherfield ball, and as confirming all his first +disapprobation, could not have made a stronger impression on his mind +than on hers. + +The compliment to herself and her sister was not unfelt. It soothed, +but it could not console her for the contempt which had thus been +self-attracted by the rest of her family; and as she considered +that Jane's disappointment had in fact been the work of her nearest +relations, and reflected how materially the credit of both must be hurt +by such impropriety of conduct, she felt depressed beyond anything she +had ever known before. + +After wandering along the lane for two hours, giving way to every +variety of thought--re-considering events, determining probabilities, +and reconciling herself, as well as she could, to a change so sudden and +so important, fatigue, and a recollection of her long absence, made +her at length return home; and she entered the house with the wish +of appearing cheerful as usual, and the resolution of repressing such +reflections as must make her unfit for conversation. + +She was immediately told that the two gentlemen from Rosings had each +called during her absence; Mr. Darcy, only for a few minutes, to take +leave--but that Colonel Fitzwilliam had been sitting with them at least +an hour, hoping for her return, and almost resolving to walk after her +till she could be found. Elizabeth could but just _affect_ concern +in missing him; she really rejoiced at it. Colonel Fitzwilliam was no +longer an object; she could think only of her letter. + + + +Chapter 37 + + +The two gentlemen left Rosings the next morning, and Mr. Collins having +been in waiting near the lodges, to make them his parting obeisance, was +able to bring home the pleasing intelligence, of their appearing in very +good health, and in as tolerable spirits as could be expected, after the +melancholy scene so lately gone through at Rosings. To Rosings he then +hastened, to console Lady Catherine and her daughter; and on his return +brought back, with great satisfaction, a message from her ladyship, +importing that she felt herself so dull as to make her very desirous of +having them all to dine with her. + +Elizabeth could not see Lady Catherine without recollecting that, had +she chosen it, she might by this time have been presented to her as +her future niece; nor could she think, without a smile, of what her +ladyship's indignation would have been. “What would she have said? how +would she have behaved?” were questions with which she amused herself. + +Their first subject was the diminution of the Rosings party. “I assure +you, I feel it exceedingly,” said Lady Catherine; “I believe no one +feels the loss of friends so much as I do. But I am particularly +attached to these young men, and know them to be so much attached to +me! They were excessively sorry to go! But so they always are. The +dear Colonel rallied his spirits tolerably till just at last; but Darcy +seemed to feel it most acutely, more, I think, than last year. His +attachment to Rosings certainly increases.” + +Mr. Collins had a compliment, and an allusion to throw in here, which +were kindly smiled on by the mother and daughter. + +Lady Catherine observed, after dinner, that Miss Bennet seemed out of +spirits, and immediately accounting for it by herself, by supposing that +she did not like to go home again so soon, she added: + +“But if that is the case, you must write to your mother and beg that +you may stay a little longer. Mrs. Collins will be very glad of your +company, I am sure.” + +“I am much obliged to your ladyship for your kind invitation,” replied +Elizabeth, “but it is not in my power to accept it. I must be in town +next Saturday.” + +“Why, at that rate, you will have been here only six weeks. I expected +you to stay two months. I told Mrs. Collins so before you came. There +can be no occasion for your going so soon. Mrs. Bennet could certainly +spare you for another fortnight.” + +“But my father cannot. He wrote last week to hurry my return.” + +“Oh! your father of course may spare you, if your mother can. Daughters +are never of so much consequence to a father. And if you will stay +another _month_ complete, it will be in my power to take one of you as +far as London, for I am going there early in June, for a week; and as +Dawson does not object to the barouche-box, there will be very good room +for one of you--and indeed, if the weather should happen to be cool, I +should not object to taking you both, as you are neither of you large.” + +“You are all kindness, madam; but I believe we must abide by our +original plan.” + +Lady Catherine seemed resigned. “Mrs. Collins, you must send a servant +with them. You know I always speak my mind, and I cannot bear the idea +of two young women travelling post by themselves. It is highly improper. +You must contrive to send somebody. I have the greatest dislike in +the world to that sort of thing. Young women should always be properly +guarded and attended, according to their situation in life. When my +niece Georgiana went to Ramsgate last summer, I made a point of her +having two men-servants go with her. Miss Darcy, the daughter of +Mr. Darcy, of Pemberley, and Lady Anne, could not have appeared with +propriety in a different manner. I am excessively attentive to all those +things. You must send John with the young ladies, Mrs. Collins. I +am glad it occurred to me to mention it; for it would really be +discreditable to _you_ to let them go alone.” + +“My uncle is to send a servant for us.” + +“Oh! Your uncle! He keeps a man-servant, does he? I am very glad you +have somebody who thinks of these things. Where shall you change horses? +Oh! Bromley, of course. If you mention my name at the Bell, you will be +attended to.” + +Lady Catherine had many other questions to ask respecting their journey, +and as she did not answer them all herself, attention was necessary, +which Elizabeth believed to be lucky for her; or, with a mind so +occupied, she might have forgotten where she was. Reflection must be +reserved for solitary hours; whenever she was alone, she gave way to it +as the greatest relief; and not a day went by without a solitary +walk, in which she might indulge in all the delight of unpleasant +recollections. + +Mr. Darcy's letter she was in a fair way of soon knowing by heart. She +studied every sentence; and her feelings towards its writer were at +times widely different. When she remembered the style of his address, +she was still full of indignation; but when she considered how unjustly +she had condemned and upbraided him, her anger was turned against +herself; and his disappointed feelings became the object of compassion. +His attachment excited gratitude, his general character respect; but she +could not approve him; nor could she for a moment repent her refusal, +or feel the slightest inclination ever to see him again. In her own past +behaviour, there was a constant source of vexation and regret; and in +the unhappy defects of her family, a subject of yet heavier chagrin. +They were hopeless of remedy. Her father, contented with laughing at +them, would never exert himself to restrain the wild giddiness of his +youngest daughters; and her mother, with manners so far from right +herself, was entirely insensible of the evil. Elizabeth had frequently +united with Jane in an endeavour to check the imprudence of Catherine +and Lydia; but while they were supported by their mother's indulgence, +what chance could there be of improvement? Catherine, weak-spirited, +irritable, and completely under Lydia's guidance, had been always +affronted by their advice; and Lydia, self-willed and careless, would +scarcely give them a hearing. They were ignorant, idle, and vain. While +there was an officer in Meryton, they would flirt with him; and while +Meryton was within a walk of Longbourn, they would be going there +forever. + +Anxiety on Jane's behalf was another prevailing concern; and Mr. Darcy's +explanation, by restoring Bingley to all her former good opinion, +heightened the sense of what Jane had lost. His affection was proved +to have been sincere, and his conduct cleared of all blame, unless any +could attach to the implicitness of his confidence in his friend. How +grievous then was the thought that, of a situation so desirable in every +respect, so replete with advantage, so promising for happiness, Jane had +been deprived, by the folly and indecorum of her own family! + +When to these recollections was added the development of Wickham's +character, it may be easily believed that the happy spirits which had +seldom been depressed before, were now so much affected as to make it +almost impossible for her to appear tolerably cheerful. + +Their engagements at Rosings were as frequent during the last week of +her stay as they had been at first. The very last evening was spent +there; and her ladyship again inquired minutely into the particulars of +their journey, gave them directions as to the best method of packing, +and was so urgent on the necessity of placing gowns in the only right +way, that Maria thought herself obliged, on her return, to undo all the +work of the morning, and pack her trunk afresh. + +When they parted, Lady Catherine, with great condescension, wished them +a good journey, and invited them to come to Hunsford again next year; +and Miss de Bourgh exerted herself so far as to curtsey and hold out her +hand to both. + + + +Chapter 38 + + +On Saturday morning Elizabeth and Mr. Collins met for breakfast a few +minutes before the others appeared; and he took the opportunity of +paying the parting civilities which he deemed indispensably necessary. + +“I know not, Miss Elizabeth,” said he, “whether Mrs. Collins has yet +expressed her sense of your kindness in coming to us; but I am very +certain you will not leave the house without receiving her thanks for +it. The favour of your company has been much felt, I assure you. We +know how little there is to tempt anyone to our humble abode. Our plain +manner of living, our small rooms and few domestics, and the little we +see of the world, must make Hunsford extremely dull to a young lady like +yourself; but I hope you will believe us grateful for the condescension, +and that we have done everything in our power to prevent your spending +your time unpleasantly.” + +Elizabeth was eager with her thanks and assurances of happiness. She +had spent six weeks with great enjoyment; and the pleasure of being with +Charlotte, and the kind attentions she had received, must make _her_ +feel the obliged. Mr. Collins was gratified, and with a more smiling +solemnity replied: + +“It gives me great pleasure to hear that you have passed your time not +disagreeably. We have certainly done our best; and most fortunately +having it in our power to introduce you to very superior society, and, +from our connection with Rosings, the frequent means of varying the +humble home scene, I think we may flatter ourselves that your Hunsford +visit cannot have been entirely irksome. Our situation with regard to +Lady Catherine's family is indeed the sort of extraordinary advantage +and blessing which few can boast. You see on what a footing we are. You +see how continually we are engaged there. In truth I must acknowledge +that, with all the disadvantages of this humble parsonage, I should +not think anyone abiding in it an object of compassion, while they are +sharers of our intimacy at Rosings.” + +Words were insufficient for the elevation of his feelings; and he was +obliged to walk about the room, while Elizabeth tried to unite civility +and truth in a few short sentences. + +“You may, in fact, carry a very favourable report of us into +Hertfordshire, my dear cousin. I flatter myself at least that you will +be able to do so. Lady Catherine's great attentions to Mrs. Collins you +have been a daily witness of; and altogether I trust it does not appear +that your friend has drawn an unfortunate--but on this point it will be +as well to be silent. Only let me assure you, my dear Miss Elizabeth, +that I can from my heart most cordially wish you equal felicity in +marriage. My dear Charlotte and I have but one mind and one way of +thinking. There is in everything a most remarkable resemblance of +character and ideas between us. We seem to have been designed for each +other.” + +Elizabeth could safely say that it was a great happiness where that was +the case, and with equal sincerity could add, that she firmly believed +and rejoiced in his domestic comforts. She was not sorry, however, to +have the recital of them interrupted by the lady from whom they sprang. +Poor Charlotte! it was melancholy to leave her to such society! But she +had chosen it with her eyes open; and though evidently regretting that +her visitors were to go, she did not seem to ask for compassion. Her +home and her housekeeping, her parish and her poultry, and all their +dependent concerns, had not yet lost their charms. + +At length the chaise arrived, the trunks were fastened on, the parcels +placed within, and it was pronounced to be ready. After an affectionate +parting between the friends, Elizabeth was attended to the carriage by +Mr. Collins, and as they walked down the garden he was commissioning her +with his best respects to all her family, not forgetting his thanks +for the kindness he had received at Longbourn in the winter, and his +compliments to Mr. and Mrs. Gardiner, though unknown. He then handed her +in, Maria followed, and the door was on the point of being closed, +when he suddenly reminded them, with some consternation, that they had +hitherto forgotten to leave any message for the ladies at Rosings. + +“But,” he added, “you will of course wish to have your humble respects +delivered to them, with your grateful thanks for their kindness to you +while you have been here.” + +Elizabeth made no objection; the door was then allowed to be shut, and +the carriage drove off. + +“Good gracious!” cried Maria, after a few minutes' silence, “it seems +but a day or two since we first came! and yet how many things have +happened!” + +“A great many indeed,” said her companion with a sigh. + +“We have dined nine times at Rosings, besides drinking tea there twice! +How much I shall have to tell!” + +Elizabeth added privately, “And how much I shall have to conceal!” + +Their journey was performed without much conversation, or any alarm; and +within four hours of their leaving Hunsford they reached Mr. Gardiner's +house, where they were to remain a few days. + +Jane looked well, and Elizabeth had little opportunity of studying her +spirits, amidst the various engagements which the kindness of her +aunt had reserved for them. But Jane was to go home with her, and at +Longbourn there would be leisure enough for observation. + +It was not without an effort, meanwhile, that she could wait even for +Longbourn, before she told her sister of Mr. Darcy's proposals. To know +that she had the power of revealing what would so exceedingly astonish +Jane, and must, at the same time, so highly gratify whatever of her own +vanity she had not yet been able to reason away, was such a temptation +to openness as nothing could have conquered but the state of indecision +in which she remained as to the extent of what she should communicate; +and her fear, if she once entered on the subject, of being hurried +into repeating something of Bingley which might only grieve her sister +further. + + + +Chapter 39 + + +It was the second week in May, in which the three young ladies set out +together from Gracechurch Street for the town of ----, in Hertfordshire; +and, as they drew near the appointed inn where Mr. Bennet's carriage +was to meet them, they quickly perceived, in token of the coachman's +punctuality, both Kitty and Lydia looking out of a dining-room up stairs. +These two girls had been above an hour in the place, happily employed +in visiting an opposite milliner, watching the sentinel on guard, and +dressing a salad and cucumber. + +After welcoming their sisters, they triumphantly displayed a table set +out with such cold meat as an inn larder usually affords, exclaiming, +“Is not this nice? Is not this an agreeable surprise?” + +“And we mean to treat you all,” added Lydia, “but you must lend us the +money, for we have just spent ours at the shop out there.” Then, showing +her purchases--“Look here, I have bought this bonnet. I do not think +it is very pretty; but I thought I might as well buy it as not. I shall +pull it to pieces as soon as I get home, and see if I can make it up any +better.” + +And when her sisters abused it as ugly, she added, with perfect +unconcern, “Oh! but there were two or three much uglier in the shop; and +when I have bought some prettier-coloured satin to trim it with fresh, I +think it will be very tolerable. Besides, it will not much signify what +one wears this summer, after the ----shire have left Meryton, and they +are going in a fortnight.” + +“Are they indeed!” cried Elizabeth, with the greatest satisfaction. + +“They are going to be encamped near Brighton; and I do so want papa to +take us all there for the summer! It would be such a delicious scheme; +and I dare say would hardly cost anything at all. Mamma would like to +go too of all things! Only think what a miserable summer else we shall +have!” + +“Yes,” thought Elizabeth, “_that_ would be a delightful scheme indeed, +and completely do for us at once. Good Heaven! Brighton, and a whole +campful of soldiers, to us, who have been overset already by one poor +regiment of militia, and the monthly balls of Meryton!” + +“Now I have got some news for you,” said Lydia, as they sat down at +table. “What do you think? It is excellent news--capital news--and about +a certain person we all like!” + +Jane and Elizabeth looked at each other, and the waiter was told he need +not stay. Lydia laughed, and said: + +“Aye, that is just like your formality and discretion. You thought the +waiter must not hear, as if he cared! I dare say he often hears worse +things said than I am going to say. But he is an ugly fellow! I am glad +he is gone. I never saw such a long chin in my life. Well, but now for +my news; it is about dear Wickham; too good for the waiter, is it not? +There is no danger of Wickham's marrying Mary King. There's for you! She +is gone down to her uncle at Liverpool: gone to stay. Wickham is safe.” + +“And Mary King is safe!” added Elizabeth; “safe from a connection +imprudent as to fortune.” + +“She is a great fool for going away, if she liked him.” + +“But I hope there is no strong attachment on either side,” said Jane. + +“I am sure there is not on _his_. I will answer for it, he never cared +three straws about her--who could about such a nasty little freckled +thing?” + +Elizabeth was shocked to think that, however incapable of such +coarseness of _expression_ herself, the coarseness of the _sentiment_ +was little other than her own breast had harboured and fancied liberal! + +As soon as all had ate, and the elder ones paid, the carriage was +ordered; and after some contrivance, the whole party, with all their +boxes, work-bags, and parcels, and the unwelcome addition of Kitty's and +Lydia's purchases, were seated in it. + +“How nicely we are all crammed in,” cried Lydia. “I am glad I bought my +bonnet, if it is only for the fun of having another bandbox! Well, now +let us be quite comfortable and snug, and talk and laugh all the way +home. And in the first place, let us hear what has happened to you all +since you went away. Have you seen any pleasant men? Have you had any +flirting? I was in great hopes that one of you would have got a husband +before you came back. Jane will be quite an old maid soon, I declare. +She is almost three-and-twenty! Lord, how ashamed I should be of not +being married before three-and-twenty! My aunt Phillips wants you so to +get husbands, you can't think. She says Lizzy had better have taken Mr. +Collins; but _I_ do not think there would have been any fun in it. Lord! +how I should like to be married before any of you; and then I would +chaperon you about to all the balls. Dear me! we had such a good piece +of fun the other day at Colonel Forster's. Kitty and me were to spend +the day there, and Mrs. Forster promised to have a little dance in the +evening; (by the bye, Mrs. Forster and me are _such_ friends!) and so +she asked the two Harringtons to come, but Harriet was ill, and so Pen +was forced to come by herself; and then, what do you think we did? We +dressed up Chamberlayne in woman's clothes on purpose to pass for a +lady, only think what fun! Not a soul knew of it, but Colonel and Mrs. +Forster, and Kitty and me, except my aunt, for we were forced to borrow +one of her gowns; and you cannot imagine how well he looked! When Denny, +and Wickham, and Pratt, and two or three more of the men came in, they +did not know him in the least. Lord! how I laughed! and so did Mrs. +Forster. I thought I should have died. And _that_ made the men suspect +something, and then they soon found out what was the matter.” + +With such kinds of histories of their parties and good jokes, did +Lydia, assisted by Kitty's hints and additions, endeavour to amuse her +companions all the way to Longbourn. Elizabeth listened as little as she +could, but there was no escaping the frequent mention of Wickham's name. + +Their reception at home was most kind. Mrs. Bennet rejoiced to see Jane +in undiminished beauty; and more than once during dinner did Mr. Bennet +say voluntarily to Elizabeth: + +“I am glad you are come back, Lizzy.” + +Their party in the dining-room was large, for almost all the Lucases +came to meet Maria and hear the news; and various were the subjects that +occupied them: Lady Lucas was inquiring of Maria, after the welfare and +poultry of her eldest daughter; Mrs. Bennet was doubly engaged, on one +hand collecting an account of the present fashions from Jane, who sat +some way below her, and, on the other, retailing them all to the younger +Lucases; and Lydia, in a voice rather louder than any other person's, +was enumerating the various pleasures of the morning to anybody who +would hear her. + +“Oh! Mary,” said she, “I wish you had gone with us, for we had such fun! +As we went along, Kitty and I drew up the blinds, and pretended there +was nobody in the coach; and I should have gone so all the way, if Kitty +had not been sick; and when we got to the George, I do think we behaved +very handsomely, for we treated the other three with the nicest cold +luncheon in the world, and if you would have gone, we would have treated +you too. And then when we came away it was such fun! I thought we never +should have got into the coach. I was ready to die of laughter. And then +we were so merry all the way home! we talked and laughed so loud, that +anybody might have heard us ten miles off!” + +To this Mary very gravely replied, “Far be it from me, my dear sister, +to depreciate such pleasures! They would doubtless be congenial with the +generality of female minds. But I confess they would have no charms for +_me_--I should infinitely prefer a book.” + +But of this answer Lydia heard not a word. She seldom listened to +anybody for more than half a minute, and never attended to Mary at all. + +In the afternoon Lydia was urgent with the rest of the girls to walk +to Meryton, and to see how everybody went on; but Elizabeth steadily +opposed the scheme. It should not be said that the Miss Bennets could +not be at home half a day before they were in pursuit of the officers. +There was another reason too for her opposition. She dreaded seeing Mr. +Wickham again, and was resolved to avoid it as long as possible. The +comfort to _her_ of the regiment's approaching removal was indeed beyond +expression. In a fortnight they were to go--and once gone, she hoped +there could be nothing more to plague her on his account. + +She had not been many hours at home before she found that the Brighton +scheme, of which Lydia had given them a hint at the inn, was under +frequent discussion between her parents. Elizabeth saw directly that her +father had not the smallest intention of yielding; but his answers were +at the same time so vague and equivocal, that her mother, though often +disheartened, had never yet despaired of succeeding at last. + + + +Chapter 40 + + +Elizabeth's impatience to acquaint Jane with what had happened could +no longer be overcome; and at length, resolving to suppress every +particular in which her sister was concerned, and preparing her to be +surprised, she related to her the next morning the chief of the scene +between Mr. Darcy and herself. + +Miss Bennet's astonishment was soon lessened by the strong sisterly +partiality which made any admiration of Elizabeth appear perfectly +natural; and all surprise was shortly lost in other feelings. She was +sorry that Mr. Darcy should have delivered his sentiments in a manner so +little suited to recommend them; but still more was she grieved for the +unhappiness which her sister's refusal must have given him. + +“His being so sure of succeeding was wrong,” said she, “and certainly +ought not to have appeared; but consider how much it must increase his +disappointment!” + +“Indeed,” replied Elizabeth, “I am heartily sorry for him; but he has +other feelings, which will probably soon drive away his regard for me. +You do not blame me, however, for refusing him?” + +“Blame you! Oh, no.” + +“But you blame me for having spoken so warmly of Wickham?” + +“No--I do not know that you were wrong in saying what you did.” + +“But you _will_ know it, when I tell you what happened the very next +day.” + +She then spoke of the letter, repeating the whole of its contents as far +as they concerned George Wickham. What a stroke was this for poor Jane! +who would willingly have gone through the world without believing that +so much wickedness existed in the whole race of mankind, as was here +collected in one individual. Nor was Darcy's vindication, though +grateful to her feelings, capable of consoling her for such discovery. +Most earnestly did she labour to prove the probability of error, and +seek to clear the one without involving the other. + +“This will not do,” said Elizabeth; “you never will be able to make both +of them good for anything. Take your choice, but you must be satisfied +with only one. There is but such a quantity of merit between them; just +enough to make one good sort of man; and of late it has been shifting +about pretty much. For my part, I am inclined to believe it all Darcy's; +but you shall do as you choose.” + +It was some time, however, before a smile could be extorted from Jane. + +“I do not know when I have been more shocked,” said she. “Wickham so +very bad! It is almost past belief. And poor Mr. Darcy! Dear Lizzy, only +consider what he must have suffered. Such a disappointment! and with the +knowledge of your ill opinion, too! and having to relate such a thing +of his sister! It is really too distressing. I am sure you must feel it +so.” + +“Oh! no, my regret and compassion are all done away by seeing you so +full of both. I know you will do him such ample justice, that I am +growing every moment more unconcerned and indifferent. Your profusion +makes me saving; and if you lament over him much longer, my heart will +be as light as a feather.” + +“Poor Wickham! there is such an expression of goodness in his +countenance! such an openness and gentleness in his manner!” + +“There certainly was some great mismanagement in the education of those +two young men. One has got all the goodness, and the other all the +appearance of it.” + +“I never thought Mr. Darcy so deficient in the _appearance_ of it as you +used to do.” + +“And yet I meant to be uncommonly clever in taking so decided a dislike +to him, without any reason. It is such a spur to one's genius, such an +opening for wit, to have a dislike of that kind. One may be continually +abusive without saying anything just; but one cannot always be laughing +at a man without now and then stumbling on something witty.” + +“Lizzy, when you first read that letter, I am sure you could not treat +the matter as you do now.” + +“Indeed, I could not. I was uncomfortable enough, I may say unhappy. And +with no one to speak to about what I felt, no Jane to comfort me and say +that I had not been so very weak and vain and nonsensical as I knew I +had! Oh! how I wanted you!” + +“How unfortunate that you should have used such very strong expressions +in speaking of Wickham to Mr. Darcy, for now they _do_ appear wholly +undeserved.” + +“Certainly. But the misfortune of speaking with bitterness is a most +natural consequence of the prejudices I had been encouraging. There +is one point on which I want your advice. I want to be told whether I +ought, or ought not, to make our acquaintances in general understand +Wickham's character.” + +Miss Bennet paused a little, and then replied, “Surely there can be no +occasion for exposing him so dreadfully. What is your opinion?” + +“That it ought not to be attempted. Mr. Darcy has not authorised me +to make his communication public. On the contrary, every particular +relative to his sister was meant to be kept as much as possible to +myself; and if I endeavour to undeceive people as to the rest of his +conduct, who will believe me? The general prejudice against Mr. Darcy +is so violent, that it would be the death of half the good people in +Meryton to attempt to place him in an amiable light. I am not equal +to it. Wickham will soon be gone; and therefore it will not signify to +anyone here what he really is. Some time hence it will be all found out, +and then we may laugh at their stupidity in not knowing it before. At +present I will say nothing about it.” + +“You are quite right. To have his errors made public might ruin him for +ever. He is now, perhaps, sorry for what he has done, and anxious to +re-establish a character. We must not make him desperate.” + +The tumult of Elizabeth's mind was allayed by this conversation. She had +got rid of two of the secrets which had weighed on her for a fortnight, +and was certain of a willing listener in Jane, whenever she might wish +to talk again of either. But there was still something lurking behind, +of which prudence forbade the disclosure. She dared not relate the other +half of Mr. Darcy's letter, nor explain to her sister how sincerely she +had been valued by her friend. Here was knowledge in which no one +could partake; and she was sensible that nothing less than a perfect +understanding between the parties could justify her in throwing off +this last encumbrance of mystery. “And then,” said she, “if that very +improbable event should ever take place, I shall merely be able to +tell what Bingley may tell in a much more agreeable manner himself. The +liberty of communication cannot be mine till it has lost all its value!” + +She was now, on being settled at home, at leisure to observe the real +state of her sister's spirits. Jane was not happy. She still cherished a +very tender affection for Bingley. Having never even fancied herself +in love before, her regard had all the warmth of first attachment, +and, from her age and disposition, greater steadiness than most first +attachments often boast; and so fervently did she value his remembrance, +and prefer him to every other man, that all her good sense, and all her +attention to the feelings of her friends, were requisite to check the +indulgence of those regrets which must have been injurious to her own +health and their tranquillity. + +“Well, Lizzy,” said Mrs. Bennet one day, “what is your opinion _now_ of +this sad business of Jane's? For my part, I am determined never to speak +of it again to anybody. I told my sister Phillips so the other day. But +I cannot find out that Jane saw anything of him in London. Well, he is +a very undeserving young man--and I do not suppose there's the least +chance in the world of her ever getting him now. There is no talk of +his coming to Netherfield again in the summer; and I have inquired of +everybody, too, who is likely to know.” + +“I do not believe he will ever live at Netherfield any more.” + +“Oh well! it is just as he chooses. Nobody wants him to come. Though I +shall always say he used my daughter extremely ill; and if I was her, I +would not have put up with it. Well, my comfort is, I am sure Jane will +die of a broken heart; and then he will be sorry for what he has done.” + +But as Elizabeth could not receive comfort from any such expectation, +she made no answer. + +“Well, Lizzy,” continued her mother, soon afterwards, “and so the +Collinses live very comfortable, do they? Well, well, I only hope +it will last. And what sort of table do they keep? Charlotte is an +excellent manager, I dare say. If she is half as sharp as her +mother, she is saving enough. There is nothing extravagant in _their_ +housekeeping, I dare say.” + +“No, nothing at all.” + +“A great deal of good management, depend upon it. Yes, yes, _they_ will +take care not to outrun their income. _They_ will never be distressed +for money. Well, much good may it do them! And so, I suppose, they often +talk of having Longbourn when your father is dead. They look upon it as +quite their own, I dare say, whenever that happens.” + +“It was a subject which they could not mention before me.” + +“No; it would have been strange if they had; but I make no doubt they +often talk of it between themselves. Well, if they can be easy with an +estate that is not lawfully their own, so much the better. I should be +ashamed of having one that was only entailed on me.” + + + +Chapter 41 + + +The first week of their return was soon gone. The second began. It was +the last of the regiment's stay in Meryton, and all the young ladies +in the neighbourhood were drooping apace. The dejection was almost +universal. The elder Miss Bennets alone were still able to eat, drink, +and sleep, and pursue the usual course of their employments. Very +frequently were they reproached for this insensibility by Kitty and +Lydia, whose own misery was extreme, and who could not comprehend such +hard-heartedness in any of the family. + +“Good Heaven! what is to become of us? What are we to do?” would they +often exclaim in the bitterness of woe. “How can you be smiling so, +Lizzy?” + +Their affectionate mother shared all their grief; she remembered what +she had herself endured on a similar occasion, five-and-twenty years +ago. + +“I am sure,” said she, “I cried for two days together when Colonel +Miller's regiment went away. I thought I should have broken my heart.” + +“I am sure I shall break _mine_,” said Lydia. + +“If one could but go to Brighton!” observed Mrs. Bennet. + +“Oh, yes!--if one could but go to Brighton! But papa is so +disagreeable.” + +“A little sea-bathing would set me up forever.” + +“And my aunt Phillips is sure it would do _me_ a great deal of good,” + added Kitty. + +Such were the kind of lamentations resounding perpetually through +Longbourn House. Elizabeth tried to be diverted by them; but all sense +of pleasure was lost in shame. She felt anew the justice of Mr. Darcy's +objections; and never had she been so much disposed to pardon his +interference in the views of his friend. + +But the gloom of Lydia's prospect was shortly cleared away; for she +received an invitation from Mrs. Forster, the wife of the colonel of +the regiment, to accompany her to Brighton. This invaluable friend was a +very young woman, and very lately married. A resemblance in good humour +and good spirits had recommended her and Lydia to each other, and out of +their _three_ months' acquaintance they had been intimate _two_. + +The rapture of Lydia on this occasion, her adoration of Mrs. Forster, +the delight of Mrs. Bennet, and the mortification of Kitty, are scarcely +to be described. Wholly inattentive to her sister's feelings, Lydia +flew about the house in restless ecstasy, calling for everyone's +congratulations, and laughing and talking with more violence than ever; +whilst the luckless Kitty continued in the parlour repined at her fate +in terms as unreasonable as her accent was peevish. + +“I cannot see why Mrs. Forster should not ask _me_ as well as Lydia,” + said she, “Though I am _not_ her particular friend. I have just as much +right to be asked as she has, and more too, for I am two years older.” + +In vain did Elizabeth attempt to make her reasonable, and Jane to make +her resigned. As for Elizabeth herself, this invitation was so far from +exciting in her the same feelings as in her mother and Lydia, that she +considered it as the death warrant of all possibility of common sense +for the latter; and detestable as such a step must make her were it +known, she could not help secretly advising her father not to let her +go. She represented to him all the improprieties of Lydia's general +behaviour, the little advantage she could derive from the friendship of +such a woman as Mrs. Forster, and the probability of her being yet more +imprudent with such a companion at Brighton, where the temptations must +be greater than at home. He heard her attentively, and then said: + +“Lydia will never be easy until she has exposed herself in some public +place or other, and we can never expect her to do it with so +little expense or inconvenience to her family as under the present +circumstances.” + +“If you were aware,” said Elizabeth, “of the very great disadvantage to +us all which must arise from the public notice of Lydia's unguarded and +imprudent manner--nay, which has already arisen from it, I am sure you +would judge differently in the affair.” + +“Already arisen?” repeated Mr. Bennet. “What, has she frightened away +some of your lovers? Poor little Lizzy! But do not be cast down. Such +squeamish youths as cannot bear to be connected with a little absurdity +are not worth a regret. Come, let me see the list of pitiful fellows who +have been kept aloof by Lydia's folly.” + +“Indeed you are mistaken. I have no such injuries to resent. It is not +of particular, but of general evils, which I am now complaining. Our +importance, our respectability in the world must be affected by the +wild volatility, the assurance and disdain of all restraint which mark +Lydia's character. Excuse me, for I must speak plainly. If you, my dear +father, will not take the trouble of checking her exuberant spirits, and +of teaching her that her present pursuits are not to be the business of +her life, she will soon be beyond the reach of amendment. Her character +will be fixed, and she will, at sixteen, be the most determined flirt +that ever made herself or her family ridiculous; a flirt, too, in the +worst and meanest degree of flirtation; without any attraction beyond +youth and a tolerable person; and, from the ignorance and emptiness +of her mind, wholly unable to ward off any portion of that universal +contempt which her rage for admiration will excite. In this danger +Kitty also is comprehended. She will follow wherever Lydia leads. Vain, +ignorant, idle, and absolutely uncontrolled! Oh! my dear father, can you +suppose it possible that they will not be censured and despised wherever +they are known, and that their sisters will not be often involved in the +disgrace?” + +Mr. Bennet saw that her whole heart was in the subject, and +affectionately taking her hand said in reply: + +“Do not make yourself uneasy, my love. Wherever you and Jane are known +you must be respected and valued; and you will not appear to less +advantage for having a couple of--or I may say, three--very silly +sisters. We shall have no peace at Longbourn if Lydia does not go to +Brighton. Let her go, then. Colonel Forster is a sensible man, and will +keep her out of any real mischief; and she is luckily too poor to be an +object of prey to anybody. At Brighton she will be of less importance +even as a common flirt than she has been here. The officers will find +women better worth their notice. Let us hope, therefore, that her being +there may teach her her own insignificance. At any rate, she cannot grow +many degrees worse, without authorising us to lock her up for the rest +of her life.” + +With this answer Elizabeth was forced to be content; but her own opinion +continued the same, and she left him disappointed and sorry. It was not +in her nature, however, to increase her vexations by dwelling on +them. She was confident of having performed her duty, and to fret +over unavoidable evils, or augment them by anxiety, was no part of her +disposition. + +Had Lydia and her mother known the substance of her conference with her +father, their indignation would hardly have found expression in their +united volubility. In Lydia's imagination, a visit to Brighton comprised +every possibility of earthly happiness. She saw, with the creative eye +of fancy, the streets of that gay bathing-place covered with officers. +She saw herself the object of attention, to tens and to scores of them +at present unknown. She saw all the glories of the camp--its tents +stretched forth in beauteous uniformity of lines, crowded with the young +and the gay, and dazzling with scarlet; and, to complete the view, she +saw herself seated beneath a tent, tenderly flirting with at least six +officers at once. + +Had she known her sister sought to tear her from such prospects and such +realities as these, what would have been her sensations? They could have +been understood only by her mother, who might have felt nearly the same. +Lydia's going to Brighton was all that consoled her for her melancholy +conviction of her husband's never intending to go there himself. + +But they were entirely ignorant of what had passed; and their raptures +continued, with little intermission, to the very day of Lydia's leaving +home. + +Elizabeth was now to see Mr. Wickham for the last time. Having been +frequently in company with him since her return, agitation was pretty +well over; the agitations of former partiality entirely so. She had even +learnt to detect, in the very gentleness which had first delighted +her, an affectation and a sameness to disgust and weary. In his present +behaviour to herself, moreover, she had a fresh source of displeasure, +for the inclination he soon testified of renewing those intentions which +had marked the early part of their acquaintance could only serve, after +what had since passed, to provoke her. She lost all concern for him in +finding herself thus selected as the object of such idle and frivolous +gallantry; and while she steadily repressed it, could not but feel the +reproof contained in his believing, that however long, and for whatever +cause, his attentions had been withdrawn, her vanity would be gratified, +and her preference secured at any time by their renewal. + +On the very last day of the regiment's remaining at Meryton, he dined, +with other of the officers, at Longbourn; and so little was Elizabeth +disposed to part from him in good humour, that on his making some +inquiry as to the manner in which her time had passed at Hunsford, she +mentioned Colonel Fitzwilliam's and Mr. Darcy's having both spent three +weeks at Rosings, and asked him, if he was acquainted with the former. + +He looked surprised, displeased, alarmed; but with a moment's +recollection and a returning smile, replied, that he had formerly seen +him often; and, after observing that he was a very gentlemanlike man, +asked her how she had liked him. Her answer was warmly in his favour. +With an air of indifference he soon afterwards added: + +“How long did you say he was at Rosings?” + +“Nearly three weeks.” + +“And you saw him frequently?” + +“Yes, almost every day.” + +“His manners are very different from his cousin's.” + +“Yes, very different. But I think Mr. Darcy improves upon acquaintance.” + +“Indeed!” cried Mr. Wickham with a look which did not escape her. “And +pray, may I ask?--” But checking himself, he added, in a gayer tone, “Is +it in address that he improves? Has he deigned to add aught of civility +to his ordinary style?--for I dare not hope,” he continued in a lower +and more serious tone, “that he is improved in essentials.” + +“Oh, no!” said Elizabeth. “In essentials, I believe, he is very much +what he ever was.” + +While she spoke, Wickham looked as if scarcely knowing whether to +rejoice over her words, or to distrust their meaning. There was a +something in her countenance which made him listen with an apprehensive +and anxious attention, while she added: + +“When I said that he improved on acquaintance, I did not mean that +his mind or his manners were in a state of improvement, but that, from +knowing him better, his disposition was better understood.” + +Wickham's alarm now appeared in a heightened complexion and agitated +look; for a few minutes he was silent, till, shaking off his +embarrassment, he turned to her again, and said in the gentlest of +accents: + +“You, who so well know my feeling towards Mr. Darcy, will readily +comprehend how sincerely I must rejoice that he is wise enough to assume +even the _appearance_ of what is right. His pride, in that direction, +may be of service, if not to himself, to many others, for it must only +deter him from such foul misconduct as I have suffered by. I only +fear that the sort of cautiousness to which you, I imagine, have been +alluding, is merely adopted on his visits to his aunt, of whose good +opinion and judgement he stands much in awe. His fear of her has always +operated, I know, when they were together; and a good deal is to be +imputed to his wish of forwarding the match with Miss de Bourgh, which I +am certain he has very much at heart.” + +Elizabeth could not repress a smile at this, but she answered only by a +slight inclination of the head. She saw that he wanted to engage her on +the old subject of his grievances, and she was in no humour to indulge +him. The rest of the evening passed with the _appearance_, on his +side, of usual cheerfulness, but with no further attempt to distinguish +Elizabeth; and they parted at last with mutual civility, and possibly a +mutual desire of never meeting again. + +When the party broke up, Lydia returned with Mrs. Forster to Meryton, +from whence they were to set out early the next morning. The separation +between her and her family was rather noisy than pathetic. Kitty was the +only one who shed tears; but she did weep from vexation and envy. Mrs. +Bennet was diffuse in her good wishes for the felicity of her daughter, +and impressive in her injunctions that she should not miss the +opportunity of enjoying herself as much as possible--advice which +there was every reason to believe would be well attended to; and in +the clamorous happiness of Lydia herself in bidding farewell, the more +gentle adieus of her sisters were uttered without being heard. + + + +Chapter 42 + + +Had Elizabeth's opinion been all drawn from her own family, she could +not have formed a very pleasing opinion of conjugal felicity or domestic +comfort. Her father, captivated by youth and beauty, and that appearance +of good humour which youth and beauty generally give, had married a +woman whose weak understanding and illiberal mind had very early in +their marriage put an end to all real affection for her. Respect, +esteem, and confidence had vanished for ever; and all his views +of domestic happiness were overthrown. But Mr. Bennet was not of +a disposition to seek comfort for the disappointment which his own +imprudence had brought on, in any of those pleasures which too often +console the unfortunate for their folly or their vice. He was fond of +the country and of books; and from these tastes had arisen his principal +enjoyments. To his wife he was very little otherwise indebted, than as +her ignorance and folly had contributed to his amusement. This is not +the sort of happiness which a man would in general wish to owe to his +wife; but where other powers of entertainment are wanting, the true +philosopher will derive benefit from such as are given. + +Elizabeth, however, had never been blind to the impropriety of her +father's behaviour as a husband. She had always seen it with pain; but +respecting his abilities, and grateful for his affectionate treatment of +herself, she endeavoured to forget what she could not overlook, and to +banish from her thoughts that continual breach of conjugal obligation +and decorum which, in exposing his wife to the contempt of her own +children, was so highly reprehensible. But she had never felt so +strongly as now the disadvantages which must attend the children of so +unsuitable a marriage, nor ever been so fully aware of the evils arising +from so ill-judged a direction of talents; talents, which, rightly used, +might at least have preserved the respectability of his daughters, even +if incapable of enlarging the mind of his wife. + +When Elizabeth had rejoiced over Wickham's departure she found little +other cause for satisfaction in the loss of the regiment. Their parties +abroad were less varied than before, and at home she had a mother and +sister whose constant repinings at the dullness of everything around +them threw a real gloom over their domestic circle; and, though Kitty +might in time regain her natural degree of sense, since the disturbers +of her brain were removed, her other sister, from whose disposition +greater evil might be apprehended, was likely to be hardened in all +her folly and assurance by a situation of such double danger as a +watering-place and a camp. Upon the whole, therefore, she found, what +has been sometimes found before, that an event to which she had been +looking with impatient desire did not, in taking place, bring all the +satisfaction she had promised herself. It was consequently necessary to +name some other period for the commencement of actual felicity--to have +some other point on which her wishes and hopes might be fixed, and by +again enjoying the pleasure of anticipation, console herself for the +present, and prepare for another disappointment. Her tour to the Lakes +was now the object of her happiest thoughts; it was her best consolation +for all the uncomfortable hours which the discontentedness of her mother +and Kitty made inevitable; and could she have included Jane in the +scheme, every part of it would have been perfect. + +“But it is fortunate,” thought she, “that I have something to wish for. +Were the whole arrangement complete, my disappointment would be certain. +But here, by carrying with me one ceaseless source of regret in my +sister's absence, I may reasonably hope to have all my expectations of +pleasure realised. A scheme of which every part promises delight can +never be successful; and general disappointment is only warded off by +the defence of some little peculiar vexation.” + +When Lydia went away she promised to write very often and very minutely +to her mother and Kitty; but her letters were always long expected, and +always very short. Those to her mother contained little else than that +they were just returned from the library, where such and such officers +had attended them, and where she had seen such beautiful ornaments as +made her quite wild; that she had a new gown, or a new parasol, which +she would have described more fully, but was obliged to leave off in a +violent hurry, as Mrs. Forster called her, and they were going off to +the camp; and from her correspondence with her sister, there was still +less to be learnt--for her letters to Kitty, though rather longer, were +much too full of lines under the words to be made public. + +After the first fortnight or three weeks of her absence, health, good +humour, and cheerfulness began to reappear at Longbourn. Everything wore +a happier aspect. The families who had been in town for the winter came +back again, and summer finery and summer engagements arose. Mrs. Bennet +was restored to her usual querulous serenity; and, by the middle of +June, Kitty was so much recovered as to be able to enter Meryton without +tears; an event of such happy promise as to make Elizabeth hope that by +the following Christmas she might be so tolerably reasonable as not to +mention an officer above once a day, unless, by some cruel and malicious +arrangement at the War Office, another regiment should be quartered in +Meryton. + +The time fixed for the beginning of their northern tour was now fast +approaching, and a fortnight only was wanting of it, when a letter +arrived from Mrs. Gardiner, which at once delayed its commencement and +curtailed its extent. Mr. Gardiner would be prevented by business from +setting out till a fortnight later in July, and must be in London again +within a month, and as that left too short a period for them to go so +far, and see so much as they had proposed, or at least to see it with +the leisure and comfort they had built on, they were obliged to give up +the Lakes, and substitute a more contracted tour, and, according to the +present plan, were to go no farther northwards than Derbyshire. In that +county there was enough to be seen to occupy the chief of their three +weeks; and to Mrs. Gardiner it had a peculiarly strong attraction. The +town where she had formerly passed some years of her life, and where +they were now to spend a few days, was probably as great an object of +her curiosity as all the celebrated beauties of Matlock, Chatsworth, +Dovedale, or the Peak. + +Elizabeth was excessively disappointed; she had set her heart on seeing +the Lakes, and still thought there might have been time enough. But it +was her business to be satisfied--and certainly her temper to be happy; +and all was soon right again. + +With the mention of Derbyshire there were many ideas connected. It was +impossible for her to see the word without thinking of Pemberley and its +owner. “But surely,” said she, “I may enter his county with impunity, +and rob it of a few petrified spars without his perceiving me.” + +The period of expectation was now doubled. Four weeks were to pass away +before her uncle and aunt's arrival. But they did pass away, and Mr. +and Mrs. Gardiner, with their four children, did at length appear at +Longbourn. The children, two girls of six and eight years old, and two +younger boys, were to be left under the particular care of their +cousin Jane, who was the general favourite, and whose steady sense and +sweetness of temper exactly adapted her for attending to them in every +way--teaching them, playing with them, and loving them. + +The Gardiners stayed only one night at Longbourn, and set off the +next morning with Elizabeth in pursuit of novelty and amusement. +One enjoyment was certain--that of suitableness of companions; +a suitableness which comprehended health and temper to bear +inconveniences--cheerfulness to enhance every pleasure--and affection +and intelligence, which might supply it among themselves if there were +disappointments abroad. + +It is not the object of this work to give a description of Derbyshire, +nor of any of the remarkable places through which their route thither +lay; Oxford, Blenheim, Warwick, Kenilworth, Birmingham, etc. are +sufficiently known. A small part of Derbyshire is all the present +concern. To the little town of Lambton, the scene of Mrs. Gardiner's +former residence, and where she had lately learned some acquaintance +still remained, they bent their steps, after having seen all the +principal wonders of the country; and within five miles of Lambton, +Elizabeth found from her aunt that Pemberley was situated. It was not +in their direct road, nor more than a mile or two out of it. In +talking over their route the evening before, Mrs. Gardiner expressed +an inclination to see the place again. Mr. Gardiner declared his +willingness, and Elizabeth was applied to for her approbation. + +“My love, should not you like to see a place of which you have heard +so much?” said her aunt; “a place, too, with which so many of your +acquaintances are connected. Wickham passed all his youth there, you +know.” + +Elizabeth was distressed. She felt that she had no business at +Pemberley, and was obliged to assume a disinclination for seeing it. She +must own that she was tired of seeing great houses; after going over so +many, she really had no pleasure in fine carpets or satin curtains. + +Mrs. Gardiner abused her stupidity. “If it were merely a fine house +richly furnished,” said she, “I should not care about it myself; but +the grounds are delightful. They have some of the finest woods in the +country.” + +Elizabeth said no more--but her mind could not acquiesce. The +possibility of meeting Mr. Darcy, while viewing the place, instantly +occurred. It would be dreadful! She blushed at the very idea, and +thought it would be better to speak openly to her aunt than to run such +a risk. But against this there were objections; and she finally resolved +that it could be the last resource, if her private inquiries to the +absence of the family were unfavourably answered. + +Accordingly, when she retired at night, she asked the chambermaid +whether Pemberley were not a very fine place? what was the name of its +proprietor? and, with no little alarm, whether the family were down for +the summer? A most welcome negative followed the last question--and her +alarms now being removed, she was at leisure to feel a great deal of +curiosity to see the house herself; and when the subject was revived the +next morning, and she was again applied to, could readily answer, and +with a proper air of indifference, that she had not really any dislike +to the scheme. To Pemberley, therefore, they were to go. + + + +Chapter 43 + + +Elizabeth, as they drove along, watched for the first appearance of +Pemberley Woods with some perturbation; and when at length they turned +in at the lodge, her spirits were in a high flutter. + +The park was very large, and contained great variety of ground. They +entered it in one of its lowest points, and drove for some time through +a beautiful wood stretching over a wide extent. + +Elizabeth's mind was too full for conversation, but she saw and admired +every remarkable spot and point of view. They gradually ascended for +half-a-mile, and then found themselves at the top of a considerable +eminence, where the wood ceased, and the eye was instantly caught by +Pemberley House, situated on the opposite side of a valley, into which +the road with some abruptness wound. It was a large, handsome stone +building, standing well on rising ground, and backed by a ridge of +high woody hills; and in front, a stream of some natural importance was +swelled into greater, but without any artificial appearance. Its banks +were neither formal nor falsely adorned. Elizabeth was delighted. She +had never seen a place for which nature had done more, or where natural +beauty had been so little counteracted by an awkward taste. They were +all of them warm in their admiration; and at that moment she felt that +to be mistress of Pemberley might be something! + +They descended the hill, crossed the bridge, and drove to the door; and, +while examining the nearer aspect of the house, all her apprehension of +meeting its owner returned. She dreaded lest the chambermaid had been +mistaken. On applying to see the place, they were admitted into the +hall; and Elizabeth, as they waited for the housekeeper, had leisure to +wonder at her being where she was. + +The housekeeper came; a respectable-looking elderly woman, much less +fine, and more civil, than she had any notion of finding her. They +followed her into the dining-parlour. It was a large, well proportioned +room, handsomely fitted up. Elizabeth, after slightly surveying it, went +to a window to enjoy its prospect. The hill, crowned with wood, which +they had descended, receiving increased abruptness from the distance, +was a beautiful object. Every disposition of the ground was good; and +she looked on the whole scene, the river, the trees scattered on its +banks and the winding of the valley, as far as she could trace it, +with delight. As they passed into other rooms these objects were taking +different positions; but from every window there were beauties to be +seen. The rooms were lofty and handsome, and their furniture suitable to +the fortune of its proprietor; but Elizabeth saw, with admiration of +his taste, that it was neither gaudy nor uselessly fine; with less of +splendour, and more real elegance, than the furniture of Rosings. + +“And of this place,” thought she, “I might have been mistress! With +these rooms I might now have been familiarly acquainted! Instead of +viewing them as a stranger, I might have rejoiced in them as my own, and +welcomed to them as visitors my uncle and aunt. But no,”--recollecting +herself--“that could never be; my uncle and aunt would have been lost to +me; I should not have been allowed to invite them.” + +This was a lucky recollection--it saved her from something very like +regret. + +She longed to inquire of the housekeeper whether her master was really +absent, but had not the courage for it. At length however, the question +was asked by her uncle; and she turned away with alarm, while Mrs. +Reynolds replied that he was, adding, “But we expect him to-morrow, with +a large party of friends.” How rejoiced was Elizabeth that their own +journey had not by any circumstance been delayed a day! + +Her aunt now called her to look at a picture. She approached and saw the +likeness of Mr. Wickham, suspended, amongst several other miniatures, +over the mantelpiece. Her aunt asked her, smilingly, how she liked it. +The housekeeper came forward, and told them it was a picture of a young +gentleman, the son of her late master's steward, who had been brought +up by him at his own expense. “He is now gone into the army,” she added; +“but I am afraid he has turned out very wild.” + +Mrs. Gardiner looked at her niece with a smile, but Elizabeth could not +return it. + +“And that,” said Mrs. Reynolds, pointing to another of the miniatures, +“is my master--and very like him. It was drawn at the same time as the +other--about eight years ago.” + +“I have heard much of your master's fine person,” said Mrs. Gardiner, +looking at the picture; “it is a handsome face. But, Lizzy, you can tell +us whether it is like or not.” + +Mrs. Reynolds respect for Elizabeth seemed to increase on this +intimation of her knowing her master. + +“Does that young lady know Mr. Darcy?” + +Elizabeth coloured, and said: “A little.” + +“And do not you think him a very handsome gentleman, ma'am?” + +“Yes, very handsome.” + +“I am sure I know none so handsome; but in the gallery up stairs you +will see a finer, larger picture of him than this. This room was my late +master's favourite room, and these miniatures are just as they used to +be then. He was very fond of them.” + +This accounted to Elizabeth for Mr. Wickham's being among them. + +Mrs. Reynolds then directed their attention to one of Miss Darcy, drawn +when she was only eight years old. + +“And is Miss Darcy as handsome as her brother?” said Mrs. Gardiner. + +“Oh! yes--the handsomest young lady that ever was seen; and so +accomplished!--She plays and sings all day long. In the next room is +a new instrument just come down for her--a present from my master; she +comes here to-morrow with him.” + +Mr. Gardiner, whose manners were very easy and pleasant, encouraged her +communicativeness by his questions and remarks; Mrs. Reynolds, either +by pride or attachment, had evidently great pleasure in talking of her +master and his sister. + +“Is your master much at Pemberley in the course of the year?” + +“Not so much as I could wish, sir; but I dare say he may spend half his +time here; and Miss Darcy is always down for the summer months.” + +“Except,” thought Elizabeth, “when she goes to Ramsgate.” + +“If your master would marry, you might see more of him.” + +“Yes, sir; but I do not know when _that_ will be. I do not know who is +good enough for him.” + +Mr. and Mrs. Gardiner smiled. Elizabeth could not help saying, “It is +very much to his credit, I am sure, that you should think so.” + +“I say no more than the truth, and everybody will say that knows him,” + replied the other. Elizabeth thought this was going pretty far; and she +listened with increasing astonishment as the housekeeper added, “I have +never known a cross word from him in my life, and I have known him ever +since he was four years old.” + +This was praise, of all others most extraordinary, most opposite to her +ideas. That he was not a good-tempered man had been her firmest opinion. +Her keenest attention was awakened; she longed to hear more, and was +grateful to her uncle for saying: + +“There are very few people of whom so much can be said. You are lucky in +having such a master.” + +“Yes, sir, I know I am. If I were to go through the world, I could +not meet with a better. But I have always observed, that they who are +good-natured when children, are good-natured when they grow up; and +he was always the sweetest-tempered, most generous-hearted boy in the +world.” + +Elizabeth almost stared at her. “Can this be Mr. Darcy?” thought she. + +“His father was an excellent man,” said Mrs. Gardiner. + +“Yes, ma'am, that he was indeed; and his son will be just like him--just +as affable to the poor.” + +Elizabeth listened, wondered, doubted, and was impatient for more. Mrs. +Reynolds could interest her on no other point. She related the subjects +of the pictures, the dimensions of the rooms, and the price of the +furniture, in vain. Mr. Gardiner, highly amused by the kind of family +prejudice to which he attributed her excessive commendation of her +master, soon led again to the subject; and she dwelt with energy on his +many merits as they proceeded together up the great staircase. + +“He is the best landlord, and the best master,” said she, “that ever +lived; not like the wild young men nowadays, who think of nothing but +themselves. There is not one of his tenants or servants but will give +him a good name. Some people call him proud; but I am sure I never saw +anything of it. To my fancy, it is only because he does not rattle away +like other young men.” + +“In what an amiable light does this place him!” thought Elizabeth. + +“This fine account of him,” whispered her aunt as they walked, “is not +quite consistent with his behaviour to our poor friend.” + +“Perhaps we might be deceived.” + +“That is not very likely; our authority was too good.” + +On reaching the spacious lobby above they were shown into a very pretty +sitting-room, lately fitted up with greater elegance and lightness than +the apartments below; and were informed that it was but just done to +give pleasure to Miss Darcy, who had taken a liking to the room when +last at Pemberley. + +“He is certainly a good brother,” said Elizabeth, as she walked towards +one of the windows. + +Mrs. Reynolds anticipated Miss Darcy's delight, when she should enter +the room. “And this is always the way with him,” she added. “Whatever +can give his sister any pleasure is sure to be done in a moment. There +is nothing he would not do for her.” + +The picture-gallery, and two or three of the principal bedrooms, were +all that remained to be shown. In the former were many good paintings; +but Elizabeth knew nothing of the art; and from such as had been already +visible below, she had willingly turned to look at some drawings of Miss +Darcy's, in crayons, whose subjects were usually more interesting, and +also more intelligible. + +In the gallery there were many family portraits, but they could have +little to fix the attention of a stranger. Elizabeth walked in quest of +the only face whose features would be known to her. At last it arrested +her--and she beheld a striking resemblance to Mr. Darcy, with such a +smile over the face as she remembered to have sometimes seen when he +looked at her. She stood several minutes before the picture, in earnest +contemplation, and returned to it again before they quitted the gallery. +Mrs. Reynolds informed them that it had been taken in his father's +lifetime. + +There was certainly at this moment, in Elizabeth's mind, a more gentle +sensation towards the original than she had ever felt at the height of +their acquaintance. The commendation bestowed on him by Mrs. Reynolds +was of no trifling nature. What praise is more valuable than the praise +of an intelligent servant? As a brother, a landlord, a master, she +considered how many people's happiness were in his guardianship!--how +much of pleasure or pain was it in his power to bestow!--how much of +good or evil must be done by him! Every idea that had been brought +forward by the housekeeper was favourable to his character, and as she +stood before the canvas on which he was represented, and fixed his +eyes upon herself, she thought of his regard with a deeper sentiment of +gratitude than it had ever raised before; she remembered its warmth, and +softened its impropriety of expression. + +When all of the house that was open to general inspection had been seen, +they returned downstairs, and, taking leave of the housekeeper, were +consigned over to the gardener, who met them at the hall-door. + +As they walked across the hall towards the river, Elizabeth turned back +to look again; her uncle and aunt stopped also, and while the former +was conjecturing as to the date of the building, the owner of it himself +suddenly came forward from the road, which led behind it to the stables. + +They were within twenty yards of each other, and so abrupt was his +appearance, that it was impossible to avoid his sight. Their eyes +instantly met, and the cheeks of both were overspread with the deepest +blush. He absolutely started, and for a moment seemed immovable from +surprise; but shortly recovering himself, advanced towards the party, +and spoke to Elizabeth, if not in terms of perfect composure, at least +of perfect civility. + +She had instinctively turned away; but stopping on his approach, +received his compliments with an embarrassment impossible to be +overcome. Had his first appearance, or his resemblance to the picture +they had just been examining, been insufficient to assure the other two +that they now saw Mr. Darcy, the gardener's expression of surprise, on +beholding his master, must immediately have told it. They stood a little +aloof while he was talking to their niece, who, astonished and confused, +scarcely dared lift her eyes to his face, and knew not what answer +she returned to his civil inquiries after her family. Amazed at the +alteration of his manner since they last parted, every sentence that +he uttered was increasing her embarrassment; and every idea of the +impropriety of her being found there recurring to her mind, the few +minutes in which they continued were some of the most uncomfortable in +her life. Nor did he seem much more at ease; when he spoke, his accent +had none of its usual sedateness; and he repeated his inquiries as +to the time of her having left Longbourn, and of her having stayed in +Derbyshire, so often, and in so hurried a way, as plainly spoke the +distraction of his thoughts. + +At length every idea seemed to fail him; and, after standing a few +moments without saying a word, he suddenly recollected himself, and took +leave. + +The others then joined her, and expressed admiration of his figure; but +Elizabeth heard not a word, and wholly engrossed by her own feelings, +followed them in silence. She was overpowered by shame and vexation. Her +coming there was the most unfortunate, the most ill-judged thing in the +world! How strange it must appear to him! In what a disgraceful light +might it not strike so vain a man! It might seem as if she had purposely +thrown herself in his way again! Oh! why did she come? Or, why did he +thus come a day before he was expected? Had they been only ten minutes +sooner, they should have been beyond the reach of his discrimination; +for it was plain that he was that moment arrived--that moment alighted +from his horse or his carriage. She blushed again and again over +the perverseness of the meeting. And his behaviour, so strikingly +altered--what could it mean? That he should even speak to her was +amazing!--but to speak with such civility, to inquire after her family! +Never in her life had she seen his manners so little dignified, never +had he spoken with such gentleness as on this unexpected meeting. What +a contrast did it offer to his last address in Rosings Park, when he put +his letter into her hand! She knew not what to think, or how to account +for it. + +They had now entered a beautiful walk by the side of the water, and +every step was bringing forward a nobler fall of ground, or a finer +reach of the woods to which they were approaching; but it was some time +before Elizabeth was sensible of any of it; and, though she answered +mechanically to the repeated appeals of her uncle and aunt, and +seemed to direct her eyes to such objects as they pointed out, she +distinguished no part of the scene. Her thoughts were all fixed on that +one spot of Pemberley House, whichever it might be, where Mr. Darcy then +was. She longed to know what at the moment was passing in his mind--in +what manner he thought of her, and whether, in defiance of everything, +she was still dear to him. Perhaps he had been civil only because he +felt himself at ease; yet there had been _that_ in his voice which was +not like ease. Whether he had felt more of pain or of pleasure in +seeing her she could not tell, but he certainly had not seen her with +composure. + +At length, however, the remarks of her companions on her absence of mind +aroused her, and she felt the necessity of appearing more like herself. + +They entered the woods, and bidding adieu to the river for a while, +ascended some of the higher grounds; when, in spots where the opening of +the trees gave the eye power to wander, were many charming views of the +valley, the opposite hills, with the long range of woods overspreading +many, and occasionally part of the stream. Mr. Gardiner expressed a wish +of going round the whole park, but feared it might be beyond a walk. +With a triumphant smile they were told that it was ten miles round. +It settled the matter; and they pursued the accustomed circuit; which +brought them again, after some time, in a descent among hanging woods, +to the edge of the water, and one of its narrowest parts. They crossed +it by a simple bridge, in character with the general air of the scene; +it was a spot less adorned than any they had yet visited; and the +valley, here contracted into a glen, allowed room only for the stream, +and a narrow walk amidst the rough coppice-wood which bordered it. +Elizabeth longed to explore its windings; but when they had crossed the +bridge, and perceived their distance from the house, Mrs. Gardiner, +who was not a great walker, could go no farther, and thought only +of returning to the carriage as quickly as possible. Her niece was, +therefore, obliged to submit, and they took their way towards the house +on the opposite side of the river, in the nearest direction; but their +progress was slow, for Mr. Gardiner, though seldom able to indulge the +taste, was very fond of fishing, and was so much engaged in watching the +occasional appearance of some trout in the water, and talking to the +man about them, that he advanced but little. Whilst wandering on in this +slow manner, they were again surprised, and Elizabeth's astonishment +was quite equal to what it had been at first, by the sight of Mr. Darcy +approaching them, and at no great distance. The walk being here +less sheltered than on the other side, allowed them to see him before +they met. Elizabeth, however astonished, was at least more prepared +for an interview than before, and resolved to appear and to speak with +calmness, if he really intended to meet them. For a few moments, indeed, +she felt that he would probably strike into some other path. The idea +lasted while a turning in the walk concealed him from their view; the +turning past, he was immediately before them. With a glance, she saw +that he had lost none of his recent civility; and, to imitate his +politeness, she began, as they met, to admire the beauty of the place; +but she had not got beyond the words “delightful,” and “charming,” when +some unlucky recollections obtruded, and she fancied that praise of +Pemberley from her might be mischievously construed. Her colour changed, +and she said no more. + +Mrs. Gardiner was standing a little behind; and on her pausing, he asked +her if she would do him the honour of introducing him to her friends. +This was a stroke of civility for which she was quite unprepared; +and she could hardly suppress a smile at his being now seeking the +acquaintance of some of those very people against whom his pride had +revolted in his offer to herself. “What will be his surprise,” thought +she, “when he knows who they are? He takes them now for people of +fashion.” + +The introduction, however, was immediately made; and as she named their +relationship to herself, she stole a sly look at him, to see how he bore +it, and was not without the expectation of his decamping as fast as he +could from such disgraceful companions. That he was _surprised_ by the +connection was evident; he sustained it, however, with fortitude, and +so far from going away, turned back with them, and entered into +conversation with Mr. Gardiner. Elizabeth could not but be pleased, +could not but triumph. It was consoling that he should know she had +some relations for whom there was no need to blush. She listened most +attentively to all that passed between them, and gloried in every +expression, every sentence of her uncle, which marked his intelligence, +his taste, or his good manners. + +The conversation soon turned upon fishing; and she heard Mr. Darcy +invite him, with the greatest civility, to fish there as often as he +chose while he continued in the neighbourhood, offering at the same time +to supply him with fishing tackle, and pointing out those parts of +the stream where there was usually most sport. Mrs. Gardiner, who was +walking arm-in-arm with Elizabeth, gave her a look expressive of wonder. +Elizabeth said nothing, but it gratified her exceedingly; the compliment +must be all for herself. Her astonishment, however, was extreme, and +continually was she repeating, “Why is he so altered? From what can +it proceed? It cannot be for _me_--it cannot be for _my_ sake that his +manners are thus softened. My reproofs at Hunsford could not work such a +change as this. It is impossible that he should still love me.” + +After walking some time in this way, the two ladies in front, the two +gentlemen behind, on resuming their places, after descending to +the brink of the river for the better inspection of some curious +water-plant, there chanced to be a little alteration. It originated +in Mrs. Gardiner, who, fatigued by the exercise of the morning, found +Elizabeth's arm inadequate to her support, and consequently preferred +her husband's. Mr. Darcy took her place by her niece, and they walked on +together. After a short silence, the lady first spoke. She wished him +to know that she had been assured of his absence before she came to the +place, and accordingly began by observing, that his arrival had been +very unexpected--“for your housekeeper,” she added, “informed us that +you would certainly not be here till to-morrow; and indeed, before we +left Bakewell, we understood that you were not immediately expected +in the country.” He acknowledged the truth of it all, and said that +business with his steward had occasioned his coming forward a few hours +before the rest of the party with whom he had been travelling. “They +will join me early to-morrow,” he continued, “and among them are some +who will claim an acquaintance with you--Mr. Bingley and his sisters.” + +Elizabeth answered only by a slight bow. Her thoughts were instantly +driven back to the time when Mr. Bingley's name had been the last +mentioned between them; and, if she might judge by his complexion, _his_ +mind was not very differently engaged. + +“There is also one other person in the party,” he continued after a +pause, “who more particularly wishes to be known to you. Will you allow +me, or do I ask too much, to introduce my sister to your acquaintance +during your stay at Lambton?” + +The surprise of such an application was great indeed; it was too great +for her to know in what manner she acceded to it. She immediately felt +that whatever desire Miss Darcy might have of being acquainted with her +must be the work of her brother, and, without looking farther, it was +satisfactory; it was gratifying to know that his resentment had not made +him think really ill of her. + +They now walked on in silence, each of them deep in thought. Elizabeth +was not comfortable; that was impossible; but she was flattered and +pleased. His wish of introducing his sister to her was a compliment of +the highest kind. They soon outstripped the others, and when they had +reached the carriage, Mr. and Mrs. Gardiner were half a quarter of a +mile behind. + +He then asked her to walk into the house--but she declared herself not +tired, and they stood together on the lawn. At such a time much might +have been said, and silence was very awkward. She wanted to talk, but +there seemed to be an embargo on every subject. At last she recollected +that she had been travelling, and they talked of Matlock and Dove Dale +with great perseverance. Yet time and her aunt moved slowly--and her +patience and her ideas were nearly worn out before the tete-a-tete was +over. On Mr. and Mrs. Gardiner's coming up they were all pressed to go +into the house and take some refreshment; but this was declined, and +they parted on each side with utmost politeness. Mr. Darcy handed the +ladies into the carriage; and when it drove off, Elizabeth saw him +walking slowly towards the house. + +The observations of her uncle and aunt now began; and each of them +pronounced him to be infinitely superior to anything they had expected. +“He is perfectly well behaved, polite, and unassuming,” said her uncle. + +“There _is_ something a little stately in him, to be sure,” replied her +aunt, “but it is confined to his air, and is not unbecoming. I can now +say with the housekeeper, that though some people may call him proud, I +have seen nothing of it.” + +“I was never more surprised than by his behaviour to us. It was more +than civil; it was really attentive; and there was no necessity for such +attention. His acquaintance with Elizabeth was very trifling.” + +“To be sure, Lizzy,” said her aunt, “he is not so handsome as Wickham; +or, rather, he has not Wickham's countenance, for his features +are perfectly good. But how came you to tell me that he was so +disagreeable?” + +Elizabeth excused herself as well as she could; said that she had liked +him better when they had met in Kent than before, and that she had never +seen him so pleasant as this morning. + +“But perhaps he may be a little whimsical in his civilities,” replied +her uncle. “Your great men often are; and therefore I shall not take him +at his word, as he might change his mind another day, and warn me off +his grounds.” + +Elizabeth felt that they had entirely misunderstood his character, but +said nothing. + +“From what we have seen of him,” continued Mrs. Gardiner, “I really +should not have thought that he could have behaved in so cruel a way by +anybody as he has done by poor Wickham. He has not an ill-natured look. +On the contrary, there is something pleasing about his mouth when he +speaks. And there is something of dignity in his countenance that would +not give one an unfavourable idea of his heart. But, to be sure, the +good lady who showed us his house did give him a most flaming character! +I could hardly help laughing aloud sometimes. But he is a liberal +master, I suppose, and _that_ in the eye of a servant comprehends every +virtue.” + +Elizabeth here felt herself called on to say something in vindication of +his behaviour to Wickham; and therefore gave them to understand, in +as guarded a manner as she could, that by what she had heard from +his relations in Kent, his actions were capable of a very different +construction; and that his character was by no means so faulty, nor +Wickham's so amiable, as they had been considered in Hertfordshire. In +confirmation of this, she related the particulars of all the pecuniary +transactions in which they had been connected, without actually naming +her authority, but stating it to be such as might be relied on. + +Mrs. Gardiner was surprised and concerned; but as they were now +approaching the scene of her former pleasures, every idea gave way to +the charm of recollection; and she was too much engaged in pointing out +to her husband all the interesting spots in its environs to think of +anything else. Fatigued as she had been by the morning's walk they +had no sooner dined than she set off again in quest of her former +acquaintance, and the evening was spent in the satisfactions of an +intercourse renewed after many years' discontinuance. + +The occurrences of the day were too full of interest to leave Elizabeth +much attention for any of these new friends; and she could do nothing +but think, and think with wonder, of Mr. Darcy's civility, and, above +all, of his wishing her to be acquainted with his sister. + + + +Chapter 44 + + +Elizabeth had settled it that Mr. Darcy would bring his sister to visit +her the very day after her reaching Pemberley; and was consequently +resolved not to be out of sight of the inn the whole of that morning. +But her conclusion was false; for on the very morning after their +arrival at Lambton, these visitors came. They had been walking about the +place with some of their new friends, and were just returning to the inn +to dress themselves for dining with the same family, when the sound of a +carriage drew them to a window, and they saw a gentleman and a lady in +a curricle driving up the street. Elizabeth immediately recognizing +the livery, guessed what it meant, and imparted no small degree of her +surprise to her relations by acquainting them with the honour which she +expected. Her uncle and aunt were all amazement; and the embarrassment +of her manner as she spoke, joined to the circumstance itself, and many +of the circumstances of the preceding day, opened to them a new idea on +the business. Nothing had ever suggested it before, but they felt that +there was no other way of accounting for such attentions from such a +quarter than by supposing a partiality for their niece. While these +newly-born notions were passing in their heads, the perturbation of +Elizabeth's feelings was at every moment increasing. She was quite +amazed at her own discomposure; but amongst other causes of disquiet, +she dreaded lest the partiality of the brother should have said too much +in her favour; and, more than commonly anxious to please, she naturally +suspected that every power of pleasing would fail her. + +She retreated from the window, fearful of being seen; and as she walked +up and down the room, endeavouring to compose herself, saw such looks of +inquiring surprise in her uncle and aunt as made everything worse. + +Miss Darcy and her brother appeared, and this formidable introduction +took place. With astonishment did Elizabeth see that her new +acquaintance was at least as much embarrassed as herself. Since her +being at Lambton, she had heard that Miss Darcy was exceedingly proud; +but the observation of a very few minutes convinced her that she was +only exceedingly shy. She found it difficult to obtain even a word from +her beyond a monosyllable. + +Miss Darcy was tall, and on a larger scale than Elizabeth; and, though +little more than sixteen, her figure was formed, and her appearance +womanly and graceful. She was less handsome than her brother; but there +was sense and good humour in her face, and her manners were perfectly +unassuming and gentle. Elizabeth, who had expected to find in her as +acute and unembarrassed an observer as ever Mr. Darcy had been, was much +relieved by discerning such different feelings. + +They had not long been together before Mr. Darcy told her that Bingley +was also coming to wait on her; and she had barely time to express her +satisfaction, and prepare for such a visitor, when Bingley's quick +step was heard on the stairs, and in a moment he entered the room. All +Elizabeth's anger against him had been long done away; but had she still +felt any, it could hardly have stood its ground against the unaffected +cordiality with which he expressed himself on seeing her again. He +inquired in a friendly, though general way, after her family, and looked +and spoke with the same good-humoured ease that he had ever done. + +To Mr. and Mrs. Gardiner he was scarcely a less interesting personage +than to herself. They had long wished to see him. The whole party before +them, indeed, excited a lively attention. The suspicions which had just +arisen of Mr. Darcy and their niece directed their observation towards +each with an earnest though guarded inquiry; and they soon drew from +those inquiries the full conviction that one of them at least knew +what it was to love. Of the lady's sensations they remained a little +in doubt; but that the gentleman was overflowing with admiration was +evident enough. + +Elizabeth, on her side, had much to do. She wanted to ascertain the +feelings of each of her visitors; she wanted to compose her own, and +to make herself agreeable to all; and in the latter object, where she +feared most to fail, she was most sure of success, for those to whom she +endeavoured to give pleasure were prepossessed in her favour. Bingley +was ready, Georgiana was eager, and Darcy determined, to be pleased. + +In seeing Bingley, her thoughts naturally flew to her sister; and, oh! +how ardently did she long to know whether any of his were directed in +a like manner. Sometimes she could fancy that he talked less than on +former occasions, and once or twice pleased herself with the notion +that, as he looked at her, he was trying to trace a resemblance. But, +though this might be imaginary, she could not be deceived as to his +behaviour to Miss Darcy, who had been set up as a rival to Jane. No look +appeared on either side that spoke particular regard. Nothing occurred +between them that could justify the hopes of his sister. On this point +she was soon satisfied; and two or three little circumstances occurred +ere they parted, which, in her anxious interpretation, denoted a +recollection of Jane not untinctured by tenderness, and a wish of saying +more that might lead to the mention of her, had he dared. He observed +to her, at a moment when the others were talking together, and in a tone +which had something of real regret, that it “was a very long time since +he had had the pleasure of seeing her;” and, before she could reply, +he added, “It is above eight months. We have not met since the 26th of +November, when we were all dancing together at Netherfield.” + +Elizabeth was pleased to find his memory so exact; and he afterwards +took occasion to ask her, when unattended to by any of the rest, whether +_all_ her sisters were at Longbourn. There was not much in the question, +nor in the preceding remark; but there was a look and a manner which +gave them meaning. + +It was not often that she could turn her eyes on Mr. Darcy himself; +but, whenever she did catch a glimpse, she saw an expression of general +complaisance, and in all that he said she heard an accent so removed +from _hauteur_ or disdain of his companions, as convinced her that +the improvement of manners which she had yesterday witnessed however +temporary its existence might prove, had at least outlived one day. When +she saw him thus seeking the acquaintance and courting the good opinion +of people with whom any intercourse a few months ago would have been a +disgrace--when she saw him thus civil, not only to herself, but to the +very relations whom he had openly disdained, and recollected their last +lively scene in Hunsford Parsonage--the difference, the change was +so great, and struck so forcibly on her mind, that she could hardly +restrain her astonishment from being visible. Never, even in the company +of his dear friends at Netherfield, or his dignified relations +at Rosings, had she seen him so desirous to please, so free from +self-consequence or unbending reserve, as now, when no importance +could result from the success of his endeavours, and when even the +acquaintance of those to whom his attentions were addressed would draw +down the ridicule and censure of the ladies both of Netherfield and +Rosings. + +Their visitors stayed with them above half-an-hour; and when they arose +to depart, Mr. Darcy called on his sister to join him in expressing +their wish of seeing Mr. and Mrs. Gardiner, and Miss Bennet, to dinner +at Pemberley, before they left the country. Miss Darcy, though with a +diffidence which marked her little in the habit of giving invitations, +readily obeyed. Mrs. Gardiner looked at her niece, desirous of knowing +how _she_, whom the invitation most concerned, felt disposed as to its +acceptance, but Elizabeth had turned away her head. Presuming however, +that this studied avoidance spoke rather a momentary embarrassment than +any dislike of the proposal, and seeing in her husband, who was fond of +society, a perfect willingness to accept it, she ventured to engage for +her attendance, and the day after the next was fixed on. + +Bingley expressed great pleasure in the certainty of seeing Elizabeth +again, having still a great deal to say to her, and many inquiries to +make after all their Hertfordshire friends. Elizabeth, construing all +this into a wish of hearing her speak of her sister, was pleased, and on +this account, as well as some others, found herself, when their +visitors left them, capable of considering the last half-hour with some +satisfaction, though while it was passing, the enjoyment of it had been +little. Eager to be alone, and fearful of inquiries or hints from her +uncle and aunt, she stayed with them only long enough to hear their +favourable opinion of Bingley, and then hurried away to dress. + +But she had no reason to fear Mr. and Mrs. Gardiner's curiosity; it was +not their wish to force her communication. It was evident that she was +much better acquainted with Mr. Darcy than they had before any idea of; +it was evident that he was very much in love with her. They saw much to +interest, but nothing to justify inquiry. + +Of Mr. Darcy it was now a matter of anxiety to think well; and, as far +as their acquaintance reached, there was no fault to find. They could +not be untouched by his politeness; and had they drawn his character +from their own feelings and his servant's report, without any reference +to any other account, the circle in Hertfordshire to which he was known +would not have recognized it for Mr. Darcy. There was now an interest, +however, in believing the housekeeper; and they soon became sensible +that the authority of a servant who had known him since he was four +years old, and whose own manners indicated respectability, was not to be +hastily rejected. Neither had anything occurred in the intelligence of +their Lambton friends that could materially lessen its weight. They had +nothing to accuse him of but pride; pride he probably had, and if not, +it would certainly be imputed by the inhabitants of a small market-town +where the family did not visit. It was acknowledged, however, that he +was a liberal man, and did much good among the poor. + +With respect to Wickham, the travellers soon found that he was not held +there in much estimation; for though the chief of his concerns with the +son of his patron were imperfectly understood, it was yet a well-known +fact that, on his quitting Derbyshire, he had left many debts behind +him, which Mr. Darcy afterwards discharged. + +As for Elizabeth, her thoughts were at Pemberley this evening more than +the last; and the evening, though as it passed it seemed long, was not +long enough to determine her feelings towards _one_ in that mansion; +and she lay awake two whole hours endeavouring to make them out. She +certainly did not hate him. No; hatred had vanished long ago, and she +had almost as long been ashamed of ever feeling a dislike against him, +that could be so called. The respect created by the conviction of his +valuable qualities, though at first unwillingly admitted, had for some +time ceased to be repugnant to her feeling; and it was now heightened +into somewhat of a friendlier nature, by the testimony so highly in +his favour, and bringing forward his disposition in so amiable a light, +which yesterday had produced. But above all, above respect and esteem, +there was a motive within her of goodwill which could not be overlooked. +It was gratitude; gratitude, not merely for having once loved her, +but for loving her still well enough to forgive all the petulance and +acrimony of her manner in rejecting him, and all the unjust accusations +accompanying her rejection. He who, she had been persuaded, would avoid +her as his greatest enemy, seemed, on this accidental meeting, most +eager to preserve the acquaintance, and without any indelicate display +of regard, or any peculiarity of manner, where their two selves only +were concerned, was soliciting the good opinion of her friends, and bent +on making her known to his sister. Such a change in a man of so much +pride exciting not only astonishment but gratitude--for to love, ardent +love, it must be attributed; and as such its impression on her was of a +sort to be encouraged, as by no means unpleasing, though it could not be +exactly defined. She respected, she esteemed, she was grateful to him, +she felt a real interest in his welfare; and she only wanted to know how +far she wished that welfare to depend upon herself, and how far it would +be for the happiness of both that she should employ the power, which her +fancy told her she still possessed, of bringing on her the renewal of +his addresses. + +It had been settled in the evening between the aunt and the niece, that +such a striking civility as Miss Darcy's in coming to see them on the +very day of her arrival at Pemberley, for she had reached it only to a +late breakfast, ought to be imitated, though it could not be equalled, +by some exertion of politeness on their side; and, consequently, that +it would be highly expedient to wait on her at Pemberley the following +morning. They were, therefore, to go. Elizabeth was pleased; though when +she asked herself the reason, she had very little to say in reply. + +Mr. Gardiner left them soon after breakfast. The fishing scheme had been +renewed the day before, and a positive engagement made of his meeting +some of the gentlemen at Pemberley before noon. + + + +Chapter 45 + + +Convinced as Elizabeth now was that Miss Bingley's dislike of her had +originated in jealousy, she could not help feeling how unwelcome her +appearance at Pemberley must be to her, and was curious to know with how +much civility on that lady's side the acquaintance would now be renewed. + +On reaching the house, they were shown through the hall into the saloon, +whose northern aspect rendered it delightful for summer. Its windows +opening to the ground, admitted a most refreshing view of the high woody +hills behind the house, and of the beautiful oaks and Spanish chestnuts +which were scattered over the intermediate lawn. + +In this house they were received by Miss Darcy, who was sitting there +with Mrs. Hurst and Miss Bingley, and the lady with whom she lived in +London. Georgiana's reception of them was very civil, but attended with +all the embarrassment which, though proceeding from shyness and the fear +of doing wrong, would easily give to those who felt themselves inferior +the belief of her being proud and reserved. Mrs. Gardiner and her niece, +however, did her justice, and pitied her. + +By Mrs. Hurst and Miss Bingley they were noticed only by a curtsey; and, +on their being seated, a pause, awkward as such pauses must always be, +succeeded for a few moments. It was first broken by Mrs. Annesley, a +genteel, agreeable-looking woman, whose endeavour to introduce some kind +of discourse proved her to be more truly well-bred than either of the +others; and between her and Mrs. Gardiner, with occasional help from +Elizabeth, the conversation was carried on. Miss Darcy looked as if she +wished for courage enough to join in it; and sometimes did venture a +short sentence when there was least danger of its being heard. + +Elizabeth soon saw that she was herself closely watched by Miss Bingley, +and that she could not speak a word, especially to Miss Darcy, without +calling her attention. This observation would not have prevented her +from trying to talk to the latter, had they not been seated at an +inconvenient distance; but she was not sorry to be spared the necessity +of saying much. Her own thoughts were employing her. She expected every +moment that some of the gentlemen would enter the room. She wished, she +feared that the master of the house might be amongst them; and whether +she wished or feared it most, she could scarcely determine. After +sitting in this manner a quarter of an hour without hearing Miss +Bingley's voice, Elizabeth was roused by receiving from her a cold +inquiry after the health of her family. She answered with equal +indifference and brevity, and the other said no more. + +The next variation which their visit afforded was produced by the +entrance of servants with cold meat, cake, and a variety of all the +finest fruits in season; but this did not take place till after many +a significant look and smile from Mrs. Annesley to Miss Darcy had been +given, to remind her of her post. There was now employment for the whole +party--for though they could not all talk, they could all eat; and the +beautiful pyramids of grapes, nectarines, and peaches soon collected +them round the table. + +While thus engaged, Elizabeth had a fair opportunity of deciding whether +she most feared or wished for the appearance of Mr. Darcy, by the +feelings which prevailed on his entering the room; and then, though but +a moment before she had believed her wishes to predominate, she began to +regret that he came. + +He had been some time with Mr. Gardiner, who, with two or three other +gentlemen from the house, was engaged by the river, and had left him +only on learning that the ladies of the family intended a visit to +Georgiana that morning. No sooner did he appear than Elizabeth wisely +resolved to be perfectly easy and unembarrassed; a resolution the more +necessary to be made, but perhaps not the more easily kept, because she +saw that the suspicions of the whole party were awakened against them, +and that there was scarcely an eye which did not watch his behaviour +when he first came into the room. In no countenance was attentive +curiosity so strongly marked as in Miss Bingley's, in spite of the +smiles which overspread her face whenever she spoke to one of its +objects; for jealousy had not yet made her desperate, and her attentions +to Mr. Darcy were by no means over. Miss Darcy, on her brother's +entrance, exerted herself much more to talk, and Elizabeth saw that he +was anxious for his sister and herself to get acquainted, and forwarded +as much as possible, every attempt at conversation on either side. Miss +Bingley saw all this likewise; and, in the imprudence of anger, took the +first opportunity of saying, with sneering civility: + +“Pray, Miss Eliza, are not the ----shire Militia removed from Meryton? +They must be a great loss to _your_ family.” + +In Darcy's presence she dared not mention Wickham's name; but Elizabeth +instantly comprehended that he was uppermost in her thoughts; and the +various recollections connected with him gave her a moment's distress; +but exerting herself vigorously to repel the ill-natured attack, she +presently answered the question in a tolerably detached tone. While +she spoke, an involuntary glance showed her Darcy, with a heightened +complexion, earnestly looking at her, and his sister overcome with +confusion, and unable to lift up her eyes. Had Miss Bingley known what +pain she was then giving her beloved friend, she undoubtedly would +have refrained from the hint; but she had merely intended to discompose +Elizabeth by bringing forward the idea of a man to whom she believed +her partial, to make her betray a sensibility which might injure her in +Darcy's opinion, and, perhaps, to remind the latter of all the follies +and absurdities by which some part of her family were connected +with that corps. Not a syllable had ever reached her of Miss Darcy's +meditated elopement. To no creature had it been revealed, where secrecy +was possible, except to Elizabeth; and from all Bingley's connections +her brother was particularly anxious to conceal it, from the very +wish which Elizabeth had long ago attributed to him, of their becoming +hereafter her own. He had certainly formed such a plan, and without +meaning that it should affect his endeavour to separate him from Miss +Bennet, it is probable that it might add something to his lively concern +for the welfare of his friend. + +Elizabeth's collected behaviour, however, soon quieted his emotion; and +as Miss Bingley, vexed and disappointed, dared not approach nearer to +Wickham, Georgiana also recovered in time, though not enough to be able +to speak any more. Her brother, whose eye she feared to meet, scarcely +recollected her interest in the affair, and the very circumstance which +had been designed to turn his thoughts from Elizabeth seemed to have +fixed them on her more and more cheerfully. + +Their visit did not continue long after the question and answer above +mentioned; and while Mr. Darcy was attending them to their carriage Miss +Bingley was venting her feelings in criticisms on Elizabeth's person, +behaviour, and dress. But Georgiana would not join her. Her brother's +recommendation was enough to ensure her favour; his judgement could not +err. And he had spoken in such terms of Elizabeth as to leave Georgiana +without the power of finding her otherwise than lovely and amiable. When +Darcy returned to the saloon, Miss Bingley could not help repeating to +him some part of what she had been saying to his sister. + +“How very ill Miss Eliza Bennet looks this morning, Mr. Darcy,” she +cried; “I never in my life saw anyone so much altered as she is since +the winter. She is grown so brown and coarse! Louisa and I were agreeing +that we should not have known her again.” + +However little Mr. Darcy might have liked such an address, he contented +himself with coolly replying that he perceived no other alteration than +her being rather tanned, no miraculous consequence of travelling in the +summer. + +“For my own part,” she rejoined, “I must confess that I never could +see any beauty in her. Her face is too thin; her complexion has no +brilliancy; and her features are not at all handsome. Her nose +wants character--there is nothing marked in its lines. Her teeth are +tolerable, but not out of the common way; and as for her eyes, +which have sometimes been called so fine, I could never see anything +extraordinary in them. They have a sharp, shrewish look, which I do +not like at all; and in her air altogether there is a self-sufficiency +without fashion, which is intolerable.” + +Persuaded as Miss Bingley was that Darcy admired Elizabeth, this was not +the best method of recommending herself; but angry people are not always +wise; and in seeing him at last look somewhat nettled, she had all the +success she expected. He was resolutely silent, however, and, from a +determination of making him speak, she continued: + +“I remember, when we first knew her in Hertfordshire, how amazed we all +were to find that she was a reputed beauty; and I particularly recollect +your saying one night, after they had been dining at Netherfield, '_She_ +a beauty!--I should as soon call her mother a wit.' But afterwards she +seemed to improve on you, and I believe you thought her rather pretty at +one time.” + +“Yes,” replied Darcy, who could contain himself no longer, “but _that_ +was only when I first saw her, for it is many months since I have +considered her as one of the handsomest women of my acquaintance.” + +He then went away, and Miss Bingley was left to all the satisfaction of +having forced him to say what gave no one any pain but herself. + +Mrs. Gardiner and Elizabeth talked of all that had occurred during their +visit, as they returned, except what had particularly interested them +both. The look and behaviour of everybody they had seen were discussed, +except of the person who had mostly engaged their attention. They talked +of his sister, his friends, his house, his fruit--of everything but +himself; yet Elizabeth was longing to know what Mrs. Gardiner thought of +him, and Mrs. Gardiner would have been highly gratified by her niece's +beginning the subject. + + + +Chapter 46 + + +Elizabeth had been a good deal disappointed in not finding a letter from +Jane on their first arrival at Lambton; and this disappointment had been +renewed on each of the mornings that had now been spent there; but +on the third her repining was over, and her sister justified, by the +receipt of two letters from her at once, on one of which was marked that +it had been missent elsewhere. Elizabeth was not surprised at it, as +Jane had written the direction remarkably ill. + +They had just been preparing to walk as the letters came in; and +her uncle and aunt, leaving her to enjoy them in quiet, set off by +themselves. The one missent must first be attended to; it had been +written five days ago. The beginning contained an account of all their +little parties and engagements, with such news as the country afforded; +but the latter half, which was dated a day later, and written in evident +agitation, gave more important intelligence. It was to this effect: + +“Since writing the above, dearest Lizzy, something has occurred of a +most unexpected and serious nature; but I am afraid of alarming you--be +assured that we are all well. What I have to say relates to poor Lydia. +An express came at twelve last night, just as we were all gone to bed, +from Colonel Forster, to inform us that she was gone off to Scotland +with one of his officers; to own the truth, with Wickham! Imagine our +surprise. To Kitty, however, it does not seem so wholly unexpected. I am +very, very sorry. So imprudent a match on both sides! But I am willing +to hope the best, and that his character has been misunderstood. +Thoughtless and indiscreet I can easily believe him, but this step +(and let us rejoice over it) marks nothing bad at heart. His choice is +disinterested at least, for he must know my father can give her nothing. +Our poor mother is sadly grieved. My father bears it better. How +thankful am I that we never let them know what has been said against +him; we must forget it ourselves. They were off Saturday night about +twelve, as is conjectured, but were not missed till yesterday morning at +eight. The express was sent off directly. My dear Lizzy, they must have +passed within ten miles of us. Colonel Forster gives us reason to expect +him here soon. Lydia left a few lines for his wife, informing her of +their intention. I must conclude, for I cannot be long from my poor +mother. I am afraid you will not be able to make it out, but I hardly +know what I have written.” + +Without allowing herself time for consideration, and scarcely knowing +what she felt, Elizabeth on finishing this letter instantly seized the +other, and opening it with the utmost impatience, read as follows: it +had been written a day later than the conclusion of the first. + +“By this time, my dearest sister, you have received my hurried letter; I +wish this may be more intelligible, but though not confined for time, my +head is so bewildered that I cannot answer for being coherent. Dearest +Lizzy, I hardly know what I would write, but I have bad news for you, +and it cannot be delayed. Imprudent as the marriage between Mr. Wickham +and our poor Lydia would be, we are now anxious to be assured it has +taken place, for there is but too much reason to fear they are not gone +to Scotland. Colonel Forster came yesterday, having left Brighton the +day before, not many hours after the express. Though Lydia's short +letter to Mrs. F. gave them to understand that they were going to Gretna +Green, something was dropped by Denny expressing his belief that W. +never intended to go there, or to marry Lydia at all, which was +repeated to Colonel F., who, instantly taking the alarm, set off from B. +intending to trace their route. He did trace them easily to Clapham, +but no further; for on entering that place, they removed into a hackney +coach, and dismissed the chaise that brought them from Epsom. All that +is known after this is, that they were seen to continue the London road. +I know not what to think. After making every possible inquiry on that +side London, Colonel F. came on into Hertfordshire, anxiously renewing +them at all the turnpikes, and at the inns in Barnet and Hatfield, but +without any success--no such people had been seen to pass through. With +the kindest concern he came on to Longbourn, and broke his apprehensions +to us in a manner most creditable to his heart. I am sincerely grieved +for him and Mrs. F., but no one can throw any blame on them. Our +distress, my dear Lizzy, is very great. My father and mother believe the +worst, but I cannot think so ill of him. Many circumstances might make +it more eligible for them to be married privately in town than to pursue +their first plan; and even if _he_ could form such a design against a +young woman of Lydia's connections, which is not likely, can I suppose +her so lost to everything? Impossible! I grieve to find, however, that +Colonel F. is not disposed to depend upon their marriage; he shook his +head when I expressed my hopes, and said he feared W. was not a man to +be trusted. My poor mother is really ill, and keeps her room. Could she +exert herself, it would be better; but this is not to be expected. And +as to my father, I never in my life saw him so affected. Poor Kitty has +anger for having concealed their attachment; but as it was a matter of +confidence, one cannot wonder. I am truly glad, dearest Lizzy, that you +have been spared something of these distressing scenes; but now, as the +first shock is over, shall I own that I long for your return? I am not +so selfish, however, as to press for it, if inconvenient. Adieu! I +take up my pen again to do what I have just told you I would not; but +circumstances are such that I cannot help earnestly begging you all to +come here as soon as possible. I know my dear uncle and aunt so well, +that I am not afraid of requesting it, though I have still something +more to ask of the former. My father is going to London with Colonel +Forster instantly, to try to discover her. What he means to do I am sure +I know not; but his excessive distress will not allow him to pursue any +measure in the best and safest way, and Colonel Forster is obliged to +be at Brighton again to-morrow evening. In such an exigence, my +uncle's advice and assistance would be everything in the world; he will +immediately comprehend what I must feel, and I rely upon his goodness.” + +“Oh! where, where is my uncle?” cried Elizabeth, darting from her seat +as she finished the letter, in eagerness to follow him, without losing +a moment of the time so precious; but as she reached the door it was +opened by a servant, and Mr. Darcy appeared. Her pale face and impetuous +manner made him start, and before he could recover himself to speak, +she, in whose mind every idea was superseded by Lydia's situation, +hastily exclaimed, “I beg your pardon, but I must leave you. I must find +Mr. Gardiner this moment, on business that cannot be delayed; I have not +an instant to lose.” + +“Good God! what is the matter?” cried he, with more feeling than +politeness; then recollecting himself, “I will not detain you a minute; +but let me, or let the servant go after Mr. and Mrs. Gardiner. You are +not well enough; you cannot go yourself.” + +Elizabeth hesitated, but her knees trembled under her and she felt how +little would be gained by her attempting to pursue them. Calling back +the servant, therefore, she commissioned him, though in so breathless +an accent as made her almost unintelligible, to fetch his master and +mistress home instantly. + +On his quitting the room she sat down, unable to support herself, and +looking so miserably ill, that it was impossible for Darcy to leave her, +or to refrain from saying, in a tone of gentleness and commiseration, +“Let me call your maid. Is there nothing you could take to give you +present relief? A glass of wine; shall I get you one? You are very ill.” + +“No, I thank you,” she replied, endeavouring to recover herself. “There +is nothing the matter with me. I am quite well; I am only distressed by +some dreadful news which I have just received from Longbourn.” + +She burst into tears as she alluded to it, and for a few minutes could +not speak another word. Darcy, in wretched suspense, could only say +something indistinctly of his concern, and observe her in compassionate +silence. At length she spoke again. “I have just had a letter from Jane, +with such dreadful news. It cannot be concealed from anyone. My younger +sister has left all her friends--has eloped; has thrown herself into +the power of--of Mr. Wickham. They are gone off together from Brighton. +_You_ know him too well to doubt the rest. She has no money, no +connections, nothing that can tempt him to--she is lost for ever.” + +Darcy was fixed in astonishment. “When I consider,” she added in a yet +more agitated voice, “that I might have prevented it! I, who knew what +he was. Had I but explained some part of it only--some part of what I +learnt, to my own family! Had his character been known, this could not +have happened. But it is all--all too late now.” + +“I am grieved indeed,” cried Darcy; “grieved--shocked. But is it +certain--absolutely certain?” + +“Oh, yes! They left Brighton together on Sunday night, and were traced +almost to London, but not beyond; they are certainly not gone to +Scotland.” + +“And what has been done, what has been attempted, to recover her?” + +“My father is gone to London, and Jane has written to beg my uncle's +immediate assistance; and we shall be off, I hope, in half-an-hour. But +nothing can be done--I know very well that nothing can be done. How is +such a man to be worked on? How are they even to be discovered? I have +not the smallest hope. It is every way horrible!” + +Darcy shook his head in silent acquiescence. + +“When _my_ eyes were opened to his real character--Oh! had I known what +I ought, what I dared to do! But I knew not--I was afraid of doing too +much. Wretched, wretched mistake!” + +Darcy made no answer. He seemed scarcely to hear her, and was walking +up and down the room in earnest meditation, his brow contracted, his air +gloomy. Elizabeth soon observed, and instantly understood it. Her +power was sinking; everything _must_ sink under such a proof of family +weakness, such an assurance of the deepest disgrace. She could neither +wonder nor condemn, but the belief of his self-conquest brought nothing +consolatory to her bosom, afforded no palliation of her distress. It +was, on the contrary, exactly calculated to make her understand her own +wishes; and never had she so honestly felt that she could have loved +him, as now, when all love must be vain. + +But self, though it would intrude, could not engross her. Lydia--the +humiliation, the misery she was bringing on them all, soon swallowed +up every private care; and covering her face with her handkerchief, +Elizabeth was soon lost to everything else; and, after a pause of +several minutes, was only recalled to a sense of her situation by +the voice of her companion, who, in a manner which, though it spoke +compassion, spoke likewise restraint, said, “I am afraid you have been +long desiring my absence, nor have I anything to plead in excuse of my +stay, but real, though unavailing concern. Would to Heaven that anything +could be either said or done on my part that might offer consolation to +such distress! But I will not torment you with vain wishes, which may +seem purposely to ask for your thanks. This unfortunate affair will, I +fear, prevent my sister's having the pleasure of seeing you at Pemberley +to-day.” + +“Oh, yes. Be so kind as to apologise for us to Miss Darcy. Say that +urgent business calls us home immediately. Conceal the unhappy truth as +long as it is possible, I know it cannot be long.” + +He readily assured her of his secrecy; again expressed his sorrow for +her distress, wished it a happier conclusion than there was at present +reason to hope, and leaving his compliments for her relations, with only +one serious, parting look, went away. + +As he quitted the room, Elizabeth felt how improbable it was that they +should ever see each other again on such terms of cordiality as +had marked their several meetings in Derbyshire; and as she threw a +retrospective glance over the whole of their acquaintance, so full +of contradictions and varieties, sighed at the perverseness of those +feelings which would now have promoted its continuance, and would +formerly have rejoiced in its termination. + +If gratitude and esteem are good foundations of affection, Elizabeth's +change of sentiment will be neither improbable nor faulty. But if +otherwise--if regard springing from such sources is unreasonable or +unnatural, in comparison of what is so often described as arising on +a first interview with its object, and even before two words have been +exchanged, nothing can be said in her defence, except that she had given +somewhat of a trial to the latter method in her partiality for Wickham, +and that its ill success might, perhaps, authorise her to seek the other +less interesting mode of attachment. Be that as it may, she saw him +go with regret; and in this early example of what Lydia's infamy must +produce, found additional anguish as she reflected on that wretched +business. Never, since reading Jane's second letter, had she entertained +a hope of Wickham's meaning to marry her. No one but Jane, she thought, +could flatter herself with such an expectation. Surprise was the least +of her feelings on this development. While the contents of the first +letter remained in her mind, she was all surprise--all astonishment that +Wickham should marry a girl whom it was impossible he could marry +for money; and how Lydia could ever have attached him had appeared +incomprehensible. But now it was all too natural. For such an attachment +as this she might have sufficient charms; and though she did not suppose +Lydia to be deliberately engaging in an elopement without the intention +of marriage, she had no difficulty in believing that neither her virtue +nor her understanding would preserve her from falling an easy prey. + +She had never perceived, while the regiment was in Hertfordshire, that +Lydia had any partiality for him; but she was convinced that Lydia +wanted only encouragement to attach herself to anybody. Sometimes one +officer, sometimes another, had been her favourite, as their attentions +raised them in her opinion. Her affections had continually been +fluctuating but never without an object. The mischief of neglect and +mistaken indulgence towards such a girl--oh! how acutely did she now +feel it! + +She was wild to be at home--to hear, to see, to be upon the spot to +share with Jane in the cares that must now fall wholly upon her, in a +family so deranged, a father absent, a mother incapable of exertion, and +requiring constant attendance; and though almost persuaded that nothing +could be done for Lydia, her uncle's interference seemed of the utmost +importance, and till he entered the room her impatience was severe. Mr. +and Mrs. Gardiner had hurried back in alarm, supposing by the servant's +account that their niece was taken suddenly ill; but satisfying them +instantly on that head, she eagerly communicated the cause of their +summons, reading the two letters aloud, and dwelling on the postscript +of the last with trembling energy.--Though Lydia had never been a +favourite with them, Mr. and Mrs. Gardiner could not but be deeply +afflicted. Not Lydia only, but all were concerned in it; and after the +first exclamations of surprise and horror, Mr. Gardiner promised every +assistance in his power. Elizabeth, though expecting no less, thanked +him with tears of gratitude; and all three being actuated by one spirit, +everything relating to their journey was speedily settled. They were to +be off as soon as possible. “But what is to be done about Pemberley?” + cried Mrs. Gardiner. “John told us Mr. Darcy was here when you sent for +us; was it so?” + +“Yes; and I told him we should not be able to keep our engagement. +_That_ is all settled.” + +“What is all settled?” repeated the other, as she ran into her room to +prepare. “And are they upon such terms as for her to disclose the real +truth? Oh, that I knew how it was!” + +But wishes were vain, or at least could only serve to amuse her in the +hurry and confusion of the following hour. Had Elizabeth been at leisure +to be idle, she would have remained certain that all employment was +impossible to one so wretched as herself; but she had her share of +business as well as her aunt, and amongst the rest there were notes to +be written to all their friends at Lambton, with false excuses for their +sudden departure. An hour, however, saw the whole completed; and Mr. +Gardiner meanwhile having settled his account at the inn, nothing +remained to be done but to go; and Elizabeth, after all the misery of +the morning, found herself, in a shorter space of time than she could +have supposed, seated in the carriage, and on the road to Longbourn. + + + +Chapter 47 + + +“I have been thinking it over again, Elizabeth,” said her uncle, as they +drove from the town; “and really, upon serious consideration, I am much +more inclined than I was to judge as your eldest sister does on the +matter. It appears to me so very unlikely that any young man should +form such a design against a girl who is by no means unprotected or +friendless, and who was actually staying in his colonel's family, that I +am strongly inclined to hope the best. Could he expect that her friends +would not step forward? Could he expect to be noticed again by the +regiment, after such an affront to Colonel Forster? His temptation is +not adequate to the risk!” + +“Do you really think so?” cried Elizabeth, brightening up for a moment. + +“Upon my word,” said Mrs. Gardiner, “I begin to be of your uncle's +opinion. It is really too great a violation of decency, honour, and +interest, for him to be guilty of. I cannot think so very ill of +Wickham. Can you yourself, Lizzy, so wholly give him up, as to believe +him capable of it?” + +“Not, perhaps, of neglecting his own interest; but of every other +neglect I can believe him capable. If, indeed, it should be so! But I +dare not hope it. Why should they not go on to Scotland if that had been +the case?” + +“In the first place,” replied Mr. Gardiner, “there is no absolute proof +that they are not gone to Scotland.” + +“Oh! but their removing from the chaise into a hackney coach is such +a presumption! And, besides, no traces of them were to be found on the +Barnet road.” + +“Well, then--supposing them to be in London. They may be there, though +for the purpose of concealment, for no more exceptional purpose. It is +not likely that money should be very abundant on either side; and it +might strike them that they could be more economically, though less +expeditiously, married in London than in Scotland.” + +“But why all this secrecy? Why any fear of detection? Why must their +marriage be private? Oh, no, no--this is not likely. His most particular +friend, you see by Jane's account, was persuaded of his never intending +to marry her. Wickham will never marry a woman without some money. He +cannot afford it. And what claims has Lydia--what attraction has she +beyond youth, health, and good humour that could make him, for her sake, +forego every chance of benefiting himself by marrying well? As to what +restraint the apprehensions of disgrace in the corps might throw on a +dishonourable elopement with her, I am not able to judge; for I know +nothing of the effects that such a step might produce. But as to your +other objection, I am afraid it will hardly hold good. Lydia has +no brothers to step forward; and he might imagine, from my father's +behaviour, from his indolence and the little attention he has ever +seemed to give to what was going forward in his family, that _he_ would +do as little, and think as little about it, as any father could do, in +such a matter.” + +“But can you think that Lydia is so lost to everything but love of him +as to consent to live with him on any terms other than marriage?” + +“It does seem, and it is most shocking indeed,” replied Elizabeth, with +tears in her eyes, “that a sister's sense of decency and virtue in such +a point should admit of doubt. But, really, I know not what to say. +Perhaps I am not doing her justice. But she is very young; she has never +been taught to think on serious subjects; and for the last half-year, +nay, for a twelvemonth--she has been given up to nothing but amusement +and vanity. She has been allowed to dispose of her time in the most idle +and frivolous manner, and to adopt any opinions that came in her way. +Since the ----shire were first quartered in Meryton, nothing but love, +flirtation, and officers have been in her head. She has been doing +everything in her power by thinking and talking on the subject, to give +greater--what shall I call it? susceptibility to her feelings; which are +naturally lively enough. And we all know that Wickham has every charm of +person and address that can captivate a woman.” + +“But you see that Jane,” said her aunt, “does not think so very ill of +Wickham as to believe him capable of the attempt.” + +“Of whom does Jane ever think ill? And who is there, whatever might be +their former conduct, that she would think capable of such an attempt, +till it were proved against them? But Jane knows, as well as I do, what +Wickham really is. We both know that he has been profligate in every +sense of the word; that he has neither integrity nor honour; that he is +as false and deceitful as he is insinuating.” + +“And do you really know all this?” cried Mrs. Gardiner, whose curiosity +as to the mode of her intelligence was all alive. + +“I do indeed,” replied Elizabeth, colouring. “I told you, the other day, +of his infamous behaviour to Mr. Darcy; and you yourself, when last at +Longbourn, heard in what manner he spoke of the man who had behaved +with such forbearance and liberality towards him. And there are other +circumstances which I am not at liberty--which it is not worth while to +relate; but his lies about the whole Pemberley family are endless. From +what he said of Miss Darcy I was thoroughly prepared to see a proud, +reserved, disagreeable girl. Yet he knew to the contrary himself. He +must know that she was as amiable and unpretending as we have found +her.” + +“But does Lydia know nothing of this? can she be ignorant of what you +and Jane seem so well to understand?” + +“Oh, yes!--that, that is the worst of all. Till I was in Kent, and saw +so much both of Mr. Darcy and his relation Colonel Fitzwilliam, I was +ignorant of the truth myself. And when I returned home, the ----shire +was to leave Meryton in a week or fortnight's time. As that was the +case, neither Jane, to whom I related the whole, nor I, thought it +necessary to make our knowledge public; for of what use could +it apparently be to any one, that the good opinion which all the +neighbourhood had of him should then be overthrown? And even when it was +settled that Lydia should go with Mrs. Forster, the necessity of opening +her eyes to his character never occurred to me. That _she_ could be +in any danger from the deception never entered my head. That such a +consequence as _this_ could ensue, you may easily believe, was far +enough from my thoughts.” + +“When they all removed to Brighton, therefore, you had no reason, I +suppose, to believe them fond of each other?” + +“Not the slightest. I can remember no symptom of affection on either +side; and had anything of the kind been perceptible, you must be aware +that ours is not a family on which it could be thrown away. When first +he entered the corps, she was ready enough to admire him; but so we all +were. Every girl in or near Meryton was out of her senses about him for +the first two months; but he never distinguished _her_ by any particular +attention; and, consequently, after a moderate period of extravagant and +wild admiration, her fancy for him gave way, and others of the regiment, +who treated her with more distinction, again became her favourites.” + + * * * * * + +It may be easily believed, that however little of novelty could be added +to their fears, hopes, and conjectures, on this interesting subject, by +its repeated discussion, no other could detain them from it long, during +the whole of the journey. From Elizabeth's thoughts it was never absent. +Fixed there by the keenest of all anguish, self-reproach, she could find +no interval of ease or forgetfulness. + +They travelled as expeditiously as possible, and, sleeping one night +on the road, reached Longbourn by dinner time the next day. It was a +comfort to Elizabeth to consider that Jane could not have been wearied +by long expectations. + +The little Gardiners, attracted by the sight of a chaise, were standing +on the steps of the house as they entered the paddock; and, when the +carriage drove up to the door, the joyful surprise that lighted up their +faces, and displayed itself over their whole bodies, in a variety of +capers and frisks, was the first pleasing earnest of their welcome. + +Elizabeth jumped out; and, after giving each of them a hasty kiss, +hurried into the vestibule, where Jane, who came running down from her +mother's apartment, immediately met her. + +Elizabeth, as she affectionately embraced her, whilst tears filled the +eyes of both, lost not a moment in asking whether anything had been +heard of the fugitives. + +“Not yet,” replied Jane. “But now that my dear uncle is come, I hope +everything will be well.” + +“Is my father in town?” + +“Yes, he went on Tuesday, as I wrote you word.” + +“And have you heard from him often?” + +“We have heard only twice. He wrote me a few lines on Wednesday to say +that he had arrived in safety, and to give me his directions, which I +particularly begged him to do. He merely added that he should not write +again till he had something of importance to mention.” + +“And my mother--how is she? How are you all?” + +“My mother is tolerably well, I trust; though her spirits are greatly +shaken. She is up stairs and will have great satisfaction in seeing you +all. She does not yet leave her dressing-room. Mary and Kitty, thank +Heaven, are quite well.” + +“But you--how are you?” cried Elizabeth. “You look pale. How much you +must have gone through!” + +Her sister, however, assured her of her being perfectly well; and their +conversation, which had been passing while Mr. and Mrs. Gardiner were +engaged with their children, was now put an end to by the approach +of the whole party. Jane ran to her uncle and aunt, and welcomed and +thanked them both, with alternate smiles and tears. + +When they were all in the drawing-room, the questions which Elizabeth +had already asked were of course repeated by the others, and they soon +found that Jane had no intelligence to give. The sanguine hope of +good, however, which the benevolence of her heart suggested had not yet +deserted her; she still expected that it would all end well, and that +every morning would bring some letter, either from Lydia or her father, +to explain their proceedings, and, perhaps, announce their marriage. + +Mrs. Bennet, to whose apartment they all repaired, after a few minutes' +conversation together, received them exactly as might be expected; with +tears and lamentations of regret, invectives against the villainous +conduct of Wickham, and complaints of her own sufferings and ill-usage; +blaming everybody but the person to whose ill-judging indulgence the +errors of her daughter must principally be owing. + +“If I had been able,” said she, “to carry my point in going to Brighton, +with all my family, _this_ would not have happened; but poor dear Lydia +had nobody to take care of her. Why did the Forsters ever let her go out +of their sight? I am sure there was some great neglect or other on their +side, for she is not the kind of girl to do such a thing if she had been +well looked after. I always thought they were very unfit to have the +charge of her; but I was overruled, as I always am. Poor dear child! +And now here's Mr. Bennet gone away, and I know he will fight Wickham, +wherever he meets him and then he will be killed, and what is to become +of us all? The Collinses will turn us out before he is cold in his +grave, and if you are not kind to us, brother, I do not know what we +shall do.” + +They all exclaimed against such terrific ideas; and Mr. Gardiner, after +general assurances of his affection for her and all her family, told her +that he meant to be in London the very next day, and would assist Mr. +Bennet in every endeavour for recovering Lydia. + +“Do not give way to useless alarm,” added he; “though it is right to be +prepared for the worst, there is no occasion to look on it as certain. +It is not quite a week since they left Brighton. In a few days more we +may gain some news of them; and till we know that they are not married, +and have no design of marrying, do not let us give the matter over as +lost. As soon as I get to town I shall go to my brother, and make +him come home with me to Gracechurch Street; and then we may consult +together as to what is to be done.” + +“Oh! my dear brother,” replied Mrs. Bennet, “that is exactly what I +could most wish for. And now do, when you get to town, find them out, +wherever they may be; and if they are not married already, _make_ them +marry. And as for wedding clothes, do not let them wait for that, but +tell Lydia she shall have as much money as she chooses to buy them, +after they are married. And, above all, keep Mr. Bennet from fighting. +Tell him what a dreadful state I am in, that I am frighted out of my +wits--and have such tremblings, such flutterings, all over me--such +spasms in my side and pains in my head, and such beatings at heart, that +I can get no rest by night nor by day. And tell my dear Lydia not to +give any directions about her clothes till she has seen me, for she does +not know which are the best warehouses. Oh, brother, how kind you are! I +know you will contrive it all.” + +But Mr. Gardiner, though he assured her again of his earnest endeavours +in the cause, could not avoid recommending moderation to her, as well +in her hopes as her fear; and after talking with her in this manner till +dinner was on the table, they all left her to vent all her feelings on +the housekeeper, who attended in the absence of her daughters. + +Though her brother and sister were persuaded that there was no real +occasion for such a seclusion from the family, they did not attempt to +oppose it, for they knew that she had not prudence enough to hold her +tongue before the servants, while they waited at table, and judged it +better that _one_ only of the household, and the one whom they could +most trust should comprehend all her fears and solicitude on the +subject. + +In the dining-room they were soon joined by Mary and Kitty, who had been +too busily engaged in their separate apartments to make their appearance +before. One came from her books, and the other from her toilette. The +faces of both, however, were tolerably calm; and no change was visible +in either, except that the loss of her favourite sister, or the anger +which she had herself incurred in this business, had given more of +fretfulness than usual to the accents of Kitty. As for Mary, she was +mistress enough of herself to whisper to Elizabeth, with a countenance +of grave reflection, soon after they were seated at table: + +“This is a most unfortunate affair, and will probably be much talked of. +But we must stem the tide of malice, and pour into the wounded bosoms of +each other the balm of sisterly consolation.” + +Then, perceiving in Elizabeth no inclination of replying, she added, +“Unhappy as the event must be for Lydia, we may draw from it this useful +lesson: that loss of virtue in a female is irretrievable; that one +false step involves her in endless ruin; that her reputation is no less +brittle than it is beautiful; and that she cannot be too much guarded in +her behaviour towards the undeserving of the other sex.” + +Elizabeth lifted up her eyes in amazement, but was too much oppressed +to make any reply. Mary, however, continued to console herself with such +kind of moral extractions from the evil before them. + +In the afternoon, the two elder Miss Bennets were able to be for +half-an-hour by themselves; and Elizabeth instantly availed herself of +the opportunity of making any inquiries, which Jane was equally eager to +satisfy. After joining in general lamentations over the dreadful sequel +of this event, which Elizabeth considered as all but certain, and Miss +Bennet could not assert to be wholly impossible, the former continued +the subject, by saying, “But tell me all and everything about it which +I have not already heard. Give me further particulars. What did Colonel +Forster say? Had they no apprehension of anything before the elopement +took place? They must have seen them together for ever.” + +“Colonel Forster did own that he had often suspected some partiality, +especially on Lydia's side, but nothing to give him any alarm. I am so +grieved for him! His behaviour was attentive and kind to the utmost. He +_was_ coming to us, in order to assure us of his concern, before he had +any idea of their not being gone to Scotland: when that apprehension +first got abroad, it hastened his journey.” + +“And was Denny convinced that Wickham would not marry? Did he know of +their intending to go off? Had Colonel Forster seen Denny himself?” + +“Yes; but, when questioned by _him_, Denny denied knowing anything of +their plans, and would not give his real opinion about it. He did not +repeat his persuasion of their not marrying--and from _that_, I am +inclined to hope, he might have been misunderstood before.” + +“And till Colonel Forster came himself, not one of you entertained a +doubt, I suppose, of their being really married?” + +“How was it possible that such an idea should enter our brains? I felt +a little uneasy--a little fearful of my sister's happiness with him +in marriage, because I knew that his conduct had not been always quite +right. My father and mother knew nothing of that; they only felt how +imprudent a match it must be. Kitty then owned, with a very natural +triumph on knowing more than the rest of us, that in Lydia's last letter +she had prepared her for such a step. She had known, it seems, of their +being in love with each other, many weeks.” + +“But not before they went to Brighton?” + +“No, I believe not.” + +“And did Colonel Forster appear to think well of Wickham himself? Does +he know his real character?” + +“I must confess that he did not speak so well of Wickham as he formerly +did. He believed him to be imprudent and extravagant. And since this sad +affair has taken place, it is said that he left Meryton greatly in debt; +but I hope this may be false.” + +“Oh, Jane, had we been less secret, had we told what we knew of him, +this could not have happened!” + +“Perhaps it would have been better,” replied her sister. “But to expose +the former faults of any person without knowing what their present +feelings were, seemed unjustifiable. We acted with the best intentions.” + +“Could Colonel Forster repeat the particulars of Lydia's note to his +wife?” + +“He brought it with him for us to see.” + +Jane then took it from her pocket-book, and gave it to Elizabeth. These +were the contents: + +“MY DEAR HARRIET, + +“You will laugh when you know where I am gone, and I cannot help +laughing myself at your surprise to-morrow morning, as soon as I am +missed. I am going to Gretna Green, and if you cannot guess with who, +I shall think you a simpleton, for there is but one man in the world I +love, and he is an angel. I should never be happy without him, so think +it no harm to be off. You need not send them word at Longbourn of my +going, if you do not like it, for it will make the surprise the greater, +when I write to them and sign my name 'Lydia Wickham.' What a good joke +it will be! I can hardly write for laughing. Pray make my excuses to +Pratt for not keeping my engagement, and dancing with him to-night. +Tell him I hope he will excuse me when he knows all; and tell him I will +dance with him at the next ball we meet, with great pleasure. I shall +send for my clothes when I get to Longbourn; but I wish you would tell +Sally to mend a great slit in my worked muslin gown before they are +packed up. Good-bye. Give my love to Colonel Forster. I hope you will +drink to our good journey. + +“Your affectionate friend, + +“LYDIA BENNET.” + +“Oh! thoughtless, thoughtless Lydia!” cried Elizabeth when she had +finished it. “What a letter is this, to be written at such a moment! +But at least it shows that _she_ was serious on the subject of their +journey. Whatever he might afterwards persuade her to, it was not on her +side a _scheme_ of infamy. My poor father! how he must have felt it!” + +“I never saw anyone so shocked. He could not speak a word for full ten +minutes. My mother was taken ill immediately, and the whole house in +such confusion!” + +“Oh! Jane,” cried Elizabeth, “was there a servant belonging to it who +did not know the whole story before the end of the day?” + +“I do not know. I hope there was. But to be guarded at such a time is +very difficult. My mother was in hysterics, and though I endeavoured to +give her every assistance in my power, I am afraid I did not do so +much as I might have done! But the horror of what might possibly happen +almost took from me my faculties.” + +“Your attendance upon her has been too much for you. You do not look +well. Oh that I had been with you! you have had every care and anxiety +upon yourself alone.” + +“Mary and Kitty have been very kind, and would have shared in every +fatigue, I am sure; but I did not think it right for either of them. +Kitty is slight and delicate; and Mary studies so much, that her hours +of repose should not be broken in on. My aunt Phillips came to Longbourn +on Tuesday, after my father went away; and was so good as to stay till +Thursday with me. She was of great use and comfort to us all. And +Lady Lucas has been very kind; she walked here on Wednesday morning to +condole with us, and offered her services, or any of her daughters', if +they should be of use to us.” + +“She had better have stayed at home,” cried Elizabeth; “perhaps she +_meant_ well, but, under such a misfortune as this, one cannot see +too little of one's neighbours. Assistance is impossible; condolence +insufferable. Let them triumph over us at a distance, and be satisfied.” + +She then proceeded to inquire into the measures which her father had +intended to pursue, while in town, for the recovery of his daughter. + +“He meant I believe,” replied Jane, “to go to Epsom, the place where +they last changed horses, see the postilions and try if anything could +be made out from them. His principal object must be to discover the +number of the hackney coach which took them from Clapham. It had come +with a fare from London; and as he thought that the circumstance of a +gentleman and lady's removing from one carriage into another might +be remarked he meant to make inquiries at Clapham. If he could anyhow +discover at what house the coachman had before set down his fare, he +determined to make inquiries there, and hoped it might not be impossible +to find out the stand and number of the coach. I do not know of any +other designs that he had formed; but he was in such a hurry to be gone, +and his spirits so greatly discomposed, that I had difficulty in finding +out even so much as this.” + + + +Chapter 48 + + +The whole party were in hopes of a letter from Mr. Bennet the next +morning, but the post came in without bringing a single line from him. +His family knew him to be, on all common occasions, a most negligent and +dilatory correspondent; but at such a time they had hoped for exertion. +They were forced to conclude that he had no pleasing intelligence to +send; but even of _that_ they would have been glad to be certain. Mr. +Gardiner had waited only for the letters before he set off. + +When he was gone, they were certain at least of receiving constant +information of what was going on, and their uncle promised, at parting, +to prevail on Mr. Bennet to return to Longbourn, as soon as he could, +to the great consolation of his sister, who considered it as the only +security for her husband's not being killed in a duel. + +Mrs. Gardiner and the children were to remain in Hertfordshire a few +days longer, as the former thought her presence might be serviceable +to her nieces. She shared in their attendance on Mrs. Bennet, and was a +great comfort to them in their hours of freedom. Their other aunt also +visited them frequently, and always, as she said, with the design of +cheering and heartening them up--though, as she never came without +reporting some fresh instance of Wickham's extravagance or irregularity, +she seldom went away without leaving them more dispirited than she found +them. + +All Meryton seemed striving to blacken the man who, but three months +before, had been almost an angel of light. He was declared to be in debt +to every tradesman in the place, and his intrigues, all honoured with +the title of seduction, had been extended into every tradesman's family. +Everybody declared that he was the wickedest young man in the world; +and everybody began to find out that they had always distrusted the +appearance of his goodness. Elizabeth, though she did not credit above +half of what was said, believed enough to make her former assurance of +her sister's ruin more certain; and even Jane, who believed still less +of it, became almost hopeless, more especially as the time was now come +when, if they had gone to Scotland, which she had never before entirely +despaired of, they must in all probability have gained some news of +them. + +Mr. Gardiner left Longbourn on Sunday; on Tuesday his wife received a +letter from him; it told them that, on his arrival, he had immediately +found out his brother, and persuaded him to come to Gracechurch Street; +that Mr. Bennet had been to Epsom and Clapham, before his arrival, +but without gaining any satisfactory information; and that he was now +determined to inquire at all the principal hotels in town, as Mr. Bennet +thought it possible they might have gone to one of them, on their first +coming to London, before they procured lodgings. Mr. Gardiner himself +did not expect any success from this measure, but as his brother was +eager in it, he meant to assist him in pursuing it. He added that Mr. +Bennet seemed wholly disinclined at present to leave London and promised +to write again very soon. There was also a postscript to this effect: + +“I have written to Colonel Forster to desire him to find out, if +possible, from some of the young man's intimates in the regiment, +whether Wickham has any relations or connections who would be likely to +know in what part of town he has now concealed himself. If there were +anyone that one could apply to with a probability of gaining such a +clue as that, it might be of essential consequence. At present we have +nothing to guide us. Colonel Forster will, I dare say, do everything in +his power to satisfy us on this head. But, on second thoughts, perhaps, +Lizzy could tell us what relations he has now living, better than any +other person.” + +Elizabeth was at no loss to understand from whence this deference to her +authority proceeded; but it was not in her power to give any information +of so satisfactory a nature as the compliment deserved. She had never +heard of his having had any relations, except a father and mother, both +of whom had been dead many years. It was possible, however, that some of +his companions in the ----shire might be able to give more information; +and though she was not very sanguine in expecting it, the application +was a something to look forward to. + +Every day at Longbourn was now a day of anxiety; but the most anxious +part of each was when the post was expected. The arrival of letters +was the grand object of every morning's impatience. Through letters, +whatever of good or bad was to be told would be communicated, and every +succeeding day was expected to bring some news of importance. + +But before they heard again from Mr. Gardiner, a letter arrived for +their father, from a different quarter, from Mr. Collins; which, as Jane +had received directions to open all that came for him in his absence, +she accordingly read; and Elizabeth, who knew what curiosities his +letters always were, looked over her, and read it likewise. It was as +follows: + +“MY DEAR SIR, + +“I feel myself called upon, by our relationship, and my situation +in life, to condole with you on the grievous affliction you are now +suffering under, of which we were yesterday informed by a letter from +Hertfordshire. Be assured, my dear sir, that Mrs. Collins and myself +sincerely sympathise with you and all your respectable family, in +your present distress, which must be of the bitterest kind, because +proceeding from a cause which no time can remove. No arguments shall be +wanting on my part that can alleviate so severe a misfortune--or that +may comfort you, under a circumstance that must be of all others the +most afflicting to a parent's mind. The death of your daughter would +have been a blessing in comparison of this. And it is the more to +be lamented, because there is reason to suppose as my dear Charlotte +informs me, that this licentiousness of behaviour in your daughter has +proceeded from a faulty degree of indulgence; though, at the same time, +for the consolation of yourself and Mrs. Bennet, I am inclined to think +that her own disposition must be naturally bad, or she could not be +guilty of such an enormity, at so early an age. Howsoever that may be, +you are grievously to be pitied; in which opinion I am not only joined +by Mrs. Collins, but likewise by Lady Catherine and her daughter, to +whom I have related the affair. They agree with me in apprehending that +this false step in one daughter will be injurious to the fortunes of +all the others; for who, as Lady Catherine herself condescendingly says, +will connect themselves with such a family? And this consideration leads +me moreover to reflect, with augmented satisfaction, on a certain event +of last November; for had it been otherwise, I must have been involved +in all your sorrow and disgrace. Let me then advise you, dear sir, to +console yourself as much as possible, to throw off your unworthy child +from your affection for ever, and leave her to reap the fruits of her +own heinous offense. + +“I am, dear sir, etc., etc.” + +Mr. Gardiner did not write again till he had received an answer from +Colonel Forster; and then he had nothing of a pleasant nature to send. +It was not known that Wickham had a single relationship with whom he +kept up any connection, and it was certain that he had no near one +living. His former acquaintances had been numerous; but since he +had been in the militia, it did not appear that he was on terms of +particular friendship with any of them. There was no one, therefore, +who could be pointed out as likely to give any news of him. And in the +wretched state of his own finances, there was a very powerful motive for +secrecy, in addition to his fear of discovery by Lydia's relations, for +it had just transpired that he had left gaming debts behind him to a +very considerable amount. Colonel Forster believed that more than a +thousand pounds would be necessary to clear his expenses at Brighton. +He owed a good deal in town, but his debts of honour were still more +formidable. Mr. Gardiner did not attempt to conceal these particulars +from the Longbourn family. Jane heard them with horror. “A gamester!” + she cried. “This is wholly unexpected. I had not an idea of it.” + +Mr. Gardiner added in his letter, that they might expect to see their +father at home on the following day, which was Saturday. Rendered +spiritless by the ill-success of all their endeavours, he had yielded +to his brother-in-law's entreaty that he would return to his family, and +leave it to him to do whatever occasion might suggest to be advisable +for continuing their pursuit. When Mrs. Bennet was told of this, she did +not express so much satisfaction as her children expected, considering +what her anxiety for his life had been before. + +“What, is he coming home, and without poor Lydia?” she cried. “Sure he +will not leave London before he has found them. Who is to fight Wickham, +and make him marry her, if he comes away?” + +As Mrs. Gardiner began to wish to be at home, it was settled that she +and the children should go to London, at the same time that Mr. Bennet +came from it. The coach, therefore, took them the first stage of their +journey, and brought its master back to Longbourn. + +Mrs. Gardiner went away in all the perplexity about Elizabeth and her +Derbyshire friend that had attended her from that part of the world. His +name had never been voluntarily mentioned before them by her niece; and +the kind of half-expectation which Mrs. Gardiner had formed, of their +being followed by a letter from him, had ended in nothing. Elizabeth had +received none since her return that could come from Pemberley. + +The present unhappy state of the family rendered any other excuse for +the lowness of her spirits unnecessary; nothing, therefore, could be +fairly conjectured from _that_, though Elizabeth, who was by this time +tolerably well acquainted with her own feelings, was perfectly aware +that, had she known nothing of Darcy, she could have borne the dread of +Lydia's infamy somewhat better. It would have spared her, she thought, +one sleepless night out of two. + +When Mr. Bennet arrived, he had all the appearance of his usual +philosophic composure. He said as little as he had ever been in the +habit of saying; made no mention of the business that had taken him +away, and it was some time before his daughters had courage to speak of +it. + +It was not till the afternoon, when he had joined them at tea, that +Elizabeth ventured to introduce the subject; and then, on her briefly +expressing her sorrow for what he must have endured, he replied, “Say +nothing of that. Who should suffer but myself? It has been my own doing, +and I ought to feel it.” + +“You must not be too severe upon yourself,” replied Elizabeth. + +“You may well warn me against such an evil. Human nature is so prone +to fall into it! No, Lizzy, let me once in my life feel how much I have +been to blame. I am not afraid of being overpowered by the impression. +It will pass away soon enough.” + +“Do you suppose them to be in London?” + +“Yes; where else can they be so well concealed?” + +“And Lydia used to want to go to London,” added Kitty. + +“She is happy then,” said her father drily; “and her residence there +will probably be of some duration.” + +Then after a short silence he continued: + +“Lizzy, I bear you no ill-will for being justified in your advice to me +last May, which, considering the event, shows some greatness of mind.” + +They were interrupted by Miss Bennet, who came to fetch her mother's +tea. + +“This is a parade,” he cried, “which does one good; it gives such an +elegance to misfortune! Another day I will do the same; I will sit in my +library, in my nightcap and powdering gown, and give as much trouble as +I can; or, perhaps, I may defer it till Kitty runs away.” + +“I am not going to run away, papa,” said Kitty fretfully. “If I should +ever go to Brighton, I would behave better than Lydia.” + +“_You_ go to Brighton. I would not trust you so near it as Eastbourne +for fifty pounds! No, Kitty, I have at last learnt to be cautious, and +you will feel the effects of it. No officer is ever to enter into +my house again, nor even to pass through the village. Balls will be +absolutely prohibited, unless you stand up with one of your sisters. +And you are never to stir out of doors till you can prove that you have +spent ten minutes of every day in a rational manner.” + +Kitty, who took all these threats in a serious light, began to cry. + +“Well, well,” said he, “do not make yourself unhappy. If you are a good +girl for the next ten years, I will take you to a review at the end of +them.” + + + +Chapter 49 + + +Two days after Mr. Bennet's return, as Jane and Elizabeth were walking +together in the shrubbery behind the house, they saw the housekeeper +coming towards them, and, concluding that she came to call them to their +mother, went forward to meet her; but, instead of the expected summons, +when they approached her, she said to Miss Bennet, “I beg your pardon, +madam, for interrupting you, but I was in hopes you might have got some +good news from town, so I took the liberty of coming to ask.” + +“What do you mean, Hill? We have heard nothing from town.” + +“Dear madam,” cried Mrs. Hill, in great astonishment, “don't you know +there is an express come for master from Mr. Gardiner? He has been here +this half-hour, and master has had a letter.” + +Away ran the girls, too eager to get in to have time for speech. They +ran through the vestibule into the breakfast-room; from thence to the +library; their father was in neither; and they were on the point of +seeking him up stairs with their mother, when they were met by the +butler, who said: + +“If you are looking for my master, ma'am, he is walking towards the +little copse.” + +Upon this information, they instantly passed through the hall once +more, and ran across the lawn after their father, who was deliberately +pursuing his way towards a small wood on one side of the paddock. + +Jane, who was not so light nor so much in the habit of running as +Elizabeth, soon lagged behind, while her sister, panting for breath, +came up with him, and eagerly cried out: + +“Oh, papa, what news--what news? Have you heard from my uncle?” + +“Yes I have had a letter from him by express.” + +“Well, and what news does it bring--good or bad?” + +“What is there of good to be expected?” said he, taking the letter from +his pocket. “But perhaps you would like to read it.” + +Elizabeth impatiently caught it from his hand. Jane now came up. + +“Read it aloud,” said their father, “for I hardly know myself what it is +about.” + +“Gracechurch Street, Monday, August 2. + +“MY DEAR BROTHER, + +“At last I am able to send you some tidings of my niece, and such as, +upon the whole, I hope it will give you satisfaction. Soon after you +left me on Saturday, I was fortunate enough to find out in what part of +London they were. The particulars I reserve till we meet; it is enough +to know they are discovered. I have seen them both--” + +“Then it is as I always hoped,” cried Jane; “they are married!” + +Elizabeth read on: + +“I have seen them both. They are not married, nor can I find there +was any intention of being so; but if you are willing to perform the +engagements which I have ventured to make on your side, I hope it will +not be long before they are. All that is required of you is, to assure +to your daughter, by settlement, her equal share of the five thousand +pounds secured among your children after the decease of yourself and +my sister; and, moreover, to enter into an engagement of allowing her, +during your life, one hundred pounds per annum. These are conditions +which, considering everything, I had no hesitation in complying with, +as far as I thought myself privileged, for you. I shall send this by +express, that no time may be lost in bringing me your answer. You +will easily comprehend, from these particulars, that Mr. Wickham's +circumstances are not so hopeless as they are generally believed to be. +The world has been deceived in that respect; and I am happy to say there +will be some little money, even when all his debts are discharged, to +settle on my niece, in addition to her own fortune. If, as I conclude +will be the case, you send me full powers to act in your name throughout +the whole of this business, I will immediately give directions to +Haggerston for preparing a proper settlement. There will not be the +smallest occasion for your coming to town again; therefore stay quiet at +Longbourn, and depend on my diligence and care. Send back your answer as +fast as you can, and be careful to write explicitly. We have judged it +best that my niece should be married from this house, of which I hope +you will approve. She comes to us to-day. I shall write again as soon as +anything more is determined on. Yours, etc., + +“EDW. GARDINER.” + +“Is it possible?” cried Elizabeth, when she had finished. “Can it be +possible that he will marry her?” + +“Wickham is not so undeserving, then, as we thought him,” said her +sister. “My dear father, I congratulate you.” + +“And have you answered the letter?” cried Elizabeth. + +“No; but it must be done soon.” + +Most earnestly did she then entreat him to lose no more time before he +wrote. + +“Oh! my dear father,” she cried, “come back and write immediately. +Consider how important every moment is in such a case.” + +“Let me write for you,” said Jane, “if you dislike the trouble +yourself.” + +“I dislike it very much,” he replied; “but it must be done.” + +And so saying, he turned back with them, and walked towards the house. + +“And may I ask--” said Elizabeth; “but the terms, I suppose, must be +complied with.” + +“Complied with! I am only ashamed of his asking so little.” + +“And they _must_ marry! Yet he is _such_ a man!” + +“Yes, yes, they must marry. There is nothing else to be done. But there +are two things that I want very much to know; one is, how much money +your uncle has laid down to bring it about; and the other, how am I ever +to pay him.” + +“Money! My uncle!” cried Jane, “what do you mean, sir?” + +“I mean, that no man in his senses would marry Lydia on so slight a +temptation as one hundred a year during my life, and fifty after I am +gone.” + +“That is very true,” said Elizabeth; “though it had not occurred to me +before. His debts to be discharged, and something still to remain! Oh! +it must be my uncle's doings! Generous, good man, I am afraid he has +distressed himself. A small sum could not do all this.” + +“No,” said her father; “Wickham's a fool if he takes her with a farthing +less than ten thousand pounds. I should be sorry to think so ill of him, +in the very beginning of our relationship.” + +“Ten thousand pounds! Heaven forbid! How is half such a sum to be +repaid?” + +Mr. Bennet made no answer, and each of them, deep in thought, continued +silent till they reached the house. Their father then went on to the +library to write, and the girls walked into the breakfast-room. + +“And they are really to be married!” cried Elizabeth, as soon as they +were by themselves. “How strange this is! And for _this_ we are to be +thankful. That they should marry, small as is their chance of happiness, +and wretched as is his character, we are forced to rejoice. Oh, Lydia!” + +“I comfort myself with thinking,” replied Jane, “that he certainly would +not marry Lydia if he had not a real regard for her. Though our kind +uncle has done something towards clearing him, I cannot believe that ten +thousand pounds, or anything like it, has been advanced. He has children +of his own, and may have more. How could he spare half ten thousand +pounds?” + +“If he were ever able to learn what Wickham's debts have been,” said +Elizabeth, “and how much is settled on his side on our sister, we shall +exactly know what Mr. Gardiner has done for them, because Wickham has +not sixpence of his own. The kindness of my uncle and aunt can never +be requited. Their taking her home, and affording her their personal +protection and countenance, is such a sacrifice to her advantage as +years of gratitude cannot enough acknowledge. By this time she is +actually with them! If such goodness does not make her miserable now, +she will never deserve to be happy! What a meeting for her, when she +first sees my aunt!” + +“We must endeavour to forget all that has passed on either side,” said +Jane: “I hope and trust they will yet be happy. His consenting to +marry her is a proof, I will believe, that he is come to a right way of +thinking. Their mutual affection will steady them; and I flatter myself +they will settle so quietly, and live in so rational a manner, as may in +time make their past imprudence forgotten.” + +“Their conduct has been such,” replied Elizabeth, “as neither you, nor +I, nor anybody can ever forget. It is useless to talk of it.” + +It now occurred to the girls that their mother was in all likelihood +perfectly ignorant of what had happened. They went to the library, +therefore, and asked their father whether he would not wish them to make +it known to her. He was writing and, without raising his head, coolly +replied: + +“Just as you please.” + +“May we take my uncle's letter to read to her?” + +“Take whatever you like, and get away.” + +Elizabeth took the letter from his writing-table, and they went up stairs +together. Mary and Kitty were both with Mrs. Bennet: one communication +would, therefore, do for all. After a slight preparation for good news, +the letter was read aloud. Mrs. Bennet could hardly contain herself. As +soon as Jane had read Mr. Gardiner's hope of Lydia's being soon +married, her joy burst forth, and every following sentence added to its +exuberance. She was now in an irritation as violent from delight, as she +had ever been fidgety from alarm and vexation. To know that her daughter +would be married was enough. She was disturbed by no fear for her +felicity, nor humbled by any remembrance of her misconduct. + +“My dear, dear Lydia!” she cried. “This is delightful indeed! She will +be married! I shall see her again! She will be married at sixteen! +My good, kind brother! I knew how it would be. I knew he would manage +everything! How I long to see her! and to see dear Wickham too! But the +clothes, the wedding clothes! I will write to my sister Gardiner about +them directly. Lizzy, my dear, run down to your father, and ask him +how much he will give her. Stay, stay, I will go myself. Ring the bell, +Kitty, for Hill. I will put on my things in a moment. My dear, dear +Lydia! How merry we shall be together when we meet!” + +Her eldest daughter endeavoured to give some relief to the violence of +these transports, by leading her thoughts to the obligations which Mr. +Gardiner's behaviour laid them all under. + +“For we must attribute this happy conclusion,” she added, “in a great +measure to his kindness. We are persuaded that he has pledged himself to +assist Mr. Wickham with money.” + +“Well,” cried her mother, “it is all very right; who should do it but +her own uncle? If he had not had a family of his own, I and my children +must have had all his money, you know; and it is the first time we have +ever had anything from him, except a few presents. Well! I am so happy! +In a short time I shall have a daughter married. Mrs. Wickham! How well +it sounds! And she was only sixteen last June. My dear Jane, I am in +such a flutter, that I am sure I can't write; so I will dictate, and +you write for me. We will settle with your father about the money +afterwards; but the things should be ordered immediately.” + +She was then proceeding to all the particulars of calico, muslin, and +cambric, and would shortly have dictated some very plentiful orders, had +not Jane, though with some difficulty, persuaded her to wait till her +father was at leisure to be consulted. One day's delay, she observed, +would be of small importance; and her mother was too happy to be quite +so obstinate as usual. Other schemes, too, came into her head. + +“I will go to Meryton,” said she, “as soon as I am dressed, and tell the +good, good news to my sister Philips. And as I come back, I can call +on Lady Lucas and Mrs. Long. Kitty, run down and order the carriage. +An airing would do me a great deal of good, I am sure. Girls, can I do +anything for you in Meryton? Oh! Here comes Hill! My dear Hill, have you +heard the good news? Miss Lydia is going to be married; and you shall +all have a bowl of punch to make merry at her wedding.” + +Mrs. Hill began instantly to express her joy. Elizabeth received her +congratulations amongst the rest, and then, sick of this folly, took +refuge in her own room, that she might think with freedom. + +Poor Lydia's situation must, at best, be bad enough; but that it was +no worse, she had need to be thankful. She felt it so; and though, in +looking forward, neither rational happiness nor worldly prosperity could +be justly expected for her sister, in looking back to what they had +feared, only two hours ago, she felt all the advantages of what they had +gained. + + + +Chapter 50 + + +Mr. Bennet had very often wished before this period of his life that, +instead of spending his whole income, he had laid by an annual sum for +the better provision of his children, and of his wife, if she survived +him. He now wished it more than ever. Had he done his duty in that +respect, Lydia need not have been indebted to her uncle for whatever +of honour or credit could now be purchased for her. The satisfaction of +prevailing on one of the most worthless young men in Great Britain to be +her husband might then have rested in its proper place. + +He was seriously concerned that a cause of so little advantage to anyone +should be forwarded at the sole expense of his brother-in-law, and he +was determined, if possible, to find out the extent of his assistance, +and to discharge the obligation as soon as he could. + +When first Mr. Bennet had married, economy was held to be perfectly +useless, for, of course, they were to have a son. The son was to join +in cutting off the entail, as soon as he should be of age, and the widow +and younger children would by that means be provided for. Five daughters +successively entered the world, but yet the son was to come; and Mrs. +Bennet, for many years after Lydia's birth, had been certain that he +would. This event had at last been despaired of, but it was then +too late to be saving. Mrs. Bennet had no turn for economy, and her +husband's love of independence had alone prevented their exceeding their +income. + +Five thousand pounds was settled by marriage articles on Mrs. Bennet and +the children. But in what proportions it should be divided amongst the +latter depended on the will of the parents. This was one point, with +regard to Lydia, at least, which was now to be settled, and Mr. Bennet +could have no hesitation in acceding to the proposal before him. In +terms of grateful acknowledgment for the kindness of his brother, +though expressed most concisely, he then delivered on paper his perfect +approbation of all that was done, and his willingness to fulfil the +engagements that had been made for him. He had never before supposed +that, could Wickham be prevailed on to marry his daughter, it would +be done with so little inconvenience to himself as by the present +arrangement. He would scarcely be ten pounds a year the loser by the +hundred that was to be paid them; for, what with her board and pocket +allowance, and the continual presents in money which passed to her +through her mother's hands, Lydia's expenses had been very little within +that sum. + +That it would be done with such trifling exertion on his side, too, was +another very welcome surprise; for his wish at present was to have as +little trouble in the business as possible. When the first transports +of rage which had produced his activity in seeking her were over, he +naturally returned to all his former indolence. His letter was soon +dispatched; for, though dilatory in undertaking business, he was quick +in its execution. He begged to know further particulars of what he +was indebted to his brother, but was too angry with Lydia to send any +message to her. + +The good news spread quickly through the house, and with proportionate +speed through the neighbourhood. It was borne in the latter with decent +philosophy. To be sure, it would have been more for the advantage +of conversation had Miss Lydia Bennet come upon the town; or, as the +happiest alternative, been secluded from the world, in some distant +farmhouse. But there was much to be talked of in marrying her; and the +good-natured wishes for her well-doing which had proceeded before from +all the spiteful old ladies in Meryton lost but a little of their spirit +in this change of circumstances, because with such an husband her misery +was considered certain. + +It was a fortnight since Mrs. Bennet had been downstairs; but on this +happy day she again took her seat at the head of her table, and in +spirits oppressively high. No sentiment of shame gave a damp to her +triumph. The marriage of a daughter, which had been the first object +of her wishes since Jane was sixteen, was now on the point of +accomplishment, and her thoughts and her words ran wholly on those +attendants of elegant nuptials, fine muslins, new carriages, and +servants. She was busily searching through the neighbourhood for a +proper situation for her daughter, and, without knowing or considering +what their income might be, rejected many as deficient in size and +importance. + +“Haye Park might do,” said she, “if the Gouldings could quit it--or the +great house at Stoke, if the drawing-room were larger; but Ashworth is +too far off! I could not bear to have her ten miles from me; and as for +Pulvis Lodge, the attics are dreadful.” + +Her husband allowed her to talk on without interruption while the +servants remained. But when they had withdrawn, he said to her: “Mrs. +Bennet, before you take any or all of these houses for your son and +daughter, let us come to a right understanding. Into _one_ house in this +neighbourhood they shall never have admittance. I will not encourage the +impudence of either, by receiving them at Longbourn.” + +A long dispute followed this declaration; but Mr. Bennet was firm. It +soon led to another; and Mrs. Bennet found, with amazement and horror, +that her husband would not advance a guinea to buy clothes for his +daughter. He protested that she should receive from him no mark of +affection whatever on the occasion. Mrs. Bennet could hardly comprehend +it. That his anger could be carried to such a point of inconceivable +resentment as to refuse his daughter a privilege without which her +marriage would scarcely seem valid, exceeded all she could believe +possible. She was more alive to the disgrace which her want of new +clothes must reflect on her daughter's nuptials, than to any sense of +shame at her eloping and living with Wickham a fortnight before they +took place. + +Elizabeth was now most heartily sorry that she had, from the distress of +the moment, been led to make Mr. Darcy acquainted with their fears for +her sister; for since her marriage would so shortly give the +proper termination to the elopement, they might hope to conceal its +unfavourable beginning from all those who were not immediately on the +spot. + +She had no fear of its spreading farther through his means. There were +few people on whose secrecy she would have more confidently depended; +but, at the same time, there was no one whose knowledge of a sister's +frailty would have mortified her so much--not, however, from any fear +of disadvantage from it individually to herself, for, at any rate, +there seemed a gulf impassable between them. Had Lydia's marriage been +concluded on the most honourable terms, it was not to be supposed that +Mr. Darcy would connect himself with a family where, to every other +objection, would now be added an alliance and relationship of the +nearest kind with a man whom he so justly scorned. + +From such a connection she could not wonder that he would shrink. The +wish of procuring her regard, which she had assured herself of his +feeling in Derbyshire, could not in rational expectation survive such a +blow as this. She was humbled, she was grieved; she repented, though she +hardly knew of what. She became jealous of his esteem, when she could no +longer hope to be benefited by it. She wanted to hear of him, when there +seemed the least chance of gaining intelligence. She was convinced that +she could have been happy with him, when it was no longer likely they +should meet. + +What a triumph for him, as she often thought, could he know that the +proposals which she had proudly spurned only four months ago, would now +have been most gladly and gratefully received! He was as generous, she +doubted not, as the most generous of his sex; but while he was mortal, +there must be a triumph. + +She began now to comprehend that he was exactly the man who, in +disposition and talents, would most suit her. His understanding and +temper, though unlike her own, would have answered all her wishes. It +was an union that must have been to the advantage of both; by her ease +and liveliness, his mind might have been softened, his manners improved; +and from his judgement, information, and knowledge of the world, she +must have received benefit of greater importance. + +But no such happy marriage could now teach the admiring multitude what +connubial felicity really was. An union of a different tendency, and +precluding the possibility of the other, was soon to be formed in their +family. + +How Wickham and Lydia were to be supported in tolerable independence, +she could not imagine. But how little of permanent happiness could +belong to a couple who were only brought together because their passions +were stronger than their virtue, she could easily conjecture. + + * * * * * + +Mr. Gardiner soon wrote again to his brother. To Mr. Bennet's +acknowledgments he briefly replied, with assurance of his eagerness to +promote the welfare of any of his family; and concluded with entreaties +that the subject might never be mentioned to him again. The principal +purport of his letter was to inform them that Mr. Wickham had resolved +on quitting the militia. + +“It was greatly my wish that he should do so,” he added, “as soon as +his marriage was fixed on. And I think you will agree with me, in +considering the removal from that corps as highly advisable, both on +his account and my niece's. It is Mr. Wickham's intention to go into +the regulars; and among his former friends, there are still some who +are able and willing to assist him in the army. He has the promise of an +ensigncy in General ----'s regiment, now quartered in the North. It +is an advantage to have it so far from this part of the kingdom. He +promises fairly; and I hope among different people, where they may each +have a character to preserve, they will both be more prudent. I have +written to Colonel Forster, to inform him of our present arrangements, +and to request that he will satisfy the various creditors of Mr. Wickham +in and near Brighton, with assurances of speedy payment, for which I +have pledged myself. And will you give yourself the trouble of carrying +similar assurances to his creditors in Meryton, of whom I shall subjoin +a list according to his information? He has given in all his debts; I +hope at least he has not deceived us. Haggerston has our directions, +and all will be completed in a week. They will then join his regiment, +unless they are first invited to Longbourn; and I understand from Mrs. +Gardiner, that my niece is very desirous of seeing you all before she +leaves the South. She is well, and begs to be dutifully remembered to +you and her mother.--Yours, etc., + +“E. GARDINER.” + +Mr. Bennet and his daughters saw all the advantages of Wickham's removal +from the ----shire as clearly as Mr. Gardiner could do. But Mrs. Bennet +was not so well pleased with it. Lydia's being settled in the North, +just when she had expected most pleasure and pride in her company, +for she had by no means given up her plan of their residing in +Hertfordshire, was a severe disappointment; and, besides, it was such a +pity that Lydia should be taken from a regiment where she was acquainted +with everybody, and had so many favourites. + +“She is so fond of Mrs. Forster,” said she, “it will be quite shocking +to send her away! And there are several of the young men, too, that she +likes very much. The officers may not be so pleasant in General ----'s +regiment.” + +His daughter's request, for such it might be considered, of being +admitted into her family again before she set off for the North, +received at first an absolute negative. But Jane and Elizabeth, +who agreed in wishing, for the sake of their sister's feelings and +consequence, that she should be noticed on her marriage by her parents, +urged him so earnestly yet so rationally and so mildly, to receive her +and her husband at Longbourn, as soon as they were married, that he was +prevailed on to think as they thought, and act as they wished. And their +mother had the satisfaction of knowing that she would be able to show +her married daughter in the neighbourhood before she was banished to the +North. When Mr. Bennet wrote again to his brother, therefore, he sent +his permission for them to come; and it was settled, that as soon as +the ceremony was over, they should proceed to Longbourn. Elizabeth was +surprised, however, that Wickham should consent to such a scheme, and +had she consulted only her own inclination, any meeting with him would +have been the last object of her wishes. + + + +Chapter 51 + + +Their sister's wedding day arrived; and Jane and Elizabeth felt for her +probably more than she felt for herself. The carriage was sent to +meet them at ----, and they were to return in it by dinner-time. Their +arrival was dreaded by the elder Miss Bennets, and Jane more especially, +who gave Lydia the feelings which would have attended herself, had she +been the culprit, and was wretched in the thought of what her sister +must endure. + +They came. The family were assembled in the breakfast room to receive +them. Smiles decked the face of Mrs. Bennet as the carriage drove up to +the door; her husband looked impenetrably grave; her daughters, alarmed, +anxious, uneasy. + +Lydia's voice was heard in the vestibule; the door was thrown open, and +she ran into the room. Her mother stepped forwards, embraced her, and +welcomed her with rapture; gave her hand, with an affectionate smile, +to Wickham, who followed his lady; and wished them both joy with an +alacrity which shewed no doubt of their happiness. + +Their reception from Mr. Bennet, to whom they then turned, was not quite +so cordial. His countenance rather gained in austerity; and he scarcely +opened his lips. The easy assurance of the young couple, indeed, was +enough to provoke him. Elizabeth was disgusted, and even Miss Bennet +was shocked. Lydia was Lydia still; untamed, unabashed, wild, noisy, +and fearless. She turned from sister to sister, demanding their +congratulations; and when at length they all sat down, looked eagerly +round the room, took notice of some little alteration in it, and +observed, with a laugh, that it was a great while since she had been +there. + +Wickham was not at all more distressed than herself, but his manners +were always so pleasing, that had his character and his marriage been +exactly what they ought, his smiles and his easy address, while he +claimed their relationship, would have delighted them all. Elizabeth had +not before believed him quite equal to such assurance; but she sat down, +resolving within herself to draw no limits in future to the impudence +of an impudent man. She blushed, and Jane blushed; but the cheeks of the +two who caused their confusion suffered no variation of colour. + +There was no want of discourse. The bride and her mother could neither +of them talk fast enough; and Wickham, who happened to sit near +Elizabeth, began inquiring after his acquaintance in that neighbourhood, +with a good humoured ease which she felt very unable to equal in her +replies. They seemed each of them to have the happiest memories in the +world. Nothing of the past was recollected with pain; and Lydia led +voluntarily to subjects which her sisters would not have alluded to for +the world. + +“Only think of its being three months,” she cried, “since I went away; +it seems but a fortnight I declare; and yet there have been things +enough happened in the time. Good gracious! when I went away, I am sure +I had no more idea of being married till I came back again! though I +thought it would be very good fun if I was.” + +Her father lifted up his eyes. Jane was distressed. Elizabeth looked +expressively at Lydia; but she, who never heard nor saw anything of +which she chose to be insensible, gaily continued, “Oh! mamma, do the +people hereabouts know I am married to-day? I was afraid they might not; +and we overtook William Goulding in his curricle, so I was determined he +should know it, and so I let down the side-glass next to him, and took +off my glove, and let my hand just rest upon the window frame, so that +he might see the ring, and then I bowed and smiled like anything.” + +Elizabeth could bear it no longer. She got up, and ran out of the room; +and returned no more, till she heard them passing through the hall to +the dining parlour. She then joined them soon enough to see Lydia, with +anxious parade, walk up to her mother's right hand, and hear her say +to her eldest sister, “Ah! Jane, I take your place now, and you must go +lower, because I am a married woman.” + +It was not to be supposed that time would give Lydia that embarrassment +from which she had been so wholly free at first. Her ease and good +spirits increased. She longed to see Mrs. Phillips, the Lucases, and +all their other neighbours, and to hear herself called “Mrs. Wickham” + by each of them; and in the mean time, she went after dinner to show her +ring, and boast of being married, to Mrs. Hill and the two housemaids. + +“Well, mamma,” said she, when they were all returned to the breakfast +room, “and what do you think of my husband? Is not he a charming man? I +am sure my sisters must all envy me. I only hope they may have half +my good luck. They must all go to Brighton. That is the place to get +husbands. What a pity it is, mamma, we did not all go.” + +“Very true; and if I had my will, we should. But my dear Lydia, I don't +at all like your going such a way off. Must it be so?” + +“Oh, lord! yes;--there is nothing in that. I shall like it of all +things. You and papa, and my sisters, must come down and see us. We +shall be at Newcastle all the winter, and I dare say there will be some +balls, and I will take care to get good partners for them all.” + +“I should like it beyond anything!” said her mother. + +“And then when you go away, you may leave one or two of my sisters +behind you; and I dare say I shall get husbands for them before the +winter is over.” + +“I thank you for my share of the favour,” said Elizabeth; “but I do not +particularly like your way of getting husbands.” + +Their visitors were not to remain above ten days with them. Mr. Wickham +had received his commission before he left London, and he was to join +his regiment at the end of a fortnight. + +No one but Mrs. Bennet regretted that their stay would be so short; and +she made the most of the time by visiting about with her daughter, and +having very frequent parties at home. These parties were acceptable to +all; to avoid a family circle was even more desirable to such as did +think, than such as did not. + +Wickham's affection for Lydia was just what Elizabeth had expected +to find it; not equal to Lydia's for him. She had scarcely needed her +present observation to be satisfied, from the reason of things, that +their elopement had been brought on by the strength of her love, rather +than by his; and she would have wondered why, without violently caring +for her, he chose to elope with her at all, had she not felt certain +that his flight was rendered necessary by distress of circumstances; and +if that were the case, he was not the young man to resist an opportunity +of having a companion. + +Lydia was exceedingly fond of him. He was her dear Wickham on every +occasion; no one was to be put in competition with him. He did every +thing best in the world; and she was sure he would kill more birds on +the first of September, than any body else in the country. + +One morning, soon after their arrival, as she was sitting with her two +elder sisters, she said to Elizabeth: + +“Lizzy, I never gave _you_ an account of my wedding, I believe. You +were not by, when I told mamma and the others all about it. Are not you +curious to hear how it was managed?” + +“No really,” replied Elizabeth; “I think there cannot be too little said +on the subject.” + +“La! You are so strange! But I must tell you how it went off. We were +married, you know, at St. Clement's, because Wickham's lodgings were in +that parish. And it was settled that we should all be there by eleven +o'clock. My uncle and aunt and I were to go together; and the others +were to meet us at the church. Well, Monday morning came, and I was in +such a fuss! I was so afraid, you know, that something would happen to +put it off, and then I should have gone quite distracted. And there was +my aunt, all the time I was dressing, preaching and talking away just as +if she was reading a sermon. However, I did not hear above one word in +ten, for I was thinking, you may suppose, of my dear Wickham. I longed +to know whether he would be married in his blue coat.” + +“Well, and so we breakfasted at ten as usual; I thought it would never +be over; for, by the bye, you are to understand, that my uncle and aunt +were horrid unpleasant all the time I was with them. If you'll believe +me, I did not once put my foot out of doors, though I was there a +fortnight. Not one party, or scheme, or anything. To be sure London was +rather thin, but, however, the Little Theatre was open. Well, and so +just as the carriage came to the door, my uncle was called away upon +business to that horrid man Mr. Stone. And then, you know, when once +they get together, there is no end of it. Well, I was so frightened I +did not know what to do, for my uncle was to give me away; and if we +were beyond the hour, we could not be married all day. But, luckily, he +came back again in ten minutes' time, and then we all set out. However, +I recollected afterwards that if he had been prevented going, the +wedding need not be put off, for Mr. Darcy might have done as well.” + +“Mr. Darcy!” repeated Elizabeth, in utter amazement. + +“Oh, yes!--he was to come there with Wickham, you know. But gracious +me! I quite forgot! I ought not to have said a word about it. I promised +them so faithfully! What will Wickham say? It was to be such a secret!” + +“If it was to be secret,” said Jane, “say not another word on the +subject. You may depend upon my seeking no further.” + +“Oh! certainly,” said Elizabeth, though burning with curiosity; “we will +ask you no questions.” + +“Thank you,” said Lydia, “for if you did, I should certainly tell you +all, and then Wickham would be angry.” + +On such encouragement to ask, Elizabeth was forced to put it out of her +power, by running away. + +But to live in ignorance on such a point was impossible; or at least +it was impossible not to try for information. Mr. Darcy had been at +her sister's wedding. It was exactly a scene, and exactly among people, +where he had apparently least to do, and least temptation to go. +Conjectures as to the meaning of it, rapid and wild, hurried into her +brain; but she was satisfied with none. Those that best pleased her, as +placing his conduct in the noblest light, seemed most improbable. She +could not bear such suspense; and hastily seizing a sheet of paper, +wrote a short letter to her aunt, to request an explanation of what +Lydia had dropt, if it were compatible with the secrecy which had been +intended. + +“You may readily comprehend,” she added, “what my curiosity must be +to know how a person unconnected with any of us, and (comparatively +speaking) a stranger to our family, should have been amongst you at such +a time. Pray write instantly, and let me understand it--unless it is, +for very cogent reasons, to remain in the secrecy which Lydia seems +to think necessary; and then I must endeavour to be satisfied with +ignorance.” + +“Not that I _shall_, though,” she added to herself, as she finished +the letter; “and my dear aunt, if you do not tell me in an honourable +manner, I shall certainly be reduced to tricks and stratagems to find it +out.” + +Jane's delicate sense of honour would not allow her to speak to +Elizabeth privately of what Lydia had let fall; Elizabeth was glad +of it;--till it appeared whether her inquiries would receive any +satisfaction, she had rather be without a confidante. + + + +Chapter 52 + + +Elizabeth had the satisfaction of receiving an answer to her letter as +soon as she possibly could. She was no sooner in possession of it +than, hurrying into the little copse, where she was least likely to +be interrupted, she sat down on one of the benches and prepared to +be happy; for the length of the letter convinced her that it did not +contain a denial. + +“Gracechurch street, Sept. 6. + +“MY DEAR NIECE, + +“I have just received your letter, and shall devote this whole morning +to answering it, as I foresee that a _little_ writing will not comprise +what I have to tell you. I must confess myself surprised by your +application; I did not expect it from _you_. Don't think me angry, +however, for I only mean to let you know that I had not imagined such +inquiries to be necessary on _your_ side. If you do not choose to +understand me, forgive my impertinence. Your uncle is as much surprised +as I am--and nothing but the belief of your being a party concerned +would have allowed him to act as he has done. But if you are really +innocent and ignorant, I must be more explicit. + +“On the very day of my coming home from Longbourn, your uncle had a most +unexpected visitor. Mr. Darcy called, and was shut up with him several +hours. It was all over before I arrived; so my curiosity was not so +dreadfully racked as _yours_ seems to have been. He came to tell Mr. +Gardiner that he had found out where your sister and Mr. Wickham were, +and that he had seen and talked with them both; Wickham repeatedly, +Lydia once. From what I can collect, he left Derbyshire only one day +after ourselves, and came to town with the resolution of hunting for +them. The motive professed was his conviction of its being owing to +himself that Wickham's worthlessness had not been so well known as to +make it impossible for any young woman of character to love or confide +in him. He generously imputed the whole to his mistaken pride, and +confessed that he had before thought it beneath him to lay his private +actions open to the world. His character was to speak for itself. He +called it, therefore, his duty to step forward, and endeavour to remedy +an evil which had been brought on by himself. If he _had another_ +motive, I am sure it would never disgrace him. He had been some days +in town, before he was able to discover them; but he had something to +direct his search, which was more than _we_ had; and the consciousness +of this was another reason for his resolving to follow us. + +“There is a lady, it seems, a Mrs. Younge, who was some time ago +governess to Miss Darcy, and was dismissed from her charge on some cause +of disapprobation, though he did not say what. She then took a large +house in Edward-street, and has since maintained herself by letting +lodgings. This Mrs. Younge was, he knew, intimately acquainted with +Wickham; and he went to her for intelligence of him as soon as he got to +town. But it was two or three days before he could get from her what he +wanted. She would not betray her trust, I suppose, without bribery and +corruption, for she really did know where her friend was to be found. +Wickham indeed had gone to her on their first arrival in London, and had +she been able to receive them into her house, they would have taken up +their abode with her. At length, however, our kind friend procured the +wished-for direction. They were in ---- street. He saw Wickham, and +afterwards insisted on seeing Lydia. His first object with her, he +acknowledged, had been to persuade her to quit her present disgraceful +situation, and return to her friends as soon as they could be prevailed +on to receive her, offering his assistance, as far as it would go. But +he found Lydia absolutely resolved on remaining where she was. She cared +for none of her friends; she wanted no help of his; she would not hear +of leaving Wickham. She was sure they should be married some time or +other, and it did not much signify when. Since such were her feelings, +it only remained, he thought, to secure and expedite a marriage, which, +in his very first conversation with Wickham, he easily learnt had never +been _his_ design. He confessed himself obliged to leave the regiment, +on account of some debts of honour, which were very pressing; and +scrupled not to lay all the ill-consequences of Lydia's flight on her +own folly alone. He meant to resign his commission immediately; and as +to his future situation, he could conjecture very little about it. He +must go somewhere, but he did not know where, and he knew he should have +nothing to live on. + +“Mr. Darcy asked him why he had not married your sister at once. Though +Mr. Bennet was not imagined to be very rich, he would have been able +to do something for him, and his situation must have been benefited by +marriage. But he found, in reply to this question, that Wickham still +cherished the hope of more effectually making his fortune by marriage in +some other country. Under such circumstances, however, he was not likely +to be proof against the temptation of immediate relief. + +“They met several times, for there was much to be discussed. Wickham of +course wanted more than he could get; but at length was reduced to be +reasonable. + +“Every thing being settled between _them_, Mr. Darcy's next step was to +make your uncle acquainted with it, and he first called in Gracechurch +street the evening before I came home. But Mr. Gardiner could not be +seen, and Mr. Darcy found, on further inquiry, that your father was +still with him, but would quit town the next morning. He did not judge +your father to be a person whom he could so properly consult as your +uncle, and therefore readily postponed seeing him till after the +departure of the former. He did not leave his name, and till the next +day it was only known that a gentleman had called on business. + +“On Saturday he came again. Your father was gone, your uncle at home, +and, as I said before, they had a great deal of talk together. + +“They met again on Sunday, and then _I_ saw him too. It was not all +settled before Monday: as soon as it was, the express was sent off to +Longbourn. But our visitor was very obstinate. I fancy, Lizzy, that +obstinacy is the real defect of his character, after all. He has been +accused of many faults at different times, but _this_ is the true one. +Nothing was to be done that he did not do himself; though I am sure (and +I do not speak it to be thanked, therefore say nothing about it), your +uncle would most readily have settled the whole. + +“They battled it together for a long time, which was more than either +the gentleman or lady concerned in it deserved. But at last your uncle +was forced to yield, and instead of being allowed to be of use to his +niece, was forced to put up with only having the probable credit of it, +which went sorely against the grain; and I really believe your letter +this morning gave him great pleasure, because it required an explanation +that would rob him of his borrowed feathers, and give the praise where +it was due. But, Lizzy, this must go no farther than yourself, or Jane +at most. + +“You know pretty well, I suppose, what has been done for the young +people. His debts are to be paid, amounting, I believe, to considerably +more than a thousand pounds, another thousand in addition to her own +settled upon _her_, and his commission purchased. The reason why all +this was to be done by him alone, was such as I have given above. It +was owing to him, to his reserve and want of proper consideration, that +Wickham's character had been so misunderstood, and consequently that he +had been received and noticed as he was. Perhaps there was some truth +in _this_; though I doubt whether _his_ reserve, or _anybody's_ reserve, +can be answerable for the event. But in spite of all this fine talking, +my dear Lizzy, you may rest perfectly assured that your uncle would +never have yielded, if we had not given him credit for _another +interest_ in the affair. + +“When all this was resolved on, he returned again to his friends, who +were still staying at Pemberley; but it was agreed that he should be in +London once more when the wedding took place, and all money matters were +then to receive the last finish. + +“I believe I have now told you every thing. It is a relation which +you tell me is to give you great surprise; I hope at least it will not +afford you any displeasure. Lydia came to us; and Wickham had constant +admission to the house. _He_ was exactly what he had been, when I +knew him in Hertfordshire; but I would not tell you how little I was +satisfied with her behaviour while she staid with us, if I had not +perceived, by Jane's letter last Wednesday, that her conduct on coming +home was exactly of a piece with it, and therefore what I now tell +you can give you no fresh pain. I talked to her repeatedly in the most +serious manner, representing to her all the wickedness of what she had +done, and all the unhappiness she had brought on her family. If she +heard me, it was by good luck, for I am sure she did not listen. I was +sometimes quite provoked, but then I recollected my dear Elizabeth and +Jane, and for their sakes had patience with her. + +“Mr. Darcy was punctual in his return, and as Lydia informed you, +attended the wedding. He dined with us the next day, and was to leave +town again on Wednesday or Thursday. Will you be very angry with me, my +dear Lizzy, if I take this opportunity of saying (what I was never bold +enough to say before) how much I like him. His behaviour to us has, +in every respect, been as pleasing as when we were in Derbyshire. His +understanding and opinions all please me; he wants nothing but a little +more liveliness, and _that_, if he marry _prudently_, his wife may teach +him. I thought him very sly;--he hardly ever mentioned your name. But +slyness seems the fashion. + +“Pray forgive me if I have been very presuming, or at least do not +punish me so far as to exclude me from P. I shall never be quite happy +till I have been all round the park. A low phaeton, with a nice little +pair of ponies, would be the very thing. + +“But I must write no more. The children have been wanting me this half +hour. + +“Yours, very sincerely, + +“M. GARDINER.” + +The contents of this letter threw Elizabeth into a flutter of spirits, +in which it was difficult to determine whether pleasure or pain bore the +greatest share. The vague and unsettled suspicions which uncertainty had +produced of what Mr. Darcy might have been doing to forward her sister's +match, which she had feared to encourage as an exertion of goodness too +great to be probable, and at the same time dreaded to be just, from the +pain of obligation, were proved beyond their greatest extent to be true! +He had followed them purposely to town, he had taken on himself all +the trouble and mortification attendant on such a research; in which +supplication had been necessary to a woman whom he must abominate and +despise, and where he was reduced to meet, frequently meet, reason +with, persuade, and finally bribe, the man whom he always most wished to +avoid, and whose very name it was punishment to him to pronounce. He had +done all this for a girl whom he could neither regard nor esteem. Her +heart did whisper that he had done it for her. But it was a hope shortly +checked by other considerations, and she soon felt that even her vanity +was insufficient, when required to depend on his affection for her--for +a woman who had already refused him--as able to overcome a sentiment so +natural as abhorrence against relationship with Wickham. Brother-in-law +of Wickham! Every kind of pride must revolt from the connection. He had, +to be sure, done much. She was ashamed to think how much. But he had +given a reason for his interference, which asked no extraordinary +stretch of belief. It was reasonable that he should feel he had been +wrong; he had liberality, and he had the means of exercising it; and +though she would not place herself as his principal inducement, she +could, perhaps, believe that remaining partiality for her might assist +his endeavours in a cause where her peace of mind must be materially +concerned. It was painful, exceedingly painful, to know that they were +under obligations to a person who could never receive a return. They +owed the restoration of Lydia, her character, every thing, to him. Oh! +how heartily did she grieve over every ungracious sensation she had ever +encouraged, every saucy speech she had ever directed towards him. For +herself she was humbled; but she was proud of him. Proud that in a cause +of compassion and honour, he had been able to get the better of himself. +She read over her aunt's commendation of him again and again. It +was hardly enough; but it pleased her. She was even sensible of some +pleasure, though mixed with regret, on finding how steadfastly both she +and her uncle had been persuaded that affection and confidence subsisted +between Mr. Darcy and herself. + +She was roused from her seat, and her reflections, by some one's +approach; and before she could strike into another path, she was +overtaken by Wickham. + +“I am afraid I interrupt your solitary ramble, my dear sister?” said he, +as he joined her. + +“You certainly do,” she replied with a smile; “but it does not follow +that the interruption must be unwelcome.” + +“I should be sorry indeed, if it were. We were always good friends; and +now we are better.” + +“True. Are the others coming out?” + +“I do not know. Mrs. Bennet and Lydia are going in the carriage to +Meryton. And so, my dear sister, I find, from our uncle and aunt, that +you have actually seen Pemberley.” + +She replied in the affirmative. + +“I almost envy you the pleasure, and yet I believe it would be too much +for me, or else I could take it in my way to Newcastle. And you saw the +old housekeeper, I suppose? Poor Reynolds, she was always very fond of +me. But of course she did not mention my name to you.” + +“Yes, she did.” + +“And what did she say?” + +“That you were gone into the army, and she was afraid had--not turned +out well. At such a distance as _that_, you know, things are strangely +misrepresented.” + +“Certainly,” he replied, biting his lips. Elizabeth hoped she had +silenced him; but he soon afterwards said: + +“I was surprised to see Darcy in town last month. We passed each other +several times. I wonder what he can be doing there.” + +“Perhaps preparing for his marriage with Miss de Bourgh,” said +Elizabeth. “It must be something particular, to take him there at this +time of year.” + +“Undoubtedly. Did you see him while you were at Lambton? I thought I +understood from the Gardiners that you had.” + +“Yes; he introduced us to his sister.” + +“And do you like her?” + +“Very much.” + +“I have heard, indeed, that she is uncommonly improved within this year +or two. When I last saw her, she was not very promising. I am very glad +you liked her. I hope she will turn out well.” + +“I dare say she will; she has got over the most trying age.” + +“Did you go by the village of Kympton?” + +“I do not recollect that we did.” + +“I mention it, because it is the living which I ought to have had. A +most delightful place!--Excellent Parsonage House! It would have suited +me in every respect.” + +“How should you have liked making sermons?” + +“Exceedingly well. I should have considered it as part of my duty, +and the exertion would soon have been nothing. One ought not to +repine;--but, to be sure, it would have been such a thing for me! The +quiet, the retirement of such a life would have answered all my ideas +of happiness! But it was not to be. Did you ever hear Darcy mention the +circumstance, when you were in Kent?” + +“I have heard from authority, which I thought _as good_, that it was +left you conditionally only, and at the will of the present patron.” + +“You have. Yes, there was something in _that_; I told you so from the +first, you may remember.” + +“I _did_ hear, too, that there was a time, when sermon-making was not +so palatable to you as it seems to be at present; that you actually +declared your resolution of never taking orders, and that the business +had been compromised accordingly.” + +“You did! and it was not wholly without foundation. You may remember +what I told you on that point, when first we talked of it.” + +They were now almost at the door of the house, for she had walked fast +to get rid of him; and unwilling, for her sister's sake, to provoke him, +she only said in reply, with a good-humoured smile: + +“Come, Mr. Wickham, we are brother and sister, you know. Do not let +us quarrel about the past. In future, I hope we shall be always of one +mind.” + +She held out her hand; he kissed it with affectionate gallantry, though +he hardly knew how to look, and they entered the house. + + + +Chapter 53 + + +Mr. Wickham was so perfectly satisfied with this conversation that he +never again distressed himself, or provoked his dear sister Elizabeth, +by introducing the subject of it; and she was pleased to find that she +had said enough to keep him quiet. + +The day of his and Lydia's departure soon came, and Mrs. Bennet was +forced to submit to a separation, which, as her husband by no means +entered into her scheme of their all going to Newcastle, was likely to +continue at least a twelvemonth. + +“Oh! my dear Lydia,” she cried, “when shall we meet again?” + +“Oh, lord! I don't know. Not these two or three years, perhaps.” + +“Write to me very often, my dear.” + +“As often as I can. But you know married women have never much time for +writing. My sisters may write to _me_. They will have nothing else to +do.” + +Mr. Wickham's adieus were much more affectionate than his wife's. He +smiled, looked handsome, and said many pretty things. + +“He is as fine a fellow,” said Mr. Bennet, as soon as they were out of +the house, “as ever I saw. He simpers, and smirks, and makes love to +us all. I am prodigiously proud of him. I defy even Sir William Lucas +himself to produce a more valuable son-in-law.” + +The loss of her daughter made Mrs. Bennet very dull for several days. + +“I often think,” said she, “that there is nothing so bad as parting with +one's friends. One seems so forlorn without them.” + +“This is the consequence, you see, Madam, of marrying a daughter,” said +Elizabeth. “It must make you better satisfied that your other four are +single.” + +“It is no such thing. Lydia does not leave me because she is married, +but only because her husband's regiment happens to be so far off. If +that had been nearer, she would not have gone so soon.” + +But the spiritless condition which this event threw her into was shortly +relieved, and her mind opened again to the agitation of hope, by an +article of news which then began to be in circulation. The housekeeper +at Netherfield had received orders to prepare for the arrival of her +master, who was coming down in a day or two, to shoot there for several +weeks. Mrs. Bennet was quite in the fidgets. She looked at Jane, and +smiled and shook her head by turns. + +“Well, well, and so Mr. Bingley is coming down, sister,” (for Mrs. +Phillips first brought her the news). “Well, so much the better. Not +that I care about it, though. He is nothing to us, you know, and I am +sure _I_ never want to see him again. But, however, he is very welcome +to come to Netherfield, if he likes it. And who knows what _may_ happen? +But that is nothing to us. You know, sister, we agreed long ago never to +mention a word about it. And so, is it quite certain he is coming?” + +“You may depend on it,” replied the other, “for Mrs. Nicholls was in +Meryton last night; I saw her passing by, and went out myself on purpose +to know the truth of it; and she told me that it was certain true. He +comes down on Thursday at the latest, very likely on Wednesday. She was +going to the butcher's, she told me, on purpose to order in some meat on +Wednesday, and she has got three couple of ducks just fit to be killed.” + +Miss Bennet had not been able to hear of his coming without changing +colour. It was many months since she had mentioned his name to +Elizabeth; but now, as soon as they were alone together, she said: + +“I saw you look at me to-day, Lizzy, when my aunt told us of the present +report; and I know I appeared distressed. But don't imagine it was from +any silly cause. I was only confused for the moment, because I felt that +I _should_ be looked at. I do assure you that the news does not affect +me either with pleasure or pain. I am glad of one thing, that he comes +alone; because we shall see the less of him. Not that I am afraid of +_myself_, but I dread other people's remarks.” + +Elizabeth did not know what to make of it. Had she not seen him in +Derbyshire, she might have supposed him capable of coming there with no +other view than what was acknowledged; but she still thought him partial +to Jane, and she wavered as to the greater probability of his coming +there _with_ his friend's permission, or being bold enough to come +without it. + +“Yet it is hard,” she sometimes thought, “that this poor man cannot +come to a house which he has legally hired, without raising all this +speculation! I _will_ leave him to himself.” + +In spite of what her sister declared, and really believed to be her +feelings in the expectation of his arrival, Elizabeth could easily +perceive that her spirits were affected by it. They were more disturbed, +more unequal, than she had often seen them. + +The subject which had been so warmly canvassed between their parents, +about a twelvemonth ago, was now brought forward again. + +“As soon as ever Mr. Bingley comes, my dear,” said Mrs. Bennet, “you +will wait on him of course.” + +“No, no. You forced me into visiting him last year, and promised, if I +went to see him, he should marry one of my daughters. But it ended in +nothing, and I will not be sent on a fool's errand again.” + +His wife represented to him how absolutely necessary such an attention +would be from all the neighbouring gentlemen, on his returning to +Netherfield. + +“'Tis an etiquette I despise,” said he. “If he wants our society, +let him seek it. He knows where we live. I will not spend my hours +in running after my neighbours every time they go away and come back +again.” + +“Well, all I know is, that it will be abominably rude if you do not wait +on him. But, however, that shan't prevent my asking him to dine here, I +am determined. We must have Mrs. Long and the Gouldings soon. That will +make thirteen with ourselves, so there will be just room at table for +him.” + +Consoled by this resolution, she was the better able to bear her +husband's incivility; though it was very mortifying to know that her +neighbours might all see Mr. Bingley, in consequence of it, before +_they_ did. As the day of his arrival drew near,-- + +“I begin to be sorry that he comes at all,” said Jane to her sister. “It +would be nothing; I could see him with perfect indifference, but I can +hardly bear to hear it thus perpetually talked of. My mother means well; +but she does not know, no one can know, how much I suffer from what she +says. Happy shall I be, when his stay at Netherfield is over!” + +“I wish I could say anything to comfort you,” replied Elizabeth; “but it +is wholly out of my power. You must feel it; and the usual satisfaction +of preaching patience to a sufferer is denied me, because you have +always so much.” + +Mr. Bingley arrived. Mrs. Bennet, through the assistance of servants, +contrived to have the earliest tidings of it, that the period of anxiety +and fretfulness on her side might be as long as it could. She counted +the days that must intervene before their invitation could be sent; +hopeless of seeing him before. But on the third morning after his +arrival in Hertfordshire, she saw him, from her dressing-room window, +enter the paddock and ride towards the house. + +Her daughters were eagerly called to partake of her joy. Jane resolutely +kept her place at the table; but Elizabeth, to satisfy her mother, went +to the window--she looked,--she saw Mr. Darcy with him, and sat down +again by her sister. + +“There is a gentleman with him, mamma,” said Kitty; “who can it be?” + +“Some acquaintance or other, my dear, I suppose; I am sure I do not +know.” + +“La!” replied Kitty, “it looks just like that man that used to be with +him before. Mr. what's-his-name. That tall, proud man.” + +“Good gracious! Mr. Darcy!--and so it does, I vow. Well, any friend of +Mr. Bingley's will always be welcome here, to be sure; but else I must +say that I hate the very sight of him.” + +Jane looked at Elizabeth with surprise and concern. She knew but little +of their meeting in Derbyshire, and therefore felt for the awkwardness +which must attend her sister, in seeing him almost for the first time +after receiving his explanatory letter. Both sisters were uncomfortable +enough. Each felt for the other, and of course for themselves; and their +mother talked on, of her dislike of Mr. Darcy, and her resolution to be +civil to him only as Mr. Bingley's friend, without being heard by either +of them. But Elizabeth had sources of uneasiness which could not be +suspected by Jane, to whom she had never yet had courage to shew Mrs. +Gardiner's letter, or to relate her own change of sentiment towards him. +To Jane, he could be only a man whose proposals she had refused, +and whose merit she had undervalued; but to her own more extensive +information, he was the person to whom the whole family were indebted +for the first of benefits, and whom she regarded herself with an +interest, if not quite so tender, at least as reasonable and just as +what Jane felt for Bingley. Her astonishment at his coming--at his +coming to Netherfield, to Longbourn, and voluntarily seeking her again, +was almost equal to what she had known on first witnessing his altered +behaviour in Derbyshire. + +The colour which had been driven from her face, returned for half a +minute with an additional glow, and a smile of delight added lustre to +her eyes, as she thought for that space of time that his affection and +wishes must still be unshaken. But she would not be secure. + +“Let me first see how he behaves,” said she; “it will then be early +enough for expectation.” + +She sat intently at work, striving to be composed, and without daring to +lift up her eyes, till anxious curiosity carried them to the face of +her sister as the servant was approaching the door. Jane looked a little +paler than usual, but more sedate than Elizabeth had expected. On the +gentlemen's appearing, her colour increased; yet she received them with +tolerable ease, and with a propriety of behaviour equally free from any +symptom of resentment or any unnecessary complaisance. + +Elizabeth said as little to either as civility would allow, and sat down +again to her work, with an eagerness which it did not often command. She +had ventured only one glance at Darcy. He looked serious, as usual; and, +she thought, more as he had been used to look in Hertfordshire, than as +she had seen him at Pemberley. But, perhaps he could not in her mother's +presence be what he was before her uncle and aunt. It was a painful, but +not an improbable, conjecture. + +Bingley, she had likewise seen for an instant, and in that short period +saw him looking both pleased and embarrassed. He was received by Mrs. +Bennet with a degree of civility which made her two daughters ashamed, +especially when contrasted with the cold and ceremonious politeness of +her curtsey and address to his friend. + +Elizabeth, particularly, who knew that her mother owed to the latter +the preservation of her favourite daughter from irremediable infamy, +was hurt and distressed to a most painful degree by a distinction so ill +applied. + +Darcy, after inquiring of her how Mr. and Mrs. Gardiner did, a question +which she could not answer without confusion, said scarcely anything. He +was not seated by her; perhaps that was the reason of his silence; but +it had not been so in Derbyshire. There he had talked to her friends, +when he could not to herself. But now several minutes elapsed without +bringing the sound of his voice; and when occasionally, unable to resist +the impulse of curiosity, she raised her eyes to his face, she as often +found him looking at Jane as at herself, and frequently on no object but +the ground. More thoughtfulness and less anxiety to please, than when +they last met, were plainly expressed. She was disappointed, and angry +with herself for being so. + +“Could I expect it to be otherwise!” said she. “Yet why did he come?” + +She was in no humour for conversation with anyone but himself; and to +him she had hardly courage to speak. + +She inquired after his sister, but could do no more. + +“It is a long time, Mr. Bingley, since you went away,” said Mrs. Bennet. + +He readily agreed to it. + +“I began to be afraid you would never come back again. People _did_ say +you meant to quit the place entirely at Michaelmas; but, however, I hope +it is not true. A great many changes have happened in the neighbourhood, +since you went away. Miss Lucas is married and settled. And one of my +own daughters. I suppose you have heard of it; indeed, you must have +seen it in the papers. It was in The Times and The Courier, I know; +though it was not put in as it ought to be. It was only said, 'Lately, +George Wickham, Esq. to Miss Lydia Bennet,' without there being a +syllable said of her father, or the place where she lived, or anything. +It was my brother Gardiner's drawing up too, and I wonder how he came to +make such an awkward business of it. Did you see it?” + +Bingley replied that he did, and made his congratulations. Elizabeth +dared not lift up her eyes. How Mr. Darcy looked, therefore, she could +not tell. + +“It is a delightful thing, to be sure, to have a daughter well married,” + continued her mother, “but at the same time, Mr. Bingley, it is very +hard to have her taken such a way from me. They are gone down to +Newcastle, a place quite northward, it seems, and there they are to stay +I do not know how long. His regiment is there; for I suppose you have +heard of his leaving the ----shire, and of his being gone into the +regulars. Thank Heaven! he has _some_ friends, though perhaps not so +many as he deserves.” + +Elizabeth, who knew this to be levelled at Mr. Darcy, was in such +misery of shame, that she could hardly keep her seat. It drew from her, +however, the exertion of speaking, which nothing else had so effectually +done before; and she asked Bingley whether he meant to make any stay in +the country at present. A few weeks, he believed. + +“When you have killed all your own birds, Mr. Bingley,” said her mother, +“I beg you will come here, and shoot as many as you please on Mr. +Bennet's manor. I am sure he will be vastly happy to oblige you, and +will save all the best of the covies for you.” + +Elizabeth's misery increased, at such unnecessary, such officious +attention! Were the same fair prospect to arise at present as had +flattered them a year ago, every thing, she was persuaded, would be +hastening to the same vexatious conclusion. At that instant, she felt +that years of happiness could not make Jane or herself amends for +moments of such painful confusion. + +“The first wish of my heart,” said she to herself, “is never more to +be in company with either of them. Their society can afford no pleasure +that will atone for such wretchedness as this! Let me never see either +one or the other again!” + +Yet the misery, for which years of happiness were to offer no +compensation, received soon afterwards material relief, from observing +how much the beauty of her sister re-kindled the admiration of her +former lover. When first he came in, he had spoken to her but little; +but every five minutes seemed to be giving her more of his attention. He +found her as handsome as she had been last year; as good natured, and +as unaffected, though not quite so chatty. Jane was anxious that no +difference should be perceived in her at all, and was really persuaded +that she talked as much as ever. But her mind was so busily engaged, +that she did not always know when she was silent. + +When the gentlemen rose to go away, Mrs. Bennet was mindful of her +intended civility, and they were invited and engaged to dine at +Longbourn in a few days time. + +“You are quite a visit in my debt, Mr. Bingley,” she added, “for when +you went to town last winter, you promised to take a family dinner with +us, as soon as you returned. I have not forgot, you see; and I assure +you, I was very much disappointed that you did not come back and keep +your engagement.” + +Bingley looked a little silly at this reflection, and said something of +his concern at having been prevented by business. They then went away. + +Mrs. Bennet had been strongly inclined to ask them to stay and dine +there that day; but, though she always kept a very good table, she did +not think anything less than two courses could be good enough for a man +on whom she had such anxious designs, or satisfy the appetite and pride +of one who had ten thousand a year. + + + +Chapter 54 + + +As soon as they were gone, Elizabeth walked out to recover her spirits; +or in other words, to dwell without interruption on those subjects that +must deaden them more. Mr. Darcy's behaviour astonished and vexed her. + +“Why, if he came only to be silent, grave, and indifferent,” said she, +“did he come at all?” + +She could settle it in no way that gave her pleasure. + +“He could be still amiable, still pleasing, to my uncle and aunt, when +he was in town; and why not to me? If he fears me, why come hither? If +he no longer cares for me, why silent? Teasing, teasing, man! I will +think no more about him.” + +Her resolution was for a short time involuntarily kept by the approach +of her sister, who joined her with a cheerful look, which showed her +better satisfied with their visitors, than Elizabeth. + +“Now,” said she, “that this first meeting is over, I feel perfectly +easy. I know my own strength, and I shall never be embarrassed again by +his coming. I am glad he dines here on Tuesday. It will then be publicly +seen that, on both sides, we meet only as common and indifferent +acquaintance.” + +“Yes, very indifferent indeed,” said Elizabeth, laughingly. “Oh, Jane, +take care.” + +“My dear Lizzy, you cannot think me so weak, as to be in danger now?” + +“I think you are in very great danger of making him as much in love with +you as ever.” + + * * * * * + +They did not see the gentlemen again till Tuesday; and Mrs. Bennet, in +the meanwhile, was giving way to all the happy schemes, which the good +humour and common politeness of Bingley, in half an hour's visit, had +revived. + +On Tuesday there was a large party assembled at Longbourn; and the two +who were most anxiously expected, to the credit of their punctuality +as sportsmen, were in very good time. When they repaired to the +dining-room, Elizabeth eagerly watched to see whether Bingley would take +the place, which, in all their former parties, had belonged to him, by +her sister. Her prudent mother, occupied by the same ideas, forbore +to invite him to sit by herself. On entering the room, he seemed to +hesitate; but Jane happened to look round, and happened to smile: it was +decided. He placed himself by her. + +Elizabeth, with a triumphant sensation, looked towards his friend. +He bore it with noble indifference, and she would have imagined that +Bingley had received his sanction to be happy, had she not seen his eyes +likewise turned towards Mr. Darcy, with an expression of half-laughing +alarm. + +His behaviour to her sister was such, during dinner time, as showed an +admiration of her, which, though more guarded than formerly, persuaded +Elizabeth, that if left wholly to himself, Jane's happiness, and his +own, would be speedily secured. Though she dared not depend upon the +consequence, she yet received pleasure from observing his behaviour. It +gave her all the animation that her spirits could boast; for she was in +no cheerful humour. Mr. Darcy was almost as far from her as the table +could divide them. He was on one side of her mother. She knew how little +such a situation would give pleasure to either, or make either appear to +advantage. She was not near enough to hear any of their discourse, but +she could see how seldom they spoke to each other, and how formal and +cold was their manner whenever they did. Her mother's ungraciousness, +made the sense of what they owed him more painful to Elizabeth's mind; +and she would, at times, have given anything to be privileged to tell +him that his kindness was neither unknown nor unfelt by the whole of the +family. + +She was in hopes that the evening would afford some opportunity of +bringing them together; that the whole of the visit would not pass away +without enabling them to enter into something more of conversation than +the mere ceremonious salutation attending his entrance. Anxious +and uneasy, the period which passed in the drawing-room, before the +gentlemen came, was wearisome and dull to a degree that almost made her +uncivil. She looked forward to their entrance as the point on which all +her chance of pleasure for the evening must depend. + +“If he does not come to me, _then_,” said she, “I shall give him up for +ever.” + +The gentlemen came; and she thought he looked as if he would have +answered her hopes; but, alas! the ladies had crowded round the table, +where Miss Bennet was making tea, and Elizabeth pouring out the coffee, +in so close a confederacy that there was not a single vacancy near her +which would admit of a chair. And on the gentlemen's approaching, one of +the girls moved closer to her than ever, and said, in a whisper: + +“The men shan't come and part us, I am determined. We want none of them; +do we?” + +Darcy had walked away to another part of the room. She followed him with +her eyes, envied everyone to whom he spoke, had scarcely patience enough +to help anybody to coffee; and then was enraged against herself for +being so silly! + +“A man who has once been refused! How could I ever be foolish enough to +expect a renewal of his love? Is there one among the sex, who would not +protest against such a weakness as a second proposal to the same woman? +There is no indignity so abhorrent to their feelings!” + +She was a little revived, however, by his bringing back his coffee cup +himself; and she seized the opportunity of saying: + +“Is your sister at Pemberley still?” + +“Yes, she will remain there till Christmas.” + +“And quite alone? Have all her friends left her?” + +“Mrs. Annesley is with her. The others have been gone on to Scarborough, +these three weeks.” + +She could think of nothing more to say; but if he wished to converse +with her, he might have better success. He stood by her, however, for +some minutes, in silence; and, at last, on the young lady's whispering +to Elizabeth again, he walked away. + +When the tea-things were removed, and the card-tables placed, the ladies +all rose, and Elizabeth was then hoping to be soon joined by him, +when all her views were overthrown by seeing him fall a victim to her +mother's rapacity for whist players, and in a few moments after seated +with the rest of the party. She now lost every expectation of pleasure. +They were confined for the evening at different tables, and she had +nothing to hope, but that his eyes were so often turned towards her side +of the room, as to make him play as unsuccessfully as herself. + +Mrs. Bennet had designed to keep the two Netherfield gentlemen to +supper; but their carriage was unluckily ordered before any of the +others, and she had no opportunity of detaining them. + +“Well girls,” said she, as soon as they were left to themselves, “What +say you to the day? I think every thing has passed off uncommonly well, +I assure you. The dinner was as well dressed as any I ever saw. The +venison was roasted to a turn--and everybody said they never saw so +fat a haunch. The soup was fifty times better than what we had at the +Lucases' last week; and even Mr. Darcy acknowledged, that the partridges +were remarkably well done; and I suppose he has two or three French +cooks at least. And, my dear Jane, I never saw you look in greater +beauty. Mrs. Long said so too, for I asked her whether you did not. And +what do you think she said besides? 'Ah! Mrs. Bennet, we shall have her +at Netherfield at last.' She did indeed. I do think Mrs. Long is as good +a creature as ever lived--and her nieces are very pretty behaved girls, +and not at all handsome: I like them prodigiously.” + +Mrs. Bennet, in short, was in very great spirits; she had seen enough of +Bingley's behaviour to Jane, to be convinced that she would get him at +last; and her expectations of advantage to her family, when in a happy +humour, were so far beyond reason, that she was quite disappointed at +not seeing him there again the next day, to make his proposals. + +“It has been a very agreeable day,” said Miss Bennet to Elizabeth. “The +party seemed so well selected, so suitable one with the other. I hope we +may often meet again.” + +Elizabeth smiled. + +“Lizzy, you must not do so. You must not suspect me. It mortifies me. +I assure you that I have now learnt to enjoy his conversation as an +agreeable and sensible young man, without having a wish beyond it. I am +perfectly satisfied, from what his manners now are, that he never had +any design of engaging my affection. It is only that he is blessed +with greater sweetness of address, and a stronger desire of generally +pleasing, than any other man.” + +“You are very cruel,” said her sister, “you will not let me smile, and +are provoking me to it every moment.” + +“How hard it is in some cases to be believed!” + +“And how impossible in others!” + +“But why should you wish to persuade me that I feel more than I +acknowledge?” + +“That is a question which I hardly know how to answer. We all love to +instruct, though we can teach only what is not worth knowing. Forgive +me; and if you persist in indifference, do not make me your confidante.” + + + +Chapter 55 + + +A few days after this visit, Mr. Bingley called again, and alone. His +friend had left him that morning for London, but was to return home in +ten days time. He sat with them above an hour, and was in remarkably +good spirits. Mrs. Bennet invited him to dine with them; but, with many +expressions of concern, he confessed himself engaged elsewhere. + +“Next time you call,” said she, “I hope we shall be more lucky.” + +He should be particularly happy at any time, etc. etc.; and if she would +give him leave, would take an early opportunity of waiting on them. + +“Can you come to-morrow?” + +Yes, he had no engagement at all for to-morrow; and her invitation was +accepted with alacrity. + +He came, and in such very good time that the ladies were none of them +dressed. In ran Mrs. Bennet to her daughter's room, in her dressing +gown, and with her hair half finished, crying out: + +“My dear Jane, make haste and hurry down. He is come--Mr. Bingley is +come. He is, indeed. Make haste, make haste. Here, Sarah, come to Miss +Bennet this moment, and help her on with her gown. Never mind Miss +Lizzy's hair.” + +“We will be down as soon as we can,” said Jane; “but I dare say Kitty is +forwarder than either of us, for she went up stairs half an hour ago.” + +“Oh! hang Kitty! what has she to do with it? Come be quick, be quick! +Where is your sash, my dear?” + +But when her mother was gone, Jane would not be prevailed on to go down +without one of her sisters. + +The same anxiety to get them by themselves was visible again in the +evening. After tea, Mr. Bennet retired to the library, as was his +custom, and Mary went up stairs to her instrument. Two obstacles of +the five being thus removed, Mrs. Bennet sat looking and winking at +Elizabeth and Catherine for a considerable time, without making any +impression on them. Elizabeth would not observe her; and when at last +Kitty did, she very innocently said, “What is the matter mamma? What do +you keep winking at me for? What am I to do?” + +“Nothing child, nothing. I did not wink at you.” She then sat still +five minutes longer; but unable to waste such a precious occasion, she +suddenly got up, and saying to Kitty, “Come here, my love, I want to +speak to you,” took her out of the room. Jane instantly gave a look +at Elizabeth which spoke her distress at such premeditation, and her +entreaty that _she_ would not give in to it. In a few minutes, Mrs. +Bennet half-opened the door and called out: + +“Lizzy, my dear, I want to speak with you.” + +Elizabeth was forced to go. + +“We may as well leave them by themselves you know;” said her mother, as +soon as she was in the hall. “Kitty and I are going up stairs to sit in +my dressing-room.” + +Elizabeth made no attempt to reason with her mother, but remained +quietly in the hall, till she and Kitty were out of sight, then returned +into the drawing-room. + +Mrs. Bennet's schemes for this day were ineffectual. Bingley was every +thing that was charming, except the professed lover of her daughter. His +ease and cheerfulness rendered him a most agreeable addition to their +evening party; and he bore with the ill-judged officiousness of the +mother, and heard all her silly remarks with a forbearance and command +of countenance particularly grateful to the daughter. + +He scarcely needed an invitation to stay supper; and before he went +away, an engagement was formed, chiefly through his own and Mrs. +Bennet's means, for his coming next morning to shoot with her husband. + +After this day, Jane said no more of her indifference. Not a word passed +between the sisters concerning Bingley; but Elizabeth went to bed in +the happy belief that all must speedily be concluded, unless Mr. Darcy +returned within the stated time. Seriously, however, she felt tolerably +persuaded that all this must have taken place with that gentleman's +concurrence. + +Bingley was punctual to his appointment; and he and Mr. Bennet spent +the morning together, as had been agreed on. The latter was much more +agreeable than his companion expected. There was nothing of presumption +or folly in Bingley that could provoke his ridicule, or disgust him into +silence; and he was more communicative, and less eccentric, than the +other had ever seen him. Bingley of course returned with him to dinner; +and in the evening Mrs. Bennet's invention was again at work to get +every body away from him and her daughter. Elizabeth, who had a letter +to write, went into the breakfast room for that purpose soon after tea; +for as the others were all going to sit down to cards, she could not be +wanted to counteract her mother's schemes. + +But on returning to the drawing-room, when her letter was finished, she +saw, to her infinite surprise, there was reason to fear that her mother +had been too ingenious for her. On opening the door, she perceived her +sister and Bingley standing together over the hearth, as if engaged in +earnest conversation; and had this led to no suspicion, the faces of +both, as they hastily turned round and moved away from each other, would +have told it all. Their situation was awkward enough; but _hers_ she +thought was still worse. Not a syllable was uttered by either; and +Elizabeth was on the point of going away again, when Bingley, who as +well as the other had sat down, suddenly rose, and whispering a few +words to her sister, ran out of the room. + +Jane could have no reserves from Elizabeth, where confidence would give +pleasure; and instantly embracing her, acknowledged, with the liveliest +emotion, that she was the happiest creature in the world. + +“'Tis too much!” she added, “by far too much. I do not deserve it. Oh! +why is not everybody as happy?” + +Elizabeth's congratulations were given with a sincerity, a warmth, +a delight, which words could but poorly express. Every sentence of +kindness was a fresh source of happiness to Jane. But she would not +allow herself to stay with her sister, or say half that remained to be +said for the present. + +“I must go instantly to my mother;” she cried. “I would not on any +account trifle with her affectionate solicitude; or allow her to hear it +from anyone but myself. He is gone to my father already. Oh! Lizzy, to +know that what I have to relate will give such pleasure to all my dear +family! how shall I bear so much happiness!” + +She then hastened away to her mother, who had purposely broken up the +card party, and was sitting up stairs with Kitty. + +Elizabeth, who was left by herself, now smiled at the rapidity and ease +with which an affair was finally settled, that had given them so many +previous months of suspense and vexation. + +“And this,” said she, “is the end of all his friend's anxious +circumspection! of all his sister's falsehood and contrivance! the +happiest, wisest, most reasonable end!” + +In a few minutes she was joined by Bingley, whose conference with her +father had been short and to the purpose. + +“Where is your sister?” said he hastily, as he opened the door. + +“With my mother up stairs. She will be down in a moment, I dare say.” + +He then shut the door, and, coming up to her, claimed the good wishes +and affection of a sister. Elizabeth honestly and heartily expressed +her delight in the prospect of their relationship. They shook hands with +great cordiality; and then, till her sister came down, she had to listen +to all he had to say of his own happiness, and of Jane's perfections; +and in spite of his being a lover, Elizabeth really believed all his +expectations of felicity to be rationally founded, because they had for +basis the excellent understanding, and super-excellent disposition of +Jane, and a general similarity of feeling and taste between her and +himself. + +It was an evening of no common delight to them all; the satisfaction of +Miss Bennet's mind gave a glow of such sweet animation to her face, as +made her look handsomer than ever. Kitty simpered and smiled, and hoped +her turn was coming soon. Mrs. Bennet could not give her consent or +speak her approbation in terms warm enough to satisfy her feelings, +though she talked to Bingley of nothing else for half an hour; and when +Mr. Bennet joined them at supper, his voice and manner plainly showed +how really happy he was. + +Not a word, however, passed his lips in allusion to it, till their +visitor took his leave for the night; but as soon as he was gone, he +turned to his daughter, and said: + +“Jane, I congratulate you. You will be a very happy woman.” + +Jane went to him instantly, kissed him, and thanked him for his +goodness. + +“You are a good girl;” he replied, “and I have great pleasure in +thinking you will be so happily settled. I have not a doubt of your +doing very well together. Your tempers are by no means unlike. You are +each of you so complying, that nothing will ever be resolved on; so +easy, that every servant will cheat you; and so generous, that you will +always exceed your income.” + +“I hope not so. Imprudence or thoughtlessness in money matters would be +unpardonable in me.” + +“Exceed their income! My dear Mr. Bennet,” cried his wife, “what are you +talking of? Why, he has four or five thousand a year, and very likely +more.” Then addressing her daughter, “Oh! my dear, dear Jane, I am so +happy! I am sure I shan't get a wink of sleep all night. I knew how it +would be. I always said it must be so, at last. I was sure you could not +be so beautiful for nothing! I remember, as soon as ever I saw him, when +he first came into Hertfordshire last year, I thought how likely it was +that you should come together. Oh! he is the handsomest young man that +ever was seen!” + +Wickham, Lydia, were all forgotten. Jane was beyond competition her +favourite child. At that moment, she cared for no other. Her younger +sisters soon began to make interest with her for objects of happiness +which she might in future be able to dispense. + +Mary petitioned for the use of the library at Netherfield; and Kitty +begged very hard for a few balls there every winter. + +Bingley, from this time, was of course a daily visitor at Longbourn; +coming frequently before breakfast, and always remaining till after +supper; unless when some barbarous neighbour, who could not be enough +detested, had given him an invitation to dinner which he thought himself +obliged to accept. + +Elizabeth had now but little time for conversation with her sister; for +while he was present, Jane had no attention to bestow on anyone else; +but she found herself considerably useful to both of them in those hours +of separation that must sometimes occur. In the absence of Jane, he +always attached himself to Elizabeth, for the pleasure of talking of +her; and when Bingley was gone, Jane constantly sought the same means of +relief. + +“He has made me so happy,” said she, one evening, “by telling me that he +was totally ignorant of my being in town last spring! I had not believed +it possible.” + +“I suspected as much,” replied Elizabeth. “But how did he account for +it?” + +“It must have been his sister's doing. They were certainly no friends to +his acquaintance with me, which I cannot wonder at, since he might have +chosen so much more advantageously in many respects. But when they see, +as I trust they will, that their brother is happy with me, they will +learn to be contented, and we shall be on good terms again; though we +can never be what we once were to each other.” + +“That is the most unforgiving speech,” said Elizabeth, “that I ever +heard you utter. Good girl! It would vex me, indeed, to see you again +the dupe of Miss Bingley's pretended regard.” + +“Would you believe it, Lizzy, that when he went to town last November, +he really loved me, and nothing but a persuasion of _my_ being +indifferent would have prevented his coming down again!” + +“He made a little mistake to be sure; but it is to the credit of his +modesty.” + +This naturally introduced a panegyric from Jane on his diffidence, and +the little value he put on his own good qualities. Elizabeth was pleased +to find that he had not betrayed the interference of his friend; for, +though Jane had the most generous and forgiving heart in the world, she +knew it was a circumstance which must prejudice her against him. + +“I am certainly the most fortunate creature that ever existed!” cried +Jane. “Oh! Lizzy, why am I thus singled from my family, and blessed +above them all! If I could but see _you_ as happy! If there _were_ but +such another man for you!” + +“If you were to give me forty such men, I never could be so happy as +you. Till I have your disposition, your goodness, I never can have your +happiness. No, no, let me shift for myself; and, perhaps, if I have very +good luck, I may meet with another Mr. Collins in time.” + +The situation of affairs in the Longbourn family could not be long a +secret. Mrs. Bennet was privileged to whisper it to Mrs. Phillips, +and she ventured, without any permission, to do the same by all her +neighbours in Meryton. + +The Bennets were speedily pronounced to be the luckiest family in the +world, though only a few weeks before, when Lydia had first run away, +they had been generally proved to be marked out for misfortune. + + + +Chapter 56 + + +One morning, about a week after Bingley's engagement with Jane had been +formed, as he and the females of the family were sitting together in the +dining-room, their attention was suddenly drawn to the window, by the +sound of a carriage; and they perceived a chaise and four driving up +the lawn. It was too early in the morning for visitors, and besides, the +equipage did not answer to that of any of their neighbours. The horses +were post; and neither the carriage, nor the livery of the servant who +preceded it, were familiar to them. As it was certain, however, that +somebody was coming, Bingley instantly prevailed on Miss Bennet to avoid +the confinement of such an intrusion, and walk away with him into the +shrubbery. They both set off, and the conjectures of the remaining three +continued, though with little satisfaction, till the door was thrown +open and their visitor entered. It was Lady Catherine de Bourgh. + +They were of course all intending to be surprised; but their +astonishment was beyond their expectation; and on the part of Mrs. +Bennet and Kitty, though she was perfectly unknown to them, even +inferior to what Elizabeth felt. + +She entered the room with an air more than usually ungracious, made no +other reply to Elizabeth's salutation than a slight inclination of the +head, and sat down without saying a word. Elizabeth had mentioned her +name to her mother on her ladyship's entrance, though no request of +introduction had been made. + +Mrs. Bennet, all amazement, though flattered by having a guest of such +high importance, received her with the utmost politeness. After sitting +for a moment in silence, she said very stiffly to Elizabeth, + +“I hope you are well, Miss Bennet. That lady, I suppose, is your +mother.” + +Elizabeth replied very concisely that she was. + +“And _that_ I suppose is one of your sisters.” + +“Yes, madam,” said Mrs. Bennet, delighted to speak to Lady Catherine. +“She is my youngest girl but one. My youngest of all is lately married, +and my eldest is somewhere about the grounds, walking with a young man +who, I believe, will soon become a part of the family.” + +“You have a very small park here,” returned Lady Catherine after a short +silence. + +“It is nothing in comparison of Rosings, my lady, I dare say; but I +assure you it is much larger than Sir William Lucas's.” + +“This must be a most inconvenient sitting room for the evening, in +summer; the windows are full west.” + +Mrs. Bennet assured her that they never sat there after dinner, and then +added: + +“May I take the liberty of asking your ladyship whether you left Mr. and +Mrs. Collins well.” + +“Yes, very well. I saw them the night before last.” + +Elizabeth now expected that she would produce a letter for her from +Charlotte, as it seemed the only probable motive for her calling. But no +letter appeared, and she was completely puzzled. + +Mrs. Bennet, with great civility, begged her ladyship to take some +refreshment; but Lady Catherine very resolutely, and not very politely, +declined eating anything; and then, rising up, said to Elizabeth, + +“Miss Bennet, there seemed to be a prettyish kind of a little wilderness +on one side of your lawn. I should be glad to take a turn in it, if you +will favour me with your company.” + +“Go, my dear,” cried her mother, “and show her ladyship about the +different walks. I think she will be pleased with the hermitage.” + +Elizabeth obeyed, and running into her own room for her parasol, +attended her noble guest downstairs. As they passed through the +hall, Lady Catherine opened the doors into the dining-parlour and +drawing-room, and pronouncing them, after a short survey, to be decent +looking rooms, walked on. + +Her carriage remained at the door, and Elizabeth saw that her +waiting-woman was in it. They proceeded in silence along the gravel walk +that led to the copse; Elizabeth was determined to make no effort for +conversation with a woman who was now more than usually insolent and +disagreeable. + +“How could I ever think her like her nephew?” said she, as she looked in +her face. + +As soon as they entered the copse, Lady Catherine began in the following +manner:-- + +“You can be at no loss, Miss Bennet, to understand the reason of my +journey hither. Your own heart, your own conscience, must tell you why I +come.” + +Elizabeth looked with unaffected astonishment. + +“Indeed, you are mistaken, Madam. I have not been at all able to account +for the honour of seeing you here.” + +“Miss Bennet,” replied her ladyship, in an angry tone, “you ought to +know, that I am not to be trifled with. But however insincere _you_ may +choose to be, you shall not find _me_ so. My character has ever been +celebrated for its sincerity and frankness, and in a cause of such +moment as this, I shall certainly not depart from it. A report of a most +alarming nature reached me two days ago. I was told that not only your +sister was on the point of being most advantageously married, but that +you, that Miss Elizabeth Bennet, would, in all likelihood, be soon +afterwards united to my nephew, my own nephew, Mr. Darcy. Though I +_know_ it must be a scandalous falsehood, though I would not injure him +so much as to suppose the truth of it possible, I instantly resolved +on setting off for this place, that I might make my sentiments known to +you.” + +“If you believed it impossible to be true,” said Elizabeth, colouring +with astonishment and disdain, “I wonder you took the trouble of coming +so far. What could your ladyship propose by it?” + +“At once to insist upon having such a report universally contradicted.” + +“Your coming to Longbourn, to see me and my family,” said Elizabeth +coolly, “will be rather a confirmation of it; if, indeed, such a report +is in existence.” + +“If! Do you then pretend to be ignorant of it? Has it not been +industriously circulated by yourselves? Do you not know that such a +report is spread abroad?” + +“I never heard that it was.” + +“And can you likewise declare, that there is no foundation for it?” + +“I do not pretend to possess equal frankness with your ladyship. You may +ask questions which I shall not choose to answer.” + +“This is not to be borne. Miss Bennet, I insist on being satisfied. Has +he, has my nephew, made you an offer of marriage?” + +“Your ladyship has declared it to be impossible.” + +“It ought to be so; it must be so, while he retains the use of his +reason. But your arts and allurements may, in a moment of infatuation, +have made him forget what he owes to himself and to all his family. You +may have drawn him in.” + +“If I have, I shall be the last person to confess it.” + +“Miss Bennet, do you know who I am? I have not been accustomed to such +language as this. I am almost the nearest relation he has in the world, +and am entitled to know all his dearest concerns.” + +“But you are not entitled to know mine; nor will such behaviour as this, +ever induce me to be explicit.” + +“Let me be rightly understood. This match, to which you have the +presumption to aspire, can never take place. No, never. Mr. Darcy is +engaged to my daughter. Now what have you to say?” + +“Only this; that if he is so, you can have no reason to suppose he will +make an offer to me.” + +Lady Catherine hesitated for a moment, and then replied: + +“The engagement between them is of a peculiar kind. From their infancy, +they have been intended for each other. It was the favourite wish of +_his_ mother, as well as of hers. While in their cradles, we planned +the union: and now, at the moment when the wishes of both sisters would +be accomplished in their marriage, to be prevented by a young woman of +inferior birth, of no importance in the world, and wholly unallied to +the family! Do you pay no regard to the wishes of his friends? To his +tacit engagement with Miss de Bourgh? Are you lost to every feeling of +propriety and delicacy? Have you not heard me say that from his earliest +hours he was destined for his cousin?” + +“Yes, and I had heard it before. But what is that to me? If there is +no other objection to my marrying your nephew, I shall certainly not +be kept from it by knowing that his mother and aunt wished him to +marry Miss de Bourgh. You both did as much as you could in planning the +marriage. Its completion depended on others. If Mr. Darcy is neither +by honour nor inclination confined to his cousin, why is not he to make +another choice? And if I am that choice, why may not I accept him?” + +“Because honour, decorum, prudence, nay, interest, forbid it. Yes, +Miss Bennet, interest; for do not expect to be noticed by his family or +friends, if you wilfully act against the inclinations of all. You will +be censured, slighted, and despised, by everyone connected with him. +Your alliance will be a disgrace; your name will never even be mentioned +by any of us.” + +“These are heavy misfortunes,” replied Elizabeth. “But the wife of Mr. +Darcy must have such extraordinary sources of happiness necessarily +attached to her situation, that she could, upon the whole, have no cause +to repine.” + +“Obstinate, headstrong girl! I am ashamed of you! Is this your gratitude +for my attentions to you last spring? Is nothing due to me on that +score? Let us sit down. You are to understand, Miss Bennet, that I came +here with the determined resolution of carrying my purpose; nor will +I be dissuaded from it. I have not been used to submit to any person's +whims. I have not been in the habit of brooking disappointment.” + +“_That_ will make your ladyship's situation at present more pitiable; +but it will have no effect on me.” + +“I will not be interrupted. Hear me in silence. My daughter and my +nephew are formed for each other. They are descended, on the maternal +side, from the same noble line; and, on the father's, from respectable, +honourable, and ancient--though untitled--families. Their fortune on +both sides is splendid. They are destined for each other by the voice of +every member of their respective houses; and what is to divide them? +The upstart pretensions of a young woman without family, connections, +or fortune. Is this to be endured! But it must not, shall not be. If you +were sensible of your own good, you would not wish to quit the sphere in +which you have been brought up.” + +“In marrying your nephew, I should not consider myself as quitting that +sphere. He is a gentleman; I am a gentleman's daughter; so far we are +equal.” + +“True. You _are_ a gentleman's daughter. But who was your mother? +Who are your uncles and aunts? Do not imagine me ignorant of their +condition.” + +“Whatever my connections may be,” said Elizabeth, “if your nephew does +not object to them, they can be nothing to _you_.” + +“Tell me once for all, are you engaged to him?” + +Though Elizabeth would not, for the mere purpose of obliging Lady +Catherine, have answered this question, she could not but say, after a +moment's deliberation: + +“I am not.” + +Lady Catherine seemed pleased. + +“And will you promise me, never to enter into such an engagement?” + +“I will make no promise of the kind.” + +“Miss Bennet I am shocked and astonished. I expected to find a more +reasonable young woman. But do not deceive yourself into a belief that +I will ever recede. I shall not go away till you have given me the +assurance I require.” + +“And I certainly _never_ shall give it. I am not to be intimidated into +anything so wholly unreasonable. Your ladyship wants Mr. Darcy to marry +your daughter; but would my giving you the wished-for promise make their +marriage at all more probable? Supposing him to be attached to me, would +my refusing to accept his hand make him wish to bestow it on his cousin? +Allow me to say, Lady Catherine, that the arguments with which you have +supported this extraordinary application have been as frivolous as the +application was ill-judged. You have widely mistaken my character, if +you think I can be worked on by such persuasions as these. How far your +nephew might approve of your interference in his affairs, I cannot tell; +but you have certainly no right to concern yourself in mine. I must beg, +therefore, to be importuned no farther on the subject.” + +“Not so hasty, if you please. I have by no means done. To all the +objections I have already urged, I have still another to add. I am +no stranger to the particulars of your youngest sister's infamous +elopement. I know it all; that the young man's marrying her was a +patched-up business, at the expence of your father and uncles. And is +such a girl to be my nephew's sister? Is her husband, is the son of his +late father's steward, to be his brother? Heaven and earth!--of what are +you thinking? Are the shades of Pemberley to be thus polluted?” + +“You can now have nothing further to say,” she resentfully answered. +“You have insulted me in every possible method. I must beg to return to +the house.” + +And she rose as she spoke. Lady Catherine rose also, and they turned +back. Her ladyship was highly incensed. + +“You have no regard, then, for the honour and credit of my nephew! +Unfeeling, selfish girl! Do you not consider that a connection with you +must disgrace him in the eyes of everybody?” + +“Lady Catherine, I have nothing further to say. You know my sentiments.” + +“You are then resolved to have him?” + +“I have said no such thing. I am only resolved to act in that manner, +which will, in my own opinion, constitute my happiness, without +reference to _you_, or to any person so wholly unconnected with me.” + +“It is well. You refuse, then, to oblige me. You refuse to obey the +claims of duty, honour, and gratitude. You are determined to ruin him in +the opinion of all his friends, and make him the contempt of the world.” + +“Neither duty, nor honour, nor gratitude,” replied Elizabeth, “have any +possible claim on me, in the present instance. No principle of either +would be violated by my marriage with Mr. Darcy. And with regard to the +resentment of his family, or the indignation of the world, if the former +_were_ excited by his marrying me, it would not give me one moment's +concern--and the world in general would have too much sense to join in +the scorn.” + +“And this is your real opinion! This is your final resolve! Very well. +I shall now know how to act. Do not imagine, Miss Bennet, that your +ambition will ever be gratified. I came to try you. I hoped to find you +reasonable; but, depend upon it, I will carry my point.” + +In this manner Lady Catherine talked on, till they were at the door of +the carriage, when, turning hastily round, she added, “I take no leave +of you, Miss Bennet. I send no compliments to your mother. You deserve +no such attention. I am most seriously displeased.” + +Elizabeth made no answer; and without attempting to persuade her +ladyship to return into the house, walked quietly into it herself. She +heard the carriage drive away as she proceeded up stairs. Her mother +impatiently met her at the door of the dressing-room, to ask why Lady +Catherine would not come in again and rest herself. + +“She did not choose it,” said her daughter, “she would go.” + +“She is a very fine-looking woman! and her calling here was prodigiously +civil! for she only came, I suppose, to tell us the Collinses were +well. She is on her road somewhere, I dare say, and so, passing through +Meryton, thought she might as well call on you. I suppose she had +nothing particular to say to you, Lizzy?” + +Elizabeth was forced to give into a little falsehood here; for to +acknowledge the substance of their conversation was impossible. + + + +Chapter 57 + + +The discomposure of spirits which this extraordinary visit threw +Elizabeth into, could not be easily overcome; nor could she, for many +hours, learn to think of it less than incessantly. Lady Catherine, it +appeared, had actually taken the trouble of this journey from Rosings, +for the sole purpose of breaking off her supposed engagement with Mr. +Darcy. It was a rational scheme, to be sure! but from what the report +of their engagement could originate, Elizabeth was at a loss to imagine; +till she recollected that _his_ being the intimate friend of Bingley, +and _her_ being the sister of Jane, was enough, at a time when the +expectation of one wedding made everybody eager for another, to supply +the idea. She had not herself forgotten to feel that the marriage of her +sister must bring them more frequently together. And her neighbours +at Lucas Lodge, therefore (for through their communication with the +Collinses, the report, she concluded, had reached Lady Catherine), had +only set that down as almost certain and immediate, which she had looked +forward to as possible at some future time. + +In revolving Lady Catherine's expressions, however, she could not help +feeling some uneasiness as to the possible consequence of her persisting +in this interference. From what she had said of her resolution to +prevent their marriage, it occurred to Elizabeth that she must meditate +an application to her nephew; and how _he_ might take a similar +representation of the evils attached to a connection with her, she dared +not pronounce. She knew not the exact degree of his affection for his +aunt, or his dependence on her judgment, but it was natural to suppose +that he thought much higher of her ladyship than _she_ could do; and it +was certain that, in enumerating the miseries of a marriage with _one_, +whose immediate connections were so unequal to his own, his aunt would +address him on his weakest side. With his notions of dignity, he would +probably feel that the arguments, which to Elizabeth had appeared weak +and ridiculous, contained much good sense and solid reasoning. + +If he had been wavering before as to what he should do, which had often +seemed likely, the advice and entreaty of so near a relation might +settle every doubt, and determine him at once to be as happy as dignity +unblemished could make him. In that case he would return no more. Lady +Catherine might see him in her way through town; and his engagement to +Bingley of coming again to Netherfield must give way. + +“If, therefore, an excuse for not keeping his promise should come to his +friend within a few days,” she added, “I shall know how to understand +it. I shall then give over every expectation, every wish of his +constancy. If he is satisfied with only regretting me, when he might +have obtained my affections and hand, I shall soon cease to regret him +at all.” + + * * * * * + +The surprise of the rest of the family, on hearing who their visitor had +been, was very great; but they obligingly satisfied it, with the same +kind of supposition which had appeased Mrs. Bennet's curiosity; and +Elizabeth was spared from much teasing on the subject. + +The next morning, as she was going downstairs, she was met by her +father, who came out of his library with a letter in his hand. + +“Lizzy,” said he, “I was going to look for you; come into my room.” + +She followed him thither; and her curiosity to know what he had to +tell her was heightened by the supposition of its being in some manner +connected with the letter he held. It suddenly struck her that it +might be from Lady Catherine; and she anticipated with dismay all the +consequent explanations. + +She followed her father to the fire place, and they both sat down. He +then said, + +“I have received a letter this morning that has astonished me +exceedingly. As it principally concerns yourself, you ought to know its +contents. I did not know before, that I had two daughters on the brink +of matrimony. Let me congratulate you on a very important conquest.” + +The colour now rushed into Elizabeth's cheeks in the instantaneous +conviction of its being a letter from the nephew, instead of the aunt; +and she was undetermined whether most to be pleased that he explained +himself at all, or offended that his letter was not rather addressed to +herself; when her father continued: + +“You look conscious. Young ladies have great penetration in such matters +as these; but I think I may defy even _your_ sagacity, to discover the +name of your admirer. This letter is from Mr. Collins.” + +“From Mr. Collins! and what can _he_ have to say?” + +“Something very much to the purpose of course. He begins with +congratulations on the approaching nuptials of my eldest daughter, of +which, it seems, he has been told by some of the good-natured, gossiping +Lucases. I shall not sport with your impatience, by reading what he says +on that point. What relates to yourself, is as follows: 'Having thus +offered you the sincere congratulations of Mrs. Collins and myself on +this happy event, let me now add a short hint on the subject of another; +of which we have been advertised by the same authority. Your daughter +Elizabeth, it is presumed, will not long bear the name of Bennet, after +her elder sister has resigned it, and the chosen partner of her fate may +be reasonably looked up to as one of the most illustrious personages in +this land.' + +“Can you possibly guess, Lizzy, who is meant by this? 'This young +gentleman is blessed, in a peculiar way, with every thing the heart of +mortal can most desire,--splendid property, noble kindred, and extensive +patronage. Yet in spite of all these temptations, let me warn my cousin +Elizabeth, and yourself, of what evils you may incur by a precipitate +closure with this gentleman's proposals, which, of course, you will be +inclined to take immediate advantage of.' + +“Have you any idea, Lizzy, who this gentleman is? But now it comes out: + +“'My motive for cautioning you is as follows. We have reason to imagine +that his aunt, Lady Catherine de Bourgh, does not look on the match with +a friendly eye.' + +“_Mr. Darcy_, you see, is the man! Now, Lizzy, I think I _have_ +surprised you. Could he, or the Lucases, have pitched on any man within +the circle of our acquaintance, whose name would have given the lie +more effectually to what they related? Mr. Darcy, who never looks at any +woman but to see a blemish, and who probably never looked at you in his +life! It is admirable!” + +Elizabeth tried to join in her father's pleasantry, but could only force +one most reluctant smile. Never had his wit been directed in a manner so +little agreeable to her. + +“Are you not diverted?” + +“Oh! yes. Pray read on.” + +“'After mentioning the likelihood of this marriage to her ladyship last +night, she immediately, with her usual condescension, expressed what she +felt on the occasion; when it became apparent, that on the score of some +family objections on the part of my cousin, she would never give her +consent to what she termed so disgraceful a match. I thought it my duty +to give the speediest intelligence of this to my cousin, that she and +her noble admirer may be aware of what they are about, and not run +hastily into a marriage which has not been properly sanctioned.' Mr. +Collins moreover adds, 'I am truly rejoiced that my cousin Lydia's sad +business has been so well hushed up, and am only concerned that their +living together before the marriage took place should be so generally +known. I must not, however, neglect the duties of my station, or refrain +from declaring my amazement at hearing that you received the young +couple into your house as soon as they were married. It was an +encouragement of vice; and had I been the rector of Longbourn, I should +very strenuously have opposed it. You ought certainly to forgive them, +as a Christian, but never to admit them in your sight, or allow their +names to be mentioned in your hearing.' That is his notion of Christian +forgiveness! The rest of his letter is only about his dear Charlotte's +situation, and his expectation of a young olive-branch. But, Lizzy, you +look as if you did not enjoy it. You are not going to be _missish_, +I hope, and pretend to be affronted at an idle report. For what do we +live, but to make sport for our neighbours, and laugh at them in our +turn?” + +“Oh!” cried Elizabeth, “I am excessively diverted. But it is so +strange!” + +“Yes--_that_ is what makes it amusing. Had they fixed on any other man +it would have been nothing; but _his_ perfect indifference, and _your_ +pointed dislike, make it so delightfully absurd! Much as I abominate +writing, I would not give up Mr. Collins's correspondence for any +consideration. Nay, when I read a letter of his, I cannot help giving +him the preference even over Wickham, much as I value the impudence and +hypocrisy of my son-in-law. And pray, Lizzy, what said Lady Catherine +about this report? Did she call to refuse her consent?” + +To this question his daughter replied only with a laugh; and as it had +been asked without the least suspicion, she was not distressed by +his repeating it. Elizabeth had never been more at a loss to make her +feelings appear what they were not. It was necessary to laugh, when she +would rather have cried. Her father had most cruelly mortified her, by +what he said of Mr. Darcy's indifference, and she could do nothing but +wonder at such a want of penetration, or fear that perhaps, instead of +his seeing too little, she might have fancied too much. + + + +Chapter 58 + + +Instead of receiving any such letter of excuse from his friend, as +Elizabeth half expected Mr. Bingley to do, he was able to bring Darcy +with him to Longbourn before many days had passed after Lady Catherine's +visit. The gentlemen arrived early; and, before Mrs. Bennet had time +to tell him of their having seen his aunt, of which her daughter sat +in momentary dread, Bingley, who wanted to be alone with Jane, proposed +their all walking out. It was agreed to. Mrs. Bennet was not in the +habit of walking; Mary could never spare time; but the remaining five +set off together. Bingley and Jane, however, soon allowed the others +to outstrip them. They lagged behind, while Elizabeth, Kitty, and Darcy +were to entertain each other. Very little was said by either; Kitty +was too much afraid of him to talk; Elizabeth was secretly forming a +desperate resolution; and perhaps he might be doing the same. + +They walked towards the Lucases, because Kitty wished to call upon +Maria; and as Elizabeth saw no occasion for making it a general concern, +when Kitty left them she went boldly on with him alone. Now was the +moment for her resolution to be executed, and, while her courage was +high, she immediately said: + +“Mr. Darcy, I am a very selfish creature; and, for the sake of giving +relief to my own feelings, care not how much I may be wounding yours. I +can no longer help thanking you for your unexampled kindness to my +poor sister. Ever since I have known it, I have been most anxious to +acknowledge to you how gratefully I feel it. Were it known to the rest +of my family, I should not have merely my own gratitude to express.” + +“I am sorry, exceedingly sorry,” replied Darcy, in a tone of surprise +and emotion, “that you have ever been informed of what may, in a +mistaken light, have given you uneasiness. I did not think Mrs. Gardiner +was so little to be trusted.” + +“You must not blame my aunt. Lydia's thoughtlessness first betrayed to +me that you had been concerned in the matter; and, of course, I could +not rest till I knew the particulars. Let me thank you again and again, +in the name of all my family, for that generous compassion which induced +you to take so much trouble, and bear so many mortifications, for the +sake of discovering them.” + +“If you _will_ thank me,” he replied, “let it be for yourself alone. +That the wish of giving happiness to you might add force to the other +inducements which led me on, I shall not attempt to deny. But your +_family_ owe me nothing. Much as I respect them, I believe I thought +only of _you_.” + +Elizabeth was too much embarrassed to say a word. After a short pause, +her companion added, “You are too generous to trifle with me. If your +feelings are still what they were last April, tell me so at once. _My_ +affections and wishes are unchanged, but one word from you will silence +me on this subject for ever.” + +Elizabeth, feeling all the more than common awkwardness and anxiety of +his situation, now forced herself to speak; and immediately, though not +very fluently, gave him to understand that her sentiments had undergone +so material a change, since the period to which he alluded, as to make +her receive with gratitude and pleasure his present assurances. The +happiness which this reply produced, was such as he had probably never +felt before; and he expressed himself on the occasion as sensibly and as +warmly as a man violently in love can be supposed to do. Had Elizabeth +been able to encounter his eye, she might have seen how well the +expression of heartfelt delight, diffused over his face, became him; +but, though she could not look, she could listen, and he told her of +feelings, which, in proving of what importance she was to him, made his +affection every moment more valuable. + +They walked on, without knowing in what direction. There was too much to +be thought, and felt, and said, for attention to any other objects. She +soon learnt that they were indebted for their present good understanding +to the efforts of his aunt, who did call on him in her return through +London, and there relate her journey to Longbourn, its motive, and the +substance of her conversation with Elizabeth; dwelling emphatically on +every expression of the latter which, in her ladyship's apprehension, +peculiarly denoted her perverseness and assurance; in the belief that +such a relation must assist her endeavours to obtain that promise +from her nephew which she had refused to give. But, unluckily for her +ladyship, its effect had been exactly contrariwise. + +“It taught me to hope,” said he, “as I had scarcely ever allowed myself +to hope before. I knew enough of your disposition to be certain that, +had you been absolutely, irrevocably decided against me, you would have +acknowledged it to Lady Catherine, frankly and openly.” + +Elizabeth coloured and laughed as she replied, “Yes, you know enough +of my frankness to believe me capable of _that_. After abusing you so +abominably to your face, I could have no scruple in abusing you to all +your relations.” + +“What did you say of me, that I did not deserve? For, though your +accusations were ill-founded, formed on mistaken premises, my +behaviour to you at the time had merited the severest reproof. It was +unpardonable. I cannot think of it without abhorrence.” + +“We will not quarrel for the greater share of blame annexed to that +evening,” said Elizabeth. “The conduct of neither, if strictly examined, +will be irreproachable; but since then, we have both, I hope, improved +in civility.” + +“I cannot be so easily reconciled to myself. The recollection of what I +then said, of my conduct, my manners, my expressions during the whole of +it, is now, and has been many months, inexpressibly painful to me. Your +reproof, so well applied, I shall never forget: 'had you behaved in a +more gentlemanlike manner.' Those were your words. You know not, you can +scarcely conceive, how they have tortured me;--though it was some time, +I confess, before I was reasonable enough to allow their justice.” + +“I was certainly very far from expecting them to make so strong an +impression. I had not the smallest idea of their being ever felt in such +a way.” + +“I can easily believe it. You thought me then devoid of every proper +feeling, I am sure you did. The turn of your countenance I shall never +forget, as you said that I could not have addressed you in any possible +way that would induce you to accept me.” + +“Oh! do not repeat what I then said. These recollections will not do at +all. I assure you that I have long been most heartily ashamed of it.” + +Darcy mentioned his letter. “Did it,” said he, “did it soon make you +think better of me? Did you, on reading it, give any credit to its +contents?” + +She explained what its effect on her had been, and how gradually all her +former prejudices had been removed. + +“I knew,” said he, “that what I wrote must give you pain, but it was +necessary. I hope you have destroyed the letter. There was one part +especially, the opening of it, which I should dread your having the +power of reading again. I can remember some expressions which might +justly make you hate me.” + +“The letter shall certainly be burnt, if you believe it essential to the +preservation of my regard; but, though we have both reason to think my +opinions not entirely unalterable, they are not, I hope, quite so easily +changed as that implies.” + +“When I wrote that letter,” replied Darcy, “I believed myself perfectly +calm and cool, but I am since convinced that it was written in a +dreadful bitterness of spirit.” + +“The letter, perhaps, began in bitterness, but it did not end so. The +adieu is charity itself. But think no more of the letter. The feelings +of the person who wrote, and the person who received it, are now +so widely different from what they were then, that every unpleasant +circumstance attending it ought to be forgotten. You must learn some +of my philosophy. Think only of the past as its remembrance gives you +pleasure.” + +“I cannot give you credit for any philosophy of the kind. Your +retrospections must be so totally void of reproach, that the contentment +arising from them is not of philosophy, but, what is much better, of +innocence. But with me, it is not so. Painful recollections will intrude +which cannot, which ought not, to be repelled. I have been a selfish +being all my life, in practice, though not in principle. As a child I +was taught what was right, but I was not taught to correct my temper. I +was given good principles, but left to follow them in pride and conceit. +Unfortunately an only son (for many years an only child), I was spoilt +by my parents, who, though good themselves (my father, particularly, all +that was benevolent and amiable), allowed, encouraged, almost taught +me to be selfish and overbearing; to care for none beyond my own family +circle; to think meanly of all the rest of the world; to wish at least +to think meanly of their sense and worth compared with my own. Such I +was, from eight to eight and twenty; and such I might still have been +but for you, dearest, loveliest Elizabeth! What do I not owe you! You +taught me a lesson, hard indeed at first, but most advantageous. By you, +I was properly humbled. I came to you without a doubt of my reception. +You showed me how insufficient were all my pretensions to please a woman +worthy of being pleased.” + +“Had you then persuaded yourself that I should?” + +“Indeed I had. What will you think of my vanity? I believed you to be +wishing, expecting my addresses.” + +“My manners must have been in fault, but not intentionally, I assure +you. I never meant to deceive you, but my spirits might often lead me +wrong. How you must have hated me after _that_ evening?” + +“Hate you! I was angry perhaps at first, but my anger soon began to take +a proper direction.” + +“I am almost afraid of asking what you thought of me, when we met at +Pemberley. You blamed me for coming?” + +“No indeed; I felt nothing but surprise.” + +“Your surprise could not be greater than _mine_ in being noticed by you. +My conscience told me that I deserved no extraordinary politeness, and I +confess that I did not expect to receive _more_ than my due.” + +“My object then,” replied Darcy, “was to show you, by every civility in +my power, that I was not so mean as to resent the past; and I hoped to +obtain your forgiveness, to lessen your ill opinion, by letting you +see that your reproofs had been attended to. How soon any other wishes +introduced themselves I can hardly tell, but I believe in about half an +hour after I had seen you.” + +He then told her of Georgiana's delight in her acquaintance, and of her +disappointment at its sudden interruption; which naturally leading to +the cause of that interruption, she soon learnt that his resolution of +following her from Derbyshire in quest of her sister had been formed +before he quitted the inn, and that his gravity and thoughtfulness +there had arisen from no other struggles than what such a purpose must +comprehend. + +She expressed her gratitude again, but it was too painful a subject to +each, to be dwelt on farther. + +After walking several miles in a leisurely manner, and too busy to know +anything about it, they found at last, on examining their watches, that +it was time to be at home. + +“What could become of Mr. Bingley and Jane!” was a wonder which +introduced the discussion of their affairs. Darcy was delighted with +their engagement; his friend had given him the earliest information of +it. + +“I must ask whether you were surprised?” said Elizabeth. + +“Not at all. When I went away, I felt that it would soon happen.” + +“That is to say, you had given your permission. I guessed as much.” And +though he exclaimed at the term, she found that it had been pretty much +the case. + +“On the evening before my going to London,” said he, “I made a +confession to him, which I believe I ought to have made long ago. I +told him of all that had occurred to make my former interference in his +affairs absurd and impertinent. His surprise was great. He had never had +the slightest suspicion. I told him, moreover, that I believed myself +mistaken in supposing, as I had done, that your sister was indifferent +to him; and as I could easily perceive that his attachment to her was +unabated, I felt no doubt of their happiness together.” + +Elizabeth could not help smiling at his easy manner of directing his +friend. + +“Did you speak from your own observation,” said she, “when you told him +that my sister loved him, or merely from my information last spring?” + +“From the former. I had narrowly observed her during the two visits +which I had lately made here; and I was convinced of her affection.” + +“And your assurance of it, I suppose, carried immediate conviction to +him.” + +“It did. Bingley is most unaffectedly modest. His diffidence had +prevented his depending on his own judgment in so anxious a case, but +his reliance on mine made every thing easy. I was obliged to confess +one thing, which for a time, and not unjustly, offended him. I could not +allow myself to conceal that your sister had been in town three months +last winter, that I had known it, and purposely kept it from him. He was +angry. But his anger, I am persuaded, lasted no longer than he remained +in any doubt of your sister's sentiments. He has heartily forgiven me +now.” + +Elizabeth longed to observe that Mr. Bingley had been a most delightful +friend; so easily guided that his worth was invaluable; but she checked +herself. She remembered that he had yet to learn to be laughed at, +and it was rather too early to begin. In anticipating the happiness +of Bingley, which of course was to be inferior only to his own, he +continued the conversation till they reached the house. In the hall they +parted. + + + +Chapter 59 + + +“My dear Lizzy, where can you have been walking to?” was a question +which Elizabeth received from Jane as soon as she entered their room, +and from all the others when they sat down to table. She had only to +say in reply, that they had wandered about, till she was beyond her own +knowledge. She coloured as she spoke; but neither that, nor anything +else, awakened a suspicion of the truth. + +The evening passed quietly, unmarked by anything extraordinary. The +acknowledged lovers talked and laughed, the unacknowledged were silent. +Darcy was not of a disposition in which happiness overflows in mirth; +and Elizabeth, agitated and confused, rather _knew_ that she was happy +than _felt_ herself to be so; for, besides the immediate embarrassment, +there were other evils before her. She anticipated what would be felt +in the family when her situation became known; she was aware that no +one liked him but Jane; and even feared that with the others it was a +dislike which not all his fortune and consequence might do away. + +At night she opened her heart to Jane. Though suspicion was very far +from Miss Bennet's general habits, she was absolutely incredulous here. + +“You are joking, Lizzy. This cannot be!--engaged to Mr. Darcy! No, no, +you shall not deceive me. I know it to be impossible.” + +“This is a wretched beginning indeed! My sole dependence was on you; and +I am sure nobody else will believe me, if you do not. Yet, indeed, I am +in earnest. I speak nothing but the truth. He still loves me, and we are +engaged.” + +Jane looked at her doubtingly. “Oh, Lizzy! it cannot be. I know how much +you dislike him.” + +“You know nothing of the matter. _That_ is all to be forgot. Perhaps I +did not always love him so well as I do now. But in such cases as +these, a good memory is unpardonable. This is the last time I shall ever +remember it myself.” + +Miss Bennet still looked all amazement. Elizabeth again, and more +seriously assured her of its truth. + +“Good Heaven! can it be really so! Yet now I must believe you,” cried +Jane. “My dear, dear Lizzy, I would--I do congratulate you--but are you +certain? forgive the question--are you quite certain that you can be +happy with him?” + +“There can be no doubt of that. It is settled between us already, that +we are to be the happiest couple in the world. But are you pleased, +Jane? Shall you like to have such a brother?” + +“Very, very much. Nothing could give either Bingley or myself more +delight. But we considered it, we talked of it as impossible. And do you +really love him quite well enough? Oh, Lizzy! do anything rather than +marry without affection. Are you quite sure that you feel what you ought +to do?” + +“Oh, yes! You will only think I feel _more_ than I ought to do, when I +tell you all.” + +“What do you mean?” + +“Why, I must confess that I love him better than I do Bingley. I am +afraid you will be angry.” + +“My dearest sister, now _be_ serious. I want to talk very seriously. Let +me know every thing that I am to know, without delay. Will you tell me +how long you have loved him?” + +“It has been coming on so gradually, that I hardly know when it began. +But I believe I must date it from my first seeing his beautiful grounds +at Pemberley.” + +Another entreaty that she would be serious, however, produced the +desired effect; and she soon satisfied Jane by her solemn assurances +of attachment. When convinced on that article, Miss Bennet had nothing +further to wish. + +“Now I am quite happy,” said she, “for you will be as happy as myself. +I always had a value for him. Were it for nothing but his love of you, +I must always have esteemed him; but now, as Bingley's friend and your +husband, there can be only Bingley and yourself more dear to me. But +Lizzy, you have been very sly, very reserved with me. How little did you +tell me of what passed at Pemberley and Lambton! I owe all that I know +of it to another, not to you.” + +Elizabeth told her the motives of her secrecy. She had been unwilling +to mention Bingley; and the unsettled state of her own feelings had made +her equally avoid the name of his friend. But now she would no longer +conceal from her his share in Lydia's marriage. All was acknowledged, +and half the night spent in conversation. + + * * * * * + +“Good gracious!” cried Mrs. Bennet, as she stood at a window the next +morning, “if that disagreeable Mr. Darcy is not coming here again with +our dear Bingley! What can he mean by being so tiresome as to be always +coming here? I had no notion but he would go a-shooting, or something or +other, and not disturb us with his company. What shall we do with him? +Lizzy, you must walk out with him again, that he may not be in Bingley's +way.” + +Elizabeth could hardly help laughing at so convenient a proposal; yet +was really vexed that her mother should be always giving him such an +epithet. + +As soon as they entered, Bingley looked at her so expressively, and +shook hands with such warmth, as left no doubt of his good information; +and he soon afterwards said aloud, “Mrs. Bennet, have you no more lanes +hereabouts in which Lizzy may lose her way again to-day?” + +“I advise Mr. Darcy, and Lizzy, and Kitty,” said Mrs. Bennet, “to walk +to Oakham Mount this morning. It is a nice long walk, and Mr. Darcy has +never seen the view.” + +“It may do very well for the others,” replied Mr. Bingley; “but I am +sure it will be too much for Kitty. Won't it, Kitty?” Kitty owned that +she had rather stay at home. Darcy professed a great curiosity to see +the view from the Mount, and Elizabeth silently consented. As she went +up stairs to get ready, Mrs. Bennet followed her, saying: + +“I am quite sorry, Lizzy, that you should be forced to have that +disagreeable man all to yourself. But I hope you will not mind it: it is +all for Jane's sake, you know; and there is no occasion for talking +to him, except just now and then. So, do not put yourself to +inconvenience.” + +During their walk, it was resolved that Mr. Bennet's consent should be +asked in the course of the evening. Elizabeth reserved to herself the +application for her mother's. She could not determine how her mother +would take it; sometimes doubting whether all his wealth and grandeur +would be enough to overcome her abhorrence of the man. But whether she +were violently set against the match, or violently delighted with it, it +was certain that her manner would be equally ill adapted to do credit +to her sense; and she could no more bear that Mr. Darcy should hear +the first raptures of her joy, than the first vehemence of her +disapprobation. + + * * * * * + +In the evening, soon after Mr. Bennet withdrew to the library, she saw +Mr. Darcy rise also and follow him, and her agitation on seeing it was +extreme. She did not fear her father's opposition, but he was going to +be made unhappy; and that it should be through her means--that _she_, +his favourite child, should be distressing him by her choice, should be +filling him with fears and regrets in disposing of her--was a wretched +reflection, and she sat in misery till Mr. Darcy appeared again, when, +looking at him, she was a little relieved by his smile. In a few minutes +he approached the table where she was sitting with Kitty; and, while +pretending to admire her work said in a whisper, “Go to your father, he +wants you in the library.” She was gone directly. + +Her father was walking about the room, looking grave and anxious. +“Lizzy,” said he, “what are you doing? Are you out of your senses, to be +accepting this man? Have not you always hated him?” + +How earnestly did she then wish that her former opinions had been more +reasonable, her expressions more moderate! It would have spared her from +explanations and professions which it was exceedingly awkward to give; +but they were now necessary, and she assured him, with some confusion, +of her attachment to Mr. Darcy. + +“Or, in other words, you are determined to have him. He is rich, to be +sure, and you may have more fine clothes and fine carriages than Jane. +But will they make you happy?” + +“Have you any other objection,” said Elizabeth, “than your belief of my +indifference?” + +“None at all. We all know him to be a proud, unpleasant sort of man; but +this would be nothing if you really liked him.” + +“I do, I do like him,” she replied, with tears in her eyes, “I love him. +Indeed he has no improper pride. He is perfectly amiable. You do not +know what he really is; then pray do not pain me by speaking of him in +such terms.” + +“Lizzy,” said her father, “I have given him my consent. He is the kind +of man, indeed, to whom I should never dare refuse anything, which he +condescended to ask. I now give it to _you_, if you are resolved on +having him. But let me advise you to think better of it. I know +your disposition, Lizzy. I know that you could be neither happy nor +respectable, unless you truly esteemed your husband; unless you looked +up to him as a superior. Your lively talents would place you in the +greatest danger in an unequal marriage. You could scarcely escape +discredit and misery. My child, let me not have the grief of seeing +_you_ unable to respect your partner in life. You know not what you are +about.” + +Elizabeth, still more affected, was earnest and solemn in her reply; and +at length, by repeated assurances that Mr. Darcy was really the object +of her choice, by explaining the gradual change which her estimation of +him had undergone, relating her absolute certainty that his affection +was not the work of a day, but had stood the test of many months' +suspense, and enumerating with energy all his good qualities, she did +conquer her father's incredulity, and reconcile him to the match. + +“Well, my dear,” said he, when she ceased speaking, “I have no more to +say. If this be the case, he deserves you. I could not have parted with +you, my Lizzy, to anyone less worthy.” + +To complete the favourable impression, she then told him what Mr. Darcy +had voluntarily done for Lydia. He heard her with astonishment. + +“This is an evening of wonders, indeed! And so, Darcy did every thing; +made up the match, gave the money, paid the fellow's debts, and got him +his commission! So much the better. It will save me a world of trouble +and economy. Had it been your uncle's doing, I must and _would_ have +paid him; but these violent young lovers carry every thing their own +way. I shall offer to pay him to-morrow; he will rant and storm about +his love for you, and there will be an end of the matter.” + +He then recollected her embarrassment a few days before, on his reading +Mr. Collins's letter; and after laughing at her some time, allowed her +at last to go--saying, as she quitted the room, “If any young men come +for Mary or Kitty, send them in, for I am quite at leisure.” + +Elizabeth's mind was now relieved from a very heavy weight; and, after +half an hour's quiet reflection in her own room, she was able to join +the others with tolerable composure. Every thing was too recent for +gaiety, but the evening passed tranquilly away; there was no longer +anything material to be dreaded, and the comfort of ease and familiarity +would come in time. + +When her mother went up to her dressing-room at night, she followed her, +and made the important communication. Its effect was most extraordinary; +for on first hearing it, Mrs. Bennet sat quite still, and unable to +utter a syllable. Nor was it under many, many minutes that she could +comprehend what she heard; though not in general backward to credit +what was for the advantage of her family, or that came in the shape of a +lover to any of them. She began at length to recover, to fidget about in +her chair, get up, sit down again, wonder, and bless herself. + +“Good gracious! Lord bless me! only think! dear me! Mr. Darcy! Who would +have thought it! And is it really true? Oh! my sweetest Lizzy! how rich +and how great you will be! What pin-money, what jewels, what carriages +you will have! Jane's is nothing to it--nothing at all. I am so +pleased--so happy. Such a charming man!--so handsome! so tall!--Oh, my +dear Lizzy! pray apologise for my having disliked him so much before. I +hope he will overlook it. Dear, dear Lizzy. A house in town! Every thing +that is charming! Three daughters married! Ten thousand a year! Oh, +Lord! What will become of me. I shall go distracted.” + +This was enough to prove that her approbation need not be doubted: and +Elizabeth, rejoicing that such an effusion was heard only by herself, +soon went away. But before she had been three minutes in her own room, +her mother followed her. + +“My dearest child,” she cried, “I can think of nothing else! Ten +thousand a year, and very likely more! 'Tis as good as a Lord! And a +special licence. You must and shall be married by a special licence. But +my dearest love, tell me what dish Mr. Darcy is particularly fond of, +that I may have it to-morrow.” + +This was a sad omen of what her mother's behaviour to the gentleman +himself might be; and Elizabeth found that, though in the certain +possession of his warmest affection, and secure of her relations' +consent, there was still something to be wished for. But the morrow +passed off much better than she expected; for Mrs. Bennet luckily stood +in such awe of her intended son-in-law that she ventured not to speak to +him, unless it was in her power to offer him any attention, or mark her +deference for his opinion. + +Elizabeth had the satisfaction of seeing her father taking pains to get +acquainted with him; and Mr. Bennet soon assured her that he was rising +every hour in his esteem. + +“I admire all my three sons-in-law highly,” said he. “Wickham, perhaps, +is my favourite; but I think I shall like _your_ husband quite as well +as Jane's.” + + + +Chapter 60 + + +Elizabeth's spirits soon rising to playfulness again, she wanted Mr. +Darcy to account for his having ever fallen in love with her. “How could +you begin?” said she. “I can comprehend your going on charmingly, when +you had once made a beginning; but what could set you off in the first +place?” + +“I cannot fix on the hour, or the spot, or the look, or the words, which +laid the foundation. It is too long ago. I was in the middle before I +knew that I _had_ begun.” + +“My beauty you had early withstood, and as for my manners--my behaviour +to _you_ was at least always bordering on the uncivil, and I never spoke +to you without rather wishing to give you pain than not. Now be sincere; +did you admire me for my impertinence?” + +“For the liveliness of your mind, I did.” + +“You may as well call it impertinence at once. It was very little less. +The fact is, that you were sick of civility, of deference, of officious +attention. You were disgusted with the women who were always speaking, +and looking, and thinking for _your_ approbation alone. I roused, and +interested you, because I was so unlike _them_. Had you not been really +amiable, you would have hated me for it; but in spite of the pains you +took to disguise yourself, your feelings were always noble and just; and +in your heart, you thoroughly despised the persons who so assiduously +courted you. There--I have saved you the trouble of accounting for +it; and really, all things considered, I begin to think it perfectly +reasonable. To be sure, you knew no actual good of me--but nobody thinks +of _that_ when they fall in love.” + +“Was there no good in your affectionate behaviour to Jane while she was +ill at Netherfield?” + +“Dearest Jane! who could have done less for her? But make a virtue of it +by all means. My good qualities are under your protection, and you are +to exaggerate them as much as possible; and, in return, it belongs to me +to find occasions for teasing and quarrelling with you as often as may +be; and I shall begin directly by asking you what made you so unwilling +to come to the point at last. What made you so shy of me, when you first +called, and afterwards dined here? Why, especially, when you called, did +you look as if you did not care about me?” + +“Because you were grave and silent, and gave me no encouragement.” + +“But I was embarrassed.” + +“And so was I.” + +“You might have talked to me more when you came to dinner.” + +“A man who had felt less, might.” + +“How unlucky that you should have a reasonable answer to give, and that +I should be so reasonable as to admit it! But I wonder how long you +_would_ have gone on, if you had been left to yourself. I wonder when +you _would_ have spoken, if I had not asked you! My resolution of +thanking you for your kindness to Lydia had certainly great effect. +_Too much_, I am afraid; for what becomes of the moral, if our comfort +springs from a breach of promise? for I ought not to have mentioned the +subject. This will never do.” + +“You need not distress yourself. The moral will be perfectly fair. Lady +Catherine's unjustifiable endeavours to separate us were the means of +removing all my doubts. I am not indebted for my present happiness to +your eager desire of expressing your gratitude. I was not in a humour +to wait for any opening of yours. My aunt's intelligence had given me +hope, and I was determined at once to know every thing.” + +“Lady Catherine has been of infinite use, which ought to make her happy, +for she loves to be of use. But tell me, what did you come down to +Netherfield for? Was it merely to ride to Longbourn and be embarrassed? +or had you intended any more serious consequence?” + +“My real purpose was to see _you_, and to judge, if I could, whether I +might ever hope to make you love me. My avowed one, or what I avowed to +myself, was to see whether your sister were still partial to Bingley, +and if she were, to make the confession to him which I have since made.” + +“Shall you ever have courage to announce to Lady Catherine what is to +befall her?” + +“I am more likely to want more time than courage, Elizabeth. But it +ought to be done, and if you will give me a sheet of paper, it shall be +done directly.” + +“And if I had not a letter to write myself, I might sit by you and +admire the evenness of your writing, as another young lady once did. But +I have an aunt, too, who must not be longer neglected.” + +From an unwillingness to confess how much her intimacy with Mr. Darcy +had been over-rated, Elizabeth had never yet answered Mrs. Gardiner's +long letter; but now, having _that_ to communicate which she knew would +be most welcome, she was almost ashamed to find that her uncle and +aunt had already lost three days of happiness, and immediately wrote as +follows: + +“I would have thanked you before, my dear aunt, as I ought to have done, +for your long, kind, satisfactory, detail of particulars; but to say the +truth, I was too cross to write. You supposed more than really existed. +But _now_ suppose as much as you choose; give a loose rein to your +fancy, indulge your imagination in every possible flight which the +subject will afford, and unless you believe me actually married, you +cannot greatly err. You must write again very soon, and praise him a +great deal more than you did in your last. I thank you, again and again, +for not going to the Lakes. How could I be so silly as to wish it! Your +idea of the ponies is delightful. We will go round the Park every day. I +am the happiest creature in the world. Perhaps other people have said so +before, but not one with such justice. I am happier even than Jane; she +only smiles, I laugh. Mr. Darcy sends you all the love in the world that +he can spare from me. You are all to come to Pemberley at Christmas. +Yours, etc.” + +Mr. Darcy's letter to Lady Catherine was in a different style; and still +different from either was what Mr. Bennet sent to Mr. Collins, in reply +to his last. + +“DEAR SIR, + +“I must trouble you once more for congratulations. Elizabeth will soon +be the wife of Mr. Darcy. Console Lady Catherine as well as you can. +But, if I were you, I would stand by the nephew. He has more to give. + +“Yours sincerely, etc.” + +Miss Bingley's congratulations to her brother, on his approaching +marriage, were all that was affectionate and insincere. She wrote even +to Jane on the occasion, to express her delight, and repeat all her +former professions of regard. Jane was not deceived, but she was +affected; and though feeling no reliance on her, could not help writing +her a much kinder answer than she knew was deserved. + +The joy which Miss Darcy expressed on receiving similar information, +was as sincere as her brother's in sending it. Four sides of paper were +insufficient to contain all her delight, and all her earnest desire of +being loved by her sister. + +Before any answer could arrive from Mr. Collins, or any congratulations +to Elizabeth from his wife, the Longbourn family heard that the +Collinses were come themselves to Lucas Lodge. The reason of this +sudden removal was soon evident. Lady Catherine had been rendered +so exceedingly angry by the contents of her nephew's letter, that +Charlotte, really rejoicing in the match, was anxious to get away till +the storm was blown over. At such a moment, the arrival of her friend +was a sincere pleasure to Elizabeth, though in the course of their +meetings she must sometimes think the pleasure dearly bought, when she +saw Mr. Darcy exposed to all the parading and obsequious civility of +her husband. He bore it, however, with admirable calmness. He could even +listen to Sir William Lucas, when he complimented him on carrying away +the brightest jewel of the country, and expressed his hopes of their all +meeting frequently at St. James's, with very decent composure. If he did +shrug his shoulders, it was not till Sir William was out of sight. + +Mrs. Phillips's vulgarity was another, and perhaps a greater, tax on his +forbearance; and though Mrs. Phillips, as well as her sister, stood in +too much awe of him to speak with the familiarity which Bingley's good +humour encouraged, yet, whenever she _did_ speak, she must be vulgar. +Nor was her respect for him, though it made her more quiet, at all +likely to make her more elegant. Elizabeth did all she could to shield +him from the frequent notice of either, and was ever anxious to keep +him to herself, and to those of her family with whom he might converse +without mortification; and though the uncomfortable feelings arising +from all this took from the season of courtship much of its pleasure, it +added to the hope of the future; and she looked forward with delight to +the time when they should be removed from society so little pleasing +to either, to all the comfort and elegance of their family party at +Pemberley. + + + +Chapter 61 + + +Happy for all her maternal feelings was the day on which Mrs. Bennet got +rid of her two most deserving daughters. With what delighted pride +she afterwards visited Mrs. Bingley, and talked of Mrs. Darcy, may +be guessed. I wish I could say, for the sake of her family, that the +accomplishment of her earnest desire in the establishment of so many +of her children produced so happy an effect as to make her a sensible, +amiable, well-informed woman for the rest of her life; though perhaps it +was lucky for her husband, who might not have relished domestic felicity +in so unusual a form, that she still was occasionally nervous and +invariably silly. + +Mr. Bennet missed his second daughter exceedingly; his affection for her +drew him oftener from home than anything else could do. He delighted in +going to Pemberley, especially when he was least expected. + +Mr. Bingley and Jane remained at Netherfield only a twelvemonth. So near +a vicinity to her mother and Meryton relations was not desirable even to +_his_ easy temper, or _her_ affectionate heart. The darling wish of his +sisters was then gratified; he bought an estate in a neighbouring county +to Derbyshire, and Jane and Elizabeth, in addition to every other source +of happiness, were within thirty miles of each other. + +Kitty, to her very material advantage, spent the chief of her time with +her two elder sisters. In society so superior to what she had generally +known, her improvement was great. She was not of so ungovernable a +temper as Lydia; and, removed from the influence of Lydia's example, +she became, by proper attention and management, less irritable, less +ignorant, and less insipid. From the further disadvantage of Lydia's +society she was of course carefully kept, and though Mrs. Wickham +frequently invited her to come and stay with her, with the promise of +balls and young men, her father would never consent to her going. + +Mary was the only daughter who remained at home; and she was necessarily +drawn from the pursuit of accomplishments by Mrs. Bennet's being quite +unable to sit alone. Mary was obliged to mix more with the world, but +she could still moralize over every morning visit; and as she was no +longer mortified by comparisons between her sisters' beauty and her own, +it was suspected by her father that she submitted to the change without +much reluctance. + +As for Wickham and Lydia, their characters suffered no revolution from +the marriage of her sisters. He bore with philosophy the conviction that +Elizabeth must now become acquainted with whatever of his ingratitude +and falsehood had before been unknown to her; and in spite of every +thing, was not wholly without hope that Darcy might yet be prevailed on +to make his fortune. The congratulatory letter which Elizabeth received +from Lydia on her marriage, explained to her that, by his wife at least, +if not by himself, such a hope was cherished. The letter was to this +effect: + +“MY DEAR LIZZY, + +“I wish you joy. If you love Mr. Darcy half as well as I do my dear +Wickham, you must be very happy. It is a great comfort to have you so +rich, and when you have nothing else to do, I hope you will think of us. +I am sure Wickham would like a place at court very much, and I do not +think we shall have quite money enough to live upon without some help. +Any place would do, of about three or four hundred a year; but however, +do not speak to Mr. Darcy about it, if you had rather not. + +“Yours, etc.” + +As it happened that Elizabeth had _much_ rather not, she endeavoured in +her answer to put an end to every entreaty and expectation of the kind. +Such relief, however, as it was in her power to afford, by the practice +of what might be called economy in her own private expences, she +frequently sent them. It had always been evident to her that such an +income as theirs, under the direction of two persons so extravagant in +their wants, and heedless of the future, must be very insufficient to +their support; and whenever they changed their quarters, either Jane or +herself were sure of being applied to for some little assistance +towards discharging their bills. Their manner of living, even when the +restoration of peace dismissed them to a home, was unsettled in the +extreme. They were always moving from place to place in quest of a cheap +situation, and always spending more than they ought. His affection for +her soon sunk into indifference; hers lasted a little longer; and +in spite of her youth and her manners, she retained all the claims to +reputation which her marriage had given her. + +Though Darcy could never receive _him_ at Pemberley, yet, for +Elizabeth's sake, he assisted him further in his profession. Lydia was +occasionally a visitor there, when her husband was gone to enjoy himself +in London or Bath; and with the Bingleys they both of them frequently +staid so long, that even Bingley's good humour was overcome, and he +proceeded so far as to talk of giving them a hint to be gone. + +Miss Bingley was very deeply mortified by Darcy's marriage; but as she +thought it advisable to retain the right of visiting at Pemberley, she +dropt all her resentment; was fonder than ever of Georgiana, almost as +attentive to Darcy as heretofore, and paid off every arrear of civility +to Elizabeth. + +Pemberley was now Georgiana's home; and the attachment of the sisters +was exactly what Darcy had hoped to see. They were able to love each +other even as well as they intended. Georgiana had the highest opinion +in the world of Elizabeth; though at first she often listened with +an astonishment bordering on alarm at her lively, sportive, manner of +talking to her brother. He, who had always inspired in herself a respect +which almost overcame her affection, she now saw the object of open +pleasantry. Her mind received knowledge which had never before fallen +in her way. By Elizabeth's instructions, she began to comprehend that +a woman may take liberties with her husband which a brother will not +always allow in a sister more than ten years younger than himself. + +Lady Catherine was extremely indignant on the marriage of her nephew; +and as she gave way to all the genuine frankness of her character in +her reply to the letter which announced its arrangement, she sent him +language so very abusive, especially of Elizabeth, that for some time +all intercourse was at an end. But at length, by Elizabeth's persuasion, +he was prevailed on to overlook the offence, and seek a reconciliation; +and, after a little further resistance on the part of his aunt, her +resentment gave way, either to her affection for him, or her curiosity +to see how his wife conducted herself; and she condescended to wait +on them at Pemberley, in spite of that pollution which its woods had +received, not merely from the presence of such a mistress, but the +visits of her uncle and aunt from the city. + +With the Gardiners, they were always on the most intimate terms. +Darcy, as well as Elizabeth, really loved them; and they were both ever +sensible of the warmest gratitude towards the persons who, by bringing +her into Derbyshire, had been the means of uniting them. + + + + + +End of the Project Gutenberg EBook of Pride and Prejudice, by Jane Austen + +*** END OF THIS PROJECT GUTENBERG EBOOK PRIDE AND PREJUDICE *** + +***** This file should be named 1342-0.txt or 1342-0.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.org/1/3/4/1342/ + +Produced by Anonymous Volunteers + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.org/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the Foundation” + or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase “Project Gutenberg” appears, or with which the phrase “Project +Gutenberg” is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase “Project Gutenberg” associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +“Plain Vanilla ASCII” or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.org), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original “Plain Vanilla ASCII” or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, “Information about donations to + the Project Gutenberg Literary Archive Foundation.” + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +“Defects,” such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, are critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. +To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.org + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. From 9207d4e9647f6d1c46e22edb3cfac383f296cb84 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 18 Oct 2019 10:10:21 +0200 Subject: [PATCH 27/56] feat (maxequalfreq): initial setup --- leetcode/maxequalfreq/maxequalfreq.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 leetcode/maxequalfreq/maxequalfreq.py diff --git a/leetcode/maxequalfreq/maxequalfreq.py b/leetcode/maxequalfreq/maxequalfreq.py new file mode 100644 index 0000000..170e7bf --- /dev/null +++ b/leetcode/maxequalfreq/maxequalfreq.py @@ -0,0 +1,25 @@ +# https://leetcode.com/problems/maximum-equal-frequency/ +from typing import List + + +class Solution: + def maxEqualFreq(self, nums: List[int]) -> int: + return -1 + +def test1(): + nums = [2, 2, 1, 1, 5, 3, 3, 5] + + assert Solution().maxEqualFreq(nums) == 7 + +def test2(): + nums = [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5] + assert Solution().maxEqualFreq(nums) == 13 + +def test3(): + nums = [1, 1, 1, 2, 2, 2] + assert Solution().maxEqualFreq(nums) == 5 + +def test4(): + nums = [10, 2, 8, 9, 3, 8, 1, 5, 2, 3, 7, 6] + assert Solution().maxEqualFreq(nums) == 8 + From 3b2889c086531c0d0e5c1b2c5944f4c38c32af6e Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 18 Oct 2019 10:40:13 +0200 Subject: [PATCH 28/56] feat (maxequalfreq): passing initial tests --- leetcode/maxequalfreq/maxequalfreq.py | 56 +++++++++++++++++++++++++-- 1 file changed, 52 insertions(+), 4 deletions(-) diff --git a/leetcode/maxequalfreq/maxequalfreq.py b/leetcode/maxequalfreq/maxequalfreq.py index 170e7bf..4e7a2cb 100644 --- a/leetcode/maxequalfreq/maxequalfreq.py +++ b/leetcode/maxequalfreq/maxequalfreq.py @@ -1,19 +1,67 @@ # https://leetcode.com/problems/maximum-equal-frequency/ + +from collections import Counter from typing import List +# def sol2(self, c: Counter) -> bool: +# val_set = set(c.values()) +# if len(val_set) == 2: +# a, b = list(val_set) +# if abs(a - b) == 1: +# ct_a = len([v for v in c.values() if v == a]) +# ct_tot = len(c) +# if a + 1 == b and ct_a + 1 == ct_tot: +# return True +# elif b + 1 == a and ct_a == 1: +# return True +# +# return False + class Solution: + def __init__(self, debug=False): + self.debug = debug + + def sol(self, c: Counter) -> bool: + if self.debug: + print(f"counter {c}") + c_vals = Counter(c.values()) + if self.debug: + print(f"c_vals {c_vals}") + if len(c_vals) == 2: + a, b = c_vals.keys() + if a > b: + a, b = b, a + if self.debug: + print(f"a,b {a} {b}") + if (a + 1 == b and c_vals[b] == 1) or (a == 1 and c_vals[a] == 1): + if self.debug: + print("True") + return True + + if self.debug: + print("False") + return False + def maxEqualFreq(self, nums: List[int]) -> int: - return -1 + c = Counter(nums) + idx = len(nums) + while idx > 1 and not self.sol(c): + idx -= 1 + if c[nums[idx]] == 1: + del c[nums[idx]] + else: + c[nums[idx]] -= 1 + return idx def test1(): nums = [2, 2, 1, 1, 5, 3, 3, 5] - assert Solution().maxEqualFreq(nums) == 7 + assert Solution(True).maxEqualFreq(nums) == 7 def test2(): nums = [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5] - assert Solution().maxEqualFreq(nums) == 13 + assert Solution(True).maxEqualFreq(nums) == 13 def test3(): nums = [1, 1, 1, 2, 2, 2] @@ -21,5 +69,5 @@ def test3(): def test4(): nums = [10, 2, 8, 9, 3, 8, 1, 5, 2, 3, 7, 6] - assert Solution().maxEqualFreq(nums) == 8 + assert Solution(True).maxEqualFreq(nums) == 8 From 9244e9bb6b2858836cfeeabdf131d4f8edeade19 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 18 Oct 2019 10:48:34 +0200 Subject: [PATCH 29/56] feat (maxequalfreq): passing solution --- leetcode/maxequalfreq/maxequalfreq.py | 39 +++++++++++++++------------ 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/leetcode/maxequalfreq/maxequalfreq.py b/leetcode/maxequalfreq/maxequalfreq.py index 4e7a2cb..efd84e0 100644 --- a/leetcode/maxequalfreq/maxequalfreq.py +++ b/leetcode/maxequalfreq/maxequalfreq.py @@ -1,23 +1,11 @@ # https://leetcode.com/problems/maximum-equal-frequency/ +# +# Notes: +# 1. The number of resubmissions needed corresponds exactly to the number of special cases not considered from collections import Counter from typing import List - -# def sol2(self, c: Counter) -> bool: -# val_set = set(c.values()) -# if len(val_set) == 2: -# a, b = list(val_set) -# if abs(a - b) == 1: -# ct_a = len([v for v in c.values() if v == a]) -# ct_tot = len(c) -# if a + 1 == b and ct_a + 1 == ct_tot: -# return True -# elif b + 1 == a and ct_a == 1: -# return True -# -# return False - class Solution: def __init__(self, debug=False): self.debug = debug @@ -28,7 +16,7 @@ def sol(self, c: Counter) -> bool: c_vals = Counter(c.values()) if self.debug: print(f"c_vals {c_vals}") - if len(c_vals) == 2: + if len(c_vals) == 2: # standard case to look for, two different counts appear a, b = c_vals.keys() if a > b: a, b = b, a @@ -38,6 +26,10 @@ def sol(self, c: Counter) -> bool: if self.debug: print("True") return True + elif len(c_vals) == 1 and list(c.values())[0] == 1: # every number occurs once + return True + elif len(c) == 1: # only one number appears + return True if self.debug: print("False") @@ -56,7 +48,6 @@ def maxEqualFreq(self, nums: List[int]) -> int: def test1(): nums = [2, 2, 1, 1, 5, 3, 3, 5] - assert Solution(True).maxEqualFreq(nums) == 7 def test2(): @@ -71,3 +62,17 @@ def test4(): nums = [10, 2, 8, 9, 3, 8, 1, 5, 2, 3, 7, 6] assert Solution(True).maxEqualFreq(nums) == 8 +def test5(): + # failed test on initial submission + nums = [1,2] + assert Solution(True).maxEqualFreq(nums) == 2 + +def test6(): + # failed test on second submission + nums = [1,1] + assert Solution(True).maxEqualFreq(nums) == 2 + +def test7(): + # failed test on third submission + nums = [1,2,3,4,5,6,7,8,9] + assert Solution(True).maxEqualFreq(nums) == 9 From 75f49885fb4968529eac51189fc767fbda6cb518 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Oct 2019 11:57:59 +0200 Subject: [PATCH 30/56] feat (bintreecam): tree creation code so can run tests from given input --- leetcode/bintreecamera/bintreecamera.py | 53 +++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 leetcode/bintreecamera/bintreecamera.py diff --git a/leetcode/bintreecamera/bintreecamera.py b/leetcode/bintreecamera/bintreecamera.py new file mode 100644 index 0000000..29d0e21 --- /dev/null +++ b/leetcode/bintreecamera/bintreecamera.py @@ -0,0 +1,53 @@ +#Definition for a binary tree node. +from typing import List + + +class TreeNode: + def __init__(self, x): + self.val = x + self.left = None + self.right = None + + def __repr__(self): + return f"Node({self.val}, {self.left}, {self.right})" + + @staticmethod + def createTree(l: List) -> 'TreeNode': + # No empty trees since number notes >= 1 + r = TreeNode(l.pop(0)) + s = [(r, 'left'), (r, 'right')] + while len(l) > 0: + print(f"{l} : {s}") + v = l.pop(0) + a = s.pop(0) + if v is not None: + if a[1] == 'left': + nn = a[0].left = TreeNode(v) + elif a[1] == 'right': + nn = a[0].right = TreeNode(v) + else: + raise Exception("stack error") + s.extend([(nn, 'left'), (nn, 'right')]) + + return r + + +class Solution: + def __init__(self, debug): + self.debug = debug + + def minCameraCover(self, root: TreeNode) -> int: + pass + + +def test1(): + in1 = [0, 0, None, 0, 0] + t1 = TreeNode.createTree(in1) + print(repr(t1)) + assert Solution(True).minCameraCover(t1) == 1 + +def test2(): + in2 = [0, 0, None, 0, None, 0, None, None, 0] + t2 = TreeNode.createTree(in2) + print(repr(t2)) + assert Solution(True).minCameraCover(t2) == 2 From 3fd3af1262e93289a43988df6bbe689fb8cfaa47 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Oct 2019 12:15:37 +0200 Subject: [PATCH 31/56] feat (bintreecam): first solution code --- leetcode/bintreecamera/bintreecamera.py | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/leetcode/bintreecamera/bintreecamera.py b/leetcode/bintreecamera/bintreecamera.py index 29d0e21..155a96c 100644 --- a/leetcode/bintreecamera/bintreecamera.py +++ b/leetcode/bintreecamera/bintreecamera.py @@ -33,11 +33,23 @@ def createTree(l: List) -> 'TreeNode': class Solution: - def __init__(self, debug): + def __init__(self, debug=False): self.debug = debug def minCameraCover(self, root: TreeNode) -> int: - pass + rv = self.minCameraCover_h(root) + return rv[0] + + def minCameraCover_h(self, root) -> (int, bool): + "Returns count needed for tree below root, and if below root is already monitored" + if root is None: + return (0, True) + rv1 = self.minCameraCover_h(root.left) + rv2 = self.minCameraCover_h(root.right) + if rv1[1] and rv2[1]: + return (rv1[0] + rv2[0], False) + else: + return (rv1[0] + rv2[0] + 1, True) def test1(): @@ -51,3 +63,10 @@ def test2(): t2 = TreeNode.createTree(in2) print(repr(t2)) assert Solution(True).minCameraCover(t2) == 2 + +def test3(): + # selfmade test + in3 = [0, 0, 0, 0, 0, 0, 0] + t3 = TreeNode.createTree(in3) + print(repr(t3)) + assert Solution(True).minCameraCover(t3) == 2 From c4b528ace08dda18fc0938db8f10cdf3770659d0 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Oct 2019 12:17:50 +0200 Subject: [PATCH 32/56] feat (bintreecam): second solution code --- leetcode/bintreecamera/bintreecamera.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/leetcode/bintreecamera/bintreecamera.py b/leetcode/bintreecamera/bintreecamera.py index 155a96c..c7f51b5 100644 --- a/leetcode/bintreecamera/bintreecamera.py +++ b/leetcode/bintreecamera/bintreecamera.py @@ -38,7 +38,7 @@ def __init__(self, debug=False): def minCameraCover(self, root: TreeNode) -> int: rv = self.minCameraCover_h(root) - return rv[0] + return rv[0] if rv[0] > 0 else 1 def minCameraCover_h(self, root) -> (int, bool): "Returns count needed for tree below root, and if below root is already monitored" @@ -70,3 +70,9 @@ def test3(): t3 = TreeNode.createTree(in3) print(repr(t3)) assert Solution(True).minCameraCover(t3) == 2 + +def test4(): + in4 = [0] + t4 = TreeNode.createTree(in4) + print(repr(t4)) + assert Solution(True).minCameraCover(t4) == 1 From 636eb6aee47bd228ff97bf273f6a1d6823887b79 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Oct 2019 12:24:42 +0200 Subject: [PATCH 33/56] feat (bintreecam): third solution code --- leetcode/bintreecamera/bintreecamera.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/leetcode/bintreecamera/bintreecamera.py b/leetcode/bintreecamera/bintreecamera.py index c7f51b5..3b6f22e 100644 --- a/leetcode/bintreecamera/bintreecamera.py +++ b/leetcode/bintreecamera/bintreecamera.py @@ -40,16 +40,16 @@ def minCameraCover(self, root: TreeNode) -> int: rv = self.minCameraCover_h(root) return rv[0] if rv[0] > 0 else 1 - def minCameraCover_h(self, root) -> (int, bool): + def minCameraCover_h(self, root) -> (int, int): "Returns count needed for tree below root, and if below root is already monitored" if root is None: - return (0, True) + return (0, 1) rv1 = self.minCameraCover_h(root.left) rv2 = self.minCameraCover_h(root.right) - if rv1[1] and rv2[1]: - return (rv1[0] + rv2[0], False) + if rv1[1] > 0 and rv2[1] > 0: + return (rv1[0] + rv2[0], max(rv1[1], rv2[1]) - 1) else: - return (rv1[0] + rv2[0] + 1, True) + return (rv1[0] + rv2[0] + 1, 2) def test1(): @@ -76,3 +76,9 @@ def test4(): t4 = TreeNode.createTree(in4) print(repr(t4)) assert Solution(True).minCameraCover(t4) == 1 + +def test5(): + in5 = [0,0,None,None,0,0,None,None,0,0] + t5 = TreeNode.createTree(in5) + print(repr(t5)) + assert Solution(True).minCameraCover(t5) == 2 From 533023e02b7307bea42ac530ec542c100cd4f106 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 23 Oct 2019 12:35:49 +0200 Subject: [PATCH 34/56] feat (bintreecam): passing solution --- leetcode/bintreecamera/bintreecamera.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/leetcode/bintreecamera/bintreecamera.py b/leetcode/bintreecamera/bintreecamera.py index 3b6f22e..68e5de1 100644 --- a/leetcode/bintreecamera/bintreecamera.py +++ b/leetcode/bintreecamera/bintreecamera.py @@ -38,7 +38,7 @@ def __init__(self, debug=False): def minCameraCover(self, root: TreeNode) -> int: rv = self.minCameraCover_h(root) - return rv[0] if rv[0] > 0 else 1 + return rv[0] if rv[1] > 0 else rv[0] + 1 def minCameraCover_h(self, root) -> (int, int): "Returns count needed for tree below root, and if below root is already monitored" @@ -82,3 +82,9 @@ def test5(): t5 = TreeNode.createTree(in5) print(repr(t5)) assert Solution(True).minCameraCover(t5) == 2 + +def test6(): + in6 = [0,None,0,None,0,None,0] + t6 = TreeNode.createTree(in6) + print(repr(t6)) + assert Solution(True).minCameraCover(t6) == 2 From c4252be380a8a362cdc3b43c9d3f86f5c454adc8 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Thu, 24 Oct 2019 10:55:56 +0200 Subject: [PATCH 35/56] feat (brickwall): passing solution (and misdirected solution) --- leetcode/brickwall/brickwall.py | 93 ++++++++++++++++++++++++++++++++ leetcode/brickwall/brickwall2.py | 56 +++++++++++++++++++ 2 files changed, 149 insertions(+) create mode 100644 leetcode/brickwall/brickwall.py create mode 100644 leetcode/brickwall/brickwall2.py diff --git a/leetcode/brickwall/brickwall.py b/leetcode/brickwall/brickwall.py new file mode 100644 index 0000000..3c99b7f --- /dev/null +++ b/leetcode/brickwall/brickwall.py @@ -0,0 +1,93 @@ +import time +from collections import namedtuple +from typing import List + +row = namedtuple("row", ["loc", "idx"]) + +class Solution: + def __init__(self, debug=False): + self.debug = debug + + def leastBricks(self, wall: List[List[int]]) -> int: + reached = {idx: row(wall[idx][0], 1) for idx in range(len(wall))} + line_location = 1 + min_val = len(wall) + min_loc = 0 + done = False + while not done: + if self.debug: + print(line_location) + print(reached) + missed_ct = 0 + next_loc = None + try: + missed_ct, next_loc = self.looploop(line_location, missed_ct, next_loc, reached, wall) + except IndexError as e: + if self.debug: + print(f"stop on {e}") + done = True + if self.debug: + print(f"count {missed_ct}") + if (len(wall) - missed_ct) < min_val: + min_val = len(wall) - missed_ct + min_loc = line_location + line_location = next_loc + + if self.debug: + print(f"min_loc {min_loc}") + return min_val + + def looploop(self, line_location, missed_ct, next_loc, reached, wall): + for idx, r in reached.items(): + missed_ct, next_loc = self.innerloop(idx, line_location, missed_ct, next_loc, r, reached, wall) + return missed_ct, next_loc + + def innerloop(self, idx, line_location, missed_ct, next_loc, r, reached, wall): + if r.loc == line_location: + nn = r.loc + wall[idx][r.idx] + reached[idx] = row(nn, r.idx + 1) + missed_ct += 1 + elif r.loc < line_location: + nn = r.loc + wall[idx][r.idx] + reached[idx] = row(nn, r.idx + 1) + elif r.loc > line_location: + nn = r.loc + else: + if self.debug: + print("error") + if not next_loc or nn < next_loc: + next_loc = nn + return missed_ct, next_loc + + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + + +def test1(): + in1 = [[1, 2, 2, 1], + [3, 1, 2], + [1, 3, 2], + [2, 4], + [3, 1, 2], + [1, 3, 1, 1]] + + assert Solution().leastBricks(in1) == 2 + +def test2(): + in2 = [[100000000],[100000000],[100000000]] + with Timer(): + assert Solution().leastBricks(in2) == 3 + + +if __name__ == "__main__": + in_slow = [[1000,2000,3000,4000,5000,6000,7000,8000,9000,10000,45000],[1,1001,2001,3001,4001,5001,6001,7001,8001,9001,54990],[2,1002,2002,3002,4002,5002,6002,7002,8002,9002,54980],[3,1003,2003,3003,4003,5003,6003,7003,8003,9003,54970],[4,1004,2004,3004,4004,5004,6004,7004,8004,9004,54960],[5,1005,2005,3005,4005,5005,6005,7005,8005,9005,54950],[6,1006,2006,3006,4006,5006,6006,7006,8006,9006,54940],[7,1007,2007,3007,4007,5007,6007,7007,8007,9007,54930],[8,1008,2008,3008,4008,5008,6008,7008,8008,9008,54920],[9,1009,2009,3009,4009,5009,6009,7009,8009,9009,54910],[10,1010,2010,3010,4010,5010,6010,7010,8010,9010,54900],[11,1011,2011,3011,4011,5011,6011,7011,8011,9011,54890],[12,1012,2012,3012,4012,5012,6012,7012,8012,9012,54880],[13,1013,2013,3013,4013,5013,6013,7013,8013,9013,54870],[14,1014,2014,3014,4014,5014,6014,7014,8014,9014,54860],[15,1015,2015,3015,4015,5015,6015,7015,8015,9015,54850],[16,1016,2016,3016,4016,5016,6016,7016,8016,9016,54840],[17,1017,2017,3017,4017,5017,6017,7017,8017,9017,54830],[18,1018,2018,3018,4018,5018,6018,7018,8018,9018,54820],[19,1019,2019,3019,4019,5019,6019,7019,8019,9019,54810],[20,1020,2020,3020,4020,5020,6020,7020,8020,9020,54800],[21,1021,2021,3021,4021,5021,6021,7021,8021,9021,54790],[22,1022,2022,3022,4022,5022,6022,7022,8022,9022,54780],[23,1023,2023,3023,4023,5023,6023,7023,8023,9023,54770],[24,1024,2024,3024,4024,5024,6024,7024,8024,9024,54760],[25,1025,2025,3025,4025,5025,6025,7025,8025,9025,54750],[26,1026,2026,3026,4026,5026,6026,7026,8026,9026,54740],[27,1027,2027,3027,4027,5027,6027,7027,8027,9027,54730],[28,1028,2028,3028,4028,5028,6028,7028,8028,9028,54720],[29,1029,2029,3029,4029,5029,6029,7029,8029,9029,54710],[30,1030,2030,3030,4030,5030,6030,7030,8030,9030,54700],[31,1031,2031,3031,4031,5031,6031,7031,8031,9031,54690],[32,1032,2032,3032,4032,5032,6032,7032,8032,9032,54680],[33,1033,2033,3033,4033,5033,6033,7033,8033,9033,54670],[34,1034,2034,3034,4034,5034,6034,7034,8034,9034,54660],[35,1035,2035,3035,4035,5035,6035,7035,8035,9035,54650],[36,1036,2036,3036,4036,5036,6036,7036,8036,9036,54640],[37,1037,2037,3037,4037,5037,6037,7037,8037,9037,54630],[38,1038,2038,3038,4038,5038,6038,7038,8038,9038,54620],[39,1039,2039,3039,4039,5039,6039,7039,8039,9039,54610],[40,1040,2040,3040,4040,5040,6040,7040,8040,9040,54600],[41,1041,2041,3041,4041,5041,6041,7041,8041,9041,54590],[42,1042,2042,3042,4042,5042,6042,7042,8042,9042,54580],[43,1043,2043,3043,4043,5043,6043,7043,8043,9043,54570],[44,1044,2044,3044,4044,5044,6044,7044,8044,9044,54560],[45,1045,2045,3045,4045,5045,6045,7045,8045,9045,54550],[46,1046,2046,3046,4046,5046,6046,7046,8046,9046,54540],[47,1047,2047,3047,4047,5047,6047,7047,8047,9047,54530],[48,1048,2048,3048,4048,5048,6048,7048,8048,9048,54520],[49,1049,2049,3049,4049,5049,6049,7049,8049,9049,54510],[50,1050,2050,3050,4050,5050,6050,7050,8050,9050,54500],[51,1051,2051,3051,4051,5051,6051,7051,8051,9051,54490],[52,1052,2052,3052,4052,5052,6052,7052,8052,9052,54480],[53,1053,2053,3053,4053,5053,6053,7053,8053,9053,54470],[54,1054,2054,3054,4054,5054,6054,7054,8054,9054,54460],[55,1055,2055,3055,4055,5055,6055,7055,8055,9055,54450],[56,1056,2056,3056,4056,5056,6056,7056,8056,9056,54440],[57,1057,2057,3057,4057,5057,6057,7057,8057,9057,54430],[58,1058,2058,3058,4058,5058,6058,7058,8058,9058,54420],[59,1059,2059,3059,4059,5059,6059,7059,8059,9059,54410],[60,1060,2060,3060,4060,5060,6060,7060,8060,9060,54400],[61,1061,2061,3061,4061,5061,6061,7061,8061,9061,54390],[62,1062,2062,3062,4062,5062,6062,7062,8062,9062,54380],[63,1063,2063,3063,4063,5063,6063,7063,8063,9063,54370],[64,1064,2064,3064,4064,5064,6064,7064,8064,9064,54360],[65,1065,2065,3065,4065,5065,6065,7065,8065,9065,54350],[66,1066,2066,3066,4066,5066,6066,7066,8066,9066,54340],[67,1067,2067,3067,4067,5067,6067,7067,8067,9067,54330],[68,1068,2068,3068,4068,5068,6068,7068,8068,9068,54320],[69,1069,2069,3069,4069,5069,6069,7069,8069,9069,54310],[70,1070,2070,3070,4070,5070,6070,7070,8070,9070,54300],[71,1071,2071,3071,4071,5071,6071,7071,8071,9071,54290],[72,1072,2072,3072,4072,5072,6072,7072,8072,9072,54280],[73,1073,2073,3073,4073,5073,6073,7073,8073,9073,54270],[74,1074,2074,3074,4074,5074,6074,7074,8074,9074,54260],[75,1075,2075,3075,4075,5075,6075,7075,8075,9075,54250],[76,1076,2076,3076,4076,5076,6076,7076,8076,9076,54240],[77,1077,2077,3077,4077,5077,6077,7077,8077,9077,54230],[78,1078,2078,3078,4078,5078,6078,7078,8078,9078,54220],[79,1079,2079,3079,4079,5079,6079,7079,8079,9079,54210],[80,1080,2080,3080,4080,5080,6080,7080,8080,9080,54200],[81,1081,2081,3081,4081,5081,6081,7081,8081,9081,54190],[82,1082,2082,3082,4082,5082,6082,7082,8082,9082,54180],[83,1083,2083,3083,4083,5083,6083,7083,8083,9083,54170],[84,1084,2084,3084,4084,5084,6084,7084,8084,9084,54160],[85,1085,2085,3085,4085,5085,6085,7085,8085,9085,54150],[86,1086,2086,3086,4086,5086,6086,7086,8086,9086,54140],[87,1087,2087,3087,4087,5087,6087,7087,8087,9087,54130],[88,1088,2088,3088,4088,5088,6088,7088,8088,9088,54120],[89,1089,2089,3089,4089,5089,6089,7089,8089,9089,54110],[90,1090,2090,3090,4090,5090,6090,7090,8090,9090,54100],[91,1091,2091,3091,4091,5091,6091,7091,8091,9091,54090],[92,1092,2092,3092,4092,5092,6092,7092,8092,9092,54080],[93,1093,2093,3093,4093,5093,6093,7093,8093,9093,54070],[94,1094,2094,3094,4094,5094,6094,7094,8094,9094,54060],[95,1095,2095,3095,4095,5095,6095,7095,8095,9095,54050],[96,1096,2096,3096,4096,5096,6096,7096,8096,9096,54040],[97,1097,2097,3097,4097,5097,6097,7097,8097,9097,54030],[98,1098,2098,3098,4098,5098,6098,7098,8098,9098,54020],[99,1099,2099,3099,4099,5099,6099,7099,8099,9099,54010],[100,1100,2100,3100,4100,5100,6100,7100,8100,9100,54000],[101,1101,2101,3101,4101,5101,6101,7101,8101,9101,53990],[102,1102,2102,3102,4102,5102,6102,7102,8102,9102,53980],[103,1103,2103,3103,4103,5103,6103,7103,8103,9103,53970],[104,1104,2104,3104,4104,5104,6104,7104,8104,9104,53960],[105,1105,2105,3105,4105,5105,6105,7105,8105,9105,53950],[106,1106,2106,3106,4106,5106,6106,7106,8106,9106,53940],[107,1107,2107,3107,4107,5107,6107,7107,8107,9107,53930],[108,1108,2108,3108,4108,5108,6108,7108,8108,9108,53920],[109,1109,2109,3109,4109,5109,6109,7109,8109,9109,53910],[110,1110,2110,3110,4110,5110,6110,7110,8110,9110,53900],[111,1111,2111,3111,4111,5111,6111,7111,8111,9111,53890],[112,1112,2112,3112,4112,5112,6112,7112,8112,9112,53880],[113,1113,2113,3113,4113,5113,6113,7113,8113,9113,53870],[114,1114,2114,3114,4114,5114,6114,7114,8114,9114,53860],[115,1115,2115,3115,4115,5115,6115,7115,8115,9115,53850],[116,1116,2116,3116,4116,5116,6116,7116,8116,9116,53840],[117,1117,2117,3117,4117,5117,6117,7117,8117,9117,53830],[118,1118,2118,3118,4118,5118,6118,7118,8118,9118,53820],[119,1119,2119,3119,4119,5119,6119,7119,8119,9119,53810],[120,1120,2120,3120,4120,5120,6120,7120,8120,9120,53800],[121,1121,2121,3121,4121,5121,6121,7121,8121,9121,53790],[122,1122,2122,3122,4122,5122,6122,7122,8122,9122,53780],[123,1123,2123,3123,4123,5123,6123,7123,8123,9123,53770],[124,1124,2124,3124,4124,5124,6124,7124,8124,9124,53760],[125,1125,2125,3125,4125,5125,6125,7125,8125,9125,53750],[126,1126,2126,3126,4126,5126,6126,7126,8126,9126,53740],[127,1127,2127,3127,4127,5127,6127,7127,8127,9127,53730],[128,1128,2128,3128,4128,5128,6128,7128,8128,9128,53720],[129,1129,2129,3129,4129,5129,6129,7129,8129,9129,53710],[130,1130,2130,3130,4130,5130,6130,7130,8130,9130,53700],[131,1131,2131,3131,4131,5131,6131,7131,8131,9131,53690],[132,1132,2132,3132,4132,5132,6132,7132,8132,9132,53680],[133,1133,2133,3133,4133,5133,6133,7133,8133,9133,53670],[134,1134,2134,3134,4134,5134,6134,7134,8134,9134,53660],[135,1135,2135,3135,4135,5135,6135,7135,8135,9135,53650],[136,1136,2136,3136,4136,5136,6136,7136,8136,9136,53640],[137,1137,2137,3137,4137,5137,6137,7137,8137,9137,53630],[138,1138,2138,3138,4138,5138,6138,7138,8138,9138,53620],[139,1139,2139,3139,4139,5139,6139,7139,8139,9139,53610],[140,1140,2140,3140,4140,5140,6140,7140,8140,9140,53600],[141,1141,2141,3141,4141,5141,6141,7141,8141,9141,53590],[142,1142,2142,3142,4142,5142,6142,7142,8142,9142,53580],[143,1143,2143,3143,4143,5143,6143,7143,8143,9143,53570],[144,1144,2144,3144,4144,5144,6144,7144,8144,9144,53560],[145,1145,2145,3145,4145,5145,6145,7145,8145,9145,53550],[146,1146,2146,3146,4146,5146,6146,7146,8146,9146,53540],[147,1147,2147,3147,4147,5147,6147,7147,8147,9147,53530],[148,1148,2148,3148,4148,5148,6148,7148,8148,9148,53520],[149,1149,2149,3149,4149,5149,6149,7149,8149,9149,53510],[150,1150,2150,3150,4150,5150,6150,7150,8150,9150,53500],[151,1151,2151,3151,4151,5151,6151,7151,8151,9151,53490],[152,1152,2152,3152,4152,5152,6152,7152,8152,9152,53480],[153,1153,2153,3153,4153,5153,6153,7153,8153,9153,53470],[154,1154,2154,3154,4154,5154,6154,7154,8154,9154,53460],[155,1155,2155,3155,4155,5155,6155,7155,8155,9155,53450],[156,1156,2156,3156,4156,5156,6156,7156,8156,9156,53440],[157,1157,2157,3157,4157,5157,6157,7157,8157,9157,53430],[158,1158,2158,3158,4158,5158,6158,7158,8158,9158,53420],[159,1159,2159,3159,4159,5159,6159,7159,8159,9159,53410],[160,1160,2160,3160,4160,5160,6160,7160,8160,9160,53400],[161,1161,2161,3161,4161,5161,6161,7161,8161,9161,53390],[162,1162,2162,3162,4162,5162,6162,7162,8162,9162,53380],[163,1163,2163,3163,4163,5163,6163,7163,8163,9163,53370],[164,1164,2164,3164,4164,5164,6164,7164,8164,9164,53360],[165,1165,2165,3165,4165,5165,6165,7165,8165,9165,53350],[166,1166,2166,3166,4166,5166,6166,7166,8166,9166,53340],[167,1167,2167,3167,4167,5167,6167,7167,8167,9167,53330],[168,1168,2168,3168,4168,5168,6168,7168,8168,9168,53320],[169,1169,2169,3169,4169,5169,6169,7169,8169,9169,53310],[170,1170,2170,3170,4170,5170,6170,7170,8170,9170,53300],[171,1171,2171,3171,4171,5171,6171,7171,8171,9171,53290],[172,1172,2172,3172,4172,5172,6172,7172,8172,9172,53280],[173,1173,2173,3173,4173,5173,6173,7173,8173,9173,53270],[174,1174,2174,3174,4174,5174,6174,7174,8174,9174,53260],[175,1175,2175,3175,4175,5175,6175,7175,8175,9175,53250],[176,1176,2176,3176,4176,5176,6176,7176,8176,9176,53240],[177,1177,2177,3177,4177,5177,6177,7177,8177,9177,53230],[178,1178,2178,3178,4178,5178,6178,7178,8178,9178,53220],[179,1179,2179,3179,4179,5179,6179,7179,8179,9179,53210],[180,1180,2180,3180,4180,5180,6180,7180,8180,9180,53200],[181,1181,2181,3181,4181,5181,6181,7181,8181,9181,53190],[182,1182,2182,3182,4182,5182,6182,7182,8182,9182,53180],[183,1183,2183,3183,4183,5183,6183,7183,8183,9183,53170],[184,1184,2184,3184,4184,5184,6184,7184,8184,9184,53160],[185,1185,2185,3185,4185,5185,6185,7185,8185,9185,53150],[186,1186,2186,3186,4186,5186,6186,7186,8186,9186,53140],[187,1187,2187,3187,4187,5187,6187,7187,8187,9187,53130],[188,1188,2188,3188,4188,5188,6188,7188,8188,9188,53120],[189,1189,2189,3189,4189,5189,6189,7189,8189,9189,53110],[190,1190,2190,3190,4190,5190,6190,7190,8190,9190,53100],[191,1191,2191,3191,4191,5191,6191,7191,8191,9191,53090],[192,1192,2192,3192,4192,5192,6192,7192,8192,9192,53080],[193,1193,2193,3193,4193,5193,6193,7193,8193,9193,53070],[194,1194,2194,3194,4194,5194,6194,7194,8194,9194,53060],[195,1195,2195,3195,4195,5195,6195,7195,8195,9195,53050],[196,1196,2196,3196,4196,5196,6196,7196,8196,9196,53040],[197,1197,2197,3197,4197,5197,6197,7197,8197,9197,53030],[198,1198,2198,3198,4198,5198,6198,7198,8198,9198,53020],[199,1199,2199,3199,4199,5199,6199,7199,8199,9199,53010],[200,1200,2200,3200,4200,5200,6200,7200,8200,9200,53000],[201,1201,2201,3201,4201,5201,6201,7201,8201,9201,52990],[202,1202,2202,3202,4202,5202,6202,7202,8202,9202,52980],[203,1203,2203,3203,4203,5203,6203,7203,8203,9203,52970],[204,1204,2204,3204,4204,5204,6204,7204,8204,9204,52960],[205,1205,2205,3205,4205,5205,6205,7205,8205,9205,52950],[206,1206,2206,3206,4206,5206,6206,7206,8206,9206,52940],[207,1207,2207,3207,4207,5207,6207,7207,8207,9207,52930],[208,1208,2208,3208,4208,5208,6208,7208,8208,9208,52920],[209,1209,2209,3209,4209,5209,6209,7209,8209,9209,52910],[210,1210,2210,3210,4210,5210,6210,7210,8210,9210,52900],[211,1211,2211,3211,4211,5211,6211,7211,8211,9211,52890],[212,1212,2212,3212,4212,5212,6212,7212,8212,9212,52880],[213,1213,2213,3213,4213,5213,6213,7213,8213,9213,52870],[214,1214,2214,3214,4214,5214,6214,7214,8214,9214,52860],[215,1215,2215,3215,4215,5215,6215,7215,8215,9215,52850],[216,1216,2216,3216,4216,5216,6216,7216,8216,9216,52840],[217,1217,2217,3217,4217,5217,6217,7217,8217,9217,52830],[218,1218,2218,3218,4218,5218,6218,7218,8218,9218,52820],[219,1219,2219,3219,4219,5219,6219,7219,8219,9219,52810],[220,1220,2220,3220,4220,5220,6220,7220,8220,9220,52800],[221,1221,2221,3221,4221,5221,6221,7221,8221,9221,52790],[222,1222,2222,3222,4222,5222,6222,7222,8222,9222,52780],[223,1223,2223,3223,4223,5223,6223,7223,8223,9223,52770],[224,1224,2224,3224,4224,5224,6224,7224,8224,9224,52760],[225,1225,2225,3225,4225,5225,6225,7225,8225,9225,52750],[226,1226,2226,3226,4226,5226,6226,7226,8226,9226,52740],[227,1227,2227,3227,4227,5227,6227,7227,8227,9227,52730],[228,1228,2228,3228,4228,5228,6228,7228,8228,9228,52720],[229,1229,2229,3229,4229,5229,6229,7229,8229,9229,52710],[230,1230,2230,3230,4230,5230,6230,7230,8230,9230,52700],[231,1231,2231,3231,4231,5231,6231,7231,8231,9231,52690],[232,1232,2232,3232,4232,5232,6232,7232,8232,9232,52680],[233,1233,2233,3233,4233,5233,6233,7233,8233,9233,52670],[234,1234,2234,3234,4234,5234,6234,7234,8234,9234,52660],[235,1235,2235,3235,4235,5235,6235,7235,8235,9235,52650],[236,1236,2236,3236,4236,5236,6236,7236,8236,9236,52640],[237,1237,2237,3237,4237,5237,6237,7237,8237,9237,52630],[238,1238,2238,3238,4238,5238,6238,7238,8238,9238,52620],[239,1239,2239,3239,4239,5239,6239,7239,8239,9239,52610],[240,1240,2240,3240,4240,5240,6240,7240,8240,9240,52600],[241,1241,2241,3241,4241,5241,6241,7241,8241,9241,52590],[242,1242,2242,3242,4242,5242,6242,7242,8242,9242,52580],[243,1243,2243,3243,4243,5243,6243,7243,8243,9243,52570],[244,1244,2244,3244,4244,5244,6244,7244,8244,9244,52560],[245,1245,2245,3245,4245,5245,6245,7245,8245,9245,52550],[246,1246,2246,3246,4246,5246,6246,7246,8246,9246,52540],[247,1247,2247,3247,4247,5247,6247,7247,8247,9247,52530],[248,1248,2248,3248,4248,5248,6248,7248,8248,9248,52520],[249,1249,2249,3249,4249,5249,6249,7249,8249,9249,52510],[250,1250,2250,3250,4250,5250,6250,7250,8250,9250,52500],[251,1251,2251,3251,4251,5251,6251,7251,8251,9251,52490],[252,1252,2252,3252,4252,5252,6252,7252,8252,9252,52480],[253,1253,2253,3253,4253,5253,6253,7253,8253,9253,52470],[254,1254,2254,3254,4254,5254,6254,7254,8254,9254,52460],[255,1255,2255,3255,4255,5255,6255,7255,8255,9255,52450],[256,1256,2256,3256,4256,5256,6256,7256,8256,9256,52440],[257,1257,2257,3257,4257,5257,6257,7257,8257,9257,52430],[258,1258,2258,3258,4258,5258,6258,7258,8258,9258,52420],[259,1259,2259,3259,4259,5259,6259,7259,8259,9259,52410],[260,1260,2260,3260,4260,5260,6260,7260,8260,9260,52400],[261,1261,2261,3261,4261,5261,6261,7261,8261,9261,52390],[262,1262,2262,3262,4262,5262,6262,7262,8262,9262,52380],[263,1263,2263,3263,4263,5263,6263,7263,8263,9263,52370],[264,1264,2264,3264,4264,5264,6264,7264,8264,9264,52360],[265,1265,2265,3265,4265,5265,6265,7265,8265,9265,52350],[266,1266,2266,3266,4266,5266,6266,7266,8266,9266,52340],[267,1267,2267,3267,4267,5267,6267,7267,8267,9267,52330],[268,1268,2268,3268,4268,5268,6268,7268,8268,9268,52320],[269,1269,2269,3269,4269,5269,6269,7269,8269,9269,52310],[270,1270,2270,3270,4270,5270,6270,7270,8270,9270,52300],[271,1271,2271,3271,4271,5271,6271,7271,8271,9271,52290],[272,1272,2272,3272,4272,5272,6272,7272,8272,9272,52280],[273,1273,2273,3273,4273,5273,6273,7273,8273,9273,52270],[274,1274,2274,3274,4274,5274,6274,7274,8274,9274,52260],[275,1275,2275,3275,4275,5275,6275,7275,8275,9275,52250],[276,1276,2276,3276,4276,5276,6276,7276,8276,9276,52240],[277,1277,2277,3277,4277,5277,6277,7277,8277,9277,52230],[278,1278,2278,3278,4278,5278,6278,7278,8278,9278,52220],[279,1279,2279,3279,4279,5279,6279,7279,8279,9279,52210],[280,1280,2280,3280,4280,5280,6280,7280,8280,9280,52200],[281,1281,2281,3281,4281,5281,6281,7281,8281,9281,52190],[282,1282,2282,3282,4282,5282,6282,7282,8282,9282,52180],[283,1283,2283,3283,4283,5283,6283,7283,8283,9283,52170],[284,1284,2284,3284,4284,5284,6284,7284,8284,9284,52160],[285,1285,2285,3285,4285,5285,6285,7285,8285,9285,52150],[286,1286,2286,3286,4286,5286,6286,7286,8286,9286,52140],[287,1287,2287,3287,4287,5287,6287,7287,8287,9287,52130],[288,1288,2288,3288,4288,5288,6288,7288,8288,9288,52120],[289,1289,2289,3289,4289,5289,6289,7289,8289,9289,52110],[290,1290,2290,3290,4290,5290,6290,7290,8290,9290,52100],[291,1291,2291,3291,4291,5291,6291,7291,8291,9291,52090],[292,1292,2292,3292,4292,5292,6292,7292,8292,9292,52080],[293,1293,2293,3293,4293,5293,6293,7293,8293,9293,52070],[294,1294,2294,3294,4294,5294,6294,7294,8294,9294,52060],[295,1295,2295,3295,4295,5295,6295,7295,8295,9295,52050],[296,1296,2296,3296,4296,5296,6296,7296,8296,9296,52040],[297,1297,2297,3297,4297,5297,6297,7297,8297,9297,52030],[298,1298,2298,3298,4298,5298,6298,7298,8298,9298,52020],[299,1299,2299,3299,4299,5299,6299,7299,8299,9299,52010],[300,1300,2300,3300,4300,5300,6300,7300,8300,9300,52000],[301,1301,2301,3301,4301,5301,6301,7301,8301,9301,51990],[302,1302,2302,3302,4302,5302,6302,7302,8302,9302,51980],[303,1303,2303,3303,4303,5303,6303,7303,8303,9303,51970],[304,1304,2304,3304,4304,5304,6304,7304,8304,9304,51960],[305,1305,2305,3305,4305,5305,6305,7305,8305,9305,51950],[306,1306,2306,3306,4306,5306,6306,7306,8306,9306,51940],[307,1307,2307,3307,4307,5307,6307,7307,8307,9307,51930],[308,1308,2308,3308,4308,5308,6308,7308,8308,9308,51920],[309,1309,2309,3309,4309,5309,6309,7309,8309,9309,51910],[310,1310,2310,3310,4310,5310,6310,7310,8310,9310,51900],[311,1311,2311,3311,4311,5311,6311,7311,8311,9311,51890],[312,1312,2312,3312,4312,5312,6312,7312,8312,9312,51880],[313,1313,2313,3313,4313,5313,6313,7313,8313,9313,51870],[314,1314,2314,3314,4314,5314,6314,7314,8314,9314,51860],[315,1315,2315,3315,4315,5315,6315,7315,8315,9315,51850],[316,1316,2316,3316,4316,5316,6316,7316,8316,9316,51840],[317,1317,2317,3317,4317,5317,6317,7317,8317,9317,51830],[318,1318,2318,3318,4318,5318,6318,7318,8318,9318,51820],[319,1319,2319,3319,4319,5319,6319,7319,8319,9319,51810],[320,1320,2320,3320,4320,5320,6320,7320,8320,9320,51800],[321,1321,2321,3321,4321,5321,6321,7321,8321,9321,51790],[322,1322,2322,3322,4322,5322,6322,7322,8322,9322,51780],[323,1323,2323,3323,4323,5323,6323,7323,8323,9323,51770],[324,1324,2324,3324,4324,5324,6324,7324,8324,9324,51760],[325,1325,2325,3325,4325,5325,6325,7325,8325,9325,51750],[326,1326,2326,3326,4326,5326,6326,7326,8326,9326,51740],[327,1327,2327,3327,4327,5327,6327,7327,8327,9327,51730],[328,1328,2328,3328,4328,5328,6328,7328,8328,9328,51720],[329,1329,2329,3329,4329,5329,6329,7329,8329,9329,51710],[330,1330,2330,3330,4330,5330,6330,7330,8330,9330,51700],[331,1331,2331,3331,4331,5331,6331,7331,8331,9331,51690],[332,1332,2332,3332,4332,5332,6332,7332,8332,9332,51680],[333,1333,2333,3333,4333,5333,6333,7333,8333,9333,51670],[334,1334,2334,3334,4334,5334,6334,7334,8334,9334,51660],[335,1335,2335,3335,4335,5335,6335,7335,8335,9335,51650],[336,1336,2336,3336,4336,5336,6336,7336,8336,9336,51640],[337,1337,2337,3337,4337,5337,6337,7337,8337,9337,51630],[338,1338,2338,3338,4338,5338,6338,7338,8338,9338,51620],[339,1339,2339,3339,4339,5339,6339,7339,8339,9339,51610],[340,1340,2340,3340,4340,5340,6340,7340,8340,9340,51600],[341,1341,2341,3341,4341,5341,6341,7341,8341,9341,51590],[342,1342,2342,3342,4342,5342,6342,7342,8342,9342,51580],[343,1343,2343,3343,4343,5343,6343,7343,8343,9343,51570],[344,1344,2344,3344,4344,5344,6344,7344,8344,9344,51560],[345,1345,2345,3345,4345,5345,6345,7345,8345,9345,51550],[346,1346,2346,3346,4346,5346,6346,7346,8346,9346,51540],[347,1347,2347,3347,4347,5347,6347,7347,8347,9347,51530],[348,1348,2348,3348,4348,5348,6348,7348,8348,9348,51520],[349,1349,2349,3349,4349,5349,6349,7349,8349,9349,51510],[350,1350,2350,3350,4350,5350,6350,7350,8350,9350,51500],[351,1351,2351,3351,4351,5351,6351,7351,8351,9351,51490],[352,1352,2352,3352,4352,5352,6352,7352,8352,9352,51480],[353,1353,2353,3353,4353,5353,6353,7353,8353,9353,51470],[354,1354,2354,3354,4354,5354,6354,7354,8354,9354,51460],[355,1355,2355,3355,4355,5355,6355,7355,8355,9355,51450],[356,1356,2356,3356,4356,5356,6356,7356,8356,9356,51440],[357,1357,2357,3357,4357,5357,6357,7357,8357,9357,51430],[358,1358,2358,3358,4358,5358,6358,7358,8358,9358,51420],[359,1359,2359,3359,4359,5359,6359,7359,8359,9359,51410],[360,1360,2360,3360,4360,5360,6360,7360,8360,9360,51400],[361,1361,2361,3361,4361,5361,6361,7361,8361,9361,51390],[362,1362,2362,3362,4362,5362,6362,7362,8362,9362,51380],[363,1363,2363,3363,4363,5363,6363,7363,8363,9363,51370],[364,1364,2364,3364,4364,5364,6364,7364,8364,9364,51360],[365,1365,2365,3365,4365,5365,6365,7365,8365,9365,51350],[366,1366,2366,3366,4366,5366,6366,7366,8366,9366,51340],[367,1367,2367,3367,4367,5367,6367,7367,8367,9367,51330],[368,1368,2368,3368,4368,5368,6368,7368,8368,9368,51320],[369,1369,2369,3369,4369,5369,6369,7369,8369,9369,51310],[370,1370,2370,3370,4370,5370,6370,7370,8370,9370,51300],[371,1371,2371,3371,4371,5371,6371,7371,8371,9371,51290],[372,1372,2372,3372,4372,5372,6372,7372,8372,9372,51280],[373,1373,2373,3373,4373,5373,6373,7373,8373,9373,51270],[374,1374,2374,3374,4374,5374,6374,7374,8374,9374,51260],[375,1375,2375,3375,4375,5375,6375,7375,8375,9375,51250],[376,1376,2376,3376,4376,5376,6376,7376,8376,9376,51240],[377,1377,2377,3377,4377,5377,6377,7377,8377,9377,51230],[378,1378,2378,3378,4378,5378,6378,7378,8378,9378,51220],[379,1379,2379,3379,4379,5379,6379,7379,8379,9379,51210],[380,1380,2380,3380,4380,5380,6380,7380,8380,9380,51200],[381,1381,2381,3381,4381,5381,6381,7381,8381,9381,51190],[382,1382,2382,3382,4382,5382,6382,7382,8382,9382,51180],[383,1383,2383,3383,4383,5383,6383,7383,8383,9383,51170],[384,1384,2384,3384,4384,5384,6384,7384,8384,9384,51160],[385,1385,2385,3385,4385,5385,6385,7385,8385,9385,51150],[386,1386,2386,3386,4386,5386,6386,7386,8386,9386,51140],[387,1387,2387,3387,4387,5387,6387,7387,8387,9387,51130],[388,1388,2388,3388,4388,5388,6388,7388,8388,9388,51120],[389,1389,2389,3389,4389,5389,6389,7389,8389,9389,51110],[390,1390,2390,3390,4390,5390,6390,7390,8390,9390,51100],[391,1391,2391,3391,4391,5391,6391,7391,8391,9391,51090],[392,1392,2392,3392,4392,5392,6392,7392,8392,9392,51080],[393,1393,2393,3393,4393,5393,6393,7393,8393,9393,51070],[394,1394,2394,3394,4394,5394,6394,7394,8394,9394,51060],[395,1395,2395,3395,4395,5395,6395,7395,8395,9395,51050],[396,1396,2396,3396,4396,5396,6396,7396,8396,9396,51040],[397,1397,2397,3397,4397,5397,6397,7397,8397,9397,51030],[398,1398,2398,3398,4398,5398,6398,7398,8398,9398,51020],[399,1399,2399,3399,4399,5399,6399,7399,8399,9399,51010],[400,1400,2400,3400,4400,5400,6400,7400,8400,9400,51000],[401,1401,2401,3401,4401,5401,6401,7401,8401,9401,50990],[402,1402,2402,3402,4402,5402,6402,7402,8402,9402,50980],[403,1403,2403,3403,4403,5403,6403,7403,8403,9403,50970],[404,1404,2404,3404,4404,5404,6404,7404,8404,9404,50960],[405,1405,2405,3405,4405,5405,6405,7405,8405,9405,50950],[406,1406,2406,3406,4406,5406,6406,7406,8406,9406,50940],[407,1407,2407,3407,4407,5407,6407,7407,8407,9407,50930],[408,1408,2408,3408,4408,5408,6408,7408,8408,9408,50920],[409,1409,2409,3409,4409,5409,6409,7409,8409,9409,50910],[410,1410,2410,3410,4410,5410,6410,7410,8410,9410,50900],[411,1411,2411,3411,4411,5411,6411,7411,8411,9411,50890],[412,1412,2412,3412,4412,5412,6412,7412,8412,9412,50880],[413,1413,2413,3413,4413,5413,6413,7413,8413,9413,50870],[414,1414,2414,3414,4414,5414,6414,7414,8414,9414,50860],[415,1415,2415,3415,4415,5415,6415,7415,8415,9415,50850],[416,1416,2416,3416,4416,5416,6416,7416,8416,9416,50840],[417,1417,2417,3417,4417,5417,6417,7417,8417,9417,50830],[418,1418,2418,3418,4418,5418,6418,7418,8418,9418,50820],[419,1419,2419,3419,4419,5419,6419,7419,8419,9419,50810],[420,1420,2420,3420,4420,5420,6420,7420,8420,9420,50800],[421,1421,2421,3421,4421,5421,6421,7421,8421,9421,50790],[422,1422,2422,3422,4422,5422,6422,7422,8422,9422,50780],[423,1423,2423,3423,4423,5423,6423,7423,8423,9423,50770],[424,1424,2424,3424,4424,5424,6424,7424,8424,9424,50760],[425,1425,2425,3425,4425,5425,6425,7425,8425,9425,50750],[426,1426,2426,3426,4426,5426,6426,7426,8426,9426,50740],[427,1427,2427,3427,4427,5427,6427,7427,8427,9427,50730],[428,1428,2428,3428,4428,5428,6428,7428,8428,9428,50720],[429,1429,2429,3429,4429,5429,6429,7429,8429,9429,50710],[430,1430,2430,3430,4430,5430,6430,7430,8430,9430,50700],[431,1431,2431,3431,4431,5431,6431,7431,8431,9431,50690],[432,1432,2432,3432,4432,5432,6432,7432,8432,9432,50680],[433,1433,2433,3433,4433,5433,6433,7433,8433,9433,50670],[434,1434,2434,3434,4434,5434,6434,7434,8434,9434,50660],[435,1435,2435,3435,4435,5435,6435,7435,8435,9435,50650],[436,1436,2436,3436,4436,5436,6436,7436,8436,9436,50640],[437,1437,2437,3437,4437,5437,6437,7437,8437,9437,50630],[438,1438,2438,3438,4438,5438,6438,7438,8438,9438,50620],[439,1439,2439,3439,4439,5439,6439,7439,8439,9439,50610],[440,1440,2440,3440,4440,5440,6440,7440,8440,9440,50600],[441,1441,2441,3441,4441,5441,6441,7441,8441,9441,50590],[442,1442,2442,3442,4442,5442,6442,7442,8442,9442,50580],[443,1443,2443,3443,4443,5443,6443,7443,8443,9443,50570],[444,1444,2444,3444,4444,5444,6444,7444,8444,9444,50560],[445,1445,2445,3445,4445,5445,6445,7445,8445,9445,50550],[446,1446,2446,3446,4446,5446,6446,7446,8446,9446,50540],[447,1447,2447,3447,4447,5447,6447,7447,8447,9447,50530],[448,1448,2448,3448,4448,5448,6448,7448,8448,9448,50520],[449,1449,2449,3449,4449,5449,6449,7449,8449,9449,50510],[450,1450,2450,3450,4450,5450,6450,7450,8450,9450,50500],[451,1451,2451,3451,4451,5451,6451,7451,8451,9451,50490],[452,1452,2452,3452,4452,5452,6452,7452,8452,9452,50480],[453,1453,2453,3453,4453,5453,6453,7453,8453,9453,50470],[454,1454,2454,3454,4454,5454,6454,7454,8454,9454,50460],[455,1455,2455,3455,4455,5455,6455,7455,8455,9455,50450],[456,1456,2456,3456,4456,5456,6456,7456,8456,9456,50440],[457,1457,2457,3457,4457,5457,6457,7457,8457,9457,50430],[458,1458,2458,3458,4458,5458,6458,7458,8458,9458,50420],[459,1459,2459,3459,4459,5459,6459,7459,8459,9459,50410],[460,1460,2460,3460,4460,5460,6460,7460,8460,9460,50400],[461,1461,2461,3461,4461,5461,6461,7461,8461,9461,50390],[462,1462,2462,3462,4462,5462,6462,7462,8462,9462,50380],[463,1463,2463,3463,4463,5463,6463,7463,8463,9463,50370],[464,1464,2464,3464,4464,5464,6464,7464,8464,9464,50360],[465,1465,2465,3465,4465,5465,6465,7465,8465,9465,50350],[466,1466,2466,3466,4466,5466,6466,7466,8466,9466,50340],[467,1467,2467,3467,4467,5467,6467,7467,8467,9467,50330],[468,1468,2468,3468,4468,5468,6468,7468,8468,9468,50320],[469,1469,2469,3469,4469,5469,6469,7469,8469,9469,50310],[470,1470,2470,3470,4470,5470,6470,7470,8470,9470,50300],[471,1471,2471,3471,4471,5471,6471,7471,8471,9471,50290],[472,1472,2472,3472,4472,5472,6472,7472,8472,9472,50280],[473,1473,2473,3473,4473,5473,6473,7473,8473,9473,50270],[474,1474,2474,3474,4474,5474,6474,7474,8474,9474,50260],[475,1475,2475,3475,4475,5475,6475,7475,8475,9475,50250],[476,1476,2476,3476,4476,5476,6476,7476,8476,9476,50240],[477,1477,2477,3477,4477,5477,6477,7477,8477,9477,50230],[478,1478,2478,3478,4478,5478,6478,7478,8478,9478,50220],[479,1479,2479,3479,4479,5479,6479,7479,8479,9479,50210],[480,1480,2480,3480,4480,5480,6480,7480,8480,9480,50200],[481,1481,2481,3481,4481,5481,6481,7481,8481,9481,50190],[482,1482,2482,3482,4482,5482,6482,7482,8482,9482,50180],[483,1483,2483,3483,4483,5483,6483,7483,8483,9483,50170],[484,1484,2484,3484,4484,5484,6484,7484,8484,9484,50160],[485,1485,2485,3485,4485,5485,6485,7485,8485,9485,50150],[486,1486,2486,3486,4486,5486,6486,7486,8486,9486,50140],[487,1487,2487,3487,4487,5487,6487,7487,8487,9487,50130],[488,1488,2488,3488,4488,5488,6488,7488,8488,9488,50120],[489,1489,2489,3489,4489,5489,6489,7489,8489,9489,50110],[490,1490,2490,3490,4490,5490,6490,7490,8490,9490,50100],[491,1491,2491,3491,4491,5491,6491,7491,8491,9491,50090],[492,1492,2492,3492,4492,5492,6492,7492,8492,9492,50080],[493,1493,2493,3493,4493,5493,6493,7493,8493,9493,50070],[494,1494,2494,3494,4494,5494,6494,7494,8494,9494,50060],[495,1495,2495,3495,4495,5495,6495,7495,8495,9495,50050],[496,1496,2496,3496,4496,5496,6496,7496,8496,9496,50040],[497,1497,2497,3497,4497,5497,6497,7497,8497,9497,50030],[498,1498,2498,3498,4498,5498,6498,7498,8498,9498,50020],[499,1499,2499,3499,4499,5499,6499,7499,8499,9499,50010],[500,1500,2500,3500,4500,5500,6500,7500,8500,9500,50000],[501,1501,2501,3501,4501,5501,6501,7501,8501,9501,49990],[502,1502,2502,3502,4502,5502,6502,7502,8502,9502,49980],[503,1503,2503,3503,4503,5503,6503,7503,8503,9503,49970],[504,1504,2504,3504,4504,5504,6504,7504,8504,9504,49960],[505,1505,2505,3505,4505,5505,6505,7505,8505,9505,49950],[506,1506,2506,3506,4506,5506,6506,7506,8506,9506,49940],[507,1507,2507,3507,4507,5507,6507,7507,8507,9507,49930],[508,1508,2508,3508,4508,5508,6508,7508,8508,9508,49920],[509,1509,2509,3509,4509,5509,6509,7509,8509,9509,49910],[510,1510,2510,3510,4510,5510,6510,7510,8510,9510,49900],[511,1511,2511,3511,4511,5511,6511,7511,8511,9511,49890],[512,1512,2512,3512,4512,5512,6512,7512,8512,9512,49880],[513,1513,2513,3513,4513,5513,6513,7513,8513,9513,49870],[514,1514,2514,3514,4514,5514,6514,7514,8514,9514,49860],[515,1515,2515,3515,4515,5515,6515,7515,8515,9515,49850],[516,1516,2516,3516,4516,5516,6516,7516,8516,9516,49840],[517,1517,2517,3517,4517,5517,6517,7517,8517,9517,49830],[518,1518,2518,3518,4518,5518,6518,7518,8518,9518,49820],[519,1519,2519,3519,4519,5519,6519,7519,8519,9519,49810],[520,1520,2520,3520,4520,5520,6520,7520,8520,9520,49800],[521,1521,2521,3521,4521,5521,6521,7521,8521,9521,49790],[522,1522,2522,3522,4522,5522,6522,7522,8522,9522,49780],[523,1523,2523,3523,4523,5523,6523,7523,8523,9523,49770],[524,1524,2524,3524,4524,5524,6524,7524,8524,9524,49760],[525,1525,2525,3525,4525,5525,6525,7525,8525,9525,49750],[526,1526,2526,3526,4526,5526,6526,7526,8526,9526,49740],[527,1527,2527,3527,4527,5527,6527,7527,8527,9527,49730],[528,1528,2528,3528,4528,5528,6528,7528,8528,9528,49720],[529,1529,2529,3529,4529,5529,6529,7529,8529,9529,49710],[530,1530,2530,3530,4530,5530,6530,7530,8530,9530,49700],[531,1531,2531,3531,4531,5531,6531,7531,8531,9531,49690],[532,1532,2532,3532,4532,5532,6532,7532,8532,9532,49680],[533,1533,2533,3533,4533,5533,6533,7533,8533,9533,49670],[534,1534,2534,3534,4534,5534,6534,7534,8534,9534,49660],[535,1535,2535,3535,4535,5535,6535,7535,8535,9535,49650],[536,1536,2536,3536,4536,5536,6536,7536,8536,9536,49640],[537,1537,2537,3537,4537,5537,6537,7537,8537,9537,49630],[538,1538,2538,3538,4538,5538,6538,7538,8538,9538,49620],[539,1539,2539,3539,4539,5539,6539,7539,8539,9539,49610],[540,1540,2540,3540,4540,5540,6540,7540,8540,9540,49600],[541,1541,2541,3541,4541,5541,6541,7541,8541,9541,49590],[542,1542,2542,3542,4542,5542,6542,7542,8542,9542,49580],[543,1543,2543,3543,4543,5543,6543,7543,8543,9543,49570],[544,1544,2544,3544,4544,5544,6544,7544,8544,9544,49560],[545,1545,2545,3545,4545,5545,6545,7545,8545,9545,49550],[546,1546,2546,3546,4546,5546,6546,7546,8546,9546,49540],[547,1547,2547,3547,4547,5547,6547,7547,8547,9547,49530],[548,1548,2548,3548,4548,5548,6548,7548,8548,9548,49520],[549,1549,2549,3549,4549,5549,6549,7549,8549,9549,49510],[550,1550,2550,3550,4550,5550,6550,7550,8550,9550,49500],[551,1551,2551,3551,4551,5551,6551,7551,8551,9551,49490],[552,1552,2552,3552,4552,5552,6552,7552,8552,9552,49480],[553,1553,2553,3553,4553,5553,6553,7553,8553,9553,49470],[554,1554,2554,3554,4554,5554,6554,7554,8554,9554,49460],[555,1555,2555,3555,4555,5555,6555,7555,8555,9555,49450],[556,1556,2556,3556,4556,5556,6556,7556,8556,9556,49440],[557,1557,2557,3557,4557,5557,6557,7557,8557,9557,49430],[558,1558,2558,3558,4558,5558,6558,7558,8558,9558,49420],[559,1559,2559,3559,4559,5559,6559,7559,8559,9559,49410],[560,1560,2560,3560,4560,5560,6560,7560,8560,9560,49400],[561,1561,2561,3561,4561,5561,6561,7561,8561,9561,49390],[562,1562,2562,3562,4562,5562,6562,7562,8562,9562,49380],[563,1563,2563,3563,4563,5563,6563,7563,8563,9563,49370],[564,1564,2564,3564,4564,5564,6564,7564,8564,9564,49360],[565,1565,2565,3565,4565,5565,6565,7565,8565,9565,49350],[566,1566,2566,3566,4566,5566,6566,7566,8566,9566,49340],[567,1567,2567,3567,4567,5567,6567,7567,8567,9567,49330],[568,1568,2568,3568,4568,5568,6568,7568,8568,9568,49320],[569,1569,2569,3569,4569,5569,6569,7569,8569,9569,49310],[570,1570,2570,3570,4570,5570,6570,7570,8570,9570,49300],[571,1571,2571,3571,4571,5571,6571,7571,8571,9571,49290],[572,1572,2572,3572,4572,5572,6572,7572,8572,9572,49280],[573,1573,2573,3573,4573,5573,6573,7573,8573,9573,49270],[574,1574,2574,3574,4574,5574,6574,7574,8574,9574,49260],[575,1575,2575,3575,4575,5575,6575,7575,8575,9575,49250],[576,1576,2576,3576,4576,5576,6576,7576,8576,9576,49240],[577,1577,2577,3577,4577,5577,6577,7577,8577,9577,49230],[578,1578,2578,3578,4578,5578,6578,7578,8578,9578,49220],[579,1579,2579,3579,4579,5579,6579,7579,8579,9579,49210],[580,1580,2580,3580,4580,5580,6580,7580,8580,9580,49200],[581,1581,2581,3581,4581,5581,6581,7581,8581,9581,49190],[582,1582,2582,3582,4582,5582,6582,7582,8582,9582,49180],[583,1583,2583,3583,4583,5583,6583,7583,8583,9583,49170],[584,1584,2584,3584,4584,5584,6584,7584,8584,9584,49160],[585,1585,2585,3585,4585,5585,6585,7585,8585,9585,49150],[586,1586,2586,3586,4586,5586,6586,7586,8586,9586,49140],[587,1587,2587,3587,4587,5587,6587,7587,8587,9587,49130],[588,1588,2588,3588,4588,5588,6588,7588,8588,9588,49120],[589,1589,2589,3589,4589,5589,6589,7589,8589,9589,49110],[590,1590,2590,3590,4590,5590,6590,7590,8590,9590,49100],[591,1591,2591,3591,4591,5591,6591,7591,8591,9591,49090],[592,1592,2592,3592,4592,5592,6592,7592,8592,9592,49080],[593,1593,2593,3593,4593,5593,6593,7593,8593,9593,49070],[594,1594,2594,3594,4594,5594,6594,7594,8594,9594,49060],[595,1595,2595,3595,4595,5595,6595,7595,8595,9595,49050],[596,1596,2596,3596,4596,5596,6596,7596,8596,9596,49040],[597,1597,2597,3597,4597,5597,6597,7597,8597,9597,49030],[598,1598,2598,3598,4598,5598,6598,7598,8598,9598,49020],[599,1599,2599,3599,4599,5599,6599,7599,8599,9599,49010],[600,1600,2600,3600,4600,5600,6600,7600,8600,9600,49000],[601,1601,2601,3601,4601,5601,6601,7601,8601,9601,48990],[602,1602,2602,3602,4602,5602,6602,7602,8602,9602,48980],[603,1603,2603,3603,4603,5603,6603,7603,8603,9603,48970],[604,1604,2604,3604,4604,5604,6604,7604,8604,9604,48960],[605,1605,2605,3605,4605,5605,6605,7605,8605,9605,48950],[606,1606,2606,3606,4606,5606,6606,7606,8606,9606,48940],[607,1607,2607,3607,4607,5607,6607,7607,8607,9607,48930],[608,1608,2608,3608,4608,5608,6608,7608,8608,9608,48920],[609,1609,2609,3609,4609,5609,6609,7609,8609,9609,48910],[610,1610,2610,3610,4610,5610,6610,7610,8610,9610,48900],[611,1611,2611,3611,4611,5611,6611,7611,8611,9611,48890],[612,1612,2612,3612,4612,5612,6612,7612,8612,9612,48880],[613,1613,2613,3613,4613,5613,6613,7613,8613,9613,48870],[614,1614,2614,3614,4614,5614,6614,7614,8614,9614,48860],[615,1615,2615,3615,4615,5615,6615,7615,8615,9615,48850],[616,1616,2616,3616,4616,5616,6616,7616,8616,9616,48840],[617,1617,2617,3617,4617,5617,6617,7617,8617,9617,48830],[618,1618,2618,3618,4618,5618,6618,7618,8618,9618,48820],[619,1619,2619,3619,4619,5619,6619,7619,8619,9619,48810],[620,1620,2620,3620,4620,5620,6620,7620,8620,9620,48800],[621,1621,2621,3621,4621,5621,6621,7621,8621,9621,48790],[622,1622,2622,3622,4622,5622,6622,7622,8622,9622,48780],[623,1623,2623,3623,4623,5623,6623,7623,8623,9623,48770],[624,1624,2624,3624,4624,5624,6624,7624,8624,9624,48760],[625,1625,2625,3625,4625,5625,6625,7625,8625,9625,48750],[626,1626,2626,3626,4626,5626,6626,7626,8626,9626,48740],[627,1627,2627,3627,4627,5627,6627,7627,8627,9627,48730],[628,1628,2628,3628,4628,5628,6628,7628,8628,9628,48720],[629,1629,2629,3629,4629,5629,6629,7629,8629,9629,48710],[630,1630,2630,3630,4630,5630,6630,7630,8630,9630,48700],[631,1631,2631,3631,4631,5631,6631,7631,8631,9631,48690],[632,1632,2632,3632,4632,5632,6632,7632,8632,9632,48680],[633,1633,2633,3633,4633,5633,6633,7633,8633,9633,48670],[634,1634,2634,3634,4634,5634,6634,7634,8634,9634,48660],[635,1635,2635,3635,4635,5635,6635,7635,8635,9635,48650],[636,1636,2636,3636,4636,5636,6636,7636,8636,9636,48640],[637,1637,2637,3637,4637,5637,6637,7637,8637,9637,48630],[638,1638,2638,3638,4638,5638,6638,7638,8638,9638,48620],[639,1639,2639,3639,4639,5639,6639,7639,8639,9639,48610],[640,1640,2640,3640,4640,5640,6640,7640,8640,9640,48600],[641,1641,2641,3641,4641,5641,6641,7641,8641,9641,48590],[642,1642,2642,3642,4642,5642,6642,7642,8642,9642,48580],[643,1643,2643,3643,4643,5643,6643,7643,8643,9643,48570],[644,1644,2644,3644,4644,5644,6644,7644,8644,9644,48560],[645,1645,2645,3645,4645,5645,6645,7645,8645,9645,48550],[646,1646,2646,3646,4646,5646,6646,7646,8646,9646,48540],[647,1647,2647,3647,4647,5647,6647,7647,8647,9647,48530],[648,1648,2648,3648,4648,5648,6648,7648,8648,9648,48520],[649,1649,2649,3649,4649,5649,6649,7649,8649,9649,48510],[650,1650,2650,3650,4650,5650,6650,7650,8650,9650,48500],[651,1651,2651,3651,4651,5651,6651,7651,8651,9651,48490],[652,1652,2652,3652,4652,5652,6652,7652,8652,9652,48480],[653,1653,2653,3653,4653,5653,6653,7653,8653,9653,48470],[654,1654,2654,3654,4654,5654,6654,7654,8654,9654,48460],[655,1655,2655,3655,4655,5655,6655,7655,8655,9655,48450],[656,1656,2656,3656,4656,5656,6656,7656,8656,9656,48440],[657,1657,2657,3657,4657,5657,6657,7657,8657,9657,48430],[658,1658,2658,3658,4658,5658,6658,7658,8658,9658,48420],[659,1659,2659,3659,4659,5659,6659,7659,8659,9659,48410],[660,1660,2660,3660,4660,5660,6660,7660,8660,9660,48400],[661,1661,2661,3661,4661,5661,6661,7661,8661,9661,48390],[662,1662,2662,3662,4662,5662,6662,7662,8662,9662,48380],[663,1663,2663,3663,4663,5663,6663,7663,8663,9663,48370],[664,1664,2664,3664,4664,5664,6664,7664,8664,9664,48360],[665,1665,2665,3665,4665,5665,6665,7665,8665,9665,48350],[666,1666,2666,3666,4666,5666,6666,7666,8666,9666,48340],[667,1667,2667,3667,4667,5667,6667,7667,8667,9667,48330],[668,1668,2668,3668,4668,5668,6668,7668,8668,9668,48320],[669,1669,2669,3669,4669,5669,6669,7669,8669,9669,48310],[670,1670,2670,3670,4670,5670,6670,7670,8670,9670,48300],[671,1671,2671,3671,4671,5671,6671,7671,8671,9671,48290],[672,1672,2672,3672,4672,5672,6672,7672,8672,9672,48280],[673,1673,2673,3673,4673,5673,6673,7673,8673,9673,48270],[674,1674,2674,3674,4674,5674,6674,7674,8674,9674,48260],[675,1675,2675,3675,4675,5675,6675,7675,8675,9675,48250],[676,1676,2676,3676,4676,5676,6676,7676,8676,9676,48240],[677,1677,2677,3677,4677,5677,6677,7677,8677,9677,48230],[678,1678,2678,3678,4678,5678,6678,7678,8678,9678,48220],[679,1679,2679,3679,4679,5679,6679,7679,8679,9679,48210],[680,1680,2680,3680,4680,5680,6680,7680,8680,9680,48200],[681,1681,2681,3681,4681,5681,6681,7681,8681,9681,48190],[682,1682,2682,3682,4682,5682,6682,7682,8682,9682,48180],[683,1683,2683,3683,4683,5683,6683,7683,8683,9683,48170],[684,1684,2684,3684,4684,5684,6684,7684,8684,9684,48160],[685,1685,2685,3685,4685,5685,6685,7685,8685,9685,48150],[686,1686,2686,3686,4686,5686,6686,7686,8686,9686,48140],[687,1687,2687,3687,4687,5687,6687,7687,8687,9687,48130],[688,1688,2688,3688,4688,5688,6688,7688,8688,9688,48120],[689,1689,2689,3689,4689,5689,6689,7689,8689,9689,48110],[690,1690,2690,3690,4690,5690,6690,7690,8690,9690,48100],[691,1691,2691,3691,4691,5691,6691,7691,8691,9691,48090],[692,1692,2692,3692,4692,5692,6692,7692,8692,9692,48080],[693,1693,2693,3693,4693,5693,6693,7693,8693,9693,48070],[694,1694,2694,3694,4694,5694,6694,7694,8694,9694,48060],[695,1695,2695,3695,4695,5695,6695,7695,8695,9695,48050],[696,1696,2696,3696,4696,5696,6696,7696,8696,9696,48040],[697,1697,2697,3697,4697,5697,6697,7697,8697,9697,48030],[698,1698,2698,3698,4698,5698,6698,7698,8698,9698,48020],[699,1699,2699,3699,4699,5699,6699,7699,8699,9699,48010],[700,1700,2700,3700,4700,5700,6700,7700,8700,9700,48000],[701,1701,2701,3701,4701,5701,6701,7701,8701,9701,47990],[702,1702,2702,3702,4702,5702,6702,7702,8702,9702,47980],[703,1703,2703,3703,4703,5703,6703,7703,8703,9703,47970],[704,1704,2704,3704,4704,5704,6704,7704,8704,9704,47960],[705,1705,2705,3705,4705,5705,6705,7705,8705,9705,47950],[706,1706,2706,3706,4706,5706,6706,7706,8706,9706,47940],[707,1707,2707,3707,4707,5707,6707,7707,8707,9707,47930],[708,1708,2708,3708,4708,5708,6708,7708,8708,9708,47920],[709,1709,2709,3709,4709,5709,6709,7709,8709,9709,47910],[710,1710,2710,3710,4710,5710,6710,7710,8710,9710,47900],[711,1711,2711,3711,4711,5711,6711,7711,8711,9711,47890],[712,1712,2712,3712,4712,5712,6712,7712,8712,9712,47880],[713,1713,2713,3713,4713,5713,6713,7713,8713,9713,47870],[714,1714,2714,3714,4714,5714,6714,7714,8714,9714,47860],[715,1715,2715,3715,4715,5715,6715,7715,8715,9715,47850],[716,1716,2716,3716,4716,5716,6716,7716,8716,9716,47840],[717,1717,2717,3717,4717,5717,6717,7717,8717,9717,47830],[718,1718,2718,3718,4718,5718,6718,7718,8718,9718,47820],[719,1719,2719,3719,4719,5719,6719,7719,8719,9719,47810],[720,1720,2720,3720,4720,5720,6720,7720,8720,9720,47800],[721,1721,2721,3721,4721,5721,6721,7721,8721,9721,47790],[722,1722,2722,3722,4722,5722,6722,7722,8722,9722,47780],[723,1723,2723,3723,4723,5723,6723,7723,8723,9723,47770],[724,1724,2724,3724,4724,5724,6724,7724,8724,9724,47760],[725,1725,2725,3725,4725,5725,6725,7725,8725,9725,47750],[726,1726,2726,3726,4726,5726,6726,7726,8726,9726,47740],[727,1727,2727,3727,4727,5727,6727,7727,8727,9727,47730],[728,1728,2728,3728,4728,5728,6728,7728,8728,9728,47720],[729,1729,2729,3729,4729,5729,6729,7729,8729,9729,47710],[730,1730,2730,3730,4730,5730,6730,7730,8730,9730,47700],[731,1731,2731,3731,4731,5731,6731,7731,8731,9731,47690],[732,1732,2732,3732,4732,5732,6732,7732,8732,9732,47680],[733,1733,2733,3733,4733,5733,6733,7733,8733,9733,47670],[734,1734,2734,3734,4734,5734,6734,7734,8734,9734,47660],[735,1735,2735,3735,4735,5735,6735,7735,8735,9735,47650],[736,1736,2736,3736,4736,5736,6736,7736,8736,9736,47640],[737,1737,2737,3737,4737,5737,6737,7737,8737,9737,47630],[738,1738,2738,3738,4738,5738,6738,7738,8738,9738,47620],[739,1739,2739,3739,4739,5739,6739,7739,8739,9739,47610],[740,1740,2740,3740,4740,5740,6740,7740,8740,9740,47600],[741,1741,2741,3741,4741,5741,6741,7741,8741,9741,47590],[742,1742,2742,3742,4742,5742,6742,7742,8742,9742,47580],[743,1743,2743,3743,4743,5743,6743,7743,8743,9743,47570],[744,1744,2744,3744,4744,5744,6744,7744,8744,9744,47560],[745,1745,2745,3745,4745,5745,6745,7745,8745,9745,47550],[746,1746,2746,3746,4746,5746,6746,7746,8746,9746,47540],[747,1747,2747,3747,4747,5747,6747,7747,8747,9747,47530],[748,1748,2748,3748,4748,5748,6748,7748,8748,9748,47520],[749,1749,2749,3749,4749,5749,6749,7749,8749,9749,47510],[750,1750,2750,3750,4750,5750,6750,7750,8750,9750,47500],[751,1751,2751,3751,4751,5751,6751,7751,8751,9751,47490],[752,1752,2752,3752,4752,5752,6752,7752,8752,9752,47480],[753,1753,2753,3753,4753,5753,6753,7753,8753,9753,47470],[754,1754,2754,3754,4754,5754,6754,7754,8754,9754,47460],[755,1755,2755,3755,4755,5755,6755,7755,8755,9755,47450],[756,1756,2756,3756,4756,5756,6756,7756,8756,9756,47440],[757,1757,2757,3757,4757,5757,6757,7757,8757,9757,47430],[758,1758,2758,3758,4758,5758,6758,7758,8758,9758,47420],[759,1759,2759,3759,4759,5759,6759,7759,8759,9759,47410],[760,1760,2760,3760,4760,5760,6760,7760,8760,9760,47400],[761,1761,2761,3761,4761,5761,6761,7761,8761,9761,47390],[762,1762,2762,3762,4762,5762,6762,7762,8762,9762,47380],[763,1763,2763,3763,4763,5763,6763,7763,8763,9763,47370],[764,1764,2764,3764,4764,5764,6764,7764,8764,9764,47360],[765,1765,2765,3765,4765,5765,6765,7765,8765,9765,47350],[766,1766,2766,3766,4766,5766,6766,7766,8766,9766,47340],[767,1767,2767,3767,4767,5767,6767,7767,8767,9767,47330],[768,1768,2768,3768,4768,5768,6768,7768,8768,9768,47320],[769,1769,2769,3769,4769,5769,6769,7769,8769,9769,47310],[770,1770,2770,3770,4770,5770,6770,7770,8770,9770,47300],[771,1771,2771,3771,4771,5771,6771,7771,8771,9771,47290],[772,1772,2772,3772,4772,5772,6772,7772,8772,9772,47280],[773,1773,2773,3773,4773,5773,6773,7773,8773,9773,47270],[774,1774,2774,3774,4774,5774,6774,7774,8774,9774,47260],[775,1775,2775,3775,4775,5775,6775,7775,8775,9775,47250],[776,1776,2776,3776,4776,5776,6776,7776,8776,9776,47240],[777,1777,2777,3777,4777,5777,6777,7777,8777,9777,47230],[778,1778,2778,3778,4778,5778,6778,7778,8778,9778,47220],[779,1779,2779,3779,4779,5779,6779,7779,8779,9779,47210],[780,1780,2780,3780,4780,5780,6780,7780,8780,9780,47200],[781,1781,2781,3781,4781,5781,6781,7781,8781,9781,47190],[782,1782,2782,3782,4782,5782,6782,7782,8782,9782,47180],[783,1783,2783,3783,4783,5783,6783,7783,8783,9783,47170],[784,1784,2784,3784,4784,5784,6784,7784,8784,9784,47160],[785,1785,2785,3785,4785,5785,6785,7785,8785,9785,47150],[786,1786,2786,3786,4786,5786,6786,7786,8786,9786,47140],[787,1787,2787,3787,4787,5787,6787,7787,8787,9787,47130],[788,1788,2788,3788,4788,5788,6788,7788,8788,9788,47120],[789,1789,2789,3789,4789,5789,6789,7789,8789,9789,47110],[790,1790,2790,3790,4790,5790,6790,7790,8790,9790,47100],[791,1791,2791,3791,4791,5791,6791,7791,8791,9791,47090],[792,1792,2792,3792,4792,5792,6792,7792,8792,9792,47080],[793,1793,2793,3793,4793,5793,6793,7793,8793,9793,47070],[794,1794,2794,3794,4794,5794,6794,7794,8794,9794,47060],[795,1795,2795,3795,4795,5795,6795,7795,8795,9795,47050],[796,1796,2796,3796,4796,5796,6796,7796,8796,9796,47040],[797,1797,2797,3797,4797,5797,6797,7797,8797,9797,47030],[798,1798,2798,3798,4798,5798,6798,7798,8798,9798,47020],[799,1799,2799,3799,4799,5799,6799,7799,8799,9799,47010],[800,1800,2800,3800,4800,5800,6800,7800,8800,9800,47000],[801,1801,2801,3801,4801,5801,6801,7801,8801,9801,46990],[802,1802,2802,3802,4802,5802,6802,7802,8802,9802,46980],[803,1803,2803,3803,4803,5803,6803,7803,8803,9803,46970],[804,1804,2804,3804,4804,5804,6804,7804,8804,9804,46960],[805,1805,2805,3805,4805,5805,6805,7805,8805,9805,46950],[806,1806,2806,3806,4806,5806,6806,7806,8806,9806,46940],[807,1807,2807,3807,4807,5807,6807,7807,8807,9807,46930],[808,1808,2808,3808,4808,5808,6808,7808,8808,9808,46920],[809,1809,2809,3809,4809,5809,6809,7809,8809,9809,46910],[810,1810,2810,3810,4810,5810,6810,7810,8810,9810,46900],[811,1811,2811,3811,4811,5811,6811,7811,8811,9811,46890],[812,1812,2812,3812,4812,5812,6812,7812,8812,9812,46880],[813,1813,2813,3813,4813,5813,6813,7813,8813,9813,46870],[814,1814,2814,3814,4814,5814,6814,7814,8814,9814,46860],[815,1815,2815,3815,4815,5815,6815,7815,8815,9815,46850],[816,1816,2816,3816,4816,5816,6816,7816,8816,9816,46840],[817,1817,2817,3817,4817,5817,6817,7817,8817,9817,46830],[818,1818,2818,3818,4818,5818,6818,7818,8818,9818,46820],[819,1819,2819,3819,4819,5819,6819,7819,8819,9819,46810],[820,1820,2820,3820,4820,5820,6820,7820,8820,9820,46800],[821,1821,2821,3821,4821,5821,6821,7821,8821,9821,46790],[822,1822,2822,3822,4822,5822,6822,7822,8822,9822,46780],[823,1823,2823,3823,4823,5823,6823,7823,8823,9823,46770],[824,1824,2824,3824,4824,5824,6824,7824,8824,9824,46760],[825,1825,2825,3825,4825,5825,6825,7825,8825,9825,46750],[826,1826,2826,3826,4826,5826,6826,7826,8826,9826,46740],[827,1827,2827,3827,4827,5827,6827,7827,8827,9827,46730],[828,1828,2828,3828,4828,5828,6828,7828,8828,9828,46720],[829,1829,2829,3829,4829,5829,6829,7829,8829,9829,46710],[830,1830,2830,3830,4830,5830,6830,7830,8830,9830,46700],[831,1831,2831,3831,4831,5831,6831,7831,8831,9831,46690],[832,1832,2832,3832,4832,5832,6832,7832,8832,9832,46680],[833,1833,2833,3833,4833,5833,6833,7833,8833,9833,46670],[834,1834,2834,3834,4834,5834,6834,7834,8834,9834,46660],[835,1835,2835,3835,4835,5835,6835,7835,8835,9835,46650],[836,1836,2836,3836,4836,5836,6836,7836,8836,9836,46640],[837,1837,2837,3837,4837,5837,6837,7837,8837,9837,46630],[838,1838,2838,3838,4838,5838,6838,7838,8838,9838,46620],[839,1839,2839,3839,4839,5839,6839,7839,8839,9839,46610],[840,1840,2840,3840,4840,5840,6840,7840,8840,9840,46600],[841,1841,2841,3841,4841,5841,6841,7841,8841,9841,46590],[842,1842,2842,3842,4842,5842,6842,7842,8842,9842,46580],[843,1843,2843,3843,4843,5843,6843,7843,8843,9843,46570],[844,1844,2844,3844,4844,5844,6844,7844,8844,9844,46560],[845,1845,2845,3845,4845,5845,6845,7845,8845,9845,46550],[846,1846,2846,3846,4846,5846,6846,7846,8846,9846,46540],[847,1847,2847,3847,4847,5847,6847,7847,8847,9847,46530],[848,1848,2848,3848,4848,5848,6848,7848,8848,9848,46520],[849,1849,2849,3849,4849,5849,6849,7849,8849,9849,46510],[850,1850,2850,3850,4850,5850,6850,7850,8850,9850,46500],[851,1851,2851,3851,4851,5851,6851,7851,8851,9851,46490],[852,1852,2852,3852,4852,5852,6852,7852,8852,9852,46480],[853,1853,2853,3853,4853,5853,6853,7853,8853,9853,46470],[854,1854,2854,3854,4854,5854,6854,7854,8854,9854,46460],[855,1855,2855,3855,4855,5855,6855,7855,8855,9855,46450],[856,1856,2856,3856,4856,5856,6856,7856,8856,9856,46440],[857,1857,2857,3857,4857,5857,6857,7857,8857,9857,46430],[858,1858,2858,3858,4858,5858,6858,7858,8858,9858,46420],[859,1859,2859,3859,4859,5859,6859,7859,8859,9859,46410],[860,1860,2860,3860,4860,5860,6860,7860,8860,9860,46400],[861,1861,2861,3861,4861,5861,6861,7861,8861,9861,46390],[862,1862,2862,3862,4862,5862,6862,7862,8862,9862,46380],[863,1863,2863,3863,4863,5863,6863,7863,8863,9863,46370],[864,1864,2864,3864,4864,5864,6864,7864,8864,9864,46360],[865,1865,2865,3865,4865,5865,6865,7865,8865,9865,46350],[866,1866,2866,3866,4866,5866,6866,7866,8866,9866,46340],[867,1867,2867,3867,4867,5867,6867,7867,8867,9867,46330],[868,1868,2868,3868,4868,5868,6868,7868,8868,9868,46320],[869,1869,2869,3869,4869,5869,6869,7869,8869,9869,46310],[870,1870,2870,3870,4870,5870,6870,7870,8870,9870,46300],[871,1871,2871,3871,4871,5871,6871,7871,8871,9871,46290],[872,1872,2872,3872,4872,5872,6872,7872,8872,9872,46280],[873,1873,2873,3873,4873,5873,6873,7873,8873,9873,46270],[874,1874,2874,3874,4874,5874,6874,7874,8874,9874,46260],[875,1875,2875,3875,4875,5875,6875,7875,8875,9875,46250],[876,1876,2876,3876,4876,5876,6876,7876,8876,9876,46240],[877,1877,2877,3877,4877,5877,6877,7877,8877,9877,46230],[878,1878,2878,3878,4878,5878,6878,7878,8878,9878,46220],[879,1879,2879,3879,4879,5879,6879,7879,8879,9879,46210],[880,1880,2880,3880,4880,5880,6880,7880,8880,9880,46200],[881,1881,2881,3881,4881,5881,6881,7881,8881,9881,46190],[882,1882,2882,3882,4882,5882,6882,7882,8882,9882,46180],[883,1883,2883,3883,4883,5883,6883,7883,8883,9883,46170],[884,1884,2884,3884,4884,5884,6884,7884,8884,9884,46160],[885,1885,2885,3885,4885,5885,6885,7885,8885,9885,46150],[886,1886,2886,3886,4886,5886,6886,7886,8886,9886,46140],[887,1887,2887,3887,4887,5887,6887,7887,8887,9887,46130],[888,1888,2888,3888,4888,5888,6888,7888,8888,9888,46120],[889,1889,2889,3889,4889,5889,6889,7889,8889,9889,46110],[890,1890,2890,3890,4890,5890,6890,7890,8890,9890,46100],[891,1891,2891,3891,4891,5891,6891,7891,8891,9891,46090],[892,1892,2892,3892,4892,5892,6892,7892,8892,9892,46080],[893,1893,2893,3893,4893,5893,6893,7893,8893,9893,46070],[894,1894,2894,3894,4894,5894,6894,7894,8894,9894,46060],[895,1895,2895,3895,4895,5895,6895,7895,8895,9895,46050],[896,1896,2896,3896,4896,5896,6896,7896,8896,9896,46040],[897,1897,2897,3897,4897,5897,6897,7897,8897,9897,46030],[898,1898,2898,3898,4898,5898,6898,7898,8898,9898,46020],[899,1899,2899,3899,4899,5899,6899,7899,8899,9899,46010],[900,1900,2900,3900,4900,5900,6900,7900,8900,9900,46000],[901,1901,2901,3901,4901,5901,6901,7901,8901,9901,45990],[902,1902,2902,3902,4902,5902,6902,7902,8902,9902,45980],[903,1903,2903,3903,4903,5903,6903,7903,8903,9903,45970],[904,1904,2904,3904,4904,5904,6904,7904,8904,9904,45960],[905,1905,2905,3905,4905,5905,6905,7905,8905,9905,45950],[906,1906,2906,3906,4906,5906,6906,7906,8906,9906,45940],[907,1907,2907,3907,4907,5907,6907,7907,8907,9907,45930],[908,1908,2908,3908,4908,5908,6908,7908,8908,9908,45920],[909,1909,2909,3909,4909,5909,6909,7909,8909,9909,45910],[910,1910,2910,3910,4910,5910,6910,7910,8910,9910,45900],[911,1911,2911,3911,4911,5911,6911,7911,8911,9911,45890],[912,1912,2912,3912,4912,5912,6912,7912,8912,9912,45880],[913,1913,2913,3913,4913,5913,6913,7913,8913,9913,45870],[914,1914,2914,3914,4914,5914,6914,7914,8914,9914,45860],[915,1915,2915,3915,4915,5915,6915,7915,8915,9915,45850],[916,1916,2916,3916,4916,5916,6916,7916,8916,9916,45840],[917,1917,2917,3917,4917,5917,6917,7917,8917,9917,45830],[918,1918,2918,3918,4918,5918,6918,7918,8918,9918,45820],[919,1919,2919,3919,4919,5919,6919,7919,8919,9919,45810],[920,1920,2920,3920,4920,5920,6920,7920,8920,9920,45800],[921,1921,2921,3921,4921,5921,6921,7921,8921,9921,45790],[922,1922,2922,3922,4922,5922,6922,7922,8922,9922,45780],[923,1923,2923,3923,4923,5923,6923,7923,8923,9923,45770],[924,1924,2924,3924,4924,5924,6924,7924,8924,9924,45760],[925,1925,2925,3925,4925,5925,6925,7925,8925,9925,45750],[926,1926,2926,3926,4926,5926,6926,7926,8926,9926,45740],[927,1927,2927,3927,4927,5927,6927,7927,8927,9927,45730],[928,1928,2928,3928,4928,5928,6928,7928,8928,9928,45720],[929,1929,2929,3929,4929,5929,6929,7929,8929,9929,45710],[930,1930,2930,3930,4930,5930,6930,7930,8930,9930,45700],[931,1931,2931,3931,4931,5931,6931,7931,8931,9931,45690],[932,1932,2932,3932,4932,5932,6932,7932,8932,9932,45680],[933,1933,2933,3933,4933,5933,6933,7933,8933,9933,45670],[934,1934,2934,3934,4934,5934,6934,7934,8934,9934,45660],[935,1935,2935,3935,4935,5935,6935,7935,8935,9935,45650],[936,1936,2936,3936,4936,5936,6936,7936,8936,9936,45640],[937,1937,2937,3937,4937,5937,6937,7937,8937,9937,45630],[938,1938,2938,3938,4938,5938,6938,7938,8938,9938,45620],[939,1939,2939,3939,4939,5939,6939,7939,8939,9939,45610],[940,1940,2940,3940,4940,5940,6940,7940,8940,9940,45600],[941,1941,2941,3941,4941,5941,6941,7941,8941,9941,45590],[942,1942,2942,3942,4942,5942,6942,7942,8942,9942,45580],[943,1943,2943,3943,4943,5943,6943,7943,8943,9943,45570],[944,1944,2944,3944,4944,5944,6944,7944,8944,9944,45560],[945,1945,2945,3945,4945,5945,6945,7945,8945,9945,45550],[946,1946,2946,3946,4946,5946,6946,7946,8946,9946,45540],[947,1947,2947,3947,4947,5947,6947,7947,8947,9947,45530],[948,1948,2948,3948,4948,5948,6948,7948,8948,9948,45520],[949,1949,2949,3949,4949,5949,6949,7949,8949,9949,45510],[950,1950,2950,3950,4950,5950,6950,7950,8950,9950,45500],[951,1951,2951,3951,4951,5951,6951,7951,8951,9951,45490],[952,1952,2952,3952,4952,5952,6952,7952,8952,9952,45480],[953,1953,2953,3953,4953,5953,6953,7953,8953,9953,45470],[954,1954,2954,3954,4954,5954,6954,7954,8954,9954,45460],[955,1955,2955,3955,4955,5955,6955,7955,8955,9955,45450],[956,1956,2956,3956,4956,5956,6956,7956,8956,9956,45440],[957,1957,2957,3957,4957,5957,6957,7957,8957,9957,45430],[958,1958,2958,3958,4958,5958,6958,7958,8958,9958,45420],[959,1959,2959,3959,4959,5959,6959,7959,8959,9959,45410],[960,1960,2960,3960,4960,5960,6960,7960,8960,9960,45400],[961,1961,2961,3961,4961,5961,6961,7961,8961,9961,45390],[962,1962,2962,3962,4962,5962,6962,7962,8962,9962,45380],[963,1963,2963,3963,4963,5963,6963,7963,8963,9963,45370],[964,1964,2964,3964,4964,5964,6964,7964,8964,9964,45360],[965,1965,2965,3965,4965,5965,6965,7965,8965,9965,45350],[966,1966,2966,3966,4966,5966,6966,7966,8966,9966,45340],[967,1967,2967,3967,4967,5967,6967,7967,8967,9967,45330],[968,1968,2968,3968,4968,5968,6968,7968,8968,9968,45320],[969,1969,2969,3969,4969,5969,6969,7969,8969,9969,45310],[970,1970,2970,3970,4970,5970,6970,7970,8970,9970,45300],[971,1971,2971,3971,4971,5971,6971,7971,8971,9971,45290],[972,1972,2972,3972,4972,5972,6972,7972,8972,9972,45280],[973,1973,2973,3973,4973,5973,6973,7973,8973,9973,45270],[974,1974,2974,3974,4974,5974,6974,7974,8974,9974,45260],[975,1975,2975,3975,4975,5975,6975,7975,8975,9975,45250],[976,1976,2976,3976,4976,5976,6976,7976,8976,9976,45240],[977,1977,2977,3977,4977,5977,6977,7977,8977,9977,45230],[978,1978,2978,3978,4978,5978,6978,7978,8978,9978,45220],[979,1979,2979,3979,4979,5979,6979,7979,8979,9979,45210],[980,1980,2980,3980,4980,5980,6980,7980,8980,9980,45200],[981,1981,2981,3981,4981,5981,6981,7981,8981,9981,45190],[982,1982,2982,3982,4982,5982,6982,7982,8982,9982,45180],[983,1983,2983,3983,4983,5983,6983,7983,8983,9983,45170],[984,1984,2984,3984,4984,5984,6984,7984,8984,9984,45160],[985,1985,2985,3985,4985,5985,6985,7985,8985,9985,45150],[986,1986,2986,3986,4986,5986,6986,7986,8986,9986,45140],[987,1987,2987,3987,4987,5987,6987,7987,8987,9987,45130],[988,1988,2988,3988,4988,5988,6988,7988,8988,9988,45120],[989,1989,2989,3989,4989,5989,6989,7989,8989,9989,45110],[990,1990,2990,3990,4990,5990,6990,7990,8990,9990,45100],[991,1991,2991,3991,4991,5991,6991,7991,8991,9991,45090],[992,1992,2992,3992,4992,5992,6992,7992,8992,9992,45080],[993,1993,2993,3993,4993,5993,6993,7993,8993,9993,45070],[994,1994,2994,3994,4994,5994,6994,7994,8994,9994,45060],[995,1995,2995,3995,4995,5995,6995,7995,8995,9995,45050],[996,1996,2996,3996,4996,5996,6996,7996,8996,9996,45040],[997,1997,2997,3997,4997,5997,6997,7997,8997,9997,45030],[998,1998,2998,3998,4998,5998,6998,7998,8998,9998,45020],[999,1999,2999,3999,4999,5999,6999,7999,8999,9999,45010]] + print(f"len in_slow {len(in_slow)}") + print(f"lin in_slow[0] {len(in_slow[0])}") + with Timer(): + Solution().leastBricks(in_slow) diff --git a/leetcode/brickwall/brickwall2.py b/leetcode/brickwall/brickwall2.py new file mode 100644 index 0000000..0756404 --- /dev/null +++ b/leetcode/brickwall/brickwall2.py @@ -0,0 +1,56 @@ +import time +from collections import defaultdict +from typing import List + +class Solution: + def __init__(self, debug=False): + self.debug = debug + + def leastBricks(self, wall: List[List[int]]) -> int: + splits = defaultdict(int) + wall_end = sum(wall[0]) + for layer in wall: + ct = 0 + for brick in layer: + ct += brick + if ct < wall_end: + splits[ct] += 1 + + if splits: + m = max(splits.values()) + return len(wall) - m + else: + return len(wall) + + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + + +def test1(): + in1 = [[1, 2, 2, 1], + [3, 1, 2], + [1, 3, 2], + [2, 4], + [3, 1, 2], + [1, 3, 1, 1]] + + assert Solution().leastBricks(in1) == 2 + +def test2(): + in2 = [[100000000],[100000000],[100000000]] + with Timer(): + assert Solution().leastBricks(in2) == 3 + + +if __name__ == "__main__": + in_slow = [[1000,2000,3000,4000,5000,6000,7000,8000,9000,10000,45000],[1,1001,2001,3001,4001,5001,6001,7001,8001,9001,54990],[2,1002,2002,3002,4002,5002,6002,7002,8002,9002,54980],[3,1003,2003,3003,4003,5003,6003,7003,8003,9003,54970],[4,1004,2004,3004,4004,5004,6004,7004,8004,9004,54960],[5,1005,2005,3005,4005,5005,6005,7005,8005,9005,54950],[6,1006,2006,3006,4006,5006,6006,7006,8006,9006,54940],[7,1007,2007,3007,4007,5007,6007,7007,8007,9007,54930],[8,1008,2008,3008,4008,5008,6008,7008,8008,9008,54920],[9,1009,2009,3009,4009,5009,6009,7009,8009,9009,54910],[10,1010,2010,3010,4010,5010,6010,7010,8010,9010,54900],[11,1011,2011,3011,4011,5011,6011,7011,8011,9011,54890],[12,1012,2012,3012,4012,5012,6012,7012,8012,9012,54880],[13,1013,2013,3013,4013,5013,6013,7013,8013,9013,54870],[14,1014,2014,3014,4014,5014,6014,7014,8014,9014,54860],[15,1015,2015,3015,4015,5015,6015,7015,8015,9015,54850],[16,1016,2016,3016,4016,5016,6016,7016,8016,9016,54840],[17,1017,2017,3017,4017,5017,6017,7017,8017,9017,54830],[18,1018,2018,3018,4018,5018,6018,7018,8018,9018,54820],[19,1019,2019,3019,4019,5019,6019,7019,8019,9019,54810],[20,1020,2020,3020,4020,5020,6020,7020,8020,9020,54800],[21,1021,2021,3021,4021,5021,6021,7021,8021,9021,54790],[22,1022,2022,3022,4022,5022,6022,7022,8022,9022,54780],[23,1023,2023,3023,4023,5023,6023,7023,8023,9023,54770],[24,1024,2024,3024,4024,5024,6024,7024,8024,9024,54760],[25,1025,2025,3025,4025,5025,6025,7025,8025,9025,54750],[26,1026,2026,3026,4026,5026,6026,7026,8026,9026,54740],[27,1027,2027,3027,4027,5027,6027,7027,8027,9027,54730],[28,1028,2028,3028,4028,5028,6028,7028,8028,9028,54720],[29,1029,2029,3029,4029,5029,6029,7029,8029,9029,54710],[30,1030,2030,3030,4030,5030,6030,7030,8030,9030,54700],[31,1031,2031,3031,4031,5031,6031,7031,8031,9031,54690],[32,1032,2032,3032,4032,5032,6032,7032,8032,9032,54680],[33,1033,2033,3033,4033,5033,6033,7033,8033,9033,54670],[34,1034,2034,3034,4034,5034,6034,7034,8034,9034,54660],[35,1035,2035,3035,4035,5035,6035,7035,8035,9035,54650],[36,1036,2036,3036,4036,5036,6036,7036,8036,9036,54640],[37,1037,2037,3037,4037,5037,6037,7037,8037,9037,54630],[38,1038,2038,3038,4038,5038,6038,7038,8038,9038,54620],[39,1039,2039,3039,4039,5039,6039,7039,8039,9039,54610],[40,1040,2040,3040,4040,5040,6040,7040,8040,9040,54600],[41,1041,2041,3041,4041,5041,6041,7041,8041,9041,54590],[42,1042,2042,3042,4042,5042,6042,7042,8042,9042,54580],[43,1043,2043,3043,4043,5043,6043,7043,8043,9043,54570],[44,1044,2044,3044,4044,5044,6044,7044,8044,9044,54560],[45,1045,2045,3045,4045,5045,6045,7045,8045,9045,54550],[46,1046,2046,3046,4046,5046,6046,7046,8046,9046,54540],[47,1047,2047,3047,4047,5047,6047,7047,8047,9047,54530],[48,1048,2048,3048,4048,5048,6048,7048,8048,9048,54520],[49,1049,2049,3049,4049,5049,6049,7049,8049,9049,54510],[50,1050,2050,3050,4050,5050,6050,7050,8050,9050,54500],[51,1051,2051,3051,4051,5051,6051,7051,8051,9051,54490],[52,1052,2052,3052,4052,5052,6052,7052,8052,9052,54480],[53,1053,2053,3053,4053,5053,6053,7053,8053,9053,54470],[54,1054,2054,3054,4054,5054,6054,7054,8054,9054,54460],[55,1055,2055,3055,4055,5055,6055,7055,8055,9055,54450],[56,1056,2056,3056,4056,5056,6056,7056,8056,9056,54440],[57,1057,2057,3057,4057,5057,6057,7057,8057,9057,54430],[58,1058,2058,3058,4058,5058,6058,7058,8058,9058,54420],[59,1059,2059,3059,4059,5059,6059,7059,8059,9059,54410],[60,1060,2060,3060,4060,5060,6060,7060,8060,9060,54400],[61,1061,2061,3061,4061,5061,6061,7061,8061,9061,54390],[62,1062,2062,3062,4062,5062,6062,7062,8062,9062,54380],[63,1063,2063,3063,4063,5063,6063,7063,8063,9063,54370],[64,1064,2064,3064,4064,5064,6064,7064,8064,9064,54360],[65,1065,2065,3065,4065,5065,6065,7065,8065,9065,54350],[66,1066,2066,3066,4066,5066,6066,7066,8066,9066,54340],[67,1067,2067,3067,4067,5067,6067,7067,8067,9067,54330],[68,1068,2068,3068,4068,5068,6068,7068,8068,9068,54320],[69,1069,2069,3069,4069,5069,6069,7069,8069,9069,54310],[70,1070,2070,3070,4070,5070,6070,7070,8070,9070,54300],[71,1071,2071,3071,4071,5071,6071,7071,8071,9071,54290],[72,1072,2072,3072,4072,5072,6072,7072,8072,9072,54280],[73,1073,2073,3073,4073,5073,6073,7073,8073,9073,54270],[74,1074,2074,3074,4074,5074,6074,7074,8074,9074,54260],[75,1075,2075,3075,4075,5075,6075,7075,8075,9075,54250],[76,1076,2076,3076,4076,5076,6076,7076,8076,9076,54240],[77,1077,2077,3077,4077,5077,6077,7077,8077,9077,54230],[78,1078,2078,3078,4078,5078,6078,7078,8078,9078,54220],[79,1079,2079,3079,4079,5079,6079,7079,8079,9079,54210],[80,1080,2080,3080,4080,5080,6080,7080,8080,9080,54200],[81,1081,2081,3081,4081,5081,6081,7081,8081,9081,54190],[82,1082,2082,3082,4082,5082,6082,7082,8082,9082,54180],[83,1083,2083,3083,4083,5083,6083,7083,8083,9083,54170],[84,1084,2084,3084,4084,5084,6084,7084,8084,9084,54160],[85,1085,2085,3085,4085,5085,6085,7085,8085,9085,54150],[86,1086,2086,3086,4086,5086,6086,7086,8086,9086,54140],[87,1087,2087,3087,4087,5087,6087,7087,8087,9087,54130],[88,1088,2088,3088,4088,5088,6088,7088,8088,9088,54120],[89,1089,2089,3089,4089,5089,6089,7089,8089,9089,54110],[90,1090,2090,3090,4090,5090,6090,7090,8090,9090,54100],[91,1091,2091,3091,4091,5091,6091,7091,8091,9091,54090],[92,1092,2092,3092,4092,5092,6092,7092,8092,9092,54080],[93,1093,2093,3093,4093,5093,6093,7093,8093,9093,54070],[94,1094,2094,3094,4094,5094,6094,7094,8094,9094,54060],[95,1095,2095,3095,4095,5095,6095,7095,8095,9095,54050],[96,1096,2096,3096,4096,5096,6096,7096,8096,9096,54040],[97,1097,2097,3097,4097,5097,6097,7097,8097,9097,54030],[98,1098,2098,3098,4098,5098,6098,7098,8098,9098,54020],[99,1099,2099,3099,4099,5099,6099,7099,8099,9099,54010],[100,1100,2100,3100,4100,5100,6100,7100,8100,9100,54000],[101,1101,2101,3101,4101,5101,6101,7101,8101,9101,53990],[102,1102,2102,3102,4102,5102,6102,7102,8102,9102,53980],[103,1103,2103,3103,4103,5103,6103,7103,8103,9103,53970],[104,1104,2104,3104,4104,5104,6104,7104,8104,9104,53960],[105,1105,2105,3105,4105,5105,6105,7105,8105,9105,53950],[106,1106,2106,3106,4106,5106,6106,7106,8106,9106,53940],[107,1107,2107,3107,4107,5107,6107,7107,8107,9107,53930],[108,1108,2108,3108,4108,5108,6108,7108,8108,9108,53920],[109,1109,2109,3109,4109,5109,6109,7109,8109,9109,53910],[110,1110,2110,3110,4110,5110,6110,7110,8110,9110,53900],[111,1111,2111,3111,4111,5111,6111,7111,8111,9111,53890],[112,1112,2112,3112,4112,5112,6112,7112,8112,9112,53880],[113,1113,2113,3113,4113,5113,6113,7113,8113,9113,53870],[114,1114,2114,3114,4114,5114,6114,7114,8114,9114,53860],[115,1115,2115,3115,4115,5115,6115,7115,8115,9115,53850],[116,1116,2116,3116,4116,5116,6116,7116,8116,9116,53840],[117,1117,2117,3117,4117,5117,6117,7117,8117,9117,53830],[118,1118,2118,3118,4118,5118,6118,7118,8118,9118,53820],[119,1119,2119,3119,4119,5119,6119,7119,8119,9119,53810],[120,1120,2120,3120,4120,5120,6120,7120,8120,9120,53800],[121,1121,2121,3121,4121,5121,6121,7121,8121,9121,53790],[122,1122,2122,3122,4122,5122,6122,7122,8122,9122,53780],[123,1123,2123,3123,4123,5123,6123,7123,8123,9123,53770],[124,1124,2124,3124,4124,5124,6124,7124,8124,9124,53760],[125,1125,2125,3125,4125,5125,6125,7125,8125,9125,53750],[126,1126,2126,3126,4126,5126,6126,7126,8126,9126,53740],[127,1127,2127,3127,4127,5127,6127,7127,8127,9127,53730],[128,1128,2128,3128,4128,5128,6128,7128,8128,9128,53720],[129,1129,2129,3129,4129,5129,6129,7129,8129,9129,53710],[130,1130,2130,3130,4130,5130,6130,7130,8130,9130,53700],[131,1131,2131,3131,4131,5131,6131,7131,8131,9131,53690],[132,1132,2132,3132,4132,5132,6132,7132,8132,9132,53680],[133,1133,2133,3133,4133,5133,6133,7133,8133,9133,53670],[134,1134,2134,3134,4134,5134,6134,7134,8134,9134,53660],[135,1135,2135,3135,4135,5135,6135,7135,8135,9135,53650],[136,1136,2136,3136,4136,5136,6136,7136,8136,9136,53640],[137,1137,2137,3137,4137,5137,6137,7137,8137,9137,53630],[138,1138,2138,3138,4138,5138,6138,7138,8138,9138,53620],[139,1139,2139,3139,4139,5139,6139,7139,8139,9139,53610],[140,1140,2140,3140,4140,5140,6140,7140,8140,9140,53600],[141,1141,2141,3141,4141,5141,6141,7141,8141,9141,53590],[142,1142,2142,3142,4142,5142,6142,7142,8142,9142,53580],[143,1143,2143,3143,4143,5143,6143,7143,8143,9143,53570],[144,1144,2144,3144,4144,5144,6144,7144,8144,9144,53560],[145,1145,2145,3145,4145,5145,6145,7145,8145,9145,53550],[146,1146,2146,3146,4146,5146,6146,7146,8146,9146,53540],[147,1147,2147,3147,4147,5147,6147,7147,8147,9147,53530],[148,1148,2148,3148,4148,5148,6148,7148,8148,9148,53520],[149,1149,2149,3149,4149,5149,6149,7149,8149,9149,53510],[150,1150,2150,3150,4150,5150,6150,7150,8150,9150,53500],[151,1151,2151,3151,4151,5151,6151,7151,8151,9151,53490],[152,1152,2152,3152,4152,5152,6152,7152,8152,9152,53480],[153,1153,2153,3153,4153,5153,6153,7153,8153,9153,53470],[154,1154,2154,3154,4154,5154,6154,7154,8154,9154,53460],[155,1155,2155,3155,4155,5155,6155,7155,8155,9155,53450],[156,1156,2156,3156,4156,5156,6156,7156,8156,9156,53440],[157,1157,2157,3157,4157,5157,6157,7157,8157,9157,53430],[158,1158,2158,3158,4158,5158,6158,7158,8158,9158,53420],[159,1159,2159,3159,4159,5159,6159,7159,8159,9159,53410],[160,1160,2160,3160,4160,5160,6160,7160,8160,9160,53400],[161,1161,2161,3161,4161,5161,6161,7161,8161,9161,53390],[162,1162,2162,3162,4162,5162,6162,7162,8162,9162,53380],[163,1163,2163,3163,4163,5163,6163,7163,8163,9163,53370],[164,1164,2164,3164,4164,5164,6164,7164,8164,9164,53360],[165,1165,2165,3165,4165,5165,6165,7165,8165,9165,53350],[166,1166,2166,3166,4166,5166,6166,7166,8166,9166,53340],[167,1167,2167,3167,4167,5167,6167,7167,8167,9167,53330],[168,1168,2168,3168,4168,5168,6168,7168,8168,9168,53320],[169,1169,2169,3169,4169,5169,6169,7169,8169,9169,53310],[170,1170,2170,3170,4170,5170,6170,7170,8170,9170,53300],[171,1171,2171,3171,4171,5171,6171,7171,8171,9171,53290],[172,1172,2172,3172,4172,5172,6172,7172,8172,9172,53280],[173,1173,2173,3173,4173,5173,6173,7173,8173,9173,53270],[174,1174,2174,3174,4174,5174,6174,7174,8174,9174,53260],[175,1175,2175,3175,4175,5175,6175,7175,8175,9175,53250],[176,1176,2176,3176,4176,5176,6176,7176,8176,9176,53240],[177,1177,2177,3177,4177,5177,6177,7177,8177,9177,53230],[178,1178,2178,3178,4178,5178,6178,7178,8178,9178,53220],[179,1179,2179,3179,4179,5179,6179,7179,8179,9179,53210],[180,1180,2180,3180,4180,5180,6180,7180,8180,9180,53200],[181,1181,2181,3181,4181,5181,6181,7181,8181,9181,53190],[182,1182,2182,3182,4182,5182,6182,7182,8182,9182,53180],[183,1183,2183,3183,4183,5183,6183,7183,8183,9183,53170],[184,1184,2184,3184,4184,5184,6184,7184,8184,9184,53160],[185,1185,2185,3185,4185,5185,6185,7185,8185,9185,53150],[186,1186,2186,3186,4186,5186,6186,7186,8186,9186,53140],[187,1187,2187,3187,4187,5187,6187,7187,8187,9187,53130],[188,1188,2188,3188,4188,5188,6188,7188,8188,9188,53120],[189,1189,2189,3189,4189,5189,6189,7189,8189,9189,53110],[190,1190,2190,3190,4190,5190,6190,7190,8190,9190,53100],[191,1191,2191,3191,4191,5191,6191,7191,8191,9191,53090],[192,1192,2192,3192,4192,5192,6192,7192,8192,9192,53080],[193,1193,2193,3193,4193,5193,6193,7193,8193,9193,53070],[194,1194,2194,3194,4194,5194,6194,7194,8194,9194,53060],[195,1195,2195,3195,4195,5195,6195,7195,8195,9195,53050],[196,1196,2196,3196,4196,5196,6196,7196,8196,9196,53040],[197,1197,2197,3197,4197,5197,6197,7197,8197,9197,53030],[198,1198,2198,3198,4198,5198,6198,7198,8198,9198,53020],[199,1199,2199,3199,4199,5199,6199,7199,8199,9199,53010],[200,1200,2200,3200,4200,5200,6200,7200,8200,9200,53000],[201,1201,2201,3201,4201,5201,6201,7201,8201,9201,52990],[202,1202,2202,3202,4202,5202,6202,7202,8202,9202,52980],[203,1203,2203,3203,4203,5203,6203,7203,8203,9203,52970],[204,1204,2204,3204,4204,5204,6204,7204,8204,9204,52960],[205,1205,2205,3205,4205,5205,6205,7205,8205,9205,52950],[206,1206,2206,3206,4206,5206,6206,7206,8206,9206,52940],[207,1207,2207,3207,4207,5207,6207,7207,8207,9207,52930],[208,1208,2208,3208,4208,5208,6208,7208,8208,9208,52920],[209,1209,2209,3209,4209,5209,6209,7209,8209,9209,52910],[210,1210,2210,3210,4210,5210,6210,7210,8210,9210,52900],[211,1211,2211,3211,4211,5211,6211,7211,8211,9211,52890],[212,1212,2212,3212,4212,5212,6212,7212,8212,9212,52880],[213,1213,2213,3213,4213,5213,6213,7213,8213,9213,52870],[214,1214,2214,3214,4214,5214,6214,7214,8214,9214,52860],[215,1215,2215,3215,4215,5215,6215,7215,8215,9215,52850],[216,1216,2216,3216,4216,5216,6216,7216,8216,9216,52840],[217,1217,2217,3217,4217,5217,6217,7217,8217,9217,52830],[218,1218,2218,3218,4218,5218,6218,7218,8218,9218,52820],[219,1219,2219,3219,4219,5219,6219,7219,8219,9219,52810],[220,1220,2220,3220,4220,5220,6220,7220,8220,9220,52800],[221,1221,2221,3221,4221,5221,6221,7221,8221,9221,52790],[222,1222,2222,3222,4222,5222,6222,7222,8222,9222,52780],[223,1223,2223,3223,4223,5223,6223,7223,8223,9223,52770],[224,1224,2224,3224,4224,5224,6224,7224,8224,9224,52760],[225,1225,2225,3225,4225,5225,6225,7225,8225,9225,52750],[226,1226,2226,3226,4226,5226,6226,7226,8226,9226,52740],[227,1227,2227,3227,4227,5227,6227,7227,8227,9227,52730],[228,1228,2228,3228,4228,5228,6228,7228,8228,9228,52720],[229,1229,2229,3229,4229,5229,6229,7229,8229,9229,52710],[230,1230,2230,3230,4230,5230,6230,7230,8230,9230,52700],[231,1231,2231,3231,4231,5231,6231,7231,8231,9231,52690],[232,1232,2232,3232,4232,5232,6232,7232,8232,9232,52680],[233,1233,2233,3233,4233,5233,6233,7233,8233,9233,52670],[234,1234,2234,3234,4234,5234,6234,7234,8234,9234,52660],[235,1235,2235,3235,4235,5235,6235,7235,8235,9235,52650],[236,1236,2236,3236,4236,5236,6236,7236,8236,9236,52640],[237,1237,2237,3237,4237,5237,6237,7237,8237,9237,52630],[238,1238,2238,3238,4238,5238,6238,7238,8238,9238,52620],[239,1239,2239,3239,4239,5239,6239,7239,8239,9239,52610],[240,1240,2240,3240,4240,5240,6240,7240,8240,9240,52600],[241,1241,2241,3241,4241,5241,6241,7241,8241,9241,52590],[242,1242,2242,3242,4242,5242,6242,7242,8242,9242,52580],[243,1243,2243,3243,4243,5243,6243,7243,8243,9243,52570],[244,1244,2244,3244,4244,5244,6244,7244,8244,9244,52560],[245,1245,2245,3245,4245,5245,6245,7245,8245,9245,52550],[246,1246,2246,3246,4246,5246,6246,7246,8246,9246,52540],[247,1247,2247,3247,4247,5247,6247,7247,8247,9247,52530],[248,1248,2248,3248,4248,5248,6248,7248,8248,9248,52520],[249,1249,2249,3249,4249,5249,6249,7249,8249,9249,52510],[250,1250,2250,3250,4250,5250,6250,7250,8250,9250,52500],[251,1251,2251,3251,4251,5251,6251,7251,8251,9251,52490],[252,1252,2252,3252,4252,5252,6252,7252,8252,9252,52480],[253,1253,2253,3253,4253,5253,6253,7253,8253,9253,52470],[254,1254,2254,3254,4254,5254,6254,7254,8254,9254,52460],[255,1255,2255,3255,4255,5255,6255,7255,8255,9255,52450],[256,1256,2256,3256,4256,5256,6256,7256,8256,9256,52440],[257,1257,2257,3257,4257,5257,6257,7257,8257,9257,52430],[258,1258,2258,3258,4258,5258,6258,7258,8258,9258,52420],[259,1259,2259,3259,4259,5259,6259,7259,8259,9259,52410],[260,1260,2260,3260,4260,5260,6260,7260,8260,9260,52400],[261,1261,2261,3261,4261,5261,6261,7261,8261,9261,52390],[262,1262,2262,3262,4262,5262,6262,7262,8262,9262,52380],[263,1263,2263,3263,4263,5263,6263,7263,8263,9263,52370],[264,1264,2264,3264,4264,5264,6264,7264,8264,9264,52360],[265,1265,2265,3265,4265,5265,6265,7265,8265,9265,52350],[266,1266,2266,3266,4266,5266,6266,7266,8266,9266,52340],[267,1267,2267,3267,4267,5267,6267,7267,8267,9267,52330],[268,1268,2268,3268,4268,5268,6268,7268,8268,9268,52320],[269,1269,2269,3269,4269,5269,6269,7269,8269,9269,52310],[270,1270,2270,3270,4270,5270,6270,7270,8270,9270,52300],[271,1271,2271,3271,4271,5271,6271,7271,8271,9271,52290],[272,1272,2272,3272,4272,5272,6272,7272,8272,9272,52280],[273,1273,2273,3273,4273,5273,6273,7273,8273,9273,52270],[274,1274,2274,3274,4274,5274,6274,7274,8274,9274,52260],[275,1275,2275,3275,4275,5275,6275,7275,8275,9275,52250],[276,1276,2276,3276,4276,5276,6276,7276,8276,9276,52240],[277,1277,2277,3277,4277,5277,6277,7277,8277,9277,52230],[278,1278,2278,3278,4278,5278,6278,7278,8278,9278,52220],[279,1279,2279,3279,4279,5279,6279,7279,8279,9279,52210],[280,1280,2280,3280,4280,5280,6280,7280,8280,9280,52200],[281,1281,2281,3281,4281,5281,6281,7281,8281,9281,52190],[282,1282,2282,3282,4282,5282,6282,7282,8282,9282,52180],[283,1283,2283,3283,4283,5283,6283,7283,8283,9283,52170],[284,1284,2284,3284,4284,5284,6284,7284,8284,9284,52160],[285,1285,2285,3285,4285,5285,6285,7285,8285,9285,52150],[286,1286,2286,3286,4286,5286,6286,7286,8286,9286,52140],[287,1287,2287,3287,4287,5287,6287,7287,8287,9287,52130],[288,1288,2288,3288,4288,5288,6288,7288,8288,9288,52120],[289,1289,2289,3289,4289,5289,6289,7289,8289,9289,52110],[290,1290,2290,3290,4290,5290,6290,7290,8290,9290,52100],[291,1291,2291,3291,4291,5291,6291,7291,8291,9291,52090],[292,1292,2292,3292,4292,5292,6292,7292,8292,9292,52080],[293,1293,2293,3293,4293,5293,6293,7293,8293,9293,52070],[294,1294,2294,3294,4294,5294,6294,7294,8294,9294,52060],[295,1295,2295,3295,4295,5295,6295,7295,8295,9295,52050],[296,1296,2296,3296,4296,5296,6296,7296,8296,9296,52040],[297,1297,2297,3297,4297,5297,6297,7297,8297,9297,52030],[298,1298,2298,3298,4298,5298,6298,7298,8298,9298,52020],[299,1299,2299,3299,4299,5299,6299,7299,8299,9299,52010],[300,1300,2300,3300,4300,5300,6300,7300,8300,9300,52000],[301,1301,2301,3301,4301,5301,6301,7301,8301,9301,51990],[302,1302,2302,3302,4302,5302,6302,7302,8302,9302,51980],[303,1303,2303,3303,4303,5303,6303,7303,8303,9303,51970],[304,1304,2304,3304,4304,5304,6304,7304,8304,9304,51960],[305,1305,2305,3305,4305,5305,6305,7305,8305,9305,51950],[306,1306,2306,3306,4306,5306,6306,7306,8306,9306,51940],[307,1307,2307,3307,4307,5307,6307,7307,8307,9307,51930],[308,1308,2308,3308,4308,5308,6308,7308,8308,9308,51920],[309,1309,2309,3309,4309,5309,6309,7309,8309,9309,51910],[310,1310,2310,3310,4310,5310,6310,7310,8310,9310,51900],[311,1311,2311,3311,4311,5311,6311,7311,8311,9311,51890],[312,1312,2312,3312,4312,5312,6312,7312,8312,9312,51880],[313,1313,2313,3313,4313,5313,6313,7313,8313,9313,51870],[314,1314,2314,3314,4314,5314,6314,7314,8314,9314,51860],[315,1315,2315,3315,4315,5315,6315,7315,8315,9315,51850],[316,1316,2316,3316,4316,5316,6316,7316,8316,9316,51840],[317,1317,2317,3317,4317,5317,6317,7317,8317,9317,51830],[318,1318,2318,3318,4318,5318,6318,7318,8318,9318,51820],[319,1319,2319,3319,4319,5319,6319,7319,8319,9319,51810],[320,1320,2320,3320,4320,5320,6320,7320,8320,9320,51800],[321,1321,2321,3321,4321,5321,6321,7321,8321,9321,51790],[322,1322,2322,3322,4322,5322,6322,7322,8322,9322,51780],[323,1323,2323,3323,4323,5323,6323,7323,8323,9323,51770],[324,1324,2324,3324,4324,5324,6324,7324,8324,9324,51760],[325,1325,2325,3325,4325,5325,6325,7325,8325,9325,51750],[326,1326,2326,3326,4326,5326,6326,7326,8326,9326,51740],[327,1327,2327,3327,4327,5327,6327,7327,8327,9327,51730],[328,1328,2328,3328,4328,5328,6328,7328,8328,9328,51720],[329,1329,2329,3329,4329,5329,6329,7329,8329,9329,51710],[330,1330,2330,3330,4330,5330,6330,7330,8330,9330,51700],[331,1331,2331,3331,4331,5331,6331,7331,8331,9331,51690],[332,1332,2332,3332,4332,5332,6332,7332,8332,9332,51680],[333,1333,2333,3333,4333,5333,6333,7333,8333,9333,51670],[334,1334,2334,3334,4334,5334,6334,7334,8334,9334,51660],[335,1335,2335,3335,4335,5335,6335,7335,8335,9335,51650],[336,1336,2336,3336,4336,5336,6336,7336,8336,9336,51640],[337,1337,2337,3337,4337,5337,6337,7337,8337,9337,51630],[338,1338,2338,3338,4338,5338,6338,7338,8338,9338,51620],[339,1339,2339,3339,4339,5339,6339,7339,8339,9339,51610],[340,1340,2340,3340,4340,5340,6340,7340,8340,9340,51600],[341,1341,2341,3341,4341,5341,6341,7341,8341,9341,51590],[342,1342,2342,3342,4342,5342,6342,7342,8342,9342,51580],[343,1343,2343,3343,4343,5343,6343,7343,8343,9343,51570],[344,1344,2344,3344,4344,5344,6344,7344,8344,9344,51560],[345,1345,2345,3345,4345,5345,6345,7345,8345,9345,51550],[346,1346,2346,3346,4346,5346,6346,7346,8346,9346,51540],[347,1347,2347,3347,4347,5347,6347,7347,8347,9347,51530],[348,1348,2348,3348,4348,5348,6348,7348,8348,9348,51520],[349,1349,2349,3349,4349,5349,6349,7349,8349,9349,51510],[350,1350,2350,3350,4350,5350,6350,7350,8350,9350,51500],[351,1351,2351,3351,4351,5351,6351,7351,8351,9351,51490],[352,1352,2352,3352,4352,5352,6352,7352,8352,9352,51480],[353,1353,2353,3353,4353,5353,6353,7353,8353,9353,51470],[354,1354,2354,3354,4354,5354,6354,7354,8354,9354,51460],[355,1355,2355,3355,4355,5355,6355,7355,8355,9355,51450],[356,1356,2356,3356,4356,5356,6356,7356,8356,9356,51440],[357,1357,2357,3357,4357,5357,6357,7357,8357,9357,51430],[358,1358,2358,3358,4358,5358,6358,7358,8358,9358,51420],[359,1359,2359,3359,4359,5359,6359,7359,8359,9359,51410],[360,1360,2360,3360,4360,5360,6360,7360,8360,9360,51400],[361,1361,2361,3361,4361,5361,6361,7361,8361,9361,51390],[362,1362,2362,3362,4362,5362,6362,7362,8362,9362,51380],[363,1363,2363,3363,4363,5363,6363,7363,8363,9363,51370],[364,1364,2364,3364,4364,5364,6364,7364,8364,9364,51360],[365,1365,2365,3365,4365,5365,6365,7365,8365,9365,51350],[366,1366,2366,3366,4366,5366,6366,7366,8366,9366,51340],[367,1367,2367,3367,4367,5367,6367,7367,8367,9367,51330],[368,1368,2368,3368,4368,5368,6368,7368,8368,9368,51320],[369,1369,2369,3369,4369,5369,6369,7369,8369,9369,51310],[370,1370,2370,3370,4370,5370,6370,7370,8370,9370,51300],[371,1371,2371,3371,4371,5371,6371,7371,8371,9371,51290],[372,1372,2372,3372,4372,5372,6372,7372,8372,9372,51280],[373,1373,2373,3373,4373,5373,6373,7373,8373,9373,51270],[374,1374,2374,3374,4374,5374,6374,7374,8374,9374,51260],[375,1375,2375,3375,4375,5375,6375,7375,8375,9375,51250],[376,1376,2376,3376,4376,5376,6376,7376,8376,9376,51240],[377,1377,2377,3377,4377,5377,6377,7377,8377,9377,51230],[378,1378,2378,3378,4378,5378,6378,7378,8378,9378,51220],[379,1379,2379,3379,4379,5379,6379,7379,8379,9379,51210],[380,1380,2380,3380,4380,5380,6380,7380,8380,9380,51200],[381,1381,2381,3381,4381,5381,6381,7381,8381,9381,51190],[382,1382,2382,3382,4382,5382,6382,7382,8382,9382,51180],[383,1383,2383,3383,4383,5383,6383,7383,8383,9383,51170],[384,1384,2384,3384,4384,5384,6384,7384,8384,9384,51160],[385,1385,2385,3385,4385,5385,6385,7385,8385,9385,51150],[386,1386,2386,3386,4386,5386,6386,7386,8386,9386,51140],[387,1387,2387,3387,4387,5387,6387,7387,8387,9387,51130],[388,1388,2388,3388,4388,5388,6388,7388,8388,9388,51120],[389,1389,2389,3389,4389,5389,6389,7389,8389,9389,51110],[390,1390,2390,3390,4390,5390,6390,7390,8390,9390,51100],[391,1391,2391,3391,4391,5391,6391,7391,8391,9391,51090],[392,1392,2392,3392,4392,5392,6392,7392,8392,9392,51080],[393,1393,2393,3393,4393,5393,6393,7393,8393,9393,51070],[394,1394,2394,3394,4394,5394,6394,7394,8394,9394,51060],[395,1395,2395,3395,4395,5395,6395,7395,8395,9395,51050],[396,1396,2396,3396,4396,5396,6396,7396,8396,9396,51040],[397,1397,2397,3397,4397,5397,6397,7397,8397,9397,51030],[398,1398,2398,3398,4398,5398,6398,7398,8398,9398,51020],[399,1399,2399,3399,4399,5399,6399,7399,8399,9399,51010],[400,1400,2400,3400,4400,5400,6400,7400,8400,9400,51000],[401,1401,2401,3401,4401,5401,6401,7401,8401,9401,50990],[402,1402,2402,3402,4402,5402,6402,7402,8402,9402,50980],[403,1403,2403,3403,4403,5403,6403,7403,8403,9403,50970],[404,1404,2404,3404,4404,5404,6404,7404,8404,9404,50960],[405,1405,2405,3405,4405,5405,6405,7405,8405,9405,50950],[406,1406,2406,3406,4406,5406,6406,7406,8406,9406,50940],[407,1407,2407,3407,4407,5407,6407,7407,8407,9407,50930],[408,1408,2408,3408,4408,5408,6408,7408,8408,9408,50920],[409,1409,2409,3409,4409,5409,6409,7409,8409,9409,50910],[410,1410,2410,3410,4410,5410,6410,7410,8410,9410,50900],[411,1411,2411,3411,4411,5411,6411,7411,8411,9411,50890],[412,1412,2412,3412,4412,5412,6412,7412,8412,9412,50880],[413,1413,2413,3413,4413,5413,6413,7413,8413,9413,50870],[414,1414,2414,3414,4414,5414,6414,7414,8414,9414,50860],[415,1415,2415,3415,4415,5415,6415,7415,8415,9415,50850],[416,1416,2416,3416,4416,5416,6416,7416,8416,9416,50840],[417,1417,2417,3417,4417,5417,6417,7417,8417,9417,50830],[418,1418,2418,3418,4418,5418,6418,7418,8418,9418,50820],[419,1419,2419,3419,4419,5419,6419,7419,8419,9419,50810],[420,1420,2420,3420,4420,5420,6420,7420,8420,9420,50800],[421,1421,2421,3421,4421,5421,6421,7421,8421,9421,50790],[422,1422,2422,3422,4422,5422,6422,7422,8422,9422,50780],[423,1423,2423,3423,4423,5423,6423,7423,8423,9423,50770],[424,1424,2424,3424,4424,5424,6424,7424,8424,9424,50760],[425,1425,2425,3425,4425,5425,6425,7425,8425,9425,50750],[426,1426,2426,3426,4426,5426,6426,7426,8426,9426,50740],[427,1427,2427,3427,4427,5427,6427,7427,8427,9427,50730],[428,1428,2428,3428,4428,5428,6428,7428,8428,9428,50720],[429,1429,2429,3429,4429,5429,6429,7429,8429,9429,50710],[430,1430,2430,3430,4430,5430,6430,7430,8430,9430,50700],[431,1431,2431,3431,4431,5431,6431,7431,8431,9431,50690],[432,1432,2432,3432,4432,5432,6432,7432,8432,9432,50680],[433,1433,2433,3433,4433,5433,6433,7433,8433,9433,50670],[434,1434,2434,3434,4434,5434,6434,7434,8434,9434,50660],[435,1435,2435,3435,4435,5435,6435,7435,8435,9435,50650],[436,1436,2436,3436,4436,5436,6436,7436,8436,9436,50640],[437,1437,2437,3437,4437,5437,6437,7437,8437,9437,50630],[438,1438,2438,3438,4438,5438,6438,7438,8438,9438,50620],[439,1439,2439,3439,4439,5439,6439,7439,8439,9439,50610],[440,1440,2440,3440,4440,5440,6440,7440,8440,9440,50600],[441,1441,2441,3441,4441,5441,6441,7441,8441,9441,50590],[442,1442,2442,3442,4442,5442,6442,7442,8442,9442,50580],[443,1443,2443,3443,4443,5443,6443,7443,8443,9443,50570],[444,1444,2444,3444,4444,5444,6444,7444,8444,9444,50560],[445,1445,2445,3445,4445,5445,6445,7445,8445,9445,50550],[446,1446,2446,3446,4446,5446,6446,7446,8446,9446,50540],[447,1447,2447,3447,4447,5447,6447,7447,8447,9447,50530],[448,1448,2448,3448,4448,5448,6448,7448,8448,9448,50520],[449,1449,2449,3449,4449,5449,6449,7449,8449,9449,50510],[450,1450,2450,3450,4450,5450,6450,7450,8450,9450,50500],[451,1451,2451,3451,4451,5451,6451,7451,8451,9451,50490],[452,1452,2452,3452,4452,5452,6452,7452,8452,9452,50480],[453,1453,2453,3453,4453,5453,6453,7453,8453,9453,50470],[454,1454,2454,3454,4454,5454,6454,7454,8454,9454,50460],[455,1455,2455,3455,4455,5455,6455,7455,8455,9455,50450],[456,1456,2456,3456,4456,5456,6456,7456,8456,9456,50440],[457,1457,2457,3457,4457,5457,6457,7457,8457,9457,50430],[458,1458,2458,3458,4458,5458,6458,7458,8458,9458,50420],[459,1459,2459,3459,4459,5459,6459,7459,8459,9459,50410],[460,1460,2460,3460,4460,5460,6460,7460,8460,9460,50400],[461,1461,2461,3461,4461,5461,6461,7461,8461,9461,50390],[462,1462,2462,3462,4462,5462,6462,7462,8462,9462,50380],[463,1463,2463,3463,4463,5463,6463,7463,8463,9463,50370],[464,1464,2464,3464,4464,5464,6464,7464,8464,9464,50360],[465,1465,2465,3465,4465,5465,6465,7465,8465,9465,50350],[466,1466,2466,3466,4466,5466,6466,7466,8466,9466,50340],[467,1467,2467,3467,4467,5467,6467,7467,8467,9467,50330],[468,1468,2468,3468,4468,5468,6468,7468,8468,9468,50320],[469,1469,2469,3469,4469,5469,6469,7469,8469,9469,50310],[470,1470,2470,3470,4470,5470,6470,7470,8470,9470,50300],[471,1471,2471,3471,4471,5471,6471,7471,8471,9471,50290],[472,1472,2472,3472,4472,5472,6472,7472,8472,9472,50280],[473,1473,2473,3473,4473,5473,6473,7473,8473,9473,50270],[474,1474,2474,3474,4474,5474,6474,7474,8474,9474,50260],[475,1475,2475,3475,4475,5475,6475,7475,8475,9475,50250],[476,1476,2476,3476,4476,5476,6476,7476,8476,9476,50240],[477,1477,2477,3477,4477,5477,6477,7477,8477,9477,50230],[478,1478,2478,3478,4478,5478,6478,7478,8478,9478,50220],[479,1479,2479,3479,4479,5479,6479,7479,8479,9479,50210],[480,1480,2480,3480,4480,5480,6480,7480,8480,9480,50200],[481,1481,2481,3481,4481,5481,6481,7481,8481,9481,50190],[482,1482,2482,3482,4482,5482,6482,7482,8482,9482,50180],[483,1483,2483,3483,4483,5483,6483,7483,8483,9483,50170],[484,1484,2484,3484,4484,5484,6484,7484,8484,9484,50160],[485,1485,2485,3485,4485,5485,6485,7485,8485,9485,50150],[486,1486,2486,3486,4486,5486,6486,7486,8486,9486,50140],[487,1487,2487,3487,4487,5487,6487,7487,8487,9487,50130],[488,1488,2488,3488,4488,5488,6488,7488,8488,9488,50120],[489,1489,2489,3489,4489,5489,6489,7489,8489,9489,50110],[490,1490,2490,3490,4490,5490,6490,7490,8490,9490,50100],[491,1491,2491,3491,4491,5491,6491,7491,8491,9491,50090],[492,1492,2492,3492,4492,5492,6492,7492,8492,9492,50080],[493,1493,2493,3493,4493,5493,6493,7493,8493,9493,50070],[494,1494,2494,3494,4494,5494,6494,7494,8494,9494,50060],[495,1495,2495,3495,4495,5495,6495,7495,8495,9495,50050],[496,1496,2496,3496,4496,5496,6496,7496,8496,9496,50040],[497,1497,2497,3497,4497,5497,6497,7497,8497,9497,50030],[498,1498,2498,3498,4498,5498,6498,7498,8498,9498,50020],[499,1499,2499,3499,4499,5499,6499,7499,8499,9499,50010],[500,1500,2500,3500,4500,5500,6500,7500,8500,9500,50000],[501,1501,2501,3501,4501,5501,6501,7501,8501,9501,49990],[502,1502,2502,3502,4502,5502,6502,7502,8502,9502,49980],[503,1503,2503,3503,4503,5503,6503,7503,8503,9503,49970],[504,1504,2504,3504,4504,5504,6504,7504,8504,9504,49960],[505,1505,2505,3505,4505,5505,6505,7505,8505,9505,49950],[506,1506,2506,3506,4506,5506,6506,7506,8506,9506,49940],[507,1507,2507,3507,4507,5507,6507,7507,8507,9507,49930],[508,1508,2508,3508,4508,5508,6508,7508,8508,9508,49920],[509,1509,2509,3509,4509,5509,6509,7509,8509,9509,49910],[510,1510,2510,3510,4510,5510,6510,7510,8510,9510,49900],[511,1511,2511,3511,4511,5511,6511,7511,8511,9511,49890],[512,1512,2512,3512,4512,5512,6512,7512,8512,9512,49880],[513,1513,2513,3513,4513,5513,6513,7513,8513,9513,49870],[514,1514,2514,3514,4514,5514,6514,7514,8514,9514,49860],[515,1515,2515,3515,4515,5515,6515,7515,8515,9515,49850],[516,1516,2516,3516,4516,5516,6516,7516,8516,9516,49840],[517,1517,2517,3517,4517,5517,6517,7517,8517,9517,49830],[518,1518,2518,3518,4518,5518,6518,7518,8518,9518,49820],[519,1519,2519,3519,4519,5519,6519,7519,8519,9519,49810],[520,1520,2520,3520,4520,5520,6520,7520,8520,9520,49800],[521,1521,2521,3521,4521,5521,6521,7521,8521,9521,49790],[522,1522,2522,3522,4522,5522,6522,7522,8522,9522,49780],[523,1523,2523,3523,4523,5523,6523,7523,8523,9523,49770],[524,1524,2524,3524,4524,5524,6524,7524,8524,9524,49760],[525,1525,2525,3525,4525,5525,6525,7525,8525,9525,49750],[526,1526,2526,3526,4526,5526,6526,7526,8526,9526,49740],[527,1527,2527,3527,4527,5527,6527,7527,8527,9527,49730],[528,1528,2528,3528,4528,5528,6528,7528,8528,9528,49720],[529,1529,2529,3529,4529,5529,6529,7529,8529,9529,49710],[530,1530,2530,3530,4530,5530,6530,7530,8530,9530,49700],[531,1531,2531,3531,4531,5531,6531,7531,8531,9531,49690],[532,1532,2532,3532,4532,5532,6532,7532,8532,9532,49680],[533,1533,2533,3533,4533,5533,6533,7533,8533,9533,49670],[534,1534,2534,3534,4534,5534,6534,7534,8534,9534,49660],[535,1535,2535,3535,4535,5535,6535,7535,8535,9535,49650],[536,1536,2536,3536,4536,5536,6536,7536,8536,9536,49640],[537,1537,2537,3537,4537,5537,6537,7537,8537,9537,49630],[538,1538,2538,3538,4538,5538,6538,7538,8538,9538,49620],[539,1539,2539,3539,4539,5539,6539,7539,8539,9539,49610],[540,1540,2540,3540,4540,5540,6540,7540,8540,9540,49600],[541,1541,2541,3541,4541,5541,6541,7541,8541,9541,49590],[542,1542,2542,3542,4542,5542,6542,7542,8542,9542,49580],[543,1543,2543,3543,4543,5543,6543,7543,8543,9543,49570],[544,1544,2544,3544,4544,5544,6544,7544,8544,9544,49560],[545,1545,2545,3545,4545,5545,6545,7545,8545,9545,49550],[546,1546,2546,3546,4546,5546,6546,7546,8546,9546,49540],[547,1547,2547,3547,4547,5547,6547,7547,8547,9547,49530],[548,1548,2548,3548,4548,5548,6548,7548,8548,9548,49520],[549,1549,2549,3549,4549,5549,6549,7549,8549,9549,49510],[550,1550,2550,3550,4550,5550,6550,7550,8550,9550,49500],[551,1551,2551,3551,4551,5551,6551,7551,8551,9551,49490],[552,1552,2552,3552,4552,5552,6552,7552,8552,9552,49480],[553,1553,2553,3553,4553,5553,6553,7553,8553,9553,49470],[554,1554,2554,3554,4554,5554,6554,7554,8554,9554,49460],[555,1555,2555,3555,4555,5555,6555,7555,8555,9555,49450],[556,1556,2556,3556,4556,5556,6556,7556,8556,9556,49440],[557,1557,2557,3557,4557,5557,6557,7557,8557,9557,49430],[558,1558,2558,3558,4558,5558,6558,7558,8558,9558,49420],[559,1559,2559,3559,4559,5559,6559,7559,8559,9559,49410],[560,1560,2560,3560,4560,5560,6560,7560,8560,9560,49400],[561,1561,2561,3561,4561,5561,6561,7561,8561,9561,49390],[562,1562,2562,3562,4562,5562,6562,7562,8562,9562,49380],[563,1563,2563,3563,4563,5563,6563,7563,8563,9563,49370],[564,1564,2564,3564,4564,5564,6564,7564,8564,9564,49360],[565,1565,2565,3565,4565,5565,6565,7565,8565,9565,49350],[566,1566,2566,3566,4566,5566,6566,7566,8566,9566,49340],[567,1567,2567,3567,4567,5567,6567,7567,8567,9567,49330],[568,1568,2568,3568,4568,5568,6568,7568,8568,9568,49320],[569,1569,2569,3569,4569,5569,6569,7569,8569,9569,49310],[570,1570,2570,3570,4570,5570,6570,7570,8570,9570,49300],[571,1571,2571,3571,4571,5571,6571,7571,8571,9571,49290],[572,1572,2572,3572,4572,5572,6572,7572,8572,9572,49280],[573,1573,2573,3573,4573,5573,6573,7573,8573,9573,49270],[574,1574,2574,3574,4574,5574,6574,7574,8574,9574,49260],[575,1575,2575,3575,4575,5575,6575,7575,8575,9575,49250],[576,1576,2576,3576,4576,5576,6576,7576,8576,9576,49240],[577,1577,2577,3577,4577,5577,6577,7577,8577,9577,49230],[578,1578,2578,3578,4578,5578,6578,7578,8578,9578,49220],[579,1579,2579,3579,4579,5579,6579,7579,8579,9579,49210],[580,1580,2580,3580,4580,5580,6580,7580,8580,9580,49200],[581,1581,2581,3581,4581,5581,6581,7581,8581,9581,49190],[582,1582,2582,3582,4582,5582,6582,7582,8582,9582,49180],[583,1583,2583,3583,4583,5583,6583,7583,8583,9583,49170],[584,1584,2584,3584,4584,5584,6584,7584,8584,9584,49160],[585,1585,2585,3585,4585,5585,6585,7585,8585,9585,49150],[586,1586,2586,3586,4586,5586,6586,7586,8586,9586,49140],[587,1587,2587,3587,4587,5587,6587,7587,8587,9587,49130],[588,1588,2588,3588,4588,5588,6588,7588,8588,9588,49120],[589,1589,2589,3589,4589,5589,6589,7589,8589,9589,49110],[590,1590,2590,3590,4590,5590,6590,7590,8590,9590,49100],[591,1591,2591,3591,4591,5591,6591,7591,8591,9591,49090],[592,1592,2592,3592,4592,5592,6592,7592,8592,9592,49080],[593,1593,2593,3593,4593,5593,6593,7593,8593,9593,49070],[594,1594,2594,3594,4594,5594,6594,7594,8594,9594,49060],[595,1595,2595,3595,4595,5595,6595,7595,8595,9595,49050],[596,1596,2596,3596,4596,5596,6596,7596,8596,9596,49040],[597,1597,2597,3597,4597,5597,6597,7597,8597,9597,49030],[598,1598,2598,3598,4598,5598,6598,7598,8598,9598,49020],[599,1599,2599,3599,4599,5599,6599,7599,8599,9599,49010],[600,1600,2600,3600,4600,5600,6600,7600,8600,9600,49000],[601,1601,2601,3601,4601,5601,6601,7601,8601,9601,48990],[602,1602,2602,3602,4602,5602,6602,7602,8602,9602,48980],[603,1603,2603,3603,4603,5603,6603,7603,8603,9603,48970],[604,1604,2604,3604,4604,5604,6604,7604,8604,9604,48960],[605,1605,2605,3605,4605,5605,6605,7605,8605,9605,48950],[606,1606,2606,3606,4606,5606,6606,7606,8606,9606,48940],[607,1607,2607,3607,4607,5607,6607,7607,8607,9607,48930],[608,1608,2608,3608,4608,5608,6608,7608,8608,9608,48920],[609,1609,2609,3609,4609,5609,6609,7609,8609,9609,48910],[610,1610,2610,3610,4610,5610,6610,7610,8610,9610,48900],[611,1611,2611,3611,4611,5611,6611,7611,8611,9611,48890],[612,1612,2612,3612,4612,5612,6612,7612,8612,9612,48880],[613,1613,2613,3613,4613,5613,6613,7613,8613,9613,48870],[614,1614,2614,3614,4614,5614,6614,7614,8614,9614,48860],[615,1615,2615,3615,4615,5615,6615,7615,8615,9615,48850],[616,1616,2616,3616,4616,5616,6616,7616,8616,9616,48840],[617,1617,2617,3617,4617,5617,6617,7617,8617,9617,48830],[618,1618,2618,3618,4618,5618,6618,7618,8618,9618,48820],[619,1619,2619,3619,4619,5619,6619,7619,8619,9619,48810],[620,1620,2620,3620,4620,5620,6620,7620,8620,9620,48800],[621,1621,2621,3621,4621,5621,6621,7621,8621,9621,48790],[622,1622,2622,3622,4622,5622,6622,7622,8622,9622,48780],[623,1623,2623,3623,4623,5623,6623,7623,8623,9623,48770],[624,1624,2624,3624,4624,5624,6624,7624,8624,9624,48760],[625,1625,2625,3625,4625,5625,6625,7625,8625,9625,48750],[626,1626,2626,3626,4626,5626,6626,7626,8626,9626,48740],[627,1627,2627,3627,4627,5627,6627,7627,8627,9627,48730],[628,1628,2628,3628,4628,5628,6628,7628,8628,9628,48720],[629,1629,2629,3629,4629,5629,6629,7629,8629,9629,48710],[630,1630,2630,3630,4630,5630,6630,7630,8630,9630,48700],[631,1631,2631,3631,4631,5631,6631,7631,8631,9631,48690],[632,1632,2632,3632,4632,5632,6632,7632,8632,9632,48680],[633,1633,2633,3633,4633,5633,6633,7633,8633,9633,48670],[634,1634,2634,3634,4634,5634,6634,7634,8634,9634,48660],[635,1635,2635,3635,4635,5635,6635,7635,8635,9635,48650],[636,1636,2636,3636,4636,5636,6636,7636,8636,9636,48640],[637,1637,2637,3637,4637,5637,6637,7637,8637,9637,48630],[638,1638,2638,3638,4638,5638,6638,7638,8638,9638,48620],[639,1639,2639,3639,4639,5639,6639,7639,8639,9639,48610],[640,1640,2640,3640,4640,5640,6640,7640,8640,9640,48600],[641,1641,2641,3641,4641,5641,6641,7641,8641,9641,48590],[642,1642,2642,3642,4642,5642,6642,7642,8642,9642,48580],[643,1643,2643,3643,4643,5643,6643,7643,8643,9643,48570],[644,1644,2644,3644,4644,5644,6644,7644,8644,9644,48560],[645,1645,2645,3645,4645,5645,6645,7645,8645,9645,48550],[646,1646,2646,3646,4646,5646,6646,7646,8646,9646,48540],[647,1647,2647,3647,4647,5647,6647,7647,8647,9647,48530],[648,1648,2648,3648,4648,5648,6648,7648,8648,9648,48520],[649,1649,2649,3649,4649,5649,6649,7649,8649,9649,48510],[650,1650,2650,3650,4650,5650,6650,7650,8650,9650,48500],[651,1651,2651,3651,4651,5651,6651,7651,8651,9651,48490],[652,1652,2652,3652,4652,5652,6652,7652,8652,9652,48480],[653,1653,2653,3653,4653,5653,6653,7653,8653,9653,48470],[654,1654,2654,3654,4654,5654,6654,7654,8654,9654,48460],[655,1655,2655,3655,4655,5655,6655,7655,8655,9655,48450],[656,1656,2656,3656,4656,5656,6656,7656,8656,9656,48440],[657,1657,2657,3657,4657,5657,6657,7657,8657,9657,48430],[658,1658,2658,3658,4658,5658,6658,7658,8658,9658,48420],[659,1659,2659,3659,4659,5659,6659,7659,8659,9659,48410],[660,1660,2660,3660,4660,5660,6660,7660,8660,9660,48400],[661,1661,2661,3661,4661,5661,6661,7661,8661,9661,48390],[662,1662,2662,3662,4662,5662,6662,7662,8662,9662,48380],[663,1663,2663,3663,4663,5663,6663,7663,8663,9663,48370],[664,1664,2664,3664,4664,5664,6664,7664,8664,9664,48360],[665,1665,2665,3665,4665,5665,6665,7665,8665,9665,48350],[666,1666,2666,3666,4666,5666,6666,7666,8666,9666,48340],[667,1667,2667,3667,4667,5667,6667,7667,8667,9667,48330],[668,1668,2668,3668,4668,5668,6668,7668,8668,9668,48320],[669,1669,2669,3669,4669,5669,6669,7669,8669,9669,48310],[670,1670,2670,3670,4670,5670,6670,7670,8670,9670,48300],[671,1671,2671,3671,4671,5671,6671,7671,8671,9671,48290],[672,1672,2672,3672,4672,5672,6672,7672,8672,9672,48280],[673,1673,2673,3673,4673,5673,6673,7673,8673,9673,48270],[674,1674,2674,3674,4674,5674,6674,7674,8674,9674,48260],[675,1675,2675,3675,4675,5675,6675,7675,8675,9675,48250],[676,1676,2676,3676,4676,5676,6676,7676,8676,9676,48240],[677,1677,2677,3677,4677,5677,6677,7677,8677,9677,48230],[678,1678,2678,3678,4678,5678,6678,7678,8678,9678,48220],[679,1679,2679,3679,4679,5679,6679,7679,8679,9679,48210],[680,1680,2680,3680,4680,5680,6680,7680,8680,9680,48200],[681,1681,2681,3681,4681,5681,6681,7681,8681,9681,48190],[682,1682,2682,3682,4682,5682,6682,7682,8682,9682,48180],[683,1683,2683,3683,4683,5683,6683,7683,8683,9683,48170],[684,1684,2684,3684,4684,5684,6684,7684,8684,9684,48160],[685,1685,2685,3685,4685,5685,6685,7685,8685,9685,48150],[686,1686,2686,3686,4686,5686,6686,7686,8686,9686,48140],[687,1687,2687,3687,4687,5687,6687,7687,8687,9687,48130],[688,1688,2688,3688,4688,5688,6688,7688,8688,9688,48120],[689,1689,2689,3689,4689,5689,6689,7689,8689,9689,48110],[690,1690,2690,3690,4690,5690,6690,7690,8690,9690,48100],[691,1691,2691,3691,4691,5691,6691,7691,8691,9691,48090],[692,1692,2692,3692,4692,5692,6692,7692,8692,9692,48080],[693,1693,2693,3693,4693,5693,6693,7693,8693,9693,48070],[694,1694,2694,3694,4694,5694,6694,7694,8694,9694,48060],[695,1695,2695,3695,4695,5695,6695,7695,8695,9695,48050],[696,1696,2696,3696,4696,5696,6696,7696,8696,9696,48040],[697,1697,2697,3697,4697,5697,6697,7697,8697,9697,48030],[698,1698,2698,3698,4698,5698,6698,7698,8698,9698,48020],[699,1699,2699,3699,4699,5699,6699,7699,8699,9699,48010],[700,1700,2700,3700,4700,5700,6700,7700,8700,9700,48000],[701,1701,2701,3701,4701,5701,6701,7701,8701,9701,47990],[702,1702,2702,3702,4702,5702,6702,7702,8702,9702,47980],[703,1703,2703,3703,4703,5703,6703,7703,8703,9703,47970],[704,1704,2704,3704,4704,5704,6704,7704,8704,9704,47960],[705,1705,2705,3705,4705,5705,6705,7705,8705,9705,47950],[706,1706,2706,3706,4706,5706,6706,7706,8706,9706,47940],[707,1707,2707,3707,4707,5707,6707,7707,8707,9707,47930],[708,1708,2708,3708,4708,5708,6708,7708,8708,9708,47920],[709,1709,2709,3709,4709,5709,6709,7709,8709,9709,47910],[710,1710,2710,3710,4710,5710,6710,7710,8710,9710,47900],[711,1711,2711,3711,4711,5711,6711,7711,8711,9711,47890],[712,1712,2712,3712,4712,5712,6712,7712,8712,9712,47880],[713,1713,2713,3713,4713,5713,6713,7713,8713,9713,47870],[714,1714,2714,3714,4714,5714,6714,7714,8714,9714,47860],[715,1715,2715,3715,4715,5715,6715,7715,8715,9715,47850],[716,1716,2716,3716,4716,5716,6716,7716,8716,9716,47840],[717,1717,2717,3717,4717,5717,6717,7717,8717,9717,47830],[718,1718,2718,3718,4718,5718,6718,7718,8718,9718,47820],[719,1719,2719,3719,4719,5719,6719,7719,8719,9719,47810],[720,1720,2720,3720,4720,5720,6720,7720,8720,9720,47800],[721,1721,2721,3721,4721,5721,6721,7721,8721,9721,47790],[722,1722,2722,3722,4722,5722,6722,7722,8722,9722,47780],[723,1723,2723,3723,4723,5723,6723,7723,8723,9723,47770],[724,1724,2724,3724,4724,5724,6724,7724,8724,9724,47760],[725,1725,2725,3725,4725,5725,6725,7725,8725,9725,47750],[726,1726,2726,3726,4726,5726,6726,7726,8726,9726,47740],[727,1727,2727,3727,4727,5727,6727,7727,8727,9727,47730],[728,1728,2728,3728,4728,5728,6728,7728,8728,9728,47720],[729,1729,2729,3729,4729,5729,6729,7729,8729,9729,47710],[730,1730,2730,3730,4730,5730,6730,7730,8730,9730,47700],[731,1731,2731,3731,4731,5731,6731,7731,8731,9731,47690],[732,1732,2732,3732,4732,5732,6732,7732,8732,9732,47680],[733,1733,2733,3733,4733,5733,6733,7733,8733,9733,47670],[734,1734,2734,3734,4734,5734,6734,7734,8734,9734,47660],[735,1735,2735,3735,4735,5735,6735,7735,8735,9735,47650],[736,1736,2736,3736,4736,5736,6736,7736,8736,9736,47640],[737,1737,2737,3737,4737,5737,6737,7737,8737,9737,47630],[738,1738,2738,3738,4738,5738,6738,7738,8738,9738,47620],[739,1739,2739,3739,4739,5739,6739,7739,8739,9739,47610],[740,1740,2740,3740,4740,5740,6740,7740,8740,9740,47600],[741,1741,2741,3741,4741,5741,6741,7741,8741,9741,47590],[742,1742,2742,3742,4742,5742,6742,7742,8742,9742,47580],[743,1743,2743,3743,4743,5743,6743,7743,8743,9743,47570],[744,1744,2744,3744,4744,5744,6744,7744,8744,9744,47560],[745,1745,2745,3745,4745,5745,6745,7745,8745,9745,47550],[746,1746,2746,3746,4746,5746,6746,7746,8746,9746,47540],[747,1747,2747,3747,4747,5747,6747,7747,8747,9747,47530],[748,1748,2748,3748,4748,5748,6748,7748,8748,9748,47520],[749,1749,2749,3749,4749,5749,6749,7749,8749,9749,47510],[750,1750,2750,3750,4750,5750,6750,7750,8750,9750,47500],[751,1751,2751,3751,4751,5751,6751,7751,8751,9751,47490],[752,1752,2752,3752,4752,5752,6752,7752,8752,9752,47480],[753,1753,2753,3753,4753,5753,6753,7753,8753,9753,47470],[754,1754,2754,3754,4754,5754,6754,7754,8754,9754,47460],[755,1755,2755,3755,4755,5755,6755,7755,8755,9755,47450],[756,1756,2756,3756,4756,5756,6756,7756,8756,9756,47440],[757,1757,2757,3757,4757,5757,6757,7757,8757,9757,47430],[758,1758,2758,3758,4758,5758,6758,7758,8758,9758,47420],[759,1759,2759,3759,4759,5759,6759,7759,8759,9759,47410],[760,1760,2760,3760,4760,5760,6760,7760,8760,9760,47400],[761,1761,2761,3761,4761,5761,6761,7761,8761,9761,47390],[762,1762,2762,3762,4762,5762,6762,7762,8762,9762,47380],[763,1763,2763,3763,4763,5763,6763,7763,8763,9763,47370],[764,1764,2764,3764,4764,5764,6764,7764,8764,9764,47360],[765,1765,2765,3765,4765,5765,6765,7765,8765,9765,47350],[766,1766,2766,3766,4766,5766,6766,7766,8766,9766,47340],[767,1767,2767,3767,4767,5767,6767,7767,8767,9767,47330],[768,1768,2768,3768,4768,5768,6768,7768,8768,9768,47320],[769,1769,2769,3769,4769,5769,6769,7769,8769,9769,47310],[770,1770,2770,3770,4770,5770,6770,7770,8770,9770,47300],[771,1771,2771,3771,4771,5771,6771,7771,8771,9771,47290],[772,1772,2772,3772,4772,5772,6772,7772,8772,9772,47280],[773,1773,2773,3773,4773,5773,6773,7773,8773,9773,47270],[774,1774,2774,3774,4774,5774,6774,7774,8774,9774,47260],[775,1775,2775,3775,4775,5775,6775,7775,8775,9775,47250],[776,1776,2776,3776,4776,5776,6776,7776,8776,9776,47240],[777,1777,2777,3777,4777,5777,6777,7777,8777,9777,47230],[778,1778,2778,3778,4778,5778,6778,7778,8778,9778,47220],[779,1779,2779,3779,4779,5779,6779,7779,8779,9779,47210],[780,1780,2780,3780,4780,5780,6780,7780,8780,9780,47200],[781,1781,2781,3781,4781,5781,6781,7781,8781,9781,47190],[782,1782,2782,3782,4782,5782,6782,7782,8782,9782,47180],[783,1783,2783,3783,4783,5783,6783,7783,8783,9783,47170],[784,1784,2784,3784,4784,5784,6784,7784,8784,9784,47160],[785,1785,2785,3785,4785,5785,6785,7785,8785,9785,47150],[786,1786,2786,3786,4786,5786,6786,7786,8786,9786,47140],[787,1787,2787,3787,4787,5787,6787,7787,8787,9787,47130],[788,1788,2788,3788,4788,5788,6788,7788,8788,9788,47120],[789,1789,2789,3789,4789,5789,6789,7789,8789,9789,47110],[790,1790,2790,3790,4790,5790,6790,7790,8790,9790,47100],[791,1791,2791,3791,4791,5791,6791,7791,8791,9791,47090],[792,1792,2792,3792,4792,5792,6792,7792,8792,9792,47080],[793,1793,2793,3793,4793,5793,6793,7793,8793,9793,47070],[794,1794,2794,3794,4794,5794,6794,7794,8794,9794,47060],[795,1795,2795,3795,4795,5795,6795,7795,8795,9795,47050],[796,1796,2796,3796,4796,5796,6796,7796,8796,9796,47040],[797,1797,2797,3797,4797,5797,6797,7797,8797,9797,47030],[798,1798,2798,3798,4798,5798,6798,7798,8798,9798,47020],[799,1799,2799,3799,4799,5799,6799,7799,8799,9799,47010],[800,1800,2800,3800,4800,5800,6800,7800,8800,9800,47000],[801,1801,2801,3801,4801,5801,6801,7801,8801,9801,46990],[802,1802,2802,3802,4802,5802,6802,7802,8802,9802,46980],[803,1803,2803,3803,4803,5803,6803,7803,8803,9803,46970],[804,1804,2804,3804,4804,5804,6804,7804,8804,9804,46960],[805,1805,2805,3805,4805,5805,6805,7805,8805,9805,46950],[806,1806,2806,3806,4806,5806,6806,7806,8806,9806,46940],[807,1807,2807,3807,4807,5807,6807,7807,8807,9807,46930],[808,1808,2808,3808,4808,5808,6808,7808,8808,9808,46920],[809,1809,2809,3809,4809,5809,6809,7809,8809,9809,46910],[810,1810,2810,3810,4810,5810,6810,7810,8810,9810,46900],[811,1811,2811,3811,4811,5811,6811,7811,8811,9811,46890],[812,1812,2812,3812,4812,5812,6812,7812,8812,9812,46880],[813,1813,2813,3813,4813,5813,6813,7813,8813,9813,46870],[814,1814,2814,3814,4814,5814,6814,7814,8814,9814,46860],[815,1815,2815,3815,4815,5815,6815,7815,8815,9815,46850],[816,1816,2816,3816,4816,5816,6816,7816,8816,9816,46840],[817,1817,2817,3817,4817,5817,6817,7817,8817,9817,46830],[818,1818,2818,3818,4818,5818,6818,7818,8818,9818,46820],[819,1819,2819,3819,4819,5819,6819,7819,8819,9819,46810],[820,1820,2820,3820,4820,5820,6820,7820,8820,9820,46800],[821,1821,2821,3821,4821,5821,6821,7821,8821,9821,46790],[822,1822,2822,3822,4822,5822,6822,7822,8822,9822,46780],[823,1823,2823,3823,4823,5823,6823,7823,8823,9823,46770],[824,1824,2824,3824,4824,5824,6824,7824,8824,9824,46760],[825,1825,2825,3825,4825,5825,6825,7825,8825,9825,46750],[826,1826,2826,3826,4826,5826,6826,7826,8826,9826,46740],[827,1827,2827,3827,4827,5827,6827,7827,8827,9827,46730],[828,1828,2828,3828,4828,5828,6828,7828,8828,9828,46720],[829,1829,2829,3829,4829,5829,6829,7829,8829,9829,46710],[830,1830,2830,3830,4830,5830,6830,7830,8830,9830,46700],[831,1831,2831,3831,4831,5831,6831,7831,8831,9831,46690],[832,1832,2832,3832,4832,5832,6832,7832,8832,9832,46680],[833,1833,2833,3833,4833,5833,6833,7833,8833,9833,46670],[834,1834,2834,3834,4834,5834,6834,7834,8834,9834,46660],[835,1835,2835,3835,4835,5835,6835,7835,8835,9835,46650],[836,1836,2836,3836,4836,5836,6836,7836,8836,9836,46640],[837,1837,2837,3837,4837,5837,6837,7837,8837,9837,46630],[838,1838,2838,3838,4838,5838,6838,7838,8838,9838,46620],[839,1839,2839,3839,4839,5839,6839,7839,8839,9839,46610],[840,1840,2840,3840,4840,5840,6840,7840,8840,9840,46600],[841,1841,2841,3841,4841,5841,6841,7841,8841,9841,46590],[842,1842,2842,3842,4842,5842,6842,7842,8842,9842,46580],[843,1843,2843,3843,4843,5843,6843,7843,8843,9843,46570],[844,1844,2844,3844,4844,5844,6844,7844,8844,9844,46560],[845,1845,2845,3845,4845,5845,6845,7845,8845,9845,46550],[846,1846,2846,3846,4846,5846,6846,7846,8846,9846,46540],[847,1847,2847,3847,4847,5847,6847,7847,8847,9847,46530],[848,1848,2848,3848,4848,5848,6848,7848,8848,9848,46520],[849,1849,2849,3849,4849,5849,6849,7849,8849,9849,46510],[850,1850,2850,3850,4850,5850,6850,7850,8850,9850,46500],[851,1851,2851,3851,4851,5851,6851,7851,8851,9851,46490],[852,1852,2852,3852,4852,5852,6852,7852,8852,9852,46480],[853,1853,2853,3853,4853,5853,6853,7853,8853,9853,46470],[854,1854,2854,3854,4854,5854,6854,7854,8854,9854,46460],[855,1855,2855,3855,4855,5855,6855,7855,8855,9855,46450],[856,1856,2856,3856,4856,5856,6856,7856,8856,9856,46440],[857,1857,2857,3857,4857,5857,6857,7857,8857,9857,46430],[858,1858,2858,3858,4858,5858,6858,7858,8858,9858,46420],[859,1859,2859,3859,4859,5859,6859,7859,8859,9859,46410],[860,1860,2860,3860,4860,5860,6860,7860,8860,9860,46400],[861,1861,2861,3861,4861,5861,6861,7861,8861,9861,46390],[862,1862,2862,3862,4862,5862,6862,7862,8862,9862,46380],[863,1863,2863,3863,4863,5863,6863,7863,8863,9863,46370],[864,1864,2864,3864,4864,5864,6864,7864,8864,9864,46360],[865,1865,2865,3865,4865,5865,6865,7865,8865,9865,46350],[866,1866,2866,3866,4866,5866,6866,7866,8866,9866,46340],[867,1867,2867,3867,4867,5867,6867,7867,8867,9867,46330],[868,1868,2868,3868,4868,5868,6868,7868,8868,9868,46320],[869,1869,2869,3869,4869,5869,6869,7869,8869,9869,46310],[870,1870,2870,3870,4870,5870,6870,7870,8870,9870,46300],[871,1871,2871,3871,4871,5871,6871,7871,8871,9871,46290],[872,1872,2872,3872,4872,5872,6872,7872,8872,9872,46280],[873,1873,2873,3873,4873,5873,6873,7873,8873,9873,46270],[874,1874,2874,3874,4874,5874,6874,7874,8874,9874,46260],[875,1875,2875,3875,4875,5875,6875,7875,8875,9875,46250],[876,1876,2876,3876,4876,5876,6876,7876,8876,9876,46240],[877,1877,2877,3877,4877,5877,6877,7877,8877,9877,46230],[878,1878,2878,3878,4878,5878,6878,7878,8878,9878,46220],[879,1879,2879,3879,4879,5879,6879,7879,8879,9879,46210],[880,1880,2880,3880,4880,5880,6880,7880,8880,9880,46200],[881,1881,2881,3881,4881,5881,6881,7881,8881,9881,46190],[882,1882,2882,3882,4882,5882,6882,7882,8882,9882,46180],[883,1883,2883,3883,4883,5883,6883,7883,8883,9883,46170],[884,1884,2884,3884,4884,5884,6884,7884,8884,9884,46160],[885,1885,2885,3885,4885,5885,6885,7885,8885,9885,46150],[886,1886,2886,3886,4886,5886,6886,7886,8886,9886,46140],[887,1887,2887,3887,4887,5887,6887,7887,8887,9887,46130],[888,1888,2888,3888,4888,5888,6888,7888,8888,9888,46120],[889,1889,2889,3889,4889,5889,6889,7889,8889,9889,46110],[890,1890,2890,3890,4890,5890,6890,7890,8890,9890,46100],[891,1891,2891,3891,4891,5891,6891,7891,8891,9891,46090],[892,1892,2892,3892,4892,5892,6892,7892,8892,9892,46080],[893,1893,2893,3893,4893,5893,6893,7893,8893,9893,46070],[894,1894,2894,3894,4894,5894,6894,7894,8894,9894,46060],[895,1895,2895,3895,4895,5895,6895,7895,8895,9895,46050],[896,1896,2896,3896,4896,5896,6896,7896,8896,9896,46040],[897,1897,2897,3897,4897,5897,6897,7897,8897,9897,46030],[898,1898,2898,3898,4898,5898,6898,7898,8898,9898,46020],[899,1899,2899,3899,4899,5899,6899,7899,8899,9899,46010],[900,1900,2900,3900,4900,5900,6900,7900,8900,9900,46000],[901,1901,2901,3901,4901,5901,6901,7901,8901,9901,45990],[902,1902,2902,3902,4902,5902,6902,7902,8902,9902,45980],[903,1903,2903,3903,4903,5903,6903,7903,8903,9903,45970],[904,1904,2904,3904,4904,5904,6904,7904,8904,9904,45960],[905,1905,2905,3905,4905,5905,6905,7905,8905,9905,45950],[906,1906,2906,3906,4906,5906,6906,7906,8906,9906,45940],[907,1907,2907,3907,4907,5907,6907,7907,8907,9907,45930],[908,1908,2908,3908,4908,5908,6908,7908,8908,9908,45920],[909,1909,2909,3909,4909,5909,6909,7909,8909,9909,45910],[910,1910,2910,3910,4910,5910,6910,7910,8910,9910,45900],[911,1911,2911,3911,4911,5911,6911,7911,8911,9911,45890],[912,1912,2912,3912,4912,5912,6912,7912,8912,9912,45880],[913,1913,2913,3913,4913,5913,6913,7913,8913,9913,45870],[914,1914,2914,3914,4914,5914,6914,7914,8914,9914,45860],[915,1915,2915,3915,4915,5915,6915,7915,8915,9915,45850],[916,1916,2916,3916,4916,5916,6916,7916,8916,9916,45840],[917,1917,2917,3917,4917,5917,6917,7917,8917,9917,45830],[918,1918,2918,3918,4918,5918,6918,7918,8918,9918,45820],[919,1919,2919,3919,4919,5919,6919,7919,8919,9919,45810],[920,1920,2920,3920,4920,5920,6920,7920,8920,9920,45800],[921,1921,2921,3921,4921,5921,6921,7921,8921,9921,45790],[922,1922,2922,3922,4922,5922,6922,7922,8922,9922,45780],[923,1923,2923,3923,4923,5923,6923,7923,8923,9923,45770],[924,1924,2924,3924,4924,5924,6924,7924,8924,9924,45760],[925,1925,2925,3925,4925,5925,6925,7925,8925,9925,45750],[926,1926,2926,3926,4926,5926,6926,7926,8926,9926,45740],[927,1927,2927,3927,4927,5927,6927,7927,8927,9927,45730],[928,1928,2928,3928,4928,5928,6928,7928,8928,9928,45720],[929,1929,2929,3929,4929,5929,6929,7929,8929,9929,45710],[930,1930,2930,3930,4930,5930,6930,7930,8930,9930,45700],[931,1931,2931,3931,4931,5931,6931,7931,8931,9931,45690],[932,1932,2932,3932,4932,5932,6932,7932,8932,9932,45680],[933,1933,2933,3933,4933,5933,6933,7933,8933,9933,45670],[934,1934,2934,3934,4934,5934,6934,7934,8934,9934,45660],[935,1935,2935,3935,4935,5935,6935,7935,8935,9935,45650],[936,1936,2936,3936,4936,5936,6936,7936,8936,9936,45640],[937,1937,2937,3937,4937,5937,6937,7937,8937,9937,45630],[938,1938,2938,3938,4938,5938,6938,7938,8938,9938,45620],[939,1939,2939,3939,4939,5939,6939,7939,8939,9939,45610],[940,1940,2940,3940,4940,5940,6940,7940,8940,9940,45600],[941,1941,2941,3941,4941,5941,6941,7941,8941,9941,45590],[942,1942,2942,3942,4942,5942,6942,7942,8942,9942,45580],[943,1943,2943,3943,4943,5943,6943,7943,8943,9943,45570],[944,1944,2944,3944,4944,5944,6944,7944,8944,9944,45560],[945,1945,2945,3945,4945,5945,6945,7945,8945,9945,45550],[946,1946,2946,3946,4946,5946,6946,7946,8946,9946,45540],[947,1947,2947,3947,4947,5947,6947,7947,8947,9947,45530],[948,1948,2948,3948,4948,5948,6948,7948,8948,9948,45520],[949,1949,2949,3949,4949,5949,6949,7949,8949,9949,45510],[950,1950,2950,3950,4950,5950,6950,7950,8950,9950,45500],[951,1951,2951,3951,4951,5951,6951,7951,8951,9951,45490],[952,1952,2952,3952,4952,5952,6952,7952,8952,9952,45480],[953,1953,2953,3953,4953,5953,6953,7953,8953,9953,45470],[954,1954,2954,3954,4954,5954,6954,7954,8954,9954,45460],[955,1955,2955,3955,4955,5955,6955,7955,8955,9955,45450],[956,1956,2956,3956,4956,5956,6956,7956,8956,9956,45440],[957,1957,2957,3957,4957,5957,6957,7957,8957,9957,45430],[958,1958,2958,3958,4958,5958,6958,7958,8958,9958,45420],[959,1959,2959,3959,4959,5959,6959,7959,8959,9959,45410],[960,1960,2960,3960,4960,5960,6960,7960,8960,9960,45400],[961,1961,2961,3961,4961,5961,6961,7961,8961,9961,45390],[962,1962,2962,3962,4962,5962,6962,7962,8962,9962,45380],[963,1963,2963,3963,4963,5963,6963,7963,8963,9963,45370],[964,1964,2964,3964,4964,5964,6964,7964,8964,9964,45360],[965,1965,2965,3965,4965,5965,6965,7965,8965,9965,45350],[966,1966,2966,3966,4966,5966,6966,7966,8966,9966,45340],[967,1967,2967,3967,4967,5967,6967,7967,8967,9967,45330],[968,1968,2968,3968,4968,5968,6968,7968,8968,9968,45320],[969,1969,2969,3969,4969,5969,6969,7969,8969,9969,45310],[970,1970,2970,3970,4970,5970,6970,7970,8970,9970,45300],[971,1971,2971,3971,4971,5971,6971,7971,8971,9971,45290],[972,1972,2972,3972,4972,5972,6972,7972,8972,9972,45280],[973,1973,2973,3973,4973,5973,6973,7973,8973,9973,45270],[974,1974,2974,3974,4974,5974,6974,7974,8974,9974,45260],[975,1975,2975,3975,4975,5975,6975,7975,8975,9975,45250],[976,1976,2976,3976,4976,5976,6976,7976,8976,9976,45240],[977,1977,2977,3977,4977,5977,6977,7977,8977,9977,45230],[978,1978,2978,3978,4978,5978,6978,7978,8978,9978,45220],[979,1979,2979,3979,4979,5979,6979,7979,8979,9979,45210],[980,1980,2980,3980,4980,5980,6980,7980,8980,9980,45200],[981,1981,2981,3981,4981,5981,6981,7981,8981,9981,45190],[982,1982,2982,3982,4982,5982,6982,7982,8982,9982,45180],[983,1983,2983,3983,4983,5983,6983,7983,8983,9983,45170],[984,1984,2984,3984,4984,5984,6984,7984,8984,9984,45160],[985,1985,2985,3985,4985,5985,6985,7985,8985,9985,45150],[986,1986,2986,3986,4986,5986,6986,7986,8986,9986,45140],[987,1987,2987,3987,4987,5987,6987,7987,8987,9987,45130],[988,1988,2988,3988,4988,5988,6988,7988,8988,9988,45120],[989,1989,2989,3989,4989,5989,6989,7989,8989,9989,45110],[990,1990,2990,3990,4990,5990,6990,7990,8990,9990,45100],[991,1991,2991,3991,4991,5991,6991,7991,8991,9991,45090],[992,1992,2992,3992,4992,5992,6992,7992,8992,9992,45080],[993,1993,2993,3993,4993,5993,6993,7993,8993,9993,45070],[994,1994,2994,3994,4994,5994,6994,7994,8994,9994,45060],[995,1995,2995,3995,4995,5995,6995,7995,8995,9995,45050],[996,1996,2996,3996,4996,5996,6996,7996,8996,9996,45040],[997,1997,2997,3997,4997,5997,6997,7997,8997,9997,45030],[998,1998,2998,3998,4998,5998,6998,7998,8998,9998,45020],[999,1999,2999,3999,4999,5999,6999,7999,8999,9999,45010]] + print(f"len in_slow {len(in_slow)}") + print(f"lin in_slow[0] {len(in_slow[0])}") + with Timer(): + Solution().leastBricks(in_slow) From 1fb894cf88d2f7025841f3d35175a1dae0697dab Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Thu, 24 Oct 2019 20:53:22 +0200 Subject: [PATCH 36/56] feat (brickwall): timing difference clarified --- leetcode/brickwall/brickwall.py | 5 +++++ leetcode/brickwall/brickwall2.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/leetcode/brickwall/brickwall.py b/leetcode/brickwall/brickwall.py index 3c99b7f..55f86cf 100644 --- a/leetcode/brickwall/brickwall.py +++ b/leetcode/brickwall/brickwall.py @@ -7,8 +7,11 @@ class Solution: def __init__(self, debug=False): self.debug = debug + self.op_ct = 0 def leastBricks(self, wall: List[List[int]]) -> int: + # O(length of layer * layers of brick) + # touch every brick as many times as it is long reached = {idx: row(wall[idx][0], 1) for idx in range(len(wall))} line_location = 1 min_val = len(wall) @@ -35,6 +38,7 @@ def leastBricks(self, wall: List[List[int]]) -> int: if self.debug: print(f"min_loc {min_loc}") + print(f"op_ct {self.op_ct}") return min_val def looploop(self, line_location, missed_ct, next_loc, reached, wall): @@ -43,6 +47,7 @@ def looploop(self, line_location, missed_ct, next_loc, reached, wall): return missed_ct, next_loc def innerloop(self, idx, line_location, missed_ct, next_loc, r, reached, wall): + self.op_ct += 1 if r.loc == line_location: nn = r.loc + wall[idx][r.idx] reached[idx] = row(nn, r.idx + 1) diff --git a/leetcode/brickwall/brickwall2.py b/leetcode/brickwall/brickwall2.py index 0756404..36b7462 100644 --- a/leetcode/brickwall/brickwall2.py +++ b/leetcode/brickwall/brickwall2.py @@ -5,17 +5,22 @@ class Solution: def __init__(self, debug=False): self.debug = debug + self.op_ct = 0 def leastBricks(self, wall: List[List[int]]) -> int: + # O(layers of brick * stones in layer) + # touch every brick once splits = defaultdict(int) wall_end = sum(wall[0]) for layer in wall: ct = 0 for brick in layer: ct += brick + self.op_ct += 1 if ct < wall_end: splits[ct] += 1 + print(f"op_ct {self.op_ct}") if splits: m = max(splits.values()) return len(wall) - m From def5f9ef726751efd48e3f6a0111ee23ad2e54ea Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 25 Oct 2019 10:22:28 +0200 Subject: [PATCH 37/56] feat (minmoves): sketelon in place --- leetcode/minmoves/minmoves.py | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 leetcode/minmoves/minmoves.py diff --git a/leetcode/minmoves/minmoves.py b/leetcode/minmoves/minmoves.py new file mode 100644 index 0000000..b881843 --- /dev/null +++ b/leetcode/minmoves/minmoves.py @@ -0,0 +1,36 @@ +import time +from typing import List + + +class Solution: + def minimumMoves(self, grid: List[List[int]]) -> int: + pass + + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + + +def test1(): + grid = [[0, 0, 0, 0, 0, 1], + [1, 1, 0, 0, 1, 0], + [0, 0, 0, 0, 1, 1], + [0, 0, 1, 0, 1, 0], + [0, 1, 1, 0, 0, 0], + [0, 1, 1, 0, 0, 0]] + assert Solution().minimumMoves(grid) == 11 + + +def test2(): + grid = [[0, 0, 1, 1, 1, 1], + [0, 0, 0, 0, 1, 1], + [1, 1, 0, 0, 0, 1], + [1, 1, 1, 0, 0, 1], + [1, 1, 1, 0, 0, 1], + [1, 1, 1, 0, 0, 0]] + assert Solution().minimumMoves(grid) == 9 From ef8f59709d774a438c4df8265526a7097cb0395d Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 25 Oct 2019 18:12:11 +0200 Subject: [PATCH 38/56] feat (minmoves): two solutions --- leetcode/minmoves/minmoves.py | 436 +++++++++++++++++++++++++++++++++- leetcode/minmoves/plothm.py | 147 ++++++++++++ 2 files changed, 582 insertions(+), 1 deletion(-) create mode 100644 leetcode/minmoves/plothm.py diff --git a/leetcode/minmoves/minmoves.py b/leetcode/minmoves/minmoves.py index b881843..762517b 100644 --- a/leetcode/minmoves/minmoves.py +++ b/leetcode/minmoves/minmoves.py @@ -1,10 +1,111 @@ +import heapq import time +from collections import namedtuple, deque from typing import List +snake = namedtuple("snake", ['tailx', 'taily', 'headx', 'heady']) + class Solution: + def _moveright(self, s): + return snake(tailx=s.tailx + 1, taily=s.taily, headx=s.headx + 1, heady=s.heady) + + def _can_right(self, s, grid): + try: + return grid[s.heady][s.headx + 1] == grid[s.taily][s.tailx + 1] == 0 + except IndexError: + return False + + def _movedown(self, s): + return snake(tailx=s.tailx, taily=s.taily + 1, headx=s.headx, heady=s.heady + 1) + + def _can_down(self, s, grid): + try: + return grid[s.heady + 1][s.headx] == grid[s.taily + 1][s.tailx] == 0 + except IndexError: + return False + + def _rotate(self, s): + return snake(tailx=s.tailx, taily=s.taily, headx=s.tailx, heady=s.taily + 1) + + def _can_rotate(self, s, grid): + try: + return s.headx > s.tailx and grid[s.heady + 1][s.headx] == grid[s.taily + 1][s.tailx] == 0 + except IndexError: + return False + + def _rotate_anti(self, s): + return snake(tailx=s.tailx, taily=s.taily, headx=s.tailx + 1, heady=s.taily) + + def _can_rotate_anti(self, s, grid): + try: + return s.heady > s.taily and grid[s.heady][s.headx + 1] == grid[s.taily][s.tailx + 1] == 0 + except IndexError: + return False + + def _heuristic_to_go(self, s, n): + """heuristic distance to goal steps for head + rotation if not horizontal""" + return (n - s.headx) + (n - s.heady) + (1 if s.heady > s.taily else 0) + + def _solved(self, s, n): + return s.tailx == n - 2 and s.heady == s.headx == s.taily == n - 1 + def minimumMoves(self, grid: List[List[int]]) -> int: - pass + n = len(grid) # Note: grid is square + s = snake(tailx=0, taily=0, heady=0, headx=1) + start_pos = (0, s) + seen = set(start_pos) + h = deque(maxlen=n*n) + h.append(start_pos) + while h: + steps, s = h.popleft() # pop from beginning (*) + if self._solved(s, n): + return steps + + steps += 1 + + def push_new(new_s): + new_item = (steps, new_s) + if not new_s in seen: + h.append(new_item) # add at end (with (*) above ensures that first solution found is shortest) + seen.add(new_s) + + if self._can_down(s, grid): push_new(self._movedown(s)) + if self._can_right(s, grid): push_new(self._moveright(s)) + if self._can_rotate(s, grid): push_new(self._rotate(s)) + if self._can_rotate_anti(s, grid): push_new(self._rotate_anti(s)) + + return -1 + + def minimumMoves_heap(self, grid: List[List[int]]) -> int: + n = len(grid) # Note: grid is square + s = snake(tailx=0, taily=0, heady=0, headx=1) + h = [] + seen = set() + heapq.heappush(h, (self._heuristic_to_go(s, n), 0, s, False)) + i = 0 + while h: + _, steps, s, last_rotate = heapq.heappop(h) + if self._solved(s, n): + return steps + steps += 1 + + def push_new(new_s, rot): + new_item = (steps + self._heuristic_to_go(new_s, n), steps, new_s, rot) + if not new_s in seen: + heapq.heappush(h, new_item) + seen.add(new_s) + + if self._can_down(s, grid): + push_new(self._movedown(s), False) + if self._can_right(s, grid): + push_new(self._moveright(s), False) + if not last_rotate and self._can_rotate(s, grid): + push_new(self._rotate(s), True) + if not last_rotate and self._can_rotate_anti(s, grid): + push_new(self._rotate_anti(s), True) + else: + return -1 class Timer: @@ -34,3 +135,336 @@ def test2(): [1, 1, 1, 0, 0, 1], [1, 1, 1, 0, 0, 0]] assert Solution().minimumMoves(grid) == 9 + + +def test3(): + grid = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 1], [1, 0, 0, 1, 0, 0, 1, 0, 1, 0], + [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], + [1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [1, 1, 0, 0, 0, 0, 0, 0, 0, 0]] + assert Solution().minimumMoves(grid) == -1 + + +def test4(): + grid = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], + [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], + [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0], + [0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]] + assert Solution().minimumMoves(grid) == -1 + +if __name__ == "__main__": + grid = [ + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, + 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, + 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, + 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, + 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], + [1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1], + [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], + [0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0], + [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], + [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, + 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], + [1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0], + [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], + [0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], + [1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], + [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, + 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1], + [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, + 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1], + [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, + 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], + [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], + [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1], + [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], + [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, + 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, + 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], + [1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, + 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], + [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], + [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], + [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1], + [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, + 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, + 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], + [1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, + 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, + 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], + [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0], + [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1], + [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]] + + with Timer(): + print(Solution().minimumMoves(grid)) diff --git a/leetcode/minmoves/plothm.py b/leetcode/minmoves/plothm.py new file mode 100644 index 0000000..6666c6e --- /dev/null +++ b/leetcode/minmoves/plothm.py @@ -0,0 +1,147 @@ +import matplotlib.pyplot as plt +import numpy as np + +hm1 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 390, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 61462, 1530, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 1890, 3420, 3420], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 750, 2640, 6060, 9480], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 6060, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm2 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 3420, 3420], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 31342, 6060, 9480], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 6060, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm3 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 284212, 3420], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 6060, 9480], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 6060, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm4 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 3420], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 364646, 9480], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 6060, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm5 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 194530], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 9480], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 6060, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm6 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 87568], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 202936, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm7 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 87568], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 702936, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm8 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 556515], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm9 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1056515], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 15540], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm10 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 349892], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm11 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 849892], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm12 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1349892], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm13 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1849892], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm14 = np.array([[0, 1, 1, 2, 4, 7, 11, 16, 22, 22, 0, 0, 0, 0, 0], [0, 1, 4, 11, 25, 49, 86, 139, 210, 0, 0, 0, 0, 0, 0], [0, 2, 8, 28, 78, 179, 271, 417, 683, 767, 942, 1145, 1376, 1635, 0], [0, 0, 9, 52, 179, 463, 0, 84, 795, 1590, 2763, 3936, 5340, 7262, 7717], [0, 0, 12, 85, 346, 1008, 1238, 1322, 0, 287, 3337, 0, 455, 7885, 15602], [0, 0, 15, 112, 564, 1923, 3999, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 90, 790, 2790, 6789, 6789, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 105, 1000, 0, 1525, 8314, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 120, 1240, 649, 2174, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 135, 1375, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177111], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) +hm15 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 1145, 1376, 1635, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 6363, 3936, 5340, 7262, 7717], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 3337, 0, 455, 7885, 15602], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 371, 4079, 4534, 4989, 0, 910], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 455, 5073, 11574, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 17253, 6789, 7328, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 19456, 0, 138, 7688, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 1525, 0, 138, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm16 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 13327, 7717], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 7885, 15602], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 38331, 4989, 0, 910], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 11574, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 13246, 27854, 31278, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 37771, 21324, 52992, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm17 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 7717], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 33342, 15602], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 17574, 0, 910], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 27854, 31278, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 91638, 52992, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm18 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 41059], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 910], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 181305, 31278, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 52992, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 4174, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm19 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 41059], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 910], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 31278, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 191548, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm20 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 31278, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 545203, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 4924, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm21 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 117591, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 62480, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm22 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 96211, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 175339, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm23 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 910], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 285862, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 485688, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm24 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 331802, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 914291, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm25 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 604075, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm26 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1104075, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm27 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1604075, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 69294, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm28 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 38655, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 507080, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm29 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 229273, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 177836, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 816462, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm30 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 190297, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 816462, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm31 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 155324, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 690297, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 816462, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm32 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 383417, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 962204, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 816462, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm33 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 390915, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 962204, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1308964, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm34 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 390915, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 1298376, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm35 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 390915, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 1798376, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm36 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 390915, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 2298376, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm37 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 390915, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 2798376, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm38 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 390915, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3298376, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm39 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 625445, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm40 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 1125445, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm41 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 1625445, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm42 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 2125445, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm43 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 2625445, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 250550, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm44 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 313637, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm45 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 813637, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm46 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 1313637, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm47 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 374653, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 1813637, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm48 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 606219, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 2082071, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm49 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1106219, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 2082071, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm50 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 2293678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm51 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 2793678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm52 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 3293678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm53 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 3793678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm54 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 4293678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm55 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 4793678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm56 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1394612, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5293678, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm57 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 1848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm58 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 2348247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm59 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 2848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm60 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 3348247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm61 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 3848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm62 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 4348247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm63 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 4848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm64 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 5348247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm65 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 5848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm66 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 6348247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm67 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 6848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm68 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 7348247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm69 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 7848247, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 50973, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm70 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 199987, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm71 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 699987, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm72 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 1199987, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm73 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 1699987, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm74 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 673536, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2199987, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm75 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm76 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 1446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm77 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 1946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm78 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 2446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm79 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 2946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm80 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 3446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm81 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 3946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm82 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 4446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm83 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 4946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm84 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 5446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm85 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 5946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm86 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 6446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm87 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 6946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm88 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 7446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm89 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 7946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm90 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 8446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm91 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 8946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm92 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 9446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm93 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 9946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm94 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 10446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm95 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 10946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm96 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 11446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm97 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 11946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm98 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 12446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm99 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 12946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm100 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 13446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm101 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 13946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm102 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 14446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm103 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 14946554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm104 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 419566], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15446554, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm105 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm106 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 1105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm107 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 1605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm108 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 2105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm109 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 2605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm110 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 3105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm111 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 3605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm112 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 4105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm113 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 4605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm114 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 5105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm115 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 5605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm116 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 6105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm117 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 6605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm118 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 7105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm119 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 7605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm120 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 8105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm121 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 8605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm122 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 9105512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm123 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 9605512], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 733989, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm124 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 10075667], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 763834, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm125 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 10075667], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 1263834, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm126 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 10075667], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 1763834, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm127 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 10075667], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 2263834, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) +hm128 = np.array([[0, 1, 1, 2, 4, 8, 16, 31, 57, 57, 0, 0, 0, 0, 0], [0, 1, 4, 12, 32, 79, 181, 384, 735, 0, 0, 0, 0, 0, 0], [0, 2, 10, 42, 144, 417, 694, 1232, 2415, 3427, 5549, 8438, 12269, 17245, 0], [0, 0, 18, 115, 474, 1328, 0, 1012, 4047, 8241, 17621, 27204, 40849, 64446, 77486], [0, 0, 34, 266, 1266, 3716, 5436, 6448, 0, 5218, 28057, 0, 13040, 84461, 161947], [0, 0, 59, 484, 2762, 9668, 22224, 0, 0, 7750, 43557, 54126, 67166, 0, 26367], [0, 0, 0, 673, 5239, 17596, 39820, 39820, 0, 10569, 67885, 166328, 0, 0, 26367], [0, 0, 0, 1007, 7253, 0, 18807, 58627, 39820, 53579, 150191, 399997, 504732, 716812, 0], [0, 0, 0, 1431, 10115, 4153, 22960, 0, 6789, 70802, 242250, 771273, 1666289, 3062358, 0], [0, 0, 0, 1960, 12075, 0, 18807, 0, 6789, 0, 146926, 1142018, 3563846, 8199233, 10075667], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 192541, 1472792, 5340043, 15760608, 1222163], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 2426969, 2763834, 1956152], [0, 0, 0, 0, 7922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216629]]) + +hms = [hm10, hm20, hm30, hm40, hm50, hm60, hm70, hm80, hm90, hm100, hm110, hm120] + +n = max(np.max(hm) for hm in hms) + +fig, axs = plt.subplots(nrows=3, ncols=4) +i = 1 +for hm, ax in zip(hms, np.concatenate(axs)): + ax.imshow(hm, vmax=n) + ax.set_title(f"hm{i}") + i += 1 + +ax1.imshow(hm0, vmax=n) +ax1.set_title("hm0") +ax2.imshow(hm, vmax=n) +ax2.set_title("hm") From 950825292f72407871d8dafb8ee46e9a0d3bdb38 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sun, 27 Oct 2019 08:29:17 +0100 Subject: [PATCH 39/56] feat (dynp): knapsack dynamic programming --- dynprog/knap1.py | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 dynprog/knap1.py diff --git a/dynprog/knap1.py b/dynprog/knap1.py new file mode 100644 index 0000000..35b9289 --- /dev/null +++ b/dynprog/knap1.py @@ -0,0 +1,44 @@ +import random +import numpy as np + +from typing import List + +val = [60, 100, 120] +wt = [10, 20, 30] +W = 50 + +def solve(val: List[int], wt: List[int], W: int) -> int: + # pick first element or not + if not val: + return 0 + + v1 = (val[0] + solve(val[1:], wt[1:], W - wt[0])) if wt[0] <= W else 0 + + v2 = solve(val[1:], wt[1:], W) + + return max(v1, v2) + +solve(val, wt, W) + +def genks(n): + return (random.choices(range(1, 200), k=n), random.choices(range(1, 200), k=n), random.choice(range(10,500))) + +p = genks(100) +solve(*p) + +def solvedp(val: List[int], wt: List[int], w:int) -> int: + m = np.zeros((len(val), (w+1))) + for i in range(len(val)): + for j in range(w+1): + if i == 0: # first item + m[i][j] = val[i] if wt[i] <= j else 0 + else: + m[i][j] = max(m[i-1][j], m[i-1][j - wt[i]] + val[i]) if wt[i] <= j else m[i-1][j] + return m[len(val)-1, w] + +solvedp(val, wt, W) + +for i in range(100): + print(i) + test_p = genks(20) + assert solve(*p) == solvedp(*p) From d61fa533a2e7131413c0794c8257116540edd1aa Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sun, 27 Oct 2019 08:37:01 +0100 Subject: [PATCH 40/56] feat (3sum): solution --- leetcode/3sum/3sum.py | 66 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 leetcode/3sum/3sum.py diff --git a/leetcode/3sum/3sum.py b/leetcode/3sum/3sum.py new file mode 100644 index 0000000..0d6bbc7 --- /dev/null +++ b/leetcode/3sum/3sum.py @@ -0,0 +1,66 @@ +import bisect +from collections import defaultdict +from typing import List +import time + + +class Solution: + def threeSum(self, nums: List[int]) -> List[List[int]]: + ln, numss, sol, d2 = len(nums), nums, set(), defaultdict(list) + self.maked2(d2, numss) + self.findsol(d2, numss, sol) + + return list(sol) + + def findsol(self, d2, numss, sol): + for idx3, k in enumerate(numss): + l = d2[k] + for idx1, idx2 in l: + if idx2 < idx3: + sol.add((numss[idx1], numss[idx2], numss[idx3])) + + def maked2(self, d2, numss): + for idx1, i in enumerate(numss): + for idx2p, j in enumerate(numss[(idx1 + 1):]): + d2[-i - j].append((idx1, idx1 + 1 + idx2p)) + + +import bisect +from collections import defaultdict + + +class Solution: + def threeSum(self, nums: List[int]) -> List[List[int]]: + nums.sort() + ln, sols = len(nums), set() + for i in range(ln): + if i + 1 < ln and nums[i] == nums[i + 1]: + continue # only try the highest nums + goal = -nums[i] + j = 0 + k = i - 1 + while j < k: + s2 = nums[j] + nums[k] + if s2 == goal: + sols.add((nums[i], nums[j], nums[k])) + k -= 1 + elif s2 < goal: + j += 1 + else: + k -= 1 + return list(sols) + + +nums = [82597,-9243,62390,83030,-97960,-26521,-61011,83390,-38677,12333,75987,46091,83794,19355,-71037,-6242,-28801,324,1202,-90885,-2989,-95597,-34333,35528,5680,89093,-90606,50360,-29393,-27012,53313,65213,99818,-82405,-41661,-3333,-51952,72135,-1523,26377,74685,96992,92263,15929,5467,-99555,-43348,-41689,-60383,-3990,32165,65265,-72973,-58372,12741,-48568,-46596,72419,-1859,34153,62937,81310,-61823,-96770,-54944,8845,-91184,24208,-29078,31495,65258,14198,85395,70506,-40908,56740,-12228,-40072,32429,93001,68445,-73927,25731,-91859,-24150,10093,-60271,-81683,-18126,51055,48189,-6468,25057,81194,-58628,74042,66158,-14452,-49851,-43667,11092,39189,-17025,-79173,13606,83172,92647,-59741,19343,-26644,-57607,82908,-20655,1637,80060,98994,39331,-31274,-61523,91225,-72953,13211,-75116,-98421,-41571,-69074,99587,39345,42151,-2460,98236,15690,-52507,-95803,-48935,-46492,-45606,-79254,-99851,52533,73486,39948,-7240,71815,-585,-96252,90990,-93815,93340,-71848,58733,-14859,-83082,-75794,-82082,-24871,-15206,91207,-56469,-93618,67131,-8682,75719,87429,-98757,-7535,-24890,-94160,85003,33928,75538,97456,-66424,-60074,-8527,-28697,-22308,2246,-70134,-82319,-10184,87081,-34949,-28645,-47352,-83966,-60418,-15293,-53067,-25921,55172,75064,95859,48049,34311,-86931,-38586,33686,-36714,96922,76713,-22165,-80585,-34503,-44516,39217,-28457,47227,-94036,43457,24626,-87359,26898,-70819,30528,-32397,-69486,84912,-1187,-98986,-32958,4280,-79129,-65604,9344,58964,50584,71128,-55480,24986,15086,-62360,-42977,-49482,-77256,-36895,-74818,20,3063,-49426,28152,-97329,6086,86035,-88743,35241,44249,19927,-10660,89404,24179,-26621,-6511,57745,-28750,96340,-97160,-97822,-49979,52307,79462,94273,-24808,77104,9255,-83057,77655,21361,55956,-9096,48599,-40490,-55107,2689,29608,20497,66834,-34678,23553,-81400,-66630,-96321,-34499,-12957,-20564,25610,-4322,-58462,20801,53700,71527,24669,-54534,57879,-3221,33636,3900,97832,-27688,-98715,5992,24520,-55401,-57613,-69926,57377,-77610,20123,52174,860,60429,-91994,-62403,-6218,-90610,-37263,-15052,62069,-96465,44254,89892,-3406,19121,-41842,-87783,-64125,-56120,73904,-22797,-58118,-4866,5356,75318,46119,21276,-19246,-9241,-97425,57333,-15802,93149,25689,-5532,95716,39209,-87672,-29470,-16324,-15331,27632,-39454,56530,-16000,29853,46475,78242,-46602,83192,-73440,-15816,50964,-36601,89758,38375,-40007,-36675,-94030,67576,46811,-64919,45595,76530,40398,35845,41791,67697,-30439,-82944,63115,33447,-36046,-50122,-34789,43003,-78947,-38763,-89210,32756,-20389,-31358,-90526,-81607,88741,86643,98422,47389,-75189,13091,95993,-15501,94260,-25584,-1483,-67261,-70753,25160,89614,-90620,-48542,83889,-12388,-9642,-37043,-67663,28794,-8801,13621,12241,55379,84290,21692,-95906,-85617,-17341,-63767,80183,-4942,-51478,30997,-13658,8838,17452,-82869,-39897,68449,31964,98158,-49489,62283,-62209,-92792,-59342,55146,-38533,20496,62667,62593,36095,-12470,5453,-50451,74716,-17902,3302,-16760,-71642,-34819,96459,-72860,21638,47342,-69897,-40180,44466,76496,84659,13848,-91600,-90887,-63742,-2156,-84981,-99280,94326,-33854,92029,-50811,98711,-36459,-75555,79110,-88164,-97397,-84217,97457,64387,30513,-53190,-83215,252,2344,-27177,-92945,-89010,82662,-11670,86069,53417,42702,97082,3695,-14530,-46334,17910,77999,28009,-12374,15498,-46941,97088,-35030,95040,92095,-59469,-24761,46491,67357,-66658,37446,-65130,-50416,99197,30925,27308,54122,-44719,12582,-99525,-38446,-69050,-22352,94757,-56062,33684,-40199,-46399,96842,-50881,-22380,-65021,40582,53623,-76034,77018,-97074,-84838,-22953,-74205,79715,-33920,-35794,-91369,73421,-82492,63680,-14915,-33295,37145,76852,-69442,60125,-74166,74308,-1900,-30195,-16267,-60781,-27760,5852,38917,25742,-3765,49097,-63541,98612,-92865,-30248,9612,-8798,53262,95781,-42278,-36529,7252,-27394,-5021,59178,80934,-48480,-75131,-54439,-19145,-48140,98457,-6601,-51616,-89730,78028,32083,-48904,16822,-81153,-8832,48720,-80728,-45133,-86647,-4259,-40453,2590,28613,50523,-4105,-27790,-74579,-17223,63721,33489,-47921,97628,-97691,-14782,-65644,18008,-93651,-71266,80990,-76732,-47104,35368,28632,59818,-86269,-89753,34557,-92230,-5933,-3487,-73557,-13174,-43981,-43630,-55171,30254,-83710,-99583,-13500,71787,5017,-25117,-78586,86941,-3251,-23867,-36315,75973,86272,-45575,77462,-98836,-10859,70168,-32971,-38739,-12761,93410,14014,-30706,-77356,-85965,-62316,63918,-59914,-64088,1591,-10957,38004,15129,-83602,-51791,34381,-89382,-26056,8942,5465,71458,-73805,-87445,-19921,-80784,69150,-34168,28301,-68955,18041,6059,82342,9947,39795,44047,-57313,48569,81936,-2863,-80932,32976,-86454,-84207,33033,32867,9104,-16580,-25727,80157,-70169,53741,86522,84651,68480,84018,61932,7332,-61322,-69663,76370,41206,12326,-34689,17016,82975,-23386,39417,72793,44774,-96259,3213,79952,29265,-61492,-49337,14162,65886,3342,-41622,-62659,-90402,-24751,88511,54739,-21383,-40161,-96610,-24944,-602,-76842,-21856,69964,43994,-15121,-85530,12718,13170,-13547,69222,62417,-75305,-81446,-38786,-52075,-23110,97681,-82800,-53178,11474,35857,94197,-58148,-23689,32506,92154,-64536,-73930,-77138,97446,-83459,70963,22452,68472,-3728,-25059,-49405,95129,-6167,12808,99918,30113,-12641,-26665,86362,-33505,50661,26714,33701,89012,-91540,40517,-12716,-57185,-87230,29914,-59560,13200,-72723,58272,23913,-45586,-96593,-26265,-2141,31087,81399,92511,-34049,20577,2803,26003,8940,42117,40887,-82715,38269,40969,-50022,72088,21291,-67280,-16523,90535,18669,94342,-39568,-88080,-99486,-20716,23108,-28037,63342,36863,-29420,-44016,75135,73415,16059,-4899,86893,43136,-7041,33483,-67612,25327,40830,6184,61805,4247,81119,-22854,-26104,-63466,63093,-63685,60369,51023,51644,-16350,74438,-83514,99083,10079,-58451,-79621,48471,67131,-86940,99093,11855,-22272,-67683,-44371,9541,18123,37766,-70922,80385,-57513,-76021,-47890,36154,72935,84387,-92681,-88303,-7810,59902,-90,-64704,-28396,-66403,8860,13343,33882,85680,7228,28160,-14003,54369,-58893,92606,-63492,-10101,64714,58486,29948,-44679,-22763,10151,-56695,4031,-18242,-36232,86168,-14263,9883,47124,47271,92761,-24958,-73263,-79661,-69147,-18874,29546,-92588,-85771,26451,-86650,-43306,-59094,-47492,-34821,-91763,-47670,33537,22843,67417,-759,92159,63075,94065,-26988,55276,65903,30414,-67129,-99508,-83092,-91493,-50426,14349,-83216,-76090,32742,-5306,-93310,-60750,-60620,-45484,-21108,-58341,-28048,-52803,69735,78906,81649,32565,-86804,-83202,-65688,-1760,89707,93322,-72750,84134,71900,-37720,19450,-78018,22001,-23604,26276,-21498,65892,-72117,-89834,-23867,55817,-77963,42518,93123,-83916,63260,-2243,-97108,85442,-36775,17984,-58810,99664,-19082,93075,-69329,87061,79713,16296,70996,13483,-74582,49900,-27669,-40562,1209,-20572,34660,83193,75579,7344,64925,88361,60969,3114,44611,-27445,53049,-16085,-92851,-53306,13859,-33532,86622,-75666,-18159,-98256,51875,-42251,-27977,-18080,23772,38160,41779,9147,94175,99905,-85755,62535,-88412,-52038,-68171,93255,-44684,-11242,-104,31796,62346,-54931,-55790,-70032,46221,56541,-91947,90592,93503,4071,20646,4856,-63598,15396,-50708,32138,-85164,38528,-89959,53852,57915,-42421,-88916,-75072,67030,-29066,49542,-71591,61708,-53985,-43051,28483,46991,-83216,80991,-46254,-48716,39356,-8270,-47763,-34410,874,-1186,-7049,28846,11276,21960,-13304,-11433,-4913,55754,79616,70423,-27523,64803,49277,14906,-97401,-92390,91075,70736,21971,-3303,55333,-93996,76538,54603,-75899,98801,46887,35041,48302,-52318,55439,24574,14079,-24889,83440,14961,34312,-89260,-22293,-81271,-2586,-71059,-10640,-93095,-5453,-70041,66543,74012,-11662,-52477,-37597,-70919,92971,-17452,-67306,-80418,7225,-89296,24296,86547,37154,-10696,74436,-63959,58860,33590,-88925,-97814,-83664,85484,-8385,-50879,57729,-74728,-87852,-15524,-91120,22062,28134,80917,32026,49707,-54252,-44319,-35139,13777,44660,85274,25043,58781,-89035,-76274,6364,-63625,72855,43242,-35033,12820,-27460,77372,-47578,-61162,-70758,-1343,-4159,64935,56024,-2151,43770,19758,-30186,-86040,24666,-62332,-67542,73180,-25821,-27826,-45504,-36858,-12041,20017,-24066,-56625,-52097,-47239,-90694,8959,7712,-14258,-5860,55349,61808,-4423,-93703,64681,-98641,-25222,46999,-83831,-54714,19997,-68477,66073,51801,-66491,52061,-52866,79907,-39736,-68331,68937,91464,98892,910,93501,31295,-85873,27036,-57340,50412,21,-2445,29471,71317,82093,-94823,-54458,-97410,39560,-7628,66452,39701,54029,37906,46773,58296,60370,-61090,85501,-86874,71443,-72702,-72047,14848,34102,77975,-66294,-36576,31349,52493,-70833,-80287,94435,39745,-98291,84524,-18942,10236,93448,50846,94023,-6939,47999,14740,30165,81048,84935,-19177,-13594,32289,62628,-90612,-542,-66627,64255,71199,-83841,-82943,-73885,8623,-67214,-9474,-35249,62254,-14087,-90969,21515,-83303,94377,-91619,19956,-98810,96727,-91939,29119,-85473,-82153,-69008,44850,74299,-76459,-86464,8315,-49912,-28665,59052,-69708,76024,-92738,50098,18683,-91438,18096,-19335,35659,91826,15779,-73070,67873,-12458,-71440,-46721,54856,97212,-81875,35805,36952,68498,81627,-34231,81712,27100,-9741,-82612,18766,-36392,2759,41728,69743,26825,48355,-17790,17165,56558,3295,-24375,55669,-16109,24079,73414,48990,-11931,-78214,90745,19878,35673,-15317,-89086,94675,-92513,88410,-93248,-19475,-74041,-19165,32329,-26266,-46828,-18747,45328,8990,-78219,-25874,-74801,-44956,-54577,-29756,-99822,-35731,-18348,-68915,-83518,-53451,95471,-2954,-13706,-8763,-21642,-37210,16814,-60070,-42743,27697,-36333,-42362,11576,85742,-82536,68767,-56103,-63012,71396,-78464,-68101,-15917,-11113,-3596,77626,-60191,-30585,-73584,6214,-84303,18403,23618,-15619,-89755,-59515,-59103,-74308,-63725,-29364,-52376,-96130,70894,-12609,50845,-2314,42264,-70825,64481,55752,4460,-68603,-88701,4713,-50441,-51333,-77907,97412,-66616,-49430,60489,-85262,-97621,-18980,44727,-69321,-57730,66287,-92566,-64427,-14270,11515,-92612,-87645,61557,24197,-81923,-39831,-10301,-23640,-76219,-68025,92761,-76493,68554,-77734,-95620,-11753,-51700,98234,-68544,-61838,29467,46603,-18221,-35441,74537,40327,-58293,75755,-57301,-7532,-94163,18179,-14388,-22258,-46417,-48285,18242,-77551,82620,250,-20060,-79568,-77259,82052,-98897,-75464,48773,-79040,-11293,45941,-67876,-69204,-46477,-46107,792,60546,-34573,-12879,-94562,20356,-48004,-62429,96242,40594,2099,99494,25724,-39394,-2388,-18563,-56510,-83570,-29214,3015,74454,74197,76678,-46597,60630,-76093,37578,-82045,-24077,62082,-87787,-74936,58687,12200,-98952,70155,-77370,21710,-84625,-60556,-84128,925,65474,-15741,-94619,88377,89334,44749,22002,-45750,-93081,-14600,-83447,46691,85040,-66447,-80085,56308,44310,24979,-29694,57991,4675,-71273,-44508,13615,-54710,23552,-78253,-34637,50497,68706,81543,-88408,-21405,6001,-33834,-21570,-46692,-25344,20310,71258,-97680,11721,59977,59247,-48949,98955,-50276,-80844,-27935,-76102,55858,-33492,40680,66691,-33188,8284,64893,-7528,6019,-85523,8434,-64366,-56663,26862,30008,-7611,-12179,-70076,21426,-11261,-36864,-61937,-59677,929,-21052,3848,-20888,-16065,98995,-32293,-86121,-54564,77831,68602,74977,31658,40699,29755,98424,80358,-69337,26339,13213,-46016,-18331,64713,-46883,-58451,-70024,-92393,-4088,70628,-51185,71164,-75791,-1636,-29102,-16929,-87650,-84589,-24229,-42137,-15653,94825,13042,88499,-47100,-90358,-7180,29754,-65727,-42659,-85560,-9037,-52459,20997,-47425,17318,21122,20472,-23037,65216,-63625,-7877,-91907,24100,-72516,22903,-85247,-8938,73878,54953,87480,-31466,-99524,35369,-78376,89984,-15982,94045,-7269,23319,-80456,-37653,-76756,2909,81936,54958,-12393,60560,-84664,-82413,66941,-26573,-97532,64460,18593,-85789,-38820,-92575,-43663,-89435,83272,-50585,13616,-71541,-53156,727,-27644,16538,34049,57745,34348,35009,16634,-18791,23271,-63844,95817,21781,16590,59669,15966,-6864,48050,-36143,97427,-59390,96931,78939,-1958,50777,43338,-51149,39235,-27054,-43492,67457,-83616,37179,10390,85818,2391,73635,87579,-49127,-81264,-79023,-81590,53554,-74972,-83940,-13726,-39095,29174,78072,76104,47778,25797,-29515,-6493,-92793,22481,-36197,-65560,42342,15750,97556,99634,-56048,-35688,13501,63969,-74291,50911,39225,93702,-3490,-59461,-30105,-46761,-80113,92906,-68487,50742,36152,-90240,-83631,24597,-50566,-15477,18470,77038,40223,-80364,-98676,70957,-63647,99537,13041,31679,86631,37633,-16866,13686,-71565,21652,-46053,-80578,-61382,68487,-6417,4656,20811,67013,-30868,-11219,46,74944,14627,56965,42275,-52480,52162,-84883,-52579,-90331,92792,42184,-73422,-58440,65308,-25069,5475,-57996,59557,-17561,2826,-56939,14996,-94855,-53707,99159,43645,-67719,-1331,21412,41704,31612,32622,1919,-69333,-69828,22422,-78842,57896,-17363,27979,-76897,35008,46482,-75289,65799,20057,7170,41326,-76069,90840,-81253,-50749,3649,-42315,45238,-33924,62101,96906,58884,-7617,-28689,-66578,62458,50876,-57553,6739,41014,-64040,-34916,37940,13048,-97478,-11318,-89440,-31933,-40357,-59737,-76718,-14104,-31774,28001,4103,41702,-25120,-31654,63085,-3642,84870,-83896,-76422,-61520,12900,88678,85547,33132,-88627,52820,63915,-27472,78867,-51439,33005,-23447,-3271,-39308,39726,-74260,-31874,-36893,93656,910,-98362,60450,-88048,99308,13947,83996,-90415,-35117,70858,-55332,-31721,97528,82982,-86218,6822,25227,36946,97077,-4257,-41526,56795,89870,75860,-70802,21779,14184,-16511,-89156,-31422,71470,69600,-78498,74079,-19410,40311,28501,26397,-67574,-32518,68510,38615,19355,-6088,-97159,-29255,-92523,3023,-42536,-88681,64255,41206,44119,52208,39522,-52108,91276,-70514,83436,63289,-79741,9623,99559,12642,85950,83735,-21156,-67208,98088,-7341,-27763,-30048,-44099,-14866,-45504,-91704,19369,13700,10481,-49344,-85686,33994,19672,36028,60842,66564,-24919,33950,-93616,-47430,-35391,-28279,56806,74690,39284,-96683,-7642,-75232,37657,-14531,-86870,-9274,-26173,98640,88652,64257,46457,37814,-19370,9337,-22556,-41525,39105,-28719,51611,-93252,98044,-90996,21710,-47605,-64259,-32727,53611,-31918,-3555,33316,-66472,21274,-37731,-2919,15016,48779,-88868,1897,41728,46344,-89667,37848,68092,-44011,85354,-43776,38739,-31423,-66330,65167,-22016,59405,34328,-60042,87660,-67698,-59174,-1408,-46809,-43485,-88807,-60489,13974,22319,55836,-62995,-37375,-4185,32687,-36551,-75237,58280,26942,-73756,71756,78775,-40573,14367,-71622,-77338,24112,23414,-7679,-51721,87492,85066,-21612,57045,10673,-96836,52461,-62218,-9310,65862,-22748,89906,-96987,-98698,26956,-43428,46141,47456,28095,55952,67323,-36455,-60202,-43302,-82932,42020,77036,10142,60406,70331,63836,58850,-66752,52109,21395,-10238,-98647,-41962,27778,69060,98535,-28680,-52263,-56679,66103,-42426,27203,80021,10153,58678,36398,63112,34911,20515,62082,-15659,-40785,27054,43767,-20289,65838,-6954,-60228,-72226,52236,-35464,25209,-15462,-79617,-41668,-84083,62404,-69062,18913,46545,20757,13805,24717,-18461,-47009,-25779,68834,64824,34473,39576,31570,14861,-15114,-41233,95509,68232,67846,84902,-83060,17642,-18422,73688,77671,-26930,64484,-99637,73875,6428,21034,-73471,19664,-68031,15922,-27028,48137,54955,-82793,-41144,-10218,-24921,-28299,-2288,68518,-54452,15686,-41814,66165,-72207,-61986,80020,50544,-99500,16244,78998,40989,14525,-56061,-24692,-94790,21111,37296,-90794,72100,70550,-31757,17708,-74290,61910,78039,-78629,-25033,73172,-91953,10052,64502,99585,-1741,90324,-73723,68942,28149,30218,24422,16659,10710,-62594,94249,96588,46192,34251,73500,-65995,-81168,41412,-98724,-63710,-54696,-52407,19746,45869,27821,-94866,-76705,-13417,-61995,-71560,43450,67384,-8838,-80293,-28937,23330,-89694,-40586,46918,80429,-5475,78013,25309,-34162,37236,-77577,86744,26281,-29033,-91813,35347,13033,-13631,-24459,3325,-71078,-75359,81311,19700,47678,-74680,-84113,45192,35502,37675,19553,76522,-51098,-18211,89717,4508,-82946,27749,85995,89912,-53678,-64727,-14778,32075,-63412,-40524,86440,-2707,-36821,63850,-30883,67294,-99468,-23708,34932,34386,98899,29239,-23385,5897,54882,98660,49098,70275,17718,88533,52161,63340,50061,-89457,19491,-99156,24873,-17008,64610,-55543,50495,17056,-10400,-56678,-29073,-42960,-76418,98562,-88104,-96255,10159,-90724,54011,12052,45871,-90933,-69420,67039,37202,78051,-52197,-40278,-58425,65414,-23394,-1415,6912,-53447,7352,17307,-78147,63727,98905,55412,-57658,-32884,-44878,22755,39730,3638,35111,39777,74193,38736,-11829,-61188,-92757,55946,-71232,-63032,-83947,39147,-96684,-99233,25131,-32197,24406,-55428,-61941,25874,-69453,64483,-19644,-68441,12783,87338,-48676,66451,-447,-61590,50932,-11270,29035,65698,-63544,10029,80499,-9461,86368,91365,-81810,-71914,-52056,-13782,44240,-30093,-2437,24007,67581,-17365,-69164,-8420,-69289,-29370,48010,90439,13141,69243,50668,39328,61731,78266,-81313,17921,-38196,55261,9948,-24970,75712,-72106,28696,7461,31621,61047,51476,56512,11839,-96916,-82739,28924,-99927,58449,37280,69357,11219,-32119,-62050,-48745,-83486,-52376,42668,82659,68882,38773,46269,-96005,97630,25009,-2951,-67811,99801,81587,-79793,-18547,-83086,69512,33127,-92145,-88497,47703,59527,1909,88785,-88882,69188,-46131,-5589,-15086,36255,-53238,-33009,82664,53901,35939,-42946,-25571,33298,69291,53199,74746,-40127,-39050,91033,51717,-98048,87240,36172,65453,-94425,-63694,-30027,59004,88660,3649,-20267,-52565,-67321,34037,4320,91515,-56753,60115,27134,68617,-61395,-26503,-98929,-8849,-63318,10709,-16151,61905,-95785,5262,23670,-25277,90206,-19391,45735,37208,-31992,-92450,18516,-90452,-58870,-58602,93383,14333,17994,82411,-54126,-32576,35440,-60526,-78764,-25069,-9022,-394,92186,-38057,55328,-61569,67780,77169,19546,-92664,-94948,44484,-13439,83529,27518,-48333,72998,38342,-90553,-98578,-76906,81515,-16464,78439,92529,35225,-39968,-10130,-7845,-32245,-74955,-74996,67731,-13897,-82493,33407,93619,59560,-24404,-57553,19486,-45341,34098,-24978,-33612,79058,71847,76713,-95422,6421,-96075,-59130,-28976,-16922,-62203,69970,68331,21874,40551,89650,51908,58181,66480,-68177,34323,-3046,-49656,-59758,43564,-10960,-30796,15473,-20216,46085,-85355,41515,-30669,-87498,57711,56067,63199,-83805,62042,91213,-14606,4394,-562,74913,10406,96810,-61595,32564,31640,-9732,42058,98052,-7908,-72330,1558,-80301,34878,32900,3939,-8824,88316,20937,21566,-3218,-66080,-31620,86859,54289,90476,-42889,-15016,-18838,75456,30159,-67101,42328,-92703,85850,-5475,23470,-80806,68206,17764,88235,46421,-41578,74005,-81142,80545,20868,-1560,64017,83784,68863,-97516,-13016,-72223,79630,-55692,82255,88467,28007,-34686,-69049,-41677,88535,-8217,68060,-51280,28971,49088,49235,26905,-81117,-44888,40623,74337,-24662,97476,79542,-72082,-35093,98175,-61761,-68169,59697,-62542,-72965,59883,-64026,-37656,-92392,-12113,-73495,98258,68379,-21545,64607,-70957,-92254,-97460,-63436,-8853,-19357,-51965,-76582,12687,-49712,45413,-60043,33496,31539,-57347,41837,67280,-68813,52088,-13155,-86430,-15239,-45030,96041,18749,-23992,46048,35243,-79450,85425,-58524,88781,-39454,53073,-48864,-82289,39086,82540,-11555,25014,-5431,-39585,-89526,2705,31953,-81611,36985,-56022,68684,-27101,11422,64655,-26965,-63081,-13840,-91003,-78147,-8966,41488,1988,99021,-61575,-47060,65260,-23844,-21781,-91865,-19607,44808,2890,63692,-88663,-58272,15970,-65195,-45416,-48444,-78226,-65332,-24568,42833,-1806,-71595,80002,-52250,30952,48452,-90106,31015,-22073,62339,63318,78391,28699,77900,-4026,-76870,-45943,33665,9174,-84360,-22684,-16832,-67949,-38077,-38987,-32847,51443,-53580,-13505,9344,-92337,26585,70458,-52764,-67471,-68411,-1119,-2072,-93476,67981,40887,-89304,-12235,41488,1454,5355,-34855,-72080,24514,-58305,3340,34331,8731,77451,-64983,-57876,82874,62481,-32754,-39902,22451,-79095,-23904,78409,-7418,77916] + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + +with Timer(): + Solution().threeSum(nums) + From 43392f8bd32d5b36cd69db48fa652ea0971b5773 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 1 Nov 2019 16:52:20 +0100 Subject: [PATCH 41/56] feat (circperm): solution --- leetcode/circperm/circperm.py | 61 +++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 leetcode/circperm/circperm.py diff --git a/leetcode/circperm/circperm.py b/leetcode/circperm/circperm.py new file mode 100644 index 0000000..20cff24 --- /dev/null +++ b/leetcode/circperm/circperm.py @@ -0,0 +1,61 @@ +import time +from typing import List +from itertools import cycle, islice, repeat, chain + + +class Solution: + def row(self, n, i): + seqs = 2**(n - i) + seq_len = 2**i + ls = [[j] * seq_len for j in islice(cycle([1, 0, 0, 1]), seqs)] + return [i for l in ls for i in l] + + def genMatrix(self, n: int) -> List[List[int]]: + return [self.row(n, i) for i in range(n)] + + def c2n(self, c): + b = 1 + r = 0 + for i in range(len(c)): + if c[i] == 1: + r += b + b *= 2 + return r + + def m2n(self, m, n): + r = [] + for i in range(2**n): + c = [m[j][i] for j in range(n)] + r.append(self.c2n(c)) + return r + + def circularPermutation(self, n: int, start: int) -> List[int]: + m = self.genMatrix(n) + p = self.m2n(m, n) + i = p.index(start) + return p[i:] + p[:i] + + +def test1(): + s = Solution() + assert s.row(4, 3) == [1]*8 + [0]*8 + +def test2(): + s = Solution() + assert s.genMatrix(2) == [[1,0,0,1], [1,1,0,0]] + assert s.genMatrix(3) == [[1,0,0,1,1,0,0,1],[1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0]] + +def test3(): + s = Solution() + assert s.circularPermutation(2, 3) == [3, 2, 0, 1] + assert s.circularPermutation(3, 7) == [7, 6, 4, 5, 1, 0, 2, 3] + assert s.circularPermutation(3, 5) == [5, 1, 0, 2, 3, 7, 6, 4] + +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + From 3afd2f12badb759479b975532873bfe231b061df Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 1 Nov 2019 19:19:22 +0100 Subject: [PATCH 42/56] feat (subfolder): solution --- leetcode/minmoves/minmoves.py | 129 +++++++++++++++++++++++++++++++- leetcode/subfolder/subfolder.py | 51 +++++++++++++ 2 files changed, 179 insertions(+), 1 deletion(-) create mode 100644 leetcode/subfolder/subfolder.py diff --git a/leetcode/minmoves/minmoves.py b/leetcode/minmoves/minmoves.py index 762517b..d6ddf86 100644 --- a/leetcode/minmoves/minmoves.py +++ b/leetcode/minmoves/minmoves.py @@ -5,8 +5,131 @@ snake = namedtuple("snake", ['tailx', 'taily', 'headx', 'heady']) - class Solution: + def minimumMoves(self, grid: List[List[int]]) -> int: + n = len(grid) # Note: grid is square + s = (0, 0, 1, 0) + start_pos = (0, s) + seen = set(start_pos) + h = deque(maxlen=n * n) + h.append(start_pos) + while h: + steps, (tx, ty, hx, hy) = h.popleft() # pop from beginning (*) + if tx == n - 2 and hy == hx == ty == n - 1: + return steps + + steps += 1 + + def push_new(new_s): + new_item = (steps, new_s) + if not new_s in seen: + h.append(new_item) # add at end (with (*) above ensures that first solution found is shortest) + seen.add(new_s) + + try: + if grid[hy + 1][hx] == grid[ty + 1][tx] == 0: push_new((tx, ty + 1, hx, hy + 1)) + except IndexError: + pass + try: + if grid[hy][hx + 1] == grid[ty][tx + 1] == 0: push_new((tx + 1, ty, hx + 1, hy)) + except IndexError: + pass + try: + if hx > tx and grid[hy + 1][hx] == grid[ty + 1][tx] == 0: push_new((tx, ty, tx, ty + 1)) + except IndexError: + pass + try: + if hy > ty and grid[hy][hx + 1] == grid[ty][tx + 1] == 0: push_new((tx, ty, tx + 1, ty)) + except IndexError: + pass + + return -1 + +class Solution4: + def minimumMoves(self, grid: List[List[int]]) -> int: + cur,cnt, n, seen = [(0,0,0)], 0 , len(grid),set([(0,0,0)]) #(tail_row,tail_col,horizontal_or_verticle) + while cur and (n-1,n-2,0) not in cur: + cnt,tmp = cnt+1, [] + for x,y,dx in cur: + if dx==0: + if y+2 < n and grid[x][y+2] == 0: tmp += [(x,y+1,dx)] + if x+1 < n and (grid[x+1][y] + grid[x+1][y+1]) == 0: tmp += [(x,y,1),(x+1,y,0)] + else: + if x+2 < n and grid[x+2][y] == 0: tmp += [(x+1,y,dx)] + if y+1 < n and (grid[x][y+1] + grid[x+1][y+1]) == 0: tmp += [(x,y,0),(x,y+1,1)] + cur = set(tmp) - seen + seen |= cur + return cnt if cur else -1 + + +class Solution2: + def _moveright(self, s): + return (s[0] + 1, s[1], s[2] + 1, s[3]) + + def _can_right(self, s, grid): + try: + return grid[s[3]][s[2] + 1] == grid[s[1]][s[0] + 1] == 0 + except IndexError: + return False + + def _movedown(self, s): + return (s[0], s[1] + 1, s[2], s[3] + 1) + + def _can_down(self, s, grid): + try: + return grid[s[3] + 1][s[2]] == grid[s[1] + 1][s[0]] == 0 + except IndexError: + return False + + def _rotate(self, s): + return (s[0], s[1], s[0], s[1] + 1) + + def _can_rotate(self, s, grid): + try: + return s[2] > s[0] and grid[s[3] + 1][s[2]] == grid[s[1] + 1][s[0]] == 0 + except IndexError: + return False + + def _rotate_anti(self, s): + return (s[0], s[1], s[0] + 1, s[1]) + + def _can_rotate_anti(self, s, grid): + try: + return s[3] > s[1] and grid[s[3]][s[2] + 1] == grid[s[1]][s[0] + 1] == 0 + except IndexError: + return False + + def _solved(self, s, n): + return s[0] == n - 2 and s[3] == s[2] == s[1] == n - 1 + + def minimumMoves(self, grid: List[List[int]]) -> int: + n = len(grid) # Note: grid is square + s = (0, 0, 1, 0) + start_pos = (0, s) + seen = set(start_pos) + h = deque(maxlen=n*n) + h.append(start_pos) + while h: + steps, s = h.popleft() # pop from beginning (*) + if self._solved(s, n): + return steps + + steps += 1 + + def push_new(new_s): + new_item = (steps, new_s) + if not new_s in seen: + h.append(new_item) # add at end (with (*) above ensures that first solution found is shortest) + seen.add(new_s) + + if self._can_down(s, grid): push_new(self._movedown(s)) + if self._can_right(s, grid): push_new(self._moveright(s)) + if self._can_rotate(s, grid): push_new(self._rotate(s)) + if self._can_rotate_anti(s, grid): push_new(self._rotate_anti(s)) + + return -1 + +class Solution3: def _moveright(self, s): return snake(tailx=s.tailx + 1, taily=s.taily, headx=s.headx + 1, heady=s.heady) @@ -51,6 +174,7 @@ def _solved(self, s, n): return s.tailx == n - 2 and s.heady == s.headx == s.taily == n - 1 def minimumMoves(self, grid: List[List[int]]) -> int: + """deque + namedtumple""" n = len(grid) # Note: grid is square s = snake(tailx=0, taily=0, heady=0, headx=1) start_pos = (0, s) @@ -468,3 +592,6 @@ def test4(): with Timer(): print(Solution().minimumMoves(grid)) + + with Timer(): + print(Solution().minimumMoves(grid)) diff --git a/leetcode/subfolder/subfolder.py b/leetcode/subfolder/subfolder.py new file mode 100644 index 0000000..a07e493 --- /dev/null +++ b/leetcode/subfolder/subfolder.py @@ -0,0 +1,51 @@ +from typing import List +from collections import defaultdict + + +class Solution: + TOK = "666" + + def build(self, folder): + def defd(): + return defaultdict(defd) + + dd = defd() + + for f in folder: + fp = f.split("/")[1:] + d = dd + for k in fp[:-1]: + d = d[k] + if d == self.TOK: + break + else: + d[fp[-1]] = self.TOK + + return dd + + def folders(self, fs, prefix=""): + l = [] + for k in fs.keys(): + if fs[k] == self.TOK: + l.append(prefix + "/" + k) + else: + l.extend(self.folders(fs[k], prefix=prefix+"/"+k)) + return l + + def removeSubfolders(self, folder: List[str]) -> List[str]: + fs = self.build(folder) + print(fs) + return self.folders(fs) + + +def test1(): + folder = ["/a", "/a/b", "/c/d", "/c/d/e", "/c/f"] + assert Solution().removeSubfolders(folder) == ["/a", "/c/d", "/c/f"] + +def test2(): + folder = ["/a", "/a/b/c", "/a/b/d"] + assert Solution().removeSubfolders(folder) == ["/a"] + +def test3(): + folder = ["/a/b/c", "/a/b/ca", "/a/b/d"] + assert Solution().removeSubfolders(folder) == ["/a/b/c", "/a/b/ca", "/a/b/d"] From ffd07e35f9948b4494d9338088605be4722b5c2a Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sat, 2 Nov 2019 16:56:14 +0100 Subject: [PATCH 43/56] feat (concatunique): solution --- leetcode/concatunique/concatunique.py | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 leetcode/concatunique/concatunique.py diff --git a/leetcode/concatunique/concatunique.py b/leetcode/concatunique/concatunique.py new file mode 100644 index 0000000..d86d2e2 --- /dev/null +++ b/leetcode/concatunique/concatunique.py @@ -0,0 +1,28 @@ +from typing import List, Dict, FrozenSet + + +class Solution: + def maxLength(self, arr: List[str]) -> int: + d = {frozenset(): 0} + for idx in range(len(arr)): + current_letters = set(arr[idx]) + current_len = len(arr[idx]) + if len(current_letters) == current_len: + for sw, l in list(d.items()): + if not current_letters.intersection(sw): + k = frozenset(sw.union(current_letters)) + d[k] = max(l + current_len, d[k]) if k in d else l + current_len + + return max(d.values()) + +def test1(): + arr = ["un","iq","ue"] + assert Solution().maxLength(arr) == 4 + +def test2(): + arr = ["cha","r","act","ers"] + assert Solution().maxLength(arr) == 6 + +def test3(): + arr = ["abcdefghijklmnopqrstuvwxyz"] + assert Solution().maxLength(arr) == 26 From ae8681f2dda063eb47db76a7715f330e3f87f733 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sat, 2 Nov 2019 16:56:23 +0100 Subject: [PATCH 44/56] feat (minbalanced): solution --- leetcode/minbalanced/minbalanced.py | 55 +++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 leetcode/minbalanced/minbalanced.py diff --git a/leetcode/minbalanced/minbalanced.py b/leetcode/minbalanced/minbalanced.py new file mode 100644 index 0000000..7d1d92c --- /dev/null +++ b/leetcode/minbalanced/minbalanced.py @@ -0,0 +1,55 @@ +from collections import Counter + +class Solution: + def balancedString(self, s: str) -> int: + cts = Counter(s) + cq, cw, ce, cr = cts['Q'], cts['W'], cts['E'], cts['R'] + if cq == cw == ce == cr: + return 0 + best = len(s) + ls = best + scts = {'Q': 0, 'W': 0, 'E': 0, 'R': 0} + goal = ls / 4 # by assumption ls is divisible by 4 + + def possible(scts): + return cq - scts['Q'] <= goal and cw - scts['W'] <= goal and ce - scts['E'] <= goal and cr - scts['R'] <= goal + + def impossible(scts): + return not possible(scts) + + i, j = 0, 0 + while True: + while j < ls and impossible(scts): + scts[s[j]] += 1 + j += 1 + while possible(scts): + scts[s[i]] -= 1 + i += 1 + best = min(best, j - (i - 1)) + if j == ls: + return best + + +def test1(): + s = "QWER" + assert Solution().balancedString(s) == 0 + +def test2(): + s = "QQWE" + assert Solution().balancedString(s) == 1 + +def test3(): + s = "QQQW" + assert Solution().balancedString(s) == 2 + +def test4(): + s = "QQQQ" + assert Solution().balancedString(s) == 3 + +def test5(): + s = "WWQQRRRRQRQQ" + assert Solution().balancedString(s) == 4 + +def test6(): + s = "WQWRQQQW" + assert Solution().balancedString(s) == 3 From 09d8ee6b52c12671b621b27017c7db0b1bf8f9a0 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 6 Nov 2019 06:43:21 +0100 Subject: [PATCH 45/56] feat (treediam): solution --- leetcode/treediam/treediam.py | 46 +++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 leetcode/treediam/treediam.py diff --git a/leetcode/treediam/treediam.py b/leetcode/treediam/treediam.py new file mode 100644 index 0000000..15c0e61 --- /dev/null +++ b/leetcode/treediam/treediam.py @@ -0,0 +1,46 @@ +from collections import defaultdict, Counter +from typing import List + + +class Solution: + def furthest(self, d, n): + """Find node furthest from n""" + dists = Counter() + dists[n] = 0 + added = [n] + next_added = [] + while added: + for h in added: + dh = dists[h] + for t in d[h]: + if t not in dists.keys(): + next_added.append(t) + dists[t] = dh + 1 + added = next_added + next_added = [] + print(dists) + return dists.most_common(1)[0] + + def treeDiameter(self, edges: List[List[int]]) -> int: + d = defaultdict(list) + for h, t in edges: + d[h].append(t) + d[t].append(h) + print(d) + # d now is lookup for nbds of node + h, _ = self.furthest(d, edges[0][0]) + print(h) + _, diam = self.furthest(d, h) + return diam + +def test1(): + edges = [[0, 1], [0, 2]] + assert Solution().treeDiameter(edges) == 2 + +def test2(): + edges = [[0, 1], [1, 2], [2, 3], [1, 4], [4, 5]] + assert Solution().treeDiameter(edges) == 4 + +def test3(): + edges = [[0, 1], [0, 2], [1, 3], [0, 4], [1, 5], [2, 6], [1, 7]] + assert Solution().treeDiameter(edges) == 4 From ae0c62bd595509892f831b8ad838a973cd75e12a Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 6 Nov 2019 06:51:53 +0100 Subject: [PATCH 46/56] feat (minremove): setup --- leetcode/minremoveparens/minremoveparens.py | 48 +++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 leetcode/minremoveparens/minremoveparens.py diff --git a/leetcode/minremoveparens/minremoveparens.py b/leetcode/minremoveparens/minremoveparens.py new file mode 100644 index 0000000..38d6057 --- /dev/null +++ b/leetcode/minremoveparens/minremoveparens.py @@ -0,0 +1,48 @@ +class Solution: + def minRemoveToMakeValid(self, s: str) -> str: + pass + +def valid(s): + ct = 0 + for c in s: + if c == "(": + ct += 1 + if c == ")": + if ct == 0: + return False + else: + ct -= 1 + + return ct == 0 + +def test_valid(): + assert valid("") + assert valid("()") + assert valid("asdf(sdsds(dssds(sd)dss(sds)dsds)dsds)dsds") + assert not valid("((") + assert not valid("(()))") + +def test1(): + s = "lee(t(c)o)de)" + sol = Solution().minRemoveToMakeValid(s) + assert valid(sol) + assert len(sol) == len("lee(t(c)o)de") + +def test2(): + s = "a)b(c)d" + sol = Solution().minRemoveToMakeValid(s) + assert valid(sol) + assert len(sol) == len("ab(c)d") + +def test3(): + s = "))((" + sol = Solution().minRemoveToMakeValid(s) + assert valid(sol) + assert len(sol) == 0 + +def test4(): + s = "(a(b(c)d)" + sol = Solution().minRemoveToMakeValid(s) + assert valid(sol) + assert len(sol) == len("a(b(c)d)") + From 16f0e8ba477d81bb13b20411e707ca38f20edda5 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 6 Nov 2019 06:59:21 +0100 Subject: [PATCH 47/56] feat (minremove): solution --- leetcode/minremoveparens/minremoveparens.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/leetcode/minremoveparens/minremoveparens.py b/leetcode/minremoveparens/minremoveparens.py index 38d6057..656a232 100644 --- a/leetcode/minremoveparens/minremoveparens.py +++ b/leetcode/minremoveparens/minremoveparens.py @@ -1,6 +1,24 @@ class Solution: def minRemoveToMakeValid(self, s: str) -> str: - pass + open_idx = [] + close_idx = [] + remove_idx = [] + ct = 0 + for idx, c in enumerate(s): + if c == "(": + open_idx.append(idx) + ct += 1 + if c == ")": + close_idx.append(idx) + if ct == 0: + remove_idx.append(idx) + else: + ct -= 1 + + for _ in range(ct): + remove_idx.append(open_idx.pop()) + + return "".join(c for idx, c in enumerate(s) if not idx in remove_idx) def valid(s): ct = 0 @@ -22,6 +40,7 @@ def test_valid(): assert not valid("((") assert not valid("(()))") + def test1(): s = "lee(t(c)o)de)" sol = Solution().minRemoveToMakeValid(s) From 46d5e5fda714ebaceb8538332c9419eaec09523d Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 6 Nov 2019 07:10:59 +0100 Subject: [PATCH 48/56] feat (minremove): compare timing to other submission --- leetcode/minremoveparens/minremoveparens.py | 39 +++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/leetcode/minremoveparens/minremoveparens.py b/leetcode/minremoveparens/minremoveparens.py index 656a232..bbfd1cd 100644 --- a/leetcode/minremoveparens/minremoveparens.py +++ b/leetcode/minremoveparens/minremoveparens.py @@ -1,3 +1,7 @@ +import random +import time + + class Solution: def minRemoveToMakeValid(self, s: str) -> str: open_idx = [] @@ -20,6 +24,25 @@ def minRemoveToMakeValid(self, s: str) -> str: return "".join(c for idx, c in enumerate(s) if not idx in remove_idx) + def minRemoveToMakeValid_others(self, s: str) -> str: + # NOT MY SOLUTION; copied here to compare timings + # Use a array to save empty + a = list(s) + b = [] + for i, c in enumerate(s): + if c == '(': + b.append(i) + elif c == ')': + if b: + b.pop() + else: + a[i] = '' + + while b: + a[b.pop()] = '' + + return ''.join(a) + def valid(s): ct = 0 for c in s: @@ -65,3 +88,19 @@ def test4(): assert valid(sol) assert len(sol) == len("a(b(c)d)") +class Timer: + def __enter__(self): + self.start = time.monotonic() + + def __exit__(self, exc_type, exc_val, exc_tb): + print(exc_type) + print(f"Took {time.monotonic() - self.start}") + +if __name__ == "__main__": + s = random.choices(["a", "b", "c", "(", ")"], k=10000) + + with Timer(): + Solution().minRemoveToMakeValid(s) + + with Timer(): + Solution().minRemoveToMakeValid_others(s) From 68a87cb7f0bdf23eacd012d15be654b8ee198a73 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Wed, 6 Nov 2019 07:18:21 +0100 Subject: [PATCH 49/56] feat (minremove): obvious speed issues removed more changes seem to mean moving to idea of immediate editing list --- leetcode/minremoveparens/minremoveparens.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/leetcode/minremoveparens/minremoveparens.py b/leetcode/minremoveparens/minremoveparens.py index bbfd1cd..e5e4843 100644 --- a/leetcode/minremoveparens/minremoveparens.py +++ b/leetcode/minremoveparens/minremoveparens.py @@ -5,7 +5,6 @@ class Solution: def minRemoveToMakeValid(self, s: str) -> str: open_idx = [] - close_idx = [] remove_idx = [] ct = 0 for idx, c in enumerate(s): @@ -13,14 +12,13 @@ def minRemoveToMakeValid(self, s: str) -> str: open_idx.append(idx) ct += 1 if c == ")": - close_idx.append(idx) if ct == 0: remove_idx.append(idx) else: ct -= 1 - for _ in range(ct): - remove_idx.append(open_idx.pop()) + if ct > 0: + remove_idx.extend(open_idx[-ct:]) return "".join(c for idx, c in enumerate(s) if not idx in remove_idx) From 5f6e90718c7c7b5108967c98a776bbd46183149a Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sat, 2 Jan 2021 13:50:24 +0100 Subject: [PATCH 50/56] leetcode: answers 4 ex one too slow --- leetcode/20201227sun/ex.py | 253 +++++++++++++++++++++++++++++++++++++ 1 file changed, 253 insertions(+) create mode 100644 leetcode/20201227sun/ex.py diff --git a/leetcode/20201227sun/ex.py b/leetcode/20201227sun/ex.py new file mode 100644 index 0000000..3a241e7 --- /dev/null +++ b/leetcode/20201227sun/ex.py @@ -0,0 +1,253 @@ +vow = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'] + + +def alike(s1, s2): + def count_in(s, special=vow): + return sum(c in special for c in s) + + return count_in(s1) == count_in(s2) + + +def test_alike(): + assert alike("aa", "AA") + assert alike("abcabc", "cbacba") + + +class Solution0: + def halvesAreAlike(self, s: str) -> bool: + return alike(s[:len(s) // 2], s[len(s) // 2:]) + + +def test_sol(): + s = Solution0() + assert s.halvesAreAlike("book") + + +from typing import List +import heapq + + +class Solution1: + def eatenApples(self, apples: List[int], days: List[int]) -> int: + n = len(apples) + ct = 0 + day = 0 + apple_tree = [] + + day_pair = lambda day: [day + days[day] - 1, apples[day]] + add_day_pair = lambda day: heapq.heappush(apple_tree, day_pair(day)) if apples[day] > 0 else None + + add_day_pair(day) + while day < n or apple_tree: + print(day, apple_tree) + if apple_tree: + ct += 1 + if apple_tree[0][1] == 1: + heapq.heappop(apple_tree) + else: + apple_tree[0][1] -= 1 + while apple_tree and apple_tree[0][0] <= day: + heapq.heappop(apple_tree) + print(ct) + day += 1 + if day < n and apples[day] > 0: + add_day_pair(day) + + return ct + + +def test_apples(): + s = Solution1() + assert s.eatenApples([1, 2, 3, 5, 2], [3, 2, 1, 4, 2]) == 7 + assert s.eatenApples([3, 0, 0, 0, 0, 2], [3, 0, 0, 0, 0, 2]) == 5 + assert s.eatenApples([3, 1, 1, 0, 0, 2], [3, 1, 1, 0, 0, 2]) == 5 + assert s.eatenApples( + [0, 19, 19, 19, 11, 14, 33, 0, 28, 7, 0, 28, 7, 0, 21, 16, 0, 22, 0, 13, 8, 0, 19, 0, 0, 2, 26, 2, 22, 0, 8, 0, + 0, 27, 19, 16, 24, 0, 20, 26, 20, 7, 0, 0, 29, 0, 0, 16, 19, 0, 0, 0, 29, 30, 17, 0, 23, 0, 0, 26, 24, 13, 3, + 0, 21, 0, 18, 0], + [0, 5, 1, 16, 7, 10, 54, 0, 40, 2, 0, 23, 4, 0, 20, 18, 0, 40, 0, 22, 8, 0, 35, 0, 0, 3, 24, 1, 8, 0, 10, 0, 0, + 2, 38, 8, 4, 0, 36, 33, 14, 9, 0, 0, 56, 0, 0, 21, 27, 0, 0, 0, 14, 20, 18, 0, 42, 0, 0, 44, 3, 8, 3, 0, 10, 0, + 27, 0]) == 102 + + +class Solution2: + # stuck is determined on the same level hit a one followed by a -1 [1, -1] + # or hit a -1 preceded by a -1 + # or 1 in rightmost + # or -1 in leftmost + def findBall(self, grid: List[List[int]]) -> List[int]: + n, m = len(grid), len(grid[0]) + cur_loc = list(range(m)) + next_loc = [0] * m + + for row_idx in range(n): + print(cur_loc) + row = grid[row_idx] + for bal_idx in range(m): + col_idx = cur_loc[bal_idx] + if (col_idx == -1 or + (col_idx == 0 and row[col_idx] == -1) or + (col_idx == m - 1 and row[col_idx] == 1) or + (col_idx < m - 1 and row[col_idx] == 1 and row[col_idx + 1] == -1) or + (0 < col_idx and row[col_idx] == -1 and row[col_idx - 1] == 1)): + next_loc[bal_idx] = -1 + elif row[col_idx] == 1: + next_loc[bal_idx] = cur_loc[bal_idx] + 1 + else: + next_loc[bal_idx] = cur_loc[bal_idx] - 1 + # setup for next round + cur_loc = next_loc + next_loc = [0] * m + print(cur_loc) + return cur_loc + + +def test_ball(): + s = Solution2() + assert s.findBall( + [[1, 1, 1, -1, -1], [1, 1, 1, -1, -1], [-1, -1, -1, 1, 1], [1, 1, 1, 1, -1], [-1, -1, -1, -1, -1]]) == [1, -1, + -1, -1, + -1] + assert s.findBall([[-1]]) == [-1] + assert s.findBall([[1]]) == [-1] + assert s.findBall( + [[1, 1, 1, 1, 1, 1], [-1, -1, -1, -1, -1, -1], [1, 1, 1, 1, 1, 1], [-1, -1, -1, -1, -1, -1]]) == [0, 1, 2, 3, 4, + -1] + assert s.findBall( + [[1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, 1, 1, 1, 1, 1, -1, -1, -1, -1, -1, -1, 1, -1, 1, -1, 1, -1, -1, -1, + -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, 1], + [-1, 1, 1, 1, -1, -1, -1, -1, 1, 1, 1, -1, -1, -1, 1, -1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, -1, -1, -1, 1, + -1, 1, -1, -1, -1, -1, 1, 1, -1, 1, 1], + [1, -1, -1, -1, -1, 1, -1, 1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, -1, 1, -1, -1, 1, -1, 1, -1, 1, -1, -1, 1, -1, + 1, -1, 1, 1, -1, -1, 1, 1, -1, 1, -1]]) \ + == [-1, -1, 1, -1, -1, -1, -1, 10, 11, -1, -1, 12, 13, -1, -1, -1, -1, -1, 17, -1, -1, 20, -1, -1, -1, -1, + -1, -1, -1, -1, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1] + +from typing import Union + + +class BinTree: + def __init__(self, one=None, zero=None, len=0): + self._one: Union[BinTree, None] = one + self._zero: Union[BinTree, None] = zero + self._len = len + + def is_empty(self) -> bool: + return self._one is None and self._zero is None and self._len == 0 + + def merge(self, other: Union["BinTree", None]) -> "BinTree": + """Merge the two trees together""" + # Note: extending an empty tree adds zero, so check for this special case + if other is None or other.is_empty(): + return self + if self.is_empty(): + return other + merge_len = max(self._len, other._len) + a = self.extend(merge_len) + b = other.extend(merge_len) + return BinTree(one=a._one.merge(b._one) if a._one else b._one, + zero=a._zero.merge(b._zero) if a._zero else b._zero, + len=merge_len) + + @staticmethod + def from_int(n: int) -> "BinTree": + n_str = bin(n)[2:] + n_len = len(n_str) + rv = BinTree() + cur = rv + for idx, digit in enumerate(n_str): + cur._len = n_len - idx + print(cur._len) + if digit == "0": + print("zero") + cur._zero = cur = BinTree() + else: + print("one") + cur._one = cur = BinTree() + return rv + + def add(self, n) -> "BinTree": + return self.merge(BinTree.from_int(n)) + + def extend(self, len: int) -> "BinTree": + """Extend the depth of the tree with leading zeros (if needed).""" + if len <= self._len: + return self + + rv = self + for i in range(1, len - self._len + 1): + new_root = BinTree() + new_root._zero = rv + new_root._len = new_root._zero._len + 1 + if new_root._len != self._len + i: + raise Exception(f"{new_root._len} != {self._len + i} , i={i}") + rv = new_root + return rv + + def __repr__(self): + return f"<{repr(self._zero)}, {repr(self._one)}>" + + +def test_bintree(): + assert repr(BinTree().extend(2)) == "<<, None>, None>" + assert repr(BinTree().from_int(0)) == "<, None>" + assert repr(BinTree().from_int(1)) == ">" + assert repr(BinTree().from_int(3)) == ">>" + assert repr(BinTree().from_int(4)) == ", None>, None>>" + assert repr(BinTree().add(4)) == ", None>, None>>" + assert repr(BinTree().add(0)) == "<, None>" + assert repr(BinTree().add(0).add(1)) == "<, >" + assert repr(BinTree().add(3)) == ">>" + assert repr(BinTree().add(3).add(2)) == ", >>" + + +class Solution: + def maximizeXor(self, nums: List[int], queries: List[List[int]]) -> List[int]: + nums = sorted(set(nums)) + next_num_idx = 0 + queries = sorted(enumerate(queries), key=lambda p: p[1][1]) + rv = [0] * len(queries) + bt = BinTree() + for idx, query in queries: + while next_num_idx < len(nums) and nums[next_num_idx] <= query[1]: + bt = bt.add(nums[next_num_idx]) + next_num_idx += 1 + if bt.is_empty(): + rv[idx] = -1 + else: + q_t = BinTree.from_int(query[0]) + merge_len = max(q_t._len, bt._len) + q_t = q_t.extend(merge_len) + btt = bt.extend(merge_len) + # now are the same length, q_t contains single path, search with btt for max differences and recreate m + m = 0 + while q_t._len != 0: + m *= 2 + if q_t._one and btt._zero: + q_t=q_t._one + btt = btt._zero + elif q_t._zero and btt._one: + m += 1 + q_t = q_t._zero + btt = btt._one + elif q_t._one: + m += 1 + q_t = q_t._one + btt = btt._one + elif q_t._zero: + q_t = q_t._zero + btt = btt._zero + rv[idx] = query[0]^m + return rv + + +def test_maxxor(): + s = Solution() + assert s.maximizeXor(nums = [0,1,2,3,4], queries = [[3,1],[1,3],[5,6]]) == [3, 3, 7] + assert s.maximizeXor(nums = [5,2,4,6,6,3], queries = [[12,4],[8,1],[6,3]]) == [15, -1, 5] + + +if __name__ == "__main__": + print("hi") + + From 20dffae86168c6962dc9f83ed722e6ea1282bebe Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Sat, 2 Jan 2021 17:28:25 +0100 Subject: [PATCH 51/56] leetcode: collect some timing data The data was rather surprising, only got smooth data with many more iterations than expected. --- leetcode/20201227sun/ex.py | 67 +++++++++++++++++++++++++++++++++++--- 1 file changed, 63 insertions(+), 4 deletions(-) diff --git a/leetcode/20201227sun/ex.py b/leetcode/20201227sun/ex.py index 3a241e7..bf2ca84 100644 --- a/leetcode/20201227sun/ex.py +++ b/leetcode/20201227sun/ex.py @@ -1,3 +1,15 @@ +import numpy as np +import matplotlib.pyplot as plt +import pandas as pd +import logging +import sys + +log = logging.getLogger() +log.setLevel(logging.INFO) +handler = logging.StreamHandler(sys.stdout) +handler.setLevel(logging.DEBUG) +log.addHandler(handler) + vow = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'] @@ -157,12 +169,12 @@ def from_int(n: int) -> "BinTree": cur = rv for idx, digit in enumerate(n_str): cur._len = n_len - idx - print(cur._len) + log.debug(cur._len) if digit == "0": - print("zero") + log.debug("zero") cur._zero = cur = BinTree() else: - print("one") + log.debug("one") cur._one = cur = BinTree() return rv @@ -246,8 +258,55 @@ def test_maxxor(): assert s.maximizeXor(nums = [0,1,2,3,4], queries = [[3,1],[1,3],[5,6]]) == [3, 3, 7] assert s.maximizeXor(nums = [5,2,4,6,6,3], queries = [[12,4],[8,1],[6,3]]) == [15, -1, 5] +import time + + +class Timer: + def __init__(self): + self._start = None + self._end = None + + def start(self): + self._start = time.monotonic() + + def stop(self): + self._end = time.monotonic() + + def duration(self): + return self._end - self._start + + def __enter__(self): + self.start() + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.stop() + + +import gc if __name__ == "__main__": - print("hi") + print("Running some different timings related to 4th problem (b/c too slow and not certain where the time goes)") + # also practicing some matplotlib + xs = range(1, 20_000_000_000, 10_000_000) + N = 10_000 + dat = np.zeros((len(xs), N)) + t = Timer() + gc.set_debug(gc.DEBUG_STATS) + gc.disable() + print(gc.get_count()) + with Timer() as tt: + for x_idx, x in enumerate(xs): + lts = [] + for idx in range(N): + with t: + BinTree.from_int(x) + dat[x_idx, idx] = t.duration() + print(gc.get_count()) + gc.collect() + plt.plot(xs, dat.mean(axis=1)) + plt.plot(xs, np.median(dat, axis=1)) + plt.plot(xs, np.min(dat, axis=1)) + From 8e48b70fb40665b875207255024f826f5fbef522 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Thu, 21 Jan 2021 16:21:34 +0100 Subject: [PATCH 52/56] feat(supersuper): ex1 --- supersuper/.gitignore | 1 + supersuper/Makefile | 11 +++++++++++ supersuper/README.md | 5 +++++ supersuper/ex1.py | 15 +++++++++++++++ supersuper/requirements.txt | 1 + 5 files changed, 33 insertions(+) create mode 100644 supersuper/.gitignore create mode 100644 supersuper/Makefile create mode 100644 supersuper/README.md create mode 100644 supersuper/ex1.py create mode 100644 supersuper/requirements.txt diff --git a/supersuper/.gitignore b/supersuper/.gitignore new file mode 100644 index 0000000..eba74f4 --- /dev/null +++ b/supersuper/.gitignore @@ -0,0 +1 @@ +venv/ \ No newline at end of file diff --git a/supersuper/Makefile b/supersuper/Makefile new file mode 100644 index 0000000..4bba94a --- /dev/null +++ b/supersuper/Makefile @@ -0,0 +1,11 @@ +VENV=. venv/bin/activate + +venv: + python -m venv venv + ${VENV} ; pip install -r requirements.txt + +clean: + rm -rf venv + +format: + ${VENV} ; black *.py diff --git a/supersuper/README.md b/supersuper/README.md new file mode 100644 index 0000000..b2ed78f --- /dev/null +++ b/supersuper/README.md @@ -0,0 +1,5 @@ +# super super + +Improving my super understanding. Prepping for some more library design. + +[1] https://rhettinger.wordpress.com/2011/05/26/super-considered-super/ \ No newline at end of file diff --git a/supersuper/ex1.py b/supersuper/ex1.py new file mode 100644 index 0000000..c835adc --- /dev/null +++ b/supersuper/ex1.py @@ -0,0 +1,15 @@ +import logging +import sys + +logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) +log = logging.getLogger("ex1") + + +class LoggingDict(dict): + def __setitem__(self, key, value): + log.info("Setting %r to %r" % (key, value)) + super().__setitem__(key, value) + + +l = LoggingDict() +l[1] = 2 diff --git a/supersuper/requirements.txt b/supersuper/requirements.txt new file mode 100644 index 0000000..7e66a17 --- /dev/null +++ b/supersuper/requirements.txt @@ -0,0 +1 @@ +black From 7ae9d2cc2196c7dd929430a3e0f5a2fc132ade09 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Thu, 21 Jan 2021 16:24:53 +0100 Subject: [PATCH 53/56] feat(supersuper): ex2 --- supersuper/ex2.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 supersuper/ex2.py diff --git a/supersuper/ex2.py b/supersuper/ex2.py new file mode 100644 index 0000000..7b30cad --- /dev/null +++ b/supersuper/ex2.py @@ -0,0 +1,36 @@ +import logging +import sys +import asyncio +import time + +logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) +log = logging.getLogger("ex2") + + +class LoggingLock(asyncio.Lock): + async def acquire(self): + log.info("Getting lock") + await super().acquire() + log.info("Have lock") + + def release(self): + super().release() + log.info("Released") + + +async def f(lock, label, n=10): + for i in range(n): + async with lock: + log.info(f"{label}({i}):{time.monotonic()}") + await asyncio.sleep(0.5) + + +async def main(): + lock_0 = LoggingLock() + f0 = asyncio.create_task(f(lock_0, "one")) + f1 = asyncio.create_task(f(lock_0, "two")) + + await asyncio.gather(f0, f1) + + +asyncio.run(main()) From 08c819d04347ca168d5b089052063ccdc2bb66fe Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Thu, 21 Jan 2021 17:08:05 +0100 Subject: [PATCH 54/56] feat(supersuper): ex1 + mro --- supersuper/ex1.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/supersuper/ex1.py b/supersuper/ex1.py index c835adc..ea99f5a 100644 --- a/supersuper/ex1.py +++ b/supersuper/ex1.py @@ -1,5 +1,6 @@ import logging import sys +import collections logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) log = logging.getLogger("ex1") @@ -13,3 +14,10 @@ def __setitem__(self, key, value): l = LoggingDict() l[1] = 2 + + +class LoggingOD(LoggingDict, collections.OrderedDict): + pass + + +LoggingOD.mro() From 31ec7c3290a1155ec3165be33344bf528bba6517 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Fri, 29 Jan 2021 13:26:08 +0100 Subject: [PATCH 55/56] feat: mock.patch a superclass --- mocking/Makefile | 5 +++++ mocking/requirements.txt | 0 mocking/supermock.py | 21 +++++++++++++++++++++ mocking/undertest.py | 7 +++++++ 4 files changed, 33 insertions(+) create mode 100644 mocking/Makefile create mode 100644 mocking/requirements.txt create mode 100644 mocking/supermock.py create mode 100644 mocking/undertest.py diff --git a/mocking/Makefile b/mocking/Makefile new file mode 100644 index 0000000..dbadf24 --- /dev/null +++ b/mocking/Makefile @@ -0,0 +1,5 @@ +VENV=. venv/bin/activate + +venv: + python -m venv venv + ${VENV} ; pip install -r requirements.txt diff --git a/mocking/requirements.txt b/mocking/requirements.txt new file mode 100644 index 0000000..e69de29 diff --git a/mocking/supermock.py b/mocking/supermock.py new file mode 100644 index 0000000..e78445f --- /dev/null +++ b/mocking/supermock.py @@ -0,0 +1,21 @@ +from undertest import X, B +import unittest.mock as mock +import builtins + + +def test_X(): + x = X() + print(x.f()) + assert x.f() == 10 + + +test_X() + +def test_X_2(): + with mock.patch("builtins.super") as mock_super: + x = X() + mock_super().f = lambda: 3 + print(x.f()) + assert x.f() == 6 + +test_X_2() diff --git a/mocking/undertest.py b/mocking/undertest.py new file mode 100644 index 0000000..e1c2cad --- /dev/null +++ b/mocking/undertest.py @@ -0,0 +1,7 @@ +class B: + def f(self): + return 5 + +class X(B): + def f(self): + return 2 * super().f() From 4a7015d760f674c587a5e11c60c01ff4a588be88 Mon Sep 17 00:00:00 2001 From: Bart Kastermans Date: Mon, 6 Sep 2021 20:58:22 +0200 Subject: [PATCH 56/56] commit some older WIP --- .gitignore | 1 + contextvar.py | 37 ++++++++++++++++++++++++++++++++++ getattr_tests.py | 48 ++++++++++++++++++++++++++++++++++++++++++++ mocking/undertest.py | 11 +++++++++- 4 files changed, 96 insertions(+), 1 deletion(-) create mode 100644 contextvar.py create mode 100644 getattr_tests.py diff --git a/.gitignore b/.gitignore index a81f529..c063402 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +venv/ .idea/ *.html *.sqlite diff --git a/contextvar.py b/contextvar.py new file mode 100644 index 0000000..0dfb544 --- /dev/null +++ b/contextvar.py @@ -0,0 +1,37 @@ +import asyncio +from contextvars import ContextVar + +cv = ContextVar("cv") + +async def ff(x): + v = cv.get(666) + print(f"f({x}) -> {v}") + cv.set(11) + +async def f(): + while True: + await ff(" f ") + await asyncio.sleep(1) + +async def gg(x): + v = cv.get(555) + print(f"g({x}) -> {v}") + cv.set(22) + + +async def g(): + while True: + await ff("g") + await gg("g") + await asyncio.sleep(0.4) + +async def main(): + ff = asyncio.create_task(f()) + gg = asyncio.create_task(g()) + #ff = asyncio.Task(f()) + #gg = asyncio.Task(g()) + #await asyncio.gather(ff, gg) + await asyncio.sleep(20) + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/getattr_tests.py b/getattr_tests.py new file mode 100644 index 0000000..300f056 --- /dev/null +++ b/getattr_tests.py @@ -0,0 +1,48 @@ +# I would like to make what I think is called a facade object. Pass all calls except a selected one or two to the +# base object. + +class A: + def f(self): + print("Af") + def __getattr__(self, item): + print(f"item={item}") + +iter(A()) + +hasattr(A(), "__iter__") + + +class B: + def f(self): + print("f") + +b = B() +b.f() + +def g(f): + def ff(): + print("ff-before") + rv = f() + print("ff-after") + return rv + return ff + +b.f = g(b.f) + +class C: + def __init__(self, x): + self._x = x + + def __getattr__(self, name): + return getattr(self._x, name) + +c = C(B()) +c.f() + + +class D(A): + def f(self): + print("df") + super().f() + print("dfafer") +D().f() diff --git a/mocking/undertest.py b/mocking/undertest.py index e1c2cad..34d5549 100644 --- a/mocking/undertest.py +++ b/mocking/undertest.py @@ -2,6 +2,15 @@ class B: def f(self): return 5 + def h(self): + return 99 + class X(B): def f(self): - return 2 * super().f() + return super().f() + +x = X() + +def calls(): + x.f() + x.h()