From 0ef1ced753ddd1f88f6980db7f3a2666e349d76b Mon Sep 17 00:00:00 2001 From: wjsjwr Date: Fri, 22 Jul 2022 21:36:12 +0800 Subject: [PATCH] new --- calc_coopr_rate.py | 22 +++--- calc_survivals.py | 17 +++-- eid_calc.py | 83 +++++++++++------------ eid_plot.py | 37 ++++++++--- fc_plot.py | 39 +++++++---- gen_neighborhood_new.py | 18 +++++ island/match.py | 11 +++ island/matches.py | 18 +++-- outputs/CRAW_NEW.json | 1 + outputs/CRAW_NEW_BA.json | 1 + outputs/CRAW_NEW_WS.json | 1 + outputs/CR_NEW.csv | 1 + outputs/CR_NEW_BA.csv | 1 + outputs/CR_NEW_WS.csv | 1 + outputs/EID_$NEW_BA.csv | 1 + outputs/EID_$NEW_WS.csv | 1 + outputs/EID_NEW_BA.csv | 1 + outputs/EID_NEW_WS.csv | 1 + outputs/EID_new_detail.json | 1 + outputs/neighborhood_new.json | 1 + outputs/survivals_new.json | 1 + theta_plot.py | 22 +++--- theta_r.py | 122 ++++++++++++++++++++++++++++++++++ 23 files changed, 302 insertions(+), 100 deletions(-) create mode 100644 gen_neighborhood_new.py create mode 100644 outputs/CRAW_NEW.json create mode 100644 outputs/CRAW_NEW_BA.json create mode 100644 outputs/CRAW_NEW_WS.json create mode 100644 outputs/CR_NEW.csv create mode 100644 outputs/CR_NEW_BA.csv create mode 100644 outputs/CR_NEW_WS.csv create mode 100644 outputs/EID_$NEW_BA.csv create mode 100644 outputs/EID_$NEW_WS.csv create mode 100644 outputs/EID_NEW_BA.csv create mode 100644 outputs/EID_NEW_WS.csv create mode 100644 outputs/EID_new_detail.json create mode 100644 outputs/neighborhood_new.json create mode 100644 outputs/survivals_new.json create mode 100644 theta_r.py diff --git a/calc_coopr_rate.py b/calc_coopr_rate.py index 1a11956..e40a6c0 100644 --- a/calc_coopr_rate.py +++ b/calc_coopr_rate.py @@ -5,10 +5,12 @@ import csv import json -def calcAndSave(mode): - matches = Matches.from_profile(mode) - times = np.zeros(15) - cs = np.zeros(15) +def calcAndSave(mode, network_type=None): + MAX_ROUND = 30 + # matches = Matches.from_profile(mode) + matches = Matches('wos-data-2022', network_type=network_type) + times = np.zeros(MAX_ROUND) + cs = np.zeros(MAX_ROUND) crs = [] for m in matches.data: maxr = int(m.query('game', 'created').first()['info']['game_end_at']) @@ -26,17 +28,19 @@ def calcAndSave(mode): cs[r-1] += coop c[r - 1] = coop / (len(rows) * 2) crs.append(c) - for i in range(15): + for i in range(MAX_ROUND): if(times[i] == 0): times[i] = 1 cs /= times - with open("outputs/CR_%s.csv"%mode, 'w') as f: + with open("outputs/CR_%s_%s.csv"%(mode, network_type), 'w') as f: csv.writer(f).writerow(cs) - with open("outputs/CRAW_%s.json"%mode, 'w') as f: + with open("outputs/CRAW_%s_%s.json"%(mode, network_type), 'w') as f: json.dump(crs, f) if __name__ == '__main__': - calcAndSave('CLASSIC') - calcAndSave('SURVIVE') + # calcAndSave('CLASSIC') + # calcAndSave('SURVIVE') + calcAndSave('NEW', 'BA') + calcAndSave('NEW', 'WS') diff --git a/calc_survivals.py b/calc_survivals.py index a72e254..81b0740 100644 --- a/calc_survivals.py +++ b/calc_survivals.py @@ -4,7 +4,9 @@ from island.match import Match result = {} -for f in Path('wos-data-compete').iterdir(): +MAX_ROUND = 30 + +for f in Path('wos-data-2022').iterdir(): p = Path(f) if p.suffix == '.json': name = p.stem @@ -18,7 +20,7 @@ for f in Path('wos-data-compete').iterdir(): for p in m.query('player', 'join').select('pid').raw_data: foods[p['pid']] = conf['start_resource'] survivals[0].append(p['pid']) - + for i in range(1, game_end_at+1): survivals[i] = [] for a in m.query('action', 'done').where(lambda x: x['rno'] == i).raw_data: @@ -28,22 +30,25 @@ for f in Path('wos-data-compete').iterdir(): foods[j] -= conf['rounds']['consumption'] if foods[j] > 0: survivals[i].append(j) - + result[name] = survivals # print(json.dumps(result)) -average = [0]*20 +with open("outputs/survivals_new.json", 'w') as f: + json.dump(result, f) + +average = [0]*MAX_ROUND for k, v in result.items(): for r, l in v.items(): average[int(r)] += len(l) -for i in range(20): +for i in range(MAX_ROUND): average[i] /= len(result) idx=[] s=[] -for i in range(1,16): +for i in range(1,MAX_ROUND): idx.append(str(i)) s.append("%.1f"%average[i]) diff --git a/eid_calc.py b/eid_calc.py index aee29a1..18f13dd 100644 --- a/eid_calc.py +++ b/eid_calc.py @@ -16,21 +16,29 @@ E_{i,D}=所有邻居的剩余时间 - (背叛对象的剩余时间 + 与背叛 import csv import json from functools import reduce +from sre_constants import MAX_REPEAT +from tkinter.tix import MAX import numpy as np from island.match import Match from island.matches import Matches +MAX_ROUND = 28 class Eid: def __init__(self): + self.details = {} self.survivals = {} - with open('outputs/survivals.json','r') as f: + with open('outputs/survivals_new.json','r') as f: self.survivals = json.load(f) self.neighbors = {} - with open('outputs/neighborhood.json', 'r') as f: + with open('outputs/neighborhood_new.json', 'r') as f: self.neighbors = json.load(f) - self.seasonSurvive = Matches.from_profile('SURVIVE') - self.seasonClassic = Matches.from_profile('CLASSIC') + self.seasons = [ + dict(season=Matches('wos-data-2022', network_type='BA'), name='NEW_BA'), + dict(season=Matches('wos-data-2022', network_type='WS'), name='NEW_WS') + ] + # self.seasonSurvive = Matches.from_profile('SURVIVE') + # self.seasonClassic = Matches.from_profile('CLASSIC') def getNeighborTR(self, m, r, p, s, d): @@ -135,46 +143,35 @@ class Eid: sigma += e return (sigma, ans) + def calc_season(self, season, name): + """ + calc E_i,D + """ + avg = np.zeros(MAX_ROUND) + cnt = np.zeros(MAX_ROUND) + for m in season.data: + d = {} + maxr = int(m.query('game', 'created').first()['info']['game_end_at']) + for r in range(1, maxr): + sigma, ans = self.calcRoundData(m, r) + d[r] = ans + avg[r-1] += sigma + cnt[r-1] += len(ans) + self.details[m.name] = d + print(cnt) + for i in range(MAX_ROUND): + if cnt[i] == 0: + cnt[i] = 1 + avg /= cnt + with open(f'outputs/EID_{name}.csv', 'w') as f: + csv.writer(f).writerow(avg) + return avg + def calc(self): - detail = {} - avgC = np.zeros(15) - avgS = np.zeros(15) - cnt = np.zeros(15) - for m in self.seasonClassic.data: - d = {} - maxr = int(m.query('game', 'created').first()['info']['game_end_at']) - for r in range(1, maxr): - sigma, ans = self.calcRoundData(m, r) - d[r] = ans - avgC[r-1] += sigma - cnt[r-1] += len(ans) - detail[m.name] = d - print(cnt) - for i in range(15): - if cnt[i] == 0: - cnt[i] = 1 - avgC /= cnt - cnt = np.zeros(15) - for m in self.seasonSurvive.data: - d = {} - maxr = int(m.query('game', 'created').first()['info']['game_end_at']) - for r in range(1, maxr): - sigma, ans = self.calcRoundData(m, r) - d[r] = ans - avgS[r-1] += sigma - cnt[r-1] += len(ans) - detail[m.name] = d - print(cnt) - for i in range(15): - if cnt[i] == 0: - cnt[i] = 1 - avgS /= cnt - with open('outputs/EID_CLASSIC.csv', 'w') as f: - csv.writer(f).writerow(avgC) - with open('outputs/EID_SURVIVE.csv', 'w') as f: - csv.writer(f).writerow(avgS) - with open('outputs/EID_detail.json', 'w') as f: - json.dump(detail, f) + for s in self.seasons: + self.calc_season(s['season'], s['name']) + with open('outputs/EID_new_detail.json', 'w') as f: + json.dump(self.details, f) if __name__ == '__main__': e = Eid() diff --git a/eid_plot.py b/eid_plot.py index cf35aed..41a8921 100644 --- a/eid_plot.py +++ b/eid_plot.py @@ -9,7 +9,7 @@ red = '#d63031' def error(f,x,y): return sp.sum((f(x)-y)**2) -def p1(x, coopr, e, postfix, show=True): +def p1(x, coopr, e, postfix, show=True, max_round=15): fig = plt.figure(figsize=(3, 2)) ax = fig.gca() ax.plot(x, coopr, color=blue, linewidth=2, label=r"f$_{\rm c}$") @@ -21,7 +21,7 @@ def p1(x, coopr, e, postfix, show=True): ax2.set_yticks(sp.linspace(-1500, 200, 5)) ax2.tick_params(labelsize=10) ax.tick_params(labelsize=10) - ax.set_xlim(1, 15) + ax.set_xlim(1, max_round) ax.set_xlabel("Rounds", size=11) ax.set_ylabel(r"f$_{\rm c}$", color=blue, size=11) ax.tick_params(axis='y', labelcolor=blue) @@ -71,25 +71,40 @@ def p2(e, coopr, postfix, show=True, showline=True): def p2c(e,c,m,s): p2(e,c,m,s,False) -def plot(mode, show, isp1): - coopr = np.loadtxt("outputs/CR_%s.csv" % mode, delimiter=',') - x = np.arange(1, 16) - e = np.loadtxt("outputs/EID_%s.csv" % mode, delimiter=',') +def plot(mode, show, network_type, isp1): + coopr = np.loadtxt("outputs/CR_%s_%s.csv" % (mode, network_type), delimiter=',') + e = np.loadtxt("outputs/EID_%s_%s.csv" % (mode, network_type), delimiter=',') if isp1: - p1(x, coopr, e, mode, show) + if mode == 'NEW': + x = np.arange(1, 29) + else: + x = np.arange(1, 16) + p1(x, coopr[:28], e, mode, show, max_round=28) else: if mode == 'SURVIVE': p2(e[:-1], coopr[:-1], mode, show) - else: + elif mode == 'CLASSIC': p2c(e[:-1], coopr[:-1], mode, show) + else: + p2(e[:-1], coopr[:27], f'{mode}_{network_type}', show) if __name__ == '__main__': - # eid_plot c/s 1/2 t/f - mode = 'CLASSIC' if argv[1] == 'c' else 'SURVIVE' + # eid_plot c/s/nw/nb 1/2 t/f + network_type = None + if argv[1] == 'c': + mode = 'CLASSIC' + elif argv[1] == 's': + mode = 'SURVIVE' + elif argv[1] == 'nb': + mode = 'NEW' + network_type = 'BA' + else: + mode = 'NEW' + network_type = 'WS' isp1 = argv[2] == '1' show = argv[3] == 't' - plot(mode, show, isp1) + plot(mode, show, network_type, isp1) """ SURVIVE diff --git a/fc_plot.py b/fc_plot.py index 2008a97..af6a7ce 100644 --- a/fc_plot.py +++ b/fc_plot.py @@ -19,7 +19,7 @@ nowak_survive = [0.50017833, 0.26068193, 0.88939394, 0.9595738, 0.99796403, 0.99 santos_survive = [0.50071587, 0.27929701, 0.9098483, 0.938, 0.99437628, 0.99861352, 0.99877322, 1, 1, 1, 1, 1, 1, None, None] santos_classic = [0.49821874, 0.2757036, 0.26718917, 0.26270039, 0.25895974, 0.2562166, 0.25439971, 0.25290346, 0.25187032, 0.25097969, 0.25037406, 0.24983969, 0.24919843, 0.24884218, 0.24862843] - +MAX_ROUND = 28 def p1(x, coopr, crawx, crawy, postfix, show=True): fig = plt.figure(figsize=(5, 2)) @@ -29,17 +29,17 @@ def p1(x, coopr, crawx, crawy, postfix, show=True): ax.plot(x, ana, marker='^', linestyle='dotted', markerfacecolor='none', color=green, linewidth=2, label="Analytical") ax.plot(x, santos_survive, marker='x', linestyle='dotted', markerfacecolor='none', color=kikyo, linewidth=2, label="Baseline#1") ax.plot(x, nowak_survive, marker='*', linestyle='dotted', markerfacecolor='none', color=hanaba, linewidth=2, label="Baseline#2") - else: + elif postfix == 'CLASSIC': ax.plot(x, santos_classic, marker='x', linestyle='dotted', markerfacecolor='none', color=kikyo, linewidth=2, label="Baseline#1") ax.plot(x, nowak_classic, marker='*', linestyle='dotted', markerfacecolor='none', color=hanaba, linewidth=2, label="Baseline#2") ax.plot(x, coopr, marker='o', linestyle='dotted', markerfacecolor='none', color=blue, linewidth=2, label="Human") - ax.scatter(crawx, crawy, s=15, c='dimgray', marker='x', linewidth=0.5, alpha=0.4) + ax.scatter(crawx, crawy, s=MAX_ROUND, c='dimgray', marker='x', linewidth=0.5, alpha=0.4) ax.set_ylim(-0.05, 1.05) - ax.set_yticks(sp.linspace(0, 1, 5)) + ax.set_yticks(np.linspace(0, 1, 5)) ax.tick_params(labelsize=10) ax.tick_params(direction='in') - ax.set_xlim(0, 16) - ax.set_xticks([1, 5, 10, 15]) + ax.set_xlim(0, MAX_ROUND+1) + ax.set_xticks([1, 5, 10, 15, 20, 25, 30]) # ax.set_xticklabels(['']) ax.set_xlabel("Rounds", size=11) ax.set_ylabel(r"f$_{\rm c}$", size=11, fontstyle='normal') @@ -54,20 +54,31 @@ def p1(x, coopr, crawx, crawy, postfix, show=True): plt.savefig("graph/fc_plot_%s.pdf" % postfix) -def plot(mode, show): - coopr = np.loadtxt("outputs/CR_%s.csv" % mode, delimiter=',') +def plot(mode, show, network_type=None): + coopr = np.loadtxt("outputs/CR_%s_%s.csv" % (mode, network_type), delimiter=',') crawx, crawy = [],[] - with open("outputs/CRAW_%s.json" % mode) as f: + with open("outputs/CRAW_%s_%s.json" % (mode, network_type)) as f: data = json.load(f) for l in data: for i in range(len(l)): crawx.append((i + 1) + random.uniform(-0.25, 0.25)) crawy.append(l[i]) - x = np.arange(1, 16) - p1(x, coopr, crawx, crawy, mode, show) + x = np.arange(1, MAX_ROUND + 1) + p1(x, coopr[:MAX_ROUND], crawx, crawy, f'{mode}_{network_type}', show) if __name__ == '__main__': - # fc_plot c/s t/f - mode = 'CLASSIC' if argv[1] == 'c' else 'SURVIVE' + # fc_plot c/s/nb/nw t/f + network_type = None + if argv[1] == 'c': + mode = 'CLASSIC' + elif argv[1] == 's': + mode = 'SURVIVE' + elif argv[1] == 'nb': + mode = 'NEW' + network_type = 'BA' + else: + mode = 'NEW' + network_type = 'WS' + show = argv[2] == 't' - plot(mode, show) + plot(mode, show, network_type) diff --git a/gen_neighborhood_new.py b/gen_neighborhood_new.py new file mode 100644 index 0000000..f3468a2 --- /dev/null +++ b/gen_neighborhood_new.py @@ -0,0 +1,18 @@ +import json +from island.matches import Matches + + +# matches = Matches.from_profile_expr(lambda r:True) +matches = Matches('wos-data-2022') + +neighbors = {} + +for i in range(len(matches.data)): + m = matches.data[i] + n = {} + for r in m.query('player', 'sight').raw_data: + n[r['player']] = r['sight'] + neighbors[matches.names[i]] = n + +with open('outputs/neighborhood_new.json', 'w') as f: + json.dump(neighbors, f) \ No newline at end of file diff --git a/island/match.py b/island/match.py index d5f1421..7cf7802 100644 --- a/island/match.py +++ b/island/match.py @@ -149,6 +149,17 @@ class Match: return trs + + def network_type(self): + """ + 返回网络类型,如果找不到,则返回None + """ + try: + return json.loads(self.query('game', 'created').first()['info']['config'])['network']['type'] + except: + print("Can't get network: %s" % json.loads(self.query('game', 'created').first())) + return None + @staticmethod def read_from_json(json_path): """ diff --git a/island/matches.py b/island/matches.py index 3e1ff97..891c10e 100644 --- a/island/matches.py +++ b/island/matches.py @@ -5,20 +5,24 @@ import csv class Matches: - def __init__(self, source, from_list=False): + def __init__(self, source, from_list=False, network_type=None): self.data = [] self.names = [] if from_list: for l in source: - self.data.append(Match.read_from_json(l)) - self.data[-1].name = Path(l).stem - self.names.append(Path(l).stem) + m = Match.read_from_json(l) + if network_type == None or m.network_type() == network_type: + self.data.append(m) + self.data[-1].name = Path(l).stem + 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.data[-1].name = Path(f).stem - self.names.append(Path(f).stem) + m = Match.read_from_json(str(f)) + if network_type == None or m.network_type() == network_type: + self.data.append(m) + self.data[-1].name = Path(f).stem + self.names.append(Path(f).stem) @staticmethod def from_profile(pname, ppos='profile.csv'): diff --git a/outputs/CRAW_NEW.json b/outputs/CRAW_NEW.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/outputs/CRAW_NEW.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/outputs/CRAW_NEW_BA.json b/outputs/CRAW_NEW_BA.json new file mode 100644 index 0000000..32d26c5 --- /dev/null +++ b/outputs/CRAW_NEW_BA.json @@ -0,0 +1 @@ +[[0.7837837837837838, 0.6785714285714286, 0.76, 0.7727272727272727, 0.7843137254901961, 0.7363636363636363, 0.7653061224489796, 0.7608695652173914, 0.7325581395348837, 0.6794871794871795, 0.7307692307692307], [0.8166666666666667, 0.73, 0.7941176470588235, 0.8292682926829268, 0.75, 0.7159090909090909, 0.7674418604651163, 0.7631578947368421, 0.7, 0.7051282051282052, 0.6219512195121951, 0.6309523809523809, 0.6351351351351351, 0.5697674418604651, 0.48484848484848486, 0.625, 0.6447368421052632, 0.6621621621621622, 0.6125, 0.578125, 0.5714285714285714, 0.5285714285714286, 0.5925925925925926, 0.5833333333333334, 0.5833333333333334, 0.5645161290322581, 0.6212121212121212, 0.65625], [0.9433962264150944, 0.8974358974358975, 0.8461538461538461, 0.8103448275862069, 0.8260869565217391, 0.8636363636363636, 0.8333333333333334, 0.8529411764705882, 0.9047619047619048, 0.8809523809523809, 0.8235294117647058, 0.7777777777777778, 0.75, 0.825, 0.8095238095238095, 0.6666666666666666, 0.7105263157894737, 0.78125], [1.0, 0.9210526315789473, 0.8333333333333334, 0.9166666666666666, 0.875, 0.9166666666666666, 0.8636363636363636, 0.8846153846153846, 0.8571428571428571, 0.8333333333333334, 0.7727272727272727, 0.8181818181818182, 0.8846153846153846, 0.7692307692307693, 0.8333333333333334, 0.8125, 0.78125, 0.8333333333333334, 0.8333333333333334, 0.8333333333333334, 0.6666666666666666, 0.8333333333333334, 0.7083333333333334, 0.75, 0.7, 0.8125]] \ No newline at end of file diff --git a/outputs/CRAW_NEW_WS.json b/outputs/CRAW_NEW_WS.json new file mode 100644 index 0000000..97f08f3 --- /dev/null +++ b/outputs/CRAW_NEW_WS.json @@ -0,0 +1 @@ +[[0.984375, 0.9705882352941176, 0.96875, 0.9230769230769231, 0.90625, 0.9333333333333333, 0.9, 0.75, 0.9117647058823529, 0.9117647058823529, 0.90625, 0.96875, 0.8666666666666667, 0.8888888888888888, 0.8888888888888888, 0.8125, 0.7666666666666667, 0.8214285714285714, 0.7142857142857143, 0.7058823529411765, 0.5769230769230769, 0.6666666666666666, 0.5625, 0.5769230769230769, 0.5769230769230769, 0.59375, 0.7142857142857143, 0.47058823529411764], [0.8809523809523809, 0.8055555555555556, 0.8333333333333334, 0.85, 0.8823529411764706, 0.8823529411764706, 0.8125, 0.8333333333333334, 0.8076923076923077, 0.9, 0.8846153846153846, 0.7916666666666666, 0.75, 0.75, 0.85, 0.8076923076923077, 0.75, 0.6923076923076923, 0.8, 0.7307692307692307, 0.75, 0.5416666666666666, 0.5, 0.5909090909090909], [0.8, 0.625, 0.7777777777777778, 0.8888888888888888, 0.7857142857142857, 0.8888888888888888, 0.875, 0.9090909090909091, 0.9, 0.8888888888888888], [0.7222222222222222, 0.7777777777777778, 0.8333333333333334, 0.8333333333333334, 0.8571428571428571, 0.9285714285714286, 0.8571428571428571, 0.8571428571428571, 0.8571428571428571, 0.8], [0.9, 0.7, 0.75, 0.9, 0.8571428571428571, 0.75, 0.8571428571428571, 0.7857142857142857, 0.6875, 0.5, 0.5, 0.6666666666666666, 0.8333333333333334, 0.8, 0.75, 0.9, 0.6666666666666666, 0.75, 0.75, 0.75, 0.8, 0.75, 0.8333333333333334, 0.6666666666666666, 0.75]] \ No newline at end of file diff --git a/outputs/CR_NEW.csv b/outputs/CR_NEW.csv new file mode 100644 index 0000000..1cc271c --- /dev/null +++ b/outputs/CR_NEW.csv @@ -0,0 +1 @@ +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/outputs/CR_NEW_BA.csv b/outputs/CR_NEW_BA.csv new file mode 100644 index 0000000..745c7d3 --- /dev/null +++ b/outputs/CR_NEW_BA.csv @@ -0,0 +1 @@ +0.8757062146892656,0.774390243902439,0.795774647887324,0.8102189781021898,0.7884615384615384,0.7669172932330827,0.7862903225806451,0.7894736842105263,0.7669491525423728,0.7432432432432432,0.7083333333333334,0.6971830985915493,0.7142857142857143,0.6710526315789473,0.6515151515151515,0.6753246753246753,0.6917808219178082,0.7279411764705882,0.6634615384615384,0.6477272727272727,0.5957446808510638,0.5909090909090909,0.6282051282051282,0.625,0.6086956521739131,0.6153846153846154,0.6212121212121212,0.65625,0.0,0.0 diff --git a/outputs/CR_NEW_WS.csv b/outputs/CR_NEW_WS.csv new file mode 100644 index 0000000..32dc6b3 --- /dev/null +++ b/outputs/CR_NEW_WS.csv @@ -0,0 +1 @@ +0.8902439024390244,0.8032786885245902,0.853448275862069,0.8773584905660378,0.8703703703703703,0.8888888888888888,0.8596491228070176,0.8240740740740741,0.8454545454545455,0.8529411764705882,0.8285714285714286,0.8529411764705882,0.8181818181818182,0.8333333333333334,0.859375,0.8235294117647058,0.7413793103448276,0.7575757575757576,0.75,0.7222222222222222,0.6833333333333333,0.6363636363636364,0.5882352941176471,0.6,0.631578947368421,0.59375,0.7142857142857143,0.47058823529411764,0.0,0.0 diff --git a/outputs/EID_$NEW_BA.csv b/outputs/EID_$NEW_BA.csv new file mode 100644 index 0000000..99479db --- /dev/null +++ b/outputs/EID_$NEW_BA.csv @@ -0,0 +1 @@ +-203.46853146853147,-364.35664335664336,-303.83916083916085,-418.8041958041958,-408.3356643356643,-433.4195804195804,-387.8811188811189,-321.7832167832168,-362.73426573426576,-397.8811188811189,-351.02150537634407,-386.505376344086,-331.752688172043,-470.494623655914,-377.01075268817203,-421.752688172043,-356.9569892473118,-251.73015873015873,-170.1904761904762,-200.57142857142858,-274.2857142857143,-303.9047619047619,-246.14285714285714,-211.04761904761904,-42.41269841269841,33.90909090909091,124.6590909090909,0.0 diff --git a/outputs/EID_$NEW_WS.csv b/outputs/EID_$NEW_WS.csv new file mode 100644 index 0000000..fdbdb98 --- /dev/null +++ b/outputs/EID_$NEW_WS.csv @@ -0,0 +1 @@ +221.58620689655172,220.13793103448276,227.80459770114942,115.86206896551724,-107.86206896551724,-119.77011494252874,-114.94252873563218,22.080459770114942,59.770114942528735,-115.47169811320755,-23.39622641509434,-94.33962264150944,-109.81132075471699,42.264150943396224,70.16981132075472,-2.2641509433962264,-65.64150943396227,34.716981132075475,0.0,-140.0,-23.39622641509434,-163.0188679245283,-142.26415094339623,-174.19354838709677,-43.63636363636363,-5.545454545454546,169.0,0.0 diff --git a/outputs/EID_NEW_BA.csv b/outputs/EID_NEW_BA.csv new file mode 100644 index 0000000..c7de5ff --- /dev/null +++ b/outputs/EID_NEW_BA.csv @@ -0,0 +1 @@ +2602.671328671329,2738.048951048951,2240.4055944055945,2148.902097902098,2126.125874125874,2413.006993006993,2532.8811188811187,2209.006993006993,2499.230769230769,2418.3636363636365,2289.569892473118,2191.989247311828,2254.559139784946,2381.8387096774195,2083.7096774193546,2352.8172043010754,2691.8064516129034,2543.84126984127,2766.031746031746,2317.777777777778,2422.15873015873,2524.222222222222,2464.095238095238,2659.6666666666665,2575.84126984127,3127.7954545454545,2913.7727272727275,0.0 diff --git a/outputs/EID_NEW_WS.csv b/outputs/EID_NEW_WS.csv new file mode 100644 index 0000000..1931f15 --- /dev/null +++ b/outputs/EID_NEW_WS.csv @@ -0,0 +1 @@ +4158.735632183908,4271.0344827586205,4125.241379310345,3635.862068965517,3409.655172413793,3261.1494252873563,3451.0344827586205,3672.183908045977,3746.896551724138,3076.9811320754716,3836.2264150943397,3801.8867924528304,3747.5471698113206,3430.188679245283,3855.8490566037735,3593.396226415094,3608.301886792453,3701.8867924528304,3258.1132075471696,3515.4716981132074,3428.6792452830186,3148.6792452830186,3881.8867924528304,3901.935483870968,3000.0,3730.5,3583.6363636363635,0.0 diff --git a/outputs/EID_new_detail.json b/outputs/EID_new_detail.json new file mode 100644 index 0000000..10932ba --- /dev/null +++ b/outputs/EID_new_detail.json @@ -0,0 +1 @@ +{"G646": {"1": {"14447": 2139, "14448": 2491, "14449": 1017, "14450": 4434, "14451": 2379, "14452": 11296, "14453": 818, "14454": 2860, "14455": 15414, "14456": 8712, "14457": 14492, "14458": 1398, "14459": 898, "14460": 1633, "14461": 871, "14462": 734, "14463": 18593, "14464": 438, "14465": 2219, "14466": 2300, "14467": 3576, "14468": 618, "14469": 8492, "14470": 458, "14471": 4952, "14472": 1718, "14473": 1612, "14474": 2940, "14475": 2323, "14476": 1914, "14477": 720, "14478": 780, "14479": 5560, "14480": 5263, "14481": 1557, "14482": 4657, "14483": 1531, "14484": 2074, "14485": 2034, "14486": 8329, "14487": 3542, "14488": 618, "14489": 3520, "14490": 4371, "14491": 778, "14492": 750, "14493": 198, "14494": 2511, "14495": 1996, "14496": 2039}, "2": {"14447": 2140, "14448": 2299, "14449": 2161, "14450": 5639, "14451": 1600, "14452": 12841, "14453": 121, "14454": 2520, "14455": 16080, "14456": 5819, "14457": 14280, "14458": 1679, "14459": 1440, "14460": 1679, "14461": 2359, "14462": 2099, "14463": 19340, "14464": 1, "14465": 620, "14466": 1800, "14467": 3221, "14468": 461, "14469": 8280, "14470": 1080, "14471": 3439, "14472": 5140, "14473": 3619, "14474": 620, "14475": 3119, "14476": 559, "14477": 1080, "14478": 920, "14479": 2000, "14480": 6040, "14481": 2600, "14482": 2680, "14483": 2660, "14484": 659, "14485": 899, "14486": 6599, "14487": 4461, "14488": 461, "14489": 2060, "14490": 5599, "14491": 801, "14492": 1640, "14493": 2620, "14494": 1839, "14495": 2520, "14496": 1660}, "3": {"14447": 600, "14448": 2089, "14449": 1960, "14450": 3460, "14451": 1540, "14452": 9940, "14453": 360, "14454": 1600, "14455": 11451, "14456": 4920, "14457": 11640, "14458": 700, "14459": 840, "14460": 1529, "14461": 560, "14462": 540, "14463": 14431, "14464": 320, "14465": 940, "14466": 160, "14467": 3500, "14468": 820, "14469": 8600, "14470": 660, "14471": 2720, "14472": 2420, "14473": 1500, "14474": 360, "14475": 1800, "14476": 700, "14477": 840, "14478": 600, "14479": 3780, "14480": 4360, "14481": 1580, "14482": 2720, "14483": 1209, "14484": 1020, "14485": 1100, "14486": 6609, "14487": 2580, "14488": 820, "14489": 1920, "14490": 3180, "14491": 880, "14492": 720, "14493": 980, "14494": 2660, "14495": 1240, "14496": 600}, "4": {"14447": 388, "14448": 1228, "14449": 1800, "14450": 3819, "14451": 1228, "14452": 10387, "14453": 840, "14454": 2100, "14455": 13187, "14456": 4627, "14457": 11408, "14458": 1559, "14459": 60, "14460": 928, "14461": 179, "14462": 879, "14463": 12647, "14464": 420, "14465": 240, "14466": 300, "14467": 1980, "14468": 480, "14469": 7319, "14470": 60, "14471": 1859, "14472": 2380, "14473": 1979, "14474": 420, "14475": 1589, "14476": 1419, "14477": 360, "14478": 720, "14479": 2300, "14480": 5248, "14481": 508, "14482": 2688, "14483": 1408, "14484": 1179, "14485": 419, "14486": 4327, "14487": 3060, "14488": 480, "14489": 860, "14490": 2339, "14491": 1440, "14492": 539, "14493": 700, "14494": 1899, "14495": 508, "14496": 120}, "5": {"14447": 1724, "14448": 1572, "14449": 1739, "14450": 3656, "14451": 1034, "14452": 9403, "14453": 299, "14454": 1320, "14455": 13062, "14456": 4564, "14457": 10235, "14458": 1017, "14459": 480, "14460": 1136, "14461": 373, "14462": 657, "14463": 14436, "14464": 299, "14465": 347, "14466": 600, "14467": 3223, "14468": 1063, "14469": 7645, "14470": 0, "14471": 1813, "14472": 1724, "14473": 1543, "14474": 960, "14475": 1319, "14476": 953, "14477": 1124, "14478": 1800, "14479": 4344, "14480": 4843, "14481": 884, "14482": 2184, "14483": 1151, "14484": 1537, "14485": 717, "14486": 6513, "14487": 2383, "14488": 1063, "14489": 1960, "14490": 3733, "14491": 1589, "14492": 672, "14493": 284, "14494": 1610, "14495": 631, "14496": 1214}, "6": {"14447": 720, "14448": 1940, "14449": 1770, "14450": 3440, "14451": 960, "14452": 12174, "14453": 260, "14454": 2160, "14455": 16269, "14456": 4780, "14457": 12469, "14458": 2000, "14459": 360, "14460": 1280, "14461": 470, "14462": 560, "14463": 14389, "14464": 0, "14465": 1619, "14466": 360, "14467": 2490, "14468": 780, "14469": 7310, "14470": 0, "14471": 2300, "14472": 2220, "14473": 1100, "14474": 1379, "14475": 2160, "14476": 140, "14477": 1559, "14478": 1440, "14479": 2759, "14480": 6480, "14481": 1140, "14482": 2420, "14483": 860, "14484": 560, "14485": 560, "14486": 4899, "14487": 4319, "14488": 780, "14489": 2459, "14490": 3345, "14491": 2180, "14492": 140, "14493": 420, "14494": 700, "14495": 840, "14496": 1590}, "7": {"14447": 1400, "14448": 3010, "14449": 1975, "14450": 5116, "14451": 1880, "14452": 11321, "14453": 735, "14454": 2335, "14455": 14631, "14456": 5736, "14457": 13411, "14458": 2796, "14459": 235, "14460": 2316, "14461": 1035, "14462": 1096, "14463": 15971, "14464": 350, "14465": 120, "14466": 895, "14467": 3436, "14468": 436, "14469": 10071, "14470": 175, "14471": 3071, "14472": 2221, "14473": 2835, "14474": 1500, "14475": 2715, "14476": 850, "14477": 801, "14478": 2040, "14479": 3141, "14480": 6375, "14481": 641, "14482": 2600, "14483": 2650, "14484": 876, "14485": 876, "14486": 6636, "14487": 4216, "14488": 436, "14489": 1500, "14490": 2835, "14491": 2415, "14492": 850, "14493": 421, "14494": 2435, "14495": 480, "14496": 1161}, "8": {"14447": 1190, "14448": 1048, "14449": 1480, "14450": 2729, "14451": 620, "14452": 10848, "14453": 40, "14454": 2149, "14455": 11268, "14456": 4889, "14457": 10707, "14458": 1768, "14459": 329, "14460": 718, "14461": 0, "14462": 0, "14463": 15108, "14464": 369, "14465": 999, "14466": 1639, "14467": 1809, "14468": 40, "14469": 5269, "14470": 329, "14471": 3808, "14472": 1820, "14473": 380, "14474": 2609, "14475": 718, "14476": 329, "14477": 599, "14478": 1170, "14479": 2849, "14480": 5268, "14481": 680, "14482": 2060, "14483": 1138, "14484": 0, "14485": 0, "14486": 5638, "14487": 3898, "14488": 40, "14489": 2419, "14490": 2520, "14491": 1720, "14492": 40, "14493": 0, "14494": 800, "14495": 860, "14496": 1080}, "9": {"14447": 2639, "14448": 3741, "14449": 1440, "14450": 3102, "14451": 1439, "14452": 10960, "14453": 1300, "14454": 2801, "14455": 11760, "14456": 7840, "14457": 10681, "14458": 3461, "14459": 1361, "14460": 1061, "14461": 940, "14462": 1061, "14463": 17759, "14464": 1361, "14465": 0, "14466": 2081, "14467": 3001, "14468": 121, "14469": 7422, "14470": 1361, "14471": 4701, "14472": 1561, "14473": 940, "14474": 1440, "14475": 1560, "14476": 2561, "14477": 721, "14478": 1200, "14479": 3620, "14480": 6640, "14481": 1560, "14482": 4619, "14483": 940, "14484": 1321, "14485": 1601, "14486": 6040, "14487": 3960, "14488": 121, "14489": 1340, "14490": 3340, "14491": 760, "14492": 940, "14493": 121, "14494": 1600, "14495": 1439, "14496": 121}, "10": {"14447": 2060, "14448": 2220, "14449": 1440, "14450": 3079, "14451": 1140, "14452": 10201, "14453": 721, "14454": 2580, "14455": 10061, "14456": 6780, "14457": 8981, "14458": 1201, "14459": 780, "14460": 0, "14461": 0, "14462": 0, "14463": 14581, "14464": 780, "14465": 540, "14466": 1140, "14467": 2640, "14468": 0, "14469": 6440, "14470": 780, "14471": 3359, "14472": 1440, "14473": 720, "14474": 1139, "14475": 1321, "14476": 780, "14477": 1100, "14478": 920, "14479": 4800, "14480": 4801, "14481": 1440, "14482": 3480, "14483": 0, "14484": 0, "14485": 540, "14486": 4500, "14487": 2581, "14488": 0, "14489": 1620, "14490": 2580, "14491": 181, "14492": 0, "14493": 0, "14494": 180, "14495": 1140, "14496": 360}}, "G903": {"1": {"14677": 1380, "14678": 920, "14679": 1260, "14680": 3420, "14681": 660, "14682": 2420, "14683": 1700, "14684": 1860, "14685": 5100, "14686": 2701, "14687": 1640, "14688": 2460, "14689": 360, "14690": 1580, "14691": 3400, "14692": 300, "14693": 3240, "14694": 840, "14695": 2880, "14696": 12660, "14697": 3921, "14698": 220, "14699": 2280, "14700": 840, "14701": 2340, "14702": 1020, "14703": 1020, "14704": 5940, "14705": 2300, "14706": 1320, "14707": 1620, "14708": 3860, "14709": 3739, "14710": 980, "14711": 2080, "14712": 1760, "14713": 5100, "14714": 1920, "14715": 980, "14716": 6779, "14717": 360, "14718": 5480, "14719": 360, "14720": 1700}, "2": {"14677": 170, "14678": 1299, "14679": 2160, "14680": 2990, "14681": 1570, "14682": 3730, "14683": 1960, "14684": 830, "14685": 4020, "14686": 4459, "14687": 1570, "14688": 1420, "14689": 1520, "14690": 819, "14691": 3590, "14692": 780, "14693": 2140, "14694": 1140, "14695": 1680, "14696": 13819, "14697": 5539, "14698": 1800, "14699": 2560, "14700": 1760, "14701": 60, "14702": 1010, "14703": 530, "14704": 6359, "14705": 3269, "14706": 1380, "14707": 300, "14708": 4880, "14709": 4459, "14710": 1580, "14711": 2200, "14712": 459, "14713": 4120, "14714": 580, "14715": 1680, "14716": 7120, "14717": 400, "14718": 1860, "14719": 420, "14720": 1049}, "3": {"14677": 1252, "14678": 1297, "14679": 80, "14680": 3300, "14681": 1440, "14682": 2160, "14683": 320, "14684": 1140, "14685": 4125, "14686": 3285, "14687": 1800, "14688": 2592, "14689": 240, "14690": 1105, "14691": 3600, "14692": 0, "14693": 3235, "14694": 0, "14695": 1520, "14696": 12805, "14697": 4397, "14698": 360, "14699": 2580, "14700": 960, "14701": 775, "14702": 600, "14703": 360, "14704": 4530, "14705": 1705, "14706": 1860, "14707": 215, "14708": 2455, "14709": 3032, "14710": 1080, "14711": 1080, "14712": 1405, "14713": 3900, "14714": 420, "14715": 1440, "14716": 6900, "14717": 720, "14718": 3397, "14719": 0, "14720": 1837}, "4": {"14677": 440, "14678": 1590, "14679": 1560, "14680": 3320, "14681": 2160, "14682": 2451, "14683": 1321, "14684": 800, "14685": 4300, "14686": 3190, "14687": 1330, "14688": 1440, "14689": 241, "14690": 480, "14691": 2711, "14692": 1200, "14693": 1701, "14694": 840, "14695": 1440, "14696": 11921, "14697": 5761, "14698": 890, "14699": 1450, "14700": 601, "14701": 690, "14702": 681, "14703": 610, "14704": 5170, "14705": 1751, "14706": 920, "14707": 490, "14708": 3671, "14709": 3601, "14710": 1440, "14711": 1660, "14712": 310, "14713": 4570, "14714": 360, "14715": 720, "14716": 4680, "14717": 170, "14718": 3160, "14719": 170, "14720": 310}, "5": {"14677": 160, "14678": 1520, "14679": 720, "14680": 3400, "14681": 1240, "14682": 3359, "14683": 1080, "14684": 520, "14685": 5279, "14686": 3060, "14687": 979, "14688": 540, "14689": 0, "14690": 979, "14691": 2519, "14692": 0, "14693": 1719, "14694": 0, "14695": 1440, "14696": 10779, "14697": 4139, "14698": 659, "14699": 459, "14700": 360, "14701": 900, "14702": 160, "14703": 259, "14704": 5279, "14705": 1240, "14706": 720, "14707": 720, "14708": 3420, "14709": 2140, "14710": 1080, "14711": 1660, "14712": 880, "14713": 2959, "14714": 360, "14715": 720, "14716": 6100, "14717": 99, "14718": 3479, "14719": 99, "14720": 700}, "6": {"14677": 0, "14678": 360, "14679": 880, "14680": 4320, "14681": 1240, "14682": 4120, "14683": 780, "14684": 1080, "14685": 5520, "14686": 2880, "14687": 2160, "14688": 1860, "14689": 761, "14690": 1140, "14691": 3840, "14692": 781, "14693": 3000, "14694": 0, "14695": 3600, "14696": 11760, "14697": 4740, "14698": 720, "14699": 1800, "14700": 1660, "14701": 1920, "14702": 60, "14703": 0, "14704": 6040, "14705": 1920, "14706": 1440, "14707": 1681, "14708": 4800, "14709": 3160, "14710": 2320, "14711": 1960, "14712": 1440, "14713": 4260, "14714": 1800, "14715": 2160, "14716": 7961, "14717": 0, "14718": 4199, "14719": 0, "14720": 1140}, "7": {"14677": 700, "14678": 2396, "14679": 200, "14680": 5005, "14681": 2720, "14682": 5300, "14683": 820, "14684": 1479, "14685": 4916, "14686": 2470, "14687": 1660, "14688": 1725, "14689": 660, "14690": 970, "14691": 3620, "14692": 1440, "14693": 3220, "14694": 240, "14695": 1800, "14696": 13575, "14697": 6710, "14698": 600, "14699": 2745, "14700": 2099, "14701": 780, "14702": 800, "14703": 940, "14704": 3990, "14705": 1550, "14706": 2385, "14707": 0, "14708": 3700, "14709": 2540, "14710": 1640, "14711": 2380, "14712": 1030, "14713": 3040, "14714": 1139, "14715": 1440, "14716": 6899, "14717": 600, "14718": 2830, "14719": 960, "14720": 1390}, "8": {"14677": 0, "14678": 1020, "14679": 940, "14680": 3480, "14681": 980, "14682": 3600, "14683": 1260, "14684": 600, "14685": 4940, "14686": 2220, "14687": 2160, "14688": 360, "14689": 800, "14690": 780, "14691": 3680, "14692": 1760, "14693": 3000, "14694": 320, "14695": 1760, "14696": 10560, "14697": 5880, "14698": 720, "14699": 2160, "14700": 1760, "14701": 1020, "14702": 180, "14703": 720, "14704": 6340, "14705": 2040, "14706": 600, "14707": 300, "14708": 3380, "14709": 1740, "14710": 1340, "14711": 1440, "14712": 420, "14713": 3920, "14714": 600, "14715": 1080, "14716": 5660, "14717": 1080, "14718": 2940, "14719": 1080, "14720": 420}, "9": {"14677": 0, "14678": 740, "14679": 800, "14680": 3240, "14681": 1340, "14682": 3350, "14683": 1650, "14684": 31, "14685": 5220, "14686": 1440, "14687": 720, "14688": 1300, "14689": 1010, "14690": 580, "14691": 4470, "14692": 2489, "14693": 3710, "14694": 1049, "14695": 2380, "14696": 9950, "14697": 5990, "14698": 380, "14699": 1800, "14700": 1401, "14701": 1080, "14702": 570, "14703": 0, "14704": 5089, "14705": 2950, "14706": 720, "14707": 0, "14708": 4830, "14709": 1890, "14710": 440, "14711": 1440, "14712": 940, "14713": 4149, "14714": 31, "14715": 720, "14716": 5031, "14717": 1080, "14718": 2520, "14719": 900, "14720": 920}, "10": {"14677": 880, "14678": 1544, "14679": 920, "14680": 2880, "14681": 1760, "14682": 4101, "14683": 2880, "14684": 0, "14685": 6183, "14686": 2984, "14687": 1441, "14688": 2080, "14689": 2001, "14690": 825, "14691": 4941, "14692": 1800, "14693": 4221, "14694": 480, "14695": 2340, "14696": 10906, "14697": 6225, "14698": 181, "14699": 1561, "14700": 1760, "14701": 1700, "14702": 1080, "14703": 1, "14704": 5644, "14705": 2984, "14706": 480, "14707": 1220, "14708": 5921, "14709": 3240, "14710": 1400, "14711": 1440, "14712": 1184, "14713": 4080, "14714": 0, "14715": 2160, "14716": 6022, "14717": 481, "14718": 5383, "14719": 1081, "14720": 2264}, "11": {"14677": 300, "14678": 994, "14679": 939, "14680": 4320, "14681": 1600, "14682": 3379, "14683": 2679, "14684": 720, "14685": 5562, "14686": 2554, "14687": 1559, "14688": 1500, "14689": 1159, "14690": 813, "14691": 3378, "14692": 1259, "14693": 3518, "14694": 539, "14695": 2599, "14696": 11172, "14697": 7092, "14698": 479, "14699": 1559, "14700": 1879, "14701": 1440, "14702": 579, "14703": 119, "14704": 5442, "14705": 3073, "14706": 540, "14707": 500, "14708": 5499, "14709": 3749, "14710": 1800, "14711": 1440, "14712": 1054, "14713": 4018, "14714": 860, "14715": 1220, "14716": 5260, "14717": 119, "14718": 4173, "14719": 1139, "14720": 2434}, "12": {"14677": 420, "14678": 1020, "14679": 540, "14680": 4244, "14681": 1140, "14682": 3221, "14683": 2199, "14684": 1364, "14685": 4560, "14686": 2520, "14687": 1801, "14688": 1424, "14689": 1419, "14690": 361, "14691": 3220, "14692": 0, "14693": 2180, "14694": 0, "14695": 2160, "14696": 10744, "14697": 7660, "14698": 221, "14699": 1365, "14700": 2783, "14701": 1080, "14702": 879, "14703": 1, "14704": 4141, "14705": 2679, "14706": 1364, "14707": 360, "14708": 4679, "14709": 4059, "14710": 1260, "14711": 1440, "14712": 360, "14713": 3601, "14714": 1724, "14715": 1440, "14716": 6584, "14717": 1, "14718": 3900, "14719": 601, "14720": 1380}, "13": {"14677": 490, "14678": 1060, "14679": 480, "14680": 3240, "14681": 1000, "14682": 4560, "14683": 2400, "14684": 1080, "14685": 4120, "14686": 2260, "14687": 2400, "14688": 1080, "14689": 1260, "14690": 1060, "14691": 4380, "14692": 1310, "14693": 4220, "14694": 230, "14695": 1440, "14696": 12160, "14697": 6840, "14698": 1680, "14699": 2280, "14700": 2060, "14701": 1440, "14702": 780, "14703": 960, "14704": 4670, "14705": 2320, "14706": 1080, "14707": 0, "14708": 3480, "14709": 2460, "14710": 1560, "14711": 1440, "14712": 180, "14713": 3350, "14714": 720, "14715": 1080, "14716": 5720, "14717": 1200, "14718": 3910, "14719": 1480, "14720": 1410}, "14": {"14677": 1080, "14678": 2159, "14679": 900, "14680": 5101, "14681": 1501, "14682": 3898, "14683": 1741, "14684": 1861, "14685": 5701, "14686": 3600, "14687": 2338, "14688": 1440, "14689": 600, "14690": 538, "14691": 4018, "14692": 1261, "14693": 2999, "14694": 541, "14695": 1980, "14696": 11700, "14697": 8881, "14698": 178, "14699": 1978, "14700": 1442, "14701": 1440, "14702": 1680, "14703": 1258, "14704": 4801, "14705": 3120, "14706": 1501, "14707": 0, "14708": 5341, "14709": 2340, "14710": 0, "14711": 1800, "14712": 421, "14713": 4380, "14714": 1141, "14715": 1440, "14716": 5401, "14717": 538, "14718": 3240, "14719": 959, "14720": 1501}, "15": {"14677": 380, "14678": 1970, "14679": 900, "14680": 3000, "14681": 2070, "14682": 3719, "14683": 2430, "14684": 480, "14685": 4950, "14686": 3080, "14687": 1499, "14688": 1340, "14689": 1560, "14690": 859, "14691": 3779, "14692": 1440, "14693": 4059, "14694": 720, "14695": 1440, "14696": 11219, "14697": 7969, "14698": 519, "14699": 2099, "14700": 1920, "14701": 1440, "14702": 1140, "14703": 419, "14704": 5459, "14705": 3020, "14706": 1440, "14707": 0, "14708": 4670, "14709": 3449, "14710": 540, "14711": 1440, "14712": 560, "14713": 4739, "14714": 360, "14715": 1080, "14716": 4320, "14717": 299, "14718": 2690, "14719": 1709, "14720": 2330}, "16": {"14677": 1040, "14678": 2070, "14679": 240, "14680": 4080, "14681": 2370, "14682": 3900, "14683": 2491, "14684": 780, "14685": 5970, "14686": 3040, "14687": 1860, "14688": 620, "14689": 1381, "14690": 520, "14691": 2881, "14692": 720, "14693": 3421, "14694": 0, "14695": 1440, "14696": 10121, "14697": 6611, "14698": 120, "14699": 1080, "14700": 1381, "14701": 1440, "14702": 1921, "14703": 780, "14704": 3840, "14705": 1661, "14706": 360, "14707": 0, "14708": 4571, "14709": 2751, "14710": 240, "14711": 1440, "14712": 520, "14713": 4020, "14714": 0, "14715": 1080, "14716": 4321, "14717": 0, "14718": 2950, "14719": 1350, "14720": 2230}, "17": {"14677": 910, "14678": 2530, "14679": 840, "14680": 3960, "14681": 1480, "14682": 3700, "14683": 840, "14684": 720, "14685": 6479, "14686": 3400, "14687": 1680, "14688": 2230, "14689": 1080, "14690": 760, "14691": 4119, "14692": 240, "14693": 4479, "14694": 1499, "14695": 2520, "14696": 12979, "14697": 8050, "14698": 820, "14699": 3659, "14700": 1800, "14701": 1979, "14702": 240, "14703": 240, "14704": 6659, "14705": 3640, "14706": 1320, "14707": 1080, "14708": 4600, "14709": 3149, "14710": 1920, "14711": 1440, "14712": 880, "14713": 4379, "14714": 1440, "14715": 2520, "14716": 5799, "14717": 240, "14718": 4750, "14719": 1319, "14720": 3250}, "18": {"14677": 0, "14678": 1560, "14679": 659, "14680": 2880, "14681": 2320, "14682": 3860, "14683": 2080, "14684": 599, "14685": 6239, "14686": 2370, "14687": 980, "14688": 1079, "14689": 1299, "14690": 470, "14691": 4399, "14692": 720, "14693": 4499, "14694": 720, "14695": 2160, "14696": 11189, "14697": 6660, "14698": 980, "14699": 1699, "14700": 2258, "14701": 1799, "14702": 640, "14703": 260, "14704": 5340, "14705": 3730, "14706": 1079, "14707": 720, "14708": 5080, "14709": 2590, "14710": 1379, "14711": 1440, "14712": 570, "14713": 3860, "14714": 1319, "14715": 1440, "14716": 5978, "14717": 260, "14718": 2880, "14719": 2059, "14720": 2520}, "19": {"14677": 720, "14678": 2160, "14679": 860, "14680": 4680, "14681": 2220, "14682": 3300, "14683": 3300, "14684": 720, "14685": 6120, "14686": 2880, "14687": 1500, "14688": 4320, "14689": 920, "14690": 1500, "14691": 3360, "14692": 1800, "14693": 3720, "14694": 1080, "14695": 4320, "14696": 13800, "14697": 5520, "14698": 420, "14699": 2580, "14700": 2000, "14701": 1440, "14702": 420, "14703": 60, "14704": 5360, "14705": 2520, "14706": 2520, "14707": 1080, "14708": 5920, "14709": 4800, "14710": 3020, "14711": 1440, "14712": 1800, "14713": 5460, "14714": 1800, "14715": 2520, "14716": 4740, "14717": 60, "14718": 5400, "14719": 1500, "14720": 3240}, "20": {"14677": 1040, "14678": 1600, "14679": 700, "14680": 3740, "14681": 2300, "14682": 4459, "14683": 2521, "14684": 680, "14685": 5019, "14686": 3520, "14687": 1760, "14688": 1680, "14689": 1061, "14690": 280, "14691": 4640, "14692": 960, "14693": 4000, "14694": 1319, "14695": 2080, "14696": 10780, "14697": 8201, "14698": 940, "14699": 2039, "14700": 1061, "14701": 1619, "14702": 1401, "14703": 680, "14704": 5259, "14705": 3880, "14706": 600, "14707": 360, "14708": 5521, "14709": 2161, "14710": 340, "14711": 1800, "14712": 280, "14713": 4879, "14714": 360, "14715": 1440, "14716": 5721, "14717": 360, "14718": 3880, "14719": 1979, "14720": 2440}, "21": {"14677": 200, "14678": 1220, "14679": 0, "14680": 4199, "14681": 1440, "14682": 3538, "14683": 2221, "14684": 959, "14685": 6240, "14686": 3180, "14687": 1440, "14688": 1040, "14689": 781, "14690": 300, "14691": 3000, "14692": 1200, "14693": 4080, "14694": 2280, "14695": 1440, "14696": 12179, "14697": 8360, "14698": 299, "14699": 2280, "14700": 1740, "14701": 1920, "14702": 781, "14703": 0, "14704": 5960, "14705": 3540, "14706": 1799, "14707": 0, "14708": 3880, "14709": 2361, "14710": 0, "14711": 1440, "14712": 300, "14713": 5160, "14714": 959, "14715": 1440, "14716": 5400, "14717": 0, "14718": 3020, "14719": 1920, "14720": 2300}, "22": {"14677": 0, "14678": 1440, "14679": 479, "14680": 4559, "14681": 1680, "14682": 4200, "14683": 2240, "14684": 959, "14685": 6120, "14686": 3600, "14687": 2160, "14688": 1679, "14689": 919, "14690": 1440, "14691": 3560, "14692": 1440, "14693": 4260, "14694": 1800, "14695": 2520, "14696": 13139, "14697": 9080, "14698": 1300, "14699": 3479, "14700": 919, "14701": 1440, "14702": 800, "14703": 720, "14704": 6239, "14705": 4760, "14706": 1800, "14707": 0, "14708": 4780, "14709": 1880, "14710": 119, "14711": 1440, "14712": 720, "14713": 5400, "14714": 0, "14715": 1440, "14716": 4879, "14717": 720, "14718": 3600, "14719": 2160, "14720": 2160}, "23": {"14677": 1080, "14678": 2080, "14679": 661, "14680": 3780, "14681": 1460, "14682": 4040, "14683": 1821, "14684": 900, "14685": 5621, "14686": 3520, "14687": 1860, "14688": 1800, "14689": 381, "14690": 1060, "14691": 2981, "14692": 1741, "14693": 3701, "14694": 1441, "14695": 2741, "14696": 11361, "14697": 9541, "14698": 1160, "14699": 2220, "14700": 1281, "14701": 1440, "14702": 381, "14703": 420, "14704": 5141, "14705": 4621, "14706": 1260, "14707": 0, "14708": 4261, "14709": 2181, "14710": 0, "14711": 1440, "14712": 640, "14713": 5041, "14714": 900, "14715": 1440, "14716": 3880, "14717": 420, "14718": 4600, "14719": 1860, "14720": 3160}, "24": {"14677": 1138, "14678": 479, "14679": 900, "14680": 4739, "14681": 2499, "14682": 4539, "14683": 1441, "14684": 1859, "14685": 7080, "14686": 2160, "14687": 2279, "14688": 2519, "14689": 541, "14690": 1860, "14691": 5080, "14692": 1080, "14693": 4601, "14694": 780, "14695": 3581, "14696": 11260, "14697": 7740, "14698": 1000, "14699": 1860, "14700": 2220, "14701": 2400, "14702": 420, "14703": 839, "14704": 6701, "14705": 4681, "14706": 1319, "14707": 1301, "14708": 5501, "14709": 4080, "14710": 881, "14711": 1440, "14712": 1800, "14713": 6239, "14714": 1660, "14715": 1061, "14716": 5819, "14717": 420, "14718": 4900, "14719": 1860, "14720": 2860}, "25": {"14677": 400, "14678": 899, "14679": 240, "14680": 4320, "14681": 1680, "14682": 4440, "14683": 2461, "14684": 0, "14685": 7381, "14686": 1719, "14687": 2160, "14688": 1480, "14689": 1261, "14690": 1719, "14691": 4861, "14692": 360, "14693": 5821, "14694": 1080, "14695": 2299, "14696": 11520, "14697": 8140, "14698": 1560, "14699": 1080, "14700": 1621, "14701": 1981, "14702": 1021, "14703": 720, "14704": 5779, "14705": 4900, "14706": 1080, "14707": 1400, "14708": 6320, "14709": 3560, "14710": 379, "14711": 1440, "14712": 1719, "14713": 5400, "14714": 139, "14715": 139, "14716": 5060, "14717": 720, "14718": 4680, "14719": 2160, "14720": 2699}, "26": {"14677": 360, "14678": 1439, "14679": 0, "14680": 2880, "14681": 1680, "14682": 4140, "14683": 3300, "14684": 1080, "14685": 8039, "14686": 3479, "14687": 2580, "14688": 2580, "14689": 420, "14690": 1859, "14691": 5040, "14692": 1860, "14693": 6839, "14694": 1140, "14695": 2999, "14696": 13559, "14697": 8518, "14698": 1260, "14699": 2580, "14700": 2699, "14701": 2160, "14702": 420, "14703": 420, "14704": 6780, "14705": 4739, "14706": 1500, "14707": 1080, "14708": 5580, "14709": 2939, "14710": 1440, "14711": 1440, "14712": 2638, "14713": 6180, "14714": 1080, "14715": 1680, "14716": 5460, "14717": 1140, "14718": 6238, "14719": 1860, "14720": 2519}, "27": {"14677": 260, "14678": 1750, "14679": 0, "14680": 2880, "14681": 1440, "14682": 4439, "14683": 3002, "14684": 1, "14685": 7800, "14686": 2210, "14687": 3239, "14688": 2059, "14689": 842, "14690": 1849, "14691": 4801, "14692": 1798, "14693": 5801, "14694": 1438, "14695": 2520, "14696": 10971, "14697": 9351, "14698": 1079, "14699": 1799, "14700": 1843, "14701": 2040, "14702": 842, "14703": 1079, "14704": 6118, "14705": 4492, "14706": 1799, "14707": 1320, "14708": 6602, "14709": 3232, "14710": 720, "14711": 1440, "14712": 2130, "14713": 6118, "14714": 1, "14715": 720, "14716": 5163, "14717": 1079, "14718": 5510, "14719": 2519, "14720": 2110}}, "G916": {"1": {"14901": 420, "14902": 1860, "14903": 0, "14904": 440, "14905": 1480, "14906": 2400, "14907": 2120, "14908": 60, "14909": 560, "14910": 4060, "14911": 1560, "14912": 1080, "14913": 4460, "14914": 440, "14915": 1980, "14916": 2580, "14917": 720, "14919": 0, "14920": 0, "14921": 600, "14922": 6900, "14923": 840, "14924": 60, "14925": 6700, "14926": 1480, "14927": 1400, "14928": 0, "14948": 1260, "14949": 1500, "14950": 360}, "2": {"14901": 1220, "14902": 2480, "14903": 500, "14904": 1220, "14905": 1620, "14906": 3380, "14907": 2100, "14908": 1400, "14909": 1920, "14910": 5320, "14911": 2120, "14912": 1080, "14913": 5480, "14914": 680, "14915": 3200, "14916": 3560, "14917": 2160, "14919": 1080, "14920": 720, "14921": 1040, "14922": 9140, "14923": 1040, "14924": 320, "14925": 8440, "14926": 1440, "14927": 1400, "14928": 1620, "14948": 1400, "14949": 3160, "14950": 720}, "3": {"14901": 420, "14902": 2520, "14903": 158, "14904": 841, "14905": 1660, "14906": 2261, "14907": 1980, "14908": 0, "14909": 1440, "14910": 4659, "14911": 2520, "14912": 360, "14913": 3640, "14914": 300, "14915": 2819, "14916": 2980, "14917": 2160, "14919": 60, "14920": 541, "14921": 938, "14922": 6939, "14923": 901, "14924": 0, "14925": 6940, "14926": 1660, "14927": 1860, "14928": 541, "14948": 1478, "14949": 1780, "14950": 540}, "4": {"14901": 0, "14902": 1800, "14903": 770, "14904": 1310, "14905": 1100, "14906": 3250, "14907": 1860, "14908": 0, "14909": 1440, "14910": 4910, "14911": 1920, "14912": 0, "14913": 4490, "14914": 590, "14915": 3360, "14916": 3490, "14917": 2880, "14919": 0, "14920": 720, "14921": 950, "14922": 7810, "14923": 1200, "14924": 0, "14925": 7090, "14926": 1100, "14927": 1850, "14928": 720, "14948": 1870, "14949": 2330, "14950": 720}, "5": {"14901": 0, "14902": 1440, "14903": 740, "14904": 1300, "14905": 1900, "14906": 4340, "14907": 2160, "14908": 720, "14909": 1800, "14910": 4640, "14911": 2160, "14912": 0, "14913": 5060, "14914": 940, "14915": 2880, "14916": 4280, "14917": 2520, "14919": 720, "14920": 360, "14921": 740, "14922": 9320, "14923": 360, "14924": 0, "14925": 7940, "14926": 1900, "14927": 1660, "14928": 1080, "14948": 2540, "14949": 2900, "14950": 360}, "6": {"14901": 360, "14902": 2160, "14903": 736, "14904": 1656, "14905": 1240, "14906": 3616, "14907": 1440, "14908": 0, "14909": 1440, "14910": 3976, "14911": 1800, "14912": 360, "14913": 3976, "14914": 936, "14915": 2160, "14916": 3616, "14917": 1800, "14919": 0, "14920": 360, "14921": 1096, "14922": 7936, "14923": 1080, "14924": 360, "14925": 7216, "14926": 1240, "14927": 1656, "14928": 360, "14948": 2536, "14949": 1816, "14950": 720}, "7": {"14901": 360, "14902": 1800, "14903": 479, "14904": 481, "14905": 1440, "14906": 3360, "14907": 1800, "14908": 0, "14909": 1800, "14910": 4080, "14911": 1800, "14912": 360, "14913": 4080, "14914": 480, "14915": 2880, "14916": 3360, "14917": 2880, "14919": 0, "14920": 1, "14921": 839, "14922": 7680, "14923": 1440, "14924": 0, "14925": 7320, "14926": 1440, "14927": 1920, "14928": 1, "14948": 3719, "14949": 2280, "14950": 1440}, "8": {"14901": 720, "14902": 1800, "14903": 720, "14904": 1220, "14905": 1660, "14906": 4680, "14907": 2160, "14908": 0, "14909": 2160, "14910": 4320, "14911": 2160, "14912": 360, "14913": 4320, "14914": 860, "14915": 2520, "14916": 3240, "14917": 2520, "14919": 0, "14920": 1080, "14921": 0, "14922": 8280, "14923": 720, "14924": 0, "14925": 7920, "14926": 940, "14927": 1580, "14928": 360, "14948": 1440, "14949": 2160, "14950": 0}, "9": {"14901": 1320, "14902": 2520, "14903": 1450, "14904": 790, "14905": 1480, "14906": 4430, "14907": 2620, "14908": 720, "14909": 2380, "14910": 4690, "14911": 2160, "14912": 360, "14913": 5030, "14914": 790, "14915": 2640, "14916": 4190, "14917": 2520, "14919": 0, "14920": 240, "14921": 1570, "14922": 8750, "14923": 840, "14924": 720, "14925": 8290, "14926": 1240, "14927": 1510, "14928": 0, "14948": 2990, "14949": 3370, "14950": 120}, "10": {"14901": 0, "14902": 1440, "14903": 220, "14904": 1440, "14905": 940, "14906": 4540, "14907": 2520, "14908": 1080, "14909": 1080, "14910": 5260, "14911": 2520, "14912": 1440, "14913": 6340, "14914": 1440, "14915": 3240, "14916": 3460, "14917": 2520, "14919": 360, "14920": 360, "14921": 220, "14922": 9580, "14923": 1440, "14924": 360, "14925": 8140, "14926": 940, "14927": 2520, "14928": 0, "14948": 2740, "14949": 2020, "14950": 1800}, "11": {"14901": 720, "14902": 1800, "14903": 940, "14904": 420, "14905": 940, "14906": 2800, "14907": 2880, "14908": 1440, "14909": 1440, "14910": 6340, "14911": 2160, "14912": 1440, "14913": 7060, "14914": 60, "14915": 2940, "14916": 2800, "14917": 2520, "14919": 0, "14920": 360, "14921": 1300, "14922": 8560, "14923": 1140, "14924": 360, "14925": 9220, "14926": 940, "14927": 1500, "14928": 360, "14948": 3520, "14949": 2380, "14950": 1860}, "12": {"14901": 0, "14902": 720, "14903": 940, "14904": 1124, "14905": 2080, "14906": 2800, "14907": 2564, "14908": 720, "14909": 1844, "14910": 7524, "14911": 1440, "14912": 720, "14913": 6384, "14914": 720, "14915": 2160, "14916": 4240, "14917": 2160, "14919": 0, "14920": 404, "14921": 940, "14922": 10000, "14923": 360, "14924": 0, "14925": 8244, "14926": 2080, "14927": 1440, "14928": 404, "14948": 2484, "14949": 1660, "14950": 1080}, "13": {"14901": 719, "14902": 2159, "14903": 940, "14904": 1080, "14905": 1880, "14906": 3679, "14907": 3599, "14908": 1799, "14909": 1799, "14910": 6919, "14911": 2159, "14912": 1080, "14913": 6699, "14914": 1080, "14915": 2879, "14916": 5119, "14917": 2520, "14919": 0, "14920": 0, "14921": 940, "14922": 10879, "14923": 1439, "14924": 719, "14925": 7999, "14926": 1880, "14927": 1800, "14928": 0, "14948": 2600, "14949": 3099, "14950": 1800}, "14": {"14901": 0, "14902": 1080, "14903": 0, "14904": 719, "14905": 680, "14906": 2620, "14907": 2880, "14908": 1080, "14909": 1799, "14910": 5759, "14911": 1440, "14912": 1080, "14913": 6479, "14914": 0, "14915": 2400, "14916": 2620, "14917": 2520, "14919": 0, "14920": 719, "14921": 0, "14922": 8380, "14923": 600, "14924": 0, "14925": 7779, "14926": 680, "14927": 1080, "14928": 719, "14948": 1900, "14949": 1800, "14950": 1680}, "15": {"14901": 360, "14902": 720, "14903": 0, "14904": 720, "14905": 0, "14906": 3600, "14907": 2160, "14908": 2160, "14909": 1080, "14910": 4680, "14911": 1440, "14912": 600, "14913": 6120, "14914": 1080, "14915": 2520, "14916": 2160, "14917": 2040, "14919": 1440, "14920": 0, "14921": 0, "14922": 9720, "14923": 720, "14924": 0, "14925": 8640, "14926": 0, "14927": 1800, "14928": 1440, "14948": 1800, "14949": 2160, "14950": 1320}, "16": {"14901": 0, "14902": 1440, "14903": 0, "14904": 860, "14905": 1440, "14906": 5040, "14907": 3600, "14908": 2520, "14909": 1440, "14910": 6340, "14911": 2160, "14912": 1080, "14913": 7560, "14914": 500, "14915": 3240, "14916": 3600, "14917": 2520, "14919": 1440, "14920": 360, "14921": 720, "14922": 10800, "14923": 1080, "14924": 0, "14925": 8640, "14926": 1440, "14927": 1940, "14928": 1800, "14948": 360, "14949": 3600, "14950": 1440}, "17": {"14901": 360, "14902": 1440, "14903": 720, "14904": 1440, "14905": 2680, "14906": 4840, "14907": 4680, "14908": 1440, "14909": 1080, "14910": 5920, "14911": 2160, "14912": 720, "14913": 6120, "14914": 1800, "14915": 4320, "14916": 4840, "14917": 2160, "14919": 0, "14920": 0, "14921": 2160, "14922": 10960, "14923": 1800, "14924": 0, "14925": 9520, "14926": 2680, "14927": 3960, "14928": 0, "14948": 3040, "14949": 2160, "14950": 1800}}, "G927": {"1": {"15132": 640, "15152": 279, "15153": 5280, "15154": 800, "15155": 0, "15156": 0, "15157": 279, "15158": 1360, "15159": 80, "15160": 1080, "15161": 5379, "15162": 5640, "15163": 199, "15164": 6480, "15165": 3660, "15166": 660, "15167": 4680, "15168": 2359, "15169": 740}, "2": {"15132": 1000, "15152": 1000, "15153": 3519, "15154": 59, "15155": 0, "15156": 59, "15157": 1000, "15158": 1560, "15159": 59, "15160": 59, "15161": 5079, "15162": 4659, "15163": 1059, "15164": 5799, "15165": 4420, "15166": 479, "15167": 5379, "15168": 2079, "15169": 420}, "3": {"15132": 1440, "15152": 0, "15153": 3240, "15154": 1080, "15155": 0, "15156": 1440, "15157": 0, "15158": 1440, "15159": 0, "15160": 2880, "15161": 5400, "15162": 4680, "15163": 0, "15164": 7200, "15165": 3960, "15166": 0, "15167": 5760, "15168": 3600, "15169": 0}, "4": {"15132": 1080, "15152": 360, "15153": 2520, "15154": 360, "15155": 360, "15156": 1080, "15157": 0, "15158": 1800, "15159": 0, "15160": 2520, "15161": 5400, "15162": 4320, "15163": 0, "15164": 6840, "15165": 4320, "15166": 360, "15167": 5760, "15168": 3240, "15169": 360}, "5": {"15132": 1440, "15152": 0, "15153": 2880, "15154": 0, "15155": 0, "15156": 0, "15157": 0, "15158": 1440, "15159": 0, "15160": 1440, "15161": 4320, "15162": 4320, "15163": 0, "15164": 5760, "15165": 4320, "15166": 0, "15167": 4320, "15168": 720, "15169": 0}, "6": {"15132": 1440, "15152": 360, "15153": 2520, "15154": 720, "15155": 1800, "15156": 1440, "15157": 0, "15158": 1800, "15159": 0, "15160": 2520, "15161": 5400, "15162": 3960, "15163": 0, "15164": 6840, "15165": 3960, "15166": 360, "15167": 6120, "15168": 3240, "15169": 360}, "7": {"15132": 1440, "15152": 0, "15153": 2520, "15154": 360, "15155": 1440, "15156": 1440, "15157": 0, "15158": 1440, "15159": 0, "15160": 2160, "15161": 4680, "15162": 3960, "15163": 0, "15164": 6480, "15165": 3960, "15166": 0, "15167": 5760, "15168": 2880, "15169": 0}, "8": {"15132": 1440, "15152": 1440, "15153": 5400, "15154": 360, "15155": 0, "15156": 0, "15157": 1440, "15158": 1440, "15159": 0, "15160": 720, "15161": 6120, "15162": 5760, "15163": 1440, "15164": 6840, "15165": 5040, "15166": 360, "15167": 5760, "15168": 3240, "15169": 360}, "9": {"15132": 1080, "15152": 1380, "15153": 4260, "15154": 300, "15155": 300, "15156": 0, "15157": 1080, "15158": 1020, "15159": 0, "15160": 1020, "15161": 6420, "15162": 4980, "15163": 1080, "15164": 6420, "15165": 4680, "15166": 300, "15167": 5700, "15168": 3540, "15169": 300}, "10": {"15132": 720, "15152": 1440, "15153": 4320, "15154": 0, "15155": 720, "15156": 0, "15157": 720, "15158": 2160, "15159": 0, "15160": 1440, "15161": 6480, "15162": 5040, "15163": 720, "15164": 6480, "15165": 5040, "15166": 720, "15167": 5760, "15168": 3600, "15169": 720}, "11": {"15132": 1440, "15152": 0, "15153": 2160, "15154": 0, "15155": 0, "15156": 1440, "15157": 0, "15158": 1440, "15159": 0, "15160": 2160, "15161": 5040, "15162": 3600, "15163": 0, "15164": 6480, "15165": 4320, "15166": 0, "15167": 5760, "15168": 2880, "15169": 0}, "12": {"15132": 1440, "15152": 0, "15153": 2880, "15154": 360, "15155": 1440, "15156": 1440, "15157": 0, "15158": 1440, "15159": 0, "15160": 2160, "15161": 4320, "15162": 4320, "15163": 0, "15164": 6480, "15165": 3600, "15166": 0, "15167": 5760, "15168": 2880, "15169": 0}, "13": {"15132": 0, "15152": 0, "15153": 2880, "15154": 0, "15155": 0, "15156": 0, "15157": 0, "15158": 1440, "15159": 0, "15160": 720, "15161": 4320, "15162": 4320, "15163": 0, "15164": 5040, "15165": 3600, "15166": 0, "15167": 4320, "15168": 1440, "15169": 0}, "14": {"15132": 1800, "15152": 2160, "15153": 4320, "15154": 1440, "15155": 720, "15156": 0, "15157": 1440, "15158": 1800, "15159": 720, "15160": 1080, "15161": 6480, "15162": 5760, "15163": 720, "15164": 7560, "15165": 5760, "15166": 360, "15167": 6840, "15168": 3240, "15169": 1080}, "15": {"15132": 360, "15152": 0, "15153": 1940, "15154": 0, "15155": 360, "15156": 720, "15157": 0, "15158": 1440, "15159": 360, "15160": 1440, "15161": 3820, "15162": 4460, "15163": 0, "15164": 5040, "15165": 3460, "15166": 0, "15167": 4320, "15168": 720, "15169": 360}, "16": {"15132": 1800, "15152": 1440, "15153": 3600, "15154": 1080, "15155": 0, "15156": 720, "15157": 1440, "15158": 1860, "15159": 720, "15160": 1440, "15161": 5460, "15162": 5760, "15163": 720, "15164": 7260, "15165": 4740, "15166": 420, "15167": 6120, "15168": 2520, "15169": 1140}, "17": {"15132": 2160, "15152": 1440, "15153": 4820, "15154": 0, "15155": 0, "15156": 0, "15157": 1440, "15158": 1440, "15159": 0, "15160": 720, "15161": 5260, "15162": 5540, "15163": 1440, "15164": 6480, "15165": 5260, "15166": 0, "15167": 5760, "15168": 2160, "15169": 0}, "18": {"15132": 2520, "15152": 1440, "15153": 4100, "15154": 360, "15155": 1440, "15156": 1080, "15157": 1440, "15158": 1440, "15159": 0, "15160": 2160, "15161": 5980, "15162": 5900, "15163": 1440, "15164": 7920, "15165": 5260, "15166": 0, "15167": 6840, "15168": 4320, "15169": 0}, "19": {"15132": 1440, "15152": 1440, "15153": 4680, "15154": 0, "15155": 0, "15156": 0, "15157": 1440, "15158": 1440, "15159": 0, "15160": 720, "15161": 6120, "15162": 5400, "15163": 1440, "15164": 6480, "15165": 5400, "15166": 0, "15167": 5760, "15168": 3600, "15169": 0}, "20": {"15132": 1080, "15152": 70, "15153": 2520, "15154": 0, "15155": 70, "15156": 1080, "15157": 0, "15158": 1510, "15159": 0, "15160": 1870, "15161": 4100, "15162": 4320, "15163": 0, "15164": 6190, "15165": 3670, "15166": 70, "15167": 5470, "15168": 2590, "15169": 70}, "21": {"15132": 1440, "15152": 720, "15153": 2880, "15154": 0, "15155": 2160, "15156": 1440, "15157": 0, "15158": 2160, "15159": 0, "15160": 2880, "15161": 5760, "15162": 4320, "15163": 0, "15164": 7200, "15165": 4320, "15166": 720, "15167": 6480, "15168": 3600, "15169": 720}, "22": {"15132": 847, "15152": 1207, "15153": 4087, "15154": 0, "15155": 0, "15156": 0, "15157": 847, "15158": 1440, "15159": 0, "15160": 720, "15161": 6247, "15162": 4807, "15163": 847, "15164": 6247, "15165": 4807, "15166": 0, "15167": 5527, "15168": 3367, "15169": 0}, "23": {"15132": 1080, "15152": 720, "15153": 2520, "15154": 0, "15155": 2160, "15156": 1080, "15157": 0, "15158": 2160, "15159": 0, "15160": 2520, "15161": 5400, "15162": 4320, "15163": 0, "15164": 6840, "15165": 4320, "15166": 720, "15167": 6120, "15168": 3240, "15169": 720}, "24": {"15132": 1440, "15152": 54, "15153": 2214, "15154": 0, "15155": 1494, "15156": 1440, "15157": 0, "15158": 1494, "15159": 0, "15160": 2214, "15161": 5094, "15162": 3654, "15163": 0, "15164": 6534, "15165": 3654, "15166": 54, "15167": 5814, "15168": 2934, "15169": 54}, "25": {"15132": 1440, "15152": 0, "15153": 2880, "15154": 0, "15155": 1440, "15156": 1440, "15157": 0, "15158": 1440, "15159": 0, "15160": 2880, "15161": 5760, "15162": 4320, "15163": 0, "15164": 7200, "15165": 4320, "15166": 0, "15167": 5760, "15168": 3600, "15169": 0}}, "G933": {"1": {"15230": 3837, "15231": 6243, "15232": 2880, "15233": 4083, "15234": 4320, "15235": 3960, "15236": 4680, "15237": 6006, "15238": 5883, "15239": 4680, "15240": 4680, "15241": 3363, "15242": 6357, "15243": 4917, "15244": 2766, "15245": 2283, "15246": 3003, "15247": 5163, "15248": 5883, "15249": 2880, "15250": 5163, "15251": 2757}, "2": {"15230": 1800, "15231": 5400, "15232": 2520, "15233": 2520, "15234": 3960, "15235": 3600, "15236": 4320, "15237": 5040, "15238": 4680, "15239": 4320, "15240": 4320, "15241": 4320, "15242": 6480, "15243": 5040, "15244": 1440, "15245": 2880, "15246": 3600, "15247": 4320, "15248": 4320, "15249": 2520, "15250": 4320, "15251": 2880}, "3": {"15230": 2160, "15231": 5400, "15232": 2520, "15233": 2160, "15234": 3600, "15235": 3240, "15236": 4680, "15237": 4680, "15238": 4320, "15239": 4320, "15240": 4680, "15241": 3960, "15242": 6120, "15243": 4680, "15244": 1800, "15245": 2520, "15246": 2880, "15247": 3600, "15248": 3960, "15249": 2520, "15250": 3600, "15251": 2880}, "4": {"15230": 1800, "15231": 5400, "15232": 2160, "15233": 1440, "15234": 3600, "15235": 2880, "15236": 3960, "15237": 3960, "15238": 3960, "15239": 3960, "15240": 3600, "15241": 3960, "15242": 5400, "15243": 3960, "15244": 1440, "15245": 2520, "15246": 2880, "15247": 3960, "15248": 3960, "15249": 2160, "15250": 3600, "15251": 1800}, "5": {"15230": 2880, "15231": 5400, "15232": 3600, "15233": 1440, "15234": 4680, "15235": 2520, "15236": 3600, "15237": 2160, "15238": 2880, "15239": 3960, "15240": 3240, "15241": 2880, "15242": 3600, "15243": 2160, "15244": 2880, "15245": 2520, "15246": 2880, "15247": 3600, "15248": 2520, "15249": 3600, "15250": 3240, "15251": 1440}, "6": {"15230": 2160, "15231": 5400, "15232": 3600, "15233": 720, "15234": 4680, "15235": 2520, "15236": 3600, "15237": 2160, "15238": 2880, "15239": 3960, "15240": 3240, "15241": 3600, "15242": 3600, "15243": 2160, "15244": 2160, "15245": 2520, "15246": 2880, "15247": 3600, "15248": 2520, "15249": 3600, "15250": 3240, "15251": 1440}, "7": {"15230": 2520, "15231": 5760, "15232": 2880, "15233": 2520, "15234": 3960, "15235": 2880, "15236": 4680, "15237": 3960, "15238": 4320, "15239": 3600, "15240": 4320, "15241": 3960, "15242": 5400, "15243": 3960, "15244": 3240, "15245": 3240, "15246": 2520, "15247": 3960, "15248": 4320, "15249": 2880, "15250": 3600, "15251": 2520}, "8": {"15230": 1440, "15231": 5760, "15232": 3240, "15233": 2880, "15234": 5040, "15235": 3240, "15236": 3600, "15237": 4320, "15238": 5400, "15239": 2520, "15240": 4680, "15241": 5040, "15242": 5760, "15243": 4320, "15244": 2520, "15245": 3960, "15246": 3960, "15247": 5040, "15248": 5040, "15249": 3240, "15250": 4680, "15251": 2520}, "9": {"15230": 2160, "15231": 5400, "15232": 2520, "15233": 2880, "15234": 4320, "15235": 2880, "15236": 3960, "15237": 4320, "15238": 5040, "15239": 2880, "15240": 3960, "15241": 4320, "15242": 5760, "15243": 4320, "15244": 2160, "15245": 2880, "15246": 3240, "15247": 4320, "15248": 4680, "15249": 2520, "15250": 3960, "15251": 1440}, "10": {"15230": 2160, "15231": 5400, "15232": 1800, "15233": 720, "15234": 3600, "15235": 2520, "15236": 3240, "15237": 3600, "15238": 2880, "15239": 3600, "15240": 3240, "15241": 3960, "15242": 5040, "15243": 3600, "15244": 1440, "15245": 2880, "15246": 2880, "15247": 3600, "15248": 2520, "15249": 1800, "15250": 3240, "15251": 1440}, "11": {"15230": 2520, "15231": 6480, "15232": 3240, "15233": 3960, "15234": 5040, "15235": 2520, "15236": 3960, "15237": 3600, "15238": 5760, "15239": 2880, "15240": 3240, "15241": 5040, "15242": 5040, "15243": 3600, "15244": 1440, "15245": 4320, "15246": 3600, "15247": 5040, "15248": 5400, "15249": 3240, "15250": 4680, "15251": 1440}, "12": {"15230": 2160, "15231": 5580, "15232": 2880, "15233": 3600, "15234": 5220, "15235": 2880, "15236": 3600, "15237": 3600, "15238": 5760, "15239": 2880, "15240": 3060, "15241": 5040, "15242": 5040, "15243": 3600, "15244": 1440, "15245": 4320, "15246": 3060, "15247": 5040, "15248": 5580, "15249": 2880, "15250": 4860, "15251": 1440}, "13": {"15230": 720, "15231": 3960, "15232": 2880, "15233": 2160, "15234": 5220, "15235": 3060, "15236": 3780, "15237": 4140, "15238": 4320, "15239": 3420, "15240": 3780, "15241": 3420, "15242": 4140, "15243": 2700, "15244": 1800, "15245": 2340, "15246": 1980, "15247": 3600, "15248": 3960, "15249": 2880, "15250": 3240, "15251": 540}, "14": {"15230": 1080, "15231": 3960, "15232": 3240, "15233": 2520, "15234": 3960, "15235": 2520, "15236": 4320, "15237": 3600, "15238": 4320, "15239": 2880, "15240": 3240, "15241": 3240, "15242": 3600, "15243": 2160, "15244": 1440, "15245": 2160, "15246": 720, "15247": 3600, "15248": 3960, "15249": 3240, "15250": 3240, "15251": 0}, "15": {"15230": 2520, "15231": 5400, "15232": 2880, "15233": 3960, "15234": 5040, "15235": 2880, "15236": 3960, "15237": 3960, "15238": 5760, "15239": 3240, "15240": 3960, "15241": 4680, "15242": 5400, "15243": 3960, "15244": 1800, "15245": 3960, "15246": 2880, "15247": 5040, "15248": 5400, "15249": 2880, "15250": 4680, "15251": 2160}, "16": {"15230": 720, "15231": 3960, "15232": 2880, "15233": 2160, "15234": 4680, "15235": 3600, "15236": 3600, "15237": 3600, "15238": 4320, "15239": 2880, "15240": 3240, "15241": 3600, "15242": 3600, "15243": 2160, "15244": 1440, "15245": 2160, "15246": 1800, "15247": 3600, "15248": 3960, "15249": 2880, "15250": 3240, "15251": 0}, "17": {"15230": 2160, "15231": 6120, "15232": 2880, "15233": 3600, "15234": 5760, "15235": 3240, "15236": 3600, "15237": 3960, "15238": 5760, "15239": 3240, "15240": 3600, "15241": 5040, "15242": 5400, "15243": 3960, "15244": 1440, "15245": 4320, "15246": 4320, "15247": 5040, "15248": 5400, "15249": 2880, "15250": 4680, "15251": 1800}, "18": {"15230": 2160, "15231": 5400, "15232": 2880, "15233": 2880, "15234": 5400, "15235": 3600, "15236": 3600, "15237": 4320, "15238": 5040, "15239": 3600, "15240": 3960, "15241": 4320, "15242": 5760, "15243": 4320, "15244": 1440, "15245": 4320, "15246": 3960, "15247": 5760, "15248": 4680, "15249": 2880, "15250": 5400, "15251": 1440}, "19": {"15230": 2160, "15231": 5040, "15232": 2880, "15233": 2880, "15234": 4680, "15235": 2520, "15236": 4680, "15237": 3960, "15238": 4680, "15239": 3600, "15240": 3240, "15241": 3600, "15242": 4680, "15243": 3240, "15244": 2160, "15245": 3240, "15246": 1800, "15247": 3960, "15248": 4320, "15249": 2880, "15250": 3600, "15251": 720}, "20": {"15230": 720, "15231": 5040, "15232": 4320, "15233": 2160, "15234": 5400, "15235": 2880, "15236": 4320, "15237": 3960, "15238": 4680, "15239": 3240, "15240": 4680, "15241": 5040, "15242": 3960, "15243": 2520, "15244": 3240, "15245": 3600, "15246": 2160, "15247": 3960, "15248": 4320, "15249": 4320, "15250": 3960, "15251": 1440}, "21": {"15230": 1440, "15231": 4680, "15232": 3960, "15233": 2880, "15234": 6480, "15235": 3600, "15236": 4320, "15237": 4680, "15238": 4680, "15239": 3960, "15240": 5040, "15241": 3960, "15242": 4680, "15243": 3240, "15244": 3240, "15245": 3600, "15246": 2520, "15247": 3960, "15248": 4320, "15249": 3960, "15250": 3600, "15251": 1800}, "22": {"15230": 720, "15231": 4320, "15232": 2880, "15233": 2160, "15234": 5040, "15235": 2880, "15236": 3600, "15237": 3960, "15238": 4320, "15239": 2520, "15240": 3600, "15241": 3240, "15242": 3960, "15243": 2520, "15244": 1440, "15245": 2520, "15246": 1440, "15247": 3960, "15248": 4320, "15249": 2880, "15250": 3240, "15251": 0}, "23": {"15230": 2700, "15231": 5760, "15232": 3420, "15233": 4140, "15234": 5400, "15235": 2700, "15236": 4140, "15237": 4500, "15238": 5760, "15239": 3060, "15240": 4860, "15241": 5040, "15242": 5940, "15243": 4500, "15244": 2160, "15245": 4680, "15246": 2520, "15247": 5760, "15248": 5760, "15249": 3420, "15250": 5400, "15251": 2340}, "24": {"15230": 2520, "15231": 6480, "15232": 3960, "15233": 3960, "15234": 5400, "15235": 1800, "15236": 4680, "15237": 3600, "15238": 5760, "15239": 3240, "15240": 4320, "15241": 5400, "15242": 5040, "15243": 3600, "15244": 2160, "15245": 4680, "15246": 3600, "15247": 5040, "15248": 5040, "15249": 3960, "15250": 4320, "15251": 2160}, "25": {"15230": 2640, "15231": 3960, "15232": 3360, "15233": 2640, "15234": 4800, "15235": 1920, "15236": 4440, "15237": 2160, "15238": 4320, "15239": 3000, "15240": 3600, "15241": 3360, "15242": 3600, "15243": 2160, "15244": 1440, "15245": 2640, "15246": 1080, "15247": 3600, "15248": 3600, "15249": 3360, "15250": 2880, "15251": 1440}, "26": {"15230": 3240, "15231": 5040, "15232": 3240, "15233": 3240, "15234": 4680, "15235": 4559, "15236": 4680, "15237": 3119, "15238": 4919, "15239": 3600, "15240": 3839, "15241": 3600, "15242": 4559, "15243": 3119, "15244": 2160, "15245": 2880, "15246": 3479, "15247": 4559, "15248": 4320, "15249": 3240, "15250": 4559, "15251": 1440}, "27": {"15230": 2280, "15231": 5760, "15232": 2640, "15233": 3000, "15234": 3960, "15235": 2520, "15236": 4080, "15237": 3960, "15238": 5400, "15239": 2880, "15240": 3240, "15241": 3960, "15242": 5400, "15243": 3960, "15244": 1440, "15245": 3600, "15246": 2400, "15247": 4680, "15248": 5040, "15249": 2640, "15250": 4560, "15251": 1440}}, "G936": {"1": {"15272": 2880, "15273": 4680, "15274": 3600, "15275": 3600, "15276": 2520, "15277": 6120, "15278": 4480, "15279": 3600, "15280": 4680, "15281": 3400, "15282": 7000, "15283": 3760, "15284": 4680, "15285": 5760, "15286": 3040, "15287": 4120, "15288": 4480, "15289": 3960, "15290": 6480, "15291": 3040, "15292": 6480, "15293": 4840}, "2": {"15272": 2880, "15273": 4320, "15274": 2520, "15275": 2520, "15276": 1800, "15277": 5040, "15278": 3260, "15279": 3600, "15280": 2880, "15281": 2180, "15282": 5780, "15283": 2180, "15284": 3960, "15285": 4680, "15286": 1460, "15287": 2540, "15288": 3260, "15289": 2160, "15290": 5040, "15291": 2180, "15292": 4680, "15293": 3260}, "3": {"15272": 2880, "15273": 3600, "15274": 2160, "15275": 1800, "15276": 1308, "15277": 4320, "15278": 3960, "15279": 3108, "15280": 3012, "15281": 1440, "15282": 6252, "15283": 2520, "15284": 3600, "15285": 4680, "15286": 1800, "15287": 2160, "15288": 3108, "15289": 2520, "15290": 4680, "15291": 2388, "15292": 4320, "15293": 3600}, "4": {"15272": 2880, "15273": 2880, "15274": 2880, "15275": 1980, "15276": 1440, "15277": 5080, "15278": 3280, "15279": 2880, "15280": 3060, "15281": 1480, "15282": 5620, "15283": 2200, "15284": 4320, "15285": 4860, "15286": 1480, "15287": 2200, "15288": 3780, "15289": 2160, "15290": 4320, "15291": 1480, "15292": 4320, "15293": 4360}, "5": {"15272": 2880, "15273": 2960, "15274": 2880, "15275": 1520, "15276": 1440, "15277": 4680, "15278": 2520, "15279": 2880, "15280": 2600, "15281": 1080, "15282": 5040, "15283": 1360, "15284": 4320, "15285": 4400, "15286": 720, "15287": 1440, "15288": 3240, "15289": 2160, "15290": 4400, "15291": 720, "15292": 4320, "15293": 3600}, "6": {"15272": 3240, "15273": 2520, "15274": 3240, "15275": 1080, "15276": 1800, "15277": 4680, "15278": 2880, "15279": 3240, "15280": 2520, "15281": 1440, "15282": 5400, "15283": 1800, "15284": 4680, "15285": 3960, "15286": 720, "15287": 1440, "15288": 3600, "15289": 2520, "15290": 3960, "15291": 720, "15292": 4680, "15293": 3240}, "7": {"15272": 3600, "15273": 2520, "15274": 3600, "15275": 1440, "15276": 1440, "15277": 4680, "15278": 2700, "15279": 2880, "15280": 2160, "15281": 2520, "15282": 5940, "15283": 2700, "15284": 4320, "15285": 4320, "15286": 1620, "15287": 1260, "15288": 3420, "15289": 2880, "15290": 4680, "15291": 900, "15292": 4320, "15293": 3420}, "8": {"15272": 3960, "15273": 3960, "15274": 3960, "15275": 2240, "15276": 2520, "15277": 5400, "15278": 3680, "15279": 3960, "15280": 3320, "15281": 3960, "15282": 6120, "15283": 3680, "15284": 4680, "15285": 5120, "15286": 1880, "15287": 1520, "15288": 4120, "15289": 3240, "15290": 5760, "15291": 1160, "15292": 4680, "15293": 2960}, "9": {"15272": 4320, "15273": 3780, "15274": 4320, "15275": 1620, "15276": 2700, "15277": 4680, "15278": 3240, "15279": 4140, "15280": 3060, "15281": 1800, "15282": 5940, "15283": 2700, "15284": 4320, "15285": 4500, "15286": 1440, "15287": 1260, "15288": 3060, "15289": 2880, "15290": 4860, "15291": 1800, "15292": 4320, "15293": 2160}, "10": {"15272": 3600, "15273": 3240, "15274": 3600, "15275": 1800, "15276": 2160, "15277": 4680, "15278": 2880, "15279": 3600, "15280": 2880, "15281": 1440, "15282": 5040, "15283": 2520, "15284": 4320, "15285": 4680, "15286": 1440, "15287": 1440, "15288": 3600, "15289": 2880, "15290": 4320, "15291": 720, "15292": 4320, "15293": 2520}, "11": {"15272": 4320, "15273": 3960, "15274": 4320, "15275": 2040, "15276": 2880, "15277": 4680, "15278": 4580, "15279": 4320, "15280": 3480, "15281": 3240, "15282": 6760, "15283": 3860, "15284": 4320, "15285": 4920, "15286": 2780, "15287": 2420, "15288": 4920, "15289": 2880, "15290": 5400, "15291": 2780, "15292": 4320, "15293": 3860}, "12": {"15272": 3960, "15273": 2880, "15274": 3960, "15275": 2380, "15276": 1800, "15277": 5400, "15278": 4180, "15279": 3240, "15280": 3460, "15281": 3240, "15282": 6700, "15283": 4540, "15284": 4320, "15285": 5260, "15286": 2020, "15287": 1660, "15288": 4540, "15289": 2880, "15290": 5040, "15291": 1660, "15292": 4320, "15293": 3820}, "13": {"15272": 6120, "15273": 2520, "15274": 5400, "15275": 2020, "15276": 3240, "15277": 5400, "15278": 3460, "15279": 4680, "15280": 3100, "15281": 4680, "15282": 6340, "15283": 3460, "15284": 6120, "15285": 4900, "15286": 3100, "15287": 580, "15288": 5620, "15289": 4680, "15290": 6480, "15291": 2380, "15292": 4680, "15293": 4900}, "14": {"15272": 3960, "15273": 3600, "15274": 3960, "15275": 2160, "15276": 2520, "15277": 5040, "15278": 4320, "15279": 3960, "15280": 3240, "15281": 2880, "15282": 7560, "15283": 4320, "15284": 4680, "15285": 5040, "15286": 2880, "15287": 2160, "15288": 4320, "15289": 3240, "15290": 4680, "15291": 2160, "15292": 4680, "15293": 3600}, "15": {"15272": 3960, "15273": 3600, "15274": 3960, "15275": 1560, "15276": 2520, "15277": 5040, "15278": 3720, "15279": 3960, "15280": 2640, "15281": 3600, "15282": 6240, "15283": 3720, "15284": 4320, "15285": 4800, "15286": 2280, "15287": 2280, "15288": 4440, "15289": 2880, "15290": 5400, "15291": 2280, "15292": 4320, "15293": 3720}, "16": {"15272": 3601, "15273": 5760, "15274": 3601, "15275": 4080, "15276": 2880, "15277": 5881, "15278": 4920, "15279": 4320, "15280": 4201, "15281": 4320, "15282": 7081, "15283": 4920, "15284": 4320, "15285": 5641, "15286": 2040, "15287": 2761, "15288": 5520, "15289": 3001, "15290": 5881, "15291": 2040, "15292": 4441, "15293": 4920}, "17": {"15272": 3600, "15273": 3320, "15274": 3600, "15275": 1520, "15276": 2160, "15277": 4400, "15278": 2600, "15279": 3600, "15280": 2160, "15281": 2960, "15282": 5040, "15283": 2240, "15284": 4320, "15285": 4680, "15286": 2240, "15287": 2240, "15288": 4320, "15289": 2880, "15290": 5040, "15291": 1880, "15292": 4320, "15293": 3680}, "18": {"15272": 4320, "15273": 3240, "15274": 4320, "15275": 1080, "15276": 2880, "15277": 4320, "15278": 5040, "15279": 4320, "15280": 2520, "15281": 2880, "15282": 6120, "15283": 3240, "15284": 2880, "15285": 4320, "15286": 2520, "15287": 2520, "15288": 4680, "15289": 2880, "15290": 5040, "15291": 2880, "15292": 2880, "15293": 3960}, "19": {"15272": 3600, "15273": 2880, "15274": 3600, "15275": 1880, "15276": 2160, "15277": 5040, "15278": 3600, "15279": 3600, "15280": 1520, "15281": 2880, "15282": 4960, "15283": 3600, "15284": 2880, "15285": 5120, "15286": 2520, "15287": 2880, "15288": 4400, "15289": 2880, "15290": 4320, "15291": 2880, "15292": 2880, "15293": 4320}, "20": {"15272": 3960, "15273": 1800, "15274": 3960, "15275": 640, "15276": 2520, "15277": 4320, "15278": 3880, "15279": 3960, "15280": 1720, "15281": 2880, "15282": 4600, "15283": 3520, "15284": 3240, "15285": 3880, "15286": 2080, "15287": 2080, "15288": 4960, "15289": 3240, "15290": 3960, "15291": 1720, "15292": 3240, "15293": 3520}, "21": {"15272": 3600, "15273": 1880, "15274": 3600, "15275": 720, "15276": 2160, "15277": 4400, "15278": 3960, "15279": 3600, "15280": 1440, "15281": 2880, "15282": 4240, "15283": 3600, "15284": 2880, "15285": 3960, "15286": 2080, "15287": 2160, "15288": 5040, "15289": 2880, "15290": 3600, "15291": 1720, "15292": 2880, "15293": 3600}, "22": {"15272": 3780, "15273": 1800, "15274": 3780, "15275": 640, "15276": 2340, "15277": 4320, "15278": 3880, "15279": 3780, "15280": 1540, "15281": 2880, "15282": 4420, "15283": 3520, "15284": 3060, "15285": 3880, "15286": 2080, "15287": 2080, "15288": 4960, "15289": 3060, "15290": 3780, "15291": 1720, "15292": 3060, "15293": 3520}, "23": {"15272": 4200, "15273": 1800, "15274": 4200, "15275": 1500, "15276": 2760, "15277": 5040, "15278": 3300, "15279": 4200, "15280": 2820, "15281": 3600, "15282": 5700, "15283": 4380, "15284": 4920, "15285": 4740, "15286": 2220, "15287": 2220, "15288": 5100, "15289": 4200, "15290": 4920, "15291": 1140, "15292": 4920, "15293": 3660}}, "G937": {"1": {"15394": 6120, "15395": 4320, "15396": 5460, "15397": 2940, "15398": 3300, "15399": 4680, "15400": 4680, "15401": 4680, "15402": 3720, "15403": 3960, "15404": 6120, "15405": 2880, "15406": 4680, "15407": 5820, "15408": 2940, "15409": 4380, "15410": 2940, "15411": 3240, "15412": 3300, "15413": 3600}, "2": {"15394": 5940, "15395": 6580, "15396": 6380, "15397": 6660, "15398": 6660, "15399": 6120, "15400": 5940, "15401": 5940, "15402": 6480, "15403": 6920, "15404": 7380, "15405": 4580, "15406": 8460, "15407": 6660, "15408": 6480, "15409": 8100, "15410": 8100, "15411": 5940, "15412": 6020, "15413": 6660}, "3": {"15394": 4320, "15395": 6480, "15396": 5820, "15397": 6900, "15398": 8340, "15399": 5040, "15400": 4320, "15401": 4320, "15402": 7620, "15403": 6480, "15404": 4320, "15405": 4020, "15406": 7200, "15407": 6900, "15408": 6180, "15409": 8340, "15410": 8340, "15411": 4680, "15412": 5460, "15413": 5040}, "4": {"15394": 5040, "15395": 3600, "15396": 5460, "15397": 4020, "15398": 5460, "15399": 5760, "15400": 5040, "15401": 5040, "15402": 4740, "15403": 3600, "15404": 5040, "15405": 4020, "15406": 5040, "15407": 6900, "15408": 4740, "15409": 5460, "15410": 5460, "15411": 5040, "15412": 5460, "15413": 3600}, "5": {"15394": 4680, "15395": 3240, "15396": 6340, "15397": 3820, "15398": 4900, "15399": 5400, "15400": 4320, "15401": 4680, "15402": 4180, "15403": 3240, "15404": 4680, "15405": 3460, "15406": 4680, "15407": 6700, "15408": 4180, "15409": 5260, "15410": 5260, "15411": 4320, "15412": 4900, "15413": 3240}, "6": {"15394": 3240, "15395": 2880, "15396": 5620, "15397": 3820, "15398": 4900, "15399": 4320, "15400": 2880, "15401": 3240, "15402": 3820, "15403": 2880, "15404": 3240, "15405": 2740, "15406": 3960, "15407": 6700, "15408": 3820, "15409": 5260, "15410": 5260, "15411": 2880, "15412": 3820, "15413": 2520}, "7": {"15394": 4320, "15395": 2880, "15396": 4680, "15397": 2880, "15398": 3600, "15399": 5040, "15400": 3600, "15401": 4320, "15402": 2880, "15403": 2880, "15404": 4320, "15405": 2160, "15406": 3960, "15407": 5760, "15408": 2880, "15409": 4320, "15410": 4320, "15411": 3960, "15412": 3600, "15413": 3240}, "8": {"15394": 3960, "15395": 3960, "15396": 4320, "15397": 2880, "15398": 4320, "15399": 4320, "15400": 3960, "15401": 3960, "15402": 3960, "15403": 3960, "15404": 3960, "15405": 1440, "15406": 5400, "15407": 5760, "15408": 3960, "15409": 4320, "15410": 4320, "15411": 3960, "15412": 2880, "15413": 3960}, "9": {"15394": 3240, "15395": 4680, "15396": 4320, "15397": 4320, "15398": 5760, "15399": 4320, "15400": 3240, "15401": 3240, "15402": 4680, "15403": 4680, "15404": 3240, "15405": 1440, "15406": 6120, "15407": 5760, "15408": 3240, "15409": 5760, "15410": 5760, "15411": 3240, "15412": 2880, "15413": 4680}}, "G943": {"1": {"15414": 6839, "15415": 2741, "15416": 3239, "15417": 3239, "15418": 3848, "15419": 2160, "15420": 1440, "15421": 4209, "15422": 4320, "15423": 5040, "15424": 2519, "15425": 3600, "15426": 4070, "15427": 3959}, "2": {"15414": 7200, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 4320, "15419": 2160, "15420": 1440, "15421": 4320, "15422": 4320, "15423": 5040, "15424": 2880, "15425": 3600, "15426": 4320, "15427": 4320}, "3": {"15414": 7200, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 4320, "15419": 2160, "15420": 1440, "15421": 4320, "15422": 4320, "15423": 5040, "15424": 2880, "15425": 3600, "15426": 4320, "15427": 4320}, "4": {"15414": 6480, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 3600, "15419": 1440, "15420": 1440, "15421": 3600, "15422": 3600, "15423": 4320, "15424": 2880, "15425": 2880, "15426": 3600, "15427": 3600}, "5": {"15414": 6480, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 3600, "15419": 1440, "15420": 1440, "15421": 3600, "15422": 3600, "15423": 4320, "15424": 2880, "15425": 2880, "15426": 3600, "15427": 3600}, "6": {"15414": 6480, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 3600, "15419": 1440, "15420": 1440, "15421": 3600, "15422": 3600, "15423": 4320, "15424": 2880, "15425": 2880, "15426": 3600, "15427": 3600}, "7": {"15414": 6480, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 3600, "15419": 1440, "15420": 1440, "15421": 3600, "15422": 3600, "15423": 4320, "15424": 2880, "15425": 2880, "15426": 3600, "15427": 3600}, "8": {"15414": 6480, "15415": 2880, "15416": 3600, "15417": 3600, "15418": 3600, "15419": 1440, "15420": 1440, "15421": 3600, "15422": 3600, "15423": 4320, "15424": 2880, "15425": 2880, "15426": 3600, "15427": 3600}, "9": {"15414": 7920, "15415": 4320, "15416": 4320, "15417": 4320, "15418": 3600, "15419": 2160, "15420": 1440, "15421": 3600, "15422": 5040, "15423": 5040, "15424": 4320, "15425": 3600, "15426": 5040, "15427": 5040}}, "G945": {"1": {"15448": 3600, "15449": 5040, "15450": 2160, "15451": 4320, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 2880, "15456": 3600}, "2": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 3600, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2160, "15456": 2880}, "3": {"15448": 3600, "15449": 5040, "15450": 3600, "15451": 4320, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 2880, "15456": 3600}, "4": {"15448": 2900, "15449": 4340, "15450": 2900, "15451": 3620, "15452": 4340, "15453": 2900, "15454": 2900, "15455": 2180, "15456": 2900}, "5": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 3600, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2160, "15456": 2880}, "6": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 3600, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2160, "15456": 2880}, "7": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 3600, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2160, "15456": 2880}, "8": {"15448": 2160, "15449": 3600, "15450": 2160, "15451": 2880, "15452": 3600, "15453": 2160, "15454": 2160, "15455": 1440, "15456": 2160}, "9": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 3600, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2160, "15456": 2880}, "10": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "11": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "12": {"15448": 3600, "15449": 5040, "15450": 3600, "15451": 5040, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 3600, "15456": 3600}, "13": {"15448": 3600, "15449": 5040, "15450": 3600, "15451": 5040, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 3600, "15456": 3600}, "14": {"15448": 3600, "15449": 5040, "15450": 3600, "15451": 3600, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 2160, "15456": 3600}, "15": {"15448": 3600, "15449": 5040, "15450": 3600, "15451": 5040, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 3600, "15456": 3600}, "16": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "17": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "18": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "19": {"15448": 2160, "15449": 3600, "15450": 2160, "15451": 3600, "15452": 3600, "15453": 2160, "15454": 2160, "15455": 2160, "15456": 2160}, "20": {"15448": 3600, "15449": 5040, "15450": 3600, "15451": 5040, "15452": 5040, "15453": 3600, "15454": 3600, "15455": 3600, "15456": 3600}, "21": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "22": {"15448": 3240, "15449": 4680, "15450": 3240, "15451": 4680, "15452": 4680, "15453": 3240, "15454": 3240, "15455": 3240, "15456": 3240}, "23": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}, "24": {"15448": 2880, "15449": 4320, "15450": 2880, "15451": 4320, "15452": 4320, "15453": 2880, "15454": 2880, "15455": 2880, "15456": 2880}}} \ No newline at end of file diff --git a/outputs/neighborhood_new.json b/outputs/neighborhood_new.json new file mode 100644 index 0000000..e2ae777 --- /dev/null +++ b/outputs/neighborhood_new.json @@ -0,0 +1 @@ +{"G646": {"14455": [14463, 14456, 14457, 14486, 14471, 14450, 14458, 14469, 14490, 14483, 14492, 14485, 14473, 14494, 14484, 14448, 14461, 14460, 14476, 14462], "14463": [14455, 14456, 14457, 14486, 14452, 14481, 14450, 14479, 14458, 14469, 14467, 14488, 14487, 14468, 14485, 14472, 14484, 14460, 14496, 14477, 14493, 14462], "14456": [14455, 14463, 14457, 14486, 14479, 14489, 14494, 14482, 14484, 14476], "14457": [14456, 14463, 14455, 14452, 14471, 14450, 14479, 14466, 14458, 14469, 14467, 14459, 14480, 14454, 14470, 14464, 14448, 14476], "14486": [14455, 14456, 14463, 14452, 14481, 14480, 14447, 14482, 14495, 14451], "14452": [14463, 14486, 14457, 14481, 14471, 14490, 14459, 14492, 14472, 14473, 14494, 14470, 14461, 14495, 14493], "14481": [14463, 14486, 14452], "14471": [14455, 14452, 14457, 14489, 14474, 14465, 14477], "14450": [14455, 14463, 14457, 14466, 14489, 14487, 14483, 14472, 14473, 14454], "14479": [14463, 14457, 14456, 14466, 14474, 14447, 14478], "14466": [14457, 14479, 14450, 14485], "14458": [14457, 14463, 14455, 14475], "14469": [14463, 14457, 14455, 14467, 14488, 14487, 14483, 14468, 14492, 14464, 14449, 14491, 14453], "14467": [14457, 14469, 14463, 14490, 14461, 14496, 14449], "14490": [14455, 14467, 14452, 14488, 14459, 14468], "14489": [14456, 14471, 14450, 14474], "14488": [14469, 14490, 14463], "14474": [14479, 14489, 14471], "14487": [14469, 14450, 14463, 14447, 14475, 14477, 14478], "14483": [14450, 14469, 14455, 14480], "14459": [14490, 14452, 14457], "14468": [14463, 14469, 14490], "14492": [14469, 14455, 14452], "14485": [14463, 14466, 14455, 14454, 14465, 14496], "14480": [14486, 14457, 14483, 14475, 14448, 14460], "14447": [14486, 14479, 14487], "14475": [14487, 14458, 14480], "14472": [14463, 14452, 14450, 14493, 14462], "14473": [14455, 14450, 14452, 14491, 14478], "14494": [14452, 14455, 14456, 14482, 14491, 14453], "14482": [14486, 14494, 14456, 14495, 14465], "14454": [14450, 14485, 14457, 14470, 14464], "14470": [14457, 14454, 14452], "14464": [14457, 14454, 14469], "14484": [14455, 14456, 14463], "14448": [14480, 14457, 14455, 14449], "14461": [14467, 14455, 14452], "14495": [14452, 14486, 14482], "14460": [14463, 14480, 14455], "14465": [14482, 14471, 14485, 14453], "14496": [14463, 14467, 14485, 14451], "14476": [14455, 14457, 14456], "14449": [14448, 14469, 14467], "14491": [14473, 14494, 14469, 14451], "14477": [14463, 14471, 14487], "14451": [14486, 14496, 14491], "14493": [14472, 14452, 14463], "14478": [14487, 14479, 14473], "14453": [14465, 14469, 14494], "14462": [14472, 14455, 14463]}, "G903": {"14693": [14713, 14696, 14704, 14685, 14708, 14705, 14679, 14695, 14692, 14694], "14713": [14693, 14696, 14704, 14691, 14685, 14716, 14699, 14719, 14701, 14694], "14696": [14693, 14713, 14704, 14691, 14716, 14708, 14697, 14679, 14703, 14699, 14718, 14688, 14683, 14702, 14680, 14686, 14684, 14717, 14711, 14677, 14714], "14704": [14713, 14696, 14693, 14691, 14697, 14682, 14703, 14699, 14687, 14719, 14717, 14698, 14690], "14691": [14696, 14704, 14713, 14685, 14716, 14708, 14679, 14707, 14692, 14689], "14685": [14691, 14693, 14713, 14705, 14695, 14709, 14688, 14712, 14701, 14690], "14716": [14696, 14691, 14713, 14682, 14703, 14702, 14680, 14681, 14684, 14687, 14677], "14708": [14691, 14693, 14696, 14705, 14697, 14709, 14700, 14683, 14702, 14689], "14705": [14693, 14708, 14685, 14707, 14718, 14701], "14697": [14704, 14696, 14708, 14695, 14709, 14707, 14718, 14720, 14710, 14714, 14715], "14679": [14693, 14696, 14691, 14682, 14698], "14682": [14716, 14679, 14704, 14700, 14681, 14689, 14710], "14695": [14697, 14685, 14693, 14700, 14712], "14709": [14685, 14708, 14697, 14683, 14681, 14720, 14719], "14703": [14696, 14716, 14704], "14699": [14696, 14713, 14704, 14692, 14688, 14706, 14694], "14707": [14697, 14705, 14691], "14718": [14705, 14697, 14696, 14720, 14686, 14712, 14678, 14690], "14692": [14699, 14693, 14691, 14717], "14700": [14708, 14695, 14682, 14680], "14688": [14699, 14685, 14696, 14706, 14678], "14683": [14708, 14709, 14696, 14686, 14698], "14702": [14708, 14696, 14716], "14680": [14716, 14696, 14700, 14706, 14684, 14714], "14681": [14716, 14682, 14709, 14711], "14720": [14709, 14718, 14697, 14678], "14686": [14683, 14696, 14718, 14687, 14710, 14715], "14689": [14682, 14691, 14708], "14706": [14688, 14680, 14699], "14684": [14696, 14716, 14680], "14687": [14716, 14704, 14686, 14715], "14710": [14682, 14697, 14686, 14711], "14712": [14695, 14685, 14718], "14719": [14709, 14704, 14713], "14701": [14705, 14713, 14685], "14678": [14718, 14720, 14688, 14677], "14717": [14696, 14692, 14704], "14711": [14681, 14696, 14710], "14677": [14716, 14678, 14696], "14698": [14704, 14679, 14683], "14714": [14697, 14696, 14680], "14715": [14697, 14687, 14686], "14694": [14713, 14699, 14693], "14690": [14704, 14718, 14685]}, "G916": {"14925": [14922, 14910, 14906, 14907, 14901, 14916, 14913, 14915, 14949, 14923, 14911, 14902, 14909, 14924, 14908], "14922": [14925, 14910, 14906, 14907, 14901, 14916, 14913, 14948, 14915, 14949, 14905, 14903, 14926, 14919], "14910": [14925, 14922, 14906, 14907, 14901, 14905, 14903, 14909, 14920], "14906": [14910, 14922, 14925, 14916, 14913, 14948, 14949, 14903, 14921], "14907": [14925, 14922, 14910, 14923, 14902, 14917, 14904, 14924], "14901": [14925, 14910, 14922, 14915, 14911, 14917], "14916": [14925, 14906, 14922, 14948, 14905, 14926], "14913": [14925, 14922, 14906, 14911, 14902, 14904, 14914, 14924, 14920, 14919, 14912], "14948": [14922, 14906, 14916, 14927, 14904, 14914], "14915": [14901, 14925, 14922, 14923, 14927, 14914, 14950], "14949": [14925, 14906, 14922, 14928, 14908, 14919], "14923": [14925, 14915, 14907, 14927, 14921], "14905": [14922, 14910, 14916, 14926], "14911": [14925, 14901, 14913, 14921, 14912], "14927": [14948, 14915, 14923, 14950], "14902": [14925, 14913, 14907, 14917, 14950, 14908, 14912], "14917": [14901, 14907, 14902, 14928], "14904": [14913, 14907, 14948, 14909], "14903": [14910, 14922, 14906], "14926": [14905, 14916, 14922], "14909": [14910, 14904, 14925, 14928, 14920], "14914": [14913, 14948, 14915], "14924": [14925, 14907, 14913], "14950": [14927, 14915, 14902], "14928": [14949, 14909, 14917], "14908": [14949, 14902, 14925], "14921": [14906, 14911, 14923], "14920": [14913, 14909, 14910], "14919": [14922, 14949, 14913], "14912": [14913, 14911, 14902]}, "G927": {"15167": [15164, 15162, 15161, 15153, 15165, 15163, 15152, 15168, 15157, 15132], "15164": [15167, 15162, 15161, 15153, 15160, 15152, 15168, 15155, 15169, 15166, 15158], "15162": [15167, 15164, 15161, 15153, 15165, 15159, 15152, 15157, 15169, 15154], "15161": [15167, 15164, 15162, 15160, 15159, 15163, 15156, 15166, 15154], "15153": [15164, 15162, 15167, 15165, 15160, 15159, 15155, 15169, 15156], "15165": [15167, 15153, 15162, 15163, 15155, 15157, 15166], "15160": [15153, 15161, 15164, 15168, 15154], "15159": [15162, 15153, 15161], "15163": [15161, 15167, 15165], "15152": [15167, 15164, 15162], "15168": [15167, 15160, 15164, 15156, 15132], "15155": [15164, 15153, 15165, 15132], "15157": [15165, 15167, 15162], "15169": [15162, 15164, 15153, 15158], "15156": [15153, 15168, 15161], "15166": [15164, 15165, 15161, 15158], "15154": [15160, 15162, 15161], "15132": [15167, 15155, 15168], "15158": [15164, 15166, 15169]}, "G933": {"15244": [15233, 15236, 15234, 15240, 15238, 15248], "15233": [15244, 15230, 15236, 15239, 15231, 15248], "15230": [15233, 15236, 15239, 15246, 15248], "15236": [15244, 15233, 15230, 15239, 15232, 15249], "15239": [15233, 15230, 15236, 15232, 15249, 15235], "15232": [15236, 15239, 15249, 15245, 15234], "15249": [15236, 15239, 15232, 15245, 15234, 15241], "15245": [15232, 15249, 15234, 15241, 15246, 15231], "15234": [15244, 15232, 15249, 15245, 15241, 15251, 15240], "15241": [15249, 15245, 15234, 15240, 15246, 15231], "15251": [15234, 15240, 15246, 15235], "15240": [15244, 15234, 15241, 15251, 15235, 15243], "15246": [15230, 15245, 15241, 15251, 15243, 15242, 15231], "15235": [15239, 15251, 15240, 15243, 15242, 15237], "15243": [15240, 15246, 15235, 15242, 15237, 15250], "15242": [15246, 15235, 15243, 15237, 15250, 15247], "15237": [15235, 15243, 15242, 15250, 15247, 15238], "15250": [15243, 15242, 15237, 15247, 15238, 15231], "15247": [15242, 15237, 15250, 15238, 15231, 15248], "15238": [15244, 15237, 15250, 15247, 15231, 15248], "15231": [15233, 15245, 15241, 15246, 15250, 15247, 15238, 15248], "15248": [15244, 15233, 15230, 15247, 15238, 15231]}, "G936": {"15273": [15285, 15277, 15290, 15281, 15283, 15275], "15285": [15273, 15277, 15290, 15282, 15289, 15293, 15275], "15277": [15273, 15285, 15290, 15282, 15280, 15278, 15275], "15290": [15273, 15285, 15277, 15282, 15280, 15292, 15284], "15282": [15285, 15277, 15290, 15280, 15292, 15289, 15287], "15280": [15277, 15290, 15282, 15292, 15274, 15293], "15292": [15290, 15282, 15280, 15289, 15274, 15272], "15289": [15285, 15282, 15292, 15272, 15284], "15274": [15280, 15292, 15284, 15279, 15286], "15272": [15292, 15289, 15284, 15279, 15276], "15284": [15290, 15289, 15274, 15272, 15279, 15288], "15279": [15274, 15272, 15284, 15276, 15288, 15281], "15276": [15272, 15279, 15288, 15281, 15286], "15288": [15284, 15279, 15276, 15281, 15286, 15291, 15293], "15281": [15273, 15279, 15276, 15288, 15291, 15278], "15286": [15274, 15276, 15288, 15291, 15278, 15287], "15291": [15288, 15281, 15286, 15278, 15287, 15283], "15278": [15277, 15281, 15286, 15291, 15287, 15293], "15287": [15282, 15286, 15291, 15278, 15283, 15293], "15283": [15273, 15291, 15287, 15293, 15275], "15293": [15285, 15280, 15288, 15278, 15287, 15283, 15275], "15275": [15273, 15285, 15277, 15283, 15293]}, "G937": {"15408": [15409, 15410, 15406, 15405, 15396, 15407], "15397": [15409, 15410, 15398, 15412, 15396, 15407], "15409": [15408, 15397, 15410, 15398, 15402, 15407], "15410": [15408, 15397, 15409, 15398, 15402, 15395], "15398": [15397, 15409, 15410, 15402, 15395, 15403], "15402": [15409, 15410, 15398, 15395, 15403, 15406], "15395": [15410, 15398, 15402, 15403, 15406, 15413], "15403": [15398, 15402, 15395, 15406, 15413, 15411], "15406": [15408, 15402, 15395, 15403, 15413, 15411, 15400], "15413": [15395, 15403, 15406, 15411, 15400, 15394], "15411": [15403, 15406, 15413, 15400, 15394, 15404], "15400": [15406, 15413, 15411, 15394, 15404, 15401], "15394": [15413, 15411, 15400, 15404, 15401, 15399], "15404": [15411, 15400, 15394, 15401, 15399, 15412], "15401": [15400, 15394, 15404, 15399, 15412, 15405], "15399": [15394, 15404, 15401, 15412, 15405, 15396], "15412": [15397, 15404, 15401, 15399, 15396, 15407], "15405": [15408, 15401, 15399, 15396, 15407], "15396": [15408, 15397, 15399, 15412, 15405, 15407], "15407": [15408, 15397, 15409, 15412, 15405, 15396]}, "G943": {"15426": [15414, 15427, 15422, 15424, 15415], "15414": [15426, 15427, 15422, 15425, 15423, 15419, 15424, 15415], "15427": [15426, 15414, 15422, 15425, 15423, 15415], "15422": [15426, 15414, 15427, 15425, 15423, 15419], "15425": [15414, 15427, 15422, 15423, 15419], "15423": [15414, 15427, 15422, 15425, 15419, 15420, 15421, 15417], "15419": [15414, 15422, 15425, 15423, 15421, 15418], "15420": [15423, 15421, 15418, 15416], "15421": [15423, 15419, 15420, 15418, 15416, 15417], "15418": [15419, 15420, 15421, 15416, 15417, 15424], "15416": [15420, 15421, 15418, 15417, 15424, 15415], "15417": [15423, 15421, 15418, 15416, 15424, 15415], "15424": [15426, 15414, 15418, 15416, 15417, 15415], "15415": [15426, 15414, 15427, 15416, 15417, 15424]}, "G945": {"15449": [15450, 15453, 15456, 15454, 15448, 15455, 15451], "15450": [15449, 15456, 15454, 15452, 15451], "15453": [15449, 15456, 15454, 15452, 15455, 15451], "15456": [15449, 15450, 15453, 15454, 15452, 15448], "15454": [15449, 15450, 15453, 15456, 15452, 15448], "15452": [15450, 15453, 15456, 15454, 15448, 15455, 15451], "15448": [15449, 15456, 15454, 15452, 15455, 15451], "15455": [15449, 15453, 15452, 15448, 15451], "15451": [15449, 15450, 15453, 15452, 15448, 15455]}} \ No newline at end of file diff --git a/outputs/survivals_new.json b/outputs/survivals_new.json new file mode 100644 index 0000000..ee689f2 --- /dev/null +++ b/outputs/survivals_new.json @@ -0,0 +1 @@ +{"G646": {"0": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "1": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "2": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "3": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "4": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "5": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "6": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "7": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "8": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "9": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "10": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496], "11": [14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496]}, "G903": {"0": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "1": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "2": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "3": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "4": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "5": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "6": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "7": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "8": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "9": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "10": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "11": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "12": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "13": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "14": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "15": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "16": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "17": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "18": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "19": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "20": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "21": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "22": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "23": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "24": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "25": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "26": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "27": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720], "28": [14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720]}, "G916": {"0": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "1": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "2": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "3": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "4": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "5": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "6": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "7": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "8": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "9": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "10": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "11": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "12": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "13": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "14": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "15": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "16": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "17": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950], "18": [14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14948, 14949, 14950]}, "G927": {"0": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "1": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "2": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "3": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "4": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "5": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "6": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "7": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "8": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "9": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "10": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "11": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "12": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "13": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "14": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "15": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "16": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "17": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "18": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "19": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "20": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "21": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "22": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "23": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "24": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "25": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169], "26": [15132, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169]}, "G933": {"0": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "1": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "2": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "3": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "4": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "5": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "6": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "7": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "8": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "9": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "10": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "11": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "12": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "13": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "14": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "15": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "16": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "17": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "18": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "19": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "20": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "21": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "22": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "23": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "24": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "25": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "26": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "27": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251], "28": [15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251]}, "G936": {"0": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "1": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "2": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "3": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "4": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "5": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "6": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "7": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "8": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "9": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "10": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "11": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "12": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "13": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "14": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "15": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "16": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "17": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "18": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "19": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "20": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "21": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "22": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "23": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293], "24": [15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293]}, "G937": {"0": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "1": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "2": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "3": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "4": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "5": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "6": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "7": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "8": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "9": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413], "10": [15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413]}, "G943": {"0": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "1": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "2": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "3": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "4": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "5": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "6": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "7": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "8": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "9": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427], "10": [15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427]}, "G945": {"0": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "1": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "2": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "3": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "4": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "5": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "6": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "7": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "8": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "9": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "10": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "11": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "12": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "13": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "14": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "15": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "16": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "17": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "18": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "19": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "20": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "21": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "22": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "23": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "24": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456], "25": [15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456]}} \ No newline at end of file diff --git a/theta_plot.py b/theta_plot.py index e3582ea..7172a95 100644 --- a/theta_plot.py +++ b/theta_plot.py @@ -5,20 +5,21 @@ from matplotlib import markers blue = '#0984e3' red = '#d63031' -x = np.arange(1, 16) -tc = np.loadtxt("outputs/EID_CLASSIC.csv", delimiter=',') -ts = np.loadtxt("outputs/EID_SURVIVE.csv", delimiter=',') +MAX_ROUND = 28 +x = np.arange(1, MAX_ROUND+1) +tc = np.loadtxt("outputs/EID_NEW_BA.csv", delimiter=',') +ts = np.loadtxt("outputs/EID_NEW_WS.csv", delimiter=',') fig = plt.figure(figsize=(6,4.5)) ax = fig.gca() -ax.plot(x[:-1], tc[:-1], 'o--', color='limegreen', linewidth=2, label=r"Classic") -ax.plot(x[:-1], ts[:-1], 'o-', color='darkorange', linewidth=2, label=r"Dissipative") +ax.plot(x[:-1], tc[:-1], 'o--', color='limegreen', linewidth=2, label=r"BA") +ax.plot(x[:-1], ts[:-1], 'o-', color='darkorange', linewidth=2, label=r"WS") -ax.set_ylim(-1500, 500) -ax.set_yticks(sp.linspace(-1500, 500, 6)) +# ax.set_ylim(-1500, 500) +# ax.set_yticks(sp.linspace(-1500, 500, 6)) ax.tick_params(labelsize=14) -ax.set_xlim(1, 15) -ax.set_xticks(sp.linspace(1,15,8, dtype=int)) +ax.set_xlim(1, MAX_ROUND) +ax.set_xticks(sp.linspace(1,MAX_ROUND,8, dtype=int)) ax.set_xlabel("Rounds", size=22) ax.set_ylabel(r"$\theta$", family='sans-serif', size=22) # ax.tick_params(axis='y', labelcolor=red) @@ -26,4 +27,5 @@ ax.set_ylabel(r"$\theta$", family='sans-serif', size=22) plt.legend(numpoints=2, fontsize=14) plt.tight_layout() # plt.show() -plt.savefig("graph/theta_plot.eps") +# plt.savefig("graph/theta_plot.eps") +plt.savefig("graph/theta_plot_new.pdf") diff --git a/theta_r.py b/theta_r.py new file mode 100644 index 0000000..5b13dc6 --- /dev/null +++ b/theta_r.py @@ -0,0 +1,122 @@ +""" +计算theta_r +theta_r_i=所有邻居的剩余时间 + +输出: +1. json格式(详细) +{ + "GID": { + "RID": { + "PID": theta_r_i, + } + } +} +2. CSV格式(按轮平均值, CLASSIC/SURVIVE分别对应一个文件) +""" +import csv +import json +from functools import reduce +from sre_constants import MAX_REPEAT +from tkinter.tix import MAX +import numpy as np +from island.match import Match +from island.matches import Matches + +MAX_ROUND = 28 + +class theta_r_i: + def __init__(self): + self.details = {} + self.survivals = {} + with open('outputs/survivals_new.json','r') as f: + self.survivals = json.load(f) + self.neighbors = {} + with open('outputs/neighborhood_new.json', 'r') as f: + self.neighbors = json.load(f) + self.seasons = [ + dict(season=Matches('wos-data-2022', network_type='BA'), name='NEW_BA'), + dict(season=Matches('wos-data-2022', network_type='WS'), name='NEW_WS') + ] + # self.seasonSurvive = Matches.from_profile('SURVIVE') + # self.seasonClassic = Matches.from_profile('CLASSIC') + + + def getNeighborTR(self, m, r, p, s): + """ + 获取该玩家所有邻居的剩余时间 + + :param m: Match + :param r: Round ID + :param p: PID + :param s: Survivals list(neighborhood) + :returns: theta_{r}_{i} + """ + return 1440*len(s) - reduce(lambda a, b: a + b['tr'], m.query('action', 'done').where(lambda x: x['rno'] == r and ((x['a'] in s)or(x['b']in s))).raw_data, 0) + + + def getNeighborhood(self, m, r, p): + """ + 获取该玩家当轮存活邻居 + + :param m: Match + :param r: Round ID + :param p: PID + :returns: Survivals list(neighborhood) + """ + if str(p) not in self.neighbors[m.name]: + print("Alone(%d)!" % p) + return [] + return [i for i in self.survivals[m.name][str(r)] if i in self.neighbors[m.name][str(p)]] + + + def calcRoundData(self, m, r): + """ + 计算某场比赛,某一轮的theta值 + + :param m: Match + :param r: Round ID + :param p: PID + :returns: an average value and a detail dict + """ + r += 1 + ans = {} + sigma = 0.0 + for p in self.survivals[m.name][str(r)]: + e = max(0, min(144000000, self.getNeighborTR(m, r, p, self.getNeighborhood(m, r, p)))) + ans[p] = e + sigma += e + return (sigma, ans) + + def calc_season(self, season, name): + """ + calc E_i,D + """ + avg = np.zeros(MAX_ROUND) + cnt = np.zeros(MAX_ROUND) + for m in season.data: + d = {} + maxr = int(m.query('game', 'created').first()['info']['game_end_at']) + for r in range(1, maxr): + sigma, ans = self.calcRoundData(m, r) + d[r] = ans + avg[r-1] += sigma + cnt[r-1] += len(ans) + self.details[m.name] = d + print(cnt) + for i in range(MAX_ROUND): + if cnt[i] == 0: + cnt[i] = 1 + avg /= cnt + with open(f'outputs/EID_{name}.csv', 'w') as f: + csv.writer(f).writerow(avg) + return avg + + def calc(self): + for s in self.seasons: + self.calc_season(s['season'], s['name']) + with open('outputs/EID_new_detail.json', 'w') as f: + json.dump(self.details, f) + +if __name__ == '__main__': + e = theta_r_i() + e.calc()