Giter VIP home page Giter VIP logo

ta.py's Introduction

Technical Analysis (ta.py)

ta.py is a Python package for dealing with financial technical analysis.

Installation

pip

Use the package manager pip to install ta.py.

pip install ta_py

Usage

import ta_py as ta;

Examples

Moving Averages

Indicators

Oscillators

Bands

Statistics

Chart Types

Miscellaneous

Experimental

Moving Averages

Simple Moving Average (SMA)

data = [1, 2, 3, 4, 5, 6, 10];
length = 6; # default = 14
ta.sma(data, length);
# output (array)
# [3.5, 5]

Smoothed Moving Average (SMMA)

data = [1, 2, 3, 4, 5, 6, 10];
length = 5; # default = 14
ta.smma(data, length);
# output (array)
# [3.4, 4.92]

Weighted Moving Average (WMA)

data = [69, 68, 66, 70, 68];
length = 4; # default = 14
ta.wma(data, length);
# output (array)
# [68.3, 68.2]

Exponential Moving Average (EMA)

data = [1, 2, 3, 4, 5, 6, 10];
length = 6; # default = 12
ta.ema(data, length);
# output (array)
# [3.5, 5.357]

Hull Moving Average

data = [6, 7, 5, 6, 7, 4, 5, 7];
length = 6; # default = 14
ta.hull(data, length);
# output (array)
# [4.76, 5.48]

Least Squares Moving Average (LSMA)

data = [5, 6, 6, 3, 4, 6, 7];
length = 6; # default = 25
ta.lsma(data, length);
# output (array)
# [4.714, 5.761]

Volume Weighted Moving Average (VWMA)

data = [[1, 59], [1.1, 82], [1.21, 27], [1.42, 73], [1.32, 42]]; # [price, volume (quantity)]
length = 4; # default = 20
ta.vwma(data, length);
# output (array)
# [1.185, 1.259]

Volume Weighted Weighted Moving Average (VWWMA)

data = [[1,59],[1.1,82],[1.21,27],[1.42,73],[1.32,42]];
length = 4;
ta.vwwma(data, length);
# output (array)
# [1.262, 1.316]

Wilder's Smoothing Moving Average

data = [1, 2, 3, 4, 5, 6, 10];
length = 6; # default = 14
ta.wsma(data, length);
# output (array)
# [3.5, 4.58]

Parabolic Weighted Moving Average

 data = [17, 26, 23, 29, 20];
 length = 4; # default = 14
ta.pwma(data, length);
# output (array)
# [24.09, 25.18]

Hyperbolic Weighted Moving Average

data = [54, 51, 86, 42, 47];
length = 4; # default = 14
ta.hwma(data, length);
# output (array)
# [56.2, 55.0]

Kaufman Adaptive Moving Average (KAMA)

data = [8, 7, 8, 9, 7, 9];
length1 = 2; # default = 10
length2 = 4; # default = 2
length3 = 8; # default = 30
ta.kama(data, length1, length2, length3);
# output (array)
# [8, 8.64, 8.57, 8.57]

Custom Weighted Moving Average

data = [69,68,66,70,68,69];
weights = [1,2,3,5,8];
ta.cwma(data, weights);
# output (array)
# [68.26315789473684, 68.52631578947368]

Indicators

Moving Average Convergence / Divergence (MACD)

data = [1, 2, 3, 4, 5, 6, 14];
length1 = 3; # default = 12
length2 = 6; # default = 26
ta.macd(data, length1, length2);
# output (array)
# [1.5, 3]

Relative Strength Index (RSI)

data = [1, 2, 3, 4, 5, 6, 7, 5];
length = 6; # default = 14
ta.rsi(data, length);
# output (array)
# [100, 100, 66.667]

Wilder's Relative Strength Index

data = [1, 2, 3, 4, 5, 6, 7, 5, 6];
length = 6; # default = 14
ta.wrsi(data, length);
# output (array)
# [100, 71.43, 75.61]

True Strength Index (TSI)

data = [1.32, 1.27, 1.42, 1.47, 1.42, 1.45, 1.59];
longlength = 3; # default = 25
shortlength = 2; # default = 13
signallength = 2; # default = 13
ta.tsi(data, longlength, shortlength, signallength);
# output (array)
# [[0.327, 0.320], [0.579, 0.706]]
# [strength line, signal line]

Balance Of Power

data = [[4, 5, 4, 5], [5, 6, 5, 6], [6, 8, 5, 6]]; # [open, high, low, close]
length = 2; # default = 14
ta.bop(data, length);
# output (array)
# [1, 0.5]

Force Index

data = [[1.4, 200], [1.5, 240], [1.1, 300], [1.2, 240], [1.5, 400]]; # [close, volume]
length = 4; # default = 13
ta.fi(data, length);
# output (array)
# [0.0075]

Accumulative Swing Index

data = [[7, 6, 4], [9, 7, 5], [9, 8, 6]]; # [high, close, low]
ta.asi(data);
# output (array)
# [0, -12.5]

Alligator Indicator

data = [8,7,8,9,7,8,9,6,7,8,6,8,10,8,7,9,8,7,9,6,7,9];
# defaults shown
jawlength = 13;
teethlength = 8;
liplength = 5;
jawshift = 8;
teethshift = 5;
lipshift = 3;
ta.alligator(data, jawlength, teethlength, liplength, jawshift, teethshift, lipshift);
# output (array)
# [jaw, teeth, lips]

Williams %R

data = [2, 1, 3, 1, 2];
length = 3; # default = 14
ta.pr(data, length);
# output (array)
# [-0, -100, -50]

Stochastics

data = [[3,2,1], [2,2,1], [4,3,1], [2,2,1]]; # [high, close, low]
length = 2; # default = 14
smoothd = 1; # default = 3
smoothk = 1; # default = 3
ta.stoch(data, length, smoothd, smoothk);
# output (array)
# [[66.667, 66.667], [33.336, 33.336]]
# [kline, dline]

Fibonacci Retracement

start = 1;
end = 2;
ta.fib(start, end);
# output (array)
# [1, 1.236, 1.382, 1.5, 1.618, 1.786, 2, 2.618, 3.618, 4.618, 5.236]

Bollinger Bandwidth

data = [1, 2, 3, 4, 5, 6];
length = 5; # default = 14
deviations = 2; # default = 1
ta.bandwidth(data, length, deviations);
# output (array)
# [1.886, 1.344]

Ichimoku Cloud

data = [[6, 3, 2], [5, 4, 2], [5, 4, 3], [6, 4, 3], [7, 6, 4], [6, 5, 3]]; # [high, close, low]
length1 = 9; # default = 9
length2 = 26; # default = 26
length3 = 52; # default = 52
displacement = 26; # default = 26
ta.ichimoku(data, length1, length2, length3, displacement);
# output (array)
# [conversion line, base line, leading span A, leading span B, lagging span]

Average True Range (ATR)

data = [[3,2,1], [2,2,1], [4,3,1], [2,2,1]]; # [high, close, low]
length = 3; # default = 14
ta.atr(data, length);
# output (array)
# [2, 1.667, 2.111, 1.741]

Aroon Up

data = [5, 4, 5, 2];
length = 3; # default = 10
ta.aroon_up(data, length);
# output (array)
# [100.0, 50.0]

Aroon Down

data = [2, 5, 4, 5];
length = 3; # default = 10
ta.aroon_down(data, length);
# output (array)
# [0.0, 50.0]

Money Flow Index

data = [[19, 13], [14, 38], [21, 25], [32, 17]]; # [buy volume, sell volume]
length = 3; # default = 14
ta.mfi(data, length);
# output (array)
# [41.54, 45.58]

Rate Of Change

data = [1, 2, 3, 4];
length = 3; # default = 14
ta.roc(data, length);
# output (array)
# [2, 1]

Coppock Curve

data = [3, 4, 5, 3, 4, 5, 6, 4, 7, 5, 4, 7, 5];
length1 = 4; # (ROC period 1) default = 11
length2 = 6; # (ROC period 2) default = 14
length3 = 5; # (WMA smoothing period) default = 10
ta.cop(data, length1, length2, length3);
# output (array)
# [0.376, 0.237]

Know Sure Thing

data = [8, 6, 7, 6, 8, 9, 7, 5, 6, 7, 6, 8, 6, 7, 6, 8, 9, 9, 8, 6, 4, 6, 5, 6, 7, 8, 9];
# roc sma #1
r1 = 5; # default = 10
s1 = 5; # default = 10
# roc sma #2
r2 = 7; # default = 15
s2 = 5; # default = 10
# roc sma #3
r3 = 10; # default = 20
s3 = 5; # default = 10
# roc sma #4
r4 = 15; # default = 30
s4 = 7; # default = 15
# signal line
sig = 4; # default = 9
ta.kst(data, r1, s1, r2, s2, r3, s3, r4, s4, sig);
# output (array)
# [[-0.68, -0.52], [-0.29, -0.58], [0.35, -0.36]]
# [kst line, signal line]

On-Balance Volume

data = [[25200, 10], [30000, 10.15], [25600, 10.17], [32000, 10.13]]; # [asset volume, close price]
ta.obv(data);
# output (array)
# [0, 30000, 55600, 23600]

Volume-Weighted Average Price

data = [[127.21, 89329], [127.17, 16137], [127.16, 23945]]; # [average price, volume (quantity)]
length = 2; # default = len(length)
ta.vwap(data, length);
# output (array)
# [127.204, 127.164]

Fractals

data = [[7,6],[8,6],[9,6],[8,5],[7,4],[6,3],[7,4],[8,5]]; # [high, low]
ta.fractals(data);
# output (array, same length as input)
# [[false, false],[false,false],[true,false],[false,false],[false,false],[false,true],[false,false],[false,false]]
# [upper fractal, lower fractal]

Crossover (golden cross)

fastdata = [3,4,5,4,3]; # short period gets spliced when longer
slowdata = [4,3,2,3,4];
ta.cross(fastdata, slowdata);
# output (array)
# [{index: 1, cross True}, {index: 4, cross: False}]
# cross is true when fastdata is greater than the slowdata

Momentum

data = [1, 1.1, 1.2, 1.24, 1.34];
length = 4; # default = 10
percentage = false; # default = false (true returns percentage)
ta.mom(data, length, percentage);
# output (array)
# [0.24, 0.24]

HalfTrend

# experimental (untested) function (may change in the future), ported from:
# https://www.tradingview.com/script/U1SJ8ubc-HalfTrend/
# data = [high, close, low]
data = [[100,97,90],[101,98,94],[103,96,92],[106,100,95],[110,101,100],[112,110,105],[110,100,90],[103,100,97],[95,90,85],[94,80,80],[90,82,81],[85,80,70]];
atrlen = 6;
amplitude = 3;
deviation = 2;
ta.halftrend(data, atrlen, amplitude, deviation);
# output (array)
# [
#   [ 115.14, 105, 94.86, 'long' ],
#   [ 100.77, 90, 79.22, 'long' ],
#   [ 116.32, 105, 93.68, 'long' ],
#   [ 101.1, 90, 78.89, 'long' ],
#   [ 116.25, 105, 93.75, 'long' ],
#   [ 99.77, 90, 80.23, 'long' ]
# ]

ZigZag

# Based on high / low
data = [[10,9], [12,10], [14,12], [15,13], [16,15], [11,10], [18,15]]; # [high, low]
percentage = 0.25; # default = 0.05
ta.zigzag(data, percentage);
# output (array)
# [9, 10.75, 12.5, 14.25, 16, 10, 18]
# Based on close
data = [6,7,8,9,10,12,9,8,5,3,3,3,5,7,8,9,11];
percentage = 0.05;
ta.zigzag(data, percentage);
# output (array)
# [6, 7.2, 8.4, 9.6, 10.8, 12.0, 10.5, 9.0, 7.5, 6.0, 4.5, 3.0, 4.6, 6.2, 7.8, 9.4, 11.0]

Parabolic SAR

data = [[82.15,81.29],[81.89,80.64],[83.03,81.31],[83.30,82.65],[83.85,83.07],[83.90,83.11],[83.33,82.49],[84.30,82.3],[84.84,84.15],[85,84.11],[75.9,74.03],[76.58,75.39],[76.98,75.76],[78,77.17],[70.87,70.01]];
step = 0.02;
max = 0.2;
ta.psar(data, step, max);
# output (array)
# [81.29,82.15,80.64,80.64,80.7464,80.932616,81.17000672,81.3884061824,81.67956556416,82.0588176964608,85,85,84.7806,84.565588,84.35487624000001]

SuperTrend

data = [[3,2,1], [2,2,1], [4,3,1], [2,2,1]]; # [high, close, low]
length = 3;
multiplier = 0.5;
ta.supertrend(data, length, multiplier);
# output (array)
# [[5.56,1.44],[3.37,0.63]]
# [up, down]

Elder Ray Index

data = [6,5,4,7,8,9,6,8];
length = 7;
ta.elderray(data, length);
# output (array)
# [[2.57,-2.43],[2.29,-2.71]]
# [bull, bear]

Historical Volatility

data = [7,6,5,7,8,9,7,6,5];
length = 8;
ta.hv(data, length);
# output (array)
# [0.642, 0.682]

Relative Vigor Index

# data = [[open,high,low,close]] (requires at least 4 + length values)
data = [[4,6,3,3], [3,5,2,2], [2,5,2,4], [4,6,4,5], [5,7,4,4], [4,6,3,4], [4,7,3,5], [5,7,5,6], [6,8,6,6], [6,9,5,6], [6,8,6,7], [7,9,5,6],[6,7,4,5],[5,6,5,6],[6,8,5,5],[5,7,2,6]];
length = 8;
ta.rvi(data, length);
# output (array)
# [0.29,0.21,0.15,0.16,0.09,0.05]

Relative Vigor Index Signal

rvi = [0.29,0.21,0.15,0.16,0.09,0.05]; # requires at least 4 values
ta.rvi_signal(rvi);
# output (array)
# [0.20,0.15,0.12]

RSI Divergence

Experimental function: Bitvested/ta.js#18

data = [74,83,66,78,69,70,84,73,74,73,83];
rsi_length = 5;
rsi_function = ta.wrsi; # default (the tradingview rsi indicator)
ta.rsi_divergence(data, rsi_length, rsi_function);
# output (array)
# 1 = RSI is in divergence
# 0 = RSI is not in divergence
# [0, 0, 1, 0, 1, 0] (better to quantify if needed)

Universal Divergence

data1 = [48,34,43,54,56,64,43];
data2 = [76,74,43,55,34,32,45,47];
ta.divergence(data1, data2);
# output (array)
# 1 = RSI is in divergence
# 0 = RSI is not in divergence
# [0, 0, 1, 1, 0, 1] (better to quantify if needed)

Oscillators

Alligator Oscillator

data = [8,7,8,9,7,8,9,6,7,8,6,8,10,8,7,9,8,7,9,6,7,9];
# defaults shown
jawlength = 13;
teethlength = 8;
liplength = 5;
jawshift = 8;
teethshift = 5;
lipshift = 3;
ta.gator(data, jawlength, teethlength, liplength, jawshift, teethshift, lipshift);
# output (array)
# [upper gator, lower gator]

Chande Momentum Oscillator

data = [1, 1.2, 1.3, 1.3, 1.2, 1.4];
length = 4; # default = 9
ta.mom_osc(data, length);
# output (array)
# [0.0, 3.85]

Chaikin Oscillator

data = [[2,3,4,6],[5,5,5,4],[5,4,3,7],[4,3,3,4],[6,5,4,6],[7,4,3,6]]; # [high, close, low, volume]
length1 = 2; # default = 3
length2 = 4; # default = 10
ta.chaikin_osc(data, length1, length2);
# output (array)
# [-1.667, -0.289, -0.736]

Aroon Oscillator

data = [2, 5, 4, 5];
length = 3; # default = 25
ta.aroon_osc(data, length);
# output (array)
# [50.0, 50.0]

Awesome Oscillator

data = [[6, 5], [8, 6], [7, 4], [6, 5], [7, 6], [9, 8]]; # [high, low]
shortlength = 2; # default = 5
longlength = 5; # default = 35
ta.ao(data, shortlength, longlength);
# output (array)
# [0, 0.9]

Accelerator Oscillator

data = [[6, 5], [8, 6], [7, 4], [6, 5], [7, 6], [9, 8]]; # [high, low]
shortlength = 2; # default = 5
longlength = 4; # default = 35
ta.ac(data, shortlength, longlength);
# output (array)
# [-5.875, -6.125, -6.5]

Fisher Transform

data = [8,6,8,9,7,8,9,8,7,8,6,7]; # high + low / 2
length = 9;
ta.fisher(data, length);
# output (array)
# [[-0.318, -0.11], [-0.449, -0.318], [-0.616, -0.449]] # [fisher, trigger]

Bands

Bollinger Bands

data = [1, 2, 3, 4, 5, 6];
length = 5; # default = 14
deviations = 2; # default = 1
ta.bands(data, length, deviations);
# output (array)
# [[5.828, 3, 0.172], [6.828, 4, 1.172]]
# [upper band, middle band, lower band]

Keltner Channels

data = [[3,2,1], [2,2,1], [4,3,1], [2,2,1], [3,3,1]]; # [high, close, low]
length = 5; # default = 14
deviations = 1; # default = 1
ta.keltner(data, length, deviations);
# output (array)
# [[3.93, 2.06, 0.20]]
# [upper band, middle band, lower band]

Donchian Channels

data = [[6, 2], [5, 2], [5, 3], [6, 3], [7, 4], [6, 3]]; # [high, low]
length = 5; # default = 20
ta.don(data, length);
# output (array)
# [[7, 4.5, 2], [7, 4.5, 2]]
# [upper band, base line, lower band]

Fibonacci Bollinger Bands

data = [[1,59],[1.1,82],[1.21,27],[1.42,73],[1.32,42]];
length = 4;
deviations = 3;
ta.fibbands(data, length, deviations);
# output (array)
# [[highest band -> fibonacci levels -> lowest band]]

Envelope

data = [6,7,8,7,6,7,8,7,8,7,8,7,8];
length = 11, # default = 10
percentage = 0.05; # default = 0.005
ta.envelope(data, length, percentage);
# output (array)
# [[7.541, 7.182, 6.823], [7.636, 7.273, 6.909]]
# [upper band, base line, lower band]

Statistics

Standard Deviation

data = [1, 2, 3];
length = 3; # default = len(length)
ta.std(data, length);
# output (float)
# 0.81649658092773

Variance

data = [6, 7, 2, 3, 5, 8, 6, 2];
length = 7; # default = len(data)
ta.variance(data, length);
# output (array)
# [3.918, 5.061]

Normal CDF

sample = 13;
mean = 10;
stdv = 2;
ta.ncdf(sample, mean, stdv);
# output (float)
# 0.9331737996110652
zscore = 1.5;
ta.ncdf(zscore);
# output (float)
# 0.9331737996110652

Inverse Normal Distribution

data = 0.4732;
ta.normsinv(data);
# output (float)
# -0.06722824471054376

Monte Carlo Simulation

data = [6, 4, 7, 8, 5, 6];
length = 2; # default = 50
simulations = 100; # default = 1000
percentile = 0.5; # default = -1 (returns all raw simulations)
ta.sim(data, length, simulations, percentile)
# output (array)
# [6, 4, 7, 8, 5, 6, 5.96, 5.7]

Percentile

data = [[6,4,7], [5,3,6], [7,5,8]];
percentile = 0.5;
ta.percentile(data, percentile);
# output (array)
# [6, 4, 7]

Correlation

data1 = [1, 2, 3, 4, 5, 2];
data2 = [1, 3, 2, 4, 6, 3];
ta.cor(data1, data2);
# output (float)
# 0.8808929232684737

Covariance

data1 = [12,13,25,39];
data2 = [67,45,32,21];
length = 4;
ta.covariance(data1, data2, 4);
# output (array)
# [-165.8125]

Percentage Difference

newval = 0.75;
oldval = 0.5;
ta.dif(newval, oldval);
# output (float)
# 0.5

Expected Return

data = [0.02, -0.01, 0.03, 0.05, -0.03]; # historical return data
ta.er(data);
# output (float)
# 0.0119

Abnormal Return

data = [0.02, -0.01, 0.03, 0.05, -0.03]; # historical return data
length = 3;
ta.ar(data, length);
# output (array)
# [0.037, -0.053]

Kelly Criterion

data = [0.01, 0.02, -0.01, -0.03, -0.015, 0.045, 0.005];
ta.kelly(data);
# output (float)
# 0.1443

Permutations

data = [10,10,10];
ta.permutations(data);
# output (int)
# 1000

Winratio

var data = [0.01, 0.02, -0.01, -0.03, -0.015, 0.005];
ta.winratio(data);
# output (float)
# 0.5

Average Win

data = [0.01, 0.02, -0.01, -0.03, -0.015, 0.005];
ta.avgwin(data);
# output (float)
# 0.012

Average Loss

data = [0.01, 0.02, -0.01, -0.03, -0.015, 0.005];
ta.avgloss(data);
# output (float)
# -0.018

Drawdown

data = [1, 2, 3, 4, 2, 3];
ta.drawdown([1,2,3,4,2,3]);
# output (float)
# -0.5

Median

data = [4, 6, 3, 1, 2, 5];
length = 4; # default = len(data)
ta.median(data, length);
# output (array)
# [3, 2, 2]

Recent High

data = [4,5,6,7,8,9,8,7,8,9,10,3,2,1];
lookback = 3; # No higher values after 3 periods? resets after each new high
ta.recent_high(data, lookback);
# output (dictionary)
# {'index': 10, 'value': 10}

Recent Low

data = [1,4,5,6,4,3,2,3,4,3,5,7,8,8,5];
lookback = 4; # No lower values after 4 periods? resets after each new low
ta.recent_low(data, lookback);
# output (dictionary)
# {'index': 6, 'value': 2}

Median Absolute Deviation

data = [3, 7, 5, 4, 3, 8, 9];
length = 6; # default = len(data)
ta.mad(data, length);
# output (array)
# [1, 2]

Average Absolute Deviation

data = [4, 6, 8, 6, 8, 9, 10, 11];
length = 7; # default = len(data)
ta.aad(data, length);
# output (array)
# [1.673, 1.469]

Standard Error

data = [34, 54, 45, 43, 57, 38, 49];
size = 10; # default = len(data)
ta.se(data, size);
# output (float)
# 2.424

