From 57368db7a9fff325763ea07f2d4ee83f06aa210c Mon Sep 17 00:00:00 2001 From: wJsJwr Date: Sat, 16 Jun 2018 21:37:40 +0800 Subject: [PATCH] emmm --- .gitignore | 4 +-- calc_dnc_players.py | 7 +--- calc_participants.py | 28 +++++++++------ calc_reward.py | 50 ++++++++++++++++++++++++++ calc_survivals.py | 2 +- coopr_per_match.py | 2 +- coopr_per_round.py | 4 ++- dist_of_k.py | 10 +++--- draw_game_history.py | 12 +++---- interactions_per_round.py | 4 +-- island/matches.py | 34 +++++++++++++++--- k_and_new_partner.py | 4 +-- neighbor_per_round.py | 8 ++--- profile.csv | 75 ++++++++++++++++++++++++++++++++++++++ request_success.py | 54 ++++++++++++++++------------ rewiring_rate.py | 76 +++++++++++++++++++-------------------- survivals.json | 2 +- t.py | 14 ++++++++ tau_p_co.py | 22 +++++++----- taup_and_new_partner.py | 4 +-- 20 files changed, 299 insertions(+), 117 deletions(-) create mode 100644 calc_reward.py create mode 100644 profile.csv create mode 100644 t.py diff --git a/.gitignore b/.gitignore index 4207bac..f5aaaef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ .DS_Store graph -wos-data-new -wos-data-casual +wos-data* +user* *.svg __pycache__ .vscode/ \ No newline at end of file diff --git a/calc_dnc_players.py b/calc_dnc_players.py index 8c511a3..89c2aea 100644 --- a/calc_dnc_players.py +++ b/calc_dnc_players.py @@ -4,17 +4,12 @@ from island.match import Match from island.matches import Matches import numpy as np -matches = Matches('wos-data-new') +matches = Matches('wos-data-compete') max_round = 15 total_players = 0 dnc_players = 0 -survivals = {} -with open('survivals.json', 'r') as f: - survivals = json.load(f) - - for j in range(len(matches.data)): players = set() for r in matches.data[j].query('player', 'join').raw_data: diff --git a/calc_participants.py b/calc_participants.py index 4a64cfc..f7e2b6e 100644 --- a/calc_participants.py +++ b/calc_participants.py @@ -2,18 +2,24 @@ import json from pathlib import Path from island.match import Match - - +from island.matches import Matches result = 0 +count = 0 + +# ms = Matches.from_profile('CCCN') +ms = Matches.from_profile_expr(lambda r: 'LAB' in r and 'SURVIVE' in r and 'COMM' in r) +for m in ms.data: + result += len(m.query('player', 'join').where(lambda x: 'bot' not in x or x['bot'] == False).select('pid').raw_data) + count += 1 -for file in Path('wos-data-new').iterdir(): - p = Path(file) - if p.suffix == '.json': - name = p.stem - if int(name[1:]) >= 254: - m = Match.read_from_json(str(file)) - result += len(m.query('player', 'join').select('pid').raw_data) - print(result) -# 146 users \ No newline at end of file +print("avg:", result / count) +# 146 users +# casual: 324 +# new(254-354, 全国复杂网络大会): 205 +# new-2(375-421, 无交流): 320 +# new-3(426-440, 有交流): 203 +# new-4(443-472, 经典模式,无交流): 230 +# new-5(474-,经典模式,有交流): 159 +# total: 1117 diff --git a/calc_reward.py b/calc_reward.py new file mode 100644 index 0000000..fb9e5cf --- /dev/null +++ b/calc_reward.py @@ -0,0 +1,50 @@ +import json +import csv +from pathlib import Path +from island.match import Match +from island.matches import Matches + +result = {} +userdata = {} +with open('user.data', 'r') as c: + for row in csv.reader(c): + userdata[int(row[0])] = { + 'uid': row[0], + 'name': row[1], + 'email': row[2] + } +ms = Matches.from_profile_expr(lambda r: 'LAB' in r and 'CLASSIC' in r) +for m in ms.data: + for r in m.query('user', 'fitness').raw_data: + if r['user'] in result: + result[r['user']]['rewards'] += float(r['fitness']) - 0.0001 + result[r['user']]['participate'] += 1 + else: + result[r['user']] = { + 'rewards': float(r['fitness']) - 0.0001, + 'participate': 1 + } +ms = Matches.from_profile_expr(lambda r: 'LAB' in r and 'SURVIVE' in r) +for m in ms.data: + for r in m.query('player', 'join').raw_data: + if r['uid'] in result: + result[r['uid']]['rewards'] += 5 + result[r['uid']]['participate'] += 1 + else: + result[r['uid']] = { + 'rewards': 5.0, + 'participate': 1 + } + for r in m.query('user', 'fitness').raw_data: + result[r['user']]['rewards'] += float(r['fitness']) * 5 + +total = 0.0 +with open('user.reward.csv', 'w') as out: + writer = csv.writer(out) + writer.writerow(['uid', 'name', 'email', 'reward', 'participates']) + for k,v in result.items(): + writer.writerow([k, userdata[k]['name'], userdata[k] + ['email'], round(v['rewards'], 2), v['participate']]) + total += v['rewards'] + +print("total: %f" % (total)) diff --git a/calc_survivals.py b/calc_survivals.py index 59679ad..616e3d3 100644 --- a/calc_survivals.py +++ b/calc_survivals.py @@ -4,7 +4,7 @@ from island.match import Match result = {} -for file in Path('wos-data-new').iterdir(): +for file in Path('wos-data-compete').iterdir(): p = Path(file) if p.suffix == '.json': name = p.stem diff --git a/coopr_per_match.py b/coopr_per_match.py index 1e6d3ea..34e10cd 100644 --- a/coopr_per_match.py +++ b/coopr_per_match.py @@ -8,7 +8,7 @@ from island.matches import Matches def error(f,x,y): return sp.sum((f(x)-y)**2) -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') max_round = 17 coopr = [] diff --git a/coopr_per_round.py b/coopr_per_round.py index 011eeda..812e6e1 100644 --- a/coopr_per_round.py +++ b/coopr_per_round.py @@ -4,7 +4,7 @@ from island.match import Match from island.matches import Matches import numpy as np -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-3') max_round = 15 coopr = [] @@ -37,6 +37,8 @@ for i in range(max_round): yerr_min.append(coopr[-1] - min(co)) yerr_max.append(max(co) - coopr[-1]) print("%f, %f, %f"%(yerr_min[-1], yerr_max[-1], coopr[-1])) + else: + coopr.append(0) plt.figure() diff --git a/dist_of_k.py b/dist_of_k.py index 6484007..9a99488 100644 --- a/dist_of_k.py +++ b/dist_of_k.py @@ -6,21 +6,21 @@ from numpy import mean, std import numpy as np -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') max_round = 15 fig = plt.figure(figsize=(6.4, 3.6)) ax = fig.gca() -index = np.arange(11) +index = np.arange(13) ax.set_xlabel('k') ax.set_ylabel('p(k)') c = ['#00b894','#00cec9','#0984e3','#6c5ce7','#e84393','#d63031','#e17055','#fdcb6e','#2d3436','#6ab04c','#30336b','#ED4C67'] for i in range(len(matches.data)): - k = np.zeros(11) + k = np.zeros(13) m = matches.data[i] n = {} for r in m.query('neighbor', 'create').raw_data: @@ -34,10 +34,12 @@ for i in range(len(matches.data)): else: n[r['b']] = [r['a']] for j in n.keys(): + print(n[j], len(n[j])) k[len(n[j])] += 1 pk = k / np.sum(k) print(i) - ax.scatter(index, pk, color=c[i]) + # ax.scatter(index, pk, color=c[i]) + ax.scatter(index, pk) # ax.set_title('Scores by group and gender') fig.tight_layout() diff --git a/draw_game_history.py b/draw_game_history.py index 453d783..09a7363 100644 --- a/draw_game_history.py +++ b/draw_game_history.py @@ -351,9 +351,9 @@ def draw_picture(fin,fout): if __name__ == '__main__': - # for file in Path('wos-data-new').iterdir(): - # p = Path(file) - # if p.suffix == '.json': - # name = p.stem - # draw_picture(str(p), str(p.parent.parent / 'graph' / ("%s.eps"%name))) - draw_picture("wos-data-new/G285.json", "graph/G285.eps") \ No newline at end of file + for file in Path('wos-data-compete').iterdir(): + p = Path(file) + if p.suffix == '.json': + name = p.stem + draw_picture(str(p), str(p.parent.parent / 'graph' / ("%s.eps"%name))) + # draw_picture("wos-data-new/G285.json", "graph/G285.eps") \ No newline at end of file diff --git a/interactions_per_round.py b/interactions_per_round.py index 65c899c..5bc0a63 100644 --- a/interactions_per_round.py +++ b/interactions_per_round.py @@ -4,7 +4,7 @@ from island.match import Match from island.matches import Matches import numpy as np -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') max_round = 14 coopr = [] @@ -16,7 +16,7 @@ y = np.zeros((5, max_round)) sy = np.zeros(max_round) survivals = {} -with open('survivals.json', 'r') as f: +with open('survivals-2.json', 'r') as f: survivals = json.load(f) diff --git a/island/matches.py b/island/matches.py index b0e2ed2..0b94d56 100644 --- a/island/matches.py +++ b/island/matches.py @@ -1,13 +1,37 @@ from pathlib import Path from .match import Match +import json +import csv class Matches: - def __init__(self, logdir): + def __init__(self, source, from_list=False): self.data = [] self.names = [] - for file in Path(logdir).iterdir(): - if Path(file).suffix == '.json': - self.data.append(Match.read_from_json(str(file))) - self.names.append(Path(file).stem) + if from_list: + for l in source: + self.data.append(Match.read_from_json(l)) + self.names.append(Path(l).stem) + else: + for f in Path(source).iterdir(): + if Path(f).suffix == '.json': + self.data.append(Match.read_from_json(str(f))) + self.names.append(Path(f).stem) + @staticmethod + def from_profile(pname, ppos='profile.csv'): + source = [] + with open(ppos, 'r', encoding='utf-8') as f: + for row in csv.reader(f): + if pname in row: + source.append(row[0]) + return Matches(source, True) + + @staticmethod + def from_profile_expr(expr, ppos='profile.csv'): + source = [] + with open(ppos, 'r', encoding='utf-8') as f: + for row in csv.reader(f): + if expr(row): + source.append(row[0]) + return Matches(source, True) diff --git a/k_and_new_partner.py b/k_and_new_partner.py index 1163a4d..32cd755 100644 --- a/k_and_new_partner.py +++ b/k_and_new_partner.py @@ -6,14 +6,14 @@ import numpy as np from scipy.stats import pearsonr -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') k = np.arange(2, 11) succ = np.zeros(9) total = np.zeros(9) survivals = {} -with open('survivals.json', 'r') as f: +with open('survivals-2.json', 'r') as f: survivals = json.load(f) neighbors = {} diff --git a/neighbor_per_round.py b/neighbor_per_round.py index 8a0bf28..094a582 100644 --- a/neighbor_per_round.py +++ b/neighbor_per_round.py @@ -6,11 +6,11 @@ from numpy import mean, std import numpy as np -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') max_round = 15 survivals = {} -with open('survivals.json', 'r') as f: +with open('survivals-2.json', 'r') as f: survivals = json.load(f) neighbors = {} @@ -123,5 +123,5 @@ ax.set_xticks(index + bar_width / 2) ax.set_xticklabels(index+1) ax.legend() fig.tight_layout() -# plt.show() -plt.savefig('graph/neigh_per_round.eps') \ No newline at end of file +plt.show() +# plt.savefig('graph/neigh_per_round.eps') \ No newline at end of file diff --git a/profile.csv b/profile.csv new file mode 100644 index 0000000..dc96787 --- /dev/null +++ b/profile.csv @@ -0,0 +1,75 @@ +wos-data-compete/G254.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G272.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G285.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G295.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G299.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G302.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G307.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G318.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G337.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G341.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G349.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G354.json,CCCN,,,COMM,SURVIVE, +wos-data-compete/G375.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G379.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G380.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G385.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G386.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G389.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G390.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G391.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G392.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G393.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G394.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G395.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G396.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G397.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G398.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G399.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G400.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G402.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G403.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G404.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G405.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G406.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G407.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G408.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G409.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G413.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G420.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G421.json,,LAB,NOCOMM,,SURVIVE, +wos-data-compete/G426.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G427.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G428.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G429.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G430.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G431.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G434.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G435.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G436.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G437.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G439.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G440.json,,LAB,,COMM,SURVIVE, +wos-data-compete/G443.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G447.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G448.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G449.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G450.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G451.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G452.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G467.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G468.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G469.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G470.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G471.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G472.json,,LAB,NOCOMM,,,CLASSIC +wos-data-compete/G474.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G475.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G476.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G477.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G478.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G479.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G480.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G481.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G482.json,,LAB,,COMM,,CLASSIC +wos-data-compete/G483.json,,LAB,,COMM,,CLASSIC diff --git a/request_success.py b/request_success.py index b75fa19..0feedb7 100644 --- a/request_success.py +++ b/request_success.py @@ -6,13 +6,18 @@ from numpy import mean, std import numpy as np -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') max_round = 14 -c_req_succ = np.zeros(max_round-2) -c_req = np.zeros(max_round-2) -d_req_succ = np.zeros(max_round-2) -d_req = np.zeros(max_round-2) +# c_req_succ = np.zeros(max_round-2) +# c_req = np.zeros(max_round-2) +# d_req_succ = np.zeros(max_round-2) +# d_req = np.zeros(max_round-2) + +c_req_succ = np.zeros(max_round) +c_req = np.zeros(max_round) +d_req_succ = np.zeros(max_round) +d_req = np.zeros(max_round) def is_cooperator(rows, pid): m = 0 @@ -39,36 +44,39 @@ for i in range(max_round): r = matches.data[j].query('action', 'request').where(lambda x: x['rno'] == i+2 and x['from'] == row['a']).raw_data rs = matches.data[j].query('action', 'approve').where(lambda x: x['rno'] == i+2 and x['to'] == row['a']).raw_data if is_cooperator(rows, row['a']): - c_req_succ[j] += len(rs) - c_req[j] += len(r) + c_req_succ[i] += len(rs) + c_req[i] += len(r) else: - d_req_succ[j] += len(rs) - d_req[j] += len(r) + d_req_succ[i] += len(rs) + d_req[i] += len(r) calced.add(row['a']) if row['b'] not in calced: r = matches.data[j].query('action', 'request').where(lambda x: x['rno'] == i+2 and x['from'] == row['b']).raw_data rs = matches.data[j].query('action', 'approve').where(lambda x: x['rno'] == i+2 and x['to'] == row['b']).raw_data if is_cooperator(rows, row['b']): - c_req_succ[j] += len(rs) - c_req[j] += len(r) + c_req_succ[i] += len(rs) + c_req[i] += len(r) else: - d_req_succ[j] += len(rs) - d_req[j] += len(r) + d_req_succ[i] += len(rs) + d_req[i] += len(r) calced.add(row['b']) - - +for i in range(len(c_req)): + if c_req[i] == 0: + c_req[i] = 0.1 + if d_req[i] == 0: + d_req[i] = 0.1 c_req_succ_fr = c_req_succ / c_req d_req_succ_fr = d_req_succ / d_req -# print(c_req_succ) -# print(c_req) -# print(c_req_succ_fr) -# print(d_req_succ) -# print(d_req) -# print(d_req_succ_fr) +print(c_req_succ) +print(c_req) +print(c_req_succ_fr) +print(d_req_succ) +print(d_req) +print(d_req_succ_fr) req_succ_fr_mean = [mean(c_req_succ_fr), mean(d_req_succ_fr)] req_succ_fr_sem = [std(c_req_succ_fr), std(d_req_succ_fr)] @@ -115,5 +123,5 @@ ax.set_ylabel('Request Approval Rate') # ax.set_xticklabels(index+2) # ax.legend() fig.tight_layout() -# plt.show() -plt.savefig('graph/request_success.eps') \ No newline at end of file +plt.show() +# plt.savefig('graph/request_success.eps') \ No newline at end of file diff --git a/rewiring_rate.py b/rewiring_rate.py index 92d4bda..93affda 100644 --- a/rewiring_rate.py +++ b/rewiring_rate.py @@ -12,11 +12,11 @@ def error(f,x,y): if __name__ == '__main__': - matches = Matches('wos-data-new') + matches = Matches('wos-data-new-2') max_round = 15 survivals = {} - with open('survivals.json', 'r') as f: + with open('survivals-2.json', 'r') as f: survivals = json.load(f) neighbors = {} @@ -41,7 +41,7 @@ if __name__ == '__main__': n[r['b']] = [r['a']] neighbors[matches.names[i]] = n - for i in range(max_round): + for i in range(max_round-1): re = [] for j in range(len(matches.data)): rewire = 0 @@ -95,47 +95,47 @@ if __name__ == '__main__': red = '#d63031' # p1折线图 - # fig = plt.figure(figsize=(6.4, 3.6)) - # ax = fig.gca() - # ax.plot(x, rewires, color=green, linewidth=3) - # ax.set_ylim(0, 0.5) - # ax2 = ax.twinx() - # ax2.plot(x, tau, color=red, linewidth=3) - # ax2.set_ylim(0,1440) - # ax.set_xlim(1,14) - # ax.set_xlabel("Rounds") - # ax.set_ylabel("Rewiring Rate", color=green) - # ax.tick_params(axis='y', labelcolor=green) - # ax2.set_ylabel("$\\tau_{p}$", family='sans-serif', color=red) - # ax2.tick_params(axis='y', labelcolor=red) + fig = plt.figure(figsize=(6.4, 3.6)) + ax = fig.gca() + ax.plot(x, rewires, color=green, linewidth=3) + ax.set_ylim(0, 0.5) + ax2 = ax.twinx() + ax2.plot(x, tau, color=red, linewidth=3) + ax2.set_ylim(0,1440) + ax.set_xlim(1,14) + ax.set_xlabel("Rounds") + ax.set_ylabel("Rewiring Rate", color=green) + ax.tick_params(axis='y', labelcolor=green) + ax2.set_ylabel("$\\tau_{p}$", family='sans-serif', color=red) + ax2.tick_params(axis='y', labelcolor=red) - # plt.tight_layout() - # # plt.show() + plt.tight_layout() + plt.show() # plt.savefig('graph/tau_p_rewire_plot.eps') # # p2散点图 - fig = plt.figure(figsize=(6.4, 3.6)) - ax = fig.gca() - # ax.set_ylim(0.5, 1) - fp1,residuals,rank,sv,rcond = sp.polyfit(tau, rewires, 1, full=True) - print("残差:",residuals) - print('Model parameter:',fp1) - f1 = sp.poly1d(fp1) - print("error= %f" % error(f1, tau, rewires)) - # fx = sp.linspace(0,max(tau2),1000) - fx = sp.linspace(0,1440,2) + # fig = plt.figure(figsize=(6.4, 3.6)) + # ax = fig.gca() + # # ax.set_ylim(0.5, 1) + # fp1,residuals,rank,sv,rcond = sp.polyfit(tau, rewires, 1, full=True) + # print("残差:",residuals) + # print('Model parameter:',fp1) + # f1 = sp.poly1d(fp1) + # print("error= %f" % error(f1, tau, rewires)) + # # fx = sp.linspace(0,max(tau2),1000) + # fx = sp.linspace(0,1440,2) - plt.plot(fx,f1(fx),linewidth=2,color=red, ls='--', zorder=0) - plt.scatter(tau, rewires, color=green, linewidths=2, zorder=100) - # plt.scatter(tau_r, coopr_r, color='white', edgecolors=green, linewidths=2, zorder=101) - ax.set_xlabel('$\\tau_{p}$', family='sans-serif') - ax.set_ylabel('Rewiring Rate') - ax.set_xlim(0, 1440) - ax.set_xticks(sp.linspace(0, 1440, 13)) - ax.set_ylim(0, 0.6) - plt.tight_layout() + # plt.plot(fx,f1(fx),linewidth=2,color=red, ls='--', zorder=0) + # plt.scatter(tau, rewires, color=green, linewidths=2, zorder=100) + # # plt.scatter(tau_r, coopr_r, color='white', edgecolors=green, linewidths=2, zorder=101) + # ax.set_xlabel('$\\tau_{p}$', family='sans-serif') + # ax.set_ylabel('Rewiring Rate') + # ax.set_xlim(0, 1440) + # ax.set_xticks(sp.linspace(0, 1440, 13)) + # ax.set_ylim(0, 0.6) + # plt.tight_layout() # plt.show() - plt.savefig('graph/tau_p_rewire_sca.eps') + # plt.savefig('graph/tau_p_rewire_sca.eps') diff --git a/survivals.json b/survivals.json index e5b9ed1..afbaf05 100644 --- a/survivals.json +++ b/survivals.json @@ -1 +1 @@ -{"G349": {"0": [4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573], "1": [4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573], "2": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4569, 4570, 4572], "3": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4569, 4570, 4572], "4": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4570, 4572], "5": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4570, 4572], "6": [4558, 4559, 4562, 4565, 4570], "7": [4558, 4559, 4562], "8": [4558, 4559, 4562], "9": [4558, 4559], "10": [4558, 4559]}, "G86": {"0": [854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867], "1": [854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867], "2": [855, 856, 858, 859, 860, 861, 862, 863, 864], "3": [855, 856, 860], "4": [860], "5": [], "6": [], "7": [], "8": [], "9": [], "10": []}, "G295": {"0": [3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3497], "1": [3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3497], "2": [3481, 3482, 3483, 3484, 3487, 3488, 3490, 3491, 3492, 3494, 3495, 3497], "3": [3483, 3484, 3490, 3495], "4": [3483, 3495], "5": [3483, 3495], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": []}, "G153": {"0": [1598, 1599, 1600], "1": [1598, 1599, 1600], "2": [], "3": [], "4": [], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G68": {"0": [685, 686, 687, 688, 689, 690], "1": [685, 686, 687, 688, 689, 690], "2": [], "3": [], "4": [], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": [], "16": [], "17": []}, "G299": {"0": [3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575], "1": [3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575], "2": [3557, 3558, 3559, 3561, 3562, 3563, 3564, 3565, 3568, 3569, 3571, 3574, 3575], "3": [3557, 3558, 3559, 3562, 3563, 3564, 3565, 3568, 3569, 3574, 3575], "4": [3557, 3558, 3559, 3562, 3563, 3565, 3568, 3569, 3574, 3575], "5": [3557, 3558, 3559, 3562, 3563, 3574, 3575], "6": [3558, 3559, 3563, 3574, 3575], "7": [3558, 3559, 3563, 3575], "8": [3558, 3559, 3563, 3575], "9": [3558, 3559, 3563, 3575], "10": [3558, 3559, 3563, 3575], "11": [3558, 3559, 3563, 3575], "12": [3558, 3559, 3563, 3575]}, "G72": {"0": [721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731], "1": [721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731], "2": [726, 727], "3": [], "4": [], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G302": {"0": [3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651], "1": [3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651], "2": [3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651], "3": [3636, 3638, 3639, 3640, 3641, 3642, 3644, 3645, 3647, 3649, 3650, 3651], "4": [3638, 3639, 3640, 3641, 3642, 3644, 3647, 3649, 3650, 3651], "5": [3638, 3639, 3640, 3641, 3642, 3647, 3649, 3650, 3651], "6": [3638, 3640, 3641, 3642, 3647, 3649, 3651], "7": [3638, 3640, 3641, 3642, 3647, 3649, 3651], "8": [3638, 3640, 3642, 3647, 3649, 3651], "9": [3638, 3640, 3642, 3647, 3649, 3651], "10": [3638, 3640, 3642, 3649, 3651], "11": [3638, 3642, 3649, 3651], "12": [3638, 3642, 3649, 3651], "13": [3638, 3649], "14": [3649], "15": [3649]}, "G75": {"0": [733, 734, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753], "1": [733, 734, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753], "2": [747, 750], "3": [747, 750], "4": [750], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G318": {"0": [3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979], "1": [3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979], "2": [3965, 3967, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978], "3": [3965, 3967, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978], "4": [3965, 3967, 3970, 3971, 3972, 3973, 3974, 3976, 3977, 3978], "5": [3965, 3967, 3970, 3971, 3973, 3974, 3976, 3978], "6": [3965, 3967, 3970, 3971, 3973, 3974, 3976], "7": [3965, 3967, 3970, 3971, 3973, 3974], "8": [3965, 3967, 3970, 3971, 3973, 3974], "9": [3965, 3967, 3970, 3971, 3973, 3974], "10": [3965, 3967, 3970, 3973], "11": [3965, 3967, 3970, 3973], "12": [3965, 3967, 3970, 3973]}, "G54": {"0": [551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564], "1": [551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564], "2": [], "3": [], "4": [], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": []}, "G285": {"0": [3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3413, 3414, 3415, 3416, 3417, 3437, 3438, 3439, 3440], "1": [3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3413, 3414, 3415, 3416, 3417, 3437, 3438, 3439, 3440], "2": [3397, 3398, 3399, 3400, 3401, 3402, 3404, 3406, 3407, 3408, 3409, 3411, 3414, 3415, 3416, 3437, 3439, 3440], "3": [3397, 3398, 3400, 3402, 3409, 3411, 3416], "4": [3397, 3398, 3409, 3411], "5": [3397, 3409, 3411], "6": [3409, 3411], "7": [3409, 3411], "8": [3409, 3411], "9": [3409, 3411], "10": [3409, 3411], "11": [3409, 3411], "12": [3409, 3411], "13": [3411], "14": []}, "G354": {"0": [4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630], "1": [4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630], "2": [4614, 4615, 4616, 4618, 4623, 4624, 4625, 4627, 4630], "3": [4614, 4615, 4616, 4618, 4623, 4624, 4625, 4627, 4630], "4": [4614, 4615, 4616, 4618, 4623, 4624, 4625, 4627], "5": [4614, 4615, 4616, 4618, 4623, 4624, 4625], "6": [4614, 4615, 4616, 4618, 4623, 4624], "7": [4614, 4615, 4616, 4618, 4623, 4624], "8": [4614, 4615, 4616, 4618, 4623, 4624], "9": [4614, 4615, 4616, 4618, 4623, 4624], "10": [4614, 4615, 4616, 4618, 4623, 4624], "11": [4614, 4615, 4616, 4618, 4623, 4624], "12": [4614, 4615, 4616, 4618, 4623, 4624]}, "G341": {"0": [4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477], "1": [4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477], "2": [4460, 4462, 4463, 4464, 4468, 4469, 4471, 4472, 4474, 4476], "3": [4460, 4462, 4463, 4464, 4468, 4471, 4472, 4474, 4476], "4": [4460, 4462, 4463, 4464, 4468, 4472, 4474, 4476], "5": [4462, 4463, 4464, 4468, 4472, 4474, 4476], "6": [4462, 4463, 4464, 4468, 4472, 4474, 4476], "7": [4462, 4463, 4464, 4468, 4472, 4474, 4476], "8": [4462, 4463, 4464, 4472, 4474, 4476], "9": [4462, 4463, 4464, 4472, 4474, 4476], "10": [4462, 4463, 4464, 4476]}, "G337": {"0": [4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339], "1": [4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339], "2": [4320, 4321, 4323, 4326, 4328, 4335, 4336, 4337, 4338, 4339], "3": [4320, 4321, 4323, 4326, 4335, 4336, 4337, 4338, 4339], "4": [4320, 4321, 4323, 4335, 4336, 4338, 4339], "5": [4320, 4321, 4323, 4335, 4336, 4338, 4339], "6": [4335, 4338, 4339], "7": [4338, 4339], "8": [4338, 4339], "9": [4338, 4339], "10": [4339], "11": [], "12": []}, "G272": {"0": [3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176], "1": [3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176], "2": [3156, 3157, 3158, 3160, 3161, 3162, 3163, 3166, 3167, 3168, 3170, 3171], "3": [3158, 3160, 3161, 3162, 3166, 3167, 3170], "4": [3158, 3160, 3166, 3167, 3170], "5": [3160, 3166, 3170], "6": [3160, 3166, 3170], "7": [3160, 3170], "8": [3160, 3170], "9": [3160, 3170], "10": [3160, 3170], "11": [3160, 3170], "12": [3160, 3170], "13": [3170]}, "G203": {"0": [2021, 2022, 2023, 2024, 2025], "1": [2021, 2022, 2023, 2024, 2025], "2": [2021, 2022, 2023, 2024], "3": [2021, 2022, 2023, 2024], "4": [2022, 2024], "5": [2022, 2024], "6": [2022, 2024], "7": [2022, 2024], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G254": {"0": [2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915], "1": [2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915], "2": [2906, 2907, 2908, 2910, 2911, 2914, 2915], "3": [2906, 2910, 2911, 2914], "4": [2906, 2910, 2911, 2914], "5": [2906, 2910, 2911, 2914], "6": [2906, 2910, 2911, 2914], "7": [2906, 2910, 2911, 2914], "8": [2906, 2910, 2911, 2914], "9": [2906, 2910, 2911, 2914], "10": [2906, 2910, 2911, 2914], "11": [2910, 2911, 2914], "12": [2914], "13": [], "14": [], "15": []}, "G307": {"0": [3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904], "1": [3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904], "2": [3892, 3893, 3894, 3895, 3896, 3897, 3899, 3900, 3901, 3902, 3904], "3": [3892, 3893, 3894, 3896, 3897, 3899, 3900, 3901, 3902, 3904], "4": [3892, 3893, 3894, 3896, 3897, 3899, 3900, 3901, 3902, 3904], "5": [3892, 3893, 3894, 3896, 3899, 3901, 3902, 3904], "6": [3893, 3894, 3896, 3901, 3904], "7": [3893, 3894, 3896, 3901], "8": [3893, 3894, 3896, 3901], "9": [3893, 3894, 3896, 3901], "10": [3894, 3896, 3901], "11": [3894, 3896, 3901], "12": [3896, 3901], "13": [3896, 3901], "14": [3896, 3901]}} +{"G349": {"0": [4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573], "1": [4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573], "2": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4569, 4570, 4572], "3": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4569, 4570, 4572], "4": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4570, 4572], "5": [4558, 4559, 4562, 4565, 4566, 4567, 4568, 4570, 4572], "6": [4558, 4559, 4562, 4565, 4570], "7": [4558, 4559, 4562], "8": [4558, 4559, 4562], "9": [4558, 4559], "10": [4558, 4559]}, "G430": {"0": [5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828], "1": [5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828], "2": [5809, 5810, 5812, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828], "3": [5809, 5810, 5812, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828], "4": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5825, 5826, 5827, 5828], "5": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5826, 5827, 5828], "6": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5826, 5827, 5828], "7": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5826, 5827, 5828], "8": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5826, 5827, 5828], "9": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5826, 5827, 5828], "10": [5809, 5810, 5816, 5817, 5818, 5819, 5820, 5822, 5824, 5826, 5828]}, "G467": {"0": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "1": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "2": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "3": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "4": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "5": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "6": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "7": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "8": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "9": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "10": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "11": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "12": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406], "13": [6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406]}, "G471": {"0": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "1": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "2": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "3": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "4": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "5": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "6": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "7": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "8": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "9": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "10": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "11": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466], "12": [6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466]}, "G426": {"0": [5747, 5748, 5749, 5750, 5751, 5752, 5753, 5754, 5755, 5756, 5757], "1": [5747, 5748, 5749, 5750, 5751, 5752, 5753, 5754, 5755, 5756, 5757], "2": [5747, 5748, 5749, 5751, 5752, 5754, 5755, 5756, 5757], "3": [5747, 5749, 5751, 5752, 5754, 5755, 5756, 5757], "4": [5747, 5749, 5751, 5752, 5754, 5755, 5756, 5757], "5": [5747, 5749, 5751, 5752, 5754, 5755, 5756, 5757], "6": [5747, 5749, 5751, 5754, 5755, 5756, 5757], "7": [5747, 5751, 5754, 5755, 5756, 5757], "8": [5747, 5754, 5756, 5757], "9": [5747, 5754, 5756, 5757], "10": [5747, 5757], "11": [5747, 5757]}, "G451": {"0": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "1": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "2": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "3": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "4": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "5": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "6": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "7": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "8": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "9": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "10": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "11": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "12": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "13": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "14": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210], "15": [6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210]}, "G406": {"0": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443], "1": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443], "2": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5440, 5441, 5442], "3": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440, 5441, 5442], "4": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440, 5441, 5442], "5": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440, 5441, 5442], "6": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440], "7": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440], "8": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440], "9": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440], "10": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440], "11": [5431, 5432, 5433, 5434, 5435, 5436, 5437, 5440], "12": [5431, 5432, 5433, 5434, 5435, 5436, 5440], "13": [5433, 5434, 5436]}, "G390": {"0": [5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, 5244, 5245, 5246], "1": [5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, 5244, 5245, 5246], "2": [5230, 5233, 5237, 5239], "3": [5230, 5233, 5237, 5239], "4": [5230, 5233, 5237, 5239], "5": [5230, 5233, 5237, 5239], "6": [5230, 5233, 5237, 5239], "7": [5230, 5233, 5237, 5239], "8": [5230, 5233, 5237, 5239], "9": [5230, 5237, 5239], "10": [5237, 5239], "11": [5237, 5239]}, "G386": {"0": [5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5189, 5190, 5191], "1": [5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5189, 5190, 5191], "2": [5180, 5181, 5183, 5184, 5185, 5186, 5187, 5190], "3": [5180, 5181, 5183, 5184, 5185, 5186, 5187, 5190], "4": [5180, 5181, 5183, 5184, 5185, 5187, 5190], "5": [5181, 5183, 5184, 5185, 5187, 5190], "6": [5181, 5183, 5184, 5185, 5187, 5190], "7": [5181, 5183, 5184, 5185, 5187, 5190], "8": [5181, 5183, 5184, 5185, 5187, 5190], "9": [5181, 5183, 5184, 5185, 5187, 5190], "10": [5181, 5183, 5184, 5185, 5187, 5190], "11": [5181, 5183, 5184, 5185, 5187, 5190], "12": [5185, 5187, 5190], "13": [5185], "14": [], "15": []}, "G447": {"0": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "1": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "2": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "3": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "4": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "5": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "6": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "7": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "8": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "9": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "10": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "11": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "12": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123], "13": [6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123]}, "G295": {"0": [3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3497], "1": [3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3497], "2": [3481, 3482, 3483, 3484, 3487, 3488, 3490, 3491, 3492, 3494, 3495, 3497], "3": [3483, 3484, 3490, 3495], "4": [3483, 3495], "5": [3483, 3495], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": []}, "G391": {"0": [5259, 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, 5273, 5274, 5275], "1": [5259, 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, 5273, 5274, 5275], "2": [5260, 5261, 5262, 5263, 5265, 5267, 5270, 5272, 5273, 5275], "3": [5260, 5261, 5262, 5263, 5267, 5270, 5272, 5273, 5275], "4": [5260, 5261, 5263, 5267, 5273], "5": [5260, 5261, 5263, 5267, 5273], "6": [5260, 5261, 5263, 5267, 5273], "7": [5260, 5261, 5267, 5273], "8": [5260, 5261, 5267, 5273], "9": [5260, 5261, 5267, 5273], "10": [5260, 5261, 5267, 5273], "11": [5260, 5261, 5267, 5273], "12": [5260, 5261, 5267, 5273], "13": [5260, 5261, 5267], "14": [5260, 5267], "15": []}, "G407": {"0": [5444, 5445, 5446, 5447, 5448, 5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457], "1": [5444, 5445, 5446, 5447, 5448, 5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457], "2": [5444, 5446, 5447, 5448, 5449, 5450, 5452, 5453, 5454, 5455, 5456], "3": [5444, 5446, 5447, 5448, 5449, 5450, 5452, 5453, 5454, 5455], "4": [5444, 5446, 5447, 5448, 5449, 5450, 5452, 5453, 5454, 5455], "5": [5444, 5446, 5447, 5448, 5449, 5452, 5453, 5454, 5455], "6": [5444, 5446, 5447, 5448, 5449, 5452, 5453, 5454, 5455], "7": [5444, 5446, 5447, 5448, 5449, 5452, 5454, 5455], "8": [5444, 5446, 5447, 5448, 5452, 5454], "9": [5444, 5446, 5447, 5448, 5452, 5454], "10": [5444, 5446, 5447, 5448, 5452, 5454]}, "G450": {"0": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "1": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "2": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "3": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "4": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "5": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "6": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "7": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "8": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "9": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198], "10": [6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198]}, "G299": {"0": [3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575], "1": [3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575], "2": [3557, 3558, 3559, 3561, 3562, 3563, 3564, 3565, 3568, 3569, 3571, 3574, 3575], "3": [3557, 3558, 3559, 3562, 3563, 3564, 3565, 3568, 3569, 3574, 3575], "4": [3557, 3558, 3559, 3562, 3563, 3565, 3568, 3569, 3574, 3575], "5": [3557, 3558, 3559, 3562, 3563, 3574, 3575], "6": [3558, 3559, 3563, 3574, 3575], "7": [3558, 3559, 3563, 3575], "8": [3558, 3559, 3563, 3575], "9": [3558, 3559, 3563, 3575], "10": [3558, 3559, 3563, 3575], "11": [3558, 3559, 3563, 3575], "12": [3558, 3559, 3563, 3575]}, "G427": {"0": [5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768], "1": [5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768], "2": [5758, 5759, 5761, 5762, 5763, 5764, 5765, 5767, 5768], "3": [5758, 5759, 5761, 5762, 5763, 5764, 5765, 5767, 5768], "4": [5758, 5759, 5762, 5764, 5765, 5767, 5768], "5": [5759, 5762, 5764, 5765, 5767, 5768], "6": [5759, 5762, 5764, 5765, 5767, 5768], "7": [5759, 5762, 5764, 5765, 5767, 5768], "8": [5759, 5762, 5764, 5765, 5767, 5768], "9": [5759, 5762, 5764, 5767, 5768], "10": [5759, 5762, 5767, 5768], "11": [5759, 5767, 5768], "12": [5767, 5768], "13": [5767], "14": []}, "G470": {"0": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "1": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "2": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "3": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "4": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "5": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "6": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "7": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "8": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "9": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451], "10": [6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451]}, "G431": {"0": [5829, 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, 5850], "1": [5829, 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, 5850], "2": [5830, 5831, 5832, 5834, 5835, 5836, 5837, 5838, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848], "3": [5830, 5831, 5832, 5834, 5835, 5836, 5837, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848], "4": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5843, 5845, 5846, 5847, 5848], "5": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5843, 5845, 5846, 5847, 5848], "6": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5843, 5845, 5846, 5847, 5848], "7": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5843, 5845, 5846, 5847, 5848], "8": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5843, 5845, 5846, 5847, 5848], "9": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5843, 5845, 5846, 5848], "10": [5831, 5832, 5834, 5835, 5836, 5837, 5841, 5845, 5846, 5848]}, "G482": {"0": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "1": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "2": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "3": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "4": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "5": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "6": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "7": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "8": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "9": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "10": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "11": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653], "12": [6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653]}, "G302": {"0": [3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651], "1": [3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651], "2": [3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651], "3": [3636, 3638, 3639, 3640, 3641, 3642, 3644, 3645, 3647, 3649, 3650, 3651], "4": [3638, 3639, 3640, 3641, 3642, 3644, 3647, 3649, 3650, 3651], "5": [3638, 3639, 3640, 3641, 3642, 3647, 3649, 3650, 3651], "6": [3638, 3640, 3641, 3642, 3647, 3649, 3651], "7": [3638, 3640, 3641, 3642, 3647, 3649, 3651], "8": [3638, 3640, 3642, 3647, 3649, 3651], "9": [3638, 3640, 3642, 3647, 3649, 3651], "10": [3638, 3640, 3642, 3649, 3651], "11": [3638, 3642, 3649, 3651], "12": [3638, 3642, 3649, 3651], "13": [3638, 3649], "14": [3649], "15": [3649]}, "G400": {"0": [5377, 5378, 5379, 5380, 5381, 5382, 5383, 5384, 5385], "1": [5377, 5378, 5379, 5380, 5381, 5382, 5383, 5384, 5385], "2": [5378, 5380, 5382, 5384, 5385], "3": [5378, 5380, 5382, 5384], "4": [5378, 5380, 5384], "5": [5378, 5380], "6": [5378, 5380], "7": [], "8": [], "9": [], "10": []}, "G396": {"0": [5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335], "1": [5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335], "2": [5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5334, 5335], "3": [5322, 5323, 5325, 5326, 5327, 5328, 5330, 5331, 5332, 5334, 5335], "4": [5322, 5323, 5325, 5326, 5328, 5330, 5331, 5332, 5334, 5335], "5": [5322, 5325, 5326, 5328, 5330, 5331, 5332, 5334, 5335], "6": [5325, 5326, 5328, 5330, 5331, 5334, 5335], "7": [5325, 5328, 5330, 5334], "8": [5325, 5328, 5330, 5334], "9": [5325, 5328, 5330, 5334], "10": [5325, 5328, 5330, 5334], "11": [5325, 5328, 5330, 5334], "12": [5325, 5328, 5330]}, "G379": {"0": [5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113], "1": [5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113], "2": [5103, 5104, 5105, 5106, 5107, 5109, 5111, 5112, 5113], "3": [5103, 5104, 5105, 5106, 5107, 5109, 5111, 5112, 5113], "4": [5103, 5104, 5106, 5107, 5111, 5113], "5": [5103, 5104, 5106, 5107, 5111, 5113], "6": [5103, 5104, 5106, 5107, 5111, 5113], "7": [5103, 5104, 5106, 5107, 5111, 5113], "8": [5103, 5104, 5106, 5107, 5111, 5113], "9": [5104, 5106, 5111, 5113], "10": [5104, 5106, 5111, 5113]}, "G380": {"0": [5114, 5115, 5116, 5117, 5118, 5119], "1": [5114, 5115, 5116, 5117, 5118, 5119], "2": [5116, 5117, 5118], "3": [5118], "4": [5118], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G436": {"0": [5925, 5926, 5927, 5928, 5929, 5930, 5931, 5932, 5933, 5934, 5935], "1": [5925, 5926, 5927, 5928, 5929, 5930, 5931, 5932, 5933, 5934, 5935], "2": [5925, 5926, 5927, 5931, 5932, 5935], "3": [5925, 5926, 5931, 5935], "4": [5925, 5931, 5935], "5": [5925, 5935], "6": [5925, 5935], "7": [5925, 5935], "8": [5925, 5935], "9": [5925, 5935], "10": [5925, 5935], "11": [5925, 5935]}, "G318": {"0": [3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979], "1": [3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979], "2": [3965, 3967, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978], "3": [3965, 3967, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978], "4": [3965, 3967, 3970, 3971, 3972, 3973, 3974, 3976, 3977, 3978], "5": [3965, 3967, 3970, 3971, 3973, 3974, 3976, 3978], "6": [3965, 3967, 3970, 3971, 3973, 3974, 3976], "7": [3965, 3967, 3970, 3971, 3973, 3974], "8": [3965, 3967, 3970, 3971, 3973, 3974], "9": [3965, 3967, 3970, 3971, 3973, 3974], "10": [3965, 3967, 3970, 3973], "11": [3965, 3967, 3970, 3973], "12": [3965, 3967, 3970, 3973]}, "G477": {"0": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "1": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "2": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "3": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "4": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "5": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "6": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "7": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "8": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "9": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565], "10": [6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565]}, "G420": {"0": [5634, 5635, 5636, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649], "1": [5634, 5635, 5636, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649], "2": [5634, 5635, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5646, 5648, 5649], "3": [5634, 5635, 5638, 5639, 5640, 5641, 5642, 5643, 5646, 5648, 5649], "4": [5634, 5635, 5638, 5639, 5640, 5641, 5642, 5643, 5648, 5649], "5": [5634, 5635, 5638, 5639, 5640, 5641, 5642, 5643, 5648, 5649], "6": [5634, 5635, 5638, 5639, 5640, 5641, 5643, 5648, 5649], "7": [5634, 5635, 5638, 5639, 5640, 5641, 5648, 5649], "8": [5634, 5635, 5638, 5639, 5640, 5641, 5648, 5649], "9": [5634, 5635, 5638, 5639, 5640, 5641, 5648, 5649], "10": [5634, 5635, 5638, 5639, 5640, 5641, 5648, 5649], "11": [5634, 5635, 5638, 5639, 5640, 5641, 5648, 5649]}, "G375": {"0": [5071, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081], "1": [5071, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081], "2": [5071, 5072, 5073, 5074, 5075, 5076, 5079, 5080], "3": [5071, 5072, 5073, 5074, 5075, 5076], "4": [5071, 5072, 5073, 5074, 5075, 5076], "5": [5071, 5072, 5073, 5075, 5076], "6": [5071, 5072, 5073, 5075], "7": [5071, 5072, 5073, 5075], "8": [5071, 5072, 5073, 5075], "9": [5071, 5072, 5073, 5075], "10": [5071, 5072, 5073, 5075], "11": [5071, 5072, 5073, 5075], "12": [5071, 5072, 5073, 5075], "13": [5071], "14": [], "15": []}, "G421": {"0": [5650, 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666], "1": [5650, 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666], "2": [5650, 5652, 5653, 5654, 5655, 5656, 5657, 5659, 5660, 5661, 5662, 5664, 5665], "3": [5650, 5652, 5653, 5654, 5655, 5656, 5657, 5659, 5660, 5661, 5662, 5664, 5665], "4": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "5": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "6": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "7": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "8": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "9": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "10": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664], "11": [5652, 5653, 5654, 5656, 5657, 5659, 5660, 5661, 5662, 5664]}, "G476": {"0": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "1": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "2": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "3": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "4": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "5": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "6": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "7": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "8": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "9": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "10": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "11": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "12": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "13": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545], "14": [6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545]}, "G437": {"0": [5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5945], "1": [5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5945], "2": [5937, 5939, 5940, 5942, 5943, 5944, 5945], "3": [5937, 5939, 5940, 5942, 5943, 5944, 5945], "4": [5937, 5940, 5942, 5943, 5944, 5945], "5": [5937, 5940, 5942, 5943, 5944, 5945], "6": [5937, 5940, 5942, 5943, 5944, 5945], "7": [5937, 5940, 5942, 5943, 5944, 5945], "8": [5937, 5940, 5942, 5943, 5944, 5945], "9": [5937, 5940, 5942, 5943, 5944, 5945], "10": [5937, 5940, 5942, 5943, 5944, 5945]}, "G440": {"0": [5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009], "1": [5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009], "2": [5991, 5993, 5994, 5995, 5997, 5998, 6000, 6001, 6002, 6003, 6006, 6007, 6009], "3": [5991, 5993, 5994, 5995, 5997, 5998, 6000, 6002, 6003, 6006, 6007, 6009], "4": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "5": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "6": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "7": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "8": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "9": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "10": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009], "11": [5993, 5994, 5995, 5997, 5998, 6000, 6002, 6006, 6007, 6009]}, "G397": {"0": [5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350], "1": [5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350], "2": [5338, 5339, 5341, 5342, 5343, 5344, 5347, 5348, 5349, 5350], "3": [5338, 5339, 5341, 5342, 5343, 5344, 5347, 5348, 5349, 5350], "4": [5338, 5339, 5342, 5343, 5344, 5347, 5348, 5349], "5": [5338, 5339, 5342, 5343, 5344, 5347, 5348, 5349], "6": [5339, 5343, 5344, 5347, 5348], "7": [5343, 5344, 5347, 5348], "8": [5343, 5344, 5347, 5348], "9": [5343, 5344, 5347, 5348], "10": [5343, 5344, 5347, 5348], "11": [5343, 5344, 5347, 5348], "12": [5343, 5347, 5348]}, "G285": {"0": [3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3413, 3414, 3415, 3416, 3417, 3437, 3438, 3439, 3440], "1": [3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3413, 3414, 3415, 3416, 3417, 3437, 3438, 3439, 3440], "2": [3397, 3398, 3399, 3400, 3401, 3402, 3404, 3406, 3407, 3408, 3409, 3411, 3414, 3415, 3416, 3437, 3439, 3440], "3": [3397, 3398, 3400, 3402, 3409, 3411, 3416], "4": [3397, 3398, 3409, 3411], "5": [3397, 3409, 3411], "6": [3409, 3411], "7": [3409, 3411], "8": [3409, 3411], "9": [3409, 3411], "10": [3409, 3411], "11": [3409, 3411], "12": [3409, 3411], "13": [3411], "14": []}, "G354": {"0": [4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630], "1": [4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630], "2": [4614, 4615, 4616, 4618, 4623, 4624, 4625, 4627, 4630], "3": [4614, 4615, 4616, 4618, 4623, 4624, 4625, 4627, 4630], "4": [4614, 4615, 4616, 4618, 4623, 4624, 4625, 4627], "5": [4614, 4615, 4616, 4618, 4623, 4624, 4625], "6": [4614, 4615, 4616, 4618, 4623, 4624], "7": [4614, 4615, 4616, 4618, 4623, 4624], "8": [4614, 4615, 4616, 4618, 4623, 4624], "9": [4614, 4615, 4616, 4618, 4623, 4624], "10": [4614, 4615, 4616, 4618, 4623, 4624], "11": [4614, 4615, 4616, 4618, 4623, 4624], "12": [4614, 4615, 4616, 4618, 4623, 4624]}, "G483": {"0": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "1": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "2": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "3": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "4": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "5": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "6": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "7": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "8": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "9": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667], "10": [6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667]}, "G443": {"0": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "1": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "2": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "3": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "4": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "5": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "6": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "7": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "8": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "9": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "10": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "11": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "12": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042], "13": [6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042]}, "G394": {"0": [5299, 5300, 5301, 5302, 5303, 5304, 5305], "1": [5299, 5300, 5301, 5302, 5303, 5304, 5305], "2": [5299, 5302, 5303, 5304, 5305], "3": [5302, 5303, 5304, 5305], "4": [5302, 5303, 5304, 5305], "5": [5302, 5303, 5304, 5305], "6": [5305], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G402": {"0": [5386, 5387, 5388, 5389, 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, 5400], "1": [5386, 5387, 5388, 5389, 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, 5400], "2": [5387, 5388, 5389, 5390, 5392, 5393, 5394, 5395, 5396, 5397, 5399, 5400], "3": [5387, 5388, 5389, 5390, 5392, 5393, 5394, 5395, 5396, 5397, 5399, 5400], "4": [5387, 5388, 5389, 5390, 5394, 5395, 5397, 5399, 5400], "5": [5387, 5388, 5389, 5390, 5394, 5395, 5399, 5400], "6": [5387, 5388, 5389, 5390, 5394, 5395, 5399, 5400], "7": [5387, 5388, 5389, 5394, 5395, 5399, 5400], "8": [5387, 5388, 5389, 5394, 5395, 5399, 5400], "9": [5387, 5388, 5394, 5395, 5399, 5400], "10": [5387, 5388, 5394, 5395, 5399, 5400]}, "G479": {"0": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "1": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "2": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "3": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "4": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "5": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "6": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "7": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "8": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "9": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613], "10": [6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613]}, "G480": {"0": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "1": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "2": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "3": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "4": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "5": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "6": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "7": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "8": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "9": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "10": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "11": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625], "12": [6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625]}, "G341": {"0": [4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477], "1": [4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477], "2": [4460, 4462, 4463, 4464, 4468, 4469, 4471, 4472, 4474, 4476], "3": [4460, 4462, 4463, 4464, 4468, 4471, 4472, 4474, 4476], "4": [4460, 4462, 4463, 4464, 4468, 4472, 4474, 4476], "5": [4462, 4463, 4464, 4468, 4472, 4474, 4476], "6": [4462, 4463, 4464, 4468, 4472, 4474, 4476], "7": [4462, 4463, 4464, 4468, 4472, 4474, 4476], "8": [4462, 4463, 4464, 4472, 4474, 4476], "9": [4462, 4463, 4464, 4472, 4474, 4476], "10": [4462, 4463, 4464, 4476]}, "G398": {"0": [5351, 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367], "1": [5351, 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367], "2": [5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5361, 5362, 5364, 5365, 5366], "3": [5352, 5353, 5354, 5356, 5358, 5359, 5361, 5364, 5365, 5366], "4": [5352, 5353, 5354, 5356, 5358, 5359, 5364, 5365, 5366], "5": [5353, 5354, 5359, 5364, 5365, 5366], "6": [5353, 5354, 5359, 5365, 5366], "7": [5353, 5359, 5365, 5366], "8": [5353, 5359, 5365, 5366], "9": [5353, 5359, 5365, 5366], "10": [5353, 5359, 5365, 5366], "11": [5353, 5359, 5366]}, "G475": {"0": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "1": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "2": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "3": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "4": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "5": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "6": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "7": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "8": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "9": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "10": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "11": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "12": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "13": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "14": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526], "15": [6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526]}, "G434": {"0": [5891, 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907], "1": [5891, 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907], "2": [5891, 5892, 5893, 5894, 5899, 5901, 5902, 5903, 5906, 5907], "3": [5891, 5893, 5894, 5899, 5901, 5902, 5906, 5907], "4": [5891, 5893, 5894, 5899, 5901, 5902, 5906, 5907], "5": [5891, 5893, 5894, 5899, 5901, 5902, 5906, 5907], "6": [5891, 5893, 5894, 5899, 5902, 5906, 5907], "7": [5891, 5894, 5899, 5902, 5906, 5907], "8": [5894, 5902, 5906, 5907], "9": [5894, 5902, 5906, 5907], "10": [5894, 5906, 5907], "11": [5894, 5907], "12": [5894, 5907], "13": [5894]}, "G435": {"0": [5908, 5909, 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, 5923, 5924], "1": [5908, 5909, 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, 5923, 5924], "2": [5908, 5909, 5912, 5914, 5916, 5918, 5919], "3": [5908, 5909, 5912, 5914, 5916, 5918, 5919], "4": [5908, 5912, 5914, 5916, 5918, 5919], "5": [5912, 5914], "6": [5912, 5914], "7": [5912, 5914], "8": [5912, 5914], "9": [5912, 5914], "10": [5912, 5914], "11": [5912, 5914], "12": [5912, 5914]}, "G474": {"0": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "1": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "2": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "3": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "4": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "5": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "6": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "7": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "8": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "9": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "10": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "11": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "12": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "13": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "14": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517], "15": [6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517]}, "G399": {"0": [5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, 5376], "1": [5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, 5376], "2": [5369, 5371, 5372, 5373, 5374, 5375, 5376], "3": [5369, 5371, 5372, 5373, 5374, 5375, 5376], "4": [5369, 5371, 5372, 5374, 5375, 5376], "5": [5369, 5371, 5372, 5374, 5375, 5376], "6": [5369, 5371, 5372, 5374], "7": [5371, 5372, 5374], "8": [5371, 5372, 5374], "9": [5371, 5374], "10": [5371, 5374]}, "G337": {"0": [4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339], "1": [4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339], "2": [4320, 4321, 4323, 4326, 4328, 4335, 4336, 4337, 4338, 4339], "3": [4320, 4321, 4323, 4326, 4335, 4336, 4337, 4338, 4339], "4": [4320, 4321, 4323, 4335, 4336, 4338, 4339], "5": [4320, 4321, 4323, 4335, 4336, 4338, 4339], "6": [4335, 4338, 4339], "7": [4338, 4339], "8": [4338, 4339], "9": [4338, 4339], "10": [4339], "11": [], "12": []}, "G272": {"0": [3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176], "1": [3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176], "2": [3156, 3157, 3158, 3160, 3161, 3162, 3163, 3166, 3167, 3168, 3170, 3171], "3": [3158, 3160, 3161, 3162, 3166, 3167, 3170], "4": [3158, 3160, 3166, 3167, 3170], "5": [3160, 3166, 3170], "6": [3160, 3166, 3170], "7": [3160, 3170], "8": [3160, 3170], "9": [3160, 3170], "10": [3160, 3170], "11": [3160, 3170], "12": [3160, 3170], "13": [3170]}, "G439": {"0": [5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986, 5987, 5988, 5989], "1": [5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986, 5987, 5988, 5989], "2": [5966, 5969, 5970, 5972, 5973, 5976, 5979, 5980, 5982, 5986], "3": [5966, 5969, 5970, 5972, 5973, 5976, 5979, 5980, 5982, 5986], "4": [5966, 5969, 5970, 5972, 5973, 5979, 5982], "5": [5966, 5969, 5970, 5973, 5979, 5982], "6": [5966, 5969, 5970, 5973, 5979, 5982], "7": [5966, 5969, 5970, 5973, 5979, 5982], "8": [5966, 5969, 5970, 5973, 5979, 5982], "9": [5966, 5969, 5970, 5973, 5979, 5982], "10": [5966, 5969, 5970, 5973, 5979, 5982], "11": [5966, 5969, 5970, 5973, 5979, 5982], "12": [5966, 5969, 5970, 5973, 5979, 5982], "13": [5966, 5979, 5982], "14": [5979, 5982], "15": [5979, 5982]}, "G481": {"0": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "1": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "2": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "3": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "4": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "5": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "6": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "7": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "8": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "9": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "10": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "11": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "12": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644], "13": [6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644]}, "G478": {"0": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "1": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "2": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "3": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "4": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "5": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "6": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "7": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "8": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "9": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "10": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589], "11": [6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589]}, "G403": {"0": [5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5413, 5414], "1": [5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5413, 5414], "2": [5401, 5402, 5403, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5414], "3": [5401, 5402, 5403, 5405, 5406, 5408, 5409, 5410, 5411, 5412, 5414], "4": [5401, 5402, 5403, 5405, 5406, 5408, 5409, 5410, 5411, 5412, 5414], "5": [5401, 5402, 5403, 5406, 5408, 5409, 5410, 5412, 5414], "6": [5401, 5402, 5403, 5406, 5408, 5409, 5412, 5414], "7": [5401, 5402, 5403, 5406, 5408, 5409, 5412, 5414], "8": [5401, 5402, 5403, 5406, 5408, 5409, 5412, 5414], "9": [5401, 5402, 5403, 5406, 5408, 5409, 5412, 5414], "10": [5401, 5402, 5403, 5406, 5408, 5409, 5412, 5414], "11": [5401, 5402, 5403, 5406, 5408, 5409, 5412, 5414], "12": [5401, 5402, 5403, 5406, 5408, 5409, 5414], "13": [5401, 5402, 5406, 5409], "14": [5401, 5402, 5409]}, "G395": {"0": [5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319], "1": [5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319], "2": [5307, 5309, 5310, 5312, 5313, 5315, 5316, 5317, 5318], "3": [5307, 5309, 5310, 5312, 5313, 5315, 5316, 5317, 5318], "4": [5307, 5309, 5310, 5313, 5315, 5316, 5317], "5": [5307, 5309, 5310, 5313, 5316, 5317], "6": [5307, 5309, 5310, 5313, 5316, 5317], "7": [5307, 5309, 5310, 5313, 5316, 5317], "8": [5307, 5309, 5310, 5313, 5316, 5317], "9": [5307, 5309, 5310, 5313, 5316, 5317], "10": [5307, 5309, 5310, 5313, 5316, 5317], "11": [5307, 5309, 5310, 5313, 5316, 5317], "12": [5307, 5309, 5310, 5313, 5316], "13": [5307, 5309]}, "G449": {"0": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "1": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "2": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "3": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "4": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "5": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "6": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "7": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "8": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "9": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "10": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "11": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "12": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "13": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173], "14": [6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173]}, "G408": {"0": [5459, 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, 5468], "1": [5459, 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, 5468], "2": [5459, 5460, 5462, 5463, 5464, 5465, 5467], "3": [5459, 5460, 5462, 5463, 5464, 5465, 5467], "4": [5460, 5462, 5463, 5464, 5465, 5467], "5": [5460, 5462, 5463, 5464, 5465, 5467], "6": [5460, 5462, 5463, 5464, 5467], "7": [5460, 5462, 5463, 5464, 5467], "8": [5460, 5462, 5463, 5464], "9": [5460, 5462, 5463, 5464], "10": [5460, 5462, 5463, 5464], "11": [5460, 5462, 5463, 5464], "12": [5460, 5462, 5463, 5464]}, "G392": {"0": [5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, 5289, 5290, 5291], "1": [5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, 5289, 5290, 5291], "2": [5282, 5283, 5284, 5285, 5286, 5287, 5289], "3": [5282, 5284, 5285, 5286, 5287, 5289], "4": [5282, 5285], "5": [5282, 5285], "6": [5282, 5285], "7": [5282, 5285], "8": [5282], "9": [5282], "10": [], "11": [], "12": [], "13": [], "14": [], "15": []}, "G404": {"0": [5415, 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, 5424], "1": [5415, 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, 5424], "2": [5416, 5417, 5419, 5420, 5421, 5422, 5423, 5424], "3": [5416, 5417, 5419, 5420, 5421, 5422, 5423, 5424], "4": [5417, 5419, 5420, 5421, 5422, 5423, 5424], "5": [5417, 5419, 5420, 5421, 5422, 5423], "6": [5417, 5419, 5420, 5421, 5422, 5423], "7": [5417, 5421, 5422, 5423], "8": [5417, 5421, 5422, 5423], "9": [5417, 5421, 5422, 5423], "10": [5417, 5421, 5422, 5423], "11": [5417, 5421, 5422, 5423], "12": [5417, 5421, 5422, 5423], "13": [5417, 5423], "14": []}, "G428": {"0": [5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, 5785, 5786, 5787, 5788, 5789, 5790], "1": [5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, 5785, 5786, 5787, 5788, 5789, 5790], "2": [5769, 5774, 5779, 5780, 5781, 5782, 5783, 5784, 5788, 5790], "3": [5769, 5774, 5781, 5782, 5783, 5784, 5788, 5790], "4": [5781, 5782, 5783, 5784, 5788, 5790], "5": [5782, 5783, 5788, 5790], "6": [5782, 5783, 5788, 5790], "7": [5782, 5783, 5788, 5790], "8": [5782, 5783, 5788, 5790], "9": [5782, 5783, 5788, 5790], "10": [5782, 5783, 5788, 5790]}, "G469": {"0": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "1": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "2": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "3": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "4": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "5": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "6": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "7": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "8": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "9": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436], "10": [6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436]}, "G468": {"0": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "1": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "2": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "3": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "4": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "5": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "6": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "7": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "8": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "9": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420], "10": [6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420]}, "G254": {"0": [2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915], "1": [2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915], "2": [2906, 2907, 2908, 2910, 2911, 2914, 2915], "3": [2906, 2910, 2911, 2914], "4": [2906, 2910, 2911, 2914], "5": [2906, 2910, 2911, 2914], "6": [2906, 2910, 2911, 2914], "7": [2906, 2910, 2911, 2914], "8": [2906, 2910, 2911, 2914], "9": [2906, 2910, 2911, 2914], "10": [2906, 2910, 2911, 2914], "11": [2910, 2911, 2914], "12": [2914], "13": [], "14": [], "15": []}, "G307": {"0": [3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904], "1": [3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904], "2": [3892, 3893, 3894, 3895, 3896, 3897, 3899, 3900, 3901, 3902, 3904], "3": [3892, 3893, 3894, 3896, 3897, 3899, 3900, 3901, 3902, 3904], "4": [3892, 3893, 3894, 3896, 3897, 3899, 3900, 3901, 3902, 3904], "5": [3892, 3893, 3894, 3896, 3899, 3901, 3902, 3904], "6": [3893, 3894, 3896, 3901, 3904], "7": [3893, 3894, 3896, 3901], "8": [3893, 3894, 3896, 3901], "9": [3893, 3894, 3896, 3901], "10": [3894, 3896, 3901], "11": [3894, 3896, 3901], "12": [3896, 3901], "13": [3896, 3901], "14": [3896, 3901]}, "G429": {"0": [5791, 5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808], "1": [5791, 5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808], "2": [5791, 5792, 5793, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803, 5805, 5806, 5807], "3": [5791, 5792, 5793, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803, 5805, 5807], "4": [5791, 5792, 5793, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803, 5805, 5807], "5": [5791, 5792, 5793, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803, 5805, 5807], "6": [5791, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803, 5805, 5807], "7": [5791, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803], "8": [5791, 5795, 5796, 5797, 5798, 5800, 5801, 5802, 5803], "9": [5791, 5795, 5797, 5798, 5800, 5801, 5802], "10": [5791, 5795, 5797, 5798, 5800, 5801, 5802]}, "G452": {"0": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "1": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "2": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "3": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "4": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "5": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "6": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "7": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "8": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "9": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226], "10": [6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226]}, "G405": {"0": [5425, 5426, 5427, 5428], "1": [5425, 5426, 5427, 5428], "2": [5425, 5426, 5427], "3": [5425, 5426, 5427], "4": [5425, 5427], "5": [5425, 5427], "6": [5425, 5427], "7": [5425, 5427], "8": [5425, 5427], "9": [5425, 5427], "10": [5425, 5427], "11": [5425, 5427], "12": [5425, 5427]}, "G393": {"0": [5293, 5294, 5295, 5296, 5297], "1": [5293, 5294, 5295, 5296, 5297], "2": [5293, 5295, 5296], "3": [5293, 5295], "4": [5295], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": []}, "G413": {"0": [5523, 5524, 5525, 5526, 5527, 5528, 5529, 5530], "1": [5523, 5524, 5525, 5526, 5527, 5528, 5529, 5530], "2": [5523, 5525, 5526, 5527, 5528, 5529], "3": [5523, 5525, 5526, 5528, 5529], "4": [5523], "5": [], "6": [], "7": [], "8": [], "9": [], "10": []}, "G385": {"0": [5175, 5176, 5177, 5178, 5179], "1": [5175, 5176, 5177, 5178, 5179], "2": [5175, 5176, 5177, 5179], "3": [5175, 5176, 5177, 5179], "4": [5175, 5176, 5177, 5179], "5": [5175, 5176, 5177, 5179], "6": [5175, 5176, 5177, 5179], "7": [5175, 5176, 5177, 5179], "8": [5175, 5176, 5177, 5179], "9": [5175, 5176, 5177, 5179], "10": [5175, 5176, 5177, 5179], "11": [5175, 5176, 5179], "12": [], "13": []}, "G472": {"0": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "1": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "2": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "3": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "4": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "5": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "6": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "7": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "8": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "9": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "10": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488], "11": [6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488]}, "G409": {"0": [5469, 5470, 5471, 5472, 5473, 5474, 5475, 5476, 5477], "1": [5469, 5470, 5471, 5472, 5473, 5474, 5475, 5476, 5477], "2": [5470, 5471, 5472, 5474, 5475, 5476, 5477], "3": [5470, 5471, 5472, 5474, 5475, 5476, 5477], "4": [5470, 5471, 5472, 5474, 5475, 5476, 5477], "5": [5470, 5472, 5474, 5475, 5476, 5477], "6": [5470, 5472, 5474, 5475, 5476, 5477], "7": [5470, 5472, 5474, 5475, 5476, 5477], "8": [5470, 5472, 5474, 5475, 5476, 5477], "9": [5470, 5472, 5474, 5475, 5476, 5477], "10": [5470, 5472, 5474, 5475, 5476, 5477]}, "G389": {"0": [5215, 5216, 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224], "1": [5215, 5216, 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224], "2": [5216, 5218, 5219, 5220, 5222, 5223], "3": [5216, 5218, 5219, 5220, 5222, 5223], "4": [5216, 5218, 5219, 5220], "5": [5216, 5218, 5219, 5220], "6": [5216, 5218, 5219, 5220], "7": [5216, 5218, 5219, 5220], "8": [5216, 5218, 5219, 5220], "9": [5216, 5218, 5219, 5220], "10": [5216, 5218, 5219, 5220], "11": [5216, 5218, 5219, 5220], "12": [5216, 5218, 5219, 5220], "13": [5219, 5220], "14": [5219, 5220], "15": [5219, 5220]}, "G448": {"0": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "1": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "2": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "3": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "4": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "5": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "6": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "7": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "8": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "9": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "10": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "11": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "12": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143], "13": [6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143]}} diff --git a/t.py b/t.py new file mode 100644 index 0000000..2a49578 --- /dev/null +++ b/t.py @@ -0,0 +1,14 @@ +from PIL import Image +import base64 +a = 'vOy67L3rveu667rsveu97b3rveq67L3qvey67L3rvey77brruuy667rquuy667zrvey97b3quuy66rzsu+u967rsu+u87L3tu+y96r3svey77Lzruuy66rrtuuu97Lvtuuu77b3svey67b3sveq67L3qveu67Lrsuuy6673rvOy77brsveu96r3suuu967rtveq67L3sveu9673quuy967rsveu767rsu+y967rsu+q967rsu+q86r3suu267b3ruu267Lvruuy67Lvtveu6673ruuu967rruuu97brru+y/6b/ovui67rrqve277L3suuu86r3tuuu6673svey967rsuuy66rzsuuy97Lrsveu67brruu286Lzpvui+6L7ovui+6L7ovui+6b3rveu87Lvrveu87Lvtu+u967vrvOy67Lvruuu9673svey967rtu+267Lrovui+6L7hp/OSvsmZ0JzDguqpoOi+6L7suuy6673su+y97b3uuuy867rsvey667vsuuu6673suuu967vsuOi+6Pm354MucwIlbAxPD2Q/aAJGAAiR5sa+6L3uvey967vtu+u67Lrruuy97Lrsu+u97b3suuy66bzsu+y96L7oillAFUUEVzR9KntUEU0kR3RUH0gjRnUuKc6+6bvsuuy6673suu267Lrsuuy67Lrtuuu97b3tuuq97bvsvei7i0cXVzpzKQtYF0YZWQRIM3sdTDRsL2QzdQBNjOi+7L3su+y87bvrveu87Lrsuu277Lrruuy67L3qu+y66L/AJx5MP2glBUcfdSNFEHEYQTJvMnkwYD1tOmzHayPVvui967rsuuy7673suuy97b3uu+u67Lvru+y67L3rvOypdkIEcSJ7VxZwK3UhdRx0M2c4lTxsNWnFbzaTxZLGaIHovu277bvsve267Lrrve277bvsuu2967rsveq67L76/SRLN2grF04RdSt/K2Q0Yz9pL382ajWVy5rCYMCZ0YzPyb7su+277L3suu2967ztuOy667rtuuu97Lrsve2//8UhYD4EdxxADkQfdyxjwYbUkDtuwJrNazyTyWo6hdmP27ev6Lrsuuu67Lrsuu297bruu+y97Lrru+u7673rvvDbVmVQHE4OWQ5DHH0yYcafxJc8lsmc0IXWj9WRN2vWte2P6+S+67jtuuu67Lrtvey77bvsveu77L3sveu67b3olSkGWnwueSgJQCthO27Nhj6VPmnBbcSA2rTbmOKIz4rwu9Oqvui67Lrsuuu967rsu+277Lrsuuy67Lrsuu296MU/CS9vO3EmAkAuazie1oQ2YTdtwo7lmsuK56b6vd2K4bnmj6Louuy47rrrvey667vuuO267L3tuuy77bvtvtpjKHIndDlzIAd3N2nMtdCXN2zFju+9157cu/Wg8qH6r9y0946C6LzuuOy77Lrsveu77rvsuuy767rruu696b6aX1RyI3IjfkUleTSc4YvKYjNlxLDSm+mi877yrvit8KT7uPmw7/6+7rvsvey97brsu+677Lvrvey67rzsu+i+c3NXciZvIQ5/Ikg1iOOexX7BZC6f1NyKpOOw/KTurIuo/KH2veDYuuq77brsveq97bvvu+y67L3tuOy87LvonTp6L3cnbiIQdRZIyoHXjMNkPZbAkPTU4Ircoei28aKD0eyk9L7eoK3ouu667brsvey47rrrvO267brvtui+6OkEcC9/VXpQIHUWec+Z2r/AZyeG27jqj+aI2rXvpIDTgNbtooC53rSi6Lvsveu67brsuO+77Lrsuuu977fovuk2B24rc10KTxxCBpbZmdqNNnZ9f9e14aPfmOmpgMSNqfyo/K/9puCNmOi67bzru+y67Ljuu+y97LrsveunoejTGCQEVnInfi0ORhuc3I3ruN+L1biQ1ITa7qb+qI/Q/6L51/rV97/ejJPouuy77bvsveu577vtvey67b7vrYgvZw5RAHTEgoryrOaz4r3ovui+6L7ovui/5LPhp9mRqP7ShK361PW/2ISS6LvtuOy67L3su+647brsveu97L7YwW4WZY7LpP6/6KvmtPis+ajNkcX2rpfBmcik5L7grPOF0oavgKP1p9Voh+i67rrtu+y87bjuuuu67Lruvui+4/uD7sjcZOjIsrMnh/ei2rXQdjBrNIqHx5nJnfCJkdHPpsf/1oGp+bDZYInove297brsvey57rvrvO277LPzms6cqLHyA3HJq7PN9aKO2dRsx5zNiZH2m8qgyZ7z+NnTkZ/1hquA0Pm4356e6Lnsuu2667rtue+47bvuv+6b3pr+nua2+qnx8pmS76vwkNbkfMGM3MGr9aD2ncmh9qPgsbr7wJfQhNf7qd2Asei47bruuuy77bvuuu277b3rqvOx46bnt/S15aTXg+eY86rnoJI2oJbzn/eU3pHAo/Wc/6eI+MaUxo2qgdbPubzru+267brtu+y47bvtuuu96bTnt+Ol4tu2qcfmZvDFKm6A5ajYj/WnyaHP+d+UwKPxo+X+T/3CjNmN1P+i0cq+77nvu+277LrsuO6467rtveu85rP8sM19taOOBBfdvW9mwGP2/qb1nven94bclc6k/KThqWDrwYPbj92Cvtzmvu277brsuuu67bjuu+u67bvsvuSw57ptbY6Buj1q1U8mdQpN7v+iyJ7ynqjtuYzNpPag77Sa38aC0JHDl6GV6Lrtu+297brru+y47rjtvey67Lzsn+6cBTHX6KWZwzBYLGHGi/jIpcii+4KE17+NyJ3Ctej5Y+3aitf4rP+mr+i57rntvey97brtuO247r3quu666KbM1D7fkAZr62/GmObdi9qd86T3k8H/iNetlM2X5a6u35v2ypDX+LjfkpbovuC47bjsuuy97bjuuuy77L3tuO2+75eT547koplmQVM2jfbRh9uZx/q73LTp35nCo+7srpWflP+c24Kq9bWT/qrouu+57Lvsuu2477vsu+y67Lvvu+i+08fxsfeZn2tdKGo/ejSB/NX/suGk/qCKwKv7ktzYrrH8pM6Qx4uo75Lf7b/uu+677L3tuO267Lrsu+277LvuvqVRb8RvJk0PQzKYy34/vv7f/IPw1vmoj8qo+4qfh+Ou+bfmltbzveSIwMi+77jtu+267Ljsuuy67Lztu+y77L6lQzV0PQFAB0MznsFj0qKHwva9gtf80or1nNTs2bfku+mrx/ql7rjssD6rvuy77Lrtuuy57brsu+297Lvtuuu+p11MKkkMVQ1HKGrBmuerit+A3/nT+6GKypbSmOS665y2xq+Eqfm85bHUnq3ou+247brtue647rrsuO677brsvtZovPuo7WwcWR9vw47v1Y7S+K71o/bdkM+Y8Ljoo4wrlvWv5bzuvuSI1GGG6Lrtu+y67bjtuu2467vtu+247L7YfGougoGIKF4RbMyJ992Pq/Wph6P23JDApeystCNr5bHTnuKv74nWt/OJ/Oi+6LvruO657L3tuO277LvtuOu+1gRk1aTZcwktEm7Qv/rajKH10orSgtOa5K6sLGfrtzaV0rLqgdK9/9CFsuPlqeO+6rvtue267b3suOy47bvuvvoWWsiYIFoAWRpq3KT8o/yu8quK3YzxpaMwZOO5zGI9mdicPon83IW75qPoiMKZpui/7rntuO277Lvtu+64677kKRp5Rg1fBCgDctul77X0oIDclPytqi9cxbTMkMWXPm4yj4r2g77es+q14IHUazrDvui47rrru+267Lvuu+i+vGwxFk4IVXQ4fULEt9C25qaL/7TGwUcxj9BlOo3IYiJl8/+o2YGg963ggua+6r/RZ/rouO297Lvsuuu47brsvqlSLC1+GiFzLQV8LmI8nOvHqvzcTjGaz5c0YMaNNHDby6rD94LBbsqaOGs7ZMWE4Ys2prvtu+277bjuu++47b7GTkU7ewgyficTYBdmzYr/yZSZJoHMbz1pPpzNYzS5o8vWcgImZToKWBNCFE8WSiqS15657rvtu+267bjuuO6+x2BHKEdmPwBfLHcnh9S8gqbUmdCfOm7DmtOSKoqcwfV7ajdkLAQsCWQndSR8LmM3bT6euOu77Lrtu+247bvsvsFtVCArcC8EcSVOxIfapvWP24zPkcuY1IHLjpDygZ8bOmE9aD11LBmTNksZdSV4OGw9a7jtuuy97bvtuu247b7nEFcgV35eGnsmYNu69L3itt2A0YLfiOW+4rzkQXNWcA1kPWcwZjgqkjR/FEMneidzK2+57rrsu+y97Lvtu+6+7cMMHUEEfTRxxbf3oumK147agdWA5K7aYCEkWzh+Rmc0aTpoMVw0JpE1fidEIZbEaTN5uO+767vtuuy47rrruuigLXJ0Lmkxe9Sm6I3VhtCD14HStP2afjRlIHwvGlRhO2k4dCZjLjRsNnIecxtwwobbjbvuuuu77brsuu667rvqvsLpsD9yI5TjjNmYzIbXgNaF4qg3N2omcSVnUgwxbSZsPHdVbF04Zy9zGUksSSdgPJi47brsuu247bvuu+u47rrovuD0n9mM2pjNh9KC1oDTjP5nWDppP3EycCtoMmw8aT9tV35MLXUhSh1CK2YlYz17uO677bvuu+y77rvtu+257r7oveKam9a11ITYjN2O2tc8Dmw2XDxlMGo2aiRyOnQgeCwXexx2KGctfzFuMGHIlbntu+y67rruuu247L3tuO+57r7o/27is92Z04DXhfuFWzlkDGMxZQxoUnQjei19KQgvGHAgYjtqPZTBk8OUzoe47brtuu267rvsuO297rjuu+266Jdr2ILXnceeybPiOmk6XTdjC1svKkhjPAMhelJ/LCh+LpXHlseYzIXVncyAue2967rtuu277bvsu+247rjtuOiufjufyI3NktaiGQhvCV8KUjYVkzklVi92OnkhbEU6az2b1Y7djd+N2YTZt7jsuuy97LjsuO247LvvuO647rvrvdU2a8qk+2I0nG0/XwhbBnNg2ZIAB14haTpzIABJPIzOhdOz77jrtNqJ5o257bvsu+277Lvuuu647rjuue677b7nMpPzx/J4y1dTN18PUCnQu8JQVgpwI3ZSejIJk8qK6IXMt+i47LbbsvCVue6767vsvey77rjtu+2577jvuOi4sW0zF9swUAUEWQpVAxOL9ZgBCmYifVUEK2EAK6bQnu6AyIjlvfGO1Y3Mb7juu+y67Lvtu+267bvtuO+57r7NlphLEE1JeQ5ICl4GWHfgpN5RWzh9J3shZjdcV9atz5Tvu9GK4L31jT9kE3u97LrsuO297Lvtuuu77rngtuiz1KNCajJmNVs0YAlSNy+w5bsgGmMoCixiNWUJaH/pot2b3KHpj+Kx+bHFW2V3uO277Lvtuu247bvsu++577jsgfvuNCU3XzRnNV4Lbmzot+hgTg50RxE4XTJnIwuT8LjYm9C997TptPGv+aXESA==' + +b = base64.standard_b64decode(a) +print(0 ^ b[1]) +c = [] +for i in range(len(b)): + if i % 2 == 0: + c.append( b[i] ^ 188 ) + else: + c.append( b[i] ^ 236) +bit = Image.frombytes('L', (64,64), bytes(c)) +bit.show() \ No newline at end of file diff --git a/tau_p_co.py b/tau_p_co.py index e5a8a1e..0f528a1 100644 --- a/tau_p_co.py +++ b/tau_p_co.py @@ -11,12 +11,12 @@ def error(f,x,y): return sp.sum((f(x)-y)**2) if __name__ == '__main__': - - matches = Matches('wos-data-new') + + matches = Matches('wos-data-new-3') max_round = 15 survivals = {} - with open('survivals.json', 'r') as f: + with open('survivals-3.json', 'r') as f: survivals = json.load(f) neighbors = {} @@ -42,7 +42,7 @@ if __name__ == '__main__': n[r['b']] = [r['a']] neighbors[matches.names[i]] = n - for i in range(max_round): + for i in range(max_round-1): co = [] for j in range(len(matches.data)): coop = 0 @@ -59,6 +59,8 @@ if __name__ == '__main__': bx.append(co) if co: coopr.append(np.average(co)) + else: + coopr.append(0) for i in range(max_round-1): @@ -114,17 +116,23 @@ if __name__ == '__main__': # ax2.tick_params(axis='y', labelcolor=red) # plt.tight_layout() - # # plt.show() - # plt.savefig('graph/tau_p_co_plot.eps') + # plt.show() + # # plt.savefig('graph/tau_p_co_plot.eps') tau2 = [] coopr2 = [] tau_r = [] coopr_r = [] + tau3 = [] + coopr3 = [] for i in range(len(tau)): if tau[i] <= 720: tau2.append(tau[i]) coopr2.append(coopr[i]) + if tau[i] - 316 > 0.00001: + tau3.append(tau[i]) + coopr3.append(coopr[i]) + else: tau_r.append(tau[i]) coopr_r.append(coopr[i]) @@ -153,7 +161,5 @@ if __name__ == '__main__': plt.show() # plt.savefig('graph/tau_p_co_sca.eps') - - # 皮尔逊相关系数 print("pearson: %f, p-value: %f" % pearsonr(tau2, coopr2)) \ No newline at end of file diff --git a/taup_and_new_partner.py b/taup_and_new_partner.py index e474f88..aba118b 100644 --- a/taup_and_new_partner.py +++ b/taup_and_new_partner.py @@ -5,14 +5,14 @@ from island.matches import Matches import numpy as np from scipy.stats import pearsonr -matches = Matches('wos-data-new') +matches = Matches('wos-data-new-2') k = np.arange(0, 1441, 144) succ = np.zeros(11) total = np.zeros(11) survivals = {} -with open('survivals.json', 'r') as f: +with open('survivals-2.json', 'r') as f: survivals = json.load(f) neighbors = {}