diff --git a/100sim_chart.png b/100sim_chart.png new file mode 100644 index 00000000..a26d358e Binary files /dev/null and b/100sim_chart.png differ diff --git a/Daily.java b/Daily.java new file mode 100644 index 00000000..7fac68bc --- /dev/null +++ b/Daily.java @@ -0,0 +1,72 @@ + +public class Daily { + + private String date; + private double volume, open, max, min, close; + + public Daily(String date, double volume, double open, double max, double min, double close) + { + this.date = date; + this.volume = volume; + this.open = open; + this.max = max; + this.min = min; + this.close = close; + } + + public String getDate() { + return date; + } + + public double getVolume() { + return volume; + } + + public double getOpen() { + return open; + } + + public double getMax() { + return max; + } + + public double getMin() { + return min; + } + + public double getClose() { + return close; + } + + public void combine(Daily other) { + + if(date.equals(other.date)) { + + volume += other.volume; + open += other.open; + max += other.max; + min += other.min; + close += other.close; + } + else throw new IllegalArgumentException("Notowania musza dotyczyc tego samego dnia!"); + } + + public void getAvg(int size) { + volume /= size; + open /= size; + max /= size; + min /= size; + close /= size; + } + + public String toCSV() { + return String.format("%s;%.2f;%.2f;%.2f;%.2f;%.2f", date, volume, open, max, min, close); + } + + @Override + public String toString() { + return String.format("%-14s Wolumen: %-10.2f Otwarcie: %-10.2f Max: %-10.2f Min: %-10.2f Zamkniecie: %-10.2f", date, volume, open, max, min, close); + } + + +} diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 1b31956e..00000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Mateusz Magda - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Main.java b/Main.java new file mode 100644 index 00000000..53644a79 --- /dev/null +++ b/Main.java @@ -0,0 +1,63 @@ +import java.io.BufferedWriter; +import java.io.FileWriter; +import java.io.IOException; +import java.util.ArrayList; + +public class Main { + + public static void toCSV(String filename, ArrayList generated) { + + try { + BufferedWriter buffer = new BufferedWriter(new FileWriter(filename)); + for(int i=0; i 0) + { + Simulator simulator = new Simulator("btc_history.csv", learnFrom, learnTo); + simulator.showModificators(); + System.out.println("Symulacja nr"+1); + simulator.simulate(date, printOutput); + + ArrayList predictions = simulator.getGenerated(); + double predSize = predictions.size(); + + for(int i=1; i notowania; + private ArrayList generated; + private int dataSize; + private double volumeModificator; + private double closeValueMod, closeDistrFunction; + private double minModificator; + private double maxModificator; + + public Simulator(String csvFile, String fromDate, String toDate) throws Exception { + notowania = new ArrayList<>(); + generated = new ArrayList<>(); + dataSize=0; + LocalDate today=LocalDate.now().plusDays(1), since = LocalDate.parse(fromDate).plusDays(1); + + if(today.isBefore(since)) throw new IllegalArgumentException("Podana data musi byc wczesniejsza lub rowna dzisiejszej!"); + else if (since.isBefore(LocalDate.of(2016, 1, 1))) throw new IllegalArgumentException("Podana data musi by pozniejsza ni 1 stycznia 2016r."); + else { + + try { + BufferedReader buffer = new BufferedReader(new FileReader(csvFile)); + String [] dane; String line=""; + + while( (line=buffer.readLine()) != null) { + + dane = line.replaceAll("[^0-9.;-]", "").split(";"); + + if(current==null) current = new Daily(LocalDate.now().toString(), Double.parseDouble(dane[1]), Double.parseDouble(dane[2]), + Double.parseDouble(dane[3]), Double.parseDouble(dane[4]), Double.parseDouble(dane[5])); + + if(LocalDate.parse(dane[0]).isBefore(since)) { + notowania.add(new Daily(dane[0], Double.parseDouble(dane[1]), Double.parseDouble(dane[2]), + Double.parseDouble(dane[3]), Double.parseDouble(dane[4]), Double.parseDouble(dane[5]))); + dataSize++; + + if(line.contains(toDate)) break; + } + } + + buffer.close(); + } + catch (Exception e) { + System.out.println("Nie mona odnalezc pliku!"); + } + } + calcModificators(); + } + + public ArrayList getNotowania() { + return notowania; + } + + public void showModificators() + { + System.out.println("\nPARAMETRY SYMULACJI:"); + System.out.println("VolumeModificator: "+volumeModificator); + System.out.println("CloseValueMod: "+closeValueMod + "\tcloseDistrFunction: " + closeDistrFunction); + System.out.println("MinModificator: "+minModificator); + System.out.println("MaxModificator: "+maxModificator + "\n"); + } + + public void simulate(String toDate, boolean printOutput) + { + LocalDate target = LocalDate.parse(toDate); + if(LocalDate.now().plusDays(1).isAfter(target)) throw new IllegalArgumentException("Data do symulacji musi byc w przyszlosci!"); + else + { + generated = new ArrayList(); + generated.add(makePrediction(current)); + int daystoTarget = (int)ChronoUnit.DAYS.between(LocalDate.now(), target); + + for(int i=1; i getGenerated() { + return generated; + } + + private void calcModificators() + { + double volMod=0.0, closeVal=0.0, closeDistr=0, minMod=0.0, maxMod=0.0; + + for(int i=0; i notowania.get(i+1).getClose()) closeDistr++; + volMod += Math.abs(notowania.get(i).getVolume() - notowania.get(i+1).getVolume()); + closeVal += Math.abs(notowania.get(i).getClose() - notowania.get(i+1).getClose()); + minMod += notowania.get(i).getOpen() - notowania.get(i).getMin(); + maxMod += notowania.get(i).getMax() - notowania.get(i).getOpen(); + } + minMod += notowania.get(dataSize-1).getOpen() - notowania.get(dataSize-1).getMin(); + maxMod += notowania.get(dataSize-1).getMax() - notowania.get(dataSize-1).getOpen(); + + volumeModificator = volMod/(dataSize-1); + closeValueMod = closeVal/(dataSize-1); + closeDistrFunction = closeDistr/(dataSize-1); + minModificator = minMod/dataSize; + maxModificator = maxMod/dataSize; + } + + private Daily makePrediction(Daily previous) + { + Random rand = new Random(); + String date; + double volume, open, max, min, close; + + date = LocalDate.parse(previous.getDate()).plusDays(1).toString(); + volume = Math.max(0, previous.getVolume() + ((double)Math.round((rand.nextGaussian()+0.072)*volumeModificator*100)/100)); + open = previous.getClose(); + max = Math.max(0, open + ((double)Math.round(Math.abs(rand.nextGaussian()*0.7)*maxModificator*100)/100)); + min = Math.max(0, open - ((double)Math.round(Math.abs(rand.nextGaussian()*0.7)*maxModificator*100)/100)); + + double tendention = rand.nextDouble(), change = ((double)Math.round(Math.abs(rand.nextGaussian()*0.8)*closeValueMod*100)/100); + + if(tendention<=closeDistrFunction) + { + close = Math.max(0, previous.getClose() + change); + } + else + { + close = Math.max(0, previous.getClose() - change); + } + + return new Daily(date, volume, open, max, min, close); + } + +} diff --git a/btc_history.csv b/btc_history.csv new file mode 100644 index 00000000..90c2de1a --- /dev/null +++ b/btc_history.csv @@ -0,0 +1,1933 @@ +2020-06-05;12.35;9800.8;9850.9;9760.3;9829.9 +2020-06-04;214.15;9665.4;9891.9;9470;9800.8 +2020-06-03;177.46;9520;9682.5;9400;9665.4 +2020-06-02;332.9;10194;10203.7;9279.3;9520 +2020-06-01;241.85;9446.9;10382.4;9435.8;10194 +2020-05-31;173.13;9700.1;9700.1;9400;9446.9 +2020-05-30;180.32;9428.6;9740;9324.8;9700.1 +2020-05-29;209.62;9564.3;9612.9;9341.2;9428.6 +2020-05-28;392.57;9200;9624.9;9125.1;9564.3 +2020-05-27;301.05;8855.4;9229.9;8830.4;9200 +2020-05-26;196.89;8909.6;9016;8707.6;8855.4 +2020-05-25;268.88;8721.9;8975;8631.3;8909.6 +2020-05-24;266.73;9198.7;9300.8;8700;8721.9 +2020-05-23;159.72;9178.4;9319.1;9100;9198.7 +2020-05-22;185.93;9044.8;9280;8939.3;9178.4 +2020-05-21;424.84;9527.6;9571.2;8810.1;9044.8 +2020-05-20;429.66;9799.8;9844.7;9309.2;9527.6 +2020-05-19;388.46;9742.2;9899.3;9458.5;9799.8 +2020-05-18;358.04;9682.9;9959;9482.3;9742.2 +2020-05-17;491.97;9384.8;9888.9;9345.5;9682.9 +2020-05-16;250.0;9319.9;9600;9211.8;9384.8 +2020-05-15;502.33;9788.1;9840;9123.1;9319.9 +2020-05-14;725.74;9327.4;9951.3;9282.2;9788.1 +2020-05-13;461.62;8837.4;9419.8;8812.8;9327.4 +2020-05-12;334.94;8569.4;8980;8542.6;8837.4 +2020-05-11;1042.46;8748.2;9174.8;8196.2;8569.4 +2020-05-10;962.3;9544.5;9554.8;8100;8748.2 +2020-05-09;387.93;9822.5;9916.3;9521.3;9544.5 +2020-05-08;440.52;9996.6;10048;9720;9822.5 +2020-05-07;754.32;9168.6;10080;9027.3;9996.6 +2020-05-06;481.59;9035.3;9403;8942.1;9168.6 +2020-05-05;329.31;8904;9120.3;8789;9035.3 +2020-05-04;295.17;8916.9;8967.9;8532.8;8904 +2020-05-03;392.66;8993.3;9200;8717;8916.9 +2020-05-02;231.28;8838.1;9020;8776.3;8993.3 +2020-05-01;366.96;8626.9;9062.5;8626.9;8838.1 +2020-04-30;1101.0;8778.3;9479.4;8395.3;8626.9 +2020-04-29;1160.99;7772.9;8985.2;7740;8778.3 +2020-04-28;202.11;7786.9;7786.9;7679.8;7772.9 +2020-04-27;286.61;7700;7800;7645.7;7786.9 +2020-04-26;214.73;7541;7714.1;7505;7700 +2020-04-25;204.3;7526.4;7717.3;7460;7541 +2020-04-24;226.03;7492.8;7623.6;7391.8;7526.4 +2020-04-23;513.86;7140.3;7800;7041;7492.8 +2020-04-22;236.58;6872.9;7170;6839.1;7140.3 +2020-04-21;242.28;6848.7;6963.8;6790.1;6872.9 +2020-04-20;359.21;7136.5;7229.9;6780;6848.7 +2020-04-19;172.12;7258.1;7270.9;7080;7136.5 +2020-04-18;231.42;7036.4;7300;7036.4;7258.1 +2020-04-17;255.56;7122;7160.2;6986.9;7036.4 +2020-04-16;791.79;6647.4;7216.2;6500;7122 +2020-04-15;201.44;6888.2;6944.9;6616;6647.4 +2020-04-14;167.14;6863.1;6989.9;6778.1;6888.2 +2020-04-13;328.5;6917.2;6917.2;6580.1;6863.1 +2020-04-12;180.92;6900;7200;6811.1;6917.2 +2020-04-11;110.59;6877.7;6965.6;6780.8;6900 +2020-04-10;388.77;7310.9;7316.5;6755.1;6877.7 +2020-04-09;296.88;7378.1;7388.1;7124;7310.9 +2020-04-08;195.82;7214.7;7424.8;7171.9;7378.1 +2020-04-07;380.09;7356.4;7489.8;7100;7214.7 +2020-04-06;394.76;6792.9;7370;6776;7356.4 +2020-04-05;232.16;6880.5;6900;6679;6792.9 +2020-04-04;270.97;6743;7000;6666.6;6880.5 +2020-04-03;323.53;6813.5;7050;6620;6743 +2020-04-02;529.44;6635.8;7262.4;6573.3;6813.5 +2020-04-01;336.31;6441.5;6719.9;6160.1;6635.8 +2020-03-31;241.75;6403.6;6539.3;6350;6441.5 +2020-03-30;375.3;5895.8;6605.8;5855.2;6403.6 +2020-03-29;231.69;6271.6;6288.4;5888;5895.8 +2020-03-28;317.48;6383.2;6383.2;6050;6271.6 +2020-03-27;263.85;6771.4;6871.6;6275;6383.2 +2020-03-26;232.07;6709.7;6795.9;6545.1;6771.4 +2020-03-25;333.64;6781;6988.5;6484.4;6709.7 +2020-03-24;435.3;6483.1;6849.2;6424.3;6781 +2020-03-23;374.14;5849.9;6615;5726.1;6483.1 +2020-03-22;347.26;6212.2;6402;5798.1;5849.9 +2020-03-21;325.75;6220.9;6456;5892.2;6212.2 +2020-03-20;653.28;6220.4;6938;5684.6;6220.9 +2020-03-19;627.04;5411;6439.7;5295.4;6220.4 +2020-03-18;405.8;5381.4;5451;5060.9;5411 +2020-03-17;479.13;5057.4;5569.5;4945.9;5381.4 +2020-03-16;1047.09;5422.9;5422.9;4520.1;5057.4 +2020-03-15;383.12;5250;5987.6;5188.2;5422.9 +2020-03-14;372.17;5686.9;5700;5150;5250 +2020-03-13;1281.48;4920.5;6047.7;4001.1;5686.9 +2020-03-12;1440.79;7942.1;7988.8;4707.3;4920.5 +2020-03-11;177.14;7904.8;8000;7610;7942.1 +2020-03-10;238.66;7947.7;8167.9;7745.3;7904.8 +2020-03-09;313.55;8059.2;8200.5;7648.3;7947.7 +2020-03-08;245.95;8923.1;8923.1;8029;8059.2 +2020-03-07;115.26;9159.7;9211.8;8866.4;8923.1 +2020-03-06;92.16;9086;9195;9023.2;9159.7 +2020-03-05;193.33;8797.8;9169.2;8777.4;9086 +2020-03-04;76.41;8796.1;8866.4;8695.5;8797.8 +2020-03-03;74.65;8926.5;8939.9;8674.2;8796.1 +2020-03-02;121.13;8572.8;8986.7;8530;8926.5 +2020-03-01;80.52;8559;8778.6;8450;8572.8 +2020-02-29;51.5;8698.3;8821;8559;8559 +2020-02-28;164.31;8849.8;8932.8;8458.3;8698.3 +2020-02-27;153.84;8821.3;8985;8533;8849.8 +2020-02-26;234.45;9333.8;9381.9;8648.5;8821.3 +2020-02-25;123.46;9690.6;9700.9;9272.5;9333.8 +2020-02-24;138.25;9999.9;10020;9506;9690.6 +2020-02-23;88.53;9700.7;10012.1;9693.7;9999.9 +2020-02-22;42.52;9721;9741;9601;9700.7 +2020-02-21;80.65;9606.2;9799.1;9602;9721 +2020-02-20;114.64;9617.3;9688.8;9423;9606.2 +2020-02-19;229.99;10178.8;10290;9307.7;9617.3 +2020-02-18;199.58;9745.1;10261.4;9639.7;10178.8 +2020-02-17;160.14;9950.9;9954.8;9502;9745.1 +2020-02-16;91.13;9905;10069.6;9660;9950.9 +2020-02-15;149.31;10375;10400;9775;9905 +2020-02-14;68.63;10241;10399.9;10136.7;10375 +2020-02-13;153.15;10381.6;10510;10115.1;10241 +2020-02-12;101.27;10288.5;10466.3;10260;10381.6 +2020-02-11;147.74;9879.5;10390.8;9719.7;10288.5 +2020-02-10;134.78;10179.8;10197.5;9750.8;9879.5 +2020-02-09;118.68;9928.9;10179.8;9916.8;10179.8 +2020-02-08;83.28;9834.9;9937.8;9675.6;9928.9 +2020-02-07;62.79;9773.2;9870;9711;9834.9 +2020-02-06;115.93;9616;9875;9540;9773.2 +2020-02-05;129.8;9193.6;9750.5;9167;9616 +2020-02-04;89.85;9313.7;9369.6;9098;9193.6 +2020-02-03;99.75;9350.9;9603.7;9242;9313.7 +2020-02-02;74.96;9395;9459.9;9173;9350.9 +2020-02-01;55.11;9356.7;9459.8;9301.6;9395 +2020-01-31;109.44;9540.8;9550;9210.5;9356.7 +2020-01-30;103.16;9306.5;9584;9205.5;9540.8 +2020-01-29;113.94;9359.7;9412.3;9210.2;9306.5 +2020-01-28;143.71;8912.1;9360;8900;9359.7 +2020-01-27;121.7;8600;8981.3;8567.6;8912.1 +2020-01-26;90.68;8367.7;8600;8311.3;8600 +2020-01-25;46.5;8456.9;8457.6;8289;8367.7 +2020-01-24;93.28;8424;8528.9;8245.6;8456.9 +2020-01-23;137.09;8681.9;8690.9;8310;8424 +2020-01-22;83.0;8760.7;8798.5;8610;8681.9 +2020-01-21;86.41;8663.6;8765.5;8521;8760.7 +2020-01-20;86.29;8718;8764.8;8510;8663.6 +2020-01-19;184.58;8939.9;9185.5;8510.1;8718 +2020-01-18;69.92;8914.8;8973.4;8830;8939.9 +2020-01-17;135.28;8747.1;8996;8670;8914.8 +2020-01-16;96.37;8818.2;8825;8600;8747.1 +2020-01-15;166.11;8847.6;8890;8584;8818.2 +2020-01-14;253.32;8133;8879.9;8133;8847.6 +2020-01-13;56.19;8190;8206.4;8070;8133 +2020-01-12;66.13;8053.8;8190;7987;8190 +2020-01-11;106.28;8200;8289.4;8008.4;8053.8 +2020-01-10;149.45;7855;8200;7710.1;8200 +2020-01-09;104.68;8069.9;8069.9;7785.9;7855 +2020-01-08;187.28;8189.5;8449.9;7876;8069.9 +2020-01-07;176.67;7795.3;8220;7750.9;8189.5 +2020-01-06;105.03;7387.4;7810.9;7382.1;7795.3 +2020-01-05;69.14;7379.8;7490;7343;7387.4 +2020-01-04;40.88;7351.3;7398;7301.3;7379.8 +2020-01-03;174.0;6984.8;7403.9;6901;7351.3 +2020-01-02;122.34;7238.2;7249.7;6951;6984.8 +2020-01-01;64.92;7258.7;7300;7220.1;7238.2 +2019-12-31;66.87;7277.3;7366.6;7200;7258.7 +2019-12-30;60.2;7412.7;7416.8;7240.3;7277.3 +2019-12-29;58.83;7326.2;7509.5;7300.1;7412.7 +2019-12-28;69.62;7277;7359.7;7270.1;7326.2 +2019-12-27;82.51;7231.7;7286.6;7120.1;7277 +2019-12-26;77.39;7234.3;7447.3;7192.1;7231.7 +2019-12-25;54.69;7268.1;7299.8;7169.7;7234.3 +2019-12-24;116.83;7362.2;7430;7200;7268.1 +2019-12-23;139.99;7537;7709.2;7309.4;7362.2 +2019-12-22;125.15;7218.2;7550;7195;7537 +2019-12-21;33.67;7236.8;7250.9;7178;7218.2 +2019-12-20;71.08;7214.5;7272.5;7142.1;7236.8 +2019-12-19;110.28;7331;7375;7080;7214.5 +2019-12-18;355.05;6707.2;7471.3;6500;7331 +2019-12-17;212.21;6956.5;6999.3;6651.8;6707.2 +2019-12-16;159.85;7166.8;7200;6888.2;6956.5 +2019-12-15;50.65;7136.7;7229.2;7080;7166.8 +2019-12-14;80.33;7291.9;7309.9;7079.3;7136.7 +2019-12-13;97.24;7264;7349.9;7248.7;7291.9 +2019-12-12;86.03;7280.2;7346.1;7154.8;7264 +2019-12-11;78.18;7309.3;7356.2;7207.2;7280.2 +2019-12-10;114.16;7408;7472.9;7250;7309.3 +2019-12-09;106.2;7584.9;7668.5;7369.1;7408 +2019-12-08;61.27;7575.5;7619.9;7430.4;7584.9 +2019-12-07;48.24;7599.9;7644.9;7543;7575.5 +2019-12-06;108.96;7455.9;7613.4;7325.3;7599.9 +2019-12-05;134.65;7258;7494.9;7220;7455.9 +2019-12-04;220.98;7372.1;7788;7138.5;7258 +2019-12-03;112.65;7392.9;7475;7326.1;7372.1 +2019-12-02;145.15;7475.7;7511.9;7250;7392.9 +2019-12-01;133.71;7617.9;7621;7302.4;7475.7 +2019-11-30;160.03;7827.9;7889.9;7520;7617.9 +2019-11-29;136.14;7517.2;7920;7481.7;7827.9 +2019-11-28;114.76;7560;7723.7;7443.7;7517.2 +2019-11-27;275.02;7249.9;7696.1;6915.3;7560 +2019-11-26;148.63;7156.9;7376.7;7091.4;7249.9 +2019-11-25;411.48;6985.2;7396.8;6526.8;7156.9 +2019-11-24;202.48;7377.3;7380;6941.9;6985.2 +2019-11-23;127.32;7339.9;7400;7140.2;7377.3 +2019-11-22;617.5;7683.4;7761.8;6886.8;7339.9 +2019-11-21;374.93;8147.8;8173;7500;7683.4 +2019-11-20;68.05;8158;8250;8083;8147.8 +2019-11-19;145.35;8240;8258.3;8075;8158 +2019-11-18;130.96;8549.4;8556.2;8125;8240 +2019-11-17;36.94;8510.2;8671.8;8424.1;8549.4 +2019-11-16;32.12;8522.6;8584.1;8484;8510.2 +2019-11-15;134.5;8693.3;8825;8428;8522.6 +2019-11-14;80.8;8828.1;8838.9;8602;8693.3 +2019-11-13;76.39;8849.9;8879.1;8750;8828.1 +2019-11-12;93.53;8783.9;8888.3;8629;8849.9 +2019-11-11;101.63;9068.3;9097.5;8608;8783.9 +2019-11-10;72.98;8833.7;9143.7;8789.3;9068.3 +2019-11-09;79.02;8838.3;8934;8780;8833.7 +2019-11-08;233.15;9244.1;9281.4;8700;8838.3 +2019-11-07;96.54;9402.9;9410;9106;9244.1 +2019-11-06;55.82;9349.4;9450;9295.9;9402.9 +2019-11-05;89.44;9408.8;9479.1;9225;9349.4 +2019-11-04;97.72;9250.8;9599.9;9162.1;9408.8 +2019-11-03;45.67;9332.7;9394;9118.2;9250.8 +2019-11-02;52.95;9262.5;9399;9229.6;9332.7 +2019-11-01;83.29;9183.2;9311.5;9088.6;9262.5 +2019-10-31;177.2;9208.9;9439.8;8971.3;9183.2 +2019-10-30;159.89;9439.3;9439.3;9040;9208.9 +2019-10-29;137.59;9236.8;9546.7;9130;9439.3 +2019-10-28;192.53;9538.8;9880;9226.1;9236.8 +2019-10-27;296.38;9227;9798;9115;9538.8 +2019-10-26;562.1;8652.3;10373.4;8649.2;9227 +2019-10-25;302.31;7450;8744.9;7425.3;8652.3 +2019-10-24;90.53;7487.5;7533.2;7374.3;7450 +2019-10-23;285.17;8072.9;8093.4;7347.1;7487.5 +2019-10-22;84.1;8249.5;8331.1;8030;8072.9 +2019-10-21;90.1;8250;8353.8;8183.1;8249.5 +2019-10-20;63.12;7984;8318.9;7918.1;8250 +2019-10-19;61.72;7991.1;8098.1;7915.4;7984 +2019-10-18;85.37;8106;8128.9;7861;7991.1 +2019-10-17;87.8;8023.5;8151;7959.7;8106 +2019-10-16;92.84;8189.2;8194;7947.3;8023.5 +2019-10-15;95.11;8354.4;8400;8117.2;8189.2 +2019-10-14;105.74;8320;8400;8229.4;8354.4 +2019-10-13;83.33;8333.1;8486.8;8184.7;8320 +2019-10-12;40.54;8292.6;8427.1;8283.1;8333.1 +2019-10-11;100.67;8601.9;8813.3;8271.1;8292.6 +2019-10-10;109.24;8613.1;8674.9;8461.7;8601.9 +2019-10-09;143.36;8206.1;8700;8109.7;8613.1 +2019-10-08;70.31;8208.9;8344;8129.9;8206.1 +2019-10-07;191.99;7924.3;8319.6;7819.9;8208.9 +2019-10-06;133.78;8154.9;8182.5;7830.4;7924.3 +2019-10-05;46.02;8179.7;8199.9;8042.7;8154.9 +2019-10-04;101.74;8267.4;8276.4;8055;8179.7 +2019-10-03;128.15;8386.9;8400;8105;8267.4 +2019-10-02;63.24;8347.5;8389.2;8195.4;8386.9 +2019-10-01;147.57;8321.3;8556.9;8225.5;8347.5 +2019-09-30;186.13;8080;8350;7750;8321.3 +2019-09-29;71.0;8233.1;8252.5;7922.8;8080 +2019-09-28;82.87;8222.5;8332.2;8050.1;8233.1 +2019-09-27;134.79;8051.6;8298;7900.2;8222.5 +2019-09-26;271.71;8467.3;8506.6;7726.9;8051.6 +2019-09-25;174.09;8592;8799.9;8277.7;8467.3 +2019-09-24;531.67;9712;9820.1;8105.6;8592 +2019-09-23;97.62;10061.4;10087.3;9651;9712 +2019-09-22;50.4;9999.3;10095;9881.7;10061.4 +2019-09-21;70.02;10195.9;10195.9;9943.6;9999.3 +2019-09-20;49.73;10280.4;10301;10101;10195.9 +2019-09-19;193.1;10182.1;10364.5;9660.1;10280.4 +2019-09-18;85.71;10192;10273.3;10125.3;10182.1 +2019-09-17;73.48;10292.4;10299.9;10155.4;10192 +2019-09-16;83.98;10299.9;10388.9;10102.1;10292.4 +2019-09-15;26.35;10368.2;10393;10265.9;10299.9 +2019-09-14;54.31;10373.4;10429.9;10251.8;10368.2 +2019-09-13;86.13;10406.9;10450;10177.5;10373.4 +2019-09-12;85.66;10170;10443;10051.6;10406.9 +2019-09-11;123.14;10137.7;10275.4;9886.9;10170 +2019-09-10;91.03;10311.4;10399;9981;10137.7 +2019-09-09;98.71;10401.9;10500;10105;10311.4 +2019-09-08;58.56;10468.4;10599.9;10262.1;10401.9 +2019-09-07;85.1;10326.6;10577.9;10326.6;10468.4 +2019-09-06;194.59;10575;10911.3;10220.1;10326.6 +2019-09-05;74.23;10592.4;10663.2;10450.2;10575 +2019-09-04;136.78;10647.2;10800;10381;10592.4 +2019-09-03;172.68;10390;10750;10270.2;10647.2 +2019-09-02;162.55;9755.3;10440;9748.1;10390 +2019-09-01;53.69;9620.3;9824.8;9560.1;9755.3 +2019-08-31;48.78;9603.9;9683.4;9459.5;9620.3 +2019-08-30;66.27;9506.9;9700;9385.1;9603.9 +2019-08-29;164.43;9741;9741;9352.2;9506.9 +2019-08-28;208.05;10191.4;10299.8;9617;9741 +2019-08-27;69.18;10356.7;10375.3;10050.1;10191.4 +2019-08-26;135.09;10145;10650;10137.5;10356.7 +2019-08-25;73.67;10143;10300;9904.8;10145 +2019-08-24;109.25;10405.5;10425;9916.4;10143 +2019-08-23;80.12;10154.3;10454.3;10060.6;10405.5 +2019-08-22;124.96;10169.3;10250;9800;10154.3 +2019-08-21;153.16;10742.4;10800;9900.5;10169.3 +2019-08-20;130.19;10925.8;10976.2;10576.1;10742.4 +2019-08-19;136.98;10338.9;10941;10291.4;10925.8 +2019-08-18;75.63;10230;10527;10096.1;10338.9 +2019-08-17;88.25;10365.5;10479.8;10028.9;10230 +2019-08-16;227.55;10324.4;10541.9;9759.6;10365.5 +2019-08-15;246.52;10054;10471.9;9560.7;10324.4 +2019-08-14;227.97;10847.1;10867.5;9975.8;10054 +2019-08-13;123.04;11418;11461.5;10751;10847.1 +2019-08-12;75.34;11568.3;11568.3;11271;11418 +2019-08-11;58.6;11316.5;11590;11142.7;11568.3 +2019-08-10;157.02;11866.8;11944.4;11262.7;11316.5 +2019-08-09;130.47;11995.1;12039.8;11665.1;11866.8 +2019-08-08;120.95;11927;12040.9;11550;11995.1 +2019-08-07;243.72;11471.2;12149.9;11411.4;11927 +2019-08-06;325.41;11795.2;12284.2;11216.6;11471.2 +2019-08-05;307.06;10995.3;11951.4;10988.4;11795.2 +2019-08-04;212.41;10803.5;11065.5;10544.1;10995.3 +2019-08-03;126.61;10536.2;10918.9;10501;10803.5 +2019-08-02;144.57;10400.8;10673;10332.2;10536.2 +2019-08-01;168.46;10094.7;10494.9;9890;10400.8 +2019-07-31;155.91;9593.3;10120;9581.6;10094.7 +2019-07-30;147.3;9520.6;9740;9410.8;9593.3 +2019-07-29;129.18;9536.4;9708;9421.1;9520.6 +2019-07-28;108.91;9485;9635.4;9163.3;9536.4 +2019-07-27;317.53;9869.8;10193.8;9351;9485 +2019-07-26;118.83;9905.3;9905.3;9676.7;9869.8 +2019-07-25;126.11;9800;10199.7;9769;9905.3 +2019-07-24;212.02;9870.3;9938;9542.4;9800 +2019-07-23;221.41;10370;10382.9;9836.8;9870.3 +2019-07-22;210.44;10574.4;10665.9;10130;10370 +2019-07-21;192.17;10724.8;10831.6;10351.5;10574.4 +2019-07-20;181.33;10547.3;11050;10427.3;10724.8 +2019-07-19;204.44;10659.6;10749.9;10182.1;10547.3 +2019-07-18;377.93;9693.9;10758.1;9313.1;10659.6 +2019-07-17;382.02;9450.8;9987.9;9121;9693.9 +2019-07-16;397.06;10846.8;11015.3;9400;9450.8 +2019-07-15;467.9;10239.4;11050;9980;10846.8 +2019-07-14;404.66;11346.7;11472.5;10150.3;10239.4 +2019-07-13;298.26;11813.7;11847.1;10862.1;11346.7 +2019-07-12;265.87;11378.4;11902.5;11154.3;11813.7 +2019-07-11;399.77;12135.4;12135.4;11100;11378.4 +2019-07-10;712.67;12578.1;13119.9;11576.1;12135.4 +2019-07-09;460.64;12300.3;12800;12173.7;12578.1 +2019-07-08;355.26;11450.1;12380;11351.4;12300.3 +2019-07-07;164.17;11287.8;11647.2;11156.2;11450.1 +2019-07-06;176.73;11016;11717.6;11016;11287.8 +2019-07-05;277.4;11282.8;11482.8;10900;11016 +2019-07-04;332.76;11988.6;12040;11200;11282.8 +2019-07-03;542.14;10789.7;11998.9;10789.7;11988.6 +2019-07-02;623.91;10579;10937.7;9536.9;10789.7 +2019-07-01;746.14;10773.1;11259.9;9950;10579 +2019-06-30;591.01;11891.2;12160;10755.6;10773.1 +2019-06-29;675.48;12430.1;12430.1;11418.1;11891.2 +2019-06-28;822.78;11235.2;12488.4;10860.5;12430.1 +2019-06-27;1250.37;13140.3;13247.9;10350.2;11235.2 +2019-06-26;1434.87;11805.7;13949;11600;13140.3 +2019-06-25;486.81;10968.7;11809.5;10958.5;11805.7 +2019-06-24;214.68;10869.6;11041;10601.9;10968.7 +2019-06-23;285.61;10728.8;11260;10520.3;10869.6 +2019-06-22;805.43;10169.2;11181.8;10031.4;10728.8 +2019-06-21;430.91;9504.4;10198.1;9504.4;10169.2 +2019-06-20;224.64;9278.7;9575.7;9200.1;9504.4 +2019-06-19;170.62;9095.2;9315.8;9055.7;9278.7 +2019-06-18;298.85;9290.4;9331.2;8958.1;9095.2 +2019-06-17;246.72;8980.8;9445;8978.2;9290.4 +2019-06-16;524.71;8820.5;9348.9;8791;8980.8 +2019-06-15;177.88;8711.6;8877.7;8612.3;8820.5 +2019-06-14;219.82;8298.2;8737.2;8222;8711.6 +2019-06-13;149.22;8184.9;8350.9;8080;8298.2 +2019-06-12;237.97;7962.9;8261.2;7870.2;8184.9 +2019-06-11;161.21;8064.9;8094;7785.1;7962.9 +2019-06-10;241.87;7697.3;8096.3;7578.6;8064.9 +2019-06-09;185.55;7985;8000;7550;7697.3 +2019-06-08;104.06;8084.8;8127.3;7864.2;7985 +2019-06-07;212.61;7859;8167.9;7813.3;8084.8 +2019-06-06;259.68;7866.9;7931;7550;7859 +2019-06-05;306.4;7749.9;7950;7607.6;7866.9 +2019-06-04;764.4;8224.1;8226.2;7550;7749.9 +2019-06-03;327.74;8735;8754.2;8173.3;8224.1 +2019-06-02;202.67;8633.9;8844.9;8611.4;8735 +2019-06-01;148.48;8647.8;8727.9;8545.6;8633.9 +2019-05-31;330.5;8377;8654.9;8218.5;8647.8 +2019-05-30;497.69;8707.6;9110.5;8110;8377 +2019-05-29;233.07;8702.2;8787.9;8413.1;8707.6 +2019-05-28;159.32;8663.6;8748.9;8587.3;8702.2 +2019-05-27;307.39;8613.8;8823.7;8550;8663.6 +2019-05-26;438.96;8060;8681.4;7901;8613.8 +2019-05-25;130.33;8021;8139.9;7972.8;8060 +2019-05-24;248.34;7929.4;8168.4;7874.5;8021 +2019-05-23;254.39;7686.8;7994.4;7600;7929.4 +2019-05-22;253.82;7949.6;8009.8;7600;7686.8 +2019-05-21;221.51;7950;8025;7805;7949.6 +2019-05-20;450.56;8171.5;8171.5;7600;7950 +2019-05-19;521.58;7380.4;8275.8;7369.9;8171.5 +2019-05-18;300.99;7470.7;7624.7;7301.6;7380.4 +2019-05-17;807.91;8020.6;8060;6951.3;7470.7 +2019-05-16;778.76;8175.4;8341.7;7850;8020.6 +2019-05-15;306.9;8005.3;8252.9;7900;8175.4 +2019-05-14;685.5;7907.1;8405;7680.1;8005.3 +2019-05-13;903.51;6944.9;8179.4;6901.4;7907.1 +2019-05-12;774.82;7057.2;7466.7;6678;6944.9 +2019-05-11;872.2;6421.1;7269.9;6421.1;7057.2 +2019-05-10;412.76;6249.8;6487.1;6211.3;6421.1 +2019-05-09;261.92;5982.6;6257.8;5981.8;6249.8 +2019-05-08;167.14;5797.6;5992.1;5751.7;5982.6 +2019-05-07;220.93;5760;5973.2;5757;5949.9 +2019-05-06;263.08;5794.6;5828;5650;5760 +2019-05-05;167.37;5821.5;5841;5715.1;5794.6 +2019-05-04;379.94;5693.7;5869.1;5550.8;5821.5 +2019-05-03;467.57;5436.6;5799.9;5404.9;5693.7 +2019-05-02;169.0;5354.2;5448.8;5343;5436.6 +2019-05-01;143.73;5317.1;5386.6;5299.3;5354.2 +2019-04-30;289.57;5255.8;5335.6;5205;5317.1 +2019-04-29;233.24;5272.5;5300.9;5194;5255.8 +2019-04-28;137.7;5281;5301.4;5230.1;5272.5 +2019-04-27;83.18;5243.3;5319.5;5221;5281 +2019-04-26;310.15;5216.9;5400;5167.3;5243.3 +2019-04-25;357.23;5497.7;5575.6;5105.1;5216.9 +2019-04-24;297.32;5574.2;5676.9;5439.8;5497.7 +2019-04-23;226.3;5405.8;5641.4;5379.5;5574.2 +2019-04-22;223.53;5348.5;5450;5308.4;5405.8 +2019-04-21;109.22;5365.4;5370;5270.1;5348.5 +2019-04-20;110.37;5328.7;5370;5316.2;5365.4 +2019-04-19;221.46;5355.7;5355.9;5270.9;5328.7 +2019-04-18;150.95;5307.4;5372.2;5270.9;5355.7 +2019-04-17;116.87;5287.3;5330;5257.4;5307.4 +2019-04-16;490.85;5142.1;5324.8;5133.4;5287.3 +2019-04-15;318.08;5247.8;5279.7;5075.9;5142.1 +2019-04-14;69.43;5169;5274.9;5134.7;5247.8 +2019-04-13;90.22;5166.7;5200;5141.5;5169 +2019-04-12;134.71;5142;5196.7;5025;5166.7 +2019-04-11;245.69;5396.2;5413.9;5077;5142 +2019-04-10;200.01;5282.2;5509.7;5256.7;5396.2 +2019-04-09;154.84;5345;5345;5233.2;5282.2 +2019-04-08;224.49;5209.7;5364.4;5194.1;5345 +2019-04-07;145.01;5117.7;5273.3;5101.7;5209.7 +2019-04-06;164.93;5079.9;5270.1;5001;5117.7 +2019-04-05;139.19;4950.4;5100;4950.4;5079.9 +2019-04-04;250.37;4980;5102.3;4835;4950.4 +2019-04-03;792.81;4962.1;5349.2;4850;4980 +2019-04-02;794.67;4212;4981;4195.5;4962.1 +2019-04-01;171.5;4150;4240.5;4120.1;4212 +2019-03-19;3.91;4036.4;4042.3;4030.2;4038.7 +2019-03-18;220.58;4033.1;4059;3997.9;4036.4 +2019-03-17;116.24;4038.3;4043.2;4009.8;4033.1 +2019-03-16;163.21;3980.7;4089.7;3973.8;4038.3 +2019-03-15;147.86;3931;3983.1;3924;3980.7 +2019-03-14;165.9;3932;3965.9;3865.8;3931 +2019-03-13;175.98;3933.7;3952;3915.6;3932 +2019-03-12;183.07;3921.8;3957.7;3883.2;3933.7 +2019-03-11;158.48;3953.9;3967;3879.4;3921.8 +2019-03-10;126.52;3973.2;3975.2;3925;3953.9 +2019-03-09;140.98;3893;3992.5;3893;3973.2 +2019-03-08;179.08;3898.9;3949;3806.5;3893 +2019-03-07;161.85;3903.8;3930;3877.1;3898.9 +2019-03-06;141.21;3915.2;3945;3871.3;3903.8 +2019-03-05;233.57;3785.5;3930;3775.2;3915.2 +2019-03-04;473.09;3865.4;3883.4;3757.7;3785.5 +2019-03-03;99.75;3876;3891;3833.7;3865.4 +2019-03-02;73.92;3860.2;3881.9;3831;3876 +2019-03-01;133.19;3847.9;3898;3842.7;3860.2 +2019-02-28;156.01;3850.8;3936.7;3811.6;3847.9 +2019-02-27;203.5;3850.9;3870.6;3729.9;3850.8 +2019-02-26;139.46;3869.8;3876;3808;3850.9 +2019-02-25;226.1;3765.5;3898.1;3765.5;3869.8 +2019-02-24;836.87;4111;4194.2;3750;3765.5 +2019-02-23;242.37;3957.9;4150;3937.5;4111 +2019-02-22;6.4;3926.1;3943.5;3922.7;3943.5 +2019-02-21;311.49;3994.8;4036.9;3917.9;3928.6 +2019-02-20;155.82;3945.6;4000;3913.1;3994.8 +2019-02-19;230.36;3904.1;4000;3882.9;3945.6 +2019-02-18;578.5;3668;3933.6;3641.2;3904.1 +2019-02-17;482.65;3697.2;3787.9;3600;3668 +2019-02-16;99.96;3682.3;3710;3681.2;3697.2 +2019-02-15;133.62;3677.2;3710;3658.7;3682.3 +2019-02-14;159.07;3684.9;3699.9;3658.6;3677.2 +2019-02-13;110.31;3696;3726.7;3667.2;3684.9 +2019-02-12;140.44;3698.9;3726.8;3658.6;3696 +2019-02-11;169.32;3751.9;3751.9;3670;3698.9 +2019-02-10;143.12;3709.5;3751.9;3673.4;3751.9 +2019-02-09;176.33;3722.3;3742;3684;3709.5 +2019-02-08;413.35;3481.8;3802.5;3477.6;3722.3 +2019-02-07;143.79;3482.3;3499;3468.9;3481.8 +2019-02-06;179.22;3525;3537;3451.5;3482.3 +2019-02-05;95.88;3505.9;3525;3498.1;3525 +2019-02-04;94.5;3495.1;3518.9;3488.1;3505.9 +2019-02-03;136.25;3544.6;3544.6;3480;3495.1 +2019-02-02;95.27;3501.6;3552.5;3489.1;3544.6 +2019-02-01;159.65;3493.6;3520;3460.2;3501.6 +2019-01-31;180.29;3505.5;3542.2;3466.8;3493.6 +2019-01-30;182.88;3459.4;3525;3434.8;3505.5 +2019-01-29;167.94;3493;3500.1;3410.6;3459.4 +2019-01-28;360.92;3598.8;3598.9;3450.5;3493 +2019-01-27;199.62;3613.5;3633.9;3538.6;3598.8 +2019-01-26;248.4;3612;3697.9;3585;3613.5 +2019-01-25;182.38;3613;3621;3564.7;3612 +2019-01-24;183.25;3590;3629.5;3574.9;3613 +2019-01-23;208.28;3623.6;3650;3571;3590 +2019-01-22;351.52;3597.9;3652.3;3517.7;3623.6 +2019-01-21;175.1;3602;3627.9;3553.9;3597.9 +2019-01-20;294.65;3738.5;3753.4;3541.5;3602 +2019-01-19;252.97;3682.4;3812.8;3675.1;3738.5 +2019-01-18;493.8;3709.8;3710.9;3646.4;3682.4 +2019-01-17;552.9;3672.6;3723.7;3630.1;3709.8 +2019-01-16;396.3;3670.7;3735.1;3652.1;3672.6 +2019-01-15;252.59;3721.8;3748.2;3637.3;3670.7 +2019-01-14;349.0;3590.5;3791.3;3579.4;3721.8 +2019-01-13;271.68;3720;3721.9;3570;3590.5 +2019-01-12;155.34;3751.9;3759.6;3677.2;3720 +2019-01-11;267.32;3715;3783.3;3689.2;3751.9 +2019-01-10;478.57;4048.8;4081.9;3666.3;3715 +2019-01-09;173.79;4044.4;4093;4015;4048.8 +2019-01-08;230.58;4045.3;4138.7;4000;4044.4 +2019-01-07;374.03;4086.1;4100;4000;4045.3 +2019-01-06;312.46;3865.1;4121;3840.6;4086.1 +2019-01-05;191.18;3911.7;3949;3849.9;3865.1 +2019-01-04;178.48;3883.1;3931.3;3807;3911.7 +2019-01-03;206.13;3971.5;3990.5;3841.1;3883.1 +2019-01-02;271.87;3942.7;4000;3893.8;3971.5 +2019-01-01;191.01;3830.5;3965.9;3777.3;3942.7 +2018-12-31;247.3;3941.4;3954.7;3780;3830.5 +2018-12-30;409.87;3815.6;3965.6;3770.3;3941.4 +2018-12-29;586.55;3981.6;4021;3800;3815.6 +2018-12-28;914.08;3722.6;4064.4;3710.8;3981.6 +2018-12-27;335.31;3929.8;3954.8;3696;3722.6 +2018-12-26;312.29;3896.2;3976;3823.8;3929.8 +2018-12-25;444.46;4090.5;4111.6;3790.5;3896.2 +2018-12-24;969.43;3993.8;4274.2;3993.8;4090.5 +2018-12-23;582.36;4047.4;4099.8;3950.2;3993.8 +2018-12-22;567.89;3894.2;4067.3;3849.1;4047.4 +2018-12-21;910.89;4106.8;4184.9;3820;3894.2 +2018-12-20;1135.1;3731.2;4194.2;3701.2;4106.8 +2018-12-19;1018.9;3686.8;3987.8;3664.5;3731.2 +2018-12-18;733.98;3544.6;3699.7;3480.5;3686.8 +2018-12-17;862.58;3280;3625.4;3264.5;3544.6 +2018-12-16;546.59;3255.2;3325.7;3248.1;3280 +2018-12-15;612.36;3243.7;3294;3200;3255.2 +2018-12-14;761.24;3330.5;3368.2;3205;3243.7 +2018-12-13;609.25;3477.5;3485;3296.5;3330.5 +2018-12-12;630.86;3425;3548.6;3392.1;3477.5 +2018-12-11;598.6;3466.5;3491.4;3371.6;3421.2 +2018-12-10;752.07;3579.8;3639.2;3406.1;3466.5 +2018-12-09;832.42;3464.1;3679.2;3430;3579.8 +2018-12-08;930.46;3451.2;3542.2;3330;3464.1 +2018-12-07;1372.5;3528.7;3624.2;3301.1;3451.2 +2018-12-06;1223.58;3776.3;3916.3;3521;3528.7 +2018-12-05;591.16;3942.3;3954.5;3755;3776.3 +2018-12-04;851.76;3885.7;4062;3800;3942.3 +2018-12-03;847.35;4163.2;4172.3;3813.5;3885.7 +2018-12-02;530.48;4178.4;4290;4090;4163.2 +2018-12-01;693.1;4023.6;4288.2;3965;4178.4 +2018-11-30;917.27;4278.1;4320;3916.1;4018.8 +2018-11-29;929.21;4250.2;4438.2;4106.9;4278.1 +2018-11-28;1323.57;3847.1;4400;3843.5;4250.2 +2018-11-27;1256.57;3856.3;3900;3680;3847.1 +2018-11-26;1845.88;4059.5;4186;3673.4;3856.3 +2018-11-25;1879.68;3884.2;4309.7;3535.1;4059.5 +2018-11-24;1115.07;4377.7;4470;3800;3884.2 +2018-11-23;1080.45;4358.2;4479;4225.5;4377.7 +2018-11-22;787.56;4661.5;4695;4353.1;4358.2 +2018-11-21;1128.29;4494.2;4749.5;4341.5;4661.5 +2018-11-20;2025.14;4807.6;4949.4;4230.1;4494.2 +2018-11-19;1378.34;5612.8;5621.6;4670;4807.6 +2018-11-18;533.01;5580.6;5689.8;5580.6;5612.8 +2018-11-17;528.68;5640.6;5654.8;5560.1;5580.6 +2018-11-16;678.29;5727.7;5755;5559;5640.6 +2018-11-15;949.05;5809.9;5858.9;5200;5727.7 +2018-11-14;1262.52;6329.9;6364.1;5547.6;5809.9 +2018-11-13;555.57;6355.9;6381.2;6312.2;6329.9 +2018-11-12;468.81;6373.5;6399.2;6339.3;6355.9 +2018-11-11;516.65;6365.9;6376.1;6302;6373.5 +2018-11-10;499.44;6360.8;6407.2;6354.4;6365.9 +2018-11-09;546.77;6408.7;6423.1;6351.1;6360.8 +2018-11-08;568.88;6489;6496;6395;6408.7 +2018-11-07;585.52;6451.6;6530;6446.3;6489 +2018-11-06;633.37;6429.5;6452.5;6402.8;6451.6 +2018-11-05;556.55;6451.6;6473;6420;6429.5 +2018-11-04;557.64;6391.9;6500;6371.4;6451.6 +2018-11-03;535.49;6434.7;6440.2;6380;6391.9 +2018-11-02;533.24;6405.8;6458.5;6400.3;6434.7 +2018-11-01;586.37;6407.7;6449.8;6390.1;6405.8 +2018-10-31;528.12;6387;6499.4;6320;6407.7 +2018-10-30;480.2;6382.2;6411;6376.5;6387 +2018-10-29;584.69;6504.9;6530;6370;6382.2 +2018-10-28;445.34;6507.9;6514.3;6477.2;6504.9 +2018-10-27;586.25;6481.5;6644.2;6480.2;6507.9 +2018-10-26;495.13;6517.9;6559.9;6476.4;6481.5 +2018-10-25;519.98;6550.1;6566.2;6515;6517.9 +2018-10-24;506.57;6528.4;6569;6522.8;6550.1 +2018-10-23;515.69;6566.1;6576;6509.8;6528.4 +2018-10-22;551.68;6557.9;6579.7;6530.7;6566.1 +2018-10-21;447.89;6537.7;6589;6537;6557.9 +2018-10-20;466.49;6532.7;6589;6520;6537.7 +2018-10-19;546.6;6574.6;6629.2;6521.1;6532.7 +2018-10-18;558.69;6641.2;6675.4;6561.7;6574.6 +2018-10-17;481.11;6665.9;6687.9;6562.9;6641.2 +2018-10-16;0.0;6641.1;6641.1;6621.9;6621.9 +2018-10-15;1598.18;6337.6;7100;6300.1;6641.1 +2018-10-14;375.62;6324.7;6397.9;6312;6337.6 +2018-10-13;355.77;6317.8;6340;6300.1;6324.7 +2018-10-12;490.97;6277.4;6346;6228;6317.8 +2018-10-11;883.91;6621.3;6629.7;6240;6277.4 +2018-10-10;528.9;6640.3;6648.9;6550;6621.3 +2018-10-09;241.25;6657.5;6674;6595;6640.3 +2018-10-08;331.85;6574;6679.8;6543.2;6657.5 +2018-10-07;248.47;6572.6;6600;6520;6574 +2018-10-06;162.85;6609.1;6617.3;6540;6572.6 +2018-10-05;230.76;6557.2;6645;6540;6609.1 +2018-10-04;257.5;6482;6590;6465.1;6557.2 +2018-10-03;370.97;6537;6550;6450;6482 +2018-10-02;336.29;6588.6;6614.5;6500;6537 +2018-10-01;404.21;6607.8;6645;6510;6588.6 +2018-09-30;240.41;6617.1;6650;6540.3;6607.8 +2018-09-29;284.4;6655.3;6655.3;6500.1;6617.1 +2018-09-28;539.14;6678.4;6768;6570.2;6655.3 +2018-09-27;376.41;6473.1;6748.9;6449.4;6678.4 +2018-09-26;418.43;6443;6536.4;6387.6;6473.1 +2018-09-25;384.0;6579;6579;6348;6443 +2018-09-24;337.07;6672.4;6697.7;6541;6579 +2018-09-23;326.23;6695.6;6775.2;6635;6672.4 +2018-09-22;556.97;6745.9;6820.3;6605.9;6695.6 +2018-09-21;865.35;6454.2;6792.1;6448.3;6745.9 +2018-09-20;475.74;6367.3;6512.9;6327.7;6454.2 +2018-09-19;700.75;6344.9;6466.1;6118.1;6367.3 +2018-09-18;829.19;6271.5;6399.7;6244.3;6344.9 +2018-09-17;439.22;6518;6537.6;6230;6271.5 +2018-09-16;298.03;6522.6;6541.7;6388.6;6518 +2018-09-15;234.07;6478.4;6560;6466.7;6522.6 +2018-09-14;343.17;6478.5;6572;6363.4;6478.4 +2018-09-13;424.03;6332.3;6536.5;6332.3;6478.5 +2018-09-12;306.47;6290.7;6347;6211;6332.3 +2018-09-11;313.66;6332.8;6429.9;6200;6290.7 +2018-09-10;320.53;6302.6;6416;6287;6332.8 +2018-09-09;335.21;6231.1;6475;6205.1;6302.6 +2018-09-08;461.15;6415;6475;6200;6231.1 +2018-09-07;428.08;6516.4;6579.8;6356.6;6415 +2018-09-06;891.56;6654.3;6690.1;6267.9;6516.4 +2018-09-05;766.16;7289.1;7337.5;6653.1;6654.3 +2018-09-04;302.52;7175.3;7323;7160;7289.1 +2018-09-03;334.65;7181.7;7258;7111.4;7175.3 +2018-09-02;259.16;7122.1;7270;7085.1;7181.7 +2018-09-01;352.13;6946.5;7199.9;6945.1;7122.1 +2018-08-31;341.41;6949.8;7035.8;6850;6946.5 +2018-08-30;356.56;7000;7014.4;6783.6;6949.8 +2018-08-29;368.46;7022;7099.8;6884.6;7000 +2018-08-28;468.01;6837.5;7061.9;6803;7022 +2018-08-27;212.53;6715;6873.9;6656.6;6837.5 +2018-08-26;139.73;6713.4;6743.9;6574;6715 +2018-08-25;235.85;6654.8;6777.5;6634.5;6713.4 +2018-08-24;255.71;6522.1;6682.2;6450.1;6654.8 +2018-08-23;267.55;6372.3;6558.6;6372.1;6522.1 +2018-08-22;735.18;6482.9;6867;6280.5;6372.3 +2018-08-21;275.71;6295.3;6499;6289.2;6482.9 +2018-08-20;295.86;6475.4;6524.9;6260;6295.3 +2018-08-19;254.8;6408.1;6550;6333.4;6475.4 +2018-08-18;372.75;6569.8;6618.8;6302;6408.1 +2018-08-17;566.55;6348.7;6571;6323.1;6569.8 +2018-08-16;421.42;6310.2;6489.5;6255;6348.7 +2018-08-15;671.57;6219.3;6639.9;6219.3;6310.2 +2018-08-14;650.42;6306.5;6333.1;5941.7;6219.3 +2018-08-13;479.77;6337.3;6587;6163.5;6306.5 +2018-08-12;0.0;6156;6156;6156;6156 +2018-08-11;214.88;6169.4;6228.9;6040.1;6156 +2018-08-10;675.84;6551.8;6597.6;6018.7;6169.4 +2018-08-09;614.33;6353.9;6648.9;6203.4;6551.8 +2018-08-08;963.36;6735.6;6743.8;6121;6309.4 +2018-08-07;551.6;6949.6;7135.4;6700;6735.6 +2018-08-06;452.28;7024.6;7184.5;6853.4;6949.6 +2018-08-05;490.03;7023.9;7111.3;6909.4;7024.6 +2018-08-04;673.67;7401;7494.8;6926.2;7023.9 +2018-08-03;409.93;7559.9;7559.9;7320.4;7401 +2018-08-02;150.87;7630;7728;7491;7559.9 +2018-08-01;504.14;7816.4;7816.4;7491;7630 +2018-07-31;1062.29;8131.2;8131.2;7633.2;7816.4 +2018-07-30;1361.53;8157.2;8199;7855;8131.2 +2018-07-29;77.95;8136;8189;8066.8;8157.2 +2018-07-28;145.62;8081.9;8150;8034;8136 +2018-07-27;337.16;7872;8179.9;7711;8081.9 +2018-07-26;296.41;8093;8218.8;7800;7872 +2018-07-25;549.62;8287.8;8374;7907.3;8093 +2018-07-24;582.33;7658.4;8358.3;7636.3;8287.8 +2018-07-23;341.29;7373;7725;7366.2;7658.4 +2018-07-22;130.55;7383.2;7520;7310.1;7373 +2018-07-21;110.51;7319.9;7428.9;7225;7383.2 +2018-07-20;301.42;7426.2;7631.3;7250.2;7319.9 +2018-07-19;227.85;7340.9;7482.9;7252.4;7426.2 +2018-07-18;419.44;7251.1;7500;7191.6;7340.9 +2018-07-17;621.09;6689.1;7379.9;6621.9;7251.1 +2018-07-16;329.97;6352.6;6700;6341;6689.1 +2018-07-15;136.93;6261.4;6390;6228.2;6352.6 +2018-07-14;127.83;6217.8;6331.9;6200.1;6261.4 +2018-07-13;224.39;6255.3;6363.3;6126.7;6217.8 +2018-07-12;249.64;6382.1;6387.2;6103.2;6255.3 +2018-07-11;218.27;6330;6424.9;6300;6382.1 +2018-07-10;314.89;6641.2;6662.7;6315.3;6330 +2018-07-09;158.04;6692.9;6750;6611.3;6641.2 +2018-07-08;201.15;6712.2;6773.6;6677;6692.9 +2018-07-07;178.8;6593.5;6741.8;6531.1;6712.2 +2018-07-06;233.42;6563.9;6657.4;6460.2;6593.5 +2018-07-05;247.28;6562;6690;6465;6563.9 +2018-07-04;304.4;6506.1;6741.7;6447;6562 +2018-07-03;294.04;6651.5;6672.8;6478;6506.1 +2018-07-02;407.86;6366.5;6683.8;6306.9;6651.5 +2018-07-01;156.88;6407.3;6448.2;6263.7;6366.5 +2018-06-30;391.31;6242;6462.2;6224.5;6407.3 +2018-06-29;431.95;5946.4;6339;5880;6242 +2018-06-28;260.23;6199.8;6224;5920.1;5946.4 +2018-06-27;254.18;6126.1;6225;6099.4;6199.8 +2018-06-26;271.16;6317.9;6347.5;6126.1;6126.1 +2018-06-25;485.3;6224.4;6418.7;6152.9;6317.9 +2018-06-24;759.52;6211.7;6335.7;5830.8;6224.4 +2018-06-23;257.74;6162.1;6289;6100;6211.7 +2018-06-22;794.3;6737.6;6739.9;6031.1;6162.1 +2018-06-21;140.55;6749.9;6791.7;6701;6737.6 +2018-06-20;295.76;6767.8;6820;6600;6749.9 +2018-06-19;248.68;6750.4;6892;6686.9;6767.8 +2018-06-18;473.95;6558.9;6805.7;6483;6750.4 +2018-06-17;168.23;6584.1;6644.6;6494.9;6558.9 +2018-06-16;196.64;6470.1;6671;6430.1;6584.1 +2018-06-15;331.66;6719.9;6730;6455.1;6470.1 +2018-06-14;471.29;6414.2;6789;6408.2;6719.9 +2018-06-13;603.86;6663;6777;6305;6414.2 +2018-06-12;547.44;6963.9;6980;6602.8;6663 +2018-06-11;573.43;6907.1;6980;6783;6963.9 +2018-06-10;1096.09;7543.5;7550;6801;6907.1 +2018-06-09;166.49;7649.1;7688.1;7518.4;7543.5 +2018-06-08;211.63;7688.4;7700;7550;7649.1 +2018-06-07;229.86;7654.7;7750;7654.7;7688.4 +2018-06-06;359.22;7636.6;7699;7515;7654.7 +2018-06-05;424.38;7578.5;7700;7435.1;7636.6 +2018-06-04;424.94;7717;7757.9;7500;7578.5 +2018-06-03;359.38;7682.6;7779.8;7650;7717 +2018-06-02;233.8;7586.4;7753.7;7525;7682.6 +2018-06-01;370.72;7534.7;7721.8;7400;7586.4 +2018-05-31;363.99;7436.4;7668.8;7400.6;7534.7 +2018-05-30;316.78;7544.9;7643.6;7321.9;7436.4 +2018-05-29;544.56;7209.7;7595;7156;7544.9 +2018-05-28;668.81;7472.8;7541.1;7168.1;7209.7 +2018-05-27;312.16;7454.2;7497.8;7348;7472.8 +2018-05-26;257.58;7557.7;7725.2;7400;7454.2 +2018-05-25;470.31;7646.6;7700.6;7451.1;7557.7 +2018-05-24;775.42;7644.7;7872.8;7376.2;7646.6 +2018-05-23;761.74;8094.3;8140.4;7587;7644.7 +2018-05-22;399.26;8487;8500;8069.4;8094.3 +2018-05-21;382.63;8619.6;8710.7;8381.6;8487 +2018-05-20;403.14;8324.7;8682.5;8279;8619.6 +2018-05-19;325.66;8323.9;8438.7;8220;8324.7 +2018-05-18;400.94;8200.6;8385.2;8101.1;8323.9 +2018-05-17;586.62;8442.7;8550;8194.3;8200.6 +2018-05-16;852.07;8591.4;8609.9;8254.6;8442.7 +2018-05-15;467.27;8704.5;8880;8530.1;8591.4 +2018-05-14;765.99;8835;8927.6;8490.1;8704.5 +2018-05-13;472.24;8615.8;8918.8;8545;8835 +2018-05-12;786.58;8529.6;8809.9;8410;8615.8 +2018-05-11;1049.41;9095.8;9121.3;8500.2;8529.6 +2018-05-10;482.5;9332;9396.8;9063.1;9095.8 +2018-05-09;479.99;9236.7;9379.3;9057.2;9332 +2018-05-08;654.21;9384.7;9499.9;9110;9236.7 +2018-05-07;520.62;9639.8;9645.3;9226;9384.7 +2018-05-06;504.32;9783.8;9858.1;9450.1;9639.8 +2018-05-05;677.53;9664.9;9900;9630.8;9783.8 +2018-05-04;568.54;9680;9749;9473;9664.9 +2018-05-03;839.62;9184.5;9700;9146.2;9680 +2018-05-02;351.92;9058.9;9209.4;9000;9184.5 +2018-05-01;540.29;9274.6;9275.7;8877.1;9058.9 +2018-04-30;437.14;9398;9420.2;9170;9274.6 +2018-04-29;468.64;9349;9474.9;9227;9398 +2018-04-28;585.93;8993.5;9449;8943.2;9349 +2018-04-27;810.99;9278.4;9390;8940.1;8993.5 +2018-04-26;731.3;8912.7;9300;8700;9278.4 +2018-04-25;1461.28;9629;9725;8800;8912.7 +2018-04-24;1078.02;8945.5;9699;8912.3;9629 +2018-04-23;385.35;8824.2;8997;8783;8945.5 +2018-04-22;627.42;8890.3;9054.8;8760;8824.2 +2018-04-21;946.7;8871.3;9120;8600;8890.3 +2018-04-20;948.74;8276.7;8942.5;8215.3;8871.3 +2018-04-19;512.32;8155.6;8317;8102;8276.7 +2018-04-18;669.58;7926.9;8200;7903.6;8155.6 +2018-04-17;620.93;8040;8177.9;7830.9;7926.9 +2018-04-16;793.12;8308.2;8380;7900;8040 +2018-04-15;600.5;7988.5;8387.9;7988.5;8308.2 +2018-04-14;685.11;7862.4;8150;7840.1;7988.5 +2018-04-13;1263.93;7924.1;8234.2;7715.6;7862.4 +2018-04-12;2193.66;6944.3;7984;6734;7924.1 +2018-04-11;286.51;6841.3;6950;6781;6944.3 +2018-04-10;428.43;6772.8;6874.9;6681.1;6841.3 +2018-04-09;919.69;6988.1;7140;6646.9;6772.8 +2018-04-08;436.84;6884.2;7079.7;6869.5;6988.1 +2018-04-07;740.02;6644.1;7060;6644.1;6884.2 +2018-04-06;705.68;6829.9;6922.5;6539;6644.1 +2018-04-05;1119.84;6894.3;7000;6677;6829.9 +2018-04-04;1424.6;7488.8;7501.3;6801;6894.3 +2018-04-03;1099.91;7109.4;7659.7;7080.5;7488.8 +2018-04-02;918.23;6910.5;7238.7;6852.9;7109.4 +2018-04-01;1230.0;6997.4;7117.1;6538.4;6910.5 +2018-03-31;959.5;6974;7300;6900.1;6997.4 +2018-03-30;2153.43;7222;7458;6700;6974 +2018-03-29;1595.7;8111.5;8124;7101.2;7222 +2018-03-28;632.46;7978.9;8250;7936;8111.5 +2018-03-27;1111.23;8307.7;8389.7;7935;7978.9 +2018-03-26;1291.1;8545;8626.5;7986.8;8307.7 +2018-03-25;845.47;8678.9;8824.6;8500;8545 +2018-03-24;925.83;8977;9075.3;8650;8678.9 +2018-03-23;1075.61;8815.1;8995;8310.3;8977 +2018-03-22;1048.01;9072.9;9195.8;8600;8815.1 +2018-03-21;1301.53;9006.3;9304.5;8795.2;9072.9 +2018-03-20;1215.11;8700.5;9194;8440;9006.3 +2018-03-19;2108.14;8356.1;8881.2;8251.6;8700.5 +2018-03-18;2517.64;8052.8;8399.7;7469.1;8356.1 +2018-03-17;1331.6;8400;8505.1;7907.5;8052.8 +2018-03-16;1217.75;8455.2;8740;8120.1;8400 +2018-03-15;2279.82;8387.2;8599.9;7880.1;8455.2 +2018-03-14;2035.96;9334;9576.8;8042.3;8387.2 +2018-03-13;1720.13;9329.8;9718.2;9069;9334 +2018-03-12;2553.75;9790;10148.4;9011;9329.8 +2018-03-11;2369.62;9069.1;9953.4;8730.2;9790 +2018-03-10;1581.14;9546.8;9845.7;8950;9069.1 +2018-03-09;3382.66;9627.3;9727.7;8646.9;9546.8 +2018-03-08;1799.88;10265;10414.3;9400.1;9627.3 +2018-03-07;1876.49;10923.9;11094.1;9653.1;10265 +2018-03-06;1533.99;11505;11573.4;10800;10923.9 +2018-03-05;920.51;11630.4;11750;11501.3;11505 +2018-03-04;903.3;11609.7;11677.6;11250.1;11630.4 +2018-03-03;1157.11;11236.7;11703.4;11219.1;11609.7 +2018-03-02;1296.55;11052.7;11300;10938.9;11236.7 +2018-03-01;1100.82;10541;11178.3;10452.8;11052.7 +2018-02-28;1469.79;10700.4;11284.5;10493.3;10541 +2018-02-27;1291.02;10455.5;11088.1;10351;10700.4 +2018-02-26;1779.95;9769.3;10615;9567.5;10455.5 +2018-02-25;1162.38;9887.8;10100;9521.1;9769.3 +2018-02-24;1706.01;10300.2;10680;9555;9887.8 +2018-02-23;1989.5;10055;10550;9827;10300.2 +2018-02-22;2328.86;10674.5;11124.5;9850.3;10055 +2018-02-21;2848.07;11509.9;11628;10405;10674.5 +2018-02-20;2316.01;11376;12021.3;11350;11509.9 +2018-02-19;1930.88;10691.2;11431.3;10600;11376 +2018-02-18;2275.79;11286.1;11536.8;10387;10691.2 +2018-02-17;1967.17;10351.9;11395.4;10216.6;11286.1 +2018-02-16;1809.4;10234;10500;9940.3;10351.9 +2018-02-15;2745.74;9679.1;10398.7;9522.4;10234 +2018-02-14;1987.94;8778.2;9699.8;8772.4;9679.1 +2018-02-13;1608.16;9000;9050;8575.2;8778.2 +2018-02-12;2031.78;8252;9079.9;8241.2;9000 +2018-02-11;2038.37;8692.8;8696.1;8058.4;8252 +2018-02-10;2550.81;8789.1;9199.7;8315;8692.8 +2018-02-09;2579.58;8494.3;8868.6;8065.9;8789.1 +2018-02-08;3318.15;7873.2;8900;7813.9;8494.3 +2018-02-07;3969.97;7967.1;8910.4;7505.1;7873.2 +2018-02-06;6719.44;7065.9;8400;6115;7967.1 +2018-02-05;4736.54;8615.2;8799;6700;7065.9 +2018-02-04;2469.16;9528.3;9800;8300;8615.2 +2018-02-03;1999.15;9162.2;9858.2;8500.1;9528.3 +2018-02-02;4612.8;9318;9600;7500;9162.2 +2018-02-01;3076.59;10715;10733;8368.8;9318 +2018-01-31;1495.3;10715.9;10902.5;10258.72;10715 +2018-01-30;2074.06;11774.3;11821.7;10501;10715.9 +2018-01-29;1066.95;12105.2;12200;11570;11774.3 +2018-01-28;999.87;11857.9;12299.9;11750;12105.2 +2018-01-27;1254.69;11721.1;12099;11500;11857.9 +2018-01-26;1719.18;11709.9;12188;10955;11721.1 +2018-01-25;1308.88;12110;12348;11608.3;11709.9 +2018-01-24;1633.43;11581.9;12150;11250;12110 +2018-01-23;1811.19;11608.9;12130.6;10658.9;11581.9 +2018-01-22;1811.88;12315.18;12800;10830.62;11608.9 +2018-01-21;1652.57;13591.71;13591.71;11963.65;12315.18 +2018-01-20;1371.28;12251.88;13780.5;12238.96;13591.71 +2018-01-19;1421.06;11965.63;12700;11621.91;12251.88 +2018-01-18;3012.52;11835.23;12740;11400;11965.63 +2018-01-17;5010.64;11975.04;12490;9653.73;11835.23 +2018-01-16;5535.97;14734.7;14737.31;10010;11975.04 +2018-01-15;941.01;14855.9;15262.55;14602.19;14734.7 +2018-01-14;851.82;15360;15525.45;14527.79;14855.9 +2018-01-13;876.46;15143.09;15679.85;15058.91;15360 +2018-01-12;1091.54;14554.52;15499;14255;15143.09 +2018-01-11;2367.07;16269.09;16300;14255.01;14554.52 +2018-01-10;1871.54;15999.41;16276.45;14200;16269.09 +2018-01-09;1488.56;16663.65;17130;15715.14;15999.41 +2018-01-08;1983.96;17692.08;17857.66;15775.66;16663.65 +2018-01-07;1151.25;18324.85;18364.99;17350.04;17692.08 +2018-01-06;1294.68;18187.9;18379.96;17510.02;18324.85 +2018-01-05;2197.46;16250;18380;16059.84;18187.9 +2018-01-04;1660.81;16041;16300;15500;16250 +2018-01-03;1737.32;16010;16560.98;15400;16041 +2018-01-02;1935.47;15222.02;16700;14673.96;16010 +2018-01-01;1356.12;15473.67;15599.02;14551.34;15222.02 +2017-12-31;2072.01;14040.12;15878.39;13767.16;15473.67 +2017-12-30;2856.27;15176.34;15245;13500;14040.12 +2017-12-29;1937.77;15899.85;16300;14605;15176.34 +2017-12-28;2341.27;17145.61;17161.65;15500;15899.85 +2017-12-27;2112.26;17279.86;17750;16300;17145.61 +2017-12-26;2731.0;15756;17760;15665.06;17279.86 +2017-12-25;2122.08;16004.73;16200;15120.01;15756 +2017-12-24;3814.72;16771.94;16881.63;14124.01;16004.73 +2017-12-23;3272.34;15299.24;17900;15051.3;16771.94 +2017-12-22;8250.87;17474.33;17587.99;12550;15299.24 +2017-12-21;2869.85;18291.34;18800;16381.33;17474.33 +2017-12-20;3773.47;19538.32;19790.7;17000;18291.34 +2017-12-19;2257.2;20568.98;20775;18506;19538.32 +2017-12-18;1540.59;20649.97;20957.69;19764.01;20568.98 +2017-12-17;1778.75;20655.03;21283.69;20130;20649.97 +2017-12-16;1676.47;18688.08;20887.67;18543.94;20655.03 +2017-12-15;2047.51;17222.4;18999;17156.85;18688.08 +2017-12-14;1497.74;17195.2;17650;16958.02;17222.4 +2017-12-13;1998.94;17550;17780;16586.1;17195.2 +2017-12-12;2149.74;17252.28;17920;17050.01;17550 +2017-12-11;2927.28;15956.7;17989;15925.04;17252.28 +2017-12-10;4659.29;15687;16899;14011.99;15956.7 +2017-12-09;3887.19;16900.98;17065.01;13040.35;15687 +2017-12-08;4971.86;17483.89;18266.12;14100;16900.98 +2017-12-07;5197.41;14855.08;17500;14441.41;17483.89 +2017-12-06;2808.2;12343.2;14855.11;12342.8;14855.08 +2017-12-05;1374.11;12149;12399;12048.28;12343.2 +2017-12-04;2285.42;11870.76;12150;11610;12149 +2017-12-03;3065.58;11420.3;12259.81;11114.97;11870.76 +2017-12-02;2094.77;11293.64;11687;11099.77;11420.3 +2017-12-01;3000.38;10319.94;11410.99;9910;11293.64 +2017-11-30;4774.86;10520.96;11311;9400;10319.94 +2017-11-29;6984.66;10169.75;11900;8502;10520.96 +2017-11-28;1938.92;9900.01;10299;9818;10169.75 +2017-11-27;2120.8;9372;9949;9371.9;9900.01 +2017-11-26;2297.88;8767.9;9569.59;8767.9;9372 +2017-11-25;1005.75;8227.09;8777;8220.89;8767.9 +2017-11-24;964.29;8102.01;8350;8050.5;8227.09 +2017-11-23;1032.37;8287.36;8348;8102.01;8102.01 +2017-11-22;1144.17;8209.01;8360;8150.05;8287.36 +2017-11-21;2061.09;8266.37;8370;7950;8209.01 +2017-11-20;1303.45;8042.61;8305;8002.77;8266.37 +2017-11-19;1109.94;7845;8120;7792.01;8042.61 +2017-11-18;1278.78;7864.9;7923.22;7700;7845 +2017-11-17;2542.28;7958.32;8110;7661.54;7864.9 +2017-11-16;3238.45;7488.09;8057.19;7321;7958.32 +2017-11-15;3080.13;6813.99;7528.64;6811.44;7488.09 +2017-11-14;1619.48;6775;6950;6641.75;6813.99 +2017-11-13;4194.48;6100.28;7049;6009;6775 +2017-11-12;6661.08;6598.36;6800;5650;6100.28 +2017-11-11;2857.6;6744.98;6998.38;6401.05;6598.36 +2017-11-10;3138.05;7288;7442;6525.1;6744.98 +2017-11-09;872.67;7489.33;7500;7225;7288 +2017-11-08;1575.54;7287.72;7800;7140;7489.33 +2017-11-07;654.19;7252.44;7456.12;7163.8;7287.72 +2017-11-06;2285.46;7644.73;7668.06;7080.01;7252.44 +2017-11-05;1745.22;7485.75;7779.9;7420;7644.73 +2017-11-04;1430.64;7280.1;7550;7100;7485.75 +2017-11-03;2422.48;7166.33;7606.62;7050.01;7280.1 +2017-11-02;3887.58;6799.9;7694.2;6772.44;7166.33 +2017-11-01;1781.35;6441.52;6800;6360.68;6799.9 +2017-10-31;1318.27;6125.59;6460.89;6105.79;6441.52 +2017-10-30;841.3;6130.22;6200;6050;6125.59 +2017-10-29;1307.56;5833.1;6190;5805;6130.22 +2017-10-28;669.13;5825;5920;5780;5833.1 +2017-10-27;843.53;5950.16;6050;5792;5825 +2017-10-26;1376.37;5798.92;6000;5741.15;5950.16 +2017-10-25;1356.51;5568;5800;5445.02;5798.92 +2017-10-24;1709.32;5974.35;6025;5512.83;5568 +2017-10-23;1671.66;6066.68;6101;5746;5974.35 +2017-10-22;1431.92;6065.65;6131.11;5810.25;6066.68 +2017-10-21;1757.19;5993.98;6200;5900;6065.65 +2017-10-20;1857.09;5724.98;6072.4;5662;5993.98 +2017-10-19;1522.11;5669.5;5749.52;5601;5724.98 +2017-10-18;2286.77;5672.92;5690;5201.1;5669.5 +2017-10-17;1029.11;5775.39;5790;5580;5672.92 +2017-10-16;1003.09;5739;5788;5635;5775.39 +2017-10-15;1957.39;5832.94;5869;5520;5739 +2017-10-14;1276.53;5654.02;5850;5592;5832.94 +2017-10-13;3571.35;5449;5878.59;5410;5654.02 +2017-10-12;2859.75;4835;5449;4817.57;5449 +2017-10-11;710.68;4786;4865;4743.21;4835 +2017-10-10;1389.37;4783.04;4920.1;4713.38;4786 +2017-10-09;1468.04;4583.23;4888;4566.75;4783.04 +2017-10-08;954.2;4441;4623.65;4410.25;4583.23 +2017-10-07;451.46;4378.23;4470;4328.05;4441 +2017-10-06;694.75;4351.26;4438.56;4335.63;4378.23 +2017-10-05;800.78;4272.46;4384.92;4191;4351.26 +2017-10-04;698.28;4364.92;4395.79;4230.88;4272.46 +2017-10-03;1008.9;4448.33;4463.9;4260.16;4364.92 +2017-10-02;867.08;4410;4498;4399.25;4448.33 +2017-10-01;512.54;4386;4413.97;4308.52;4410 +2017-09-30;776.41;4213.93;4388.92;4213.93;4386 +2017-09-29;991.43;4244;4299;4085.18;4213.93 +2017-09-28;877.54;4258.68;4350;4200;4244 +2017-09-27;1142.63;3973.8;4264.25;3973.8;4258.68 +2017-09-26;804.71;4023.27;4052.14;3950;3973.8 +2017-09-25;887.49;3779.56;4048.87;3779.56;4023.27 +2017-09-24;588.62;3898.78;3911.87;3771;3779.56 +2017-09-23;1013.53;3773.45;3963.65;3730;3898.78 +2017-09-22;1052.63;3799.81;3920;3692.57;3773.45 +2017-09-21;1429.39;4028.25;4070.4;3755;3799.81 +2017-09-20;749.76;4067.2;4180;4001;4028.25 +2017-09-19;1355.35;4263;4280;4021;4067.2 +2017-09-18;1696.3;3843.33;4283;3843.33;4263 +2017-09-17;959.21;3871.41;3945.82;3654.11;3843.33 +2017-09-16;1746.08;3850;4072;3701.89;3871.41 +2017-09-15;4562.92;3270.2;3990;3051.55;3850 +2017-09-14;2972.05;4027.29;4078.58;3250.39;3270.2 +2017-09-13;1922.38;4384.45;4400;3905.01;4027.29 +2017-09-12;1132.6;4453.8;4525.07;4299.9;4384.45 +2017-09-11;797.98;4482.42;4610.48;4420;4453.8 +2017-09-10;1399.96;4549.97;4584.97;4341.07;4482.42 +2017-09-09;947.1;4616.81;4691.07;4450;4549.97 +2017-09-08;1858.15;4788.77;4830;4401.23;4616.81 +2017-09-07;809.32;4792.9;4841.9;4699.6;4788.77 +2017-09-06;1740.3;4594.86;4849.1;4248.38;4792.9 +2017-09-05;1586.41;4521.94;4680;4251;4594.86 +2017-09-04;1898.7;4767.26;4784.81;4323;4521.94 +2017-09-03;1003.89;4779.99;4900;4600;4767.26 +2017-09-02;1728.42;4999.99;5098;4600;4779.99 +2017-09-01;782.81;4815.57;4999.99;4783.36;4999.99 +2017-08-31;692.18;4688.5;4850;4680.56;4815.57 +2017-08-30;682.41;4677;4739.9;4580;4688.5 +2017-08-29;987.93;4486.77;4700;4442.6;4677 +2017-08-28;576.02;4442.98;4500;4326.4;4486.77 +2017-08-27;300.03;4461.1;4488;4435.85;4442.98 +2017-08-26;396.61;4483.32;4499.99;4400;4461.1 +2017-08-25;795.42;4382.82;4548.97;4382.82;4483.32 +2017-08-24;802.65;4254.9;4430;4250;4382.82 +2017-08-23;955.46;4220.1;4346.99;4179;4254.9 +2017-08-22;1444.41;4123.28;4270;3800;4220.1 +2017-08-21;1027.67;4257.06;4280;4100;4123.28 +2017-08-20;595.61;4316;4344;4228.58;4257.06 +2017-08-19;1115.58;4223.73;4350;4116.8;4316 +2017-08-18;1405.27;4395.28;4450;4158.87;4223.73 +2017-08-17;1470.36;4455;4540;4300;4395.28 +2017-08-16;1220.22;4250.88;4455;4068;4455 +2017-08-15;2560.26;4435.87;4549.75;3875;4250.88 +2017-08-14;1625.6;4147.52;4500;4050.14;4435.87 +2017-08-13;2163.39;3872.9;4237.54;3872.9;4147.52 +2017-08-12;1545.66;3715;3985;3682.04;3872.9 +2017-08-11;934.76;3498;3792.33;3484.8;3715 +2017-08-10;549.55;3435.5;3520;3413.36;3498 +2017-08-09;951.15;3496.43;3500;3325.04;3435.5 +2017-08-08;1125.05;3442.22;3549.05;3405.25;3496.43 +2017-08-07;827.04;3263.74;3449.51;3214.39;3442.22 +2017-08-06;688.05;3275.18;3310.88;3175;3263.74 +2017-08-05;1684.41;2897.49;3330;2889.73;3275.18 +2017-08-04;640.6;2802.63;2897.55;2799.26;2897.49 +2017-08-03;456.86;2751.07;2816.06;2747.01;2802.63 +2017-08-02;505.97;2777.53;2800;2730;2751.07 +2017-08-01;1246.04;2861;2977.97;2685;2777.53 +2017-07-31;761.13;2773.9;2899;2750.01;2861 +2017-07-30;497.38;2745;2789.89;2671.31;2773.9 +2017-07-29;521.6;2809.22;2812.76;2715;2745 +2017-07-28;1076.42;2696;2857.16;2696;2809.22 +2017-07-27;749.23;2573.79;2735.74;2563;2696 +2017-07-26;938.08;2593.7;2640;2493.48;2573.79 +2017-07-25;1372.78;2776.86;2785;2486.77;2593.7 +2017-07-24;463.43;2781;2804.12;2748.97;2776.86 +2017-07-23;865.77;2838.1;2860;2686.04;2781 +2017-07-22;1094.18;2718.96;2893.73;2687.27;2838.1 +2017-07-21;1474.55;2875.37;2890.99;2637.83;2718.96 +2017-07-20;2224.28;2343;2942;2341.06;2875.37 +2017-07-19;1179.11;2413.11;2489.88;2289.53;2343 +2017-07-18;1599.12;2268.54;2547.37;2204.23;2413.11 +2017-07-17;1017.39;1955.98;2270.64;1950.18;2268.54 +2017-07-16;1326.2;2048.02;2119;1852.02;1955.98 +2017-07-15;1267.74;2307.31;2307.31;2001;2048.02 +2017-07-14;645.76;2405.87;2420.66;2250;2307.31 +2017-07-13;430.89;2419.17;2449.84;2389.44;2405.87 +2017-07-12;834.39;2392.58;2449.85;2325.07;2419.17 +2017-07-11;997.15;2446.35;2476.74;2320;2392.58 +2017-07-10;703.97;2581.25;2600;2361.37;2446.35 +2017-07-09;211.22;2627;2630;2580.13;2581.25 +2017-07-08;347.7;2583;2632.65;2550.16;2627 +2017-07-07;498.05;2675.01;2676.2;2550.38;2583 +2017-07-06;248.38;2679.23;2689.74;2638.46;2675.01 +2017-07-05;383.07;2668.98;2690;2617.18;2679.23 +2017-07-04;499.77;2649.61;2710;2632.21;2668.98 +2017-07-03;462.56;2606.13;2705.35;2565.3;2649.61 +2017-07-02;350.65;2541.7;2617;2493.84;2606.13 +2017-07-01;400.04;2575.32;2620;2506.2;2541.7 +2017-06-30;430.13;2639.73;2679.31;2541.09;2575.32 +2017-06-29;509.11;2682.22;2700.79;2612.51;2639.73 +2017-06-28;775.1;2675.3;2720;2580.14;2682.22 +2017-06-27;1079.07;2527.79;2675.3;2414.76;2675.3 +2017-06-26;1303.02;2706.28;2755;2380;2527.79 +2017-06-25;683.08;2752.08;2780;2608.76;2706.28 +2017-06-24;606.28;2813.41;2835.5;2700;2752.08 +2017-06-23;301.77;2824.17;2860.25;2790;2813.41 +2017-06-22;445.24;2815.98;2855;2755.5;2824.17 +2017-06-21;949.9;2848;2875;2748.68;2815.98 +2017-06-20;1140.21;2712.73;2870.44;2695.88;2848 +2017-06-19;595.85;2708.94;2740.59;2674.9;2712.73 +2017-06-18;776.35;2779.41;2788.39;2650;2708.94 +2017-06-17;610.34;2667;2800;2623.51;2779.41 +2017-06-16;830.68;2586.21;2692.68;2509.37;2667 +2017-06-15;2930.8;2678.38;2743.86;2250;2586.21 +2017-06-14;1640.52;2855;2902.72;2559.67;2678.38 +2017-06-13;690.22;2761.08;2921.32;2755.77;2855 +2017-06-12;2367.11;3059;3087.28;2700.58;2761.08 +2017-06-11;945.01;2932.84;3059;2932.13;3059 +2017-06-10;465.45;2888;2958.9;2880;2932.84 +2017-06-09;413.8;2870;2905.64;2830;2888 +2017-06-08;532.28;2767.28;2877;2690;2870 +2017-06-07;1286.99;2921.1;2933;2675.52;2767.28 +2017-06-06;1593.36;2765.6;2973.07;2765.6;2921.1 +2017-06-05;673.23;2646.17;2779.94;2636.25;2765.6 +2017-06-04;416.87;2665.31;2665.31;2598.21;2646.17 +2017-06-03;620.64;2600.49;2670.49;2562.59;2665.31 +2017-06-02;576.63;2570.49;2600.49;2545.51;2600.49 +2017-06-01;794.92;2480.67;2621;2480.67;2570.49 +2017-05-31;1650.35;2436.56;2568.57;2380;2480.67 +2017-05-30;1167.8;2485.47;2564;2400;2436.56 +2017-05-29;952.22;2352.46;2510;2294.61;2485.47 +2017-05-28;1199.12;2198.86;2509;2198.86;2352.46 +2017-05-27;1951.49;2392.43;2471.53;2000;2198.86 +2017-05-26;2799.52;2400;2749.84;2125.07;2392.43 +2017-05-25;3876.78;2618.84;3042.91;2328.7;2400 +2017-05-24;1375.12;2438;2666;2431.33;2618.84 +2017-05-23;1101.93;2277.23;2447.08;2277.23;2438 +2017-05-22;1751.23;2128;2351.3;2123.95;2277.23 +2017-05-21;659.53;2086;2156.68;2067.74;2128 +2017-05-20;791.37;2000.16;2090;2000.16;2086 +2017-05-19;823.03;1950.2;2010;1930;2000.16 +2017-05-18;687.36;1878.66;1960;1865;1950.2 +2017-05-17;759.81;1807.95;1894.24;1804.8;1878.66 +2017-05-16;623.35;1797.1;1823.59;1766.15;1807.95 +2017-05-15;16.27;1838;1844;1833.36;1840.39 +2017-05-14;380.96;1831.66;1863.05;1800;1838 +2017-05-13;930.3;1763;1840;1681;1831.66 +2017-05-12;1026.87;1880.68;1893.08;1715.23;1763 +2017-05-11;833.96;1800;1900;1791.6;1880.68 +2017-05-10;605.44;1744.27;1800;1714.03;1800 +2017-05-09;997.27;1684;1790.81;1678.37;1744.27 +2017-05-08;638.58;1549.81;1684;1545.84;1684 +2017-05-07;1599.6;1576.08;1584;1406.43;1549.81 +2017-05-06;414.47;1536.63;1586.83;1536.49;1576.08 +2017-05-05;1005.82;1527.88;1607;1498.67;1536.63 +2017-05-04;1244.11;1498.18;1617.86;1440;1527.88 +2017-05-03;715.23;1453;1509.63;1440;1498.18 +2017-05-02;860.2;1415.59;1469.88;1405.01;1453 +2017-05-01;824.64;1338;1430;1337.91;1415.59 +2017-04-30;251.28;1337.97;1340.1;1321;1338 +2017-04-29;215.66;1318.34;1340.25;1312.97;1337.97 +2017-04-28;582.56;1334.13;1339.36;1288.58;1318.34 +2017-04-27;537.65;1297.5;1339.3;1297;1334.13 +2017-04-26;544.92;1282.29;1317.1;1281.36;1297.5 +2017-04-25;7.78;1261.72;1264;1261.4;1262.36 +2017-04-24;232.13;1248.25;1266;1243.95;1261.72 +2017-04-23;11.15;1247.39;1250;1246.87;1250 +2017-04-22;351.03;1248;1250;1220.55;1247.39 +2017-04-21;289.1;1239.8;1250;1236.86;1248 +2017-04-20;423.42;1219.24;1250;1217.06;1239.8 +2017-04-19;11.85;1218.96;1219;1216.1;1218.97 +2017-04-18;349.94;1217.5;1224.99;1211.41;1218.96 +2017-04-17;15.46;1194.85;1199.8;1189;1199.8 +2017-04-16;160.04;1191.86;1202;1188.05;1194.85 +2017-04-15;14.52;1195.5;1198;1194.9;1198 +2017-04-14;294.82;1183.5;1199;1182.1;1195.5 +2017-04-13;729.84;1229.58;1230;1160;1183.5 +2017-04-12;279.04;1231;1231.2;1217.89;1229.58 +2017-04-11;24.58;1210;1210.9;1209.25;1210.9 +2017-04-10;289.64;1209.17;1218.02;1206.19;1210 +2017-04-09;399.17;1188.5;1216.64;1178;1209.17 +2017-04-08;242.74;1196.85;1200;1173.02;1188.5 +2017-04-07;487.85;1199.08;1204;1180.01;1196.85 +2017-04-06;763.78;1149.58;1207.62;1148.62;1199.08 +2017-04-05;402.69;1153.99;1156.09;1123.11;1149.58 +2017-04-04;517.85;1163;1173.58;1135;1153.99 +2017-04-03;691.48;1109.99;1172.17;1107.41;1163 +2017-04-02;515.71;1094.9;1119.52;1082;1109.99 +2017-04-01;506.85;1086.9;1100;1061;1094.9 +2017-03-31;611.23;1049;1095;1046.66;1086.9 +2017-03-30;374.91;1049.88;1056.99;1040;1049 +2017-03-29;563.89;1059.98;1063.4;1010.87;1049.88 +2017-03-28;608.06;1058.97;1082.99;1033.21;1059.98 +2017-03-27;556.18;999.44;1060;987.61;1058.97 +2017-03-26;574.95;990;1029.07;972.34;999.44 +2017-03-25;1271.44;973.53;1002.58;906.24;990 +2017-03-24;1124.2;1064.89;1067.31;951.09;973.53 +2017-03-23;393.61;1067.11;1088.08;1049.5;1064.89 +2017-03-22;776.44;1143.71;1143.71;1025;1067.11 +2017-03-21;895.99;1070.74;1145.93;1065;1143.71 +2017-03-20;474.58;1029.87;1080;1029.87;1070.74 +2017-03-19;818.56;985.39;1075;980.01;1029.87 +2017-03-18;1483.42;1085.8;1110;964.65;985.39 +2017-03-17;1102.48;1189.37;1189.37;1073.93;1085.8 +2017-03-16;1392.3;1264.1;1264.95;1153;1189.37 +2017-03-15;289.0;1252.99;1267;1250.05;1264.1 +2017-03-14;450.73;1244.01;1262;1238.91;1252.99 +2017-03-13;517.31;1231.9;1247.5;1220.02;1244.01 +2017-03-12;546.53;1193.1;1235;1178.74;1231.9 +2017-03-11;612.69;1123.26;1204.75;1114.2;1193.1 +2017-03-10;2601.98;1207.56;1300;1078.22;1123.26 +2017-03-09;530.97;1157;1219.18;1147;1207.56 +2017-03-08;1568.39;1243.75;1256.85;1155.55;1157 +2017-03-07;946.11;1284.5;1291.82;1211.8;1243.75 +2017-03-06;308.75;1281;1290;1275.67;1284.5 +2017-03-05;280.45;1278.27;1281.2;1264.1;1281 +2017-03-04;425.11;1292.5;1299;1245.87;1278.27 +2017-03-03;566.21;1267.89;1299.16;1261.44;1292.5 +2017-03-02;865.26;1232;1277.36;1223.31;1267.89 +2017-03-01;647.24;1199.25;1237.31;1195.03;1232 +2017-02-28;794.47;1197;1215;1187.06;1199.25 +2017-02-27;562.14;1184.5;1208;1171.97;1197 +2017-02-26;311.89;1164.9;1193.7;1145.74;1184.5 +2017-02-25;477.23;1191.2;1195;1135;1164.9 +2017-02-24;1843.51;1183.77;1222;1113;1191.2 +2017-02-23;743.04;1137.48;1192.88;1133.15;1183.77 +2017-02-22;778.21;1129.81;1150;1107;1137.48 +2017-02-21;685.49;1094;1139.15;1081.5;1129.81 +2017-02-20;370.62;1061.78;1096.4;1052.9;1094 +2017-02-19;174.02;1066.9;1068.9;1043.2;1061.78 +2017-02-18;369.4;1061;1077.5;1058;1066.9 +2017-02-17;529.38;1046;1070;1041.77;1061 +2017-02-16;653.39;1038;1049.95;1025.24;1046 +2017-02-15;353.04;1035.8;1038;1026;1038 +2017-02-14;431.75;1020;1046.15;1014.35;1035.8 +2017-02-13;453.04;1015.64;1021.5;983;1020 +2017-02-12;263.39;1023;1025;1008.47;1015.64 +2017-02-11;313.67;1012.02;1026.9;1003;1023 +2017-02-10;677.86;997;1023.38;952.55;1012.02 +2017-02-09;1583.61;1071;1091.83;951.61;997 +2017-02-08;745.06;1060;1078.48;1023.18;1071 +2017-02-07;399.73;1034.97;1060;1029;1060 +2017-02-06;212.69;1024.5;1035.89;1017.22;1034.97 +2017-02-05;260.83;1035.3;1038.59;1015;1024.5 +2017-02-04;269.66;1020.03;1044.9;1012.5;1035.3 +2017-02-03;505.1;1014.17;1025.99;997.36;1020.03 +2017-02-02;473.19;989.89;1019.42;980;1014.17 +2017-02-01;348.0;969.02;989.9;969.02;989.89 +2017-01-31;467.83;932.19;972.71;928;969.02 +2017-01-30;175.02;927.5;933;925;932.19 +2017-01-29;151.47;929.11;929.5;924.99;927.5 +2017-01-28;170.28;925;929.62;918.2;929.11 +2017-01-27;222.47;925;929.49;916.67;925 +2017-01-26;349.08;902.22;925;899.01;925 +2017-01-25;262.83;895.96;908.34;888.1;902.22 +2017-01-24;409.94;926.99;928.6;892;895.96 +2017-01-23;203.35;924;932.82;914.8;926.99 +2017-01-22;445.0;928;944.59;897;924 +2017-01-21;329.45;900;929;894.66;928 +2017-01-20;232.67;903.8;910.02;882.12;900 +2017-01-19;306.85;886.17;912.81;882.4;903.8 +2017-01-18;513.73;915;917;853;886.17 +2017-01-17;660.55;839.22;915;836.62;915 +2017-01-16;383.28;828;846;827.5;839.22 +2017-01-15;255.39;826;836.02;812.49;828 +2017-01-14;507.37;830.38;850;812;826 +2017-01-13;883.33;820.26;842.56;781.38;830.38 +2017-01-12;869.17;797.4;839.78;760;820.26 +2017-01-11;1590.37;917.09;925;775;797.4 +2017-01-10;300.71;905;923.04;901.5;917.09 +2017-01-09;484.31;918;922.01;882.29;905 +2017-01-08;471.54;902.99;946.77;891.1;918 +2017-01-07;1020.33;894.01;914.45;822.76;902.99 +2017-01-06;1309.37;1000;1037.91;871.21;894.01 +2017-01-05;1622.25;1127.38;1164.01;900;1000 +2017-01-04;1167.12;1033.9;1146.41;1031.27;1127.38 +2017-01-03;340.05;1024.12;1035;1014.53;1033.9 +2017-01-02;564.82;999.38;1040;993.26;1024.12 +2017-01-01;458.65;965.15;1003.99;961.09;999.38 +2016-12-31;242.81;965;965.2;944.27;965.15 +2016-12-30;511.1;971.65;973;924;965 +2016-12-29;479.15;976;984.05;952.01;971.65 +2016-12-28;564.35;932.86;983.2;929.62;976 +2016-12-27;370.8;905.29;942.98;903.5;932.86 +2016-12-26;295.47;894.8;912;890.68;905.29 +2016-12-25;340.33;895.71;902.26;860.1;894.8 +2016-12-24;492.3;914.16;921;880;895.71 +2016-12-23;897.84;866.37;918.47;866.01;914.16 +2016-12-22;610.33;829.11;878;823;866.37 +2016-12-21;603.33;801.25;834.78;800.01;829.11 +2016-12-20;310.51;794.39;801.25;793;801.25 +2016-12-19;239.72;796;799;793.5;794.39 +2016-12-18;277.84;794.35;796;789.69;796 +2016-12-17;329.39;787.34;795;786.83;794.35 +2016-12-16;236.98;781.73;789;780.11;787.34 +2016-12-15;259.11;776.01;783.83;775.36;781.73 +2016-12-14;352.26;781.31;783;769.02;776.01 +2016-12-13;400.38;783.15;789.12;764;781.31 +2016-12-12;428.06;774.4;784.87;769;783.15 +2016-12-11;384.21;778.09;779.9;770;774.4 +2016-12-10;355.4;776.19;780.1;775;778.09 +2016-12-09;392.69;775;779.74;771;776.19 +2016-12-08;345.82;770.9;778.43;769;775 +2016-12-07;465.3;761.41;775;754.22;770.9 +2016-12-06;482.66;758.19;763.95;756;761.41 +2016-12-05;513.47;773.99;774;750;758.19 +2016-12-04;400.35;768.81;774;766;773.99 +2016-12-03;523.99;778;778.8;760.56;768.81 +2016-12-02;638.51;757;779.74;752.95;778 +2016-12-01;547.41;746.6;760;746;757 +2016-11-30;540.57;740.21;751.8;739.3;746.6 +2016-11-29;508.31;740.04;742.26;737;740.21 +2016-11-28;543.92;733.07;743.67;733.01;740.04 +2016-11-27;484.99;738.16;744.41;730.99;733.07 +2016-11-26;562.7;745;747.8;730.91;738.16 +2016-11-25;601.48;743.65;747.46;737.47;745 +2016-11-24;587.67;744.89;750.34;735.67;743.65 +2016-11-23;663.49;752.49;755.7;735;744.89 +2016-11-22;660.25;743.39;758.88;737.48;752.49 +2016-11-21;642.31;733.58;752.25;733.05;743.39 +2016-11-20;656.86;753;759.01;719;733.58 +2016-11-19;493.74;755.19;766.97;747.33;753 +2016-11-18;653.39;740.57;757.84;738.01;755.19 +2016-11-17;918.6;741.93;755;737;740.57 +2016-11-16;797.11;715.51;744.29;714;741.93 +2016-11-15;726.88;708.86;719.65;707.85;715.51 +2016-11-14;649.35;704.94;712.2;702.26;708.86 +2016-11-13;507.96;707.72;707.75;686.32;704.94 +2016-11-12;618.84;718.33;720;701.98;707.72 +2016-11-11;615.73;716.88;720.87;712.99;718.33 +2016-11-10;691.31;722.06;727.03;712.88;716.88 +2016-11-09;1015.73;712.72;745;709.65;722.06 +2016-11-08;932.26;708.69;714.96;701.23;712.72 +2016-11-07;816.5;713.76;715.8;701.96;708.69 +2016-11-06;869.36;709.55;719.77;703.89;713.76 +2016-11-05;797.1;708.8;712.81;702.64;709.55 +2016-11-04;1276.62;692.79;714.36;686.05;708.8 +2016-11-03;1561.91;739.9;750.05;676;692.79 +2016-11-02;1307.62;731.41;768.24;722.73;739.9 +2016-11-01;1582.65;701.19;737.75;699.99;731.41 +2016-10-31;1305.37;695.3;705;688.78;701.19 +2016-10-30;1152.78;717.78;718.32;692.89;695.3 +2016-10-29;1152.49;691.73;719.5;691.63;717.78 +2016-10-28;1340.51;685.89;693.92;684.9;691.73 +2016-10-27;1470.24;679.91;691.51;677.26;685.89 +2016-10-26;1604.63;654.37;682.82;654.01;679.91 +2016-10-25;777.22;657.26;665;654.01;654.37 +2016-10-24;372.27;655.4;660;652.6;657.26 +2016-10-23;288.32;658.58;664.94;651.5;655.4 +2016-10-22;749.08;636.29;662.26;634;658.58 +2016-10-21;281.54;632.03;639;631.5;636.29 +2016-10-20;390.25;632.78;635;628.85;632.03 +2016-10-19;400.51;638.89;643.4;630;632.78 +2016-10-18;362.61;643.7;643.7;637;638.89 +2016-10-17;387.89;644.21;645;640;643.7 +2016-10-16;420.26;641.38;645.28;640;644.21 +2016-10-15;383.03;644.29;645.28;640.33;641.38 +2016-10-14;510.06;640.29;645;636;644.29 +2016-10-13;468.18;637.94;642.33;636;640.29 +2016-10-12;405.96;643.44;645;635.05;637.94 +2016-10-11;633.11;622.36;644.5;619.64;643.44 +2016-10-10;445.92;620.31;622.5;618;622.36 +2016-10-09;493.23;620.6;624;619.48;620.31 +2016-10-08;546.01;618.87;624;617.26;620.6 +2016-10-07;586.41;614.89;620;609;618.87 +2016-10-06;576.88;615.63;616.75;611.5;614.89 +2016-10-05;749.9;613.01;618.4;609;615.63 +2016-10-04;549.38;614.32;615;609;613.01 +2016-10-03;511.56;614.11;615.99;611.3;614.32 +2016-10-02;561.23;617.87;619.46;611;614.11 +2016-10-01;656.94;612.93;619.47;611.28;617.87 +2016-09-30;943.01;610.05;615;606.17;612.93 +2016-09-29;853.11;615.59;616;610;610.05 +2016-09-28;605.87;615.77;616.82;615;615.59 +2016-09-27;728.43;616.32;620.05;613;615.77 +2016-09-26;700.11;615.3;620.05;610;616.32 +2016-09-25;549.13;617.31;619.34;615;615.3 +2016-09-24;710.98;615.15;620;612;617.31 +2016-09-23;833.79;611.06;618.77;610;615.15 +2016-09-22;832.28;612.88;614.86;610;611.06 +2016-09-21;941.02;618.14;618.17;610;612.88 +2016-09-20;950.83;618.2;620;615;618.14 +2016-09-19;805.97;620.7;623.9;615;618.2 +2016-09-18;721.96;617.82;621.38;614.87;620.7 +2016-09-17;806.19;619.7;620;615.05;617.82 +2016-09-16;907.88;623.02;625;613.1;619.7 +2016-09-15;791.72;625;626;620.86;623.02 +2016-09-14;751.1;625.05;626;622.5;625 +2016-09-13;787.45;622.48;626.48;622.1;625.05 +2016-09-12;896.67;624.08;632.74;622.06;622.48 +2016-09-11;782.1;636.49;640;612.44;624.08 +2016-09-10;660.86;635.08;638;632.27;636.49 +2016-09-09;951.8;637.81;639.52;629.56;635.08 +2016-09-08;960.6;619.71;640.39;618.82;637.81 +2016-09-07;684.85;615;620;610.54;619.71 +2016-09-06;548.44;612.73;615;612;615 +2016-09-05;584.17;615.32;615.9;607.92;612.73 +2016-09-04;663.74;606.87;623;603.85;615.32 +2016-09-03;799.51;582.64;609.6;578.08;606.87 +2016-09-02;697.65;581.17;583.66;578.32;582.64 +2016-09-01;730.19;587.47;588;579.02;581.17 +2016-08-31;715.72;588.26;588.69;580;587.47 +2016-08-30;810.44;586.47;590;578.99;588.26 +2016-08-29;784.11;592.81;595.97;585.1;586.47 +2016-08-28;690.49;590.54;595;580;592.81 +2016-08-27;746.44;602.7;604.5;580;590.54 +2016-08-26;936.92;604.55;607.95;600;602.7 +2016-08-25;950.84;610.57;611.57;602.2;604.55 +2016-08-24;928.16;609.08;612.5;605.15;610.57 +2016-08-23;854.08;610.15;613.98;607.12;609.08 +2016-08-22;930.63;603.2;610.15;601;610.15 +2016-08-21;660.06;599.3;604;590;603.2 +2016-08-20;758.74;598.08;604.47;592.4;599.3 +2016-08-19;1014.77;598.64;604;589.12;598.08 +2016-08-18;1129.32;592.72;602.03;591.1;598.64 +2016-08-17;1164.27;598.5;601.15;586.13;592.72 +2016-08-16;1201.37;588.32;603;583;598.5 +2016-08-15;1263.29;580.64;594.03;577.1;588.32 +2016-08-14;860.91;597.59;599.08;572.28;580.64 +2016-08-13;696.0;601;602.64;592.02;597.59 +2016-08-12;1336.48;596.55;603;592.18;601 +2016-08-11;1367.57;600.89;609;595;596.55 +2016-08-10;1496.67;596.14;609.72;591.21;600.89 +2016-08-09;1575.06;599.79;601.18;588;596.14 +2016-08-08;1791.86;603.95;605.3;593.97;599.79 +2016-08-07;922.16;589.47;607;589;603.95 +2016-08-06;988.53;577.1;594.15;572.8;589.47 +2016-08-05;1824.16;578.24;580;570.32;577.1 +2016-08-04;2138.0;568.87;585.65;565.32;578.24 +2016-08-03;2180.8;516.37;578.94;516.06;568.87 +2016-08-02;2267.87;615.61;621;484.47;516.37 +2016-08-01;1675.19;631;635;614.97;615.61 +2016-07-31;947.51;659.16;662;631;631 +2016-07-30;877.44;659.46;662.4;656;659.16 +2016-07-29;1560.88;663.3;663.9;656.07;659.46 +2016-07-28;1624.36;658.6;664;655;663.3 +2016-07-27;1666.39;661.86;663.13;650;658.6 +2016-07-26;1664.29;657.69;665;644.78;661.86 +2016-07-25;1716.82;664.59;667;655.69;657.69 +2016-07-24;866.4;662.7;668.98;655;664.59 +2016-07-23;1169.89;657.57;665.14;652.78;662.7 +2016-07-22;1733.45;666.84;669.62;653.02;657.57 +2016-07-21;1302.32;665.49;670.2;660.2;666.84 +2016-07-20;1335.5;672.66;674.76;660;665.49 +2016-07-19;1405.77;673;675.4;665.43;672.66 +2016-07-18;1390.0;677.04;682;668;673 +2016-07-17;1074.49;664.7;680;661.29;677.04 +2016-07-16;805.24;667.89;671.4;661;664.7 +2016-07-15;1414.47;664.21;672.1;661.01;667.89 +2016-07-14;1310.58;664.88;667.61;652.75;664.21 +2016-07-13;924.84;676.18;676.18;658.15;664.88 +2016-07-12;571.5;653.03;680;647.4;676.18 +2016-07-11;543.52;650.25;658;642.1;653.03 +2016-07-10;280.11;655.21;655.89;640;650.25 +2016-07-09;677.78;662.8;665.02;625.02;655.21 +2016-07-08;928.52;635.92;662.8;634.06;662.8 +2016-07-07;1231.9;679.11;682;607;635.92 +2016-07-06;653.52;671.03;681.93;667.42;679.11 +2016-07-05;721.29;682.87;688.48;665;671.03 +2016-07-04;882.16;668;684.79;647.06;682.87 +2016-07-03;585.57;706.33;711;651;668 +2016-07-02;520.5;679.17;710;679.17;706.33 +2016-07-01;878.65;673.44;688.8;666.2;679.17 +2016-06-30;907.26;643.61;675.23;638.35;673.44 +2016-06-29;890.94;653.86;655.83;629.65;643.61 +2016-06-28;868.02;650.04;670;646;653.86 +2016-06-27;907.3;635.1;662.18;620.61;650.04 +2016-06-26;597.33;676.49;676.6;613.86;635.1 +2016-06-25;581.05;671.01;699.42;647.93;676.49 +2016-06-24;1122.79;649;699;635.63;671.01 +2016-06-23;1597.55;595.82;649;548.85;649 +2016-06-22;1274.76;671.4;683.29;595;595.82 +2016-06-21;1149.53;741.68;743.41;640;671.4 +2016-06-20;911.3;767.94;769.98;720;741.68 +2016-06-19;496.22;761.76;769.98;745.07;767.94 +2016-06-18;600.24;749.65;777;729.1;761.76 +2016-06-17;1412.71;768.14;777;705.04;749.65 +2016-06-16;1357.73;698.48;773.23;697.63;768.14 +2016-06-15;690.76;688;700.8;672;698.48 +2016-06-14;605.28;709.61;710.53;667.5;688 +2016-06-13;1173.89;675.94;722.47;669.17;709.61 +2016-06-12;1131.89;595.8;695.85;595.07;675.94 +2016-06-11;524.73;580.37;595.8;577.9;595.8 +2016-06-10;1102.65;577.99;583.47;572.87;580.37 +2016-06-09;965.07;585.5;587.16;573.13;577.99 +2016-06-08;1655.86;577.91;587.34;572;585.5 +2016-06-07;1598.01;588.46;591;566.68;577.91 +2016-06-06;918.82;586.41;590;579.52;588.46 +2016-06-05;546.18;577.26;590;570.98;586.41 +2016-06-04;711.01;572.05;593.59;562.31;577.26 +2016-06-03;1073.17;539.87;579.13;535.2;572.05 +2016-06-02;871.61;542.74;544.5;535;539.87 +2016-06-01;880.85;534.8;544.84;528.04;542.74 +2016-05-31;1143.92;546.26;554.95;521.79;534.8 +2016-05-30;1222.05;523.1;557;521.94;546.26 +2016-05-29;1714.97;533;551.65;505.74;523.1 +2016-05-28;1249.02;477;538.57;473.08;533 +2016-05-27;1873.8;454.67;480.77;454.14;477 +2016-05-26;1056.11;452.29;456.99;449.71;454.67 +2016-05-25;902.87;448.51;454;446.05;452.29 +2016-05-24;957.83;446.69;450;443.2;448.51 +2016-05-23;1133.51;440.09;447.37;439;446.69 +2016-05-22;908.97;447.87;448.2;440;440.09 +2016-05-21;965.0;445.74;448.43;441.2;447.87 +2016-05-20;1239.15;444.92;448.89;436;445.74 +2016-05-19;1383.92;456.81;457.85;442;444.92 +2016-05-18;1290.1;456.32;459.95;453.87;456.81 +2016-05-17;1384.17;458.71;459.42;453.87;456.32 +2016-05-16;1658.8;459.7;462.5;455;458.71 +2016-05-15;991.83;459.88;462.5;457.99;459.7 +2016-05-14;1147.31;459.78;461.75;457;459.88 +2016-05-13;1402.39;459.44;461.15;454;459.78 +2016-05-12;1720.26;456.03;459.5;450.5;459.44 +2016-05-11;1633.92;454.49;459.97;453.89;456.03 +2016-05-10;1782.77;458.96;465.42;451.22;454.49 +2016-05-09;1512.02;462.7;467;458.96;458.96 +2016-05-08;964.92;465.46;465.58;457.71;462.7 +2016-05-07;1019.45;466.47;466.81;456.5;465.46 +2016-05-06;1597.36;454.59;468;451;466.47 +2016-05-05;1908.51;451.49;456.24;448.02;454.59 +2016-05-04;2025.73;453.98;457.3;448;451.49 +2016-05-03;2058.18;449.77;457.77;444;453.98 +2016-05-02;1872.59;457.02;459.98;442.58;449.77 +2016-05-01;1282.57;452.86;460;449;457.02 +2016-04-30;1059.83;455.1;459.91;451;452.86 +2016-04-29;2355.39;449.59;457.92;444.81;455.1 +2016-04-28;2370.3;451.62;452.84;436.64;449.59 +2016-04-27;2095.32;467.9;470.5;450;451.62 +2016-04-26;2680.32;461.86;472;458.94;467.9 +2016-04-25;2665.08;462.68;464.42;451;461.86 +2016-04-24;1591.19;449.92;467.72;449;462.68 +2016-04-23;1396.99;448.58;452;446;449.92 +2016-04-22;2994.07;448.87;452.45;446;448.58 +2016-04-21;2685.38;443.87;454.86;441.2;448.87 +2016-04-20;2634.47;439.75;445;436.4;443.87 +2016-04-19;2465.59;432.08;440;429.5;439.75 +2016-04-18;2564.9;428.5;433.12;426.12;432.08 +2016-04-17;1049.22;432.8;434.68;426.58;428.5 +2016-04-16;1173.81;430.81;435;430;432.8 +2016-04-15;2040.9;425.91;433;424.95;430.81 +2016-04-14;2172.79;428;429.99;424;425.91 +2016-04-13;2619.4;425.94;430.89;424.22;428 +2016-04-12;2800.5;423.7;430.33;423;425.94 +2016-04-11;2193.2;422.5;425;421.01;423.7 +2016-04-10;1062.51;421.75;425.11;421;422.5 +2016-04-09;1808.28;420.5;423.2;418.32;421.75 +2016-04-08;3728.32;421.94;427;420;420.5 +2016-04-07;3362.67;423.8;424.88;420;421.94 +2016-04-06;3134.35;425.6;426;421.12;423.8 +2016-04-05;3721.35;422.91;426.93;421.95;425.6 +2016-04-04;3422.28;421.67;424.4;418.6;422.91 +2016-04-03;2070.37;419.65;422.9;419.12;421.67 +2016-04-02;1233.15;418.22;422.85;418.22;419.65 +2016-04-01;3076.73;419.43;420.62;414.98;418.22 +2016-03-31;2119.76;417.18;421.2;415.01;419.43 +2016-03-30;3044.51;417.75;422;414.03;417.18 +2016-03-29;3077.94;426;427.5;410.7;417.75 +2016-03-28;2221.96;423.45;428.26;421;426 +2016-03-27;1173.77;419.36;430.86;417.71;423.45 +2016-03-26;1229.87;419.14;421.89;417.63;419.36 +2016-03-25;3063.82;418.73;421.16;416.01;419.14 +2016-03-24;2071.59;420.53;421.46;416;418.73 +2016-03-23;2753.78;419.66;424;416.97;420.53 +2016-03-22;2965.65;416.09;422.1;415.83;419.66 +2016-03-21;1929.05;417.11;422.61;415;416.09 +2016-03-20;1080.68;415.33;420.49;414.07;417.11 +2016-03-19;1156.24;414.86;418.68;411.15;415.33 +2016-03-18;2057.16;418.89;422.64;410.41;414.86 +2016-03-17;2755.74;420.73;424.33;418.86;418.89 +2016-03-16;3469.29;420.45;422.67;418.5;420.73 +2016-03-15;2086.64;419;422.5;418;420.45 +2016-03-14;2813.16;419.28;421.5;416.1;419 +2016-03-13;1106.48;416.27;423.1;416.01;419.28 +2016-03-12;1233.28;421.76;424.26;412.33;416.27 +2016-03-11;2039.54;419.2;427.49;418.56;421.76 +2016-03-10;2558.81;418.1;421.96;414;419.2 +2016-03-09;2693.22;415.63;418.94;413.06;418.1 +2016-03-08;2015.7;419.46;421.46;412.09;415.63 +2016-03-07;2016.03;413.16;420;406.59;419.46 +2016-03-06;1781.57;407.51;420;402.5;413.16 +2016-03-05;1287.85;412.67;417.62;399;407.51 +2016-03-04;2675.71;425.51;430.31;410;412.67 +2016-03-03;2825.1;432.48;433;423.7;425.51 +2016-03-02;1975.13;439.72;444.56;432;432.48 +2016-03-01;2482.29;439.06;440.76;432.04;439.72 +2016-02-29;1779.15;434.31;442.5;432.55;439.06 +2016-02-28;956.12;435;438.99;426;434.31 +2016-02-27;934.75;431.47;438.99;431;435 +2016-02-26;1435.56;427.05;432.98;424;431.47 +2016-02-25;1776.87;426.71;431.44;421.54;427.05 +2016-02-24;1811.14;424.68;429;415;426.71 +2016-02-23;2351.3;441.5;442.9;417;424.68 +2016-02-22;2313.78;439.45;443.84;434;441.5 +2016-02-21;943.95;439;449.92;430;439.45 +2016-02-20;1128.09;423.24;445;419;439 +2016-02-19;1798.04;422.72;428;419;423.24 +2016-02-18;1824.94;420.33;427;418;422.72 +2016-02-17;1816.95;409.18;425;409;420.33 +2016-02-16;1822.63;404.3;413.4;401.5;409.18 +2016-02-15;1937.62;406.99;411.88;399;404.3 +2016-02-14;2128.17;393.26;408;391.74;406.99 +2016-02-13;1033.32;388.88;395;387.5;393.26 +2016-02-12;2266.71;387.19;395;385.24;388.88 +2016-02-11;2024.59;384.38;390.03;378;387.19 +2016-02-10;3297.33;381.78;386;380;384.38 +2016-02-09;1925.92;378.48;383.95;375.6;381.78 +2016-02-08;2010.15;383.79;387.16;377.83;378.48 +2016-02-07;1571.23;383.19;387.5;380.14;383.79 +2016-02-06;1088.72;390.48;392.38;380;383.19 +2016-02-05;1587.99;392.64;395;388;390.48 +2016-02-04;1175.44;371.03;394.55;369.75;392.64 +2016-02-03;1361.72;379.71;383;369.95;371.03 +2016-02-02;863.54;379.21;385;379;379.71 +2016-02-01;806.59;377.05;385.8;374;379.21 +2016-01-31;338.74;383.54;387;376.2;377.05 +2016-01-30;258.87;380.97;388;379.6;383.54 +2016-01-29;816.14;383.3;388.02;368;380.97 +2016-01-28;662.04;399.02;399.5;383.3;383.3 +2016-01-27;685.75;397.47;402;394.88;399.02 +2016-01-26;617.79;397.3;401;394.78;397.47 +2016-01-25;640.12;403.31;406.5;392.1;397.3 +2016-01-24;295.07;394.18;408.58;390;403.31 +2016-01-23;377.83;389.77;401;389;394.18 +2016-01-22;838.37;417.62;418;384.01;389.77 +2016-01-21;648.14;420.5;425;405.01;417.62 +2016-01-20;862.84;384.27;425;380;420.5 +2016-01-19;818.81;388.21;393;382;384.27 +2016-01-18;798.15;388.2;391.08;378.75;388.21 +2016-01-17;370.56;386.1;397.98;381;388.2 +2016-01-16;629.15;375;388.99;355;386.1 +2016-01-15;1097.27;431.98;434.18;372;375 +2016-01-14;702.61;434.83;437;429.53;431.98 +2016-01-13;847.85;448.63;448.65;419;434.83 +2016-01-12;720.33;451.75;452.68;447;448.63 +2016-01-11;652.63;453.94;458.96;449.21;451.75 +2016-01-10;350.9;455.77;457.78;447.21;453.94 +2016-01-09;317.25;461.44;462.76;452.05;455.77 +2016-01-08;749.1;463.84;470;454.5;461.44 +2016-01-07;670.16;437.28;464.7;436.96;463.84 +2016-01-06;791.77;435.01;438;429;437.28 +2016-01-05;688.91;436.74;438.58;432.5;435.01 +2016-01-04;683.38;433.67;438.99;432.5;436.74 +2016-01-03;367.91;435.47;438;429.13;433.67 +2016-01-02;385.79;438.31;441.5;433;435.47 +2016-01-01;668.25;435.58;439.18;432.49;438.31 +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; +;;;;; diff --git a/l1 b/l1 deleted file mode 100644 index 76140c26..00000000 --- a/l1 +++ /dev/null @@ -1,6 +0,0 @@ -1) Sforkować repozytorium na Wasze konto -2) Przejść na Waszego forka -3) Ściągnąć wasze repo na dysk i powiązać z repozytorium zdalnym (remote) -4) Napisać sortowanie liczb w dwoma znanymi Wam metodami(język jak ustalaliśmy na laboratorium). Starajcie się napisać funkcje w sposób zwarty, bez żadnych komentarzy czy śmieci w kodzie, w sposób optymalny, z użyciem najlepszych, znanych Wam struktur danych i metod przeglądania ich. Tworząc rozwiązania pracujcie z gitem- dodawajcie na stage, twórzcie commity. Pracujcie na branchu, stwórzcie na potrzeby zadania brancha i nazwijcie go np SortingMethods -5) wypchnijcie zmiany lokalne na repo zdalne -6) utwórzcie merge requesta z brancha SortingMethods do brancha master mojego repo (oryginalnego repo, z którego powstał fork) i nazwijcie go L1. diff --git a/l2 b/l2 deleted file mode 100644 index 89f8155e..00000000 --- a/l2 +++ /dev/null @@ -1,2 +0,0 @@ -Rozwinięcie zadania z listy 1. Do wybranych algorytmów sortowania z listy 1 dobrać 2 inne i zaimplementować je. Napisać funkcję służącą do porównywania algorytmów sortowania, która przyjmuje funkcję i mierzy czas / czasy sortowania. Za jej pomocą porównać algorytmy sortowania. -Pracujcie z gitem, proponuję zrobić osobnego brancha, nazwać go SortingComparison i w nim pracować. Na koniec - jak poprzednio - wysłać na repozytorium remote i wystawić pull request do mojego repozytorium, z którego pierwotnie forkowaliście. Nie akceptuję plików dodanych do gita przez „upload”. Wysyłanie plików na wasze remote repo odbywa się poprzez git push. diff --git a/sim_to_2020-08-31_100based_2020-06-01_2020-01-01.csv b/sim_to_2020-08-31_100based_2020-06-01_2020-01-01.csv new file mode 100644 index 00000000..1733d473 --- /dev/null +++ b/sim_to_2020-08-31_100based_2020-06-01_2020-01-01.csv @@ -0,0 +1,86 @@ +2020-06-07;60,54;9829,90;9928,06;9713,67;9860,45 +2020-06-08;90,67;9860,45;9975,17;9736,73;9874,91 +2020-06-09;114,41;9874,91;10003,34;9741,37;9875,82 +2020-06-10;135,30;9875,82;9991,28;9755,79;9902,62 +2020-06-11;161,07;9902,62;10035,41;9794,85;9964,46 +2020-06-12;191,09;9964,46;10094,98;9843,51;9993,61 +2020-06-13;207,27;9993,61;10128,94;9856,53;9984,32 +2020-06-14;226,61;9984,32;10090,89;9870,13;9996,16 +2020-06-15;264,46;9996,16;10104,97;9874,44;10025,06 +2020-06-16;267,79;10025,06;10167,43;9897,55;10010,49 +2020-06-17;304,44;10010,49;10139,53;9866,97;10038,94 +2020-06-18;317,71;10038,94;10196,64;9921,49;10082,32 +2020-06-19;320,86;10082,32;10226,24;9951,79;10127,28 +2020-06-20;333,42;10127,28;10265,41;9999,23;10136,96 +2020-06-21;360,42;10136,96;10243,62;10009,32;10168,67 +2020-06-22;394,46;10168,67;10293,30;10052,93;10196,18 +2020-06-23;434,25;10196,18;10327,26;10080,25;10211,94 +2020-06-24;439,60;10211,94;10344,24;10094,65;10225,69 +2020-06-25;459,58;10225,69;10354,28;10113,09;10230,21 +2020-06-26;486,22;10230,21;10365,36;10121,91;10259,13 +2020-06-27;499,27;10259,13;10383,29;10147,48;10275,95 +2020-06-28;526,17;10275,95;10402,93;10131,02;10308,02 +2020-06-29;523,53;10308,02;10430,65;10168,32;10307,32 +2020-06-30;543,17;10307,32;10436,89;10187,58;10325,16 +2020-07-01;541,25;10325,16;10448,57;10183,75;10368,91 +2020-07-02;568,56;10368,91;10486,97;10237,65;10372,78 +2020-07-03;583,78;10372,78;10520,08;10252,17;10386,23 +2020-07-04;602,10;10386,23;10504,76;10249,33;10392,87 +2020-07-05;615,10;10392,87;10505,08;10255,94;10403,21 +2020-07-06;634,92;10403,21;10538,57;10269,82;10403,44 +2020-07-07;642,91;10403,44;10530,97;10276,30;10428,18 +2020-07-08;668,75;10428,18;10553,66;10303,43;10477,42 +2020-07-09;677,97;10477,42;10600,40;10354,37;10502,44 +2020-07-10;693,83;10502,44;10636,81;10357,39;10531,33 +2020-07-11;703,19;10531,33;10663,03;10404,06;10515,10 +2020-07-12;708,08;10515,10;10639,10;10366,65;10515,16 +2020-07-13;750,38;10515,16;10663,68;10386,56;10549,95 +2020-07-14;769,19;10549,95;10677,44;10414,77;10564,61 +2020-07-15;776,06;10564,61;10704,93;10436,68;10584,78 +2020-07-16;783,52;10584,78;10723,74;10478,91;10620,46 +2020-07-17;778,90;10620,46;10751,56;10487,62;10672,42 +2020-07-18;783,23;10672,42;10805,41;10533,62;10695,77 +2020-07-19;800,36;10695,77;10824,12;10561,89;10719,41 +2020-07-20;806,78;10719,41;10837,85;10608,20;10769,76 +2020-07-21;824,51;10769,76;10902,72;10638,36;10829,38 +2020-07-22;826,71;10829,38;10972,94;10686,64;10820,95 +2020-07-23;843,71;10820,95;10944,48;10678,52;10859,80 +2020-07-24;865,44;10859,80;10986,59;10734,13;10867,59 +2020-07-25;860,79;10867,59;11001,77;10764,74;10868,41 +2020-07-26;875,25;10868,41;11001,87;10748,20;10859,70 +2020-07-27;888,35;10859,70;10990,22;10740,22;10886,55 +2020-07-28;899,77;10886,55;11015,04;10757,74;10862,16 +2020-07-29;918,20;10862,16;10998,08;10738,32;10907,62 +2020-07-30;924,47;10907,62;11038,91;10772,08;10962,32 +2020-07-31;955,59;10962,32;11094,69;10844,88;10992,67 +2020-08-01;974,62;10992,67;11124,15;10852,19;11001,99 +2020-08-02;963,99;11001,99;11146,99;10872,56;11034,52 +2020-08-03;972,14;11034,52;11151,50;10925,34;11073,36 +2020-08-04;971,93;11073,36;11190,35;10952,49;11074,11 +2020-08-05;987,19;11074,11;11225,09;10953,02;11098,12 +2020-08-06;999,37;11098,12;11240,56;10959,64;11107,12 +2020-08-07;1019,30;11107,12;11237,27;10986,73;11113,95 +2020-08-08;1025,46;11113,95;11244,84;10968,72;11134,71 +2020-08-09;1051,24;11134,71;11261,34;11001,26;11143,20 +2020-08-10;1066,62;11143,20;11279,75;10994,33;11180,24 +2020-08-11;1072,93;11180,24;11300,07;11049,26;11201,42 +2020-08-12;1094,71;11201,42;11327,25;11068,09;11225,65 +2020-08-13;1104,29;11225,65;11315,77;11114,41;11245,25 +2020-08-14;1144,08;11245,25;11367,88;11126,08;11280,79 +2020-08-15;1144,84;11280,79;11402,10;11141,72;11307,91 +2020-08-16;1153,13;11307,91;11439,15;11170,52;11340,35 +2020-08-17;1161,26;11340,35;11460,88;11215,25;11334,34 +2020-08-18;1199,25;11334,34;11453,30;11208,03;11330,15 +2020-08-19;1219,70;11330,15;11477,26;11214,10;11411,49 +2020-08-20;1226,63;11411,49;11525,03;11282,73;11438,61 +2020-08-21;1215,13;11438,61;11574,59;11319,94;11490,03 +2020-08-22;1221,87;11490,03;11619,14;11358,33;11476,62 +2020-08-23;1212,16;11476,62;11600,23;11348,77;11473,32 +2020-08-24;1219,28;11473,32;11595,21;11344,41;11524,49 +2020-08-25;1234,68;11524,49;11656,68;11390,11;11522,25 +2020-08-26;1240,76;11522,25;11656,89;11397,74;11537,81 +2020-08-27;1248,84;11537,81;11651,60;11406,68;11583,71 +2020-08-28;1271,19;11583,71;11714,90;11473,83;11608,01 +2020-08-29;1288,47;11608,01;11740,02;11485,23;11638,44 +2020-08-30;1278,67;11638,44;11768,05;11504,92;11677,48 +2020-08-31;1291,62;11677,48;11796,03;11563,08;11692,03 diff --git a/sim_to_2020-08-31_1based_2020-06-01_2020-01-01.csv b/sim_to_2020-08-31_1based_2020-06-01_2020-01-01.csv new file mode 100644 index 00000000..84183839 --- /dev/null +++ b/sim_to_2020-08-31_1based_2020-06-01_2020-01-01.csv @@ -0,0 +1,86 @@ +2020-06-07;56,26;9829,90;10175,28;9761,26;9958,52 +2020-06-08;96,28;9958,52;10091,89;9720,81;9914,13 +2020-06-09;118,37;9914,13;10065,62;9814,64;10310,67 +2020-06-10;151,52;10310,67;10368,74;10177,38;10312,26 +2020-06-11;314,54;10312,26;10549,85;10220,77;10374,57 +2020-06-12;189,12;10374,57;10571,44;10055,70;10055,25 +2020-06-13;295,92;10055,25;10092,51;9890,97;10063,07 +2020-06-14;62,50;10063,07;10296,43;9880,17;10176,51 +2020-06-15;0,00;10176,51;10227,49;10094,51;10063,18 +2020-06-16;93,50;10063,18;10067,48;9934,24;10129,45 +2020-06-17;0,00;10129,45;10356,78;10124,95;9935,43 +2020-06-18;85,62;9935,43;10053,14;9730,19;10161,15 +2020-06-19;42,33;10161,15;10555,59;10134,81;10070,07 +2020-06-20;113,02;10070,07;10291,96;9845,83;9902,41 +2020-06-21;269,67;9902,41;10049,53;9815,96;10030,02 +2020-06-22;291,38;10030,02;10129,12;10020,85;9604,52 +2020-06-23;372,29;9604,52;9701,63;9305,91;9816,09 +2020-06-24;195,65;9816,09;9836,51;9780,52;9784,62 +2020-06-25;223,98;9784,62;9805,99;9713,21;9739,83 +2020-06-26;218,63;9739,83;9802,60;9612,10;10089,90 +2020-06-27;300,70;10089,90;10210,53;10084,73;10206,91 +2020-06-28;483,41;10206,91;10314,02;10044,47;10448,27 +2020-06-29;584,44;10448,27;10476,41;10266,49;10394,44 +2020-06-30;575,79;10394,44;10645,03;10313,38;10543,67 +2020-07-01;725,30;10543,67;10637,84;10442,03;10386,56 +2020-07-02;658,46;10386,56;10689,90;10379,94;10674,14 +2020-07-03;561,74;10674,14;10834,09;10654,82;10590,20 +2020-07-04;730,43;10590,20;10731,83;10482,30;10446,97 +2020-07-05;761,56;10446,97;10734,34;10331,65;10295,96 +2020-07-06;610,37;10295,96;10470,25;10257,97;10385,77 +2020-07-07;585,06;10385,77;10603,51;10360,32;10806,28 +2020-07-08;532,46;10806,28;10998,70;10672,33;10853,64 +2020-07-09;292,82;10853,64;11066,68;10822,23;10754,72 +2020-07-10;212,17;10754,72;10925,09;10651,58;10958,89 +2020-07-11;192,58;10958,89;11007,56;10907,10;10713,75 +2020-07-12;101,98;10713,75;10832,16;10476,63;10875,09 +2020-07-13;97,36;10875,09;11021,49;10800,66;10727,10 +2020-07-14;268,79;10727,10;10920,15;10530,21;10688,53 +2020-07-15;360,93;10688,53;10701,82;10669,79;10998,23 +2020-07-16;402,88;10998,23;11070,05;10796,55;10703,73 +2020-07-17;243,07;10703,73;10960,64;10562,88;10778,42 +2020-07-18;328,62;10778,42;11087,35;10702,57;10772,85 +2020-07-19;161,89;10772,85;10958,61;10703,63;10963,88 +2020-07-20;174,86;10963,88;11204,88;10791,77;10944,51 +2020-07-21;361,87;10944,51;10970,90;10715,07;11023,46 +2020-07-22;573,18;11023,46;11309,76;10800,35;11347,94 +2020-07-23;593,20;11347,94;11392,02;11213,46;11481,81 +2020-07-24;676,60;11481,81;11484,80;11150,59;11189,90 +2020-07-25;465,11;11189,90;11480,84;10942,51;11447,59 +2020-07-26;583,94;11447,59;11614,37;11258,70;11411,05 +2020-07-27;448,71;11411,05;11488,90;11326,46;11178,92 +2020-07-28;452,65;11178,92;11329,29;11158,03;11202,96 +2020-07-29;733,82;11202,96;11443,95;11183,08;11475,83 +2020-07-30;797,98;11475,83;11533,53;11341,36;11560,34 +2020-07-31;690,24;11560,34;11564,22;11309,69;11331,41 +2020-08-01;607,42;11331,41;11473,92;11316,07;11451,53 +2020-08-02;806,36;11451,53;11631,95;11264,37;10935,24 +2020-08-03;729,11;10935,24;11238,34;10884,34;11243,68 +2020-08-04;729,63;11243,68;11288,36;11188,91;11541,29 +2020-08-05;698,61;11541,29;11607,70;11522,99;11939,13 +2020-08-06;603,70;11939,13;12118,49;11892,81;11867,53 +2020-08-07;481,10;11867,53;11874,88;11847,68;11598,99 +2020-08-08;372,00;11598,99;11621,73;11527,73;11283,30 +2020-08-09;392,94;11283,30;11290,89;11187,35;11189,63 +2020-08-10;466,15;11189,63;11289,21;11046,53;11318,40 +2020-08-11;634,63;11318,40;11415,14;11268,46;11394,24 +2020-08-12;758,75;11394,24;11411,89;11233,60;11475,24 +2020-08-13;689,47;11475,24;11582,88;11442,06;11604,80 +2020-08-14;764,08;11604,80;11633,33;11476,34;11599,02 +2020-08-15;606,30;11599,02;11706,16;11537,87;11591,80 +2020-08-16;597,70;11591,80;11624,33;11329,75;11371,57 +2020-08-17;530,70;11371,57;11386,27;11188,81;11306,33 +2020-08-18;738,86;11306,33;11564,21;11284,53;11506,32 +2020-08-19;644,51;11506,32;11608,98;11279,18;11454,37 +2020-08-20;739,97;11454,37;11607,96;11454,31;11461,77 +2020-08-21;627,12;11461,77;11464,10;11005,44;11316,72 +2020-08-22;527,97;11316,72;11702,91;11226,84;11614,37 +2020-08-23;451,56;11614,37;11932,40;11584,10;11518,21 +2020-08-24;367,05;11518,21;11666,01;11369,37;11254,33 +2020-08-25;475,76;11254,33;11313,73;10926,55;11438,71 +2020-08-26;217,96;11438,71;11447,85;11273,47;11578,98 +2020-08-27;277,38;11578,98;11823,08;11532,67;11415,60 +2020-08-28;169,31;11415,60;11578,89;11395,97;11446,42 +2020-08-29;132,93;11446,42;11486,92;11374,65;11299,11 +2020-08-30;325,38;11299,11;11714,95;11210,94;11127,97 +2020-08-31;422,14;11127,97;11380,04;10923,64;11217,18 diff --git a/single_sim_chart.png b/single_sim_chart.png new file mode 100644 index 00000000..86241800 Binary files /dev/null and b/single_sim_chart.png differ diff --git a/wykresy_symulacji.xlsx b/wykresy_symulacji.xlsx new file mode 100644 index 00000000..77fdba22 Binary files /dev/null and b/wykresy_symulacji.xlsx differ