Sum Squared Differences

data = [7, 6, 5, 7, 9, 8, 3, 5, 4];
length = 7; # default = len(length)
ta.ssd(data, length);
# output (array)
# [4.87, 4.986, 5.372]

Logarithm

data = [5, 14, 18, 28, 68, 103];
ta.log(data);
# output (array)
# [1.61, 2.64, 2.89, 3.33, 4.22, 4.63]

Exponent

data = [1.6, 2.63, 2.89, 3.33, 4.22, 4.63];
ta.exp(data);
# output (array)
# [4.95, 13.87, 17.99, 27.94, 68.03, 102.51]

Normalize

data = [5,4,9,4];
margin = 0.1; # margin % (default = 0)
ta.normalize(data, margin);
# output (array)
# [0.22, 0.06, 0.86, 0.06]

Denormalize

data = [5,4,9,4]; # original data || [highest, lowest]
norm = [0.22, 0.06, 0.86, 0.06, 0.44]; # normalized data
margin = 0.1; # margin % (default = 0)
ta.denormalize(data, norm, margin);
# output (array)
# [5 ,4, 9, 4, 6.4]

Normalize Pair

pair1 = [10,12,11,13];
pair2 = [100,130,100,140];
ta.normalize_pair(pair1, pair2);
# output (array)
# [[55, 55], [66, 71.5], [60.5, 54.99], [71.5, 76.99]]

Normalize From

data = [8, 12, 10, 11];
baseline = 100;
ta.normalize_from(data, baseline);
# output (array)
# [100, 150, 125, 137.5]

Standardize

data = [6,4,6,8,6];
ta.standardize(data);
# output (array)
# [0, -1.581, 0, 1.581, 0]

Z-Score

data = [34,54,45,43,57,38,49];
length = 5;
ta.zscore(data, length);
# output (array)
# [1.266, -1.331, 0.408]

K-means Clustering

data = [2, 3, 4, 5, 3, 5, 7, 8, 6, 8, 6, 4, 2, 6];
length = 4;
ta.kmeans(data, length);
# output (array)
# [[ 4, 5, 5, 4 ], [ 7, 6, 6, 6 ], [ 8, 8 ], [ 2, 3, 3, 2 ]]

Mean Squared Error

data1 = [7,8,7,8,6,9];
data2 = [6,8,8,9,6,8];
ta.mse(data1, data2);
# output (float)
# 0.6666666666666666

Cumulative

data = [3,5,7,5,10];
length = 4;
ta.cum(data, length);
# output (array)
# [20, 27]

Chart types

Heikin Ashi

data = [[3, 4, 2, 3], [3, 6, 3, 5], [5, 5, 2, 3]]; # [open, high, low, close]
ta.ha(data);
# output (array)
# [open, high, low, close]
# first 7-10 candles are unreliable

Renko

data = [[8, 6], [9, 7], [9, 8]]; # [high, low]
bricksize = 3;
ta.ren(data, bricksize);
# output (array)
# [open, high, low, close]

Miscellaneous

Times Up

data = [5,6,7,8,7,6,5];
length = 3;
ta.times_up(data, length);
# output (array)
# [1, 0, 0, 0]

Times Down

data = [5,6,7,8,7,6,5];
length = 3;
ta.times_down(data, length);
# output (array)
# [0, 0, 0, 1]

Experimental Functions

Support Line

data = [4,3,2,5,7,6,5,4,7,8,5,4,6,7,5];
start = {"index": 2, "value": 2}; # default = recent_low(data, 25)
support = ta.support(data, start);
# output (dictionary)
# ['calculate'] = function(x) // calculates line at position x from start['index'] (= 0)
# ['slope'] = delta y per x
# ['lowest'] = lowest (start) value at x = 0
# ['index'] = (start) index of lowest value
# to get the line at the current candle / chart period
current = support['calculate'](len(data)-support['index']);

Resistance Line

data = [5,7,5,5,4,6,5,4,6,5,4,3,2,4,3,2,1];
start = {"index": 1, "value": 7}; # default = recent_high(data, 25)
resistance = ta.resistance(data, start);
# output (dictionary)
# ['calculate'] = function(x) // calculates line at position x from start['index'] (= 0)
# ['slope'] = delta y per x
# ['highest'] = highest (start) value
# ['index'] = (start) index of highest value
# to get the line at the current candle / chart period
current = resistance['calculate'](len(data)-resistance['index']);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

ta.py's People

Contributors

vultwo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

ta.py's Issues

pandas

Great Job on there indictor, if you could write like pandas extenstion like pandas-ta or even directly applicable to pandas i would be easier and faster adoptable as most data is handled in pandas now a days

new indicators

Hi, thx for this lightweight repo)
need more indicators, such as:

Chaikin Oscillator
Envelopes
Fractals

add:
Accelerator Oscillator (AC)

thx!)

ta.fibbands

Hi
Can't understand how to plot corectly with price

input:
highlow_data = [[19963.24, 20009.0], [19975.0, 20018.5], [19995.62, 20046.32], [19982.15, 20029.52], [19983.7, 20001.22]]
close_data = [19990.16, 19997.24, 20028.58, 19988.03, 20000.71]

length = 4
deviations = 3
x=ta.fibbands(highlow_data , length, deviations)
plt.plot(x)
plt.plot(close_data)

plot result bad. thx

Heikin ashi and supertrend functionality returning duplicate values | 27-Aug-2022

Supertrend is returning duplicate values while processing a stock's OHLC (open, high, low, close) data.
Have attached unprocessed OHLC data df.csv file below.
First: I am processing this OHLC csv data frame to Heikin Ashi candle data using ta.ha from pandas_ta
Then: I am processing this Heikin Ashi processed data with ta.supertrend from pandas_ta.

In both pandas_ta methods, I am getting duplicate values.
Though SuperTrend signal is provided accurately. Values are duplicate.

Unprocessed CSV FILE - df.csv

image

bug :)

HI)

