Summary
Neon J is a set of probabilistic models for predicting future price action with ~65% accuracy. It indicates individual signals (circles) for probability of price action in a foreseeable future, while smoothed signals (columns) are provided for a more dynamic view of probable price action. Blue circle - strong long probability; Purple circle - strong short probability. Blue column - strong long trend ahead or in-progress; Purple column - strong short trend ahead or in-progress.
To use it, copy models below and provide them an input to “model” parameter when applying to a chart. Models are instrument-specific. Only daily (D) charts should be used.
The script is provided for evaluation purposes.
Background
The only system that can not be predicted is a random system. Markets—however complex—are not random, therefore predictability is their inherent nature.
– The human who founded Quadrupley, Inc.
Having successful and adamant trading systems typically consists of two (oversimplified) elements: signals and risk management system. In most zero-sum games, such as trading, signals must offer an advantage against the market, and risk management system provides a safety mechanism to allow the system to exist in the future. Let me explain.
Say, I have a solid risk management system: it is diversified, with take profit and stop loss thresholds set for low risk, on average I trade less than 3% of my assets, and there’s a loss recovery mechanism, etc. Hypothetically, it’s pristine. Now, let’s trade this portfolio against a flip of a coin, essentially a signal that provides 50% probability of things turning out in my favour. How profitable is such system? My answer: it isn’t. I might be able to sustain this system for some time, but eventually this system is going to have to loosen risk restrictions to stay ahead of the commissions and borrowing costs, resulting in overtime detrimental trend.
Conversely, if the signals provide greater than 50% confidence of things turning out in my favour, but risk management is poor, I’d expect such system to end up in a disaster soon, perhaps after a few euphoric gains. (I’d isolate a top-notch signals, say >90% confidence, in another bucket, but this idealistic system is non-achievable in my practice, so I’ll leave it be)
Neon Juliet was developed to offer an advantage against given markets. Probabilities generated by this model are statistical historical outcomes. This model developed using only price action and is unable to consume any other data or price data across instruments. In other words, it doesn’t know anything you don’t see already on a chart.
Neon J performs best on complex instruments where there’s great diversity of actors and considerable daily volume .
Methodology
In principle, Neon J is based on Bayes’ Theorem. Simply put, prior knowledge of price action ( aka patterns) provides basis for probability of future price action development (ex. long or short trend).
The training process is implemented outside of this script mainly due to Pine Script limitations. This script, however, contains inference portion of the model.
As input for training, daily candle data is used. From this data, feature engineering step of the training develops features, like price average divergence/convergence (think MACD ), price strength (think RSI , ADX ); multiple periods used to diversify long and short patterns. This is done to develop a “state” that is reflective of recent price development. Ex. what we’d call a trend is just a strong and consistent upward price action, but we’d need to look at most recent N candles and their pattern to know that.
Once features are developed, I train a model using Reinforcement Learning technique. Simply put, this technique allows an agent to interact with a trading simulator and take actions (ex. go long, go short, etc.). After many iterations, the agent learns conditions (patterns) that lead to positive outcomes and those that lead to negative outcomes. This learning is quantitative, which means there’s a way to tell which probabilities are strong and which are weak. These probabilities are indicated by this script.
Trained Neon J models are instruments-specific. Meaning, that model for DJI is not compatible with SP500 or any other instrument. Experimentally, I proved that such approach over-performs generalizable models (those that are trained on data from multiple instruments)
Neon J currently only support daily time frame. The limitation is purely practical to reduce the development load and model size.
Results
Tests show 60%-70% success rate (on average, some instruments are worse than that, some better) of individual signal when threshold is set to 0.3 (roughly equivalent to 65% probability). This is calculated with Pine Script Strategy with the following entry/exit rules:
- Entry when individual signal (a dot) is above 0.3 (long) or below -0.3 (short)
- Exit when 14-period smooth signal (a column) is above 0.0 (short exit) or below 0.0 (long exit)
- No stop loss or take profit levels.
- Pyramiding is set to 100 (to allow unrestricted action of all signals)
- All trades are closed on last tested bar (to conclude all signals in-flight)
Percent Profitable is what we take as success rate in the context of this assessment. This number represents how many signals were profitable vs all signals actioned.
It is also worth noting that this assessment was performed on a time period previously unseen by the model. Simply put, we only train a model with data up until date X, then we test starting from date X onward. This ensures that the assessment is unbiased by the model already “knowing” the future. In practice, this gives confidence that future (unknown) market dynamics is going to be representative of our test results.
Be aware, the above “strategy” is not my recommended usage of this signal, it is simply an assessment technique that is meant to be as simple and unconstrained as possible.
How to use the script
The script calculates a probability. A term probability here is used in a loose form and means “a numeric value in roughly -1 to 1 space that represents the likelyhood of bullish or bearish price action”. Keep in mind that probability values can go over 1.0 or below -1.0. This is due to the fact that these value are normalized to -1/1 space using 95-percentile (this detail is largely unimportant for usability’s sake).
Indications
Dots (circles) indicate individual probability value on any given bar. Indicated value on a given bar indicates the probability of future price action. High (positive) values indicate high probability of long action in the future. Low (negative) values indicate high probability of short action in the future. You should interpret future as a gradient (a trend developing slowly over time) instead of being isolated to what’s immediately follows (ex. next bar)
Columns (histogram) provided as convenient view of smoothed probabilities of last N bars. This is controlled by the Smoothing parameter and defaults to 14.
Parameters
Model parameter is the backbone of this script. It is a required parameter and it is unique for each instrument. Example models provided at the end (see below). This parameter is a long 10000+ character representation of a model.
The script has two additional parameters for configuring interpretation: Threshold and Smoothing.
Threshold controls the level at which values change color (ex. above 0.3, turn neon blue, and below -0.3 turn neon purple).
Smoothing parameter provides a way to smooth out individual probabilities into a exponential moving average with the periods provided. This average is indicated using columns on the indicator.
Model expiration
Models are valid for 1 month after training. This is done by design to prevent model deterioration. A month is proven to be a maximum period of time to hold model performance steady. After that, deterioration is likely to occur. Optimal time for model lifetime is 10 days (this is what I use for live trading), and of course most optimal (but unpractical for now) is to re-train daily.
Validity indicated with blue-tinted indicator background, while red-tinted background indicates expired period.
Preview
This script is released as a public script for anyone to try. My motives for this release are two-fold:
To subject the model to a variety of conditions, including traders with different experiences trading different instruments (subject to specific models offered of course). Essentially, my own testing is not enough to grasp a full breadths of scenarios. I’d like to harden it and understand where it is strong and where it might fall short (pun intended).
Get an idea on how Neon J might be useful when making trading decision. I tried to make the representation of the signals unconstrained and unopinionated, so there’s room to explore and experiment. I found that Neon J can be packaged in a number of different ways.
At this moment the script is closed-source. I might consider open-sourcing this script in future depending on how much feedback I get from this submission and whether it’d be deemed useful to others.
Models
At last, here are the models (a piece of text you need to input in script parameters for each instrument)
APPL
AAPL|20121220|20221220|0.563,-0.004,0.0,-0.046,0.0,0.856,-0.013,0.0,-0.036,0.0|1.28,0.126,0.0,-0.055,0.0,-0.544,-0.003,0.0,-0.013,0.0|-0.041,0.62,0.0,0.212,0.0,0.048,0.645,0.0,0.152,0.0|0.099,-0.242,0.0,0.717,0.0,0.012,-0.138,0.0,0.575,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,40,20,10,10,10,10,60,10,10,10,10,60,10,10,10,70,10,10,10,70,10,10,70,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,50,10,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,40,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,30,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,50,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,30,10,10,10|71,-22,-26,-16,-95,-1007,-154,-472,-53,-29,-247,-155,-81,-83,-216,-350,-566,-95,-136,-149,-61,-10,-132,-177,-150,14,-257,50,10,-82,11,-36,899,62,57,114,185,201,-164,-264,-68,-52,-9,563,-96,110,-57,-21,-3,-20,-145,-11,-158,-31,-163,-132,-8,83,-63,-43,-437,45,-281,-36,-37,-7,-56,-46,-84,-79,-112,-359,-63,-32,-431,-29,0,-361,-286,-61,-279,381,-233,-192,-3,-128,-29,-131,-142,130,99,327,999,-22,-7,35,-8,216,127,925,450,67,-88,-20,-26,105,288,-17,-3,-79,-27,68,-225,-80,188,147,91,-50,102,-222,59,147,81,202,-54,-186,-64,38,119,-37,-17,-73,-359,-123,-42,-7,96,200,79,-120,-24,-275,-9,-36,-20,-4,-85,-52,-121,-55,-2,-101,47,-106,21,184,-15,-56,-93,-200,193,59,114,164,61,-63,-33,-6,64,140,18,112,198,-62,-65,-131,259,167,-8,-101,208,124,-2,-6,11,56,65,-129,-283,-17,-45,80,99,184,-84,-113,-261,-449,237,-164,-13,-5,150,-3,-141,-153,-390,-96,-194,0,2,249,-119,-227,-169,-263,13,32,-26,40,109,32,-174,64,86,-18,35,54,58,-5,-22,129,-12,127,-18,-14,-93,-70,-35,-5,69,61,240,3,142,-12,101,-31,-37,140,66,0,110,95,95,72,-9,-7,-6,336,-36,-2,-145,7,152,275,-78,-60,-12,75,53,-159,27,-5,-19,-60,-33,-25,109,12,-70,28,-48,-10,-85,101,-87,-141,-512,-257,-134,43,101,-29,-3,-351,-42,-293,-481,-21,48,204,603,-9,-260,-82,-247,-86,-81,-113,-6,-60,113,-51,-26,-38,-37,-216,-140,-24,65,71,-27,20,-176,-105,-126,-6,-31,-70,-23,-79,-51,111,-32,78,-55,98,213,-17,396,-16,254,-26,74,-76,-5,96,-3,52,12,-14,-38,3,-20,108,31,78,-47,65,-67,27,101,-3,-27,-36,0,109,-42,-31,22,-80,-31,-19,-106,369,-56,-45,-15,1,52,-59,-228,-207,-57,-20,-26,-210,144,-68,153,-128,-461,-392,-38,-11,-102,-22,45,-44,-206,-198,-58,-27,-108,-273,69,-70,-15,-74,-10,-122,-526,-710,-693,-269,29,-64,-96,304,-82,-73,-497,-33,19,73,97,-32,-114,-516,-296,-19,-15,-31,-156,-81,78,-115,-447,18,-7,-144,-26,-333,-64,82,78,52,747,103,27,-15,-10,181,-16,-1,188,48,74,141,264,65,-52,-195,-56,-82,-53,68,44,-3,-24,-32,-195,-165,20,-158,-19,-68,-7,-13,-54,-39,-6,93,-11,-9,-59,-20,84,28,-8,-44,38,135,125,-85,46,10,87,271,-47,-76,-14,-69,-49,44,111,126,-24,313,-239,206,131,-19,-23,-110,170,200,125,0,-328,-136,-33,-43,-112,-222,-198,-79,-18,-167,-522,-202,-6,-5,-29,-90,-474,-126,-202,-76,-101,337,108,10,69,-189,-92,-35,168,-35,73,439,175,96,73,95,84,-42,30,-18,149,81,163,239,-17,202,79,-56,-8,-26,33,70,-5,18,-58,-37,133,37,98,-62,101,-16,-26,-63,-11,-49,44,-79,140,180,100,123,161,-123,-75,-104,100,-23,30,195,46,8,129,150,-53,-63,-49,126,131,116,288,-32,236,-56,-42,-43,-37,-14,-69,-4,-175,-89,-219,-18,24,-191,-36,-57,-16,-156,-501,-263,-207,91,-71,-145,99,116,-29,-61,-22,-113,-253,-78,-62,-132,-46,-83,271,209,-163,108,-50,-11,-5,68,107,114,182,-13,135,159,100,-114,-121,-30,103,93,76,-64,-27,-50,123,-11,30,52,72,170,60,-122,-62,-90,-60,-287,82,97,130,206,86,46,21,-88,-59,-336,-6,298,18,404,51,-37,-13,-9,-45,259,218,744,127,-23,-38,64,-29,-475,-99,-29,42,19,-60,-111,-212,-214,-213,-472,-29,52,-5,-7,-32,-152,62,-280,-240,-160,-29,-106,-28,43,-76,-93,-330,82,-60,-39,-146,-51,84,-53,-203,-161,-125,82,212,296,-267,-198,45,-80,-114,-229,-42,48,190,115,-93,-64,-26,-23,-31,74,96,150,24,-1,-47,-5,-43,37,-2,196,122,105,326,-2,-4,-46,-11,-28,-250,18,-32,-23,-59,-23,-219,-397,-127,-49,30,-93,-2,-18,-100,-162,-87,-71,13,-46,-95,-19,-326,79,-308,-16,-43,-12,19,-30,-14,-154,-266,-113,-117,-67,11,53,-3,-156,-675,-503,-162,99,73,-182,-18,19,-214,-3,-20,-127,-7,141,167,-263,-79,-23,-161,-94,46,-30,-6,162,136,-151,-51,-49,-181,-16,-21,80,30,52,77,-124,-28,-162,127,72,227,121,-182,-266|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,20,10,10,10,10,40,20,10,10,10,10,60,10,10,10,10,60,10,10,10,70,10,10,20,60,10,10,70,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,40,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,20,10,20,10,10,10,10,30,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,60,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10|-8,314,193,156,-63,-149,-328,-166,-284,66,-87,-306,323,-176,-99,321,-244,-55,-95,-29,-131,-50,235,164,0,364,-117,-26,-12,-201,-208,-101,-244,-57,-155,-66,90,-76,-48,-105,-35,252,-23,-28,-60,324,45,-122,790,246,-148,-122,-97,24,45,-33,282,62,146,203,-52,-11,103,-258,-13,-207,517,253,-15,-28,-12,-387,-90,-21,-50,-33,-94,-271,-165,-11,-1,56,17,-67,-177,124,-257,-172,-93,-51,-72,-76,-99,-36,-44,-1,-110,-105,-443,-78,-182,-136,-83,-46,7,-256,35,-5,-158,-215,-30,-39,241,-302,-699,-166,-1,354,-34,-144,-373,-112,315,159,209,-269,-221,-273,41,70,351,14,-135,-211,-181,-238,-86,-40,-13,-25,-29,-11,260,-52,-61,-184,-84,-30,-19,-49,42,55,-137,-77,-194,-243,-28,-28,17,153,-43,-249,-650,-121,-108,-112,-126,-323,-243,-43,-73,-207,-286,-63,-34,-452,-168,-45,-23,48,-119,-22,-146,-290,87,-14,404,399,116,-35,-88,-642,-203,-6,194,-28,97,-42,-35,-416,-190,-170,-327,-40,-105,130,26,-287,-233,-2,121,-262,75,-143,66,-18,-20,-340,-364,-300,94,-72,95,-447,-94,-101,-64,-303,-207,-89,-306,-95,-150,-160,-513,-159,-98,-7,97,-4,-105,-163,-44,-137,-571,-243,-405,-31,-67,-78,0,-136,-43,-286,-136,-92,-89,45,-35,-229,-31,-164,-44,-226,-71,205,156,79,1,-40,-42,-138,-45,-12,55,-8,-30,-123,-139,-70,1,-211,120,-57,-227,-119,-183,-9,-113,-11,-120,-32,-24,-54,-111,-13,-190,-39,-30,-64,-64,-74,-60,-74,-267,-106,-295,-125,-62,-173,-75,-33,-246,-15,89,-111,-52,14,63,-44,-254,-234,-479,-66,-29,38,-234,-82,-118,98,-8,-35,145,-150,349,98,-96,-197,-98,-85,-22,-31,-10,-51,-166,-19,-171,-48,16,-66,-28,-47,-44,-130,-275,-8,72,-102,103,-99,-24,-74,61,-5,-49,-142,-167,-115,-82,-11,-28,-121,-74,-59,-209,-6,-66,-64,-176,-33,-72,-50,-162,-101,39,-116,-174,-19,125,-70,-144,-269,-80,-337,-33,-196,473,965,94,-141,-363,-18,-245,-37,-131,-152,-131,349,0,214,-101,-186,-45,-33,157,-20,-7,-4,-48,-110,-29,-44,-546,-128,-9,-4,10,-6,-84,-149,-202,-112,63,-258,-27,-58,-87,-10,43,-13,-27,-141,-39,-12,-78,-388,-133,-168,-115,-15,-436,-35,-87,21,-1,-7,-75,95,-110,-8,-67,-8,-87,-91,-25,84,-57,-67,-133,-18,-75,-174,-145,-37,150,-505,-189,-181,-5,-38,-31,-452,-410,-62,183,-61,-692,-361,-70,-357,-85,-9,-47,-22,314,127,-143,-40,-69,-566,-143,98,143,119,189,-625,-10,-521,-71,-184,-657,-21,207,513,198,-71,-61,-79,-130,-376,-163,26,253,-39,-122,-68,-22,-87,-57,-107,77,-60,-271,-67,-182,-208,82,79,-22,-72,-61,-95,-108,-10,-56,-349,-90,-71,-602,-171,-197,-36,-30,-39,-12,-109,-118,-7,-431,-574,-167,-47,-8,-33,-12,-22,88,-53,-505,-27,-81,-202,-60,-665,-101,-15,84,-79,-303,-230,-132,-454,-151,-313,-60,117,-56,-201,-813,-293,-81,-105,-131,72,13,211,179,-26,-284,-127,-198,-177,-131,138,470,-21,-21,-82,-14,74,-38,199,188,-46,-288,-20,-36,-80,181,53,110,-36,-6,-61,-346,-325,-7,186,375,728,100,51,-72,-216,-76,-263,-1145,-174,-11,-136,-105,-123,-53,-14,-443,-341,-138,780,-297,-218,-431,-537,-11,-73,-67,-103,-212,-90,230,-122,-207,-197,-198,-292,-24,-168,-146,-16,161,26,-80,-151,-132,-133,-337,-67,-75,-16,-8,-97,-221,-113,-106,-133,-144,-3,-148,-16,138,-174,-2,-77,-100,-297,-32,-69,-20,-39,-38,110,158,174,66,136,-176,-21,-31,-32,87,244,175,-38,-69,-64,-83,-57,-204,142,472,1000,73,-153,-83,121,-40,10,-553,-364,293,79,-66,-81,-53,-53,-48,-89,-228,-200,-110,57,-71,-121,-719,-226,-40,-108,-282,-91,-130,-399,168,6,-107,-5,-174,-267,-25,-29,-25,-9,327,-124,-43,-22,-93,41,-143,-31,-16,207,-206,-106,-194,61,-6,-68,149,-139,257,-193,-14,95,-6,-85,-49,226,131,29,-77,64,-12,-50,-244,-108,34,65,-46,-6,30,-469,-61,-28,-105,55,-12,-7,-82,14,-185,-216,-38,-137,137,-45,-158,-205,-285,61,-5,-103,-142,208,-49,-48,-253,-235,-243,-313,6,-56,-117,-3,66,-73,-56,-72,-576,-457,-76,-164,0,-25,-29,-59,-107,-269,-26,-4,-189,-25,813,-70,153,379,217
BTCUSD
BTCUSD|20121220|20221220|0.475,0.011,0.0,-0.003,0.0,0.881,0.013,0.0,-0.001,0.0|1.25,0.06,0.0,-0.022,0.0,-0.475,0.024,0.0,0.01,0.0|-0.077,0.46,0.0,0.231,0.0,0.015,0.566,0.0,0.169,0.0|0.034,-0.184,0.0,0.618,0.0,-0.004,-0.174,0.0,0.73,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,90,50,120,20,10,30,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,40,20,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,40,10,10,10,10,10,10,20,20,10,10,20,10,10,10,10,10,50,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,20,10,60,10,10,10,10,10,10,10,30,10,10,20,30,10,10,20,30,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,50,10,20,10,10,60,10,10,10,10,20,10,20,10,10,10,10,10,20,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,50,10,10,30,60,10,20,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|48,-117,85,77,-23,-43,-130,-18,-95,-108,-79,-29,-6,-14,-71,-12,-20,-101,-109,-202,-33,39,-52,-66,-249,-74,-47,-266,-10,-27,-9,-1,-15,-17,-4,-63,-115,-37,36,-4,-10,-32,-29,-15,-62,-219,-132,-6,-9,-76,-35,-47,-82,-36,-82,-117,-33,-1,-6,23,108,-52,-84,-3,-285,18,186,378,124,-135,79,-172,21,299,-34,-16,-3,-53,-209,-10,-14,85,-4,-105,-14,-101,-159,-319,-67,69,45,-18,-63,-202,-30,-142,-504,-125,14,74,-2,-6,-13,1,-8,-187,-8,-9,-5,-66,-102,12,-49,77,-58,-238,-41,-7,0,-117,-6,-53,-60,-32,-81,-414,-426,-139,-11,-139,-48,38,-7,170,-515,-442,-24,89,134,-21,-11,-155,102,-121,13,70,-10,-138,-62,-148,-323,-72,-4,-67,384,-183,-75,-18,51,52,0,11,97,1000,184,-6,18,-93,69,-25,42,267,-76,-45,-226,-81,57,20,22,-50,8,-113,-11,-6,79,-11,28,27,87,-14,5,23,-2,3,-2,145,84,66,-32,-42,52,-60,36,-18,-34,-107,63,-198,-551,-189,-3,227,28,-127,-4,-41,127,-176,-1,-95,35,27,152,42,42,43,41,-73,13,-108,-140,-24,60,40,-5,-20,-79,-230,-245,-5,-26,-6,36,33,-1,15,-23,-31,-193,21,-15,24,30,43,-14,26,-11,121,139,199,-53,-31,14,74,77,112,268,-63,2,156,308,76,17,0,14,4,0,11,343,-36,14,-87,-171,-2,41,-75,-33,-646,-1298,-725,32,37,-232,-119,-353,-25,-9,-401,-4,12,45,111,53,-83,-118,-81,-52,-5,-18,-16,21,43,50,105,-26,0,-19,-67,-9,47,-2,0,-3,10,-3,-2,-21,-19,-1,12,-8,8,33,54,64,19,-33,-27,-86,-85,44,46,-11,59,75,0,12,-2,-1,5,-2,186,69,-21,-8,-22,73,5,7,0,128,-6,-90,44,-28,34,-388,-235,89,40,-138,-378,-147,-76,51,65,222,-5,53,51,68,-53,58,-63,-5,-11,-5,-7,10,4,63,137,40,234,141,-18,-9,-5,-73,-46,36,44,21,23,-4,-33,-9,0,-27,-1,-4,5,-140,-7,-2,-4,0,-8,92,-1,-48,-26,-70,-78,-78,11,-63,0,-4,0,48,48,-1,72,281,-4,-1,-1,76,143,18,167,57,40,-8,-11,-7,-5,69,63,84,415,64,45,-109,-40,-27,-16,65,63,-49,66,53,56,56,-6,3,-7,-6,-8,35,44,56,-2,54,65,180,0,61,42,43,-24,-18,81,43,-12,10,32,-3,6,39,37,-35,-164,-68,-25,97,96,69,-6,-99,-7,-3,-6,-158,66,37,74,-70,32,59,-94,-136,-65,-60,-11,-2,58,63,53,-16,-3,-86,-43,-75,-4,52,64,70,68,-15,35,-28,-37,0,-3,10,-14,63,-5,21,-20,-74,-67,-86,-7,35,-13,-8,41,31,65,154,62,-11,-19,33,39,37,29,21,42,39,467,6,58,55,41,23,10,50,61,-29,7,7,-53,-78,21,11,56,-50,-56,-18,14,29,49,23,59,45,41,-31,-16,-2,32,-118,-27,51,15,-19,47,-1,94,-1,-155,-77,-26,-11,-20,39,51,-12,114,-10,-201,-164,-97,-36,-4,0,-35,45,-2,-27,-21,-34,-234,0,29,-8,-5,71,62,-41,-4,-30,-21,-10,-2,56,-23,14,-11,49,-25,6,60,71,71,22,-7,-4,-8,14,14,-317,-7,228,55,99,-92,-14,-8,-65,-368,-134,-76,33,55,-4,-12,-20,80,-46,2,104,57,185,140,-3,25,-22,-51,-18,-21,68,-53,22,140,125,-30,-1,81,-22,-20,-75,-42,-19,0,18,-1,-1,56,21,-22,-18,-41,48,0,29,-11,-6,-55,-18,-21,-41,-194,-99,56,129,-2,15,-1,-17,-47,-10,131,49,-30,-105,-116,-1,57,0,-3,-20,-17,62,68,-20,30,-5,-28,-91,-171,-74,-69,22,36,-19,61,-8,-110,-33,-77,-18,-205,-106,27,-25,62,-121,-150,-65,-6,72,72,57,5,36,0,-31,-17,145,-4,88,-30,75,85,39,38,-5,33,-5,-9,-2,-188,-48,29,32,-25,36,-2,-59,2,-9,11,-33,49,-15,-14,-31,-211,-122,-20,-12,-67,-32,-1,42,-8,-75,-43,-2,0,78,-14,17,-136,253,-31,-101,-380,-105,-1,42,23,-4,-46,-46,64,-7,-38,-22,37,44,37,-32,-43,-58,37,27,-7,-11,14,109,56,-13,-5|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,20,10,10,10,90,20,30,140,10,30,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,30,20,10,10,10,10,10,10,10,10,50,20,20,10,20,20,10,10,10,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,40,10,10,10,10,10,10,20,20,10,10,20,10,10,20,10,20,30,10,20,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,10,20,20,10,10,10,10,10,10,20,10,30,10,20,30,10,10,50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,20,10,20,10,10,10,10,10,20,10,10,20,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,50,10,10,20,10,60,10,20,10,10,10,30,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,20,10,10,10,20,10,10,10,10,10,10,10,10,20,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-97,-25,-103,-109,-104,-28,-6,167,37,-29,-123,-107,-11,-10,-21,-17,21,34,28,-2,-33,-7,44,95,83,109,64,-123,-118,-1,-13,55,2,-17,50,8,-34,-26,-24,-89,-17,-16,-24,55,38,29,-22,-14,-32,-12,-1,77,-3,44,47,-25,-29,-2,26,71,27,21,52,-108,-82,-86,-30,104,46,-39,-99,-64,-12,-179,63,47,-20,-49,-6,-28,-6,-3,-5,-4,17,59,-16,-16,-1,33,91,47,-10,25,96,59,-92,-62,-25,-6,44,-2,-6,-95,-18,-56,-12,-36,-42,-11,-12,36,40,-39,-44,0,173,58,-20,-4,22,49,62,77,-46,-14,-24,108,-10,-127,-8,66,-13,-42,-139,-82,-17,52,-125,0,-20,-23,76,97,57,44,50,50,65,51,78,11,-160,43,120,-50,-57,-10,17,50,-11,-124,-139,-42,-21,-53,29,30,-10,-97,-49,-3,-15,-7,79,1000,-5,-17,0,-9,-40,-24,40,-8,-14,-9,0,-21,-11,-12,173,105,-12,63,-10,52,-6,294,338,-14,-94,-65,-19,-50,-64,-6,-1,-97,329,30,-36,-25,-22,-112,-65,-65,-9,250,110,0,57,16,-56,-51,-9,25,185,-26,33,66,1,212,-44,-7,-20,67,50,-68,46,-23,36,34,5,-30,-84,81,-27,-31,-60,-4,-8,58,-23,-15,4,-34,-12,70,27,-58,10,-3,-5,-44,-2,28,-5,-2,-22,-6,-6,-3,42,-3,57,-3,3,66,351,16,187,48,-190,-104,-261,-132,-5,123,141,17,32,87,25,64,-51,-273,-135,57,-32,324,150,115,-4,-15,-168,-195,-63,-2,20,4,-65,4,-25,-170,-28,-30,15,-13,51,11,18,32,-14,-35,-144,-1,-60,-18,-79,-7,-76,19,-9,25,-52,0,-42,-10,-2,32,69,-16,-11,16,-8,-8,-1,-15,46,49,65,-1,-5,-9,-6,-16,41,43,-1,32,-22,-73,-3,0,-1,-63,-21,91,-59,-32,-37,-8,15,-9,-49,-209,-58,-47,-66,-60,-33,-12,-104,-1,-81,-31,-156,-2,-40,-6,-13,92,-3,-2,31,-118,-331,-166,-25,-32,44,120,-3,16,38,2,-48,-3,10,-7,36,-60,-25,-20,-19,68,39,39,24,-1,49,22,-20,33,-73,-98,5,-5,14,2,-12,-357,-40,-19,-3,0,-19,-6,20,-19,-138,-24,-158,-92,0,0,-28,-23,-13,-56,19,-21,-14,-43,22,-212,-104,-137,-74,-12,8,-13,-9,-109,-166,-293,-170,-54,-210,-99,-37,-98,-339,-215,-42,-3,-317,-450,-125,-77,-76,29,-4,-7,-45,-45,-95,63,106,-8,-51,-113,-107,-7,107,110,66,-168,101,-84,-21,-58,36,-34,-4,2,119,123,22,-2,-627,-75,-33,-14,79,28,0,-17,-111,-350,-234,-40,13,0,-6,-7,-373,-73,-99,-40,0,0,51,31,11,-29,-11,-11,-141,-40,31,-47,-12,-76,-22,-17,-58,-58,-196,-110,-186,-43,-30,-117,-17,12,-315,-148,-165,-11,-165,-287,-154,-20,0,-23,83,-90,-6,50,-190,-9,0,-3,-133,-101,-155,-71,-57,-57,-19,-4,143,-148,-226,-125,-22,-67,-52,-6,-109,16,-64,53,22,-72,-161,-116,-429,-126,-1,-20,-76,-5,41,22,-3,24,-111,-32,-86,31,-29,24,25,-7,-180,-142,-80,-294,-24,23,-2,-52,-34,-95,-29,-30,12,-6,71,-25,-5,-13,-11,-37,-14,-26,27,8,109,-1,127,38,-91,35,0,-24,-3,-3,-36,-21,0,124,-50,-183,0,-96,-7,-7,-10,-141,-256,-356,-322,-103,-2,-89,12,129,70,0,31,-45,-114,-48,-19,-88,-75,-2,-54,-1,8,69,38,-13,-61,-4,-63,55,34,-5,-11,0,-1,-14,6,-27,-76,-62,53,43,67,-4,48,-9,117,-36,-56,-17,-19,44,17,0,-19,-4,-6,-33,-6,63,278,-10,30,61,-1,-42,-5,-14,-3,-5,-1,-11,63,-2,-37,-128,-7,91,370,51,-12,-21,52,-2,-89,13,-21,129,26,52,55,-7,14,-62,-277,-196,-83,0,26,14,23,-11,-5,-64,-33,-20,-35,-1,-10,-13,-19,-9,-68,-17,-1,53,-9,45,-15,-11,-77,42,46,-6,-43,-28,-25,-21,-7,-14,31,41,33,-9,-20,338,594,182,-7,-2,12,27,2,90,-1,66,19,65,0,-44,40,8,77,67,-20,-13,23,42,8,-56,-25,-15,26,-79,-73,-201,-86,-8,-88,-113,-34,-32,64,-45,-9,-151,-7,17
DJI
DJI|20121220|20221220|0.597,-0.032,0.0,-0.121,0.0,0.866,-0.046,0.0,-0.091,0.0|1.492,0.1,0.0,-0.162,0.0,-0.669,-0.037,0.0,-0.042,0.0|0.07,0.374,0.0,0.305,0.0,0.085,0.488,0.0,0.26,0.0|0.249,-0.257,0.0,0.529,0.0,-0.018,-0.233,0.0,0.502,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,30,10,10,10,10,60,10,10,10,20,10,40,10,10,10,80,10,10,60,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,20,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,20,50,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,30,10,10,10,10,10,50,10,10,10,10,60,10,10,10,10,10,40,10,10,10,10,10,20,30,10,10,10,10,60,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,20,20,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,30,10,10,10,10,10,30,20,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,20,40,10,10,10,70,10,10,10,10,60,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,70,10,10,10|-645,-188,-7,-97,-4,29,-18,90,60,-7,-30,117,-226,-82,-49,77,-245,53,78,221,-72,280,245,400,683,268,-74,-15,-106,-102,-3,251,302,536,47,3,-6,-179,-56,101,-62,172,176,98,-15,-71,-18,200,61,-249,-30,-38,1,94,-2,-9,47,79,-35,-15,34,-30,76,120,39,96,-47,-11,-61,-21,124,-704,0,-248,112,-193,143,-27,-14,133,170,-20,-17,-2,-120,61,-98,-32,-2,79,-2,109,-35,-16,132,-44,-63,-168,205,-28,919,235,-34,-53,-23,-243,-68,-26,-35,-54,60,-37,28,-91,-3,-21,-47,79,-127,229,61,59,-49,-139,-63,-43,91,201,-19,-80,-27,120,-122,-141,-100,-32,-25,-98,-27,50,-2,-65,-138,-7,-36,-9,53,-36,-36,-64,-11,216,-5,-664,-19,74,82,-83,-3,-66,21,386,-454,-1002,-282,-7,-52,-30,-9,-16,-148,-131,112,-484,-96,97,93,-13,-162,-49,38,31,-5,-199,-22,205,153,-29,14,-41,-222,-225,-145,107,70,-3,-8,-7,-20,-247,37,96,268,362,-95,706,-69,60,70,120,-34,-65,-152,-69,-7,69,-76,71,-5,384,109,-102,-484,-3,34,60,-20,380,244,678,292,-48,-2,-154,-17,-62,105,486,597,212,-26,-21,-310,-29,-22,-90,285,-204,-92,-290,-6,-516,-42,-16,127,-47,-7,-72,-247,76,-47,-13,43,-26,43,89,-38,30,-21,-106,-78,113,-19,-13,-8,-12,-12,362,247,-4,50,76,64,-14,-52,-16,-93,-172,53,-1,32,99,22,-75,-4,-9,31,70,116,-54,-61,-3,-55,-19,-15,176,143,-11,134,144,-11,-28,-47,-29,-136,-75,99,64,-9,-2,-24,-43,30,-161,-179,82,175,129,115,-71,-396,-202,101,-9,139,-6,-31,-312,-111,2,0,-234,-21,-52,-31,-12,-26,-37,-144,-23,68,23,-16,149,60,-64,10,-7,-8,46,210,393,-5,96,-56,89,48,475,176,20,-10,-31,-29,34,76,41,178,38,-32,-94,-33,76,-5,91,-15,123,72,-46,-13,-11,0,-37,-244,-161,155,-8,-3,165,23,77,16,-117,35,-74,-5,-107,-286,-24,-263,-14,-37,-5,-196,-290,-576,-188,41,-20,-98,-34,-45,-45,-242,40,60,-7,-10,-17,-43,73,48,-25,-8,-40,-27,-2,-5,42,73,-6,-23,8,-16,63,167,21,-99,-47,-119,-36,-59,192,158,115,123,54,-28,-1,-90,-169,-71,-72,114,156,-141,155,64,42,-88,69,-75,76,94,-4,65,102,152,-9,10,-17,-192,67,-10,-343,-90,-43,-106,12,-9,-79,-10,-73,-461,-509,-75,99,-57,0,-27,80,-156,-198,-642,-363,33,47,-28,-40,-43,-8,9,-27,-67,41,26,0,6,-49,-29,-60,32,70,34,-2,-9,-40,-240,-152,21,189,49,67,12,-12,-2,16,31,200,193,211,-150,-84,-45,58,75,44,260,128,105,-9,-11,-1,82,-94,184,-53,266,326,-55,-209,-9,54,85,308,-14,60,420,160,-39,-81,-17,-10,77,108,-28,257,-104,-53,-59,-128,-5,-13,8,119,-20,-130,-49,-9,-3,-23,-46,150,194,263,-214,-12,72,-6,-22,25,-10,290,-41,-21,-18,-1,-17,-42,-14,-21,0,-4,-23,-1,-1,-13,172,-9,224,86,-9,-2,-22,176,-6,33,186,-61,-187,-46,-33,94,172,0,16,-12,-37,59,103,118,194,1000,44,40,49,81,82,89,142,-34,-26,-2,-15,-19,0,271,-56,-45,-21,-96,-146,-5,-54,141,-11,-320,58,-23,-43,-14,-49,142,127,120,-285,-187,-102,-72,-11,-55,-25,44,52,-43,-13,20,-41,-23,-88,-25,-4,-23,11,-179,-9,96,-84,215,93,-5,-49,148,-2,-58,-14,24,-6,-33,-6,103,9,0,-61,-1,29,113,98,-97,-19,-52,87,-39,-146,-70,-72,-119,-844,-184,-45,-27,-96,-155,93,-56,-41,-20,-43,-63,-142,-89,263,66,21,-21,-32,-70,-70,-263,20,-99,-11,-32,-50,-122,-186,-159,-137,136,-77,-14,-814,-23,-22,-170,-137,-42,-36,-64,75,-123,-100,-53,68,133,124,-77,211,217,522|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,20,10,10,10,10,10,60,10,10,10,20,10,40,10,10,10,30,50,10,10,50,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,20,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,50,10,10,10,10,60,10,10,10,10,10,40,10,10,10,10,10,20,10,20,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,40,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,20,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,60,10,10,10,10,60,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,70,10,10,10|-73,-90,70,38,76,12,-269,-89,-47,-77,-43,-161,114,-83,-48,36,-18,-11,-2,-39,-239,-140,-40,-341,-106,-78,83,92,62,-34,-231,-381,-311,-15,-178,-49,-29,-29,-73,-44,-271,-2,-49,-102,-126,-65,-45,-51,-71,-75,-21,52,-19,-29,-24,-131,38,-79,-53,-8,271,43,-24,-60,-8,-8,-5,-15,8,21,-127,72,-16,-40,-43,-70,64,232,-28,172,-22,-27,-8,-100,-134,99,133,61,67,-37,-1,-7,-55,-75,108,-112,7,-70,469,-62,-12,116,-54,-259,-49,-150,-146,-58,-3,-5,-66,-45,-102,-17,-22,-71,-96,-27,0,-46,30,-22,-130,-233,-89,-189,-14,111,0,-9,12,-235,-178,-6,-9,27,-31,-70,-7,-7,-13,-71,27,-1,-14,-24,-101,-38,18,50,-79,-3,-191,-47,-2,-12,-12,112,24,-5,-93,-295,-80,0,-8,-1,115,112,200,235,114,67,-13,-37,-130,-96,85,71,232,141,-265,-137,-57,-8,81,391,-37,-68,-76,57,119,-240,-45,-102,53,40,-23,61,-71,-156,-26,-19,81,-123,-83,-59,104,0,-96,-7,-17,-34,-18,-11,0,-98,-52,-84,-8,-53,-11,48,-4,-34,-16,-143,-7,-31,-77,-44,-34,-15,-64,-65,-21,-152,-240,-26,-172,-50,-170,-32,-33,-1,-25,-15,-15,-91,-87,-231,-19,-34,-70,-59,55,17,-24,10,-29,-41,-2,-56,27,-134,-54,-41,-30,46,-3,-363,-20,-55,65,16,38,9,-79,-9,51,83,-97,-36,62,-5,-28,-73,-12,0,62,-198,-4,-20,-4,-17,-128,-34,68,-31,-247,-239,-21,-41,-93,-24,14,-81,-238,-165,-44,-40,-102,2,-99,661,-188,0,0,-9,-27,-20,27,33,639,-2,-20,-55,-99,-45,-31,-423,-152,-66,-30,-3,-86,-36,104,-45,-34,104,-227,-191,-80,-65,-56,-86,143,-26,-21,-80,-47,-23,73,165,-93,-7,-43,-9,70,123,-50,-5,-1,57,63,-36,-17,-62,-39,-14,-34,-5,-77,-37,-98,-45,-59,-49,4,-159,-74,-29,-16,-244,-486,-245,8,-13,-1,-34,-58,-182,-62,-695,372,44,-46,-5,-11,-156,-178,-64,-2,-67,-37,-24,-61,-57,-30,69,-27,-153,7,-19,-19,-78,-52,-31,231,-54,-18,-28,-40,51,117,117,-14,-84,-23,-38,134,197,-10,-51,-2,-71,-49,26,268,-15,-83,-49,-35,-29,-94,29,-39,-140,-167,-68,-1,-31,-120,0,74,-59,-116,-134,-37,-136,-154,-136,-303,6,44,-29,-32,-48,-7,-115,-667,-500,-242,0,-1,-30,-3,-21,119,-115,-565,-211,115,-9,-67,-84,-13,-68,-93,-80,-106,65,-8,-89,-417,-29,-27,-61,-27,-18,64,66,115,22,-57,-55,-1,-10,-18,-80,112,85,47,-28,-3,-75,-20,-69,-54,252,90,-63,-35,-12,-4,-15,-1,11,68,-23,-16,-95,-3,-3,-25,31,7,-101,-104,-63,-45,-91,-6,81,-6,-110,-70,49,-13,-85,-57,-179,-66,-92,-284,-152,-249,-80,45,-75,-158,-50,-115,-9,-22,-322,-124,-57,-64,-1,-100,-58,-104,-67,-106,-224,-45,287,-21,-314,-18,-50,-60,-19,-50,-74,-32,339,-8,-114,-164,-31,-16,-6,-37,-26,82,40,40,-13,-30,-75,-54,-124,-2,-37,-10,19,-67,-62,-307,-130,-153,44,-18,-15,-2,-5,-31,10,-11,-78,50,74,-1,-15,-35,-9,-29,-31,91,58,-45,-48,-14,-8,-123,-205,-7,-3,-15,-63,-17,-26,-48,-106,-153,-166,-7,-23,-116,-53,-50,-23,-6,-10,-22,3,-142,-251,-196,-80,-30,-21,75,-36,-6,-188,-28,-2,8,-6,-72,-40,-5,-49,-28,-4,-101,-12,49,33,-19,-96,-169,-58,-293,-201,-69,-25,-82,-17,0,-10,-149,-134,-41,-87,-12,-29,-10,-34,-30,35,59,-122,-5,9,24,0,-13,47,81,-47,104,-7,-17,-76,-34,-17,-49,-69,-47,-20,-26,-46,-49,-248,-35,51,-29,-15,-14,-9,-285,-46,-1,-51,-56,-45,-139,-17,-45,-22,-16,-35,-75,-5,-13,0,-5,-18,-13,2,-7,-10,89,-1,-3,-148,-16,-51,-5,-9,-10,33,37,-44,-125,-1,-7,-48,-20,-10,-1,61,65,100,43,-15,-6,-68,-9,-92,-47,-38,-47,-17,215,500,1000,45,-41,-45,-26,-91,73,24,-28,-27,-65,-102,-27,-96,-142,-34
DXY
DXY|20121220|20221220|0.445,-0.123,0.0,-0.534,0.0,1.001,-0.146,0.0,-0.293,0.0|-0.645,-0.55,0.0,0.395,0.0,0.402,-0.247,0.0,0.265,0.0|1.359,-0.599,0.0,0.581,0.0,-0.227,-0.604,0.0,0.468,0.0|0.479,0.048,0.0,0.856,0.0,0.396,0.501,0.0,-0.288,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-114,-68,317,150,-146,-99,-430,266,-261,-62,-106,-35,-123,-82,-401,-890,-40,172,-100,-67,156,9,5,61,-32,-25,105,-543,-108,-146,185,-186,-40,-55,-127,-121,-29,-20,19,-19,180,-58,-2,-3,-5,-130,-89,291,-46,-35,344,155,213,30,53,-19,130,-67,98,-1,148,-132,-5,-48,-45,94,86,-92,-11,-115,-17,50,-13,162,167,217,0,157,-171,-58,-17,73,15,-52,-14,199,-55,-76,-425,-339,-65,-111,-28,180,11,-70,-29,-136,-442,-166,-123,-71,50,122,52,-503,-88,-844,-412,-279,65,-63,294,4,-38,69,-339,-184,-285,-190,-25,34,-64,-100,91,46,-35,-122,-196,-224,-9,-101,-6,-43,-368,-90,-55,-141,-436,-875,-133,318,433,-1,142,-200,215,-3,-230,-199,446,184,-4,71,-32,149,217,-213,-504,-19,-36,267,25,-20,196,97,-187,-615,-303,-369,-371,-21,33,-58,167,-46,4,-210,-66,-246,-119,289,73,-220,213,48,-90,-19,-102,-79,-527,-419,-119,54,-125,-51,-11,216,-442,-62,251,69,-30,29,-19,-30,-217,-158,-403,-376,-209,224,-27,-13,-95,-243,229,-154,-519,-292,-43,-6,-44,-7,50,-141,143,-94,-102,96,-53,-78,156,226,247,-106,-34,-38,-261,-63,-107,353,207,99,-11,70,50,-38,-686,-90,-97,-18,170,205,-133,-3,90,-181,-530,-202,-653,-393,-19,-16,113,155,-16,-767,-36,-468,-508,-34,-125,-33,-9,107,-24,-178,-18,-229,-31,-36,-447,-367,232,138,43,345,-18,494,108,295,-101,69,-126,92,368,-17,-3,361,245,-153,52,-60,0,-31,-84,-219,-14,-15,109,73,9,-156,-217,146,165,-206,-100,-194,-100,104,-47,-269,-502,-9,-39,-133,-54,-90,-48,148,-50,-41,-176,-81,-42,-88,101,-28,208,147,-18,-305,1000,593,-28,-79,-175,-198,-147,-60,-27,-72,-107,-116,-9,-359,-71,-422,-264,122,-165,-43,-37,-7,178,-230,-101,-169,-154,-39,-21,-101,92,21,-18,-153,-35,-545,-267,476,-491,-154,-23,91,-15,-1,100,-173,203,270,-83,-13,-16,-153,-12,150,153,81,845,-49,-60,-14,-32,-96,-43,69,168,-143,-20,-5,78,-76,-212,-251,-37,75,-99,-602,-70,-52,-18,-60,-490,-234,-149,-45,-3,-599,-8,-58,-33,28,-42,-51,-150,-82,111,-216,92,-152,-97,46,156,181,201,-155,-168,-105,-828,-47,40,15,-8,821,62,-18,-81,-176,-447,-159,300,29,257,281,41,-227,-397,-305,-5,-85,-117,-34,81,97,11,-1,-250,-51,-1,37,-104,116,65,144,145,384,51,88,69,156,-73,-118,217,206,444,173,262,238,93,41,-265,-129,-139,155,-82,87,-22,-18,-6,-203,-527,-149,-6,-85,-192,-2,-47,-391,-16,-212,-431,182,103,-60,-744,-44,-79,141,103,-12,-164,-210,-28,-109,-171,-2,14,104,79,-78,-19,113,-83,-281,-51,-118,88,69,222,420,470,-44,251,-28,-44,-151,142,244,386,-30,577,-31,-119,95,-189,-44,368,176,350,58,-91,-298,18,-86,-67,377,269,201,77,-29,-255,-13,132,111,184,266,184,98,71,110,157,167,238,123,53,-16,-193,194,82,4,287,-46,456,-38,-59,-257,133,208,-136,-32,-40,-25,-402,-242,-98,-68,106,92,289,-640,-477,-168,-4,-38,-4,-27,-117,70,35,-27,-110,-43,0,3,38,-57,-66,299,-32,72,-48,66,157,-18,-7,-495,-118,281,202,260,-123,-14,300,-96,-31,-131,-126,75,-67,-67,-46,-8,440,471,-349,3,-39,-98,0,-202,559,189,75,603,283,240,158,-90,-111,-33,211,182,63,366,81,154,-1,180,-100,103,207,247,-58,0,61,82,-70,138,-48,-104,-158,230,294,-46,-20,-40,144,-336,-157,-7,-315,-49,128,-85,-19,91,-255,-8,-790,-342,-88,67,-104,-42,267,-32,-128,-306,-440,-11,-8,-219,-2,-9,-177,-15,-43,-49,-113,-263,-305,-17,-55,-82,-15,-250,-327,-76,-131,-246,-1464,-248,-243,-297,-191,-767,-311,-232,-5,-255,-122,-266,313,75,-62,-38,-128,-90,-132,217,374,-33,-57,-8,-326,96,-91,-245,-174,-107,172,-11,156,282,-83,187,-147,-68,-27,-120,214,126,228,-107,-26,-55,-225,-281,-375,-7,207,203,230,-193,166,202,-222,-197,-472,-94,-48,2,-3,-62,-160,89,106,-59,-41,-259,-82,-36,-126,120,-11,-79,-52,-20,-194,-2,-277,-55,-107,-18,-27,-2,137,-9,-17,-13,-211,-344,-106,-229,-91,4,202,101,-27,-124,-127,21,207,-18,-41,-142,-112,-59,-43,-143,-39,-17,-13,-152,-2,-92,-14,-27,-280,-24,-9,-112,-152,-110,-11,-6,-69,-39,-25,-259,187,-26,59,390,-399,405,-99,-184,-50,-86,-50,17,151,674,202,426,-185,-12,-88,-20,96,-97,-17,253,41,117,-73,-81,-450,-129,188,-59,-237,-79,-183,-49,125,-24,-21,-20,-76,-533,-9,-93,-128,4,266,152,-3,-48,-33,-377,-219,-1,-15,-50,-19,54,-74,1,-2,-161,115,-67,-220,-6,60,-105,-65,-126,108,-17,-91,-116,-511,-34,-108,-125,-74,-111,306,-225,385,-41,118,26,147,-45,-46,-114,-9,-87,-21,4,224,255,-166,-216,-364,-8,-101,0,-67,-45,243,734,-207,-24,-3|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-26,9,51,-41,-151,5,230,-152,227,-97,-178,-16,-42,192,-14,11,123,-119,126,-107,-492,-467,-276,-117,83,-38,879,79,0,-2,-24,-97,-344,-40,-118,-82,-19,170,117,-20,-138,-69,-21,4,-40,29,-21,-50,57,-86,-198,-242,-119,-190,-53,-111,-379,-191,105,163,-16,-21,-217,-63,-274,-6,-12,-121,-3,-53,-11,122,-68,-266,-430,-116,-113,-7,-155,-162,-252,56,-48,-135,-274,-17,-13,-27,-14,-135,0,43,-90,-38,-47,-51,-38,-6,-173,-12,-8,-9,-28,-54,19,-3,0,-54,-19,-53,-142,9,-72,-20,-56,-61,-48,-33,95,138,-29,-131,-18,-89,-70,-42,-54,69,-69,222,64,-7,-125,-58,-229,-184,418,96,122,309,-9,-80,-34,35,105,65,-62,31,122,24,-142,-28,4,71,-145,-52,-91,-22,101,-16,-117,-11,-8,-3,-79,-7,-78,145,112,-126,-94,63,25,-27,-103,-41,-21,-25,-15,-333,-275,118,-52,-29,-267,-5,-176,-424,-44,-30,123,405,250,-38,-6,-33,-11,-349,-104,-1,-257,96,-80,13,38,19,-72,-128,107,145,0,-339,-172,-103,27,-135,-17,-30,205,152,49,109,-102,-126,-171,-162,-136,-64,-47,-47,-28,-148,-82,-132,-117,63,0,-67,-4,-40,-33,-33,-53,-170,34,-103,-16,-9,55,-40,175,-116,-64,311,142,-155,-258,-13,-32,-3,347,142,8,136,-5,-21,-2,143,-32,-209,-40,213,-20,91,184,145,-49,-26,-73,-182,-165,-272,-346,-118,82,-99,-46,-100,-100,-148,-135,51,-159,91,-98,-123,-73,-129,-95,-30,-336,-367,-55,-261,118,-42,-118,68,121,95,-31,-27,-402,-70,169,-56,-17,-1,-20,289,236,-11,-273,-21,-32,-36,44,151,27,-28,-53,-286,-234,-28,-24,-4,-21,121,-29,64,-3,-35,-7,-111,-218,-69,-105,-50,-5,-27,-11,-45,1000,-58,113,-3,-50,-24,107,198,-92,-26,-17,56,86,-9,-143,64,110,15,182,101,-31,88,272,-3,117,-75,113,-48,-14,-61,-255,147,164,-16,-19,-323,-387,-259,-74,-122,-11,-20,30,-19,-11,-13,-484,-551,-166,-404,-315,0,-145,-103,-20,0,-99,-8,99,-97,-162,-41,-58,-5,-39,-20,-195,-21,71,55,78,192,-29,84,180,28,120,-54,82,-2,-24,-127,-173,-78,-101,0,-72,-29,57,-48,-70,-288,-794,-2,-22,-52,47,155,-154,-20,-211,-25,-173,124,-96,-146,47,-151,-22,-27,-35,-24,-258,-20,-126,-155,42,45,-206,100,-252,-75,875,110,-472,121,205,-88,-124,-58,-91,-19,484,-75,-115,-249,-35,-6,67,-17,-114,-79,-2,-337,-411,-677,-96,-700,-11,-14,-404,-39,-95,-38,-19,-150,-33,-166,-2,-140,-18,-27,-101,-37,-24,-5,-8,-18,136,-55,74,-10,-50,69,-62,-19,187,-34,-100,-392,-41,-61,21,-35,-97,-29,-1,-38,-495,-141,-258,-70,-64,-20,-51,175,561,-84,-128,-188,-179,-102,-55,-160,-66,-5,-15,-208,-314,-459,-373,-236,-239,49,-32,-113,-39,-15,-103,-145,-86,-43,-14,-63,-148,38,32,155,-43,159,-246,-296,-305,-42,-213,-29,-1,-24,-55,-104,-374,-544,-224,-66,-162,-107,-67,-61,-171,0,-16,-17,-79,-1,-202,-5,-178,-41,-105,-110,-444,-67,-55,0,-106,-143,-16,-54,-328,-165,-177,-373,-179,-5,-27,-13,-145,-273,-465,-166,-28,-209,-247,-20,55,-33,-56,-55,-494,-270,-166,-112,-79,-23,-220,-23,-145,-402,-597,-18,-10,-55,-25,-100,-47,-98,-1406,-418,-97,51,134,-122,-42,-28,-45,-93,-122,-389,155,-21,-37,81,-252,91,28,78,-296,-323,-284,-53,-11,-124,-38,-69,-259,-415,-40,-280,-278,-250,-72,-42,-112,-141,-561,-536,-161,-64,-183,-210,-27,-68,-63,-502,-48,-119,-64,39,154,-210,-94,58,-5,-2,-61,-59,-185,-67,-112,-737,-17,-16,-171,-100,-255,-663,-136,0,-243,-384,-45,98,-21,-1,-73,-20,-1,-145,-81,-310,-189,-18,137,93,75,-14,-131,-79,-396,89,-48,-43,-2,120,81,95,-155,-24,-180,111,170,-167,-138,-5,-55,72,-33,-76,-22,-29,-25,-52,-32,-332,68,70,123,-16,-38,-24,-7,74,-247,-301,-5,-76,-110,-137,-28,-26,-18,-76,-59,-380,-1021,-300,-469,-37,147,-21,18,50,-41,-719,-510,-227,-62,-8,-276,-12,18,13,188,-71,-133,-289,-656,-843,-159,-52,45,-22,-30,-195,-14,-4,-164,-47,0,-132,-62,-30,-24,-51,-14,-22,82,21,-34,-43,-272,-33,-121,-725,-22,-39,-128,-61,-6,-7,-10,-292,61,-41,141,-39,-3,-1,-167,-56,22,-192,-35,-20,59,-46,3,-4,-38,-44,-10,-108,-24,-1,-288,35,90,-49,-112,-59,-1,-134,-98,-87,-87,-116,-153,-88,-77,-139,-305,-12,-90,-89,-184,-48,-125,-217,-140,-85,-22,186,-28,-66,-912,-36,35,-300,-313,-11,-27,-39,-13,-399,-274,-229,-285,-108,-225,-103,-21,-73,-32,-400,-111,-21,-105,-97,-42,56,-62,-15,-15,-113,-197,63,-73,-284,-39,-12,-36,-77,-32,-7,-88,-25,-57,-198,-137,-109,-56,-108,-43,-40,-24,-98,-14,-7,-223,-183,24,-60,-56,-9,-39,-154,-132,-102,-15,-133,-2,-47,-83,-34,-31,-17,-83,-116,-332,-333,-40,-198,-21,-7,-67,-20,-114,-70,-180,-298,62,-32,-93
ETHUSDT
ETHUSDT|20121220|20221220|0.529,0.019,0.0,-0.004,0.0,0.842,0.017,0.0,-0.003,0.0|1.317,0.014,0.0,-0.019,0.0,-0.544,-0.017,0.0,0.001,0.0|0.004,0.431,0.0,0.265,0.0,-0.018,0.501,0.0,0.285,0.0|0.01,-0.192,0.0,0.536,0.0,0.01,-0.3,0.0,0.737,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,60,30,10,80,10,80,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,20,10,10,30,10,10,20,10,10,10,20,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,20,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,20,10,10,10,50,20,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,40,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-31,-44,-61,-22,-116,-39,-88,96,-215,-107,-1,-30,-80,-10,169,-220,-21,-11,-265,-244,-113,-273,-29,130,-19,90,-196,-151,-549,-286,-348,-241,151,40,-158,-528,-398,-785,-578,-320,-29,-38,-198,-135,-811,-298,-47,-127,-295,-38,-78,-46,-812,163,-71,-84,-21,-5,-78,-26,-8,-22,103,12,114,-16,51,-43,93,167,261,-142,486,217,-86,-4,-102,-37,-83,-70,-311,-250,-32,-3,123,-127,-230,-59,-128,1,74,-203,83,-140,-12,-11,-165,-105,-4,0,57,100,0,89,-10,-28,-180,48,63,-2,81,-221,47,-365,-528,-60,-517,-47,-195,-126,-282,-1114,-173,-51,-128,-192,-153,-29,-440,-97,-12,-705,-58,-29,-122,-465,-138,-403,-332,-480,129,53,-41,-38,-306,-4,-75,-64,297,218,-103,-214,-48,240,250,105,32,58,-68,-150,-190,239,-59,123,-28,-184,-48,-9,-53,-34,-407,-75,-230,-34,157,-84,-56,-433,56,-62,-279,-257,-744,-307,-108,-29,99,353,277,19,-42,151,-784,-217,-183,93,172,129,133,116,249,-47,-145,-502,-211,-285,-11,151,221,-18,-151,-48,-152,-697,-54,-21,-48,494,-110,49,59,-21,-256,-320,-140,49,-16,-178,-1083,-59,86,-16,-105,69,96,67,-88,-228,-51,189,122,-13,97,-23,53,-4,175,147,111,-6,-1,66,-15,-16,-63,234,-37,64,84,-138,-29,-593,116,100,-14,-84,98,-16,-629,-445,-330,-49,-388,-67,196,159,-2,-87,-171,-88,-98,-9,-45,-6,11,291,-4,125,36,74,-7,-658,-548,74,100,12,316,349,107,205,-37,-121,-415,-36,144,293,112,-29,-60,-457,-203,-7,-21,117,193,23,-5,-196,-59,-286,-15,-10,-39,91,-172,71,-66,-23,-261,-84,-84,-13,-52,-67,252,74,624,245,-110,-242,7,55,96,150,211,97,-4,78,231,-175,127,81,-22,-10,-12,-94,139,166,-18,39,135,-26,-664,-83,-407,-1050,-316,115,-20,-9,-87,-4,-180,-139,-134,-430,64,-8,-105,-257,-188,-101,-20,105,-156,-22,-73,-363,-702,-94,399,999,490,173,-188,-5,-455,-45,151,447,-89,-188,-41,97,182,140,-71,-57,-385,65,0,-17,82,-179,136,180,99,-16,-163,-85,71,-19,-183,-168,-293,301,439,-24,-307,-66,-145,-257,-19,97,213,90,-24,-11,-42,-369,-75,64,-1,-302,262,-9,115,77,94,61,87,56,-394,-170,-68,-1038,-280,-33,22,-60,-101,-682,51,98,-206,-281,-203,-94,-15,7,-134,-29,0,154,153,-650,-992,-571,-122,-10,-431,-15,-336,60,-112,-109,-50,151,131,-34,-19,178,185,154,213,142,-4,-2,587,746,-776,73,195,122,155,82,-1,14,360,-442,-1734,-409,46,112,93,-65,-118,-266,20,-146,-142,0,99,-31,-2,-66,-199,-660,-329,-3,-103,104,-129,-6,-250,-6,-6,-174,126,-73,-64,-415,-1132,-1618,-6,140,-166,-49,0,-14,-18,-732,-181,-131,-77,-4,162,-6,-66,-56,137,15,-51,-691,-199,65,-57,-58,-2,-3,-270,134,-22,-72,-79,134,247,636,-97,374,190,-24,-101,-227,-163,-62,428,272,143,167,-5,-127,-27,13,463,140,123,98,36,-18,-143,49,-420,34,67,-5,-4,-13,58,81,51,-22,151,-40,-20,-72,-7,10,-75,-19,58,497,347,-61,250,-72,-6,64,-27,92,41,218,-136,-326,-9,-22,-17,-37,-12,-60,-5,-59,-794,-51,64,30,52,-3,-357,-267,-9,96,-46,-12,-196,60,48,-5,-141,-227,127,-8,-21,-113,-75,-142,173,-10,-224,-667,-88,241,351,-139,-289,256,110,-59,-319,-152,-818,-49,776,-15,82,-32,-90,-534,-34,-62,-76,190,245,-107,-20,-29,-36,-345,-94,-360,-177,100,69,-41,-2,-117,-9,-89,-61,-345,-1584,-19,-69,-217,-521,-163,119,-7,-45,1,-66,-52,-367,-27,124,98,-92,-331,-319,89,-27,-10,280,237,21,-396,-19,420,-5,-91,129,88,84,-2,-24,-561,-11,207,-2,0,-28,-26,57,39,-31,-28,-24,166,-104,-12,63,-130,88,48,-3,-308,-84,346,-45,47,-181,162,127,-167,-8,-184,73,-62,-154,210,20,147,-711,-26,-266,-544,-26,-178,135,-214,-300,-18,-183,-77,-260,-305,-190,-58,-16,-87,-222,-70,-32,-168,-617,-18,-62,-117,-128,-42,-20,-209,-27,-31,-387,110,61,-39,-50,-25,-15,-20,30,-51,-637,91,888,143,-16,-8,132,143,476,82,-29,155,29,-8,96,83,-13,-25,-3,-22,0,64,-4,106,-25,58,-10,-40,81,51,32,26,-13,-289,-150,-41,0,-15,121,104,-11,-70,-9,-53,-240,-41,167,51,-22,-20,-186,-128,-140,-454,-19,-123,-38,-9,-21,-77,-122,-79,-433,-88,-18,-91,-210,-465,-49,-220,-290,-299,-116,-113,-20,-35,-5,-277,-147,-317,-37,-11,-8,-16,-38,107,68,-46,-42,-3,-61,-28,-80,-688|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,70,10,10,80,10,30,50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,40,10,30,10,10,20,20,10,20,10,10,10,20,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,20,10,10,10,30,20,20,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,20,10,20,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-126,-380,-288,-200,-71,-14,137,-14,10,12,56,-37,-1,-18,2,-42,-2,77,-102,-91,-20,-154,-147,-144,57,97,50,165,71,-48,-24,-260,-53,-230,-6,-2,38,6,116,94,-18,7,-113,-41,-47,-90,68,58,-3,-1,-180,160,-19,-16,-8,-418,-119,18,116,-17,-28,-17,-303,44,-186,130,0,3,-294,-466,-636,-288,-32,-284,-74,185,-53,137,83,12,-25,-51,-128,68,-73,-23,-1,-34,-9,43,-142,-3,-69,102,-9,-20,-16,-157,-9,-36,-59,-188,-6,-9,246,-66,190,-8,-94,-109,-113,-40,-19,150,-24,94,118,156,-18,-26,82,-9,-44,80,-18,-78,20,129,203,59,110,-146,-62,-39,-266,-79,-62,85,173,-14,106,-2,-8,-87,-255,-113,-3,-111,-93,-94,116,33,-117,-54,-399,-84,-139,-71,57,-54,120,-90,576,-8,84,-203,-45,53,342,362,251,320,118,190,-365,-154,-80,158,-55,-3,-9,129,160,85,-21,-283,-115,-148,-264,63,201,247,98,91,-305,-119,-708,-271,-166,-40,-39,-1,13,142,-22,-339,-522,-20,-81,70,-26,-11,47,34,32,-241,-138,0,-62,-12,-41,132,-5,-49,-4,-118,252,76,31,-10,-133,-85,-96,-98,-206,-98,-178,81,-13,-142,-107,-73,-77,-212,-345,-172,-43,-248,-95,-72,-239,-546,-201,-340,52,-132,-31,-9,-107,-133,-380,-156,200,-146,-194,-52,-2,-20,473,-118,-40,406,166,-303,-225,-61,-3,-19,-41,-28,-7,-16,172,9,-21,-102,-7,395,113,-43,-7,14,111,-104,-183,-63,-154,-68,-167,-36,47,-43,-7,-105,-1,-14,-167,-218,-634,-184,-1,137,36,-140,-90,-117,-188,-39,-63,-44,28,-41,78,-17,364,107,-41,-2,-216,-156,-125,-7,-105,-5,47,-24,-13,-219,-122,-42,-70,-59,-81,-22,-2,-75,-307,-329,-148,-12,-56,-378,-83,-79,-21,-97,-202,-66,-107,-39,-136,-21,-56,-138,-160,-6,-46,55,-3,-141,-8,232,-19,-71,-65,-6,-27,257,67,-66,-39,113,76,176,125,0,237,135,-96,29,22,-40,-149,179,-284,-24,-94,-196,116,121,-34,-22,-100,-320,-411,-11,62,-7,-26,-18,-11,-123,-82,-298,-89,-82,-132,-7,-11,-34,-240,-224,-119,-193,-73,-15,-7,-34,143,-187,-50,49,-39,-260,-42,108,-30,-174,-72,-65,-49,-245,-512,-87,-79,-320,219,266,-364,-30,-42,-99,-124,-5,-59,-342,-151,47,95,238,283,-60,-270,15,-3,-28,-22,60,-27,-38,-39,3,71,159,-4,-14,145,-1,-32,-15,-29,104,147,24,-2,82,324,-8,-112,-147,43,-22,61,-50,-9,-359,90,-58,-27,-1,-292,-73,-269,-110,-46,-11,-98,336,-24,-154,-143,-248,-65,-88,-13,1,332,261,-19,-185,-101,-301,-41,-16,-3,0,210,-62,-430,-61,-38,-48,-20,-39,-129,-24,-51,-49,-2,-45,-26,-13,-21,-262,-138,-146,-8,48,-22,180,88,-170,-14,-17,-6,63,-110,80,0,-23,19,34,82,57,45,83,-435,-77,248,170,63,-14,-52,-12,147,-22,381,-24,-12,-191,-27,53,382,-7,-73,-37,-149,-93,-179,75,-80,-1,151,-175,-175,-230,-342,-31,-31,131,-6,-51,-115,-393,-421,-55,-124,-12,219,-121,-48,-130,-73,-20,-71,12,-12,-254,-94,-104,-57,-87,-86,-15,-37,-3,-36,-261,-25,-154,-142,-166,-208,-78,-46,-165,-23,-173,-111,30,-176,50,-53,-10,-2,-30,-44,-538,-129,-272,-34,-91,-49,69,-1,158,-871,-1112,-162,-458,-22,-133,-230,-189,-9,1000,-209,-148,-173,-26,-11,-57,-137,-63,131,58,-63,-149,-3,58,-1,-195,-88,-179,-76,-26,-78,60,-107,-91,42,-153,-12,60,84,-64,25,-20,-94,25,-70,-70,-2,-34,17,-29,-270,-83,-36,-3,45,24,14,31,54,51,172,-64,-22,133,-111,-168,-167,55,58,81,199,-131,-15,-113,-296,-245,-302,-117,25,-41,-385,75,-189,-260,-67,-329,-22,-300,-40,-181,-150,-604,-464,-195,0,102,154,-164,-182,-198,-59,-289,-55,15,-10,-22,98,-61,-378,-377,-11,-14,-71,-153,-30,-66,-30,-118,-122,-111,-151,-38,-189,-84,-99,-114,303,-66,-425,-155,-192,-205,-59,39,-33,297,142,52,-14,-60,-54,-41,-10,125,-206,-3,43,-314,-382,-519,-100,60,0,440,-3,20,-102,-62,-45,-18,-52,48,-42,72,69,-67,-15,-113,-46,-10,-20,-81,-107,-93,-5,-4,-94,48,252,-154,-48,32,81,-790,-288,-211,-19,207,-101,-296,-458,-124,-7,137,24,-37,-12,-125,-32,-93,17,-19,16,-43,-33,-115,-46,-107,-30,30,-232,-563,-50,-21,37,-18,34,-88,-31,-109,-66,-331,-50,-1,651,93,-47,-41,15,-60,-54,-154,230,417,230,-10,-140,-323,-293,137,60,-17,257,74,-3,-16,-472,-39,-2,-28,124,-8,105,-16,-19,-51,-32,-28,-23,113,-35,-243,-5,-4,-5,62
GOLD
GOLD|20121220|20221220|0.552,-0.059,0.0,-0.166,0.0,0.928,-0.058,0.0,-0.099,0.0|1.045,0.41,0.0,-0.079,0.0,-0.409,0.161,0.0,-0.008,0.0|-0.332,0.504,0.0,0.165,0.0,0.243,0.679,0.0,0.094,0.0|0.23,-0.195,0.0,0.723,0.0,0.073,-0.084,0.0,0.5,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,20,10,10,10,10,20,30,10,10,10,10,10,10,10,10,30,10,10,10,60,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,60,10,10,10,20,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,70,10,10,10,60,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,60,10,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,20,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,10,20,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10|156,75,408,31,-2,-51,-567,-2,-167,-60,-74,-49,261,161,-145,-40,-74,-117,-184,105,-4,-221,-18,-124,-198,-44,-48,-314,-217,-48,172,-166,-28,-39,-342,-27,-9,-70,-62,-231,29,-179,-307,-477,-120,-102,-105,-195,-35,209,-87,-113,-136,-22,-110,-354,-37,185,132,-57,-347,-143,-123,-74,55,10,-13,109,-453,-64,-32,-7,173,-123,-12,116,136,124,307,108,-7,-43,-60,-306,137,-2,10,0,-82,-15,-115,192,-31,-56,-162,-26,123,255,147,-66,-251,-288,-58,-661,-422,-5,337,-36,101,-18,-212,-300,-109,-159,-249,-129,416,-33,-41,-63,-138,-34,-406,-528,-673,-304,187,-111,-102,-5,-63,-29,143,-113,252,151,-272,-834,-285,-9,-3,-193,-259,249,53,103,-15,-141,-631,-150,-947,-358,-635,-28,4,-22,44,144,111,-1296,-1226,-231,-30,-3,174,188,243,187,-68,-55,-37,-22,-319,-374,152,-133,-66,-45,49,-50,-4,34,99,73,63,245,-259,109,-86,-253,82,-9,-27,137,-297,0,261,189,-17,-18,-69,-11,-65,-155,-19,-57,-14,-20,-13,-72,-190,-272,-636,-20,-25,-254,-412,-95,-5,-149,-237,-91,324,140,-4,-459,-606,-1957,-92,-468,-519,-263,166,188,126,-438,-922,-227,-294,-576,-578,172,-6,92,267,-4,-126,-119,-800,-468,-515,-352,159,430,-120,-260,-711,-599,-765,-46,-675,84,-57,-517,-356,-477,-302,-321,-77,-151,-272,157,308,-107,-63,-676,-70,280,-49,-26,108,21,93,-397,275,-32,39,-274,120,-132,-16,-89,-20,-109,0,134,-103,-118,-259,-331,-205,-200,-97,-55,359,-54,-13,-149,-355,-140,-85,-235,-43,-32,-458,-164,-39,-353,-92,-243,-266,257,160,-152,-44,-273,-185,-148,-16,102,-107,172,121,-254,141,-45,-103,-528,-273,-191,6,749,-348,-136,-99,-1040,-241,216,118,-229,192,45,-172,-16,357,-2,-276,51,139,122,482,-22,185,28,-15,148,373,161,-34,-97,70,-2,-75,-35,-15,-4,171,-5,-124,-247,-92,-228,-116,140,703,-158,-956,-336,-50,-112,-193,-132,300,999,47,-150,-923,-60,-141,-175,-419,-20,-46,-56,46,-857,-1171,-395,97,-5,-6,-95,300,-19,-70,-11,156,-236,-95,-15,-4,-156,-122,107,105,181,-133,130,-351,-42,198,-151,-12,143,175,178,-112,93,170,156,153,150,-20,58,127,-514,-286,-28,-113,103,-371,-28,273,-20,-8,-50,-109,374,-268,-87,-14,-97,-24,-51,-74,-40,-385,500,-370,-291,-125,-6,-86,-15,-174,322,646,-104,-123,-393,-55,-242,-201,-198,-35,-62,147,-41,-361,-276,-126,-50,80,-80,-45,283,95,-228,-223,127,247,101,-555,-487,169,-182,147,77,118,56,361,507,-36,-186,164,-173,114,-28,87,261,-94,192,629,-25,-1060,-142,104,-66,31,-198,-1,-233,-408,-189,-31,152,-12,-81,-24,-45,-1,-187,-72,151,251,453,-60,-322,-349,43,40,249,-47,-527,-158,181,-250,-348,-340,-24,-59,-912,-112,-145,499,211,-216,-192,4,-30,-116,174,271,-3,199,-287,-292,-220,-153,-1051,-362,-206,-92,-54,-16,-155,-88,289,-47,268,-15,-595,95,-10,132,-10,-28,-88,-41,326,71,0,-77,163,-60,-44,-100,-434,-63,148,-96,-280,-493,-81,-53,-406,-136,-91,334,-100,-401,-85,177,-48,-162,-66,131,-17,-32,-19,88,198,317,114,184,213,-146,-16,223,96,446,334,233,-7,444,-321,-278,-235,-187,340,-103,143,199,202,451,-22,-126,-909,-33,-77,-1451,-152,93,344,-25,192,-174,-759,-124,-87,-1534,-278,285,-780,-935,-99,-73,-137,-145,-18,-158,742,-245,-315,-55,-41,-85,-177,31,-10,-166,-5,64,-203,63,-59,127,-51,-111,-75,-28,-37,-13,-2,-184,-7,-291,-170,101,-674,-412,-196,-324,-131,-128,-64,-16,-102,-132,-127,173,-81,-99,-103,48,-20,-23,-38,142,370,206,411,-7,209,157,93,-11,-101,-636,301,187,-163,-14,-4,-24,-22,-1,123,89,371,-2,-129,-25,205,-110,-21,203,-47,-257,-100,-87,-16,-16,-43,-236,-46,-48,-59,-39,375,529,-119,-157,-76,-270,-23,-23,133,174,-7,-289,-39,-4,-255,-128,267,461,-30,-14,-19,-3,24,159,-28,118,-92,-98,-127,-19,-197,-123,-1013,-264,-298,-229,-320,-245,-311,-31,-32,-93,-216,-65,-284,-652,-243,-13,-22,-159,-477,-83,-5,71,-127,-213,-229,147,353,-128,-187,-109,-154,79,-59,-99,-354,-135,280,-14,-92,-69,-45,484,162,-17,-191,116,-376,-103,-148,280,264,373,-72,-263,-244,-280,-882,-394,-62,-45,299,-53,-59,-57,-55,281,-78,-163,-51,88,587,48,37,78,44,388,357,200,-33,253,374,-71,-34,803,451,356,229|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,30,10,10,10,10,10,10,10,10,30,10,10,10,60,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,70,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,60,10,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10|-131,-242,-61,-22,-8,84,54,-5,-71,-157,-4,-10,-50,-16,22,57,100,58,-26,-76,-133,-67,-49,-17,10,-18,-25,-3,-6,-49,-17,-173,-45,47,71,-23,-26,122,0,-32,-38,-96,-8,32,62,78,42,-63,-89,-71,-33,-11,111,150,34,72,-41,-32,64,-3,-3,-2,62,94,-22,-43,107,-4,-2,20,-14,0,-27,-41,-37,480,-10,-20,-68,-64,-46,-82,-107,-42,-105,-8,-65,-45,-94,-76,-21,-8,166,45,-56,36,9,38,-170,-89,-27,-15,46,165,-61,-53,-8,7,-5,-48,-31,-90,-57,88,74,-21,-35,-117,-15,29,-3,-49,-2,102,35,-34,-39,-28,-132,-20,69,-41,-6,-32,92,-115,-45,-410,-23,95,185,771,-4,-15,93,-19,-18,-133,907,-60,171,72,66,132,134,133,143,158,-23,-13,-20,-53,-12,230,64,-35,138,-19,-69,-59,-53,-19,-26,-20,-51,16,-10,-88,-20,-94,-201,-44,-65,-20,-91,0,-18,-23,-143,-371,-27,-7,-72,-2,-60,-57,-57,27,-5,-13,-6,17,-7,56,-7,-6,82,76,101,-17,-214,-27,81,1000,-95,-4,36,114,62,-123,-207,-18,-16,137,54,73,38,93,310,-13,-97,-131,4,779,143,122,-1,99,-5,-83,-83,141,247,98,83,-13,-6,62,-59,-107,-63,-79,-112,-28,-23,57,133,-55,-103,-59,-49,-137,29,-5,73,67,-71,-146,-43,-63,-9,-59,-8,0,-24,36,-63,5,59,-481,196,0,-93,-62,-3,-48,-647,-201,-44,-37,-143,-56,-122,-17,-122,-31,-249,-43,-49,0,74,-7,-80,25,47,-7,-64,-36,-6,-12,-5,-32,-6,7,487,-11,-4,-39,-26,-61,206,29,-1,81,-53,-61,-82,-31,-153,-55,-43,93,-112,-12,-36,-40,-67,-144,-160,-68,-163,-232,-61,-5,96,-24,-99,-102,-4,-10,-257,42,-4,-18,143,-54,-221,-46,-49,-122,219,-40,0,-7,-13,-105,-21,-245,0,-81,-32,-206,-10,-118,-86,-70,-5,-69,-126,-36,-18,-58,-41,39,-122,-57,-32,-103,-45,-106,63,227,75,-41,90,-120,-302,-86,-65,120,176,0,-10,40,-13,-40,-40,-30,61,-47,-69,-239,-48,-15,-35,-80,-22,-53,-166,-65,-173,-13,-108,-24,-11,113,12,-143,-335,-128,85,-9,-8,-140,-28,101,48,-207,-57,-40,-21,-72,-7,-14,-139,-28,-30,-28,-16,77,44,-63,-23,-40,-3,57,50,-48,-47,-111,-69,-13,113,118,-10,38,63,-15,91,-13,133,-22,44,62,95,-18,47,-13,10,-96,-56,93,-128,-185,-31,94,47,-5,-48,-27,-84,-4,-119,-90,-33,-5,253,64,-36,-157,0,-65,-72,-22,77,-50,-60,-43,-33,-18,-34,-115,-7,-26,55,0,-66,-10,-16,-16,-51,-13,-8,-26,-43,-49,-19,57,-12,47,48,-13,29,-2,46,-128,-79,-241,32,64,38,-13,-19,-5,-72,-9,-21,107,-5,177,-15,-20,-25,6,88,39,-90,-34,-6,75,-87,-82,-11,238,-57,-11,-70,-118,-114,-68,-186,-15,81,-13,-236,-86,-113,-1,-47,-10,85,-2,25,-7,-118,-238,-12,153,-164,25,-19,-38,-74,0,-11,0,-28,82,-8,56,-47,-28,-10,-94,-41,-63,-29,49,25,-1,58,49,0,-67,-14,-112,93,265,81,61,-24,106,-45,-63,-80,24,-40,-5,-17,-5,-14,-43,-9,-101,-278,-270,-45,-50,-23,-33,-15,-59,-46,-258,-71,-64,-376,161,-5,123,-31,-11,-76,-214,-243,-32,-161,-283,-206,-20,-50,-13,-19,-94,-39,-304,-91,-258,-72,-109,119,-119,-56,-104,-58,-83,-87,-16,-95,139,-1,-304,-204,-12,-259,-42,-87,103,-4,43,-53,-3,40,33,-187,-27,-28,-1,-12,80,-31,102,85,30,48,-34,-39,-14,26,-62,44,42,93,113,-21,-29,-88,-73,-70,-27,-29,-198,-123,-73,-27,-9,-50,-66,111,-101,-161,-103,-87,-47,-8,-68,-67,-6,-26,50,-4,-77,-96,-236,-180,-11,-26,-1,-12,-33,-363,-90,-210,-133,-137,-38,-155,-41,-11,-58,-133,-16,-72,-6,-60,-45,-150,-64,-214,-104,-173,50,-14,-69,-4,-96,-78,-141,-157,-5,-111,80,55,-6,11,-2,-48,-174,-107,-42,-204,-175,-63,-4,-3,-48,96,-19,66,90,-245,-5,-84,45,54,45,-6,39,86,139,257,-78,-5,-150,-41,-23,96,-17,58,-16,-88,-27,-25,69,-207,-17,-89,-6,-148,-146,-83,-83,68,51,-146,-3,-8,-4,-49,-71,-41,-75,-10,-22,-11,-127,-20,54,-210,-4,-5,-113,-229,-180,-96,-13,-71,149,-27,85,103,13,-145,-183,-27,-80,71,-85,-147,-72,-51,-53,-105,-127,-108,-60,-10,-6,-5,-41,-137,-111,-12,-135,-3,-21,-22,-43,-31,-336
META
META|20121220|20221220|0.523,0.009,0.0,-0.028,0.0,0.861,0.002,0.0,-0.022,0.0|1.339,0.074,0.0,-0.103,0.0,-0.547,-0.03,0.0,-0.036,0.0|0.032,0.628,0.0,0.223,0.0,-0.01,0.637,0.0,0.153,0.0|0.122,-0.195,0.0,0.741,0.0,-0.012,-0.172,0.0,0.554,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,30,20,10,10,20,40,20,10,10,50,30,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,50,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-4,-51,-68,-115,-130,-94,-36,-21,-16,27,73,-178,144,377,109,-69,62,-23,-23,-4,49,-11,-4,51,-23,-64,-18,-39,-246,-53,0,-88,43,-105,-55,-1,-42,-6,-9,62,107,147,473,-30,-47,-33,17,49,-5,0,-14,-73,-66,32,-28,18,3,-7,-1,44,-42,13,-1,0,-68,-5,-11,10,4,-2,68,-8,-22,-19,26,285,47,-127,-17,-37,-287,-369,-449,-158,-47,-5,-66,-39,-1,-42,-108,-67,-113,-7,51,57,-35,-29,-82,-26,-38,-109,-180,39,-33,10,-33,-137,-110,62,-42,-100,-5,-219,-1,-14,7,-5,-22,-16,-271,62,-105,-53,-286,-43,2,-26,-35,-37,-15,-17,-188,-132,-65,-12,-22,-3,62,-82,51,-3,-7,-44,-29,30,-13,-3,-45,76,2,-4,-4,-26,-8,-3,3,65,-4,-8,-23,-37,119,-19,-2,-3,90,-24,-51,-18,-29,-41,-76,-90,-7,-19,61,-8,-7,-49,-15,-59,-47,-75,-51,-51,-22,-159,-18,-53,-169,-26,-47,126,104,14,60,0,-88,-16,-10,-19,-71,126,-69,-1,32,-20,138,-35,-117,-84,61,-401,-97,-10,-15,-9,-19,-103,-68,-20,122,-391,-13,-8,-11,54,-35,-39,-18,18,-29,-59,-8,13,-45,-1,-47,30,-34,44,0,-2,-64,0,-24,9,-5,48,-18,17,-8,-35,77,86,76,-1,35,-48,-6,29,-74,-2,-17,-14,65,64,-18,-12,-175,-15,-21,-103,-38,-89,41,-5,-49,-81,-18,-160,-22,-147,-196,-108,-150,139,-80,-17,-9,-39,31,-82,-143,34,53,78,18,-5,51,53,36,-115,41,-35,-2,-18,-61,-8,-122,-24,-79,-10,67,45,-4,30,105,88,-45,-74,-124,-62,-49,-17,-1,-10,58,-5,-114,-41,-8,-22,-254,-150,20,-5,-90,10,0,4,117,-84,-119,34,-1,-2,-52,39,-2,58,40,-16,-6,-17,0,-2,3,-5,-24,62,-19,21,-23,-7,29,-80,26,10,126,52,-164,-35,-113,-55,-311,-5,-128,-10,-60,-283,-75,-37,-31,-59,-66,462,-8,67,-106,-39,26,51,-266,-30,-8,-24,-15,-285,-375,-57,-3,-1,-4,-136,67,31,83,-133,0,-51,-8,-55,50,-59,112,79,-12,-5,-82,-250,-68,-68,-26,-17,-37,-123,-112,-5,189,34,-15,-13,-5,10,-22,-40,55,11,0,132,-11,-50,0,-18,-74,-26,74,0,24,-63,22,-11,-114,-83,-7,-47,-17,228,96,63,9,-68,-128,-59,-61,164,294,-23,-23,0,-3,-34,-217,86,273,-2,-62,-93,-22,-18,559,-78,31,-213,-44,-3,-56,-22,-43,-285,-26,-4,-10,-19,77,-6,-55,-30,-43,-8,-107,-8,-4,-10,-101,-55,-81,-118,158,6,47,29,-33,-30,-164,-86,-51,66,-16,-4,15,-24,-3,4,-75,44,82,-7,-14,-3,-74,-70,-158,-79,-41,-33,-9,-45,-2,35,-52,-3,-12,-3,-18,-2,-48,-86,-167,-142,72,89,-79,-718,-59,-15,-17,-20,97,73,-160,-2,-94,-28,-2,25,-12,-4,-130,159,-4,-14,-12,111,-12,-457,-79,-68,-4,21,-1,-7,-18,47,63,-8,-33,-7,-56,-20,-18,-29,-51,-35,-275,-16,-69,38,19,41,-21,-24,55,-7,-33,-16,-49,-1,-13,-9,17,-192,-55,-14,-39,42,0,138,-20,-4,-2,-102,-62,0,124,156,115,56,-13,50,-3,-24,95,59,-125,-63,-1,-98,-1,28,37,-255,-92,-23,-5,-4,-40,-2,111,1,-52,-4,-21,-208,0,-5,0,-35,-7,-11,195,-34,-29,-14,-4,-33,-24,32,-31,-49,-735,-63,14,13,-5,-9,-2,-7,-345,-73,-35,-1,-5,0,-2,-7,46,-125,-282,-244,-46,-40,57,107,0,-67,-64,57,-227,-70,-19,-66,-4,25,-173,-47,-73,-183,174,129,-75,-2,-47,-10,60,-54,-66,-9,-6,-23,51,71,-22,-29,44,42,28,-3,-28,10,-50,-42,37,102,-24,-51,-4,-9,-117,-109,66,69,-41,-12,-28,-46,24,-85,-197,-25,44,1000,-10,-135,-229,-147,-58,-54,-31,0,-30,-33,-72,81,-1,-16,-21,-64,-92,-285,-4,-13,-3,223,398,-6,25,-25,-66,-6,-27,61,87,-16,54,0,-26,-52,-55,-18,70,47,-155,-80,52,-36,-14,-237,-125,16,133,265,33,1,-42,-202,-56,-86,-1,-7,-210,-2,106,-73,-206,-29,-23,-72,-14,-178,-78,78,135,-18,-119,49,-30,53,133,243,224,-35,-2,36,-2,-14,-20,65,96,-12,-13,-6,-19,-46,26,50,79,-4,-24,-2,53,-3,46,52,60,57,-40,-4,-5,35,89,94,49,57,40,-24,40,3,-61,0,-48,69,141,-76,0,78,20,326,-22,-69,32,172,-86,-51,-38,41,67,480,196,-10,-64,-82,-130,-53|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,30,20,10,10,20,40,20,10,10,50,30,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,40,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10|69,63,63,47,47,-13,-18,-91,-58,-126,-81,-84,-12,27,-15,-4,-35,-32,-27,-99,-38,-36,-40,48,73,51,0,-48,-16,-42,-62,-20,-18,-14,51,17,-1,-41,-59,-53,-11,-32,-180,80,-137,-145,-19,-1,-33,-6,44,-3,-130,-9,-54,-7,25,-69,15,-29,-28,-41,-11,190,-4,-19,23,-7,-102,-30,-305,30,2,33,-100,-12,26,26,-41,-29,-28,-21,55,0,-11,-71,7,-26,-68,-74,-52,-28,33,54,-43,-2,-30,-8,-44,-13,-58,-10,-7,185,59,-20,-15,-9,3,-58,-32,-66,383,140,-11,-7,-34,-239,-73,-5,20,-2,76,41,78,27,-54,-91,15,-25,-67,65,20,-11,-36,-34,-30,61,-15,-103,-120,-1,-4,-19,-81,-62,-87,73,33,-35,91,150,-42,-29,-42,-3,-17,-5,-34,-14,-39,-146,-4,-3,-94,0,-37,-69,-17,-11,12,-149,-13,-30,44,56,-13,-49,-2,-27,-1,-14,-19,0,47,25,27,-2,-14,10,-2,60,84,-13,-47,-26,0,-43,-50,-16,-3,28,49,59,-40,0,4,-38,-4,-113,-240,59,-44,-57,-26,0,84,-10,37,-49,-35,11,-6,-20,-58,-3,-18,-35,-66,-47,51,-46,-11,-52,24,-6,-42,-39,-20,59,63,-7,19,-12,67,-13,-3,-51,-44,7,35,-79,0,55,-6,-3,-60,-25,-67,-8,-53,-73,-9,-9,-31,-30,-7,-21,10,-79,-21,-136,29,63,-6,-25,-55,34,158,-41,77,113,-4,-3,11,-5,-66,63,223,107,57,-18,90,-50,-8,-30,0,-2,115,36,1000,-35,-77,44,-60,-31,-6,-12,35,344,570,40,-10,-13,-52,-24,-5,-17,-2,42,172,-122,-29,-68,27,-31,19,11,85,-3,26,-131,-92,0,-9,-3,27,15,25,-29,115,-22,14,0,-3,-8,-6,-14,18,39,-145,-26,-15,28,-85,-23,-33,-46,-37,-47,-30,30,-37,-21,-65,-8,-59,-27,41,-11,-66,0,-59,-108,16,-34,-5,17,3,-10,-27,-2,-19,-81,127,46,45,-80,-48,-29,-6,-12,-5,42,-336,-21,-10,-39,-30,-17,26,28,38,601,-14,-21,-68,-136,-63,239,55,41,38,33,-19,-30,-31,-36,47,42,33,38,-78,-38,-2,-14,-4,37,-16,54,-3,-24,-19,14,34,60,-161,-5,-9,-20,19,-28,-22,-27,56,10,-111,-6,-88,7,-97,11,-16,-164,-105,-18,-68,-55,-24,22,-68,-2,-73,-49,-3,-21,-15,-11,56,36,-4,-18,-47,21,-17,0,17,-1,-16,-5,-2,-15,-3,-63,-3,-22,-8,-48,-10,10,10,-20,-59,-21,-53,111,127,39,80,72,7,-3,-4,67,-16,65,96,-22,-15,-31,-6,51,61,-5,-5,-20,-18,-49,-11,-97,-8,43,-2,8,-5,90,-7,-31,-12,-23,-15,0,-39,-11,41,50,-17,-53,-68,-64,-92,7,0,-184,-7,0,-44,-52,-2,-6,-8,-94,15,-7,-3,13,42,47,-114,-79,-104,66,55,31,-13,37,-9,-1,-122,-61,-29,66,0,-33,-8,-7,-10,-35,-9,-11,-5,-7,-41,-77,-2,32,71,40,-23,3,-8,-1,-16,-13,-62,13,-1,-25,-16,10,-2,-17,-236,-59,-12,20,-120,-9,-4,-183,-56,-53,-7,-52,-33,-2,0,-32,-6,-4,-39,-5,-10,9,-67,0,42,-9,-58,-7,-4,-4,-32,-107,-101,-36,-51,-19,-2,-30,-42,-16,-47,-33,-2,-43,-177,-32,82,-4,-29,19,6,-1,-28,-35,-41,108,69,58,-1,-13,-3,-23,-34,-8,-42,59,71,-7,-7,-11,-32,-10,-6,41,38,71,-20,-1,-1,-18,-34,-55,-14,37,20,39,25,-4,-21,-21,-38,-9,-5,36,-29,219,-27,-31,-132,-52,29,-21,-113,-14,194,54,-106,6,-33,-1,-8,-139,-22,-34,-30,-27,-24,-40,-8,43,-20,-107,-24,-11,-55,-7,-43,0,-26,-42,-1,-73,120,-59,26,135,19,-30,-156,-151,-19,-3,57,-10,-57,-5,-60,-109,56,116,-46,0,-19,-33,67,-20,-34,237,-3,25,-6,63,18,-6,-23,28,-9,-7,-9,-179,-21,20,27,31,-4,-9,19,9,-41,-137,-163,15,-5,49,-15,-43,4,-49,-16,32,-9,28,-27,113,5,-28,-163,-13,36,37,41,0,-82,88,-11,-30,-653,-2,-91,-50,86,-41,-51,-43,-7,-15,217,7,4,-29,236,16,-60,-4,-14,-38,83,-7,-86,-311,-146,-41,-101,-101,-5,-87,-32,-78,-18,-34,-54,-23,-20,-7,-5,-8,-6,-4,-13,35,0,32,41,-9,-24,-15,-20,-3,-42,-13,-32,-2,-4,-10,15,-14,-21,-16,-51,-11,17,-3,-19,-22,-20,-60,-8,-19,50,85,-7,-106,-7,-68,-265,-380,-200,44,98,-94,-61,29,-15,-301,-969,-132,43,50,113,51,309,47
NDX
NDX|20121220|20221220|0.586,-0.005,0.0,-0.084,0.0,0.857,-0.017,0.0,-0.064,0.0|1.335,0.115,0.0,-0.105,0.0,-0.587,-0.045,0.0,-0.014,0.0|0.055,0.604,0.0,0.251,0.0,0.03,0.616,0.0,0.194,0.0|0.192,-0.304,0.0,0.762,0.0,0.014,-0.175,0.0,0.497,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,40,10,10,10,10,70,10,40,50,10,10,80,10,10,40,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,50,10,10,10,40,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,30,10,10,10,20,40,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,50,10,10,10,10,50,10,10,10,10,10,10,50,10,10,10,10,30,10,10,20,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,30,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,60,10,10,10,10,20,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,40,10,10,10,10,50,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,60,10,10,10,10,10,20,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,70,10,10,10,10,50,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10|433,415,-167,-293,-12,148,-77,-73,-7,-38,-8,262,-6,-270,-86,-267,-608,-68,34,101,44,0,-170,-2,219,-163,-47,-21,-72,105,183,-88,-197,-225,241,-84,-119,-214,-133,27,368,266,-134,-652,-40,-11,-467,-106,-171,252,-31,-157,47,-49,41,-6,-33,161,-156,31,120,-32,157,-42,-11,98,-7,-92,-5,157,468,360,-63,-254,-13,-104,-299,-125,-125,-122,284,-7,-302,-7,-269,-151,-71,-821,-48,161,-38,-102,-300,-1,-176,-463,-19,251,-14,451,200,215,-168,-651,-133,-50,-92,241,361,358,750,260,-154,-18,-18,-10,291,200,99,135,-22,-68,-162,-137,-137,116,58,139,-376,-60,-24,-55,-69,-39,57,85,166,-238,-27,310,-16,-15,-64,-272,-43,108,267,103,38,-330,-36,-87,-80,-80,-8,-36,430,18,-57,-169,-133,-65,-15,-173,-205,-407,-23,-58,24,-78,-63,227,-540,-1362,-586,-23,-280,-299,-24,-66,206,1000,401,-9,-23,259,-150,-277,-50,-6,368,356,382,394,254,-15,-109,6,-43,980,158,210,117,-35,-246,-7,144,399,-130,49,236,-176,-453,-135,-34,-146,-38,-167,58,-184,-93,148,-133,-21,-22,-3,35,-405,56,-2,107,-2,-22,-38,-140,-204,260,0,194,-23,-46,-25,-102,-19,-619,218,611,-57,-26,-109,116,-41,164,213,-96,-541,-295,-75,-28,-53,268,-20,283,5,-103,183,201,474,325,17,-166,-30,-42,382,492,-64,-5,-61,-105,-14,-115,-157,-22,118,-184,-115,-122,-104,15,-59,-33,122,144,234,730,184,578,-119,-60,76,99,117,256,-6,198,28,-5,10,-31,-213,71,-38,-59,211,-98,-15,-10,-34,-68,-4,-219,188,-12,252,-117,-49,-105,-62,1,-667,-169,300,294,541,-59,-111,-8,-4,-113,-328,-161,162,-13,-48,253,-47,-42,-38,-93,-67,208,162,486,349,-56,-15,-77,-9,-254,-32,-27,188,183,-67,-23,-28,-66,238,-259,-300,-228,115,-123,-87,-122,-72,-291,-388,-454,314,324,139,-90,-46,-117,155,-114,246,-85,-36,-5,272,75,-9,49,49,-83,130,-31,-231,-45,-161,-335,-28,41,-27,-180,-213,-234,-87,-126,213,-45,-17,-71,64,46,-329,364,-69,-79,-105,67,-102,94,-284,-8,-165,-164,-135,-240,-11,-37,-45,-29,-46,-179,-57,-66,-26,131,57,24,-18,-73,-199,-11,5,79,107,80,378,-57,-22,-158,-161,-6,-77,-268,-11,-61,-67,-98,-52,64,-117,-1219,-804,-226,104,28,-50,-23,-2,147,-266,-142,-538,126,-80,-44,-14,-27,-25,128,-358,-204,-581,-130,81,-62,51,-138,128,-48,-220,-388,-199,222,186,89,-67,-40,16,-129,-352,-215,389,-16,-24,-130,65,109,156,99,-511,245,-21,-1,0,-110,108,-90,-17,-1,2,-4,-112,-68,5,75,202,-21,-53,-46,-193,25,47,70,-5,-2,-4,105,-72,-26,-370,36,22,37,-174,24,37,-67,-70,-182,-338,124,131,40,-58,-18,-35,-406,-319,-689,-4,477,-108,52,-8,-206,-136,-1136,-157,47,592,446,-41,9,-80,-15,-79,154,370,-82,519,60,-101,-27,-229,-616,283,154,55,-16,-8,-32,19,-89,-292,189,-51,-90,0,-14,-14,-330,-210,-40,77,-21,-18,-99,-83,-128,-9,-224,-109,-67,59,-11,-36,-3,-25,-299,17,-15,-410,-29,-48,55,-10,-272,97,82,-80,-29,70,-12,72,-13,-106,-369,241,-152,146,423,33,-1,-39,67,-184,240,-107,231,164,-4,-441,-53,-11,-2,78,374,-10,-30,90,-97,-18,-19,-41,-28,39,-6,-122,-113,-12,-87,-73,-48,78,-50,177,-42,-11,-175,-1,-96,-30,73,-28,48,-87,-62,-10,-6,-43,-25,-34,105,-98,-84,-1,-7,53,-262,-72,-101,30,-136,38,144,-41,-21,-52,-11,44,59,-27,27,-42,-131,188,371,226,450,57,-31,-266,-426,19,169,184,195,199,261,-397,-18,-62,-52,45,166,288,-45,-96,-21,-48,-204,-7,-190,162,-150,-18,-73,-177,-43,131,130,-20,-25,-236,-12,-15,251,86,64,71,-120,-348,-39,-20,-66,-56,-128,-61,-38,-264,-632,-528,-200,-129,-329,73,118,-152,-626,-103,-111,-81,-56,75,183,-34,-313,-54,195,59,-76,-5,77,197,-41,141,131,267,115,47,-6,-187,-297,124,61,187,172|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,30,10,10,10,70,10,10,30,50,10,10,80,10,10,40,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,30,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,30,20,10,10,10,10,30,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,50,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,50,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,50,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,20,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,70,10,10,10,10,50,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10|-8,-31,-47,170,-16,-100,-87,-34,-91,-101,-24,-167,-1,75,76,96,104,-67,-35,-67,-17,-59,-70,127,101,97,140,127,-38,-53,-92,-88,-24,102,44,58,126,99,-10,-47,-255,-9,118,96,91,73,79,-2,-20,-77,-41,129,101,113,-47,21,36,31,-113,-95,160,-3,-88,-116,-30,26,-14,-20,69,42,55,-36,-16,41,-10,-13,191,1000,-11,75,-36,-105,-198,-303,-50,-6,58,718,112,-66,11,2,-5,-85,-111,-104,325,681,-2,925,8,-35,-35,-22,-74,-38,-68,56,166,-15,-49,-27,-229,-153,-39,-1,-29,-58,236,-29,0,-18,-18,-41,90,-4,156,-137,-141,-75,45,-9,80,-115,140,-46,-53,-30,-63,-4,-3,0,6,-22,-40,-3,16,-5,-9,-16,18,-54,120,161,64,-71,-45,-2,145,-23,-27,-23,-26,90,-30,-31,-9,115,-8,-42,-12,-61,62,93,53,71,-56,-42,-7,-13,-4,144,144,124,85,-80,-29,-19,-3,-9,20,-19,170,-237,-24,-6,-69,-59,-185,-3,-58,-189,-637,-118,-66,-31,-44,-16,237,-116,-192,-35,-41,-36,-3,-10,-3,-10,-225,-23,41,55,-11,-71,-16,-12,-16,-102,-7,-156,-305,-170,-120,-31,-2,-48,-29,-38,-112,-7,-20,-8,-35,-20,-28,-41,-71,-161,-259,-78,-4,-45,12,38,-36,-25,-163,-200,-101,-3,94,11,-10,-45,-53,-15,-43,76,-59,155,-2,-46,0,-7,-18,-18,0,-8,-4,-33,-138,-135,-15,-43,-54,42,-16,-83,-103,123,-8,-28,-20,-6,-44,91,-16,-54,-9,-4,-31,-23,18,-10,0,-8,34,-71,-57,-52,-79,-19,-265,-22,-14,-3,-32,-63,-50,-13,50,63,-27,-5,-14,-58,-74,-212,-38,-79,-46,107,104,-2,-43,-11,-3,-59,-165,-18,0,129,-81,-89,-28,-17,-43,96,91,0,-39,-13,10,-57,-46,-16,-9,62,75,58,-9,7,-65,-7,-34,-46,-56,-25,-17,-8,-4,-32,-93,-52,-99,92,29,-9,-49,-17,182,-63,-214,-214,-43,4,-7,-76,-6,94,175,-106,-11,-43,-48,-57,-40,-35,288,-3,-417,-102,-14,-15,-6,-123,-85,-3,21,698,-60,-107,-11,-17,-62,-59,-99,-14,9,144,136,-1,-53,-8,-86,-105,-40,55,58,253,-24,-107,-68,-16,64,3,-45,151,-49,17,-52,-19,-20,39,-28,-80,-21,181,-10,-4,0,-5,-2,-38,0,8,-17,-9,-23,-5,58,32,-25,-5,23,-2,-11,-2,0,-4,-23,-4,-138,-14,-73,-1,-3,-7,225,186,-3,26,-81,-40,-85,-133,-30,135,247,110,-21,-191,-22,-22,-14,-31,-53,17,82,54,27,-40,-127,-3,-54,-25,-21,-65,30,-12,-1,-19,-18,-24,37,-94,143,93,-3,-29,-153,-104,-29,-8,15,205,346,516,-2,-72,-23,-30,-11,-32,19,-6,-22,222,-82,-134,-35,-47,0,-5,-2,5,-2,-44,-3,-1,-24,28,-2,-11,-3,1,31,23,28,-4,-16,32,-4,0,-4,-23,-13,6,-13,144,-4,-53,-11,-22,-115,-9,62,112,14,698,28,14,-33,-58,-13,-58,-47,-27,-7,34,-7,-9,-59,-79,-19,-19,-23,-6,57,-22,-64,-39,43,-37,79,15,-47,-113,-148,-128,-165,-51,-3,-13,114,-23,-40,-1,-43,-12,34,78,81,-21,-67,-43,-52,-13,53,74,44,70,-48,-90,-16,-47,-63,55,0,-4,-41,40,32,21,-2,162,54,-12,-35,-28,-41,18,-2,-12,111,275,-35,-42,-34,-43,-19,41,-19,-10,-1,-6,-12,-8,-24,-22,-48,-143,-425,-221,-10,-2,-48,-9,-3,-25,-148,-127,-5,-83,-39,-22,-21,-113,-33,5,-102,-18,208,-17,-41,-7,-32,50,121,105,-22,2,-17,-37,231,117,498,95,-14,-40,-29,-41,-141,72,49,70,96,60,-17,-105,-20,-40,-14,-2,63,-1,-14,-41,-38,-30,21,216,52,-89,-46,-65,19,37,9,-5,186,-26,-6,-63,-47,-40,-66,-16,63,0,187,110,-29,-21,-3,-40,-134,-230,-96,-5,-15,-35,37,21,33,-31,-207,-153,-329,-31,40,-103,-135,28,-39,-107,-96,-207,-23,-17,-25,-17,-24,-86,-106,-9,129,-81,-4,-89,-24,-92,109,32,64,-64,-38,-44,0,-107,-121,44,53,65,65,-34,-12,-2,-26,-35,63,163,164,91,-17,-16,-4,-82,-23,175,99,-7,-5,-67,-63,-183,170,99,-12,-74,-2,9,-46,-251,-42,-2,-56,-287,-127,-20,6,0,29,-82,-64,-41,-151,-15
SP500
SP500|20121220|20221220|0.573,-0.033,0.0,-0.041,0.0,0.846,-0.045,0.0,-0.026,0.0|1.45,0.109,0.0,-0.119,0.0,-0.626,-0.007,0.0,-0.08,0.0|-0.06,0.475,0.0,0.142,0.0,0.089,0.612,0.0,0.13,0.0|0.214,-0.127,0.0,0.619,0.0,-0.057,-0.084,0.0,0.556,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,70,10,10,10,10,60,10,10,10,20,50,10,10,10,70,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,30,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,40,10,10,10,20,20,20,10,10,10,10,20,30,10,10,10,10,10,10,10,10,10,20,10,10,10,10,20,10,10,20,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,10,50,10,10,10,10,60,10,10,10,10,60,10,10,10,10,50,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,50,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,40,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,20,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,60,10,10,10,10,10,10,30,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,70,20,10,10|-94,-209,311,137,89,-128,-228,-15,79,-81,-631,743,252,116,128,-196,-100,-101,-6,207,237,724,345,190,118,-290,-17,-163,-33,-37,140,425,736,-17,-22,-61,-5,-20,85,150,-15,102,274,179,4,-58,-30,-161,-71,-17,-31,-44,-107,53,-3,-19,7,93,-153,-32,-3,-46,-16,-9,71,-131,396,-13,34,-83,-15,-11,-17,72,-457,-143,-67,63,-207,-155,-223,-48,-762,266,-66,339,503,-54,-303,-173,-45,-58,-5,-52,624,1000,496,85,-173,-51,-58,-71,46,92,127,-32,-70,-1,-45,-63,-84,-102,-79,-117,-1,-114,-39,52,-12,-18,-13,-2,192,153,190,-120,-147,-13,-75,-9,-54,-31,-7,-128,-39,-97,60,-29,-24,-23,-173,-133,-241,-118,22,-2,1,-2,-48,-12,-23,-89,-23,-37,-33,-10,-5,-60,-28,-80,-113,-128,184,-170,-93,-50,-7,-43,-52,-87,-143,37,-100,-39,-239,-24,-154,82,-27,100,766,-51,-23,168,-29,138,-35,-50,42,71,-23,38,-23,57,131,-16,-35,-12,-54,-15,181,128,127,131,-19,-47,-108,-43,84,-152,-5,-7,-10,-8,-20,59,53,-269,-44,-7,-67,-26,-13,-10,-116,-21,-49,87,-19,-8,-31,-35,-38,-13,170,185,-54,-4,-56,-85,-108,-147,-19,-15,76,-9,-59,-100,-36,-39,-31,-18,141,66,-85,-27,44,123,123,-13,-8,36,-13,-39,-13,8,189,82,-17,-33,-5,146,-100,-29,64,-20,-53,-23,-97,-2,-77,-89,-5,-21,-132,-31,-15,-47,-1,-8,32,-13,-39,-42,-27,-43,12,-97,-35,-29,-18,-32,152,41,-13,-39,-14,-13,-36,-10,-37,-25,49,109,97,118,85,-56,-59,-74,-21,-167,-145,-12,-5,-29,-63,-107,202,-15,-33,-46,-63,-89,-97,-56,17,-25,-74,-2,-101,-210,-127,-96,-15,-59,-105,-24,-106,-37,-52,-2,-25,-27,-47,-5,14,-8,51,-6,-32,-5,23,-57,-32,-17,39,-4,-20,-28,-42,-23,101,-8,-11,-30,-25,-165,-113,-53,-82,-4,-52,-3,-5,21,-22,-333,-3,94,25,-33,-14,-83,26,-26,-41,-43,-36,63,9,-343,-304,-231,-15,-54,44,-127,-182,139,-83,25,-30,-14,-36,-32,-84,-138,23,-49,-13,-17,-139,-168,-146,-2,-46,-54,-34,-17,-40,-132,-149,-79,-40,-116,-65,-50,-124,-69,37,-21,-29,-6,-48,-232,-84,-59,-3,-6,-13,-11,1,-6,-133,-252,-12,-44,-114,-25,-120,-24,128,-27,-166,-36,-47,-65,-43,-15,-3,-88,-170,-209,-58,-185,-101,-120,-106,65,-21,-40,-12,87,-104,-31,-333,-272,-177,43,-75,-89,-41,-65,-52,-29,3,-10,-44,-18,-11,-7,-46,-37,-7,-5,27,-19,-8,-55,85,54,-6,-141,19,-19,-19,-6,-55,1,-36,-148,-22,-66,-107,-13,-197,-36,39,117,94,31,-20,94,238,48,-18,-41,-9,-1,-24,-30,9,-6,232,-16,-16,79,-27,13,-15,-15,194,223,344,212,-33,13,49,136,-5,-7,227,-82,-42,155,65,86,-24,71,-38,-38,-10,-209,17,0,-41,-19,-87,-36,-18,-108,69,-38,-11,-25,-31,70,-10,135,62,-133,85,-1,-10,-14,-97,82,-5,-16,-81,-390,-83,-1,-35,-27,-115,-92,-4,130,145,-337,0,-1,-59,-32,-120,169,14,-34,25,-14,-30,7,-24,59,-5,35,-8,-11,-11,155,179,100,80,17,-6,-5,-46,-1,566,396,41,-13,-63,-10,53,60,253,820,325,202,-120,-23,18,-136,-42,6,-85,-26,-54,-60,0,14,-26,144,-24,-84,-12,-37,-37,25,134,157,-3,181,-23,-64,34,-10,53,-122,126,173,277,-323,-76,11,-8,-31,0,-5,156,-40,202,47,-33,22,-88,-127,-89,-171,-4,186,213,-24,-1,0,-17,-34,80,155,-53,-51,-113,-57,-36,-2,73,24,65,36,-21,191,-12,-42,-13,-16,-18,-13,90,541,125,-39,-1,-398,-43,-65,-496,-1,-11,-35,-21,-4,-68,-56,-78,66,-19,-51,51,39,330,-34,-173,11,18,-7,-24,-51,400,-19,173,-54,-208,-48,-29,-184,-34,-234,-26,178,178,-2,-63,-54,-71,-58,-91,-154,69,-40,-59,-136,-55,-122,-3,-18,-27,-203,-33,15,84,-10,-13,82,-93,317,0,215,80,37|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,50,10,10,10,10,10,60,10,10,10,10,60,10,10,10,20,50,10,10,10,70,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,20,10,30,10,10,10,10,30,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,30,10,10,10,20,50,10,10,10,20,10,30,10,10,10,10,10,10,10,30,10,10,10,10,20,10,10,20,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,20,10,10,10,10,10,10,50,10,10,10,10,60,10,10,10,10,60,10,10,10,10,50,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,40,10,10,10,10,20,30,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,50,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,40,10,10,10,10,10,60,10,10,10,10,10,10,30,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,60,20,10,10|-506,-65,-264,-239,-206,-1,45,-58,-192,-202,-134,-214,-304,-117,-129,-70,-148,-46,-2,-77,-253,-532,-138,-73,-6,-23,-6,-50,-94,-286,-213,-271,-190,107,150,-25,-46,-49,-121,-52,-166,-98,-54,-58,-100,-18,206,265,-58,-6,-137,163,-26,-152,-24,-52,3,-80,-71,-4,-20,-51,-42,-74,-111,93,-81,70,47,-51,-5,-93,-74,-139,-119,-11,-51,-17,438,252,-95,-52,-194,-175,-78,-285,-129,-310,-82,-75,-199,-36,-142,-186,-328,-371,-157,-57,175,0,-4,-142,-150,-36,-175,-22,-101,66,69,298,-39,-18,-37,100,-38,226,-50,-74,0,-58,-86,-80,-1,-104,153,62,-67,0,81,212,4,134,74,-121,-100,83,-2,94,-43,-36,-8,-27,2,-56,-8,-85,-35,-2,23,108,-15,452,-28,-15,-15,-60,-64,180,-98,64,-26,719,19,-91,-67,-149,-14,206,131,-201,276,319,185,-46,-176,-259,-57,-213,-149,-57,-96,-79,133,123,-13,-79,-164,-38,-68,69,-10,-19,-17,93,-20,-9,-61,-2,-19,-63,-164,-182,-16,-35,-115,-52,-4,-6,-28,-19,-162,-58,140,-30,26,49,-47,-78,-2,343,274,62,-61,-190,-1,-105,-98,-112,246,-98,-103,-165,-282,-5,-2,-142,-133,-41,-48,-23,-84,-250,-22,114,286,-22,-217,-149,-47,-135,-255,-26,-42,246,267,-130,-1,-32,-14,-50,-322,-62,-20,-135,-38,-51,-46,86,-23,-110,-155,-49,-9,14,-22,-23,135,-96,-51,-132,87,175,139,-14,-51,-53,-38,132,149,47,-97,-86,-65,-26,-70,-48,-11,-76,35,-149,-343,-163,-101,35,-4,-32,-3,-229,-102,-353,-94,-59,-157,-86,-22,-129,190,137,-79,-41,-136,-26,-10,-97,107,1,-56,-37,-35,-23,84,78,0,-9,75,-40,-41,-53,-23,80,88,-75,-114,-10,80,-21,-151,-67,-29,-87,-71,-42,-12,-67,-93,-47,-165,-98,-8,219,216,109,-9,-48,-161,-55,-83,9,-15,220,142,119,-24,-76,-97,-3,-57,-6,39,-7,-118,-186,-60,-10,-82,-50,-204,-47,-185,40,20,-83,-54,-9,55,-177,-18,289,568,228,15,-119,-172,-90,-35,-70,16,-51,-116,-43,-109,-32,-20,-14,-13,-142,-26,-36,-43,-81,-91,98,-27,155,130,-6,-26,-52,147,128,0,-74,-20,-149,-41,303,508,-21,-45,66,-130,-53,-69,657,105,104,-85,-95,-27,-8,-125,-268,312,-72,223,-78,-11,-79,-208,-147,-61,-505,-5,-4,-1,-10,-175,-259,-142,-178,-11,-102,72,83,306,-1,-5,-9,-72,-57,-5,-13,-119,239,776,567,46,-5,-53,-79,-25,-71,-24,93,-35,-10,-29,-160,-36,13,195,-34,80,-41,-2,-86,-116,-49,-1,-98,-52,-18,-36,-82,92,25,-3,158,-47,-56,-16,-61,118,450,-44,-132,-21,-28,-212,-202,-66,-25,-116,-228,-2,-140,-394,-10,-230,-120,32,-134,-140,-199,-99,-29,-437,-68,-32,-89,-134,-3,-28,-38,-3,-3,-521,-50,-66,-66,-24,-63,-74,-110,-80,-23,-4,-7,-21,-7,-73,-138,-29,-240,-109,-69,-77,-91,-10,-6,-26,-134,-82,-79,-92,-52,-112,69,-74,-89,-40,-8,-164,-271,-192,-45,110,246,-33,-83,-2,-59,-75,-9,-157,671,-43,-2,-9,39,-164,-85,-59,-84,-72,-83,-195,-180,36,-42,-37,-73,-58,-214,-78,-93,146,-27,-49,-5,-97,-31,-5,109,-111,-28,-36,-41,-90,-45,-123,-279,-338,-11,-150,-5,-72,-44,-7,-99,12,-279,-61,70,-173,-12,-45,-30,-19,-168,14,-231,-149,-58,-36,-84,-250,-160,-111,-28,-38,-129,-27,-116,-26,-409,-240,-89,-135,-64,-87,-95,-9,-65,-3,-7,-97,-203,-165,-52,-59,-41,-18,-7,-56,254,-44,-71,-40,207,-9,-41,-7,-85,-243,-18,-13,-67,-17,-41,-57,-1,-20,-20,-105,-120,-51,-29,-117,-72,-30,-44,-52,-33,-29,-172,-5,-28,-114,176,-14,-24,-137,-3,-157,18,-4,-194,-55,-159,-100,-195,-148,-60,-221,-46,-65,-5,-96,-10,-23,-17,-264,-79,-72,-70,-9,-45,-19,-15,196,262,-6,-207,17,-29,210,209,816,1000,84,-169,-112,-34,-3,-207,-92,-29,-61,0,209,-223,-91,-13,-5,-154,-124,-200,-64,22,-59,-58,-37
TSLA
TSLA|20121220|20221220|0.59,-0.028,0.0,-0.025,0.0,0.825,-0.037,0.0,-0.016,0.0|1.236,0.115,0.0,0.001,0.0,-0.536,0.086,0.0,0.007,0.0|-0.139,0.456,0.0,0.189,0.0,0.111,0.574,0.0,0.146,0.0|0.05,-0.178,0.0,0.62,0.0,-0.005,-0.09,0.0,0.541,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,20,10,50,10,10,10,20,20,80,50,30,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,50,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,40,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|168,100,51,351,530,-138,-531,-269,-43,-93,61,-50,-199,-74,-89,69,-39,-16,98,-507,-52,-501,-105,-64,-244,-281,-38,168,-121,-136,-2,-44,-50,-76,-477,-126,-241,-101,412,-100,-137,-48,-69,-417,-217,-92,17,-33,-21,-176,-38,-2,-80,-91,-37,-60,-11,-83,-32,-167,-78,-252,-13,70,14,-94,-3,-30,61,1000,-4,-542,-254,-191,-271,171,-189,-217,-26,-14,-467,-107,-678,-374,-686,-160,-407,-318,-460,-81,-87,-82,-199,-506,-614,-75,-64,-559,-107,-112,-56,-87,-169,-338,-33,-100,145,-52,-84,-146,-60,-76,44,-176,25,-28,121,-118,-167,-75,-22,-72,-1,-352,-317,-119,-12,-128,-135,-255,-170,-94,-69,-39,-16,-170,-98,-39,-340,-475,-412,-128,-8,-30,-252,-307,97,-176,-111,-222,-204,-15,-209,-50,-297,234,-7,-204,-206,-32,-5,-78,799,360,-8,-479,-4,-470,-9,-351,-46,18,-60,-29,-54,-894,-647,-452,-522,-533,-26,-32,-226,-162,-3,-816,-221,-358,-403,-520,-74,-109,-163,-199,-134,-413,-230,-164,-252,-373,-319,-54,-61,-2,-50,-73,-92,-232,-524,-551,-349,42,35,-119,-21,-58,-35,-342,-447,-515,-511,-79,-79,13,-76,-165,-178,-113,-600,-284,-310,-268,-775,-121,-104,-357,-327,-130,-582,-393,130,-249,-511,-524,-245,-6,-192,-468,-509,-105,-55,-13,-254,-295,-596,-100,-62,-392,-104,-20,115,74,-163,-591,-717,-362,-471,-147,-392,-189,-21,-13,-120,-441,-315,-552,-646,-865,-320,-209,75,168,-238,-210,-166,-361,-477,-1012,-67,-85,-5,-17,-117,-186,-323,-160,-91,-195,-102,-86,-364,-51,-444,-160,-216,94,-51,-3,-114,-224,-748,-376,-201,-152,-12,255,564,5,-164,-493,-377,-217,-439,-135,-203,-29,207,-42,-473,-434,-388,-314,0,-264,-27,-348,-120,122,-219,-178,-941,-247,-374,92,-35,-11,-298,-69,-245,-579,-151,-164,-11,210,208,-93,-188,-396,-454,-355,-218,-101,-547,-106,764,-239,-555,-184,-302,-68,-198,-654,-478,431,56,-115,-206,0,-134,-431,-195,-250,-208,181,-27,-546,-113,-4,-208,-546,-89,-41,-43,-265,-14,469,-173,-364,-21,-505,-82,-76,-121,-60,22,50,-49,-283,-183,-69,-229,-136,-31,-232,-226,-359,-376,-29,110,-59,292,-154,155,-83,-149,-379,-158,-95,94,-208,-16,-222,-324,-261,-213,-74,-133,-5,-99,-69,-47,-625,-219,-500,-37,153,-131,-40,37,-33,-30,-258,-718,-130,72,-166,-208,-70,63,0,-4,-618,-111,-4,-60,-49,391,-60,129,-490,-118,-25,-513,-812,-289,-59,-394,-104,-40,-54,-226,41,-38,-66,-111,-55,-42,-69,-66,-38,-27,-189,-170,-38,-117,-407,-86,-21,-40,269,-360,328,-95,-174,-341,-402,-215,63,236,-13,-717,-137,-1,-58,-312,-356,-200,-15,22,190,-286,-182,-105,-49,-57,-86,-80,55,98,-128,-558,-260,-388,85,-150,-57,-58,267,-33,-179,-472,-549,-13,-60,-82,-25,-128,47,-211,-361,-633,-145,-194,-221,-113,205,-71,-279,-201,-377,210,-434,-327,-648,-229,163,-13,-100,-155,-110,-165,-340,-4,-88,-4,-89,-147,-350,-29,-26,-311,-40,238,-121,-145,-87,-339,-210,-4,-331,-357,-175,-68,-73,-128,-68,-191,-85,-25,-167,-331,-13,-260,223,-561,-391,-374,24,-106,-190,-42,-3,-74,-135,-91,-294,-94,-57,-29,-17,-47,-81,-41,-5,-15,-325,-346,-50,-29,-31,-7,18,-11,-3,-35,-251,-69,-78,-18,-1,-14,-16,455,-231,-434,-3,-141,-33,-76,185,178,-296,-599,-11,-121,-75,-193,-269,-197,66,-4,-67,-53,-147,-291,-298,-8,-130,-8,-27,-353,-164,-215,-167,-475,-126,-351,-27,126,-185,-124,-141,-240,-213,-135,-91,-72,255,-137,-272,-70,-158,-90,-570,-201,-115,-258,-12,-26,-444,-407,-251,-190,-75,-248,-415,-32,-166,-892,-382,-177,-192,-48,58,-225,-54,-11,-54,-311,-120,-65,-162,-94,102,-16,-6,197,-237,-57,-544,-124,-71,57,-26,-4,248,52,-123,-122,-266,-58,68,-8,-67,-205,-203,-687,-212,-157,-134,-190,-5,37,-99,-53,-206,-172,-231,-167,-403,-485,-20,-123,-572,-29,-409,-238,-10,-32,-138,-82,-20,-166,-252,-513,-792,-140,-47,-202,-111,-85,-47,-219,-235,-222,-163,-108,-515,-489,-222,-199,-461,-167,-2,-296,-234,-82,-113,-295,-385,-145,-9,-5,-186,-336,-44,-157,-108,-268,-306,-151,-32,-82,-275,-128,837,-73,-65,-35,-156,-24,-10,308,33,-291,-10,-2,15,39,-55,-548,-69,-72,-20,-105,-50,52,-259,-649,-309,-346,-248,-247,-13,-46,64,-76,-259,-398,-105,-19,-745,-332,-323,-356,108,-389,-202,-634,-42,5,-213,-21,-46,-91,-63,-167,-262,-104,-271,-379,-201,-597,-7,-114,-19,-63,-35,-235,-115,-108,-928,-185,-47,-25,-334,-427,-216,-228,-98,-58,-565,-291,-61,-56,-20,-38,-337,-83,64,90,-310,-1031,-324,-22,-8,-110,-90,-121,479,109,399,-70,263,-138,-16|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,60,10,10,10,70,50,50,30,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,50,10,10,10,10,10,50,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-620,-248,-138,-143,-136,-282,-137,-275,-43,42,-232,-470,-167,-145,-42,-312,-265,-27,-24,-37,-254,-266,-271,-115,-24,-149,-232,-50,-70,-237,-142,-141,-40,-68,-63,-86,135,-23,-24,-290,-233,-379,-97,80,-7,-31,-3,51,-36,-73,-14,-443,-8,66,22,-29,10,159,-52,-5,-50,-7,-44,-46,89,-19,-13,-16,-1,-22,-5,21,-46,50,-2,-240,-50,-52,-8,-36,24,-8,-4,-10,-185,-331,-33,-92,-53,-55,-5,38,-46,-238,-91,-152,-32,-66,-53,-82,-116,-130,-3,48,-123,-51,-116,-215,-57,-64,-40,-57,-22,-37,-1,-177,-157,-121,-26,-116,98,-4,-63,162,-243,-141,-168,-129,-211,-120,-94,63,50,126,-22,-155,-322,-30,-28,-109,-27,-78,0,-5,-1,-51,-138,-134,-219,-39,-129,-108,-16,-81,-53,-29,-94,-62,-24,-41,-10,-2,-19,-13,-66,-127,-14,-15,-75,-20,-74,-11,-288,-5,-6,182,30,-11,-57,-22,-165,-136,-107,71,57,-38,-15,16,20,-68,-147,-49,15,61,-10,-225,-99,-75,-2,-214,-32,-72,-41,-2,-25,-72,-225,-414,-109,-74,-14,128,-70,-4,-26,-240,-44,-94,-30,-119,-80,38,-2,-58,-138,-87,-3,-26,-59,-122,-5,-49,51,-147,-17,-50,-64,-42,-54,-70,59,-47,-73,-159,-9,-130,-199,-2,-18,-40,-4,-25,173,-56,120,-31,-223,-97,-15,-78,-220,-102,-18,-8,-6,-2,36,-3,-50,-165,-131,-93,-45,73,29,13,-4,-48,-7,-15,-50,-10,13,-37,-9,34,-5,-3,-117,-34,-5,79,3,-26,-73,-15,-4,-383,-28,-3,-8,-48,-15,-41,-110,-101,-138,74,66,-90,-234,-24,-128,-94,-166,-66,103,2,-88,-223,-357,-50,-28,-65,-130,-21,106,49,51,-93,-209,-7,-20,-130,-143,-48,20,25,-1,-8,-54,-131,-35,-97,-21,48,-23,-16,0,-10,-106,-249,-218,-38,-131,-125,-245,-136,-18,-9,-7,-219,-24,-294,-502,-338,-10,-15,-8,41,30,62,-207,-321,-642,-335,-7,-24,-2,-6,-38,-249,-80,-280,-27,82,29,-99,-501,-373,-38,-6,-9,-64,-191,-77,-63,-16,-110,-15,-67,-116,-43,-152,-73,236,-92,-91,-49,-25,-2,-120,185,0,-19,-23,-40,8,-19,-20,312,-7,-56,-21,-1,114,11,-27,-3,-166,-124,-100,-69,-13,-10,-59,-94,-11,-45,-359,-348,-342,-322,-19,30,45,-1,-42,-150,-519,-34,-173,-8,-20,-4,25,-163,-592,-488,-305,-395,-127,-118,-4,-69,-164,-311,-251,-409,-25,-9,-46,80,-15,-141,-205,-389,-160,-25,-17,33,-76,-298,-277,-143,-5,-7,-109,-110,-68,-180,-20,-19,-235,-102,-38,-72,-12,-19,-36,-2,-195,-156,-71,-1,83,-33,-49,-70,144,-21,-73,-149,-62,-90,-51,-75,-92,-180,-3,-53,-115,-112,-214,-301,-60,-17,-191,-101,-205,-96,-339,-67,-94,-128,-110,-173,-39,-100,-47,-8,-56,-1,-6,-238,-770,-889,-22,-85,-9,-75,-1,-148,-869,-1300,-852,-51,-64,213,-49,-2,81,-150,-436,-562,-315,-300,70,-60,247,-43,-143,-474,-420,-417,-477,0,-1,-18,-39,-329,-300,-640,-259,-118,158,-17,-21,594,1000,-56,-372,-309,-105,-118,-23,-55,-3,-83,-70,-56,-255,-98,-124,-21,-4,-233,-301,-199,-55,0,-136,-148,-108,-29,-142,-138,-471,-205,-81,-33,-178,-159,-113,-15,-60,-154,-86,-224,-181,-135,-118,-345,-148,-14,2,-37,52,-177,-242,-475,-152,-17,-6,-14,-12,-3,-197,-724,-1579,-366,-181,-1,-27,-24,-43,-834,-1190,-439,-71,-44,-5,-33,-110,-28,-326,-532,-398,-145,-157,-29,-7,-66,-48,3,-91,-451,-299,-141,-185,-36,-15,-2,-72,-3,-79,-248,-77,-246,-53,-8,-21,-43,-286,-359,-125,-66,-253,-158,-89,-25,-66,-30,-458,-200,-20,-38,-121,-3,-85,-72,-139,-59,-213,-55,-101,-67,-34,-48,-152,-20,-50,-10,-243,-114,-139,-113,-94,-153,-40,-19,27,-2,-15,-52,-265,-1,-82,-111,38,-13,-88,-90,-1343,-933,-141,-67,-27,-1,-1,-46,-311,-609,-998,-338,-76,-48,25,59,-20,-340,-75,-389,-443,-263,-49,-151,-55,64,-36,-272,-72,-311,-282,-139,-390,-295,-168,-57,22,-180,-180,-81,-36,-60,-113,-490,-13,-49,-111,-366,-174,-145,-109,-52,61,-69,89,71,25,-440,-14,-7,-30,24,25,205,50,-22,-171,-391,-150,-47,-56,0,-79,-3,-26,-62,-156,-612,-87,-521,-273,-157,-203,-31,-43,-7,-27,-1,1,-94,-119,-36,-28,-50,-405,-1357,-304,-46,-29,-84,-31,-276,-371,-794,-1173,-180,-207,-99,-52,-385,-310,-414,-482,-366,-235,-141,-99,-58,-9,-99,-631,-107,-137,-234,-370,-371,-671,-32,12,-193,-625,-154,-45,-58,-4,-45,-44,19,25,-354,-124,-40,13,-88,23,-26,-3,68,84,-204,-308,-110,-7,-7,12,-12,-6,52,45,-487,-580,-382,-107,-2,-1,-396,-138,-82,-5,-721,-3055,-619,-416,-293,-202,-569,-295,-202,-31
USDCAD
USDCAD|20121220|20221220|0.503,-0.128,0.0,-0.383,0.0,1.0,-0.149,0.0,-0.22,0.0|1.151,0.499,0.0,-0.351,0.0,-0.492,0.163,0.0,-0.233,0.0|-0.723,0.493,0.0,-0.209,0.0,0.369,0.723,0.0,-0.206,0.0|0.373,0.141,0.0,0.498,0.0,0.214,0.334,0.0,0.23,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20|53,-18,-312,-155,-60,-19,-11,-17,-6,-66,-2,-12,-35,22,49,-61,-15,235,-24,-79,-44,62,136,41,16,310,123,148,104,-47,114,159,300,229,82,58,-10,0,-5,-13,-37,-103,891,1000,-3,-47,-123,-19,86,155,-4,-71,-54,-22,-13,-16,-134,-29,71,87,35,-113,-20,-7,-21,-13,-7,279,28,57,8,-32,-54,56,-63,-34,3,-3,69,29,13,18,45,-86,-124,-8,8,-7,-54,-3,42,0,-17,31,-10,-4,-37,-40,-49,-4,-88,69,-42,-6,54,-49,11,-5,-9,116,26,19,33,28,-123,-159,-20,19,24,67,30,132,206,41,33,-100,35,71,5,15,102,136,115,49,-43,59,95,51,51,349,282,88,70,-29,-11,113,51,-7,-12,-28,96,-10,-44,-35,4,104,75,-7,-6,-16,-48,-52,-23,-25,-1,154,-25,25,-116,-18,-34,-43,-55,-3,36,134,68,0,-11,40,-5,-105,-62,-39,-7,47,65,63,39,14,48,-33,-28,-27,16,-132,3,103,-6,196,35,90,23,-8,-35,-29,-2,67,-12,631,142,75,-17,-5,-53,-42,-236,-85,249,150,40,33,71,-15,56,-14,84,-35,41,19,9,0,-54,-14,-16,78,-4,93,86,95,-50,97,-142,19,116,-68,-2,-73,325,0,-53,-29,-291,-65,36,-12,-62,-183,-34,39,62,-16,-22,-5,-13,103,-35,-60,-18,8,-6,41,40,-3,105,-36,-3,0,-16,-65,102,-31,-36,-32,-30,72,-62,63,-22,-11,38,37,-8,-76,-120,-66,87,62,-6,-45,68,-16,-32,-28,-195,63,-3,65,74,-2,-87,-1,-156,-473,-97,-59,156,-53,67,174,-86,30,-13,-25,-77,-1,67,46,59,-33,121,-2,-59,48,-95,-198,-99,19,-8,-101,75,31,5,-29,-236,-198,-223,-25,-95,-111,-42,-13,-5,36,-3,-17,-324,-153,-156,-25,-27,-13,14,92,-6,-8,-16,-5,-26,79,72,-31,4,140,-31,-27,-7,-40,-16,-7,34,-6,-20,90,-47,-12,-11,98,-15,-13,-92,-24,15,-33,-52,-117,-7,123,-24,-3,-57,19,17,-42,-86,-23,63,-34,51,-11,-40,-2,20,-51,-98,-210,31,-83,-102,-15,51,-29,0,-3,-297,-7,36,-32,-35,83,-35,-134,-141,-157,-151,-56,73,-22,-25,-4,75,-84,-152,-1,-150,-28,-80,15,2,-135,-27,-7,-6,0,-17,-12,-3,-3,-13,-10,-2,-1,-3,16,-70,-11,-9,71,-147,36,136,-45,-38,77,-5,55,-44,-5,-5,-19,51,-4,-12,-46,-9,-33,14,-43,-14,-57,-9,-15,-113,46,31,33,84,-63,-51,10,-202,-23,25,-3,122,170,-81,-104,-32,64,-78,-8,-38,95,-19,-64,-197,-77,-133,-29,-10,-32,-43,-55,115,24,-89,-89,-31,-24,-17,-73,-171,-22,49,12,-7,63,92,52,-50,-45,-58,-6,-16,-45,-18,21,-37,-42,-24,-93,-219,-17,-7,37,-9,-24,-30,0,-46,-102,-173,-16,65,-1,-34,1,-4,-8,-77,-66,-216,-14,54,-30,-11,-39,-2,-44,-119,8,-56,-106,64,-12,-16,0,-148,-53,79,-20,-56,-34,50,-23,-37,-136,-28,-14,-20,68,153,60,-7,-50,-6,-80,-46,47,-17,-116,135,113,-8,-162,-276,-107,-75,12,-114,-29,291,25,-9,61,-239,-33,-28,-30,-33,-10,57,49,-11,-1,-18,-26,-14,-31,-160,62,-55,44,38,36,-1,-13,-54,-129,-107,-6,-21,-104,-3,-22,-15,50,-19,-10,-97,-37,-8,-2,-47,-2,-55,-127,-85,-45,-44,-16,-61,-25,-44,-4,-16,-63,-4,-26,-66,-57,-9,46,28,-8,-11,-3,27,-75,-102,-51,-53,-19,22,41,-41,-6,-1,-18,-96,-4,-4,-22,-50,-1,-138,-16,53,-122,-349,-70,-20,-51,-46,-197,-14,-87,-21,-35,-243,95,61,-28,-5,-92,-53,-2,-43,-34,-35,-135,12,-12,-19,-63,-124,0,-40,-10,-32,10,-35,-29,-2,-60,-364,-19,71,-7,0,39,-131,-8,-59,-18,-16,-136,-17,-7,-4,-65,-37,-4,-26,48,11,-23,-201,-61,-12,-109,-10,3,-2,-5,558,12,-216,-21,44,-148,-1,-2,-61,54,185,-9,-1,14,-48,-86,-73,-17,-173,-96,148,110,-18,-66,-249,-46,-152,-41,-12,-71,-255,-28,-20,-29,-517,-25,0,-9,-1,-4,-16,-198,-39,-3,-29,-16,80,-8,-21,-16,-24,-331,-123,-45,-52,35,50,-18,-41,-3,9,48,131,-23,-21,-8,-14,-65,-21,-105,-15,-59,63,-2,-30,-23,-79,-5,0,-5,-149,-50,-51,26,-44,-24,-58,-19,-54,0,-109,-39,-149,-66,-40,-80,-110,-4,-5,-30,107,-11,-228,-13,17,-11,-33,47,-1,-5,151,-2,-26,-3,39,-72,-181,-5,-33,9,73,74,-26,-72,-3,-4,-19,-2,-37,64,-16,-36,-20,-5,-20,-96,-120,-80,25,-24,-4,-29,-31,87,-55,-28,-15,-60,-9,-116,-271,-307,-147,-23,-14,-8,44,-15,-15,-17,-9,-18,-141,-64,-59,-133,11,-126,-42,65,-33,72,38,-70,-24,-79,49,25,-151,-2,-48,-38,41,-27,-3,-2,-19,-3,-108,-9,-84,-150,-118,-65,-286,-111,-8,165,-45,110,137,-6,-19,-55,-52,60,5,48,270,89,105|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-161,-70,111,67,-162,-38,-90,-134,18,-63,-66,-87,-33,-3,-13,-54,-58,-233,-88,-17,-144,-177,-76,-79,-8,-59,-151,-318,-62,-381,-113,0,-845,-93,-218,-81,-74,-190,-100,-41,10,-193,-1207,-87,-32,130,93,-349,-449,-205,-43,129,-269,-147,171,-7,125,-31,-392,-476,-200,58,144,-10,-37,-505,-28,-20,117,-20,266,-7,-46,-173,79,-206,-22,-361,-110,-158,-2,-108,-532,-90,-81,66,65,-7,-115,-85,-8,-11,-66,-68,20,-36,-72,-68,-4,-65,-40,-232,77,127,-116,87,-27,-23,-150,-47,-8,35,-54,-223,26,-251,-1,-364,-188,-109,-187,-137,-111,-228,-262,26,-193,-258,-8,-55,-252,0,-43,-807,-691,-642,-4,-25,-50,-2,-103,-613,-211,-357,-2,-11,-40,-175,-278,-110,34,-7,-556,-21,-29,-43,0,-245,-363,-4,-73,61,-9,-275,-329,-190,-58,-199,374,-15,-11,-43,-35,-187,-49,-212,-167,-495,-327,-48,102,-13,-184,-28,-185,-75,-416,-389,-204,-270,-172,-98,-33,-11,-637,-78,-142,-159,-32,-15,-10,104,-49,100,-252,-103,-58,-63,-245,-21,140,157,149,-46,-160,-203,100,29,-297,-220,58,160,-315,-51,-149,-22,23,-83,-282,47,-118,-143,-56,544,-40,-139,-582,-175,-272,-145,-54,-102,-301,-158,-26,-206,-466,-149,-304,-22,-16,-289,-8,247,112,197,-412,-33,91,100,129,113,-153,-223,0,-263,-34,-26,-274,293,-91,-739,-945,-260,-22,-9,-208,-205,-13,-198,-207,-220,-686,-126,-208,121,-496,-353,-686,-96,-413,-8,0,-411,-34,-126,181,52,-404,-416,-398,1,-237,-815,-38,117,77,-19,-22,71,119,-158,-2,-27,-56,182,-50,-87,-167,-751,-282,-416,-302,-11,-174,-153,-83,-57,-104,-24,-236,-568,-224,-60,-95,-97,-98,-175,-83,-343,-128,-166,-115,-75,-64,-28,-55,-216,232,-21,-153,-280,112,219,-29,-8,-40,-176,-60,192,108,-118,-531,-528,263,9,-60,-251,-115,-2,-177,-228,-903,-597,-168,-83,-284,-43,27,-134,-15,-146,-1055,-307,-5,-151,-146,-256,-4,-44,-164,-29,-75,-38,126,-38,-68,-423,-178,-231,-10,86,-56,-134,-14,-4,154,-149,-136,141,39,95,-16,-102,90,-14,-118,-92,-228,-253,-165,-269,53,-200,-248,-271,318,-405,-292,-131,-56,-236,-498,-487,-119,-230,154,134,-272,-59,152,-230,-228,-330,205,-85,-177,-95,-16,-74,-101,-271,-3,-143,-237,-326,-55,118,140,-56,-356,-292,-101,108,-15,-374,134,-84,426,-51,-216,-474,-667,-42,-70,-177,-16,-38,-154,-37,-91,-472,-450,-302,23,386,-216,-143,-112,-96,-51,-399,-13,-14,-9,-17,-711,-460,-572,-249,-228,-115,-38,-35,57,-71,-90,-864,-215,132,90,93,-29,-5,-20,282,-162,-293,-6,40,136,-116,-17,68,-165,18,-175,-107,-368,200,-4,-285,-743,-361,-234,79,-149,-313,-71,144,-780,-406,-839,-77,-121,90,-48,-5,-87,-57,-137,-321,-597,-258,-64,222,-148,96,-279,-369,-10,-62,-112,-32,-106,98,-15,-39,-483,-47,-2,-47,51,81,-32,147,-11,-249,-319,-277,-189,-45,289,155,-5,-7,-200,-43,-863,-25,-64,454,143,-131,-48,-637,-257,-21,36,813,371,64,0,46,-162,-805,-550,-5,83,198,0,-234,-523,-299,-484,-424,-200,-96,101,182,-6,-101,-84,-101,-63,-130,-130,-143,-192,-276,-394,-64,-265,-42,-19,-283,-77,-94,-300,-205,-164,-408,93,381,-65,-59,-527,-362,-109,-70,-62,401,700,-246,-63,-153,-203,-112,162,-32,-31,-93,-38,-100,-203,-73,-8,-90,-241,-80,-99,45,188,-64,-282,-33,-187,-58,-151,-11,-11,155,-28,-20,-102,-5,-65,-241,96,-117,223,155,-14,-90,105,-148,318,-91,66,-85,105,-9,111,-263,-56,113,156,197,-32,-263,-424,-314,-113,-205,-342,-33,-29,240,-27,-14,-268,-37,-203,-1085,-66,-267,-650,-525,-20,-16,-96,140,-52,-22,-51,-305,-40,-141,-44,-5,90,-65,-72,-28,-160,-147,-198,-1,82,-32,304,-55,-129,-23,-213,-2,-17,-14,-14,50,999,-132,-58,-97,-54,-145,59,-120,-130,375,368,484,-60,-149,-404,-27,-61,-165,210,106,-74,-161,240,-231,-74,-103,-23,-6,128,-10,-180,-439,187,328,153,280,-13,-75,236,-5,-28,-42,139,109,-9,-38,-19,141,-62,-83,-279,-163,-825,-10,69,-63,56,-73,141,188,139,-1774,-2845,-281,-2,-58,-14,-81,-36,196,89,-118,-319,-31,53,-45,-4,-82,-361,-25,-149,-263,-23,-49,-128,60,-82,-79,-97,-93,395,-1,-42,21,-22,-55,-247,0,164,258,912,-182,183,-78,-4,170,-51,-45,345,565,190,331,176,-380,-7,84,-46,-186,-200,112,-7,-72,66,-128,-82,-21,-34,-185,-1,-150,-93,-3,116,-5,-64,-18,-105,-87,-131,-77,-73,-57,137,-46,-8,-164,-101,-62,-108,-142,18,-35,-83,-5,77,-13,133,-1,83,-16,-72,-127,-87,-52,-26,-29,0,-50,87,103,-9,-206,27,-191,-54,-285,-255,-261,-197,-1,170,-64,-87,-42,-12,-133,-328,-293,-419,-110,-109,-39,115,56,-183,-3,-367,-159,-162,92,-17,-25,-91,-18,-19,-61,282,-28,-108,338,-107,110,-125,-163,-66,-242,-294,-667,-416,-435,-2,-43,-43,-295,-10,-105,-203,-133,-149
USOIL
USOIL|20121220|20221220|0.552,0.046,0.0,-0.032,0.0,0.813,0.034,0.0,-0.019,0.0|1.3,0.09,0.0,-0.054,0.0,-0.562,-0.018,0.0,-0.002,0.0|-0.037,0.611,0.0,0.245,0.0,-0.023,0.636,0.0,0.159,0.0|0.087,-0.285,0.0,0.836,0.0,0.015,-0.147,0.0,0.434,0.0|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,40,10,10,10,10,70,30,90,10,20,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,60,10,10,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,60,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,20,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,40,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,40,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,20,10,40,10,10,10,20,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-62,-301,-349,-523,-28,-104,-37,-270,-150,11,-47,-57,-698,-136,-127,-155,-84,-37,-1,-424,-301,-378,-501,-59,-6,-14,-5,-1,55,-138,-121,-171,-218,-633,-929,-92,-33,-308,-137,-516,-52,-66,122,187,-429,57,28,-26,-102,-32,-117,-1652,111,263,-492,36,-15,-29,23,-138,-708,-3,-1,135,78,-5,157,-42,59,86,-21,-17,430,-7,-223,-19,-123,-235,28,-228,-21,-19,-217,-106,-294,-129,-163,-936,124,-34,-30,-5,62,-10,-39,137,-13,-276,111,-807,109,80,-85,-284,103,-21,-268,-137,-45,-279,-11,-966,-990,-3126,-39,-54,-49,109,-233,152,-117,-74,-1082,-356,60,-17,-98,-465,-127,-92,-292,-204,-35,-80,-233,-68,-771,-1651,-1108,200,-324,-24,-66,-211,270,-12,-80,-609,336,70,-18,69,-21,-51,191,-58,64,-19,25,-12,-1,-386,-51,-43,69,32,-2,-3,-18,48,-213,-384,-55,-134,-90,-8,798,-9,200,77,-131,-98,98,-21,-4,-7,104,-36,-138,-34,82,-134,-64,-3,-1,-115,-20,-471,-250,-132,-125,-85,-994,-1,-1,-364,-345,-1276,-405,-25,-16,30,-15,-2,105,-569,-9,-487,-49,-48,-48,-71,-5,104,-43,-374,-329,-101,159,-66,-182,-363,-89,-28,-42,-367,-449,830,78,157,-61,-174,-6,12,-51,151,-6,-22,-74,-61,83,-21,-114,-176,-47,-156,-7,-16,258,171,175,-285,-41,-140,-111,37,-89,775,400,90,-17,-107,-164,-72,-28,-67,18,-41,160,-111,-110,-18,-52,-50,-52,-33,-221,-626,-216,112,-75,-93,-585,-1,-18,-140,-2,137,82,-9,-13,-134,-33,70,-33,-37,-21,-14,61,-63,-136,-79,135,109,-55,-5,-9,-52,-40,132,462,797,515,70,-16,-35,-61,-37,-65,-7,235,1000,-14,-130,-25,-150,22,43,223,-39,-30,-87,1,-301,-87,279,179,-57,-86,-164,-251,-398,-494,-44,0,6,-378,-294,-189,-39,-129,-3,-11,-16,-17,-150,-1,-58,-142,25,-148,-66,-50,-41,69,-3,-69,-270,-14,-173,-110,179,112,-83,-180,129,-10,-38,-54,-12,-28,-7,-33,163,150,-197,-591,-69,-20,18,-17,115,110,-55,154,520,315,-4,-5,-37,79,-40,-45,-6,-33,558,941,611,-20,51,-8,-105,-239,-141,420,433,-20,68,72,-17,-52,-11,-109,-1,-34,-4,-10,-124,71,-101,-314,-418,-320,-32,9,77,-743,-498,-47,-57,-29,95,-4,-41,-113,-205,-98,93,-45,-12,-6,0,-33,-27,-34,-43,-155,-113,-10,-6,-17,-4,103,-20,-13,111,62,-63,-118,-134,-2,-239,166,-8,-36,-17,-46,-37,108,-4,-3,132,-8,67,29,81,61,-10,54,-8,-49,-12,197,99,-6,50,53,-9,-14,21,-8,-54,-78,-9,57,56,23,-29,-93,-10,62,-10,76,-19,11,85,-38,-121,-17,-46,-125,-12,-21,29,-22,-89,-196,-63,33,41,-52,-75,-4,-12,-10,-7,-393,-129,-5,37,-49,-14,81,-24,298,-249,57,-14,37,-4,-12,81,120,45,77,-19,-46,-6,55,-1,-5,-9,-25,157,84,67,-8,98,80,-43,-25,80,39,115,101,96,-10,68,33,-19,-34,29,45,35,90,31,-119,74,86,76,19,61,113,52,-12,-19,-208,-12,15,49,90,65,-6,-16,5,-21,-2,11,55,-13,127,73,-6,0,-10,-11,-23,0,14,-141,-14,-29,-137,-9,-33,-176,-192,-33,-106,53,-60,-233,30,105,-92,-100,-192,-51,-33,65,80,-12,-61,-44,61,-21,123,83,-23,41,48,-14,-66,-28,-115,-86,10,67,73,-157,-90,-72,9,-20,-13,57,86,112,-19,-85,-181,-5,49,16,57,118,57,74,-49,-16,-202,-178,-188,-71,-3,-6,100,-38,-65,-3,117,-42,23,54,-23,256,70,-145,-95,-81,-21,-3,46,25,28,73,1,-74,-116,7,-159,-113,-10,67,72,60,-24,-34,-29,-144,-29,-50,-23,4,-30,-19,-30,-6,23,-44,-8,-20,71,81,88,-6,50,-75,-123,-239,62,-10,21,103,73,-91,-24,-132,-12,-75,85,70,55,301,-39,-83,22,-36,-102,-5,-18,45,349,128,-298,-1105,-244,-2,-5,-7,5,-11,-11,0,-83,-392,-30,-24,-16,-72,438,254,152,-87,-72,-38,-40,-26,0,81,169,143,124,-43,-40,189,-58,-5,-54,45,173,239,150,-261,-4,-67,-347,-228,-24,-32,-10,-40,-62,-7,-43,-42,-11,-76,-38,-119,-85,-115,34,3,79,21,24,-27,-17,7,-92,31,72,52,53,3,-3,-45,-44,-17,-7,40,167,69,108,142,-38,-52,-15,-54,-106,87,70,-1,167,0,-4,-144,45,29,-43,-18,174,219,-7,-86,-258,-107,0,-176,-104,-18,532,118,-117,-232,-13,224,-53,-48,-74,71,200,2,-11,-59,110,308|0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,20,10,70,30,90,10,10,10,40,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,40,10,10,10,10,10,60,10,10,10,10,10,50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,50,10,10,10,10,10,10,20,20,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,40,10,10,10,10,10,10,20,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,50,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,20,10,10,30,10,10,10,10,10,10,10,30,10,10,10,10,10,10,40,10,10,10,10,10,10,30,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10|-239,10,-8,-94,-60,-127,-268,26,-21,92,225,-1,-3,-365,-20,-217,-103,-152,-28,-113,512,374,3,-6,-7,-8,-121,-160,-58,-38,44,-89,149,-44,183,368,268,-257,-245,-29,-222,-67,-70,276,208,79,105,-192,-214,-213,-178,-12,-309,-76,169,26,28,68,117,38,-1,660,-159,0,164,-35,-155,86,-35,112,9,323,-137,183,-208,-146,42,357,-48,-79,-76,156,-351,-89,-224,-363,43,-87,-14,180,-12,-13,170,-9,-253,-271,-73,-128,-142,268,156,310,-20,283,116,125,-95,-595,7,-24,-164,-20,-10,625,90,266,-155,-439,-48,-163,-182,-108,-165,-31,55,156,-272,-931,-60,-47,199,437,116,325,2,-101,100,-100,-855,-1226,94,537,-54,-42,128,-286,-60,-228,-58,-105,814,-52,-226,-12,-4,183,85,-146,21,149,-21,-2,41,-171,1,-188,39,-74,-18,-12,294,-5,-81,-320,-80,170,260,-65,-13,179,167,-185,88,-135,-244,-84,-23,123,31,234,169,964,187,-448,-138,-91,-5,-24,866,234,377,872,642,155,-78,-138,-55,-23,-437,215,-48,314,44,275,-10,-2,-5,-94,-334,-212,-290,-10,177,147,-6,-14,187,-70,-161,-118,-557,-180,738,98,158,-15,-70,328,168,-804,-30,-185,614,262,147,-8,-2,-30,442,-77,-59,-26,-8,206,-55,-4,-57,-489,-228,37,268,11,-82,-34,-94,90,-29,-123,-143,176,245,-15,52,-11,-71,168,133,107,-10,136,98,1000,-144,-81,-148,-179,-72,-6,54,731,282,-4,14,-228,-326,646,18,-109,132,-231,-11,-201,-314,-294,5,-153,-679,-246,-10,-35,7,-59,-23,188,285,-253,-1127,-609,-70,-34,-51,24,-46,-129,252,-581,-1361,-478,-7,-91,12,-22,150,-54,-95,-941,-103,254,-66,-80,-77,44,358,-27,-2,-367,-144,-230,-208,130,383,-78,-31,-224,154,-103,138,151,236,311,827,-56,234,-9,54,-44,-106,347,394,694,39,89,-284,-33,-28,120,-1,228,476,-28,-75,-165,246,-96,147,85,-7,-215,-48,-105,-146,201,-43,-166,-352,-311,-30,-137,-141,-14,291,-49,-359,-344,-32,-259,-238,-164,-285,-217,-34,-197,-69,-37,-95,-149,-61,-224,-39,-167,-176,-2496,-362,-66,-11,-24,4,33,-28,-350,-129,-485,-106,-64,-325,-118,54,-79,-2,181,130,-58,-338,-11,-196,243,31,387,412,-143,-452,20,150,236,-220,93,349,385,331,258,-110,107,-19,-28,-2,-28,-72,404,-87,-34,-203,-20,291,-15,-1,-2,-7,-119,74,-40,-133,-485,-29,113,42,69,-1,-226,206,-259,-28,318,-126,-1,-175,-107,-265,66,-346,-10,-761,-559,-231,-157,-109,-45,-31,-8,-194,-141,-676,-125,-837,-129,-34,-33,-46,136,179,725,523,-185,-380,-301,-44,-225,-93,-104,-68,179,-278,-18,-250,-194,-67,243,207,-83,99,253,172,-5,-182,-15,129,45,129,-88,-417,-78,-11,-51,-225,-42,85,6,-6,-87,-25,-18,62,-155,-240,-56,-151,-435,12,-31,36,171,-8,-213,-172,34,-151,-387,224,-183,90,-113,-33,-83,-79,-284,-429,-287,-136,-302,-545,-29,-11,-34,-59,-69,-175,-487,-186,-204,-96,-200,-10,88,-36,-10,64,-46,-61,-383,-66,-70,-163,260,0,128,-72,439,891,-330,-225,-472,-581,-33,-187,-100,157,-97,-17,-151,-101,-824,-266,-19,-35,394,-119,-358,-21,68,-51,60,-32,1,56,0,-157,-105,-77,-14,-19,28,141,-198,-307,-5,-128,-69,109,-6,33,-110,-766,-643,-111,116,209,-292,145,-46,-51,-54,-62,-305,-81,-5,-110,-438,-65,-11,-514,-93,-166,-47,-35,-80,-216,-394,-94,-189,-20,-42,-53,273,125,319,-338,-344,122,-53,-47,-26,-238,146,169,636,-127,-243,-35,-360,9,-226,-116,147,-55,-87,-40,-15,-238,-1281,-1141,-276,-52,-12,-31,-10,-269,-55,-2,-323,-156,-146,209,-31,-33,-7,-14,0,-133,-92,-193,43,58,285,-4,54,64,-5,-18,-28,301,128,-113,-27,-25,-45,-58,151,-40,-137,-66,-9,119,-146,-40,-248,-321,-8,-16,-50,-230,-3,48,-206,-183,-5,-274,-444,-419,-519,-22,99,-75,-41,-34,91,-629,-262,-41,116,-386,93,309,-33,-43,-125,-102,-35,-17,-435,-411,-82,-38,-6,-49,-15,-36,-1343,-290,215,-161,-315,-29,281,-23,-49,-1718,-1208,-778,-276,41,-245,-20,-72,100,-182,-1316,-687,-78,-95,-1,124,63,99,-10,188,-72,-75,-38,-63,-146,-46,89,-67,73,-54,-328,-123,-104,-28,-123,-68,-30,123,-40,-174,-197,-245,-384,-836,-121,179,212,78,-23,-92,-427,-585,-195,-542,-272,-58,-170,-76,-40,-40,-462,-203,-190,-222,-406,-178,-356,-99,81,-83,-1160,-48,-123,199,-93,236,-42,20,104,-63,-310,-263,-608,199,141,-232,-3,243,68,236,-72,-408,-932,-49,-2,-701
Train your own model
Coming soon