[ [11.835999999999999, 11.867, 11.747, 11.843], [11.85, 11.855, 11.815999999999999, 11.819], [11.819, 11.827, 11.8, 11.811], [11.81, 11.818, 11.780999999999999, 11.818], [11.817, 11.818, 11.751, 11.806], [11.805, 11.824000000000002, 11.770999999999999, 11.81], [11.814, 11.821, 11.776, 11.786], [11.783, 11.855, 11.78, 11.845], [11.845, 11.853, 11.793, 11.828], [11.834000000000001, 11.834000000000001, 11.792, 11.824000000000002], [11.827, 11.843, 11.754000000000001, 11.787], [11.780999999999999, 11.794, 11.759, 11.774000000000001], [11.767999999999999, 11.841, 11.741, 11.805], [11.807, 11.835, 11.751, 11.767000000000001], [11.765999999999998, 11.774000000000001, 11.673, 11.699000000000002], [11.702, 11.776, 11.694, 11.770999999999999], [11.767999999999999, 11.794, 11.707, 11.715], [11.713, 11.745, 11.71, 11.739], [11.735, 11.790999999999999, 11.735, 11.751], [11.751, 11.844000000000001, 11.751, 11.823], [11.818, 11.873, 11.806, 11.87], [11.87, 11.889000000000001, 11.83, 11.883], [11.888, 11.937999999999999, 11.87, 11.918], [11.902999999999999, 11.974, 11.88, 11.964], [11.964, 12.042, 11.964, 11.977], [11.977, 11.989, 11.917, 11.939], [11.945, 11.989, 11.927, 11.937000000000001], [11.939, 11.949000000000002, 11.865, 11.87], [11.865, 11.898, 11.84, 11.885], [11.889000000000001, 11.892999999999999, 11.850999999999999, 11.859000000000002], [11.857999999999999, 11.894, 11.852, 11.888], [11.887, 11.953, 11.869000000000002, 11.948], [11.948, 11.952, 11.870999999999999, 11.892000000000001], [11.887, 11.923, 11.882, 11.886], [11.880999999999998, 11.883, 11.839, 11.841], [11.843, 11.914000000000001, 11.821, 11.913], [11.915, 11.915, 11.88, 11.905999999999999], [11.905, 11.923, 11.882, 11.923], [11.923, 11.972000000000001, 11.905999999999999, 11.972000000000001], [11.975, 11.999, 11.764000000000001, 11.799000000000001], [11.788, 11.822000000000001, 11.748, 11.8], [11.798, 11.866, 11.700999999999999, 11.764000000000001], [11.765999999999998, 11.856, 11.72, 11.837], [11.834000000000001, 11.852, 11.808, 11.817], [11.806, 11.819, 11.668, 11.702], [11.698, 11.747, 11.66, 11.73], [11.717, 11.824000000000002, 11.717, 11.777000000000001], [11.777000000000001, 11.819, 11.752, 11.8], [11.804, 11.815999999999999, 11.71, 11.71], [11.713, 11.812000000000001, 11.707, 11.772], [11.774000000000001, 11.795, 11.716, 11.734000000000002], [11.719000000000001, 11.719000000000001, 11.652999999999999, 11.664000000000001], [11.662, 11.675, 11.571, 11.585], [11.582, 11.595999999999998, 11.545, 11.587], [11.588, 11.619000000000002, 11.52, 11.595], [11.592, 11.612, 11.52, 11.533], [11.524000000000001, 11.632, 11.515, 11.617], [11.622, 11.647, 11.61, 11.644], [11.647, 11.672, 11.629000000000001, 11.652999999999999], [11.655, 11.673, 11.636, 11.65], [11.65, 11.724, 11.618, 11.713], [11.718, 11.748, 11.683, 11.734000000000002], [11.722999999999999, 11.738, 11.686, 11.727], [11.720999999999998, 11.743, 11.687000000000001, 11.687000000000001], [11.686, 11.788, 11.685, 11.776], [11.772, 11.855, 11.772, 11.821], [11.825, 11.9, 11.822000000000001, 11.890999999999998], [11.890999999999998, 11.984000000000002, 11.889000000000001, 11.950999999999999], [11.947000000000001, 11.968, 11.9, 11.948], [11.950999999999999, 12.079, 11.931, 12.06], [12.065999999999999, 12.255, 12.065999999999999, 12.220999999999998], [12.23, 12.25, 12.142999999999999, 12.209000000000001], [12.214, 12.277999999999999, 12.174000000000001, 12.22], [12.22, 12.232999999999999, 12.182, 12.186], [12.186, 12.251, 12.175999999999998, 12.225], [12.22, 12.309000000000001, 12.205, 12.254000000000001], [12.258, 12.258, 12.21, 12.222000000000001], [12.222999999999999, 12.279000000000002, 12.213, 12.277999999999999], [12.274000000000001, 12.345, 12.269, 12.322000000000001], [12.318, 12.343, 12.3, 12.311], [12.312000000000001, 12.355, 12.264000000000001, 12.270999999999999], [12.284, 12.287, 12.204, 12.217], [12.219000000000001, 12.338, 12.217, 12.293], [12.290999999999999, 12.295, 12.239, 12.265], [12.27, 12.283, 12.164000000000001, 12.202], [12.207, 12.217, 12.123, 12.152000000000001], [12.152999999999999, 12.184000000000001, 12.117, 12.177999999999999], [12.184000000000001, 12.2, 12.142999999999999, 12.172], [12.174000000000001, 12.314, 12.147, 12.23], [12.23, 12.288, 12.215, 12.249], [12.243, 12.329, 12.23, 12.314], [12.312999999999999, 12.327, 12.265999999999998, 12.284], [12.288, 12.296, 12.243, 12.295], [12.297, 12.367, 12.209000000000001, 12.235999999999999], [12.232999999999999, 12.315, 12.228, 12.29], [12.29, 12.349, 12.265999999999998, 12.283], [12.287, 12.287, 12.175999999999998, 12.175999999999998], [12.179, 12.254000000000001, 12.147, 12.253], [12.252, 12.27, 12.171, 12.197000000000001], [12.193, 12.214, 12.055, 12.069], [12.078, 12.134, 12.023, 12.049000000000001], [12.039000000000001, 12.174000000000001, 12.038, 12.130999999999998], [12.128, 12.17, 12.115, 12.158], [12.158, 12.161, 12.071, 12.087], [12.085, 12.158, 12.064, 12.151], [12.151, 12.17, 12.110999999999999, 12.142999999999999], [12.148, 12.165, 12.12, 12.155], [12.165, 12.294, 12.161, 12.265999999999998], [12.265999999999998, 12.305, 12.193, 12.197000000000001], [12.196, 12.231, 12.177, 12.217], [12.22, 12.293, 12.208, 12.287], [12.284, 12.327, 12.257, 12.307], [12.319, 12.344000000000001, 12.209000000000001, 12.265999999999998], [12.265999999999998, 12.3, 12.238, 12.288], [12.288, 12.318, 12.265, 12.31], [12.315999999999999, 12.327, 12.2, 12.213], [12.213, 12.225999999999999, 12.171, 12.190999999999999], [12.187000000000001, 12.35, 12.187000000000001, 12.35], [12.35, 12.35, 12.282, 12.292], [12.292, 12.44, 12.288, 12.385], [12.39, 12.449000000000002, 12.342, 12.383], [12.385, 12.452, 12.354000000000001, 12.424000000000001], [12.42, 12.42, 12.277999999999999, 12.315], [12.31, 12.34, 12.282, 12.317], [12.322000000000001, 12.324000000000002, 12.19, 12.229000000000001], [12.232000000000001, 12.25, 12.204, 12.216], [12.217, 12.227, 12.187999999999999, 12.218], [12.222000000000001, 12.225, 12.198, 12.198], [12.198, 12.202, 12.173, 12.179], [12.181, 12.204, 12.142000000000001, 12.19], [12.19, 12.261, 12.186, 12.232000000000001], [12.232000000000001, 12.239, 12.175, 12.190999999999999], [12.190999999999999, 12.214, 12.165999999999999, 12.206], [12.212, 12.287, 12.212, 12.286], [12.286, 12.360999999999999, 12.272, 12.329], [12.335999999999999, 12.385, 12.32, 12.355], [12.362, 12.388, 12.331, 12.388], [12.383, 12.394, 12.305, 12.343], [12.334000000000001, 12.34, 12.25, 12.28], [12.279000000000002, 12.279000000000002, 12.123, 12.175999999999998], [12.169, 12.169, 12.075, 12.135], [12.13, 12.222999999999999, 12.125, 12.213], [12.218, 12.245, 12.2, 12.241], [12.24, 12.334000000000001, 12.22, 12.307], [12.312000000000001, 12.312000000000001, 12.119000000000002, 12.172], [12.19, 12.224, 12.154000000000002, 12.18], [12.162, 12.252, 12.162, 12.208], [12.204, 12.204, 12.112, 12.122], [12.110999999999999, 12.192, 12.1, 12.192], [12.190999999999999, 12.2, 11.96, 12.012], [12.017999999999999, 12.052, 11.927, 11.972999999999999], [11.975, 12.039000000000001, 11.965, 11.969000000000001], [11.984000000000002, 12.071, 11.956, 12.027999999999999], [12.029000000000002, 12.120999999999999, 12.0, 12.103], [12.097999999999999, 12.127, 12.052999999999999, 12.08], [12.08, 12.123, 12.003, 12.123], [12.114, 12.285, 12.057, 12.257], [12.265, 12.448, 12.25, 12.421], [12.413, 12.6, 12.383, 12.6], [12.6, 12.685, 12.502, 12.667], [12.655, 12.77, 12.515999999999998, 12.617], [12.61, 12.623, 12.515999999999998, 12.620999999999999], [12.622, 12.829, 12.62, 12.829], [12.825999999999999, 12.825999999999999, 12.665, 12.681], [12.674000000000001, 12.905, 12.659, 12.744000000000002], [12.747, 12.819, 12.599, 12.618], [12.614, 12.662, 12.6, 12.62], [12.625, 12.722000000000001, 12.488, 12.71], [12.714, 12.825, 12.58, 12.815999999999999], [12.815999999999999, 12.84, 12.722000000000001, 12.722999999999999], [12.722999999999999, 12.844000000000001, 12.684000000000001, 12.844000000000001], [12.844000000000001, 12.882, 12.77, 12.825999999999999], [12.82, 12.821, 12.661, 12.677999999999999], [12.685, 12.74, 12.587, 12.632], [12.639000000000001, 12.712, 12.635, 12.651], [12.647, 12.754000000000001, 12.62, 12.737], [12.738, 12.832, 12.604000000000001, 12.81], [12.806, 12.95, 12.69, 12.729000000000001], [12.729000000000001, 12.800999999999998, 12.7, 12.752], [12.751, 12.839, 12.747, 12.806], [12.805, 12.994000000000002, 12.787, 12.957], [12.954, 12.964, 12.868, 12.905999999999999], [12.909, 12.943, 12.817, 12.864], [12.870999999999999, 12.907, 12.831, 12.869000000000002], [12.868, 12.969000000000001, 12.84, 12.922], [12.927, 13.275, 12.865, 13.273], [13.262, 13.388, 13.162, 13.298], [13.296, 13.329, 13.182, 13.24], [13.231, 13.527000000000001, 13.203, 13.352], [13.35, 13.419, 12.882, 13.036], [13.040999999999999, 13.040999999999999, 12.725999999999999, 12.821], [12.822000000000001, 13.046, 12.499, 12.811], [12.805, 12.975999999999999, 12.729000000000001, 12.782], [12.799000000000001, 12.874, 12.695, 12.715], [12.715, 12.81, 12.681, 12.764000000000001], [12.774000000000001, 12.782, 12.615, 12.629000000000001], [12.629000000000001, 12.82, 12.620999999999999, 12.777000000000001], [12.785, 12.895, 12.755, 12.885], [12.892999999999999, 12.963, 12.833, 12.952], [12.950999999999999, 13.068, 12.948, 13.030999999999999], [13.033, 13.043, 12.929, 13.032], [13.032, 13.154000000000002, 13.0, 13.011], [13.0, 13.07, 12.944, 12.972000000000001], [12.97, 13.007, 12.943, 12.985999999999999], [12.995, 13.0, 12.888, 12.982999999999999], [12.98, 12.985999999999999, 12.919, 12.94], [12.932, 12.955, 12.782, 12.879000000000001], [12.868, 12.931, 12.644, 12.652999999999999], [12.655, 12.787, 12.644, 12.78], [12.78, 12.8, 12.642999999999999, 12.66], [12.662, 12.709000000000001, 12.511, 12.515], [12.526, 12.67, 12.513, 12.645], [12.63, 12.73, 12.595999999999998, 12.633], [12.633, 12.638, 12.421, 12.431], [12.423, 12.482999999999999, 12.231, 12.298], [12.298, 12.593, 12.255, 12.571], [12.573, 12.690999999999999, 12.565, 12.668], [12.662, 12.780999999999999, 12.640999999999998, 12.758], [12.745999999999999, 12.765999999999998, 12.654000000000002, 12.700999999999999], [12.692, 12.774000000000001, 12.655999999999999, 12.710999999999999], [12.710999999999999, 12.912, 12.71, 12.82], [12.824000000000002, 12.888, 12.77, 12.838], [12.829, 13.2, 12.828, 13.092], [13.097000000000001, 13.357000000000001, 12.993, 13.244000000000002], [13.242, 13.52, 13.232000000000001, 13.51], [13.515999999999998, 13.87, 13.51, 13.748], [13.753, 13.859000000000002, 13.550999999999998, 13.817], [13.812999999999999, 13.894, 13.569, 13.604000000000001], [13.591, 13.725, 13.591, 13.66], [13.661, 13.966, 13.661, 13.859000000000002], [13.857999999999999, 13.883, 13.634, 13.655], [13.645, 13.727, 13.585999999999999, 13.707], [13.714, 13.787, 13.597000000000001, 13.767999999999999], [13.772, 13.845, 13.696, 13.754000000000001], [13.758, 13.78, 13.642999999999999, 13.69], [13.699000000000002, 13.699000000000002, 13.433, 13.522], [13.522, 13.6, 13.489, 13.498], [13.491, 13.645, 13.485999999999999, 13.569], [13.565, 13.707, 13.561, 13.655], [13.647, 13.770999999999999, 13.497, 13.530999999999999], [13.540999999999999, 14.0, 13.535, 13.97], [13.969000000000001, 14.049000000000001, 13.855, 13.877], [13.874, 13.905, 13.728, 13.751], [13.751, 13.785, 13.696, 13.724], [13.71, 13.78, 13.600999999999999, 13.606], [13.602, 13.718, 13.56, 13.63], [13.63, 13.659, 13.51, 13.540999999999999], [13.540999999999999, 13.6, 13.482000000000001, 13.526], [13.513, 13.569, 13.503, 13.533], [13.524000000000001, 13.628, 13.512, 13.533], [13.532, 13.582, 13.478, 13.489], [13.49, 13.523, 13.312999999999999, 13.395], [13.395999999999999, 13.440999999999999, 13.345, 13.417], [13.414000000000001, 13.458, 13.374, 13.392999999999999], [13.389000000000001, 13.397, 13.312999999999999, 13.315], [13.317, 13.359000000000002, 13.265, 13.288], [13.289000000000001, 13.57, 13.277999999999999, 13.502], [13.498, 13.504000000000001, 13.300999999999998, 13.357000000000001], [13.357000000000001, 13.469000000000001, 13.332, 13.439], [13.437000000000001, 13.469000000000001, 13.389000000000001, 13.442], [13.44, 13.479000000000001, 13.3, 13.365], [13.362, 13.405999999999999, 13.357999999999999, 13.392999999999999], [13.394, 13.409, 13.37, 13.405999999999999], [13.404000000000002, 13.495, 13.401, 13.487], [13.485999999999999, 13.585999999999999, 13.472999999999999, 13.585999999999999], [13.584000000000001, 13.627, 13.485999999999999, 13.572000000000001], [13.573, 13.707, 13.561, 13.64], [13.638, 13.645, 13.527000000000001, 13.561], [13.562999999999999, 13.592, 13.532, 13.544], [13.54, 13.544, 13.503, 13.519], [13.52, 13.547, 13.47, 13.507], [13.505999999999998, 13.529000000000002, 13.384, 13.433], [13.433, 13.475999999999999, 13.347000000000001, 13.432], [13.424000000000001, 13.538, 13.42, 13.495999999999999], [13.495999999999999, 13.53, 13.485, 13.511], [13.507, 13.592, 13.5, 13.568], [13.562000000000001, 13.592, 13.206, 13.245], [13.241, 13.302, 12.935, 12.985999999999999], [12.991, 13.079, 12.924000000000001, 12.999], [13.002, 13.126, 12.995999999999999, 13.088], [13.088, 13.144, 12.943, 13.040999999999999], [13.05, 13.182, 13.009, 13.047], [13.040999999999999, 13.093, 13.0, 13.032], [13.040999999999999, 13.099, 12.991, 13.088], [13.084000000000001, 13.126, 13.029000000000002, 13.034], [13.033, 13.05, 12.981, 13.043], [13.04, 13.138, 12.995999999999999, 13.138], [13.134, 13.252, 13.075999999999999, 13.083], [13.083, 13.224, 13.001, 13.133], [13.139000000000001, 13.225, 13.082, 13.214], [13.208, 13.267999999999999, 13.181, 13.242], [13.263, 13.386, 13.253, 13.341], [13.334000000000001, 13.389000000000001, 13.168, 13.206], [13.200999999999999, 13.202, 13.1, 13.171], [13.167, 13.171, 13.083, 13.125], [13.110999999999999, 13.140999999999998, 13.039000000000001, 13.13], [13.13, 13.187999999999999, 13.047, 13.094000000000001], [13.094000000000001, 13.118, 13.002, 13.102], [13.095, 13.206, 13.089, 13.192], [13.192, 13.257, 13.18, 13.242], [13.241, 13.241, 13.091, 13.102], [13.094000000000001, 13.186, 13.061, 13.155999999999999], [13.155999999999999, 13.272, 13.125, 13.272], [13.267000000000001, 13.298, 13.2, 13.212], [13.215, 13.325999999999999, 13.158, 13.203], [13.203, 13.209000000000001, 13.107000000000001, 13.145999999999999], [13.132, 13.132, 13.002, 13.015], [13.012, 13.125, 13.001, 13.125], [13.126, 13.133, 12.854000000000001, 12.894], [12.88, 13.0, 12.812000000000001, 12.972999999999999], [12.975, 12.995, 12.892999999999999, 12.987], [12.978, 13.09, 12.966, 13.083], [13.083, 13.17, 13.052999999999999, 13.112], [13.107999999999999, 13.2, 13.093, 13.149000000000001], [13.149000000000001, 13.269, 13.149000000000001, 13.222999999999999], [13.224, 13.224, 13.117, 13.165], [13.154000000000002, 13.378, 13.145, 13.364], [13.36, 13.36, 13.242, 13.253], [13.261, 13.263, 13.172, 13.196], [13.199000000000002, 13.3, 13.161, 13.183], [13.183, 13.228, 13.163, 13.203], [13.21, 13.216, 13.110999999999999, 13.123], [13.118, 13.151, 13.09, 13.124], [13.119000000000002, 13.136, 13.061, 13.079], [13.079, 13.107999999999999, 13.008, 13.056], [13.061, 13.113, 13.032, 13.032], [13.038, 13.049000000000001, 12.970999999999998, 12.979000000000001], [12.972999999999999, 13.015999999999998, 12.93, 12.985999999999999], [12.981, 13.097999999999999, 12.962, 13.09], [13.097999999999999, 13.154000000000002, 13.07, 13.105], [13.099, 13.177999999999999, 13.099, 13.163], [13.163, 13.218, 13.15, 13.177999999999999], [13.177999999999999, 13.232000000000001, 13.1, 13.227], [13.22, 13.296, 13.215, 13.265999999999998], [13.267000000000001, 13.267000000000001, 13.164000000000001, 13.205], [13.192, 13.194, 13.103, 13.136], [13.142999999999999, 13.205, 13.091, 13.130999999999998], [13.130999999999998, 13.163, 13.026, 13.032], [13.03, 13.03, 12.93, 12.98], [12.982000000000001, 13.142000000000001, 12.975999999999999, 13.11], [13.107000000000001, 13.225, 13.095999999999998, 13.203], [13.202, 13.249, 13.15, 13.24], [13.24, 13.253, 13.088, 13.147], [13.142000000000001, 13.198, 13.095999999999998, 13.142000000000001], [13.145999999999999, 13.172, 13.039000000000001, 13.088], [13.077, 13.100999999999999, 13.025, 13.055], [13.04, 13.133, 13.033, 13.11], [13.113, 13.206, 13.074000000000002, 13.203], [13.202, 13.38, 13.187999999999999, 13.333], [13.33, 13.425999999999998, 13.300999999999998, 13.402000000000001], [13.409, 13.45, 13.365, 13.387], [13.385, 13.477, 13.338, 13.433], [13.43, 13.465, 13.335999999999999, 13.353], [13.354000000000001, 13.412, 13.337, 13.366], [13.359000000000002, 13.495999999999999, 13.359000000000002, 13.488], [13.488, 13.5, 13.383, 13.467], [13.467, 13.470999999999998, 13.335, 13.4], [13.404000000000002, 13.447000000000001, 13.368, 13.372], [13.373, 13.412, 13.35, 13.376], [13.383, 13.39, 13.347999999999999, 13.35], [13.355, 13.412, 13.355, 13.357000000000001], [13.359000000000002, 13.366, 13.293, 13.307], [13.307, 13.359000000000002, 13.293, 13.293], [13.3, 13.327, 13.192, 13.203], [13.203, 13.267000000000001, 13.203, 13.24], [13.245999999999999, 13.265, 13.212, 13.237], [13.232999999999999, 13.276, 13.232000000000001, 13.259], [13.275, 13.277999999999999, 13.077, 13.142000000000001], [13.140999999999998, 13.215, 13.130999999999998, 13.187999999999999], [13.187999999999999, 13.207, 13.132, 13.163], [13.155, 13.168, 13.11, 13.157], [13.158, 13.185, 13.134, 13.152000000000001], [13.15, 13.171, 12.95, 12.972000000000001], [12.972000000000001, 13.050999999999998, 12.958, 13.040999999999999], [13.040999999999999, 13.094000000000001, 13.037, 13.057], [13.052, 13.052, 12.94, 12.95], [12.95, 12.967, 12.82, 12.931], [12.931, 13.0, 12.931, 12.982999999999999], [12.982000000000001, 13.06, 12.975, 13.0], [13.004000000000001, 13.059000000000001, 13.0, 13.033], [13.039000000000001, 13.08, 13.015999999999998, 13.034], [13.039000000000001, 13.077, 12.998, 13.075999999999999], [13.075999999999999, 13.109000000000002, 13.05, 13.082], [13.087, 13.158, 13.078, 13.128], [13.130999999999998, 13.2, 13.093, 13.2], [13.2, 13.216, 13.15, 13.202], [13.192, 13.199000000000002, 13.120999999999999, 13.122], [13.12, 13.174000000000001, 13.073, 13.145], [13.142000000000001, 13.204, 13.120999999999999, 13.128], [13.124, 13.124, 13.075999999999999, 13.092], [13.092, 13.155999999999999, 13.084000000000001, 13.125], [13.124, 13.185, 13.115, 13.175999999999998], [13.177, 13.193, 13.147, 13.186], [13.185, 13.267000000000001, 13.173, 13.245999999999999], [13.25, 13.29, 13.1, 13.118], [13.127, 13.185, 13.11, 13.118], [13.11, 13.179, 13.100999999999999, 13.115], [13.120999999999999, 13.120999999999999, 13.055, 13.100999999999999], [13.100999999999999, 13.104000000000001, 13.013, 13.069], [13.069, 13.093, 13.017999999999999, 13.08], [13.088, 13.133, 13.058, 13.126], [13.13, 13.370999999999999, 13.13, 13.370999999999999], [13.363, 13.369000000000002, 13.25, 13.311], [13.305, 13.314, 13.257, 13.267999999999999], [13.267000000000001, 13.398, 13.235999999999999, 13.387], [13.392999999999999, 13.415, 13.300999999999998, 13.374], [13.372, 13.372, 13.306, 13.331], [13.335, 13.43, 13.327, 13.373], [13.372, 13.5, 13.332, 13.495999999999999], [13.493, 13.51, 13.388, 13.395], [13.39, 13.435, 13.39, 13.43], [13.435, 13.440999999999999, 13.384, 13.409], [13.415999999999999, 13.446, 13.398, 13.431], [13.434000000000001, 13.491, 13.344000000000001, 13.463], [13.468, 13.47, 13.364, 13.373], [13.369000000000002, 13.440999999999999, 13.367, 13.390999999999998], [13.384, 13.384, 13.262, 13.321], [13.318, 13.353, 13.258, 13.292], [13.283, 13.290999999999999, 13.212, 13.267999999999999], [13.253, 13.297, 13.245, 13.28], [13.28, 13.28, 13.174000000000001, 13.198], [13.202, 13.21, 13.097000000000001, 13.175999999999998], [13.173, 13.175999999999998, 13.1, 13.100999999999999], [13.107000000000001, 13.135, 13.093, 13.105], [13.105, 13.132, 13.08, 13.082], [13.083, 13.209000000000001, 13.06, 13.200999999999999], [13.185, 13.198, 13.091, 13.13], [13.13, 13.13, 13.04, 13.052999999999999], [13.05, 13.056, 12.940999999999999, 12.944], [12.945, 13.055, 12.945, 12.98], [12.970999999999998, 12.999, 12.923, 12.97], [12.962, 13.009, 12.901, 12.939], [12.945, 12.974, 12.86, 12.868], [12.868, 12.868, 12.645, 12.657], [12.65, 12.652999999999999, 12.517000000000001, 12.609000000000002], [12.597999999999999, 12.697000000000001, 12.565999999999999, 12.565999999999999], [12.559000000000001, 12.68, 12.536, 12.642000000000001], [12.639000000000001, 12.640999999999998, 12.540999999999999, 12.544], [12.548, 12.62, 12.517999999999999, 12.558], [12.547, 12.61, 12.527000000000001, 12.535], [12.534, 12.599, 12.515, 12.562999999999999], [12.562000000000001, 12.592, 12.501, 12.567], [12.562999999999999, 12.562999999999999, 12.472999999999999, 12.494000000000002], [12.488, 12.567, 12.472000000000001, 12.546], [12.54, 12.54, 12.276, 12.37], [12.36, 12.425, 12.231, 12.284], [12.289000000000001, 12.445, 12.277999999999999, 12.412], [12.412, 12.42, 12.322000000000001, 12.345999999999998], [12.345, 12.345, 12.25, 12.26], [12.26, 12.32, 12.217, 12.220999999999998], [12.234000000000002, 12.31, 12.21, 12.21], [12.21, 12.372, 12.19, 12.339], [12.335999999999999, 12.382, 12.253, 12.277999999999999], [12.255999999999998, 12.27, 12.183, 12.187000000000001], [12.195, 12.23, 12.127, 12.138], [12.135, 12.219000000000001, 12.050999999999998, 12.071], [12.065, 12.347000000000001, 12.057, 12.335], [12.335, 12.37, 12.264000000000001, 12.264000000000001], [12.264000000000001, 12.3, 12.12, 12.130999999999998], [12.125, 12.186, 12.073, 12.100999999999999], [12.105, 12.242, 12.093, 12.229000000000001], [12.228, 12.228, 12.082, 12.089], [12.082, 12.082, 11.800999999999998, 11.857000000000001], [11.865, 11.87, 11.76, 11.845], [11.852, 11.923, 11.700999999999999, 11.754000000000001], [11.76, 11.879000000000001, 11.755999999999998, 11.786], [11.780999999999999, 11.867, 11.775, 11.832], [11.844000000000001, 11.96, 11.785, 11.927], [11.927, 12.025, 11.885, 11.899000000000001], [11.892999999999999, 11.924000000000001, 11.847999999999999, 11.878], [11.869000000000002, 11.978, 11.869000000000002, 11.927999999999999], [11.917, 11.945, 11.88, 11.898], [11.898, 11.985999999999999, 11.865, 11.979000000000001], [11.982999999999999, 12.024000000000001, 11.89, 12.013], [12.013, 12.084000000000001, 12.0, 12.030999999999999], [12.025, 12.037, 11.884, 11.889000000000001], [11.892000000000001, 11.9, 11.689, 11.722999999999999], [11.715, 11.806, 11.714, 11.792], [11.794, 11.929, 11.770999999999999, 11.925999999999998], [11.923, 11.94, 11.850999999999999, 11.927999999999999], [11.922, 11.927, 11.759, 11.797], [11.793, 11.854000000000001, 11.78, 11.825], [11.823, 12.003, 11.823, 11.952], [11.959000000000001, 11.966, 11.862, 11.878], [11.884, 11.909, 11.823, 11.868], [11.870999999999999, 11.92, 11.819, 11.82], [11.827, 11.850999999999999, 11.698, 11.71], [11.708, 11.753, 11.661, 11.69], [11.681, 11.822000000000001, 11.672, 11.81], [11.802999999999999, 11.85, 11.764000000000001, 11.835], [11.85, 11.914000000000001, 11.821, 11.879000000000001], [11.879000000000001, 11.984000000000002, 11.844000000000001, 11.984000000000002], [11.982999999999999, 11.989, 11.887, 11.975], [11.974, 12.095999999999998, 11.948, 12.055], [12.052999999999999, 12.092, 12.034, 12.075999999999999], [12.074000000000002, 12.214, 12.067, 12.2], [12.2, 12.249, 12.163, 12.175], [12.177, 12.202, 12.165, 12.195], [12.194, 12.249, 12.184000000000001, 12.184000000000001], [12.182, 12.300999999999998, 12.167, 12.286], [12.28, 12.418, 12.28, 12.39], [12.387, 12.495, 12.376, 12.475999999999999], [12.477, 12.514000000000001, 12.439, 12.48], [12.482000000000001, 12.524000000000001, 12.454, 12.46], [12.457, 12.493, 12.368, 12.372], [12.377, 12.470999999999998, 12.369000000000002, 12.452], [12.454, 12.52, 12.421, 12.456], [12.453, 12.456, 12.367, 12.405], [12.413, 12.446, 12.26, 12.269], [12.262, 12.402999999999999, 12.22, 12.401], [12.405, 12.442, 12.357999999999999, 12.37], [12.38, 12.445, 12.308, 12.404000000000002], [12.408, 12.42, 12.299000000000001, 12.299000000000001], [12.298, 12.302999999999999, 12.232999999999999, 12.237], [12.232000000000001, 12.255999999999998, 12.197000000000001, 12.217], [12.215, 12.279000000000002, 12.171, 12.186], [12.189, 12.319, 12.189, 12.294], [12.302, 12.312000000000001, 12.193, 12.311], [12.315999999999999, 12.347999999999999, 12.265, 12.279000000000002], [12.279000000000002, 12.284, 12.015999999999998, 12.015999999999998], [12.022, 12.099, 11.857999999999999, 11.89], [11.897, 11.918, 11.76, 11.770999999999999], [11.772, 11.889000000000001, 11.754000000000001, 11.759], [11.758, 11.828, 11.745, 11.755], [11.754000000000001, 11.98, 11.754000000000001, 11.98], [11.98, 12.067, 11.955, 12.037], [12.052, 12.079, 12.01, 12.061], [12.065, 12.082, 11.88, 11.915999999999999], [11.92, 11.921, 11.662, 11.718], [11.718, 11.823, 11.642000000000001, 11.692], [11.687999999999999, 11.717, 11.411, 11.459000000000001], [11.46, 11.599, 11.442, 11.546], [11.557, 11.657, 11.460999999999999, 11.463], [11.468, 11.627, 11.468, 11.612], [11.6, 11.687999999999999, 11.54, 11.627], [11.625, 11.767000000000001, 11.572000000000001, 11.738], [11.753, 11.845999999999998, 11.71, 11.845], [11.84, 11.991, 11.835999999999999, 11.92], [11.925999999999998, 11.967, 11.868, 11.942], [11.929, 12.177, 11.908, 12.163], [12.165, 12.295, 12.123, 12.237], [12.23, 12.369000000000002, 12.218, 12.365], [12.369000000000002, 12.389000000000001, 12.218, 12.25], [12.249, 12.309000000000001, 12.145999999999999, 12.285], [12.285, 12.489, 12.258, 12.489], [12.482999999999999, 12.640999999999998, 12.482999999999999, 12.545], [12.549000000000001, 12.802, 12.53, 12.8], [12.800999999999998, 12.939, 12.709000000000001, 12.887], [12.877, 12.988, 12.762, 12.773], [12.783, 12.847999999999999, 12.700999999999999, 12.777000000000001], [12.772, 12.817, 12.677999999999999, 12.706], [12.710999999999999, 12.716, 12.640999999999998, 12.700999999999999], [12.702, 12.825999999999999, 12.592, 12.708], [12.7, 12.955, 12.692, 12.892000000000001], [12.879000000000001, 12.948, 12.790999999999999, 12.818], [12.815, 13.017999999999999, 12.79, 12.953], [12.958, 13.005999999999998, 12.754000000000001, 12.754000000000001], [12.76, 12.823, 12.689, 12.790999999999999], [12.792, 12.792, 12.68, 12.732000000000001], [12.728, 12.745999999999999, 12.543, 12.667], [12.67, 12.67, 12.431, 12.442], [12.442, 12.509, 12.309000000000001, 12.509], [12.504000000000001, 12.59, 12.419, 12.437999999999999], [12.431, 12.54, 12.322000000000001, 12.447000000000001], [12.448, 12.642999999999999, 12.44, 12.61], [12.616, 12.694, 12.537, 12.684000000000001], [12.689, 12.77, 12.619000000000002, 12.633], [12.630999999999998, 12.779000000000002, 12.617, 12.713], [12.714, 12.77, 12.622, 12.716], [12.718, 12.828, 12.665, 12.683], [12.682, 12.704, 12.52, 12.562000000000001], [12.552, 12.669, 12.54, 12.663], [12.663, 12.665, 12.469000000000001, 12.530999999999999], [12.529000000000002, 12.578, 12.365, 12.37], [12.372, 12.459000000000001, 12.360999999999999, 12.443], [12.444, 12.507, 12.4, 12.448], [12.444, 12.509, 12.318, 12.384], [12.379000000000001, 12.39, 12.309000000000001, 12.39], [12.392999999999999, 12.591, 12.353, 12.573], [12.57, 12.873, 12.536, 12.872], [12.863, 13.1, 12.800999999999998, 13.055], [13.050999999999998, 13.207, 12.970999999999998, 13.190999999999999], [13.19, 13.32, 13.15, 13.296], [13.296, 13.35, 13.182, 13.292], [13.3, 13.325999999999999, 13.206, 13.279000000000002], [13.275, 13.449000000000002, 13.248, 13.372], [13.374, 13.387, 13.224, 13.295], [13.3, 13.35, 13.252, 13.262], [13.265999999999998, 13.44, 13.177, 13.434000000000001], [13.439, 13.475999999999999, 13.273, 13.273], [13.274000000000001, 13.34, 13.220999999999998, 13.329], [13.333, 13.367, 13.24, 13.297], [13.302, 13.363, 13.27, 13.32], [13.314, 13.699000000000002, 13.300999999999998, 13.589], [13.6, 13.65, 13.448, 13.459000000000001], [13.456, 13.508, 13.383, 13.399000000000001], [13.399000000000001, 13.417, 13.328, 13.378], [13.382, 13.402000000000001, 13.287, 13.299000000000001], [13.287, 13.312999999999999, 13.177, 13.193], [13.195, 13.26, 13.181, 13.232999999999999], [13.235, 13.258, 13.110999999999999, 13.117], [13.11, 13.197000000000001, 13.050999999999998, 13.145], [13.142000000000001, 13.247, 13.14, 13.18], [13.177999999999999, 13.177999999999999, 13.09, 13.142999999999999], [13.142999999999999, 13.144, 13.037, 13.103], [13.097000000000001, 13.2, 13.065999999999999, 13.073], [13.077, 13.110999999999999, 13.046, 13.093], [13.089, 13.182, 13.068, 13.133], [13.134, 13.255, 13.062999999999999, 13.075], [13.08, 13.142999999999999, 13.049000000000001, 13.079], [13.084000000000001, 13.190999999999999, 13.084000000000001, 13.116], [13.117, 13.173, 13.113, 13.163], [13.164000000000001, 13.3, 13.157, 13.241], [13.24, 13.253, 13.167, 13.222999999999999], [13.227, 13.505999999999998, 13.215, 13.448], [13.448, 13.475, 13.248, 13.248], [13.248, 13.380999999999998, 13.238, 13.369000000000002], [13.363, 13.539000000000001, 13.355, 13.475999999999999], [13.472000000000001, 13.503, 13.408, 13.443], [13.44, 13.46, 13.347000000000001, 13.409], [13.407, 13.422, 13.288, 13.289000000000001], [13.29, 13.305, 13.22, 13.222999999999999], [13.224, 13.298, 13.219000000000001, 13.272], [13.274000000000001, 13.297, 13.142999999999999, 13.181], [13.183, 13.379000000000001, 13.18, 13.357999999999999], [13.359000000000002, 13.479000000000001, 13.353, 13.454], [13.46, 13.48, 13.383, 13.456], [13.455, 13.467, 13.321, 13.363], [13.357999999999999, 13.39, 13.228, 13.31], [13.31, 13.582, 13.300999999999998, 13.578], [13.583, 13.737, 13.582, 13.69], [13.684000000000001, 13.687999999999999, 13.534, 13.564], [13.559000000000001, 13.565999999999999, 13.450999999999999, 13.5], [13.495999999999999, 13.555, 13.389000000000001, 13.392000000000001], [13.392000000000001, 13.417, 13.334000000000001, 13.367], [13.367, 13.385, 13.234000000000002, 13.263], [13.264000000000001, 13.33, 13.251, 13.27], [13.269, 13.298, 13.227, 13.267999999999999], [13.263, 13.308, 13.181, 13.285], [13.287, 13.306, 13.19, 13.194], [13.196, 13.237, 13.17, 13.192], [13.189, 13.279000000000002, 13.187999999999999, 13.267999999999999], [13.272, 13.319, 13.186, 13.199000000000002], [13.194, 13.196, 13.054, 13.061], [13.058, 13.124, 12.958, 13.116], [13.116, 13.155999999999999, 13.052, 13.078], [13.083, 13.23, 13.083, 13.224], [13.219000000000001, 13.323, 13.208, 13.306], [13.306, 13.6, 13.286, 13.581], [13.579, 13.78, 13.530999999999999, 13.625], [13.618, 13.649000000000001, 13.515999999999998, 13.633], [13.629000000000001, 13.732000000000001, 13.52, 13.614], [13.614, 13.615, 13.443, 13.463], [13.46, 13.479000000000001, 13.343, 13.448], [13.448, 13.499, 13.448, 13.499], [13.499, 13.649000000000001, 13.487, 13.603], [13.604000000000001, 13.642000000000001, 13.472000000000001, 13.540999999999999], [13.532, 13.68, 13.530999999999999, 13.624], [13.626, 13.63, 13.54, 13.569], [13.556, 13.725999999999999, 13.525, 13.696], [13.686, 13.856, 13.625, 13.83], [13.815, 13.86, 13.685, 13.717], [13.716, 13.716, 13.616, 13.696], [13.697000000000001, 13.707, 13.465, 13.494000000000002], [13.499, 13.515, 13.373, 13.475999999999999], [13.479000000000001, 13.569, 13.385, 13.390999999999998], [13.39, 13.405, 13.284, 13.363], [13.368, 13.455, 13.255999999999998, 13.311], [13.302, 13.392000000000001, 13.244000000000002, 13.298], [13.279000000000002, 13.397, 13.270999999999999, 13.395999999999999], [13.392000000000001, 13.533, 13.372, 13.485], [13.49, 13.511, 13.422, 13.437000000000001], [13.417, 13.44, 13.321, 13.395], [13.409, 13.55, 13.409, 13.453], [13.452, 13.575, 13.448, 13.51], [13.509, 13.571, 13.489, 13.565999999999999], [13.561, 13.568, 13.46, 13.535], [13.536, 13.6, 13.498, 13.538], [13.536, 13.538, 13.37, 13.395], [13.395, 13.395, 13.339, 13.383], [13.390999999999998, 13.48, 13.339, 13.375], [13.399000000000001, 13.429, 13.345, 13.38], [13.38, 13.434000000000001, 13.38, 13.42], [13.427999999999999, 13.47, 13.369000000000002, 13.421], [13.423, 13.595999999999998, 13.412, 13.581], [13.584000000000001, 13.613, 13.539000000000001, 13.575999999999999], [13.577, 13.625, 13.517000000000001, 13.56], [13.562000000000001, 13.591, 13.457, 13.468], [13.470999999999998, 13.578, 13.457, 13.57], [13.58, 13.761, 13.569, 13.75], [13.744000000000002, 13.870999999999999, 13.743, 13.857000000000001], [13.862, 13.866, 13.654000000000002, 13.712], [13.714, 13.757, 13.454, 13.478], [13.492, 13.51, 13.270999999999999, 13.364], [13.345, 13.407, 13.147, 13.203], [13.213, 13.31, 13.177, 13.2], [13.192, 13.253, 13.161, 13.208], [13.216, 13.248, 13.204, 13.225999999999999], [13.219000000000001, 13.3, 13.215, 13.24], [13.239, 13.414000000000001, 13.239, 13.404000000000002], [13.405, 13.509, 13.331, 13.359000000000002], [13.343, 13.419, 13.338, 13.379000000000001], [13.375, 13.542, 13.300999999999998, 13.511], [13.517999999999999, 13.71, 13.508, 13.517999999999999], [13.513, 13.523, 13.227, 13.341], [13.334000000000001, 13.635, 13.287, 13.54], [13.54, 13.732999999999999, 13.54, 13.657], [13.654000000000002, 13.865, 13.654000000000002, 13.865], [13.86, 13.87, 13.68, 13.818], [13.808, 13.862, 13.687999999999999, 13.687999999999999], [13.689, 13.798, 13.616, 13.715], [13.713, 13.978, 13.713, 13.948], [13.935, 14.25, 13.863, 14.177], [14.177, 14.279000000000002, 14.052999999999999, 14.16], [14.157, 14.165999999999999, 13.993, 14.015], [14.012, 14.311, 14.012, 14.262], [14.254000000000001, 14.540999999999999, 14.22, 14.347999999999999], [14.344000000000001, 14.481, 14.273, 14.318], [14.327, 14.488, 14.315999999999999, 14.397], [14.405, 14.460999999999999, 14.206, 14.425], [14.429, 14.487, 14.267999999999999, 14.409], [14.41, 14.448, 14.126, 14.2], [14.197000000000001, 14.259, 14.11, 14.217], [14.217, 14.392000000000001, 14.217, 14.372], [14.378, 14.463, 14.297, 14.414000000000001], [14.414000000000001, 14.605, 14.414000000000001, 14.433], [14.445, 14.474, 14.287, 14.349], [14.334000000000001, 14.443, 14.285, 14.285], [14.288, 14.44, 14.288, 14.42], [14.42, 14.468, 14.374, 14.458], [14.462, 14.501, 14.334000000000001, 14.359000000000002], [14.345999999999998, 14.436, 14.265999999999998, 14.277999999999999], [14.277999999999999, 14.362, 14.197000000000001, 14.251], [14.262, 14.324000000000002, 14.161, 14.192], [14.193, 14.259, 14.15, 14.199000000000002], [14.192, 14.199000000000002, 14.057, 14.134], [14.140999999999998, 14.152000000000001, 13.949000000000002, 13.967], [13.972000000000001, 14.052, 13.889000000000001, 13.9], [13.915, 14.062000000000001, 13.870999999999999, 14.058], [14.058, 14.165, 13.959000000000001, 14.099], [14.097000000000001, 14.158, 14.012, 14.140999999999998], [14.155999999999999, 14.249, 14.145999999999999, 14.185], [14.177, 14.47, 14.177, 14.427999999999999], [14.439, 14.71, 14.342, 14.599], [14.607999999999999, 14.739, 14.526, 14.613], [14.607000000000001, 14.639000000000001, 14.505, 14.556], [14.546, 14.616, 14.445, 14.589], [14.575999999999999, 14.583, 14.357999999999999, 14.470999999999998], [14.465, 14.633, 14.437000000000001, 14.51], [14.51, 14.695, 14.488, 14.675], [14.675, 14.79, 14.600999999999999, 14.734000000000002], [14.729000000000001, 14.739, 14.616, 14.686], [14.69, 14.698, 14.537, 14.6], [14.61, 14.799000000000001, 14.589, 14.753], [14.75, 14.8, 14.610999999999999, 14.747], [14.735, 14.752, 14.623, 14.679], [14.68, 14.686, 14.536, 14.540999999999999], [14.549000000000001, 14.681, 14.533, 14.644], [14.644, 14.728, 14.595, 14.692], [14.689, 14.690999999999999, 14.630999999999998, 14.639000000000001], [14.645, 14.738, 14.626, 14.7], [14.692, 14.703, 14.57, 14.595999999999998], [14.595, 14.622, 14.44, 14.536], [14.533, 14.599, 14.470999999999998, 14.470999999999998], [14.484000000000002, 14.505999999999998, 14.405, 14.44], [14.443, 14.501, 14.425, 14.436], [14.447000000000001, 14.455, 14.378, 14.395999999999999], [14.399000000000001, 14.513, 14.362, 14.513], [14.504000000000001, 14.559000000000001, 14.402000000000001, 14.414000000000001], [14.415, 14.449000000000002, 14.377, 14.427999999999999], [14.429, 14.509, 14.335999999999999, 14.335999999999999], [14.337, 14.357000000000001, 14.263, 14.288], [14.29, 14.365, 14.276, 14.345999999999998], [14.344000000000001, 14.345, 14.245999999999999, 14.298], [14.298, 14.341, 14.269, 14.305], [14.304, 14.432, 14.279000000000002, 14.397], [14.418, 14.444, 14.307, 14.312999999999999], [14.325, 14.374, 14.3, 14.333], [14.342, 14.433, 14.335999999999999, 14.405], [14.415999999999999, 14.536, 14.41, 14.51], [14.514000000000001, 14.603, 14.477, 14.6], [14.6, 14.67, 14.561, 14.562000000000001], [14.561, 14.572000000000001, 14.446, 14.457], [14.456, 14.579, 14.442, 14.555], [14.549000000000001, 14.58, 14.46, 14.549000000000001], [14.559000000000001, 14.595999999999998, 14.413, 14.489], [14.489, 14.565, 14.395, 14.415999999999999], [14.421, 14.517000000000001, 14.402999999999999, 14.44], [14.431, 14.472999999999999, 14.405, 14.443], [14.439, 14.499, 14.427, 14.494000000000002], [14.488, 14.499, 14.26, 14.282], [14.275, 14.34, 14.165999999999999, 14.205], [14.206, 14.267999999999999, 14.107999999999999, 14.14], [14.140999999999998, 14.196, 14.124, 14.152999999999999], [14.147, 14.27, 14.145999999999999, 14.249], [14.241, 14.344000000000001, 14.200999999999999, 14.267000000000001], [14.261, 14.277000000000001, 14.161, 14.187999999999999], [14.193, 14.2, 14.122, 14.173], [14.167, 14.217, 14.155, 14.171], [14.175999999999998, 14.198, 14.11, 14.152999999999999], [14.16, 14.262, 14.144, 14.190999999999999], [14.195, 14.228, 14.154000000000002, 14.174000000000001], [14.17, 14.2, 14.116, 14.142000000000001], [14.135, 14.192, 14.05, 14.097000000000001], [14.093, 14.194, 13.975, 14.186], [14.187000000000001, 14.309000000000001, 14.181, 14.25], [14.254000000000001, 14.433, 14.251, 14.398], [14.39, 14.408, 14.329, 14.364], [14.369000000000002, 14.43, 14.366, 14.395], [14.4, 14.4, 14.199000000000002, 14.267999999999999], [14.262, 14.284, 14.169, 14.182], [14.181, 14.203, 14.093, 14.109000000000002], [14.107000000000001, 14.107000000000001, 13.999, 14.009], [14.005999999999998, 14.056, 13.947000000000001, 14.049000000000001], [14.058, 14.071, 14.005, 14.022], [14.014000000000001, 14.078, 14.012, 14.077], [14.078, 14.107999999999999, 13.937000000000001, 13.956], [13.940999999999999, 14.014000000000001, 13.934000000000001, 14.001], [14.007, 14.129000000000001, 14.007, 14.023], [14.023, 14.023, 13.949000000000002, 13.981], [13.979000000000001, 13.989, 13.895, 13.923], [13.917, 13.96, 13.809000000000001, 13.925], [13.925999999999998, 13.970999999999998, 13.849, 13.970999999999998], [13.969000000000001, 13.979000000000001, 13.890999999999998, 13.917], [13.909, 13.95, 13.742, 13.794], [13.785, 13.929, 13.770999999999999, 13.892000000000001], [13.902000000000001, 13.945, 13.880999999999998, 13.89], [13.890999999999998, 14.094000000000001, 13.890999999999998, 14.054], [14.055, 14.07, 13.939, 13.998], [13.995, 14.052, 13.943, 13.95], [13.949000000000002, 13.974, 13.835, 13.929], [13.931, 13.994000000000002, 13.931, 13.966], [13.965, 14.056, 13.965, 14.050999999999998], [14.044, 14.058, 13.974, 14.040999999999999], [14.042, 14.075999999999999, 13.932, 13.939], [13.940999999999999, 13.960999999999999, 13.854000000000001, 13.869000000000002], [13.862, 13.889000000000001, 13.815, 13.822000000000001], [13.822000000000001, 13.847999999999999, 13.790999999999999, 13.814], [13.81, 13.892999999999999, 13.802999999999999, 13.890999999999998], [13.890999999999998, 13.960999999999999, 13.825999999999999, 13.954], [13.962, 13.968, 13.854000000000001, 13.872], [13.87, 13.939, 13.824000000000002, 13.876], [13.874, 13.98, 13.868, 13.947000000000001], [13.959000000000001, 14.029000000000002, 13.950999999999999, 14.004000000000001], [14.009, 14.059000000000001, 13.978, 14.03], [14.03, 14.049000000000001, 13.925999999999998, 13.987], [13.985999999999999, 14.011, 13.950999999999999, 14.009], [14.008, 14.008, 13.902999999999999, 13.934000000000001], [13.934000000000001, 13.98, 13.904000000000002, 13.974], [13.982999999999999, 14.030999999999999, 13.975999999999999, 13.992], [13.985, 14.02, 13.925, 13.96], [13.962, 13.988, 13.915999999999999, 13.945], [13.94, 14.001, 13.917, 13.952], [13.950999999999999, 13.952, 13.767999999999999, 13.821], [13.832, 13.842, 13.792, 13.819], [13.815, 13.832, 13.717, 13.729000000000001], [13.728, 13.73, 13.565999999999999, 13.654000000000002], [13.652999999999999, 13.72, 13.610999999999999, 13.665999999999999], [13.661, 13.687000000000001, 13.574000000000002, 13.624], [13.61, 13.640999999999998, 13.556, 13.640999999999998], [13.642999999999999, 13.645999999999999, 13.431, 13.472999999999999], [13.472000000000001, 13.535, 13.442, 13.472999999999999], [13.470999999999998, 13.552999999999999, 13.43, 13.477], [13.472999999999999, 13.488, 13.417, 13.419], [13.422, 13.56, 13.4, 13.552], [13.554, 13.556, 13.425, 13.43], [13.435, 13.508, 13.392000000000001, 13.507], [13.502, 13.587, 13.47, 13.527000000000001], [13.522, 13.578, 13.457, 13.513], [13.508, 13.573, 13.462, 13.488], [13.488, 13.574000000000002, 13.463, 13.499], [13.5, 13.649000000000001, 13.499, 13.622], [13.613, 13.65, 13.571, 13.594000000000001], [13.594000000000001, 13.595, 13.512, 13.54], [13.530999999999999, 13.610999999999999, 13.53, 13.581], [13.579, 13.638, 13.57, 13.600999999999999], [13.600999999999999, 13.606, 13.46, 13.533], [13.536, 13.6, 13.512, 13.556], [13.562000000000001, 13.597999999999999, 13.47, 13.478], [13.472000000000001, 13.485999999999999, 13.364, 13.367], [13.376, 13.5, 13.213, 13.220999999999998], [13.213, 13.324000000000002, 13.2, 13.248], [13.255, 13.384, 13.184000000000001, 13.213], [13.206, 13.329, 13.155, 13.285], [13.289000000000001, 13.347999999999999, 13.243, 13.315999999999999], [13.302, 13.302999999999999, 13.206, 13.224], [13.224, 13.243, 13.067, 13.234000000000002], [13.228, 13.274000000000001, 13.092, 13.114], [13.114, 13.225999999999999, 13.095, 13.142000000000001], [13.155, 13.232000000000001, 13.078, 13.199000000000002], [13.199000000000002, 13.22, 13.154000000000002, 13.21], [13.215, 13.234000000000002, 13.001, 13.115], [13.089, 13.34, 13.081, 13.257], [13.272, 13.287, 13.129000000000001, 13.130999999999998], [13.13, 13.167, 13.017999999999999, 13.105], [13.109000000000002, 13.124, 12.927999999999999, 12.962], [12.958, 12.989, 12.752, 12.948], [12.940999999999999, 13.022, 12.815, 12.868], [12.859000000000002, 12.929, 12.823, 12.914000000000001], [12.917, 12.955, 12.886, 12.940999999999999], [12.931, 13.027000000000001, 12.923, 13.0], [13.004000000000001, 13.02, 12.957, 12.993], [12.999, 13.001, 12.880999999999998, 12.9], [12.902000000000001, 12.966, 12.901, 12.94], [12.929, 13.042, 12.914000000000001, 12.995], [12.99, 13.052, 12.98, 13.048], [13.043, 13.12, 13.013, 13.026], [13.02, 13.087, 13.015999999999998, 13.084000000000001], [13.081, 13.1, 13.012, 13.034], [13.025, 13.07, 12.972999999999999, 12.99], [12.972999999999999, 13.03, 12.969000000000001, 13.013], [13.01, 13.077, 12.981, 12.981], [12.982000000000001, 12.988, 12.844000000000001, 12.95], [12.953, 12.958, 12.812000000000001, 12.913], [12.925999999999998, 13.100999999999999, 12.92, 13.075], [13.062000000000001, 13.132, 13.009, 13.050999999999998], [13.048, 13.048, 12.969000000000001, 12.985], [12.985, 13.0, 12.908, 12.908], [12.905999999999999, 13.062999999999999, 12.9, 13.058], [13.062999999999999, 13.184000000000001, 13.055, 13.145999999999999], [13.130999999999998, 13.288, 13.112, 13.255999999999998], [13.261, 13.342, 13.209000000000001, 13.288], [13.285, 13.343, 13.272, 13.285], [13.293, 13.315, 13.254000000000001, 13.254000000000001], [13.26, 13.413, 13.251, 13.380999999999998], [13.38, 13.635, 13.38, 13.619000000000002], [13.634, 13.729000000000001, 13.540999999999999, 13.637], [13.637, 13.649000000000001, 13.446, 13.459000000000001], [13.458, 13.535, 13.370999999999999, 13.385], [13.383, 13.423, 13.312999999999999, 13.353], [13.355, 13.427999999999999, 13.349, 13.424000000000001], [13.423, 13.562999999999999, 13.405999999999999, 13.505], [13.511, 13.53, 13.213, 13.245], [13.245, 13.265, 13.09, 13.159], [13.140999999999998, 13.190999999999999, 12.949000000000002, 12.98], [12.981, 13.072000000000001, 12.977, 13.052999999999999], [13.044, 13.219000000000001, 13.035, 13.194], [13.199000000000002, 13.305, 13.196, 13.269], [13.276, 13.4, 13.273, 13.312000000000001], [13.319, 13.335, 13.206, 13.232000000000001], [13.235999999999999, 13.455, 13.234000000000002, 13.417], [13.415999999999999, 13.475999999999999, 13.363, 13.375], [13.38, 13.49, 13.369000000000002, 13.380999999999998], [13.385, 13.421, 13.335999999999999, 13.365], [13.365, 13.495999999999999, 13.363, 13.444], [13.444, 13.444, 13.359000000000002, 13.397], [13.41, 13.478, 13.398, 13.405999999999999], [13.414000000000001, 13.457, 13.401, 13.419], [13.418, 13.432, 13.282, 13.315999999999999], [13.32, 13.421, 13.31, 13.379000000000001], [13.369000000000002, 13.432, 13.369000000000002, 13.419], [13.423, 13.463, 13.312999999999999, 13.453], [13.454, 13.517999999999999, 13.395999999999999, 13.395999999999999], [13.395, 13.5, 13.354000000000001, 13.49], [13.49, 13.525, 13.450999999999999, 13.464], [13.465, 13.465, 13.347999999999999, 13.392999999999999], [13.395, 13.466, 13.290999999999999, 13.32], [13.309000000000001, 13.475, 13.309000000000001, 13.449000000000002], [13.448, 13.633, 13.43, 13.617], [13.613, 13.697000000000001, 13.512, 13.622], [13.606, 13.610999999999999, 13.454, 13.460999999999999], [13.46, 13.46, 13.342, 13.386], [13.376, 13.376, 13.056, 13.174000000000001], [13.17, 13.248, 13.039000000000001, 13.073], [13.093, 13.241, 13.032, 13.202], [13.21, 13.290999999999999, 13.104000000000001, 13.133], [13.139000000000001, 13.149000000000001, 12.966, 13.009], [13.013, 13.047, 12.854000000000001, 12.972999999999999], [12.970999999999998, 13.007, 12.864, 12.884], [12.878, 12.889000000000001, 12.661, 12.684000000000001], [12.679, 12.897, 12.642000000000001, 12.745], [12.745, 12.809000000000001, 12.687999999999999, 12.769], [12.772, 12.829, 12.684000000000001, 12.696], [12.7, 12.849, 12.690999999999999, 12.834000000000001], [12.825999999999999, 12.856, 12.767999999999999, 12.838], [12.832, 12.937999999999999, 12.821, 12.844000000000001], [12.844000000000001, 12.887, 12.706, 12.712], [12.707, 12.852, 12.698, 12.842], [12.841, 12.876, 12.731, 12.755999999999998], [12.767999999999999, 12.838, 12.705, 12.788], [12.802, 12.868, 12.772, 12.857999999999999], [12.852, 12.874, 12.761, 12.788], [12.773, 12.864, 12.767999999999999, 12.847000000000001], [12.838, 12.917, 12.794, 12.878], [12.879000000000001, 12.879000000000001, 12.758, 12.762], [12.758, 12.788, 12.694, 12.704], [12.7, 12.727, 12.478, 12.515], [12.517000000000001, 12.555, 12.401, 12.419], [12.419, 12.549000000000001, 12.217, 12.224], [12.23, 12.321, 12.033, 12.139000000000001], [12.14, 12.195, 11.982000000000001, 12.058], [12.062000000000001, 12.091, 12.007, 12.032], [12.027000000000001, 12.095999999999998, 11.919, 11.997], [11.985, 12.069, 11.96, 12.062999999999999], [12.062999999999999, 12.071, 11.952, 11.981], [11.975, 12.048, 11.959000000000001, 12.017000000000001], [12.019, 12.109000000000002, 11.95, 11.95], [11.95, 11.957, 11.807, 11.925], [11.918, 12.008, 11.913, 11.952], [11.944, 11.992, 11.937999999999999, 11.960999999999999], [11.966, 12.057, 11.923, 12.023], [12.023, 12.094000000000001, 11.984000000000002, 12.084000000000001], [12.078, 12.089, 11.929, 11.936], [11.937000000000001, 11.985999999999999, 11.811, 11.97], [11.966, 12.078, 11.925999999999998, 12.052999999999999], [12.045, 12.187999999999999, 12.045, 12.151], [12.133, 12.173, 12.035, 12.079], [12.071, 12.154000000000002, 11.963, 12.092], [12.087, 12.231, 12.0, 12.183], [12.184000000000001, 12.187000000000001, 11.913, 11.93], [11.922, 11.924000000000001, 11.628, 11.64], [11.642999999999999, 11.655999999999999, 11.517999999999999, 11.610999999999999], [11.61, 11.644, 11.312000000000001, 11.315999999999999], [11.312000000000001, 11.477, 11.312000000000001, 11.392999999999999], [11.404000000000002, 11.567, 11.370999999999999, 11.546], [11.543, 11.630999999999998, 11.472000000000001, 11.501], [11.509, 11.582, 11.335999999999999, 11.386], [11.379000000000001, 11.535, 11.372, 11.527000000000001], [11.523, 11.578, 11.482999999999999, 11.55], [11.537, 11.639000000000001, 11.508, 11.605], [11.595999999999998, 11.619000000000002, 11.459000000000001, 11.459000000000001], [11.468, 11.474, 11.019, 11.167], [11.173, 11.296, 11.088, 11.289000000000001], [11.297, 11.297, 11.132, 11.245999999999999], [11.241, 11.343, 11.17, 11.338], [11.339, 11.468, 11.318, 11.440999999999999], [11.439, 11.449000000000002, 11.328, 11.357000000000001], [11.353, 11.395999999999999, 11.300999999999998, 11.378], [11.375, 11.407, 11.294, 11.39], [11.389000000000001, 11.417, 11.262, 11.334000000000001], [11.332, 11.367, 11.184000000000001, 11.224], [11.222000000000001, 11.41, 11.214, 11.265], [11.269, 11.401, 11.193, 11.213], [11.199000000000002, 11.323, 11.175999999999998, 11.261], [11.258, 11.425, 11.244000000000002, 11.395], [11.392999999999999, 11.392999999999999, 11.206, 11.239], [11.239, 11.357999999999999, 11.225, 11.355], [11.355, 11.395, 11.325999999999999, 11.37], [11.37, 11.51, 11.339, 11.444], [11.448, 11.507, 11.421, 11.431], [11.431, 11.478, 11.35, 11.464], [11.454, 11.479000000000001, 11.374, 11.478], [11.474, 11.513, 11.43, 11.434000000000001], [11.436, 11.456, 11.272, 11.292], [11.289000000000001, 11.687999999999999, 11.2, 11.665], [11.669, 11.8, 11.669, 11.765999999999998], [11.758, 11.765, 11.706, 11.739], [11.738, 11.78, 11.681, 11.73], [11.739, 11.854000000000001, 11.707, 11.835999999999999], [11.84, 11.96, 11.839, 11.912], [11.909, 11.934000000000001, 11.831, 11.85], [11.857000000000001, 11.9, 11.802999999999999, 11.885], [11.878, 11.962, 11.831, 11.870999999999999], [11.873, 11.925, 11.862, 11.882], [11.882, 11.913, 11.73, 11.773], [11.772, 11.824000000000002, 11.765, 11.785], [11.785, 11.847999999999999, 11.704, 11.728], [11.724, 11.731, 11.583, 11.644], [11.638, 11.671, 11.578, 11.578], [11.583, 11.664000000000001, 11.575999999999999, 11.642999999999999], [11.645999999999999, 11.965, 11.644, 11.965], [11.952, 11.999, 11.863, 11.981], [11.982000000000001, 12.04, 11.933, 12.029000000000002], [12.017000000000001, 12.04, 11.966, 12.015999999999998], [12.019, 12.142999999999999, 12.015999999999998, 12.095], [12.085999999999999, 12.097999999999999, 11.950999999999999, 11.969000000000001], [11.968, 12.089, 11.966, 11.982999999999999], [11.982999999999999, 12.042, 11.982999999999999, 12.036], [12.039000000000001, 12.061, 11.98, 12.046], [12.05, 12.062999999999999, 11.975, 11.981], [11.981, 12.036, 11.815, 11.828], [11.829, 11.939, 11.796, 11.907], [11.908, 12.035, 11.908, 11.940999999999999], [11.945, 11.995, 11.82, 11.965], [11.979000000000001, 12.03, 11.853, 11.966], [11.968, 11.988, 11.905, 11.97], [11.97, 11.997, 11.937999999999999, 11.969000000000001], [11.972999999999999, 11.989, 11.912, 11.915999999999999], [11.918, 11.962, 11.869000000000002, 11.880999999999998], [11.901, 12.007, 11.897, 11.943], [11.94, 12.017999999999999, 11.915999999999999, 11.929], [11.929, 12.024000000000001, 11.927, 11.991], [11.985, 12.062000000000001, 11.97, 12.036], [12.037, 12.052999999999999, 11.807, 11.825], [11.833, 11.864, 11.719000000000001, 11.745999999999999], [11.743, 11.829, 11.684000000000001, 11.684000000000001], [11.689, 11.753, 11.675, 11.729000000000001], [11.725999999999999, 11.752, 11.667, 11.68], [11.682, 11.8, 11.667, 11.786], [11.793, 11.834000000000001, 11.77, 11.83], [11.824000000000002, 11.831, 11.757, 11.773], [11.779000000000002, 11.847000000000001, 11.77, 11.819], [11.821, 11.904000000000002, 11.809000000000001, 11.889000000000001], [11.886, 11.958, 11.883, 11.942], [11.944, 11.95, 11.921, 11.945], [11.946, 11.957, 11.865, 11.885], [11.888, 11.939, 11.845, 11.899000000000001], [11.904000000000002, 11.999, 11.904000000000002, 11.958], [11.97, 12.022, 11.96, 12.005], [11.998, 12.007, 11.925, 11.943], [11.942, 11.946, 11.745, 11.765], [11.757, 11.812999999999999, 11.69, 11.7], [11.696, 11.745, 11.644, 11.667], [11.67, 11.762, 11.649000000000001, 11.747], [11.749, 11.789000000000001, 11.552, 11.585], [11.579, 11.667, 11.52, 11.64], [11.639000000000001, 11.765, 11.61, 11.744000000000002], [11.738, 11.9, 11.738, 11.888], [11.892999999999999, 12.065, 11.892999999999999, 12.040999999999999], [12.044, 12.05, 11.868, 11.913], [11.901, 11.911, 11.783, 11.797], [11.783, 11.835, 11.725, 11.742], [11.742, 11.863, 11.725, 11.845], [11.844000000000001, 11.844000000000001, 11.75, 11.789000000000001], [11.777000000000001, 11.777000000000001, 11.703, 11.75], [11.748, 11.779000000000002, 11.69, 11.725], [11.725, 11.725, 11.609000000000002, 11.609000000000002], [11.618, 11.697000000000001, 11.6, 11.697000000000001], [11.682, 11.692, 11.645, 11.652000000000001], [11.652000000000001, 11.690999999999999, 11.584000000000001, 11.59], [11.583, 11.648, 11.469000000000001, 11.499], [11.492, 11.597000000000001, 11.492, 11.587], [11.587, 11.595, 11.494000000000002, 11.530999999999999], [11.537, 11.609000000000002, 11.478, 11.577], [11.584000000000001, 11.584000000000001, 11.5, 11.535], [11.54, 11.578, 11.509, 11.565999999999999], [11.561, 11.602, 11.523, 11.546], [11.544, 11.545, 11.446, 11.505999999999998], [11.503, 11.503, 11.353, 11.462], [11.458, 11.458, 11.312000000000001, 11.332], [11.317, 11.414000000000001, 11.245, 11.343], [11.343, 11.423, 11.338, 11.354000000000001], [11.35, 11.455, 11.289000000000001, 11.454], [11.450999999999999, 11.488, 11.390999999999998, 11.482000000000001], [11.475, 11.475, 11.364, 11.408], [11.405, 11.479000000000001, 11.38, 11.463], [11.456, 11.602, 11.41, 11.525], [11.514000000000001, 11.535, 11.389000000000001, 11.445], [11.443, 11.519, 11.370999999999999, 11.495], [11.495999999999999, 11.498, 11.384, 11.387], [11.384, 11.412, 11.325999999999999, 11.402000000000001], [11.408, 11.48, 11.383, 11.425], [11.421, 11.475, 11.389000000000001, 11.41], [11.401, 11.408, 11.360999999999999, 11.390999999999998], [11.385, 11.431, 11.374, 11.402000000000001], [11.402999999999999, 11.402999999999999, 11.084000000000001, 11.110999999999999], [11.106, 11.106, 10.91, 10.925999999999998], [10.929, 11.005, 10.85, 10.876], [10.878, 10.957, 10.854000000000001, 10.923], [10.923, 10.932, 10.847999999999999, 10.895], [10.902000000000001, 10.995999999999999, 10.895, 10.97], [10.962, 11.062999999999999, 10.962, 11.005], [10.999, 11.134, 10.899000000000001, 10.940999999999999], [10.940999999999999, 11.013, 10.904000000000002, 10.919], [10.925, 10.979000000000001, 10.819, 10.868], [10.867, 10.984000000000002, 10.835999999999999, 10.937000000000001], [10.929, 11.001, 10.89, 10.954], [10.962, 10.977, 10.806, 10.911], [10.905, 10.991, 10.857000000000001, 10.93], [10.925, 11.08, 10.908, 11.058], [11.06, 11.127, 11.013, 11.095999999999998], [11.089, 11.089, 10.963, 10.967], [10.965, 11.074000000000002, 10.929, 10.999], [10.994000000000002, 11.085999999999999, 10.985, 11.023], [11.030999999999999, 11.130999999999998, 11.002, 11.095999999999998], [11.095, 11.117, 11.044, 11.065], [11.059000000000001, 11.064, 10.977, 11.007], [11.005999999999998, 11.140999999999998, 11.005999999999998, 11.072000000000001], [11.055, 11.124, 10.956, 10.965], [10.96, 10.966, 10.734000000000002, 10.743], [10.739, 10.86, 10.698, 10.857999999999999], [10.856, 10.905, 10.763, 10.856], [10.857000000000001, 10.857000000000001, 10.652999999999999, 10.731], [10.743, 10.835, 10.698, 10.825], [10.825999999999999, 10.89, 10.77, 10.78], [10.779000000000002, 10.857999999999999, 10.748, 10.841], [10.847999999999999, 10.919, 10.802999999999999, 10.877], [10.879000000000001, 10.988, 10.878, 10.968], [10.972999999999999, 11.040999999999999, 10.958, 11.04], [11.035, 11.097999999999999, 11.002, 11.036], [11.029000000000002, 11.13, 11.015, 11.052999999999999], [11.054, 11.209000000000001, 11.05, 11.115], [11.117, 11.152000000000001, 11.077, 11.115], [11.117, 11.235, 11.1, 11.209000000000001], [11.217, 11.377, 11.217, 11.357999999999999], [11.359000000000002, 11.405, 11.305, 11.357000000000001], [11.350999999999999, 11.350999999999999, 11.257, 11.265], [11.263, 11.385, 11.261, 11.375], [11.382, 11.413, 11.352, 11.399000000000001], [11.392999999999999, 11.437000000000001, 11.341, 11.432], [11.437999999999999, 11.443, 11.352, 11.366], [11.357000000000001, 11.479000000000001, 11.357000000000001, 11.4], [11.4, 11.440999999999999, 11.34, 11.392000000000001], [11.404000000000002, 11.527999999999999, 11.404000000000002, 11.491], [11.491, 11.509, 11.414000000000001, 11.437999999999999], [11.44, 11.442, 11.384, 11.415], [11.418, 11.5, 11.415, 11.449000000000002], [11.462, 11.545, 11.462, 11.501], [11.501, 11.508, 11.26, 11.277999999999999], [11.276, 11.49, 11.272, 11.474], [11.468, 11.6, 11.377, 11.599], [11.581, 11.594000000000001, 11.417, 11.434000000000001], [11.437000000000001, 11.464, 11.319, 11.368], [11.365, 11.584000000000001, 11.35, 11.565], [11.578, 11.684000000000001, 11.558, 11.584000000000001], [11.579, 11.72, 11.546, 11.674000000000001], [11.68, 11.710999999999999, 11.661, 11.665], [11.668, 11.685, 11.597000000000001, 11.657], [11.658, 11.802, 11.658, 11.748], [11.738, 11.770999999999999, 11.693, 11.713], [11.724, 11.735, 11.639000000000001, 11.673], [11.683, 11.795, 11.677999999999999, 11.795], [11.798, 11.825, 11.734000000000002, 11.774000000000001], [11.769, 11.895, 11.735, 11.886], [11.897, 11.902000000000001, 11.806, 11.856], [11.863, 12.037, 11.79, 12.037], [12.037, 12.058, 11.918, 11.931], [11.93, 11.937000000000001, 11.84, 11.854000000000001], [11.862, 11.95, 11.85, 11.895], [11.892000000000001, 11.939, 11.865, 11.885], [11.889000000000001, 11.927999999999999, 11.815999999999999, 11.874], [11.879000000000001, 11.883, 11.689, 11.689], [11.687999999999999, 11.789000000000001, 11.686, 11.727], [11.725999999999999, 11.765999999999998, 11.651, 11.674000000000001], [11.684000000000001, 11.722000000000001, 11.61, 11.615], [11.610999999999999, 11.632, 11.51, 11.51], [11.514000000000001, 11.529000000000002, 11.360999999999999, 11.364], [11.362, 11.402999999999999, 11.321, 11.322000000000001], [11.322000000000001, 11.495999999999999, 11.321, 11.492], [11.491, 11.525, 11.382, 11.404000000000002], [11.422, 11.557, 11.360999999999999, 11.439], [11.443, 11.532, 11.425, 11.53], [11.527000000000001, 11.568, 11.382, 11.453], [11.465, 11.49, 11.344000000000001, 11.350999999999999], [11.350999999999999, 11.424000000000001, 11.162, 11.231], [11.229000000000001, 11.3, 11.130999999999998, 11.259], [11.263, 11.380999999999998, 11.172, 11.202], [11.203, 11.279000000000002, 11.162, 11.204], [11.207, 11.283, 11.200999999999999, 11.244000000000002], [11.243, 11.359000000000002, 11.18, 11.280999999999999], [11.28, 11.305, 11.054, 11.057], [11.062000000000001, 11.115, 10.975999999999999, 11.062999999999999], [11.062000000000001, 11.21, 11.01, 11.202], [11.203, 11.288, 11.088, 11.24], [11.235, 11.24, 11.15, 11.169], [11.179, 11.23, 11.110999999999999, 11.228], [11.224, 11.36, 11.224, 11.245999999999999], [11.248, 11.47, 11.215, 11.323], [11.315999999999999, 11.927999999999999, 11.304, 11.780999999999999], [11.784, 11.995, 11.599, 11.69], [11.687000000000001, 11.687000000000001, 11.509, 11.530999999999999], [11.529000000000002, 11.847999999999999, 11.499, 11.773], [11.765, 11.91, 11.625, 11.669], [11.668, 11.779000000000002, 11.618, 11.752], [11.761, 11.838, 11.663, 11.682], [11.68, 11.763, 11.642000000000001, 11.687999999999999], [11.695, 11.811, 11.663, 11.789000000000001], [11.789000000000001, 11.949000000000002, 11.722000000000001, 11.933], [11.934000000000001, 11.966, 11.822000000000001, 11.911], [11.905, 11.927999999999999, 11.785, 11.877], [11.876, 11.959000000000001, 11.799000000000001, 11.876], [11.878, 12.136, 11.868, 12.075], [12.067, 12.339, 12.012, 12.339], [12.338, 13.0, 12.325, 12.5], [12.499, 12.770999999999999, 12.309000000000001, 12.549000000000001], [12.547, 12.79, 12.443, 12.505], [12.511, 12.738, 12.457, 12.664000000000001], [12.664000000000001, 12.9, 12.584000000000001, 12.880999999999998], [12.883, 13.173, 12.821, 12.905999999999999], [12.911, 13.19, 12.904000000000002, 12.965], [12.97, 13.034, 12.821, 12.985999999999999], [12.989, 13.03, 12.833, 12.845999999999998], [12.85, 12.919, 12.686, 12.722999999999999], [12.72, 12.943, 12.704, 12.892999999999999], [12.89, 12.999, 12.776, 12.809000000000001], [12.809000000000001, 12.925999999999998, 12.737, 12.755999999999998], [12.745, 12.83, 12.685, 12.702], [12.702, 12.8, 12.689, 12.71], [12.707, 12.738, 12.568, 12.581], [12.585999999999999, 12.694, 12.585999999999999, 12.589], [12.597000000000001, 12.703, 12.537, 12.562000000000001], [12.562000000000001, 12.562000000000001, 12.421, 12.456], [12.460999999999999, 12.505999999999998, 12.355, 12.414000000000001], [12.422, 12.491, 12.28, 12.284], [12.282, 12.357999999999999, 12.210999999999999, 12.225], [12.217, 12.252, 12.123, 12.125], [12.123, 12.39, 12.12, 12.205], [12.21, 12.317, 12.061, 12.094000000000001], [12.094000000000001, 12.15, 12.019, 12.039000000000001], [12.04, 12.065, 11.884, 11.895], [11.899000000000001, 11.905, 11.724, 11.745], [11.731, 11.802999999999999, 11.54, 11.577], [11.577, 11.62, 11.474, 11.511], [11.507, 11.543, 11.234000000000002, 11.304], [11.307, 11.331, 11.125, 11.181], [11.181, 11.292, 11.094000000000001, 11.149000000000001], [11.149000000000001, 11.289000000000001, 11.005, 11.050999999999998], [11.043, 11.137, 11.004000000000001, 11.050999999999998], [11.046, 11.244000000000002, 11.029000000000002, 11.224], [11.224, 11.257, 11.187000000000001, 11.235999999999999], [11.235999999999999, 11.239, 10.915999999999999, 11.029000000000002], [11.033, 11.04, 10.94, 11.01], [11.003, 11.011, 10.738, 10.779000000000002], [10.788, 10.922, 10.744000000000002, 10.866], [10.865, 10.865, 10.713, 10.761], [10.755999999999998, 10.842, 10.725999999999999, 10.842], [10.837, 10.98, 10.833, 10.943], [10.944, 10.978, 10.815, 10.847999999999999], [10.843, 10.898, 10.744000000000002, 10.837], [10.838, 11.025, 10.832, 11.024000000000001], [11.015999999999998, 11.019, 10.864, 10.931], [10.927999999999999, 10.935, 10.832, 10.863], [10.86, 10.950999999999999, 10.765, 10.799000000000001], [10.790999999999999, 10.91, 10.785, 10.897], [10.895, 11.07, 10.892999999999999, 11.061], [11.057, 11.083, 10.992, 11.049000000000001], [11.052999999999999, 11.165, 11.032, 11.161], [11.155, 11.273, 11.147, 11.261], [11.261, 11.338, 11.120999999999999, 11.168], [11.165999999999999, 11.306, 11.135, 11.258], [11.259, 11.312000000000001, 11.2, 11.312000000000001], [11.309000000000001, 11.317, 11.210999999999999, 11.232999999999999], [11.234000000000002, 11.425999999999998, 11.234000000000002, 11.395999999999999], [11.398, 11.48, 11.395, 11.445], [11.440999999999999, 11.446, 11.263, 11.285], [11.283, 11.283, 11.123, 11.132], [11.137, 11.218, 11.13, 11.140999999999998], [11.140999999999998, 11.232000000000001, 11.136, 11.210999999999999], [11.214, 11.214, 10.967, 10.967], [10.969000000000001, 11.124, 10.969000000000001, 11.068], [11.055, 11.421, 11.017000000000001, 11.376], [11.382, 11.508, 11.248, 11.277000000000001], [11.272, 11.364, 11.196, 11.333], [11.34, 11.360999999999999, 11.177999999999999, 11.193], [11.197000000000001, 11.234000000000002, 11.114, 11.220999999999998], [11.222999999999999, 11.225, 11.09, 11.133], [11.133, 11.155999999999999, 10.953, 10.962], [10.964, 11.075, 10.96, 11.023], [11.012, 11.109000000000002, 11.008, 11.062000000000001], [11.061, 11.061, 10.85, 10.865], [10.856, 11.01, 10.835, 10.975999999999999], [10.981, 11.0, 10.876, 10.923], [10.925, 11.032, 10.913, 11.02], [11.004000000000001, 11.099, 10.975, 11.058], [11.057, 11.174000000000001, 11.0, 11.14], [11.145, 11.225, 11.132, 11.182], [11.167, 11.247, 11.093, 11.123], [11.115, 11.280999999999999, 11.074000000000002, 11.27], [11.267999999999999, 11.289000000000001, 11.142000000000001, 11.184000000000001], [11.185, 11.2, 10.982000000000001, 10.991], [11.003, 11.182, 10.994000000000002, 11.155999999999999], [11.158, 11.239, 11.022, 11.123], [11.114, 11.203, 11.061, 11.075], [11.078, 11.087, 10.942, 11.0], [10.997, 11.064, 10.992, 11.037], [11.032, 11.048, 10.985999999999999, 11.027000000000001], [11.027000000000001, 11.062000000000001, 10.958, 10.985999999999999], [10.995, 11.038, 10.95, 10.988], [10.998, 11.02, 10.966, 10.999], [10.993, 11.094000000000001, 10.987, 11.094000000000001], [11.091, 11.15, 11.01, 11.08], [11.077, 11.103, 11.033, 11.095999999999998], [11.104000000000001, 11.135, 11.015, 11.033], [11.042, 11.067, 10.985999999999999, 11.045], [11.043, 11.067, 10.972999999999999, 11.037], [11.035, 11.088, 10.989, 11.05], [11.052999999999999, 11.078, 10.977, 10.997], [10.999, 11.171, 10.995, 11.17], [11.17, 11.24, 11.11, 11.171], [11.172, 11.24, 11.14, 11.225], [11.225, 11.296, 11.065999999999999, 11.102], [11.100999999999999, 11.136, 11.027999999999999, 11.107999999999999], [11.104000000000001, 11.2, 11.104000000000001, 11.122], [11.125, 11.267999999999999, 11.125, 11.239], [11.238, 11.267999999999999, 11.161, 11.202], [11.202, 11.237, 11.07, 11.126], [11.130999999999998, 11.159, 11.087, 11.157], [11.154000000000002, 11.155, 11.102, 11.136], [11.137, 11.275, 11.136, 11.265999999999998], [11.267000000000001, 11.269, 11.14, 11.142999999999999], [11.151, 11.187999999999999, 11.08, 11.18], [11.175, 11.244000000000002, 11.175, 11.222000000000001], [11.222999999999999, 11.222999999999999, 11.126, 11.132], [11.144, 11.163, 11.088, 11.145999999999999], [11.147, 11.147, 11.027000000000001, 11.064], [11.059000000000001, 11.151, 11.045, 11.062999999999999], [11.062999999999999, 11.179, 11.052, 11.165999999999999], [11.164000000000001, 11.193, 11.08, 11.100999999999999], [11.107000000000001, 11.151, 11.047, 11.095999999999998], [11.095999999999998, 11.095999999999998, 11.011, 11.023], [11.025, 11.116, 10.982999999999999, 11.075999999999999], [11.079, 11.079, 10.955, 11.022], [11.02, 11.129000000000001, 10.975, 11.054], [11.06, 11.185, 11.06, 11.152999999999999], [11.165, 11.334000000000001, 11.163, 11.311], [11.312000000000001, 11.427, 11.311, 11.312999999999999], [11.314, 11.425999999999998, 11.3, 11.425999999999998], [11.414000000000001, 11.530999999999999, 11.414000000000001, 11.530999999999999], [11.525, 11.557, 11.375, 11.489], [11.49, 11.493, 11.321, 11.344000000000001], [11.35, 11.45, 11.35, 11.38], [11.38, 11.47, 11.35, 11.421], [11.414000000000001, 11.48, 11.360999999999999, 11.413], [11.42, 11.472000000000001, 11.387, 11.456], [11.462, 11.464, 11.252, 11.275], [11.277000000000001, 11.277000000000001, 11.203, 11.229000000000001], [11.237, 11.290999999999999, 11.225999999999999, 11.238], [11.238, 11.280999999999999, 11.225999999999999, 11.237], [11.237, 11.300999999999998, 11.217, 11.279000000000002], [11.279000000000002, 11.280999999999999, 11.214, 11.27], [11.270999999999999, 11.277999999999999, 11.196, 11.208], [11.205, 11.222000000000001, 11.144, 11.179], [11.184000000000001, 11.207, 11.152000000000001, 11.16], [11.16, 11.265999999999998, 11.16, 11.265999999999998], [11.265, 11.286, 11.193, 11.270999999999999], [11.270999999999999, 11.295, 11.203, 11.23], [11.227, 11.239, 11.100999999999999, 11.114], [11.118, 11.148, 11.078, 11.137], [11.135, 11.135, 11.059000000000001, 11.100999999999999], [11.107999999999999, 11.107999999999999, 11.033, 11.061], [11.058, 11.097000000000001, 11.038, 11.043], [11.042, 11.118, 11.027000000000001, 11.107999999999999], [11.107000000000001, 11.151, 11.055, 11.07], [11.062999999999999, 11.139000000000001, 11.046, 11.092], [11.094000000000001, 11.155, 11.08, 11.140999999999998], [11.140999999999998, 11.17, 11.107999999999999, 11.145999999999999], [11.147, 11.163, 11.095999999999998, 11.155999999999999], [11.149000000000001, 11.179, 11.103, 11.175], [11.175, 11.222000000000001, 11.15, 11.2], [11.199000000000002, 11.241, 11.134, 11.229000000000001], [11.224, 11.288, 11.209000000000001, 11.272], [11.259, 11.305, 11.155, 11.173], [11.165999999999999, 11.205, 11.113, 11.149000000000001], [11.144, 11.219000000000001, 11.142000000000001, 11.198], [11.189, 11.189, 11.140999999999998, 11.187999999999999], [11.187000000000001, 11.24, 11.162, 11.225], [11.205, 11.277000000000001, 11.192, 11.261], [11.255, 11.26, 11.190999999999999, 11.252], [11.242, 11.305, 11.227, 11.296], [11.295, 11.295, 11.232000000000001, 11.257], [11.257, 11.296, 11.187000000000001, 11.203], [11.2, 11.213, 11.172, 11.198], [11.197000000000001, 11.262, 11.155, 11.25], [11.245, 11.269, 11.172, 11.229000000000001], [11.235, 11.258, 11.171, 11.21], [11.2, 11.235999999999999, 11.155999999999999, 11.172], [11.175, 11.224, 11.132, 11.151], [11.152000000000001, 11.175, 11.112, 11.152999999999999], [11.148, 11.224, 11.134, 11.203], [11.196, 11.222999999999999, 11.120999999999999, 11.142999999999999], [11.142000000000001, 11.151, 10.765999999999998, 10.885], [10.886, 10.952, 10.782, 10.825999999999999], [10.82, 10.927, 10.737, 10.889000000000001], [10.89, 10.93, 10.849, 10.922], [10.92, 10.970999999999998, 10.888, 10.904000000000002], [10.911, 10.959000000000001, 10.835, 10.908], [10.901, 10.911, 10.790999999999999, 10.883], [10.880999999999998, 10.943, 10.845999999999998, 10.933], [10.929, 10.937999999999999, 10.857000000000001, 10.895999999999999], [10.895999999999999, 10.982000000000001, 10.895, 10.902999999999999], [10.905999999999999, 11.198, 10.886, 11.017000000000001], [11.023, 11.118, 10.957, 11.068], [11.069, 11.148, 10.987, 11.099], [11.091, 11.265, 11.067, 11.149000000000001], [11.142999999999999, 11.194, 11.120999999999999, 11.171], [11.171, 11.248, 11.145, 11.192], [11.197000000000001, 11.215, 11.13, 11.134], [11.135, 11.183, 11.089, 11.145], [11.152000000000001, 11.162, 11.065999999999999, 11.120999999999999], [11.123, 11.159, 11.091, 11.103], [11.102, 11.149000000000001, 11.065, 11.087], [11.083, 11.135, 11.083, 11.135], [11.123, 11.128, 11.058, 11.072000000000001], [11.074000000000002, 11.094000000000001, 11.009, 11.019], [11.026, 11.117, 11.022, 11.102], [11.102, 11.134, 11.036, 11.04], [11.038, 11.052999999999999, 10.954, 11.046], [11.052999999999999, 11.08, 11.038, 11.045], [11.043, 11.043, 10.989, 10.994000000000002], [10.995999999999999, 11.165, 10.992, 11.142000000000001], [11.142000000000001, 11.187000000000001, 11.036, 11.056], [11.04, 11.046, 10.883, 10.944], [10.937000000000001, 10.995999999999999, 10.862, 10.886], [10.876, 10.937999999999999, 10.857000000000001, 10.915999999999999], [10.909, 10.932, 10.868, 10.911], [10.909, 10.944, 10.874, 10.901], [10.895999999999999, 11.027999999999999, 10.888, 11.004000000000001], [11.004000000000001, 11.059000000000001, 10.946, 10.972000000000001], [10.981, 11.07, 10.867, 10.99], [10.994000000000002, 11.026, 10.902999999999999, 10.942], [10.935, 10.937000000000001, 10.809000000000001, 10.857999999999999], [10.859000000000002, 10.859000000000002, 10.574000000000002, 10.684000000000001], [10.675, 10.675, 10.53, 10.56], [10.56, 10.638, 10.554, 10.616], [10.618, 10.709000000000001, 10.568, 10.69], [10.685, 10.710999999999999, 10.645, 10.684000000000001], [10.679, 10.732999999999999, 10.64, 10.73], [10.725999999999999, 10.73, 10.593, 10.593], [10.593, 10.642999999999999, 10.52, 10.583], [10.581, 10.647, 10.575999999999999, 10.591], [10.594000000000001, 10.677999999999999, 10.594000000000001, 10.639000000000001], [10.648, 10.683, 10.633, 10.66], [10.661, 10.68, 10.600999999999999, 10.677999999999999], [10.683, 10.685, 10.593, 10.614], [10.616, 10.665, 10.604000000000001, 10.638], [10.647, 10.714, 10.616, 10.674000000000001], [10.683, 10.718, 10.65, 10.686], [10.681, 10.716, 10.633, 10.635], [10.633, 10.745, 10.624, 10.741], [10.743, 10.755999999999998, 10.705, 10.742], [10.748, 10.758, 10.724, 10.735], [10.735999999999999, 10.843, 10.735999999999999, 10.832], [10.831, 10.87, 10.82, 10.822000000000001], [10.821, 10.83, 10.770999999999999, 10.798], [10.800999999999998, 10.853, 10.796, 10.825], [10.812999999999999, 10.853, 10.804, 10.82], [10.823, 10.888, 10.814, 10.88], [10.880999999999998, 10.952, 10.818, 10.829], [10.829, 10.833, 10.739, 10.789000000000001], [10.794, 10.815999999999999, 10.731, 10.752], [10.754000000000001, 10.85, 10.745, 10.828], [10.845, 10.855, 10.772, 10.802999999999999], [10.797, 10.815, 10.748, 10.788], [10.78, 10.787, 10.712, 10.725], [10.718, 10.767000000000001, 10.685, 10.7], [10.696, 10.776, 10.675999999999998, 10.745], [10.744000000000002, 10.769, 10.707, 10.73], [10.732000000000001, 10.741, 10.665, 10.687999999999999], [10.675999999999998, 10.714, 10.642999999999999, 10.659], [10.659, 10.665, 10.605, 10.627], [10.627, 10.681, 10.612, 10.613], [10.603, 10.642999999999999, 10.432, 10.488], [10.497, 10.585999999999999, 10.475, 10.578], [10.577, 10.577, 10.450999999999999, 10.539000000000001], [10.539000000000001, 10.562999999999999, 10.466, 10.495999999999999], [10.495999999999999, 10.508, 10.401, 10.44], [10.434000000000001, 10.460999999999999, 10.366, 10.379000000000001], [10.383, 10.384, 10.152000000000001, 10.152000000000001], [10.154, 10.192, 10.017000000000001, 10.132], [10.126, 10.145, 10.038, 10.103], [10.101, 10.2, 10.035, 10.191], [10.187000000000001, 10.229, 10.12, 10.165], [10.158999999999999, 10.161, 10.01, 10.01], [10.01, 10.037, 9.962, 10.0], [9.99, 10.157, 9.981, 10.099], [10.093, 10.148, 10.045, 10.097999999999999], [10.093, 10.179, 10.068, 10.169], [10.173, 10.196, 10.142999999999999, 10.181000000000001], [10.181000000000001, 10.275, 10.136000000000001, 10.24], [10.241, 10.262, 10.203, 10.225], [10.224, 10.236, 10.186, 10.193], [10.187999999999999, 10.222999999999999, 10.091000000000001, 10.127], [10.122, 10.202, 10.096, 10.115], [10.11, 10.255, 10.11, 10.121], [10.124, 10.165, 10.079, 10.124], [10.12, 10.19, 10.097000000000001, 10.122], [10.126, 10.152000000000001, 10.094, 10.138], [10.137, 10.214, 10.117, 10.176], [10.176, 10.193999999999999, 10.129, 10.156], [10.158999999999999, 10.175, 10.1, 10.175], [10.177999999999999, 10.227, 10.146, 10.201], [10.201, 10.208, 10.14, 10.2], [10.186, 10.211, 10.144, 10.161], [10.16, 10.177999999999999, 10.0, 10.052], [10.055, 10.061, 9.992, 10.043], [10.038, 10.088, 9.995, 10.058], [10.049, 10.176, 10.041, 10.166], [10.17, 10.201, 10.105, 10.147], [10.152999999999999, 10.167, 10.096, 10.125], [10.127, 10.157, 10.077, 10.101], [10.107000000000001, 10.172, 10.071, 10.172], [10.172, 10.198, 10.073, 10.113999999999999], [10.113999999999999, 10.169, 10.113, 10.118], [10.128, 10.196, 10.12, 10.129], [10.129, 10.151, 10.054, 10.061], [10.06, 10.067, 9.923, 9.941], [9.941, 10.097000000000001, 9.941, 10.083], [10.073, 10.191, 9.996, 10.175], [10.182, 10.192, 10.102, 10.161], [10.169, 10.179, 10.037, 10.039], [10.039, 10.075, 10.026, 10.072000000000001], [10.08, 10.082, 10.004, 10.058], [10.058, 10.138, 10.052999999999999, 10.097999999999999], [10.094, 10.119, 9.933, 9.98], [9.984, 10.065, 9.899, 10.061], [10.067, 10.166, 10.037, 10.1], [10.1, 10.147, 10.083, 10.113999999999999], [10.113, 10.119, 9.898, 9.902000000000001], [9.902999999999999, 9.927, 9.664, 9.682], [9.689, 9.755, 9.651, 9.711], [9.707, 9.748, 9.674, 9.686], [9.679, 9.72, 9.565, 9.681000000000001], [9.669, 9.788, 9.613999999999999, 9.624], [9.625, 9.706, 9.568999999999999, 9.622], [9.607999999999999, 9.66, 9.504, 9.567], [9.574, 9.62, 9.509, 9.523], [9.523, 9.6, 9.427, 9.47], [9.47, 9.494, 9.236, 9.249], [9.244, 9.332, 9.183, 9.282], [9.287, 9.324, 9.231, 9.244], [9.242, 9.398, 9.23, 9.302], [9.295, 9.377, 9.267999999999999, 9.274], [9.277000000000001, 9.429, 9.255, 9.402999999999999], [9.399, 9.426, 9.262, 9.281], [9.28, 9.366, 9.248, 9.306000000000001], [9.317, 9.389, 9.312999999999999, 9.355], [9.355, 9.355, 9.225, 9.272], [9.272, 9.383, 9.245, 9.355], [9.351, 9.391, 9.302999999999999, 9.34], [9.34, 9.375, 9.279, 9.312999999999999], [9.31, 9.366, 9.275, 9.298], [9.298, 9.415, 9.293, 9.377], [9.386000000000001, 9.481, 9.345, 9.476], [9.476, 9.494, 9.394, 9.411], [9.407, 9.455, 9.379, 9.402000000000001], [9.398, 9.46, 9.374, 9.446], [9.441, 9.464, 9.382, 9.443], [9.433, 9.456, 9.36, 9.363999999999999], [9.361, 9.38, 9.231, 9.231], [9.232999999999999, 9.264, 9.165, 9.183], [9.184, 9.267999999999999, 9.181000000000001, 9.219], [9.215, 9.282, 9.124, 9.13], [9.123, 9.198, 9.056000000000001, 9.056000000000001], [9.056000000000001, 9.132, 8.93, 9.035], [9.041, 9.092, 8.96, 8.979], [8.972000000000001, 9.133, 8.972000000000001, 9.12], [9.113999999999999, 9.166, 9.083, 9.157], [9.157, 9.2, 9.109, 9.193], [9.19, 9.28, 9.186, 9.204], [9.214, 9.232999999999999, 9.112, 9.135], [9.132, 9.272, 9.13, 9.23], [9.229, 9.285, 9.183, 9.245], [9.245, 9.329, 9.228, 9.27], [9.27, 9.301, 9.238999999999999, 9.262], [9.252, 9.307, 9.248, 9.289], [9.29, 9.363999999999999, 9.289, 9.329], [9.327, 9.372, 9.317, 9.346], [9.357999999999999, 9.359, 9.198, 9.202], [9.202, 9.23, 9.127, 9.163], [9.161, 9.244, 9.152999999999999, 9.199], [9.196, 9.323, 9.118, 9.276], [9.29, 9.34, 9.169, 9.32], [9.329, 9.368, 9.247, 9.328], [9.322000000000001, 9.357000000000001, 9.289, 9.352], [9.357000000000001, 9.435, 9.329, 9.427], [9.431000000000001, 9.656, 9.4, 9.648], [9.657, 9.658999999999999, 9.488999999999999, 9.536], [9.541, 9.568999999999999, 9.501, 9.568999999999999], [9.565, 9.642999999999999, 9.508, 9.526], [9.525, 9.548, 9.486, 9.519], [9.52, 9.544, 9.443, 9.474], [9.472000000000001, 9.496, 9.415, 9.421], [9.421, 9.439, 9.379, 9.395], [9.388, 9.482999999999999, 9.387, 9.475], [9.471, 9.511000000000001, 9.436, 9.48], [9.482999999999999, 9.492, 9.414, 9.465], [9.47, 9.506, 9.442, 9.494], [9.488999999999999, 9.558, 9.453, 9.558], [9.557, 9.593, 9.508, 9.587], [9.591000000000001, 9.616, 9.548, 9.575], [9.581, 9.613, 9.545, 9.556000000000001], [9.557, 9.669, 9.557, 9.576], [9.58, 9.592, 9.531, 9.572000000000001], [9.579, 9.655, 9.572000000000001, 9.632], [9.627, 9.743, 9.627, 9.684], [9.684, 9.741, 9.654, 9.697000000000001], [9.689, 9.715, 9.642000000000001, 9.646], [9.646, 9.677, 9.618, 9.64], [9.642000000000001, 9.657, 9.564, 9.621], [9.63, 9.687999999999999, 9.613999999999999, 9.631], [9.625, 9.631, 9.547, 9.555], [9.56, 9.619, 9.558, 9.584], [9.577, 9.646, 9.577, 9.588], [9.588, 9.62, 9.502, 9.527999999999999], [9.53, 9.558, 9.446, 9.446], [9.455, 9.482999999999999, 9.38, 9.394], [9.402000000000001, 9.448, 9.306000000000001, 9.391], [9.383, 9.42, 9.355, 9.399], [9.408, 9.485, 9.408, 9.485], [9.482999999999999, 9.527999999999999, 9.425, 9.443], [9.449, 9.55, 9.406, 9.52], [9.527999999999999, 9.554, 9.392999999999999, 9.429], [9.432, 9.433, 9.247, 9.267000000000001], [9.264, 9.27, 9.187999999999999, 9.219], [9.224, 9.293, 9.181000000000001, 9.199], [9.2, 9.218, 9.135, 9.183], [9.187999999999999, 9.261000000000001, 9.187999999999999, 9.218], [9.222999999999999, 9.327, 9.216000000000001, 9.296], [9.296, 9.455, 9.294, 9.437000000000001], [9.436, 9.48, 9.347999999999999, 9.404], [9.414, 9.537, 9.384, 9.517999999999999], [9.512, 9.599, 9.465, 9.538], [9.535, 9.544, 9.452, 9.472999999999999], [9.48, 9.594, 9.48, 9.588], [9.586, 9.638, 9.557, 9.571], [9.571, 9.636000000000001, 9.558, 9.575], [9.579, 9.706, 9.571, 9.706], [9.708, 9.945, 9.704, 9.945], [9.945, 10.046, 9.823, 10.036], [10.031, 10.041, 9.92, 9.978], [9.974, 9.979, 9.869, 9.894], [9.892000000000001, 10.0, 9.876, 9.969], [9.969, 10.042, 9.925, 10.017999999999999], [10.017999999999999, 10.065, 9.967, 10.02], [10.013, 10.037, 9.992, 10.012], [10.007, 10.11, 9.997, 10.106], [10.093, 10.146, 10.061, 10.14], [10.133, 10.167, 10.1, 10.132], [10.14, 10.157, 10.094, 10.136000000000001], [10.136000000000001, 10.344000000000001, 10.109, 10.177], [10.177, 10.187000000000001, 10.084, 10.109], [10.112, 10.132, 10.073, 10.12], [10.118, 10.164, 10.011000000000001, 10.03], [10.029, 10.051, 9.954, 9.962], [9.966000000000001, 10.13, 9.96, 10.089], [10.086, 10.128, 10.047, 10.068999999999999], [10.068, 10.14, 10.046, 10.049], [10.057, 10.085, 10.027999999999999, 10.043], [10.045, 10.101, 10.033999999999999, 10.076], [10.081, 10.216000000000001, 10.075, 10.208], [10.222000000000001, 10.264000000000001, 10.148, 10.229], [10.237, 10.308, 10.22, 10.287], [10.293, 10.304, 10.225, 10.23], [10.231, 10.360999999999999, 10.231, 10.357000000000001], [10.359000000000002, 10.4, 10.287, 10.341], [10.341, 10.478, 10.296, 10.369000000000002], [10.37, 10.514000000000001, 10.36, 10.437999999999999], [10.437000000000001, 10.482999999999999, 10.407, 10.440999999999999], [10.442, 10.565, 10.333, 10.502], [10.503, 10.509, 10.418, 10.449000000000002], [10.456, 10.456, 10.339, 10.385], [10.385, 10.452, 10.341, 10.353], [10.345999999999998, 10.415999999999999, 10.333, 10.334000000000001], [10.338, 10.378, 10.328, 10.359000000000002], [10.363, 10.415999999999999, 10.337, 10.373], [10.372, 10.38, 10.280999999999999, 10.300999999999998], [10.309000000000001, 10.458, 10.3, 10.429], [10.433, 10.562999999999999, 10.421, 10.46], [10.458, 10.47, 10.402000000000001, 10.442], [10.440999999999999, 10.55, 10.43, 10.525], [10.527000000000001, 10.538, 10.465, 10.498], [10.498, 10.595999999999998, 10.498, 10.575], [10.575, 10.575, 10.445, 10.464], [10.465, 10.573, 10.408, 10.556], [10.558, 10.595, 10.475999999999999, 10.585999999999999], [10.587, 10.652000000000001, 10.565, 10.583], [10.583, 10.700999999999999, 10.583, 10.593], [10.595999999999998, 10.620999999999999, 10.446, 10.446], [10.445, 10.472999999999999, 10.285, 10.327], [10.337, 10.4, 10.294, 10.312999999999999], [10.307, 10.352, 10.259, 10.35], [10.349, 10.366, 10.300999999999998, 10.332], [10.344000000000001, 10.544, 10.282, 10.513], [10.503, 10.538, 10.331, 10.379000000000001], [10.384, 10.402000000000001, 10.261, 10.319], [10.317, 10.360999999999999, 10.121, 10.14], [10.14, 10.287, 10.058, 10.124], [10.122, 10.219, 10.078, 10.082], [10.084, 10.213, 10.08, 10.213], [10.214, 10.312000000000001, 10.156, 10.215], [10.219, 10.262, 10.17, 10.173], [10.177, 10.213, 10.11, 10.149], [10.142000000000001, 10.158, 10.089, 10.121], [10.127, 10.191, 10.117, 10.156], [10.152999999999999, 10.173, 10.073, 10.093], [10.095, 10.126, 10.08, 10.113999999999999], [10.115, 10.205, 10.115, 10.197000000000001], [10.197000000000001, 10.228, 10.175, 10.219], [10.224, 10.224, 10.18, 10.208], [10.2, 10.334000000000001, 10.184, 10.274000000000001], [10.270999999999999, 10.312000000000001, 10.248, 10.3], [10.3, 10.380999999999998, 10.293, 10.380999999999998], [10.385, 10.409, 10.352, 10.409], [10.408, 10.427999999999999, 10.294, 10.318], [10.309000000000001, 10.367, 10.293, 10.355], [10.353, 10.481, 10.353, 10.481], [10.475999999999999, 10.482999999999999, 10.337, 10.440999999999999], [10.440999999999999, 10.514000000000001, 10.405, 10.5], [10.495, 10.545, 10.434000000000001, 10.462], [10.472000000000001, 10.474, 10.373, 10.39], [10.385, 10.435, 10.333, 10.343], [10.34, 10.344000000000001, 10.279000000000002, 10.315], [10.314, 10.405, 10.224, 10.342], [10.338, 10.344000000000001, 10.263, 10.31], [10.305, 10.333, 10.229, 10.252], [10.249, 10.335, 10.249, 10.280999999999999], [10.27, 10.27, 10.192, 10.235], [10.235, 10.247, 10.181000000000001, 10.186], [10.189, 10.374, 10.177999999999999, 10.331], [10.339, 10.374, 10.224, 10.245], [10.245999999999999, 10.309000000000001, 10.212, 10.241], [10.234, 10.311, 10.234, 10.269], [10.267000000000001, 10.452, 10.254000000000001, 10.412], [10.409, 10.507, 10.383, 10.481], [10.472999999999999, 10.503, 10.437000000000001, 10.485], [10.485, 10.512, 10.418, 10.458], [10.464, 10.472000000000001, 10.347999999999999, 10.367], [10.347999999999999, 10.387, 10.3, 10.370999999999999], [10.366, 10.392000000000001, 10.295, 10.339], [10.35, 10.356, 10.280999999999999, 10.318], [10.314, 10.485, 10.29, 10.469000000000001], [10.48, 10.512, 10.39, 10.487], [10.49, 10.546, 10.436, 10.515999999999998], [10.52, 10.558, 10.445, 10.55], [10.549000000000001, 10.629000000000001, 10.504000000000001, 10.61], [10.62, 10.728, 10.572000000000001, 10.725], [10.717, 10.735, 10.671, 10.715], [10.715, 10.715, 10.56, 10.605], [10.604000000000001, 10.669, 10.56, 10.664000000000001], [10.669, 10.77, 10.644, 10.77], [10.77, 11.094000000000001, 10.74, 11.015999999999998], [11.017000000000001, 11.2, 11.0, 11.085], [11.081, 11.081, 10.863, 10.933], [10.927999999999999, 10.992, 10.889000000000001, 10.898], [10.895, 10.915, 10.654000000000002, 10.695], [10.693, 10.78, 10.639000000000001, 10.720999999999998], [10.72, 10.822000000000001, 10.692, 10.776], [10.777999999999999, 10.790999999999999, 10.713, 10.745], [10.75, 10.877, 10.7, 10.865], [10.864, 10.885, 10.764000000000001, 10.767000000000001], [10.765, 10.835999999999999, 10.716, 10.738], [10.74, 10.777999999999999, 10.707, 10.734000000000002], [10.742, 10.868, 10.741, 10.815], [10.815, 10.837, 10.769, 10.823], [10.815, 10.828, 10.755, 10.757], [10.757, 10.79, 10.588, 10.603], [10.610999999999999, 10.837, 10.603, 10.834000000000001], [10.837, 11.038, 10.802, 10.972999999999999], [10.97, 11.072000000000001, 10.933, 11.020999999999999], [11.025, 11.027999999999999, 10.907, 10.98], [10.985999999999999, 11.026, 10.915, 10.97], [10.982999999999999, 10.982999999999999, 10.870999999999999, 10.954], [10.95, 10.989, 10.88, 10.978], [10.982999999999999, 11.12, 10.967, 11.095999999999998], [11.095, 11.095, 10.943, 11.055], [11.052, 11.085, 11.019, 11.07], [11.07, 11.2, 11.064, 11.193], [11.184000000000001, 11.194, 11.084000000000001, 11.149000000000001], [11.14, 11.24, 11.136, 11.219000000000001], [11.23, 11.277999999999999, 11.181, 11.253], [11.26, 11.335, 11.115, 11.137], [11.138, 11.163, 11.095, 11.152999999999999], [11.148, 11.347999999999999, 11.142999999999999, 11.338], [11.337, 11.419, 11.265, 11.404000000000002], [11.402000000000001, 11.425, 11.298, 11.386], [11.380999999999998, 11.411, 11.308, 11.370999999999999], [11.370999999999999, 11.561, 11.341, 11.555], [11.554, 11.571, 11.472999999999999, 11.550999999999998], [11.549000000000001, 11.618, 11.448, 11.61], [11.613, 11.62, 11.49, 11.49], [11.494000000000002, 11.5, 11.389000000000001, 11.447000000000001], [11.445, 11.548, 11.437999999999999, 11.459000000000001], [11.463, 11.520999999999999, 11.427, 11.452], [11.445, 11.5, 11.425999999999998, 11.457], [11.457, 11.548, 11.421, 11.501], [11.482999999999999, 11.547, 11.44, 11.493], [11.494000000000002, 11.55, 11.4, 11.4], [11.401, 11.463, 11.357999999999999, 11.405999999999999], [11.415, 11.446, 11.347999999999999, 11.392000000000001], [11.397, 11.445, 11.352, 11.354000000000001], [11.356, 11.425999999999998, 11.354000000000001, 11.407], [11.411, 11.431, 11.385, 11.422], [11.43, 11.460999999999999, 11.384, 11.447000000000001], [11.442, 11.472000000000001, 11.205, 11.205], [11.219000000000001, 11.318, 11.219000000000001, 11.28], [11.277999999999999, 11.284, 11.175999999999998, 11.186], [11.195, 11.288, 11.187000000000001, 11.279000000000002], [11.286, 11.286, 11.210999999999999, 11.218], [11.207, 11.3, 11.175, 11.274000000000001], [11.274000000000001, 11.354000000000001, 11.274000000000001, 11.329], [11.334000000000001, 11.395999999999999, 11.296, 11.354000000000001], [11.345999999999998, 11.388, 11.314, 11.377], [11.378, 11.519, 11.29, 11.295], [11.290999999999999, 11.419, 11.276, 11.300999999999998], [11.289000000000001, 11.338, 11.252, 11.276], [11.283, 11.378, 11.276, 11.323], [11.322000000000001, 11.462, 11.317, 11.417], [11.415, 11.495, 11.375, 11.495], [11.492, 11.549000000000001, 11.395999999999999, 11.402000000000001], [11.397, 11.472000000000001, 11.370999999999999, 11.469000000000001], [11.469000000000001, 11.549000000000001, 11.43, 11.534], [11.54, 11.540999999999999, 11.431, 11.437000000000001], [11.437000000000001, 11.47, 11.407, 11.437000000000001], [11.437000000000001, 11.437000000000001, 11.359000000000002, 11.368], [11.369000000000002, 11.38, 11.280999999999999, 11.309000000000001], [11.312000000000001, 11.329, 11.237, 11.28], [11.277999999999999, 11.31, 11.202, 11.254000000000001], [11.254000000000001, 11.254000000000001, 11.136, 11.174000000000001], [11.169, 11.259, 11.113, 11.249], [11.257, 11.329, 11.23, 11.265], [11.265, 11.356, 11.264000000000001, 11.352], [11.353, 11.356, 11.277000000000001, 11.33], [11.332, 11.433, 11.312999999999999, 11.421], [11.417, 11.422, 11.31, 11.402000000000001], [11.395999999999999, 11.477, 11.367, 11.379000000000001], [11.377, 11.445, 11.360999999999999, 11.392999999999999], [11.386, 11.412, 11.247, 11.26], [11.255, 11.335, 11.162, 11.193], [11.187999999999999, 11.235, 11.152999999999999, 11.184000000000001], [11.187000000000001, 11.228, 11.155, 11.214], [11.212, 11.224, 11.057, 11.078], [11.078, 11.137, 11.030999999999999, 11.037], [11.048, 11.11, 11.029000000000002, 11.09], [11.085, 11.168, 11.082, 11.128], [11.128, 11.130999999999998, 11.024000000000001, 11.058], [11.075, 11.088, 10.958, 11.050999999999998], [11.050999999999998, 11.187999999999999, 11.050999999999998, 11.162], [11.147, 11.208, 11.082, 11.142999999999999], [11.142000000000001, 11.315, 11.083, 11.22], [11.229000000000001, 11.265999999999998, 11.172, 11.192], [11.185, 11.185, 11.105, 11.15], [11.144, 11.145, 11.052, 11.08], [11.077, 11.087, 10.960999999999999, 11.020999999999999], [11.017000000000001, 11.08, 10.995999999999999, 11.034], [11.026, 11.132, 11.014000000000001, 11.11], [11.106, 11.123, 11.034, 11.102], [11.105, 11.222000000000001, 11.097000000000001, 11.193], [11.182, 11.254000000000001, 11.18, 11.219000000000001], [11.227, 11.227, 11.147, 11.186], [11.186, 11.187999999999999, 11.06, 11.06], [11.057, 11.113, 10.969000000000001, 10.969000000000001], [10.969000000000001, 11.087, 10.958, 11.004000000000001], [11.004000000000001, 11.089, 10.999, 11.04], [11.033, 11.117, 11.033, 11.077], [11.085999999999999, 11.127, 11.067, 11.105], [11.105, 11.187000000000001, 11.09, 11.130999999999998], [11.137, 11.187999999999999, 11.117, 11.152000000000001], [11.162, 11.307, 11.155999999999999, 11.267000000000001], [11.258, 11.363, 11.222999999999999, 11.294], [11.288, 11.295, 11.225, 11.253], [11.257, 11.275, 11.144, 11.174000000000001], [11.185, 11.232999999999999, 11.173, 11.193], [11.197000000000001, 11.207, 11.075999999999999, 11.104000000000001], [11.095, 11.155, 11.091, 11.114], [11.114, 11.19, 11.112, 11.15], [11.15, 11.15, 11.011, 11.023], [11.027000000000001, 11.035, 10.784, 10.819], [10.82, 10.849, 10.695, 10.716], [10.710999999999999, 10.802999999999999, 10.677, 10.731], [10.742, 10.815999999999999, 10.716, 10.754000000000001], [10.755, 10.804, 10.716, 10.716], [10.716, 10.780999999999999, 10.716, 10.735999999999999], [10.744000000000002, 10.807, 10.696, 10.763], [10.759, 10.874, 10.725999999999999, 10.825], [10.815999999999999, 10.880999999999998, 10.79, 10.869000000000002], [10.870999999999999, 10.981, 10.82, 10.959000000000001], [10.955, 10.970999999999998, 10.852, 10.889000000000001], [10.880999999999998, 10.97, 10.88, 10.899000000000001], [10.894, 10.972000000000001, 10.853, 10.894], [10.887, 10.901, 10.832, 10.870999999999999], [10.87, 10.918, 10.845, 10.902999999999999], [10.905, 10.931, 10.873, 10.919], [10.915999999999999, 11.003, 10.860999999999999, 11.003], [11.004000000000001, 11.071, 10.991, 11.012], [11.015999999999998, 11.056, 10.978, 11.026], [11.029000000000002, 11.104000000000001, 11.029000000000002, 11.062000000000001], [11.069, 11.105, 11.004000000000001, 11.09], [11.09, 11.126, 11.050999999999998, 11.100999999999999], [11.094000000000001, 11.14, 11.030999999999999, 11.14], [11.138, 11.15, 11.094000000000001, 11.107000000000001], [11.110999999999999, 11.272, 11.097000000000001, 11.242], [11.242, 11.414000000000001, 11.219000000000001, 11.394], [11.402000000000001, 11.415999999999999, 11.279000000000002, 11.292], [11.296, 11.312999999999999, 11.235, 11.272], [11.282, 11.332, 11.216, 11.32], [11.319, 11.407, 11.306, 11.357000000000001], [11.349, 11.436, 11.344000000000001, 11.431], [11.437000000000001, 11.467, 11.414000000000001, 11.442], [11.449000000000002, 11.479000000000001, 11.328, 11.347000000000001], [11.352, 11.424000000000001, 11.352, 11.392999999999999], [11.405999999999999, 11.474, 11.377, 11.385], [11.389000000000001, 11.417, 11.304, 11.345999999999998], [11.347999999999999, 11.392999999999999, 11.251, 11.296], [11.290999999999999, 11.370999999999999, 11.284, 11.315999999999999], [11.318, 11.4, 11.295, 11.375], [11.382, 11.44, 11.368, 11.392999999999999], [11.392999999999999, 11.424000000000001, 11.360999999999999, 11.389000000000001], [11.386, 11.46, 11.376, 11.459000000000001], [11.459000000000001, 11.46, 11.387, 11.404000000000002], [11.413, 11.46, 11.405, 11.447000000000001], [11.447000000000001, 11.459000000000001, 11.342, 11.350999999999999], [11.354000000000001, 11.395, 11.312999999999999, 11.354000000000001], [11.362, 11.398, 11.322000000000001, 11.338], [11.338, 11.437000000000001, 11.337, 11.421], [11.424000000000001, 11.445, 11.333, 11.385], [11.392999999999999, 11.392999999999999, 11.290999999999999, 11.3], [11.308, 11.34, 11.270999999999999, 11.332], [11.332, 11.335, 11.265999999999998, 11.272], [11.277999999999999, 11.323, 11.265999999999998, 11.307], [11.305, 11.315999999999999, 11.147, 11.206], [11.206, 11.267999999999999, 11.165, 11.22], [11.23, 11.32, 11.23, 11.302], [11.302, 11.321, 11.265999999999998, 11.308], [11.312999999999999, 11.32, 11.26, 11.274000000000001], [11.276, 11.312999999999999, 11.220999999999998, 11.287], [11.285, 11.350999999999999, 11.275, 11.343], [11.345999999999998, 11.418, 11.338, 11.413], [11.418, 11.418, 11.339, 11.354000000000001], [11.357999999999999, 11.36, 11.287, 11.307], [11.302, 11.344000000000001, 11.297, 11.309000000000001], [11.307, 11.341, 11.192, 11.200999999999999], [11.203, 11.296, 11.200999999999999, 11.235], [11.242, 11.293, 11.235999999999999, 11.24], [11.243, 11.264000000000001, 11.195, 11.196], [11.196, 11.245, 11.19, 11.218], [11.214, 11.287, 11.21, 11.273], [11.27, 11.335, 11.243, 11.321], [11.317, 11.354000000000001, 11.293, 11.308], [11.302, 11.321, 11.265, 11.287], [11.286, 11.377, 11.286, 11.363], [11.364, 11.394, 11.344000000000001, 11.384], [11.388, 11.388, 11.323, 11.332], [11.345, 11.394, 11.306, 11.382], [11.38, 11.388, 11.29, 11.292], [11.290999999999999, 11.364, 11.251, 11.323], [11.325999999999999, 11.394, 11.300999999999998, 11.376], [11.38, 11.558, 11.318, 11.539000000000001], [11.538, 11.719000000000001, 11.538, 11.616], [11.616, 11.62, 11.474, 11.503], [11.498, 11.544, 11.460999999999999, 11.511], [11.509, 11.625, 11.477, 11.604000000000001], [11.604000000000001, 11.673, 11.49, 11.585999999999999], [11.585999999999999, 11.59, 11.53, 11.565999999999999], [11.565999999999999, 11.567, 11.467, 11.502], [11.498, 11.505, 11.413, 11.43], [11.424000000000001, 11.424000000000001, 11.369000000000002, 11.421], [11.421, 11.5, 11.402999999999999, 11.481], [11.475, 11.5, 11.446, 11.481], [11.481, 11.527000000000001, 11.437999999999999, 11.514000000000001], [11.519, 11.595999999999998, 11.498, 11.562000000000001], [11.55, 11.565999999999999, 11.475999999999999, 11.535], [11.544, 11.544, 11.460999999999999, 11.477], [11.482000000000001, 11.559000000000001, 11.475, 11.557], [11.557, 11.682, 11.546, 11.655999999999999], [11.654000000000002, 11.709000000000001, 11.575999999999999, 11.694], [11.687999999999999, 11.767000000000001, 11.669, 11.755], [11.76, 11.761, 11.683, 11.702], [11.703, 11.759, 11.62, 11.640999999999998], [11.640999999999998, 11.735999999999999, 11.640999999999998, 11.683], [11.677, 11.728, 11.67, 11.673], [11.675999999999998, 11.708, 11.582, 11.662], [11.665, 11.694, 11.651, 11.674000000000001], [11.674000000000001, 11.714, 11.614, 11.633], [11.635, 11.665, 11.61, 11.652999999999999], [11.638, 11.647, 11.61, 11.644], [11.638, 11.638, 11.455, 11.5], [11.489, 11.5, 11.386, 11.395999999999999], [11.395999999999999, 11.395999999999999, 11.262, 11.292], [11.292, 11.347999999999999, 11.270999999999999, 11.296], [11.296, 11.296, 11.059000000000001, 11.159], [11.159, 11.214, 11.102, 11.140999999999998], [11.142999999999999, 11.249, 11.133, 11.219000000000001], [11.231, 11.242, 11.148, 11.213], [11.209000000000001, 11.235, 11.174000000000001, 11.206], [11.206, 11.296, 11.19, 11.283], [11.282, 11.362, 11.274000000000001, 11.299000000000001], [11.29, 11.334000000000001, 11.239, 11.323], [11.328, 11.364, 11.280999999999999, 11.297], [11.294, 11.367, 11.255, 11.296], [11.287, 11.362, 11.273, 11.343], [11.35, 11.368, 11.279000000000002, 11.365], [11.359000000000002, 11.447000000000001, 11.357999999999999, 11.442], [11.437999999999999, 11.449000000000002, 11.377, 11.435], [11.419, 11.465, 11.395, 11.425999999999998], [11.427999999999999, 11.539000000000001, 11.38, 11.524000000000001], [11.525, 11.620999999999999, 11.469000000000001, 11.543], [11.546, 11.562000000000001, 11.284, 11.314], [11.308, 11.308, 11.21, 11.286], [11.273, 11.363, 11.181, 11.353], [11.354000000000001, 11.354000000000001, 11.172, 11.197000000000001], [11.198, 11.238, 11.144, 11.224], [11.217, 11.234000000000002, 11.115, 11.133], [11.13, 11.214, 11.100999999999999, 11.187999999999999], [11.194, 11.235, 11.18, 11.202], [11.208, 11.253, 11.208, 11.241], [11.243, 11.283, 11.232999999999999, 11.253], [11.259, 11.308, 11.253, 11.305], [11.304, 11.342, 11.26, 11.327], [11.327, 11.332, 11.274000000000001, 11.290999999999999], [11.285, 11.315, 11.205, 11.244000000000002], [11.249, 11.321, 11.24, 11.267000000000001], [11.245999999999999, 11.341, 11.216, 11.258], [11.259, 11.447000000000001, 11.259, 11.415], [11.4, 11.4, 11.343, 11.360999999999999], [11.364, 11.401, 11.335, 11.337], [11.333, 11.394, 11.273, 11.300999999999998], [11.307, 11.39, 11.287, 11.354000000000001], [11.356, 11.360999999999999, 11.3, 11.34], [11.335, 11.367, 11.306, 11.366], [11.372, 11.408, 11.332, 11.333], [11.335999999999999, 11.374, 11.322000000000001, 11.353], [11.356, 11.415999999999999, 11.318, 11.367], [11.366, 11.436, 11.366, 11.436], [11.437000000000001, 11.448, 11.353, 11.44], [11.436, 11.513, 11.427999999999999, 11.511], [11.513, 11.517000000000001, 11.44, 11.47], [11.475, 11.499, 11.435, 11.460999999999999], [11.454, 11.49, 11.415999999999999, 11.46], [11.46, 11.470999999999998, 11.383, 11.432], [11.427999999999999, 11.431, 11.349, 11.392999999999999], [11.394, 11.397, 11.307, 11.319], [11.318, 11.395, 11.282, 11.345], [11.338, 11.392000000000001, 11.338, 11.369000000000002], [11.37, 11.397, 11.35, 11.377], [11.379000000000001, 11.459000000000001, 11.359000000000002, 11.444], [11.445, 11.465, 11.383, 11.413], [11.419, 11.424000000000001, 11.305, 11.311], [11.308, 11.312000000000001, 11.21, 11.217], [11.21, 11.289000000000001, 11.207, 11.287], [11.296, 11.3, 11.193, 11.193], [11.202, 11.245, 11.159, 11.23], [11.239, 11.289000000000001, 11.181, 11.210999999999999], [11.212, 11.212, 11.154000000000002, 11.189], [11.187999999999999, 11.222999999999999, 11.14, 11.175999999999998], [11.185, 11.293, 11.181, 11.189], [11.189, 11.322000000000001, 11.183, 11.295], [11.295, 11.322000000000001, 11.190999999999999, 11.208], [11.213, 11.231, 11.099, 11.133], [11.130999999999998, 11.267999999999999, 11.084000000000001, 11.193], [11.193, 11.284, 11.186, 11.219000000000001], [11.213, 11.247, 11.11, 11.11], [11.11, 11.154000000000002, 10.967, 11.001], [11.0, 11.08, 10.993, 11.046], [11.046, 11.138, 11.015, 11.109000000000002], [11.097000000000001, 11.189, 11.079, 11.120999999999999], [11.120999999999999, 11.120999999999999, 11.032, 11.073], [11.052, 11.130999999999998, 11.05, 11.120999999999999], [11.130999999999998, 11.192, 11.12, 11.128], [11.130999999999998, 11.139000000000001, 11.082, 11.084000000000001], [11.085, 11.174000000000001, 11.084000000000001, 11.114], [11.114, 11.179, 11.091, 11.093], [11.095999999999998, 11.133, 11.052999999999999, 11.122], [11.120999999999999, 11.18, 11.082, 11.165], [11.164000000000001, 11.244000000000002, 11.125, 11.244000000000002], [11.241, 11.241, 11.18, 11.217], [11.225, 11.242, 11.204, 11.242], [11.235, 11.282, 11.227, 11.277000000000001], [11.28, 11.286, 11.244000000000002, 11.272], [11.267999999999999, 11.282, 11.261, 11.270999999999999], [11.274000000000001, 11.289000000000001, 11.253, 11.265999999999998], [11.273, 11.321, 11.194, 11.205], [11.206, 11.286, 11.205, 11.277000000000001], [11.277000000000001, 11.34, 11.277000000000001, 11.335], [11.337, 11.357999999999999, 11.276, 11.293], [11.277000000000001, 11.277000000000001, 11.179, 11.249], [11.252, 11.293, 11.238, 11.258], [11.26, 11.286, 11.249, 11.277999999999999], [11.280999999999999, 11.319, 11.245, 11.29], [11.286, 11.325, 11.28, 11.290999999999999], [11.286, 11.364, 11.275, 11.36], [11.362, 11.365, 11.318, 11.354000000000001], [11.357000000000001, 11.375, 11.304, 11.354000000000001], [11.349, 11.349, 11.277000000000001, 11.311], [11.307, 11.307, 11.216, 11.252], [11.258, 11.349, 11.253, 11.289000000000001], [11.292, 11.34, 11.279000000000002, 11.34], [11.338, 11.379000000000001, 11.290999999999999, 11.302999999999999], [11.302999999999999, 11.399000000000001, 11.294, 11.395999999999999], [11.397, 11.404000000000002, 11.347000000000001, 11.392000000000001], [11.392999999999999, 11.457, 11.382, 11.446], [11.442, 11.537, 11.384, 11.537], [11.53, 11.612, 11.502, 11.58], [11.584000000000001, 11.668, 11.565, 11.644], [11.647, 11.789000000000001, 11.629000000000001, 11.710999999999999], [11.704, 11.939, 11.689, 11.829], [11.825999999999999, 11.97, 11.786, 11.914000000000001], [11.905, 12.147, 11.88, 12.084000000000001], [12.084000000000001, 12.1, 11.991, 12.075999999999999], [12.078, 12.097999999999999, 11.876, 11.982000000000001], [11.979000000000001, 12.058, 11.95, 12.02], [12.014000000000001, 12.088, 11.993, 12.065999999999999], [12.062000000000001, 12.068, 11.945, 11.963], [11.959000000000001, 12.05, 11.939, 12.011], [12.015, 12.067, 11.988, 12.052], [12.064, 12.095999999999998, 12.011, 12.054], [12.05, 12.162, 12.033, 12.138], [12.134, 12.21, 12.100999999999999, 12.135], [12.136, 12.215, 12.075, 12.189], [12.168, 12.22, 12.133, 12.189], [12.192, 12.263, 12.173, 12.186], [12.186, 12.21, 12.013, 12.050999999999998], [12.059000000000001, 12.165, 12.044, 12.164000000000001], [12.164000000000001, 12.187999999999999, 12.109000000000002, 12.152000000000001], [12.16, 12.26, 12.157, 12.255999999999998], [12.255, 12.399000000000001, 12.218, 12.380999999999998], [12.378, 12.449000000000002, 12.296, 12.397], [12.405, 12.427, 12.228, 12.264000000000001], [12.267999999999999, 12.317, 12.155999999999999, 12.162], [12.159, 12.258, 12.159, 12.247], [12.257, 12.309000000000001, 12.212, 12.225999999999999], [12.244000000000002, 12.251, 11.913, 11.988], [11.985999999999999, 12.077, 11.948, 12.015], [12.017999999999999, 12.067, 11.81, 11.859000000000002], [11.865, 11.9, 11.784, 11.867], [11.870999999999999, 11.914000000000001, 11.808, 11.880999999999998], [11.872, 11.956, 11.857000000000001, 11.94], [11.945, 12.003, 11.91, 11.942], [11.944, 11.995999999999999, 11.936, 11.97], [11.97, 12.001, 11.917, 11.93], [11.923, 11.964, 11.913, 11.949000000000002], [11.950999999999999, 12.042, 11.946, 12.023], [12.020999999999999, 12.044, 11.975999999999999, 12.020999999999999], [12.019, 12.16, 11.981, 12.155], [12.154000000000002, 12.19, 12.081, 12.163], [12.149000000000001, 12.149000000000001, 12.055, 12.100999999999999], [12.100999999999999, 12.106, 11.98, 12.05], [12.04, 12.130999999999998, 12.024000000000001, 12.11], [12.106, 12.142999999999999, 12.056, 12.14], [12.142999999999999, 12.19, 12.033, 12.136], [12.133, 12.258, 12.128, 12.15], [12.142000000000001, 12.219000000000001, 12.124, 12.187000000000001], [12.195, 12.2, 12.13, 12.172], [12.17, 12.175, 11.843, 11.857999999999999], [11.862, 12.2, 11.847999999999999, 11.978], [11.982999999999999, 11.995, 11.87, 11.94], [11.937999999999999, 11.969000000000001, 11.911, 11.950999999999999], [11.953, 12.083, 11.939, 12.065], [12.064, 12.16, 12.062999999999999, 12.126], [12.124, 12.15, 11.975, 12.005999999999998], [12.01, 12.084000000000001, 12.005999999999998, 12.04], [12.04, 12.139000000000001, 12.01, 12.12], [12.117, 12.129000000000001, 11.962, 12.045], [12.043, 12.145, 12.043, 12.130999999999998], [12.124, 12.177999999999999, 12.095999999999998, 12.110999999999999], [12.107999999999999, 12.209000000000001, 12.107000000000001, 12.13], [12.13, 12.198, 12.032, 12.198], [12.199000000000002, 12.199000000000002, 12.097999999999999, 12.155999999999999], [12.137, 12.165999999999999, 12.072000000000001, 12.126], [12.12, 12.13, 12.054, 12.095], [12.097000000000001, 12.228, 12.083, 12.218], [12.212, 12.283, 12.149000000000001, 12.186], [12.187000000000001, 12.187000000000001, 12.107000000000001, 12.125], [12.12, 12.145, 12.056, 12.069], [12.065, 12.122, 12.03, 12.107000000000001], [12.097000000000001, 12.174000000000001, 12.085, 12.165999999999999], [12.155, 12.206, 12.148, 12.155999999999999], [12.148, 12.294, 12.12, 12.258], [12.255, 12.32, 12.22, 12.252], [12.251, 12.261, 12.081, 12.095999999999998], [12.087, 12.092, 11.912, 11.924000000000001], [11.912, 11.958, 11.595999999999998, 11.613], [11.616, 11.718, 11.41, 11.509], [11.512, 11.619000000000002, 11.432, 11.530999999999999], [11.52, 11.62, 11.464, 11.571], [11.567, 11.668, 11.419, 11.595], [11.595, 11.634, 11.537, 11.56], [11.556, 11.556, 11.31, 11.39], [11.382, 11.579, 11.376, 11.527000000000001], [11.517000000000001, 11.565999999999999, 11.475, 11.501], [11.503, 11.503, 11.375, 11.375], [11.383, 11.482999999999999, 11.343, 11.37], [11.375, 11.530999999999999, 11.365, 11.527999999999999], [11.504000000000001, 11.517000000000001, 11.37, 11.459000000000001], [11.449000000000002, 11.482000000000001, 11.427999999999999, 11.448], [11.450999999999999, 11.477, 11.378, 11.412], [11.411, 11.419, 11.343, 11.386], [11.38, 11.442, 11.237, 11.237], [11.24, 11.554, 11.218, 11.543], [11.543, 11.545, 11.401, 11.425], [11.425999999999998, 11.489, 11.364, 11.485999999999999], [11.478, 11.507, 11.305, 11.305], [11.307, 11.349, 11.142999999999999, 11.193], [11.193, 11.238, 11.106, 11.124], [11.124, 11.231, 11.11, 11.11], [11.107999999999999, 11.232000000000001, 11.103, 11.193], [11.182, 11.24, 11.151, 11.165999999999999], [11.165999999999999, 11.174000000000001, 11.058, 11.095], [11.093, 11.185, 11.072000000000001, 11.075999999999999], [11.083, 11.2, 11.02, 11.18], [11.175999999999998, 11.253, 11.144, 11.218], [11.219000000000001, 11.235999999999999, 11.174000000000001, 11.197000000000001], [11.197000000000001, 11.216, 11.14, 11.155999999999999], [11.151, 11.2, 11.097999999999999, 11.19], [11.185, 11.202, 11.126, 11.142000000000001], [11.142999999999999, 11.165999999999999, 11.12, 11.149000000000001], [11.152999999999999, 11.2, 11.11, 11.12], [11.12, 11.158, 11.1, 11.145], [11.142000000000001, 11.212, 11.123, 11.198], [11.206, 11.216, 11.125, 11.15], [11.142000000000001, 11.194, 11.129000000000001, 11.189], [11.189, 11.199000000000002, 11.161, 11.19], [11.184000000000001, 11.254000000000001, 11.155999999999999, 11.25], [11.253, 11.294, 11.231, 11.273], [11.28, 11.289000000000001, 11.199000000000002, 11.209000000000001], [11.208, 11.298, 11.205, 11.249], [11.249, 11.29, 11.196, 11.205], [11.205, 11.234000000000002, 11.183, 11.198], [11.197000000000001, 11.249, 11.144, 11.248], [11.242, 11.244000000000002, 11.14, 11.217], [11.217, 11.312000000000001, 11.212, 11.297], [11.295, 11.308, 11.254000000000001, 11.257], [11.254000000000001, 11.296, 11.251, 11.285], [11.28, 11.314, 11.279000000000002, 11.302999999999999], [11.3, 11.309000000000001, 11.258, 11.309000000000001], [11.302, 11.37, 11.267999999999999, 11.366], [11.369000000000002, 11.468, 11.35, 11.408], [11.405, 11.41, 11.302999999999999, 11.389000000000001], [11.387, 11.42, 11.369000000000002, 11.415999999999999], [11.414000000000001, 11.487, 11.407, 11.481], [11.482000000000001, 11.554, 11.481, 11.515], [11.512, 11.532, 11.470999999999998, 11.478], [11.478, 11.513, 11.445, 11.472999999999999], [11.467, 11.554, 11.45, 11.544], [11.549000000000001, 11.6, 11.533, 11.6], [11.595999999999998, 11.6, 11.487, 11.530999999999999], [11.524000000000001, 11.565999999999999, 11.475999999999999, 11.543], [11.538, 11.68, 11.533, 11.644], [11.651, 11.734000000000002, 11.624, 11.697000000000001], [11.695, 11.754000000000001, 11.599, 11.605], [11.612, 11.67, 11.575999999999999, 11.638], [11.634, 11.806, 11.600999999999999, 11.719000000000001], [11.722999999999999, 11.737, 11.68, 11.68], [11.689, 11.735, 11.364, 11.372], [11.370999999999999, 11.522, 11.357999999999999, 11.482000000000001], [11.481, 11.619000000000002, 11.44, 11.568], [11.58, 11.619000000000002, 11.53, 11.595], [11.6, 11.69, 11.57, 11.679], [11.673, 11.696, 11.603, 11.634], [11.634, 11.645, 11.456, 11.5], [11.503, 11.532, 11.468, 11.529000000000002], [11.527999999999999, 11.56, 11.409, 11.409], [11.418, 11.46, 11.349, 11.352], [11.355, 11.455, 11.355, 11.442], [11.433, 11.433, 11.196, 11.222000000000001], [11.225999999999999, 11.292, 11.184000000000001, 11.228], [11.225, 11.299000000000001, 11.225, 11.26], [11.263, 11.322000000000001, 11.251, 11.318], [11.312999999999999, 11.312999999999999, 11.216, 11.265999999999998], [11.276, 11.390999999999998, 11.162, 11.308], [11.31, 11.373, 11.225, 11.27], [11.265999999999998, 11.354000000000001, 11.259, 11.305], [11.31, 11.359000000000002, 11.277999999999999, 11.338], [11.339, 11.388, 11.323, 11.377], [11.375, 11.387, 11.342, 11.353], [11.360999999999999, 11.448, 11.360999999999999, 11.433], [11.434000000000001, 11.487, 11.377, 11.386], [11.392999999999999, 11.482999999999999, 11.392999999999999, 11.421], [11.417, 11.475999999999999, 11.390999999999998, 11.432], [11.423, 11.453, 11.369000000000002, 11.429], [11.429, 11.443, 11.398, 11.424000000000001], [11.433, 11.488, 11.407, 11.46], [11.458, 11.6, 11.450999999999999, 11.577], [11.577, 11.597999999999999, 11.554, 11.581], [11.581, 11.585, 11.536, 11.550999999999998], [11.562999999999999, 11.569, 11.485999999999999, 11.524000000000001], [11.525, 11.606, 11.520999999999999, 11.579], [11.579, 11.669, 11.572000000000001, 11.654000000000002], [11.66, 11.674000000000001, 11.582, 11.587], [11.594000000000001, 11.613, 11.47, 11.564], [11.564, 11.673, 11.555, 11.629000000000001], [11.638, 11.639000000000001, 11.574000000000002, 11.62], [11.62, 11.731, 11.607999999999999, 11.702], [11.697000000000001, 11.731, 11.588, 11.59], [11.594000000000001, 11.693, 11.539000000000001, 11.552], [11.544, 11.603, 11.525, 11.536], [11.530999999999999, 11.592, 11.514000000000001, 11.554], [11.561, 11.592, 11.459000000000001, 11.585999999999999], [11.579, 11.626, 11.578, 11.603], [11.615, 11.697000000000001, 11.599, 11.682], [11.686, 11.757, 11.654000000000002, 11.751], [11.751, 11.785, 11.658, 11.763], [11.767999999999999, 11.797, 11.696, 11.720999999999998], [11.725999999999999, 11.737, 11.675, 11.714], [11.727, 11.734000000000002, 11.629000000000001, 11.671], [11.673, 11.683, 11.543, 11.562000000000001], [11.56, 11.583, 11.52, 11.573], [11.577, 11.63, 11.529000000000002, 11.537], [11.548, 11.568, 11.512, 11.523], [11.517999999999999, 11.562999999999999, 11.474, 11.5], [11.505999999999998, 11.53, 11.482999999999999, 11.495999999999999], [11.5, 11.517000000000001, 11.454, 11.475999999999999], [11.477, 11.52, 11.433, 11.445], [11.450999999999999, 11.527000000000001, 11.413, 11.509], [11.511, 11.593, 11.511, 11.577], [11.583, 11.635, 11.517000000000001, 11.635], [11.628, 11.635, 11.565999999999999, 11.59], [11.578, 11.600999999999999, 11.557, 11.572000000000001], [11.575, 11.6, 11.527999999999999, 11.549000000000001], [11.543, 11.671, 11.477, 11.479000000000001], [11.48, 11.52, 11.450999999999999, 11.462], [11.456, 11.581, 11.45, 11.579], [11.578, 11.762, 11.56, 11.722999999999999], [11.715, 11.954, 11.679, 11.945], [11.95, 11.969000000000001, 11.814, 11.844000000000001], [11.835999999999999, 11.864, 11.777000000000001, 11.822000000000001], [11.823, 11.825, 11.715, 11.74], [11.718, 11.73, 11.571, 11.58], [11.575, 11.639000000000001, 11.572000000000001, 11.639000000000001], [11.64, 11.731, 11.6, 11.668], [11.674000000000001, 11.742, 11.669, 11.725], [11.72, 11.77, 11.700999999999999, 11.735999999999999], [11.73, 11.732999999999999, 11.698, 11.715], [11.722000000000001, 11.8, 11.698, 11.739], [11.749, 11.757, 11.698, 11.717], [11.713, 11.765, 11.706, 11.743], [11.751, 11.76, 11.702, 11.71], [11.709000000000001, 11.75, 11.698, 11.705], [11.710999999999999, 11.892000000000001, 11.671, 11.889000000000001], [11.89, 11.946, 11.84, 11.922], [11.93, 11.93, 11.835999999999999, 11.850999999999999], [11.856, 11.95, 11.849, 11.87], [11.883, 11.919, 11.841, 11.841], [11.841, 11.845999999999998, 11.667, 11.7], [11.699000000000002, 11.707, 11.59, 11.6], [11.61, 11.725999999999999, 11.588, 11.725999999999999], [11.719000000000001, 11.749, 11.677, 11.703], [11.705, 11.729000000000001, 11.620999999999999, 11.645], [11.652000000000001, 11.72, 11.578, 11.705], [11.718, 11.761, 11.651, 11.744000000000002], [11.74, 11.745, 11.683, 11.7], [11.697000000000001, 11.715, 11.658, 11.665999999999999], [11.664000000000001, 11.71, 11.6, 11.708], [11.698, 11.761, 11.668, 11.718], [11.72, 11.789000000000001, 11.703, 11.764000000000001], [11.764000000000001, 11.838, 11.749, 11.825999999999999], [11.835, 11.845999999999998, 11.76, 11.783], [11.795, 11.799000000000001, 11.722000000000001, 11.755], [11.759, 11.828, 11.745999999999999, 11.82], [11.818, 11.847000000000001, 11.785, 11.82], [11.833, 11.888, 11.828, 11.88], [11.882, 11.909, 11.804, 11.823], [11.817, 11.83, 11.613, 11.65], [11.65, 11.668, 11.419, 11.467], [11.459000000000001, 11.524000000000001, 11.423, 11.435], [11.432, 11.585999999999999, 11.374, 11.56], [11.565999999999999, 11.632, 11.564, 11.571], [11.571, 11.603, 11.507, 11.58], [11.577, 11.630999999999998, 11.557, 11.574000000000002], [11.573, 11.599, 11.555, 11.581], [11.575999999999999, 11.593, 11.5, 11.526], [11.527000000000001, 11.597999999999999, 11.519, 11.569], [11.568, 11.582, 11.53, 11.542], [11.54, 11.554, 11.485, 11.54], [11.539000000000001, 11.539000000000001, 11.475, 11.494000000000002], [11.498, 11.498, 11.434000000000001, 11.470999999999998], [11.472999999999999, 11.519, 11.460999999999999, 11.479000000000001], [11.474, 11.54, 11.464, 11.529000000000002], [11.530999999999999, 11.530999999999999, 11.474, 11.48], [11.478, 11.54, 11.472000000000001, 11.504000000000001], [11.5, 11.663, 11.491, 11.555], [11.545, 11.610999999999999, 11.533, 11.575999999999999], [11.575999999999999, 11.6, 11.558, 11.585999999999999], [11.584000000000001, 11.588, 11.520999999999999, 11.530999999999999], [11.525, 11.526, 11.415999999999999, 11.47], [11.463, 11.482999999999999, 11.415999999999999, 11.456], [11.463, 11.530999999999999, 11.408, 11.494000000000002], [11.497, 11.55, 11.44, 11.492], [11.493, 11.599, 11.493, 11.589], [11.591, 11.599, 11.45, 11.548], [11.527999999999999, 11.575, 11.454, 11.489], [11.487, 11.487, 11.383, 11.42], [11.423, 11.457, 11.344000000000001, 11.349], [11.355, 11.433, 11.331, 11.414000000000001], [11.41, 11.41, 11.311, 11.347999999999999], [11.347999999999999, 11.425999999999998, 11.333, 11.387], [11.365, 11.454, 11.36, 11.446], [11.433, 11.55, 11.427, 11.527999999999999], [11.536, 11.655999999999999, 11.503, 11.623], [11.620999999999999, 11.7, 11.59, 11.65], [11.654000000000002, 11.659, 11.559000000000001, 11.565], [11.561, 11.585, 11.517000000000001, 11.546], [11.542, 11.545, 11.415999999999999, 11.417], [11.415, 11.443, 11.35, 11.4], [11.404000000000002, 11.440999999999999, 11.386, 11.392999999999999], [11.395999999999999, 11.470999999999998, 11.344000000000001, 11.36], [11.357999999999999, 11.43, 11.324000000000002, 11.423], [11.423, 11.493, 11.405999999999999, 11.493], [11.488, 11.52, 11.468, 11.504000000000001], [11.504000000000001, 11.515999999999998, 11.445, 11.452], [11.444, 11.477, 11.427999999999999, 11.45], [11.440999999999999, 11.594000000000001, 11.436, 11.572000000000001], [11.57, 11.605, 11.538, 11.593], [11.59, 11.609000000000002, 11.556, 11.56], [11.559000000000001, 11.571, 11.513, 11.523], [11.514000000000001, 11.55, 11.477, 11.505], [11.505999999999998, 11.613, 11.48, 11.495], [11.493, 11.549000000000001, 11.474, 11.513], [11.512, 11.54, 11.505, 11.54], [11.537, 11.55, 11.49, 11.503], [11.509, 11.509, 11.459000000000001, 11.487], [11.488, 11.52, 11.45, 11.482999999999999], [11.478, 11.512, 11.463, 11.505], [11.517999999999999, 11.56, 11.485999999999999, 11.558], [11.56, 11.599, 11.534, 11.540999999999999], [11.547, 11.61, 11.530999999999999, 11.594000000000001], [11.593, 11.609000000000002, 11.577, 11.595], [11.599, 11.63, 11.575999999999999, 11.63], [11.63, 11.683, 11.588, 11.675999999999998], [11.683, 11.7, 11.605, 11.624], [11.618, 11.675, 11.618, 11.67]]
Traceback (most recent call last):
  File "/indicators.py", line 37, in AddIndicators
    df['bop'] = ta.bop(data, length)
  File "/usr/local/lib/python3.7/dist-packages/ta_py/ta.py", line 448, in bop
    bo.append((data[i][3] - data[i][0]) / (data[i][1] - data[i][2]));
ZeroDivisionError: float division by zero

code:

    data = []
    for index, row in df.iterrows():
        data.append([row["Open"], row["High"], row["Low"], row["Close"]])
    print(data)    
    length = 14; # default = 14
    df['bop'] = ta.bop(data, length)

Half trend

The half trend code is not working as it should very different from TV

import ta_py as tapy
import pandas as pd
import pandas_ta as ta

df = pd.read_csv('/mnt/f/python/stocks/neo/data/bn_5min.csv')
# %%
df = df[:5000]
df.date = pd.to_datetime(df.date)
df.ta.ha(append=True)
data = df[['HA_high', 'HA_close', 'HA_low']].values.tolist()
[df2.csv](https://github.com/Bitvested/ta.py/files/9432276/df2.csv)

datahs = tapy.halftrend(data, 100, 2, 2)
df1 = pd.DataFrame(datahs, columns=['atrHigh', 'HalfTrend', 'atrLow', 'HS'])
df1.index=(df1.index+(len(df)-len(df1)))
df2 = pd.merge(df, df1, left_index=True, right_index=True)

Attaching the ouptu file

please check on tv by symbol BANKNIFTY 5 min HS(2,2)

The values and signals are very different

need hard refactor

Hello
Your library is great but very hard to use. Please refractor it to make it usable
Receive fixed dataFream as input
The indicator finds its value
Meaningful output in dictionaries

Please take a look at this library and you will notice its ease of use
https://github.com/peerchemist/finta

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.