From 06fe2750b216389e5fa9c167f8480ffb5ad4f14d Mon Sep 17 00:00:00 2001
From: Jack Simonson
- In this research, we investigate the Seasonality and Market Session effect in the E-Mini S&P 500 futures. A recent article, Market Seasonality Study, argues that there is a seasonality effect in the S&P 500. The study argues that it's trading strategy implemented in the period from November to May lends itself to a bull market (Bullish Season), while the trading days between June and October (Bearish Season) hold far less profit.
-
- As for Session effect, another article, Seasonality S&P Market Session, argues that a trading day can be broken up into eight distinct sessions:
-
- One can exploit these sessions by making a round-trip trade on a single E-Mini S&P500 futures contract by entering at the beginning of a session and exiting at the end of a session. The article argues that, in a Bullish Season (November to May, as defined in the first article), the Night Session (18:00 - 05:30) provides the most significant opportunity for profit, followed by the Afternoon Session and the Close Session. However, in a Bearish Season, only the Night Session and the Afternoon Session proved consistently profitable.
-
- The underlying logic of this strategy is to buy at the open of a session and close our position at the conclusion of the session. Given that there are multiple profitable sessions, it is natural to come up with a combined strategy which aggregates the top three profitable bullish and the top two profitable bearish strategies to see if we can maximize the returns. In this tutorial, we will show the implementation of the algorithm on QuantConnect, and study the performance of Combined Strategy, and the performance of Night Session Strategy on Bearish Season and Bullish Season.
-
- We set up an 8-year long backtest period from 2008-01-01 to 2015-12-31. Then, we choose the E-mini S&P 500 futures, sort them in ascending order according to their time to expiration and pick the nearest expiration contract. After that, we set the Bullish Season and the Bearish Season based on months and set the Night Session based on time of a day. We trigger the open and the close of trades with self.Schedule.On() function.
-
- For Combined Strategy, in Bullish Season, we buy the contract at 13:15, sell at 15:15 (Afternoon Session + Close Session) and then buy again at 18:00 and sell it at 05:30 the next day (Night Session); in Bearish Season, we buy the contract at 13:15, sell at 14:00 (Afternoon Session only) and then buy again at 18:00 and sell it at 05:30 the next day (Night Session). So there are two trades for every trading day. To realize this, we just need to check the month of the trading time and judge when to close the first trade (at 15:15 or at 14:00).
-
- For Night Session Strategy in Bullish Season or Bearish Season, we only buy at 18:00 and sell at 05:30 the next day, so there is only one trade for every trading day. This can also be realized by similar ideas (See code snippet for details).
-
- As can be seen in the backtest results, trading just during the Night Session, in both market seasons, performs well over an extended period. This strong performance is particularly true during a Bearish Season, where we can achieve 13% returns with a small drawdown of only 5%.
-
- Contrary our initial intuition, the combined strategy performs poorly after running a backtest. Despite trading during the top-performing sessions of both seasons, we don't see nearly the level of performance we would have expected, and it underperforms trading just the Night Session. The likely reason is that the Afternoon Session and Close Session underperform their theoretical results and thus drag down the combined performance.
-
- For further study, we could consider a more delicate rule for stop loss/profit instead of just trading at a specific time on every trading day and consider implementing other risk-management strategies.
-
- Backtest for Combined Strategy
-
- Backtest for Night Session Strategy in Bearish Season
-
- Backtest for Night Session Strategy in Bullish Season
-
-We highly recommended working closely with the QuantConnect team as you design and code the BootCamp lessons to get continuous feedback to ensure its deployed.
+The combination of all these talents is fairly rare so we're reaching out to the community to help us create this content. If you can cover all three of these categories let us know and we'll enable BootCamp editing permissions on your account. In exchange for a completed BootCamp lesson we're offering compensation which we'll cover in the section below.
-BootCamp is divided into Courses, Lessons, and Tasks. A Course groups together a super-category and is currently organized by asset-class. A Lesson focuses on the implementation of a single algorithm. A Task breaks up the algorithm implementation into tiny steps which can each be easily coded, with the aim of guiding the user through each layer of the algorithm design.
+BootCamp is divided into Lessons, and Tasks. A Lesson focuses on the implementation of a single algorithm. A Task breaks up the algorithm implementation into tiny steps which can each be easily coded, with the aim of guiding the user through each layer of the algorithm design.
@@ -29,5 +27,5 @@
-A Task is the atomic unit of the Boot Camp system. It is a single step required to be completed in the pathway to an algorithm. Tasks are grouped with a subheading according to algorithm implementation concept.
+A Task is the atomic unit of the Boot Camp system. It is a single step required to be completed in the pathway to an algorithm. Tasks are grouped with a subheading according to algorithm implementation concept. A task should aim to implement just few lines of code so that each task can be easily achieved.
-
-
-Step 1: Initialization
-
-
-
- def Initialize(self):
- self.SetStartDate(2008, 1, 1) # Set Start Date
- self.SetEndDate(2015, 12, 31) # Set End Date
- self.SetCash(100000) # Set Strategy Cash
-
- future = self.AddFuture(Futures.Indices.SP500EMini) # S&P E-mini future contracts
- future.SetFilter(timedelta(0), timedelta(180)) # Filter according to Expiry date
-
- # Set benchmark
- benchmark = self.AddEquity("SPY")
- self.SetBenchmark(benchmark.Symbol)
-
- self.bullSeason = {11, 12, 1, 2, 3, 4, 5}
-
- self.bearSeason = {6, 7, 8, 9, 10}
-
- # Night session
- self.Schedule.On(self.DateRules.EveryDay('SPY'), self.TimeRules.At(18, 0), Action(self.Enter))
- self.Schedule.On(self.DateRules.EveryDay('SPY'), self.TimeRules.At(5, 30), Action(self.Exit))
-
- # Afternoon session
- self.Schedule.On(self.DateRules.EveryDay('SPY'), self.TimeRules.At(13, 15), Action(self.Enter))
- self.Schedule.On(self.DateRules.EveryDay('SPY'), self.TimeRules.At(14, 0), Action(self.ExitException))
-
- # Close session
- self.Schedule.On(self.DateRules.EveryDay('SPY'), self.TimeRules.At(14, 0), Action(self.EnterException))
- self.Schedule.On(self.DateRules.EveryDay('SPY'), self.TimeRules.At(15, 15), Action(self.Exit))
-
-
-
-Step 2: Set up the Trading Signals
-
-
- def OnData(self, data):
- self.data = data
-
- def Enter(self):
- if not self.Portfolio.Invested:
-
- for chain in self.data.FutureChains:
- contracts = list(filter(lambda x: x.Expiry < self.Time + timedelta(90), chain.Value))
-
- if len(contracts) == 0:
- continue
-
- front = sorted(contracts, key = lambda x: x.Expiry, reverse = False)[0]
-
- # long
- self.MarketOrder(front.Symbol, 1)
-
- def Exit(self):
- if self.Portfolio.Invested:
- # liquidate
- self.Liquidate()
-
- def EnterException(self):
- isBear = self.Time.date().month in self.bearSeason
-
- if (not self.Portfolio.Invested) and isBear:
-
- for chain in self.data.FutureChains:
- contracts = list(filter(lambda x: x.Expiry < self.Time + timedelta(90), chain.Value))
-
- if len(contracts) == 0:
- continue
-
- front = sorted(contracts, key = lambda x: x.Expiry, reverse = False)[0]
-
- # long
- self.MarketOrder(front.Symbol, 1)
-
- def ExitException(self):
- isBear = self.Time.date().month in self.bearSeason
-
- if self.Portfolio.Invested and isBear:
- # liquidate
- self.Liquidate()
-
-
-
-
From 7b0092aa78bcc3dc9095c0d16eaa6c10137e59f1 Mon Sep 17 00:00:00 2001
From: Jared
+
+
+
Core Principle
-
-
- Course
+
Lessons
Lessons
Tasks
Every BootCamp lesson is focused on an algorithmic strategy's implementation. The first step to planning a lesson is choosing a strategy which does not overlap with any of the existing BootCamp topics. This can be incrementally more difficult but should introduce new concepts.
++QuantConnect has worked with the community to create a list of lessons to be created which would be eligible for compensation. The table below describes these strategies and their associated difficulty level. +
+| BootCamp Lesson | +Difficulty | +Status | +
|---|---|---|
Buy and Hold (Equities/Forex) |
+Beginner |
+Completed |
+
Buy and Hold with Trailing Stop |
+Beginner |
+Assigned |
+
After selecting your strategy you need to fully implement the algorithm, writing the code in C# and Python as simply as possible. Users new to coding have a hard time deciphering large blocks of code so strategies should be kept very simple.
-In writing the strategy remain aware of the conceptual layers you put into the algorithm's codebase. These layers of concepts are where you can separate out the lesson tasks. For example: in writing a lesson "Buy and Hold, with Trailing Stop" you might start by coding up the buy and hold logic, followed by placing a "trailing stop" (Stop Market Order), then finally you can make the stop move by updating its trigger price.
\ No newline at end of file +In writing the strategy remain aware of the conceptual layers you put into the algorithm's codebase. These layers of concepts are where you can separate out the lesson tasks. For example: in writing a lesson "Buy and Hold, with Trailing Stop" you might start by coding up the buy and hold logic, followed by placing a "trailing stop" (Stop Market Order), then finally you can make the stop move by updating its trigger price. These conceptual layers form the basis for how tasks are grouped together.
\ No newline at end of file From 6005ba5e24bd3b0188f76206d6ee5c908f575d95 Mon Sep 17 00:00:00 2001 From: www-data-Carefully planning and structuring your lesson is critical to ensuring its success. In the next section, we'll create this plan step by step. +Carefully planning and structuring your lesson is critical to ensuring its success. In the next section, we'll create this plan step by step. Boot Camp lessons typically fall into one of the following algorithm types: Macro Economics, Technical Indicators, Scaling, Market Making, Market Microstructure, Sentimental, or Value-Fundamental Investing.
-Carefully planning and structuring your lesson is critical to ensuring its success. In the next section, we'll create this plan step by step. Boot Camp lessons typically fall into one of the following algorithm types: Macro Economics, Technical Indicators, Scaling, Market Making, Market Microstructure, Sentimental, or Value-Fundamental Investing. +Carefully planning and structuring your lesson is critical to ensuring its success. In the next section, we'll create this plan step by step. Boot Camp lessons typically fall into one of the following algorithm types: Macro Economics, Technical Indicators, Scaling, Market Making, Market Microstructure, Sentimental, or Value-Fundamental Investing.
QuantConnect has worked with the community to create a list of lessons to be created which would be eligible for compensation. The table below describes these strategies and their associated difficulty level.
+ +| BootCamp Lesson | -Difficulty | +Beginner BootCamp Lessons | Status |
|---|---|---|---|
Buy and Hold (Equities/Forex) |
-Beginner |
-Completed |
+Completed |
Buy and Hold with Trailing Stop |
-Beginner |
-Assigned |
+Assigned |
+
Momentum-Based Tactical Allocation |
++ | ||
Liquid Universe Selection |
++ | ||
200-50 EMA Momentum Universe |
++ | ||
Fading The Gap |
++ | ||
Open Range Breakout |
+
In writing the strategy remain aware of the conceptual layers you put into the algorithm's codebase. These layers of concepts are where you can separate out the lesson tasks. For example: in writing a lesson "Buy and Hold, with Trailing Stop" you might start by coding up the buy and hold logic, followed by placing a "trailing stop" (Stop Market Order), then finally you can make the stop move by updating its trigger price. These conceptual layers form the basis for how tasks are grouped together.
\ No newline at end of file +In writing the strategy remain aware of the conceptual layers you put into the algorithm's codebase. These layers of concepts are where you can separate out the lesson tasks. For example: in writing a lesson "Buy and Hold, with Trailing Stop" you might start by coding up the buy and hold logic, followed by placing a "trailing stop" (Stop Market Order), then finally you can make the stop move by updating its trigger price. These conceptual layers form the basis for how tasks are grouped together.
From a97390cd0b4b860dcccdf9364ba7e4f5042772d6 Mon Sep 17 00:00:00 2001 From: www-data| Beginner BootCamp Lessons | @@ -23,39 +28,50 @@|||
|---|---|---|---|
Buy and Hold (Equities/Forex) |
+Buy and Hold (Equities/Forex) |
Completed |
|
Buy and Hold with Trailing Stop |
+Buy and Hold with Trailing Stop |
Assigned |
|
Momentum-Based Tactical Allocation |
+Momentum-Based Tactical Allocation |
||
Liquid Universe Selection |
-+ | Open Range Breakout |
+|
200-50 EMA Momentum Universe |
-+ | Liquid Universe Selection |
+|
Fading The Gap |
-+ | 200-50 EMA Momentum Universe |
+|
Open Range Breakout |
-+ | Fading The Gap |
++ |
Momentum-Based Tactical Allocation
Using a momentum indicator to shift investment between the S&P500 to a Bond ETF. Introducing multiple asset portfolios and the use of an indicator.
Open Range Breakout
Uses consolidators to aggregate the first 20 minutes of a day and trades when the price moves beyond that range. Introduces custom period consolidated price bars.
Liquid Universe Selection
Using a universe selection filter, invest in the top 10 stocks which are liquid and cost more than $10 per share. Introduces universe selection features.
200-50 EMA Momentum Universe
Select assets where the 50-EMA is greater than the 200 EMA. Seeking to introduce creating structures to contain symbol specific data, and using the history API to warm them up.
200-50 EMA Momentum Universe
Select assets where the 50-EMA is greater than the 200 EMA. Seeking to introduce creating structures to contain symbol specific data, and using the history API to warm them up.
Fading The Gap
Using scheduled events to monitor for overnight price gaps in the market and shorting abnormal activity. Introduces scheduled events, and elimination of a parameter with STD indicator.
Fading The Gap
Using scheduled events to monitor for overnight price gaps in the market and shorting abnormal activity. Introduces scheduled events, and elimination of a parameter with STD indicator.
| Intermediate BootCamp Lessons | +Status | +
|---|---|
Pairs Trading with SMA |
++ |
Pairs Trading with Cointegration Test |
++ |
Liquid Value Stocks |
++ |
Sector Balanced Universe Selection |
++ |
After selecting your strategy you need to fully implement the algorithm, writing the code in C# and Python as simply as possible. Users new to coding have a hard time deciphering large blocks of code so strategies should be kept very simple.
From 6ff0132a26037610361944c3e461f0bb804c0595 Mon Sep 17 00:00:00 2001
From: www-data Sector Balanced Universe Selection Hedging FX Books with Interest Rate Sentiment Analysis on Stocks1. Strategy Selection
-
+
Selecting an equally weighted universe of assets covering 33% technology stocks, 33% finance and 33% consumer goods.1. Strategy Selection
+
+
+
Harnessing an alternative data source (Trading Economics) to invest proportionately with interest rate changes in the underlying economies.
+
+
+
+
Harness Psychsignal data to rank the sentiment of a basket of US Equity stocks and invest in those with the most postive sentiment.
+
| Advanced BootCamp Lessons | +Status | +
|---|---|
Coming Soon |
++ |
Every BootCamp lesson is focused on an algorithmic strategy's implementation. The first step to planning a lesson is choosing a strategy which does not overlap with any of the existing BootCamp topics. This can be incrementally more difficult but should introduce new concepts.
+ ++After selecting your strategy you need to fully implement the algorithm, writing the code in C# and Python as simply as possible. Users new to coding have a hard time deciphering large blocks of code so strategies should be kept very simple. +
+ +In writing the strategy remain aware of the conceptual layers you put into the algorithm's codebase. These layers of concepts are where you can separate out the lesson tasks. For example: in writing a lesson "Buy and Hold, with Trailing Stop" you might start by coding up the buy and hold logic, followed by placing a "trailing stop" (Stop Market Order), then finally you can make the stop move by updating its trigger price. These conceptual layers form the basis for how tasks are grouped together.
+QuantConnect has worked with the community to create a list of lessons to be created which would be eligible for compensation. The table below describes these strategies and their associated difficulty level.
+ ++Writing a bootcamp lesson starts by carefully writing out the complete code for the strategy. This should be drafted as simply as possible to ensure each task the student needs to complete will only be 2-5 lines of code. +
+Readability is critical and the code should be well commented with descriptive variable names. Depending on the complexity of the algorithm sometimes its more readable to use string tickers instead of class variables. +
++Carefully write code in a way which neatly separates the algorithm concepts as much as possible. Keep in mind the algorithm will be implemented in tasks by the student. +
+ +| x | dx |
|---|---|
| x | |
| x | |
| x |
-Carefully write code in a way which neatly separates the algorithm concepts as much as possible. Keep in mind the algorithm will be implemented in tasks by the student. +Carefully write code in a way which neatly separates the algorithm concepts as much as possible. Keep in mind the algorithm will be implemented in separate tasks by the student.
- -| x | dx |
|---|---|
| Style | Code Tag |
| x | |
| x | |
| x | |
Headings |
+<h4>Initializaing Algorithms</h4> |
+
-Writing a bootcamp lesson starts by carefully writing out the complete code for the strategy, after this you can break it into tasks, and write small text summaries for each task with the documentation required to teach the reader how to complete the task. +Writing a BootCamp lesson starts by carefully writing out the complete code for the strategy, breaking it into tasks, and write small text summaries for each task with the documentation required to teach the reader how to complete the task.
self.filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData) and (float(x.AdjustedPrice) > 5)] +return [x.Symbol for x in coarse if x.HasFundamentalData and x.AdjustedPrice > 5]
In fine universe selection, we sort the stocks in the universe by the market capitalization and choose 10 stocks with the lowest market cap.
def FineSelectionFunction(self, fine): - if self.yearly_rebalance: - fine = [x for x in fine if (x.ValuationRatios.PERatio > 0) - and (x.EarningReports.BasicAverageShares.ThreeMonths > 0) - and (x.EarningReports.BasicEPS.TwelveMonths > 0)] - for i in fine: - i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio)) - sorted_market_cap = sorted(fine, key=lambda x: x.MarketCap) - self.filtered_fine = [i.Symbol for i in sorted_market_cap[:20]] - self.yearly_rebalance = False - return self.filtered_fine - else: - return [] + if self.year == self.Time.year: + return self.symbols + + # Calculate the market cap and add the "MarketCap" property to fine universe object + for i in fine: + i.MarketCap = (i.EarningReports.BasicAverageShares.ThreeMonths * + i.EarningReports.BasicEPS.TwelveMonths * + i.ValuationRatios.PERatio) + + sorted_market_cap = sorted([x for x in fine if x.MarketCap > 0], key=lambda x: x.MarketCap) + + self.symbols = [i.Symbol for i in sorted_market_cap[:10]] + return self.symbols
diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html index 5be3efc..8bab69d 100644 --- a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html @@ -1,6 +1,6 @@ div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
return [x.Symbol for x in coarse if x.HasFundamentalData and x.AdjustedPrice > 5] +return [x.Symbol for x in coarse if x.HasFundamentalData and x.Price > 5]
In fine universe selection, we sort the stocks in the universe by the market capitalization and choose 10 stocks with the lowest market cap. diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html index 8bab69d..f14f61e 100644 --- a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html @@ -1,6 +1,6 @@ div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
Momentum is the absolute difference in stocks. \[Momentum = Close_{today}-Close_{N-days-ago}\] - LEAN has the Momentum indicator. We create a class to save the momentum value and warm up the indictor for each symbol. -
-class SymbolData: - def __init__(self, symbol, lookback): - self.symbol = symbol - self.MOM = Momentum(lookback) - - def WarmUpIndicator(self, history): - # warm up the Momentum indicator with the history request - for tuple in history.itertuples(): - item = IndicatorDataPoint(self.symbol, tuple.Index, float(tuple.close)) - self.MOM.Update(item) --
- Dictionary self.symbolDataDict is used to save the momentum class instance SymbolData for each symbol.
- In OnSecuritiesChanged event method, we add the newly selected symbol to the dictionary and initialize the momentum indicator with the history request. For symbols removed from the universe, we remove it from the dictionary. Each day in OnData, the
- Momentum indicator for all symbols in the dictionary will be updated with the latest closing price.
+ Dictionary self.mom is used to save the LEAN Momentum class instance Momentum for each symbol.
+ In OnSecuritiesChanged event method, we add the newly selected symbol to the dictionary and initialize the momentum indicator with the history request. For symbols removed from the universe, we remove it from the dictionary and liquidate its positions. Each day in OnData, the Momentum indicator for all symbols in the dictionary will be updated with the latest closing price.
We choose a period of 12 months for the momentum indicator. Stocks with the best 12-month momentum (12-month performance) are then added to our portfolio and are weighted equally. @@ -32,6 +16,5 @@
- The portfolio is rebalanced once a month. The coarse and fine universe selection is set to default to run at midnight once a day. To make the universe selection run at the first trading day each month, we use the bool variable
- self.monthly_rebalance to manage the universe selection. At the start of each month, the universe selection will filter new stocks. On all other days, the universe selection function will return the same symbols. In contrast to returning an empty list, returning the same symbols as before is a better way for monthly rebalance universe selection. Since if there are no open positions for certain symbol, returning empty list will stop the data subscription of that symbol halt updates of the indicator.
+ The portfolio is rebalanced once a month. The coarse and fine universe selection is set to default to run at midnight once a day. To make the universe selection run at the first trading day each month, we use the int variable self.month that tracks the current month to manage the universe selection. At the start of each month, the universe selection will filter new stocks. On all other days, the universe selection function will return the same symbols self.symbols. In contrast to returning an empty list, returning the same symbols as before is a better way for monthly rebalance universe selection. Since if there are no open positions for certain symbol, returning empty list will stop the data subscription of that symbol halt updates of the indicator.
- The portfolio is rebalanced once a month. The coarse and fine universe selection is set to default to run at midnight once a day. To make the universe selection run at the first trading day each month, we use the int variable self.month that tracks the current month to manage the universe selection. At the start of each month, the universe selection will filter new stocks. On all other days, the universe selection function will return the same symbols self.symbols. In contrast to returning an empty list, returning the same symbols as before is a better way for monthly rebalance universe selection. Since if there are no open positions for certain symbol, returning empty list will stop the data subscription of that symbol halt updates of the indicator.
+ The portfolio is rebalanced once a month. The coarse and fine universe selection is set to default to run at midnight once a day. To make the universe selection run at the first trading day each month, we use the int variable self.month that tracks the current month to manage the universe selection. At the start of each month, the universe selection will filter new stocks. On all other days, the universe selection function will return Universe.Unchanged. In contrast to returning an empty list or a list of previously selected symbols, returning Universe.Unchanged is the best way for monthly rebalance universe selection. If there are no open positions for certain symbol, returning an empty list will stop the data subscription of that symbol and halt updates of the indicator.
Buy and Hold with Trailing Stop
Placing and updating a stop-market order combined with basic charting to visualize the stop price movement.
Assigned
Completed
Completed
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Sector Balanced Universe Selection
Selecting an equally weighted universe of assets covering 33% technology stocks, 33% finance and 33% consumer goods.
Assigned
Hedging FX Books with Interest Rate
Harnessing an alternative data source (Trading Economics) to invest proportionately with interest rate changes in the underlying economies.
Buy and Hold with Trailing Stop
Placing and updating a stop-market order combined with basic charting to visualize the stop price movement.
Completed
Assigned
Completed
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Sector Balanced Universe Selection
Selecting an equally weighted universe of assets covering 33% technology stocks, 33% finance and 33% consumer goods.
Assigned
Hedging FX Books with Interest Rate
Harnessing an alternative data source (Trading Economics) to invest proportionately with interest rate changes in the underlying economies.
Buy and Hold with Trailing Stop
Placing and updating a stop-market order combined with basic charting to visualize the stop price movement.
Assigned
Completed
Completed
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Assigned
Sector Balanced Universe Selection
Selecting an equally weighted universe of assets covering 33% technology stocks, 33% finance and 33% consumer goods.
Assigned
Hedging FX Books with Interest Rate
Harnessing an alternative data source (Trading Economics) to invest proportionately with interest rate changes in the underlying economies.
-With a few configuration changes you can get desktop charting in LEAN with a HTML5 interface very similar to the one you see in QuantConnect.com. This gives you better visual feedback on your strategy and allows you to improve faster. This tutorial guides you through configuring a desktop charting environment with LEAN. -
-- Local charting (and all local backtesting) requires you to have your own source of data. We provide a way to download FX and CFD data through our API. To get started make sure you have your data in your data folder. By default this is the /Data/ directory relative to your LEAN installation. -
-- Two configuration changes are required for desktop charting to work: -
-"environment": "backtesting-desktop",-
// To get your api access token go to quantconnect.com/account - "job-user-id": "....", - "api-access-token": "...........",-
- With those changes in place you can simply run the project and your backtesting chart will appear in a few seconds. For live trading; use the"live-desktop" configuration environment.
- If you get the run-time exception "The port configured in config.json is either being used or blocked by a firewall"- This normally means you've left the user interface open (you should close it between each run). It can also be because another program is sharing that port. You can fix this by changing the port LEAN transmits the data with the "desktop-http-port" setting.
-
- In the tutorial video below we demonstrate this feature on LEAN: -
- From b7d105a2bc22eabd0006105a8209ac00f03371ff Mon Sep 17 00:00:00 2001 From: Martin Molinero- We often want to use an IDE for algorithm development because it provides comprehensive facilities such as a source code editor and a debugger. QuantConnect delivers a robust online source code editor, but not a debugger. For some algorithm developers, a debugger is an essential tool; therefore they opt to work offline with full-featured IDE. -
-- Visual Studio is a full-featured IDE that makes debugging easy. Unlike other solutions that only allows debugging a single process/language, we can use it to debug a python algorithm in Lean (C# engine). -
-- In this tutorial, we'll show you how to debug your algorithm in LEAN from Visual Studio. -
diff --git a/03 Open Source/01 Debugging Python in Visual Studio/02 Prerequisites.html b/03 Open Source/01 Debugging Python in Visual Studio/02 Prerequisites.html deleted file mode 100644 index 5f525e7..0000000 --- a/03 Open Source/01 Debugging Python in Visual Studio/02 Prerequisites.html +++ /dev/null @@ -1,3 +0,0 @@ -Python Tools for Visual Studio debug (ptvsd) server python library. It can be easily installed using pip:
-pip install ptvsd
Unfortunately, this debugging scenario entails some limitations.
-It is not possible to concurrently debug the python algorithm and Lean (C# code). That means that the debugger will not stop at breakpoints in Lean nor we can step into methods defined in Lean (e.g., SetHoldings).
-The algorithm will always stop after ptvsd.break_into_debugger() call and it not possible to untoggled it. However, we can use conditional statements to prevent its call and avoid unnecessary breaks. In order to resume the algorithm execution without breakpoints, we need to detach the process (Debug -> Detach All).
diff --git a/03 Open Source/01 Debugging Python in Visual Studio/00.html b/03 Open Source/01 Debugging Python/00.html similarity index 100% rename from 03 Open Source/01 Debugging Python in Visual Studio/00.html rename to 03 Open Source/01 Debugging Python/00.html diff --git a/03 Open Source/01 Debugging Python/01 Introduction.html b/03 Open Source/01 Debugging Python/01 Introduction.html new file mode 100644 index 0000000..ea57f4a --- /dev/null +++ b/03 Open Source/01 Debugging Python/01 Introduction.html @@ -0,0 +1,7 @@ + + ++ In this tutorial, for those algorithm developers who opt to work offline, we will explore the different methods to debug a python algorithm. +
\ No newline at end of file diff --git a/03 Open Source/01 Debugging Python in Visual Studio/03 Installing LEAN with Python.html b/03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html similarity index 100% rename from 03 Open Source/01 Debugging Python in Visual Studio/03 Installing LEAN with Python.html rename to 03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html diff --git a/03 Open Source/01 Debugging Python in Visual Studio/04 Attaching the Debugger.html b/03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html similarity index 88% rename from 03 Open Source/01 Debugging Python in Visual Studio/04 Attaching the Debugger.html rename to 03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html index aaf8b00..4407bf1 100644 --- a/03 Open Source/01 Debugging Python in Visual Studio/04 Attaching the Debugger.html +++ b/03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html @@ -1,3 +1,8 @@ +Python Tools for Visual Studio debug (ptvsd) server python library. It can be easily installed using pip:
+pip install ptvsd
The process that we will use to attach the python debugger requires that we run Lean without debugging and attach the process.
First, we will add the ptvsd library, and the following statements:
diff --git a/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html b/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html new file mode 100644 index 0000000..026b73a --- /dev/null +++ b/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html @@ -0,0 +1,24 @@ +This method uses the built in, cross-platform, command line python debugger (pdb). + +
+
+ "debugging": true, ++
+ break add ../../../Algorithm.Python/BasicTemplateAlgorithm.py:37 + continue + print(self.Portfolio.Invested) ++
\ No newline at end of file
diff --git a/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html b/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html
new file mode 100644
index 0000000..16bec79
--- /dev/null
+++ b/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html
@@ -0,0 +1,25 @@
+This method uses the (VisualStudio python debugger). + +
Visual Studio Python development feature. It can be easily installed at Tools -> Get Tools and Features...
+ ++
+ "debugging": true, + "debugging-method": "VisualStudio", ++
\ No newline at end of file
diff --git a/03 Open Source/01 Debugging Python/06 Limitations.html b/03 Open Source/01 Debugging Python/06 Limitations.html
new file mode 100644
index 0000000..f126eb5
--- /dev/null
+++ b/03 Open Source/01 Debugging Python/06 Limitations.html
@@ -0,0 +1,3 @@
+Unfortunately, this debugging scenario entails some limitations.
+It is not possible to concurrently debug the python algorithm and Lean (C# code). That means that the debugger will not stop at breakpoints in Lean nor we can step into methods defined in Lean (e.g., SetHoldings).
+Method 1 ptvsd will always stop after ptvsd.break_into_debugger() call and it not possible to untoggled it. However, we can use conditional statements to prevent its call and avoid unnecessary breaks. In order to resume the algorithm execution without breakpoints, we need to detach the process (Debug -> Detach All).
diff --git a/03 Open Source/01 Debugging Python in Visual Studio/06 Summary.html b/03 Open Source/01 Debugging Python/07 Summary.html similarity index 100% rename from 03 Open Source/01 Debugging Python in Visual Studio/06 Summary.html rename to 03 Open Source/01 Debugging Python/07 Summary.html From 827e272da339991879efbea5d7254fdc74580135 Mon Sep 17 00:00:00 2001 From: Martin MolineroThis method uses the built in, cross-platform, command line python debugger (pdb). +
This method uses the built in, cross-platform, command line python debugger pdb.
"debugging": true,
+ "debugging-method": "CommandLine",
This method uses the (VisualStudio python debugger). +
This method uses the Visual Studio Python Development Tools.
Visual Studio Python development feature. It can be easily installed at Tools -> Get Tools and Features...
From 58fdb388df72157c8cafb5e6a5246122abd3f0d9 Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Wed, 21 Aug 2019 15:01:22 -0700 Subject: [PATCH 037/215] Fama-French Five-Factor Strategy --- .../01 Introduction.html | 3 + .../02 Fama French Five-Factor Model.html | 17 +++++ .../03 Algorithm.html | 66 +++++++++++++++++++ .../04 References.html | 5 ++ 4 files changed, 91 insertions(+) create mode 100644 04 Strategy Library/230 Fama French Five Factors/01 Introduction.html create mode 100644 04 Strategy Library/230 Fama French Five Factors/02 Fama French Five-Factor Model.html create mode 100644 04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html create mode 100644 04 Strategy Library/230 Fama French Five Factors/04 References.html diff --git a/04 Strategy Library/230 Fama French Five Factors/01 Introduction.html b/04 Strategy Library/230 Fama French Five Factors/01 Introduction.html new file mode 100644 index 0000000..12ef392 --- /dev/null +++ b/04 Strategy Library/230 Fama French Five Factors/01 Introduction.html @@ -0,0 +1,3 @@ ++ At QuantConnect, we seek to make financial models ever more accessible to our community. This article will walk through the implementation of a stock selection strategy based on the popular Fama French five-factor financial model. +
\ No newline at end of file diff --git a/04 Strategy Library/230 Fama French Five Factors/02 Fama French Five-Factor Model.html b/04 Strategy Library/230 Fama French Five Factors/02 Fama French Five-Factor Model.html new file mode 100644 index 0000000..fd20400 --- /dev/null +++ b/04 Strategy Library/230 Fama French Five Factors/02 Fama French Five-Factor Model.html @@ -0,0 +1,17 @@ ++ The Fama French five-factor model was proposed in 2014 and is adapted from the Fama French three-factor model (Fama and French, 2015). It builds upon the dividend discount model which states that the value of stocks today is dependent upon future dividends. + Fama and French add two factors, investment and profitability, to the dividend discount model to better capture the relationship between risk and return. + The model is as follows +
+\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML + \beta_r RMW + \beta_c CMA\] + ++where +
++ Taking inspiration from the Fama French five-factor model, we can develop a multi-factor stock selection strategy that focuses on five factors: size, value, quality, profitability, and investment pattern. +
++ In the following backtest, we use the terms TotalEquity, BookValuePerShare, OperationProfitMargin, ROE, and TotalAssetsGrowth to account for the five factors, respectively. We then calculate a custom ranking metric for each stock using these five terms. Our algorithm will long the five stocks with the highest scores and short the five stocks with the lowest scores. +
+
+def FineSelectionFunction(self, fine):
+ '''Select securities with highest score on Fama French 5 factors'''
+
+ # select stocks with these 5 factors
+
+ # Operation profit margin: Quality
+ # Book value per share: Value
+ # ROE: Profitability
+ # TotalEquity: Size
+ # TotalAssetsGrowth: Investment Pattern
+ filtered = [x for x in fine if x.OperationRatios.OperationMargin.Value
+ and x.ValuationRatios.BookValuePerShare
+ and x.OperationRatios.ROE
+ and x.FinancialStatements.BalanceSheet.TotalEquity
+ and x.OperationRatios.TotalAssetsGrowth]
+
+
+ # sort by factors
+ sortedByFactor1 = sorted(filtered, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
+ sortedByFactor2 = sorted(filtered, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
+ sortedByFactor3 = sorted(filtered, key=lambda x: x.OperationRatios.ROE.Value, reverse=True)
+ sortedByFactor4 = sorted(filtered, key=lambda x: x.FinancialStatements.BalanceSheet.TotalEquity.Value, reverse=True)
+ sortedByFactor5 = sorted(filtered, key=lambda x: x.OperationRatios.TotalAssetsGrowth.Value, reverse=False)
+
+ stockBySymbol = {}
+
+ # get the rank based on 5 factors for every stock
+ for index, stock in enumerate(sortedByFactor1):
+ rank1 = index
+ rank2 = sortedByFactor2.index(stock)
+ rank3 = sortedByFactor3.index(stock)
+ rank4 = sortedByFactor4.index(stock)
+ rank5 = sortedByFactor5.index(stock)
+ avgRank = np.mean([rank1,rank2,rank3,rank4,rank5])
+ stockBySymbol[stock.Symbol] = avgRank
+
+ sorted_dict = sorted(stockBySymbol.items(), key = lambda x: x[1], reverse = True)
+ symbols = [x[0] for x in sorted_dict]
+
+ # pick the stocks with the highest scores to long
+ self.longSymbols= symbols[:self.num_long]
+ # pick the stocks with the lowest scores to short
+ self.shortSymbols = symbols[-self.num_short:]
+
+ return self.longSymbols + self.shortSymbols
+
++ In this example, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. You can improve upon this strategy by changing the fundamental factors, the weight of each factor and the rebalance frequency. +
+ +- In the following backtest, we use the terms TotalEquity, BookValuePerShare, OperationProfitMargin, ROE, and TotalAssetsGrowth to account for the five factors, respectively. We then calculate a custom ranking metric for each stock using these five terms. Our algorithm will long the five stocks with the highest scores and short the five stocks with the lowest scores. + In the following backtest, we use the terms TotalEquity, BookValuePerShare, OperationProfitMargin, ROE, and TotalAssetsGrowth to account for the five factors, respectively. We then calculate a custom ranking metric for each stock using these five terms. Our algorithm will go long in the five stocks with the highest scores and short the five stocks with the lowest scores.
def FineSelectionFunction(self, fine):
'''Select securities with highest score on Fama French 5 factors'''
-
- # select stocks with these 5 factors
-
- # Operation profit margin: Quality
- # Book value per share: Value
- # ROE: Profitability
- # TotalEquity: Size
- # TotalAssetsGrowth: Investment Pattern
- filtered = [x for x in fine if x.OperationRatios.OperationMargin.Value
- and x.ValuationRatios.BookValuePerShare
- and x.OperationRatios.ROE
+
+ # Select stocks with these 5 factors:
+ # MKT -- Book value per share: Value
+ # SMB -- TotalEquity: Size
+ # HML -- Operation profit margin: Quality
+ # RMW -- ROE: Profitability
+ # CMA -- TotalAssetsGrowth: Investment Pattern
+ filtered = [x for x in fine if x.ValuationRatios.BookValuePerShare
and x.FinancialStatements.BalanceSheet.TotalEquity
+ and x.OperationRatios.OperationMargin.Value
+ and x.OperationRatios.ROE
and x.OperationRatios.TotalAssetsGrowth]
-
-
- # sort by factors
- sortedByFactor1 = sorted(filtered, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
- sortedByFactor2 = sorted(filtered, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
- sortedByFactor3 = sorted(filtered, key=lambda x: x.OperationRatios.ROE.Value, reverse=True)
- sortedByFactor4 = sorted(filtered, key=lambda x: x.FinancialStatements.BalanceSheet.TotalEquity.Value, reverse=True)
- sortedByFactor5 = sorted(filtered, key=lambda x: x.OperationRatios.TotalAssetsGrowth.Value, reverse=False)
-
+
+ # Sort by factors
+ sortedByMkt = sorted(filtered, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
+ sortedBySmb = sorted(filtered, key=lambda x: x.FinancialStatements.BalanceSheet.TotalEquity.Value, reverse=True)
+ sortedByHml = sorted(filtered, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
+ sortedByRmw = sorted(filtered, key=lambda x: x.OperationRatios.ROE.Value, reverse=True)
+ sortedByCma = sorted(filtered, key=lambda x: x.OperationRatios.TotalAssetsGrowth.Value, reverse=False)
+
stockBySymbol = {}
-
- # get the rank based on 5 factors for every stock
- for index, stock in enumerate(sortedByFactor1):
- rank1 = index
- rank2 = sortedByFactor2.index(stock)
- rank3 = sortedByFactor3.index(stock)
- rank4 = sortedByFactor4.index(stock)
- rank5 = sortedByFactor5.index(stock)
- avgRank = np.mean([rank1,rank2,rank3,rank4,rank5])
+
+ # Get the rank based on 5 factors for every stock
+ for index, stock in enumerate(sortedByMkt):
+ mktRank = self.beta_m * index
+ smbRank = self.beta_s * sortedBySmb.index(stock)
+ hmlRank = self.beta_h * sortedByHml.index(stock)
+ rmwRank = self.beta_r * sortedByRmw.index(stock)
+ cmaRank = self.beta_c * sortedByCma.index(stock)
+ avgRank = np.mean([mktRank,smbRank,hmlRank,rmwRank,cmaRank])
stockBySymbol[stock.Symbol] = avgRank
-
+
sorted_dict = sorted(stockBySymbol.items(), key = lambda x: x[1], reverse = True)
symbols = [x[0] for x in sorted_dict]
-
- # pick the stocks with the highest scores to long
+
+ # Pick the stocks with the highest scores to long
self.longSymbols= symbols[:self.num_long]
- # pick the stocks with the lowest scores to short
+ # Pick the stocks with the lowest scores to short
self.shortSymbols = symbols[-self.num_short:]
-
+
return self.longSymbols + self.shortSymbols
+ The Fama French five-factor model provides a scientific way to measure asset pricing. For the five aspects that Fama and French mentioned, we used one possible combination in our backtest and it performed well. + However, there are still many aspects need to be improved (e.g. the weights of factors, a different set of factors for different kinds of equities,etc.) We encourage you to explore and create better algorithms upon this tutorial! +
\ No newline at end of file From ee6ca904f2c343dc6055b406eeb41e609dcbeb23 Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Wed, 21 Aug 2019 18:04:36 -0700 Subject: [PATCH 039/215] requested changes --- .../230 Fama French Five Factors/03 Algorithm.html | 4 ++-- quantpedia.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html b/04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html index 7f2f419..7f04f12 100644 --- a/04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html +++ b/04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html @@ -64,6 +64,6 @@- The Fama French five-factor model provides a scientific way to measure asset pricing. For the five aspects that Fama and French mentioned, we used one possible combination in our backtest and it performed well. - However, there are still many aspects need to be improved (e.g. the weights of factors, a different set of factors for different kinds of equities,etc.) We encourage you to explore and create better algorithms upon this tutorial! + The Fama French five-factor model provides a scientific way to measure asset pricing. For the five aspects that Fama and French mentioned, we used one possible combination in our backtest. We can see from the results that it achieves an annual rate of return around 5% with a max drawdown of 30% over 8 years. + These factors perhaps cannot capture a sufficient amount of information on the assets' pricing, and therefore, there are still many aspects can be improved (e.g. the weights of factors, a different set of factors for different kinds of equities,etc.) We encourage you to explore and create better algorithms upon this tutorial!
\ No newline at end of file diff --git a/quantpedia.json b/quantpedia.json index cd0aa80..807c061 100644 --- a/quantpedia.json +++ b/quantpedia.json @@ -47,4 +47,5 @@ 199: "2deff750ba4eff5bf2f2138ecffb4a7c", 207: "9bcf7ac117397af393ca59f795c4abdd", 229: "5544552803512ca667342d5011dedd1d", + 230: "78601a5bd785ca32803c13525c688046", } From 2a0f7c1308930ecc90e89c86d34b7cef4f902d3b Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Thu, 22 Aug 2019 08:42:43 -0700 Subject: [PATCH 040/215] requested changes --- .../01 Introduction.html | 0 .../02 Fama French Five-Factor Model.html | 0 .../03 Algorithm.html | 0 .../04 References.html | 0 quantpedia.json | 1 - 5 files changed, 1 deletion(-) rename 04 Strategy Library/{230 Fama French Five Factors => Fama French Five Factors}/01 Introduction.html (100%) rename 04 Strategy Library/{230 Fama French Five Factors => Fama French Five Factors}/02 Fama French Five-Factor Model.html (100%) rename 04 Strategy Library/{230 Fama French Five Factors => Fama French Five Factors}/03 Algorithm.html (100%) rename 04 Strategy Library/{230 Fama French Five Factors => Fama French Five Factors}/04 References.html (100%) diff --git a/04 Strategy Library/230 Fama French Five Factors/01 Introduction.html b/04 Strategy Library/Fama French Five Factors/01 Introduction.html similarity index 100% rename from 04 Strategy Library/230 Fama French Five Factors/01 Introduction.html rename to 04 Strategy Library/Fama French Five Factors/01 Introduction.html diff --git a/04 Strategy Library/230 Fama French Five Factors/02 Fama French Five-Factor Model.html b/04 Strategy Library/Fama French Five Factors/02 Fama French Five-Factor Model.html similarity index 100% rename from 04 Strategy Library/230 Fama French Five Factors/02 Fama French Five-Factor Model.html rename to 04 Strategy Library/Fama French Five Factors/02 Fama French Five-Factor Model.html diff --git a/04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html b/04 Strategy Library/Fama French Five Factors/03 Algorithm.html similarity index 100% rename from 04 Strategy Library/230 Fama French Five Factors/03 Algorithm.html rename to 04 Strategy Library/Fama French Five Factors/03 Algorithm.html diff --git a/04 Strategy Library/230 Fama French Five Factors/04 References.html b/04 Strategy Library/Fama French Five Factors/04 References.html similarity index 100% rename from 04 Strategy Library/230 Fama French Five Factors/04 References.html rename to 04 Strategy Library/Fama French Five Factors/04 References.html diff --git a/quantpedia.json b/quantpedia.json index 807c061..cd0aa80 100644 --- a/quantpedia.json +++ b/quantpedia.json @@ -47,5 +47,4 @@ 199: "2deff750ba4eff5bf2f2138ecffb4a7c", 207: "9bcf7ac117397af393ca59f795c4abdd", 229: "5544552803512ca667342d5011dedd1d", - 230: "78601a5bd785ca32803c13525c688046", } From 3675f27e197eccdd51b7ab770a0f594573e88842 Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Thu, 22 Aug 2019 13:33:06 -0700 Subject: [PATCH 041/215] requested changes --- .../01 Introduction.html | 3 + .../02 Method.html | 93 +++++++++++++++++++ .../03 Results.html | 8 ++ .../04 Algorithm.html | 6 ++ .../05 References.html | 5 + .../01 Introduction.html | 3 - .../02 Fama French Five-Factor Model.html | 17 ---- .../03 Algorithm.html | 69 -------------- .../04 References.html | 5 - 9 files changed, 115 insertions(+), 94 deletions(-) create mode 100644 04 Strategy Library/353 Fama French Five Factors/01 Introduction.html create mode 100644 04 Strategy Library/353 Fama French Five Factors/02 Method.html create mode 100644 04 Strategy Library/353 Fama French Five Factors/03 Results.html create mode 100644 04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html create mode 100644 04 Strategy Library/353 Fama French Five Factors/05 References.html delete mode 100644 04 Strategy Library/Fama French Five Factors/01 Introduction.html delete mode 100644 04 Strategy Library/Fama French Five Factors/02 Fama French Five-Factor Model.html delete mode 100644 04 Strategy Library/Fama French Five Factors/03 Algorithm.html delete mode 100644 04 Strategy Library/Fama French Five Factors/04 References.html diff --git a/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html b/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html new file mode 100644 index 0000000..c5889c0 --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html @@ -0,0 +1,3 @@ ++ The relationship between return and risk has long been a popular topic for research. Investors have been seeking financial models that quantify risk and use it to estimate the expected return on equity. The Fama French five-factor model, improved from the Fama French three-factor model, is one of the most classic models (Fama and French, 2015). In this post, we will discuss this model and develop a stock-picking strategy based on it. +
\ No newline at end of file diff --git a/04 Strategy Library/353 Fama French Five Factors/02 Method.html b/04 Strategy Library/353 Fama French Five Factors/02 Method.html new file mode 100644 index 0000000..1fd2f52 --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/02 Method.html @@ -0,0 +1,93 @@ ++ The Fama French five-factor model was proposed in 2014 and is adapted from the Fama French three-factor model (Fama and French, 2015). It builds upon the dividend discount model which states that the value of stocks today is dependent upon future dividends. + Fama and French add two factors, investment and profitability, to the dividend discount model to better capture the relationship between risk and return. + The model is as follows +
+\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML + \beta_r RMW + \beta_c CMA\] + ++where +
++ Taking inspiration from the Fama French five-factor model, we can develop a multi-factor stock selection strategy that focuses on five factors: size, value, quality, profitability, and investment pattern. +
+ ++ First, we run a Coarse Selection to drop equities which have no fundamental data or have too low prices. Then we select those with the highest dollar volume. + Note that a useful technique is used here: we can use Universe.Unchanged to remain the same universe when there is no necessary change, which greatly speeds up the backtest. +
+ ++def CoarseSelectionFunction(self, coarse): + '''Drop securities which have no fundamental data or have too low prices. + Select those with highest by dollar volume''' + + if self.Time < self.nextLiquidate: + return Universe.Unchanged + + selected = sorted([x for x in coarse if x.HasFundamentalData and x.Price > 5], + key=lambda x: x.DollarVolume, reverse=True) + + return [x.Symbol for x in selected[:self.num_coarse]] ++
+ Secondly, in Fine Selection, we use the terms TotalEquity, BookValuePerShare, OperationProfitMargin, ROE, and TotalAssetsGrowth to account for the five factors, respectively. We then calculate a custom ranking metric for each stock using these five terms. Our algorithm will go long in the five stocks with the highest scores and short the five stocks with the lowest scores. +
+
+def FineSelectionFunction(self, fine):
+ '''Select securities with highest score on Fama French 5 factors'''
+
+ # Select stocks with these 5 factors:
+ # MKT -- Book value per share: Value
+ # SMB -- TotalEquity: Size
+ # HML -- Operation profit margin: Quality
+ # RMW -- ROE: Profitability
+ # CMA -- TotalAssetsGrowth: Investment Pattern
+ filtered = [x for x in fine if x.ValuationRatios.BookValuePerShare
+ and x.FinancialStatements.BalanceSheet.TotalEquity
+ and x.OperationRatios.OperationMargin.Value
+ and x.OperationRatios.ROE
+ and x.OperationRatios.TotalAssetsGrowth]
+
+ # Sort by factors
+ sortedByMkt = sorted(filtered, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
+ sortedBySmb = sorted(filtered, key=lambda x: x.FinancialStatements.BalanceSheet.TotalEquity.Value, reverse=True)
+ sortedByHml = sorted(filtered, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
+ sortedByRmw = sorted(filtered, key=lambda x: x.OperationRatios.ROE.Value, reverse=True)
+ sortedByCma = sorted(filtered, key=lambda x: x.OperationRatios.TotalAssetsGrowth.Value, reverse=False)
+
+ stockBySymbol = {}
+
+ # Get the rank based on 5 factors for every stock
+ for index, stock in enumerate(sortedByMkt):
+ mktRank = self.beta_m * index
+ smbRank = self.beta_s * sortedBySmb.index(stock)
+ hmlRank = self.beta_h * sortedByHml.index(stock)
+ rmwRank = self.beta_r * sortedByRmw.index(stock)
+ cmaRank = self.beta_c * sortedByCma.index(stock)
+ avgRank = np.mean([mktRank,smbRank,hmlRank,rmwRank,cmaRank])
+ stockBySymbol[stock.Symbol] = avgRank
+
+ sorted_dict = sorted(stockBySymbol.items(), key = lambda x: x[1], reverse = True)
+ symbols = [x[0] for x in sorted_dict]
+
+ # Pick the stocks with the highest scores to long
+ self.longSymbols= symbols[:self.num_long]
+ # Pick the stocks with the lowest scores to short
+ self.shortSymbols = symbols[-self.num_short:]
+
+ return self.longSymbols + self.shortSymbols
+
++ In this example, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. You can improve upon this strategy by changing the fundamental factors, the weight of each factor and the rebalance frequency. +
+ ++ The Fama French five-factor model provides a scientific way to measure asset pricing. For the five aspects that Fama and French mentioned, we used one possible combination in our backtest. We can see from the results that it achieves an annual rate of return around 5% with a max drawdown of 30% over 8 years. + These factors perhaps cannot capture a sufficient amount of information on the assets' pricing, and therefore, there are still many aspects can be improved (e.g. the weights of factors, a different set of factors for different kinds of equities,etc.) We encourage you to explore and create better algorithms upon this tutorial! +
\ No newline at end of file diff --git a/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html b/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html new file mode 100644 index 0000000..f3cdbee --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html @@ -0,0 +1,6 @@ +- At QuantConnect, we seek to make financial models ever more accessible to our community. This article will walk through the implementation of a stock selection strategy based on the popular Fama French five-factor financial model. -
\ No newline at end of file diff --git a/04 Strategy Library/Fama French Five Factors/02 Fama French Five-Factor Model.html b/04 Strategy Library/Fama French Five Factors/02 Fama French Five-Factor Model.html deleted file mode 100644 index 0cd9ad3..0000000 --- a/04 Strategy Library/Fama French Five Factors/02 Fama French Five-Factor Model.html +++ /dev/null @@ -1,17 +0,0 @@ -- The Fama French five-factor model was proposed in 2014 and is adapted from the Fama French three-factor model (Fama and French, 2015). It builds upon the dividend discount model which states that the value of stocks today is dependent upon future dividends. - Fama and French add two factors, investment and profitability, to the dividend discount model to better capture the relationship between risk and return. - The model is as follows -
-\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML + \beta_r RMW + \beta_c CMA\] - --where -
-- Taking inspiration from the Fama French five-factor model, we can develop a multi-factor stock selection strategy that focuses on five factors: size, value, quality, profitability, and investment pattern. -
-- In the following backtest, we use the terms TotalEquity, BookValuePerShare, OperationProfitMargin, ROE, and TotalAssetsGrowth to account for the five factors, respectively. We then calculate a custom ranking metric for each stock using these five terms. Our algorithm will go long in the five stocks with the highest scores and short the five stocks with the lowest scores. -
-
-def FineSelectionFunction(self, fine):
- '''Select securities with highest score on Fama French 5 factors'''
-
- # Select stocks with these 5 factors:
- # MKT -- Book value per share: Value
- # SMB -- TotalEquity: Size
- # HML -- Operation profit margin: Quality
- # RMW -- ROE: Profitability
- # CMA -- TotalAssetsGrowth: Investment Pattern
- filtered = [x for x in fine if x.ValuationRatios.BookValuePerShare
- and x.FinancialStatements.BalanceSheet.TotalEquity
- and x.OperationRatios.OperationMargin.Value
- and x.OperationRatios.ROE
- and x.OperationRatios.TotalAssetsGrowth]
-
- # Sort by factors
- sortedByMkt = sorted(filtered, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
- sortedBySmb = sorted(filtered, key=lambda x: x.FinancialStatements.BalanceSheet.TotalEquity.Value, reverse=True)
- sortedByHml = sorted(filtered, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
- sortedByRmw = sorted(filtered, key=lambda x: x.OperationRatios.ROE.Value, reverse=True)
- sortedByCma = sorted(filtered, key=lambda x: x.OperationRatios.TotalAssetsGrowth.Value, reverse=False)
-
- stockBySymbol = {}
-
- # Get the rank based on 5 factors for every stock
- for index, stock in enumerate(sortedByMkt):
- mktRank = self.beta_m * index
- smbRank = self.beta_s * sortedBySmb.index(stock)
- hmlRank = self.beta_h * sortedByHml.index(stock)
- rmwRank = self.beta_r * sortedByRmw.index(stock)
- cmaRank = self.beta_c * sortedByCma.index(stock)
- avgRank = np.mean([mktRank,smbRank,hmlRank,rmwRank,cmaRank])
- stockBySymbol[stock.Symbol] = avgRank
-
- sorted_dict = sorted(stockBySymbol.items(), key = lambda x: x[1], reverse = True)
- symbols = [x[0] for x in sorted_dict]
-
- # Pick the stocks with the highest scores to long
- self.longSymbols= symbols[:self.num_long]
- # Pick the stocks with the lowest scores to short
- self.shortSymbols = symbols[-self.num_short:]
-
- return self.longSymbols + self.shortSymbols
-
-- In this example, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. You can improve upon this strategy by changing the fundamental factors, the weight of each factor and the rebalance frequency. -
- -- The Fama French five-factor model provides a scientific way to measure asset pricing. For the five aspects that Fama and French mentioned, we used one possible combination in our backtest. We can see from the results that it achieves an annual rate of return around 5% with a max drawdown of 30% over 8 years. - These factors perhaps cannot capture a sufficient amount of information on the assets' pricing, and therefore, there are still many aspects can be improved (e.g. the weights of factors, a different set of factors for different kinds of equities,etc.) We encourage you to explore and create better algorithms upon this tutorial! -
\ No newline at end of file diff --git a/04 Strategy Library/Fama French Five Factors/04 References.html b/04 Strategy Library/Fama French Five Factors/04 References.html deleted file mode 100644 index a660292..0000000 --- a/04 Strategy Library/Fama French Five Factors/04 References.html +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file From 4af0db1856b075832c5487e363167cd247de6942 Mon Sep 17 00:00:00 2001 From: AlexCatarino
def Initialize(self):
+
self.SetStartDate(2001, 1, 1)
self.SetEndDate(2018, 8, 1)
self.SetCash(100000)
- self.tickers = [
- "IJJ", # iShares S&P MidCap 400 Value Index ETF
- "IJS", # iShares S&P SmallCap 600 Value ETF
- "IVE", # iShares S&P 500 Value Index ETF
- "IVW", # iShares S&P 500 Growth ETF
- "IJK", # iShares S&P Mid-Cap 400 Growth ETF
- "IJT", # iShares S&P Small-Cap 600 Growth ETF
- ]
- self.symbols = []
- for ticker in self.tickers:
- self.symbols.append(self.AddEquity(ticker, Resolution.Daily).Symbol)
- self.SetWarmUp(timedelta(days=12*20))
- # save all momentum indicator in the dictionary
- self.mom = {i:self.MOM(i, 12*20, Resolution.Daily) for i in self.symbols}
+
+ tickers = ["IJJ", # iShares S&P Mid-Cap 400 Value Index ETF
+ "IJK", # iShares S&P Mid-Cap 400 Growth ETF
+ "IJS", # iShares S&P Small-Cap 600 Value ETF
+ "IJT", # iShares S&P Small-Cap 600 Growth ETF
+ "IVE", # iShares S&P 500 Value Index ETF
+ "IVW"] # iShares S&P 500 Growth ETF
+
+ lookback = 12*20
+
+ # Save all momentum indicator into the dictionary
+ self.mom = dict()
+ for ticker in tickers:
+ symbol = self.AddEquity(ticker, Resolution.Daily).Symbol
+ self.mom[symbol] = self.MOM(symbol, lookback)
@@ -33,12 +35,15 @@
def Rebalance(self):
+ # Order the MOM dictionary by value
sorted_mom = sorted(self.mom, key = lambda x: self.mom[x].Current.Value)
- invested = [x.Key for x in self.Portfolio if x.Value.Invested]
- for i in invested:
- if i not in [sorted_mom[0], sorted_mom[1]]:
- self.Liquidate(i)
- self.SetHoldings(sorted_mom[0], -0.5)
- self.SetHoldings(sorted_mom[-1], 0.5)
+
+ # Liquidate the ETFs that are no longer selected
+ for symbol in sorted_mom[1:-1]:
+ if self.Portfolio[symbol].Invested:
+ self.Liquidate(symbol, 'No longer selected')
+
+ self.SetHoldings(sorted_mom[-1], -0.5) # Short the ETF with lowest MOM
+ self.SetHoldings(sorted_mom[0], 0.5) # Long the ETF with highest MOM
-+ In this tutorial, we will study the model-driven statistical arbitrage strategies in U.S. stocks market. We employ a combination of Principal Components Analysis (PCA) and Linear Regression to implement this strategy. First, by applying PCA, we get a generalized statistical arbitrage strategy that minimizes exposure to market factors and the asset universe is projected onto its first n (n=3 in our algorithm) orthogonal principal components. Secondly, we model the mean-reverting residuals of the cluster of assets and get their weights based on the level of deviation using linear regression. +
diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html new file mode 100644 index 0000000..759a3ca --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -0,0 +1,62 @@ ++ There are three elements of the strategy that will promote mean-reversion and the opportunity for statistical arbitrage: (1) Utilize Coarse selection to obtain the initial universe, (2) Employ PCA to historical prices to get the first 3 principal components for dimension reduction, (3) Apply Linear Regression to get the residuals for measuring the price deviation of each stock in the universe. + We will show how we apply Coarse selection first. +
+ ++ # Sort the equities in DollarVolume decendingly + selected = sorted([x for x in coarse if x.Price > 5], + key=lambda x: x.DollarVolume, reverse=True) + symbols = [x.Symbol for x in selected[:self.num_equities]] ++
+ We see that in Coarse selection we drop stocks with prices lower than $5 and pick the ones with the highest dollar volume. + Then, we go to the PCA part. In this part, based on historical close values, we perform PCA to get the first 3 principal components of the feature space (formed by the historical close values). This helps us + reduce the dimension of the feature space and exclude the noise at the same time. +
+ ++ # Sample data for PCA (smooth it using np.log function) + sample = np.log(history.dropna(axis=1)) + sample -= sample.mean() # Center it column-wise + + # Fit the PCA model for sample data + model = PCA().fit(sample) + + # Get the first n_components factors + factors = np.dot(sample, model.components_.T)[:,:self.num_components] ++
+ Finally, we get to the linear regression part. This part helps us get the weight of each stock in the portfolio based on its price deviation measured by the residual. + If the absolute value of the residual is large, it means that the level of price deviation is high and hence we should give it more weight in the portfolio. Similarly, if the absolute value of the residual is small, + it is reasonable to give the stock less weight in the portfolio. Therefore, we could first standardize the residuals to get their z scores. Then, + based on the z scores, it is easy to detect the level of price deviation. Specifically, the level of deviation is higher when the absolute values of the z scores are large. + So it is natural to use the inverse of the absolute values of the z scores as a measurement of the weights of the portfolio. + All details can be found in the following code snippet. +
+ +
+ # Train Ordinary Least Squares linear model for each stock
+ OLSmodels = {ticker: sm.OLS(sample[ticker], factors).fit() for ticker in sample.columns}
+
+ # Get the residuals from the linear regression after PCA for each stock
+ resids = pd.DataFrame({ticker: model.resid for ticker, model in OLSmodels.items()})
+
+ # Get the Z scores by standarize the given pandas dataframe X
+ zscores = ((resids - resids.mean()) / resids.std()).iloc[-1] # residuals of the most recent day
+
+ # Get the stocks far from mean (for mean reversion)
+ selected = zscores[zscores < -1.5]
+
+ # Return the weights for each selected stock
+ weights = selected * (1 / selected.abs().sum())
+
++ In this tutorial, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. We can see from the results that it achieves an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. + The performance is generally good, which indicates using PCA combined with Linear regression to measure the deviation level is reasonable. However, there are still many aspects can be improved. + For example, we could expand the original coarse-selected universe. Now we only used 20 equities in this example, and sometimes the algorithm only find one or even no candidate, which might be not enough. + You might increase the number of universe. Besides, we can develop this strategy to a long & short one (now it is only a long strategy). + You could also come up with another way to measure the level of deviation or change the rebalance frequency of the algorithm(30 days in this example). We sincerely hope you create more amazing algorithms upon this tutorial. +
+ diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html new file mode 100644 index 0000000..78e62f1 --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html @@ -0,0 +1,6 @@ +- In this tutorial, we will study the model-driven statistical arbitrage strategies in U.S. stocks market. We employ a combination of Principal Components Analysis (PCA) and Linear Regression to implement this strategy. First, by applying PCA, we get a generalized statistical arbitrage strategy that minimizes exposure to market factors and the asset universe is projected onto its first n (n=3 in our algorithm) orthogonal principal components. Secondly, we model the mean-reverting residuals of the cluster of assets and get their weights based on the level of deviation using linear regression. + In this tutorial, we will take a close look at a principal component analysis (PCA)-based statistical arbitrage strategy + based on the paper + Statistical Arbitrage in teh U.S. Equities Market. +
++ First, we will apply PCA to minimizes our algorithm's exposure to market factors and project the first n (n=3 in our algorithm) + orthogonal principal components on our asset universe. Then we will model the mean-reverting residuals of our assets. + Next we will create our model using linear regression. Each factor will have a weight or coefficient equal to the residuals' level + of deviation from the mean.
From e32237d82353d929f93e115fab5cde854660201d Mon Sep 17 00:00:00 2001 From: Sherry Yang- There are three elements of the strategy that will promote mean-reversion and the opportunity for statistical arbitrage: (1) Utilize Coarse selection to obtain the initial universe, (2) Employ PCA to historical prices to get the first 3 principal components for dimension reduction, (3) Apply Linear Regression to get the residuals for measuring the price deviation of each stock in the universe. - We will show how we apply Coarse selection first. + ...mean-reversion and opportunity for statistical arbitrage...
We see that in Coarse selection we drop stocks with prices lower than $5 and pick the ones with the highest dollar volume. Then, we go to the PCA part. In this part, based on historical close values, we perform PCA to get the first 3 principal components of the feature space (formed by the historical close values). This helps us @@ -32,14 +35,15 @@ +
- Finally, we get to the linear regression part. This part helps us get the weight of each stock in the portfolio based on its price deviation measured by the residual. + We use linear regression to derive the weight of each stock in the portfolio based on its price deviation measured by the residual. If the absolute value of the residual is large, it means that the level of price deviation is high and hence we should give it more weight in the portfolio. Similarly, if the absolute value of the residual is small, it is reasonable to give the stock less weight in the portfolio. Therefore, we could first standardize the residuals to get their z scores. Then, based on the z scores, it is easy to detect the level of price deviation. Specifically, the level of deviation is higher when the absolute values of the z scores are large. So it is natural to use the inverse of the absolute values of the z scores as a measurement of the weights of the portfolio. All details can be found in the following code snippet. -
+From 5d9d3a96d14563fda3b56f4b61c460111b1b48c2 Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 13:36:18 -0700 Subject: [PATCH 046/215] Update 01 Introduction.html Submit word change. --- .../01 Introduction.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html index c3e8b0a..0021b43 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html @@ -1,6 +1,6 @@ In this tutorial, we will take a close look at a principal component analysis (PCA)-based statistical arbitrage strategy - based on the paper + derived from the paper Statistical Arbitrage in teh U.S. Equities Market.
From 520a8fcb48c8266e2212b171f7796f9c7349c97f Mon Sep 17 00:00:00 2001 From: Sherry Yang
Date: Wed, 28 Aug 2019 13:40:56 -0700 Subject: [PATCH 047/215] Update 03 Results.html Submit initial changes. --- .../03 Results.html | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html index ceddace..8734b4f 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html @@ -1,8 +1,15 @@ + Results
- In this tutorial, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. We can see from the results that it achieves an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. - The performance is generally good, which indicates using PCA combined with Linear regression to measure the deviation level is reasonable. However, there are still many aspects can be improved. - For example, we could expand the original coarse-selected universe. Now we only used 20 equities in this example, and sometimes the algorithm only find one or even no candidate, which might be not enough. - You might increase the number of universe. Besides, we can develop this strategy to a long & short one (now it is only a long strategy). - You could also come up with another way to measure the level of deviation or change the rebalance frequency of the algorithm(30 days in this example). We sincerely hope you create more amazing algorithms upon this tutorial. + In this tutorial, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. + We can see from the results that it achieves an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. + The performance is generally good, which indicates using PCA combined with Linear regression to measure the deviation level is + reasonable. However, there are still many aspects can be improved. +
++ For example, we could expand the original coarse-selected universe. Now we only used 20 equities in this example, and sometimes the + algorithm only find one or even no candidate, which might be not enough. You might increase the number of universe. Besides, we can + develop this strategy to a long & short one (now it is only a long strategy). You could also come up with another way to measure the + level of deviation or change the rebalance frequency of the algorithm(30 days in this example). We sincerely hope you create more + amazing algorithms upon this tutorial.
From 91d15af3f084a0e19821f8a5e13741097dcb4a6e Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 13:41:58 -0700 Subject: [PATCH 048/215] Update 04 Algorithm.html Submit initial edits. --- .../04 Algorithm.html | 1 + 1 file changed, 1 insertion(+) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html index 78e62f1..f404e0b 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html @@ -1,3 +1,4 @@ + Algorithm
From 360338b448a4f877bf731e572a5832f62a9585b2 Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 15:56:41 -0700 Subject: [PATCH 049/215] Update 01 Introduction.html Add background to strategy. --- .../01 Introduction.html | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html index 0021b43..626bd4a 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html @@ -1,11 +1,14 @@ - In this tutorial, we will take a close look at a principal component analysis (PCA)-based statistical arbitrage strategy + In this tutorial we will take a close look at a principal component analysis (PCA)-based statistical arbitrage strategy derived from the paper - Statistical Arbitrage in teh U.S. Equities Market. + Statistical Arbitrage in the U.S. Equities Market.
-- First, we will apply PCA to minimizes our algorithm's exposure to market factors and project the first n (n=3 in our algorithm) - orthogonal principal components on our asset universe. Then we will model the mean-reverting residuals of our assets. - Next we will create our model using linear regression. Each factor will have a weight or coefficient equal to the residuals' level - of deviation from the mean. -
++ Statistical arbitrage strategies uses mean version models to take advantage of pricing inefficiencies between groups of correlated + securities. This class of short-term financial trading strategies produce moves contrarian with the market and are often referenced with + Pairs Trading. + In our algorithm, we will be using a PCA-based approach as opposed to an ETF-based approach to limit our universe of stocks. + Backtests from the period of 1997-2007 support our strategy by showing PCA-based strategies have Sharpe ratios that outperform ratios + from ETF-based strategies. +
+ From cf44cdbf7972d0b7fcb2350b72dccd7df1b0f15a Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 15:57:35 -0700 Subject: [PATCH 050/215] Update 01 Introduction.html Add grammatical change. --- .../01 Introduction.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html index 626bd4a..4b469ed 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html @@ -5,7 +5,7 @@ Statistical arbitrage strategies uses mean version models to take advantage of pricing inefficiencies between groups of correlated - securities. This class of short-term financial trading strategies produce moves contrarian with the market and are often referenced with + securities. This class of short-term financial trading strategies produce moves contrarian with the market and are often discussed in conjunction with Pairs Trading. In our algorithm, we will be using a PCA-based approach as opposed to an ETF-based approach to limit our universe of stocks. Backtests from the period of 1997-2007 support our strategy by showing PCA-based strategies have Sharpe ratios that outperform ratios From 353d0d2b839e5083386902fbfc459f8595d6f935 Mon Sep 17 00:00:00 2001 From: Sherry Yang
Date: Wed, 28 Aug 2019 15:59:38 -0700 Subject: [PATCH 051/215] Update 02 Method.html Update steps. --- .../02 Method.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html index 7118a9f..29c85cf 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -1,8 +1,7 @@ - - Method
Step 1: Select our universe
- ...mean-reversion and opportunity for statistical arbitrage... + First, we will apply PCA to minimizes our algorithm's exposure to market factors and project some orthogonal principal components on + our asset universe. Then we will model the mean-reverting residuals of our assets from our regression line.
From 29f49177d586526762b81b178c9a2e3df68afbcc Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 16:01:20 -0700 Subject: [PATCH 052/215] Update 03 Results.html Remove redundancies. --- .../03 Results.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html index 8734b4f..d556c32 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html @@ -1,12 +1,11 @@ - Results
- In this tutorial, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. + In our alorithm, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. We can see from the results that it achieves an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. - The performance is generally good, which indicates using PCA combined with Linear regression to measure the deviation level is - reasonable. However, there are still many aspects can be improved. + The performance is generally good, which indicates using PCA combined with linear regression to measure the deviation level is + reasonable.
- For example, we could expand the original coarse-selected universe. Now we only used 20 equities in this example, and sometimes the + To tune the model, we could expand the original coarse-selected universe. The current universe contains 20 equities, and sometimes the algorithm only find one or even no candidate, which might be not enough. You might increase the number of universe. Besides, we can develop this strategy to a long & short one (now it is only a long strategy). You could also come up with another way to measure the level of deviation or change the rebalance frequency of the algorithm(30 days in this example). We sincerely hope you create more From d8ab3e770a796e91f67647f54c7c86238dcad0d0 Mon Sep 17 00:00:00 2001 From: Sherry Yang
Date: Wed, 28 Aug 2019 16:01:39 -0700 Subject: [PATCH 053/215] Update 04 Algorithm.html Remove redundancies. --- .../04 Algorithm.html | 1 - 1 file changed, 1 deletion(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html index f404e0b..78e62f1 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html @@ -1,4 +1,3 @@ - Algorithm
From 94e32534461ee079fdd319b5e87e13d0d19aefe3 Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 16:08:53 -0700 Subject: [PATCH 054/215] Update 02 Method.html Add description changes. --- .../02 Method.html | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html index 29c85cf..d0295b8 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -1,7 +1,6 @@ Step 1: Select our universe
- First, we will apply PCA to minimizes our algorithm's exposure to market factors and project some orthogonal principal components on - our asset universe. Then we will model the mean-reverting residuals of our assets from our regression line. + We will select our universe of stocks by dropping those with prices lower than $5 and pick the ones with the highest dollar volume.
@@ -15,9 +14,9 @@Step 1: Select our universe
Step 2: Reduce dimensions to three principal components
- We see that in Coarse selection we drop stocks with prices lower than $5 and pick the ones with the highest dollar volume. - Then, we go to the PCA part. In this part, based on historical close values, we perform PCA to get the first 3 principal components of the feature space (formed by the historical close values). This helps us - reduce the dimension of the feature space and exclude the noise at the same time. + First, we will apply PCA to minimizes our algorithm's exposure to market factors and select k principal components on + our asset universe. Based on historical close values, we perform PCA to get the first 3 principal components of the feature space (formed by the + historical close values). This helps us reduce the dimension of the feature space and exclude the noise at the same time.
@@ -36,7 +35,7 @@Step 2: Reduce dimensions to three principal components
Step 3: Measure price deviation
- We use linear regression to derive the weight of each stock in the portfolio based on its price deviation measured by the residual. + Then we will model the mean-reverting residuals of our assets from our regression line. We use linear regression to derive the weight of each stock in the portfolio based on its price deviation measured by the residual. If the absolute value of the residual is large, it means that the level of price deviation is high and hence we should give it more weight in the portfolio. Similarly, if the absolute value of the residual is small, it is reasonable to give the stock less weight in the portfolio. Therefore, we could first standardize the residuals to get their z scores. Then, based on the z scores, it is easy to detect the level of price deviation. Specifically, the level of deviation is higher when the absolute values of the z scores are large. From 301888ca3c6ff637aae934b45143ead18ea0d84e Mon Sep 17 00:00:00 2001 From: Sherry Yang
Date: Wed, 28 Aug 2019 16:23:48 -0700 Subject: [PATCH 055/215] Update 03 Results.html Add changes. --- .../03 Results.html | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html index d556c32..681b990 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html @@ -1,14 +1,11 @@ In our alorithm, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. - We can see from the results that it achieves an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. - The performance is generally good, which indicates using PCA combined with linear regression to measure the deviation level is - reasonable. + Our result is an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. Our performance indicates + using PCA combined with linear regression to measure the deviation level is reasonable.
- To tune the model, we could expand the original coarse-selected universe. The current universe contains 20 equities, and sometimes the - algorithm only find one or even no candidate, which might be not enough. You might increase the number of universe. Besides, we can - develop this strategy to a long & short one (now it is only a long strategy). You could also come up with another way to measure the - level of deviation or change the rebalance frequency of the algorithm(30 days in this example). We sincerely hope you create more - amazing algorithms upon this tutorial. + To tune the model, we could expand our universe of stocks beyond the current 20 equities. + We could also come up with another way to measure the level of deviation or change the rebalance frequency of the algorithm + (30 days in this example).
From 448faa9aacb9de14feda2d74b9d01051ac04d2dc Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 16:30:53 -0700 Subject: [PATCH 056/215] Update 02 Method.html Add changes. --- .../02 Method.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html index d0295b8..f3a7449 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -14,9 +14,9 @@ Step 1: Select our universe
Step 2: Reduce dimensions to three principal components
- First, we will apply PCA to minimizes our algorithm's exposure to market factors and select k principal components on - our asset universe. Based on historical close values, we perform PCA to get the first 3 principal components of the feature space (formed by the - historical close values). This helps us reduce the dimension of the feature space and exclude the noise at the same time. + We want to minimize our algorithm's exposure to market factors. PCA enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. + The number of principal components or eigenvectors we use is variable. In our algorithm use 3 principal components of the feature space formed by the + historical close values. This helps us reduce the dimension of the feature space and exclude the noise at the same time.
@@ -35,12 +35,14 @@Step 2: Reduce dimensions to three principal components
Step 3: Measure price deviation
- Then we will model the mean-reverting residuals of our assets from our regression line. We use linear regression to derive the weight of each stock in the portfolio based on its price deviation measured by the residual. - If the absolute value of the residual is large, it means that the level of price deviation is high and hence we should give it more weight in the portfolio. Similarly, if the absolute value of the residual is small, - it is reasonable to give the stock less weight in the portfolio. Therefore, we could first standardize the residuals to get their z scores. Then, - based on the z scores, it is easy to detect the level of price deviation. Specifically, the level of deviation is higher when the absolute values of the z scores are large. + We will model the mean-reverting residuals of our assets from our regression line. + We use linear regression to derive the weight of each stock in the portfolio based on its price deviation measured by the residual. + If the absolute value of the residual is large, it means that the level of price deviation is high and hence we should give it + more weight in the portfolio. Similarly, if the absolute value of the residual is small, + it is reasonable to give the stock less weight in the portfolio. Therefore, we could first standardize the residuals to get + their z scores. Then, based on the z scores, it is easy to detect the level of price deviation. + Specifically, the level of deviation is higher when the absolute values of the z scores are large. So it is natural to use the inverse of the absolute values of the z scores as a measurement of the weights of the portfolio. - All details can be found in the following code snippet.
From 071658ed3251d858cba65d574509cfa542157203 Mon Sep 17 00:00:00 2001 From: Sherry YangDate: Wed, 28 Aug 2019 17:10:10 -0700 Subject: [PATCH 057/215] Update 02 Method.html Add changes. --- .../02 Method.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html index f3a7449..01ba081 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -15,8 +15,8 @@ Step 1: Select our universe
Step 2: Reduce dimensions to three principal components
We want to minimize our algorithm's exposure to market factors. PCA enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. - The number of principal components or eigenvectors we use is variable. In our algorithm use 3 principal components of the feature space formed by the - historical close values. This helps us reduce the dimension of the feature space and exclude the noise at the same time. + The number of principal components or eigenvectors we use is variable. For the sake of demonstration we chose 3 components to account for the bulk of the variance. + In our algorithm use 3 principal components of the feature space formed by the historical close values.
From 687fcfd7a4add970af24c42a4e9d9ba8bf1edade Mon Sep 17 00:00:00 2001 From: Jack Simonson <46326528+simonsonjack@users.noreply.github.com> Date: Wed, 28 Aug 2019 17:26:59 -0700 Subject: [PATCH 058/215] Update 01 Introduction.html --- .../01 Introduction.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html index 4b469ed..42d452d 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html @@ -4,11 +4,11 @@ Statistical Arbitrage in the U.S. Equities Market.- Statistical arbitrage strategies uses mean version models to take advantage of pricing inefficiencies between groups of correlated - securities. This class of short-term financial trading strategies produce moves contrarian with the market and are often discussed in conjunction with + Statistical arbitrage strategies uses mean-reversion models to take advantage of pricing inefficiencies between groups of correlated + securities. This class of short-term financial trading strategies produce moves that can contrarian to the broader market movement and are often discussed in conjunction with Pairs Trading. In our algorithm, we will be using a PCA-based approach as opposed to an ETF-based approach to limit our universe of stocks. - Backtests from the period of 1997-2007 support our strategy by showing PCA-based strategies have Sharpe ratios that outperform ratios + Backtests from the period 1997-2007 support our strategy by showing that PCA-based strategies have Sharpe ratios that outperform Sharpe ratios from ETF-based strategies.
From d89d6c2b8e173efb40b80e5d72a790a7da54f5f3 Mon Sep 17 00:00:00 2001 From: Jack Simonson <46326528+simonsonjack@users.noreply.github.com> Date: Wed, 28 Aug 2019 17:35:53 -0700 Subject: [PATCH 059/215] Update 02 Method.html --- .../02 Method.html | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html index 01ba081..535a282 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -1,6 +1,6 @@Step 1: Select our universe
- We will select our universe of stocks by dropping those with prices lower than $5 and pick the ones with the highest dollar volume. + We will select our universe of stocks by dropping securities with prices lower than $5 and pick the ones with the highest dollar traded volume.
@@ -14,9 +14,9 @@Step 1: Select our universe
Step 2: Reduce dimensions to three principal components
- We want to minimize our algorithm's exposure to market factors. PCA enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. - The number of principal components or eigenvectors we use is variable. For the sake of demonstration we chose 3 components to account for the bulk of the variance. - In our algorithm use 3 principal components of the feature space formed by the historical close values. + We want to minimize our algorithm's exposure to market factors. PCA is a procedure that extracts uncorrelated components of a possibly-correlated set of observations to reveal the factors that contribute most to a the variance of the observations. Applying PCA to the data above enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. + Based on the results found in the cited paper, and for the sake of demonstration, we chose 3 components to account for the bulk of the variance. + In our algorithm, the 3 principal components of the feature space are formed by the historical close values.
@@ -35,14 +35,14 @@Step 2: Reduce dimensions to three principal components
Step 3: Measure price deviation
- We will model the mean-reverting residuals of our assets from our regression line. - We use linear regression to derive the weight of each stock in the portfolio based on its price deviation measured by the residual. - If the absolute value of the residual is large, it means that the level of price deviation is high and hence we should give it + We will model the mean-reverting residuals of our assets from a regression line. + We use linear regression to derive the weight of each stock in the portfolio based on its price deviation, which is measured by the residual. + If the absolute value of a stock's residual is large, it means that the level of price deviation is high and we should give it more weight in the portfolio. Similarly, if the absolute value of the residual is small, - it is reasonable to give the stock less weight in the portfolio. Therefore, we could first standardize the residuals to get - their z scores. Then, based on the z scores, it is easy to detect the level of price deviation. - Specifically, the level of deviation is higher when the absolute values of the z scores are large. - So it is natural to use the inverse of the absolute values of the z scores as a measurement of the weights of the portfolio. + it is reasonable to give the stock less weight in the portfolio. To facilitate this, we can first standardize the residuals to get + their z-scores. Then, based on the z-scores, it is easy to detect the level of price deviation. + Specifically, the level of deviation is higher when the absolute values of the z-scores are large. + From this it is natural to use the inverse of the absolute values of the z-scores as a measurement of the weights of the portfolio.
From f80a4677ec1fa6eb04aa515f293c351115298a85 Mon Sep 17 00:00:00 2001 From: Jack Simonson <46326528+simonsonjack@users.noreply.github.com> Date: Wed, 28 Aug 2019 17:37:01 -0700 Subject: [PATCH 060/215] Update 03 Results.html --- .../03 Results.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html index 681b990..5c3f0f7 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html @@ -4,7 +4,7 @@ using PCA combined with linear regression to measure the deviation level is reasonable.- To tune the model, we could expand our universe of stocks beyond the current 20 equities. + To tune the model, we could expand our universe of stocks beyond the current 20 equities or incorporate more PCA components. We could also come up with another way to measure the level of deviation or change the rebalance frequency of the algorithm (30 days in this example).
From 901bf8cdc0f4ed4ca5bdbff7cace5c489be8a759 Mon Sep 17 00:00:00 2001 From: Jack Simonson <46326528+simonsonjack@users.noreply.github.com> Date: Wed, 28 Aug 2019 17:38:00 -0700 Subject: [PATCH 061/215] Update 02 Method.html --- .../02 Method.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html index 535a282..bdbfa32 100644 --- a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -14,7 +14,7 @@Step 1: Select our universe
Step 2: Reduce dimensions to three principal components
- We want to minimize our algorithm's exposure to market factors. PCA is a procedure that extracts uncorrelated components of a possibly-correlated set of observations to reveal the factors that contribute most to a the variance of the observations. Applying PCA to the data above enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. + We want to minimize our algorithm's exposure to market factors. PCA is a procedure that extracts uncorrelated components of a possibly-correlated set of observations to reveal the factors that contribute most to a the variance of the observations as a whole. Applying PCA to the data above enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. Based on the results found in the cited paper, and for the sake of demonstration, we chose 3 components to account for the bulk of the variance. In our algorithm, the 3 principal components of the feature space are formed by the historical close values.
From 5842ba6028be9ce82b3dacf8e7f180d40cf60f52 Mon Sep 17 00:00:00 2001 From: Xin WeiDate: Thu, 29 Aug 2019 15:18:34 -0700 Subject: [PATCH 062/215] Adds Fama & French Factor File to Upcoming Tutorial --- .../F-F_Research_Data_Factors_daily.CSV | 24522 ++++++++++++++++ 1 file changed, 24522 insertions(+) create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness Using Fama and French Factors/F-F_Research_Data_Factors_daily.CSV diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness Using Fama and French Factors/F-F_Research_Data_Factors_daily.CSV b/04 Strategy Library/354 Expected Idiosyncratic Skewness Using Fama and French Factors/F-F_Research_Data_Factors_daily.CSV new file mode 100644 index 0000000..ac04c74 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness Using Fama and French Factors/F-F_Research_Data_Factors_daily.CSV @@ -0,0 +1,24522 @@ +This file was created by CMPT_ME_BEME_RETS_DAILY using the 201906 CRSP database. +The Tbill return is the simple daily rate that, over the number of trading days +in the month, compounds to 1-month TBill rate from Ibbotson and Associates Inc. + +,Mkt-RF,SMB,HML,RF +19260701, 0.10, -0.24, -0.28, 0.009 +19260702, 0.45, -0.32, -0.08, 0.009 +19260706, 0.17, 0.27, -0.35, 0.009 +19260707, 0.09, -0.59, 0.03, 0.009 +19260708, 0.21, -0.36, 0.15, 0.009 +19260709, -0.71, 0.44, 0.56, 0.009 +19260710, 0.62, -0.50, -0.15, 0.009 +19260712, 0.04, 0.03, 0.54, 0.009 +19260713, 0.48, -0.26, -0.23, 0.009 +19260714, 0.04, 0.09, -0.48, 0.009 +19260715, -0.43, 0.54, -0.30, 0.009 +19260716, 0.53, 0.01, -0.57, 0.009 +19260717, 0.34, 0.43, -0.63, 0.009 +19260719, -0.01, 0.01, -0.49, 0.009 +19260720, -0.57, -0.23, 0.16, 0.009 +19260721, -0.60, 0.21, 0.31, 0.009 +19260722, -0.73, -0.30, -0.17, 0.009 +19260723, -0.02, 0.08, 0.06, 0.009 +19260724, -0.14, 0.44, -0.06, 0.009 +19260726, 0.53, -0.38, -0.25, 0.009 +19260727, 0.43, -0.45, 0.26, 0.009 +19260728, 1.09, 0.04, -0.28, 0.009 +19260729, 0.36, -0.61, -1.01, 0.009 +19260730, 0.14, -0.47, 0.55, 0.009 +19260731, 0.46, -0.12, -0.17, 0.009 +19260802, 0.84, -0.22, -0.03, 0.010 +19260803, 0.47, -0.27, -0.60, 0.010 +19260804, -0.36, 0.16, 0.25, 0.010 +19260805, -0.09, 0.01, 0.73, 0.010 +19260806, 0.68, 0.08, 0.16, 0.010 +19260807, 0.46, 0.08, -0.24, 0.010 +19260809, 0.21, -0.04, -0.26, 0.010 +19260810, -1.40, 0.34, 0.21, 0.010 +19260811, -0.57, 0.21, 0.34, 0.010 +19260812, 0.84, -0.77, 0.42, 0.010 +19260813, 0.58, -0.85, 0.25, 0.010 +19260814, 0.69, 0.15, -0.36, 0.010 +19260816, 0.07, 0.23, 0.70, 0.010 +19260817, -0.95, 0.34, 0.16, 0.010 +19260818, 0.26, 0.08, 0.04, 0.010 +19260819, -0.60, 0.12, 0.10, 0.010 +19260820, -0.20, -0.36, 0.42, 0.010 +19260821, 0.32, -0.06, 0.49, 0.010 +19260823, 0.49, -0.48, 0.62, 0.010 +19260824, -0.84, 0.50, -0.09, 0.010 +19260825, -0.32, -0.43, 0.28, 0.010 +19260826, 0.53, 0.09, 0.50, 0.010 +19260827, 0.35, 0.13, -0.39, 0.010 +19260828, 0.34, 0.15, -0.06, 0.010 +19260830, 0.30, 0.00, 0.42, 0.010 +19260831, 0.58, -0.52, -0.04, 0.010 +19260901, 0.55, 0.52, -0.08, 0.009 +19260902, -0.06, -0.07, 0.21, 0.009 +19260903, 0.50, -0.30, 0.03, 0.009 +19260907, 0.59, -0.25, -0.24, 0.009 +19260908, -0.51, -0.10, 0.08, 0.009 +19260909, -0.07, 0.16, 0.26, 0.009 +19260910, -0.83, 0.09, -0.13, 0.009 +19260911, -0.44, 0.32, 0.13, 0.009 +19260913, -0.03, -0.11, 0.50, 0.009 +19260914, 0.90, -0.62, 0.09, 0.009 +19260915, -0.21, 0.40, -0.19, 0.009 +19260916, -0.18, -0.33, 0.10, 0.009 +19260917, -1.01, -0.16, -0.28, 0.009 +19260918, 0.70, -0.28, -0.11, 0.009 +19260920, -0.64, 0.03, -0.01, 0.009 +19260921, 0.30, -0.42, 0.19, 0.009 +19260922, -0.13, 0.05, -0.01, 0.009 +19260923, 0.26, -0.16, 0.06, 0.009 +19260924, 0.62, -0.19, -0.03, 0.009 +19260925, 0.21, 0.02, -0.56, 0.009 +19260927, -0.12, 0.14, 0.39, 0.009 +19260928, 0.00, -0.02, -0.35, 0.009 +19260929, -0.30, 0.22, -0.19, 0.009 +19260930, 0.30, -0.22, 0.06, 0.009 +19261001, 0.73, -0.27, -0.23, 0.013 +19261002, -0.10, -0.02, -0.08, 0.013 +19261004, -1.40, -0.10, -0.10, 0.013 +19261005, -1.10, 0.44, -0.72, 0.013 +19261006, -0.56, -0.69, -0.28, 0.013 +19261007, -0.77, 0.32, 0.30, 0.013 +19261008, 0.59, -0.36, 0.58, 0.013 +19261009, -0.96, 0.44, -0.05, 0.013 +19261011, -0.69, -0.08, -0.16, 0.013 +19261013, 0.69, -0.31, -0.04, 0.013 +19261014, 0.97, -0.47, 1.08, 0.013 +19261015, -1.83, 0.13, -0.29, 0.013 +19261016, -0.73, -0.34, 0.42, 0.013 +19261018, 0.70, -0.16, 0.46, 0.013 +19261019, -1.06, 0.40, -0.54, 0.013 +19261020, -0.25, -0.59, -1.17, 0.013 +19261021, 1.53, -0.12, 0.55, 0.013 +19261022, -0.40, 0.44, 0.20, 0.013 +19261023, 0.54, 0.50, 0.19, 0.013 +19261025, -0.10, 0.35, -0.03, 0.013 +19261026, 0.32, 0.02, 0.30, 0.013 +19261027, 1.00, -0.47, 0.19, 0.013 +19261028, -0.08, 0.69, 0.20, 0.013 +19261029, -0.06, 0.01, -0.33, 0.013 +19261030, -0.25, 0.20, 0.25, 0.013 +19261101, 0.46, -0.11, -0.43, 0.013 +19261103, 0.20, -0.24, -0.28, 0.013 +19261104, 0.59, -0.15, 0.69, 0.013 +19261105, 0.07, -0.09, 0.23, 0.013 +19261106, 0.16, -0.29, 0.05, 0.013 +19261108, 0.52, -0.07, 0.08, 0.013 +19261109, 0.13, 0.29, -0.49, 0.013 +19261110, -0.60, 0.15, 0.09, 0.013 +19261111, 0.67, 0.03, 0.09, 0.013 +19261112, 0.24, -0.03, -0.37, 0.013 +19261113, -0.24, 0.12, -0.16, 0.013 +19261115, 0.37, 0.28, -0.25, 0.013 +19261116, 0.15, -0.31, -0.06, 0.013 +19261117, -0.35, -0.35, 0.46, 0.013 +19261118, -0.48, 0.17, 0.20, 0.013 +19261119, -0.64, 0.56, 0.07, 0.013 +19261120, 0.40, 0.01, 0.12, 0.013 +19261122, 0.57, 0.16, -0.20, 0.013 +19261123, 0.33, 0.02, 0.20, 0.013 +19261124, 0.08, -0.22, 0.20, 0.013 +19261126, 0.20, -0.02, 0.03, 0.013 +19261127, -0.15, -0.04, -0.28, 0.013 +19261129, -0.37, -0.13, 0.06, 0.013 +19261130, 0.26, 0.03, -0.50, 0.013 +19261201, 0.36, 0.05, -0.34, 0.011 +19261202, 0.51, -0.01, 0.10, 0.011 +19261203, 0.32, -0.05, 0.06, 0.011 +19261204, -0.17, 0.20, 0.10, 0.011 +19261206, 0.04, 0.32, -0.37, 0.011 +19261207, -0.04, 0.34, -0.51, 0.011 +19261208, -0.08, 0.21, 0.25, 0.011 +19261209, 0.45, -0.15, 0.44, 0.011 +19261210, 0.35, -0.17, 0.50, 0.011 +19261211, 0.09, -0.10, -0.50, 0.011 +19261213, 0.42, 0.64, 0.00, 0.011 +19261214, 0.10, -0.09, 0.14, 0.011 +19261215, 0.17, -0.22, 0.22, 0.011 +19261216, -0.63, -0.20, 0.05, 0.011 +19261217, 0.91, -0.75, 0.68, 0.011 +19261218, 0.42, -0.22, 0.20, 0.011 +19261220, -0.31, 0.08, -0.13, 0.011 +19261221, -0.03, -0.38, -0.19, 0.011 +19261222, 0.02, -0.19, -0.53, 0.011 +19261223, 0.28, 0.01, -0.47, 0.011 +19261224, 0.31, 0.21, 0.26, 0.011 +19261227, -0.22, -0.14, -0.40, 0.011 +19261228, -1.07, -0.07, -0.16, 0.011 +19261229, 0.44, -0.16, -0.06, 0.011 +19261230, -0.35, 0.44, 0.10, 0.011 +19261231, 0.33, 0.30, 0.67, 0.011 +19270103, -0.79, 0.19, 0.09, 0.010 +19270104, 0.31, 0.15, -0.67, 0.010 +19270105, 0.14, 0.43, -0.31, 0.010 +19270106, -0.17, 0.00, 0.07, 0.010 +19270107, 0.30, -0.25, 0.44, 0.010 +19270108, 0.39, -0.18, 0.27, 0.010 +19270110, 0.14, 0.02, 0.16, 0.010 +19270111, -0.28, -0.36, 0.87, 0.010 +19270112, 0.07, -0.06, 0.02, 0.010 +19270113, -0.04, 0.20, -0.30, 0.010 +19270114, 0.05, -0.85, 0.92, 0.010 +19270115, 0.13, 0.10, 0.83, 0.010 +19270117, -0.04, -0.18, 0.77, 0.010 +19270118, -0.06, -0.22, 0.01, 0.010 +19270119, 0.61, -0.01, -0.77, 0.010 +19270120, -0.17, -0.30, 0.13, 0.010 +19270121, -0.01, 0.60, 1.29, 0.010 +19270122, -0.36, 0.26, 0.34, 0.010 +19270124, -0.48, 0.47, 1.44, 0.010 +19270125, -1.07, -0.47, -1.29, 0.010 +19270126, 0.19, 0.12, 0.48, 0.010 +19270127, -0.35, 0.00, -0.42, 0.010 +19270128, 0.16, 0.16, 0.76, 0.010 +19270129, 0.73, -0.41, -0.29, 0.010 +19270131, 0.61, 0.12, -0.04, 0.010 +19270201, -0.01, 0.53, 1.11, 0.012 +19270202, 0.70, -0.21, 0.10, 0.012 +19270203, 0.17, 0.21, -0.07, 0.012 +19270204, 0.37, 0.12, 1.38, 0.012 +19270205, -0.18, 0.31, 0.45, 0.012 +19270207, -0.13, 0.64, 0.47, 0.012 +19270208, 0.10, 0.19, 1.03, 0.012 +19270209, 0.04, -0.88, -0.57, 0.012 +19270210, 0.08, 0.28, -0.69, 0.012 +19270211, 0.31, -0.44, -0.63, 0.012 +19270214, 0.49, -0.14, -0.29, 0.012 +19270215, 0.10, -0.27, -0.16, 0.012 +19270216, -0.02, 0.01, 1.55, 0.012 +19270217, 0.24, 0.07, 0.86, 0.012 +19270218, 0.32, -0.73, -0.12, 0.012 +19270219, 0.01, 0.38, -0.48, 0.012 +19270221, -0.17, 0.19, -0.90, 0.012 +19270223, 0.72, -0.33, -0.13, 0.012 +19270224, 0.14, 0.35, 0.09, 0.012 +19270225, 0.21, 0.24, -0.33, 0.012 +19270226, 0.07, -0.19, -0.05, 0.012 +19270228, 0.55, -0.38, 0.24, 0.012 +19270301, -0.40, -0.03, -0.55, 0.011 +19270302, -1.14, -0.14, -0.33, 0.011 +19270303, 1.02, -0.05, 0.05, 0.011 +19270304, -0.45, 0.22, -0.16, 0.011 +19270305, -0.24, 0.60, -0.46, 0.011 +19270307, -0.37, -0.10, -0.58, 0.011 +19270308, 0.12, -0.53, -0.34, 0.011 +19270309, 0.49, 0.17, 0.34, 0.011 +19270310, 0.46, 0.10, 0.46, 0.011 +19270311, 0.17, -0.25, 0.24, 0.011 +19270312, -0.04, -0.06, -0.19, 0.011 +19270314, 0.18, 0.04, -0.78, 0.011 +19270315, -0.81, -0.10, -0.44, 0.011 +19270316, 1.02, -0.50, -0.06, 0.011 +19270317, 0.42, -0.31, -0.41, 0.011 +19270318, -0.79, 0.11, -0.42, 0.011 +19270319, 0.04, 0.01, -0.21, 0.011 +19270321, 0.17, -0.54, 0.05, 0.011 +19270322, -1.06, 0.17, -0.54, 0.011 +19270323, 0.19, 0.01, 0.51, 0.011 +19270324, 0.68, -0.04, 0.06, 0.011 +19270325, 0.16, 0.45, -0.33, 0.011 +19270326, 0.34, 0.14, 0.18, 0.011 +19270328, 0.52, -0.24, 0.07, 0.011 +19270329, -0.23, -0.09, -0.41, 0.011 +19270330, -0.62, 0.11, 1.25, 0.011 +19270331, 0.30, -0.85, 0.55, 0.011 +19270401, -0.05, -0.19, -0.31, 0.010 +19270402, -0.08, 0.19, 0.02, 0.010 +19270404, 0.53, -0.21, 1.12, 0.010 +19270405, 0.59, -0.30, 0.01, 0.010 +19270406, 0.11, -0.10, -0.04, 0.010 +19270407, 0.24, -0.35, 0.33, 0.010 +19270408, 0.31, 0.35, -0.05, 0.010 +19270409, 0.03, -0.13, 0.29, 0.010 +19270411, 0.19, 0.00, -0.15, 0.010 +19270412, -0.29, 0.57, -0.12, 0.010 +19270413, 0.21, 0.13, -1.14, 0.010 +19270414, 0.09, 0.37, -0.20, 0.010 +19270416, 0.18, 0.55, 0.18, 0.010 +19270418, -0.03, -0.17, 0.75, 0.010 +19270419, 0.18, -0.08, 0.32, 0.010 +19270420, 0.27, -0.37, 0.94, 0.010 +19270421, 0.36, -0.25, -0.76, 0.010 +19270422, 0.07, -0.34, 0.04, 0.010 +19270423, -0.37, 0.24, 0.00, 0.010 +19270425, -1.56, 0.08, 0.10, 0.010 +19270426, 0.58, 0.04, -0.43, 0.010 +19270427, -0.38, 0.07, 0.20, 0.010 +19270428, -1.11, 0.19, -0.35, 0.010 +19270429, 0.48, 0.00, -0.18, 0.010 +19270430, -0.01, 0.21, -0.07, 0.010 +19270502, 0.27, 0.22, 0.48, 0.012 +19270503, 0.74, 0.02, -0.64, 0.012 +19270504, 0.78, -0.16, 0.15, 0.012 +19270505, 0.30, 0.30, -0.28, 0.012 +19270506, 0.28, -0.13, 0.87, 0.012 +19270507, 0.28, 0.26, -0.45, 0.012 +19270509, 0.20, 0.08, 0.39, 0.012 +19270510, -0.07, -0.12, 0.13, 0.012 +19270511, -0.14, -0.03, 0.04, 0.012 +19270512, -0.11, -0.33, 0.37, 0.012 +19270513, 0.49, -0.11, -0.24, 0.012 +19270514, 0.02, 0.29, 0.04, 0.012 +19270516, -0.72, 0.54, -0.20, 0.012 +19270517, 0.47, 0.08, 0.21, 0.012 +19270518, 0.51, -0.60, 0.08, 0.012 +19270519, 0.19, -0.41, -0.15, 0.012 +19270520, 0.43, -0.53, 0.32, 0.012 +19270521, 0.22, 0.16, 0.12, 0.012 +19270523, 0.15, 0.48, 0.76, 0.012 +19270524, -0.14, 0.27, 0.82, 0.012 +19270525, 0.16, 0.69, 0.47, 0.012 +19270526, 0.11, -0.08, 0.56, 0.012 +19270527, 0.44, 0.36, -0.03, 0.012 +19270528, 0.12, 0.69, 0.42, 0.012 +19270531, 0.25, -0.63, 0.41, 0.012 +19270601, 0.32, -0.07, 0.24, 0.010 +19270602, 0.08, -0.09, 0.26, 0.010 +19270603, -0.88, 0.19, -0.66, 0.010 +19270604, 0.43, 0.12, 0.20, 0.010 +19270606, 0.51, 0.19, 1.20, 0.010 +19270607, -0.29, 0.57, -0.22, 0.010 +19270608, 0.28, -0.14, 0.44, 0.010 +19270609, 0.02, 0.17, -0.74, 0.010 +19270610, -0.38, 0.14, -0.37, 0.010 +19270611, -0.11, -0.28, -0.21, 0.010 +19270614, -1.51, 0.02, -0.68, 0.010 +19270615, 0.88, 0.10, 0.23, 0.010 +19270616, 0.62, -0.36, -0.19, 0.010 +19270617, 0.16, 0.63, 1.02, 0.010 +19270618, -0.12, 0.17, 0.58, 0.010 +19270620, -0.18, 0.45, -0.59, 0.010 +19270621, -0.35, -0.31, 0.45, 0.010 +19270622, -0.01, 0.02, -0.58, 0.010 +19270623, -0.86, -0.47, -0.78, 0.010 +19270624, 0.13, -0.05, 0.30, 0.010 +19270625, -0.10, -0.09, 0.09, 0.010 +19270627, -1.22, -0.55, -0.64, 0.010 +19270628, 0.26, -0.03, -0.17, 0.010 +19270629, 0.03, 0.12, -0.50, 0.010 +19270630, -0.09, -0.06, -0.18, 0.010 +19270701, 0.65, 0.03, -0.11, 0.012 +19270702, 0.55, 0.27, 0.17, 0.012 +19270705, 0.84, -0.41, 0.14, 0.012 +19270706, 0.60, 0.23, -0.07, 0.012 +19270707, -0.25, 0.14, -0.03, 0.012 +19270708, -0.18, -0.41, 0.13, 0.012 +19270709, 0.17, 0.19, -0.10, 0.012 +19270711, 0.40, -0.50, 0.28, 0.012 +19270712, 0.33, -0.42, 0.53, 0.012 +19270713, 0.27, 0.20, -0.16, 0.012 +19270714, 0.42, -0.05, -0.79, 0.012 +19270715, 0.26, 0.00, -0.35, 0.012 +19270716, 0.16, 0.12, 0.18, 0.012 +19270718, 0.18, -0.15, 0.04, 0.012 +19270719, 0.26, -0.17, 0.40, 0.012 +19270720, 0.44, 0.12, -0.75, 0.012 +19270721, -0.04, 0.12, -0.52, 0.012 +19270722, -0.05, -0.08, -0.26, 0.012 +19270723, 0.17, 0.17, 0.16, 0.012 +19270725, 0.41, -0.37, 0.07, 0.012 +19270726, 0.25, -0.25, -0.21, 0.012 +19270727, 0.07, -0.53, -0.04, 0.012 +19270728, 0.14, -0.25, -0.24, 0.012 +19270729, 0.47, -0.27, 0.23, 0.012 +19270730, 0.47, -0.78, 0.24, 0.012 +19270801, 0.54, -0.23, 0.10, 0.010 +19270802, 0.62, -0.40, -0.29, 0.010 +19270803, -0.65, 0.44, -0.46, 0.010 +19270804, 0.93, -0.31, 0.12, 0.010 +19270805, -0.59, 0.30, -0.39, 0.010 +19270806, -0.11, 0.10, -0.36, 0.010 +19270808, -1.08, 0.63, -0.55, 0.010 +19270809, 0.94, -0.14, 0.44, 0.010 +19270810, 0.24, -0.11, -0.25, 0.010 +19270811, -1.02, -0.39, -0.19, 0.010 +19270812, -1.57, -0.40, -0.94, 0.010 +19270813, 0.89, -0.24, 0.14, 0.010 +19270815, 1.26, -0.03, 0.88, 0.010 +19270816, 0.62, 0.03, 0.09, 0.010 +19270817, 0.31, 0.50, -0.13, 0.010 +19270818, 0.03, -0.25, 0.04, 0.010 +19270819, 0.15, 0.22, -0.31, 0.010 +19270820, 0.35, 0.03, -0.34, 0.010 +19270822, 0.35, -0.18, 0.14, 0.010 +19270823, 0.05, -0.02, 0.11, 0.010 +19270824, 0.20, 0.04, -0.26, 0.010 +19270825, 0.02, -0.16, -0.77, 0.010 +19270826, 0.22, -0.27, -0.06, 0.010 +19270827, -0.11, 0.31, -0.13, 0.010 +19270829, -0.03, 0.02, 0.33, 0.010 +19270830, -0.03, -0.29, -0.72, 0.010 +19270831, -0.49, 0.05, 0.17, 0.010 +19270901, 0.80, -0.12, -0.37, 0.008 +19270902, 0.58, 0.03, 0.20, 0.008 +19270903, 0.50, -0.14, -0.32, 0.008 +19270906, 0.91, -0.65, 0.26, 0.008 +19270907, 0.45, -0.35, 0.24, 0.008 +19270908, 0.01, -0.10, 0.17, 0.008 +19270909, -0.63, -0.01, -0.58, 0.008 +19270910, 0.43, -0.07, 0.22, 0.008 +19270912, -0.36, 0.40, -0.34, 0.008 +19270913, 1.29, -0.77, -0.21, 0.008 +19270914, 0.31, -0.19, -0.22, 0.008 +19270915, 0.24, -0.18, -0.02, 0.008 +19270916, 0.08, -0.35, 0.10, 0.008 +19270917, -0.29, 0.23, -0.21, 0.008 +19270919, -0.32, -0.32, -0.04, 0.008 +19270920, 0.55, 0.09, 0.40, 0.008 +19270921, -0.15, 0.21, -0.02, 0.008 +19270922, -1.16, 0.09, -0.44, 0.008 +19270923, 0.52, -0.06, 0.12, 0.008 +19270924, 0.65, -0.33, -0.17, 0.008 +19270926, -0.91, 0.12, 0.03, 0.008 +19270927, 0.22, -0.50, 0.05, 0.008 +19270928, -0.38, -0.05, 0.46, 0.008 +19270929, 0.17, -0.10, -0.01, 0.008 +19270930, 1.25, -0.32, 0.04, 0.008 +19271001, 0.49, -0.06, 0.24, 0.010 +19271003, 0.26, -0.22, 0.55, 0.010 +19271004, -0.40, 0.32, -1.30, 0.010 +19271005, -0.29, 0.01, -0.17, 0.010 +19271006, 0.24, -0.07, 0.56, 0.010 +19271007, -0.74, 0.50, -0.74, 0.010 +19271008, -0.32, -0.12, 0.20, 0.010 +19271010, -0.51, -0.29, -0.39, 0.010 +19271011, 0.04, 0.25, -0.08, 0.010 +19271013, 0.69, 0.02, -0.89, 0.010 +19271014, -0.01, 0.65, 0.04, 0.010 +19271015, 0.02, 0.40, 0.10, 0.010 +19271017, -1.26, 0.03, -0.28, 0.010 +19271018, 0.34, -0.55, -0.09, 0.010 +19271019, -0.81, 0.20, 0.44, 0.010 +19271020, -1.02, -0.10, 0.25, 0.010 +19271021, -0.76, 0.82, -0.80, 0.010 +19271022, -0.69, 0.00, 0.29, 0.010 +19271024, 0.37, -0.10, -0.43, 0.010 +19271025, 1.60, -0.19, -0.75, 0.010 +19271026, 0.05, 0.68, 0.08, 0.010 +19271027, -0.41, 0.35, -0.16, 0.010 +19271028, -1.45, 0.21, -0.98, 0.010 +19271029, -0.50, -0.56, 0.02, 0.010 +19271031, 0.76, -0.06, -0.32, 0.010 +19271101, -0.01, 0.10, 0.15, 0.009 +19271102, 1.00, -0.52, -0.18, 0.009 +19271103, 1.12, -0.38, 0.29, 0.009 +19271104, -0.03, 0.22, 0.10, 0.009 +19271105, 0.55, 0.03, -0.02, 0.009 +19271107, 0.69, 0.35, -0.29, 0.009 +19271109, -0.78, 0.37, -0.43, 0.009 +19271110, 0.24, 0.01, -0.40, 0.009 +19271111, 0.87, -0.34, -0.31, 0.009 +19271112, 0.34, 0.16, -0.17, 0.009 +19271114, 0.51, 0.34, 0.08, 0.009 +19271115, 0.11, -0.15, 0.70, 0.009 +19271116, -0.04, 0.41, 0.12, 0.009 +19271117, 0.16, 0.31, -0.06, 0.009 +19271118, 0.61, 0.13, -0.07, 0.009 +19271119, 0.27, 0.40, -0.01, 0.009 +19271121, -0.52, 0.13, 0.41, 0.009 +19271122, 0.37, -0.11, -0.14, 0.009 +19271123, 0.28, 0.18, 0.08, 0.009 +19271125, 0.24, 0.14, 0.44, 0.009 +19271126, -0.01, 0.54, -0.02, 0.009 +19271128, -0.76, 0.14, 0.06, 0.009 +19271129, 0.65, 0.35, -0.22, 0.009 +19271130, 0.48, -0.14, -0.24, 0.009 +19271201, -0.48, -0.22, 0.05, 0.009 +19271202, 0.26, -0.57, 0.96, 0.009 +19271203, 0.36, -0.24, 0.22, 0.009 +19271205, -0.40, 0.35, 0.14, 0.009 +19271206, -0.03, 0.32, -0.24, 0.009 +19271207, -0.50, -0.12, -0.52, 0.009 +19271208, -0.86, 0.27, -0.15, 0.009 +19271209, 1.13, 0.00, -0.05, 0.009 +19271210, 0.06, 0.48, -0.20, 0.009 +19271212, 0.58, 0.79, -0.58, 0.009 +19271213, 0.38, -0.27, -0.32, 0.009 +19271214, -0.37, 0.04, -0.03, 0.009 +19271215, 0.52, 0.20, 0.21, 0.009 +19271216, 0.66, -0.26, -0.38, 0.009 +19271217, 0.05, -0.15, 0.65, 0.009 +19271219, 0.32, 0.20, -0.33, 0.009 +19271220, 0.01, -0.27, 0.21, 0.009 +19271221, -0.07, -0.09, 0.25, 0.009 +19271222, -0.06, -0.49, 0.20, 0.009 +19271223, 0.20, -0.32, 0.09, 0.009 +19271224, 0.14, -0.02, 0.41, 0.009 +19271227, 0.01, 0.24, -0.28, 0.009 +19271228, -0.57, 0.25, -0.20, 0.009 +19271229, 0.15, -0.10, -1.09, 0.009 +19271230, 0.43, 0.71, -0.03, 0.009 +19271231, 0.32, 0.19, 0.00, 0.009 +19280103, 0.45, 0.84, -0.13, 0.010 +19280104, -0.14, 0.50, -0.02, 0.010 +19280105, -0.73, -0.10, 0.26, 0.010 +19280106, 0.62, 0.54, 0.05, 0.010 +19280107, 0.11, -0.01, 0.29, 0.010 +19280109, -0.89, 0.12, -0.04, 0.010 +19280110, -0.83, -0.47, 0.11, 0.010 +19280111, 0.12, 0.35, 0.33, 0.010 +19280112, 0.50, 0.20, -0.11, 0.010 +19280113, 0.61, 0.26, 0.14, 0.010 +19280114, -0.67, 0.04, -0.03, 0.010 +19280116, -0.89, -0.50, -0.37, 0.010 +19280117, 0.17, 0.31, 0.42, 0.010 +19280118, -0.31, -0.32, -0.16, 0.010 +19280119, 0.57, 0.24, -0.12, 0.010 +19280120, 0.57, 0.13, -0.05, 0.010 +19280121, 0.21, 0.42, -0.39, 0.010 +19280123, 0.61, 0.18, -0.10, 0.010 +19280124, 0.27, 0.46, -0.33, 0.010 +19280125, -1.04, -0.29, -0.37, 0.010 +19280126, 0.52, 0.76, -0.19, 0.010 +19280127, 0.27, -0.09, -0.13, 0.010 +19280128, -0.50, 0.46, 0.16, 0.010 +19280130, -0.42, -0.39, -0.29, 0.010 +19280131, 0.32, 0.59, 0.34, 0.010 +19280201, -0.25, 0.55, -0.68, 0.014 +19280202, 0.44, 0.13, 0.19, 0.014 +19280203, -1.14, -0.47, -0.43, 0.014 +19280204, 0.05, -0.44, 0.16, 0.014 +19280206, 0.20, 0.32, 0.07, 0.014 +19280207, -0.28, -0.24, -0.70, 0.014 +19280208, 0.08, -0.04, -0.17, 0.014 +19280209, 0.46, -0.10, -0.14, 0.014 +19280210, -0.09, -0.47, -0.15, 0.014 +19280211, -0.02, 0.11, 0.52, 0.014 +19280214, -0.38, 0.56, -0.40, 0.014 +19280215, -0.28, -0.52, -0.05, 0.014 +19280216, -0.32, -0.62, 0.07, 0.014 +19280217, -1.66, -0.69, -0.57, 0.014 +19280218, -0.47, -0.61, 0.14, 0.014 +19280220, -0.16, 0.17, 0.29, 0.014 +19280221, 1.06, 0.41, 0.23, 0.014 +19280223, 0.23, 0.06, -0.10, 0.014 +19280224, 0.34, -0.31, 0.46, 0.014 +19280225, 0.11, -0.16, 0.73, 0.014 +19280227, -0.49, 0.06, -0.28, 0.014 +19280228, 0.35, 0.03, 0.38, 0.014 +19280229, 0.57, 0.25, -0.22, 0.014 +19280301, 0.25, -0.11, -0.15, 0.011 +19280302, 0.07, 0.01, -0.67, 0.011 +19280303, 0.49, 0.01, -0.64, 0.011 +19280305, 0.66, -0.10, 0.12, 0.011 +19280306, 0.39, 0.27, -0.18, 0.011 +19280307, -0.43, 0.20, -0.06, 0.011 +19280308, 0.42, -0.02, 0.55, 0.011 +19280309, 1.23, -0.58, -0.36, 0.011 +19280310, -0.27, -0.37, -0.09, 0.011 +19280312, 0.41, -0.16, -0.07, 0.011 +19280313, -0.30, 0.03, -0.02, 0.011 +19280314, 0.13, 0.00, 0.45, 0.011 +19280315, 0.72, -0.43, 0.23, 0.011 +19280316, 0.93, -0.58, 0.23, 0.011 +19280317, 0.19, 0.02, 0.47, 0.011 +19280319, 0.14, 1.20, -0.74, 0.011 +19280320, 0.42, 0.37, -0.19, 0.011 +19280321, 0.86, 0.14, 0.50, 0.011 +19280322, -0.36, -0.30, -0.37, 0.011 +19280323, 0.75, -0.40, -0.65, 0.011 +19280324, 0.07, -0.45, -0.06, 0.011 +19280326, 0.95, 0.10, -0.28, 0.011 +19280327, -0.33, -0.24, 1.08, 0.011 +19280328, 0.03, 0.45, 0.05, 0.011 +19280329, 0.19, 0.27, 0.40, 0.011 +19280330, 1.49, -0.06, -0.72, 0.011 +19280331, -0.57, 0.45, 0.13, 0.011 +19280402, -0.87, 0.71, 0.52, 0.010 +19280403, 0.60, 0.27, -0.40, 0.010 +19280404, -0.07, 0.42, 0.13, 0.010 +19280405, 1.13, -0.25, 0.25, 0.010 +19280409, 0.34, 0.98, 0.13, 0.010 +19280410, -0.73, 0.32, -0.20, 0.010 +19280411, 1.41, 0.02, 0.96, 0.010 +19280412, -0.25, 0.53, -0.42, 0.010 +19280413, 1.40, 0.03, -0.51, 0.010 +19280414, -0.44, 0.10, -0.19, 0.010 +19280416, 0.52, -0.31, 0.25, 0.010 +19280417, -0.68, 0.16, -0.29, 0.010 +19280418, 0.02, 0.18, -0.11, 0.010 +19280419, 0.58, 0.63, 0.61, 0.010 +19280420, -1.33, 0.03, 0.13, 0.010 +19280423, -0.73, -0.06, 0.39, 0.010 +19280424, 0.36, 0.05, -0.03, 0.010 +19280425, 0.73, -0.07, 1.48, 0.010 +19280426, 0.63, 0.14, 0.60, 0.010 +19280427, 1.04, -0.13, 0.47, 0.010 +19280428, 0.50, -0.27, 0.09, 0.010 +19280430, 0.06, 0.25, -0.56, 0.010 +19280501, 0.26, 0.19, 0.45, 0.015 +19280502, 0.08, 0.43, -0.31, 0.015 +19280503, 0.39, 0.20, -0.68, 0.015 +19280504, 1.18, -0.67, -0.25, 0.015 +19280507, 0.69, 0.34, -0.26, 0.015 +19280508, -0.56, -0.12, -0.32, 0.015 +19280509, 0.04, -0.29, 0.63, 0.015 +19280510, -0.17, 0.39, -0.39, 0.015 +19280511, 0.77, 0.56, -0.56, 0.015 +19280514, 0.49, 0.57, 0.07, 0.015 +19280515, -0.04, 0.80, -0.58, 0.015 +19280516, -1.52, -0.15, -0.45, 0.015 +19280517, 0.47, -0.29, -0.67, 0.015 +19280518, -0.72, 0.14, 1.18, 0.015 +19280521, -1.16, 0.60, -0.17, 0.015 +19280522, -1.41, -0.50, -0.55, 0.015 +19280523, 1.72, -0.11, -0.27, 0.015 +19280524, 0.51, 0.62, 0.30, 0.015 +19280525, 0.20, 0.32, -0.03, 0.015 +19280528, -1.47, -0.45, -0.30, 0.015 +19280529, 0.88, -0.33, -0.08, 0.015 +19280531, 0.94, 0.52, 0.18, 0.015 +19280601, 0.31, -0.05, -0.32, 0.012 +19280602, 0.64, 0.33, -0.06, 0.012 +19280604, -1.85, 0.05, -0.20, 0.012 +19280605, 0.21, 0.36, -0.10, 0.012 +19280606, -0.84, 0.40, 0.11, 0.012 +19280607, -0.52, -0.76, -0.79, 0.012 +19280608, -1.38, -0.17, -0.76, 0.012 +19280609, -1.30, -0.24, -0.27, 0.012 +19280611, -2.31, -1.14, -0.37, 0.012 +19280612, -2.33, -3.27, 0.16, 0.012 +19280613, 3.14, 0.37, 0.68, 0.012 +19280614, 0.95, 1.51, 0.94, 0.012 +19280615, -1.24, -0.19, 0.52, 0.012 +19280616, -0.03, -0.58, -0.01, 0.012 +19280618, -2.01, 0.07, -0.16, 0.012 +19280619, -0.62, -1.27, -0.17, 0.012 +19280620, 1.38, 0.08, 0.42, 0.012 +19280621, 0.15, 0.49, 0.50, 0.012 +19280622, -0.03, 0.16, 0.42, 0.012 +19280623, -0.65, 0.13, -0.25, 0.012 +19280625, 0.09, -0.67, 0.51, 0.012 +19280626, 1.00, -0.16, -0.01, 0.012 +19280627, 1.01, 0.58, -0.22, 0.012 +19280628, 0.82, 0.24, -0.24, 0.012 +19280629, 0.49, -0.10, 0.32, 0.012 +19280630, 0.12, 0.08, -0.28, 0.012 +19280702, -1.20, -0.03, -0.28, 0.013 +19280703, 1.61, -0.29, 0.13, 0.013 +19280705, 0.94, -0.03, 0.04, 0.013 +19280706, -0.32, 0.18, 0.33, 0.013 +19280707, 0.26, 0.04, 0.39, 0.013 +19280709, 0.01, 0.06, -0.46, 0.013 +19280710, -0.27, 0.10, -0.75, 0.013 +19280711, -2.33, 0.16, -0.16, 0.013 +19280712, -0.64, -0.63, 0.66, 0.013 +19280713, 0.70, -0.12, -0.09, 0.013 +19280714, -0.04, 0.28, 0.33, 0.013 +19280716, -1.23, -0.13, -0.04, 0.013 +19280717, 0.45, -0.33, -0.47, 0.013 +19280718, 0.89, -0.11, -0.46, 0.013 +19280719, -0.16, 0.34, 0.60, 0.013 +19280720, 0.11, -0.06, 0.11, 0.013 +19280721, -0.24, 0.17, 0.19, 0.013 +19280723, 0.62, -0.24, -0.36, 0.013 +19280724, 0.04, 0.16, 0.61, 0.013 +19280725, 0.43, -0.09, -0.34, 0.013 +19280726, 0.22, -0.15, 0.29, 0.013 +19280727, 0.78, -0.35, -0.79, 0.013 +19280728, 0.25, -0.18, 0.03, 0.013 +19280730, -0.13, -0.11, 0.08, 0.013 +19280731, -0.11, -0.03, -0.11, 0.013 +19280801, 0.26, -0.08, 0.01, 0.012 +19280802, -0.45, 0.11, -0.01, 0.012 +19280803, 0.22, -0.05, 0.19, 0.012 +19280804, 0.22, 0.16, 0.18, 0.012 +19280806, 0.73, -0.24, -0.32, 0.012 +19280807, -0.35, 0.11, 0.51, 0.012 +19280808, -1.12, 0.15, 0.03, 0.012 +19280809, 0.12, -0.02, -0.31, 0.012 +19280810, -0.20, 0.06, -0.04, 0.012 +19280811, 0.12, 0.08, -0.14, 0.012 +19280813, -0.05, 0.05, 0.23, 0.012 +19280814, -0.66, 0.54, 0.04, 0.012 +19280815, 1.38, -0.67, -0.31, 0.012 +19280816, 0.79, -0.22, 0.23, 0.012 +19280817, 0.29, -0.31, -0.47, 0.012 +19280818, 0.28, 0.02, 0.52, 0.012 +19280820, 0.23, 0.08, -0.07, 0.012 +19280821, 0.98, -0.40, -0.47, 0.012 +19280822, 0.14, 0.00, -0.61, 0.012 +19280823, 0.00, 0.03, 0.03, 0.012 +19280824, 1.38, -0.37, -0.17, 0.012 +19280825, 0.28, -0.11, -0.06, 0.012 +19280827, -0.29, 0.14, -0.63, 0.012 +19280828, 0.58, -0.39, -0.23, 0.012 +19280829, 0.24, 0.03, 0.09, 0.012 +19280830, 0.27, 0.02, 0.10, 0.012 +19280831, 1.15, -0.67, -0.27, 0.012 +19280901, 0.25, 0.15, 0.07, 0.011 +19280904, 0.41, -0.04, -0.10, 0.011 +19280905, 0.41, 0.01, -0.09, 0.011 +19280906, -0.40, 0.17, 0.51, 0.011 +19280907, 0.65, 0.35, -0.20, 0.011 +19280908, -0.30, 0.19, 0.04, 0.011 +19280910, -0.37, 0.23, -0.02, 0.011 +19280911, 0.63, -0.19, 0.22, 0.011 +19280912, 0.34, -0.06, 0.19, 0.011 +19280913, -0.10, 0.07, -0.31, 0.011 +19280914, 0.13, 0.13, 0.43, 0.011 +19280915, 0.58, -0.30, 0.74, 0.011 +19280917, 0.54, 0.72, 0.12, 0.011 +19280918, -0.68, 0.62, -0.68, 0.011 +19280919, -0.07, 0.15, 0.46, 0.011 +19280920, 0.15, 0.54, -0.12, 0.011 +19280921, 0.67, -0.46, 0.17, 0.011 +19280922, -0.24, 0.19, 0.69, 0.011 +19280924, 0.63, -0.43, -0.08, 0.011 +19280925, -0.07, 0.23, 0.12, 0.011 +19280926, -0.15, 0.20, -0.54, 0.011 +19280927, -1.22, -0.15, -0.01, 0.011 +19280928, 0.01, -0.11, -0.46, 0.011 +19280929, 1.03, 0.01, -0.20, 0.011 +19281001, -0.11, 0.85, -0.31, 0.016 +19281002, -0.44, 0.10, -0.05, 0.016 +19281003, -0.28, 0.56, 0.16, 0.016 +19281004, 0.25, 0.17, 0.30, 0.016 +19281005, -0.29, 0.45, -0.05, 0.016 +19281006, -0.05, 0.00, 0.20, 0.016 +19281008, -0.33, -0.14, -0.28, 0.016 +19281009, 0.12, 0.10, -1.05, 0.016 +19281010, 0.92, -0.03, -0.06, 0.016 +19281011, 0.31, 0.50, -0.85, 0.016 +19281013, 0.55, 0.41, -0.47, 0.016 +19281015, 0.38, -0.45, 0.15, 0.016 +19281016, 0.30, -0.19, 0.56, 0.016 +19281017, 0.30, 0.81, 0.23, 0.016 +19281018, 0.29, -0.30, -0.37, 0.016 +19281019, 0.45, -0.20, -0.55, 0.016 +19281020, -0.44, 0.23, -0.02, 0.016 +19281022, -0.12, 0.29, -0.61, 0.016 +19281023, 0.66, -0.09, 0.39, 0.016 +19281024, 0.22, -0.04, 0.36, 0.016 +19281025, -0.26, -0.05, 0.25, 0.016 +19281026, -1.14, -0.39, -0.05, 0.016 +19281027, 0.86, 0.17, -0.07, 0.016 +19281029, 0.69, -0.05, 0.56, 0.016 +19281030, -1.05, -0.32, -0.17, 0.016 +19281031, -0.49, -0.31, -0.56, 0.016 +19281101, 1.29, -0.24, -0.25, 0.017 +19281102, -0.10, -0.21, 0.30, 0.017 +19281103, 0.04, -0.03, -0.32, 0.017 +19281105, 1.13, -0.29, 0.22, 0.017 +19281107, 1.19, 0.01, 0.86, 0.017 +19281108, -0.25, 0.01, -0.13, 0.017 +19281109, 0.72, -0.38, 0.46, 0.017 +19281110, 0.78, -0.01, 0.48, 0.017 +19281112, 0.34, -0.46, 0.00, 0.017 +19281113, 0.07, 0.18, -0.16, 0.017 +19281114, 0.14, 0.32, -0.30, 0.017 +19281115, 0.36, -0.01, -0.65, 0.017 +19281116, 1.77, -0.77, 0.24, 0.017 +19281117, 0.10, -0.02, -0.09, 0.017 +19281119, 0.17, -0.56, 1.03, 0.017 +19281120, 1.11, -0.64, 0.97, 0.017 +19281121, -1.51, 0.47, -0.25, 0.017 +19281122, 1.39, -0.43, 0.72, 0.017 +19281123, 0.26, 0.44, -0.31, 0.017 +19281126, 0.46, 0.07, 0.67, 0.017 +19281127, 0.28, 0.89, -0.19, 0.017 +19281128, 1.10, 0.38, -0.35, 0.017 +19281130, 0.39, -0.41, -0.45, 0.017 +19281201, -0.60, 0.05, 0.66, 0.002 +19281203, -0.70, 0.37, -0.42, 0.002 +19281204, 0.23, 0.50, -0.43, 0.002 +19281205, -0.70, 0.83, -0.37, 0.002 +19281206, -3.54, 0.01, -1.35, 0.002 +19281207, -2.35, -0.50, 0.85, 0.002 +19281208, -1.89, -0.60, 0.01, 0.002 +19281210, 1.63, -1.33, 0.71, 0.002 +19281211, 2.30, 1.35, 0.37, 0.002 +19281212, -0.78, -0.19, 0.21, 0.002 +19281213, -0.34, 0.44, 0.19, 0.002 +19281214, 0.19, -0.04, -0.15, 0.002 +19281215, -0.35, 0.19, 0.10, 0.002 +19281217, -0.37, -0.31, -0.52, 0.002 +19281218, 1.07, -0.08, -0.16, 0.002 +19281219, 1.20, -0.38, 0.35, 0.002 +19281220, 0.37, -0.02, -0.19, 0.002 +19281221, 1.07, -0.32, -0.17, 0.002 +19281222, 0.12, 0.31, -0.30, 0.002 +19281224, 0.87, 0.19, -0.88, 0.002 +19281226, -0.31, 0.02, 0.25, 0.002 +19281227, 0.66, -0.78, 0.00, 0.002 +19281228, 1.34, -0.53, 0.18, 0.002 +19281229, 0.20, 0.30, 0.17, 0.002 +19281231, 1.36, -0.33, 0.57, 0.002 +19290102, 1.48, 0.44, -0.19, 0.013 +19290103, 0.10, 0.11, -0.34, 0.013 +19290104, -0.03, -0.44, 0.65, 0.013 +19290105, -0.88, 0.44, -0.23, 0.013 +19290107, -1.30, -0.37, 0.26, 0.013 +19290108, -0.23, 0.20, 0.24, 0.013 +19290109, 1.20, 0.08, 0.12, 0.013 +19290110, 0.27, 0.31, -0.21, 0.013 +19290111, -0.04, 0.21, 0.00, 0.013 +19290112, -0.28, 0.04, 0.13, 0.013 +19290114, 0.25, 0.18, 0.29, 0.013 +19290115, -0.98, -0.10, -0.08, 0.013 +19290116, 0.91, -0.16, 0.39, 0.013 +19290117, 0.71, -0.36, 0.05, 0.013 +19290118, 0.04, 0.24, 0.11, 0.013 +19290119, 0.19, -0.26, 0.32, 0.013 +19290121, 0.16, -0.18, 0.00, 0.013 +19290122, 0.59, -0.48, -0.26, 0.013 +19290123, 0.53, -0.76, -0.56, 0.013 +19290124, -0.83, 0.15, -0.67, 0.013 +19290125, 1.18, -0.61, -1.32, 0.013 +19290126, 0.34, -0.19, -0.08, 0.013 +19290128, -0.27, 0.13, 0.03, 0.013 +19290129, -0.27, -0.21, -0.31, 0.013 +19290130, 0.34, -0.74, -0.32, 0.013 +19290131, 1.36, -0.90, 0.87, 0.013 +19290201, 0.56, -0.34, 0.76, 0.018 +19290202, 0.01, 0.31, 0.74, 0.018 +19290204, -0.44, 0.71, 0.10, 0.018 +19290205, 0.22, 0.18, -0.21, 0.018 +19290206, -0.82, -0.23, -0.69, 0.018 +19290207, -2.97, -0.02, 0.40, 0.018 +19290208, -0.96, -0.57, 0.64, 0.018 +19290211, 2.18, -0.81, 0.71, 0.018 +19290213, 0.10, 0.42, -0.93, 0.018 +19290214, -0.63, -0.44, 0.51, 0.018 +19290215, -1.62, 0.59, -0.58, 0.018 +19290216, -1.40, -0.52, 0.35, 0.018 +19290218, 1.12, -0.38, 0.35, 0.018 +19290219, 0.20, 0.95, -0.33, 0.018 +19290220, 0.84, 0.32, -0.15, 0.018 +19290221, 0.73, -0.45, 0.07, 0.018 +19290225, 0.28, 0.49, -0.23, 0.018 +19290226, 0.36, 0.16, -0.29, 0.018 +19290227, 1.06, -0.31, 0.59, 0.018 +19290228, 1.01, -0.38, -0.14, 0.018 +19290301, 1.01, -0.10, 0.39, 0.014 +19290302, -0.27, -0.19, 0.63, 0.014 +19290304, -0.89, -0.05, 0.39, 0.014 +19290305, -0.68, -0.55, 0.53, 0.014 +19290306, -1.57, -0.42, -0.28, 0.014 +19290307, 0.76, -0.59, 0.38, 0.014 +19290308, 0.58, 0.01, 0.04, 0.014 +19290309, -0.01, 0.40, -0.25, 0.014 +19290311, -1.30, 0.35, -0.29, 0.014 +19290312, 0.25, -0.46, 0.06, 0.014 +19290313, 0.98, -0.30, 0.18, 0.014 +19290314, 1.55, -0.15, -0.34, 0.014 +19290315, 1.07, -0.28, -0.03, 0.014 +19290316, 0.27, 0.08, 0.04, 0.014 +19290318, -0.43, -0.03, 0.09, 0.014 +19290319, 0.02, -0.57, 0.57, 0.014 +19290320, 0.02, -0.50, 0.54, 0.014 +19290321, -0.43, 0.27, -0.62, 0.014 +19290322, -1.15, 0.11, -0.78, 0.014 +19290323, -0.98, 0.08, -0.35, 0.014 +19290325, -3.14, -0.67, -0.34, 0.014 +19290326, -1.16, -2.70, -0.01, 0.014 +19290327, 3.28, 0.74, 0.41, 0.014 +19290328, 1.63, 0.65, 0.59, 0.014 +19290401, -2.26, -0.36, -0.04, 0.014 +19290402, 1.19, 0.23, 0.39, 0.014 +19290403, -1.08, 0.40, 0.05, 0.014 +19290404, 1.20, -0.43, 0.21, 0.014 +19290405, -0.75, 0.75, -0.76, 0.014 +19290406, 0.12, -0.51, 0.65, 0.014 +19290408, -0.95, 0.26, -0.68, 0.014 +19290409, -0.87, -0.79, -0.39, 0.014 +19290410, 0.49, -0.20, 0.07, 0.014 +19290411, 1.02, -0.44, 0.57, 0.014 +19290412, 0.63, 0.56, -0.57, 0.014 +19290413, -0.02, 0.21, 0.21, 0.014 +19290415, -0.58, 0.64, -0.20, 0.014 +19290416, 0.05, -0.03, -0.25, 0.014 +19290417, 1.02, -0.46, 0.11, 0.014 +19290418, 0.38, 0.48, -0.81, 0.014 +19290419, -0.03, 0.09, -0.20, 0.014 +19290420, 0.19, -0.11, -0.41, 0.014 +19290422, 0.83, -0.38, 0.07, 0.014 +19290423, 0.44, 0.25, -0.11, 0.014 +19290424, -0.24, 0.03, 0.36, 0.014 +19290425, -0.60, 0.07, 0.20, 0.014 +19290426, -0.08, -0.16, -0.37, 0.014 +19290427, 0.55, 0.17, 0.48, 0.014 +19290429, -0.53, 0.07, 0.58, 0.014 +19290430, 1.65, -1.25, 1.43, 0.014 +19290501, 0.11, 0.28, -0.23, 0.017 +19290502, 0.14, 0.05, -0.29, 0.017 +19290503, 0.75, -0.07, -0.61, 0.017 +19290504, 0.31, -0.44, 0.15, 0.017 +19290506, -0.52, -0.14, -0.32, 0.017 +19290507, -0.68, 0.10, -0.03, 0.017 +19290508, 0.10, -0.05, -0.06, 0.017 +19290509, -0.55, -0.05, 0.00, 0.017 +19290510, 1.18, -0.21, 0.14, 0.017 +19290511, -0.34, 0.28, 0.17, 0.017 +19290513, -2.13, -0.40, -0.26, 0.017 +19290514, 0.89, -0.48, -0.65, 0.017 +19290515, -0.32, 0.05, 0.07, 0.017 +19290516, 0.07, -0.44, -0.39, 0.017 +19290517, 0.51, 0.16, -0.06, 0.017 +19290518, -0.18, -0.10, -0.13, 0.017 +19290520, -1.97, 0.41, 0.79, 0.017 +19290521, 0.05, -1.31, -0.38, 0.017 +19290522, -3.17, 0.99, -0.72, 0.017 +19290523, 1.54, -1.32, -0.17, 0.017 +19290524, -0.47, 0.61, -0.03, 0.017 +19290525, -0.37, -0.51, -0.09, 0.017 +19290527, -3.20, -0.69, -0.19, 0.017 +19290528, 1.12, -1.20, 0.22, 0.017 +19290529, 0.10, -0.22, 0.94, 0.017 +19290531, 0.57, -1.20, 0.42, 0.017 +19290601, 0.61, 0.29, 0.11, 0.021 +19290603, 1.27, -0.11, 0.66, 0.021 +19290604, 1.40, 0.40, -0.76, 0.021 +19290605, -0.31, 0.28, -0.65, 0.021 +19290606, 0.27, -0.19, 0.40, 0.021 +19290607, -0.45, -0.01, -0.43, 0.021 +19290608, -0.36, -0.15, 0.95, 0.021 +19290610, -0.54, 0.14, 0.32, 0.021 +19290611, 0.40, -0.20, -0.43, 0.021 +19290612, 0.03, 0.26, -0.34, 0.021 +19290613, 1.24, -0.50, -0.01, 0.021 +19290614, 0.31, 0.34, 0.30, 0.021 +19290615, 0.29, -0.19, 0.77, 0.021 +19290617, 1.22, -0.69, -0.57, 0.021 +19290618, 0.17, -0.04, 0.01, 0.021 +19290619, -0.65, 0.38, -0.51, 0.021 +19290620, 0.43, -0.18, -0.32, 0.021 +19290621, 0.67, -0.38, 0.45, 0.021 +19290622, 0.31, 0.05, 0.65, 0.021 +19290624, -0.21, 0.22, -0.73, 0.021 +19290625, 0.77, -0.40, -0.92, 0.021 +19290626, 0.56, -0.02, 0.03, 0.021 +19290627, 0.04, -0.05, -0.51, 0.021 +19290628, 0.94, -0.93, -0.85, 0.021 +19290629, 0.86, -0.32, -0.08, 0.021 +19290701, 0.37, -0.23, 0.31, 0.013 +19290702, 1.11, -0.94, 0.24, 0.013 +19290703, 0.33, 0.19, -0.38, 0.013 +19290705, 0.47, 0.21, -0.45, 0.013 +19290706, 0.16, -0.13, -0.09, 0.013 +19290708, 0.04, 0.64, 0.96, 0.013 +19290709, 0.11, 0.28, 0.00, 0.013 +19290710, -0.30, 0.03, -0.19, 0.013 +19290711, 0.25, -0.22, -0.39, 0.013 +19290712, 0.92, -0.78, 0.23, 0.013 +19290713, 0.40, -0.49, 1.16, 0.013 +19290715, -0.46, -0.31, 1.01, 0.013 +19290716, 0.48, -0.26, 0.08, 0.013 +19290717, 0.27, 0.06, -0.25, 0.013 +19290718, -0.12, -0.13, -0.04, 0.013 +19290719, 0.33, -0.57, 0.78, 0.013 +19290720, 0.15, -0.09, 0.18, 0.013 +19290722, -1.11, 0.17, -0.28, 0.013 +19290723, 1.03, -0.83, 0.19, 0.013 +19290724, -0.49, -0.27, 0.13, 0.013 +19290725, 0.51, -0.56, -0.73, 0.013 +19290726, -0.40, 0.00, 0.12, 0.013 +19290727, -0.44, 0.45, -0.45, 0.013 +19290729, -1.16, 0.25, 0.43, 0.013 +19290730, 0.89, -0.05, -0.01, 0.013 +19290731, 1.08, -0.21, 0.01, 0.013 +19290801, 0.81, -0.66, -0.17, 0.015 +19290802, 0.93, -1.16, -0.05, 0.015 +19290803, 0.51, -0.52, -0.63, 0.015 +19290805, -0.61, -0.50, 0.79, 0.015 +19290806, -0.47, 0.22, 0.02, 0.015 +19290807, -1.02, 0.14, 0.38, 0.015 +19290808, 0.90, -0.75, 0.08, 0.015 +19290809, -3.61, 0.26, 0.40, 0.015 +19290810, 1.59, -0.78, 0.48, 0.015 +19290812, 1.47, -0.23, 0.17, 0.015 +19290813, 0.70, -0.57, -0.22, 0.015 +19290814, 0.14, -0.52, -0.12, 0.015 +19290815, 0.29, -0.05, 0.18, 0.015 +19290816, 1.80, -0.38, -0.35, 0.015 +19290817, 0.25, 0.15, 0.87, 0.015 +19290819, 0.50, -0.69, -0.64, 0.015 +19290820, 0.30, -0.01, 0.14, 0.015 +19290821, -0.37, -0.02, -0.12, 0.015 +19290822, 0.85, -0.54, -0.54, 0.015 +19290823, 0.94, -1.24, -0.39, 0.015 +19290824, 0.22, -0.59, 0.14, 0.015 +19290826, -0.05, -0.18, 0.33, 0.015 +19290827, -0.08, 0.02, 0.01, 0.015 +19290828, -0.03, -0.12, 0.15, 0.015 +19290829, 0.84, -0.10, 0.08, 0.015 +19290830, 1.09, -0.55, -0.76, 0.015 +19290903, 0.36, -0.29, -0.53, 0.015 +19290904, -0.53, 0.10, -0.77, 0.015 +19290905, -1.91, 0.75, 0.23, 0.015 +19290906, 2.06, -1.21, -0.22, 0.015 +19290907, 0.32, -0.25, 0.23, 0.015 +19290909, -0.59, 0.10, -0.14, 0.015 +19290910, -1.72, 1.36, -0.01, 0.015 +19290911, 1.19, -1.14, 0.29, 0.015 +19290912, -1.00, 1.15, -0.05, 0.015 +19290913, 0.25, 0.12, -0.22, 0.015 +19290914, 0.22, -0.04, 0.06, 0.015 +19290916, 1.03, -0.48, -0.14, 0.015 +19290917, -0.63, 0.90, -0.27, 0.015 +19290918, 0.44, -0.96, 0.51, 0.015 +19290919, 0.01, -0.01, -0.29, 0.015 +19290920, -0.87, 0.52, -0.09, 0.015 +19290921, -0.08, 0.20, -0.13, 0.015 +19290923, -0.28, -0.17, 0.09, 0.015 +19290924, -1.53, 0.51, 0.22, 0.015 +19290925, -0.16, -0.56, 0.03, 0.015 +19290926, 0.95, 0.08, -0.50, 0.015 +19290927, -2.42, 0.62, 0.47, 0.015 +19290928, 0.30, -0.64, 0.41, 0.015 +19290930, -0.81, 0.73, 0.07, 0.015 +19291001, -0.68, -0.52, -0.11, 0.018 +19291002, 0.75, -0.07, -0.14, 0.018 +19291003, -3.67, 1.28, 0.92, 0.018 +19291004, -1.21, -1.76, 0.18, 0.018 +19291005, 3.89, -0.55, -1.09, 0.018 +19291007, 1.75, 0.17, 0.55, 0.018 +19291008, -0.01, 0.37, 0.06, 0.018 +19291009, -0.20, -0.26, 0.27, 0.018 +19291010, 1.40, -0.60, -0.50, 0.018 +19291011, -0.16, 0.46, 0.23, 0.018 +19291014, -0.51, 0.27, -0.34, 0.018 +19291015, -0.68, 0.32, 0.16, 0.018 +19291016, -3.06, 1.09, 0.91, 0.018 +19291017, 1.03, -1.67, 0.00, 0.018 +19291018, -2.32, 1.31, 1.09, 0.018 +19291019, -2.80, 0.28, 0.92, 0.018 +19291021, -1.35, -1.06, 0.31, 0.018 +19291022, 1.97, -0.39, -0.38, 0.018 +19291023, -5.65, 0.68, 0.58, 0.018 +19291024, -3.84, -3.78, 1.45, 0.018 +19291025, 1.50, 0.10, 0.21, 0.018 +19291026, -0.35, 1.17, 0.74, 0.018 +19291028, -11.29, 1.26, 3.96, 0.018 +19291029, -12.01, 0.26, 2.12, 0.018 +19291030, 12.16, -7.25, -2.10, 0.018 +19291031, 6.10, 2.51, -1.80, 0.018 +19291104, -4.29, 1.96, 1.65, 0.022 +19291106, -9.75, 1.59, 2.40, 0.022 +19291107, 2.18, -4.68, -0.40, 0.022 +19291108, 0.01, 2.63, 0.30, 0.022 +19291111, -5.60, 1.52, 1.90, 0.022 +19291112, -6.00, -1.14, 0.45, 0.022 +19291113, -5.58, -1.91, 1.18, 0.022 +19291114, 7.85, -2.84, -1.76, 0.022 +19291115, 6.23, 1.39, -2.63, 0.022 +19291118, -1.17, 2.28, 0.20, 0.022 +19291119, 2.59, -1.58, 0.02, 0.022 +19291120, 2.45, -0.35, 0.24, 0.022 +19291121, 2.14, -1.13, -0.87, 0.022 +19291122, -0.46, 0.62, 1.03, 0.022 +19291125, -1.11, 0.44, 0.93, 0.022 +19291126, -2.29, 0.88, 0.93, 0.022 +19291127, 0.98, -1.06, -0.52, 0.022 +19291202, 0.04, -0.26, -0.23, 0.015 +19291203, 2.78, -0.49, -0.82, 0.015 +19291204, 1.83, 0.04, 0.32, 0.015 +19291205, -0.42, 0.92, -0.23, 0.015 +19291206, 2.01, -1.09, -0.59, 0.015 +19291207, 1.08, -0.17, -0.37, 0.015 +19291209, -0.93, 0.68, -0.03, 0.015 +19291210, 0.35, -1.02, -0.30, 0.015 +19291211, -0.50, 0.47, -0.05, 0.015 +19291212, -4.95, 1.24, 1.03, 0.015 +19291213, 1.92, -1.73, 0.35, 0.015 +19291214, 1.21, 0.24, 0.58, 0.015 +19291216, -2.37, 1.24, 0.88, 0.015 +19291217, 0.62, -0.69, -0.33, 0.015 +19291218, -0.56, 0.15, 0.52, 0.015 +19291219, -2.41, -0.30, 0.00, 0.015 +19291220, -3.25, -1.37, 1.30, 0.015 +19291221, 1.59, -0.44, -0.49, 0.015 +19291223, -1.37, -0.30, -0.13, 0.015 +19291224, 0.45, -0.01, -0.29, 0.015 +19291226, 2.09, -0.57, -0.59, 0.015 +19291227, -0.23, -0.55, -0.07, 0.015 +19291228, -0.75, -0.02, 0.76, 0.015 +19291230, 0.75, -1.03, -1.31, 0.015 +19291231, 2.68, 0.95, -0.33, 0.015 +19300102, -0.95, 1.82, -0.68, 0.005 +19300103, 0.63, -0.49, 0.63, 0.005 +19300104, 0.71, 0.32, -0.22, 0.005 +19300106, 0.02, 0.39, -0.38, 0.005 +19300107, -0.69, 0.82, 0.44, 0.005 +19300108, -0.12, 0.26, 0.60, 0.005 +19300109, 1.25, -0.08, -0.43, 0.005 +19300110, -0.22, 0.27, 0.24, 0.005 +19300111, -0.49, 0.40, 0.39, 0.005 +19300113, 0.30, -0.30, -0.09, 0.005 +19300114, 0.18, -0.17, 0.49, 0.005 +19300115, 0.20, -0.39, -0.26, 0.005 +19300116, -0.59, -0.06, 1.26, 0.005 +19300117, -0.78, -0.16, -0.14, 0.005 +19300118, 0.23, -0.40, -0.13, 0.005 +19300120, 0.25, 0.40, -0.51, 0.005 +19300121, 0.58, -0.25, 0.17, 0.005 +19300122, 0.11, 0.61, 0.08, 0.005 +19300123, 0.94, -0.22, -0.13, 0.005 +19300124, 0.69, 0.29, -0.58, 0.005 +19300125, 0.75, 0.07, 0.58, 0.005 +19300127, 0.33, -0.21, -0.40, 0.005 +19300128, -0.54, 0.58, 0.03, 0.005 +19300129, 1.01, -0.14, -0.10, 0.005 +19300130, 0.25, -0.02, -0.46, 0.005 +19300131, 1.39, 0.01, -1.51, 0.005 +19300201, 0.79, -0.29, -0.64, 0.013 +19300203, -0.61, 0.47, 0.26, 0.013 +19300204, 0.78, -0.28, -0.27, 0.013 +19300205, 1.03, -0.30, 0.15, 0.013 +19300206, -0.81, 0.28, 0.41, 0.013 +19300207, -0.26, 0.02, 0.61, 0.013 +19300208, 0.82, -0.51, -0.01, 0.013 +19300210, -0.07, 0.16, 0.20, 0.013 +19300211, 0.55, 0.08, 0.14, 0.013 +19300213, 0.16, 0.11, -0.09, 0.013 +19300214, 0.06, 0.17, 0.95, 0.013 +19300215, -0.80, 0.43, -0.23, 0.013 +19300217, 0.59, -0.19, -0.78, 0.013 +19300218, 0.21, 0.34, 0.15, 0.013 +19300219, -0.72, 0.27, -0.17, 0.013 +19300220, -1.90, 0.26, 0.48, 0.013 +19300221, 1.14, -0.92, 0.20, 0.013 +19300224, -0.89, 0.22, -0.30, 0.013 +19300225, 0.01, -0.09, -0.32, 0.013 +19300226, 1.61, -0.59, -0.20, 0.013 +19300227, 0.25, 0.47, 0.07, 0.013 +19300228, 0.55, -0.01, -0.22, 0.013 +19300301, 0.62, 0.37, -0.64, 0.013 +19300303, -0.10, 0.76, -0.18, 0.013 +19300304, 0.50, -0.32, -0.07, 0.013 +19300305, -0.70, 0.07, 0.36, 0.013 +19300306, 0.79, -0.10, -0.60, 0.013 +19300307, 0.09, 0.55, -0.10, 0.013 +19300308, 0.12, 0.31, -0.11, 0.013 +19300310, 0.45, -0.07, -0.39, 0.013 +19300311, 0.18, -0.29, 0.04, 0.013 +19300312, -0.81, 0.38, 1.10, 0.013 +19300313, 0.41, 0.19, -0.31, 0.013 +19300314, -0.68, 0.57, 0.69, 0.013 +19300315, -0.49, 0.65, 0.37, 0.013 +19300317, 1.30, -0.23, 0.02, 0.013 +19300318, 0.97, -0.21, 0.65, 0.013 +19300319, 0.30, 0.23, -0.12, 0.013 +19300320, 0.54, -0.55, -0.24, 0.013 +19300321, 0.54, 0.12, -0.07, 0.013 +19300322, -0.88, 0.65, 0.26, 0.013 +19300324, 0.95, 0.64, -0.03, 0.013 +19300325, 0.03, -0.06, 0.09, 0.013 +19300326, 0.99, -0.69, -0.45, 0.013 +19300327, -0.17, 0.25, -0.52, 0.013 +19300328, 0.87, -0.31, 0.73, 0.013 +19300329, 0.83, 0.04, -0.42, 0.013 +19300331, 0.28, 0.25, 0.05, 0.013 +19300401, 0.76, -0.06, -0.29, 0.009 +19300402, -0.97, 0.61, -0.74, 0.009 +19300403, 0.27, -0.38, -0.17, 0.009 +19300404, 1.05, -0.23, -0.04, 0.009 +19300405, 0.50, -0.27, -0.75, 0.009 +19300407, -0.03, 0.32, 0.43, 0.009 +19300408, -0.64, -0.39, 0.19, 0.009 +19300409, 1.29, -0.45, -1.12, 0.009 +19300410, 0.06, 0.43, -0.40, 0.009 +19300411, -0.37, 0.07, 0.54, 0.009 +19300412, 0.00, 0.12, -0.41, 0.009 +19300414, -0.24, 0.73, 0.18, 0.009 +19300415, -0.02, 0.11, -0.47, 0.009 +19300416, -0.73, 0.13, -0.46, 0.009 +19300417, 0.50, -0.10, -0.25, 0.009 +19300421, -1.50, 0.51, 0.31, 0.009 +19300422, 0.46, -0.68, 0.63, 0.009 +19300423, 0.39, 0.13, 0.74, 0.009 +19300424, -0.85, 0.30, 0.65, 0.009 +19300425, -0.20, -0.24, -0.06, 0.009 +19300426, 0.03, -0.62, 0.19, 0.009 +19300428, -2.10, 0.12, 0.04, 0.009 +19300429, -0.46, -0.91, -0.17, 0.009 +19300430, 0.78, 0.57, 0.52, 0.009 +19300501, -1.95, 0.89, -0.31, 0.010 +19300502, -2.46, -0.52, 0.59, 0.010 +19300503, -3.19, -0.86, 1.99, 0.010 +19300505, -0.19, -2.40, -0.14, 0.010 +19300506, 3.14, 1.44, -1.59, 0.010 +19300507, -0.91, 0.60, 0.39, 0.010 +19300508, 0.22, -0.46, -0.57, 0.010 +19300509, 0.98, -0.42, -0.02, 0.010 +19300510, 1.38, 0.16, -0.94, 0.010 +19300512, -0.01, 0.29, -0.20, 0.010 +19300513, 1.04, -0.44, 0.25, 0.010 +19300514, 0.57, 0.38, 0.18, 0.010 +19300515, -1.26, 0.36, 0.82, 0.010 +19300516, 0.51, 0.01, 0.03, 0.010 +19300517, 0.03, -0.03, 0.40, 0.010 +19300519, -1.84, 0.27, 0.13, 0.010 +19300520, 0.13, -0.58, 0.57, 0.010 +19300521, -0.35, -0.30, -0.47, 0.010 +19300522, 0.16, 0.03, 0.16, 0.010 +19300523, 0.99, 0.18, -1.10, 0.010 +19300524, 0.57, -0.50, 0.10, 0.010 +19300526, 0.12, 0.02, -0.04, 0.010 +19300527, 0.09, -0.10, -0.50, 0.010 +19300528, 0.34, -0.19, -0.39, 0.010 +19300529, 0.49, 0.10, -0.12, 0.010 +19300602, -0.17, 0.29, 0.37, 0.011 +19300603, -0.82, -0.02, 0.41, 0.011 +19300604, 0.29, -0.37, -0.05, 0.011 +19300605, -1.41, 0.16, 0.42, 0.011 +19300606, -1.47, 0.02, 0.36, 0.011 +19300607, -1.81, -0.27, 0.57, 0.011 +19300609, -2.97, -0.57, -0.56, 0.011 +19300610, 2.18, -1.56, 0.15, 0.011 +19300611, -3.20, 0.04, 0.69, 0.011 +19300612, -0.50, -0.41, -0.63, 0.011 +19300613, 0.70, -0.21, 0.75, 0.011 +19300614, -1.77, 1.18, -0.14, 0.011 +19300616, -5.38, -0.85, 0.85, 0.011 +19300617, -0.19, -1.62, 0.63, 0.011 +19300618, -3.42, -1.67, 1.09, 0.011 +19300619, 4.27, -0.32, -1.01, 0.011 +19300620, -1.75, 1.55, -0.71, 0.011 +19300621, -2.61, 0.09, 1.69, 0.011 +19300623, 1.30, -0.96, -0.93, 0.011 +19300624, -2.60, 2.28, -0.04, 0.011 +19300625, 0.13, -1.93, -0.87, 0.011 +19300626, 2.20, 0.37, 0.31, 0.011 +19300627, -0.87, 0.58, 0.13, 0.011 +19300628, 0.33, 0.07, -0.60, 0.011 +19300630, 2.50, 0.13, -0.66, 0.011 +19300701, -0.69, 1.10, 0.87, 0.008 +19300702, 0.87, -0.72, -0.02, 0.008 +19300703, -0.94, 0.58, 0.36, 0.008 +19300707, -1.72, 0.31, -0.33, 0.008 +19300708, 0.37, -1.67, 0.13, 0.008 +19300709, 1.34, 0.53, -0.13, 0.008 +19300710, 2.15, -1.46, 0.48, 0.008 +19300711, -0.90, 1.02, -0.34, 0.008 +19300712, 1.55, -1.04, -0.23, 0.008 +19300714, 1.91, 0.17, 0.07, 0.008 +19300715, 0.45, 0.96, 0.62, 0.008 +19300716, 0.69, -0.64, 0.33, 0.008 +19300717, 0.59, 0.77, -0.30, 0.008 +19300718, 0.71, 0.36, -0.73, 0.008 +19300719, -0.81, 0.48, 0.47, 0.008 +19300721, -2.56, -0.35, 0.54, 0.008 +19300722, 1.46, -0.67, -0.77, 0.008 +19300723, 1.40, 0.52, -0.71, 0.008 +19300724, -0.99, 0.15, -0.31, 0.008 +19300725, 0.49, -0.70, -0.48, 0.008 +19300726, 0.91, -0.28, 0.00, 0.008 +19300728, 0.34, 0.19, -0.47, 0.008 +19300729, -0.77, 0.19, -0.16, 0.008 +19300730, -2.30, 0.27, 0.23, 0.008 +19300731, 0.53, -0.43, -0.66, 0.008 +19300801, -0.46, 0.15, 0.21, 0.004 +19300802, 0.45, 0.11, 0.10, 0.004 +19300804, 1.31, -0.76, -0.54, 0.004 +19300805, -0.12, 0.09, 0.14, 0.004 +19300806, -1.37, 0.54, 0.02, 0.004 +19300807, -0.73, 0.10, -0.37, 0.004 +19300808, -3.77, 0.63, 0.35, 0.004 +19300809, -0.17, -0.46, -0.58, 0.004 +19300811, 0.84, -0.56, -0.02, 0.004 +19300812, -2.26, 0.75, 0.63, 0.004 +19300813, 0.87, -1.39, 0.00, 0.004 +19300814, 0.40, 0.38, -0.30, 0.004 +19300815, 2.15, -1.57, 0.46, 0.004 +19300816, 0.01, 0.80, 0.46, 0.004 +19300818, -0.38, 0.21, -0.72, 0.004 +19300819, 0.79, -0.15, -0.19, 0.004 +19300820, 0.52, -0.37, -0.25, 0.004 +19300821, -0.61, 0.46, -0.45, 0.004 +19300822, 0.12, 0.00, 0.10, 0.004 +19300823, 0.52, -0.06, -0.24, 0.004 +19300825, -0.78, 0.27, -0.06, 0.004 +19300826, 1.16, -1.28, 0.46, 0.004 +19300827, 0.54, 0.23, -0.20, 0.004 +19300828, -0.11, -0.02, 0.15, 0.004 +19300829, 1.38, -0.41, 0.19, 0.004 +19300902, 0.05, 0.26, 0.19, 0.009 +19300903, -0.95, 0.10, 0.00, 0.009 +19300904, -0.57, -0.22, 0.02, 0.009 +19300905, 1.31, 0.32, 0.39, 0.009 +19300906, 1.18, -0.63, 0.23, 0.009 +19300908, 0.11, 0.58, -0.37, 0.009 +19300909, 0.41, 0.34, -0.80, 0.009 +19300910, 0.38, 0.38, -0.16, 0.009 +19300911, -0.97, 0.25, 1.05, 0.009 +19300912, -0.41, 0.35, -0.53, 0.009 +19300913, -0.13, -0.41, -0.03, 0.009 +19300915, -1.22, 0.26, -0.02, 0.009 +19300916, 0.17, -0.89, -0.43, 0.009 +19300917, 0.25, 0.25, -0.14, 0.009 +19300918, -1.11, 0.22, -0.02, 0.009 +19300919, -1.61, -0.35, -0.36, 0.009 +19300920, 0.25, -0.03, 0.10, 0.009 +19300922, -2.52, 0.23, -0.11, 0.009 +19300923, 0.89, -1.22, -0.94, 0.009 +19300924, -1.47, -0.10, -0.64, 0.009 +19300925, -2.00, -0.14, 0.22, 0.009 +19300926, -1.50, -0.17, -0.92, 0.009 +19300927, -0.65, -0.56, -0.22, 0.009 +19300929, -2.02, 0.23, -0.98, 0.009 +19300930, -1.54, -1.67, -1.68, 0.009 +19301001, 3.78, -0.51, 1.60, 0.003 +19301002, -1.03, 1.15, -0.56, 0.003 +19301003, 1.31, -0.40, 0.43, 0.003 +19301004, -0.87, 1.07, -0.40, 0.003 +19301006, -2.90, 0.56, -0.45, 0.003 +19301007, -0.21, -1.85, -0.28, 0.003 +19301008, -0.97, 0.61, 0.81, 0.003 +19301009, -3.89, 0.62, -0.13, 0.003 +19301010, 1.89, -3.58, -1.14, 0.003 +19301011, -2.09, 3.09, 1.38, 0.003 +19301014, 0.93, -1.89, -1.20, 0.003 +19301015, 1.76, 0.42, 0.61, 0.003 +19301016, -1.42, 0.64, 0.17, 0.003 +19301017, -3.62, 0.79, -0.60, 0.003 +19301018, -1.14, -0.91, -1.41, 0.003 +19301020, 2.84, -1.54, 0.71, 0.003 +19301021, -2.39, 1.47, -0.96, 0.003 +19301022, -0.84, -0.96, 0.18, 0.003 +19301023, 0.94, 0.27, 0.09, 0.003 +19301024, 2.81, -0.74, -0.56, 0.003 +19301025, -0.16, 1.12, 0.52, 0.003 +19301027, 0.47, -0.31, -1.11, 0.003 +19301028, 0.62, -0.15, 0.64, 0.003 +19301029, -1.31, 0.83, -0.38, 0.003 +19301030, -1.14, -0.55, 1.02, 0.003 +19301031, -1.98, 0.49, 0.01, 0.003 +19301101, 0.27, -0.61, -0.74, 0.006 +19301103, 0.29, 0.07, -0.17, 0.006 +19301105, -2.62, 1.21, -0.29, 0.006 +19301106, -0.04, -0.67, -0.59, 0.006 +19301107, -3.26, 0.41, -1.12, 0.006 +19301108, -1.19, 0.46, -0.19, 0.006 +19301110, -1.96, -0.38, -0.66, 0.006 +19301111, 0.95, -0.54, -0.67, 0.006 +19301112, 1.64, -0.44, -1.64, 0.006 +19301113, 2.40, 1.15, 0.08, 0.006 +19301114, 2.43, -0.75, 0.08, 0.006 +19301115, 1.01, 1.43, 0.62, 0.006 +19301117, -2.81, 0.91, 0.85, 0.006 +19301118, 0.69, -0.81, 0.17, 0.006 +19301119, 1.93, -0.53, 0.17, 0.006 +19301120, -0.17, 1.10, 1.03, 0.006 +19301121, 1.29, -1.24, 1.30, 0.006 +19301122, -0.94, 1.12, -0.56, 0.006 +19301124, 0.16, 0.08, -0.14, 0.006 +19301125, -1.08, 0.66, -0.05, 0.006 +19301126, -1.39, -0.20, -0.96, 0.006 +19301128, -1.22, 0.49, -0.74, 0.006 +19301129, 0.96, -0.50, 0.45, 0.006 +19301201, 1.20, -1.18, -0.48, 0.005 +19301202, 0.77, 0.61, 0.03, 0.005 +19301203, -1.26, 0.71, -0.76, 0.005 +19301204, -1.61, -0.69, -0.06, 0.005 +19301205, 0.08, -0.59, -0.41, 0.005 +19301206, -1.06, 1.07, -0.26, 0.005 +19301208, -1.43, -0.06, -1.05, 0.005 +19301209, -0.13, -0.55, -0.92, 0.005 +19301210, -1.72, -0.60, -0.60, 0.005 +19301211, -0.97, -0.54, -0.67, 0.005 +19301212, -1.08, 0.46, 0.87, 0.005 +19301213, -2.52, -0.25, -0.83, 0.005 +19301215, -0.54, -0.80, -0.58, 0.005 +19301216, -3.19, -0.56, -2.22, 0.005 +19301217, 3.83, -2.86, 1.22, 0.005 +19301218, 1.18, 1.29, 0.46, 0.005 +19301219, 1.33, -0.51, 0.93, 0.005 +19301220, 0.11, 0.65, 0.75, 0.005 +19301222, -3.08, 1.72, -0.73, 0.005 +19301223, 0.32, -2.21, -0.51, 0.005 +19301224, 1.20, 0.26, -0.43, 0.005 +19301226, -1.82, 1.25, -1.74, 0.005 +19301227, -0.74, -0.36, -0.79, 0.005 +19301229, -0.26, -1.97, -0.40, 0.005 +19301230, 2.00, -1.04, 0.42, 0.005 +19301231, 1.64, 1.43, 2.51, 0.005 +19310102, 3.49, 0.07, 0.63, 0.006 +19310103, 1.82, -0.26, 2.96, 0.006 +19310105, -0.80, 0.28, 1.07, 0.006 +19310106, 1.51, -0.26, 0.95, 0.006 +19310107, 0.05, 1.07, 1.03, 0.006 +19310108, 0.65, 0.63, 1.13, 0.006 +19310109, -0.53, 1.50, 1.38, 0.006 +19310110, 0.42, -0.79, 0.43, 0.006 +19310112, -1.71, 0.93, -1.15, 0.006 +19310113, -1.10, -0.54, -0.73, 0.006 +19310114, 0.66, 0.52, 0.52, 0.006 +19310115, -1.98, 0.65, -0.06, 0.006 +19310116, 1.17, -0.89, -0.30, 0.006 +19310117, -0.43, 0.61, 0.41, 0.006 +19310119, -0.60, 0.20, -1.24, 0.006 +19310120, 1.93, -1.15, 0.19, 0.006 +19310121, 0.05, 0.35, 0.21, 0.006 +19310122, 1.70, -0.93, 0.96, 0.006 +19310123, 1.77, 0.41, -0.29, 0.006 +19310124, -0.76, 0.31, 0.35, 0.006 +19310126, 0.71, -0.72, -0.23, 0.006 +19310127, -0.44, 0.78, 0.55, 0.006 +19310128, -1.93, 0.99, -0.47, 0.006 +19310129, 1.06, -0.91, -0.87, 0.006 +19310130, 0.24, 0.28, 0.54, 0.006 +19310131, -0.60, 0.20, -0.42, 0.006 +19310202, 0.30, -0.08, 0.04, 0.002 +19310203, 0.39, 0.08, -0.46, 0.002 +19310204, 0.46, -0.21, 0.33, 0.002 +19310205, -0.57, 0.29, -0.50, 0.002 +19310206, 0.31, 0.96, -0.27, 0.002 +19310207, 1.31, -0.52, 0.10, 0.002 +19310209, 2.44, 0.24, 0.43, 0.002 +19310210, 1.45, -0.32, 0.72, 0.002 +19310211, 0.56, 0.18, -0.92, 0.002 +19310213, -0.23, 0.33, 0.46, 0.002 +19310214, -0.16, 0.11, -0.51, 0.002 +19310216, 1.24, 0.17, 0.20, 0.002 +19310217, -1.46, 0.65, 0.22, 0.002 +19310218, 0.71, 0.36, -0.22, 0.002 +19310219, 1.15, 0.70, -0.25, 0.002 +19310220, 1.43, 0.00, -0.29, 0.002 +19310221, 1.27, -0.19, 0.67, 0.002 +19310224, 1.22, -0.59, -0.42, 0.002 +19310225, -1.00, 0.26, 0.31, 0.002 +19310226, 0.82, -0.30, 1.40, 0.002 +19310227, -0.53, 0.83, 0.69, 0.002 +19310228, -0.61, 0.05, -0.45, 0.002 +19310302, -1.91, 1.51, -1.79, 0.005 +19310303, -0.27, -0.51, 0.12, 0.005 +19310304, -1.01, 0.08, 0.29, 0.005 +19310305, 1.63, -0.64, -0.04, 0.005 +19310306, -1.73, 1.05, -0.29, 0.005 +19310307, 1.60, -1.34, 0.33, 0.005 +19310309, 0.53, 0.79, -1.23, 0.005 +19310310, -0.09, 0.17, 0.73, 0.005 +19310311, -1.14, 0.30, -0.10, 0.005 +19310312, -0.54, 0.14, -0.44, 0.005 +19310313, -0.55, -0.65, -0.16, 0.005 +19310314, 1.21, -0.13, 0.03, 0.005 +19310316, 1.19, -0.41, 0.48, 0.005 +19310317, -0.97, 0.82, -0.54, 0.005 +19310318, 1.08, -0.27, 0.01, 0.005 +19310319, 1.04, 0.95, -0.32, 0.005 +19310320, 0.25, -0.04, -0.28, 0.005 +19310321, -0.74, 0.38, 0.74, 0.005 +19310323, -0.54, 0.04, 0.13, 0.005 +19310324, 0.79, -1.14, -0.08, 0.005 +19310325, -0.45, 0.39, 0.12, 0.005 +19310326, -1.23, 0.90, -0.46, 0.005 +19310327, -1.68, 0.46, -0.10, 0.005 +19310328, -1.95, 0.02, -0.47, 0.005 +19310330, -1.10, -0.26, 0.10, 0.005 +19310331, 0.19, 0.41, -0.44, 0.005 +19310401, -1.02, 0.15, -1.22, 0.003 +19310402, -0.97, -0.06, 0.75, 0.003 +19310404, 1.78, -0.52, -0.01, 0.003 +19310406, -0.81, 0.48, 0.41, 0.003 +19310407, -1.22, -0.03, -0.99, 0.003 +19310408, 1.05, -1.30, 0.63, 0.003 +19310409, -0.33, 1.30, -1.40, 0.003 +19310410, 0.15, -0.06, 0.59, 0.003 +19310411, 0.07, 0.00, 0.18, 0.003 +19310413, 1.12, -0.55, -0.59, 0.003 +19310414, -1.00, 0.68, -0.26, 0.003 +19310415, -1.84, 0.03, -0.64, 0.003 +19310416, -1.03, -0.17, -0.21, 0.003 +19310417, -1.53, -0.52, 0.73, 0.003 +19310418, 0.73, -0.48, -0.03, 0.003 +19310420, 0.33, 0.06, -0.46, 0.003 +19310421, -2.33, 0.80, -0.45, 0.003 +19310422, -1.95, -0.25, 0.50, 0.003 +19310423, 0.03, -1.05, -1.74, 0.003 +19310424, -0.17, 0.18, -0.44, 0.003 +19310425, -1.81, 0.75, -1.35, 0.003 +19310427, -1.43, -1.84, -1.18, 0.003 +19310428, -0.74, -0.65, 0.04, 0.003 +19310429, -1.90, -0.27, 0.30, 0.003 +19310430, 4.63, -1.69, 2.00, 0.003 +19310501, -2.28, 3.20, -1.17, 0.003 +19310502, 0.79, -1.41, 0.16, 0.003 +19310504, 1.73, -0.55, -0.33, 0.003 +19310505, -1.00, -0.01, 0.49, 0.003 +19310506, 0.43, 0.10, -0.59, 0.003 +19310507, -0.24, -0.03, -1.14, 0.003 +19310508, 2.73, -0.91, 0.03, 0.003 +19310509, -1.18, 1.84, -0.14, 0.003 +19310511, -0.06, -0.55, 0.44, 0.003 +19310512, -0.97, 0.79, -0.11, 0.003 +19310513, -0.30, 0.67, -0.86, 0.003 +19310514, -2.20, 1.35, -0.64, 0.003 +19310515, -1.14, -0.43, -0.84, 0.003 +19310516, -0.52, 0.75, -0.23, 0.003 +19310518, -3.25, 1.98, -1.83, 0.003 +19310519, -0.37, -1.91, -0.05, 0.003 +19310520, -0.53, 0.37, 0.91, 0.003 +19310521, 0.91, -2.19, 0.50, 0.003 +19310522, 0.39, -0.28, 0.79, 0.003 +19310523, -0.98, 1.35, 0.13, 0.003 +19310525, -2.92, 1.33, -0.84, 0.003 +19310526, -0.22, -0.61, -0.61, 0.003 +19310527, -1.34, 0.49, 0.01, 0.003 +19310528, 0.57, -0.68, -1.25, 0.003 +19310529, -2.04, 0.96, 0.01, 0.003 +19310601, -4.37, 0.94, -0.89, 0.003 +19310602, -1.36, -0.83, -0.27, 0.003 +19310603, 6.37, -4.53, 1.40, 0.003 +19310604, 3.49, 0.85, 3.23, 0.003 +19310605, -0.44, 1.05, 0.79, 0.003 +19310606, -2.26, 1.67, -0.09, 0.003 +19310608, 2.93, -2.52, 0.56, 0.003 +19310609, -1.32, 1.09, 0.21, 0.003 +19310610, 2.13, -2.96, -0.10, 0.003 +19310611, 0.48, -1.39, 2.39, 0.003 +19310612, 0.38, -0.18, 1.42, 0.003 +19310613, -0.14, 0.87, 0.51, 0.003 +19310615, -0.57, 1.19, -1.02, 0.003 +19310616, 0.13, -0.47, 0.61, 0.003 +19310617, -0.92, 0.36, -0.60, 0.003 +19310618, -1.66, 1.65, -1.04, 0.003 +19310619, -0.29, 0.03, 0.65, 0.003 +19310620, 5.07, -3.34, 0.82, 0.003 +19310622, 3.98, -0.81, -0.01, 0.003 +19310623, -0.94, 2.09, -0.09, 0.003 +19310624, 4.15, -0.92, 3.55, 0.003 +19310625, -0.51, 1.73, -1.55, 0.003 +19310626, 2.54, -1.82, 2.05, 0.003 +19310627, 0.99, -0.39, -0.09, 0.003 +19310629, -2.21, 0.86, -1.00, 0.003 +19310630, -1.63, 0.80, -0.74, 0.003 +19310701, 1.19, -1.37, 0.50, 0.002 +19310702, -0.59, 0.16, -0.21, 0.002 +19310703, 1.97, -0.24, 0.36, 0.002 +19310706, -1.01, 0.71, -0.43, 0.002 +19310707, -3.67, 1.79, -1.90, 0.002 +19310708, -0.91, -0.03, -0.83, 0.002 +19310709, 0.87, -0.75, 0.41, 0.002 +19310710, 1.05, -0.56, 1.14, 0.002 +19310711, -1.53, 1.62, -0.80, 0.002 +19310713, -1.06, -0.50, -1.13, 0.002 +19310714, -0.71, 0.46, -0.73, 0.002 +19310715, -2.13, 0.31, -1.70, 0.002 +19310716, 2.03, -0.40, 0.93, 0.002 +19310717, 1.04, -0.47, 1.94, 0.002 +19310718, 0.05, -0.48, 0.02, 0.002 +19310720, 1.18, -0.87, 1.38, 0.002 +19310721, 1.02, -0.92, 1.76, 0.002 +19310722, -2.05, 1.58, -0.89, 0.002 +19310723, -0.16, 0.30, -0.55, 0.002 +19310724, -1.68, 0.74, -1.14, 0.002 +19310725, -0.39, 0.56, 0.57, 0.002 +19310727, 0.54, -0.81, -0.58, 0.002 +19310728, 0.92, -1.24, 1.24, 0.002 +19310729, -2.71, 1.88, -1.04, 0.002 +19310730, 0.51, -0.45, 0.25, 0.002 +19310731, -0.37, 0.36, -0.54, 0.002 +19310801, 0.63, -0.34, 0.12, 0.001 +19310803, 0.50, -0.91, 0.13, 0.001 +19310804, -0.67, 0.25, -1.26, 0.001 +19310805, -1.43, 1.06, -0.67, 0.001 +19310806, -0.54, 0.03, -0.71, 0.001 +19310807, 0.23, -0.12, -0.62, 0.001 +19310808, 0.08, 0.50, -0.15, 0.001 +19310810, -0.40, -0.30, -0.71, 0.001 +19310811, 3.05, -1.37, -0.09, 0.001 +19310812, -1.18, 1.00, 0.80, 0.001 +19310813, 1.37, -1.20, 0.06, 0.001 +19310814, 1.81, -1.05, 0.99, 0.001 +19310815, 0.99, -0.42, 0.58, 0.001 +19310817, -2.26, 1.38, -0.34, 0.001 +19310818, 0.30, -1.03, 1.57, 0.001 +19310819, 0.26, -0.32, 1.36, 0.001 +19310820, 0.19, 0.34, -0.96, 0.001 +19310821, -2.49, 1.31, -0.18, 0.001 +19310822, -0.12, -0.26, -0.31, 0.001 +19310824, -0.49, -0.29, -0.46, 0.001 +19310825, -0.32, 0.55, -1.17, 0.001 +19310826, 1.50, -1.56, 0.98, 0.001 +19310827, -0.51, 0.46, -0.21, 0.001 +19310828, 0.77, -0.49, 0.00, 0.001 +19310829, 0.65, -0.52, 0.44, 0.001 +19310831, -1.36, 1.04, -0.81, 0.001 +19310901, 0.34, 0.28, -0.95, 0.001 +19310902, -1.70, 1.06, -1.50, 0.001 +19310903, -2.13, 0.70, -1.68, 0.001 +19310904, -0.57, 0.73, -0.52, 0.001 +19310908, -2.93, 1.23, -1.90, 0.001 +19310909, -0.80, -0.79, -0.55, 0.001 +19310910, -1.06, -0.14, 0.32, 0.001 +19310911, 0.51, -1.07, -0.57, 0.001 +19310912, -2.05, 2.23, 1.03, 0.001 +19310914, -2.61, -0.13, -3.93, 0.001 +19310915, -1.29, -0.68, -0.10, 0.001 +19310916, -0.97, -0.08, 0.74, 0.001 +19310917, 1.36, -1.95, 0.12, 0.001 +19310918, -4.47, 2.93, -2.02, 0.001 +19310919, -3.38, -0.15, -1.65, 0.001 +19310921, -1.58, -3.66, 1.12, 0.001 +19310922, -0.96, -1.19, 0.30, 0.001 +19310923, 6.49, -4.40, 7.50, 0.001 +19310924, -6.80, 5.57, -1.86, 0.001 +19310925, 1.60, -4.00, -1.12, 0.001 +19310926, -1.16, 3.51, 0.60, 0.001 +19310928, -2.10, -0.74, -0.71, 0.001 +19310929, -4.08, 0.13, -0.16, 0.001 +19310930, -3.11, -0.83, -1.12, 0.001 +19311001, -1.78, -2.29, -1.00, 0.004 +19311002, 1.40, 0.36, -0.38, 0.004 +19311003, -2.86, 3.34, 0.33, 0.004 +19311005, -5.84, 1.37, -3.52, 0.004 +19311006, 11.16, -6.05, 1.36, 0.004 +19311007, -0.88, 3.58, 1.46, 0.004 +19311008, 7.91, -3.97, 3.11, 0.004 +19311009, -0.04, 1.60, 2.20, 0.004 +19311010, 0.73, 0.24, 0.12, 0.004 +19311013, -4.81, 3.22, -1.48, 0.004 +19311014, -2.19, 0.39, -1.39, 0.004 +19311015, 1.87, -1.09, 1.60, 0.004 +19311016, 3.03, -3.21, 0.26, 0.004 +19311017, 0.07, 0.66, 0.31, 0.004 +19311019, 0.74, -0.21, 0.45, 0.004 +19311020, 4.25, -1.87, 1.43, 0.004 +19311021, -0.89, 2.86, -2.41, 0.004 +19311022, -3.24, 0.46, -0.21, 0.004 +19311023, 3.10, -2.02, -1.32, 0.004 +19311024, 0.74, 0.71, 1.20, 0.004 +19311026, -2.58, 2.09, -0.28, 0.004 +19311027, -1.89, 0.69, -1.18, 0.004 +19311028, -2.70, 1.63, 0.04, 0.004 +19311029, 0.22, -0.87, 0.02, 0.004 +19311030, 2.73, -2.49, 1.65, 0.004 +19311031, 1.12, -0.64, 1.54, 0.004 +19311102, -0.21, 0.92, 0.82, 0.007 +19311104, 2.61, -0.79, -0.53, 0.007 +19311105, -0.26, 0.85, 0.05, 0.007 +19311106, 2.74, -0.19, -0.66, 0.007 +19311107, 2.53, -0.77, 2.39, 0.007 +19311109, 1.23, -0.03, 1.51, 0.007 +19311110, -1.90, 0.07, -0.47, 0.007 +19311111, -1.30, 0.30, 0.62, 0.007 +19311112, -0.26, 1.20, -0.24, 0.007 +19311113, -3.00, 2.19, -2.23, 0.007 +19311114, -1.19, 0.49, -1.67, 0.007 +19311116, -1.23, 0.29, -0.61, 0.007 +19311117, 1.20, -0.87, -1.05, 0.007 +19311118, -3.03, 2.14, -0.01, 0.007 +19311119, -0.48, -2.07, 0.52, 0.007 +19311120, -2.97, 1.58, -1.35, 0.007 +19311121, -0.55, 0.70, 0.81, 0.007 +19311123, -0.94, 0.01, -0.80, 0.007 +19311124, 1.55, -1.27, 0.30, 0.007 +19311125, -3.17, 1.80, -0.85, 0.007 +19311127, -2.49, 0.71, -1.43, 0.007 +19311128, -1.30, 0.90, -0.36, 0.007 +19311130, 3.36, -3.47, -0.27, 0.007 +19311201, -0.91, -0.15, -0.39, 0.005 +19311202, -3.11, 2.24, -1.08, 0.005 +19311203, 1.48, -3.05, -0.90, 0.005 +19311204, -1.97, 0.77, 0.01, 0.005 +19311205, 3.06, -2.65, 1.25, 0.005 +19311207, -0.19, 0.66, -1.77, 0.005 +19311208, -3.00, 1.76, -0.21, 0.005 +19311209, -2.59, 0.27, -1.30, 0.005 +19311210, -2.06, -0.79, -2.01, 0.005 +19311211, -2.76, 1.12, -0.31, 0.005 +19311212, -1.13, -0.47, -0.90, 0.005 +19311214, -2.31, 0.49, -2.09, 0.005 +19311215, 0.97, -3.00, -1.02, 0.005 +19311216, -2.11, 2.64, 0.11, 0.005 +19311217, -3.16, 0.56, -3.95, 0.005 +19311218, 7.97, -6.23, 4.75, 0.005 +19311219, 0.75, 4.00, 1.48, 0.005 +19311221, -2.62, -0.30, 2.08, 0.005 +19311222, 1.39, -1.58, -2.93, 0.005 +19311223, -3.48, 2.82, -2.15, 0.005 +19311224, 0.02, 0.90, -0.88, 0.005 +19311228, -2.67, -0.75, -1.56, 0.005 +19311229, 2.09, -2.30, -0.13, 0.005 +19311230, 1.65, -1.93, -0.22, 0.005 +19311231, 0.99, 3.46, 3.92, 0.005 +19320102, -3.47, 3.73, 2.13, 0.009 +19320104, -2.99, 1.08, -0.76, 0.009 +19320105, -0.37, -1.04, 0.34, 0.009 +19320106, 6.44, -4.30, 2.95, 0.009 +19320107, 1.99, -0.82, 4.38, 0.009 +19320108, 3.80, -2.24, 1.66, 0.009 +19320109, -1.55, 2.78, 0.20, 0.009 +19320111, 1.11, -2.03, 2.92, 0.009 +19320112, -0.90, 0.30, -0.30, 0.009 +19320113, 4.52, -2.02, 0.57, 0.009 +19320114, 1.10, 0.72, 0.19, 0.009 +19320115, -0.09, 0.79, -0.63, 0.009 +19320116, -1.59, 1.12, -0.17, 0.009 +19320118, -2.36, 1.71, -0.73, 0.009 +19320119, -0.36, -0.38, 0.11, 0.009 +19320120, 1.66, -2.35, 1.93, 0.009 +19320121, -0.06, 0.90, -0.81, 0.009 +19320122, -3.75, 2.47, -0.09, 0.009 +19320123, -0.79, -0.56, -1.47, 0.009 +19320125, 0.39, -0.03, 0.61, 0.009 +19320126, 0.91, -0.11, -1.19, 0.009 +19320127, -1.67, -0.70, -0.31, 0.009 +19320128, -1.24, 1.71, 0.40, 0.009 +19320129, -1.22, 0.95, -1.15, 0.009 +19320130, -0.32, 1.99, -0.91, 0.009 +19320201, 3.73, -4.29, 2.23, 0.010 +19320202, -1.73, 1.89, -1.01, 0.010 +19320203, 0.01, -0.99, -0.43, 0.010 +19320204, -0.73, 1.30, -1.46, 0.010 +19320205, -2.67, 1.96, -0.23, 0.010 +19320206, -0.86, 0.29, 1.12, 0.010 +19320208, -0.92, 1.16, -2.00, 0.010 +19320209, -1.22, 0.28, 0.81, 0.010 +19320210, -0.30, -0.48, 0.86, 0.010 +19320211, 7.38, -5.33, 1.03, 0.010 +19320213, 8.23, -4.49, 0.35, 0.010 +19320215, -2.79, 2.39, 0.73, 0.010 +19320216, 3.84, -2.65, -0.61, 0.010 +19320217, -3.47, 3.89, -0.53, 0.010 +19320218, 2.29, -2.14, -1.17, 0.010 +19320219, 0.16, 0.70, 0.40, 0.010 +19320220, -2.20, 1.39, -0.77, 0.010 +19320223, -3.20, 1.11, 0.08, 0.010 +19320224, 2.04, -1.42, -0.40, 0.010 +19320225, -0.68, 1.01, -0.88, 0.010 +19320226, -0.04, -0.28, 0.17, 0.010 +19320227, -0.29, 0.41, 0.55, 0.010 +19320229, -0.26, 0.79, -0.06, 0.010 +19320301, 0.39, -1.08, 0.40, 0.006 +19320302, 3.92, -2.58, 0.17, 0.006 +19320303, -0.17, 1.02, -0.07, 0.006 +19320304, 0.12, -0.17, -0.14, 0.006 +19320305, 2.49, -0.50, 0.68, 0.006 +19320307, -1.26, 0.45, 1.44, 0.006 +19320308, 1.58, -1.18, 0.70, 0.006 +19320309, -1.45, 0.89, -0.12, 0.006 +19320310, -0.80, 0.36, -1.09, 0.006 +19320311, -2.22, 1.03, 0.00, 0.006 +19320312, 0.71, -0.09, 0.22, 0.006 +19320314, -3.16, 2.01, -0.80, 0.006 +19320315, -0.32, 0.74, -0.96, 0.006 +19320316, -2.00, 0.85, -1.19, 0.006 +19320317, 1.83, -3.25, 0.62, 0.006 +19320318, -2.45, 2.17, 1.06, 0.006 +19320319, -0.70, 0.22, -1.03, 0.006 +19320321, 1.28, -1.49, -0.82, 0.006 +19320322, -0.64, 0.59, -0.14, 0.006 +19320323, -1.46, 0.53, 0.33, 0.006 +19320324, -0.92, 0.31, 0.55, 0.006 +19320326, -2.67, 1.91, -0.57, 0.006 +19320328, -0.80, -0.08, -0.81, 0.006 +19320329, 0.34, -1.10, 0.24, 0.006 +19320330, 1.66, -2.63, 1.05, 0.006 +19320331, -4.76, 3.03, -2.01, 0.006 +19320401, -1.43, 1.37, -1.96, 0.004 +19320402, -1.03, 0.71, -0.53, 0.004 +19320404, -0.88, -0.88, -2.10, 0.004 +19320405, -3.69, 2.50, -1.56, 0.004 +19320406, -2.37, -0.22, 0.14, 0.004 +19320407, -0.80, -0.26, 0.65, 0.004 +19320408, -3.94, 1.00, 0.00, 0.004 +19320409, 1.82, -1.23, 0.63, 0.004 +19320411, -3.26, 0.51, 1.75, 0.004 +19320412, -0.36, -0.83, -1.08, 0.004 +19320413, -1.24, 0.85, 0.48, 0.004 +19320414, 3.22, -4.82, 1.09, 0.004 +19320415, 2.84, -0.97, 1.65, 0.004 +19320416, -1.10, 2.71, 0.17, 0.004 +19320418, -2.79, 0.46, 0.88, 0.004 +19320419, -1.25, 0.29, -0.44, 0.004 +19320420, -0.26, -2.14, 1.33, 0.004 +19320421, 2.96, -1.12, -0.22, 0.004 +19320422, -3.77, 4.04, -1.01, 0.004 +19320423, 0.89, -2.24, 1.60, 0.004 +19320425, 0.12, -0.54, 0.38, 0.004 +19320426, 1.34, -0.90, 1.18, 0.004 +19320427, 2.15, -0.92, 0.31, 0.004 +19320428, -3.41, 2.80, -2.11, 0.004 +19320429, -2.96, 0.71, 0.61, 0.004 +19320430, 0.06, -0.25, -0.32, 0.004 +19320502, -1.31, 0.42, -1.37, 0.002 +19320503, -1.22, 0.90, -0.97, 0.002 +19320504, 0.75, -1.86, 0.07, 0.002 +19320505, -0.71, 0.40, 1.86, 0.002 +19320506, 6.16, -4.87, 0.33, 0.002 +19320507, -0.96, 2.24, 1.22, 0.002 +19320509, -1.15, 0.85, -0.19, 0.002 +19320510, 0.98, -1.60, -0.51, 0.002 +19320511, -0.15, 0.88, 0.47, 0.002 +19320512, -2.91, 2.38, -1.63, 0.002 +19320513, -3.05, 1.03, 0.79, 0.002 +19320514, -1.35, 1.90, -1.45, 0.002 +19320516, 1.64, -2.63, -0.27, 0.002 +19320517, 0.01, 0.50, -0.42, 0.002 +19320518, -1.90, 1.04, 0.65, 0.002 +19320519, 0.13, -1.69, -0.09, 0.002 +19320520, 0.00, 0.92, -0.06, 0.002 +19320521, 0.08, -1.32, -0.85, 0.002 +19320523, -0.75, 0.69, -0.11, 0.002 +19320524, -3.45, 1.55, -0.67, 0.002 +19320525, -2.98, -0.94, -2.53, 0.002 +19320526, 0.72, -3.04, 0.00, 0.002 +19320527, -4.19, 3.78, -0.62, 0.002 +19320528, 0.20, -1.30, 1.10, 0.002 +19320531, -6.82, 4.45, 0.33, 0.002 +19320601, -1.18, -1.20, 1.82, 0.001 +19320602, 4.21, -3.57, -0.25, 0.001 +19320603, 4.14, -1.97, 2.01, 0.001 +19320604, 6.41, -3.97, 1.03, 0.001 +19320606, -2.14, 1.46, 0.86, 0.001 +19320607, -3.64, 4.27, -0.83, 0.001 +19320608, -4.78, 3.04, 0.78, 0.001 +19320609, -0.30, -0.86, -2.72, 0.001 +19320610, 6.32, -5.64, 2.12, 0.001 +19320611, -0.50, 3.42, -1.21, 0.001 +19320613, -0.93, 0.08, 0.48, 0.001 +19320614, 1.96, -1.73, 1.17, 0.001 +19320615, 3.25, -2.33, -0.30, 0.001 +19320616, 0.36, 0.27, 3.73, 0.001 +19320617, -4.70, 2.88, 0.05, 0.001 +19320618, 0.28, 0.71, -0.69, 0.001 +19320620, 0.47, -1.02, -0.45, 0.001 +19320621, -2.08, 1.00, -0.67, 0.001 +19320622, -0.27, 0.74, -0.80, 0.001 +19320623, 0.95, 0.19, 0.76, 0.001 +19320624, -3.55, 3.50, -1.12, 0.001 +19320625, -0.26, 0.60, -0.75, 0.001 +19320627, -2.90, 1.08, 1.61, 0.001 +19320628, 0.11, -0.25, -1.30, 0.001 +19320629, 0.68, 0.23, -1.15, 0.001 +19320630, -1.38, -1.46, 1.63, 0.001 +19320701, 2.65, -0.28, 0.02, 0.001 +19320705, -0.99, 0.24, 2.51, 0.001 +19320706, 1.86, -1.00, -1.46, 0.001 +19320707, -2.93, 2.77, 2.22, 0.001 +19320708, -1.24, 0.85, 0.38, 0.001 +19320709, 0.94, -0.27, -0.09, 0.001 +19320711, 2.58, -2.09, 2.19, 0.001 +19320712, 0.27, -0.94, 0.19, 0.001 +19320713, 4.14, -1.27, 1.16, 0.001 +19320714, -1.83, 1.41, 0.25, 0.001 +19320715, 4.24, -3.00, 2.36, 0.001 +19320716, 0.14, 1.45, 0.60, 0.001 +19320718, -2.60, 2.36, -0.93, 0.001 +19320719, -0.42, -0.03, -0.94, 0.001 +19320720, 3.01, -2.24, 2.77, 0.001 +19320721, 2.47, -1.59, 3.67, 0.001 +19320722, 2.84, -0.96, 2.77, 0.001 +19320723, 0.21, 1.53, -0.37, 0.001 +19320725, 4.40, -2.86, 5.68, 0.001 +19320726, -0.97, 2.05, 0.97, 0.001 +19320727, 4.34, -2.20, 0.45, 0.001 +19320728, 3.35, 2.51, -0.71, 0.001 +19320729, 2.72, -1.52, 1.45, 0.001 +19320730, 0.74, 1.90, -0.33, 0.001 +19320801, -0.35, 1.64, 0.21, 0.001 +19320802, -2.53, 2.29, -1.81, 0.001 +19320803, 7.89, -6.15, 1.75, 0.001 +19320804, 1.69, 1.15, -0.45, 0.001 +19320805, 3.70, -2.48, 0.50, 0.001 +19320806, 5.91, -3.40, 2.93, 0.001 +19320808, 2.94, 2.78, 2.77, 0.001 +19320809, 0.07, 1.55, 1.99, 0.001 +19320810, 4.11, 0.49, 4.19, 0.001 +19320811, -1.38, 2.65, -0.44, 0.001 +19320812, -6.31, 3.19, 0.37, 0.001 +19320813, -1.06, -1.43, -1.88, 0.001 +19320815, 6.01, -2.34, 2.39, 0.001 +19320816, 3.43, -0.34, 2.69, 0.001 +19320817, -2.02, 0.65, -3.55, 0.001 +19320818, 1.00, -1.83, 1.21, 0.001 +19320819, -0.95, 1.77, 1.05, 0.001 +19320820, 0.26, 1.49, -0.90, 0.001 +19320822, 5.76, -0.93, 3.48, 0.001 +19320823, 2.11, 0.98, 0.74, 0.001 +19320824, 2.24, -0.25, 2.38, 0.001 +19320825, -0.44, 3.33, 2.09, 0.001 +19320826, 1.30, -0.04, 0.33, 0.001 +19320827, 1.90, 1.88, 1.28, 0.001 +19320829, 0.28, 1.52, 0.29, 0.001 +19320830, -1.34, 2.44, 0.19, 0.001 +19320831, -0.91, -2.11, -0.90, 0.001 +19320901, 0.39, 1.06, 0.75, 0.001 +19320902, 4.56, -0.01, 0.48, 0.001 +19320903, 2.31, -0.13, 0.09, 0.001 +19320906, -2.08, 1.22, 0.13, 0.001 +19320907, 3.94, -1.80, 0.28, 0.001 +19320908, -2.86, 3.51, -0.70, 0.001 +19320909, -2.15, -0.66, -1.49, 0.001 +19320910, 0.07, -1.92, 0.37, 0.001 +19320912, -6.40, 0.64, -3.57, 0.001 +19320913, -4.09, -1.17, -4.66, 0.001 +19320914, -5.14, 2.71, -2.67, 0.001 +19320915, 4.02, -4.60, 1.50, 0.001 +19320916, -0.69, 2.36, 1.96, 0.001 +19320917, -0.89, -0.32, -0.30, 0.001 +19320919, -1.57, 0.47, -0.50, 0.001 +19320920, 2.90, -2.49, 0.17, 0.001 +19320921, 10.96, -1.26, 5.21, 0.001 +19320922, -2.52, 2.53, -0.75, 0.001 +19320923, 1.34, -1.52, -0.53, 0.001 +19320924, 1.33, 0.18, 0.00, 0.001 +19320926, -4.93, 1.84, -1.29, 0.001 +19320927, 0.71, -1.05, 0.68, 0.001 +19320928, 2.36, -1.94, -0.16, 0.001 +19320929, -2.66, 1.44, -1.70, 0.001 +19320930, -0.19, -2.70, 1.25, 0.001 +19321001, 0.70, 0.24, 0.49, 0.001 +19321003, -1.35, 0.11, -1.89, 0.001 +19321004, 0.11, -0.34, -0.89, 0.001 +19321005, -7.33, 2.29, -2.21, 0.001 +19321006, 0.05, -1.95, -1.84, 0.001 +19321007, -5.04, 1.21, -3.95, 0.001 +19321008, -2.95, 1.10, -3.10, 0.001 +19321010, -5.52, 1.54, -3.57, 0.001 +19321011, 6.87, -3.89, 2.95, 0.001 +19321013, -2.49, 1.50, 0.68, 0.001 +19321014, 6.46, -3.35, 2.89, 0.001 +19321015, 0.77, 0.91, 1.04, 0.001 +19321017, -2.52, 0.31, -0.86, 0.001 +19321018, 1.57, -1.55, -0.02, 0.001 +19321019, 3.57, -2.37, 0.49, 0.001 +19321020, -1.76, 1.01, 0.87, 0.001 +19321021, -5.47, 2.31, -2.32, 0.001 +19321022, -0.13, -0.34, 1.35, 0.001 +19321024, 0.43, -1.22, -1.78, 0.001 +19321025, -0.86, -0.19, 0.14, 0.001 +19321026, 1.38, -2.35, 1.68, 0.001 +19321027, 0.98, 0.00, 0.13, 0.001 +19321028, 1.61, -0.99, 1.13, 0.001 +19321029, -1.14, 2.06, -2.50, 0.001 +19321031, -0.72, -0.60, 0.28, 0.001 +19321101, -3.63, 1.78, -1.53, 0.001 +19321102, -3.15, 0.65, -1.74, 0.001 +19321103, -0.63, -0.78, -2.95, 0.001 +19321104, 5.42, -2.40, 0.52, 0.001 +19321105, 1.17, 0.33, 1.39, 0.001 +19321107, 3.53, -0.51, 1.52, 0.001 +19321109, -3.75, 3.63, -2.08, 0.001 +19321110, 6.47, -4.45, 2.26, 0.001 +19321111, 3.66, -0.10, 0.98, 0.001 +19321112, 0.04, 2.09, -0.13, 0.001 +19321114, -2.81, 0.56, -1.23, 0.001 +19321115, -0.17, -1.91, -0.78, 0.001 +19321116, -2.90, 3.05, -2.16, 0.001 +19321117, -0.74, 0.01, -2.49, 0.001 +19321118, -0.10, 0.10, 0.38, 0.001 +19321119, 1.43, -0.96, -0.19, 0.001 +19321121, -0.54, -0.42, -0.05, 0.001 +19321122, -0.30, 0.12, -0.67, 0.001 +19321123, -4.08, 1.03, -1.19, 0.001 +19321125, -1.20, -0.55, 0.08, 0.001 +19321126, 0.48, 0.06, 1.25, 0.001 +19321128, -0.38, -0.27, -1.42, 0.001 +19321129, -0.37, -0.03, -0.98, 0.001 +19321130, -2.68, 0.42, -2.48, 0.001 +19321201, 2.36, -1.13, 0.20, 0.000 +19321202, -3.14, 1.80, -1.81, 0.000 +19321203, -0.28, -0.77, -2.00, 0.000 +19321205, 0.91, -0.49, -0.33, 0.000 +19321206, 4.39, -4.51, 1.09, 0.000 +19321207, 0.50, 0.58, 0.62, 0.000 +19321208, -0.05, 0.23, -0.92, 0.000 +19321209, 2.23, -1.76, 0.20, 0.000 +19321210, -0.55, -0.23, -0.04, 0.000 +19321212, 0.52, -1.08, 1.81, 0.000 +19321213, -1.28, 0.64, -2.53, 0.000 +19321214, 1.72, -2.27, 0.55, 0.000 +19321215, -0.57, 1.71, -2.76, 0.000 +19321216, -0.65, 0.21, -1.19, 0.000 +19321217, -0.04, 0.11, -0.06, 0.000 +19321219, -0.33, -0.96, -1.65, 0.000 +19321220, -1.99, 0.06, -1.02, 0.000 +19321221, -0.40, -0.66, -1.15, 0.000 +19321222, -3.36, 1.93, -2.28, 0.000 +19321223, -0.19, -1.57, -0.42, 0.000 +19321224, 1.28, 0.15, 1.54, 0.000 +19321227, -0.65, -1.48, -1.21, 0.000 +19321228, 0.06, 0.40, -0.35, 0.000 +19321229, 1.52, -2.62, -1.30, 0.000 +19321230, 2.72, 0.03, 6.78, 0.000 +19321231, -0.04, 3.37, 1.07, 0.000 +19330103, -0.72, 1.73, -1.08, 0.000 +19330104, 4.33, -1.92, 3.60, 0.000 +19330105, -0.28, 2.47, 0.91, 0.000 +19330106, 1.42, -0.89, 2.39, 0.000 +19330109, -1.05, 0.64, -0.47, 0.000 +19330110, 2.57, -1.73, 2.52, 0.000 +19330111, -0.21, 1.51, 0.86, 0.000 +19330112, -0.99, 0.07, -0.44, 0.000 +19330113, -0.16, -0.82, -2.24, 0.000 +19330114, -0.23, -0.22, 0.21, 0.000 +19330116, -2.24, 2.00, -1.17, 0.000 +19330117, 0.15, -1.18, -0.70, 0.000 +19330118, -1.67, 1.36, -0.07, 0.000 +19330119, 0.54, -1.31, 0.61, 0.000 +19330120, 1.21, -1.07, 0.56, 0.000 +19330121, 0.45, -0.40, 0.54, 0.000 +19330123, -0.87, 0.76, -1.22, 0.000 +19330124, -0.43, 0.90, -0.07, 0.000 +19330125, 1.43, -2.14, 0.89, 0.000 +19330126, -0.51, 1.15, -0.95, 0.000 +19330127, -0.20, -1.06, 1.25, 0.000 +19330128, -0.81, 1.64, -1.00, 0.000 +19330130, -0.06, -1.41, 0.88, 0.000 +19330131, -0.21, 0.49, 0.73, 0.000 +19330201, -2.91, 1.14, 0.21, -0.001 +19330202, -1.73, -0.92, -0.40, -0.001 +19330203, -0.06, 0.32, 0.99, -0.001 +19330204, -0.98, 0.54, -0.45, -0.001 +19330206, 0.04, -0.70, 0.59, -0.001 +19330207, 0.94, -0.54, -0.08, -0.001 +19330208, 1.08, -0.48, 0.10, -0.001 +19330209, 2.04, -0.35, 2.09, -0.001 +19330210, -1.03, 0.42, -0.10, -0.001 +19330211, 0.34, -1.04, 0.93, -0.001 +19330214, -4.69, -0.47, -1.92, -0.001 +19330215, -0.10, 0.52, -0.22, -0.001 +19330216, -2.03, 0.34, -0.65, -0.001 +19330217, 1.49, -2.00, 1.26, -0.001 +19330218, -0.32, 2.25, -0.32, -0.001 +19330220, -2.70, 1.08, -1.44, -0.001 +19330221, -0.62, 0.15, -0.69, -0.001 +19330223, -4.01, 1.06, -1.52, -0.001 +19330224, 2.98, -3.11, 0.34, -0.001 +19330225, -4.73, 2.63, -1.80, -0.001 +19330227, -1.32, -2.56, -0.23, -0.001 +19330228, 2.16, -1.96, 0.51, -0.001 +19330301, 1.58, -0.56, 1.75, 0.002 +19330302, -1.80, 0.97, -1.09, 0.002 +19330303, 3.07, -1.68, 2.14, 0.002 +19330315, 15.76, 1.43, 8.17, 0.002 +19330316, 1.47, 3.38, 3.34, 0.002 +19330317, -3.48, 0.05, -0.96, 0.002 +19330318, -0.26, -0.07, -0.70, 0.002 +19330320, -1.37, 0.00, 0.95, 0.002 +19330321, -4.41, 1.62, -3.91, 0.002 +19330322, -1.21, -0.95, 0.05, 0.002 +19330323, 1.70, -1.58, 2.97, 0.002 +19330324, -0.38, 0.20, -0.35, 0.002 +19330325, -0.57, 0.16, -0.87, 0.002 +19330327, -2.02, -0.30, 0.45, 0.002 +19330328, 1.62, -2.22, 0.38, 0.002 +19330329, -1.85, 1.70, -0.71, 0.002 +19330330, -0.48, -0.87, -1.64, 0.002 +19330331, -2.73, 2.40, -1.48, 0.002 +19330401, 0.50, -0.74, -0.13, 0.004 +19330403, -0.09, -0.70, -0.68, 0.004 +19330404, 0.33, 0.09, -0.20, 0.004 +19330405, 1.00, 2.58, -2.74, 0.004 +19330406, 1.84, -1.19, 3.10, 0.004 +19330407, 0.97, 0.03, 0.60, 0.004 +19330408, 1.34, -1.42, 2.06, 0.004 +19330410, 4.85, -0.25, 0.07, 0.004 +19330411, -0.74, 1.56, -0.36, 0.004 +19330412, -1.49, -0.24, -2.10, 0.004 +19330413, 3.54, -1.47, 0.68, 0.004 +19330415, -0.25, 2.28, 0.55, 0.004 +19330417, -2.01, 1.82, -2.33, 0.004 +19330418, 1.90, 0.11, 2.50, 0.004 +19330419, 7.00, -1.61, 6.68, 0.004 +19330420, 8.22, -0.40, 1.55, 0.004 +19330421, -3.57, 0.60, 3.53, 0.004 +19330422, 3.63, -3.21, 1.28, 0.004 +19330424, 2.41, 3.08, 0.15, 0.004 +19330425, -2.24, 2.05, -2.94, 0.004 +19330426, 0.47, -0.47, 2.89, 0.004 +19330427, -0.79, 0.74, -1.19, 0.004 +19330428, 1.26, -0.84, -2.28, 0.004 +19330429, 5.96, 0.51, 2.69, 0.004 +19330501, 1.41, 1.77, 0.64, 0.002 +19330502, 0.04, 0.92, 1.47, 0.002 +19330503, -0.21, 1.82, -0.03, 0.002 +19330504, 3.08, -0.30, 3.09, 0.002 +19330505, 1.07, 2.82, -1.51, 0.002 +19330506, -2.78, 0.85, -0.96, 0.002 +19330508, -1.47, 0.70, -0.78, 0.002 +19330509, 0.61, 0.07, -3.24, 0.002 +19330510, 4.83, 0.01, 2.34, 0.002 +19330511, 3.17, 1.56, 1.87, 0.002 +19330512, 0.22, -0.50, 2.13, 0.002 +19330513, -1.80, 1.60, 0.36, 0.002 +19330515, -1.00, 2.59, -0.80, 0.002 +19330516, 1.94, 3.14, -1.77, 0.002 +19330517, 1.41, 1.86, 1.31, 0.002 +19330518, -0.38, 1.21, 1.56, 0.002 +19330519, -0.52, 0.51, 2.43, 0.002 +19330520, -1.70, -0.29, -0.94, 0.002 +19330522, -0.20, -0.71, -1.10, 0.002 +19330523, 3.57, 1.68, 0.44, 0.002 +19330524, 2.07, 1.47, 0.23, 0.002 +19330525, -0.54, 1.27, -1.23, 0.002 +19330526, 2.89, 1.42, -0.75, 0.002 +19330527, 3.64, -0.27, 2.02, 0.002 +19330529, 1.67, 0.60, 3.29, 0.002 +19330531, -0.99, -0.05, 3.63, 0.002 +19330601, 1.34, 1.25, 1.88, 0.001 +19330602, 3.87, 0.63, 0.66, 0.001 +19330603, -2.50, 1.90, -1.35, 0.001 +19330605, 1.98, 0.53, 0.71, 0.001 +19330606, -0.30, 0.98, -0.91, 0.001 +19330607, 1.63, 1.22, 1.09, 0.001 +19330608, 0.41, 0.93, -1.41, 0.001 +19330609, 1.04, -0.91, -0.66, 0.001 +19330610, 0.75, 0.28, -1.32, 0.001 +19330612, 3.50, -2.31, 3.44, 0.001 +19330613, -2.48, 0.87, -1.00, 0.001 +19330614, -1.49, -1.84, -2.07, 0.001 +19330615, -6.30, 0.63, -2.34, 0.001 +19330616, 0.20, -3.73, -1.30, 0.001 +19330617, 1.66, 2.01, 3.56, 0.001 +19330619, 7.26, 2.49, 5.13, 0.001 +19330620, -1.36, 0.80, -1.08, 0.001 +19330621, 0.85, -0.49, 0.76, 0.001 +19330622, -3.54, -0.25, -1.93, 0.001 +19330623, 2.94, 0.32, -1.22, 0.001 +19330624, 0.46, 1.12, -0.10, 0.001 +19330626, 2.63, -0.43, 1.87, 0.001 +19330627, 1.01, 0.73, -0.71, 0.001 +19330628, -1.14, 0.98, -2.97, 0.001 +19330629, -0.95, 0.41, -0.35, 0.001 +19330630, 1.61, -0.43, 1.64, 0.001 +19330701, 2.42, 0.27, 2.64, 0.001 +19330703, 3.53, -1.73, 3.40, 0.001 +19330705, -0.49, -0.75, 1.79, 0.001 +19330706, 2.55, -0.03, 3.05, 0.001 +19330707, 0.50, -0.51, 1.45, 0.001 +19330708, -0.16, 1.16, -0.47, 0.001 +19330710, -0.77, 0.16, -0.21, 0.001 +19330711, -0.98, 1.57, -1.00, 0.001 +19330712, 1.18, -1.03, 0.86, 0.001 +19330713, 1.38, 0.48, 0.28, 0.001 +19330714, -1.22, 0.85, -0.54, 0.001 +19330715, 0.59, -0.64, 0.11, 0.001 +19330717, 1.96, 1.31, 0.51, 0.001 +19330718, 0.38, 0.34, 0.70, 0.001 +19330719, -4.80, -0.58, -1.33, 0.001 +19330720, -8.49, 0.67, -3.28, 0.001 +19330721, -9.21, -3.08, -4.58, 0.001 +19330722, 0.25, -3.37, -1.59, 0.001 +19330724, 8.02, 1.18, 6.01, 0.001 +19330725, -1.34, 3.30, 0.80, 0.001 +19330726, 2.26, -0.61, 0.25, 0.001 +19330727, 0.80, 0.15, 1.38, 0.001 +19330728, -2.05, 1.46, -0.74, 0.001 +19330731, -4.70, -1.21, -3.48, 0.001 +19330801, 2.89, -1.12, 2.48, 0.001 +19330802, 2.35, -0.23, 1.11, 0.001 +19330803, -0.86, 1.52, -0.97, 0.001 +19330804, -2.09, 0.58, -0.53, 0.001 +19330807, -0.58, -0.76, -1.08, 0.001 +19330808, 2.93, -1.83, 0.72, 0.001 +19330809, 3.98, -0.08, 2.20, 0.001 +19330810, -1.19, 1.17, -0.70, 0.001 +19330811, -0.24, -0.65, -0.26, 0.001 +19330814, -1.21, -0.03, -1.13, 0.001 +19330815, 0.04, 0.66, 0.02, 0.001 +19330816, -2.55, -0.24, -1.52, 0.001 +19330817, 5.36, -1.95, 1.70, 0.001 +19330818, -1.47, 1.66, -1.18, 0.001 +19330821, 1.85, -0.78, 1.24, 0.001 +19330822, 1.40, -0.89, 0.57, 0.001 +19330823, -1.03, 0.79, -0.01, 0.001 +19330824, 0.63, -1.55, 0.33, 0.001 +19330825, 3.44, -1.68, 2.16, 0.001 +19330828, -0.16, 0.54, -0.56, 0.001 +19330829, -0.78, -0.89, -0.31, 0.001 +19330830, -0.85, 0.38, 0.06, 0.001 +19330831, -0.02, 0.46, -1.21, 0.001 +19330901, 1.29, -0.36, -0.11, 0.001 +19330905, -3.13, 1.55, -1.08, 0.001 +19330906, -0.15, -0.75, -1.94, 0.001 +19330907, -1.09, 0.93, -0.09, 0.001 +19330908, -0.03, -0.91, -0.45, 0.001 +19330909, -0.06, 0.55, -0.50, 0.001 +19330911, 4.00, -1.79, 2.19, 0.001 +19330912, -0.40, 1.16, -0.63, 0.001 +19330913, 0.42, -0.30, 0.15, 0.001 +19330914, 0.40, 0.14, 0.42, 0.001 +19330915, -2.68, 1.13, -2.36, 0.001 +19330916, 2.44, -1.70, 1.69, 0.001 +19330918, -0.89, 1.12, -0.64, 0.001 +19330919, 0.15, -1.58, 0.56, 0.001 +19330920, -2.76, 1.72, -2.45, 0.001 +19330921, -6.13, 0.28, -5.44, 0.001 +19330922, 1.97, -2.28, 0.72, 0.001 +19330923, 1.50, 0.77, 1.55, 0.001 +19330925, -1.98, 0.25, -1.59, 0.001 +19330926, -0.87, 1.01, 0.60, 0.001 +19330927, -4.16, 1.03, -2.95, 0.001 +19330928, 1.27, -2.54, 0.11, 0.001 +19330929, -0.50, 1.31, 0.42, 0.001 +19330930, 0.76, -1.78, -0.86, 0.001 +19331002, -1.79, 2.46, -0.74, 0.000 +19331003, 0.37, -1.35, 0.03, 0.000 +19331004, 5.70, -1.90, 3.87, 0.000 +19331005, -0.90, 1.04, -0.97, 0.000 +19331006, -1.02, 0.23, -1.41, 0.000 +19331007, 0.67, -0.42, 0.35, 0.000 +19331009, 1.65, -0.96, 1.29, 0.000 +19331010, -0.84, 1.15, -0.97, 0.000 +19331011, -0.08, 0.50, -1.25, 0.000 +19331013, -3.38, 1.38, -2.23, 0.000 +19331014, -0.06, -0.61, -0.83, 0.000 +19331016, -5.99, 1.88, -4.16, 0.000 +19331017, 2.61, -3.85, 0.30, 0.000 +19331018, -4.30, 1.87, -2.46, 0.000 +19331019, -4.58, 0.75, -5.98, 0.000 +19331020, 2.50, -3.17, 3.06, 0.000 +19331021, -3.03, 1.96, -1.97, 0.000 +19331023, 5.01, -0.27, 5.03, 0.000 +19331024, 3.69, -2.72, 3.98, 0.000 +19331025, 2.75, 0.92, 2.18, 0.000 +19331026, -2.01, 1.02, -1.27, 0.000 +19331027, 1.26, -1.20, 0.45, 0.000 +19331028, -1.29, 1.21, -0.97, 0.000 +19331030, -3.60, 1.42, -2.55, 0.000 +19331031, -0.96, -2.08, -0.13, 0.000 +19331101, 1.17, -1.33, 0.52, 0.001 +19331102, 1.56, -0.55, 0.87, 0.001 +19331103, 3.13, -1.59, 1.90, 0.001 +19331104, -0.17, 0.66, 1.16, 0.001 +19331106, -0.80, 0.45, -1.00, 0.001 +19331108, 3.53, -1.81, 1.50, 0.001 +19331109, 0.75, 2.12, 0.64, 0.001 +19331110, -1.34, -0.57, -1.49, 0.001 +19331111, 1.05, -1.06, 1.17, 0.001 +19331113, -0.16, 1.10, -0.08, 0.001 +19331114, -0.78, 0.27, 0.04, 0.001 +19331115, -0.86, -0.31, -2.70, 0.001 +19331116, 4.41, -2.62, 2.63, 0.001 +19331117, -0.95, 1.36, -1.22, 0.001 +19331118, 0.08, 0.33, -0.24, 0.001 +19331120, 2.63, -2.06, 0.99, 0.001 +19331121, -1.05, 1.01, 0.43, 0.001 +19331122, -0.60, -0.73, -0.89, 0.001 +19331123, -1.64, 0.18, -0.60, 0.001 +19331124, 1.16, 0.43, 0.87, 0.001 +19331125, 0.28, -0.22, -0.47, 0.001 +19331127, -3.22, 1.08, -2.14, 0.001 +19331128, -0.08, -0.90, -0.60, 0.001 +19331129, 1.79, -1.41, 1.34, 0.001 +19331201, 0.40, 0.10, -0.35, 0.001 +19331202, 0.01, -0.10, -0.26, 0.001 +19331204, -0.20, 0.13, -0.56, 0.001 +19331205, 2.85, -0.47, 1.83, 0.001 +19331206, -0.55, 0.36, 0.90, 0.001 +19331207, 0.74, 0.04, 0.49, 0.001 +19331208, -0.94, 0.62, -1.08, 0.001 +19331209, 1.91, -0.88, 2.25, 0.001 +19331211, 0.31, 0.64, 0.92, 0.001 +19331212, -0.42, 0.64, -1.05, 0.001 +19331213, -0.99, -0.22, -0.81, 0.001 +19331214, 0.29, 0.53, 0.19, 0.001 +19331215, -1.38, 0.28, -1.30, 0.001 +19331216, -1.72, 1.27, -2.02, 0.001 +19331218, -1.31, -1.78, 0.39, 0.001 +19331219, -0.28, -0.64, -1.19, 0.001 +19331220, -1.77, -0.87, -1.43, 0.001 +19331221, -0.05, -0.04, -0.66, 0.001 +19331222, 2.72, -0.69, 3.31, 0.001 +19331223, -0.35, 0.59, -0.99, 0.001 +19331226, -2.29, -0.43, -1.62, 0.001 +19331227, 0.75, -1.51, -0.72, 0.001 +19331228, 3.46, 1.58, 1.73, 0.001 +19331229, -0.30, 0.88, 0.36, 0.001 +19331230, 1.16, 0.42, 0.21, 0.001 +19340102, 0.13, 0.61, 1.16, 0.002 +19340103, -1.21, 0.55, 0.04, 0.002 +19340104, -0.33, -0.62, -0.16, 0.002 +19340105, -1.13, 1.31, -1.61, 0.002 +19340106, -0.30, 0.15, 0.24, 0.002 +19340108, -0.04, -0.56, -0.68, 0.002 +19340109, 1.15, -0.33, 1.47, 0.002 +19340110, 2.65, -0.49, 0.75, 0.002 +19340111, 0.56, 0.48, 0.47, 0.002 +19340112, -0.73, 2.12, 0.54, 0.002 +19340113, -0.08, -0.66, 0.44, 0.002 +19340115, 5.49, -0.79, 4.88, 0.002 +19340116, 0.52, 1.22, 1.04, 0.002 +19340117, -0.04, 0.85, 0.78, 0.002 +19340118, -0.13, -0.01, 0.59, 0.002 +19340119, 2.68, 0.74, 2.59, 0.002 +19340120, 0.21, 0.93, 0.67, 0.002 +19340122, -0.30, 0.63, -0.66, 0.002 +19340123, 1.38, 0.65, 0.52, 0.002 +19340124, 0.66, 0.44, 0.83, 0.002 +19340125, -0.23, 0.56, -1.11, 0.002 +19340126, -0.42, 0.56, 0.23, 0.002 +19340127, -0.18, -0.02, -0.21, 0.002 +19340129, 1.77, 0.59, 1.59, 0.002 +19340130, 1.38, 0.70, 1.21, 0.002 +19340131, -1.25, 0.89, -1.97, 0.002 +19340201, 2.34, -0.19, 2.28, 0.001 +19340202, -0.10, -0.40, 1.09, 0.001 +19340203, 1.23, -0.01, 1.53, 0.001 +19340205, 1.82, 0.50, 0.63, 0.001 +19340206, -0.09, 0.96, -0.26, 0.001 +19340207, -2.92, 0.00, -1.97, 0.001 +19340208, 0.57, 0.12, 1.13, 0.001 +19340209, -2.58, 0.72, -1.08, 0.001 +19340210, -0.56, -1.39, -0.82, 0.001 +19340213, 0.71, 0.72, 1.58, 0.001 +19340214, 0.84, 0.12, 0.50, 0.001 +19340215, 1.96, 1.14, 2.68, 0.001 +19340216, 0.32, 1.57, 0.06, 0.001 +19340217, 0.31, -0.24, 0.72, 0.001 +19340219, -1.58, 0.69, -0.89, 0.001 +19340220, 0.41, 0.32, 0.00, 0.001 +19340221, 0.35, 0.55, 0.31, 0.001 +19340223, -2.55, -0.16, -2.11, 0.001 +19340224, -1.49, -0.24, -1.67, 0.001 +19340226, -2.01, -0.80, -2.25, 0.001 +19340227, 0.79, 0.12, 1.04, 0.001 +19340228, -0.04, 1.15, -0.08, 0.001 +19340301, -0.25, -0.38, -0.29, 0.001 +19340302, 3.04, -0.03, 2.20, 0.001 +19340303, -0.10, 0.53, -0.15, 0.001 +19340305, -0.41, 0.40, -0.43, 0.001 +19340306, -0.95, 0.50, -0.31, 0.001 +19340307, -2.49, -0.01, -1.48, 0.001 +19340308, 1.57, -0.06, 0.20, 0.001 +19340309, -0.29, 0.80, 0.13, 0.001 +19340310, 0.10, 0.00, 0.01, 0.001 +19340312, 1.70, -0.39, 0.36, 0.001 +19340313, 0.17, 0.53, 0.30, 0.001 +19340314, 0.01, 0.52, -0.15, 0.001 +19340315, -1.45, 0.29, -1.74, 0.001 +19340316, 0.29, 0.38, -0.30, 0.001 +19340317, -0.92, 0.51, -0.40, 0.001 +19340319, -2.31, -0.48, -1.54, 0.001 +19340320, 1.49, -0.72, 0.33, 0.001 +19340321, -1.63, 0.35, -0.54, 0.001 +19340322, 1.64, -0.71, 0.37, 0.001 +19340323, -0.61, 0.89, -0.40, 0.001 +19340324, 1.47, -0.53, 0.26, 0.001 +19340326, 0.01, 0.12, 0.25, 0.001 +19340327, -2.77, -0.80, -1.72, 0.001 +19340328, 0.26, 0.72, 0.71, 0.001 +19340329, 1.54, -0.02, 1.15, 0.001 +19340331, 1.27, 0.00, 0.96, 0.001 +19340402, 0.27, 1.07, 0.15, 0.000 +19340403, 0.90, -0.20, 0.68, 0.000 +19340404, 0.43, 0.96, -0.13, 0.000 +19340405, 0.18, -0.14, -0.89, 0.000 +19340406, 0.29, -1.01, 0.37, 0.000 +19340407, -0.12, -0.05, 0.47, 0.000 +19340409, -0.36, 0.21, 0.26, 0.000 +19340410, 1.31, -0.31, 0.64, 0.000 +19340411, 0.06, 0.10, -0.10, 0.000 +19340412, -0.24, -0.11, -0.20, 0.000 +19340413, -0.26, 0.42, -0.59, 0.000 +19340414, -0.11, -0.03, 0.03, 0.000 +19340416, -1.57, -0.15, -1.65, 0.000 +19340417, 0.99, -0.13, -0.05, 0.000 +19340418, 1.47, 0.85, 0.20, 0.000 +19340419, 0.09, -0.06, 0.14, 0.000 +19340420, 1.29, 0.31, 0.73, 0.000 +19340421, -0.31, 1.03, -0.30, 0.000 +19340423, -0.43, 0.09, 0.04, 0.000 +19340424, -0.72, 0.01, 0.04, 0.000 +19340425, -0.47, 0.17, 0.01, 0.000 +19340426, -1.35, 0.12, -0.51, 0.000 +19340427, 0.14, -0.28, -0.05, 0.000 +19340428, -0.83, 0.31, -0.89, 0.000 +19340430, -2.35, -0.32, -2.15, 0.000 +19340501, -0.19, -0.79, 0.19, 0.000 +19340502, -1.98, 0.53, -0.67, 0.000 +19340503, 0.20, -0.31, -0.45, 0.000 +19340504, 0.28, 1.09, 1.02, 0.000 +19340505, -1.59, -0.22, -0.85, 0.000 +19340507, -3.47, -0.66, -3.72, 0.000 +19340508, 2.14, -1.50, 2.85, 0.000 +19340509, -1.30, 0.94, -0.71, 0.000 +19340510, -2.18, -0.35, -1.94, 0.000 +19340511, -0.98, 1.04, -0.58, 0.000 +19340512, -1.45, -0.91, -1.88, 0.000 +19340514, 0.24, -1.55, -0.06, 0.000 +19340515, 2.02, 0.57, 0.88, 0.000 +19340516, -0.36, 1.09, 0.56, 0.000 +19340517, 4.09, -0.88, 2.97, 0.000 +19340518, -0.96, 1.20, -0.41, 0.000 +19340519, -0.13, -0.05, 0.16, 0.000 +19340521, 0.27, 0.18, -0.65, 0.000 +19340522, -1.78, 0.49, -1.35, 0.000 +19340523, -1.12, -0.18, -0.34, 0.000 +19340524, 0.40, -0.31, 0.66, 0.000 +19340525, 1.03, 0.08, -0.07, 0.000 +19340526, 0.68, -0.09, -0.39, 0.000 +19340528, 0.70, -0.55, 0.94, 0.000 +19340529, -0.43, 0.22, -0.97, 0.000 +19340531, -1.40, 0.61, -1.11, 0.000 +19340601, -2.10, 0.47, -0.99, 0.000 +19340602, -0.34, -0.50, -0.09, 0.000 +19340604, 1.44, -0.70, 0.68, 0.000 +19340605, 2.14, -0.57, 1.36, 0.000 +19340606, 0.31, 0.17, 0.39, 0.000 +19340607, -0.20, 0.00, -1.24, 0.000 +19340608, 4.22, -1.47, 3.06, 0.000 +19340609, 0.56, 0.50, 1.02, 0.000 +19340611, -1.17, 0.02, -1.56, 0.000 +19340612, 1.23, -0.34, 1.04, 0.000 +19340613, 0.08, -0.20, -0.79, 0.000 +19340614, -1.61, 0.91, -0.91, 0.000 +19340615, 1.71, -1.74, 0.20, 0.000 +19340616, 1.42, -0.50, 1.05, 0.000 +19340618, -0.02, 0.16, -0.62, 0.000 +19340619, -1.57, 0.87, -1.07, 0.000 +19340620, -0.98, 0.33, -0.70, 0.000 +19340621, -0.80, 0.36, 0.01, 0.000 +19340622, -2.02, -0.29, -1.12, 0.000 +19340623, 0.70, 0.03, -0.22, 0.000 +19340625, -0.87, 0.58, -1.33, 0.000 +19340626, 1.83, -1.73, 0.18, 0.000 +19340627, -0.06, 0.67, 0.27, 0.000 +19340628, 0.52, -0.65, 0.21, 0.000 +19340629, -1.60, 1.12, -0.77, 0.000 +19340630, 0.07, 0.18, -0.45, 0.000 +19340702, -1.21, -0.18, -1.05, 0.000 +19340703, -0.12, -0.45, -0.08, 0.000 +19340705, 1.55, -1.04, 0.69, 0.000 +19340706, 0.76, -0.13, 0.28, 0.000 +19340707, -0.12, 0.26, -0.40, 0.000 +19340709, -0.07, 0.21, -0.62, 0.000 +19340710, 0.83, -0.48, 0.67, 0.000 +19340711, 0.43, 0.10, -0.27, 0.000 +19340712, -0.75, 0.89, -1.94, 0.000 +19340713, 0.01, -0.21, -0.06, 0.000 +19340714, 0.14, 0.72, -0.73, 0.000 +19340716, -2.03, -0.06, -1.33, 0.000 +19340717, -0.41, -1.51, 0.25, 0.000 +19340718, 1.39, -0.27, -0.23, 0.000 +19340719, -0.98, 0.23, 0.11, 0.000 +19340720, -2.59, -0.66, -1.84, 0.000 +19340721, -0.44, -1.57, -0.77, 0.000 +19340723, -3.39, -1.87, -2.66, 0.000 +19340724, -1.07, -0.70, -1.97, 0.000 +19340725, 0.63, -1.80, 1.44, 0.000 +19340726, -7.13, -1.81, -3.19, 0.000 +19340727, 2.29, -1.66, 1.42, 0.000 +19340728, 1.50, 3.73, 1.06, 0.000 +19340730, -0.53, -0.08, -0.25, 0.000 +19340731, 0.18, 0.25, -0.73, 0.000 +19340801, 3.02, 1.63, 0.47, 0.000 +19340802, 0.46, 0.68, 0.74, 0.000 +19340803, -0.96, 1.32, -0.93, 0.000 +19340804, -1.83, 0.74, -0.90, 0.000 +19340806, -0.46, -0.79, -0.01, 0.000 +19340807, -0.31, 0.67, -1.14, 0.000 +19340808, 1.75, -0.28, 1.28, 0.000 +19340809, 3.00, -0.30, 0.32, 0.000 +19340810, -1.65, 1.65, -0.53, 0.000 +19340811, -0.05, -0.52, -0.35, 0.000 +19340813, 2.44, -0.81, 1.31, 0.000 +19340814, -0.83, 1.05, -1.25, 0.000 +19340815, -0.14, 0.40, 0.05, 0.000 +19340816, 0.74, -0.16, 0.18, 0.000 +19340817, -0.74, 0.17, -0.18, 0.000 +19340818, -0.27, 0.11, 0.32, 0.000 +19340820, -0.41, 0.34, -1.19, 0.000 +19340821, 2.21, -1.72, 2.15, 0.000 +19340822, 2.25, 0.72, 1.11, 0.000 +19340823, -0.49, 0.36, 0.50, 0.000 +19340824, 1.51, -1.14, 1.16, 0.000 +19340825, 0.24, 0.44, 0.88, 0.000 +19340827, -1.42, 1.27, -0.56, 0.000 +19340828, -0.46, -0.39, -1.15, 0.000 +19340829, -0.60, 1.03, -0.43, 0.000 +19340830, -1.22, -0.71, -0.72, 0.000 +19340831, -0.03, -0.65, -0.27, 0.000 +19340901, 0.02, 0.37, 0.04, 0.000 +19340904, -0.65, -0.40, -0.33, 0.000 +19340905, 1.41, -0.71, 1.20, 0.000 +19340906, -1.40, 1.44, -0.94, 0.000 +19340907, -1.13, -0.78, -0.69, 0.000 +19340908, -0.18, 0.21, -0.05, 0.000 +19340910, -2.17, 0.92, -1.06, 0.000 +19340911, -0.05, -1.75, 0.80, 0.000 +19340912, 0.42, 0.19, -0.63, 0.000 +19340913, -0.26, -0.31, -0.30, 0.000 +19340914, -2.62, 0.23, -0.90, 0.000 +19340915, 0.39, -1.05, 0.22, 0.000 +19340917, -0.62, -0.41, -0.60, 0.000 +19340918, 0.69, 0.17, 0.00, 0.000 +19340919, 2.57, -0.77, 1.21, 0.000 +19340920, 0.01, 0.93, 0.65, 0.000 +19340921, 1.92, 0.07, 0.10, 0.000 +19340922, 0.24, 0.41, 0.16, 0.000 +19340924, -0.76, 0.30, -0.41, 0.000 +19340925, 2.47, -1.69, 1.21, 0.000 +19340926, -0.32, 1.47, -1.10, 0.000 +19340927, 0.94, -0.03, 0.30, 0.000 +19340928, -1.00, 0.57, 0.03, 0.000 +19340929, 0.04, -1.00, 0.06, 0.000 +19341001, -2.55, 0.98, -1.62, 0.000 +19341002, 0.49, -0.25, 0.46, 0.000 +19341003, -0.19, 0.51, 0.23, 0.000 +19341004, -0.24, -1.05, -0.38, 0.000 +19341005, 1.87, 0.98, -0.07, 0.000 +19341006, -0.21, 0.26, 0.19, 0.000 +19341008, -0.59, 0.20, -0.88, 0.000 +19341009, -0.84, 0.42, -0.76, 0.000 +19341010, 2.29, -0.56, 1.34, 0.000 +19341011, 1.56, 0.60, 0.95, 0.000 +19341013, -1.01, 0.63, -0.59, 0.000 +19341015, -0.70, 0.48, -0.74, 0.000 +19341016, 0.72, -0.27, 0.29, 0.000 +19341017, 0.22, -0.27, -0.79, 0.000 +19341018, -0.20, 0.00, -0.19, 0.000 +19341019, -0.54, -0.62, 0.62, 0.000 +19341020, 0.23, 0.32, -0.13, 0.000 +19341022, -0.20, 0.40, -0.83, 0.000 +19341023, -0.40, -0.53, -0.36, 0.000 +19341024, 1.58, -1.96, 2.95, 0.000 +19341025, -1.78, 1.88, -1.85, 0.000 +19341026, -1.47, -0.19, -1.51, 0.000 +19341027, 0.08, -0.35, 0.05, 0.000 +19341029, -0.47, -0.03, -0.57, 0.000 +19341030, 0.42, -0.71, -0.16, 0.000 +19341031, 0.40, -0.11, -0.49, 0.000 +19341101, -0.38, -0.21, -0.82, 0.000 +19341102, 1.16, 0.94, -0.59, 0.000 +19341103, 0.77, 0.91, 0.00, 0.000 +19341105, 0.83, 0.53, -0.16, 0.000 +19341107, 1.52, -0.81, 1.82, 0.000 +19341108, -0.39, 1.14, -0.48, 0.000 +19341109, 1.70, 0.09, -0.21, 0.000 +19341110, 0.34, 0.99, 0.55, 0.000 +19341113, -0.48, 0.73, -1.23, 0.000 +19341114, -0.06, 0.03, 0.16, 0.000 +19341115, 0.47, 1.61, -0.21, 0.000 +19341116, -0.84, 0.15, -2.03, 0.000 +19341117, -0.47, 0.88, 0.08, 0.000 +19341119, 0.18, 0.64, -0.12, 0.000 +19341120, 0.07, -1.03, -1.15, 0.000 +19341121, -0.09, 0.44, -0.75, 0.000 +19341122, 0.36, -0.13, 0.20, 0.000 +19341123, 1.32, 0.03, 0.76, 0.000 +19341124, 1.03, 0.18, 0.75, 0.000 +19341126, 0.91, -0.84, 1.60, 0.000 +19341127, -0.66, 0.54, 0.23, 0.000 +19341128, 0.89, -1.29, -0.36, 0.000 +19341130, -0.07, 0.36, 0.14, 0.000 +19341201, -0.07, 0.27, -0.20, 0.000 +19341203, -0.88, 0.28, -0.24, 0.000 +19341204, 0.86, -0.74, 0.72, 0.000 +19341205, 0.91, 0.93, -0.03, 0.000 +19341206, -0.02, 1.12, -0.54, 0.000 +19341207, -0.74, 0.07, 0.03, 0.000 +19341208, -0.53, -0.22, -0.36, 0.000 +19341210, -0.10, 0.14, -0.60, 0.000 +19341211, -1.77, -0.44, 0.18, 0.000 +19341212, 0.02, 0.08, -0.51, 0.000 +19341213, -0.40, 0.36, 0.25, 0.000 +19341214, -0.16, 0.75, -0.48, 0.000 +19341215, 0.17, -0.46, 0.53, 0.000 +19341217, 0.27, -0.44, 0.24, 0.000 +19341218, -0.02, 0.50, -0.65, 0.000 +19341219, -1.39, 0.41, -0.46, 0.000 +19341220, -0.18, -0.99, -0.05, 0.000 +19341221, 0.09, -0.34, -0.54, 0.000 +19341222, -0.03, 0.59, -1.27, 0.000 +19341224, 0.73, -0.22, -0.04, 0.000 +19341226, -0.60, 0.18, -0.43, 0.000 +19341227, -0.10, 0.01, -0.50, 0.000 +19341228, 3.37, 0.18, 1.61, 0.000 +19341229, 0.46, 0.85, 0.71, 0.000 +19341231, 0.64, 0.38, -0.40, 0.000 +19350102, 0.26, 0.45, -0.38, 0.001 +19350103, 0.58, 1.14, 0.61, 0.001 +19350104, -0.49, -0.03, 0.50, 0.001 +19350105, 0.66, 0.14, 0.85, 0.001 +19350107, 0.33, 0.11, 1.06, 0.001 +19350108, -0.91, 0.41, 0.35, 0.001 +19350109, -0.24, -0.52, -0.44, 0.001 +19350110, -0.10, 0.02, -0.48, 0.001 +19350111, -2.10, -0.67, -1.16, 0.001 +19350112, -0.92, 0.28, -0.45, 0.001 +19350114, 0.31, 0.35, -0.16, 0.001 +19350115, -2.22, -0.71, -1.29, 0.001 +19350116, 1.38, -0.40, 0.03, 0.001 +19350117, 0.51, 0.89, 0.24, 0.001 +19350118, 0.55, 0.72, 0.07, 0.001 +19350119, 0.55, -0.12, 1.31, 0.001 +19350121, 0.23, 0.28, -0.51, 0.001 +19350122, -0.67, -0.14, -0.55, 0.001 +19350123, 0.05, -0.21, -0.24, 0.001 +19350124, -0.44, 0.00, 0.17, 0.001 +19350125, 0.40, 0.18, -0.36, 0.001 +19350126, -0.25, 0.28, -0.44, 0.001 +19350128, -1.36, -0.83, -0.79, 0.001 +19350129, -0.77, -0.33, -0.61, 0.001 +19350130, 0.47, -0.15, 0.48, 0.001 +19350131, 0.78, -0.08, 0.46, 0.001 +19350201, -0.32, 0.58, -0.39, 0.001 +19350202, 0.27, -0.73, 0.29, 0.001 +19350204, -0.83, 0.80, -0.86, 0.001 +19350205, -0.96, -0.66, -1.08, 0.001 +19350206, -1.08, -0.33, -0.62, 0.001 +19350207, 0.94, -0.65, 0.96, 0.001 +19350208, 1.64, 0.73, -0.27, 0.001 +19350209, 0.41, 0.68, 0.87, 0.001 +19350211, -0.41, 0.04, -0.85, 0.001 +19350213, 0.12, -0.02, -0.32, 0.001 +19350214, 0.04, 0.18, 0.00, 0.001 +19350215, 0.65, 0.63, -0.53, 0.001 +19350216, -0.18, 0.07, -0.86, 0.001 +19350218, 2.90, -1.31, 2.92, 0.001 +19350219, -1.31, 1.47, -1.04, 0.001 +19350220, -1.28, 0.39, -1.02, 0.001 +19350221, -0.02, -0.38, -0.73, 0.001 +19350223, -1.50, 0.75, -1.97, 0.001 +19350225, -0.16, -0.64, -0.55, 0.001 +19350226, -0.94, -0.99, -2.42, 0.001 +19350227, 0.28, -1.42, 1.25, 0.001 +19350228, -0.13, 1.38, -0.27, 0.001 +19350301, 0.49, -0.10, 0.47, 0.000 +19350302, 0.20, 0.55, -0.47, 0.000 +19350304, -0.55, 0.20, -0.87, 0.000 +19350305, -2.52, 0.20, -1.87, 0.000 +19350306, -0.65, -1.21, -0.63, 0.000 +19350307, 1.07, -0.61, 0.29, 0.000 +19350308, -0.14, 0.63, -0.34, 0.000 +19350309, -0.62, 0.55, 0.48, 0.000 +19350311, -1.64, -0.55, -1.67, 0.000 +19350312, -1.78, -0.62, -1.46, 0.000 +19350313, 0.08, -1.98, 0.28, 0.000 +19350314, -1.18, -0.44, -1.06, 0.000 +19350315, 1.70, -0.70, -0.41, 0.000 +19350316, -0.16, 1.25, 0.76, 0.000 +19350318, -1.03, 0.16, -0.85, 0.000 +19350319, 1.35, -0.12, 0.56, 0.000 +19350320, -0.04, 0.66, -0.56, 0.000 +19350321, 1.70, -1.11, 1.79, 0.000 +19350322, 1.14, -0.51, 1.83, 0.000 +19350323, -0.72, 1.43, -0.68, 0.000 +19350325, -0.40, -0.26, -0.51, 0.000 +19350326, -0.83, 0.49, -0.82, 0.000 +19350327, 0.77, -1.26, 1.22, 0.000 +19350328, -0.11, 0.27, -1.01, 0.000 +19350329, 0.07, -0.58, -0.28, 0.000 +19350330, 0.21, -0.01, 0.81, 0.000 +19350401, 0.63, -0.77, 1.40, 0.001 +19350402, -0.36, 0.65, -1.18, 0.001 +19350403, -0.45, -0.44, -0.39, 0.001 +19350404, 1.14, -1.76, 2.27, 0.001 +19350405, 2.06, -0.65, 1.80, 0.001 +19350406, 0.53, 0.33, 1.19, 0.001 +19350408, -0.24, 1.24, -1.08, 0.001 +19350409, 1.68, -0.75, 1.51, 0.001 +19350410, -0.18, 1.75, -1.09, 0.001 +19350411, -0.62, 0.13, -0.72, 0.001 +19350412, 0.97, -1.47, 1.66, 0.001 +19350413, 1.09, 0.03, 0.76, 0.001 +19350415, 0.61, 0.66, -1.04, 0.001 +19350416, 0.21, 0.19, -0.31, 0.001 +19350417, -1.17, 0.63, -0.73, 0.001 +19350418, 1.28, -0.63, -0.03, 0.001 +19350420, 1.98, -0.01, 0.39, 0.001 +19350422, 0.50, 0.81, 0.07, 0.001 +19350423, 0.24, -0.99, 0.62, 0.001 +19350424, -0.75, 0.39, 0.06, 0.001 +19350425, 1.23, -0.99, 0.24, 0.001 +19350426, -0.35, -0.08, 0.16, 0.001 +19350427, -0.71, -0.37, -0.44, 0.001 +19350429, 0.41, -0.06, -0.64, 0.001 +19350430, -0.95, 0.42, -0.36, 0.001 +19350501, -0.37, 0.25, 0.52, 0.001 +19350502, 0.35, -0.37, 0.04, 0.001 +19350503, 1.32, -0.63, -0.06, 0.001 +19350504, 0.73, -0.52, -0.02, 0.001 +19350506, -0.64, 0.41, -0.06, 0.001 +19350507, -0.48, 0.38, -1.85, 0.001 +19350508, 2.48, -1.07, 0.83, 0.001 +19350509, 0.88, 0.34, 0.95, 0.001 +19350510, 0.50, -0.58, 0.22, 0.001 +19350511, 0.40, -0.76, 0.88, 0.001 +19350513, 0.01, 0.39, 0.42, 0.001 +19350514, 0.00, 0.51, -0.43, 0.001 +19350515, 0.49, -0.50, 0.12, 0.001 +19350516, 1.84, 0.62, 1.43, 0.001 +19350517, -0.33, -0.33, 0.22, 0.001 +19350518, -1.05, 0.70, -0.45, 0.001 +19350520, 0.07, -0.01, -0.36, 0.001 +19350521, 0.79, 0.10, -0.28, 0.001 +19350522, 0.56, -0.92, 0.00, 0.001 +19350523, 0.32, 0.67, 0.31, 0.001 +19350524, -0.28, -0.26, 0.89, 0.001 +19350525, -0.42, -0.88, 1.31, 0.001 +19350527, 0.61, -0.79, 0.56, 0.001 +19350528, -2.12, -0.39, -1.03, 0.001 +19350529, -1.33, -0.55, -0.22, 0.001 +19350531, -0.87, 0.15, -0.11, 0.001 +19350601, -0.76, -1.19, -0.04, 0.000 +19350603, 1.40, -0.18, -0.40, 0.000 +19350604, 2.25, -0.82, 0.63, 0.000 +19350605, 0.35, 0.41, -0.41, 0.000 +19350606, -0.58, -0.10, -0.58, 0.000 +19350607, 0.48, -0.62, 0.31, 0.000 +19350608, 0.75, -0.02, 0.21, 0.000 +19350610, 0.46, 0.42, -1.11, 0.000 +19350611, 1.18, -0.61, 1.31, 0.000 +19350612, -0.67, 1.60, -0.60, 0.000 +19350613, 0.47, -0.46, -0.22, 0.000 +19350614, 0.98, -0.39, 0.47, 0.000 +19350615, 0.42, -0.32, 0.76, 0.000 +19350617, -0.26, 0.28, -0.79, 0.000 +19350618, 0.29, -0.10, 0.73, 0.000 +19350619, -0.59, -0.19, -0.63, 0.000 +19350620, -0.75, -0.14, -0.49, 0.000 +19350621, 1.94, -0.29, 0.49, 0.000 +19350622, 1.03, -0.38, 0.00, 0.000 +19350624, -0.47, 0.32, -0.53, 0.000 +19350625, -1.31, 0.14, -0.24, 0.000 +19350626, -1.08, 0.43, -0.32, 0.000 +19350627, -0.29, -0.18, -0.47, 0.000 +19350628, 0.79, -0.36, 0.44, 0.000 +19350629, -0.16, 0.24, 0.08, 0.000 +19350701, 0.45, -0.30, 0.26, 0.001 +19350702, 0.06, -0.18, -0.93, 0.001 +19350703, 0.48, -0.44, 0.61, 0.001 +19350705, 1.01, -0.35, 0.58, 0.001 +19350706, 0.18, 0.46, -0.41, 0.001 +19350708, 1.02, 0.04, -0.61, 0.001 +19350709, -0.19, 0.15, 0.74, 0.001 +19350710, 0.58, 0.07, 0.12, 0.001 +19350711, -1.00, 0.69, -1.09, 0.001 +19350712, 0.69, -0.14, 0.09, 0.001 +19350713, -0.04, 0.36, 0.16, 0.001 +19350715, -0.16, 0.15, 2.04, 0.001 +19350716, 0.10, -0.42, -1.31, 0.001 +19350717, 0.74, 0.50, -0.19, 0.001 +19350718, 0.07, 0.59, 0.04, 0.001 +19350719, -0.82, 0.69, -0.74, 0.001 +19350720, 0.23, -0.24, 0.24, 0.001 +19350722, 1.36, -0.61, 1.42, 0.001 +19350723, 0.02, 0.12, 0.71, 0.001 +19350724, 0.47, -0.01, 0.14, 0.001 +19350725, -0.81, 0.48, -0.25, 0.001 +19350726, 0.55, -0.09, 0.59, 0.001 +19350727, 0.92, -0.31, 1.18, 0.001 +19350729, 1.08, -0.20, 2.40, 0.001 +19350730, -0.57, 0.70, -0.89, 0.001 +19350731, 0.94, -0.34, 1.40, 0.001 +19350801, -0.29, 0.90, -0.03, 0.000 +19350802, -0.60, -0.01, -0.03, 0.000 +19350803, 1.28, -0.93, 1.60, 0.000 +19350805, 0.63, 0.92, 0.91, 0.000 +19350806, -0.17, 0.69, 0.53, 0.000 +19350807, -0.27, -0.29, -0.69, 0.000 +19350808, 0.33, 0.56, -0.20, 0.000 +19350809, 1.80, -0.67, 1.55, 0.000 +19350810, 0.82, -0.11, 1.01, 0.000 +19350812, 0.21, 0.14, 2.62, 0.000 +19350813, 0.60, 0.38, 2.21, 0.000 +19350814, 0.21, 0.52, -0.42, 0.000 +19350815, -0.65, 0.99, -1.29, 0.000 +19350816, 0.80, -0.35, 1.94, 0.000 +19350817, 0.39, 0.40, 1.44, 0.000 +19350819, -1.87, 0.96, -2.29, 0.000 +19350820, -0.02, -0.92, 0.80, 0.000 +19350821, 0.76, 1.37, 0.41, 0.000 +19350822, 0.48, -0.16, 0.58, 0.000 +19350823, -0.01, 1.30, -0.79, 0.000 +19350824, -1.78, -0.60, -2.57, 0.000 +19350826, 1.06, -0.25, 0.66, 0.000 +19350827, -2.40, 0.08, -3.21, 0.000 +19350828, -0.22, -0.32, 0.10, 0.000 +19350829, 0.47, 0.93, 0.71, 0.000 +19350830, 0.29, -0.21, 0.39, 0.000 +19350831, 0.79, 0.38, 0.02, 0.000 +19350903, -0.75, -0.17, -0.41, 0.001 +19350904, 1.12, -0.77, 0.21, 0.001 +19350905, 1.06, 0.71, 1.90, 0.001 +19350906, 1.08, -0.05, 0.47, 0.001 +19350907, 0.71, -0.25, 0.42, 0.001 +19350909, 0.18, -0.11, -0.81, 0.001 +19350910, 0.58, 0.28, -1.12, 0.001 +19350911, 0.44, 0.17, 0.31, 0.001 +19350912, -0.84, -0.05, -0.26, 0.001 +19350913, 0.08, 0.17, 0.32, 0.001 +19350914, -0.16, -0.18, -0.38, 0.001 +19350916, -0.42, -0.31, -0.17, 0.001 +19350917, 0.28, -0.07, -0.35, 0.001 +19350918, 0.72, 0.44, 0.47, 0.001 +19350919, -1.64, 0.06, -0.56, 0.001 +19350920, -2.40, 0.20, -1.65, 0.001 +19350921, 0.21, -0.11, 0.07, 0.001 +19350923, 0.76, 0.18, 0.79, 0.001 +19350924, 1.03, 0.45, 0.23, 0.001 +19350925, 0.39, 0.14, 0.00, 0.001 +19350926, 0.05, -0.07, -0.73, 0.001 +19350927, -0.09, 0.60, -0.42, 0.001 +19350928, 0.13, 0.64, -0.85, 0.001 +19350930, 0.17, -0.33, -1.31, 0.001 +19351001, -0.92, 0.21, -0.60, 0.000 +19351002, -3.05, -0.96, -2.12, 0.000 +19351003, 1.19, 0.10, -0.26, 0.000 +19351004, 0.76, 1.21, 0.77, 0.000 +19351005, 0.71, 0.32, 0.63, 0.000 +19351007, 0.62, -0.32, 1.23, 0.000 +19351008, -0.49, 0.25, -1.03, 0.000 +19351009, 0.29, -0.09, 0.17, 0.000 +19351010, 1.86, 0.98, 0.44, 0.000 +19351011, 0.27, -0.38, -0.27, 0.000 +19351014, 1.06, -0.48, -0.56, 0.000 +19351015, 0.70, -0.39, 0.75, 0.000 +19351016, -0.25, 0.25, -1.33, 0.000 +19351017, -0.35, 0.43, -0.70, 0.000 +19351018, -0.25, 0.57, -0.80, 0.000 +19351019, 1.40, -0.06, -0.33, 0.000 +19351021, 1.19, 0.65, -0.88, 0.000 +19351022, 0.15, -0.78, 2.52, 0.000 +19351023, 0.75, 0.02, -0.21, 0.000 +19351024, 0.19, 0.09, -0.86, 0.000 +19351025, 0.90, 0.89, 0.10, 0.000 +19351026, 0.70, 0.11, 0.23, 0.000 +19351028, -0.45, -0.01, 0.58, 0.000 +19351029, -0.15, -0.18, 0.43, 0.000 +19351030, -0.69, -0.33, -0.30, 0.000 +19351031, 0.78, 0.36, 0.44, 0.000 +19351101, 1.02, 0.68, 0.19, 0.001 +19351102, 0.02, 0.06, 0.27, 0.001 +19351104, 0.28, -0.18, 0.50, 0.001 +19351106, 1.62, -0.66, 0.37, 0.001 +19351107, -0.30, -0.11, -0.55, 0.001 +19351108, 0.60, -0.23, 0.47, 0.001 +19351109, 0.01, -0.13, -0.47, 0.001 +19351112, -0.99, -0.36, -1.01, 0.001 +19351113, 1.20, 0.10, 2.00, 0.001 +19351114, 1.57, 0.03, 1.97, 0.001 +19351115, 0.45, 0.44, 0.16, 0.001 +19351116, 0.63, 0.18, 0.68, 0.001 +19351118, -0.38, 0.71, 0.19, 0.001 +19351119, 1.26, 0.21, 0.70, 0.001 +19351120, -0.91, -0.41, -0.08, 0.001 +19351121, 1.07, 0.98, 2.17, 0.001 +19351122, -1.69, 0.12, -0.82, 0.001 +19351123, 1.64, 1.29, 2.25, 0.001 +19351125, -0.83, 0.79, 0.25, 0.001 +19351126, -1.41, -0.38, 0.00, 0.001 +19351127, 0.89, 0.54, 2.23, 0.001 +19351129, -0.93, 0.16, -0.46, 0.001 +19351130, 0.01, 0.22, 0.19, 0.001 +19351202, -1.24, 0.39, 0.40, 0.001 +19351203, 2.14, -0.62, 1.07, 0.001 +19351204, 0.97, 0.15, 1.94, 0.001 +19351205, 0.05, 0.32, -0.30, 0.001 +19351206, -0.05, 0.05, -0.25, 0.001 +19351207, 0.84, -0.21, 0.81, 0.001 +19351209, 0.29, -0.15, 0.12, 0.001 +19351210, -1.20, 0.07, -1.37, 0.001 +19351211, 0.34, 0.47, -0.13, 0.001 +19351212, -0.93, -0.06, -0.91, 0.001 +19351213, -0.95, 0.04, -0.98, 0.001 +19351214, 0.28, 0.21, 0.09, 0.001 +19351216, -0.87, -0.19, -0.75, 0.001 +19351217, 0.76, -0.19, 0.00, 0.001 +19351218, -0.07, 0.15, 0.37, 0.001 +19351219, -0.55, 0.33, -1.41, 0.001 +19351220, 0.48, -0.93, 0.08, 0.001 +19351221, 0.58, 0.58, 0.43, 0.001 +19351223, 0.24, -0.42, -0.10, 0.001 +19351224, 0.63, -0.67, 0.78, 0.001 +19351226, 0.38, 0.54, 0.22, 0.001 +19351227, -0.09, 0.07, -1.05, 0.001 +19351228, -0.54, -0.68, 0.07, 0.001 +19351230, 1.87, 0.35, 1.17, 0.001 +19351231, 1.21, 0.52, 0.77, 0.001 +19360102, 0.32, 1.37, 0.19, 0.001 +19360103, 0.89, 0.32, 1.45, 0.001 +19360104, -0.28, 0.40, 0.50, 0.001 +19360106, -0.59, -0.51, -0.61, 0.001 +19360107, 1.37, -0.28, 2.13, 0.001 +19360108, 0.78, -0.07, -0.08, 0.001 +19360109, -0.36, 0.51, -0.53, 0.001 +19360110, 0.89, 1.89, 0.49, 0.001 +19360111, -0.21, 0.50, 0.13, 0.001 +19360113, 0.28, -0.73, 1.61, 0.001 +19360114, 0.51, 0.46, 0.55, 0.001 +19360115, -0.55, 0.25, -0.26, 0.001 +19360116, 0.36, 0.74, 1.23, 0.001 +19360117, -0.12, 0.48, -0.84, 0.001 +19360118, -0.77, -0.46, -0.99, 0.001 +19360120, -0.59, 0.11, -0.91, 0.001 +19360121, -0.47, -0.52, -0.28, 0.001 +19360122, 2.00, 0.52, 2.37, 0.001 +19360123, 0.95, 0.02, 1.79, 0.001 +19360124, -0.16, 0.05, -0.91, 0.001 +19360125, 0.36, -0.83, 0.14, 0.001 +19360127, 0.51, 0.35, 0.80, 0.001 +19360128, 0.08, -0.11, 0.27, 0.001 +19360129, 0.75, 0.21, 0.16, 0.001 +19360130, -0.49, 0.06, 0.68, 0.001 +19360131, 1.29, 0.16, 1.03, 0.001 +19360201, -0.18, -0.19, -0.45, 0.001 +19360203, 0.95, -0.10, 0.62, 0.001 +19360204, 0.38, 0.46, -0.11, 0.001 +19360205, -0.20, 0.13, 0.29, 0.001 +19360206, 0.38, 0.58, 0.19, 0.001 +19360207, -0.13, 0.01, 0.37, 0.001 +19360208, 0.11, 0.20, -0.03, 0.001 +19360210, 0.61, -0.28, 1.18, 0.001 +19360211, 0.91, -1.16, 1.42, 0.001 +19360213, 0.47, -0.80, 0.22, 0.001 +19360214, -0.21, 0.19, -0.27, 0.001 +19360215, 0.39, -0.05, 0.68, 0.001 +19360217, -1.15, -0.56, -0.55, 0.001 +19360218, 0.94, 0.97, 1.08, 0.001 +19360219, -0.35, 0.18, -1.25, 0.001 +19360220, 1.17, -0.38, 1.64, 0.001 +19360221, -0.09, 0.60, -0.16, 0.001 +19360224, -0.76, 0.27, -0.20, 0.001 +19360225, -1.83, -0.15, -0.80, 0.001 +19360226, -0.39, 0.50, -0.44, 0.001 +19360227, 2.19, 0.01, 2.33, 0.001 +19360228, -0.28, 0.20, -0.51, 0.001 +19360229, -0.39, 0.26, -0.46, 0.001 +19360302, 0.92, 0.00, 0.92, 0.001 +19360303, 1.30, 0.20, -0.80, 0.001 +19360304, 0.14, -0.02, 0.44, 0.001 +19360305, 0.34, 0.21, 0.01, 0.001 +19360306, 0.36, 0.10, -0.78, 0.001 +19360307, -0.65, 0.33, -0.57, 0.001 +19360309, -2.62, 0.00, -1.53, 0.001 +19360310, 0.99, -0.65, 0.81, 0.001 +19360311, 1.12, 1.33, -0.46, 0.001 +19360312, -2.44, -0.59, -1.16, 0.001 +19360313, -1.89, -1.00, -0.34, 0.001 +19360314, 2.47, 0.77, 1.23, 0.001 +19360316, -0.28, -0.10, 0.62, 0.001 +19360317, 1.73, -0.04, 0.63, 0.001 +19360318, -0.33, -0.22, -0.54, 0.001 +19360319, 0.82, -0.07, -0.48, 0.001 +19360320, -0.25, -0.04, -0.15, 0.001 +19360321, -0.49, 0.55, -0.30, 0.001 +19360323, 0.68, 0.18, 0.76, 0.001 +19360324, -0.49, -0.14, -0.34, 0.001 +19360325, 0.71, -0.06, -0.46, 0.001 +19360326, -0.29, -0.44, 0.83, 0.001 +19360327, -1.34, -0.72, 0.20, 0.001 +19360328, 0.09, 0.72, -0.04, 0.001 +19360330, -0.08, 0.43, -0.08, 0.001 +19360331, 0.59, 0.03, -0.05, 0.001 +19360401, 1.42, -0.06, 0.74, 0.001 +19360402, 0.88, -0.70, 1.03, 0.001 +19360403, -0.26, 0.15, -0.70, 0.001 +19360404, 0.75, -0.64, 0.89, 0.001 +19360406, 0.43, -0.58, 0.86, 0.001 +19360407, -0.42, -0.99, -0.58, 0.001 +19360408, -0.04, -0.80, 0.79, 0.001 +19360409, -0.37, -0.65, 0.72, 0.001 +19360411, 0.29, 0.25, 0.48, 0.001 +19360413, -0.19, 0.22, 0.66, 0.001 +19360414, -1.74, -0.35, -0.98, 0.001 +19360415, 0.82, 0.33, -0.19, 0.001 +19360416, -0.40, -0.56, 0.43, 0.001 +19360417, -0.56, -0.03, -0.83, 0.001 +19360418, -0.85, -0.66, -0.16, 0.001 +19360420, -2.17, -0.65, -1.18, 0.001 +19360421, -0.22, -0.49, -0.59, 0.001 +19360422, 1.35, 0.61, 1.12, 0.001 +19360423, -2.70, -0.32, -1.39, 0.001 +19360424, 0.06, 0.00, -0.40, 0.001 +19360425, 0.61, 0.34, -0.17, 0.001 +19360427, -3.69, -1.54, -2.57, 0.001 +19360428, -0.21, 0.45, 1.02, 0.001 +19360429, -2.40, 0.90, -2.39, 0.001 +19360430, 1.37, -0.89, 1.41, 0.001 +19360501, 0.74, 1.04, -0.42, 0.001 +19360502, -0.43, 0.07, 0.00, 0.001 +19360504, 0.26, 0.14, -0.05, 0.001 +19360505, 1.22, 0.39, 0.32, 0.001 +19360506, 1.16, -0.33, 1.26, 0.001 +19360507, -1.75, 0.13, -0.89, 0.001 +19360508, -0.07, 0.08, -0.90, 0.001 +19360509, 0.64, 0.02, 0.37, 0.001 +19360511, -0.80, 0.27, -0.81, 0.001 +19360512, -0.04, -0.29, -0.03, 0.001 +19360513, 0.86, -0.45, 0.77, 0.001 +19360514, 2.40, 0.44, 1.02, 0.001 +19360515, 0.08, 0.14, -0.09, 0.001 +19360516, -0.02, -0.26, 0.32, 0.001 +19360518, -0.40, 0.17, -0.65, 0.001 +19360519, -2.18, -0.41, -1.13, 0.001 +19360520, 0.68, -0.28, -0.10, 0.001 +19360521, -0.21, 0.22, 0.36, 0.001 +19360522, 0.81, -0.27, 0.86, 0.001 +19360523, 0.77, 0.15, 0.71, 0.001 +19360525, 0.12, -0.51, 0.00, 0.001 +19360526, 1.26, -0.10, 0.88, 0.001 +19360527, 0.01, 0.38, 0.86, 0.001 +19360528, -0.54, 0.09, -0.95, 0.001 +19360529, 0.64, -0.08, 0.88, 0.001 +19360601, -0.04, -0.15, -0.21, 0.001 +19360602, -0.19, -0.39, -0.24, 0.001 +19360603, -0.20, 0.36, -0.77, 0.001 +19360604, -1.21, 0.18, -0.47, 0.001 +19360605, -0.11, -0.48, -0.38, 0.001 +19360606, 0.45, -0.04, 0.75, 0.001 +19360608, 0.91, -0.17, 0.17, 0.001 +19360609, 0.91, -0.21, 0.44, 0.001 +19360610, 0.45, 0.05, 0.16, 0.001 +19360611, 1.14, -0.64, 0.18, 0.001 +19360612, -0.90, 0.42, -0.33, 0.001 +19360613, 0.58, -0.79, 0.11, 0.001 +19360615, 0.07, 0.35, -0.48, 0.001 +19360616, 0.98, -0.84, 1.23, 0.001 +19360617, -0.18, 0.33, -0.02, 0.001 +19360618, 0.26, -0.44, 0.20, 0.001 +19360619, -0.60, 0.11, -1.03, 0.001 +19360620, 0.35, -0.18, 0.12, 0.001 +19360622, 0.94, -0.16, 0.64, 0.001 +19360623, -0.35, -0.10, -0.26, 0.001 +19360624, 0.78, 0.13, 0.31, 0.001 +19360625, -0.86, -0.04, -0.49, 0.001 +19360626, -0.41, -0.09, -0.10, 0.001 +19360627, 0.11, -0.21, 0.09, 0.001 +19360629, -0.34, 0.09, -0.64, 0.001 +19360630, -0.11, -0.40, 0.02, 0.001 +19360701, 0.26, -0.67, -0.10, 0.001 +19360702, -0.15, -0.18, -0.04, 0.001 +19360703, 0.69, 0.06, -0.13, 0.001 +19360706, -0.49, 0.27, -0.47, 0.001 +19360707, -0.81, -0.15, -0.19, 0.001 +19360708, 0.60, -0.26, 0.66, 0.001 +19360709, 1.17, 0.34, 0.33, 0.001 +19360710, 1.73, -0.07, 0.77, 0.001 +19360711, 0.53, 0.58, 0.29, 0.001 +19360713, 0.27, 0.25, 0.24, 0.001 +19360714, 1.05, 0.04, 0.20, 0.001 +19360715, -0.03, -0.21, 0.80, 0.001 +19360716, 0.08, 0.31, -0.03, 0.001 +19360717, 0.31, 0.00, -0.12, 0.001 +19360718, 0.54, -0.10, 0.22, 0.001 +19360720, 0.36, -0.30, 0.09, 0.001 +19360721, 0.50, 0.09, -0.44, 0.001 +19360722, -0.43, -0.23, -0.14, 0.001 +19360723, 0.33, 0.64, 0.75, 0.001 +19360724, -0.21, 0.49, 0.27, 0.001 +19360725, 0.62, -0.20, -0.17, 0.001 +19360727, 0.77, -0.66, 0.62, 0.001 +19360728, -0.09, -0.33, -0.08, 0.001 +19360729, -0.70, 0.61, -0.39, 0.001 +19360730, 0.41, 0.27, -0.26, 0.001 +19360731, -0.76, 0.58, -0.11, 0.001 +19360801, 0.03, -0.12, 0.13, 0.001 +19360803, 0.23, -0.19, -0.58, 0.001 +19360804, -0.01, -0.12, -0.08, 0.001 +19360805, -0.46, 0.28, -0.06, 0.001 +19360806, 0.36, 0.11, 0.25, 0.001 +19360807, 1.17, 0.03, 0.88, 0.001 +19360808, 0.70, -0.55, 0.75, 0.001 +19360810, -0.21, -0.53, 0.10, 0.001 +19360811, -0.56, 0.22, -0.50, 0.001 +19360812, 0.46, 0.02, 0.90, 0.001 +19360813, -0.30, 0.30, 0.48, 0.001 +19360814, -1.12, 0.29, -0.05, 0.001 +19360815, 0.15, 0.07, 0.08, 0.001 +19360817, -0.58, 0.45, -0.38, 0.001 +19360818, 0.22, -0.11, -0.12, 0.001 +19360819, 0.48, 0.20, 0.77, 0.001 +19360820, -0.50, 0.57, -0.80, 0.001 +19360821, -2.67, -0.09, -1.14, 0.001 +19360822, 0.87, -0.09, 0.76, 0.001 +19360824, 0.76, -0.43, 0.42, 0.001 +19360825, 0.35, 0.31, 0.11, 0.001 +19360826, -0.64, -0.08, -0.20, 0.001 +19360827, 1.68, -0.31, 0.89, 0.001 +19360828, 0.35, -0.03, 0.82, 0.001 +19360829, 0.16, 0.35, 1.08, 0.001 +19360831, 0.18, 0.10, -0.56, 0.001 +19360901, -0.17, 0.31, 0.42, 0.000 +19360902, 0.35, 0.38, 0.10, 0.000 +19360903, -0.21, 0.28, -0.24, 0.000 +19360904, 0.61, 0.05, 0.40, 0.000 +19360905, 0.57, 0.32, 0.39, 0.000 +19360908, 0.89, -0.63, 0.48, 0.000 +19360909, -0.51, 0.56, -0.34, 0.000 +19360910, 0.08, 0.40, -0.08, 0.000 +19360911, -0.12, -0.03, -0.04, 0.000 +19360912, -0.27, 0.16, -0.18, 0.000 +19360914, -0.55, 0.07, -0.44, 0.000 +19360915, -0.21, -0.15, 0.21, 0.000 +19360916, -0.98, 0.50, -0.37, 0.000 +19360917, 0.70, -0.43, 0.22, 0.000 +19360918, 0.90, 0.39, 0.45, 0.000 +19360919, 0.64, 0.07, 0.65, 0.000 +19360921, 0.16, 0.32, -0.28, 0.000 +19360922, 0.22, -0.23, -0.24, 0.000 +19360923, -0.31, -0.05, -0.55, 0.000 +19360924, 0.06, -0.20, 0.38, 0.000 +19360925, -1.44, -0.05, -0.30, 0.000 +19360926, 0.93, 0.32, 0.53, 0.000 +19360928, 0.32, 0.33, -0.01, 0.000 +19360929, -0.18, 0.16, -0.36, 0.000 +19360930, -0.44, 0.19, 0.12, 0.000 +19361001, 0.13, 0.55, -0.16, 0.001 +19361002, 1.75, 0.24, 1.27, 0.001 +19361003, 0.93, -0.18, 0.37, 0.001 +19361005, 0.12, 0.06, 0.12, 0.001 +19361006, 0.67, -0.29, -0.22, 0.001 +19361007, 0.29, -0.76, 0.38, 0.001 +19361008, 0.49, -0.11, 0.44, 0.001 +19361009, 0.38, 0.46, -0.43, 0.001 +19361010, 0.51, 0.02, -0.05, 0.001 +19361013, -0.16, -0.60, 0.34, 0.001 +19361014, -0.27, 0.02, -0.12, 0.001 +19361015, -0.11, 0.16, 0.40, 0.001 +19361016, 1.00, 0.24, 0.62, 0.001 +19361017, 0.45, 0.20, -0.04, 0.001 +19361019, 0.13, -0.27, 0.04, 0.001 +19361020, -0.13, -0.87, -0.33, 0.001 +19361021, 0.36, 0.00, 0.43, 0.001 +19361022, -0.68, -0.21, -0.61, 0.001 +19361023, 0.36, 0.14, -0.42, 0.001 +19361024, 0.11, 0.14, 0.04, 0.001 +19361026, -2.26, -0.03, -0.49, 0.001 +19361027, 1.45, -0.05, 0.30, 0.001 +19361028, 0.15, 0.20, -0.03, 0.001 +19361029, 1.20, -0.47, 0.71, 0.001 +19361030, 0.15, -0.58, 0.01, 0.001 +19361031, 0.04, -0.20, -0.14, 0.001 +19361102, -0.30, 0.04, 0.21, 0.000 +19361104, 1.66, 1.07, -0.43, 0.000 +19361105, 1.11, 0.38, 0.10, 0.000 +19361106, -0.54, 1.04, -0.71, 0.000 +19361107, 1.26, 0.13, 0.26, 0.000 +19361109, 0.40, 0.87, 0.15, 0.000 +19361110, -0.24, 0.50, -0.23, 0.000 +19361112, -0.83, 0.44, -1.66, 0.000 +19361113, -0.81, 0.31, -1.04, 0.000 +19361114, -0.45, 0.88, -0.04, 0.000 +19361116, 1.38, 0.16, 0.85, 0.000 +19361117, 1.36, 0.59, 0.67, 0.000 +19361118, -0.39, -0.08, -0.33, 0.000 +19361119, -0.71, 0.06, -0.47, 0.000 +19361120, -0.90, -0.26, -0.35, 0.000 +19361121, 0.75, 0.20, 0.54, 0.000 +19361123, -2.08, -0.14, -0.46, 0.000 +19361124, 1.55, 0.09, 0.37, 0.000 +19361125, -0.21, 0.64, 0.22, 0.000 +19361127, 1.54, 0.54, 1.60, 0.000 +19361128, 0.20, 0.55, -0.01, 0.000 +19361130, -0.37, 0.44, -0.15, 0.000 +19361201, -0.60, 0.65, -0.51, 0.000 +19361202, -0.88, 0.17, 0.30, 0.000 +19361203, 0.51, -0.13, 0.63, 0.000 +19361204, 0.06, -0.27, -0.43, 0.000 +19361205, 0.13, 0.42, 0.08, 0.000 +19361207, -0.66, 0.35, -0.27, 0.000 +19361208, 0.16, 0.20, 0.47, 0.000 +19361209, 0.41, 0.30, 0.89, 0.000 +19361210, 0.77, 0.60, 0.77, 0.000 +19361211, -0.24, 1.05, -0.31, 0.000 +19361212, 0.13, 0.15, 0.44, 0.000 +19361214, 0.77, -0.26, 0.34, 0.000 +19361215, -0.10, -0.30, 0.09, 0.000 +19361216, -0.19, -0.52, -0.16, 0.000 +19361217, -0.45, 0.43, -0.18, 0.000 +19361218, -0.96, -0.49, -0.14, 0.000 +19361219, -0.92, -0.43, -0.15, 0.000 +19361221, -1.17, 0.77, -0.12, 0.000 +19361222, 1.13, 0.10, 0.56, 0.000 +19361223, 1.01, 0.31, -0.26, 0.000 +19361224, 0.29, 0.35, 0.23, 0.000 +19361228, -0.67, -0.61, 0.38, 0.000 +19361229, 0.22, -0.44, 0.84, 0.000 +19361230, 1.82, 0.33, 0.65, 0.000 +19361231, -0.29, 0.71, -0.38, 0.000 +19370102, -0.83, 0.19, -0.06, 0.000 +19370104, -0.49, 0.20, 0.49, 0.000 +19370105, 0.78, 0.03, 0.41, 0.000 +19370106, 0.15, -0.11, 0.26, 0.000 +19370107, 1.82, 0.40, 0.50, 0.000 +19370108, 0.38, 0.69, 0.56, 0.000 +19370109, -0.05, 0.54, 0.14, 0.000 +19370111, 0.49, 0.39, 0.98, 0.000 +19370112, 0.02, -0.04, -0.25, 0.000 +19370113, 0.17, 0.31, 0.25, 0.000 +19370114, 0.10, 0.43, -1.14, 0.000 +19370115, 0.30, 0.30, 0.27, 0.000 +19370116, 0.64, 0.41, 0.13, 0.000 +19370118, -0.37, -0.05, -0.28, 0.000 +19370119, -0.73, -0.37, -0.23, 0.000 +19370120, 1.06, 0.60, 0.73, 0.000 +19370121, 0.59, 0.05, 0.09, 0.000 +19370122, -0.48, 0.44, 0.35, 0.000 +19370123, 0.23, -0.10, -0.15, 0.000 +19370125, -0.64, -0.30, -1.02, 0.000 +19370126, -1.39, -0.62, -0.53, 0.000 +19370127, 0.60, 0.49, 0.24, 0.000 +19370128, 0.03, 0.23, 0.24, 0.000 +19370129, 0.57, 0.10, 0.34, 0.000 +19370130, 0.41, 0.04, 0.34, 0.000 +19370201, 0.27, 0.14, 0.08, 0.001 +19370202, 0.68, -0.59, 0.31, 0.001 +19370203, 0.59, -0.04, 1.13, 0.001 +19370204, 0.09, 0.21, -0.30, 0.001 +19370205, -1.37, -0.38, -0.50, 0.001 +19370206, 0.87, 0.86, 0.84, 0.001 +19370208, 0.48, 0.54, 0.65, 0.001 +19370209, -0.32, 0.04, -0.57, 0.001 +19370210, 0.72, -0.02, 1.19, 0.001 +19370211, 0.45, -0.70, -0.40, 0.001 +19370213, -0.17, 0.37, -0.51, 0.001 +19370215, -0.71, 0.23, -0.35, 0.001 +19370216, 0.10, -0.11, 0.47, 0.001 +19370217, -0.13, 0.08, 0.57, 0.001 +19370218, 0.29, -0.09, 0.66, 0.001 +19370219, 0.50, -0.19, 1.03, 0.001 +19370220, -0.13, -0.09, 0.50, 0.001 +19370223, -1.79, -0.34, -0.62, 0.001 +19370224, 0.31, 0.33, 0.10, 0.001 +19370225, -0.15, 0.65, -0.15, 0.001 +19370226, 0.27, 0.21, 0.25, 0.001 +19370227, 0.31, -0.27, 0.08, 0.001 +19370301, 0.16, 0.02, 0.55, 0.001 +19370302, 0.95, -0.11, 0.21, 0.001 +19370303, 1.11, -0.63, 1.56, 0.001 +19370304, -0.60, -0.17, -0.31, 0.001 +19370305, 0.91, -0.26, 1.21, 0.001 +19370306, 0.33, -0.06, 0.67, 0.001 +19370308, -0.42, -0.14, 0.35, 0.001 +19370309, 0.12, -0.36, 0.34, 0.001 +19370310, 0.54, -0.11, 0.54, 0.001 +19370311, -1.00, -0.36, -0.45, 0.001 +19370312, -0.35, 0.59, 0.35, 0.001 +19370313, -0.14, 0.38, -0.19, 0.001 +19370315, -0.61, 1.51, 1.61, 0.001 +19370316, 0.43, 0.33, 1.10, 0.001 +19370317, -0.36, -0.01, 1.56, 0.001 +19370318, -1.91, -0.42, -1.23, 0.001 +19370319, -0.06, 0.33, -0.01, 0.001 +19370320, -0.20, 0.01, 0.11, 0.001 +19370322, -2.66, -0.65, -1.75, 0.001 +19370323, 1.30, -0.05, 1.41, 0.001 +19370324, 0.89, 0.17, 0.17, 0.001 +19370325, -0.07, 0.19, -0.42, 0.001 +19370327, 0.35, 0.05, 0.53, 0.001 +19370329, -0.44, 0.17, 0.00, 0.001 +19370330, 1.34, -0.82, 1.24, 0.001 +19370331, 0.21, 0.20, -0.43, 0.001 +19370401, -0.88, -0.01, -0.66, 0.001 +19370402, -1.20, -0.70, -0.93, 0.001 +19370403, 0.39, 0.26, 0.45, 0.001 +19370405, 0.40, -0.10, 0.10, 0.001 +19370406, -0.65, 0.11, -0.52, 0.001 +19370407, -2.97, -0.70, -1.14, 0.001 +19370408, 0.23, -0.32, 0.39, 0.001 +19370409, 0.41, 0.53, -0.01, 0.001 +19370410, -0.13, 0.47, -0.19, 0.001 +19370412, 0.50, -0.44, 0.33, 0.001 +19370413, 1.11, 0.63, 0.05, 0.001 +19370414, 0.15, 0.11, 0.05, 0.001 +19370415, -0.35, -0.09, 0.04, 0.001 +19370416, -0.43, -0.26, -0.29, 0.001 +19370417, -0.27, 0.40, -0.63, 0.001 +19370419, 0.41, -0.39, 0.57, 0.001 +19370420, 0.28, -0.20, 0.21, 0.001 +19370421, 1.07, -0.55, -0.44, 0.001 +19370422, -1.18, 0.32, -0.28, 0.001 +19370423, -1.49, 0.09, -0.03, 0.001 +19370424, -0.88, -0.72, -0.12, 0.001 +19370426, -3.18, -1.04, -1.47, 0.001 +19370427, 1.28, -0.81, 0.42, 0.001 +19370428, -2.91, -1.48, -1.20, 0.001 +19370429, 0.30, 0.51, -0.32, 0.001 +19370430, 2.62, 0.39, 1.90, 0.001 +19370501, 0.18, 0.62, -0.22, 0.003 +19370503, 0.27, -0.20, -0.21, 0.003 +19370504, 1.26, -0.13, -0.08, 0.003 +19370505, -0.74, 0.20, -0.10, 0.003 +19370506, 0.48, -0.65, 1.06, 0.003 +19370507, -0.14, 0.70, 0.00, 0.003 +19370508, -0.26, 0.00, -0.41, 0.003 +19370510, -1.83, 0.21, -1.20, 0.003 +19370511, -0.09, -0.29, -0.29, 0.003 +19370512, -0.29, -0.04, 0.12, 0.003 +19370513, -2.97, -1.89, -1.11, 0.003 +19370514, 0.97, 0.10, 0.47, 0.003 +19370515, 0.26, 0.16, 0.03, 0.003 +19370517, -1.14, 0.37, -0.74, 0.003 +19370518, 1.01, -0.66, 0.71, 0.003 +19370519, -0.05, 0.51, -0.58, 0.003 +19370520, 2.17, 0.01, 0.41, 0.003 +19370521, 0.27, 0.33, -0.44, 0.003 +19370522, 1.02, -0.01, 0.65, 0.003 +19370524, 0.03, -0.13, -0.03, 0.003 +19370525, -1.08, 0.42, -0.98, 0.003 +19370526, -0.20, -0.09, -0.06, 0.003 +19370527, 0.05, -0.17, -0.40, 0.003 +19370528, 0.12, -0.03, -0.01, 0.003 +19370601, -1.35, -1.10, 0.04, 0.001 +19370602, 0.64, -0.22, 0.09, 0.001 +19370603, 0.14, -0.31, -0.44, 0.001 +19370604, 1.02, 0.44, 0.12, 0.001 +19370605, 0.15, 0.15, 0.08, 0.001 +19370607, -0.50, 0.00, -0.36, 0.001 +19370608, 0.33, -0.10, 0.30, 0.001 +19370609, -0.55, 0.35, 0.06, 0.001 +19370610, -0.39, -0.23, -0.02, 0.001 +19370611, -1.29, -0.28, -0.47, 0.001 +19370612, -0.80, -0.31, -0.24, 0.001 +19370614, -2.42, -0.74, -0.93, 0.001 +19370615, 1.01, 0.26, -0.09, 0.001 +19370616, -0.93, -0.31, -0.36, 0.001 +19370617, 0.89, -1.18, -0.20, 0.001 +19370618, 0.75, 0.32, 0.12, 0.001 +19370619, -0.18, 0.22, -0.20, 0.001 +19370621, -0.72, -0.06, -0.74, 0.001 +19370622, -0.18, 0.53, -0.67, 0.001 +19370623, 0.64, -0.33, 0.51, 0.001 +19370624, 0.43, -0.12, 0.28, 0.001 +19370625, -0.47, 0.12, -0.26, 0.001 +19370626, -0.90, 0.14, -0.55, 0.001 +19370628, -1.52, -0.65, -0.29, 0.001 +19370629, 0.22, -0.18, 0.35, 0.001 +19370630, 1.75, -0.42, 0.73, 0.001 +19370701, 0.64, 0.34, 0.28, 0.001 +19370702, 1.18, 0.45, 0.73, 0.001 +19370706, 2.96, 0.26, 1.04, 0.001 +19370707, 0.87, 1.33, 0.18, 0.001 +19370708, 0.23, 0.38, 0.98, 0.001 +19370709, -0.20, 0.41, -0.01, 0.001 +19370710, -0.26, 0.14, -0.26, 0.001 +19370712, 1.32, 0.02, 0.41, 0.001 +19370713, -0.49, -0.19, -0.45, 0.001 +19370714, 0.14, -0.32, -0.71, 0.001 +19370715, 0.42, -0.56, -0.08, 0.001 +19370716, -0.25, -0.20, -0.27, 0.001 +19370717, 0.09, -0.04, -0.14, 0.001 +19370719, 1.27, -0.37, 0.08, 0.001 +19370720, 0.91, -0.58, 0.70, 0.001 +19370721, -0.57, 0.45, -0.75, 0.001 +19370722, 0.31, 0.14, 0.19, 0.001 +19370723, 0.22, -0.17, -0.48, 0.001 +19370724, 0.65, -0.56, 0.29, 0.001 +19370726, -0.18, 0.42, -0.04, 0.001 +19370727, -0.20, -0.10, -0.19, 0.001 +19370728, -1.20, 0.26, -0.39, 0.001 +19370729, -0.27, 0.00, -0.23, 0.001 +19370730, 0.27, -0.87, -0.40, 0.001 +19370731, 0.79, 0.16, 0.37, 0.001 +19370802, 0.18, 0.26, 0.23, 0.001 +19370803, -0.55, 0.33, -0.49, 0.001 +19370804, 0.40, -0.10, 0.91, 0.001 +19370805, -0.41, 0.37, -0.07, 0.001 +19370806, -0.34, -0.10, -0.58, 0.001 +19370807, 0.68, -0.40, 0.35, 0.001 +19370809, 0.31, 0.04, 0.08, 0.001 +19370810, -0.18, -0.20, -0.29, 0.001 +19370811, -0.05, -0.06, -0.57, 0.001 +19370812, 0.49, -0.42, 0.58, 0.001 +19370813, 0.80, -0.01, -0.32, 0.001 +19370814, 0.27, 0.26, -0.07, 0.001 +19370816, -0.64, 0.21, -0.68, 0.001 +19370817, -0.34, 0.19, -0.16, 0.001 +19370818, -0.82, 0.48, -0.15, 0.001 +19370819, -1.21, -0.24, -0.05, 0.001 +19370820, -1.09, -0.13, -0.35, 0.001 +19370821, 0.48, 0.08, 0.44, 0.001 +19370823, -0.78, 0.57, -0.15, 0.001 +19370824, 0.61, -0.69, 0.19, 0.001 +19370825, -0.46, 0.14, -0.56, 0.001 +19370826, -1.73, -0.05, -0.34, 0.001 +19370827, -1.42, -0.20, 0.18, 0.001 +19370828, 0.25, 0.18, -0.14, 0.001 +19370830, 0.83, -0.72, 0.25, 0.001 +19370831, -0.23, 0.66, -0.59, 0.001 +19370901, -2.35, 0.10, -0.67, 0.001 +19370902, -1.25, -0.44, 0.05, 0.001 +19370903, 0.61, -0.22, 0.47, 0.001 +19370904, 0.44, -0.42, 0.15, 0.001 +19370907, -5.49, -1.70, -1.78, 0.001 +19370908, -0.98, -2.76, -0.84, 0.001 +19370909, 2.16, -0.19, 1.35, 0.001 +19370910, -4.98, -0.97, -1.01, 0.001 +19370911, 0.94, -1.69, 0.28, 0.001 +19370913, -1.51, -1.12, -0.60, 0.001 +19370914, 3.56, 2.03, 0.66, 0.001 +19370915, 0.12, 1.57, -0.09, 0.001 +19370916, 1.53, -0.53, 1.04, 0.001 +19370917, -1.90, 0.46, -1.56, 0.001 +19370918, -2.66, 0.96, -0.04, 0.001 +19370920, -0.98, -1.37, -0.22, 0.001 +19370921, 0.75, -0.24, -0.12, 0.001 +19370922, 0.31, -0.05, 0.41, 0.001 +19370923, -2.11, 0.30, -0.92, 0.001 +19370924, -4.41, -1.94, -0.41, 0.001 +19370925, -0.89, -2.09, -0.71, 0.001 +19370927, 3.34, -1.45, 1.08, 0.001 +19370928, 1.42, 1.95, -0.57, 0.001 +19370929, 0.42, 0.29, -1.24, 0.001 +19370930, 0.07, 1.59, 0.30, 0.001 +19371001, -0.36, 0.11, -0.06, 0.001 +19371002, 0.39, 0.19, 0.62, 0.001 +19371004, -1.01, 0.56, -0.93, 0.001 +19371005, -5.24, -0.57, 0.44, 0.001 +19371006, 2.01, -1.95, -0.56, 0.001 +19371007, -0.20, 1.90, -0.78, 0.001 +19371008, -2.20, 0.05, -0.69, 0.001 +19371009, -0.05, -1.01, -0.04, 0.001 +19371011, -3.87, -0.69, -2.40, 0.001 +19371013, -0.91, -3.73, 0.26, 0.001 +19371014, -1.47, -0.01, -0.55, 0.001 +19371015, -1.43, -2.08, 0.41, 0.001 +19371016, -0.02, -1.99, 0.32, 0.001 +19371018, -8.20, -0.63, 0.28, 0.001 +19371019, 0.47, -7.04, -2.43, 0.001 +19371020, 8.67, 8.21, 3.10, 0.001 +19371021, 2.66, 4.60, 2.56, 0.001 +19371022, -2.17, 2.16, -0.21, 0.001 +19371023, -4.32, -0.02, -2.18, 0.001 +19371025, 5.26, -0.04, -0.50, 0.001 +19371026, -1.29, 1.44, -0.30, 0.001 +19371027, -0.30, -0.72, 0.26, 0.001 +19371028, 2.50, 2.10, 1.27, 0.001 +19371029, 2.59, 0.94, 1.11, 0.001 +19371030, -0.01, 0.51, 0.21, 0.001 +19371101, -1.96, 0.12, -0.13, 0.001 +19371103, -4.18, -0.32, -1.57, 0.001 +19371104, -0.78, -0.29, 0.23, 0.001 +19371105, 0.20, 0.57, -0.03, 0.001 +19371106, -2.55, -0.18, -0.59, 0.001 +19371108, -0.44, -1.38, 0.50, 0.001 +19371109, 1.64, -0.02, 1.45, 0.001 +19371110, 5.00, -0.93, 0.60, 0.001 +19371112, 0.23, 1.45, -0.31, 0.001 +19371113, 0.12, -0.30, 0.42, 0.001 +19371115, -2.42, 0.79, -0.41, 0.001 +19371116, -0.88, -1.29, 0.30, 0.001 +19371117, -0.47, 0.59, -0.51, 0.001 +19371118, -1.83, -0.37, -0.46, 0.001 +19371119, -5.15, -1.05, -0.10, 0.001 +19371120, 1.98, -1.31, 0.72, 0.001 +19371122, -4.08, 1.98, -0.24, 0.001 +19371123, 0.57, -2.20, 0.83, 0.001 +19371124, -1.70, 1.13, -0.90, 0.001 +19371126, 3.96, -1.15, 1.67, 0.001 +19371127, 4.60, 0.09, -0.28, 0.001 +19371129, -1.41, 0.10, -0.83, 0.001 +19371130, 1.65, -0.19, 0.21, 0.001 +19371201, -1.13, -0.37, -1.18, 0.000 +19371202, 1.62, -1.61, 0.98, 0.000 +19371203, 1.64, 0.50, -0.03, 0.000 +19371204, 0.16, 0.05, -0.27, 0.000 +19371206, -1.40, 0.10, -0.80, 0.000 +19371207, 1.15, -1.28, 0.02, 0.000 +19371208, 1.02, 0.44, 0.97, 0.000 +19371209, -1.43, 0.27, -0.54, 0.000 +19371210, -0.93, -0.16, -0.11, 0.000 +19371211, 0.02, -0.28, 0.46, 0.000 +19371213, -2.74, 0.50, -0.63, 0.000 +19371214, 0.26, -0.93, 0.19, 0.000 +19371215, 0.58, -0.82, 0.19, 0.000 +19371216, 1.20, -0.92, -0.09, 0.000 +19371217, -0.56, -0.50, -0.29, 0.000 +19371218, 1.10, -0.98, 0.57, 0.000 +19371220, 1.39, -0.61, 0.38, 0.000 +19371221, 0.31, -0.74, 0.04, 0.000 +19371222, -1.26, 0.18, -0.60, 0.000 +19371223, -0.72, -1.02, -0.23, 0.000 +19371224, -0.26, 0.26, 0.21, 0.000 +19371227, -2.88, -0.65, -0.27, 0.000 +19371228, -3.28, -0.75, -0.03, 0.000 +19371229, 0.53, -2.09, 0.29, 0.000 +19371230, 1.70, 1.78, 0.18, 0.000 +19371231, -0.24, 1.03, 0.34, 0.000 +19380103, 0.17, 2.08, -0.15, 0.000 +19380104, 3.19, -1.28, -0.04, 0.000 +19380105, -0.06, 1.91, -0.69, 0.000 +19380106, 3.83, 0.05, 0.31, 0.000 +19380107, -0.47, 1.89, 0.20, 0.000 +19380108, 2.26, 0.63, 0.50, 0.000 +19380110, 1.88, 1.63, 0.06, 0.000 +19380111, 0.70, 0.52, -0.19, 0.000 +19380112, -0.66, 0.97, 0.04, 0.000 +19380113, -1.13, -0.12, -0.32, 0.000 +19380114, 0.04, -0.71, 0.03, 0.000 +19380115, 1.71, -0.02, 0.08, 0.000 +19380117, -1.79, 0.36, -0.77, 0.000 +19380118, -0.83, -0.22, -0.41, 0.000 +19380119, -1.09, -0.66, -0.40, 0.000 +19380120, 1.49, -0.07, 0.37, 0.000 +19380121, -1.37, 0.66, -0.24, 0.000 +19380122, -0.55, -0.29, -0.44, 0.000 +19380124, -0.16, -0.06, 0.97, 0.000 +19380125, -1.17, -0.12, -0.67, 0.000 +19380126, -3.60, -1.37, 0.17, 0.000 +19380127, -1.42, -0.13, -0.61, 0.000 +19380128, -1.11, -0.37, -0.11, 0.000 +19380129, -0.14, 1.02, 0.30, 0.000 +19380131, 1.06, -1.34, 0.64, 0.000 +19380201, 1.57, -0.06, 0.15, 0.000 +19380202, -1.10, 0.86, -0.68, 0.000 +19380203, -3.76, -0.20, 0.73, 0.000 +19380204, 1.63, -1.11, -0.57, 0.000 +19380205, 1.73, 0.63, 0.28, 0.000 +19380207, -1.16, 1.30, -0.43, 0.000 +19380208, 3.11, -1.70, 0.34, 0.000 +19380209, -0.16, 0.84, -0.34, 0.000 +19380210, 0.67, -0.09, 0.00, 0.000 +19380211, -0.38, -0.26, 0.17, 0.000 +19380214, 0.80, -0.69, 0.03, 0.000 +19380215, -0.76, 0.98, -0.79, 0.000 +19380216, -0.32, 0.09, 0.12, 0.000 +19380217, 2.36, -0.26, -0.10, 0.000 +19380218, -1.10, 0.59, -0.30, 0.000 +19380219, 1.14, -0.88, -0.36, 0.000 +19380221, 1.47, -0.57, 0.36, 0.000 +19380223, 2.44, -0.26, 0.43, 0.000 +19380224, -1.05, 0.41, -0.37, 0.000 +19380225, 0.56, 0.33, 0.35, 0.000 +19380226, -0.40, -0.14, -0.35, 0.000 +19380228, -1.31, 0.43, -0.49, 0.000 +19380301, 0.79, -0.62, 0.08, 0.000 +19380302, -0.82, 0.43, -0.64, 0.000 +19380303, -0.78, 0.09, -0.17, 0.000 +19380304, -0.71, 0.30, -0.70, 0.000 +19380305, -0.25, -0.46, 0.26, 0.000 +19380307, -1.73, 0.47, -0.47, 0.000 +19380308, -0.52, -1.23, -0.14, 0.000 +19380309, 0.02, 0.27, -0.14, 0.000 +19380310, -0.91, 0.56, -0.46, 0.000 +19380311, -1.72, 0.01, -0.09, 0.000 +19380312, 0.26, -0.87, 0.07, 0.000 +19380314, 1.28, -0.25, -0.26, 0.000 +19380315, 2.46, -0.11, -0.49, 0.000 +19380316, -3.63, 0.62, -0.45, 0.000 +19380317, -0.80, -0.22, -0.11, 0.000 +19380318, -3.36, -1.54, -0.63, 0.000 +19380319, 1.94, -0.57, 0.38, 0.000 +19380321, -0.11, 0.70, -0.12, 0.000 +19380322, -2.69, -0.40, -0.12, 0.000 +19380323, -2.29, -1.76, -0.34, 0.000 +19380324, 0.31, -0.29, 0.42, 0.000 +19380325, -5.11, -0.42, -0.81, 0.000 +19380326, -2.01, -0.87, -0.41, 0.000 +19380328, 0.77, -0.45, 0.43, 0.000 +19380329, -5.11, 1.12, -1.40, 0.000 +19380330, -0.72, 0.02, 1.47, 0.000 +19380331, -1.22, -0.19, 0.49, 0.000 +19380401, 4.16, 0.11, 1.20, 0.000 +19380402, 3.78, 1.42, -0.33, 0.000 +19380404, 0.65, 1.25, 0.67, 0.000 +19380405, 1.91, -0.35, 0.24, 0.000 +19380406, -1.62, 0.76, -0.82, 0.000 +19380407, -0.61, 0.43, -0.14, 0.000 +19380408, 4.12, -0.82, -0.52, 0.000 +19380409, 5.73, 0.20, 0.55, 0.000 +19380411, -2.41, 1.26, 0.40, 0.000 +19380412, 0.41, -1.62, 0.28, 0.000 +19380413, 0.43, 0.92, -1.13, 0.000 +19380414, 1.23, -0.12, -0.35, 0.000 +19380416, 3.74, 0.64, 0.24, 0.000 +19380418, -1.70, 0.64, -0.67, 0.000 +19380419, -2.33, 0.53, -0.20, 0.000 +19380420, -0.50, -0.71, 0.26, 0.000 +19380421, 0.55, 0.32, -0.13, 0.000 +19380422, 2.65, -0.39, 0.53, 0.000 +19380423, -0.62, 0.73, -0.07, 0.000 +19380425, -1.46, 0.08, 0.04, 0.000 +19380426, -1.65, 0.48, 0.36, 0.000 +19380427, 0.72, -0.51, 0.17, 0.000 +19380428, -2.50, 0.30, -0.28, 0.000 +19380429, -0.31, -1.21, -0.25, 0.000 +19380430, -0.16, 0.93, 0.52, 0.000 +19380502, -1.24, -0.18, 0.09, 0.000 +19380503, 2.20, -1.04, -0.23, 0.000 +19380504, 1.21, -0.58, 0.54, 0.000 +19380505, -0.02, 0.06, -0.50, 0.000 +19380506, 3.58, -2.36, 1.49, 0.000 +19380507, 0.12, 1.06, -0.39, 0.000 +19380509, 1.48, -0.65, 0.02, 0.000 +19380510, -1.10, 1.59, -0.12, 0.000 +19380511, 0.50, -0.11, 0.35, 0.000 +19380512, -0.56, -0.09, -0.07, 0.000 +19380513, -1.16, 0.52, -0.26, 0.000 +19380514, -0.03, 0.13, -0.01, 0.000 +19380516, -1.36, 0.73, -0.78, 0.000 +19380517, 0.38, -1.06, -0.09, 0.000 +19380518, 0.41, 0.16, -0.24, 0.000 +19380519, -1.52, 0.35, -0.82, 0.000 +19380520, -0.45, -0.30, 0.50, 0.000 +19380521, -1.19, 0.48, -0.70, 0.000 +19380523, 0.40, -0.89, 0.54, 0.000 +19380524, -1.20, 0.56, -0.52, 0.000 +19380525, -1.50, 0.20, 0.42, 0.000 +19380526, -2.47, -0.27, -0.51, 0.000 +19380527, -0.21, -0.97, 1.12, 0.000 +19380528, 1.18, 0.24, -0.06, 0.000 +19380531, -1.15, -0.29, 0.08, 0.000 +19380601, 2.44, -0.61, -0.02, 0.000 +19380602, -0.05, 0.56, 0.18, 0.000 +19380603, -0.97, 0.27, -0.29, 0.000 +19380604, 1.94, -0.72, -0.35, 0.000 +19380606, 0.79, -0.12, -0.25, 0.000 +19380607, -0.33, 1.01, -0.60, 0.000 +19380608, 0.31, -0.89, -0.44, 0.000 +19380609, 2.01, -0.54, 0.44, 0.000 +19380610, -0.87, 0.51, -0.58, 0.000 +19380611, -0.31, 0.04, 0.75, 0.000 +19380613, -1.81, 1.29, -0.44, 0.000 +19380614, 0.72, -1.06, -0.15, 0.000 +19380615, 0.42, 0.77, -1.24, 0.000 +19380616, 0.77, -0.66, 0.27, 0.000 +19380617, -0.65, 0.08, 0.32, 0.000 +19380618, 0.07, 0.14, -0.24, 0.000 +19380620, 4.69, -1.43, 0.70, 0.000 +19380621, 2.38, 0.76, 0.36, 0.000 +19380622, 2.77, 0.57, 0.08, 0.000 +19380623, 2.78, 1.08, 0.76, 0.000 +19380624, 1.03, 0.19, -0.51, 0.000 +19380625, 1.91, -0.49, 0.80, 0.000 +19380627, -0.63, 1.89, -0.58, 0.000 +19380628, -0.28, -0.64, -0.19, 0.000 +19380629, 4.27, -0.20, 0.61, 0.000 +19380630, -1.48, 1.25, 1.04, 0.000 +19380701, 2.53, -0.92, 1.45, 0.000 +19380702, 1.72, 0.83, 0.97, 0.000 +19380705, -1.45, 0.23, -0.27, 0.000 +19380706, 1.38, 0.74, 0.05, 0.000 +19380707, -0.08, 1.49, 1.30, 0.000 +19380708, -1.34, 0.38, -0.45, 0.000 +19380709, 0.41, -0.43, -0.16, 0.000 +19380711, -1.53, 0.48, -1.13, 0.000 +19380712, 2.34, -0.26, 0.92, 0.000 +19380713, -0.04, 2.00, -0.14, 0.000 +19380714, -1.12, -0.45, -0.47, 0.000 +19380715, 1.19, -0.76, 0.51, 0.000 +19380716, 0.88, 0.61, 0.29, 0.000 +19380718, 1.72, 0.62, 0.18, 0.000 +19380719, 2.22, -0.29, 0.65, 0.000 +19380720, -0.66, 0.25, 0.58, 0.000 +19380721, -0.09, 0.35, 0.55, 0.000 +19380722, 0.23, 0.84, 0.30, 0.000 +19380723, 1.37, 0.00, 0.32, 0.000 +19380725, 0.51, 0.82, -1.31, 0.000 +19380726, -0.98, 0.20, -0.66, 0.000 +19380727, -2.98, -1.60, -1.16, 0.000 +19380728, 1.59, 0.24, 0.08, 0.000 +19380729, -0.80, 1.02, -0.41, 0.000 +19380730, 0.32, -0.27, 0.30, 0.000 +19380801, -0.75, -0.72, -0.30, 0.000 +19380802, 0.71, 0.17, 0.30, 0.000 +19380803, -0.73, -0.01, -1.24, 0.000 +19380804, 0.51, -0.66, -0.40, 0.000 +19380805, 1.94, 0.00, 0.97, 0.000 +19380806, 1.06, 0.59, 0.36, 0.000 +19380808, -0.73, -0.31, -0.32, 0.000 +19380809, -0.66, -0.76, -0.10, 0.000 +19380810, -0.80, 0.21, -0.55, 0.000 +19380811, -2.27, -0.53, -0.72, 0.000 +19380812, -1.90, -1.32, -1.43, 0.000 +19380813, -0.44, -0.28, 0.27, 0.000 +19380815, 0.56, 0.46, -0.04, 0.000 +19380816, 1.18, -0.17, 0.17, 0.000 +19380817, 0.16, 0.27, -0.37, 0.000 +19380818, -0.23, -0.22, -0.32, 0.000 +19380819, 1.37, -0.28, 0.59, 0.000 +19380820, 0.14, 0.24, 0.27, 0.000 +19380822, -0.44, 0.10, -0.44, 0.000 +19380823, 2.13, 0.37, 0.20, 0.000 +19380824, 0.18, 1.18, 0.00, 0.000 +19380825, 0.48, -0.30, 0.53, 0.000 +19380826, -0.73, 0.47, -0.21, 0.000 +19380827, -0.99, -0.31, -0.45, 0.000 +19380829, -3.54, -0.73, -1.22, 0.000 +19380830, 1.15, -0.12, 0.37, 0.000 +19380831, 0.11, 0.18, -0.73, 0.000 +19380901, -0.91, -0.62, -0.66, 0.001 +19380902, 2.03, -0.51, 0.59, 0.001 +19380903, 0.90, 0.67, 0.14, 0.001 +19380906, -1.00, -0.21, -0.15, 0.001 +19380907, 1.26, 0.12, 0.41, 0.001 +19380908, -0.70, 0.33, -0.61, 0.001 +19380909, -1.91, -0.62, -0.43, 0.001 +19380910, -1.06, -0.13, -0.11, 0.001 +19380912, 1.05, -0.90, -0.04, 0.001 +19380913, -4.54, 0.85, -3.06, 0.001 +19380914, -2.06, -4.96, -1.42, 0.001 +19380915, 3.47, 0.67, 1.45, 0.001 +19380916, -1.87, 0.06, -0.72, 0.001 +19380917, -2.24, -0.82, -1.17, 0.001 +19380919, 2.71, 1.82, 1.46, 0.001 +19380920, 3.49, 0.77, 1.04, 0.001 +19380921, 0.53, 0.57, 1.17, 0.001 +19380922, -1.47, 0.05, -0.63, 0.001 +19380923, -2.83, -0.93, -1.04, 0.001 +19380924, -0.67, -1.33, 0.23, 0.001 +19380926, -2.68, 0.13, -1.22, 0.001 +19380927, -0.13, 0.49, -0.43, 0.001 +19380928, 3.86, 0.23, 1.70, 0.001 +19380929, 3.49, 0.67, 1.33, 0.001 +19380930, 2.75, 1.34, 1.32, 0.001 +19381001, 1.66, 0.35, 1.32, 0.000 +19381003, 0.81, 1.41, -0.74, 0.000 +19381004, 0.01, 0.31, -0.52, 0.000 +19381005, 2.82, 0.33, 2.40, 0.000 +19381006, -0.26, 0.71, -0.13, 0.000 +19381007, 0.04, -0.26, 0.58, 0.000 +19381008, 1.01, 0.27, 1.33, 0.000 +19381010, -0.22, 0.68, -0.56, 0.000 +19381011, -0.58, -0.07, -0.07, 0.000 +19381013, 2.41, -0.15, 0.82, 0.000 +19381014, -0.55, -0.04, -0.47, 0.000 +19381015, 0.83, -0.40, 0.22, 0.000 +19381017, -1.17, -0.03, -0.58, 0.000 +19381018, 0.97, 0.48, 0.52, 0.000 +19381019, -1.18, 0.67, -0.01, 0.000 +19381020, 1.22, -1.13, 0.64, 0.000 +19381021, 0.23, 1.04, 0.01, 0.000 +19381022, 1.07, -0.01, 0.68, 0.000 +19381024, 0.19, 0.27, -0.20, 0.000 +19381025, 0.10, 0.44, 0.35, 0.000 +19381026, -0.94, 0.16, -0.23, 0.000 +19381027, 0.25, -0.55, 0.29, 0.000 +19381028, -1.00, -0.06, 0.06, 0.000 +19381029, -0.33, 0.25, -0.44, 0.000 +19381031, 0.26, 0.53, -0.55, 0.000 +19381101, -0.26, 0.57, 0.32, -0.003 +19381102, 0.17, -0.56, 0.16, -0.003 +19381103, 0.25, -0.30, 1.24, -0.003 +19381104, -0.20, 0.17, -0.58, -0.003 +19381105, 0.29, -0.01, 0.04, -0.003 +19381107, 1.57, 0.57, 0.08, -0.003 +19381109, 2.42, -0.63, 0.91, -0.003 +19381110, -0.37, 0.28, -0.43, -0.003 +19381112, 0.49, 0.16, 0.91, -0.003 +19381114, -1.73, 1.01, -1.04, -0.003 +19381115, -0.53, -0.57, 0.01, -0.003 +19381116, -2.25, -0.43, -1.01, -0.003 +19381117, 0.87, -0.26, 0.28, -0.003 +19381118, -1.82, -0.80, -0.89, -0.003 +19381119, 0.26, 0.15, 0.42, -0.003 +19381121, -0.07, -0.16, -0.60, -0.003 +19381122, -0.59, 0.29, -0.88, -0.003 +19381123, 0.35, -0.34, 0.68, -0.003 +19381125, 0.23, 0.07, 0.17, -0.003 +19381126, -1.32, -0.15, -1.06, -0.003 +19381128, -1.66, -1.13, -1.15, -0.003 +19381129, 0.32, 0.21, 0.00, -0.003 +19381130, 1.98, -0.78, 1.37, -0.003 +19381201, -0.34, 0.72, -0.25, 0.000 +19381202, -0.95, -0.31, -1.29, 0.000 +19381203, -0.02, 0.10, -0.47, 0.000 +19381205, -0.39, -0.43, -0.49, 0.000 +19381206, 0.63, -0.03, 0.66, 0.000 +19381207, 0.26, 0.26, -0.44, 0.000 +19381208, -0.92, -0.57, -1.00, 0.000 +19381209, -0.54, -0.20, -0.95, 0.000 +19381210, 0.65, -0.42, 0.37, 0.000 +19381212, 0.42, -0.09, -0.25, 0.000 +19381213, 0.75, -0.76, 0.53, 0.000 +19381214, 2.00, 0.07, 0.64, 0.000 +19381215, 0.28, 0.48, 0.14, 0.000 +19381216, -0.47, -0.54, -0.90, 0.000 +19381217, -0.33, -0.35, -0.40, 0.000 +19381219, -0.58, 0.04, -0.15, 0.000 +19381220, -0.29, -0.82, -0.52, 0.000 +19381221, -0.79, -0.44, -0.22, 0.000 +19381222, 0.55, -0.76, 0.75, 0.000 +19381223, 0.83, 0.23, 1.11, 0.000 +19381224, 0.41, -0.02, 1.11, 0.000 +19381227, -0.93, -0.34, -0.79, 0.000 +19381228, 0.76, -0.32, 0.37, 0.000 +19381229, 2.31, 1.15, 2.25, 0.000 +19381230, 0.53, 0.92, 0.26, 0.000 +19381231, 0.41, 0.83, 0.58, 0.000 +19390103, -0.70, 0.54, -0.41, 0.000 +19390104, 0.93, 0.77, 1.23, 0.000 +19390105, -1.06, -0.05, -1.25, 0.000 +19390106, 0.06, -0.14, 0.53, 0.000 +19390107, -0.99, 0.11, -0.31, 0.000 +19390109, -0.91, -0.27, -0.74, 0.000 +19390110, 0.18, 0.43, -0.10, 0.000 +19390111, -1.67, -0.38, -0.91, 0.000 +19390112, -0.77, -1.03, -0.37, 0.000 +19390113, -0.57, 0.45, -0.47, 0.000 +19390114, 1.99, -0.30, 1.72, 0.000 +19390116, -0.07, 0.31, 0.04, 0.000 +19390117, 0.53, -0.22, 0.07, 0.000 +19390118, 0.03, 0.29, 0.10, 0.000 +19390119, 0.75, -0.15, 0.44, 0.000 +19390120, -0.15, 0.22, -0.29, 0.000 +19390121, -1.95, -0.05, -1.42, 0.000 +19390123, -4.02, -0.67, -2.17, 0.000 +19390124, -0.04, -1.66, 0.50, 0.000 +19390125, -0.22, 0.89, -0.44, 0.000 +19390126, -2.74, -0.60, -1.68, 0.000 +19390127, 2.08, -1.28, 0.71, 0.000 +19390128, -0.26, 0.17, -0.41, 0.000 +19390130, 2.38, -0.66, 1.07, 0.000 +19390131, 1.34, 1.69, 0.74, 0.000 +19390201, -1.00, 0.52, 0.15, 0.000 +19390202, 1.84, -0.87, 0.64, 0.000 +19390203, -0.59, 0.72, -0.47, 0.000 +19390204, 0.78, 0.31, 0.25, 0.000 +19390206, 0.34, -0.07, -0.46, 0.000 +19390207, -0.93, -0.38, -0.57, 0.000 +19390208, 0.95, -0.38, 0.85, 0.000 +19390209, -1.04, 0.39, -0.61, 0.000 +19390210, 0.08, -0.62, -0.21, 0.000 +19390211, 0.64, 0.13, 0.23, 0.000 +19390214, -0.31, 0.00, -0.67, 0.000 +19390215, 0.21, -0.26, 0.22, 0.000 +19390216, 0.96, 0.35, 0.46, 0.000 +19390217, -0.55, 0.35, -0.81, 0.000 +19390218, 0.67, -0.25, 0.87, 0.000 +19390220, -2.24, 0.08, -0.59, 0.000 +19390221, 0.15, -0.37, 0.17, 0.000 +19390223, 0.28, 0.18, 0.23, 0.000 +19390224, 2.07, 0.35, 1.22, 0.000 +19390225, 0.76, 0.48, 0.47, 0.000 +19390227, -0.06, -0.05, 0.29, 0.000 +19390228, 0.55, -0.02, 1.27, 0.000 +19390301, -0.08, -0.31, -0.14, 0.000 +19390302, -0.01, -0.06, -0.22, 0.000 +19390303, 1.25, -0.29, 0.47, 0.000 +19390304, 0.21, 0.62, -0.17, 0.000 +19390306, -0.69, 0.03, -1.15, 0.000 +19390307, 0.45, -0.11, 0.05, 0.000 +19390308, 1.61, -0.10, 1.12, 0.000 +19390309, -0.06, 0.65, -0.60, 0.000 +19390310, 0.64, 0.22, -0.62, 0.000 +19390311, -0.37, 0.02, -0.97, 0.000 +19390313, -0.68, -0.11, -0.48, 0.000 +19390314, 0.36, -0.28, 0.11, 0.000 +19390315, -2.34, -0.05, -1.11, 0.000 +19390316, 0.06, 0.17, 0.28, 0.000 +19390317, -2.85, -0.86, -1.61, 0.000 +19390318, -1.70, -0.34, -0.57, 0.000 +19390320, -0.55, 0.12, -0.09, 0.000 +19390321, 1.58, 0.03, 0.51, 0.000 +19390322, -2.94, -1.11, -1.26, 0.000 +19390323, 1.08, 0.36, 0.94, 0.000 +19390324, 1.37, 0.50, 0.99, 0.000 +19390325, -0.30, 0.18, -0.65, 0.000 +19390327, -0.16, 0.00, -0.59, 0.000 +19390328, -1.35, -0.69, -0.41, 0.000 +19390329, 0.57, 0.05, 0.54, 0.000 +19390330, -2.86, -0.16, -1.65, 0.000 +19390331, -4.71, -3.72, -2.17, 0.000 +19390401, 1.80, -0.56, 2.24, 0.000 +19390403, 0.08, 1.02, -0.14, 0.000 +19390404, -2.02, -0.43, -0.90, 0.000 +19390405, 0.78, 0.89, 0.00, 0.000 +19390406, -3.28, -1.31, -1.14, 0.000 +19390408, -4.13, -1.47, -2.19, 0.000 +19390410, 1.74, -0.08, 1.58, 0.000 +19390411, -0.19, 0.52, 1.01, 0.000 +19390412, 2.81, 1.86, 0.73, 0.000 +19390413, 1.11, 0.67, -0.59, 0.000 +19390414, -1.20, -0.69, -0.84, 0.000 +19390415, 3.07, 0.34, 2.16, 0.000 +19390417, -1.81, -0.45, -1.32, 0.000 +19390418, -1.15, 0.66, -0.54, 0.000 +19390419, 1.12, -0.04, -0.18, 0.000 +19390420, 1.18, 0.24, 0.85, 0.000 +19390421, 0.28, 0.67, -0.28, 0.000 +19390422, -0.05, -0.07, -0.30, 0.000 +19390424, -0.88, 0.05, -0.75, 0.000 +19390425, 0.06, -0.10, 0.87, 0.000 +19390426, 0.64, -0.35, -0.25, 0.000 +19390427, 0.90, -0.14, 0.14, 0.000 +19390428, -0.78, 0.48, -0.19, 0.000 +19390429, 0.02, 0.25, 0.19, 0.000 +19390501, -0.37, 0.54, -0.08, 0.000 +19390502, 1.12, 0.15, 0.29, 0.000 +19390503, 2.04, 0.31, 0.64, 0.000 +19390504, -0.11, 0.49, -0.25, 0.000 +19390505, -0.32, -0.12, -0.52, 0.000 +19390506, 0.25, 0.22, 0.38, 0.000 +19390508, -0.25, -0.14, -0.11, 0.000 +19390509, 1.65, -0.14, 0.81, 0.000 +19390510, -0.57, 0.94, -0.58, 0.000 +19390511, 0.03, -0.30, -0.32, 0.000 +19390512, -0.49, 0.22, 0.04, 0.000 +19390513, 0.17, -0.09, -0.48, 0.000 +19390515, 0.18, -0.10, -0.20, 0.000 +19390516, -2.16, 0.10, -0.97, 0.000 +19390517, -0.69, -0.31, -0.32, 0.000 +19390518, 0.25, 0.02, -0.42, 0.000 +19390519, 0.79, 0.01, 0.36, 0.000 +19390520, 0.66, -0.06, 0.65, 0.000 +19390522, 0.81, -0.79, 0.02, 0.000 +19390523, -0.40, 0.76, -0.63, 0.000 +19390524, 2.39, -0.25, 1.29, 0.000 +19390525, 0.29, 0.68, -0.19, 0.000 +19390526, 0.40, -0.03, 0.06, 0.000 +19390527, 0.52, 0.10, 1.14, 0.000 +19390529, 0.72, 0.06, 0.05, 0.000 +19390531, -0.24, 0.29, -0.04, 0.000 +19390601, -1.32, -0.25, -0.85, 0.000 +19390602, 0.48, 0.10, -0.26, 0.000 +19390603, 0.23, 0.35, 0.00, 0.000 +19390605, -0.04, -0.12, -0.11, 0.000 +19390606, 1.08, -0.26, 0.49, 0.000 +19390607, 0.27, 0.23, -0.78, 0.000 +19390608, -0.19, 0.05, -0.10, 0.000 +19390609, 1.15, 0.12, -0.22, 0.000 +19390610, -0.04, 0.18, -0.15, 0.000 +19390612, -0.85, -0.08, -0.50, 0.000 +19390613, -0.58, -0.68, -0.07, 0.000 +19390614, -0.49, 0.15, -0.47, 0.000 +19390615, -1.92, 0.58, -0.86, 0.000 +19390616, 0.04, 0.00, -0.22, 0.000 +19390617, 0.53, 0.10, 0.31, 0.000 +19390619, 0.72, -0.25, -0.05, 0.000 +19390620, 0.84, -0.13, 0.29, 0.000 +19390621, 0.03, 0.37, -0.23, 0.000 +19390622, -0.39, 0.10, -0.59, 0.000 +19390623, 0.23, 0.24, 0.40, 0.000 +19390624, -0.11, 0.42, 0.20, 0.000 +19390626, -1.77, -0.48, -0.82, 0.000 +19390627, 0.24, -0.48, 0.49, 0.000 +19390628, -1.62, 0.16, -0.91, 0.000 +19390629, -2.36, -0.61, -0.91, 0.000 +19390630, 0.43, -0.85, 0.18, 0.000 +19390701, 0.96, -0.02, 0.38, 0.000 +19390703, 0.37, 0.34, 0.10, 0.000 +19390705, 1.42, -0.68, 0.05, 0.000 +19390706, 0.21, 0.31, -0.14, 0.000 +19390707, -0.30, 0.04, -0.02, 0.000 +19390708, -0.01, -0.01, -0.29, 0.000 +19390710, 0.33, -0.25, -0.25, 0.000 +19390711, 0.97, -0.13, 0.71, 0.000 +19390712, 1.74, 0.70, -0.47, 0.000 +19390713, 0.69, 1.40, -0.23, 0.000 +19390714, -0.49, -0.18, -0.19, 0.000 +19390715, 0.23, -0.33, 0.21, 0.000 +19390717, 3.57, 0.68, 0.48, 0.000 +19390718, 0.73, 1.57, 0.24, 0.000 +19390719, -0.95, 0.37, -0.64, 0.000 +19390720, -1.08, -0.30, -0.09, 0.000 +19390721, 1.71, 0.40, 0.73, 0.000 +19390722, 1.07, 0.03, 0.69, 0.000 +19390724, -0.63, 0.39, -0.07, 0.000 +19390725, -0.41, 0.24, -0.14, 0.000 +19390726, 0.57, -0.87, -0.30, 0.000 +19390727, 0.15, 0.21, 0.60, 0.000 +19390728, -0.30, 0.47, -0.96, 0.000 +19390729, -0.24, -0.45, -0.02, 0.000 +19390731, -0.43, -0.03, -0.27, 0.000 +19390801, 0.06, -0.37, -0.02, 0.000 +19390802, 0.86, 0.01, 0.45, 0.000 +19390803, -0.18, 0.59, 0.03, 0.000 +19390804, -1.75, -1.05, -0.45, 0.000 +19390805, 0.45, 0.21, 0.15, 0.000 +19390807, -1.00, -0.42, -0.38, 0.000 +19390808, 0.22, 0.01, 0.07, 0.000 +19390809, -0.69, -0.37, -0.15, 0.000 +19390810, -1.68, -0.36, -0.75, 0.000 +19390811, 0.03, 0.05, 0.11, 0.000 +19390812, 0.89, 0.07, 0.62, 0.000 +19390814, 0.89, 0.24, -0.60, 0.000 +19390815, 0.93, 0.15, -0.12, 0.000 +19390816, -2.11, -1.08, -0.04, 0.000 +19390817, -0.26, -0.43, 0.10, 0.000 +19390818, -1.80, -0.77, -0.41, 0.000 +19390819, -0.37, 0.02, 0.05, 0.000 +19390821, -2.04, -1.66, -0.15, 0.000 +19390822, 1.55, 0.54, -0.58, 0.000 +19390823, -2.69, -0.92, 0.23, 0.000 +19390824, -0.51, -1.61, -0.17, 0.000 +19390825, 1.98, 0.39, -0.14, 0.000 +19390826, 2.18, 0.87, 0.59, 0.000 +19390828, -1.76, 0.32, -1.10, 0.000 +19390829, 2.14, 0.83, 0.44, 0.000 +19390830, -0.48, 0.40, 0.06, 0.000 +19390831, -1.50, -0.51, -0.43, 0.000 +19390901, 0.44, -0.02, 0.38, 0.000 +19390902, 2.14, 4.52, 0.85, 0.000 +19390905, 8.79, 8.07, 8.43, 0.000 +19390906, -0.62, -0.71, 0.79, 0.000 +19390907, 0.29, 0.38, -0.46, 0.000 +19390908, 1.97, 0.97, 1.73, 0.000 +19390909, 0.41, 1.17, 0.39, 0.000 +19390911, 2.27, 2.36, 1.85, 0.000 +19390912, 0.62, -1.02, 1.43, 0.000 +19390913, -0.78, 0.57, 0.01, 0.000 +19390914, 0.21, 0.22, -0.68, 0.000 +19390915, -0.09, -0.32, -0.06, 0.000 +19390916, -1.10, -0.79, -0.08, 0.000 +19390918, -3.11, -1.28, -2.39, 0.000 +19390919, 3.35, 1.53, 1.75, 0.000 +19390920, 0.10, 0.69, 0.65, 0.000 +19390921, 0.82, 0.53, 0.88, 0.000 +19390922, -0.46, 0.10, 0.35, 0.000 +19390923, 0.42, -0.15, 0.15, 0.000 +19390925, -0.09, 0.64, 0.38, 0.000 +19390926, 0.89, -0.17, 1.80, 0.000 +19390927, -0.03, -0.06, 0.39, 0.000 +19390928, -1.35, -0.28, -0.37, 0.000 +19390929, -0.83, -1.25, -1.06, 0.000 +19390930, 1.94, 1.27, 1.14, 0.000 +19391002, -0.88, -0.22, -0.21, 0.000 +19391003, -0.96, -0.66, -1.32, 0.000 +19391004, -0.04, -0.91, -0.25, 0.000 +19391005, 0.35, 0.81, -0.46, 0.000 +19391006, -0.09, 0.27, 0.53, 0.000 +19391007, -0.82, -0.96, -0.68, 0.000 +19391009, 0.20, -0.30, -0.68, 0.000 +19391010, 0.46, 0.80, 0.17, 0.000 +19391011, 0.50, -0.60, 0.31, 0.000 +19391013, -0.50, 0.47, -0.47, 0.000 +19391014, -0.20, -0.53, 0.16, 0.000 +19391016, 0.23, -0.12, -0.37, 0.000 +19391017, 2.61, 1.88, 1.16, 0.000 +19391018, -0.40, 0.16, -0.52, 0.000 +19391019, -0.06, -0.09, -0.71, 0.000 +19391020, -0.41, -0.51, -0.31, 0.000 +19391021, 0.67, 0.30, 0.06, 0.000 +19391023, -0.19, 0.10, -0.08, 0.000 +19391024, 0.29, 0.35, -0.82, 0.000 +19391025, 1.06, 0.91, 0.63, 0.000 +19391026, -0.66, 0.05, -0.27, 0.000 +19391027, -0.38, -0.56, 0.03, 0.000 +19391028, -0.25, 0.31, -0.43, 0.000 +19391030, -0.13, -0.26, -0.11, 0.000 +19391031, -0.88, -0.60, -0.28, 0.000 +19391101, -0.08, -0.55, -0.26, 0.000 +19391102, 0.11, 0.46, -0.46, 0.000 +19391103, 0.86, 0.64, -0.13, 0.000 +19391104, -0.16, 1.47, -0.46, 0.000 +19391106, -0.60, -0.85, -0.50, 0.000 +19391108, -0.71, -0.86, -0.43, 0.000 +19391109, -1.12, -1.08, -0.41, 0.000 +19391110, 0.28, -0.16, -0.84, 0.000 +19391113, 0.02, 0.27, -0.14, 0.000 +19391114, 0.61, -0.41, 0.41, 0.000 +19391115, -0.21, 0.05, -0.36, 0.000 +19391116, 1.10, 0.04, 0.07, 0.000 +19391117, -0.29, 0.00, 0.12, 0.000 +19391118, 0.34, -0.35, -0.44, 0.000 +19391120, 0.05, -0.03, 0.06, 0.000 +19391121, -0.63, -0.28, -0.46, 0.000 +19391122, -0.13, -0.38, -0.60, 0.000 +19391124, -1.11, -0.57, -0.39, 0.000 +19391125, 0.04, -0.53, -0.04, 0.000 +19391127, 0.08, 0.13, -0.80, 0.000 +19391128, -0.16, -0.24, -0.23, 0.000 +19391129, -1.08, -0.67, -0.56, 0.000 +19391130, -0.90, -1.47, -0.21, 0.000 +19391201, 0.73, 0.67, 0.03, 0.000 +19391202, 0.11, 0.62, 0.03, 0.000 +19391204, -0.11, -0.29, -0.68, 0.000 +19391205, 0.10, -0.21, -0.23, 0.000 +19391206, 1.41, 0.84, -0.01, 0.000 +19391207, 0.29, 0.74, -0.44, 0.000 +19391208, -0.65, -0.20, -0.10, 0.000 +19391209, -0.06, 0.17, -0.37, 0.000 +19391211, -0.83, -0.43, -0.83, 0.000 +19391212, -0.23, -0.58, -0.22, 0.000 +19391213, 1.32, 0.61, 1.17, 0.000 +19391214, -0.07, 0.14, -0.99, 0.000 +19391215, 0.09, -0.48, -0.35, 0.000 +19391216, -0.07, -0.10, 0.41, 0.000 +19391218, -0.17, 0.09, -0.43, 0.000 +19391219, -0.26, -0.26, -1.04, 0.000 +19391220, 0.31, -0.37, -0.01, 0.000 +19391221, 0.03, 0.05, -0.38, 0.000 +19391222, 0.34, -0.60, 0.15, 0.000 +19391223, 0.10, 0.26, 0.15, 0.000 +19391226, -0.39, -0.22, -0.85, 0.000 +19391227, -0.63, -0.71, -0.01, 0.000 +19391228, 0.87, 0.74, 0.85, 0.000 +19391229, 0.58, 0.18, -0.24, 0.000 +19391230, 0.22, 0.24, 0.47, 0.000 +19400102, 1.07, 0.99, 0.80, 0.000 +19400103, 1.15, 0.87, 1.07, 0.000 +19400104, -0.28, 0.18, -0.15, 0.000 +19400105, -0.52, -0.13, -0.46, 0.000 +19400106, -0.08, 0.30, 0.19, 0.000 +19400108, 0.11, 0.25, -0.06, 0.000 +19400109, -0.87, -0.40, -0.66, 0.000 +19400110, 0.15, 0.19, 0.47, 0.000 +19400111, -1.34, -0.81, -0.09, 0.000 +19400112, -1.62, -0.74, -0.32, 0.000 +19400113, -0.36, -0.20, -0.28, 0.000 +19400115, -0.39, -0.70, 0.27, 0.000 +19400116, 0.65, 0.28, -0.20, 0.000 +19400117, 0.21, 0.18, -0.03, 0.000 +19400118, -0.24, -0.44, -0.37, 0.000 +19400119, 0.21, -0.20, -0.70, 0.000 +19400120, -0.08, 0.12, 0.36, 0.000 +19400122, -0.30, -0.07, -0.13, 0.000 +19400123, 0.19, -0.12, -0.54, 0.000 +19400124, 1.17, 0.29, 0.48, 0.000 +19400125, -0.42, 0.71, -0.22, 0.000 +19400126, 0.01, 0.29, -0.78, 0.000 +19400127, -0.10, 0.15, 0.83, 0.000 +19400129, -0.09, -0.05, -0.02, 0.000 +19400130, -0.41, -0.34, 0.00, 0.000 +19400131, -0.22, -0.28, -0.19, 0.000 +19400201, -0.05, 0.13, 0.03, 0.000 +19400202, 0.15, 0.49, -0.43, 0.000 +19400203, 0.24, -0.10, 0.12, 0.000 +19400205, -0.38, -0.05, -0.10, 0.000 +19400206, 0.64, -0.18, 0.23, 0.000 +19400207, 0.44, 0.06, -0.13, 0.000 +19400208, 1.13, 0.84, 0.82, 0.000 +19400209, 0.25, 0.61, 0.09, 0.000 +19400210, -0.18, -0.62, -0.22, 0.000 +19400213, -0.10, -0.18, -0.56, 0.000 +19400214, -0.14, -0.07, -0.24, 0.000 +19400215, 0.11, 0.53, -0.18, 0.000 +19400216, 0.04, 0.31, 0.39, 0.000 +19400217, 0.29, 0.56, 0.35, 0.000 +19400219, -0.16, -0.04, 0.00, 0.000 +19400220, 0.32, -0.14, -0.24, 0.000 +19400221, -0.08, 0.75, 0.15, 0.000 +19400223, -0.48, -0.10, -0.15, 0.000 +19400224, -0.49, -0.31, -0.37, 0.000 +19400226, -0.06, -0.59, -0.06, 0.000 +19400227, -0.15, -0.12, 0.44, 0.000 +19400228, 0.13, 0.39, -0.43, 0.000 +19400229, -0.02, 0.29, 0.21, 0.000 +19400301, -0.30, -0.10, -0.08, 0.000 +19400302, 0.01, 0.13, -0.06, 0.000 +19400304, 0.23, -0.03, 0.08, 0.000 +19400305, 0.36, 0.31, -0.28, 0.000 +19400306, 0.70, 0.63, 0.22, 0.000 +19400307, 0.26, 0.24, -0.42, 0.000 +19400308, -0.19, 0.27, -0.26, 0.000 +19400309, 0.03, -0.24, 0.26, 0.000 +19400311, 0.16, 0.00, -0.16, 0.000 +19400312, 0.03, -0.51, 0.21, 0.000 +19400313, -0.14, -0.23, -0.30, 0.000 +19400314, -0.07, -0.09, -0.55, 0.000 +19400315, -1.19, -0.82, 0.01, 0.000 +19400316, -0.48, -0.93, 0.02, 0.000 +19400318, -0.06, -0.15, -0.32, 0.000 +19400319, 0.68, 0.53, -0.18, 0.000 +19400320, 0.58, 1.17, 0.02, 0.000 +19400321, -0.03, 0.33, 0.11, 0.000 +19400323, -0.01, 0.31, -0.08, 0.000 +19400325, -0.20, -0.60, -0.09, 0.000 +19400326, -0.22, -0.03, -0.08, 0.000 +19400327, 1.27, 1.11, 0.25, 0.000 +19400328, -0.15, 0.30, -0.23, 0.000 +19400329, 0.37, -0.67, 0.14, 0.000 +19400330, 0.44, 0.38, 0.52, 0.000 +19400401, -0.16, 0.13, -0.35, 0.000 +19400402, 0.25, -0.06, -0.03, 0.000 +19400403, 1.36, 0.83, 1.36, 0.000 +19400404, 0.71, 0.22, 0.83, 0.000 +19400405, -0.28, -0.08, 0.04, 0.000 +19400406, 0.60, 0.19, 0.32, 0.000 +19400408, 0.11, 0.36, 0.15, 0.000 +19400409, -0.75, 0.70, -0.70, 0.000 +19400410, -0.60, -0.30, 0.16, 0.000 +19400411, 0.24, 0.23, 0.23, 0.000 +19400412, -0.62, -0.01, -0.64, 0.000 +19400413, 0.18, 0.25, -0.59, 0.000 +19400415, 0.09, 1.03, 0.02, 0.000 +19400416, -1.20, -0.78, -0.34, 0.000 +19400417, 0.26, 0.61, 0.01, 0.000 +19400418, -0.74, -0.29, 0.23, 0.000 +19400419, -0.10, -0.14, -0.37, 0.000 +19400420, 0.63, 1.02, 0.34, 0.000 +19400422, 0.24, 0.25, 0.03, 0.000 +19400423, 0.52, 0.39, -0.03, 0.000 +19400424, -0.33, -0.11, -0.03, 0.000 +19400425, 0.08, 0.14, 0.10, 0.000 +19400426, -0.69, -0.81, -0.25, 0.000 +19400427, 0.14, 0.41, -0.30, 0.000 +19400429, 0.23, 0.19, 0.10, 0.000 +19400430, 0.10, -0.42, -0.34, 0.000 +19400501, -1.05, -0.56, -0.51, -0.001 +19400502, 0.47, 0.44, 0.16, -0.001 +19400503, 0.10, 0.05, -0.38, -0.001 +19400504, -0.18, -0.33, 0.30, -0.001 +19400506, -0.11, -0.17, -0.16, -0.001 +19400507, 0.14, -0.18, -0.08, -0.001 +19400508, 0.09, -0.05, 0.26, -0.001 +19400509, 0.23, 0.04, 0.44, -0.001 +19400510, -2.55, -1.17, -0.54, -0.001 +19400511, 0.11, 0.14, 0.18, -0.001 +19400513, -5.58, -3.97, -1.37, -0.001 +19400514, -7.21, -3.36, -0.28, -0.001 +19400515, 0.46, -1.87, -3.21, -0.001 +19400516, 1.49, 3.76, 0.47, -0.001 +19400517, -4.40, -1.62, 0.03, -0.001 +19400518, -1.94, -0.40, -2.19, -0.001 +19400520, 0.48, 1.79, 1.22, -0.001 +19400521, -6.99, -5.14, -1.03, -0.001 +19400522, 0.17, 2.05, 0.00, -0.001 +19400523, 0.32, -0.34, 1.30, -0.001 +19400524, -0.20, 0.87, 0.70, -0.001 +19400525, 1.17, 1.45, 0.21, -0.001 +19400527, 1.72, 1.35, 0.45, -0.001 +19400528, -2.40, -2.08, -0.58, -0.001 +19400529, 1.35, 1.60, 1.07, -0.001 +19400531, 0.42, 0.50, -1.12, -0.001 +19400601, -0.29, 0.03, 0.25, 0.000 +19400603, -1.06, -0.06, 0.42, 0.000 +19400604, 0.96, 0.11, -0.04, 0.000 +19400605, -1.67, -0.91, -0.41, 0.000 +19400606, 1.10, 0.16, -0.45, 0.000 +19400607, 1.06, 0.40, 1.06, 0.000 +19400608, -0.17, 0.02, -0.35, 0.000 +19400610, -2.94, -0.97, 1.09, 0.000 +19400611, 3.80, 1.17, -1.30, 0.000 +19400612, 4.81, 1.33, 1.66, 0.000 +19400613, -1.63, -0.34, -1.12, 0.000 +19400614, 1.87, 0.54, 0.27, 0.000 +19400615, 0.84, 0.06, 0.70, 0.000 +19400617, -0.66, -1.77, -0.98, 0.000 +19400618, 0.58, 1.00, 1.34, 0.000 +19400619, 0.35, -0.79, -0.33, 0.000 +19400620, -0.70, 0.10, 0.47, 0.000 +19400621, 0.02, -0.03, 0.24, 0.000 +19400622, 0.44, -0.31, 0.52, 0.000 +19400624, 0.82, -0.70, 0.16, 0.000 +19400625, -2.36, -0.39, 0.44, 0.000 +19400626, -0.66, -1.09, -0.10, 0.000 +19400627, 1.06, 0.24, 0.75, 0.000 +19400628, 1.29, 0.63, 0.46, 0.000 +19400629, -0.07, -0.06, -0.28, 0.000 +19400701, -0.59, 0.20, 0.09, 0.000 +19400702, -0.15, 0.17, -0.24, 0.000 +19400703, 0.20, 0.06, -0.03, 0.000 +19400705, 0.48, 0.27, -0.12, 0.000 +19400706, 0.22, -0.36, 0.83, 0.000 +19400708, -0.20, -0.12, -0.47, 0.000 +19400709, -0.17, -0.24, 0.52, 0.000 +19400710, 0.05, -0.01, 0.03, 0.000 +19400711, 0.07, 0.22, -0.01, 0.000 +19400712, -0.08, 0.06, -0.47, 0.000 +19400713, 0.06, 0.06, 0.19, 0.000 +19400715, 0.33, 0.13, -0.25, 0.000 +19400716, 0.99, 0.35, 0.10, 0.000 +19400717, -0.22, 0.32, -0.65, 0.000 +19400718, 0.13, -0.31, -0.22, 0.000 +19400719, -0.64, 0.43, 0.01, 0.000 +19400720, -0.21, 0.07, -0.14, 0.000 +19400722, -0.05, -0.17, 0.30, 0.000 +19400723, 0.07, -0.42, 0.04, 0.000 +19400724, -0.44, 0.07, 0.01, 0.000 +19400725, 0.06, -0.21, -0.14, 0.000 +19400726, 0.37, -0.08, 0.14, 0.000 +19400727, 0.19, 0.24, -0.15, 0.000 +19400729, 0.53, -0.59, 0.18, 0.000 +19400730, 2.20, 0.18, 0.39, 0.000 +19400731, -0.05, 0.66, -0.63, 0.000 +19400801, -0.10, 0.16, -0.51, 0.000 +19400802, 0.02, -0.06, -0.10, 0.000 +19400803, 0.08, 0.08, 0.23, 0.000 +19400805, -0.12, -0.21, -0.44, 0.000 +19400806, -0.75, 0.00, 0.25, 0.000 +19400807, -0.16, -0.26, 0.03, 0.000 +19400808, 0.13, -0.02, -0.46, 0.000 +19400809, 0.64, -0.25, 0.26, 0.000 +19400810, 0.58, -0.13, 0.00, 0.000 +19400812, 0.20, -0.67, 0.02, 0.000 +19400813, -3.16, 0.40, -0.70, 0.000 +19400814, -0.37, -0.01, 0.12, 0.000 +19400815, 0.60, 0.23, -0.17, 0.000 +19400816, -1.41, -0.03, 0.23, 0.000 +19400817, 0.71, -0.15, 0.15, 0.000 +19400819, 0.02, -0.01, -0.17, 0.000 +19400820, 0.97, -0.67, 0.29, 0.000 +19400821, 1.37, 0.15, -0.27, 0.000 +19400822, 0.83, 0.41, 0.04, 0.000 +19400823, -1.07, 0.07, -0.46, 0.000 +19400824, 0.19, -0.11, 0.17, 0.000 +19400826, 0.06, -0.12, -0.13, 0.000 +19400827, -0.12, 0.00, 0.27, 0.000 +19400828, 1.21, 0.10, 0.76, 0.000 +19400829, -0.18, -0.06, -0.19, 0.000 +19400830, 1.60, 0.33, 0.79, 0.000 +19400831, 0.56, 0.68, 0.61, 0.000 +19400903, 0.32, 0.55, 0.20, 0.000 +19400904, 1.65, -0.31, 0.19, 0.000 +19400905, 1.70, 1.14, 0.95, 0.000 +19400906, -0.41, 0.28, -0.67, 0.000 +19400907, -0.16, -0.01, 0.18, 0.000 +19400909, -2.36, -0.97, -0.75, 0.000 +19400910, -0.10, 0.20, -0.49, 0.000 +19400911, -0.53, 0.40, -0.18, 0.000 +19400912, -1.12, -0.12, -0.86, 0.000 +19400913, 0.09, -0.20, 0.34, 0.000 +19400914, 0.56, -0.05, 0.35, 0.000 +19400916, 0.65, 0.06, 0.13, 0.000 +19400917, 0.77, -0.28, 0.06, 0.000 +19400918, 0.67, 0.23, -0.04, 0.000 +19400919, -0.07, 0.20, 0.05, 0.000 +19400920, 0.00, -0.01, -0.39, 0.000 +19400921, 0.61, 0.60, 0.62, 0.000 +19400923, 1.95, 0.80, 0.86, 0.000 +19400924, -0.25, 0.24, -0.59, 0.000 +19400925, -0.15, 0.01, -0.12, 0.000 +19400926, -0.54, -0.17, -0.59, 0.000 +19400927, -1.57, -0.10, -1.53, 0.000 +19400928, 0.63, 0.33, 0.54, 0.000 +19400930, 0.15, 0.34, 0.79, 0.000 +19401001, 1.23, 0.26, 0.47, 0.000 +19401002, 0.42, 0.30, 1.24, 0.000 +19401003, 0.11, 0.40, -0.38, 0.000 +19401004, -0.63, -0.42, -0.24, 0.000 +19401005, 0.09, -0.01, 0.16, 0.000 +19401007, -0.45, 0.21, 0.06, 0.000 +19401008, -1.39, -0.37, -0.64, 0.000 +19401009, -0.54, -0.23, 0.05, 0.000 +19401010, -0.05, 0.35, 0.24, 0.000 +19401011, 0.52, -0.15, -0.01, 0.000 +19401014, -0.28, 0.76, 0.06, 0.000 +19401015, 0.45, -1.30, -0.06, 0.000 +19401016, 0.53, 0.76, 0.01, 0.000 +19401017, 0.50, -0.23, 0.42, 0.000 +19401018, 0.04, 0.10, 0.79, 0.000 +19401019, -0.11, 0.23, -0.15, 0.000 +19401021, -0.53, 0.28, 0.16, 0.000 +19401022, 0.45, -0.34, 0.42, 0.000 +19401023, 0.61, 0.29, 0.35, 0.000 +19401024, -0.54, -0.08, 0.02, 0.000 +19401025, -0.04, -0.17, 0.48, 0.000 +19401026, 0.81, -0.12, 0.05, 0.000 +19401028, -0.28, -0.23, -0.18, 0.000 +19401029, 0.25, 0.06, 0.09, 0.000 +19401030, 0.64, -0.41, 0.34, 0.000 +19401031, 1.24, 0.40, 0.77, 0.000 +19401101, 0.10, 0.39, -0.13, 0.000 +19401102, 0.34, -0.58, 0.28, 0.000 +19401104, 0.28, -0.16, -0.16, 0.000 +19401106, -2.85, 0.85, -1.84, 0.000 +19401107, 4.78, 1.40, 3.09, 0.000 +19401108, -0.58, 0.46, 0.03, 0.000 +19401109, 1.37, 0.71, 0.61, 0.000 +19401112, -0.45, -0.20, 0.21, 0.000 +19401113, -0.41, -0.05, 0.20, 0.000 +19401114, 0.48, -0.08, 0.79, 0.000 +19401115, -1.00, -0.03, -0.50, 0.000 +19401116, -0.74, -0.34, -0.32, 0.000 +19401118, -0.03, 0.19, -0.11, 0.000 +19401119, -0.08, -0.19, -0.13, 0.000 +19401120, -1.78, -0.16, -1.03, 0.000 +19401122, 0.17, 0.18, 0.82, 0.000 +19401123, -0.02, -0.04, 0.24, 0.000 +19401125, -0.01, -0.07, 0.03, 0.000 +19401126, -0.28, 0.12, -0.48, 0.000 +19401127, -1.62, -0.41, -1.48, 0.000 +19401128, 0.23, 0.24, 0.71, 0.000 +19401129, 0.12, -0.44, 0.12, 0.000 +19401130, 0.56, 0.24, -0.45, 0.000 +19401202, -0.04, 0.27, -0.22, 0.000 +19401203, -0.28, -0.19, -0.53, 0.000 +19401204, 0.02, -0.12, -0.62, 0.000 +19401205, -0.29, -0.36, 0.10, 0.000 +19401206, 0.24, -0.20, -0.03, 0.000 +19401207, 0.73, 0.32, 0.03, 0.000 +19401209, 0.13, 0.04, -0.31, 0.000 +19401210, -0.06, -0.22, -0.20, 0.000 +19401211, 0.29, 0.21, 0.36, 0.000 +19401212, 0.26, -0.23, 0.16, 0.000 +19401213, 0.21, 0.06, 0.92, 0.000 +19401214, 0.01, -0.30, -0.27, 0.000 +19401216, -0.79, -0.27, -0.58, 0.000 +19401217, -0.42, -0.36, -0.23, 0.000 +19401218, -0.70, -0.14, -0.41, 0.000 +19401219, -0.36, -0.42, 0.06, 0.000 +19401220, 0.06, 0.08, -0.18, 0.000 +19401221, 0.10, 0.05, 0.29, 0.000 +19401223, -0.38, 0.45, -0.29, 0.000 +19401224, 0.42, -0.71, 0.41, 0.000 +19401226, -0.10, 0.26, -0.40, 0.000 +19401227, 0.37, -0.65, 0.37, 0.000 +19401228, 0.36, -0.02, -0.04, 0.000 +19401230, 0.62, 0.07, 0.23, 0.000 +19401231, 0.30, 0.19, 0.47, 0.000 +19410102, -0.34, 0.89, 0.35, 0.000 +19410103, 1.25, -0.47, 0.88, 0.000 +19410104, 0.24, 0.86, 0.30, 0.000 +19410106, 0.31, 0.75, 0.02, 0.000 +19410107, -0.14, -0.16, -0.30, 0.000 +19410108, 0.28, 0.00, 1.21, 0.000 +19410109, 0.49, -0.24, 1.78, 0.000 +19410110, 0.21, 0.61, -0.09, 0.000 +19410111, -0.20, 0.10, -0.27, 0.000 +19410113, -0.12, 0.08, 0.09, 0.000 +19410114, -0.46, -0.38, 0.00, 0.000 +19410115, -0.57, 0.45, -0.25, 0.000 +19410116, -1.26, -0.07, -0.65, 0.000 +19410117, -0.16, -0.68, 0.52, 0.000 +19410118, 0.02, 0.48, 0.04, 0.000 +19410120, -0.27, 0.50, -0.41, 0.000 +19410121, -0.79, -0.51, 0.56, 0.000 +19410122, 0.47, -0.18, 0.86, 0.000 +19410123, -0.01, 0.29, 0.07, 0.000 +19410124, 0.19, -0.15, 0.00, 0.000 +19410125, 0.25, -0.15, 0.12, 0.000 +19410127, 0.02, 0.17, 0.24, 0.000 +19410128, -0.45, -0.01, -0.20, 0.000 +19410129, -1.73, -0.04, -0.76, 0.000 +19410130, -1.53, -0.95, -0.89, 0.000 +19410131, 0.06, -0.13, 0.81, 0.000 +19410201, -0.57, -0.19, -0.68, 0.000 +19410203, -0.55, -0.26, -0.51, 0.000 +19410204, -0.10, -0.13, 1.07, 0.000 +19410205, 1.46, 0.12, 0.95, 0.000 +19410206, 0.38, 0.23, -0.12, 0.000 +19410207, -0.16, -0.11, -0.16, 0.000 +19410208, 0.20, 0.16, -0.31, 0.000 +19410210, -0.21, 0.22, 0.39, 0.000 +19410211, -1.11, 0.18, -0.97, 0.000 +19410213, -1.38, -1.29, 0.08, 0.000 +19410214, -2.71, -0.65, -0.58, 0.000 +19410215, 0.45, -0.28, 0.26, 0.000 +19410217, 0.52, 0.43, 0.33, 0.000 +19410218, -0.30, -0.15, -0.11, 0.000 +19410219, -1.00, -0.66, -0.40, 0.000 +19410220, 1.63, 0.53, 0.71, 0.000 +19410221, 0.50, -0.03, 0.24, 0.000 +19410224, 0.85, -0.34, 0.06, 0.000 +19410225, 0.63, 0.08, -0.52, 0.000 +19410226, 0.06, 0.61, 0.28, 0.000 +19410227, -0.34, -0.29, 0.35, 0.000 +19410228, 0.38, 0.29, 0.64, 0.000 +19410301, -0.22, 0.53, -0.32, 0.000 +19410303, -0.83, -0.27, -0.55, 0.000 +19410304, 0.39, -0.38, 0.67, 0.000 +19410305, -0.34, 0.76, 0.05, 0.000 +19410306, 1.34, -0.55, 0.43, 0.000 +19410307, -0.23, 0.64, -0.41, 0.000 +19410308, 0.04, -0.21, 0.47, 0.000 +19410310, 1.65, 0.60, 0.24, 0.000 +19410311, -0.42, 0.45, -0.34, 0.000 +19410312, -0.10, -0.20, -0.09, 0.000 +19410313, -0.38, 0.16, -0.17, 0.000 +19410314, 0.10, -0.13, 0.18, 0.000 +19410315, 0.59, 0.25, 0.63, 0.000 +19410317, 0.01, -0.04, 0.14, 0.000 +19410318, 0.18, -0.07, 0.23, 0.000 +19410319, -0.21, 0.25, 0.01, 0.000 +19410320, -0.01, -0.43, 0.38, 0.000 +19410321, -0.76, -0.01, -0.63, 0.000 +19410322, -0.45, -0.12, -0.05, 0.000 +19410324, 0.32, -0.59, 0.66, 0.000 +19410325, 0.22, -0.33, 0.32, 0.000 +19410326, -0.18, 0.10, 0.28, 0.000 +19410327, 0.61, -0.31, 0.35, 0.000 +19410328, -0.59, 0.46, -0.66, 0.000 +19410329, -0.08, -0.23, 0.60, 0.000 +19410331, 0.24, -0.25, 0.60, 0.000 +19410401, 0.18, 0.02, 0.37, 0.000 +19410402, 0.22, -0.21, -0.02, 0.000 +19410403, 1.37, -0.07, 2.03, 0.000 +19410404, -0.03, 0.43, -0.02, 0.000 +19410405, -0.31, 0.03, -0.34, 0.000 +19410407, -0.47, -0.36, -0.19, 0.000 +19410408, -1.96, -0.43, -1.78, 0.000 +19410409, -1.10, -0.25, -0.13, 0.000 +19410410, -0.16, 0.12, -0.12, 0.000 +19410412, -0.94, -0.15, 0.24, 0.000 +19410414, 0.21, -0.21, 0.50, 0.000 +19410415, -0.33, 0.25, -0.47, 0.000 +19410416, 0.05, -0.60, 0.45, 0.000 +19410417, -0.17, 0.28, 0.10, 0.000 +19410418, -1.37, -0.13, -0.61, 0.000 +19410419, -0.28, -0.46, 0.38, 0.000 +19410421, -0.24, -0.61, 0.47, 0.000 +19410422, -0.25, 0.16, 0.06, 0.000 +19410423, 0.61, -0.57, 1.04, 0.000 +19410424, 0.72, 0.45, 0.84, 0.000 +19410425, -0.62, 0.04, -0.15, 0.000 +19410426, -0.02, 0.27, 0.36, 0.000 +19410428, 0.15, -0.12, 0.22, 0.000 +19410429, 0.31, 0.02, 0.87, 0.000 +19410430, -1.09, 0.34, -0.39, 0.000 +19410501, -0.10, -0.12, -0.07, 0.000 +19410502, 0.43, -0.07, 0.87, 0.000 +19410503, 0.22, -0.18, 0.76, 0.000 +19410505, -0.05, -0.05, 0.33, 0.000 +19410506, 1.49, 0.19, 1.35, 0.000 +19410507, -0.34, 0.35, -0.89, 0.000 +19410508, -0.05, -0.56, 0.25, 0.000 +19410509, 0.11, 0.25, -0.06, 0.000 +19410510, 0.98, -0.26, 1.11, 0.000 +19410512, -0.26, -0.09, -0.42, 0.000 +19410513, -0.06, -0.19, -0.54, 0.000 +19410514, -0.24, -0.14, -0.67, 0.000 +19410515, -1.24, 0.75, -1.04, 0.000 +19410516, 0.21, -1.02, 0.25, 0.000 +19410517, 0.28, 0.06, 0.44, 0.000 +19410519, 0.05, -0.21, -0.25, 0.000 +19410520, 1.20, -0.85, 0.42, 0.000 +19410521, 0.22, 0.54, -0.06, 0.000 +19410522, -0.96, 0.13, -0.33, 0.000 +19410523, 0.02, -0.21, 0.23, 0.000 +19410524, 0.09, 0.00, 0.01, 0.000 +19410526, -0.94, 0.39, -0.33, 0.000 +19410527, 0.41, -0.18, -0.23, 0.000 +19410528, 0.11, 0.02, 0.08, 0.000 +19410529, 0.09, 0.16, -0.01, 0.000 +19410531, -0.29, 0.62, -0.52, 0.000 +19410602, 0.33, -0.27, -0.14, 0.000 +19410603, 0.95, -0.64, 0.38, 0.000 +19410604, 0.35, 0.04, 0.15, 0.000 +19410605, 0.49, 0.42, -0.20, 0.000 +19410606, -0.16, -0.18, -0.11, 0.000 +19410607, 0.61, 0.13, -0.12, 0.000 +19410609, 0.86, 0.08, -0.29, 0.000 +19410610, 1.43, 0.50, 0.16, 0.000 +19410611, 0.09, 0.45, -0.23, 0.000 +19410612, 0.53, -0.21, 0.31, 0.000 +19410613, -0.26, 0.21, -0.40, 0.000 +19410614, -0.16, 0.40, 0.20, 0.000 +19410616, -0.19, 0.17, -0.32, 0.000 +19410617, 0.64, 0.08, -0.14, 0.000 +19410618, 0.29, 0.16, 0.07, 0.000 +19410619, -0.19, -0.17, 0.14, 0.000 +19410620, -0.87, 0.36, -0.18, 0.000 +19410621, 0.18, -0.11, 0.22, 0.000 +19410623, 1.29, 0.18, 0.33, 0.000 +19410624, -0.46, -0.23, 0.40, 0.000 +19410625, 0.19, -0.26, 0.28, 0.000 +19410626, 0.48, 0.04, 0.30, 0.000 +19410627, -0.37, -0.06, -0.04, 0.000 +19410628, -0.06, 0.05, -0.21, 0.000 +19410630, -0.28, 0.12, 0.03, 0.000 +19410701, -0.23, -0.07, -0.23, 0.001 +19410702, 0.70, -0.63, 0.22, 0.001 +19410703, 0.44, -0.22, 0.84, 0.001 +19410705, 0.19, 0.42, 0.27, 0.001 +19410707, 1.40, 0.17, 0.37, 0.001 +19410708, 1.52, 1.06, 0.41, 0.001 +19410709, 0.03, 0.90, -0.66, 0.001 +19410710, 0.06, 0.16, 0.32, 0.001 +19410711, 0.13, 0.38, 0.38, 0.001 +19410712, 0.04, 0.12, -0.08, 0.001 +19410714, 0.17, -0.18, 1.00, 0.001 +19410715, 0.20, 0.25, -0.02, 0.001 +19410716, -0.41, -0.24, -0.35, 0.001 +19410717, -0.61, 0.22, -0.41, 0.001 +19410718, 0.25, -0.23, -0.26, 0.001 +19410719, 0.34, 0.20, 0.05, 0.001 +19410721, 1.34, 0.08, 1.96, 0.001 +19410722, -0.01, 0.09, 0.37, 0.001 +19410723, -0.13, 0.23, 0.22, 0.001 +19410724, -0.27, 0.53, 0.13, 0.001 +19410725, -0.16, 0.41, -0.04, 0.001 +19410726, 0.48, 0.34, 0.93, 0.001 +19410728, 0.83, 0.95, 1.01, 0.001 +19410729, -0.32, -0.15, -0.42, 0.001 +19410730, -0.19, 0.02, 0.61, 0.001 +19410731, -0.07, 0.38, -0.01, 0.001 +19410801, -0.27, -0.10, 0.53, 0.000 +19410802, -0.05, 0.53, -0.84, 0.000 +19410804, 0.15, -0.37, 0.22, 0.000 +19410805, -0.10, -0.46, -0.24, 0.000 +19410806, -0.01, 0.19, -0.35, 0.000 +19410807, 0.02, -0.11, -0.05, 0.000 +19410808, -0.65, 0.10, -0.34, 0.000 +19410809, -0.70, -0.27, -0.51, 0.000 +19410811, -0.38, -0.87, -0.54, 0.000 +19410812, -0.13, 0.03, 0.38, 0.000 +19410813, -0.09, 0.33, -0.27, 0.000 +19410814, 0.20, -0.17, 1.08, 0.000 +19410815, -0.76, 0.10, -0.47, 0.000 +19410816, 0.21, -0.36, 0.34, 0.000 +19410818, 0.40, 0.34, 0.08, 0.000 +19410819, 0.04, 0.05, -0.09, 0.000 +19410820, 0.45, -0.12, 0.62, 0.000 +19410821, 0.01, 0.31, 0.11, 0.000 +19410822, -0.04, -0.04, -0.47, 0.000 +19410823, 0.06, 0.02, 0.00, 0.000 +19410825, 0.08, -0.19, -0.17, 0.000 +19410826, 0.57, 0.29, -0.15, 0.000 +19410827, 0.19, -0.13, 0.23, 0.000 +19410828, 0.33, 0.19, -0.41, 0.000 +19410829, 0.07, 0.15, 0.03, 0.000 +19410830, 0.24, 0.17, 0.20, 0.000 +19410902, 0.30, -0.22, -0.27, 0.000 +19410903, -0.34, -0.04, -0.03, 0.000 +19410904, -0.12, 0.04, -0.40, 0.000 +19410905, -0.12, 0.35, 0.15, 0.000 +19410906, 0.10, 0.13, -0.12, 0.000 +19410908, 0.18, 0.17, 0.17, 0.000 +19410909, -0.28, -0.28, -0.33, 0.000 +19410910, -0.58, 0.22, -0.17, 0.000 +19410911, 0.60, -0.26, 1.24, 0.000 +19410912, 0.12, 0.21, 0.01, 0.000 +19410913, 0.11, 0.04, -0.02, 0.000 +19410915, 0.05, 0.04, 0.01, 0.000 +19410916, 0.22, -0.03, 0.06, 0.000 +19410917, 1.36, -0.02, 0.05, 0.000 +19410918, -0.39, 0.45, 0.19, 0.000 +19410919, -0.82, -0.15, -0.99, 0.000 +19410920, -0.35, 0.04, -0.52, 0.000 +19410922, 0.22, -0.52, 0.42, 0.000 +19410923, 0.32, -0.35, 0.13, 0.000 +19410924, -0.48, 0.26, -0.57, 0.000 +19410925, -1.49, -1.43, -0.49, 0.000 +19410926, -0.38, -0.09, 0.33, 0.000 +19410927, 0.35, 0.16, 0.58, 0.000 +19410929, 0.08, 0.21, 0.20, 0.000 +19410930, 0.50, 0.09, 0.14, 0.000 +19411001, -0.01, -0.09, -0.14, 0.000 +19411002, -0.26, 0.34, 0.30, 0.000 +19411003, -0.16, -0.30, 0.38, 0.000 +19411004, 0.15, -0.14, 0.26, 0.000 +19411006, -0.17, 0.04, -0.17, 0.000 +19411007, -1.10, -0.37, -0.46, 0.000 +19411008, -0.05, -0.15, -0.04, 0.000 +19411009, -1.26, -0.53, -0.84, 0.000 +19411010, -0.01, -0.03, 0.41, 0.000 +19411011, 0.08, 0.14, 0.79, 0.000 +19411014, -0.46, -0.30, -0.56, 0.000 +19411015, -0.52, 0.02, 0.02, 0.000 +19411016, -1.67, -0.72, -0.77, 0.000 +19411017, 0.33, -0.51, 0.26, 0.000 +19411018, 0.95, 0.49, 0.81, 0.000 +19411020, 0.06, -0.07, 0.23, 0.000 +19411021, 0.76, -0.03, 0.25, 0.000 +19411022, -0.44, 0.28, -0.38, 0.000 +19411023, 0.33, -0.36, 0.97, 0.000 +19411024, 0.53, 0.33, 0.09, 0.000 +19411025, -0.29, 0.43, -0.37, 0.000 +19411027, -0.88, -0.26, -0.19, 0.000 +19411028, 0.03, 0.09, 0.52, 0.000 +19411029, -0.24, -0.24, 0.13, 0.000 +19411030, -0.10, 0.13, 0.61, 0.000 +19411031, -0.95, -0.27, -0.31, 0.000 +19411101, 0.31, 0.09, 0.37, 0.000 +19411103, 0.47, -0.59, 0.26, 0.000 +19411105, 0.70, -0.36, 0.62, 0.000 +19411106, -0.76, -0.08, -0.36, 0.000 +19411107, -0.19, 0.52, -0.45, 0.000 +19411108, 0.08, -0.17, 0.03, 0.000 +19411110, -0.59, 0.07, -0.83, 0.000 +19411112, -1.67, -0.31, -0.66, 0.000 +19411113, 0.08, -0.73, 0.44, 0.000 +19411114, 0.78, -0.24, 0.07, 0.000 +19411115, 0.14, 0.29, 0.42, 0.000 +19411117, -0.21, -0.23, -0.20, 0.000 +19411118, -0.13, -0.11, 0.03, 0.000 +19411119, 0.46, 0.10, 0.21, 0.000 +19411121, 0.56, 0.22, 0.81, 0.000 +19411122, 0.16, 0.05, -0.27, 0.000 +19411124, 0.19, 0.03, 0.24, 0.000 +19411125, -0.52, -0.27, -0.42, 0.000 +19411126, -0.77, 0.17, -0.72, 0.000 +19411127, -0.23, 0.16, -0.17, 0.000 +19411128, -0.58, -0.12, -0.26, 0.000 +19411129, -0.23, 0.38, 0.29, 0.000 +19411201, -0.35, -0.14, 0.13, 0.000 +19411202, 1.53, -0.79, 0.27, 0.000 +19411203, 0.81, -0.55, -0.29, 0.000 +19411204, 0.29, 0.32, 0.12, 0.000 +19411205, -0.37, -0.13, -0.37, 0.000 +19411206, 0.58, -0.06, -0.29, 0.000 +19411208, -4.15, -1.80, -2.84, 0.000 +19411209, -3.49, -2.30, -3.78, 0.000 +19411210, -0.70, -0.11, -0.09, 0.000 +19411211, 1.95, 1.53, 1.63, 0.000 +19411212, -0.36, 1.13, -0.68, 0.000 +19411213, 0.30, 0.31, -0.23, 0.000 +19411215, 0.51, -0.35, 0.52, 0.000 +19411216, -0.07, -0.13, 0.86, 0.000 +19411217, -1.81, -0.38, -0.52, 0.000 +19411218, -0.83, -0.60, 0.73, 0.000 +19411219, -0.02, 0.42, 0.77, 0.000 +19411220, -0.19, 0.12, -0.15, 0.000 +19411222, -0.95, 0.38, -0.52, 0.000 +19411223, -0.41, -0.09, 0.10, 0.000 +19411224, 0.29, 0.22, -0.15, 0.000 +19411226, -0.44, -0.24, -0.29, 0.000 +19411227, 0.44, 0.16, 0.31, 0.000 +19411229, -0.48, -0.89, -0.88, 0.000 +19411230, 3.65, -0.27, 0.81, 0.000 +19411231, -0.47, 1.45, -1.20, 0.000 +19420102, 1.87, 1.89, 2.52, 0.001 +19420103, 1.19, 1.57, 1.10, 0.001 +19420105, 1.00, 0.31, -0.54, 0.001 +19420106, -0.40, 0.37, -1.01, 0.001 +19420107, -0.66, 0.35, 0.94, 0.001 +19420108, -1.36, 1.05, 0.54, 0.001 +19420109, -0.24, 0.95, 1.13, 0.001 +19420110, -0.47, 0.14, -0.01, 0.001 +19420112, 0.42, 0.08, 0.62, 0.001 +19420113, 1.71, -0.60, 0.46, 0.001 +19420114, 0.24, 0.31, 0.00, 0.001 +19420115, -0.13, 0.06, 0.11, 0.001 +19420116, -0.90, 0.44, -0.01, 0.001 +19420117, -0.32, -0.07, 0.58, 0.001 +19420119, 0.27, 0.00, 0.96, 0.001 +19420120, -0.11, 0.14, 0.91, 0.001 +19420121, -1.30, -0.37, -0.58, 0.001 +19420122, 0.01, 0.04, 0.02, 0.001 +19420123, 0.16, 0.02, 0.66, 0.001 +19420124, 0.34, 0.07, 0.60, 0.001 +19420126, 0.98, 0.04, 0.93, 0.001 +19420127, 0.12, 0.42, -0.21, 0.001 +19420128, -0.46, -0.03, -0.05, 0.001 +19420129, -0.11, 0.02, 0.22, 0.001 +19420130, -0.55, 0.22, 0.05, 0.001 +19420131, -0.45, -0.22, -0.31, 0.001 +19420202, 0.33, -0.16, -0.10, 0.001 +19420203, 0.31, -0.27, 0.05, 0.001 +19420204, 0.63, 0.20, 0.61, 0.001 +19420205, -0.17, 0.40, 0.39, 0.001 +19420206, -0.83, 0.44, -0.28, 0.001 +19420207, 0.02, -0.10, 0.11, 0.001 +19420209, -1.11, 0.02, -0.85, 0.001 +19420210, -1.42, -0.68, -1.33, 0.001 +19420211, -0.21, -0.07, 0.30, 0.001 +19420213, 0.09, 0.44, -0.07, 0.001 +19420214, 0.52, -0.04, 0.51, 0.001 +19420216, -0.23, 0.04, 0.20, 0.001 +19420217, -1.64, 0.54, -0.65, 0.001 +19420218, -0.02, 0.07, 0.07, 0.001 +19420219, 0.28, 0.17, 0.27, 0.001 +19420220, -0.27, 0.46, 0.17, 0.001 +19420221, 0.23, 0.08, -0.22, 0.001 +19420224, 0.26, 0.11, 0.14, 0.001 +19420225, -0.55, 0.33, 0.02, 0.001 +19420226, 0.44, -0.27, 0.07, 0.001 +19420227, 0.78, -0.18, -0.18, 0.001 +19420228, 0.15, 0.23, -0.29, 0.001 +19420302, -0.97, 0.33, -0.43, 0.000 +19420303, 1.17, -0.81, 0.02, 0.000 +19420304, -0.89, 0.48, -0.09, 0.000 +19420305, -1.50, 0.36, -0.59, 0.000 +19420306, -2.50, 0.45, -0.46, 0.000 +19420307, 0.53, -0.25, 0.79, 0.000 +19420309, -0.12, 0.18, -0.09, 0.000 +19420310, -0.75, 0.38, -0.11, 0.000 +19420311, -1.65, 0.70, -0.54, 0.000 +19420312, -0.01, -0.31, 0.68, 0.000 +19420313, 0.47, 0.15, -0.40, 0.000 +19420314, 0.02, 0.42, -0.20, 0.000 +19420316, 0.87, -0.87, 0.13, 0.000 +19420317, 1.60, -0.71, 1.17, 0.000 +19420318, -0.63, 0.56, -0.29, 0.000 +19420319, -0.18, -0.04, 0.45, 0.000 +19420320, -0.77, 0.48, -0.28, 0.000 +19420321, 0.09, -0.09, -0.04, 0.000 +19420323, 0.18, -0.07, 0.34, 0.000 +19420324, 0.61, -0.16, -0.20, 0.000 +19420325, -0.58, 0.07, -0.29, 0.000 +19420326, -0.40, -0.08, 0.29, 0.000 +19420327, -0.98, 0.24, 0.01, 0.000 +19420328, -0.01, 0.04, 0.13, 0.000 +19420330, 0.12, 0.07, -0.03, 0.000 +19420331, -0.43, 0.34, -0.55, 0.000 +19420401, 0.40, -0.46, 0.25, 0.000 +19420402, 0.78, -0.03, 0.31, 0.000 +19420404, 0.13, 0.32, -0.34, 0.000 +19420406, 1.16, -0.82, 0.36, 0.000 +19420407, -0.25, 0.21, 0.30, 0.000 +19420408, -0.58, 0.02, -0.21, 0.000 +19420409, -1.36, 0.09, -0.58, 0.000 +19420410, -0.03, -0.08, -0.10, 0.000 +19420411, -0.28, 0.23, 0.23, 0.000 +19420413, -0.04, -0.20, 0.30, 0.000 +19420414, -1.64, -0.40, -1.78, 0.000 +19420415, 0.17, -0.39, 0.29, 0.000 +19420416, -0.11, 0.33, -0.01, 0.000 +19420417, -1.55, 0.34, 0.43, 0.000 +19420418, 0.67, -0.17, 0.62, 0.000 +19420420, 0.36, -0.17, -0.28, 0.000 +19420421, 0.22, 0.48, 0.39, 0.000 +19420422, -0.28, 0.23, 0.25, 0.000 +19420423, -2.20, 0.43, -0.30, 0.000 +19420424, -0.84, 0.28, 0.02, 0.000 +19420425, 0.20, 0.40, 0.01, 0.000 +19420427, -0.66, -0.19, 0.91, 0.000 +19420428, -0.96, -0.05, 0.44, 0.000 +19420429, 1.52, -0.92, 0.68, 0.000 +19420430, 0.81, 0.04, 0.07, 0.000 +19420501, 0.70, -0.55, -0.24, 0.001 +19420502, 0.68, -0.23, 0.55, 0.001 +19420504, 0.20, -0.37, 0.11, 0.001 +19420505, 0.33, -0.32, -0.21, 0.001 +19420506, -0.25, -0.34, 0.43, 0.001 +19420507, 0.81, -0.35, -0.28, 0.001 +19420508, 0.21, 0.28, 0.14, 0.001 +19420509, 0.56, 0.17, -0.35, 0.001 +19420511, 0.59, -0.47, -0.14, 0.001 +19420512, -0.65, 0.43, -0.47, 0.001 +19420513, -1.23, 0.26, -0.15, 0.001 +19420514, 0.20, -0.59, -0.25, 0.001 +19420515, 0.76, -0.53, 0.13, 0.001 +19420516, 0.70, -0.13, 0.11, 0.001 +19420518, -0.11, 0.07, -0.17, 0.001 +19420519, -0.59, 0.50, -0.11, 0.001 +19420520, 0.14, -0.40, -1.20, 0.001 +19420521, 1.63, -0.98, 0.39, 0.001 +19420522, -0.20, 0.19, 0.30, 0.001 +19420523, 0.06, 0.41, -0.75, 0.001 +19420525, -0.20, 0.10, -0.25, 0.001 +19420526, 0.08, 0.07, -0.04, 0.001 +19420527, 1.49, -0.88, 0.17, 0.001 +19420528, 0.13, 0.04, -0.29, 0.001 +19420529, -0.20, 0.50, 0.03, 0.001 +19420601, 0.40, 0.00, 0.01, 0.001 +19420602, -0.12, 0.21, -0.60, 0.001 +19420603, 0.66, -0.19, 0.09, 0.001 +19420604, 1.58, -0.32, -0.72, 0.001 +19420605, 0.53, 0.11, 0.59, 0.001 +19420606, 0.43, -0.07, 0.16, 0.001 +19420608, 0.81, -0.52, -0.30, 0.001 +19420609, -0.27, 0.16, -0.35, 0.001 +19420610, -0.92, 0.13, 0.11, 0.001 +19420611, 0.20, -0.05, -0.09, 0.001 +19420612, -0.46, 0.18, 0.01, 0.001 +19420613, 0.40, -0.10, 0.11, 0.001 +19420615, 0.21, -0.21, -0.25, 0.001 +19420616, 0.08, 0.11, 0.33, 0.001 +19420617, 1.32, -0.99, 0.36, 0.001 +19420618, -0.16, 0.77, -0.07, 0.001 +19420619, -0.92, 0.20, -0.50, 0.001 +19420620, -0.33, 0.21, 0.52, 0.001 +19420622, -1.32, -0.50, -0.14, 0.001 +19420623, 0.13, 0.07, 0.23, 0.001 +19420624, -0.26, 0.24, -0.27, 0.001 +19420625, 0.08, -0.05, 0.11, 0.001 +19420626, -0.10, 0.02, 0.43, 0.001 +19420627, 0.32, -0.03, 0.42, 0.001 +19420629, 0.26, -0.38, 0.14, 0.001 +19420630, 0.13, -0.31, 0.11, 0.001 +19420701, -0.38, 0.42, -0.19, 0.001 +19420702, 1.02, -0.58, 0.32, 0.001 +19420703, 0.92, -0.04, 0.47, 0.001 +19420706, 1.33, -0.63, 0.04, 0.001 +19420707, -0.21, 0.50, 0.06, 0.001 +19420708, 1.95, -0.85, 0.58, 0.001 +19420709, 1.10, 0.84, 0.13, 0.001 +19420710, -0.21, 0.02, 0.03, 0.001 +19420711, -0.05, 0.06, 0.09, 0.001 +19420713, -0.55, 0.05, 0.04, 0.001 +19420714, 0.57, -0.53, -0.18, 0.001 +19420715, 0.25, 0.51, -0.15, 0.001 +19420716, -0.03, -0.18, -0.04, 0.001 +19420717, -0.83, 0.40, -0.16, 0.001 +19420718, -0.25, 0.06, 0.12, 0.001 +19420720, 0.49, -0.60, 0.03, 0.001 +19420721, 0.23, -0.16, -0.15, 0.001 +19420722, -0.12, 0.16, 0.34, 0.001 +19420723, -1.20, 0.34, -0.36, 0.001 +19420724, -0.02, -0.20, 0.59, 0.001 +19420725, 0.11, 0.03, 0.39, 0.001 +19420727, 0.08, 0.05, 0.17, 0.001 +19420728, -0.16, -0.01, 0.28, 0.001 +19420729, -1.10, 0.67, -0.53, 0.001 +19420730, 0.10, -0.12, 0.22, 0.001 +19420731, 0.44, -0.38, 0.24, 0.001 +19420801, 0.08, 0.39, 0.52, 0.001 +19420803, 0.28, -0.62, 0.09, 0.001 +19420804, -0.17, 0.23, 0.18, 0.001 +19420805, -0.71, 0.26, -0.86, 0.001 +19420806, -0.09, -0.10, -0.20, 0.001 +19420807, 0.26, -0.22, -0.01, 0.001 +19420808, -0.11, 0.22, -0.31, 0.001 +19420810, -0.08, -0.14, 0.14, 0.001 +19420811, 0.33, -0.33, 0.09, 0.001 +19420812, 0.12, -0.27, 0.61, 0.001 +19420813, 0.44, -0.26, 0.21, 0.001 +19420814, 0.50, 0.20, 0.25, 0.001 +19420815, 0.25, -0.07, -0.13, 0.001 +19420817, 0.35, 0.04, 0.69, 0.001 +19420818, 0.73, -0.42, 0.36, 0.001 +19420819, 0.09, 0.44, 0.23, 0.001 +19420820, -0.21, 0.29, 0.47, 0.001 +19420821, 0.31, -0.03, 0.32, 0.001 +19420822, 0.14, 0.08, 0.30, 0.001 +19420824, 0.00, -0.25, -0.42, 0.001 +19420825, -0.57, 0.09, -0.39, 0.001 +19420826, -1.07, 0.20, -0.85, 0.001 +19420827, 0.40, 0.11, 0.29, 0.001 +19420828, 0.34, 0.00, -0.14, 0.001 +19420829, 0.08, 0.22, -0.21, 0.001 +19420831, 0.10, -0.10, 0.08, 0.001 +19420901, -0.08, 0.01, -0.32, 0.001 +19420902, 0.02, 0.30, -0.07, 0.001 +19420903, 0.07, -0.02, 0.16, 0.001 +19420904, 0.01, -0.15, 0.60, 0.001 +19420905, 0.16, 0.02, 0.29, 0.001 +19420908, 0.56, -0.47, 0.04, 0.001 +19420909, -0.14, 0.17, -0.14, 0.001 +19420910, -0.55, 0.34, -0.12, 0.001 +19420911, -0.46, 0.03, -0.06, 0.001 +19420912, 0.03, 0.17, -0.01, 0.001 +19420914, 0.00, 0.07, 0.43, 0.001 +19420915, 0.40, -0.14, 0.05, 0.001 +19420916, 0.16, 0.04, 0.14, 0.001 +19420917, -0.04, 0.08, 0.89, 0.001 +19420918, 0.58, -0.13, -0.23, 0.001 +19420919, -0.03, 0.31, 0.58, 0.001 +19420921, 0.08, 0.12, -0.16, 0.001 +19420922, 0.33, -0.21, 0.46, 0.001 +19420923, 0.54, 0.17, 0.00, 0.001 +19420924, 1.12, 0.27, 0.77, 0.001 +19420925, 0.30, 0.38, -0.32, 0.001 +19420926, -0.13, -0.17, -0.46, 0.001 +19420928, -0.01, -0.17, 0.12, 0.001 +19420929, -0.20, -0.25, 0.00, 0.001 +19420930, -0.11, -0.14, -0.32, 0.001 +19421001, 0.65, -0.12, 1.18, 0.001 +19421002, 1.20, 0.11, 0.88, 0.001 +19421003, 0.46, 0.11, 0.67, 0.001 +19421005, 0.69, -0.07, -0.01, 0.001 +19421006, 0.04, -0.32, 0.68, 0.001 +19421007, 0.19, 0.54, -0.29, 0.001 +19421008, 1.56, 0.27, 0.73, 0.001 +19421009, 0.38, 0.25, 0.60, 0.001 +19421010, 0.88, -0.63, 0.48, 0.001 +19421013, 0.53, 0.07, 0.43, 0.001 +19421014, -0.31, 0.25, -0.14, 0.001 +19421015, -1.21, 0.49, -0.43, 0.001 +19421016, 0.41, 0.33, 0.15, 0.001 +19421017, -0.13, 0.40, -0.45, 0.001 +19421019, 0.19, -0.28, 0.07, 0.001 +19421020, 1.05, -0.27, 0.04, 0.001 +19421021, 0.01, 0.55, -0.25, 0.001 +19421022, 0.17, -0.01, -0.05, 0.001 +19421023, -0.07, 0.30, 0.18, 0.001 +19421024, 0.31, -0.05, 0.43, 0.001 +19421026, 0.30, -0.02, 0.67, 0.001 +19421027, -1.01, -0.24, -0.99, 0.001 +19421028, -0.60, -0.08, -0.08, 0.001 +19421029, 0.06, 0.01, 0.26, 0.001 +19421030, 0.35, -0.21, 0.42, 0.001 +19421031, 0.56, 0.12, 0.78, 0.001 +19421102, 0.65, 0.14, 0.44, 0.001 +19421104, -0.26, 0.09, -0.64, 0.001 +19421105, 0.12, -0.11, -0.11, 0.001 +19421106, 1.06, 0.26, -0.29, 0.001 +19421107, 0.68, -0.16, 0.28, 0.001 +19421109, 0.31, 0.22, -0.35, 0.001 +19421110, -0.52, -0.05, 0.00, 0.001 +19421112, 0.04, -0.36, -0.25, 0.001 +19421113, -0.34, 0.21, -0.44, 0.001 +19421114, 0.02, 0.00, -0.10, 0.001 +19421116, -0.86, -0.09, -0.61, 0.001 +19421117, -0.90, -0.27, -0.32, 0.001 +19421118, 0.19, -0.25, -0.37, 0.001 +19421119, 0.13, -0.08, -0.15, 0.001 +19421120, 0.84, -0.24, 0.27, 0.001 +19421121, 0.16, 0.27, -0.08, 0.001 +19421123, -1.11, 0.31, -0.38, 0.001 +19421124, -0.21, -0.57, -0.57, 0.001 +19421125, -0.08, -0.43, 0.37, 0.001 +19421127, 0.39, -0.13, -0.12, 0.001 +19421128, 0.08, 0.23, -0.20, 0.001 +19421130, -0.21, -0.53, -0.71, 0.001 +19421201, 0.13, -0.09, -0.19, 0.001 +19421202, 0.36, -0.19, 0.04, 0.001 +19421203, 0.28, -0.08, 0.25, 0.001 +19421204, -0.13, -0.14, -0.11, 0.001 +19421205, 0.12, -0.05, 0.24, 0.001 +19421207, -0.35, -0.08, -1.01, 0.001 +19421208, 0.52, -0.31, 0.29, 0.001 +19421209, -0.05, -0.34, -0.32, 0.001 +19421210, 0.11, 0.01, -0.35, 0.001 +19421211, 0.09, -0.04, -0.07, 0.001 +19421212, 0.23, 0.17, 0.55, 0.001 +19421214, 0.09, 0.11, -0.86, 0.001 +19421215, 0.37, -0.32, 0.32, 0.001 +19421216, 0.55, -0.19, 0.59, 0.001 +19421217, 1.81, -0.15, 2.05, 0.001 +19421218, -0.02, 0.72, -0.52, 0.001 +19421219, -0.05, -0.22, 0.00, 0.001 +19421221, -0.08, -0.10, -0.29, 0.001 +19421222, -0.03, -0.12, -0.43, 0.001 +19421223, 0.21, -0.31, -0.61, 0.001 +19421224, 0.46, -0.54, 0.38, 0.001 +19421226, 0.24, 0.12, 0.23, 0.001 +19421228, -0.85, -0.08, -0.90, 0.001 +19421229, -0.20, -0.55, -0.21, 0.001 +19421230, 1.02, 0.01, 0.04, 0.001 +19421231, 0.22, 0.34, 1.54, 0.001 +19430102, 0.78, 0.99, 0.60, 0.001 +19430104, 0.85, 0.62, 1.30, 0.001 +19430105, -0.36, 0.56, -0.36, 0.001 +19430106, 0.04, 0.18, -0.05, 0.001 +19430107, -0.04, 0.41, 0.35, 0.001 +19430108, 0.21, 0.22, 0.56, 0.001 +19430109, 0.24, 0.53, -0.13, 0.001 +19430111, 0.30, 0.19, 0.04, 0.001 +19430112, -0.24, 0.15, 0.01, 0.001 +19430113, 0.27, 0.19, 0.47, 0.001 +19430114, 0.51, 0.53, 1.11, 0.001 +19430115, 0.93, 0.44, 0.72, 0.001 +19430116, 0.19, 0.58, 0.31, 0.001 +19430118, -0.06, 0.40, 0.36, 0.001 +19430119, -0.87, -0.54, -1.20, 0.001 +19430120, 0.00, 0.29, 0.35, 0.001 +19430121, 1.17, 0.88, 0.24, 0.001 +19430122, 0.15, -0.02, -0.18, 0.001 +19430123, 0.28, 0.06, 0.03, 0.001 +19430125, 0.91, 0.01, 0.13, 0.001 +19430126, 0.48, -0.07, 0.20, 0.001 +19430127, -0.21, 0.32, 0.80, 0.001 +19430128, 0.24, 0.35, 1.15, 0.001 +19430129, 0.83, 0.46, 0.38, 0.001 +19430130, 0.33, 0.14, 0.10, 0.001 +19430201, 0.36, -0.03, 0.38, 0.001 +19430202, 0.04, 0.47, -0.28, 0.001 +19430203, -0.45, -0.57, -0.24, 0.001 +19430204, -0.08, 0.55, 0.18, 0.001 +19430205, 0.58, 0.27, 0.09, 0.001 +19430206, 0.08, 0.01, -0.02, 0.001 +19430208, -0.23, -0.44, -0.13, 0.001 +19430209, 0.70, 0.34, 0.17, 0.001 +19430210, 0.99, 0.81, 1.15, 0.001 +19430211, 0.26, 0.97, 0.79, 0.001 +19430213, 0.47, 0.59, 0.71, 0.001 +19430215, 0.83, 0.87, 1.05, 0.001 +19430216, -0.18, -0.20, 0.02, 0.001 +19430217, 0.17, 0.03, 0.20, 0.001 +19430218, -1.08, -0.48, -1.82, 0.001 +19430219, -0.10, -0.28, 0.56, 0.001 +19430220, 1.14, 0.50, 0.69, 0.001 +19430223, 0.79, 0.14, 0.89, 0.001 +19430224, 0.68, 0.03, 0.52, 0.001 +19430225, 0.61, 0.34, 0.98, 0.001 +19430226, 0.07, 0.28, 0.19, 0.001 +19430227, 0.36, 0.24, -0.06, 0.001 +19430301, -0.55, 0.26, -0.26, 0.001 +19430302, -0.61, 0.05, 0.16, 0.001 +19430303, 1.26, 0.49, 2.11, 0.001 +19430304, 0.32, 0.22, -0.35, 0.001 +19430305, 0.33, 0.34, -0.19, 0.001 +19430306, 0.21, 0.17, -0.07, 0.001 +19430308, -0.16, 0.34, -0.04, 0.001 +19430309, -0.66, -0.16, -0.43, 0.001 +19430310, -0.40, 0.21, -0.40, 0.001 +19430311, 1.12, 0.75, 1.73, 0.001 +19430312, 0.61, 0.58, 1.16, 0.001 +19430313, 0.09, 0.16, -0.06, 0.001 +19430315, -0.01, -0.22, -0.35, 0.001 +19430316, -0.37, -0.18, -0.37, 0.001 +19430317, -0.69, -0.69, -0.97, 0.001 +19430318, 0.11, 0.67, 0.59, 0.001 +19430319, -0.29, 0.73, -0.99, 0.001 +19430320, -0.09, -0.08, 0.04, 0.001 +19430322, 0.29, 0.21, 1.16, 0.001 +19430323, 0.47, 0.59, 0.08, 0.001 +19430324, 0.46, 0.43, -0.14, 0.001 +19430325, 1.83, 0.19, 0.82, 0.001 +19430326, 0.72, -0.19, 0.29, 0.001 +19430327, 0.15, -0.39, -0.30, 0.001 +19430329, 1.27, 0.43, 1.46, 0.001 +19430330, 0.71, -0.54, 0.25, 0.001 +19430331, -0.16, 0.33, 0.26, 0.001 +19430401, 0.11, 0.43, 1.24, 0.001 +19430402, -0.42, 0.02, 0.61, 0.001 +19430403, 0.14, 0.66, 1.13, 0.001 +19430405, 1.39, 0.79, 2.12, 0.001 +19430406, 0.34, -0.06, -0.23, 0.001 +19430407, -0.52, -0.58, -0.21, 0.001 +19430408, -0.40, 0.72, -0.19, 0.001 +19430409, -3.65, -1.67, -3.57, 0.001 +19430410, -0.08, -0.48, 0.72, 0.001 +19430412, -0.06, 0.53, 0.03, 0.001 +19430413, -0.15, -0.20, -0.45, 0.001 +19430414, 1.35, 1.06, 1.94, 0.001 +19430415, 0.83, 0.27, 0.90, 0.001 +19430416, -0.19, 0.09, -0.37, 0.001 +19430417, 0.40, -0.06, 0.45, 0.001 +19430419, 0.00, 0.35, 0.19, 0.001 +19430420, -0.44, 0.15, -0.22, 0.001 +19430421, 0.89, 0.19, 0.94, 0.001 +19430422, 0.33, 0.05, 0.46, 0.001 +19430424, 0.16, -0.11, 0.64, 0.001 +19430426, 0.01, 0.06, -0.25, 0.001 +19430427, -0.11, -0.39, -0.86, 0.001 +19430428, -0.12, -0.05, -0.16, 0.001 +19430429, 1.02, 0.18, 1.52, 0.001 +19430430, 0.08, 0.18, -0.31, 0.001 +19430501, 0.58, 0.35, 0.99, 0.001 +19430503, 1.32, 0.56, 1.36, 0.001 +19430504, 0.52, 0.94, -0.57, 0.001 +19430505, 0.54, 0.02, 1.23, 0.001 +19430506, 0.33, 0.48, 0.05, 0.001 +19430507, -1.25, -0.27, -1.69, 0.001 +19430508, 1.01, 0.56, 1.48, 0.001 +19430510, 0.38, 1.19, 0.28, 0.001 +19430511, -0.34, -0.01, -0.33, 0.001 +19430512, -0.35, -0.55, -0.36, 0.001 +19430513, -0.33, -0.21, 0.00, 0.001 +19430514, -0.96, -0.73, -0.83, 0.001 +19430515, 0.34, 0.85, 0.62, 0.001 +19430517, -0.01, 0.30, -0.36, 0.001 +19430518, 0.66, -0.17, 0.02, 0.001 +19430519, 1.06, 0.77, 1.15, 0.001 +19430520, -0.08, 0.23, -0.18, 0.001 +19430521, -0.04, -0.57, -0.14, 0.001 +19430522, 0.02, 0.65, 0.05, 0.001 +19430524, -0.07, -0.29, -0.61, 0.001 +19430525, 0.25, -0.52, 0.98, 0.001 +19430526, 0.88, -0.16, 0.02, 0.001 +19430527, 0.35, 0.55, -0.25, 0.001 +19430528, 0.27, 0.00, 0.12, 0.001 +19430529, 0.56, 0.16, 0.13, 0.001 +19430601, 0.37, -0.08, 0.09, 0.001 +19430602, -0.08, -0.24, -0.75, 0.001 +19430603, 0.55, -0.02, 0.53, 0.001 +19430604, -0.30, 0.22, -0.23, 0.001 +19430605, 0.66, 0.61, 0.18, 0.001 +19430607, -0.75, -0.06, -0.75, 0.001 +19430608, -0.57, -0.11, -0.74, 0.001 +19430609, 0.20, -0.07, 0.25, 0.001 +19430610, 0.21, 0.25, -0.50, 0.001 +19430611, -0.30, 0.17, -0.31, 0.001 +19430612, -0.15, -0.25, -0.38, 0.001 +19430614, -1.61, -1.12, -1.50, 0.001 +19430615, 0.23, -0.16, 0.68, 0.001 +19430616, 0.41, 0.16, 0.63, 0.001 +19430617, 0.16, 0.23, 0.23, 0.001 +19430618, -0.17, 0.12, -0.34, 0.001 +19430619, -0.02, -0.29, -0.01, 0.001 +19430621, -0.72, -0.63, -0.80, 0.001 +19430622, 0.21, 0.02, 0.45, 0.001 +19430623, 0.78, 0.42, 0.75, 0.001 +19430624, 0.54, -0.08, -0.02, 0.001 +19430625, 1.12, 0.24, 0.99, 0.001 +19430626, 0.42, 0.02, 0.32, 0.001 +19430628, 0.44, -0.07, 0.30, 0.001 +19430629, -0.33, -0.26, -0.16, 0.001 +19430630, 0.55, 0.01, 0.47, 0.001 +19430701, 0.17, 0.11, 0.96, 0.001 +19430702, 0.02, 0.21, -0.37, 0.001 +19430703, 0.15, 0.01, 0.13, 0.001 +19430706, 0.00, 0.00, -0.54, 0.001 +19430707, -0.23, -0.33, -0.38, 0.001 +19430708, 0.20, -0.11, 0.45, 0.001 +19430709, 0.37, -0.16, 0.62, 0.001 +19430710, 0.13, 0.01, 0.08, 0.001 +19430712, 0.51, -0.44, 0.58, 0.001 +19430713, 0.75, 0.09, 0.44, 0.001 +19430714, 0.56, -0.25, 0.61, 0.001 +19430715, -0.67, 0.14, -0.99, 0.001 +19430716, -0.09, -0.33, 0.41, 0.001 +19430717, 0.09, 0.04, 0.10, 0.001 +19430719, -0.06, -0.16, -0.55, 0.001 +19430720, -0.71, -0.25, -1.27, 0.001 +19430721, 0.11, -0.21, 0.65, 0.001 +19430722, 0.18, 0.33, 0.73, 0.001 +19430723, 0.02, 0.05, 0.02, 0.001 +19430724, 0.09, 0.03, 0.09, 0.001 +19430726, -1.50, -0.51, -2.09, 0.001 +19430727, -2.75, 0.11, -1.60, 0.001 +19430728, -0.57, -1.26, 0.79, 0.001 +19430729, 1.61, 0.99, 1.48, 0.001 +19430730, -1.83, -0.38, -1.56, 0.001 +19430731, -1.31, -0.27, -0.97, 0.001 +19430802, -1.77, 0.26, -1.13, 0.001 +19430803, 1.48, -1.13, 0.56, 0.001 +19430804, 0.85, 0.41, 0.34, 0.001 +19430805, -0.26, 0.01, -0.32, 0.001 +19430806, -0.86, 0.13, -0.75, 0.001 +19430807, -0.11, -0.14, -0.34, 0.001 +19430809, 0.02, -0.19, 0.46, 0.001 +19430810, 1.08, 0.09, 0.83, 0.001 +19430811, 0.67, 0.32, 0.17, 0.001 +19430812, -0.45, 0.05, 0.10, 0.001 +19430813, 0.55, -0.16, -0.37, 0.001 +19430814, 0.12, 0.24, 0.60, 0.001 +19430816, -0.05, 0.41, 0.08, 0.001 +19430817, 0.40, -0.32, -0.06, 0.001 +19430818, 0.43, -0.21, -0.32, 0.001 +19430819, -0.03, 0.02, -0.47, 0.001 +19430820, -0.91, 0.21, -0.68, 0.001 +19430821, -0.82, -0.03, -0.56, 0.001 +19430823, -0.86, -0.59, -1.11, 0.001 +19430824, 0.59, -0.33, 0.99, 0.001 +19430825, 0.41, 0.17, 0.58, 0.001 +19430826, 0.21, 0.06, 0.26, 0.001 +19430827, -0.38, 0.18, -0.58, 0.001 +19430828, 0.10, -0.07, 0.35, 0.001 +19430830, 0.04, -0.04, 0.07, 0.001 +19430831, 0.92, 0.03, 0.95, 0.001 +19430901, 0.39, 0.27, 0.47, 0.001 +19430902, 0.04, -0.08, -0.65, 0.001 +19430903, -0.15, 0.02, -0.21, 0.001 +19430904, 0.22, 0.14, 0.07, 0.001 +19430907, 0.07, -0.43, 0.11, 0.001 +19430908, -0.48, -0.07, -0.95, 0.001 +19430909, 0.99, 0.62, 1.08, 0.001 +19430910, 0.13, 0.45, 0.39, 0.001 +19430911, 0.02, 0.01, 0.19, 0.001 +19430913, -0.13, 0.08, -0.50, 0.001 +19430914, -0.23, -0.33, -0.11, 0.001 +19430915, 0.21, 0.22, 0.49, 0.001 +19430916, 0.37, -0.05, 0.35, 0.001 +19430917, 1.00, 0.00, 1.04, 0.001 +19430918, 0.82, 0.36, 0.65, 0.001 +19430920, 0.41, 0.45, -0.19, 0.001 +19430921, 0.02, -0.60, 0.11, 0.001 +19430922, -0.33, 0.04, -0.31, 0.001 +19430923, -0.60, 0.02, -0.26, 0.001 +19430924, 0.04, -0.03, 0.35, 0.001 +19430925, 0.01, 0.34, -0.08, 0.001 +19430927, -0.75, -0.08, -1.22, 0.001 +19430928, -0.13, 0.23, 0.21, 0.001 +19430929, 0.18, -0.12, 0.10, 0.001 +19430930, 0.29, -0.19, 0.30, 0.001 +19431001, 0.15, 0.16, 0.29, 0.001 +19431002, -0.05, 0.25, -0.04, 0.001 +19431004, -0.50, -0.29, -0.64, 0.001 +19431005, -0.41, 0.06, -0.23, 0.001 +19431006, -1.02, -0.27, -0.42, 0.001 +19431007, -1.21, 0.05, -0.55, 0.001 +19431008, 0.29, -0.08, 0.68, 0.001 +19431009, 0.53, -0.16, 0.75, 0.001 +19431011, -0.63, -0.13, -0.58, 0.001 +19431013, -0.17, -0.48, -0.22, 0.001 +19431014, 0.54, 0.04, 0.59, 0.001 +19431015, 0.54, 0.40, 0.41, 0.001 +19431016, 0.36, -0.07, 0.22, 0.001 +19431018, -0.08, 0.09, -0.20, 0.001 +19431019, 0.36, 0.18, 0.67, 0.001 +19431020, 0.24, 0.05, 0.06, 0.001 +19431021, -0.68, 0.57, -0.51, 0.001 +19431022, 0.39, -0.30, 0.41, 0.001 +19431023, 0.02, 0.09, 0.28, 0.001 +19431025, -0.11, -0.10, -0.38, 0.001 +19431026, 0.29, 0.35, 0.62, 0.001 +19431027, 0.60, 0.24, 1.05, 0.001 +19431028, -0.13, 0.00, -0.44, 0.001 +19431029, -0.47, 0.04, -0.51, 0.001 +19431030, 0.04, -0.08, 0.47, 0.001 +19431101, -0.07, -0.14, -0.60, 0.001 +19431103, -1.00, -0.60, -1.34, 0.001 +19431104, -1.03, -0.35, -1.08, 0.001 +19431105, -0.43, 0.31, 0.04, 0.001 +19431106, -0.02, 0.04, -0.09, 0.001 +19431108, -3.23, -1.73, -3.58, 0.001 +19431109, 0.53, -0.12, 1.68, 0.001 +19431110, 1.12, 0.71, 0.93, 0.001 +19431112, -0.55, -0.14, 0.16, 0.001 +19431113, -0.20, 0.06, -0.08, 0.001 +19431115, 0.10, 0.26, 0.68, 0.001 +19431116, -0.32, 0.23, 0.35, 0.001 +19431117, -0.58, -0.36, -0.53, 0.001 +19431118, 0.38, -0.04, 0.22, 0.001 +19431119, 1.26, 0.19, 1.47, 0.001 +19431120, 0.57, 0.43, 0.15, 0.001 +19431122, -0.27, 0.18, -0.06, 0.001 +19431123, -0.12, 0.13, -0.14, 0.001 +19431124, -0.25, 0.03, -1.07, 0.001 +19431126, -0.71, -0.39, -0.98, 0.001 +19431127, -0.31, -0.02, -0.19, 0.001 +19431129, -1.00, -0.07, 0.02, 0.001 +19431130, 0.11, -0.18, 0.00, 0.001 +19431201, 0.95, 0.31, 0.82, 0.001 +19431202, 0.79, 0.03, 0.44, 0.001 +19431203, 0.18, 0.09, 0.20, 0.001 +19431204, 0.17, 0.14, 0.07, 0.001 +19431206, 0.47, -0.10, 0.39, 0.001 +19431207, 0.78, 0.30, -0.06, 0.001 +19431208, 1.06, 0.72, 1.00, 0.001 +19431209, -0.25, 0.18, -0.33, 0.001 +19431210, 0.64, -0.14, -0.20, 0.001 +19431211, 0.23, 0.13, 0.07, 0.001 +19431213, -0.33, -0.24, -0.55, 0.001 +19431214, -0.28, -0.08, -0.03, 0.001 +19431215, 0.08, 0.19, 0.27, 0.001 +19431216, 0.41, -0.27, -0.23, 0.001 +19431217, 0.40, 0.04, 1.19, 0.001 +19431218, 0.38, 0.29, 0.13, 0.001 +19431220, 0.22, 0.26, -0.11, 0.001 +19431221, -0.30, 0.22, -0.60, 0.001 +19431222, -0.08, 0.13, -0.19, 0.001 +19431223, -0.04, -0.03, 0.17, 0.001 +19431224, 0.15, 0.15, 0.32, 0.001 +19431227, -0.09, 0.34, -0.34, 0.001 +19431228, -0.84, 0.03, -1.12, 0.001 +19431229, -0.20, -0.38, 0.46, 0.001 +19431230, 1.64, 0.00, 1.53, 0.001 +19431231, 0.08, 0.74, -0.34, 0.001 +19440103, -0.12, 0.09, 0.03, 0.001 +19440104, 1.04, -0.29, 1.15, 0.001 +19440105, 0.96, 0.63, 0.32, 0.001 +19440106, -0.23, 0.25, -0.01, 0.001 +19440107, -0.12, 0.53, 0.00, 0.001 +19440108, 0.03, -0.02, 0.06, 0.001 +19440110, -0.19, 0.20, 0.05, 0.001 +19440111, 0.54, 0.05, 0.30, 0.001 +19440112, -0.60, 0.13, -0.35, 0.001 +19440113, -0.26, 0.04, 0.11, 0.001 +19440114, 0.63, 0.56, 0.48, 0.001 +19440115, 0.47, 0.16, 0.41, 0.001 +19440117, -0.29, -0.04, -0.50, 0.001 +19440118, -0.22, -0.41, 0.10, 0.001 +19440119, -0.02, -0.13, -0.52, 0.001 +19440120, 0.11, 0.39, 0.36, 0.001 +19440121, 0.22, 0.18, 0.42, 0.001 +19440122, 0.23, -0.04, 0.09, 0.001 +19440124, -0.16, 0.28, -0.39, 0.001 +19440125, -0.11, -0.23, -0.28, 0.001 +19440126, -0.87, 0.11, -1.01, 0.001 +19440127, -0.11, -0.01, 0.04, 0.001 +19440128, 0.49, -0.13, 0.90, 0.001 +19440129, 0.11, 0.18, 0.23, 0.001 +19440131, 0.23, 0.05, 0.26, 0.001 +19440201, 0.09, 0.25, -0.11, 0.001 +19440202, -0.17, 0.07, 0.16, 0.001 +19440203, -0.79, 0.27, -0.45, 0.001 +19440204, -0.64, 0.00, -0.60, 0.001 +19440205, 0.20, 0.09, 0.74, 0.001 +19440207, -0.34, -0.03, 0.30, 0.001 +19440208, 0.55, -0.29, 0.16, 0.001 +19440209, -0.01, -0.06, 0.10, 0.001 +19440210, 0.61, -0.27, 1.08, 0.001 +19440211, -0.10, 0.27, 0.04, 0.001 +19440214, 0.08, 0.20, -0.27, 0.001 +19440215, 0.53, -0.17, 0.77, 0.001 +19440216, -0.08, 0.15, -0.49, 0.001 +19440217, 0.39, -0.27, 0.83, 0.001 +19440218, -0.36, 0.29, -0.48, 0.001 +19440219, -0.03, -0.01, 0.06, 0.001 +19440221, 0.03, 0.09, -0.15, 0.001 +19440223, 0.61, -0.26, 1.13, 0.001 +19440224, 0.20, 0.18, -0.03, 0.001 +19440225, 0.04, 0.11, -0.19, 0.001 +19440226, 0.00, -0.06, 0.14, 0.001 +19440228, 0.16, -0.51, -0.46, 0.001 +19440229, -0.60, -0.11, -1.43, 0.001 +19440301, 0.35, -0.15, 0.57, 0.001 +19440302, 0.21, 0.35, 0.24, 0.001 +19440303, 0.11, -0.06, -0.49, 0.001 +19440304, 0.03, 0.00, -0.12, 0.001 +19440306, 0.32, -0.13, 0.56, 0.001 +19440307, 0.67, 0.34, 0.41, 0.001 +19440308, 0.74, 0.04, -0.28, 0.001 +19440309, -0.13, 0.16, 0.17, 0.001 +19440310, 0.45, 0.32, 0.01, 0.001 +19440311, 0.27, 0.09, 0.42, 0.001 +19440313, 0.70, -0.08, 0.55, 0.001 +19440314, -0.23, -0.29, -0.07, 0.001 +19440315, 0.40, 0.08, 0.61, 0.001 +19440316, 0.24, 0.38, 0.58, 0.001 +19440317, 0.16, -0.07, 0.52, 0.001 +19440318, -0.29, 0.21, 0.24, 0.001 +19440320, -0.41, 0.08, -0.41, 0.001 +19440321, 0.32, 0.02, 1.03, 0.001 +19440322, -0.08, 0.29, -0.32, 0.001 +19440323, -0.83, 0.37, -0.42, 0.001 +19440324, 0.24, -0.22, 0.29, 0.001 +19440325, 0.00, 0.17, -0.11, 0.001 +19440327, -0.17, 0.08, -0.38, 0.001 +19440328, -1.24, -0.74, -1.55, 0.001 +19440329, -0.21, -0.27, 0.09, 0.001 +19440330, 0.67, 0.56, 0.77, 0.001 +19440331, 0.18, 0.13, 0.45, 0.001 +19440401, 0.04, -0.05, -0.17, 0.001 +19440403, -0.61, -0.08, -0.75, 0.001 +19440404, 0.05, -0.23, 0.16, 0.001 +19440405, 0.24, 0.15, 0.35, 0.001 +19440406, 0.31, -0.01, 0.06, 0.001 +19440408, 0.20, 0.06, 0.22, 0.001 +19440410, -0.07, -0.26, 0.19, 0.001 +19440411, 0.02, -0.14, 0.64, 0.001 +19440412, -0.52, -0.04, -0.46, 0.001 +19440413, -0.31, -0.25, -0.33, 0.001 +19440414, 0.01, 0.18, -0.05, 0.001 +19440415, 0.18, -0.12, 0.07, 0.001 +19440417, -0.28, 0.15, -0.30, 0.001 +19440418, -1.60, -0.79, -2.03, 0.001 +19440419, -0.40, -0.09, 0.08, 0.001 +19440420, 0.77, 0.25, 0.99, 0.001 +19440421, 0.16, -0.01, 0.20, 0.001 +19440422, -0.06, 0.05, 0.00, 0.001 +19440424, -0.95, -0.35, -1.15, 0.001 +19440425, 0.01, -0.35, 0.14, 0.001 +19440426, 0.52, -0.03, 0.63, 0.001 +19440427, 0.29, 0.15, 0.37, 0.001 +19440428, 0.31, 0.39, 0.15, 0.001 +19440429, 0.03, 0.14, -0.02, 0.001 +19440501, 0.68, -0.19, 0.17, 0.001 +19440502, -0.14, 0.38, -0.51, 0.001 +19440503, 0.47, -0.06, 0.25, 0.001 +19440504, -0.05, 0.19, -0.48, 0.001 +19440505, 0.52, 0.06, 0.59, 0.001 +19440506, 0.17, 0.00, -0.21, 0.001 +19440508, -0.18, 0.19, -0.02, 0.001 +19440509, 0.17, -0.11, 0.07, 0.001 +19440510, 0.16, -0.03, -0.20, 0.001 +19440511, 0.14, 0.03, 0.04, 0.001 +19440512, -0.64, -0.27, -1.09, 0.001 +19440513, 0.03, -0.23, 0.28, 0.001 +19440515, 0.17, 0.01, 0.22, 0.001 +19440516, 0.17, 0.23, 0.54, 0.001 +19440517, 0.67, 0.15, 0.66, 0.001 +19440518, 0.25, 0.17, 0.33, 0.001 +19440519, 0.19, 0.09, -0.21, 0.001 +19440520, 0.09, 0.18, 0.20, 0.001 +19440522, 0.04, 0.16, -0.39, 0.001 +19440523, 0.32, -0.01, 0.31, 0.001 +19440524, 0.38, 0.14, 0.29, 0.001 +19440525, -0.06, 0.05, -0.40, 0.001 +19440526, 0.29, 0.13, 0.12, 0.001 +19440527, 0.23, 0.07, 0.28, 0.001 +19440529, 0.22, 0.25, -0.01, 0.001 +19440531, 0.68, -0.02, 0.13, 0.001 +19440601, -0.03, 0.06, -0.10, 0.001 +19440602, -0.06, -0.07, -0.42, 0.001 +19440603, 0.03, -0.06, 0.01, 0.001 +19440605, -0.53, 0.11, -0.68, 0.001 +19440606, 0.45, -0.22, -0.05, 0.001 +19440607, -0.15, -0.10, -0.70, 0.001 +19440608, -0.24, 0.41, -0.34, 0.001 +19440609, 0.09, 0.16, 0.49, 0.001 +19440610, 0.48, 0.01, 0.37, 0.001 +19440612, 1.43, 0.33, 1.13, 0.001 +19440613, 0.77, 0.12, 0.29, 0.001 +19440614, 0.14, -0.02, -0.54, 0.001 +19440615, 0.54, 0.45, -0.39, 0.001 +19440616, 0.82, 0.18, 0.94, 0.001 +19440617, 0.34, -0.03, 0.35, 0.001 +19440619, 0.54, 0.08, 0.19, 0.001 +19440620, -0.07, -0.05, 0.20, 0.001 +19440621, -0.33, 0.09, -0.01, 0.001 +19440622, 0.01, 0.24, -0.03, 0.001 +19440623, 0.09, 0.65, 0.21, 0.001 +19440624, 0.07, 0.14, 0.17, 0.001 +19440626, 0.58, 0.45, 0.24, 0.001 +19440627, 0.46, 0.33, 0.02, 0.001 +19440628, -0.31, 0.33, 0.14, 0.001 +19440629, -0.03, 0.22, -0.01, 0.001 +19440630, 0.28, -0.04, 0.27, 0.001 +19440701, 0.10, 0.31, 0.04, 0.001 +19440703, 0.77, 0.17, 0.75, 0.001 +19440705, 0.43, 0.44, 0.52, 0.001 +19440706, -0.28, -0.45, -0.33, 0.001 +19440707, 0.22, 0.03, 0.09, 0.001 +19440708, 0.55, 0.15, 0.57, 0.001 +19440710, 0.36, 0.46, -0.39, 0.001 +19440711, -0.17, -0.34, -0.39, 0.001 +19440712, 0.12, 0.30, 0.24, 0.001 +19440713, -0.19, -0.41, 0.14, 0.001 +19440714, 0.00, 0.07, -0.04, 0.001 +19440715, 0.02, 0.57, 0.35, 0.001 +19440717, -1.00, -0.80, -0.47, 0.001 +19440718, -0.81, -0.15, -0.49, 0.001 +19440719, 0.82, 0.72, 0.84, 0.001 +19440720, -0.64, -0.28, -0.84, 0.001 +19440721, -1.33, -0.88, -1.08, 0.001 +19440722, -0.92, -0.39, -0.84, 0.001 +19440724, 0.14, 0.13, 0.39, 0.001 +19440725, 0.89, 0.69, 0.93, 0.001 +19440726, -0.15, 0.57, -0.16, 0.001 +19440727, 0.09, -0.38, 0.08, 0.001 +19440728, -0.46, 0.05, -0.23, 0.001 +19440729, 0.05, -0.14, 0.14, 0.001 +19440731, -0.06, 0.18, -0.16, 0.001 +19440801, 0.45, 0.17, 0.42, 0.001 +19440802, 0.24, 0.23, -0.01, 0.001 +19440803, -0.57, -0.16, -0.66, 0.001 +19440804, -0.75, 0.03, -0.60, 0.001 +19440805, 0.05, 0.11, -0.50, 0.001 +19440807, 0.13, 0.47, -0.86, 0.001 +19440808, -0.35, -0.13, 0.05, 0.001 +19440809, 0.31, -0.27, 0.35, 0.001 +19440810, 0.60, 0.10, 0.66, 0.001 +19440811, 0.52, 0.44, 0.21, 0.001 +19440812, 0.25, 0.18, 0.16, 0.001 +19440814, 0.18, 0.04, -0.04, 0.001 +19440815, -0.10, 0.33, -0.61, 0.001 +19440816, 0.66, -0.01, 0.41, 0.001 +19440817, 0.75, 0.35, 0.29, 0.001 +19440818, 0.36, 0.09, 0.01, 0.001 +19440821, -0.27, -0.09, -0.35, 0.001 +19440822, -0.70, -0.44, -0.41, 0.001 +19440823, 0.12, 0.27, -0.07, 0.001 +19440824, -0.55, -0.58, -0.34, 0.001 +19440825, -0.05, 0.25, 0.06, 0.001 +19440828, -0.09, 0.14, -0.10, 0.001 +19440829, 0.14, 0.45, -0.46, 0.001 +19440830, 0.35, 0.32, 0.75, 0.001 +19440831, -0.11, 0.04, 0.08, 0.001 +19440901, 0.28, 0.18, -0.16, 0.001 +19440905, -0.64, -0.13, -0.80, 0.001 +19440906, -2.19, -0.51, -1.62, 0.001 +19440907, -0.32, -0.41, 0.31, 0.001 +19440908, 0.04, 0.84, 0.17, 0.001 +19440909, -0.21, -0.03, -0.01, 0.001 +19440911, 0.55, -0.25, -0.03, 0.001 +19440912, 0.32, 0.21, -0.44, 0.001 +19440913, -0.94, -0.53, -0.63, 0.001 +19440914, -0.58, -0.32, -0.19, 0.001 +19440915, 0.87, 0.41, 0.21, 0.001 +19440916, 0.44, 0.08, 0.65, 0.001 +19440918, 0.12, -0.11, -0.36, 0.001 +19440919, 0.79, 0.00, 0.72, 0.001 +19440920, 0.20, 0.44, 0.00, 0.001 +19440921, -0.24, -0.06, -0.32, 0.001 +19440922, 0.19, 0.19, -0.06, 0.001 +19440923, 0.27, -0.08, 0.24, 0.001 +19440925, 0.53, 0.30, 0.35, 0.001 +19440926, -0.09, 0.05, -0.31, 0.001 +19440927, 0.05, 0.05, 0.37, 0.001 +19440928, -0.10, 0.19, 0.02, 0.001 +19440929, 0.34, -0.15, 0.62, 0.001 +19440930, 0.39, 0.15, 0.17, 0.001 +19441002, 0.23, 0.38, 0.27, 0.001 +19441003, -0.08, -0.18, -0.11, 0.001 +19441004, 0.45, 0.03, 0.07, 0.001 +19441005, 0.64, -0.24, 0.65, 0.001 +19441006, 0.17, 0.00, -0.02, 0.001 +19441007, 0.20, -0.01, 0.16, 0.001 +19441009, -0.73, 0.01, -0.56, 0.001 +19441010, 0.12, -0.20, 0.03, 0.001 +19441011, 0.51, 0.15, -0.15, 0.001 +19441013, -0.02, 0.16, 0.03, 0.001 +19441014, 0.03, 0.08, -0.14, 0.001 +19441016, -0.39, -0.22, -0.32, 0.001 +19441017, 0.27, -0.08, -0.09, 0.001 +19441018, 0.56, 0.19, 0.23, 0.001 +19441019, -0.16, 0.33, -0.20, 0.001 +19441020, -0.22, 0.04, 0.14, 0.001 +19441021, 0.11, 0.02, 0.13, 0.001 +19441023, -1.37, -0.46, -0.64, 0.001 +19441024, 0.11, -0.20, 0.20, 0.001 +19441025, 0.00, 0.13, -0.10, 0.001 +19441026, -0.65, -0.25, -0.30, 0.001 +19441027, 0.16, 0.04, 0.30, 0.001 +19441028, 0.32, 0.09, -0.04, 0.001 +19441030, -0.28, -0.28, -0.01, 0.001 +19441031, 0.22, 0.32, 0.18, 0.001 +19441101, 0.23, -0.01, 0.15, 0.001 +19441102, 0.52, -0.11, 0.32, 0.001 +19441103, 0.05, 0.23, 0.36, 0.001 +19441104, 0.10, -0.06, 0.00, 0.001 +19441106, 0.27, -0.17, -0.14, 0.001 +19441108, -0.20, 0.13, -0.08, 0.001 +19441109, 0.44, 0.06, 0.35, 0.001 +19441110, 0.30, 0.17, 0.68, 0.001 +19441113, -0.75, -0.26, -0.31, 0.001 +19441114, -1.04, -0.48, -0.71, 0.001 +19441115, -0.13, 0.03, 0.25, 0.001 +19441116, 0.28, -0.05, 0.47, 0.001 +19441117, -0.06, -0.33, 0.06, 0.001 +19441118, 0.10, 0.19, -0.08, 0.001 +19441120, 0.19, 0.02, -0.07, 0.001 +19441121, 0.55, 0.35, 0.41, 0.001 +19441122, 0.14, -0.05, 0.06, 0.001 +19441124, -0.26, 0.14, -0.26, 0.001 +19441125, 0.10, 0.00, 0.10, 0.001 +19441127, 0.14, -0.19, 0.38, 0.001 +19441128, 0.13, 0.22, 0.16, 0.001 +19441129, 0.57, 0.37, -0.01, 0.001 +19441130, 0.04, 0.19, 0.21, 0.001 +19441201, 0.03, 0.16, 0.03, 0.001 +19441202, 0.20, 0.33, 0.56, 0.001 +19441204, 0.60, 0.12, 0.95, 0.001 +19441205, 0.32, -0.02, 0.08, 0.001 +19441206, 0.08, 0.15, 0.19, 0.001 +19441207, 0.33, 0.37, 0.35, 0.001 +19441208, 0.67, 0.04, 0.53, 0.001 +19441209, 0.47, 0.05, 0.02, 0.001 +19441211, 0.23, 0.01, 0.30, 0.001 +19441212, -0.12, -0.02, -0.16, 0.001 +19441213, -0.18, 0.11, -0.33, 0.001 +19441214, 0.28, 0.14, 0.49, 0.001 +19441215, 0.81, -0.07, 1.05, 0.001 +19441216, 0.02, 0.15, -0.09, 0.001 +19441218, -0.50, -0.03, -0.12, 0.001 +19441219, 0.11, -0.26, 0.90, 0.001 +19441220, -0.66, -0.08, -0.53, 0.001 +19441221, -0.23, 0.13, -0.18, 0.001 +19441222, 0.34, 0.05, 1.19, 0.001 +19441223, 0.09, 0.19, -0.10, 0.001 +19441226, -0.56, 0.18, -0.14, 0.001 +19441227, -0.79, -0.46, -0.67, 0.001 +19441228, 1.09, 0.03, 0.98, 0.001 +19441229, 1.31, 0.39, 0.39, 0.001 +19441230, 0.09, 0.51, -0.09, 0.001 +19450102, 0.29, -0.09, 0.22, 0.001 +19450103, 0.94, 0.14, 0.56, 0.001 +19450104, 0.28, -0.11, 0.54, 0.001 +19450105, -0.14, 0.09, -0.29, 0.001 +19450106, -0.14, 0.03, -0.09, 0.001 +19450108, 1.15, 0.21, 1.54, 0.001 +19450109, 0.03, -0.13, 0.35, 0.001 +19450110, 0.60, 0.01, 0.81, 0.001 +19450111, -0.01, -0.04, 0.07, 0.001 +19450112, -0.22, -0.15, -0.27, 0.001 +19450113, 0.07, 0.31, -0.07, 0.001 +19450115, -0.58, 0.30, -1.48, 0.001 +19450116, 0.00, 0.11, -0.05, 0.001 +19450117, 0.75, 0.70, 0.27, 0.001 +19450118, -0.46, 0.13, -0.35, 0.001 +19450119, -0.86, -0.22, -0.54, 0.001 +19450120, -0.65, -0.18, -0.94, 0.001 +19450122, -0.33, 0.16, 0.03, 0.001 +19450123, -0.42, -0.06, -0.37, 0.001 +19450124, 0.06, 0.03, 0.32, 0.001 +19450125, 0.74, 0.32, 0.26, 0.001 +19450126, 0.79, 0.19, 0.81, 0.001 +19450127, 0.41, 0.04, 0.14, 0.001 +19450129, 0.13, 0.10, 0.10, 0.001 +19450130, -0.59, 0.08, -0.83, 0.001 +19450131, 0.18, 0.39, 0.09, 0.001 +19450201, 0.33, 0.19, 0.68, 0.001 +19450202, 0.81, 0.12, 0.43, 0.001 +19450203, 0.32, 0.22, 0.38, 0.001 +19450205, 0.42, 0.46, -0.01, 0.001 +19450206, 0.18, 0.04, 0.17, 0.001 +19450207, 0.25, 0.12, 0.13, 0.001 +19450208, 0.05, -0.12, 0.25, 0.001 +19450209, -0.46, -0.28, -0.56, 0.001 +19450210, 0.19, 0.33, 0.30, 0.001 +19450213, 1.21, -0.19, 0.87, 0.001 +19450214, 0.55, 0.06, 0.27, 0.001 +19450215, 0.65, -0.07, 0.78, 0.001 +19450216, -0.05, 0.07, -0.27, 0.001 +19450217, 0.08, 0.06, -0.14, 0.001 +19450219, 0.60, 0.38, 0.74, 0.001 +19450220, 0.22, -0.01, -0.02, 0.001 +19450221, -0.08, -0.34, 0.10, 0.001 +19450223, -0.15, 0.11, -0.27, 0.001 +19450224, -0.25, -0.11, -0.53, 0.001 +19450226, -0.21, -0.23, -0.09, 0.001 +19450227, 0.69, 0.38, 0.27, 0.001 +19450228, 0.71, 0.28, 0.64, 0.001 +19450301, 0.31, 0.47, 0.72, 0.001 +19450302, -0.52, -0.31, -0.76, 0.001 +19450303, -0.06, 0.00, 0.13, 0.001 +19450305, 0.49, -0.16, 0.10, 0.001 +19450306, 0.47, -0.14, 0.41, 0.001 +19450307, -0.05, -0.23, -0.25, 0.001 +19450308, -1.77, -1.24, -1.35, 0.001 +19450309, -1.88, -0.43, -0.71, 0.001 +19450310, 0.64, 0.33, 0.58, 0.001 +19450312, 0.61, 0.52, 0.60, 0.001 +19450313, -0.03, -0.30, -0.07, 0.001 +19450314, 0.24, 0.31, 0.13, 0.001 +19450315, 0.46, -0.30, 0.35, 0.001 +19450316, 0.16, 0.18, 0.03, 0.001 +19450317, 0.07, -0.07, 0.11, 0.001 +19450319, -0.62, -0.18, -0.48, 0.001 +19450320, -1.12, -0.16, -0.88, 0.001 +19450321, -1.04, -0.57, 0.07, 0.001 +19450322, 0.01, 0.36, 0.10, 0.001 +19450323, 0.34, 0.04, 0.17, 0.001 +19450324, -0.71, 0.20, -0.64, 0.001 +19450326, -1.76, -0.66, -1.53, 0.001 +19450327, 0.46, 0.06, 0.85, 0.001 +19450328, 0.86, 0.31, 0.43, 0.001 +19450329, 0.27, 0.28, 0.22, 0.001 +19450331, 0.26, -0.03, 0.09, 0.001 +19450402, 0.78, 0.02, 0.21, 0.001 +19450403, 0.27, -0.29, 0.22, 0.001 +19450404, -0.12, -0.16, 0.03, 0.001 +19450405, -0.78, -0.05, -1.03, 0.001 +19450406, 0.49, -0.26, 0.47, 0.001 +19450407, 0.47, 0.08, 0.41, 0.001 +19450409, -0.15, 0.13, -0.25, 0.001 +19450410, 0.51, 0.02, 0.51, 0.001 +19450411, 1.08, 0.22, 0.51, 0.001 +19450412, 0.25, 0.32, 0.06, 0.001 +19450413, 0.71, -0.45, 0.30, 0.001 +19450416, 1.79, 0.18, 0.66, 0.001 +19450417, 0.16, 0.18, -0.01, 0.001 +19450418, 0.83, -0.07, 0.39, 0.001 +19450419, -0.58, 0.14, -0.12, 0.001 +19450420, -0.06, -0.03, 0.09, 0.001 +19450421, 0.30, 0.23, 0.35, 0.001 +19450423, 0.48, 0.05, 0.18, 0.001 +19450424, 0.47, -0.18, 0.43, 0.001 +19450425, -0.16, -0.07, -0.11, 0.001 +19450426, -0.30, -0.10, -0.56, 0.001 +19450427, 0.42, 0.20, 0.63, 0.001 +19450428, 0.47, 0.05, 0.16, 0.001 +19450430, 0.24, 0.27, -0.65, 0.001 +19450501, -0.42, -0.41, -0.80, 0.001 +19450502, -0.10, -0.16, -0.19, 0.001 +19450503, 0.68, 0.33, 0.26, 0.001 +19450504, 0.41, 0.11, -0.03, 0.001 +19450505, 0.23, 0.41, -0.33, 0.001 +19450507, 0.00, 0.35, -0.27, 0.001 +19450508, -0.08, 0.25, 0.51, 0.001 +19450509, -0.86, -0.37, -0.60, 0.001 +19450510, -1.12, -0.08, -0.53, 0.001 +19450511, 0.15, 0.41, 0.39, 0.001 +19450512, 0.57, -0.02, 0.48, 0.001 +19450514, -0.35, -0.02, -0.22, 0.001 +19450515, 0.27, 0.14, 0.08, 0.001 +19450516, 0.36, 0.34, 0.31, 0.001 +19450517, 0.49, -0.05, 0.47, 0.001 +19450518, 0.52, 0.08, 0.04, 0.001 +19450519, 0.15, 0.17, 0.08, 0.001 +19450521, -0.39, -0.17, -0.15, 0.001 +19450522, -0.10, 0.24, -0.13, 0.001 +19450523, -0.81, -0.27, -0.01, 0.001 +19450524, 0.07, -0.07, 0.42, 0.001 +19450525, 0.67, 0.40, 0.39, 0.001 +19450526, 0.47, 0.01, 0.08, 0.001 +19450528, 0.78, 0.01, 0.26, 0.001 +19450529, 0.56, -0.17, 0.21, 0.001 +19450531, -0.42, 0.03, -0.35, 0.001 +19450601, 0.15, 0.00, 0.82, 0.001 +19450602, 0.09, 0.10, 0.44, 0.001 +19450604, 0.02, 0.35, 0.04, 0.001 +19450605, 0.09, 0.06, -0.11, 0.001 +19450606, -0.46, 0.14, -0.17, 0.001 +19450607, 0.12, 0.36, 0.38, 0.001 +19450608, -0.04, 0.64, 0.24, 0.001 +19450609, 0.02, 0.16, 0.10, 0.001 +19450611, -0.27, 0.06, -0.33, 0.001 +19450612, 0.13, 0.15, 0.29, 0.001 +19450613, 0.42, 0.28, 0.14, 0.001 +19450614, 0.49, 0.27, 0.76, 0.001 +19450615, 0.24, 0.29, 0.52, 0.001 +19450616, 0.11, -0.25, 1.02, 0.001 +19450618, -0.27, 0.13, 0.28, 0.001 +19450619, 0.11, -0.13, 0.37, 0.001 +19450620, 0.55, 0.08, 0.31, 0.001 +19450621, 0.46, 0.15, 0.51, 0.001 +19450622, -0.06, 0.03, -0.28, 0.001 +19450623, 0.16, 0.17, -0.08, 0.001 +19450625, 0.42, 0.02, 0.37, 0.001 +19450626, 0.19, 0.09, 0.06, 0.001 +19450627, -0.03, 0.12, -0.33, 0.001 +19450628, -2.00, -0.85, -1.61, 0.001 +19450629, -0.85, -0.01, -0.06, 0.001 +19450630, 0.60, 0.67, 0.60, 0.001 +19450702, 0.41, 0.04, -0.03, 0.001 +19450703, 0.05, 0.10, 0.19, 0.001 +19450705, -1.28, -0.32, -0.76, 0.001 +19450706, 0.30, -0.55, 0.11, 0.001 +19450709, 0.91, -0.15, 0.46, 0.001 +19450710, 0.35, 0.39, 0.00, 0.001 +19450711, -0.39, -0.03, -0.46, 0.001 +19450712, 0.19, -0.14, 0.32, 0.001 +19450713, -0.34, -0.24, -0.45, 0.001 +19450716, -0.73, -0.04, -0.55, 0.001 +19450717, -2.05, -0.65, -1.17, 0.001 +19450718, -0.35, -0.18, 0.15, 0.001 +19450719, 0.65, 0.44, 0.18, 0.001 +19450720, 0.01, 0.03, -0.13, 0.001 +19450723, -0.81, -0.21, -0.53, 0.001 +19450724, 0.11, -0.26, 0.04, 0.001 +19450725, 0.92, 0.14, 0.32, 0.001 +19450726, -1.80, -0.04, -1.33, 0.001 +19450727, 0.33, -0.04, 0.66, 0.001 +19450730, 0.91, 0.23, 0.36, 0.001 +19450731, 0.44, -0.01, -0.06, 0.001 +19450801, 0.06, -0.12, -0.06, 0.001 +19450802, -0.34, -0.11, 0.00, 0.001 +19450803, 0.50, -0.03, 0.13, 0.001 +19450806, 0.11, 0.06, -0.59, 0.001 +19450807, -1.32, -0.30, -0.77, 0.001 +19450808, 0.30, 0.12, 0.04, 0.001 +19450809, 1.70, 0.45, 0.30, 0.001 +19450810, -0.01, 0.55, -1.37, 0.001 +19450813, -0.90, 0.13, -1.15, 0.001 +19450814, 0.69, 0.46, -0.18, 0.001 +19450817, -0.35, 0.00, -1.14, 0.001 +19450820, -1.34, -0.39, -0.87, 0.001 +19450821, 0.29, -0.16, 0.03, 0.001 +19450822, 0.68, 0.16, 0.16, 0.001 +19450823, 1.77, 0.08, 0.62, 0.001 +19450824, 1.20, 0.23, -0.01, 0.001 +19450827, 1.49, 0.06, 0.59, 0.001 +19450828, 0.23, -0.01, -0.09, 0.001 +19450829, 0.00, 0.02, -0.09, 0.001 +19450830, 0.34, 0.11, 0.34, 0.001 +19450831, 1.01, 0.25, 0.04, 0.001 +19450904, 0.07, 0.17, -0.20, 0.001 +19450905, 0.08, -0.23, -0.23, 0.001 +19450906, 1.16, -0.06, -0.04, 0.001 +19450907, 0.15, 0.44, -0.73, 0.001 +19450908, 0.08, -0.17, -0.18, 0.001 +19450910, 0.23, 0.12, 0.19, 0.001 +19450911, 0.36, -0.06, 0.26, 0.001 +19450912, 0.56, 0.13, 0.15, 0.001 +19450913, 0.06, 0.12, 0.26, 0.001 +19450914, -0.44, -0.11, -0.07, 0.001 +19450915, -1.39, -0.16, -0.32, 0.001 +19450917, -0.44, 0.13, 0.09, 0.001 +19450918, 1.82, 0.44, 0.37, 0.001 +19450919, 0.99, 0.53, 0.12, 0.001 +19450920, 0.47, 0.00, 0.09, 0.001 +19450921, -0.32, 0.18, 0.20, 0.001 +19450922, -0.12, -0.11, 0.00, 0.001 +19450924, 0.06, 0.06, 0.28, 0.001 +19450925, 0.15, 0.19, 0.43, 0.001 +19450926, -0.10, -0.02, -0.09, 0.001 +19450927, -0.20, -0.19, 0.00, 0.001 +19450928, 0.86, 0.30, 0.12, 0.001 +19450929, 0.62, -0.02, -0.28, 0.001 +19451001, 0.84, -0.03, 0.48, 0.001 +19451002, 0.14, -0.06, -0.30, 0.001 +19451003, 0.00, 0.10, -0.31, 0.001 +19451004, 0.06, 0.26, -0.27, 0.001 +19451005, 0.43, 0.04, -0.04, 0.001 +19451006, 0.51, -0.09, 0.22, 0.001 +19451008, 0.50, 0.36, 0.40, 0.001 +19451009, 0.23, -0.05, 0.16, 0.001 +19451010, 0.43, 0.28, 0.30, 0.001 +19451011, 0.01, 0.25, 0.14, 0.001 +19451015, 0.35, 0.01, 0.06, 0.001 +19451016, 0.00, 0.18, 0.34, 0.001 +19451017, 0.36, 0.07, 0.29, 0.001 +19451018, 0.24, 0.16, 0.20, 0.001 +19451019, -0.84, -0.27, -0.92, 0.001 +19451020, 0.26, -0.12, 0.64, 0.001 +19451022, 0.49, 0.10, 0.00, 0.001 +19451023, -0.75, -0.07, -0.35, 0.001 +19451024, -1.21, -0.17, -0.25, 0.001 +19451025, 0.58, 0.43, 0.22, 0.001 +19451026, 0.54, 0.52, 0.12, 0.001 +19451029, -0.71, -0.04, 0.04, 0.001 +19451030, -0.06, 0.00, 0.42, 0.001 +19451031, 1.44, 0.43, 0.52, 0.001 +19451101, 1.26, 0.15, 0.14, 0.001 +19451102, 0.15, 0.38, -0.50, 0.001 +19451103, 0.15, 0.32, 0.19, 0.001 +19451105, 0.60, 0.36, 0.43, 0.001 +19451107, 1.18, 0.16, 0.11, 0.001 +19451108, -0.11, 0.24, -0.36, 0.001 +19451109, 0.03, 0.12, 0.40, 0.001 +19451110, 0.04, -0.06, 0.29, 0.001 +19451113, -0.33, -0.23, -0.01, 0.001 +19451114, -0.30, -0.01, 0.45, 0.001 +19451115, 0.74, 0.27, 0.64, 0.001 +19451116, 0.73, 0.21, -0.04, 0.001 +19451117, 0.09, 0.16, 0.48, 0.001 +19451119, -0.14, 0.02, 0.59, 0.001 +19451120, 0.49, 0.08, 0.85, 0.001 +19451121, -1.15, 0.16, -0.33, 0.001 +19451123, -0.96, 0.20, -0.28, 0.001 +19451124, -0.68, -0.03, -0.10, 0.001 +19451126, 1.28, 0.05, 0.68, 0.001 +19451127, 1.28, -0.06, 0.43, 0.001 +19451128, -0.18, 0.54, -0.16, 0.001 +19451129, 0.11, 0.52, -0.19, 0.001 +19451130, 1.05, 0.38, 0.45, 0.001 +19451201, 0.59, 0.53, -0.12, 0.001 +19451203, 0.88, 0.35, -0.32, 0.001 +19451204, -0.10, 0.46, 0.04, 0.001 +19451205, 0.11, 0.29, -0.10, 0.001 +19451206, 0.72, 0.45, -0.39, 0.001 +19451207, 0.31, 0.18, 0.04, 0.001 +19451208, 0.45, 0.20, 0.07, 0.001 +19451210, 0.28, 0.47, 0.22, 0.001 +19451211, -0.19, 0.01, -0.34, 0.001 +19451212, -1.46, -0.42, -0.69, 0.001 +19451213, -0.39, -0.33, 0.03, 0.001 +19451214, 0.22, 0.22, 0.06, 0.001 +19451215, 0.35, 0.20, 0.27, 0.001 +19451217, -2.56, -1.15, -1.30, 0.001 +19451218, 0.72, -0.10, 0.54, 0.001 +19451219, 0.15, 0.64, -0.15, 0.001 +19451220, -0.57, -0.11, -0.11, 0.001 +19451221, -0.09, 0.08, -0.07, 0.001 +19451222, 1.04, 0.33, 0.26, 0.001 +19451226, 1.20, 0.23, 0.26, 0.001 +19451227, -0.64, 0.06, 0.21, 0.001 +19451228, 0.07, -0.15, -0.05, 0.001 +19451229, 0.27, -0.13, -0.19, 0.001 +19451231, -0.03, -0.13, -0.45, 0.001 +19460102, -0.51, -0.07, -0.29, 0.001 +19460103, -0.27, -0.45, -0.39, 0.001 +19460104, -0.17, 0.41, 0.33, 0.001 +19460105, 0.35, 0.04, 0.11, 0.001 +19460107, 0.13, 0.22, 0.10, 0.001 +19460108, 2.10, 0.67, 0.85, 0.001 +19460109, 1.46, 0.31, 0.12, 0.001 +19460110, 0.62, 0.06, -0.08, 0.001 +19460111, 0.31, 0.13, 0.21, 0.001 +19460112, -0.50, -0.33, -0.04, 0.001 +19460114, 1.45, 0.61, 0.48, 0.001 +19460115, 0.22, 0.03, -0.36, 0.001 +19460116, 0.15, 0.06, 0.45, 0.001 +19460117, -0.26, 0.30, -0.25, 0.001 +19460118, -0.18, 0.17, -0.16, 0.001 +19460119, -0.83, 0.22, 0.31, 0.001 +19460121, -1.76, -0.27, -0.22, 0.001 +19460122, 0.62, 0.58, 0.72, 0.001 +19460123, 1.12, 0.88, 0.15, 0.001 +19460124, 0.41, 0.60, -0.36, 0.001 +19460125, -0.14, -0.05, 0.13, 0.001 +19460126, 0.11, 0.38, 0.26, 0.001 +19460128, 2.29, -0.01, 0.18, 0.001 +19460129, 0.23, -0.01, 0.18, 0.001 +19460130, -0.48, -0.37, -0.41, 0.001 +19460131, -0.25, -0.37, 0.12, 0.001 +19460201, 0.57, -0.12, 0.72, 0.001 +19460202, 0.54, 0.37, -0.15, 0.001 +19460204, -0.54, 0.12, -0.07, 0.001 +19460205, 0.36, -0.06, 0.64, 0.001 +19460206, -0.63, 0.06, -0.28, 0.001 +19460207, -0.05, -0.19, 0.35, 0.001 +19460208, -0.31, 0.01, -0.35, 0.001 +19460209, -0.83, -0.23, -0.50, 0.001 +19460211, -0.59, 0.21, -0.81, 0.001 +19460213, -1.16, -0.50, 0.09, 0.001 +19460214, 0.76, 0.90, 0.17, 0.001 +19460215, 1.87, 0.44, 0.18, 0.001 +19460216, 0.99, 0.12, -0.23, 0.001 +19460218, -1.45, -0.22, -0.59, 0.001 +19460219, -3.30, -1.08, -0.63, 0.001 +19460220, -1.68, -0.17, 0.09, 0.001 +19460221, 2.03, 0.71, 0.33, 0.001 +19460225, -4.47, -1.06, -0.77, 0.001 +19460226, -0.48, -0.44, 0.40, 0.001 +19460227, 2.06, 0.73, 0.41, 0.001 +19460228, 0.55, -0.22, -0.27, 0.001 +19460301, -0.20, 0.40, -0.15, 0.001 +19460302, -0.60, -0.49, -0.31, 0.001 +19460304, -0.10, -0.25, 0.17, 0.001 +19460305, 1.21, 0.08, -0.31, 0.001 +19460306, -0.33, -0.16, 0.03, 0.001 +19460307, 0.77, 0.11, -0.20, 0.001 +19460308, 0.77, 0.15, -0.07, 0.001 +19460309, 0.27, 0.07, 0.00, 0.001 +19460311, -0.89, -0.05, -0.21, 0.001 +19460312, 0.32, -0.29, 0.18, 0.001 +19460313, -1.64, -0.87, -0.38, 0.001 +19460314, -0.06, 0.22, -0.09, 0.001 +19460315, 1.07, 0.15, 0.44, 0.001 +19460316, 1.08, 0.12, 0.01, 0.001 +19460318, 0.73, 0.45, -0.02, 0.001 +19460319, -0.39, 0.37, -0.35, 0.001 +19460320, 0.79, -0.44, 0.33, 0.001 +19460321, 0.59, 0.52, 0.17, 0.001 +19460322, 0.26, 0.16, -0.19, 0.001 +19460323, 0.38, -0.03, 0.10, 0.001 +19460325, 1.50, 0.19, 0.12, 0.001 +19460326, 0.01, 0.19, -0.26, 0.001 +19460327, -0.64, -0.39, 0.08, 0.001 +19460328, -0.12, -0.02, 0.18, 0.001 +19460329, 0.75, 0.25, 0.35, 0.001 +19460330, 0.28, -0.11, 0.03, 0.001 +19460401, -0.11, -0.12, -0.20, 0.001 +19460402, 0.11, 0.31, -0.03, 0.001 +19460403, 1.46, 0.32, 0.27, 0.001 +19460404, 1.07, 0.70, 0.03, 0.001 +19460405, -0.06, 0.12, -0.10, 0.001 +19460406, 0.22, -0.10, -0.09, 0.001 +19460408, 0.05, -0.06, -0.33, 0.001 +19460409, 1.09, -0.09, -0.15, 0.001 +19460410, -0.19, 0.18, 0.13, 0.001 +19460411, -0.26, -0.34, -0.08, 0.001 +19460412, -0.03, 0.15, -0.10, 0.001 +19460413, -0.49, 0.10, -0.17, 0.001 +19460415, 0.00, 0.11, -0.14, 0.001 +19460416, 1.23, 0.02, 0.19, 0.001 +19460417, 0.04, 0.24, 0.10, 0.001 +19460418, 0.38, 0.28, 0.51, 0.001 +19460420, 0.06, 0.23, 0.14, 0.001 +19460422, -0.08, -0.07, -0.21, 0.001 +19460423, -0.25, -0.32, 0.10, 0.001 +19460424, -0.75, -0.19, -0.28, 0.001 +19460425, -0.55, 0.13, -0.11, 0.001 +19460426, 0.23, 0.21, 0.51, 0.001 +19460427, 0.65, 0.17, 0.40, 0.001 +19460429, 0.10, 0.18, 0.01, 0.001 +19460430, 0.28, 0.13, 0.05, 0.001 +19460501, -0.23, -0.11, 0.17, 0.001 +19460502, -0.38, 0.22, -0.22, 0.001 +19460503, -0.78, -0.10, -0.22, 0.001 +19460504, -0.39, -0.25, -0.07, 0.001 +19460506, -0.69, -0.33, 0.39, 0.001 +19460507, 1.50, 0.56, 0.53, 0.001 +19460508, 0.12, 0.31, -0.27, 0.001 +19460509, 0.13, 0.53, 0.32, 0.001 +19460510, 1.52, 0.74, 0.64, 0.001 +19460511, 0.50, -0.08, -0.32, 0.001 +19460513, -0.12, 0.15, -0.37, 0.001 +19460514, -0.24, -0.10, -0.04, 0.001 +19460515, -0.61, -0.32, 0.23, 0.001 +19460516, 0.54, 0.06, -0.03, 0.001 +19460517, -0.06, 0.29, -0.62, 0.001 +19460518, -0.43, -0.15, -0.23, 0.001 +19460520, 0.71, -0.12, 0.31, 0.001 +19460521, 0.29, 0.18, 0.47, 0.001 +19460522, 0.48, 0.02, 0.48, 0.001 +19460523, -0.07, 0.03, -0.03, 0.001 +19460524, -0.02, 0.00, -0.07, 0.001 +19460527, 0.88, 0.20, 0.05, 0.001 +19460528, 1.14, 0.04, 0.29, 0.001 +19460529, 0.18, -0.12, -0.29, 0.001 +19460531, -0.06, -0.23, -0.01, 0.001 +19460603, -0.57, -0.04, -0.15, 0.001 +19460604, -0.57, -0.29, -0.20, 0.001 +19460605, -0.61, -0.14, -0.16, 0.001 +19460606, -0.02, -0.26, 0.08, 0.001 +19460607, 0.13, 0.08, -0.11, 0.001 +19460610, 0.18, 0.31, 0.15, 0.001 +19460611, -0.91, 0.14, -0.11, 0.001 +19460612, 0.08, -0.41, 0.21, 0.001 +19460613, 0.57, -0.09, 0.13, 0.001 +19460614, -0.14, 0.15, -0.06, 0.001 +19460617, 0.08, 0.00, 0.32, 0.001 +19460618, -1.57, -0.32, -0.46, 0.001 +19460619, -0.62, -0.30, 0.26, 0.001 +19460620, -2.06, -0.16, -0.47, 0.001 +19460621, 0.79, -0.08, -0.21, 0.001 +19460624, 0.34, -0.11, 0.18, 0.001 +19460625, -0.64, -0.12, -0.57, 0.001 +19460626, -0.36, -0.71, -0.03, 0.001 +19460627, 1.77, 0.54, 0.52, 0.001 +19460628, 0.24, 0.21, 0.09, 0.001 +19460701, 0.68, 0.08, -0.05, 0.001 +19460702, -0.23, -0.50, 0.09, 0.001 +19460703, -0.11, -0.04, 0.24, 0.001 +19460705, -0.17, -0.03, -0.27, 0.001 +19460708, -0.25, -0.14, 0.17, 0.001 +19460709, 0.37, -0.14, 0.01, 0.001 +19460710, 0.27, -0.01, 0.10, 0.001 +19460711, -0.48, -0.09, -0.23, 0.001 +19460712, -0.85, -0.43, -0.22, 0.001 +19460715, -1.75, -0.66, 0.07, 0.001 +19460716, -0.20, -0.35, 0.47, 0.001 +19460717, 0.50, 0.31, 0.14, 0.001 +19460718, -0.05, 0.38, -0.28, 0.001 +19460719, -0.40, -0.25, -0.13, 0.001 +19460722, -0.39, -0.36, -0.46, 0.001 +19460723, -2.99, -0.93, -0.28, 0.001 +19460724, 0.02, -0.12, 0.30, 0.001 +19460725, 0.71, 0.46, 0.26, 0.001 +19460726, 0.59, 0.32, 0.34, 0.001 +19460729, 0.40, 0.03, 0.22, 0.001 +19460730, 0.60, 0.05, -0.32, 0.001 +19460731, 1.09, 0.48, -0.11, 0.001 +19460801, 0.50, 0.02, 0.08, 0.001 +19460802, 0.09, -0.04, -0.12, 0.001 +19460805, -0.50, 0.23, 0.22, 0.001 +19460806, -0.35, -0.14, 0.05, 0.001 +19460807, 0.84, -0.03, 0.26, 0.001 +19460808, 0.50, -0.17, 0.08, 0.001 +19460809, -0.25, 0.03, -0.03, 0.001 +19460812, 0.13, -0.11, -0.08, 0.001 +19460813, 0.62, -0.30, 0.09, 0.001 +19460814, -0.05, -0.13, -0.07, 0.001 +19460815, -0.96, -0.01, -0.24, 0.001 +19460816, -0.81, -0.27, 0.44, 0.001 +19460819, -0.27, -0.07, 0.29, 0.001 +19460820, 0.61, 0.11, -0.02, 0.001 +19460821, -0.78, 0.06, -0.19, 0.001 +19460822, -1.60, -0.90, -0.39, 0.001 +19460823, 0.58, 0.36, 0.07, 0.001 +19460826, -0.57, 0.02, -0.32, 0.001 +19460827, -3.30, -1.35, 0.10, 0.001 +19460828, -0.95, -0.03, 0.10, 0.001 +19460829, 0.37, 0.83, 0.05, 0.001 +19460830, -0.48, -0.01, 0.30, 0.001 +19460903, -6.90, -1.74, -0.91, 0.001 +19460904, -0.76, -1.05, -0.27, 0.001 +19460905, 3.49, 0.89, 0.20, 0.001 +19460906, -1.09, 0.18, -0.19, 0.001 +19460909, -5.29, -1.78, -0.67, 0.001 +19460910, -2.52, -0.58, -0.31, 0.001 +19460911, 2.95, -0.05, 0.37, 0.001 +19460912, 0.12, 0.45, 0.49, 0.001 +19460913, 1.85, 0.38, -0.12, 0.001 +19460916, 0.75, 0.55, 0.35, 0.001 +19460917, -0.68, -0.31, -0.06, 0.001 +19460918, -3.19, -1.43, -0.56, 0.001 +19460919, -2.91, -0.68, -0.87, 0.001 +19460920, 2.37, -0.02, 0.31, 0.001 +19460923, -1.60, 0.86, 0.13, 0.001 +19460924, 1.72, -0.98, 0.36, 0.001 +19460925, 2.38, 0.94, -0.12, 0.001 +19460926, 1.09, -0.05, 0.32, 0.001 +19460927, -0.69, 0.13, -0.03, 0.001 +19460930, -1.08, -0.34, -0.40, 0.001 +19461001, -0.32, 0.05, 0.07, 0.001 +19461002, 0.95, -0.14, -0.02, 0.001 +19461003, -0.44, -0.35, -0.15, 0.001 +19461004, -1.12, 0.08, 0.19, 0.001 +19461005, -0.66, 0.31, -0.03, 0.001 +19461007, -0.10, -0.46, 0.48, 0.001 +19461008, -1.09, 0.36, -0.16, 0.001 +19461009, -2.86, -1.02, -0.11, 0.001 +19461010, 1.23, -0.57, 0.71, 0.001 +19461011, 2.07, 0.65, 0.36, 0.001 +19461014, 0.95, 0.24, -0.24, 0.001 +19461015, 3.84, 0.63, 0.47, 0.001 +19461016, -0.22, 1.10, -0.21, 0.001 +19461017, -1.75, -0.69, -0.30, 0.001 +19461018, -0.25, -0.08, 0.30, 0.001 +19461019, -0.16, -0.02, 0.22, 0.001 +19461021, 0.25, -0.08, 0.37, 0.001 +19461022, -0.60, -0.04, 0.15, 0.001 +19461023, -0.91, -0.23, -0.18, 0.001 +19461024, 0.11, 0.22, 0.60, 0.001 +19461025, -0.50, -0.15, 0.34, 0.001 +19461026, -0.08, 0.29, -0.18, 0.001 +19461028, -1.75, 0.12, -0.43, 0.001 +19461029, -0.91, -0.26, 0.11, 0.001 +19461030, -0.06, -0.56, 0.60, 0.001 +19461031, 3.23, 0.79, 0.58, 0.001 +19461101, 1.85, 1.00, 0.10, 0.001 +19461102, 0.62, 0.02, 0.17, 0.001 +19461104, 0.76, 0.01, -0.20, 0.001 +19461106, -3.71, 0.24, -0.73, 0.001 +19461107, 0.44, -0.57, 0.54, 0.001 +19461108, 0.58, -0.08, 0.62, 0.001 +19461109, 0.98, 0.29, 0.56, 0.001 +19461112, -0.45, 0.23, -0.80, 0.001 +19461113, -0.79, -0.61, 0.57, 0.001 +19461114, 0.55, 0.10, 0.04, 0.001 +19461115, -0.93, -0.07, -0.09, 0.001 +19461116, -0.08, -0.07, 0.05, 0.001 +19461118, -0.92, -0.23, -0.23, 0.001 +19461119, -0.42, -0.40, 0.09, 0.001 +19461120, -0.67, -0.21, 0.09, 0.001 +19461121, -1.74, -0.46, -0.32, 0.001 +19461122, -0.51, -0.01, 0.39, 0.001 +19461123, 1.61, 0.37, 0.21, 0.001 +19461125, -0.29, -0.14, 0.27, 0.001 +19461126, 1.28, -0.14, 0.31, 0.001 +19461127, 0.89, 0.18, -0.20, 0.001 +19461129, 1.02, -0.18, 0.27, 0.001 +19461130, 0.07, 0.37, -0.13, 0.001 +19461202, -1.54, -0.20, -0.25, 0.001 +19461203, 0.38, -0.27, 0.31, 0.001 +19461204, 1.76, 0.17, -0.21, 0.001 +19461205, -0.55, -0.28, -0.03, 0.001 +19461206, 0.44, 0.12, -0.11, 0.001 +19461207, 0.81, 0.99, 0.35, 0.001 +19461209, 3.11, -0.29, -0.31, 0.001 +19461210, -0.05, 0.15, -0.28, 0.001 +19461211, 0.15, -0.44, -0.03, 0.001 +19461212, -1.15, -0.02, -0.28, 0.001 +19461213, 0.16, -0.45, 0.31, 0.001 +19461214, 0.58, 0.18, -0.09, 0.001 +19461216, -0.08, 0.30, -0.15, 0.001 +19461217, -0.41, 0.10, -0.06, 0.001 +19461218, 0.23, -0.53, -0.02, 0.001 +19461219, 1.47, 0.68, -0.20, 0.001 +19461220, 0.30, 0.55, -0.24, 0.001 +19461221, 0.21, 0.13, 0.18, 0.001 +19461223, -0.75, 0.04, -0.08, 0.001 +19461224, -0.16, -0.05, 0.19, 0.001 +19461226, -0.79, -0.09, -0.14, 0.001 +19461227, -0.15, -0.55, -0.12, 0.001 +19461228, 0.38, 0.22, 0.05, 0.001 +19461230, -0.14, -0.26, -0.10, 0.001 +19461231, 0.75, -0.12, -0.03, 0.001 +19470102, -0.58, 0.59, 0.07, 0.001 +19470103, 0.14, -0.45, -0.63, 0.001 +19470104, 0.28, 0.58, 0.06, 0.001 +19470106, 0.84, 0.23, -0.07, 0.001 +19470107, -0.72, -0.35, 0.02, 0.001 +19470108, 0.17, -0.24, -0.21, 0.001 +19470109, 0.21, 0.31, -0.16, 0.001 +19470110, -1.21, -0.50, 0.01, 0.001 +19470111, -1.30, -0.11, -0.10, 0.001 +19470113, -1.62, -0.78, -0.03, 0.001 +19470114, 0.32, 0.07, 0.07, 0.001 +19470115, -0.52, 0.13, 0.00, 0.001 +19470116, -0.09, -0.52, 0.15, 0.001 +19470117, 1.70, 0.53, 0.16, 0.001 +19470118, 1.07, 0.99, -0.36, 0.001 +19470120, -1.10, -0.02, 0.24, 0.001 +19470121, -0.33, -0.21, -0.04, 0.001 +19470122, 0.29, 0.16, 0.21, 0.001 +19470123, 0.81, 0.33, -0.07, 0.001 +19470124, 0.28, 0.42, 0.07, 0.001 +19470125, -0.04, 0.14, -0.42, 0.001 +19470127, 0.70, -0.40, -0.06, 0.001 +19470128, 0.66, 0.34, 0.02, 0.001 +19470129, 1.16, 0.29, 0.33, 0.001 +19470130, -0.17, 0.35, -0.05, 0.001 +19470131, 0.37, 0.32, 0.08, 0.001 +19470201, 0.59, 0.38, 0.69, 0.001 +19470203, 0.31, 0.04, 0.24, 0.001 +19470204, 0.09, -0.23, -0.62, 0.001 +19470205, 0.24, -0.20, -0.35, 0.001 +19470206, -0.18, -0.06, -0.14, 0.001 +19470207, 1.42, 0.35, 0.95, 0.001 +19470208, 0.37, 0.26, -0.26, 0.001 +19470210, -0.70, 0.05, -0.65, 0.001 +19470211, 0.45, 0.23, -0.02, 0.001 +19470213, -1.03, 0.06, 0.13, 0.001 +19470214, -0.19, 0.05, 0.14, 0.001 +19470215, -0.01, 0.24, -0.20, 0.001 +19470217, 0.15, -0.10, 0.04, 0.001 +19470218, -0.14, -0.03, 0.20, 0.001 +19470219, -0.78, -0.27, -0.15, 0.001 +19470220, 0.21, -0.10, 0.15, 0.001 +19470221, 0.37, 0.27, 0.01, 0.001 +19470224, -0.68, -0.06, 0.10, 0.001 +19470225, -1.34, -0.83, -0.10, 0.001 +19470226, -1.13, -0.22, -0.10, 0.001 +19470227, 1.23, 0.61, 0.07, 0.001 +19470228, -0.37, 0.29, 0.03, 0.001 +19470301, 0.04, -0.04, -0.02, 0.001 +19470303, -0.36, -0.22, 0.00, 0.001 +19470304, -0.05, 0.03, 0.36, 0.001 +19470305, 1.11, 0.07, 0.11, 0.001 +19470306, 0.41, -0.11, 0.03, 0.001 +19470307, -2.95, -0.26, -0.25, 0.001 +19470308, -0.51, -0.43, 0.00, 0.001 +19470310, -0.44, 0.05, -0.06, 0.001 +19470311, -0.92, -0.50, 0.21, 0.001 +19470312, 0.73, 0.11, 0.33, 0.001 +19470313, -0.04, 0.22, -0.05, 0.001 +19470314, -1.18, -0.55, 0.11, 0.001 +19470315, -0.12, 0.00, -0.14, 0.001 +19470317, 0.34, -0.07, -0.15, 0.001 +19470318, 0.94, -0.24, 0.16, 0.001 +19470319, 0.54, 0.20, -0.10, 0.001 +19470320, -0.22, -0.26, -0.08, 0.001 +19470321, 0.92, -0.43, 0.10, 0.001 +19470322, 0.24, 0.24, 0.02, 0.001 +19470324, -0.65, 0.16, -0.13, 0.001 +19470325, -0.66, -0.13, 0.02, 0.001 +19470326, 1.11, -0.28, 0.15, 0.001 +19470327, 1.32, 0.54, 0.07, 0.001 +19470328, -0.27, 0.32, -0.02, 0.001 +19470329, -0.21, 0.07, -0.06, 0.001 +19470331, -0.71, -0.08, 0.01, 0.001 +19470401, 0.11, -0.32, 0.28, 0.001 +19470402, 0.04, 0.05, -0.05, 0.001 +19470403, -0.33, -0.19, -0.06, 0.001 +19470405, -0.03, 0.00, 0.35, 0.001 +19470407, -0.90, -0.31, -0.16, 0.001 +19470408, -1.23, -0.32, -0.42, 0.001 +19470409, -0.10, -0.08, 0.01, 0.001 +19470410, 0.14, 0.15, 0.14, 0.001 +19470411, -0.67, -0.44, -0.47, 0.001 +19470412, -1.07, -0.37, 0.12, 0.001 +19470414, -2.95, -1.33, -0.15, 0.001 +19470415, -0.03, -0.42, 0.11, 0.001 +19470416, 0.96, 0.40, -0.03, 0.001 +19470417, 0.11, 0.26, -0.05, 0.001 +19470418, -1.20, -0.62, -0.15, 0.001 +19470419, 1.11, -0.50, 0.38, 0.001 +19470421, 0.79, 0.93, 0.46, 0.001 +19470422, 0.58, -0.25, -0.14, 0.001 +19470423, 0.09, 0.26, 0.20, 0.001 +19470424, -0.55, -0.36, 0.16, 0.001 +19470425, -0.83, -0.24, 0.21, 0.001 +19470426, 0.10, -0.13, -0.15, 0.001 +19470428, -0.05, 0.12, 0.08, 0.001 +19470429, -0.15, -0.55, 0.24, 0.001 +19470430, 1.24, 0.11, 0.02, 0.001 +19470501, 0.85, 0.06, 0.13, 0.001 +19470502, 0.48, 0.09, -0.53, 0.001 +19470503, 0.21, -0.20, -0.11, 0.001 +19470505, 0.02, -0.05, 0.05, 0.001 +19470506, -1.00, -0.46, 0.03, 0.001 +19470507, -0.06, -0.67, 0.13, 0.001 +19470508, -0.49, 0.02, -0.05, 0.001 +19470509, -0.19, -0.62, 0.09, 0.001 +19470510, 0.20, 0.08, 0.13, 0.001 +19470512, -1.09, -0.16, -0.08, 0.001 +19470513, -1.71, -0.59, -0.33, 0.001 +19470514, -0.47, -0.38, 0.12, 0.001 +19470515, 0.75, 0.19, -0.25, 0.001 +19470516, -1.98, -0.90, -0.04, 0.001 +19470517, -1.47, -0.39, -0.60, 0.001 +19470519, 0.05, -0.74, 0.25, 0.001 +19470520, 0.52, 0.51, -0.34, 0.001 +19470521, 1.44, -0.31, 0.42, 0.001 +19470522, 0.96, 1.04, 0.44, 0.001 +19470523, 0.39, 0.19, 0.06, 0.001 +19470524, 0.00, -0.14, 0.32, 0.001 +19470526, -0.55, 0.11, -0.33, 0.001 +19470527, -0.11, -0.44, 0.41, 0.001 +19470528, 1.61, 0.23, 0.50, 0.001 +19470529, 0.79, 0.28, -0.01, 0.001 +19470602, -0.98, -0.30, 0.20, 0.001 +19470603, 1.03, -0.22, -0.32, 0.001 +19470604, -0.34, 0.06, 0.05, 0.001 +19470605, -0.02, -0.27, -0.08, 0.001 +19470606, 0.52, -0.08, 0.07, 0.001 +19470609, -0.36, -0.04, -0.21, 0.001 +19470610, 0.68, -0.52, 0.01, 0.001 +19470611, 2.29, 0.68, 0.49, 0.001 +19470612, -0.15, 0.49, -0.45, 0.001 +19470613, 1.02, 0.06, -0.21, 0.001 +19470616, 0.00, -0.02, -0.15, 0.001 +19470617, -0.27, -0.09, -0.18, 0.001 +19470618, -0.06, 0.08, -0.04, 0.001 +19470619, 1.00, 0.07, 0.09, 0.001 +19470620, 0.50, 0.48, 0.39, 0.001 +19470623, 0.54, 0.22, -0.32, 0.001 +19470624, -1.76, 0.11, -0.19, 0.001 +19470625, 0.71, -0.82, 0.13, 0.001 +19470626, 0.44, -0.07, 0.41, 0.001 +19470627, 0.05, 0.06, 0.05, 0.001 +19470630, 0.39, -0.15, -0.30, 0.001 +19470701, 1.47, -0.09, 1.00, 0.001 +19470702, 0.17, 0.83, 0.20, 0.001 +19470703, 1.08, 0.23, 0.63, 0.001 +19470707, 0.26, 0.28, -0.18, 0.001 +19470708, 0.41, 0.63, 0.14, 0.001 +19470709, -0.68, 0.08, -0.27, 0.001 +19470710, 0.78, -0.06, 0.48, 0.001 +19470711, 1.14, 0.45, 0.34, 0.001 +19470714, 0.78, 0.63, 0.21, 0.001 +19470715, -0.16, -0.12, -0.18, 0.001 +19470716, -0.12, 0.00, -0.16, 0.001 +19470717, -0.67, 0.02, 0.07, 0.001 +19470718, 0.21, -0.48, -0.05, 0.001 +19470721, -0.16, 0.00, 0.47, 0.001 +19470722, 0.09, -0.14, 0.18, 0.001 +19470723, 0.69, 0.14, 0.33, 0.001 +19470724, 1.05, 0.14, 0.70, 0.001 +19470725, -0.08, 0.29, -0.16, 0.001 +19470728, -0.76, -0.12, -0.51, 0.001 +19470729, -2.03, -0.78, -0.87, 0.001 +19470730, -0.65, -0.60, -0.25, 0.001 +19470731, 1.32, 0.13, 0.63, 0.001 +19470801, 0.24, -0.16, -0.13, 0.001 +19470804, -1.04, -0.18, -0.47, 0.001 +19470805, 0.26, -0.03, 0.19, 0.001 +19470806, -0.38, -0.12, -0.20, 0.001 +19470807, 0.12, -0.43, 0.25, 0.001 +19470808, -1.07, 0.04, -0.53, 0.001 +19470811, -0.51, 0.03, 0.24, 0.001 +19470812, 0.85, 0.50, 0.63, 0.001 +19470813, -0.07, 0.23, -0.33, 0.001 +19470814, 0.20, -0.01, 0.55, 0.001 +19470815, 0.82, 0.06, 0.58, 0.001 +19470818, -0.26, 0.19, -0.01, 0.001 +19470819, -0.30, -0.17, -0.29, 0.001 +19470820, -0.43, -0.06, -0.27, 0.001 +19470821, 0.29, -0.06, 0.02, 0.001 +19470822, 0.22, -0.02, 0.16, 0.001 +19470825, -1.49, -0.07, -0.54, 0.001 +19470826, 0.03, -0.01, 0.38, 0.001 +19470827, 0.17, 0.31, -0.23, 0.001 +19470828, -0.07, 0.38, 0.10, 0.001 +19470829, 0.70, -0.10, 0.12, 0.001 +19470902, 0.50, 0.03, 0.05, 0.003 +19470903, -0.10, 0.44, 0.11, 0.003 +19470904, -1.30, -0.18, -0.93, 0.003 +19470905, -0.21, -0.10, 0.42, 0.003 +19470908, -1.34, 0.26, -0.70, 0.003 +19470909, 0.16, -0.15, 0.69, 0.003 +19470910, 0.90, -0.02, 0.44, 0.003 +19470911, 0.37, 0.42, -0.06, 0.003 +19470912, -0.28, 0.11, -0.36, 0.003 +19470915, -0.40, 0.00, 0.10, 0.003 +19470916, 0.82, -0.01, 0.78, 0.003 +19470917, 1.43, 0.62, 0.48, 0.003 +19470918, -0.30, 0.24, -0.53, 0.003 +19470919, -0.20, -0.11, -0.24, 0.003 +19470922, -0.13, -0.07, 0.24, 0.003 +19470923, -1.27, 0.24, -0.45, 0.003 +19470924, 0.26, 0.04, 0.61, 0.003 +19470925, -0.56, 0.14, -0.13, 0.003 +19470926, -0.14, -0.01, 0.00, 0.003 +19470929, 0.44, -0.31, 0.46, 0.003 +19470930, 0.86, 0.04, 0.42, 0.003 +19471001, 0.49, 0.49, 0.42, 0.002 +19471002, 0.00, -0.03, -0.07, 0.002 +19471003, 0.67, 0.37, 0.40, 0.002 +19471004, 0.18, 0.20, 0.20, 0.002 +19471006, 0.07, 0.03, -0.28, 0.002 +19471007, -0.02, 0.10, -0.04, 0.002 +19471008, -0.55, 0.33, -0.39, 0.002 +19471009, 0.47, -0.20, 0.37, 0.002 +19471010, 0.32, 0.61, 0.05, 0.002 +19471011, 0.14, 0.54, 0.37, 0.002 +19471014, 1.38, 0.15, 0.63, 0.002 +19471015, 0.36, 0.31, -0.35, 0.002 +19471016, 0.08, -0.02, -0.20, 0.002 +19471017, 0.11, -0.38, -0.07, 0.002 +19471018, 0.44, -0.38, 0.34, 0.002 +19471020, 0.70, 0.16, 0.51, 0.002 +19471021, -0.14, -0.20, -0.12, 0.002 +19471022, -0.26, 0.18, -0.08, 0.002 +19471023, 0.12, -0.08, -0.01, 0.002 +19471024, -1.30, -0.41, -0.80, 0.002 +19471025, 0.14, 0.00, 0.18, 0.002 +19471027, 0.02, -0.30, 0.10, 0.002 +19471028, 0.07, -0.08, -0.08, 0.002 +19471029, -0.41, -0.28, -0.48, 0.002 +19471030, -1.24, -0.79, -0.50, 0.002 +19471031, 0.64, 0.23, 0.05, 0.002 +19471101, 0.22, 0.01, 0.03, 0.003 +19471103, -0.14, -0.20, 0.03, 0.003 +19471105, -0.57, -0.23, -0.39, 0.003 +19471106, 0.05, -0.35, -0.08, 0.003 +19471107, -0.20, 0.18, 0.04, 0.003 +19471108, 0.03, -0.01, -0.01, 0.003 +19471110, 0.35, -0.27, 0.21, 0.003 +19471112, -0.21, -0.12, 0.07, 0.003 +19471113, -0.64, -0.07, -0.36, 0.003 +19471114, 0.04, -0.11, 0.36, 0.003 +19471115, 0.14, -0.07, 0.14, 0.003 +19471117, -0.07, -0.34, 0.32, 0.003 +19471118, 0.76, 0.45, 0.68, 0.003 +19471119, 0.31, 0.39, 0.04, 0.003 +19471120, 0.34, -0.49, 0.26, 0.003 +19471121, -0.34, 0.31, 0.03, 0.003 +19471122, -0.10, 0.08, -0.30, 0.003 +19471124, -0.51, -0.08, -0.17, 0.003 +19471125, -0.30, -0.34, 0.21, 0.003 +19471126, -0.15, -0.05, 0.20, 0.003 +19471128, -0.87, -0.28, -0.06, 0.003 +19471129, -0.15, -0.19, -0.11, 0.003 +19471201, 0.55, -0.23, 0.23, 0.003 +19471202, 0.22, -0.21, 0.36, 0.003 +19471203, -0.74, -0.14, -0.22, 0.003 +19471204, -0.58, -0.16, 0.00, 0.003 +19471205, -1.40, -0.06, -0.30, 0.003 +19471206, 0.02, 0.15, 0.28, 0.003 +19471208, 0.79, -0.09, 0.59, 0.003 +19471209, 0.45, 0.13, 0.49, 0.003 +19471210, 0.23, 0.22, 0.04, 0.003 +19471211, 0.14, -0.48, -0.07, 0.003 +19471212, 0.65, 0.14, 0.44, 0.003 +19471213, 0.64, 0.16, 0.63, 0.003 +19471215, 0.57, 0.21, 0.55, 0.003 +19471216, -0.11, -0.46, 0.03, 0.003 +19471217, 0.33, 0.05, 0.61, 0.003 +19471218, -0.08, -0.14, 0.04, 0.003 +19471219, 0.39, 0.01, 0.03, 0.003 +19471220, 0.83, -0.02, 0.66, 0.003 +19471222, -0.22, 0.00, -0.07, 0.003 +19471223, 0.33, -0.48, 0.47, 0.003 +19471224, -0.07, 0.08, -0.20, 0.003 +19471226, -0.75, -0.55, -0.35, 0.003 +19471227, -0.16, -0.05, -0.24, 0.003 +19471229, -0.41, -0.40, -0.29, 0.003 +19471230, 0.88, -0.12, 0.21, 0.003 +19471231, 0.51, 0.05, -0.27, 0.003 +19480102, 0.41, 0.63, 0.83, 0.003 +19480105, -0.90, 0.74, -0.79, 0.003 +19480106, -0.60, 0.04, -0.28, 0.003 +19480107, 0.60, -0.08, 0.67, 0.003 +19480108, 0.58, 0.26, 0.50, 0.003 +19480109, -0.36, 0.30, 0.08, 0.003 +19480110, 0.06, -0.18, 0.07, 0.003 +19480112, -0.61, 0.07, -0.08, 0.003 +19480113, -1.36, 0.11, -0.89, 0.003 +19480114, -0.12, 0.28, 0.22, 0.003 +19480115, -0.30, 0.29, 0.07, 0.003 +19480116, 0.01, 0.14, 0.51, 0.003 +19480117, -0.05, 0.00, -0.28, 0.003 +19480119, -1.30, -0.34, -0.60, 0.003 +19480120, 0.05, 0.11, 0.46, 0.003 +19480121, -0.98, 0.12, -0.62, 0.003 +19480122, -0.77, -0.01, 0.45, 0.003 +19480123, -0.26, 0.24, 0.11, 0.003 +19480124, 0.03, 0.07, 0.25, 0.003 +19480126, -0.16, -0.07, 0.13, 0.003 +19480127, 0.16, 0.16, 0.40, 0.003 +19480128, 0.80, -0.02, 0.35, 0.003 +19480129, 0.98, -0.19, 0.11, 0.003 +19480130, 0.03, -0.11, -0.23, 0.003 +19480131, 0.10, 0.03, 0.00, 0.003 +19480202, 0.00, 0.05, -0.12, 0.003 +19480203, -0.58, -0.13, -0.26, 0.003 +19480204, -1.82, -0.55, -0.57, 0.003 +19480205, -1.09, -0.09, -0.06, 0.003 +19480206, 0.17, 0.04, 0.24, 0.003 +19480207, 0.62, 0.02, 0.39, 0.003 +19480209, 0.00, -0.05, -0.31, 0.003 +19480210, -2.76, -0.62, -1.18, 0.003 +19480211, -0.27, -0.66, -0.01, 0.003 +19480213, -0.03, 0.17, 0.34, 0.003 +19480214, 0.18, 0.32, 0.22, 0.003 +19480216, 1.29, -0.23, 0.22, 0.003 +19480217, 0.22, 0.11, -0.13, 0.003 +19480218, -0.14, -0.24, 0.09, 0.003 +19480219, -0.22, 0.16, -0.04, 0.003 +19480220, -0.42, -0.28, -0.07, 0.003 +19480221, 0.16, 0.34, 0.24, 0.003 +19480224, 0.14, -0.30, 0.19, 0.003 +19480225, 0.59, 0.11, 0.46, 0.003 +19480226, -0.51, 0.00, -0.12, 0.003 +19480227, -0.44, -0.26, 0.12, 0.003 +19480228, 0.52, 0.34, 0.52, 0.003 +19480301, 0.50, 0.12, 0.42, 0.003 +19480302, 0.58, -0.39, 0.64, 0.003 +19480303, 0.27, 0.02, 0.27, 0.003 +19480304, -0.29, -0.03, -0.53, 0.003 +19480305, 0.12, 0.02, 0.00, 0.003 +19480306, 0.43, 0.18, 0.09, 0.003 +19480308, -0.67, -0.01, 0.07, 0.003 +19480309, -0.61, -0.41, -0.16, 0.003 +19480310, 0.43, 0.27, 0.69, 0.003 +19480311, -0.02, 0.19, -0.02, 0.003 +19480312, 0.01, -0.20, 0.26, 0.003 +19480313, 0.45, 0.02, 0.21, 0.003 +19480315, -0.03, -0.04, -0.07, 0.003 +19480316, -1.66, -0.39, -0.95, 0.003 +19480317, 0.69, -0.16, 0.97, 0.003 +19480318, 0.77, 0.62, 0.59, 0.003 +19480319, 1.61, -0.17, 0.71, 0.003 +19480320, 2.22, 0.36, 0.64, 0.003 +19480322, 0.51, 0.73, -1.23, 0.003 +19480323, 0.06, -0.02, -0.03, 0.003 +19480324, 0.02, -0.04, 0.42, 0.003 +19480325, 0.37, -0.29, 0.41, 0.003 +19480327, -0.19, 0.16, 0.01, 0.003 +19480329, -0.11, -0.31, 0.00, 0.003 +19480330, 0.95, -0.23, 0.36, 0.003 +19480331, 1.46, 0.16, 0.44, 0.003 +19480401, 0.22, -0.31, 0.01, 0.003 +19480402, 0.12, -0.15, -0.53, 0.003 +19480403, 0.12, -0.02, -0.18, 0.003 +19480405, 0.25, 0.06, -0.08, 0.003 +19480406, 0.49, -0.42, 0.24, 0.003 +19480407, -0.21, -0.12, 0.16, 0.003 +19480408, 0.29, -0.23, 0.54, 0.003 +19480409, 0.10, 0.34, 0.49, 0.003 +19480410, 0.09, -0.11, 0.09, 0.003 +19480412, -0.19, 0.17, -0.29, 0.003 +19480413, 0.01, -0.12, 0.08, 0.003 +19480414, 0.01, -0.17, 0.47, 0.003 +19480415, 0.82, 0.13, 0.89, 0.003 +19480416, 0.40, 0.31, -0.10, 0.003 +19480417, -0.07, 0.04, -0.32, 0.003 +19480419, 0.53, -0.09, 1.01, 0.003 +19480420, -0.13, -0.30, -0.28, 0.003 +19480421, 0.45, -0.60, 1.01, 0.003 +19480422, 0.83, -0.24, 0.44, 0.003 +19480423, 0.47, 0.45, 0.45, 0.003 +19480424, -0.11, 0.37, -0.21, 0.003 +19480426, -1.13, 0.05, -1.02, 0.003 +19480427, 0.16, 0.00, 0.57, 0.003 +19480428, 0.25, -0.07, 0.23, 0.003 +19480429, 0.02, -0.19, 0.38, 0.003 +19480430, -0.18, -0.35, -0.05, 0.003 +19480501, -0.24, 0.09, -0.33, 0.003 +19480503, 0.72, -0.35, 0.78, 0.003 +19480504, 0.09, 0.09, 0.05, 0.003 +19480505, -0.57, -0.05, -0.94, 0.003 +19480506, 0.64, 0.01, 0.70, 0.003 +19480507, 0.50, 0.17, -0.37, 0.003 +19480508, 0.26, 0.01, 0.07, 0.003 +19480510, 0.25, -0.58, 0.77, 0.003 +19480511, 0.45, 0.11, -0.34, 0.003 +19480512, 0.19, 0.01, 0.07, 0.003 +19480513, 0.57, 0.31, 0.00, 0.003 +19480514, 2.02, 0.79, 0.22, 0.003 +19480515, 0.95, 0.72, -0.89, 0.003 +19480517, 0.37, 0.44, -0.41, 0.003 +19480518, -0.97, -0.27, -0.25, 0.003 +19480519, 0.18, -0.04, 0.24, 0.003 +19480520, 0.79, 0.46, 0.59, 0.003 +19480521, 0.32, 0.12, 0.08, 0.003 +19480522, 0.18, 0.02, 0.11, 0.003 +19480524, -0.13, -0.14, -0.46, 0.003 +19480525, -0.35, -0.56, -0.55, 0.003 +19480526, 0.85, -0.07, 0.05, 0.003 +19480527, -0.11, -0.22, -0.52, 0.003 +19480528, 0.16, -0.18, 0.18, 0.003 +19480601, 0.17, -0.53, 0.11, 0.004 +19480602, 0.22, -0.38, 0.27, 0.004 +19480603, -0.32, -0.19, -0.40, 0.004 +19480604, -0.75, 0.06, -0.44, 0.004 +19480607, -0.27, -0.39, 0.11, 0.004 +19480608, 1.52, 0.14, 1.43, 0.004 +19480609, 0.52, 0.24, 0.09, 0.004 +19480610, 0.11, -0.21, 0.49, 0.004 +19480611, 0.17, -0.19, 0.11, 0.004 +19480614, 0.02, 0.01, 0.26, 0.004 +19480615, 0.30, -0.52, 0.08, 0.004 +19480616, -0.50, -0.11, -0.07, 0.004 +19480617, -0.11, 0.01, 0.58, 0.004 +19480618, -0.20, -0.18, 0.11, 0.004 +19480621, -0.89, -0.47, -0.35, 0.004 +19480622, -0.07, -0.05, 0.80, 0.004 +19480623, 0.79, 0.64, 0.32, 0.004 +19480624, -0.13, 0.60, -0.13, 0.004 +19480625, -0.36, 0.05, -0.19, 0.004 +19480628, -1.15, -0.32, -0.98, 0.004 +19480629, 0.36, -0.04, 0.26, 0.004 +19480630, 0.50, -0.02, 0.38, 0.004 +19480701, -0.21, 0.03, -0.17, 0.004 +19480702, 0.68, -0.40, 0.61, 0.004 +19480706, 0.12, 0.12, 0.21, 0.004 +19480707, -0.28, 0.01, 0.04, 0.004 +19480708, 0.05, -0.12, 0.22, 0.004 +19480709, 0.57, 0.08, 0.22, 0.004 +19480712, -0.03, 0.26, 0.41, 0.004 +19480713, -0.46, 0.04, 0.05, 0.004 +19480714, 0.13, -0.22, 0.27, 0.004 +19480715, -1.62, 0.23, -1.17, 0.004 +19480716, -1.40, 0.08, -0.38, 0.004 +19480719, -3.17, -0.07, -0.77, 0.004 +19480720, 1.43, -0.20, 0.54, 0.004 +19480721, 0.52, 0.10, -0.18, 0.004 +19480722, 0.63, -0.22, 0.17, 0.004 +19480723, 0.34, -0.02, -0.05, 0.004 +19480726, -0.71, 0.20, -0.46, 0.004 +19480727, 0.86, -0.86, 0.60, 0.004 +19480728, -0.41, 0.42, 0.19, 0.004 +19480729, -0.73, 0.21, -0.12, 0.004 +19480730, -1.44, -0.03, -0.07, 0.004 +19480802, -0.02, -0.27, -0.05, 0.004 +19480803, 0.10, 0.02, 0.19, 0.004 +19480804, 1.29, -0.60, 0.60, 0.004 +19480805, -0.16, 0.17, -0.33, 0.004 +19480806, 0.09, -0.28, 0.37, 0.004 +19480809, -0.81, 0.23, -0.43, 0.004 +19480810, -0.94, 0.17, -0.49, 0.004 +19480811, -0.74, -0.77, -0.35, 0.004 +19480812, 0.36, 0.23, -0.10, 0.004 +19480813, -0.01, 0.08, -0.23, 0.004 +19480816, 0.11, -0.19, -0.10, 0.004 +19480817, 1.02, -0.13, 0.46, 0.004 +19480818, 0.01, 0.30, -0.31, 0.004 +19480819, 0.18, -0.47, 0.30, 0.004 +19480820, 0.67, -0.25, 0.22, 0.004 +19480823, -1.02, 0.32, -0.42, 0.004 +19480824, 0.32, -0.12, 0.45, 0.004 +19480825, -0.17, 0.13, -0.30, 0.004 +19480826, 0.11, -0.18, 0.12, 0.004 +19480827, 0.50, -0.06, 0.30, 0.004 +19480830, -0.45, 0.39, 0.00, 0.004 +19480831, -0.15, 0.15, 0.41, 0.004 +19480901, 1.24, -0.15, 0.57, 0.002 +19480902, 0.68, -0.02, 0.23, 0.002 +19480903, -0.06, -0.13, -0.21, 0.002 +19480907, 0.41, -0.18, 0.39, 0.002 +19480908, -1.45, 0.20, -1.10, 0.002 +19480909, -1.63, 0.04, -0.68, 0.002 +19480910, -0.06, -0.33, -0.01, 0.002 +19480913, -0.74, 0.29, -0.08, 0.002 +19480914, 0.79, -0.38, 0.37, 0.002 +19480915, -0.07, 0.37, -0.17, 0.002 +19480916, 0.04, -0.11, 0.20, 0.002 +19480917, -0.49, -0.02, -0.35, 0.002 +19480920, -1.81, -0.09, -1.11, 0.002 +19480921, 0.61, -0.63, 0.36, 0.002 +19480922, 0.50, 0.12, 0.51, 0.002 +19480923, -0.33, 0.32, -0.34, 0.002 +19480924, 0.17, -0.25, 0.04, 0.002 +19480927, -2.30, 0.22, -1.21, 0.002 +19480928, 0.92, -0.67, 0.42, 0.002 +19480929, 0.96, -0.08, 0.36, 0.002 +19480930, -0.33, 0.20, 0.07, 0.002 +19481001, 1.00, -0.58, 0.21, 0.002 +19481002, 0.52, 0.11, 0.44, 0.002 +19481004, 0.54, -0.03, 0.00, 0.002 +19481005, -0.36, -0.03, -0.38, 0.002 +19481006, 0.33, 0.06, 0.21, 0.002 +19481007, 0.56, -0.08, 0.17, 0.002 +19481008, -0.17, 0.01, -0.17, 0.002 +19481009, 0.06, 0.07, 0.11, 0.002 +19481011, -0.04, -0.18, -0.56, 0.002 +19481013, 0.95, -0.27, 0.63, 0.002 +19481014, 0.32, 0.10, 0.00, 0.002 +19481015, -0.06, 0.02, 0.04, 0.002 +19481016, 0.22, -0.08, 0.24, 0.002 +19481018, 0.27, -0.03, 0.16, 0.002 +19481019, 0.40, -0.10, 0.15, 0.002 +19481020, 0.47, 0.26, 0.20, 0.002 +19481021, 0.13, 0.11, 0.41, 0.002 +19481022, 1.37, -0.12, 0.45, 0.002 +19481023, 0.31, 0.20, 0.13, 0.002 +19481025, -0.54, -0.02, -0.61, 0.002 +19481026, -0.06, -0.15, -0.23, 0.002 +19481027, -0.15, -0.21, -0.57, 0.002 +19481028, -0.67, -0.02, -0.41, 0.002 +19481029, 0.21, -0.35, -0.17, 0.002 +19481030, 0.23, -0.11, 0.12, 0.002 +19481101, 0.78, 0.18, 0.38, 0.002 +19481103, -4.43, -0.77, -1.63, 0.002 +19481104, 1.51, 0.68, 0.14, 0.002 +19481105, -3.94, 0.10, -1.79, 0.002 +19481106, 0.36, 0.03, 0.47, 0.002 +19481108, 0.20, -0.11, 0.29, 0.002 +19481109, -3.01, 0.00, -1.66, 0.002 +19481110, -0.19, -0.36, 0.13, 0.002 +19481112, 0.39, 0.30, 0.08, 0.002 +19481113, 0.24, -0.02, -0.14, 0.002 +19481115, 1.14, -0.20, 0.53, 0.002 +19481116, 0.31, 0.05, 0.02, 0.002 +19481117, -0.31, -0.06, -0.11, 0.002 +19481118, 0.27, 0.11, -0.25, 0.002 +19481119, 0.41, -0.04, 0.34, 0.002 +19481120, 0.17, 0.05, 0.16, 0.002 +19481122, -0.63, 0.00, -0.65, 0.002 +19481123, -0.23, -0.40, -0.05, 0.002 +19481124, -1.48, -0.11, -0.42, 0.002 +19481126, -0.03, -0.07, -0.12, 0.002 +19481127, -0.05, 0.20, -0.08, 0.002 +19481129, -0.70, -0.02, -0.26, 0.002 +19481130, -0.31, -0.12, 0.21, 0.002 +19481201, 1.57, -0.45, 0.73, 0.002 +19481202, 0.36, 0.33, 0.19, 0.002 +19481203, 0.55, -0.23, 0.10, 0.002 +19481204, 0.80, -0.20, 0.41, 0.002 +19481206, 0.13, -0.10, 0.08, 0.002 +19481207, 0.05, -0.03, -0.47, 0.002 +19481208, -0.16, 0.02, -0.27, 0.002 +19481209, -0.27, -0.13, -0.35, 0.002 +19481210, 0.17, -0.25, -0.23, 0.002 +19481211, 0.74, -0.08, 0.60, 0.002 +19481213, -0.05, 0.00, 0.06, 0.002 +19481214, -0.50, -0.24, -0.61, 0.002 +19481215, -0.35, 0.02, -0.35, 0.002 +19481216, -0.24, -0.16, -0.42, 0.002 +19481217, 0.20, -0.08, -0.09, 0.002 +19481218, -0.05, 0.29, -0.16, 0.002 +19481220, 0.10, -0.39, -0.32, 0.002 +19481221, -0.22, -0.02, 0.04, 0.002 +19481222, 0.02, -0.11, 0.12, 0.002 +19481223, 0.09, 0.05, -0.01, 0.002 +19481224, 0.66, -0.09, 0.54, 0.002 +19481227, -0.38, -0.08, -0.76, 0.002 +19481228, -0.71, -0.76, 0.18, 0.002 +19481229, 1.12, -0.20, -0.14, 0.002 +19481230, 0.07, 0.13, -0.49, 0.002 +19481231, -0.47, 0.00, -0.26, 0.002 +19490103, -1.38, 0.77, -0.14, 0.004 +19490104, 0.42, 0.29, 0.81, 0.004 +19490105, 1.01, 0.18, 0.25, 0.004 +19490106, 1.99, 0.14, 0.36, 0.004 +19490107, 0.80, 0.75, 0.15, 0.004 +19490108, 0.05, 0.00, -0.23, 0.004 +19490110, -0.69, 0.12, -0.61, 0.004 +19490111, 0.04, -0.05, 0.02, 0.004 +19490112, -0.07, 0.17, -0.06, 0.004 +19490113, -0.53, 0.01, -0.12, 0.004 +19490114, -0.83, -0.26, -0.22, 0.004 +19490115, 0.20, 0.01, 0.30, 0.004 +19490117, 0.28, -0.20, -0.06, 0.004 +19490118, 0.27, 0.24, -0.02, 0.004 +19490119, 0.29, -0.12, 0.34, 0.004 +19490120, 0.45, -0.03, 0.10, 0.004 +19490121, -0.14, 0.22, -0.04, 0.004 +19490122, 0.15, 0.08, -0.07, 0.004 +19490124, -0.32, 0.04, 0.32, 0.004 +19490125, -0.65, 0.06, -0.17, 0.004 +19490126, -0.30, -0.16, 0.27, 0.004 +19490127, -0.39, 0.00, 0.14, 0.004 +19490128, -0.40, -0.25, -0.39, 0.004 +19490129, 0.17, -0.08, 0.18, 0.004 +19490131, -0.14, -0.12, 0.08, 0.004 +19490201, 0.50, -0.33, -0.10, 0.004 +19490202, 0.18, 0.13, 0.07, 0.004 +19490203, -0.24, 0.02, -0.22, 0.004 +19490204, -1.32, 0.14, -0.58, 0.004 +19490205, -1.48, 0.10, -0.81, 0.004 +19490207, -0.71, -0.08, -0.26, 0.004 +19490208, -0.14, -0.27, 0.43, 0.004 +19490209, 0.59, -0.19, 0.20, 0.004 +19490210, -1.18, 0.18, -0.24, 0.004 +19490211, 0.00, -0.40, 0.16, 0.004 +19490214, 0.16, -0.04, 0.15, 0.004 +19490215, 0.40, -0.12, -0.01, 0.004 +19490216, 0.57, -0.33, 0.06, 0.004 +19490217, 0.85, -0.13, 0.28, 0.004 +19490218, -0.21, 0.23, -0.11, 0.004 +19490219, -0.13, -0.04, -0.09, 0.004 +19490221, -0.25, -0.16, -0.27, 0.004 +19490223, -0.71, -0.03, -0.52, 0.004 +19490224, -0.91, 0.03, -0.31, 0.004 +19490225, -0.18, -0.08, 0.38, 0.004 +19490226, 0.42, 0.00, 0.21, 0.004 +19490228, 0.87, -0.58, 0.68, 0.004 +19490301, 0.52, 0.15, 0.33, 0.004 +19490302, -0.01, 0.05, -0.18, 0.004 +19490303, -0.06, 0.28, -0.34, 0.004 +19490304, 0.22, -0.35, -0.05, 0.004 +19490305, 0.89, -0.07, 0.34, 0.004 +19490307, 0.49, 0.12, 0.24, 0.004 +19490308, 0.35, 0.21, 0.08, 0.004 +19490309, -0.16, 0.00, -0.22, 0.004 +19490310, 0.11, -0.11, -0.04, 0.004 +19490311, 0.92, -0.20, 0.27, 0.004 +19490312, 0.34, 0.26, 0.32, 0.004 +19490314, 0.00, -0.16, -0.05, 0.004 +19490315, -0.63, 0.22, -0.39, 0.004 +19490316, -0.38, -0.05, -0.08, 0.004 +19490317, 0.38, -0.20, 0.29, 0.004 +19490318, -0.22, 0.26, -0.09, 0.004 +19490319, -0.03, 0.14, 0.00, 0.004 +19490321, -0.21, 0.11, 0.32, 0.004 +19490322, -0.75, -0.14, -1.03, 0.004 +19490323, 0.95, -0.63, 0.67, 0.004 +19490324, 0.36, 0.46, 0.33, 0.004 +19490325, -0.50, -0.01, -0.34, 0.004 +19490326, 0.07, 0.14, 0.05, 0.004 +19490328, 0.10, 0.03, -0.16, 0.004 +19490329, 1.76, 0.51, 1.12, 0.004 +19490330, 0.27, 1.07, 0.26, 0.004 +19490331, -0.79, 0.27, -0.33, 0.004 +19490401, -0.64, 0.01, -0.22, 0.004 +19490402, 0.30, 0.12, 0.06, 0.004 +19490404, 0.12, -0.28, 0.01, 0.004 +19490405, 0.05, 0.05, -0.02, 0.004 +19490406, -0.20, 0.01, 0.12, 0.004 +19490407, -0.26, -0.25, -0.13, 0.004 +19490408, 0.15, -0.32, 0.30, 0.004 +19490409, 0.28, 0.20, 0.30, 0.004 +19490411, -0.21, 0.19, -0.35, 0.004 +19490412, 0.10, 0.06, 0.04, 0.004 +19490413, -0.05, -0.11, -0.27, 0.004 +19490414, -0.18, 0.00, -0.10, 0.004 +19490416, 0.30, -0.07, 0.02, 0.004 +19490418, 0.11, -0.41, -0.43, 0.004 +19490419, -0.32, 0.11, -0.21, 0.004 +19490420, -0.19, -0.07, 0.00, 0.004 +19490421, -1.47, 0.00, -0.66, 0.004 +19490422, 0.05, -0.11, 0.22, 0.004 +19490423, 0.40, 0.08, 0.22, 0.004 +19490425, -0.27, 0.20, 0.18, 0.004 +19490426, 0.35, -0.02, 0.28, 0.004 +19490427, 0.06, -0.05, -0.38, 0.004 +19490428, -0.52, 0.16, -0.36, 0.004 +19490429, -0.02, -0.34, -0.07, 0.004 +19490430, 0.20, -0.04, 0.27, 0.004 +19490502, 0.15, -0.19, -0.08, 0.004 +19490503, 0.37, -0.58, -0.16, 0.004 +19490504, 0.95, 0.02, 0.20, 0.004 +19490505, 0.04, 0.25, -0.19, 0.004 +19490506, -0.37, -0.10, -0.19, 0.004 +19490507, -0.03, 0.15, -0.05, 0.004 +19490509, -0.24, -0.17, -0.38, 0.004 +19490510, -0.17, -0.12, -0.21, 0.004 +19490511, 0.15, 0.10, 0.10, 0.004 +19490512, 0.26, 0.01, 0.18, 0.004 +19490513, 0.11, -0.01, 0.37, 0.004 +19490514, 0.26, 0.24, 0.60, 0.004 +19490516, 0.24, 0.07, -0.07, 0.004 +19490517, -0.26, 0.24, -0.44, 0.004 +19490518, -0.20, -0.04, 0.00, 0.004 +19490519, -0.59, -0.20, -0.50, 0.004 +19490520, -0.39, -0.03, -0.26, 0.004 +19490521, 0.02, 0.28, 0.11, 0.004 +19490523, -0.85, 0.02, -0.17, 0.004 +19490524, -0.58, -0.17, -0.45, 0.004 +19490525, 0.26, -0.42, 0.43, 0.004 +19490526, 0.09, 0.28, -0.04, 0.004 +19490527, -0.18, -0.13, -0.07, 0.004 +19490531, -2.01, -0.28, -1.22, 0.004 +19490601, -0.24, -0.11, 0.52, 0.004 +19490602, 0.11, 0.39, -0.29, 0.004 +19490603, -0.55, -0.17, 0.11, 0.004 +19490606, -1.53, -0.08, -0.85, 0.004 +19490607, 0.17, -0.01, 0.40, 0.004 +19490608, 0.67, 0.14, 0.49, 0.004 +19490609, -0.03, -0.07, -0.09, 0.004 +19490610, -0.72, -0.01, -0.70, 0.004 +19490613, -1.84, -0.57, -1.29, 0.004 +19490614, 0.34, -0.31, 0.18, 0.004 +19490615, 1.68, -0.09, 0.80, 0.004 +19490616, -0.15, 0.43, -0.11, 0.004 +19490617, 0.11, -0.17, -0.20, 0.004 +19490620, 1.20, -0.57, 0.55, 0.004 +19490621, 0.17, 0.28, -0.44, 0.004 +19490622, -0.11, 0.03, -0.06, 0.004 +19490623, 0.61, 0.05, 0.20, 0.004 +19490624, 0.12, 0.03, 0.07, 0.004 +19490627, -0.04, 0.04, -0.47, 0.004 +19490628, -0.85, -0.15, -0.11, 0.004 +19490629, 0.58, -0.05, -0.18, 0.004 +19490630, 0.49, 0.11, -0.25, 0.004 +19490701, 0.71, 0.07, 0.67, 0.004 +19490705, 0.45, -0.04, -0.12, 0.004 +19490706, 0.87, -0.06, 0.46, 0.004 +19490707, -0.03, 0.16, -0.35, 0.004 +19490708, 0.02, 0.28, -0.17, 0.004 +19490711, 0.11, 0.11, -0.24, 0.004 +19490712, 0.50, -0.12, -0.02, 0.004 +19490713, 0.97, -0.07, 0.78, 0.004 +19490714, 0.27, 0.11, -0.06, 0.004 +19490715, -0.25, 0.00, 0.04, 0.004 +19490718, 0.30, -0.10, -0.01, 0.004 +19490719, 0.72, -0.26, 0.49, 0.004 +19490720, 0.41, 0.20, 0.06, 0.004 +19490721, -0.38, 0.18, -0.30, 0.004 +19490722, 0.02, -0.02, -0.15, 0.004 +19490725, 0.27, 0.21, 0.14, 0.004 +19490726, 0.58, -0.09, 0.28, 0.004 +19490727, 0.14, 0.00, -0.25, 0.004 +19490728, -0.18, -0.10, -0.66, 0.004 +19490729, -0.09, 0.07, -0.22, 0.004 +19490801, 0.52, -0.40, -0.01, 0.004 +19490802, 0.31, 0.02, 0.25, 0.004 +19490803, -0.01, -0.03, -0.06, 0.004 +19490804, -0.03, -0.05, -0.15, 0.004 +19490805, 1.15, -0.47, 0.70, 0.004 +19490808, 1.07, 0.59, 0.26, 0.004 +19490809, -0.37, 0.45, -0.04, 0.004 +19490810, 0.61, 0.31, 0.35, 0.004 +19490811, -0.25, 0.33, -0.38, 0.004 +19490812, -0.27, -0.08, -0.24, 0.004 +19490815, -0.27, -0.03, -0.25, 0.004 +19490816, 0.37, -0.33, 0.03, 0.004 +19490817, 1.04, -0.14, 0.51, 0.004 +19490818, 0.39, 0.12, 0.14, 0.004 +19490819, -0.45, 0.29, -0.68, 0.004 +19490822, -0.35, -0.11, -0.04, 0.004 +19490823, -1.22, 0.16, -0.40, 0.004 +19490824, 0.09, 0.01, -0.08, 0.004 +19490825, 0.26, 0.05, 0.01, 0.004 +19490826, 0.18, -0.22, -0.15, 0.004 +19490829, -0.69, 0.09, -0.52, 0.004 +19490830, 0.38, -0.31, 0.06, 0.004 +19490831, 0.14, -0.13, 0.16, 0.004 +19490901, 0.69, -0.09, 0.16, 0.004 +19490902, 0.05, -0.14, 0.10, 0.004 +19490906, -0.14, -0.08, -0.46, 0.004 +19490907, 0.63, -0.28, 0.07, 0.004 +19490908, 0.23, -0.02, 0.04, 0.004 +19490909, -0.11, 0.14, -0.30, 0.004 +19490912, 0.83, -0.47, 0.52, 0.004 +19490913, 1.46, 0.34, 1.02, 0.004 +19490914, -0.10, 0.36, -0.15, 0.004 +19490915, -0.51, 0.21, -0.70, 0.004 +19490916, 0.29, 0.23, 0.38, 0.004 +19490919, -0.64, 0.16, -0.30, 0.004 +19490920, -2.20, 0.14, -0.56, 0.004 +19490921, 1.43, -0.20, 0.74, 0.004 +19490922, 0.61, 0.33, 0.65, 0.004 +19490923, 0.44, -0.24, 0.11, 0.004 +19490926, -0.25, 0.09, -0.52, 0.004 +19490927, -0.70, 0.25, -0.72, 0.004 +19490928, 0.92, 0.21, 0.42, 0.004 +19490929, 0.26, 0.21, -0.22, 0.004 +19490930, -0.09, -0.13, 0.02, 0.004 +19491001, -0.42, 0.10, -0.09, 0.004 +19491003, 0.49, -0.18, -0.15, 0.004 +19491004, 0.83, 0.32, -0.20, 0.004 +19491005, 0.40, 0.33, 0.22, 0.004 +19491006, 0.30, 0.13, 0.18, 0.004 +19491007, 0.13, 0.13, -0.17, 0.004 +19491008, 0.10, 0.43, 0.15, 0.004 +19491010, -0.11, 0.18, 0.10, 0.004 +19491011, 0.83, -0.19, 0.67, 0.004 +19491013, 0.04, 0.04, 0.12, 0.004 +19491014, -0.25, -0.03, -0.24, 0.004 +19491015, -0.08, 0.39, -0.17, 0.004 +19491017, -0.99, -0.34, -0.46, 0.004 +19491018, 0.78, 0.17, 0.37, 0.004 +19491019, 0.43, 0.06, 0.12, 0.004 +19491020, -0.13, -0.20, -0.13, 0.004 +19491021, -0.09, 0.14, 0.00, 0.004 +19491022, 0.03, 0.04, 0.04, 0.004 +19491024, 0.00, 0.16, -0.15, 0.004 +19491025, 0.44, -0.11, 0.11, 0.004 +19491026, 0.84, -0.10, 0.15, 0.004 +19491027, 0.44, 0.18, 0.33, 0.004 +19491028, -0.52, -0.24, -0.73, 0.004 +19491029, 0.03, -0.34, -0.13, 0.004 +19491031, -0.39, -0.06, -0.39, 0.004 +19491101, 0.74, -0.30, 0.07, 0.004 +19491102, 0.92, -0.52, 0.35, 0.004 +19491103, -0.17, 0.07, -0.04, 0.004 +19491104, 0.01, -0.08, 0.22, 0.004 +19491105, 0.14, 0.06, 0.02, 0.004 +19491107, -0.21, 0.08, -0.19, 0.004 +19491109, -0.07, -0.13, -1.01, 0.004 +19491110, -0.10, -0.26, -0.13, 0.004 +19491112, 0.00, 0.07, -0.16, 0.004 +19491114, -0.67, -0.06, -0.38, 0.004 +19491115, -0.62, -0.22, -0.33, 0.004 +19491116, 0.54, 0.01, 0.13, 0.004 +19491117, 0.77, 0.08, -0.08, 0.004 +19491118, 1.04, -0.27, 0.31, 0.004 +19491119, 0.22, 0.45, 0.13, 0.004 +19491121, -0.57, 0.08, -0.10, 0.004 +19491122, 0.32, -0.12, 0.22, 0.004 +19491123, 0.19, -0.11, 0.08, 0.004 +19491125, -0.55, 0.19, -0.26, 0.004 +19491126, 0.11, -0.16, 0.14, 0.004 +19491128, -0.37, 0.44, -0.17, 0.004 +19491129, -0.10, -0.34, 0.30, 0.004 +19491130, 0.30, 0.13, 0.00, 0.004 +19491201, 0.60, -0.04, 0.47, 0.004 +19491202, 0.94, 0.13, 0.79, 0.004 +19491203, 0.67, 0.23, 0.47, 0.004 +19491205, 0.20, 0.22, -0.71, 0.004 +19491206, -0.09, 0.09, -0.26, 0.004 +19491207, 0.12, 0.26, 0.30, 0.004 +19491208, 0.12, 0.27, 0.10, 0.004 +19491209, -0.01, 0.05, -0.15, 0.004 +19491210, 0.15, 0.08, -0.19, 0.004 +19491212, 0.57, -0.22, 0.32, 0.004 +19491213, 0.60, 0.18, 0.27, 0.004 +19491214, 0.36, 0.24, 0.35, 0.004 +19491215, 0.22, -0.22, -0.10, 0.004 +19491216, -0.08, 0.35, 0.04, 0.004 +19491217, -0.05, 0.14, 0.11, 0.004 +19491219, -0.20, -0.09, -0.04, 0.004 +19491220, -0.54, -0.01, -0.74, 0.004 +19491221, -0.14, -0.24, -0.23, 0.004 +19491222, 0.78, -0.11, 0.38, 0.004 +19491223, 0.19, 0.27, 0.05, 0.004 +19491227, -0.51, -0.46, -0.33, 0.004 +19491228, 0.49, -0.02, 0.32, 0.004 +19491229, 0.21, 0.20, 0.14, 0.004 +19491230, 0.47, 0.29, 0.37, 0.004 +19491231, -0.07, 0.38, -0.06, 0.004 +19500103, -0.59, 0.41, 0.29, 0.004 +19500104, 1.09, 0.41, 1.18, 0.004 +19500105, 0.40, 0.69, -0.12, 0.004 +19500106, 0.24, 0.42, 0.08, 0.004 +19500107, 0.64, 0.59, 0.45, 0.004 +19500109, 0.13, 0.64, 0.45, 0.004 +19500110, -0.35, 0.00, 0.20, 0.004 +19500111, 0.42, 0.48, 0.29, 0.004 +19500112, -1.82, -0.68, -1.77, 0.004 +19500113, -0.50, -0.20, 0.44, 0.004 +19500114, 0.15, 0.83, -0.07, 0.004 +19500116, 0.18, -0.16, -0.08, 0.004 +19500117, 0.76, 0.18, -0.08, 0.004 +19500118, -0.07, -0.10, 0.16, 0.004 +19500119, 0.18, -0.34, 0.06, 0.004 +19500120, 0.23, 0.08, -0.44, 0.004 +19500121, 0.11, -0.17, 0.02, 0.004 +19500123, -0.19, -0.13, 0.05, 0.004 +19500124, -0.32, -0.03, -0.60, 0.004 +19500125, -0.60, -0.22, -0.35, 0.004 +19500126, 0.14, 0.37, 0.31, 0.004 +19500127, 0.37, 0.14, -0.14, 0.004 +19500128, 0.33, 0.23, -0.16, 0.004 +19500130, 0.68, -0.08, 0.30, 0.004 +19500131, 0.14, -0.09, -0.20, 0.004 +19500201, 0.01, -0.04, 0.00, 0.004 +19500202, 0.98, -0.09, -0.20, 0.004 +19500203, 0.33, -0.37, 0.29, 0.004 +19500204, 0.24, 0.06, -0.22, 0.004 +19500206, -0.24, -0.04, -0.01, 0.004 +19500207, -0.41, -0.38, -0.19, 0.004 +19500208, 0.11, 0.07, 0.00, 0.004 +19500209, 0.43, 0.21, -0.07, 0.004 +19500210, -0.21, -0.05, -0.64, 0.004 +19500211, -0.07, 0.44, -0.28, 0.004 +19500214, -0.62, 0.32, -0.69, 0.004 +19500215, 0.08, 0.21, 0.76, 0.004 +19500216, -0.16, -0.09, -0.31, 0.004 +19500217, 0.64, 0.11, 0.49, 0.004 +19500218, 0.42, 0.22, 0.44, 0.004 +19500220, -0.13, -0.07, 0.05, 0.004 +19500221, -0.15, -0.13, -0.05, 0.004 +19500223, 0.15, -0.12, -0.21, 0.004 +19500224, 0.35, 0.02, 0.03, 0.004 +19500225, -0.08, 0.04, 0.11, 0.004 +19500227, 0.14, -0.15, -0.05, 0.004 +19500228, -0.34, -0.15, -0.03, 0.004 +19500301, 0.34, -0.05, 0.24, 0.004 +19500302, 0.04, -0.05, -0.18, 0.004 +19500303, 0.37, 0.07, 0.50, 0.004 +19500304, 0.27, 0.22, 0.11, 0.004 +19500306, 0.06, -0.11, -0.22, 0.004 +19500307, -0.67, -0.61, -0.18, 0.004 +19500308, 0.19, -0.17, 0.12, 0.004 +19500309, -0.61, 0.01, -0.32, 0.004 +19500310, -0.06, -0.22, -0.34, 0.004 +19500311, 0.26, 0.22, 0.23, 0.004 +19500313, -0.05, 0.02, -0.29, 0.004 +19500314, 0.53, -0.29, 0.11, 0.004 +19500315, 1.31, 0.07, 0.70, 0.004 +19500316, 0.29, 0.09, 0.02, 0.004 +19500317, -0.18, -0.38, -0.47, 0.004 +19500318, 0.20, -0.06, 0.21, 0.004 +19500320, -0.14, 0.05, -0.01, 0.004 +19500321, 0.04, -0.23, -0.29, 0.004 +19500322, 0.55, -0.34, 0.11, 0.004 +19500323, 0.07, -0.23, -0.33, 0.004 +19500324, -0.03, -0.35, -0.47, 0.004 +19500325, 0.27, 0.38, -0.34, 0.004 +19500327, -0.83, -0.09, -0.86, 0.004 +19500328, 0.30, 0.10, -0.10, 0.004 +19500329, -0.35, 0.01, -0.03, 0.004 +19500330, -0.92, 0.31, -0.79, 0.004 +19500331, 0.04, 0.20, 0.11, 0.004 +19500401, 0.27, 0.27, 0.62, 0.004 +19500403, 0.87, -0.21, 0.33, 0.004 +19500404, 0.17, -0.17, -0.01, 0.004 +19500405, 0.33, -0.10, -0.37, 0.004 +19500406, 0.93, 0.10, 0.14, 0.004 +19500408, 0.24, 0.07, 0.04, 0.004 +19500410, 0.06, -0.03, 0.10, 0.004 +19500411, -0.56, -0.16, -0.74, 0.004 +19500412, 0.95, 0.39, 0.36, 0.004 +19500413, 0.12, 0.20, -0.14, 0.004 +19500414, -0.14, 0.23, -0.92, 0.004 +19500415, -0.43, 0.07, -0.19, 0.004 +19500417, -0.07, 0.21, 0.35, 0.004 +19500418, 0.40, -0.41, 0.88, 0.004 +19500419, 0.13, 0.39, 0.03, 0.004 +19500420, -0.69, 0.15, -0.42, 0.004 +19500421, 0.34, 0.56, 0.07, 0.004 +19500422, 0.10, 0.20, 0.25, 0.004 +19500424, -0.77, -0.02, -0.03, 0.004 +19500425, 0.02, -0.05, 0.21, 0.004 +19500426, -0.17, -0.27, 0.06, 0.004 +19500427, 0.58, 0.03, 0.45, 0.004 +19500428, 0.62, 0.27, -0.11, 0.004 +19500429, 0.59, 0.19, 0.35, 0.004 +19500501, 0.59, -0.02, 0.27, 0.004 +19500502, -0.44, -0.42, -0.17, 0.004 +19500503, 0.70, -0.05, 0.45, 0.004 +19500504, -0.56, -0.52, 0.05, 0.004 +19500505, 0.43, 0.03, 0.36, 0.004 +19500506, 0.55, -0.24, 0.36, 0.004 +19500508, -0.03, 0.02, -0.06, 0.004 +19500509, 0.36, 0.02, 0.17, 0.004 +19500510, 0.01, -0.37, -0.25, 0.004 +19500511, 0.23, -0.24, 0.31, 0.004 +19500512, -0.41, 0.19, -0.50, 0.004 +19500513, 0.16, 0.28, -0.11, 0.004 +19500515, 0.18, -0.05, 0.16, 0.004 +19500516, 0.73, -0.19, 0.35, 0.004 +19500517, 0.40, -0.09, -0.12, 0.004 +19500518, 0.33, -0.23, -0.20, 0.004 +19500519, 0.62, -0.16, 0.53, 0.004 +19500520, 0.20, 0.09, 0.08, 0.004 +19500522, -0.45, 0.03, -0.59, 0.004 +19500523, 0.33, -0.12, -0.05, 0.004 +19500524, -0.11, -0.11, -0.57, 0.004 +19500525, -0.03, -0.24, 0.24, 0.004 +19500526, -0.01, -0.04, 0.23, 0.004 +19500527, -0.05, 0.04, 0.14, 0.004 +19500529, 0.33, 0.03, -0.20, 0.004 +19500531, 0.21, 0.31, -0.42, 0.004 +19500601, -0.11, -0.15, -0.25, 0.004 +19500602, 0.05, -0.04, -0.17, 0.004 +19500605, -0.86, -0.47, -0.55, 0.004 +19500606, 0.71, -0.52, -0.15, 0.004 +19500607, 0.43, 0.54, -0.01, 0.004 +19500608, 0.80, -0.18, 0.14, 0.004 +19500609, 0.56, -0.39, 0.41, 0.004 +19500612, 0.46, -0.50, 0.01, 0.004 +19500613, -0.51, -0.14, 0.11, 0.004 +19500614, -1.13, 0.19, -0.35, 0.004 +19500615, -0.03, -0.04, 0.28, 0.004 +19500616, 0.02, 0.14, 0.04, 0.004 +19500619, -0.38, 0.19, -0.45, 0.004 +19500620, -0.28, -0.12, -0.23, 0.004 +19500621, 0.87, 0.18, 0.38, 0.004 +19500622, 0.75, -0.14, 0.19, 0.004 +19500623, 0.08, -0.13, 0.22, 0.004 +19500626, -5.27, -0.15, -1.34, 0.004 +19500627, -1.04, -1.69, 0.26, 0.004 +19500628, 1.26, 1.02, 0.69, 0.004 +19500629, -3.54, 0.35, -0.71, 0.004 +19500630, 1.31, -0.47, 0.77, 0.004 +19500703, -0.55, 0.13, -0.30, 0.005 +19500705, 0.84, -0.68, 1.01, 0.005 +19500706, 0.69, 0.44, 0.40, 0.005 +19500707, -1.13, 0.26, -0.09, 0.005 +19500710, -0.49, -0.22, 1.59, 0.005 +19500711, -1.44, 0.63, 2.41, 0.005 +19500712, -2.40, 0.09, 0.47, 0.005 +19500713, -0.98, -0.18, 0.63, 0.005 +19500714, 1.29, 0.11, 0.17, 0.005 +19500717, -0.84, 0.09, 0.39, 0.005 +19500718, 2.27, -0.94, 0.75, 0.005 +19500719, 1.72, 0.02, 0.59, 0.005 +19500720, 1.47, 0.17, 1.66, 0.005 +19500721, 0.19, 0.40, 1.03, 0.005 +19500724, -0.58, 0.48, 0.91, 0.005 +19500725, -1.33, 0.24, 1.33, 0.005 +19500726, 0.32, -0.20, 0.58, 0.005 +19500727, 1.20, 0.04, 0.81, 0.005 +19500728, 0.83, -0.02, -1.37, 0.005 +19500731, 0.41, -0.29, 0.07, 0.005 +19500801, 0.79, -0.08, -0.12, 0.004 +19500802, -0.03, 0.12, -0.80, 0.004 +19500803, 0.28, 0.44, 0.19, 0.004 +19500804, 0.52, -0.05, -0.11, 0.004 +19500807, 1.16, -0.40, 0.24, 0.004 +19500808, 0.20, -0.21, -1.02, 0.004 +19500809, 0.56, -0.36, 0.05, 0.004 +19500810, 0.21, 0.05, -0.06, 0.004 +19500811, -0.58, 0.21, -0.31, 0.004 +19500814, 0.12, 0.12, 0.25, 0.004 +19500815, 0.26, 0.21, 0.20, 0.004 +19500816, 0.31, 0.13, 0.55, 0.004 +19500817, 1.00, -0.15, 0.45, 0.004 +19500818, 0.58, -0.13, 0.04, 0.004 +19500821, 0.15, 0.32, -0.67, 0.004 +19500822, -0.18, -0.18, -0.26, 0.004 +19500823, 0.72, -0.01, 0.56, 0.004 +19500824, 0.01, 0.30, -0.29, 0.004 +19500825, -1.17, 0.21, -0.28, 0.004 +19500828, 0.02, 0.21, 0.30, 0.004 +19500829, 0.23, -0.02, 0.03, 0.004 +19500830, -0.29, -0.08, -0.32, 0.004 +19500831, -0.10, 0.04, 0.06, 0.004 +19500901, 0.50, -0.27, 0.15, 0.005 +19500905, 0.47, -0.26, -0.15, 0.005 +19500906, -0.56, 0.03, -0.13, 0.005 +19500907, 0.36, -0.06, 0.34, 0.005 +19500908, 0.80, 0.19, 0.29, 0.005 +19500911, -0.66, 0.04, -0.22, 0.005 +19500912, 1.13, -0.34, 1.11, 0.005 +19500913, 1.05, 0.17, 0.20, 0.005 +19500914, 0.44, 0.02, 0.41, 0.005 +19500915, 0.39, -0.08, -0.48, 0.005 +19500918, 0.27, -0.31, -0.45, 0.005 +19500919, -0.33, -0.05, -0.27, 0.005 +19500920, -0.50, 0.14, -0.10, 0.005 +19500921, 0.81, 0.06, 0.51, 0.005 +19500922, 0.54, 0.29, 0.16, 0.005 +19500925, -0.20, 0.42, -0.49, 0.005 +19500926, -1.22, 0.30, -1.48, 0.005 +19500927, 1.26, -0.19, -0.24, 0.005 +19500928, 0.12, 0.20, -0.09, 0.005 +19500929, 0.09, 0.24, -0.08, 0.005 +19501002, 0.95, -0.10, 0.87, 0.005 +19501003, -0.21, -0.01, -0.04, 0.005 +19501004, 1.21, -0.39, 0.20, 0.005 +19501005, -0.35, 0.28, -0.36, 0.005 +19501006, 0.80, -0.47, 0.59, 0.005 +19501007, 0.29, 0.09, 0.24, 0.005 +19501009, -0.83, -0.11, -0.57, 0.005 +19501010, -0.72, 0.50, -0.01, 0.005 +19501011, 0.53, 0.01, 0.78, 0.005 +19501013, 0.10, 0.18, 0.19, 0.005 +19501014, -0.46, -0.10, 0.01, 0.005 +19501016, -0.05, 0.07, 0.03, 0.005 +19501017, 0.77, 0.13, 0.58, 0.005 +19501018, 0.64, 0.11, 0.38, 0.005 +19501019, -0.02, 0.17, -0.03, 0.005 +19501020, -0.17, -0.06, -0.39, 0.005 +19501021, 0.24, 0.06, 0.08, 0.005 +19501023, -0.07, 0.13, 0.21, 0.005 +19501024, 0.21, -0.03, -0.35, 0.005 +19501025, -0.13, 0.03, 0.02, 0.005 +19501026, -2.07, -0.28, -0.96, 0.005 +19501027, 0.57, -0.13, 0.44, 0.005 +19501028, 0.19, 0.02, 0.68, 0.005 +19501030, -0.91, 0.01, -1.03, 0.005 +19501031, -0.63, -0.69, -0.06, 0.005 +19501101, 0.41, -0.02, 0.44, 0.005 +19501102, 0.93, 0.02, 0.17, 0.005 +19501103, 0.33, -0.33, -0.30, 0.005 +19501104, -0.34, 0.03, -0.32, 0.005 +19501106, -2.17, -0.48, -0.76, 0.005 +19501108, 1.47, 0.30, 0.65, 0.005 +19501109, 1.33, -0.20, 0.94, 0.005 +19501110, 0.73, -0.34, 0.13, 0.005 +19501113, 0.43, -0.07, 0.29, 0.005 +19501114, 0.24, -0.24, 0.27, 0.005 +19501115, -0.16, 0.22, -0.06, 0.005 +19501116, -0.20, -0.02, 0.32, 0.005 +19501117, 0.83, -0.18, 1.30, 0.005 +19501118, 0.50, 0.05, 0.23, 0.005 +19501120, 0.02, 0.13, 0.02, 0.005 +19501121, -0.01, 0.14, 0.02, 0.005 +19501122, 1.06, -0.24, 0.33, 0.005 +19501124, 0.74, -0.01, -0.14, 0.005 +19501125, -0.09, 0.19, -0.29, 0.005 +19501127, -0.30, 0.17, 0.03, 0.005 +19501128, -2.81, -0.16, -1.10, 0.005 +19501129, -0.86, 0.27, 0.82, 0.005 +19501130, 0.75, -0.08, 0.24, 0.005 +19501201, 0.76, -0.18, 0.73, 0.005 +19501202, -0.61, 0.27, -0.31, 0.005 +19501204, -2.78, -0.13, -1.18, 0.005 +19501205, 1.54, -0.26, 1.58, 0.005 +19501206, 0.86, -0.04, 0.87, 0.005 +19501207, -0.17, -0.12, 0.05, 0.005 +19501208, 0.27, 0.14, 1.20, 0.005 +19501209, 0.37, 0.19, 0.51, 0.005 +19501211, 0.93, -0.31, 0.27, 0.005 +19501212, 0.06, -0.04, -0.16, 0.005 +19501213, 0.02, -0.40, 0.08, 0.005 +19501214, -1.04, 0.35, -0.41, 0.005 +19501215, -0.40, 0.24, 0.84, 0.005 +19501216, 1.58, -0.25, 1.78, 0.005 +19501218, 1.03, 0.13, 0.80, 0.005 +19501219, 0.53, 0.08, 0.65, 0.005 +19501220, 0.27, 0.70, 0.17, 0.005 +19501221, 0.14, 0.52, -0.38, 0.005 +19501222, 0.34, 0.32, -0.27, 0.005 +19501226, -0.79, -0.34, -0.52, 0.005 +19501227, 1.98, 0.11, 0.79, 0.005 +19501228, 0.53, 0.19, 0.60, 0.005 +19501229, -0.05, 0.15, -0.56, 0.005 +19501230, 0.14, 0.15, -0.22, 0.005 +19510102, 1.57, 0.03, 0.77, 0.005 +19510103, -0.28, 0.08, -0.17, 0.005 +19510104, 0.69, 0.24, 1.04, 0.005 +19510105, 0.04, 0.03, -0.02, 0.005 +19510106, -0.08, 0.23, -0.44, 0.005 +19510108, 0.48, 0.19, 0.37, 0.005 +19510109, 0.56, 0.35, 0.16, 0.005 +19510110, -1.32, -0.50, -1.22, 0.005 +19510111, 1.60, 0.35, 1.29, 0.005 +19510112, -0.30, -0.17, -0.44, 0.005 +19510113, 0.09, -0.04, 0.09, 0.005 +19510115, 0.53, 0.10, 0.42, 0.005 +19510116, 0.70, -0.03, 0.54, 0.005 +19510117, 0.55, -0.18, 0.33, 0.005 +19510118, -0.28, 0.44, -0.06, 0.005 +19510119, -0.13, 0.24, -0.36, 0.005 +19510120, 0.15, 0.21, -0.08, 0.005 +19510122, -1.00, -0.10, -0.44, 0.005 +19510123, 0.32, 0.08, -0.25, 0.005 +19510124, -0.31, 0.07, -0.27, 0.005 +19510125, -0.68, -0.30, -0.32, 0.005 +19510126, 1.00, 0.50, 1.14, 0.005 +19510127, 1.05, 0.23, 0.81, 0.005 +19510129, 0.69, -0.25, 0.56, 0.005 +19510130, 0.25, -0.49, 0.25, 0.005 +19510131, -0.25, 0.35, -0.11, 0.005 +19510201, 0.60, 0.08, 0.17, 0.005 +19510202, 0.75, 0.09, -0.30, 0.005 +19510203, 0.37, 0.02, -0.07, 0.005 +19510205, 0.34, -0.37, -0.01, 0.005 +19510206, -0.34, 0.04, -0.42, 0.005 +19510207, -0.27, 0.09, 0.03, 0.005 +19510208, 0.53, 0.08, 0.12, 0.005 +19510209, 0.46, 0.09, 0.07, 0.005 +19510210, 0.14, 0.02, 0.19, 0.005 +19510213, 0.10, -0.34, -0.29, 0.005 +19510214, -0.30, -0.16, -0.18, 0.005 +19510215, -0.22, 0.26, -0.50, 0.005 +19510216, 0.39, 0.09, 0.09, 0.005 +19510217, 0.07, 0.06, -0.02, 0.005 +19510219, -1.16, 0.19, -0.87, 0.005 +19510220, -0.21, -0.04, 0.31, 0.005 +19510221, 0.44, 0.14, 0.02, 0.005 +19510223, 0.25, 0.13, -0.16, 0.005 +19510224, 0.20, -0.02, 0.05, 0.005 +19510226, -0.03, 0.11, -0.36, 0.005 +19510227, -0.84, -0.28, -0.83, 0.005 +19510228, 0.15, -0.19, 0.15, 0.005 +19510301, 0.33, -0.03, 0.45, 0.004 +19510302, 0.42, 0.14, 0.03, 0.004 +19510303, -0.03, 0.18, -0.22, 0.004 +19510305, -0.55, 0.04, -0.44, 0.004 +19510306, -0.19, -0.17, -0.32, 0.004 +19510307, 0.40, -0.02, 0.07, 0.004 +19510308, 0.34, 0.17, -0.32, 0.004 +19510309, 0.07, 0.19, -0.13, 0.004 +19510310, -0.20, 0.15, 0.05, 0.004 +19510312, -0.95, -0.32, -0.48, 0.004 +19510313, -1.57, -0.22, -1.38, 0.004 +19510314, -0.87, 0.21, -0.07, 0.004 +19510315, 0.13, -0.33, -0.26, 0.004 +19510316, 1.61, 0.25, 0.82, 0.004 +19510317, 0.21, 0.18, -0.12, 0.004 +19510319, -0.55, -0.01, -0.27, 0.004 +19510320, -0.16, -0.10, -0.48, 0.004 +19510321, 0.57, 0.05, 0.29, 0.004 +19510322, 0.33, -0.27, -0.20, 0.004 +19510324, -1.08, -0.01, -0.98, 0.004 +19510326, 0.09, -0.35, 0.04, 0.004 +19510327, 0.06, 0.08, -0.17, 0.004 +19510328, -1.13, -0.52, -0.68, 0.004 +19510329, 0.26, -0.04, 0.15, 0.004 +19510330, 0.62, -0.09, 0.30, 0.004 +19510331, -0.27, 0.19, 0.06, 0.004 +19510402, -0.53, -0.31, -0.39, 0.005 +19510403, -0.21, 0.17, 0.07, 0.005 +19510404, 0.45, -0.45, 0.80, 0.005 +19510405, 1.40, 0.00, 1.09, 0.005 +19510406, 0.35, 0.17, 0.16, 0.005 +19510407, -0.09, 0.18, -0.41, 0.005 +19510409, 0.04, 0.06, -0.03, 0.005 +19510410, -0.18, 0.08, -0.33, 0.005 +19510411, -0.18, -0.20, -0.53, 0.005 +19510412, 0.98, -0.10, 0.71, 0.005 +19510413, 1.30, -0.26, 0.93, 0.005 +19510414, 0.39, 0.04, 0.42, 0.005 +19510416, -0.50, -0.12, -0.03, 0.005 +19510417, 0.15, 0.04, 0.02, 0.005 +19510418, 0.37, 0.01, 0.02, 0.005 +19510419, -0.46, -0.04, 0.00, 0.005 +19510420, -0.05, 0.04, -0.24, 0.005 +19510421, 0.02, -0.01, 0.25, 0.005 +19510423, -0.03, -0.16, -0.08, 0.005 +19510424, -0.45, 0.02, -0.39, 0.005 +19510425, 0.14, -0.20, 0.37, 0.005 +19510426, 0.87, -0.06, 0.66, 0.005 +19510427, 0.91, -0.31, 0.53, 0.005 +19510428, 0.16, 0.10, 0.00, 0.005 +19510430, -0.04, -0.15, -0.41, 0.005 +19510501, 0.32, -0.18, 0.12, 0.005 +19510502, 0.28, -0.06, 0.11, 0.005 +19510503, 0.73, -0.42, 0.90, 0.005 +19510504, 0.05, 0.00, -0.20, 0.005 +19510505, -0.29, 0.20, -0.03, 0.005 +19510507, -0.20, -0.07, -0.40, 0.005 +19510508, 0.35, -0.09, -0.17, 0.005 +19510509, 0.22, -0.03, 0.39, 0.005 +19510510, -0.51, 0.22, -0.31, 0.005 +19510511, -0.52, 0.26, -0.19, 0.005 +19510512, -0.56, 0.16, -0.15, 0.005 +19510514, -0.08, -0.03, -0.01, 0.005 +19510515, -1.53, 0.08, -0.41, 0.005 +19510516, -0.31, 0.17, 0.24, 0.005 +19510517, 0.96, -0.24, 0.34, 0.005 +19510518, -1.59, 0.21, -1.37, 0.005 +19510519, 0.07, -0.16, -0.05, 0.005 +19510521, -0.42, -0.05, -0.52, 0.005 +19510522, -0.32, 0.07, -0.13, 0.005 +19510523, -0.65, 0.23, -0.46, 0.005 +19510524, -0.41, -0.10, -0.02, 0.005 +19510525, 0.09, 0.52, 0.12, 0.005 +19510526, 0.18, -0.04, -0.02, 0.005 +19510528, 0.51, -0.06, 0.24, 0.005 +19510529, 0.73, -0.34, 0.31, 0.005 +19510531, 0.55, -0.26, 0.35, 0.005 +19510601, -0.15, -0.24, -0.04, 0.006 +19510604, -0.96, 0.10, -0.92, 0.006 +19510605, 0.17, -0.11, 0.13, 0.006 +19510606, 0.89, -0.06, 0.63, 0.006 +19510607, 0.50, 0.05, 0.47, 0.006 +19510608, -0.19, -0.09, -0.19, 0.006 +19510611, 0.50, -0.26, 0.41, 0.006 +19510612, -0.41, 0.17, -0.63, 0.006 +19510613, 0.08, -0.24, -0.29, 0.006 +19510614, 0.96, -0.44, 0.35, 0.006 +19510615, 0.65, -0.43, 0.35, 0.006 +19510618, -0.05, -0.23, -0.33, 0.006 +19510619, -0.11, -0.22, 0.04, 0.006 +19510620, -0.45, 0.32, -0.43, 0.006 +19510621, -0.57, 0.01, -0.28, 0.006 +19510622, -0.79, 0.16, -0.31, 0.006 +19510625, -1.54, -0.42, -1.50, 0.006 +19510626, 0.24, 0.20, -0.23, 0.006 +19510627, 0.45, -0.08, 0.23, 0.006 +19510628, -1.09, -0.23, -0.70, 0.006 +19510629, -0.74, 0.03, -0.84, 0.006 +19510702, 0.60, -0.29, 0.35, 0.006 +19510703, 0.70, 0.12, 0.31, 0.006 +19510705, 1.55, -0.31, 0.60, 0.006 +19510706, 0.00, 0.13, -0.32, 0.006 +19510709, 0.23, -0.25, -0.18, 0.006 +19510710, -0.37, -0.02, -0.19, 0.006 +19510711, 0.21, -0.03, 0.46, 0.006 +19510712, 0.44, -0.14, -0.07, 0.006 +19510713, 0.69, -0.15, -0.02, 0.006 +19510716, -0.74, 0.23, -0.66, 0.006 +19510717, 0.65, -0.66, 0.18, 0.006 +19510718, -0.04, 0.08, -0.18, 0.006 +19510719, 0.08, 0.10, -0.08, 0.006 +19510720, 0.16, 0.15, 0.36, 0.006 +19510723, 0.83, -0.57, 0.37, 0.006 +19510724, 1.20, -0.66, 0.65, 0.006 +19510725, -0.18, 0.34, 0.16, 0.006 +19510726, 0.50, 0.07, 0.22, 0.006 +19510727, 0.28, -0.03, 0.18, 0.006 +19510730, 0.59, -0.43, -0.23, 0.006 +19510731, -0.64, 0.40, 0.03, 0.006 +19510801, 0.67, 0.01, 0.82, 0.006 +19510802, 1.03, -0.09, 0.04, 0.006 +19510803, 0.16, -0.01, -0.33, 0.006 +19510806, 0.66, -0.41, 0.36, 0.006 +19510807, -0.03, 0.20, -0.22, 0.006 +19510808, -0.17, 0.15, -0.22, 0.006 +19510809, -0.36, 0.30, -0.17, 0.006 +19510810, -0.17, 0.00, -0.33, 0.006 +19510813, 0.12, 0.26, -0.34, 0.006 +19510814, -0.08, -0.10, -0.04, 0.006 +19510815, 0.39, -0.14, 0.57, 0.006 +19510816, 0.52, 0.11, 0.04, 0.006 +19510817, 0.27, 0.10, 0.18, 0.006 +19510820, -0.07, 0.05, -0.34, 0.006 +19510821, -0.38, 0.08, -0.31, 0.006 +19510822, -0.46, 0.16, -0.43, 0.006 +19510823, 0.62, -0.09, 0.28, 0.006 +19510824, 0.02, 0.14, 0.07, 0.006 +19510827, -0.15, 0.02, -0.32, 0.006 +19510828, 0.09, 0.21, 0.14, 0.006 +19510829, 0.77, -0.08, 0.14, 0.006 +19510830, 0.67, -0.06, 0.13, 0.006 +19510831, 0.10, 0.14, 0.17, 0.006 +19510904, 0.10, 0.12, 0.16, 0.006 +19510905, 0.77, -0.11, -0.07, 0.006 +19510906, 0.32, -0.22, 0.34, 0.006 +19510907, 0.42, -0.17, 0.15, 0.006 +19510910, 0.43, 0.10, 0.21, 0.006 +19510911, -0.46, 0.20, -0.37, 0.006 +19510912, 0.62, -0.04, 0.35, 0.006 +19510913, 0.28, -0.03, 0.14, 0.006 +19510914, -0.05, 0.22, -0.07, 0.006 +19510917, -0.31, 0.36, -0.29, 0.006 +19510918, -0.08, 0.11, -0.40, 0.006 +19510919, 0.07, 0.51, 0.09, 0.006 +19510920, -0.15, 0.25, 0.34, 0.006 +19510921, -0.75, 0.31, -0.02, 0.006 +19510924, -0.48, 0.22, 0.33, 0.006 +19510925, 0.35, -0.09, 0.13, 0.006 +19510926, 0.15, 0.04, 0.00, 0.006 +19510927, -0.48, -0.07, -0.25, 0.006 +19510928, -0.05, 0.16, -0.16, 0.006 +19511001, 0.61, -0.06, 0.17, 0.006 +19511002, 0.66, -0.19, 0.31, 0.006 +19511003, 0.60, 0.26, 0.43, 0.006 +19511004, -0.14, 0.27, -0.08, 0.006 +19511005, 0.13, 0.32, 0.26, 0.006 +19511006, 0.02, 0.10, 0.09, 0.006 +19511008, -0.10, 0.31, -0.36, 0.006 +19511009, -0.48, 0.10, -0.04, 0.006 +19511010, -0.23, 0.17, -0.12, 0.006 +19511011, 0.45, -0.36, 0.22, 0.006 +19511013, 0.28, 0.04, 0.24, 0.006 +19511015, 0.19, -0.34, -0.09, 0.006 +19511016, -0.39, -0.23, -0.31, 0.006 +19511017, -0.26, 0.03, -0.29, 0.006 +19511018, -0.13, 0.07, 0.11, 0.006 +19511019, -1.40, -0.04, -0.27, 0.006 +19511020, -0.91, 0.28, -0.02, 0.006 +19511022, -1.82, -0.01, 0.19, 0.006 +19511023, 0.64, -0.09, 0.55, 0.006 +19511024, 0.72, -0.07, 0.39, 0.006 +19511025, -0.49, -0.04, -0.23, 0.006 +19511026, -0.75, 0.13, -0.26, 0.006 +19511027, -1.59, 0.19, -0.63, 0.006 +19511029, 0.85, -0.63, 0.58, 0.006 +19511030, 0.01, 0.02, -0.23, 0.006 +19511031, 1.03, -0.45, -0.32, 0.006 +19511101, 0.66, -0.13, 0.14, 0.005 +19511102, -0.72, 0.13, -0.35, 0.005 +19511103, -0.86, 0.28, -0.43, 0.005 +19511105, 0.08, -0.18, 0.09, 0.005 +19511107, -0.86, 0.01, -0.04, 0.005 +19511108, 0.19, -0.14, 0.15, 0.005 +19511109, 1.11, -0.05, 0.25, 0.005 +19511110, 0.49, 0.02, 0.07, 0.005 +19511113, -0.18, 0.10, -0.23, 0.005 +19511114, 0.27, -0.13, 0.16, 0.005 +19511115, -0.05, 0.14, 0.10, 0.005 +19511116, -0.11, -0.13, 0.38, 0.005 +19511117, 0.03, 0.10, 0.01, 0.005 +19511119, -0.37, 0.16, -0.17, 0.005 +19511120, -0.19, -0.09, -0.30, 0.005 +19511121, -0.08, 0.09, 0.13, 0.005 +19511123, -1.03, 0.10, -0.18, 0.005 +19511124, -0.37, 0.14, -0.18, 0.005 +19511126, 0.59, -0.26, 0.24, 0.005 +19511127, 0.78, -0.34, -0.08, 0.005 +19511128, -0.14, 0.32, -0.11, 0.005 +19511129, 0.43, -0.26, 0.14, 0.005 +19511130, 0.94, -0.18, 0.14, 0.005 +19511201, 0.25, 0.01, 0.10, 0.005 +19511203, 0.34, -0.06, -0.50, 0.005 +19511204, 0.41, -0.37, -0.02, 0.005 +19511205, 0.04, 0.17, -0.29, 0.005 +19511206, 0.90, -0.43, 0.46, 0.005 +19511207, 0.20, -0.14, 0.25, 0.005 +19511208, 0.10, -0.05, 0.00, 0.005 +19511210, 0.01, -0.06, -0.11, 0.005 +19511211, -0.47, 0.11, -0.37, 0.005 +19511212, 0.12, -0.11, -0.18, 0.005 +19511213, 0.30, 0.04, -0.23, 0.005 +19511214, -0.02, 0.01, -0.16, 0.005 +19511215, -0.06, 0.10, -0.14, 0.005 +19511217, 0.14, -0.21, -0.04, 0.005 +19511218, 0.12, -0.24, -0.27, 0.005 +19511219, 0.28, -0.35, 0.36, 0.005 +19511220, 0.01, -0.04, 0.04, 0.005 +19511221, -0.22, 0.01, 0.04, 0.005 +19511222, 0.00, 0.06, 0.10, 0.005 +19511224, -0.04, 0.11, -0.30, 0.005 +19511226, -0.62, 0.08, -0.18, 0.005 +19511227, 0.85, -0.40, 0.36, 0.005 +19511228, 0.44, -0.13, -0.25, 0.005 +19511229, -0.04, 0.02, -0.02, 0.005 +19511231, 0.27, -0.34, -0.19, 0.005 +19520102, 0.16, 0.40, 0.26, 0.006 +19520103, 0.15, 0.07, 0.27, 0.006 +19520104, 0.18, 0.22, 0.08, 0.006 +19520105, 0.07, 0.12, -0.01, 0.006 +19520107, -0.15, -0.06, -0.04, 0.006 +19520108, -0.43, -0.28, -0.21, 0.006 +19520109, -0.28, 0.09, -0.17, 0.006 +19520110, 0.60, -0.23, 0.18, 0.006 +19520111, 0.42, -0.39, 0.25, 0.006 +19520112, 0.40, -0.23, 0.10, 0.006 +19520114, 0.20, -0.35, 0.18, 0.006 +19520115, -0.44, -0.01, -0.16, 0.006 +19520116, 0.29, 0.02, 0.38, 0.006 +19520117, 0.40, -0.01, 0.06, 0.006 +19520118, 0.15, -0.07, 0.47, 0.006 +19520119, 0.27, -0.13, 0.36, 0.006 +19520121, 0.41, -0.43, -0.08, 0.006 +19520122, 0.50, -0.29, -0.30, 0.006 +19520123, -0.35, 0.11, -0.18, 0.006 +19520124, 0.13, -0.01, -0.06, 0.006 +19520125, 0.11, 0.23, 0.02, 0.006 +19520126, 0.09, 0.05, -0.11, 0.006 +19520128, 0.09, 0.06, 0.35, 0.006 +19520129, -0.01, 0.34, 0.11, 0.006 +19520130, -1.07, 0.23, -0.03, 0.006 +19520131, -0.42, -0.03, -0.21, 0.006 +19520201, 0.59, -0.05, -0.18, 0.005 +19520202, 0.36, -0.24, 0.13, 0.005 +19520204, -1.12, 0.40, -0.37, 0.005 +19520205, -0.26, 0.13, -0.19, 0.005 +19520206, 0.32, 0.11, -0.25, 0.005 +19520207, 0.17, 0.01, 0.10, 0.005 +19520208, 0.51, -0.13, 0.08, 0.005 +19520209, 0.04, 0.23, 0.06, 0.005 +19520211, -0.32, -0.13, 0.23, 0.005 +19520213, -0.67, 0.24, -0.17, 0.005 +19520214, -0.25, -0.08, 0.16, 0.005 +19520215, -0.01, 0.00, -0.13, 0.005 +19520216, -0.06, 0.10, 0.06, 0.005 +19520218, -0.40, -0.07, 0.04, 0.005 +19520219, -1.46, 0.24, -0.13, 0.005 +19520220, -1.12, 0.15, -0.06, 0.005 +19520221, 0.32, 0.24, 0.22, 0.005 +19520223, 0.65, -0.39, 0.51, 0.005 +19520225, -0.29, 0.19, -0.21, 0.005 +19520226, -0.50, 0.24, -0.35, 0.005 +19520227, 0.20, -0.19, 0.28, 0.005 +19520228, 0.71, -0.24, -0.27, 0.005 +19520229, -0.06, 0.05, -0.19, 0.005 +19520301, 0.08, 0.04, -0.14, 0.004 +19520303, 0.26, -0.14, 0.12, 0.004 +19520304, 1.31, -0.55, 0.18, 0.004 +19520305, 0.23, 0.05, 0.33, 0.004 +19520306, -0.01, -0.03, 0.05, 0.004 +19520307, 0.21, -0.21, 0.46, 0.004 +19520308, 0.29, -0.19, 0.24, 0.004 +19520310, -0.49, 0.27, -0.68, 0.004 +19520311, 0.22, -0.25, 0.10, 0.004 +19520312, 0.26, -0.09, 0.17, 0.004 +19520313, 0.05, 0.03, 0.16, 0.004 +19520314, 0.24, -0.36, 0.10, 0.004 +19520315, 0.20, -0.27, 0.00, 0.004 +19520317, 0.10, -0.23, -0.09, 0.004 +19520318, -0.14, -0.05, -0.02, 0.004 +19520319, -0.24, 0.19, -0.07, 0.004 +19520320, 0.35, -0.32, 0.65, 0.004 +19520321, 0.07, 0.09, 0.20, 0.004 +19520322, -0.01, 0.03, -0.17, 0.004 +19520324, -0.11, 0.03, -0.18, 0.004 +19520325, -0.42, 0.40, -0.16, 0.004 +19520326, -0.07, -0.11, 0.35, 0.004 +19520327, 0.77, -0.50, 0.21, 0.004 +19520328, 0.59, -0.33, -0.06, 0.004 +19520329, 0.56, -0.33, 0.44, 0.004 +19520331, 0.07, -0.09, -0.04, 0.004 +19520401, -0.77, 0.14, -0.20, 0.005 +19520402, -0.08, 0.16, 0.01, 0.005 +19520403, 0.09, -0.15, 0.02, 0.005 +19520404, -0.51, 0.11, -0.26, 0.005 +19520405, -0.15, 0.12, 0.09, 0.005 +19520407, -0.93, 0.19, -0.13, 0.005 +19520408, 0.56, -0.34, 0.25, 0.005 +19520409, -0.01, 0.14, -0.13, 0.005 +19520410, 0.35, -0.17, 0.22, 0.005 +19520412, 0.05, 0.16, 0.05, 0.005 +19520414, -0.74, -0.14, -0.23, 0.005 +19520415, -1.08, 0.09, -0.54, 0.005 +19520416, -0.14, 0.44, -0.17, 0.005 +19520417, -0.86, 0.11, -0.18, 0.005 +19520418, 0.40, 0.02, 0.51, 0.005 +19520419, 0.06, 0.13, 0.12, 0.005 +19520421, 0.70, -0.57, 0.47, 0.005 +19520422, -0.44, 0.21, -0.27, 0.005 +19520423, -0.45, 0.20, -0.07, 0.005 +19520424, -0.42, -0.07, 0.15, 0.005 +19520425, 0.42, -0.18, 0.48, 0.005 +19520426, 0.14, 0.10, 0.18, 0.005 +19520428, -0.22, -0.24, -0.03, 0.005 +19520429, -0.34, -0.22, 0.18, 0.005 +19520430, -0.69, 0.25, -0.56, 0.005 +19520501, -0.69, -0.18, -0.53, 0.005 +19520502, 1.42, -0.24, 0.67, 0.005 +19520503, 0.30, -0.01, -0.14, 0.005 +19520505, 0.28, -0.31, 0.00, 0.005 +19520506, 0.25, -0.09, -0.06, 0.005 +19520507, 0.63, -0.35, 0.09, 0.005 +19520508, 0.28, 0.17, -0.04, 0.005 +19520509, 0.03, -0.07, -0.10, 0.005 +19520510, -0.09, 0.29, -0.06, 0.005 +19520512, -0.14, -0.05, -0.09, 0.005 +19520513, 0.17, -0.16, -0.16, 0.005 +19520514, -0.34, 0.20, -0.21, 0.005 +19520515, -0.35, -0.15, 0.12, 0.005 +19520516, 0.05, 0.15, -0.26, 0.005 +19520517, 0.02, 0.19, -0.08, 0.005 +19520519, 0.14, -0.32, -0.01, 0.005 +19520520, 0.51, -0.04, 0.09, 0.005 +19520521, 0.27, 0.04, 0.17, 0.005 +19520522, 0.63, -0.15, 0.29, 0.005 +19520523, -0.08, 0.08, 0.07, 0.005 +19520524, -0.01, 0.15, -0.06, 0.005 +19520526, 0.21, -0.13, 0.12, 0.005 +19520527, -0.19, 0.03, 0.09, 0.005 +19520528, -0.14, 0.14, 0.08, 0.005 +19520529, 0.01, -0.19, 0.10, 0.005 +19520602, -0.13, -0.06, -0.20, 0.007 +19520603, -0.08, -0.18, 0.14, 0.007 +19520604, 0.56, -0.13, 0.37, 0.007 +19520605, 0.63, -0.29, 0.47, 0.007 +19520606, 0.55, 0.03, -0.07, 0.007 +19520609, 0.38, -0.16, 0.10, 0.007 +19520610, -0.33, 0.27, -0.59, 0.007 +19520611, 0.25, -0.16, 0.35, 0.007 +19520612, 0.04, 0.00, -0.03, 0.007 +19520613, 0.20, -0.08, -0.16, 0.007 +19520616, -0.15, 0.18, -0.25, 0.007 +19520617, 0.07, -0.16, -0.01, 0.007 +19520618, 0.23, -0.02, 0.08, 0.007 +19520619, 0.31, -0.17, 0.23, 0.007 +19520620, 0.14, 0.03, -0.07, 0.007 +19520623, -0.11, -0.04, 0.17, 0.007 +19520624, 0.07, -0.29, -0.10, 0.007 +19520625, 0.35, -0.20, 0.50, 0.007 +19520626, 0.21, -0.02, 0.12, 0.007 +19520627, 0.23, -0.03, 0.06, 0.007 +19520630, 0.36, -0.10, 0.11, 0.007 +19520701, 0.53, -0.20, -0.18, 0.007 +19520702, -0.18, 0.20, -0.29, 0.007 +19520703, 0.00, 0.12, -0.07, 0.007 +19520707, -0.36, 0.17, -0.14, 0.007 +19520708, 0.05, -0.13, -0.19, 0.007 +19520709, -0.28, 0.27, -0.04, 0.007 +19520710, -0.20, -0.04, -0.12, 0.007 +19520711, 0.50, -0.22, 0.40, 0.007 +19520714, 0.07, 0.11, -0.11, 0.007 +19520715, 0.48, -0.31, 0.19, 0.007 +19520716, -0.11, -0.03, 0.15, 0.007 +19520717, -0.35, 0.05, -0.06, 0.007 +19520718, -0.65, 0.15, 0.16, 0.007 +19520721, 0.22, -0.11, -0.24, 0.007 +19520722, 0.21, 0.05, -0.12, 0.007 +19520723, 0.42, -0.21, -0.02, 0.007 +19520724, 0.33, -0.16, 0.45, 0.007 +19520725, -0.24, 0.36, -0.43, 0.007 +19520728, -0.03, 0.00, -0.04, 0.007 +19520729, 0.20, -0.11, -0.04, 0.007 +19520730, 0.21, -0.22, 0.23, 0.007 +19520731, 0.11, -0.13, 0.19, 0.007 +19520801, 0.06, 0.08, -0.12, 0.007 +19520804, -0.13, 0.07, -0.25, 0.007 +19520805, 0.04, -0.07, 0.00, 0.007 +19520806, 0.15, 0.11, -0.02, 0.007 +19520807, 0.25, -0.13, 0.25, 0.007 +19520808, -0.01, 0.20, -0.11, 0.007 +19520811, 0.03, 0.12, -0.22, 0.007 +19520812, -0.70, 0.26, -0.09, 0.007 +19520813, -0.02, -0.04, 0.11, 0.007 +19520814, -0.02, 0.08, 0.01, 0.007 +19520815, -0.20, 0.14, 0.07, 0.007 +19520818, -1.02, 0.30, -0.17, 0.007 +19520819, 0.01, -0.04, -0.03, 0.007 +19520820, 0.22, -0.06, 0.00, 0.007 +19520821, 0.14, 0.05, -0.05, 0.007 +19520822, 0.00, 0.08, 0.06, 0.007 +19520825, -0.37, 0.19, -0.02, 0.007 +19520826, -0.07, -0.02, 0.18, 0.007 +19520827, 0.36, -0.01, -0.09, 0.007 +19520828, 0.24, -0.08, 0.32, 0.007 +19520829, 0.29, -0.06, 0.20, 0.007 +19520902, 0.34, -0.14, 0.11, 0.008 +19520903, 0.21, 0.06, -0.35, 0.008 +19520904, -0.09, 0.09, -0.27, 0.008 +19520905, -0.12, 0.08, -0.28, 0.008 +19520908, -0.43, 0.20, -0.38, 0.008 +19520909, -1.06, 0.28, -0.10, 0.008 +19520910, -0.44, -0.12, 0.08, 0.008 +19520911, 0.14, 0.21, 0.04, 0.008 +19520912, -0.21, 0.20, -0.10, 0.008 +19520915, -0.95, 0.39, -0.19, 0.008 +19520916, 0.41, -0.23, 0.00, 0.008 +19520917, 0.26, 0.01, 0.15, 0.008 +19520918, -0.18, 0.17, -0.08, 0.008 +19520919, 0.21, -0.08, 0.18, 0.008 +19520922, 0.10, 0.03, 0.00, 0.008 +19520923, 0.34, -0.31, 0.32, 0.008 +19520924, 0.32, 0.06, -0.32, 0.008 +19520925, -0.01, -0.05, -0.03, 0.008 +19520926, -0.27, 0.25, -0.01, 0.008 +19520929, -0.06, -0.05, -0.14, 0.008 +19520930, -0.55, 0.10, -0.14, 0.008 +19521001, -0.25, -0.04, 0.03, 0.006 +19521002, -0.01, 0.00, 0.00, 0.006 +19521003, -0.18, 0.12, 0.11, 0.006 +19521006, -0.27, 0.11, -0.05, 0.006 +19521007, 0.04, -0.05, -0.02, 0.006 +19521008, 0.49, -0.19, 0.04, 0.006 +19521009, 0.02, 0.05, -0.02, 0.006 +19521010, -0.01, 0.18, -0.26, 0.006 +19521014, -0.35, 0.00, -0.26, 0.006 +19521015, -1.45, 0.11, -0.26, 0.006 +19521016, -0.63, -0.15, 0.07, 0.006 +19521017, 1.14, -0.18, 0.35, 0.006 +19521020, -0.32, 0.23, -0.35, 0.006 +19521021, -0.16, -0.08, -0.01, 0.006 +19521022, -0.97, 0.27, -0.05, 0.006 +19521023, 0.32, -0.36, 0.00, 0.006 +19521024, 0.41, -0.13, 0.08, 0.006 +19521027, 0.12, -0.23, -0.04, 0.006 +19521028, 0.04, -0.03, -0.11, 0.006 +19521029, 0.05, -0.22, -0.13, 0.006 +19521030, -0.02, 0.03, 0.03, 0.006 +19521031, 1.36, -0.55, 0.40, 0.006 +19521103, 0.56, -0.24, -0.16, 0.006 +19521105, 0.52, 0.02, -0.28, 0.006 +19521106, 0.38, -0.55, -0.37, 0.006 +19521107, 0.40, 0.05, 0.07, 0.006 +19521110, 0.00, 0.07, 0.04, 0.006 +19521112, -0.16, 0.32, -0.17, 0.006 +19521113, 0.09, 0.11, -0.20, 0.006 +19521114, 0.01, 0.04, -0.07, 0.006 +19521117, 0.19, -0.14, 0.25, 0.006 +19521118, 1.42, -0.36, 0.11, 0.006 +19521119, 0.71, -0.05, 0.33, 0.006 +19521120, -0.15, 0.22, 0.41, 0.006 +19521121, 0.00, 0.24, 0.09, 0.006 +19521124, 0.63, -0.15, 0.55, 0.006 +19521125, 0.12, -0.02, -0.23, 0.006 +19521126, 0.61, -0.24, 0.20, 0.006 +19521128, 0.49, -0.02, 0.35, 0.006 +19521201, 0.13, -0.04, 0.18, 0.007 +19521202, 0.27, -0.27, -0.19, 0.007 +19521203, -0.04, 0.08, -0.22, 0.007 +19521204, -0.32, 0.21, 0.00, 0.007 +19521205, 0.15, -0.18, 0.18, 0.007 +19521208, 0.41, -0.19, 0.00, 0.007 +19521209, 0.42, -0.23, -0.05, 0.007 +19521210, 0.03, -0.09, -0.40, 0.007 +19521211, 0.00, 0.05, -0.13, 0.007 +19521212, 0.31, -0.18, 0.43, 0.007 +19521215, 0.09, -0.05, 0.19, 0.007 +19521216, -0.04, -0.18, -0.02, 0.007 +19521217, -0.12, 0.13, -0.10, 0.007 +19521218, 0.00, 0.14, 0.21, 0.007 +19521219, 0.40, -0.53, 0.42, 0.007 +19521222, 0.42, -0.40, 0.25, 0.007 +19521223, -0.35, 0.10, 0.24, 0.007 +19521224, 0.06, 0.19, 0.12, 0.007 +19521226, 0.14, 0.27, -0.25, 0.007 +19521229, 0.34, -0.24, -0.29, 0.007 +19521230, 0.48, -0.25, -0.06, 0.007 +19521231, 0.10, 0.21, -0.33, 0.007 +19530102, 0.06, 0.48, 0.62, 0.008 +19530105, 0.45, 0.46, 0.10, 0.008 +19530106, -0.52, 0.36, 0.17, 0.008 +19530107, -0.33, 0.27, -0.12, 0.008 +19530108, -0.04, 0.43, 0.51, 0.008 +19530109, -0.86, 0.22, -0.10, 0.008 +19530112, -0.64, 0.44, 0.08, 0.008 +19530113, 0.57, 0.10, 0.04, 0.008 +19530114, 0.09, 0.19, -0.10, 0.008 +19530115, 0.16, 0.05, 0.14, 0.008 +19530116, -0.43, 0.05, -0.12, 0.008 +19530119, -0.07, 0.23, 0.19, 0.008 +19530120, 0.42, 0.06, 0.01, 0.008 +19530121, -0.14, 0.07, -0.01, 0.008 +19530122, 0.05, 0.20, -0.05, 0.008 +19530123, -0.13, 0.08, 0.14, 0.008 +19530126, -0.15, -0.01, 0.06, 0.008 +19530127, 0.19, -0.10, 0.10, 0.008 +19530128, 0.20, 0.03, -0.15, 0.008 +19530129, 0.32, 0.14, -0.06, 0.008 +19530130, 0.49, -0.26, -0.20, 0.008 +19530202, 0.20, 0.00, -0.34, 0.008 +19530203, 0.06, -0.03, -0.21, 0.008 +19530204, -0.10, 0.38, -0.03, 0.008 +19530205, -0.80, 0.02, -0.01, 0.008 +19530206, -0.83, 0.16, -0.64, 0.008 +19530209, -0.37, 0.15, 0.21, 0.008 +19530210, -0.14, 0.33, -0.13, 0.008 +19530211, 0.10, 0.04, 0.34, 0.008 +19530213, 0.43, -0.02, -0.02, 0.008 +19530216, -0.16, 0.27, 0.08, 0.008 +19530217, -0.48, 0.11, -0.18, 0.008 +19530218, 0.01, 0.04, 0.34, 0.008 +19530219, 0.28, 0.00, 0.26, 0.008 +19530220, 0.16, 0.00, -0.07, 0.008 +19530224, 0.62, 0.29, 0.49, 0.008 +19530225, 0.59, 0.38, -0.14, 0.008 +19530226, 0.21, -0.01, 0.04, 0.008 +19530227, -0.01, 0.07, -0.02, 0.008 +19530302, 0.06, 0.05, 0.17, 0.008 +19530303, 0.36, 0.03, -0.05, 0.008 +19530304, -0.84, 0.11, -0.13, 0.008 +19530305, 0.09, 0.06, 0.15, 0.008 +19530306, 0.36, -0.07, -0.12, 0.008 +19530309, 0.06, 0.16, -0.02, 0.008 +19530310, 0.19, -0.10, 0.07, 0.008 +19530311, 0.69, -0.22, 0.11, 0.008 +19530312, 0.00, -0.20, 0.04, 0.008 +19530313, 0.22, -0.10, 0.24, 0.008 +19530316, 0.15, -0.03, 0.29, 0.008 +19530317, 0.30, -0.14, -0.01, 0.008 +19530318, -0.03, 0.41, -0.17, 0.008 +19530319, 0.06, 0.08, -0.15, 0.008 +19530320, -0.08, 0.17, -0.11, 0.008 +19530323, -0.60, -0.09, 0.00, 0.008 +19530324, 0.54, -0.14, 0.17, 0.008 +19530325, -0.15, 0.29, -0.36, 0.008 +19530326, -0.45, -0.02, -0.19, 0.008 +19530327, 0.27, -0.02, -0.03, 0.008 +19530330, -1.53, -0.25, -0.74, 0.008 +19530331, -1.11, -0.16, 0.03, 0.008 +19530401, 0.07, 0.11, 0.17, 0.008 +19530402, -0.03, 0.19, -0.10, 0.008 +19530406, -2.13, 0.12, -0.49, 0.008 +19530407, 0.28, -0.22, 0.57, 0.008 +19530408, 0.72, 0.27, 0.18, 0.008 +19530409, -0.40, 0.12, 0.09, 0.008 +19530410, -0.17, 0.04, 0.10, 0.008 +19530413, -0.19, 0.06, 0.20, 0.008 +19530414, 0.28, -0.30, 0.37, 0.008 +19530415, 0.49, -0.01, 0.24, 0.008 +19530416, -0.23, -0.04, -0.21, 0.008 +19530417, -0.94, 0.07, -0.21, 0.008 +19530420, 0.19, -0.46, 0.37, 0.008 +19530421, -0.14, 0.39, -0.08, 0.008 +19530422, -0.75, 0.25, -0.19, 0.008 +19530423, -1.19, 0.04, 0.27, 0.008 +19530424, 0.01, -0.17, -0.02, 0.008 +19530427, 0.47, -0.03, 0.44, 0.008 +19530428, 0.47, -0.47, 0.16, 0.008 +19530429, 0.53, 0.15, -0.27, 0.008 +19530430, -0.14, 0.15, -0.01, 0.008 +19530501, 0.40, -0.17, -0.26, 0.008 +19530504, 0.91, -0.31, 0.16, 0.008 +19530505, 0.10, 0.15, -0.41, 0.008 +19530506, 0.16, -0.12, -0.08, 0.008 +19530507, -0.40, 0.03, -0.22, 0.008 +19530508, 0.23, -0.13, 0.22, 0.008 +19530511, 0.06, 0.07, -0.07, 0.008 +19530512, -0.47, 0.17, 0.13, 0.008 +19530513, -0.07, -0.03, -0.10, 0.008 +19530514, 0.47, -0.13, 0.34, 0.008 +19530515, 0.07, 0.08, 0.06, 0.008 +19530518, -0.19, 0.09, -0.03, 0.008 +19530519, -0.20, 0.03, 0.03, 0.008 +19530520, 0.94, -0.24, 0.54, 0.008 +19530521, 0.29, 0.00, -0.04, 0.008 +19530522, -0.01, 0.07, 0.09, 0.008 +19530525, -0.11, -0.07, 0.06, 0.008 +19530526, -0.30, -0.09, 0.11, 0.008 +19530527, -0.79, 0.34, -0.38, 0.008 +19530528, -0.72, 0.13, -0.16, 0.008 +19530529, 0.16, 0.05, 0.25, 0.008 +19530601, -1.40, 0.26, -0.35, 0.008 +19530602, 0.14, -0.58, 0.16, 0.008 +19530603, -0.04, 0.29, -0.02, 0.008 +19530604, -0.82, -0.11, -0.26, 0.008 +19530605, 0.18, -0.07, 0.07, 0.008 +19530608, -0.20, 0.01, 0.00, 0.008 +19530609, -1.93, -0.18, -0.30, 0.008 +19530610, -0.09, -0.50, 0.52, 0.008 +19530611, 0.85, 0.06, 0.02, 0.008 +19530612, 0.32, 0.05, -0.19, 0.008 +19530615, -0.82, 0.02, -0.36, 0.008 +19530616, -0.30, -0.23, 0.06, 0.008 +19530617, 1.23, -0.39, 0.29, 0.008 +19530618, 0.01, 0.15, 0.00, 0.008 +19530619, 0.00, -0.08, 0.06, 0.008 +19530622, 0.52, -0.06, 0.05, 0.008 +19530623, 0.56, -0.36, 0.14, 0.008 +19530624, -0.11, 0.07, -0.25, 0.008 +19530625, 0.40, -0.16, 0.00, 0.008 +19530626, -0.06, -0.11, 0.03, 0.008 +19530629, -0.16, 0.10, -0.05, 0.008 +19530630, -0.12, -0.16, -0.05, 0.008 +19530701, 0.39, -0.22, 0.20, 0.006 +19530702, 0.35, 0.05, -0.07, 0.006 +19530703, 0.26, -0.12, 0.20, 0.006 +19530706, 0.12, -0.03, -0.37, 0.006 +19530707, 0.36, -0.26, 0.26, 0.006 +19530708, 0.04, -0.04, 0.11, 0.006 +19530709, -0.33, 0.15, -0.16, 0.006 +19530710, -0.11, 0.05, -0.24, 0.006 +19530713, -0.97, 0.08, -0.14, 0.006 +19530714, -0.13, -0.23, 0.08, 0.006 +19530715, 0.29, -0.02, 0.01, 0.006 +19530716, 0.22, 0.12, -0.24, 0.006 +19530717, 0.49, -0.26, 0.40, 0.006 +19530720, -0.47, -0.02, 0.05, 0.006 +19530721, -0.23, 0.10, 0.03, 0.006 +19530722, 0.10, -0.16, -0.09, 0.006 +19530723, 0.20, 0.04, 0.12, 0.006 +19530724, 0.04, 0.24, -0.20, 0.006 +19530727, -0.58, 0.28, -0.38, 0.006 +19530728, 0.05, -0.40, 0.05, 0.006 +19530729, 0.54, -0.13, 0.25, 0.006 +19530730, 0.92, -0.21, 0.02, 0.006 +19530731, 0.84, -0.09, -0.08, 0.006 +19530803, 0.38, 0.07, -0.27, 0.008 +19530804, -0.02, 0.07, -0.13, 0.008 +19530805, 0.18, 0.06, -0.06, 0.008 +19530806, 0.40, -0.13, -0.17, 0.008 +19530807, -0.04, 0.09, -0.24, 0.008 +19530810, -0.08, 0.19, -0.46, 0.008 +19530811, -0.06, -0.07, -0.18, 0.008 +19530812, 0.43, -0.29, 0.08, 0.008 +19530813, -0.02, 0.25, -0.23, 0.008 +19530814, -0.33, 0.04, -0.23, 0.008 +19530817, -0.24, 0.00, -0.28, 0.008 +19530818, -0.48, 0.18, -0.27, 0.008 +19530819, -0.63, -0.31, -0.11, 0.008 +19530820, 0.04, 0.07, 0.25, 0.008 +19530821, 0.15, 0.01, -0.03, 0.008 +19530824, -1.11, 0.12, -0.53, 0.008 +19530825, -0.54, -0.14, 0.25, 0.008 +19530826, -0.27, 0.43, -0.22, 0.008 +19530827, -0.41, -0.21, -0.23, 0.008 +19530828, -0.23, -0.04, -0.04, 0.008 +19530831, -1.75, 0.00, -0.63, 0.008 +19530901, 0.42, -0.48, 0.15, 0.008 +19530902, 0.65, 0.18, 0.05, 0.008 +19530903, -0.24, -0.06, -0.27, 0.008 +19530904, 0.27, -0.03, 0.13, 0.008 +19530908, 0.21, -0.14, -0.15, 0.008 +19530909, 0.03, 0.06, -0.06, 0.008 +19530910, -0.86, 0.11, -0.66, 0.008 +19530911, -1.41, -0.22, -0.68, 0.008 +19530914, -1.82, -0.46, -0.49, 0.008 +19530915, 0.71, -1.32, 0.32, 0.008 +19530916, 0.73, 0.74, 0.39, 0.008 +19530917, 0.07, 0.16, -0.21, 0.008 +19530918, -0.58, 0.13, -0.24, 0.008 +19530921, -0.25, -0.07, 0.05, 0.008 +19530922, 1.32, -0.41, 0.35, 0.008 +19530923, 0.36, 0.26, 0.24, 0.008 +19530924, 0.01, 0.28, -0.13, 0.008 +19530925, 0.28, 0.20, -0.36, 0.008 +19530928, 0.60, -0.20, 0.36, 0.008 +19530929, 0.12, 0.28, -0.75, 0.008 +19530930, -0.35, 0.15, -0.42, 0.008 +19531001, 0.60, -0.18, -0.26, 0.006 +19531002, 0.39, -0.18, -0.22, 0.006 +19531005, -0.40, -0.04, -0.16, 0.006 +19531006, -0.50, -0.15, 0.16, 0.006 +19531007, 0.73, -0.17, 0.01, 0.006 +19531008, 0.22, 0.14, -0.13, 0.006 +19531009, 0.06, 0.10, -0.03, 0.006 +19531013, -0.20, 0.10, 0.10, 0.006 +19531014, 0.45, -0.17, -0.26, 0.006 +19531015, 1.18, -0.19, 0.63, 0.006 +19531016, 0.59, 0.07, 0.42, 0.006 +19531019, 0.16, -0.34, 0.20, 0.006 +19531020, 0.07, 0.16, -0.39, 0.006 +19531021, 0.02, -0.14, -0.01, 0.006 +19531022, 0.33, -0.01, -0.38, 0.006 +19531023, 0.10, 0.11, -0.20, 0.006 +19531026, -0.24, 0.16, -0.20, 0.006 +19531027, -0.30, -0.07, -0.07, 0.006 +19531028, 0.21, -0.17, 0.22, 0.006 +19531029, 0.99, -0.36, 0.40, 0.006 +19531030, 0.05, 0.00, -0.01, 0.006 +19531102, 0.43, -0.23, -0.32, 0.004 +19531104, 0.11, -0.29, -0.30, 0.004 +19531105, 0.70, -0.16, 0.33, 0.004 +19531106, 0.06, 0.09, 0.40, 0.004 +19531109, -0.09, -0.07, 0.15, 0.004 +19531110, -0.54, 0.14, -0.06, 0.004 +19531112, 0.30, -0.32, 0.10, 0.004 +19531113, 0.24, 0.25, -0.13, 0.004 +19531116, -0.55, 0.36, -0.20, 0.004 +19531117, -0.41, 0.11, -0.21, 0.004 +19531118, 0.22, -0.09, 0.18, 0.004 +19531119, 0.46, 0.01, -0.22, 0.004 +19531120, 0.06, 0.05, -0.17, 0.004 +19531123, -0.14, -0.39, -0.13, 0.004 +19531124, 0.52, -0.56, -0.03, 0.004 +19531125, 0.26, -0.01, 0.20, 0.004 +19531127, 0.63, -0.05, 0.12, 0.004 +19531130, 0.55, -0.14, 0.15, 0.004 +19531201, 0.11, -0.10, 0.11, 0.006 +19531202, 0.63, -0.08, -0.14, 0.006 +19531203, 0.20, -0.33, 0.08, 0.006 +19531204, -0.11, 0.26, -0.25, 0.006 +19531207, -0.18, 0.14, -0.26, 0.006 +19531208, -0.36, -0.14, -0.14, 0.006 +19531209, -0.01, 0.11, -0.22, 0.006 +19531210, -0.14, 0.15, -0.01, 0.006 +19531211, -0.02, -0.12, -0.01, 0.006 +19531214, -0.23, -0.13, 0.15, 0.006 +19531215, 0.00, -0.21, -0.34, 0.006 +19531216, 0.89, -0.43, 0.09, 0.006 +19531217, -0.07, 0.13, 0.09, 0.006 +19531218, 0.27, -0.11, -0.17, 0.006 +19531221, -0.17, 0.08, -0.36, 0.006 +19531222, -0.80, 0.11, -0.24, 0.006 +19531223, -0.08, 0.13, 0.20, 0.006 +19531224, 0.39, -0.01, 0.28, 0.006 +19531228, -0.44, -0.13, -0.50, 0.006 +19531229, -0.66, -0.16, -0.34, 0.006 +19531230, 0.68, -0.23, -0.31, 0.006 +19531231, 0.13, 0.20, -0.58, 0.006 +19540104, 0.73, 0.50, 1.28, 0.005 +19540105, 0.65, 0.37, 0.61, 0.005 +19540106, 0.19, 0.20, -0.08, 0.005 +19540107, -0.33, 0.41, -0.30, 0.005 +19540108, -0.40, 0.14, -0.08, 0.005 +19540111, -0.50, 0.09, -0.13, 0.005 +19540112, 0.51, -0.19, 0.30, 0.005 +19540113, 0.52, -0.03, 0.09, 0.005 +19540114, 0.46, 0.01, 0.24, 0.005 +19540115, 0.89, -0.26, 0.35, 0.005 +19540118, 0.08, 0.11, 0.15, 0.005 +19540119, 0.72, -0.44, 0.55, 0.005 +19540120, 0.27, 0.12, -0.03, 0.005 +19540121, -0.01, 0.05, -0.07, 0.005 +19540122, 0.23, -0.08, 0.06, 0.005 +19540125, 0.35, -0.27, 0.14, 0.005 +19540126, 0.74, -0.14, -0.27, 0.005 +19540127, -0.28, 0.08, 0.08, 0.005 +19540128, 0.03, -0.07, -0.02, 0.005 +19540129, 0.18, -0.17, 0.47, 0.005 +19540201, -0.22, 0.04, -0.23, 0.004 +19540202, -0.14, -0.09, 0.08, 0.004 +19540203, 0.56, -0.23, 0.10, 0.004 +19540204, 0.66, -0.23, -0.04, 0.004 +19540205, 0.34, -0.15, 0.00, 0.004 +19540208, -0.02, 0.18, 0.09, 0.004 +19540209, 0.03, 0.03, -0.07, 0.004 +19540210, -0.15, 0.31, 0.17, 0.004 +19540211, -0.13, 0.02, 0.00, 0.004 +19540212, 0.32, -0.04, 0.09, 0.004 +19540215, -0.33, 0.20, 0.10, 0.004 +19540216, -0.78, 0.19, -0.34, 0.004 +19540217, 0.27, -0.27, 0.23, 0.004 +19540218, 0.49, 0.04, -0.21, 0.004 +19540219, -0.12, 0.13, 0.13, 0.004 +19540223, -0.33, -0.04, -0.13, 0.004 +19540224, -0.06, -0.11, -0.01, 0.004 +19540225, 0.42, 0.01, -0.02, 0.004 +19540226, 0.87, -0.17, -0.21, 0.004 +19540301, 0.52, -0.28, -0.10, 0.003 +19540302, 0.25, -0.09, -0.31, 0.003 +19540303, 0.03, -0.08, 0.24, 0.003 +19540304, 0.25, -0.36, 0.17, 0.003 +19540305, 0.43, -0.13, 0.15, 0.003 +19540308, -0.21, 0.07, -0.19, 0.003 +19540309, 0.21, -0.05, -0.21, 0.003 +19540310, 0.30, 0.19, -0.10, 0.003 +19540311, 0.46, 0.01, -0.21, 0.003 +19540312, -0.09, 0.07, -0.19, 0.003 +19540315, -0.33, 0.12, -0.21, 0.003 +19540316, 0.03, 0.09, 0.06, 0.003 +19540317, 0.11, -0.19, 0.59, 0.003 +19540318, 0.52, 0.00, 0.10, 0.003 +19540319, 0.38, -0.01, -0.02, 0.003 +19540322, -0.05, 0.06, -0.23, 0.003 +19540323, -0.69, -0.02, -0.34, 0.003 +19540324, -0.47, 0.16, -0.18, 0.003 +19540325, -0.09, 0.14, -0.11, 0.003 +19540326, 0.62, 0.07, -0.13, 0.003 +19540329, 0.40, -0.06, -0.28, 0.003 +19540330, 0.30, 0.19, -0.05, 0.003 +19540331, 0.77, -0.36, 0.14, 0.003 +19540401, 0.72, -0.46, 0.27, 0.004 +19540402, 0.09, 0.07, -0.34, 0.004 +19540405, 0.06, 0.12, -0.42, 0.004 +19540406, -0.91, 0.13, 0.00, 0.004 +19540407, 0.55, -0.09, -0.01, 0.004 +19540408, 0.72, -0.24, 0.54, 0.004 +19540409, 0.44, -0.02, 0.14, 0.004 +19540412, -0.07, -0.19, -0.14, 0.004 +19540413, 0.18, -0.20, 0.27, 0.004 +19540414, 0.71, -0.46, -0.21, 0.004 +19540415, 0.40, -0.27, -0.26, 0.004 +19540419, -0.53, 0.00, -0.29, 0.004 +19540420, 0.04, -0.03, -0.31, 0.004 +19540421, -0.09, 0.06, 0.03, 0.004 +19540422, 0.21, -0.05, -0.30, 0.004 +19540423, 0.40, -0.25, 0.43, 0.004 +19540426, 0.11, -0.29, 0.18, 0.004 +19540427, -0.41, -0.09, -0.03, 0.004 +19540428, 0.23, -0.13, -0.15, 0.004 +19540429, 1.22, -0.65, 0.58, 0.004 +19540430, 0.13, -0.37, -0.29, 0.004 +19540503, -0.12, -0.12, -0.16, 0.003 +19540504, 0.12, -0.32, 0.17, 0.003 +19540505, -0.04, 0.16, -0.03, 0.003 +19540506, 0.52, -0.18, 0.02, 0.003 +19540507, 0.40, 0.02, -0.01, 0.003 +19540510, 0.09, 0.06, 0.19, 0.003 +19540511, -0.35, 0.11, -0.13, 0.003 +19540512, 0.76, -0.06, 0.39, 0.003 +19540513, -0.26, 0.31, 0.45, 0.003 +19540514, 0.49, -0.11, 0.33, 0.003 +19540517, 0.22, -0.22, 0.28, 0.003 +19540518, 0.16, 0.14, 0.14, 0.003 +19540519, -0.20, 0.11, 0.25, 0.003 +19540520, 0.35, -0.05, 0.38, 0.003 +19540521, 0.51, 0.28, -0.02, 0.003 +19540524, 0.04, 0.10, -0.20, 0.003 +19540525, -0.23, 0.05, -0.13, 0.003 +19540526, 0.54, -0.07, 0.47, 0.003 +19540527, -0.20, 0.16, -0.21, 0.003 +19540528, 0.26, 0.00, 0.20, 0.003 +19540601, 0.18, 0.25, -0.10, 0.003 +19540602, -0.18, 0.27, -0.43, 0.003 +19540603, 0.06, 0.16, 0.13, 0.003 +19540604, -0.19, 0.16, -0.15, 0.003 +19540607, -0.13, 0.00, -0.06, 0.003 +19540608, -2.04, 0.56, -0.26, 0.003 +19540609, -0.45, 0.13, 0.31, 0.003 +19540610, 0.56, 0.45, 0.02, 0.003 +19540611, 0.66, -0.29, 0.75, 0.003 +19540614, 0.06, -0.06, -0.09, 0.003 +19540615, 0.75, -0.63, 0.39, 0.003 +19540616, 0.74, -0.06, -0.06, 0.003 +19540617, -0.10, 0.06, -0.05, 0.003 +19540618, 0.04, 0.02, 0.15, 0.003 +19540621, 0.17, -0.06, -0.22, 0.003 +19540622, 0.10, -0.25, -0.14, 0.003 +19540623, 0.17, -0.29, -0.04, 0.003 +19540624, 0.58, -0.26, 0.25, 0.003 +19540625, 0.08, 0.10, -0.03, 0.003 +19540628, 0.62, -0.31, -0.59, 0.003 +19540629, 0.00, -0.01, 0.03, 0.003 +19540630, -0.54, 0.47, 0.19, 0.003 +19540701, 0.02, 0.23, -0.20, 0.002 +19540702, 0.99, -0.36, 0.07, 0.002 +19540706, 0.86, -0.19, -0.18, 0.002 +19540707, 0.02, -0.07, 0.10, 0.002 +19540708, -0.15, 0.06, 0.02, 0.002 +19540709, 0.47, -0.09, 0.36, 0.002 +19540712, 0.10, 0.12, 0.70, 0.002 +19540713, -0.27, 0.08, 0.46, 0.002 +19540714, 0.26, 0.17, 0.35, 0.002 +19540715, 0.30, 0.25, 0.23, 0.002 +19540716, -0.38, 0.47, 0.00, 0.002 +19540719, -0.30, 0.36, -0.21, 0.002 +19540720, -0.25, 0.43, 0.13, 0.002 +19540721, 0.75, -0.30, 0.48, 0.002 +19540722, 0.80, -0.40, 0.79, 0.002 +19540723, 0.18, -0.12, 0.39, 0.002 +19540726, 0.02, 0.34, -0.39, 0.002 +19540727, 0.43, -0.11, 0.63, 0.002 +19540728, 0.23, 0.03, 0.03, 0.002 +19540729, 0.37, 0.05, -0.11, 0.002 +19540730, 0.42, 0.07, 0.23, 0.002 +19540802, 0.28, 0.12, 0.28, 0.002 +19540803, 0.25, -0.22, 0.15, 0.002 +19540804, 0.01, 0.46, -0.24, 0.002 +19540805, -0.19, 0.73, -0.21, 0.002 +19540806, -1.21, 0.17, -0.62, 0.002 +19540809, -0.42, 0.49, 0.30, 0.002 +19540810, 0.85, 0.06, 0.61, 0.002 +19540811, 0.86, -0.01, 0.53, 0.002 +19540812, -0.16, 0.30, -0.35, 0.002 +19540813, 0.28, -0.06, 0.29, 0.002 +19540816, 0.73, -0.41, 0.46, 0.002 +19540817, -0.01, 0.01, -0.55, 0.002 +19540818, 0.10, 0.13, -0.23, 0.002 +19540819, 0.27, -0.20, -0.42, 0.002 +19540820, 0.12, -0.01, 0.17, 0.002 +19540823, -0.66, 0.53, -0.13, 0.002 +19540824, -0.36, 0.20, -0.40, 0.002 +19540825, -0.60, 0.03, -0.32, 0.002 +19540826, -0.30, 0.09, 0.05, 0.002 +19540827, 0.24, 0.09, -0.05, 0.002 +19540830, -0.94, 0.11, -0.47, 0.002 +19540831, -1.48, 0.12, -0.23, 0.002 +19540901, 0.82, 0.02, 0.35, 0.004 +19540902, 0.64, -0.12, -0.14, 0.004 +19540903, 0.64, 0.01, 0.55, 0.004 +19540907, 0.47, -0.32, 0.55, 0.004 +19540908, 0.12, -0.20, -0.11, 0.004 +19540909, 0.23, -0.22, 0.42, 0.004 +19540910, 0.34, 0.01, 0.40, 0.004 +19540913, 0.65, -0.28, 0.60, 0.004 +19540914, 0.32, -0.20, -0.31, 0.004 +19540915, -0.16, -0.06, -0.30, 0.004 +19540916, 0.35, 0.02, 0.26, 0.004 +19540917, 0.62, -0.09, -0.14, 0.004 +19540920, -0.37, 0.08, -0.46, 0.004 +19540921, 0.55, -0.33, 0.21, 0.004 +19540922, 0.59, -0.29, 0.13, 0.004 +19540923, 0.41, -0.42, -0.25, 0.004 +19540924, 0.50, -0.29, 0.02, 0.004 +19540927, 0.20, -0.19, -0.57, 0.004 +19540928, 0.12, -0.34, -0.41, 0.004 +19540929, -0.41, 0.38, -0.10, 0.004 +19540930, -0.41, 0.40, -0.05, 0.004 +19541001, 0.12, -0.03, 0.29, 0.003 +19541004, 0.50, -0.18, 0.00, 0.003 +19541005, 0.34, -0.14, 0.02, 0.003 +19541006, 0.24, -0.22, 0.14, 0.003 +19541007, -0.21, -0.05, 0.56, 0.003 +19541008, -0.02, 0.07, 0.04, 0.003 +19541011, -0.64, 0.40, 0.19, 0.003 +19541012, -0.37, 0.12, -0.32, 0.003 +19541013, -0.06, 0.15, 0.04, 0.003 +19541014, -1.15, 0.37, -0.50, 0.003 +19541015, -0.32, 0.29, 0.52, 0.003 +19541018, 0.32, -0.35, 0.17, 0.003 +19541019, 0.30, -0.18, 0.39, 0.003 +19541020, 0.61, -0.04, 0.38, 0.003 +19541021, 0.13, -0.09, 0.07, 0.003 +19541022, 0.12, 0.27, -0.22, 0.003 +19541025, -0.57, -0.14, -0.47, 0.003 +19541026, -0.07, 0.06, 0.03, 0.003 +19541027, 0.00, 0.07, -0.08, 0.003 +19541028, -0.23, 0.15, -0.38, 0.003 +19541029, -0.70, 0.06, -0.15, 0.003 +19541101, 0.45, -0.52, 0.13, 0.003 +19541103, 1.98, -0.47, 0.28, 0.003 +19541104, 1.01, -0.19, 0.07, 0.003 +19541105, -0.03, -0.09, 0.15, 0.003 +19541108, 0.87, -0.23, 0.70, 0.003 +19541109, 0.38, -0.10, 0.12, 0.003 +19541110, 0.35, 0.07, -0.04, 0.003 +19541111, 0.74, -0.22, 0.58, 0.003 +19541112, 0.30, -0.11, 0.47, 0.003 +19541115, -0.07, 0.00, -0.08, 0.003 +19541116, 0.51, -0.34, 0.47, 0.003 +19541117, 0.34, -0.22, 0.68, 0.003 +19541118, -0.47, 0.41, -0.66, 0.003 +19541119, 0.32, 0.58, 0.30, 0.003 +19541122, 0.56, -0.04, 0.52, 0.003 +19541123, 1.18, -0.38, 0.17, 0.003 +19541124, 0.25, -0.20, 0.26, 0.003 +19541126, 0.73, -0.34, 0.15, 0.003 +19541129, 0.25, -0.25, -0.03, 0.003 +19541130, -0.59, 0.21, -0.26, 0.003 +19541201, -0.47, 0.22, -0.27, 0.004 +19541202, 0.68, 0.42, 0.30, 0.004 +19541203, 0.93, 0.33, 0.15, 0.004 +19541206, 0.70, 0.18, 0.20, 0.004 +19541207, 0.24, -0.03, 0.40, 0.004 +19541208, 0.00, 0.10, 0.16, 0.004 +19541209, -0.34, 0.10, -0.09, 0.004 +19541210, -0.18, 0.61, 0.32, 0.004 +19541213, -0.14, 0.04, 0.40, 0.004 +19541214, -0.70, 0.24, -0.24, 0.004 +19541215, 0.42, -0.66, 0.86, 0.004 +19541216, 0.95, -0.27, 0.54, 0.004 +19541217, 0.61, -0.09, 0.51, 0.004 +19541220, 0.72, -0.12, 0.10, 0.004 +19541221, 0.15, 0.21, 0.00, 0.004 +19541222, -0.03, 0.33, 0.12, 0.004 +19541223, 0.10, 0.14, 0.39, 0.004 +19541227, -0.66, -0.05, 0.05, 0.004 +19541228, 0.91, -0.09, 1.10, 0.004 +19541229, 0.81, -0.02, 0.41, 0.004 +19541230, 0.08, 0.27, -0.06, 0.004 +19541231, 0.61, 0.14, -0.01, 0.004 +19550103, 1.08, -0.43, -0.18, 0.004 +19550104, -0.42, 0.24, -0.16, 0.004 +19550105, -2.12, 0.21, -1.27, 0.004 +19550106, -1.37, 0.20, -0.24, 0.004 +19550107, 1.11, 0.32, 1.28, 0.004 +19550110, 1.43, 0.01, 0.62, 0.004 +19550111, -0.18, 0.18, -0.35, 0.004 +19550112, -0.22, -0.04, 0.25, 0.004 +19550113, -0.49, 0.27, -0.15, 0.004 +19550114, -0.38, 0.45, -0.05, 0.004 +19550117, -1.90, 0.63, -0.73, 0.004 +19550118, 0.67, -0.33, 0.53, 0.004 +19550119, 0.49, 0.43, -0.10, 0.004 +19550120, 0.26, 0.12, -0.49, 0.004 +19550121, 0.66, -0.17, 0.57, 0.004 +19550124, 0.13, -0.25, 0.16, 0.004 +19550125, -0.11, -0.34, 0.42, 0.004 +19550126, 0.71, -0.90, 1.25, 0.004 +19550127, 0.16, 0.26, -0.01, 0.004 +19550128, 0.42, -0.13, 0.38, 0.004 +19550131, 0.75, -0.54, 0.49, 0.004 +19550201, 0.42, -0.33, -0.51, 0.004 +19550202, -0.10, 0.09, -0.32, 0.004 +19550203, -0.11, 0.56, 0.30, 0.004 +19550204, 1.03, -0.44, -0.42, 0.004 +19550207, 0.28, 0.30, -0.50, 0.004 +19550208, -0.80, 0.12, -0.54, 0.004 +19550209, 1.07, -0.17, 1.09, 0.004 +19550210, 0.78, 0.04, 0.08, 0.004 +19550211, 0.17, -0.17, -0.12, 0.004 +19550214, -0.25, 0.50, 0.14, 0.004 +19550215, 0.31, 0.33, -0.07, 0.004 +19550216, -0.26, 0.39, -0.04, 0.004 +19550217, 0.13, 0.29, 0.12, 0.004 +19550218, 0.27, 0.00, 0.24, 0.004 +19550221, 0.06, 0.35, 0.17, 0.004 +19550223, 0.07, -0.19, 0.33, 0.004 +19550224, -0.49, -0.22, -0.03, 0.004 +19550225, -0.10, 0.38, -0.14, 0.004 +19550228, 0.51, -0.35, 0.88, 0.004 +19550301, 0.32, -0.36, 0.51, 0.004 +19550302, 0.80, -0.05, 0.65, 0.004 +19550303, 0.27, 0.01, -0.63, 0.004 +19550304, 0.39, -0.25, -0.01, 0.004 +19550307, -0.39, 0.11, -0.26, 0.004 +19550308, -1.83, 0.08, -0.79, 0.004 +19550309, -1.22, -0.71, 0.18, 0.004 +19550310, 0.79, 0.66, 0.42, 0.004 +19550311, -1.54, 0.06, -0.43, 0.004 +19550314, -2.43, -0.20, -0.31, 0.004 +19550315, 1.91, -0.13, 1.03, 0.004 +19550316, 0.94, 0.34, 0.18, 0.004 +19550317, 0.42, -0.03, 0.08, 0.004 +19550318, 0.15, 0.22, -0.41, 0.004 +19550321, -0.54, 0.16, -0.13, 0.004 +19550322, 0.53, -0.43, 0.86, 0.004 +19550323, 1.19, 0.08, 0.31, 0.004 +19550324, 0.84, -0.38, 0.14, 0.004 +19550325, 0.27, -0.17, 0.04, 0.004 +19550328, -0.34, 0.01, 0.05, 0.004 +19550329, 0.09, 0.09, 0.67, 0.004 +19550330, -0.88, 0.17, -0.74, 0.004 +19550331, 0.22, 0.12, 0.58, 0.004 +19550401, 0.83, -0.44, 0.66, 0.005 +19550404, -0.15, 0.24, -0.36, 0.005 +19550405, 0.38, -0.30, 0.25, 0.005 +19550406, 0.18, -0.11, 0.19, 0.005 +19550407, 0.40, -0.25, 0.11, 0.005 +19550411, 0.22, -0.27, -0.32, 0.005 +19550412, 0.44, -0.26, 0.36, 0.005 +19550413, 0.28, -0.07, -0.13, 0.005 +19550414, 0.08, 0.14, -0.33, 0.005 +19550415, 0.40, 0.13, 0.49, 0.005 +19550418, 0.60, -0.52, -0.12, 0.005 +19550419, -0.16, -0.13, 0.26, 0.005 +19550420, 0.18, 0.01, 0.18, 0.005 +19550421, -0.08, -0.04, 0.04, 0.005 +19550422, -0.75, 0.04, -0.26, 0.005 +19550425, 0.26, -0.14, 0.84, 0.005 +19550426, 0.57, -0.40, -0.01, 0.005 +19550427, -0.40, 0.10, -0.63, 0.005 +19550428, -0.81, 0.47, -0.52, 0.005 +19550429, 0.60, 0.03, 0.17, 0.005 +19550502, 0.13, -0.41, -0.02, 0.007 +19550503, -0.85, -0.24, -0.76, 0.007 +19550504, 0.12, 0.01, 0.38, 0.007 +19550505, 0.47, 0.09, 0.04, 0.007 +19550506, 0.30, 0.03, 0.40, 0.007 +19550509, 0.11, -0.13, 0.00, 0.007 +19550510, -0.20, -0.20, -0.46, 0.007 +19550511, -0.93, 0.27, -0.33, 0.007 +19550512, -0.58, 0.32, -0.49, 0.007 +19550513, 0.57, 0.07, 0.42, 0.007 +19550516, -1.02, 0.12, -0.68, 0.007 +19550517, -0.05, 0.12, 0.07, 0.007 +19550518, 0.77, -0.02, 0.64, 0.007 +19550519, 0.67, 0.10, 0.09, 0.007 +19550520, 0.66, -0.10, 0.19, 0.007 +19550523, -0.64, 0.34, -0.55, 0.007 +19550524, 0.11, -0.12, 0.19, 0.007 +19550525, 0.48, -0.12, 0.23, 0.007 +19550526, 0.70, -0.50, 0.38, 0.007 +19550527, 0.14, 0.03, -0.40, 0.007 +19550531, 0.03, 0.02, -0.15, 0.007 +19550601, 0.18, -0.21, -0.34, 0.005 +19550602, 0.29, -0.24, 0.15, 0.005 +19550603, 0.64, -0.46, 0.58, 0.005 +19550606, 0.53, -0.71, 0.87, 0.005 +19550607, 0.69, -0.54, 0.56, 0.005 +19550608, 0.52, -0.38, 0.17, 0.005 +19550609, -0.51, 0.17, -0.72, 0.005 +19550610, 0.51, -0.33, 0.48, 0.005 +19550613, 0.89, -0.79, 0.19, 0.005 +19550614, -0.02, -0.02, -0.14, 0.005 +19550615, 0.68, -0.18, -0.04, 0.005 +19550616, 0.15, 0.10, -0.08, 0.005 +19550617, 0.28, -0.09, 0.27, 0.005 +19550620, 0.23, -0.10, -0.31, 0.005 +19550621, 0.45, -0.14, -0.14, 0.005 +19550622, 0.19, -0.12, 0.47, 0.005 +19550623, 0.11, -0.06, -0.36, 0.005 +19550624, 0.11, 0.08, -0.24, 0.005 +19550627, 0.08, -0.34, 0.50, 0.005 +19550628, -0.35, 0.28, -0.46, 0.005 +19550629, 0.13, -0.17, 0.28, 0.005 +19550630, 0.56, -0.19, 0.16, 0.005 +19550701, 0.39, -0.12, 0.12, 0.005 +19550705, 0.91, -0.54, -0.23, 0.005 +19550706, 1.20, -1.44, -1.03, 0.005 +19550707, -1.39, 0.07, 0.16, 0.005 +19550708, -0.10, 0.08, 0.01, 0.005 +19550711, 0.47, -0.07, 0.37, 0.005 +19550712, -0.13, 0.20, -0.06, 0.005 +19550713, -0.95, 0.32, 0.38, 0.005 +19550714, 0.21, 0.00, 0.38, 0.005 +19550715, 0.42, 0.02, 0.33, 0.005 +19550718, -0.15, -0.17, 0.08, 0.005 +19550719, -0.58, 0.48, -0.02, 0.005 +19550720, 0.23, 0.20, 0.34, 0.005 +19550721, 0.76, 0.13, -0.20, 0.005 +19550722, 0.71, -0.29, 0.35, 0.005 +19550725, 0.48, -0.10, -0.23, 0.005 +19550726, -0.01, -0.38, 0.14, 0.005 +19550727, 0.05, -0.11, 0.00, 0.005 +19550728, -0.48, 0.27, -0.15, 0.005 +19550729, -0.13, 0.10, -0.12, 0.005 +19550801, -1.14, 0.28, 0.01, 0.007 +19550802, 0.11, 0.18, 0.08, 0.007 +19550803, 0.21, 0.10, -0.16, 0.007 +19550804, -1.24, 0.31, -0.12, 0.007 +19550805, 0.53, 0.02, -0.06, 0.007 +19550808, -0.49, -0.09, 0.05, 0.007 +19550809, -1.04, 0.15, -0.12, 0.007 +19550810, 0.14, 0.04, -0.19, 0.007 +19550811, 0.84, -0.39, 0.57, 0.007 +19550812, 0.28, 0.00, -0.17, 0.007 +19550815, -0.15, 0.00, 0.11, 0.007 +19550816, -0.53, 0.10, 0.29, 0.007 +19550817, -0.04, -0.24, 0.24, 0.007 +19550818, -0.01, 0.05, 0.15, 0.007 +19550819, 0.14, -0.01, 0.07, 0.007 +19550822, -0.11, -0.19, 0.12, 0.007 +19550823, 0.94, -0.64, 0.27, 0.007 +19550824, 0.38, 0.00, 0.15, 0.007 +19550825, 0.45, -0.03, -0.07, 0.007 +19550826, 0.39, 0.00, -0.20, 0.007 +19550829, 0.08, 0.06, -0.16, 0.007 +19550830, 0.02, 0.00, -0.17, 0.007 +19550831, 0.50, -0.09, -0.12, 0.007 +19550901, 0.28, -0.01, -0.22, 0.008 +19550902, 0.43, -0.09, 0.09, 0.008 +19550906, 0.56, -0.24, 0.01, 0.008 +19550907, 0.03, -0.22, 0.43, 0.008 +19550908, 0.19, 0.20, 0.04, 0.008 +19550909, 0.13, 0.08, 0.16, 0.008 +19550912, 0.45, -0.12, -0.35, 0.008 +19550913, 0.63, -0.46, -0.48, 0.008 +19550914, 0.23, -0.09, 0.35, 0.008 +19550915, -0.13, 0.26, 0.01, 0.008 +19550916, 0.44, -0.03, -0.12, 0.008 +19550919, 0.02, 0.00, -0.23, 0.008 +19550920, -0.04, 0.14, 0.03, 0.008 +19550921, 0.43, -0.15, -0.17, 0.008 +19550922, 0.04, 0.03, 0.10, 0.008 +19550923, 0.39, -0.29, 0.22, 0.008 +19550926, -6.52, 0.40, -0.48, 0.008 +19550927, 2.17, -0.36, -0.56, 0.008 +19550928, 1.27, 0.45, -0.20, 0.008 +19550929, -0.61, 0.52, 0.32, 0.008 +19550930, -0.50, 0.32, -0.11, 0.008 +19551003, -2.24, 0.57, 0.02, 0.009 +19551004, 0.48, 0.08, -0.07, 0.009 +19551005, 0.51, 0.04, 0.20, 0.009 +19551006, -0.41, 0.36, -0.21, 0.009 +19551007, -0.77, -0.01, -0.13, 0.009 +19551010, -2.56, 0.53, -0.24, 0.009 +19551011, -0.73, 0.04, 0.34, 0.009 +19551012, 1.37, -0.26, 0.04, 0.009 +19551013, -0.14, -0.03, 0.01, 0.009 +19551014, -0.16, -0.05, 0.33, 0.009 +19551017, 0.31, -0.09, 0.27, 0.009 +19551018, 0.42, -0.07, -0.01, 0.009 +19551019, 0.82, -0.17, -0.01, 0.009 +19551020, 0.93, -0.10, -0.28, 0.009 +19551021, 0.10, -0.04, 0.27, 0.009 +19551024, 0.57, -0.31, 0.02, 0.009 +19551025, -0.48, 0.17, 0.11, 0.009 +19551026, -0.62, 0.39, -0.09, 0.009 +19551027, -0.21, 0.20, -0.30, 0.009 +19551028, 0.27, -0.02, -0.08, 0.009 +19551031, -0.08, 0.19, -0.12, 0.009 +19551101, 0.02, -0.10, -0.11, 0.008 +19551102, 0.18, -0.05, 0.15, 0.008 +19551103, 1.40, -0.63, -0.14, 0.008 +19551104, 1.34, -0.71, -0.17, 0.008 +19551107, 0.58, -0.15, -0.04, 0.008 +19551109, 0.85, -0.52, -0.31, 0.008 +19551110, -0.12, 0.09, 0.31, 0.008 +19551111, 0.78, -0.04, 0.07, 0.008 +19551114, 1.45, -0.71, -0.57, 0.008 +19551115, 0.14, -0.21, -0.12, 0.008 +19551116, -0.24, 0.14, 0.37, 0.008 +19551117, -0.40, 0.40, -0.10, 0.008 +19551118, -0.16, 0.16, -0.19, 0.008 +19551121, -0.59, 0.28, 0.47, 0.008 +19551122, 0.84, -0.42, 0.20, 0.008 +19551123, 0.28, -0.29, -0.02, 0.008 +19551125, 0.35, -0.25, 0.61, 0.008 +19551128, -0.41, 0.26, 0.33, 0.008 +19551129, 0.34, 0.06, -0.10, 0.008 +19551130, 0.23, 0.34, -0.20, 0.008 +19551201, -0.15, 0.38, -0.13, 0.009 +19551202, 0.27, 0.17, -0.19, 0.009 +19551205, 0.51, 0.00, -0.30, 0.009 +19551206, 0.10, 0.28, -0.11, 0.009 +19551207, -0.13, 0.55, -0.62, 0.009 +19551208, 0.45, 0.04, -0.19, 0.009 +19551209, 0.05, 0.16, 0.22, 0.009 +19551212, -0.67, 0.12, 0.14, 0.009 +19551213, 0.01, 0.05, 0.19, 0.009 +19551214, -0.63, 0.54, -0.18, 0.009 +19551215, 0.02, 0.02, -0.14, 0.009 +19551216, 0.32, 0.10, -0.18, 0.009 +19551219, -0.09, 0.25, -0.07, 0.009 +19551220, -0.09, 0.09, -0.25, 0.009 +19551221, 0.82, -0.35, -0.08, 0.009 +19551222, 0.22, 0.16, -0.06, 0.009 +19551223, 0.16, -0.12, 0.16, 0.009 +19551227, -0.27, -0.02, 0.31, 0.009 +19551228, -0.24, -0.01, -0.05, 0.009 +19551229, 0.05, -0.25, -0.18, 0.009 +19551230, 0.81, -0.13, -0.52, 0.009 +19560103, -0.65, 0.13, 0.09, 0.010 +19560104, -0.53, 0.33, -0.17, 0.010 +19560105, 0.12, 0.42, -0.04, 0.010 +19560106, 0.45, -0.11, 0.35, 0.010 +19560109, -1.27, 0.24, 0.02, 0.010 +19560110, -0.75, 0.00, 0.07, 0.010 +19560111, 0.62, 0.21, -0.11, 0.010 +19560112, 0.61, -0.01, -0.02, 0.010 +19560113, -0.04, -0.07, 0.10, 0.010 +19560116, -1.02, 0.31, -0.24, 0.010 +19560117, 0.47, -0.22, 0.00, 0.010 +19560118, -0.81, 0.27, -0.16, 0.010 +19560119, -1.02, 0.23, -0.01, 0.010 +19560120, -0.72, 0.10, -0.02, 0.010 +19560123, -0.37, -0.18, 0.05, 0.010 +19560124, 1.28, -0.25, 0.20, 0.010 +19560125, 0.36, -0.15, 0.13, 0.010 +19560126, -0.54, 0.05, 0.42, 0.010 +19560127, -0.24, -0.11, 0.01, 0.010 +19560130, 0.21, -0.02, -0.06, 0.010 +19560131, 0.82, -0.73, 0.53, 0.010 +19560201, 0.58, -0.25, -0.22, 0.010 +19560202, 0.20, -0.10, -0.32, 0.010 +19560203, 0.91, -0.47, -0.55, 0.010 +19560206, -0.01, 0.15, -0.26, 0.010 +19560207, -0.21, -0.01, 0.15, 0.010 +19560208, -1.02, 0.22, -0.20, 0.010 +19560209, -1.00, 0.34, 0.22, 0.010 +19560210, 0.27, -0.08, 0.13, 0.010 +19560213, -0.10, 0.02, 0.08, 0.010 +19560214, -0.38, 0.12, 0.06, 0.010 +19560215, 1.17, -0.06, 0.07, 0.010 +19560216, -0.16, 0.22, 0.10, 0.010 +19560217, 1.43, -0.65, 0.37, 0.010 +19560220, 0.08, 0.09, 0.49, 0.010 +19560221, 0.18, 0.05, -0.01, 0.010 +19560223, 1.07, -0.24, -0.20, 0.010 +19560224, 0.68, -0.44, -0.01, 0.010 +19560227, -0.06, 0.14, -0.12, 0.010 +19560228, 0.39, -0.12, -0.21, 0.010 +19560229, -0.26, 0.04, -0.09, 0.010 +19560301, 0.59, -0.22, -0.08, 0.007 +19560302, 0.72, -0.31, 0.29, 0.007 +19560305, 0.61, -0.02, 0.13, 0.007 +19560306, -0.08, 0.17, -0.42, 0.007 +19560307, 0.00, 0.28, 0.03, 0.007 +19560308, 0.35, -0.10, 0.19, 0.007 +19560309, 1.13, -0.22, -0.11, 0.007 +19560312, 0.73, -0.38, -0.16, 0.007 +19560313, 0.00, 0.03, -0.18, 0.007 +19560314, 0.61, -0.39, 0.01, 0.007 +19560315, 0.60, -0.24, -0.29, 0.007 +19560316, 0.05, -0.13, 0.00, 0.007 +19560319, 0.58, -0.36, 0.00, 0.007 +19560320, 0.26, -0.47, 0.22, 0.007 +19560321, -0.88, 0.55, 0.08, 0.007 +19560322, 0.60, -0.31, 0.08, 0.007 +19560323, 0.44, -0.13, -0.13, 0.007 +19560326, 0.03, 0.15, -0.12, 0.007 +19560327, -0.55, 0.21, -0.36, 0.007 +19560328, 0.38, -0.18, 0.38, 0.007 +19560329, 0.25, -0.25, 0.32, 0.007 +19560402, 0.66, -0.54, -0.13, 0.009 +19560403, -0.26, 0.16, -0.37, 0.009 +19560404, 0.27, -0.08, -0.12, 0.009 +19560405, -0.43, 0.15, 0.08, 0.009 +19560406, 0.51, -0.18, 0.03, 0.009 +19560409, -0.50, 0.44, -0.11, 0.009 +19560410, -1.33, 0.55, -0.09, 0.009 +19560411, 0.78, -0.18, 0.02, 0.009 +19560412, -0.56, 0.51, 0.17, 0.009 +19560413, 0.05, 0.21, 0.35, 0.009 +19560416, -0.02, -0.03, 0.11, 0.009 +19560417, -0.06, 0.00, -0.16, 0.009 +19560418, -0.21, 0.15, -0.08, 0.009 +19560419, -0.36, 0.06, -0.08, 0.009 +19560420, 0.47, -0.37, 0.44, 0.009 +19560423, -0.04, -0.05, 0.32, 0.009 +19560424, -0.83, 0.34, -0.05, 0.009 +19560425, -0.26, 0.02, 0.53, 0.009 +19560426, 0.78, -0.28, -0.25, 0.009 +19560427, 0.96, -0.36, -0.28, 0.009 +19560430, 0.68, -0.49, -0.50, 0.009 +19560501, -0.31, 0.06, -0.32, 0.010 +19560502, 0.05, 0.26, -0.21, 0.010 +19560503, 0.43, -0.17, 0.29, 0.010 +19560504, 0.52, 0.03, -0.29, 0.010 +19560507, -0.30, 0.10, -0.15, 0.010 +19560508, -0.29, -0.08, 0.24, 0.010 +19560509, 0.02, -0.10, 0.57, 0.010 +19560510, -1.35, 0.44, -0.34, 0.010 +19560511, 0.19, 0.42, -0.22, 0.010 +19560514, -1.10, 0.36, -0.39, 0.010 +19560515, -0.54, -0.05, 0.24, 0.010 +19560516, -0.16, 0.18, 0.34, 0.010 +19560517, 0.73, -0.24, -0.08, 0.010 +19560518, -0.28, 0.24, 0.24, 0.010 +19560521, -1.04, 0.09, -0.27, 0.010 +19560522, -1.26, 0.37, -0.14, 0.010 +19560523, -0.39, 0.38, -0.10, 0.010 +19560524, -1.29, -0.10, -0.02, 0.010 +19560525, 0.02, -0.28, 0.13, 0.010 +19560528, -1.21, -0.25, -0.31, 0.010 +19560529, 2.24, -0.25, -0.54, 0.010 +19560531, 0.08, 0.13, -0.04, 0.010 +19560601, 0.49, -0.28, -0.23, 0.009 +19560604, 0.45, -0.35, 0.01, 0.009 +19560605, 0.08, 0.19, -0.05, 0.009 +19560606, -0.34, 0.10, -0.11, 0.009 +19560607, 0.60, -0.13, -0.08, 0.009 +19560608, -1.75, -0.41, 0.01, 0.009 +19560611, 1.19, -0.06, 0.00, 0.009 +19560612, 1.28, -0.55, -0.17, 0.009 +19560613, 0.25, 0.29, 0.08, 0.009 +19560614, -0.24, -0.03, 0.26, 0.009 +19560615, 0.19, -0.07, -0.14, 0.009 +19560618, -0.60, 0.48, -0.02, 0.009 +19560619, 0.34, -0.26, -0.32, 0.009 +19560620, 0.27, -0.07, -0.26, 0.009 +19560621, 0.48, -0.23, 0.20, 0.009 +19560622, -0.10, 0.15, -0.12, 0.009 +19560625, -0.42, 0.20, -0.20, 0.009 +19560626, 0.58, -0.16, -0.04, 0.009 +19560627, 0.60, -0.01, -0.24, 0.009 +19560628, 0.13, -0.30, 0.15, 0.009 +19560629, -0.01, 0.05, -0.01, 0.009 +19560702, 0.01, -0.16, -0.16, 0.010 +19560703, 0.61, -0.19, -0.32, 0.010 +19560705, 0.82, -0.23, -0.11, 0.010 +19560706, 0.45, -0.22, 0.07, 0.010 +19560709, 0.36, 0.05, 0.07, 0.010 +19560710, 0.41, 0.08, -0.06, 0.010 +19560711, 0.24, 0.12, 0.08, 0.010 +19560712, -0.25, 0.16, 0.20, 0.010 +19560713, 0.47, -0.15, 0.19, 0.010 +19560716, 0.68, -0.47, -0.12, 0.010 +19560717, 0.36, -0.15, -0.01, 0.010 +19560718, -0.07, -0.12, 0.17, 0.010 +19560719, 0.02, -0.02, -0.04, 0.010 +19560720, 0.21, 0.06, -0.05, 0.010 +19560723, 0.06, -0.28, 0.18, 0.010 +19560724, -0.10, 0.07, 0.22, 0.010 +19560725, 0.19, -0.18, 0.03, 0.010 +19560726, 0.21, 0.01, -0.27, 0.010 +19560727, -0.66, 0.18, -0.10, 0.010 +19560730, 0.00, -0.07, 0.11, 0.010 +19560731, 0.66, -0.17, -0.02, 0.010 +19560801, 0.13, -0.03, -0.05, 0.007 +19560802, 0.52, 0.07, -0.69, 0.007 +19560803, -0.16, 0.03, -0.12, 0.007 +19560806, -1.40, 0.39, 0.15, 0.007 +19560807, 0.74, -0.22, 0.05, 0.007 +19560808, 0.59, -0.07, -0.25, 0.007 +19560809, 0.11, 0.15, 0.05, 0.007 +19560810, -0.43, 0.06, -0.11, 0.007 +19560813, -0.76, 0.15, 0.08, 0.007 +19560814, 0.36, -0.13, -0.08, 0.007 +19560815, -0.02, 0.14, -0.08, 0.007 +19560816, -0.10, 0.09, -0.17, 0.007 +19560817, -0.01, 0.19, -0.03, 0.007 +19560820, -0.94, 0.28, 0.18, 0.007 +19560821, -1.08, -0.08, 0.17, 0.007 +19560822, -0.42, 0.40, 0.31, 0.007 +19560823, 0.83, -0.13, -0.30, 0.007 +19560824, 0.07, 0.28, -0.14, 0.007 +19560827, -0.56, 0.21, -0.05, 0.007 +19560828, -0.36, 0.21, 0.12, 0.007 +19560829, -0.40, 0.09, 0.35, 0.007 +19560830, -0.93, -0.03, 0.08, 0.007 +19560831, 1.05, -0.11, -0.18, 0.007 +19560904, 0.75, -0.17, -0.29, 0.010 +19560905, 0.36, 0.03, -0.42, 0.010 +19560906, 0.11, 0.02, -0.06, 0.010 +19560907, -0.53, 0.34, 0.07, 0.010 +19560910, -0.41, 0.16, 0.10, 0.010 +19560911, -0.64, 0.26, 0.00, 0.010 +19560912, -0.54, 0.03, 0.11, 0.010 +19560913, -0.17, 0.13, -0.10, 0.010 +19560914, 0.40, -0.64, 0.98, 0.010 +19560917, -0.21, 0.02, 0.05, 0.010 +19560918, -0.78, 0.29, 0.06, 0.010 +19560919, -0.93, 0.36, 0.39, 0.010 +19560920, -0.26, -0.05, 0.21, 0.010 +19560921, 0.69, 0.10, 0.17, 0.010 +19560924, -0.54, 0.24, -0.17, 0.010 +19560925, -1.38, 0.15, 0.33, 0.010 +19560926, -0.05, -0.27, 0.50, 0.010 +19560927, -0.43, 0.44, -0.28, 0.010 +19560928, -0.68, 0.19, 0.19, 0.010 +19561001, -1.52, 0.13, -0.04, 0.011 +19561002, 1.73, -0.33, -0.13, 0.011 +19561003, 1.49, -0.50, -0.31, 0.011 +19561004, -0.05, 0.19, -0.21, 0.011 +19561005, 0.36, 0.00, 0.34, 0.011 +19561008, 0.01, -0.03, 0.12, 0.011 +19561009, -0.47, 0.33, -0.20, 0.011 +19561010, 1.04, -0.53, -0.16, 0.011 +19561011, 0.14, 0.22, -0.19, 0.011 +19561012, 0.26, -0.04, 0.28, 0.011 +19561015, 0.02, -0.01, -0.03, 0.011 +19561016, -0.38, -0.02, 0.48, 0.011 +19561017, -0.70, 0.35, 0.24, 0.011 +19561018, 0.16, -0.19, 0.19, 0.011 +19561019, -0.03, 0.16, 0.45, 0.011 +19561022, -0.20, -0.13, -0.01, 0.011 +19561023, -0.07, 0.09, -0.22, 0.011 +19561024, -0.39, 0.18, -0.29, 0.011 +19561025, -0.30, 0.02, 0.03, 0.011 +19561026, 0.88, -0.21, 0.13, 0.011 +19561029, 0.17, 0.25, -0.59, 0.011 +19561030, -0.20, -0.12, 0.18, 0.011 +19561031, -1.37, 0.12, -0.13, 0.011 +19561101, 1.75, -0.63, 0.18, 0.010 +19561102, 0.83, -0.22, -0.27, 0.010 +19561105, 1.39, -0.64, -0.35, 0.010 +19561107, -0.62, 0.45, -0.02, 0.010 +19561108, -0.74, 0.11, 0.13, 0.010 +19561109, -0.49, 0.49, -0.23, 0.010 +19561112, 0.50, -0.11, 0.36, 0.010 +19561113, -0.03, 0.05, 0.53, 0.010 +19561114, -0.65, -0.04, 0.42, 0.010 +19561115, -0.50, 0.54, 0.42, 0.010 +19561116, -0.08, 0.03, 0.19, 0.010 +19561119, -1.02, 0.30, 0.22, 0.010 +19561120, -0.59, 0.04, 0.17, 0.010 +19561121, -0.23, -0.07, -0.16, 0.010 +19561123, 0.94, -0.46, -0.06, 0.010 +19561126, -0.32, 0.47, 0.34, 0.010 +19561127, 0.03, -0.15, 0.05, 0.010 +19561128, -0.99, 0.54, -0.08, 0.010 +19561129, -0.25, -0.32, 0.10, 0.010 +19561130, 1.51, -0.71, -0.25, 0.010 +19561203, 1.57, -0.69, -0.18, 0.012 +19561204, -0.07, 0.30, -0.85, 0.012 +19561205, 0.94, -0.25, -0.21, 0.012 +19561206, 0.52, -0.63, 0.58, 0.012 +19561207, 0.26, 0.13, -0.18, 0.012 +19561210, -0.30, 0.37, 0.04, 0.012 +19561211, -0.45, 0.37, -0.07, 0.012 +19561212, -0.63, 0.70, -0.33, 0.012 +19561213, 0.68, -0.19, 0.37, 0.012 +19561214, 0.19, 0.31, -0.47, 0.012 +19561217, -0.05, -0.03, -0.06, 0.012 +19561218, 0.01, -0.09, -0.22, 0.012 +19561219, -0.27, 0.15, -0.28, 0.012 +19561220, -0.62, 0.23, -0.02, 0.012 +19561221, 0.59, -0.30, 0.41, 0.012 +19561226, 0.24, -0.12, -0.34, 0.012 +19561227, -0.08, -0.09, -0.21, 0.012 +19561228, 0.24, -0.07, 0.06, 0.012 +19561231, 0.36, -0.17, -0.11, 0.012 +19570102, -0.73, 0.65, 0.84, 0.012 +19570103, 0.79, -0.02, 0.25, 0.012 +19570104, 0.17, 0.10, 0.43, 0.012 +19570107, -0.46, 0.32, 0.66, 0.012 +19570108, -0.13, 0.46, 0.05, 0.012 +19570109, -0.19, 0.37, 0.19, 0.012 +19570110, 0.37, 0.32, 0.27, 0.012 +19570111, -0.10, 0.45, 0.12, 0.012 +19570114, -0.72, 0.33, -0.19, 0.012 +19570115, -1.11, 0.37, 0.19, 0.012 +19570116, -0.06, 0.20, 0.09, 0.012 +19570117, -0.30, -0.21, -0.02, 0.012 +19570118, -1.22, 0.25, -0.04, 0.012 +19570121, -0.34, 0.01, -0.23, 0.012 +19570122, 0.32, 0.25, -0.09, 0.012 +19570123, 0.56, -0.23, 0.20, 0.012 +19570124, 0.24, 0.14, -0.15, 0.012 +19570125, -0.51, -0.15, -0.04, 0.012 +19570128, -0.69, -0.09, -0.06, 0.012 +19570129, 0.23, 0.03, 0.30, 0.012 +19570130, 0.53, -0.43, 0.08, 0.012 +19570131, -0.27, 0.34, -0.04, 0.012 +19570201, -0.39, -0.03, -0.16, 0.013 +19570204, -0.19, 0.22, -0.10, 0.013 +19570205, -1.26, -0.16, -0.16, 0.013 +19570206, 0.15, -0.09, 0.23, 0.013 +19570207, -0.36, 0.05, -0.13, 0.013 +19570208, -0.42, -0.03, -0.11, 0.013 +19570211, -1.73, 0.15, -0.60, 0.013 +19570212, -0.54, -0.30, 0.18, 0.013 +19570213, 1.55, -0.14, 0.13, 0.013 +19570214, 0.05, 0.06, 0.01, 0.013 +19570215, 1.23, -0.27, -0.17, 0.013 +19570218, -0.22, 0.46, -0.37, 0.013 +19570219, 0.20, -0.25, -0.08, 0.013 +19570220, 0.45, -0.37, -0.11, 0.013 +19570221, -0.39, 0.10, -0.02, 0.013 +19570225, 0.01, -0.14, 0.20, 0.013 +19570226, 0.19, -0.09, -0.02, 0.013 +19570227, -0.18, -0.03, 0.41, 0.013 +19570228, -0.19, 0.08, 0.18, 0.013 +19570301, 0.89, -0.39, -0.13, 0.011 +19570304, 0.68, -0.15, -0.15, 0.011 +19570305, 0.42, -0.24, -0.08, 0.011 +19570306, 0.31, 0.02, -0.44, 0.011 +19570307, -0.26, 0.44, -0.23, 0.011 +19570308, -0.35, -0.02, 0.08, 0.011 +19570311, -0.54, 0.43, -0.04, 0.011 +19570312, -0.02, -0.13, 0.11, 0.011 +19570313, 0.56, 0.21, 0.02, 0.011 +19570314, 0.09, -0.12, 0.10, 0.011 +19570315, 0.13, 0.18, 0.02, 0.011 +19570318, -0.40, 0.03, -0.04, 0.011 +19570319, 0.36, 0.02, -0.10, 0.011 +19570320, 0.13, 0.39, -0.04, 0.011 +19570321, 0.03, -0.17, 0.04, 0.011 +19570322, -0.16, 0.07, 0.36, 0.011 +19570325, -0.42, 0.09, 0.08, 0.011 +19570326, 0.15, -0.13, -0.12, 0.011 +19570327, 0.30, -0.13, -0.06, 0.011 +19570328, 0.34, -0.08, 0.12, 0.011 +19570329, -0.14, -0.02, -0.03, 0.011 +19570401, -0.01, -0.17, -0.12, 0.012 +19570402, 0.59, -0.23, -0.10, 0.012 +19570403, 0.35, 0.01, 0.07, 0.012 +19570404, -0.24, 0.12, -0.11, 0.012 +19570405, 0.07, 0.12, -0.36, 0.012 +19570408, 0.03, 0.04, -0.29, 0.012 +19570409, 0.84, -0.40, -0.21, 0.012 +19570410, 0.53, -0.28, 0.28, 0.012 +19570411, 0.08, 0.20, -0.20, 0.012 +19570412, 0.19, -0.01, 0.00, 0.012 +19570415, -0.12, -0.04, 0.18, 0.012 +19570416, 0.07, -0.06, -0.10, 0.012 +19570417, 0.22, -0.11, -0.26, 0.012 +19570418, 0.69, -0.18, -0.04, 0.012 +19570422, 0.10, 0.13, -0.04, 0.012 +19570423, 0.56, -0.46, 0.42, 0.012 +19570424, 0.16, -0.18, -0.09, 0.012 +19570425, -0.32, -0.07, 0.28, 0.012 +19570426, -0.12, -0.07, 0.03, 0.012 +19570429, 0.38, 0.07, -0.45, 0.012 +19570430, 0.11, 0.00, -0.34, 0.012 +19570501, 0.55, -0.29, -0.33, 0.012 +19570502, 0.73, -0.40, -0.14, 0.012 +19570503, -0.07, 0.32, -0.06, 0.012 +19570506, -0.13, -0.03, 0.01, 0.012 +19570507, -0.17, 0.03, -0.15, 0.012 +19570508, 0.40, 0.10, -0.34, 0.012 +19570509, 0.13, 0.24, -0.09, 0.012 +19570510, 0.43, -0.03, -0.29, 0.012 +19570513, 0.71, -0.33, -0.42, 0.012 +19570514, -0.43, 0.25, 0.02, 0.012 +19570515, 0.24, 0.08, -0.34, 0.012 +19570516, 0.42, -0.17, 0.46, 0.012 +19570517, 0.29, -0.14, 0.13, 0.012 +19570520, 0.27, -0.26, -0.25, 0.012 +19570521, 0.07, -0.11, -0.03, 0.012 +19570522, -0.34, -0.03, 0.17, 0.012 +19570523, -0.09, -0.01, 0.10, 0.012 +19570524, 0.13, -0.19, 0.17, 0.012 +19570527, -0.89, 0.18, -0.10, 0.012 +19570528, -0.14, 0.03, 0.21, 0.012 +19570529, 0.83, -0.27, -0.30, 0.012 +19570531, 0.45, -0.06, -0.39, 0.012 +19570603, -0.19, 0.04, -0.08, 0.012 +19570604, -0.13, 0.00, 0.06, 0.012 +19570605, 0.02, 0.00, -0.03, 0.012 +19570606, 0.63, -0.38, -0.33, 0.012 +19570607, 0.03, -0.01, 0.03, 0.012 +19570610, -0.65, 0.00, 0.29, 0.012 +19570611, 1.26, -0.01, -0.16, 0.012 +19570612, 0.16, -0.23, 0.28, 0.012 +19570613, 0.16, 0.06, -0.18, 0.012 +19570614, -0.02, 0.11, -0.18, 0.012 +19570617, 0.16, -0.10, -0.18, 0.012 +19570618, -0.44, 0.42, -0.47, 0.012 +19570619, -0.92, 0.60, -0.07, 0.012 +19570620, -0.57, 0.19, 0.15, 0.012 +19570621, -0.58, 0.13, 0.35, 0.012 +19570624, -0.74, -0.09, 0.46, 0.012 +19570625, 0.66, -0.02, -0.05, 0.012 +19570626, -0.16, 0.07, 0.19, 0.012 +19570627, 0.36, -0.24, -0.04, 0.012 +19570628, 0.23, 0.02, -0.11, 0.012 +19570701, 0.18, -0.40, 0.22, 0.013 +19570702, 0.86, -0.41, -0.33, 0.013 +19570703, 0.79, -0.10, -0.33, 0.013 +19570705, 0.77, -0.07, -0.41, 0.013 +19570708, 0.37, -0.15, -0.31, 0.013 +19570709, -0.26, -0.07, 0.44, 0.013 +19570710, 0.67, -0.47, 0.31, 0.013 +19570711, -0.39, 0.06, 0.36, 0.013 +19570712, 0.41, -0.16, 0.00, 0.013 +19570715, 0.07, -0.30, 0.28, 0.013 +19570716, -0.49, 0.13, 0.29, 0.013 +19570717, -0.59, 0.33, -0.16, 0.013 +19570718, -0.10, 0.33, -0.35, 0.013 +19570719, 0.02, 0.16, -0.23, 0.013 +19570722, -0.22, 0.18, -0.01, 0.013 +19570723, -0.12, -0.15, 0.49, 0.013 +19570724, 0.07, 0.01, 0.00, 0.013 +19570725, -0.01, -0.10, 0.34, 0.013 +19570726, -0.34, 0.03, -0.09, 0.013 +19570729, -1.12, 0.14, -0.07, 0.013 +19570730, 0.12, 0.11, -0.02, 0.013 +19570731, 0.00, 0.16, -0.04, 0.013 +19570801, -0.25, 0.11, -0.13, 0.011 +19570802, -0.09, -0.11, 0.51, 0.011 +19570805, -0.85, 0.25, 0.19, 0.011 +19570806, -1.10, 0.20, 0.23, 0.011 +19570807, 0.83, -0.47, -0.29, 0.011 +19570808, -0.32, 0.66, -0.49, 0.011 +19570809, 0.02, -0.30, 0.14, 0.011 +19570812, -1.10, 0.25, 0.16, 0.011 +19570813, -0.02, 0.00, -0.28, 0.011 +19570814, -1.25, 0.05, 0.29, 0.011 +19570815, 0.08, -0.28, 0.14, 0.011 +19570816, 0.15, 0.01, 0.06, 0.011 +19570819, -1.92, 0.32, 0.36, 0.011 +19570820, 0.75, -0.50, -0.18, 0.011 +19570821, 0.56, -0.02, -0.39, 0.011 +19570822, -0.67, 0.11, 0.46, 0.011 +19570823, -1.40, -0.03, 0.32, 0.011 +19570826, -1.42, 0.08, 0.12, 0.011 +19570827, 1.54, 0.00, -0.96, 0.011 +19570828, 0.12, 0.22, -0.47, 0.011 +19570829, -0.46, -0.04, -0.03, 0.011 +19570830, 1.65, -0.48, -0.32, 0.011 +19570903, 0.44, 0.21, -0.22, 0.013 +19570904, -0.85, 0.32, 0.01, 0.013 +19570905, -0.36, 0.00, -0.02, 0.013 +19570906, -0.27, 0.20, 0.35, 0.013 +19570909, -0.85, 0.09, 0.03, 0.013 +19570910, -0.88, 0.13, -0.05, 0.013 +19570911, 0.75, -0.61, -0.06, 0.013 +19570912, 1.23, -0.28, -0.44, 0.013 +19570913, -0.05, 0.35, 0.14, 0.013 +19570916, -0.47, 0.09, 0.07, 0.013 +19570917, 0.15, -0.03, -0.19, 0.013 +19570918, 0.13, -0.13, 0.22, 0.013 +19570919, -0.61, 0.33, 0.06, 0.013 +19570920, -1.58, -0.02, 0.45, 0.013 +19570923, -2.13, -0.18, 0.16, 0.013 +19570924, 0.64, -0.11, -0.27, 0.013 +19570925, -1.27, -0.44, 0.18, 0.013 +19570926, 0.22, -0.09, -0.03, 0.013 +19570927, -0.03, 0.62, 0.06, 0.013 +19570930, -0.33, -0.36, 0.44, 0.013 +19571001, 0.73, -0.47, -0.37, 0.013 +19571002, 0.84, -0.12, -0.02, 0.013 +19571003, 0.04, -0.29, 0.50, 0.013 +19571004, -0.71, 0.32, 0.28, 0.013 +19571007, -1.89, 0.10, 0.60, 0.013 +19571008, -0.80, -0.60, -0.18, 0.013 +19571009, 0.18, 0.25, -0.08, 0.013 +19571010, -2.51, -0.36, 0.47, 0.013 +19571011, -0.12, -0.27, -0.56, 0.013 +19571014, 0.71, 0.24, -1.12, 0.013 +19571015, 1.05, -0.07, 0.01, 0.013 +19571016, -0.77, 0.14, 0.10, 0.013 +19571017, -1.80, -0.48, 0.30, 0.013 +19571018, -0.87, -0.14, 0.07, 0.013 +19571021, -3.04, -0.53, 0.00, 0.013 +19571022, -0.56, -0.63, -0.67, 0.013 +19571023, 4.42, -0.27, -1.06, 0.013 +19571024, 0.10, 0.78, -0.01, 0.013 +19571025, -0.34, -0.07, -0.09, 0.013 +19571028, -0.43, -0.36, 0.32, 0.013 +19571029, 0.63, -0.15, -0.23, 0.013 +19571030, 0.86, 0.04, -0.01, 0.013 +19571031, 0.12, 0.30, -0.29, 0.013 +19571101, -1.42, 0.64, 0.07, 0.015 +19571104, -0.07, -0.10, -0.29, 0.015 +19571106, 0.20, 0.67, -0.66, 0.015 +19571107, 0.56, 0.13, -0.26, 0.015 +19571108, -1.01, 0.37, 0.00, 0.015 +19571111, -0.12, 0.16, 0.00, 0.015 +19571112, -1.18, 0.45, 0.40, 0.015 +19571113, -0.17, -0.13, -0.02, 0.015 +19571114, -0.62, -0.14, -0.12, 0.015 +19571115, 2.65, -0.49, -0.43, 0.015 +19571118, -0.80, 0.13, -0.24, 0.015 +19571119, -0.62, 0.04, -0.90, 0.015 +19571120, 0.41, -0.07, 0.22, 0.015 +19571121, 1.37, -0.68, 0.15, 0.015 +19571122, 1.01, 0.07, 0.01, 0.015 +19571125, 0.80, -0.47, -0.27, 0.015 +19571126, -2.59, 0.37, 0.59, 0.015 +19571127, 2.85, -0.61, -1.25, 0.015 +19571129, 1.20, -0.03, 0.10, 0.015 +19571202, -0.81, 0.47, -0.13, 0.011 +19571203, 0.05, -0.09, -0.33, 0.011 +19571204, 0.43, -0.13, -0.49, 0.011 +19571205, 0.05, 0.00, -0.17, 0.011 +19571206, -0.60, 0.38, 0.06, 0.011 +19571209, -0.75, 0.20, -0.36, 0.011 +19571210, -0.84, 0.06, 0.04, 0.011 +19571211, -0.16, -0.33, -0.28, 0.011 +19571212, 0.14, -0.54, 1.21, 0.011 +19571213, 0.45, -0.17, 0.03, 0.011 +19571216, -1.46, 0.32, -0.11, 0.011 +19571217, -1.71, 0.07, 0.41, 0.011 +19571218, -0.10, -0.52, 0.22, 0.011 +19571219, 1.01, -0.40, -0.41, 0.011 +19571220, -0.83, 0.39, -0.12, 0.011 +19571223, -0.07, -0.26, -0.73, 0.011 +19571224, 0.11, 0.19, 0.03, 0.011 +19571226, 1.03, -0.37, -0.18, 0.011 +19571227, -0.34, 0.08, -0.26, 0.011 +19571230, -0.55, -0.35, -0.33, 0.011 +19571231, 1.02, 0.01, 0.08, 0.011 +19580102, 0.97, 0.62, 1.19, 0.013 +19580103, 1.35, 0.39, 0.99, 0.013 +19580106, -0.43, 0.66, 0.29, 0.013 +19580107, 0.80, 0.19, -0.21, 0.013 +19580108, 0.00, 0.18, 0.24, 0.013 +19580109, -0.61, 0.73, -0.16, 0.013 +19580110, -0.89, 0.43, 0.05, 0.013 +19580113, 0.29, -0.03, -0.13, 0.013 +19580114, 0.45, 0.00, 0.12, 0.013 +19580115, 0.83, -0.26, -0.17, 0.013 +19580116, 0.20, 0.42, 0.51, 0.013 +19580117, 0.11, -0.11, 0.63, 0.013 +19580120, 0.55, 0.20, -0.37, 0.013 +19580121, -0.06, 0.62, -0.18, 0.013 +19580122, -0.22, 0.13, 0.13, 0.013 +19580123, 0.40, 0.11, 0.11, 0.013 +19580124, 0.87, -0.13, 0.31, 0.013 +19580127, -0.22, -0.09, 0.55, 0.013 +19580128, 0.03, -0.01, -0.27, 0.013 +19580129, 0.57, -0.32, 0.29, 0.013 +19580130, -0.44, 0.37, -0.01, 0.013 +19580131, 0.02, -0.06, 0.07, 0.013 +19580203, 0.77, 0.01, -0.09, 0.006 +19580204, 1.04, -0.24, -0.07, 0.006 +19580205, -0.48, 0.20, 0.14, 0.006 +19580206, -0.22, -0.03, 0.09, 0.006 +19580207, -0.76, 0.19, -0.25, 0.006 +19580210, -0.57, 0.16, 0.10, 0.006 +19580211, -0.81, 0.36, 0.02, 0.006 +19580212, -0.41, -0.17, 0.32, 0.006 +19580213, 0.03, 0.20, 0.10, 0.006 +19580214, 0.93, -0.49, 0.18, 0.006 +19580217, -0.53, 0.53, 0.15, 0.006 +19580218, 0.17, -0.19, 0.11, 0.006 +19580219, 0.02, 0.13, -0.25, 0.006 +19580220, -0.57, 0.31, 0.14, 0.006 +19580221, -0.09, -0.06, -0.18, 0.006 +19580224, -0.54, 0.10, -0.12, 0.006 +19580225, -0.10, -0.34, 0.06, 0.006 +19580226, 0.78, -0.09, -0.02, 0.006 +19580227, -0.52, 0.30, -0.25, 0.006 +19580228, 0.36, -0.20, 0.11, 0.006 +19580303, 0.68, -0.25, -0.46, 0.004 +19580304, 0.42, 0.17, -0.37, 0.004 +19580305, 0.44, -0.13, 0.14, 0.004 +19580306, 1.16, -0.50, 0.07, 0.004 +19580307, 0.18, 0.27, -0.34, 0.004 +19580310, 0.20, -0.21, 0.12, 0.004 +19580311, 0.81, -0.10, -0.13, 0.004 +19580312, -0.16, 0.13, 0.01, 0.004 +19580313, 0.08, 0.34, 0.43, 0.004 +19580314, -0.14, 0.07, -0.08, 0.004 +19580317, -0.81, 0.34, 0.22, 0.004 +19580318, -0.20, -0.09, -0.31, 0.004 +19580319, 0.49, 0.19, 0.01, 0.004 +19580320, -0.01, 0.30, -0.06, 0.004 +19580321, 0.73, -0.13, 0.08, 0.004 +19580324, 0.26, -0.25, 0.18, 0.004 +19580325, -0.21, 0.05, -0.16, 0.004 +19580326, -0.25, 0.19, 0.12, 0.004 +19580327, -0.28, 0.10, -0.03, 0.004 +19580328, 0.14, 0.12, -0.30, 0.004 +19580331, -0.30, 0.00, 0.00, 0.004 +19580401, -0.39, -0.25, 0.01, 0.004 +19580402, -0.77, 0.15, 0.28, 0.004 +19580403, -0.27, 0.14, 0.15, 0.004 +19580407, -0.39, -0.05, 0.18, 0.004 +19580408, 0.75, 0.03, -0.06, 0.004 +19580409, 0.06, 0.22, 0.23, 0.004 +19580410, 0.13, 0.11, 0.30, 0.004 +19580411, 0.17, -0.10, 0.45, 0.004 +19580414, 0.58, -0.15, -0.10, 0.004 +19580415, 0.96, -0.37, 0.01, 0.004 +19580416, -0.73, 0.30, 0.11, 0.004 +19580417, 0.33, -0.30, 0.95, 0.004 +19580418, 1.00, -0.28, -0.66, 0.004 +19580421, 0.47, -0.30, 0.38, 0.004 +19580422, -0.35, 0.33, -0.07, 0.004 +19580423, 0.13, 0.26, -0.33, 0.004 +19580424, 0.77, -0.06, -0.07, 0.004 +19580425, 0.49, -0.10, -0.38, 0.004 +19580428, -0.37, 0.26, -0.01, 0.004 +19580429, -0.44, -0.06, 0.12, 0.004 +19580430, 0.95, -0.38, -0.09, 0.004 +19580501, 0.15, 0.07, -0.21, 0.005 +19580502, 0.41, 0.07, -0.07, 0.005 +19580505, 0.24, -0.01, 0.29, 0.005 +19580506, 0.60, -0.23, 0.16, 0.005 +19580507, -0.12, 0.11, -0.10, 0.005 +19580508, 0.18, 0.01, 0.06, 0.005 +19580509, 0.09, 0.13, 0.24, 0.005 +19580512, -0.40, 0.45, -0.16, 0.005 +19580513, -0.21, 0.63, -0.34, 0.005 +19580514, -1.11, 0.19, 0.10, 0.005 +19580515, 0.54, -0.19, 0.36, 0.005 +19580516, 0.06, -0.01, 0.00, 0.005 +19580519, -0.25, 0.19, -0.02, 0.005 +19580520, 0.84, 0.02, -0.28, 0.005 +19580521, -0.07, 0.33, 0.06, 0.005 +19580522, 0.52, 0.21, -0.10, 0.005 +19580523, 0.27, 0.26, -0.20, 0.005 +19580526, 0.00, 0.01, 0.30, 0.005 +19580527, -0.12, 0.02, -0.16, 0.005 +19580528, 0.12, -0.03, 0.01, 0.005 +19580529, 0.57, -0.05, -0.24, 0.005 +19580602, 0.47, -0.05, -0.34, 0.001 +19580603, 0.34, -0.20, 0.21, 0.001 +19580604, 0.07, 0.00, -0.09, 0.001 +19580605, 0.17, -0.27, 0.36, 0.001 +19580606, 0.22, 0.17, -0.03, 0.001 +19580609, -0.09, -0.11, -0.33, 0.001 +19580610, -0.19, -0.03, 0.00, 0.001 +19580611, 0.07, -0.14, 0.37, 0.001 +19580612, 0.56, 0.02, -0.33, 0.001 +19580613, 0.60, 0.00, 0.25, 0.001 +19580616, 0.39, -0.06, 0.02, 0.001 +19580617, 0.30, -0.09, 0.09, 0.001 +19580618, -0.36, 0.10, 0.07, 0.001 +19580619, -1.14, 0.39, -0.12, 0.001 +19580620, 0.54, -0.23, 0.16, 0.001 +19580623, -0.35, 0.02, 0.15, 0.001 +19580624, -0.33, 0.25, 0.03, 0.001 +19580625, 0.24, -0.02, 0.26, 0.001 +19580626, 0.50, 0.09, -0.21, 0.001 +19580627, 0.28, 0.14, 0.27, 0.001 +19580630, 0.64, -0.22, -0.30, 0.001 +19580701, 0.09, -0.18, -0.05, 0.003 +19580702, 0.10, 0.12, -0.04, 0.003 +19580703, 0.35, 0.24, -0.02, 0.003 +19580707, 0.30, -0.19, 0.15, 0.003 +19580708, -0.52, -0.04, 0.20, 0.003 +19580709, -0.33, 0.04, -0.24, 0.003 +19580710, 0.46, -0.16, -0.17, 0.003 +19580711, 0.64, -0.21, 0.62, 0.003 +19580714, -1.25, 0.27, -0.12, 0.003 +19580715, 0.13, -0.31, 0.34, 0.003 +19580716, 0.22, 0.19, 0.03, 0.003 +19580717, 0.74, -0.25, 0.52, 0.003 +19580718, 0.40, -0.49, 0.30, 0.003 +19580721, 1.16, -0.28, -0.15, 0.003 +19580722, 0.16, 0.19, -0.30, 0.003 +19580723, 0.01, 0.48, 0.10, 0.003 +19580724, 0.53, 0.16, 0.35, 0.003 +19580725, 0.68, 0.05, 0.49, 0.003 +19580728, 0.34, 0.25, 0.25, 0.003 +19580729, -0.27, 0.43, -0.09, 0.003 +19580730, 0.39, 0.18, 0.63, 0.003 +19580731, -0.01, -0.01, 0.18, 0.003 +19580801, 0.76, -0.07, 0.29, 0.002 +19580804, 0.92, -0.35, 0.62, 0.002 +19580805, -0.49, -0.09, -0.46, 0.002 +19580806, -0.43, -0.21, -0.23, 0.002 +19580807, 0.71, 0.09, 0.64, 0.002 +19580808, 0.53, 0.04, -0.20, 0.002 +19580811, 0.35, -0.21, 0.02, 0.002 +19580812, -0.80, 0.14, -0.30, 0.002 +19580813, 0.22, 0.02, 0.40, 0.002 +19580814, 0.23, 0.23, 0.03, 0.002 +19580815, -0.88, 0.45, -0.61, 0.002 +19580818, -0.54, 0.06, -0.12, 0.002 +19580819, 0.18, -0.03, 0.37, 0.002 +19580820, 0.14, 0.14, 0.09, 0.002 +19580821, 0.60, 0.11, -0.18, 0.002 +19580822, 0.20, 0.21, 0.06, 0.002 +19580825, 0.08, 0.01, -0.02, 0.002 +19580826, 0.38, -0.08, 0.10, 0.002 +19580827, 0.04, 0.38, 0.03, 0.002 +19580828, -0.50, 0.16, -0.26, 0.002 +19580829, 0.23, 0.14, 0.02, 0.002 +19580902, 0.51, 0.34, -0.18, 0.009 +19580903, 0.39, -0.04, -0.19, 0.009 +19580904, -0.17, 0.15, -0.19, 0.009 +19580905, -0.11, 0.19, -0.11, 0.009 +19580908, 0.38, 0.20, -0.12, 0.009 +19580909, 0.53, -0.01, 0.06, 0.009 +19580910, -0.26, 0.03, 0.01, 0.009 +19580911, 0.65, -0.19, 0.09, 0.009 +19580912, -0.25, 0.10, 0.06, 0.009 +19580915, 0.85, -0.53, 0.60, 0.009 +19580916, 0.65, -0.54, 0.33, 0.009 +19580917, -0.08, -0.07, 0.16, 0.009 +19580918, -0.44, 0.19, 0.44, 0.009 +19580919, 0.66, 0.06, 0.91, 0.009 +19580922, -0.41, 0.41, -0.11, 0.009 +19580923, 0.65, -0.14, -0.05, 0.009 +19580924, 0.38, -0.25, 0.39, 0.009 +19580925, -0.39, -0.15, 0.30, 0.009 +19580926, 0.22, 0.39, -0.14, 0.009 +19580929, 0.42, 0.16, 0.47, 0.009 +19580930, 0.36, -0.17, 0.05, 0.009 +19581001, -0.21, -0.24, -0.28, 0.008 +19581002, 0.32, 0.09, 0.06, 0.008 +19581003, 0.41, -0.14, 0.40, 0.008 +19581006, 0.55, -0.19, 0.15, 0.008 +19581007, 0.51, -0.33, -0.36, 0.008 +19581008, 0.12, -0.14, -0.25, 0.008 +19581009, 0.04, 0.20, 0.29, 0.008 +19581010, 0.59, 0.10, -0.01, 0.008 +19581013, 0.36, 0.17, -0.37, 0.008 +19581014, -0.73, -0.03, -1.00, 0.008 +19581015, -1.18, 0.46, -0.74, 0.008 +19581016, 0.76, -0.30, 0.36, 0.008 +19581017, 0.92, 0.50, -0.19, 0.008 +19581020, -0.28, 0.52, -0.12, 0.008 +19581021, -0.04, -0.05, 0.02, 0.008 +19581022, -0.32, 0.22, 0.33, 0.008 +19581023, -0.17, 0.00, 0.74, 0.008 +19581024, -0.22, 0.01, 0.25, 0.008 +19581027, -0.76, -0.20, 0.05, 0.008 +19581028, 0.44, 0.02, 0.58, 0.008 +19581029, 1.11, 0.17, 0.12, 0.008 +19581030, 0.16, 0.15, -0.85, 0.008 +19581031, 0.16, 0.03, -0.25, 0.008 +19581103, 0.41, -0.56, -0.05, 0.006 +19581105, 1.04, -0.08, -0.29, 0.006 +19581106, 0.62, -0.20, -0.48, 0.006 +19581107, -0.14, -0.01, 0.13, 0.006 +19581110, 0.67, -0.28, 0.36, 0.006 +19581111, 0.78, -0.03, 0.08, 0.006 +19581112, 0.15, 0.28, -0.43, 0.006 +19581113, -0.37, 0.35, 0.01, 0.006 +19581114, 0.50, 0.31, -0.16, 0.006 +19581117, 0.26, 0.07, -0.12, 0.006 +19581118, -0.15, 0.17, -0.26, 0.006 +19581119, 0.17, 0.30, -0.20, 0.006 +19581120, 0.06, 0.32, -0.52, 0.006 +19581121, -0.91, 0.49, -0.05, 0.006 +19581124, -2.43, 0.07, -0.18, 0.006 +19581125, -0.61, 0.34, 0.24, 0.006 +19581126, 1.83, 0.25, 0.44, 0.006 +19581128, 1.15, 0.19, 0.28, 0.006 +19581201, 0.41, 0.08, -0.31, 0.011 +19581202, -0.39, 0.30, -0.61, 0.011 +19581203, 0.16, -0.02, -0.01, 0.011 +19581204, 0.07, 0.07, 0.29, 0.011 +19581205, -0.06, 0.12, -0.01, 0.011 +19581208, 0.21, -0.13, -0.02, 0.011 +19581209, 0.52, -0.27, -0.17, 0.011 +19581210, 1.15, -0.23, -0.19, 0.011 +19581211, -0.26, 0.10, 0.04, 0.011 +19581212, -0.15, 0.10, 0.11, 0.011 +19581215, 0.25, -0.30, -0.05, 0.011 +19581216, 0.32, -0.14, -0.09, 0.011 +19581217, 0.63, -0.68, 0.17, 0.011 +19581218, 0.34, -0.40, 0.04, 0.011 +19581219, -0.18, 0.03, -0.15, 0.011 +19581222, -0.64, -0.03, 0.00, 0.011 +19581223, -0.52, 0.18, 0.36, 0.011 +19581224, 1.37, -0.32, 0.36, 0.011 +19581229, 0.89, -0.21, -0.21, 0.011 +19581230, 0.42, -0.08, -0.02, 0.011 +19581231, 0.47, -0.19, 0.48, 0.011 +19590102, 0.40, -0.02, 0.70, 0.010 +19590105, 0.35, -0.27, 0.32, 0.010 +19590106, -0.09, 0.10, 0.06, 0.010 +19590107, -1.19, 0.27, -0.07, 0.010 +19590108, 0.96, -0.22, 0.75, 0.010 +19590109, 0.69, 0.12, 0.15, 0.010 +19590112, 0.09, 0.35, -0.10, 0.010 +19590113, -0.49, 0.40, 0.38, 0.010 +19590114, 0.28, 0.12, 0.40, 0.010 +19590115, 0.37, 0.01, 0.66, 0.010 +19590116, 0.01, 0.09, 0.23, 0.010 +19590119, -0.17, 0.56, -0.01, 0.010 +19590120, 0.12, 0.39, -0.30, 0.010 +19590121, 0.55, 0.09, -0.09, 0.010 +19590122, -0.20, -0.18, -0.21, 0.010 +19590123, 0.10, 0.13, 0.35, 0.010 +19590126, -0.47, 0.42, -0.57, 0.010 +19590127, 0.01, 0.03, -0.09, 0.010 +19590128, -1.10, -0.06, -0.19, 0.010 +19590129, 0.08, 0.40, 0.14, 0.010 +19590130, 0.43, 0.21, 0.42, 0.010 +19590202, -0.31, 0.18, -0.28, 0.010 +19590203, 0.14, -0.07, 0.41, 0.010 +19590204, -0.30, -0.11, 0.07, 0.010 +19590205, -0.38, -0.08, 0.15, 0.010 +19590206, -0.68, 0.10, 0.19, 0.010 +19590209, -1.36, 0.11, -0.30, 0.010 +19590210, 1.40, -0.03, 0.27, 0.010 +19590211, 0.07, 0.24, 0.36, 0.010 +19590212, -0.56, 0.41, 0.26, 0.010 +19590213, 0.79, 0.10, 0.02, 0.010 +19590216, 0.22, 0.25, 0.31, 0.010 +19590217, -0.30, 0.24, 0.26, 0.010 +19590218, 0.46, 0.16, 0.11, 0.010 +19590219, 0.91, -0.14, 0.11, 0.010 +19590220, 0.86, -0.35, -0.06, 0.010 +19590224, -0.03, 0.21, 0.13, 0.010 +19590225, -0.32, -0.03, -0.24, 0.010 +19590226, 0.25, 0.30, -0.54, 0.010 +19590227, 0.14, 0.00, -0.19, 0.010 +19590302, 0.52, -0.03, -0.47, 0.010 +19590303, 0.88, -0.51, 0.15, 0.010 +19590304, 0.13, -0.10, 0.21, 0.010 +19590305, 0.20, 0.10, 0.14, 0.010 +19590306, -0.35, 0.37, -0.38, 0.010 +19590309, -0.04, 0.34, -0.03, 0.010 +19590310, 0.32, 0.09, 0.18, 0.010 +19590311, 0.19, 0.11, 0.23, 0.010 +19590312, 0.44, -0.11, 0.51, 0.010 +19590313, 0.10, 0.23, 0.27, 0.010 +19590316, -1.07, 0.13, -0.26, 0.010 +19590317, 0.83, 0.33, -0.06, 0.010 +19590318, -0.14, 0.44, -0.08, 0.010 +19590319, -0.13, 0.07, 0.11, 0.010 +19590320, 0.09, 0.11, -0.42, 0.010 +19590323, -0.92, -0.11, -0.31, 0.010 +19590324, 0.18, -0.09, 0.21, 0.010 +19590325, -0.14, 0.39, -0.31, 0.010 +19590326, -0.13, 0.01, 0.00, 0.010 +19590330, -0.61, 0.01, 0.01, 0.010 +19590331, -0.04, -0.36, -0.09, 0.010 +19590401, 0.36, -0.37, -0.05, 0.009 +19590402, 0.57, -0.21, 0.81, 0.009 +19590403, 0.77, -0.06, -0.22, 0.009 +19590406, 0.20, -0.13, -0.15, 0.009 +19590407, -0.13, 0.03, 0.18, 0.009 +19590408, -0.49, 0.08, 0.16, 0.009 +19590409, -0.03, 0.01, 0.21, 0.009 +19590410, 0.15, 0.04, 0.38, 0.009 +19590413, 0.33, -0.13, -0.11, 0.009 +19590414, 0.54, -0.24, 0.11, 0.009 +19590415, 0.40, 0.11, -0.01, 0.009 +19590416, 0.65, -0.54, -0.02, 0.009 +19590417, 0.80, -0.48, -0.42, 0.009 +19590420, 0.35, -0.44, -0.23, 0.009 +19590421, -0.11, 0.21, -0.61, 0.009 +19590422, -0.62, 0.44, -0.38, 0.009 +19590423, -0.24, 0.29, -0.10, 0.009 +19590424, 0.55, 0.50, -0.58, 0.009 +19590427, 0.36, -0.14, -0.16, 0.009 +19590428, -0.33, 0.00, -0.21, 0.009 +19590429, -0.30, 0.42, 0.07, 0.009 +19590430, -0.19, 0.00, 0.15, 0.009 +19590501, 0.13, 0.30, 0.19, 0.010 +19590504, 0.03, -0.01, 0.00, 0.010 +19590505, 0.18, -0.05, -0.43, 0.010 +19590506, -0.15, 0.31, -0.61, 0.010 +19590507, -1.26, -0.25, -0.30, 0.010 +19590508, 0.80, 0.29, 0.53, 0.010 +19590511, 0.42, -0.35, 0.26, 0.010 +19590512, 0.11, -0.31, 0.31, 0.010 +19590513, 0.52, -0.36, 0.46, 0.010 +19590514, 0.66, -0.36, 0.40, 0.010 +19590515, -0.36, 0.32, -0.13, 0.010 +19590518, -0.07, -0.44, 0.32, 0.010 +19590519, 0.23, -0.19, -0.12, 0.010 +19590520, -0.33, 0.14, -0.10, 0.010 +19590521, 0.07, -0.19, 0.68, 0.010 +19590522, 0.35, -0.18, 0.39, 0.010 +19590525, -0.45, 0.03, -0.20, 0.010 +19590526, -0.08, -0.27, 0.05, 0.010 +19590527, 0.21, 0.01, 0.10, 0.010 +19590528, 0.30, -0.09, -0.16, 0.010 +19590529, 0.44, -0.47, 0.25, 0.010 +19590601, -0.12, 0.10, -0.44, 0.011 +19590602, -0.66, -0.13, 0.16, 0.011 +19590603, 0.00, 0.37, 0.04, 0.011 +19590604, -1.09, 0.20, -0.14, 0.011 +19590605, -0.13, -0.09, 0.29, 0.011 +19590608, -1.39, -0.15, 0.11, 0.011 +19590609, -0.64, -0.06, 0.08, 0.011 +19590610, 1.47, 0.21, 0.59, 0.011 +19590611, 0.17, 0.11, 0.30, 0.011 +19590612, 0.02, -0.06, 0.35, 0.011 +19590615, -0.49, 0.00, 0.46, 0.011 +19590616, -0.67, 0.25, -0.17, 0.011 +19590617, 0.93, -0.29, 0.12, 0.011 +19590618, -0.05, 0.47, 0.31, 0.011 +19590619, 0.18, 0.06, -0.49, 0.011 +19590622, -0.02, -0.14, 0.32, 0.011 +19590623, -0.07, -0.03, 0.07, 0.011 +19590624, 0.46, -0.27, 0.50, 0.011 +19590625, 0.54, -0.03, -0.60, 0.011 +19590626, 0.40, 0.13, -0.63, 0.011 +19590629, 0.68, 0.07, -0.08, 0.011 +19590630, 0.23, -0.02, 0.20, 0.011 +19590701, 0.79, -0.15, 0.19, 0.011 +19590702, 0.48, -0.15, 0.25, 0.011 +19590706, 0.55, -0.29, 0.04, 0.011 +19590707, 0.49, -0.63, -0.06, 0.011 +19590708, 0.12, 0.07, 0.26, 0.011 +19590709, -0.23, 0.07, 0.29, 0.011 +19590710, 0.04, 0.11, 0.45, 0.011 +19590713, -0.90, 0.52, -0.25, 0.011 +19590714, 0.29, 0.19, -0.16, 0.011 +19590715, 0.12, 0.29, -0.18, 0.011 +19590716, -0.37, 0.11, -0.21, 0.011 +19590717, -0.29, 0.40, -0.35, 0.011 +19590720, -0.49, 0.17, -0.05, 0.011 +19590721, 0.83, -0.12, -0.01, 0.011 +19590722, 0.35, 0.23, 0.07, 0.011 +19590723, 0.11, -0.09, 0.11, 0.011 +19590724, 0.01, 0.24, -0.15, 0.011 +19590727, 0.51, -0.32, -0.04, 0.011 +19590728, 0.51, -0.43, -0.06, 0.011 +19590729, 0.43, -0.50, 0.07, 0.011 +19590730, -0.24, 0.01, 0.02, 0.011 +19590731, 0.02, -0.08, 0.09, 0.011 +19590803, 0.29, -0.05, 0.13, 0.009 +19590804, -0.20, 0.00, -0.14, 0.009 +19590805, -0.42, -0.19, 0.17, 0.009 +19590806, -0.15, -0.32, 0.49, 0.009 +19590807, -0.62, 0.18, 0.25, 0.009 +19590810, -1.90, -0.37, -0.22, 0.009 +19590811, 1.20, 0.02, -0.28, 0.009 +19590812, -0.17, 0.42, -0.07, 0.009 +19590813, -0.21, 0.10, 0.16, 0.009 +19590814, 0.24, 0.03, -0.01, 0.009 +19590817, -0.21, 0.14, -0.02, 0.009 +19590818, -0.90, -0.11, 0.03, 0.009 +19590819, -0.58, -0.18, -0.25, 0.009 +19590820, 1.42, -0.20, 0.11, 0.009 +19590821, -0.07, 0.23, -0.17, 0.009 +19590824, -0.41, 0.15, -0.13, 0.009 +19590825, 0.24, 0.02, -0.14, 0.009 +19590826, 0.15, -0.04, 0.37, 0.009 +19590827, 0.93, -0.59, -0.21, 0.009 +19590828, -0.19, 0.22, 0.30, 0.009 +19590831, 0.20, -0.31, 0.17, 0.009 +19590901, -1.20, 0.13, 0.07, 0.015 +19590902, 0.04, -0.24, 0.21, 0.015 +19590903, -1.16, -0.01, -0.15, 0.015 +19590904, 0.56, -0.24, -0.35, 0.015 +19590908, -1.40, -0.18, 0.06, 0.015 +19590909, -0.79, -0.19, 0.02, 0.015 +19590910, -0.57, 0.33, -0.14, 0.015 +19590911, 0.75, 0.20, 0.38, 0.015 +19590914, -0.69, 0.22, -0.65, 0.015 +19590915, -0.64, -0.27, 0.33, 0.015 +19590916, 0.05, 0.15, -0.12, 0.015 +19590917, -0.49, -0.03, -0.19, 0.015 +19590918, -0.70, -0.14, -0.11, 0.015 +19590921, -1.52, -0.38, 0.38, 0.015 +19590922, -0.27, -0.02, 0.11, 0.015 +19590923, 1.37, 0.21, 0.01, 0.015 +19590924, 1.64, 0.17, 0.20, 0.015 +19590925, -0.03, 0.09, -0.44, 0.015 +19590928, 0.66, -0.02, 0.05, 0.015 +19590929, 0.57, -0.35, 0.42, 0.015 +19590930, -1.02, 0.44, 0.49, 0.015 +19591001, 0.14, 0.20, 0.32, 0.014 +19591002, 0.41, 0.09, -0.64, 0.014 +19591005, -0.13, 0.06, -0.39, 0.014 +19591006, -0.06, 0.13, 0.05, 0.014 +19591007, -0.19, 0.34, 0.01, 0.014 +19591008, -0.18, 0.44, -0.10, 0.014 +19591009, 0.35, -0.06, -0.08, 0.014 +19591012, 0.55, 0.01, -0.17, 0.014 +19591013, -0.30, -0.01, -0.13, 0.014 +19591014, -0.74, -0.06, 0.41, 0.014 +19591015, 0.27, -0.19, 0.23, 0.014 +19591016, 0.81, 0.14, 0.04, 0.014 +19591019, -0.55, 0.29, -0.13, 0.014 +19591020, -0.61, 0.00, 0.06, 0.014 +19591021, -0.18, 0.22, -0.08, 0.014 +19591022, -0.93, 0.42, -0.25, 0.014 +19591023, 1.07, -0.33, -0.11, 0.014 +19591026, 0.63, -0.13, -0.15, 0.014 +19591027, 0.79, -0.79, -0.54, 0.014 +19591028, 0.05, -0.05, -0.37, 0.014 +19591029, -0.10, 0.27, -0.01, 0.014 +19591030, 0.18, 0.28, -0.11, 0.014 +19591102, -0.15, 0.25, -0.30, 0.013 +19591104, -0.15, 0.02, 0.03, 0.013 +19591105, 0.10, -0.05, -0.35, 0.013 +19591106, 0.54, -0.23, 0.48, 0.013 +19591109, -0.15, 0.05, -0.04, 0.013 +19591110, 0.03, 0.45, -0.25, 0.013 +19591111, 0.06, 0.37, -0.25, 0.013 +19591112, -0.50, 0.30, -0.23, 0.013 +19591113, -0.55, 0.42, -0.16, 0.013 +19591116, -1.03, 0.54, -0.47, 0.013 +19591117, 0.25, -0.21, -0.48, 0.013 +19591118, 1.03, -0.50, 0.29, 0.013 +19591119, -0.09, -0.03, 0.03, 0.013 +19591120, 0.07, 0.23, -0.18, 0.013 +19591123, 0.17, 0.21, -1.01, 0.013 +19591124, 0.44, -0.07, -0.42, 0.013 +19591125, 0.16, -0.18, -0.13, 0.013 +19591127, 0.47, -0.18, 0.28, 0.013 +19591130, 0.93, -0.17, -0.05, 0.013 +19591201, 0.68, -0.26, -0.34, 0.015 +19591202, -0.21, 0.03, 0.05, 0.015 +19591203, 0.27, 0.17, 0.18, 0.015 +19591204, 0.22, 0.34, -0.10, 0.015 +19591207, 0.28, 0.07, 0.08, 0.015 +19591208, 0.54, -0.32, 0.18, 0.015 +19591209, -0.64, -0.05, 0.47, 0.015 +19591210, 0.09, -0.18, -0.02, 0.015 +19591211, -0.18, 0.47, -0.15, 0.015 +19591214, 0.25, -0.32, 0.34, 0.015 +19591215, -0.29, -0.15, 0.22, 0.015 +19591216, 0.13, 0.01, -0.05, 0.015 +19591217, -0.14, 0.34, -0.01, 0.015 +19591218, 0.45, -0.19, -0.07, 0.015 +19591221, 0.09, 0.07, -0.16, 0.015 +19591222, -0.17, 0.36, 0.03, 0.015 +19591223, -0.27, 0.23, -0.37, 0.015 +19591224, 0.09, 0.02, 0.17, 0.015 +19591228, -0.13, -0.35, -0.29, 0.015 +19591229, 0.40, -0.42, -0.19, 0.015 +19591230, 0.79, -0.36, 0.05, 0.015 +19591231, 0.19, -0.07, -0.05, 0.015 +19600104, -0.03, 0.60, 0.70, 0.017 +19600105, 0.78, -0.40, 0.54, 0.017 +19600106, -0.47, 0.13, 0.36, 0.017 +19600107, -0.65, 0.37, 0.08, 0.017 +19600108, -0.33, 0.18, 0.10, 0.017 +19600111, -1.15, 0.48, 0.32, 0.017 +19600112, -0.58, 0.01, 0.45, 0.017 +19600113, -0.53, 0.38, 0.04, 0.017 +19600114, 0.56, -0.20, 0.13, 0.017 +19600115, 0.01, 0.38, 0.15, 0.017 +19600118, -0.84, 0.22, -0.23, 0.017 +19600119, -1.00, 0.01, 0.25, 0.017 +19600120, -0.30, 0.18, 0.07, 0.017 +19600121, 0.22, 0.03, 0.22, 0.017 +19600122, 0.28, 0.04, -0.25, 0.017 +19600125, -1.05, -0.14, -0.10, 0.017 +19600126, 0.15, -0.18, 0.16, 0.017 +19600127, -0.28, -0.03, 0.13, 0.017 +19600128, -1.00, 0.42, -0.18, 0.017 +19600129, -0.97, -0.28, -0.07, 0.017 +19600201, 0.50, -0.50, -0.22, 0.014 +19600202, 1.54, -0.17, -0.43, 0.014 +19600203, -0.83, 0.31, -0.02, 0.014 +19600204, -0.08, -0.08, 0.19, 0.014 +19600205, -0.49, -0.30, -0.02, 0.014 +19600208, -1.01, 0.07, -0.05, 0.014 +19600209, 0.89, -0.10, -0.04, 0.014 +19600210, -0.57, 0.36, 0.09, 0.014 +19600211, -0.51, 0.25, 0.40, 0.014 +19600212, 0.45, -0.37, 0.17, 0.014 +19600215, -0.50, 0.24, 0.10, 0.014 +19600216, -0.88, -0.24, -0.23, 0.014 +19600217, 0.63, 0.04, -0.21, 0.014 +19600218, 1.37, 0.08, -0.49, 0.014 +19600219, 0.72, -0.09, 0.14, 0.014 +19600223, -0.50, 0.43, -0.21, 0.014 +19600224, -0.29, 0.27, -0.19, 0.014 +19600225, 0.45, 0.03, 0.09, 0.014 +19600226, 0.42, 0.20, -0.54, 0.014 +19600229, -0.08, 0.08, -0.51, 0.014 +19600301, -0.15, 0.12, -0.21, 0.015 +19600302, -0.71, -0.05, -0.14, 0.015 +19600303, -1.54, -0.06, -0.32, 0.015 +19600304, -0.39, -0.48, -0.59, 0.015 +19600307, -1.10, 0.17, -0.14, 0.015 +19600308, -0.94, -0.26, -0.15, 0.015 +19600309, 1.10, -0.16, 0.34, 0.015 +19600310, -0.34, 0.52, 0.31, 0.015 +19600311, 0.73, 0.10, -0.05, 0.015 +19600314, 0.18, 0.04, -0.12, 0.015 +19600315, 0.78, -0.30, 0.06, 0.015 +19600316, 0.52, 0.11, 0.04, 0.015 +19600317, -0.18, 0.21, -0.28, 0.015 +19600318, 0.06, 0.09, -0.25, 0.015 +19600321, 0.09, -0.30, -0.22, 0.015 +19600322, 0.36, -0.44, -0.04, 0.015 +19600323, 0.76, -0.32, -0.26, 0.015 +19600324, 0.41, -0.12, 0.42, 0.015 +19600325, 0.00, 0.12, -0.29, 0.015 +19600328, -0.24, -0.01, 0.00, 0.015 +19600329, -0.20, 0.25, -0.40, 0.015 +19600330, -0.16, 0.31, -0.41, 0.015 +19600331, -0.63, -0.02, -0.22, 0.015 +19600401, 0.20, -0.10, -0.17, 0.010 +19600404, 0.18, -0.13, -0.33, 0.010 +19600405, 0.54, -0.39, -0.20, 0.010 +19600406, 1.01, -0.41, -0.07, 0.010 +19600407, 0.07, 0.19, -0.05, 0.010 +19600408, -0.21, 0.09, 0.26, 0.010 +19600411, -0.39, -0.04, 0.10, 0.010 +19600412, 0.22, -0.15, -0.10, 0.010 +19600413, -0.03, 0.22, -0.44, 0.010 +19600414, 0.26, 0.09, -0.25, 0.010 +19600418, 0.23, -0.17, -0.30, 0.010 +19600419, -0.74, 0.06, 0.04, 0.010 +19600420, -1.17, 0.49, 0.15, 0.010 +19600421, 0.34, -0.03, -0.22, 0.010 +19600422, -0.27, 0.34, -0.10, 0.010 +19600425, -1.02, 0.17, -0.09, 0.010 +19600426, 0.36, -0.03, -0.44, 0.010 +19600427, -0.03, -0.07, -0.03, 0.010 +19600428, -0.86, -0.08, 0.03, 0.010 +19600429, -0.35, 0.23, -0.09, 0.010 +19600502, -0.51, -0.18, -0.40, 0.013 +19600503, 1.36, -0.53, -0.14, 0.013 +19600504, 0.41, -0.07, -0.06, 0.013 +19600505, -0.33, 0.15, -0.24, 0.013 +19600506, -0.12, 0.37, -0.15, 0.013 +19600509, 0.11, 0.17, -0.57, 0.013 +19600510, -0.58, 0.23, -0.48, 0.013 +19600511, 0.23, -0.33, 0.03, 0.013 +19600512, 0.54, 0.39, -0.01, 0.013 +19600513, 0.89, 0.15, 0.21, 0.013 +19600516, -0.08, 0.27, -0.38, 0.013 +19600517, 0.37, -0.17, 0.01, 0.013 +19600518, 0.02, -0.43, -0.11, 0.013 +19600519, 0.43, -0.06, 0.11, 0.013 +19600520, 0.20, -0.15, 0.69, 0.013 +19600523, -0.08, 0.02, 0.25, 0.013 +19600524, -0.06, 0.50, -0.46, 0.013 +19600525, -0.04, 0.55, -0.57, 0.013 +19600526, 0.08, 0.13, -0.61, 0.013 +19600527, 0.07, 0.09, 0.12, 0.013 +19600531, 0.16, 0.10, -0.91, 0.013 +19600601, 0.16, -0.19, -0.43, 0.011 +19600602, 0.36, -0.65, 0.47, 0.011 +19600603, 0.19, -0.25, 0.31, 0.011 +19600606, 1.12, -0.77, 0.63, 0.011 +19600607, 0.96, -0.29, -0.09, 0.011 +19600608, 0.75, 0.13, 0.14, 0.011 +19600609, 0.11, -0.09, -0.07, 0.011 +19600610, 0.06, -0.01, -0.08, 0.011 +19600613, 0.06, 0.03, 0.01, 0.011 +19600614, -0.01, 0.03, -0.56, 0.011 +19600615, -0.54, 0.48, -0.11, 0.011 +19600616, -0.10, 0.32, -0.32, 0.011 +19600617, -0.10, 0.20, -0.19, 0.011 +19600620, -0.38, 0.38, -0.14, 0.011 +19600621, -0.10, -0.33, 0.32, 0.011 +19600622, 0.21, -0.16, 0.72, 0.011 +19600623, 0.46, -0.21, 0.12, 0.011 +19600624, 0.15, -0.03, 0.02, 0.011 +19600627, -0.56, 0.52, -0.37, 0.011 +19600628, -0.70, 0.28, -0.38, 0.011 +19600629, 0.04, 0.10, -0.35, 0.011 +19600630, -0.06, 0.20, -0.06, 0.011 +19600701, 0.24, 0.27, -0.13, 0.007 +19600705, -0.11, -0.14, 0.03, 0.007 +19600706, -0.16, -0.37, 0.37, 0.007 +19600707, 0.53, 0.02, 0.01, 0.007 +19600708, 0.26, -0.12, 0.23, 0.007 +19600711, -0.89, 0.21, 0.11, 0.007 +19600712, -1.07, -0.07, 0.71, 0.007 +19600713, -0.26, 0.06, 0.44, 0.007 +19600714, 0.01, -0.06, -0.33, 0.007 +19600715, -0.05, 0.10, 0.27, 0.007 +19600718, -0.62, -0.25, 0.49, 0.007 +19600719, 0.02, -0.06, 0.12, 0.007 +19600720, -0.15, 0.43, -0.23, 0.007 +19600721, -0.87, 0.31, 0.09, 0.007 +19600722, -0.69, -0.23, 0.37, 0.007 +19600725, -1.11, -0.13, -0.18, 0.007 +19600726, 0.70, -0.16, -0.20, 0.007 +19600727, -0.66, -0.19, 0.16, 0.007 +19600728, 0.81, -0.07, 0.21, 0.007 +19600729, 1.74, -0.08, -0.43, 0.007 +19600801, -0.05, -0.04, -0.06, 0.007 +19600802, -0.82, 0.04, 0.18, 0.007 +19600803, -0.53, 0.29, -0.11, 0.007 +19600804, 0.31, -0.33, -0.04, 0.007 +19600805, 1.04, -0.11, 0.05, 0.007 +19600808, 0.19, 0.02, 0.16, 0.007 +19600809, 0.56, -0.42, 0.53, 0.007 +19600810, 0.42, 0.14, 0.10, 0.007 +19600811, 0.41, 0.29, -0.15, 0.007 +19600812, 0.68, 0.17, -0.08, 0.007 +19600815, -0.02, -0.06, 0.09, 0.007 +19600816, 0.24, 0.29, -0.23, 0.007 +19600817, 0.30, 0.14, -0.25, 0.007 +19600818, -0.01, 0.00, -0.08, 0.007 +19600819, 0.32, -0.28, 0.11, 0.007 +19600822, 0.28, -0.14, 0.02, 0.007 +19600823, 0.91, -0.40, 0.26, 0.007 +19600824, 0.50, -0.16, 0.03, 0.007 +19600825, -0.43, 0.26, 0.20, 0.007 +19600826, -0.29, 0.41, -0.10, 0.007 +19600829, -0.23, 0.06, -0.10, 0.007 +19600830, -1.02, 0.65, -0.54, 0.007 +19600831, 0.22, 0.04, -0.14, 0.007 +19600901, 0.22, 0.13, -0.23, 0.008 +19600902, -0.10, 0.09, 0.11, 0.008 +19600906, -0.90, -0.12, 0.10, 0.008 +19600907, -1.22, 0.07, 0.31, 0.008 +19600908, -0.04, 0.09, 0.17, 0.008 +19600909, 0.60, -0.13, 0.04, 0.008 +19600912, -0.65, -0.04, -0.07, 0.008 +19600913, 0.16, -0.28, 0.19, 0.008 +19600914, -0.75, 0.06, -0.18, 0.008 +19600915, -0.40, -0.21, 0.07, 0.008 +19600916, -0.18, -0.06, 0.39, 0.008 +19600919, -2.29, -0.22, 0.67, 0.008 +19600920, 0.28, -0.14, -0.23, 0.008 +19600921, 1.05, 0.02, -0.32, 0.008 +19600922, -0.38, 0.29, -0.02, 0.008 +19600923, -0.91, 0.10, -0.03, 0.008 +19600926, -1.48, -0.60, 0.73, 0.008 +19600927, -0.29, 0.04, -0.05, 0.008 +19600928, -0.87, -0.33, 0.21, 0.008 +19600929, 0.28, -0.14, 0.07, 0.008 +19600930, 1.78, 0.18, -0.27, 0.008 +19601003, -0.27, -0.17, 0.10, 0.010 +19601004, -0.75, -0.26, 0.25, 0.010 +19601005, 0.69, -0.59, 0.38, 0.010 +19601006, 0.59, 0.20, -0.10, 0.010 +19601007, 0.55, -0.26, -0.13, 0.010 +19601010, 0.13, -0.07, -0.19, 0.010 +19601011, 0.10, -0.28, 0.25, 0.010 +19601012, -0.13, -0.20, 0.45, 0.010 +19601013, 0.83, -0.41, 0.07, 0.010 +19601014, 0.53, -0.01, -0.03, 0.010 +19601017, -0.36, 0.13, 0.26, 0.010 +19601018, -0.52, 0.16, 0.04, 0.010 +19601019, -0.21, -0.09, 0.14, 0.010 +19601020, -0.80, -0.03, 0.29, 0.010 +19601021, -1.00, -0.30, 0.60, 0.010 +19601024, -1.29, -0.81, 0.47, 0.010 +19601025, -0.75, -0.24, 0.28, 0.010 +19601026, 1.43, -0.16, -0.53, 0.010 +19601027, 1.12, -0.29, -0.20, 0.010 +19601028, -0.46, 0.10, 0.12, 0.010 +19601031, -0.08, -0.50, 0.13, 0.010 +19601101, 0.99, -0.12, -0.57, 0.007 +19601102, 0.52, -0.22, 0.38, 0.007 +19601103, 0.42, -0.17, 0.45, 0.007 +19601104, 0.85, -0.17, -0.15, 0.007 +19601107, 0.40, -0.29, -0.14, 0.007 +19601109, 0.42, -0.40, -0.15, 0.007 +19601110, 1.42, 0.60, -0.75, 0.007 +19601111, -0.44, 0.78, -0.07, 0.007 +19601114, -0.39, 0.09, 0.03, 0.007 +19601115, 0.49, -0.25, -0.06, 0.007 +19601116, -0.17, 0.02, -0.23, 0.007 +19601117, -0.26, -0.06, 0.04, 0.007 +19601118, 0.52, -0.08, -0.35, 0.007 +19601121, 0.28, -0.24, -0.07, 0.007 +19601122, -0.34, 0.35, -0.54, 0.007 +19601123, 0.23, 0.16, -0.07, 0.007 +19601125, 0.66, 0.01, -0.48, 0.007 +19601128, -0.12, 0.31, -0.03, 0.007 +19601129, -0.33, -0.06, 0.15, 0.007 +19601130, -0.51, 0.06, 0.23, 0.007 +19601201, -0.39, 0.00, -0.03, 0.007 +19601202, 0.16, 0.50, -0.30, 0.007 +19601205, -0.19, -0.05, 0.04, 0.007 +19601206, 0.46, -0.28, -0.03, 0.007 +19601207, 0.94, -0.11, -0.17, 0.007 +19601208, 0.22, -0.04, 0.00, 0.007 +19601209, 0.89, -0.01, -0.16, 0.007 +19601212, 0.38, 0.03, -0.27, 0.007 +19601213, 0.13, -0.05, -0.30, 0.007 +19601214, -0.08, 0.22, -0.33, 0.007 +19601215, -0.20, 0.32, 0.22, 0.007 +19601216, 0.91, -0.62, -0.01, 0.007 +19601219, -0.13, 0.15, -0.43, 0.007 +19601220, -0.07, 0.10, -0.34, 0.007 +19601221, 0.72, -0.69, 0.04, 0.007 +19601222, -0.26, -0.14, 0.87, 0.007 +19601223, 0.06, 0.17, -0.06, 0.007 +19601227, 0.14, -0.41, 0.10, 0.007 +19601228, 0.40, -0.30, 0.12, 0.007 +19601229, 0.48, -0.27, 0.23, 0.007 +19601230, 0.06, -0.04, 0.04, 0.007 +19610103, -0.88, 0.44, 0.75, 0.009 +19610104, 1.31, -0.17, 0.42, 0.009 +19610105, 0.39, 0.50, 0.76, 0.009 +19610106, -0.11, 0.27, 0.12, 0.009 +19610109, 0.59, 0.32, 0.74, 0.009 +19610110, 0.25, 0.13, 0.08, 0.009 +19610111, 0.29, 0.03, 0.13, 0.009 +19610112, 0.29, 0.20, 0.26, 0.009 +19610113, 0.42, -0.19, -0.01, 0.009 +19610116, -0.04, 0.11, -0.06, 0.009 +19610117, -0.36, 0.22, 0.22, 0.009 +19610118, 0.65, 0.28, 0.31, 0.009 +19610119, 0.16, -0.15, 0.36, 0.009 +19610120, 0.36, 0.16, -0.11, 0.009 +19610123, 0.51, -0.05, 0.18, 0.009 +19610124, 0.23, -0.31, -0.38, 0.009 +19610125, 0.07, -0.26, 0.01, 0.009 +19610126, 0.11, -0.27, -0.28, 0.009 +19610127, 0.93, -0.19, 0.15, 0.009 +19610130, 1.17, -0.38, -0.39, 0.009 +19610131, -0.31, -0.08, 0.16, 0.009 +19610201, 0.31, 0.08, 0.13, 0.008 +19610202, 0.68, 0.28, -0.12, 0.008 +19610203, -0.16, 0.26, 0.10, 0.008 +19610206, -0.60, 0.39, 0.03, 0.008 +19610207, -0.03, 0.39, 0.04, 0.008 +19610208, 0.95, 0.20, 0.23, 0.008 +19610209, -0.22, 0.30, 0.24, 0.008 +19610210, -0.79, 0.25, -0.19, 0.008 +19610213, -0.54, 0.48, -0.08, 0.008 +19610214, 0.57, 0.38, -0.20, 0.008 +19610215, 0.75, -0.17, 0.67, 0.008 +19610216, 0.61, -0.19, 0.19, 0.008 +19610217, -0.25, 0.47, -0.08, 0.008 +19610220, 0.43, 0.07, -0.12, 0.008 +19610221, 0.10, 0.36, -0.35, 0.008 +19610223, 0.42, 0.07, -0.16, 0.008 +19610224, 0.36, 0.07, -0.22, 0.008 +19610227, 0.77, 0.14, -0.21, 0.008 +19610228, 0.19, -0.02, -0.53, 0.008 +19610301, -0.01, 0.02, -0.30, 0.009 +19610302, 0.65, 0.00, -0.09, 0.009 +19610303, 0.14, 0.16, -0.19, 0.009 +19610306, 0.16, 0.08, -0.28, 0.009 +19610307, -0.72, 0.40, 0.05, 0.009 +19610308, 0.06, 0.47, -0.73, 0.009 +19610309, 0.07, 0.38, 0.71, 0.009 +19610310, 0.07, 0.08, 0.00, 0.009 +19610313, 0.25, 0.02, -0.03, 0.009 +19610314, -0.40, 0.30, -0.15, 0.009 +19610315, 0.37, -0.06, 0.08, 0.009 +19610316, 0.99, -0.10, -0.04, 0.009 +19610317, 0.58, 0.04, -0.35, 0.009 +19610320, 0.42, 0.13, -0.03, 0.009 +19610321, -0.15, 0.19, 0.57, 0.009 +19610322, -0.10, 0.22, 0.52, 0.009 +19610323, -0.32, -0.30, -0.09, 0.009 +19610324, -0.13, -0.11, 0.06, 0.009 +19610327, -0.07, 0.51, 0.07, 0.009 +19610328, 0.06, 0.59, 0.10, 0.009 +19610329, 0.77, -0.11, -0.54, 0.009 +19610330, 0.23, 0.15, -0.16, 0.009 +19610403, 0.78, 0.16, -0.12, 0.009 +19610404, 0.02, -0.09, -0.30, 0.009 +19610405, -0.31, -0.41, 0.48, 0.009 +19610406, 0.27, -0.35, 0.27, 0.009 +19610407, 0.51, 0.05, 0.04, 0.009 +19610410, 0.82, -0.13, 0.00, 0.009 +19610411, 0.04, -0.27, -0.17, 0.009 +19610412, -0.46, 0.04, 0.11, 0.009 +19610413, 0.01, 0.10, -0.11, 0.009 +19610414, 0.22, 0.29, 0.08, 0.009 +19610417, 0.47, 0.21, 0.17, 0.009 +19610418, -0.74, 0.34, 0.02, 0.009 +19610419, -0.51, 0.02, 0.36, 0.009 +19610420, -0.02, 0.35, -0.05, 0.009 +19610421, -0.02, 0.20, 0.32, 0.009 +19610424, -2.21, -0.39, 0.12, 0.009 +19610425, 1.46, -0.11, -0.02, 0.009 +19610426, 0.43, 0.23, 0.37, 0.009 +19610427, -0.12, 0.18, 0.30, 0.009 +19610428, -0.30, -0.31, 0.18, 0.009 +19610501, -0.21, -0.04, 0.08, 0.008 +19610502, 0.76, -0.10, -0.11, 0.008 +19610503, 0.80, -0.02, 0.26, 0.008 +19610504, 0.39, 0.08, 0.24, 0.008 +19610505, 0.15, 0.29, -0.27, 0.008 +19610508, -0.06, 0.67, -0.12, 0.008 +19610509, 0.11, 0.21, -0.01, 0.008 +19610510, -0.03, 0.07, 0.05, 0.008 +19610511, 0.03, 0.39, -0.46, 0.008 +19610512, 0.12, 0.08, 0.14, 0.008 +19610515, 0.55, -0.04, 0.38, 0.008 +19610516, 0.44, -0.08, 0.35, 0.008 +19610517, 0.33, -0.39, 0.50, 0.008 +19610518, -0.63, -0.44, -0.15, 0.008 +19610519, 0.46, 0.06, -0.17, 0.008 +19610522, -0.65, 0.21, 0.28, 0.008 +19610523, -0.17, -0.01, 0.06, 0.008 +19610524, -0.52, 0.36, 0.04, 0.008 +19610525, -0.30, 0.52, 0.17, 0.008 +19610526, 0.68, 0.21, -0.58, 0.008 +19610531, 0.12, -0.14, -0.23, 0.008 +19610601, -0.02, -0.44, -0.28, 0.009 +19610602, 0.20, -0.17, -0.37, 0.009 +19610605, 0.51, -0.44, 0.00, 0.009 +19610606, -0.26, -0.23, 0.02, 0.009 +19610607, -0.42, -0.63, 0.47, 0.009 +19610608, 0.07, -0.09, -0.35, 0.009 +19610609, 0.01, 0.51, -0.08, 0.009 +19610612, -0.70, 0.10, -0.14, 0.009 +19610613, -0.54, -0.08, 0.12, 0.009 +19610614, 0.22, -0.04, -0.15, 0.009 +19610615, -0.44, -0.08, -0.11, 0.009 +19610616, -0.79, -0.14, -0.30, 0.009 +19610619, -0.93, -0.40, 0.07, 0.009 +19610620, 0.84, -0.25, 0.15, 0.009 +19610621, 0.04, -0.07, 0.22, 0.009 +19610622, -0.41, -0.06, 0.00, 0.009 +19610623, 0.34, -0.20, -0.04, 0.009 +19610626, -1.07, 0.25, 0.14, 0.009 +19610627, -0.01, -0.17, -0.30, 0.009 +19610628, 0.21, 0.02, 0.44, 0.009 +19610629, -0.12, 0.03, 0.18, 0.009 +19610630, 0.17, 0.02, 0.15, 0.009 +19610703, 0.84, -0.36, -0.08, 0.009 +19610705, 0.62, 0.32, -0.31, 0.009 +19610706, 0.29, 0.30, 0.08, 0.009 +19610707, -0.07, 0.02, -0.25, 0.009 +19610710, -0.07, -0.03, 0.03, 0.009 +19610711, -0.12, -0.26, 0.40, 0.009 +19610712, -0.60, -0.42, 0.33, 0.009 +19610713, -0.68, 0.03, -0.09, 0.009 +19610714, 0.62, -0.16, -0.03, 0.009 +19610717, -0.78, 0.15, -0.17, 0.009 +19610718, -0.60, -0.29, -0.04, 0.009 +19610719, 0.38, -0.24, -0.33, 0.009 +19610720, 0.04, -0.23, 0.11, 0.009 +19610721, 0.20, -0.07, 0.19, 0.009 +19610724, -0.06, -0.14, -0.01, 0.009 +19610725, 0.57, -0.02, 0.01, 0.009 +19610726, 0.87, -0.10, 0.50, 0.009 +19610727, 1.10, -0.18, 0.05, 0.009 +19610728, 0.15, -0.12, -0.41, 0.009 +19610731, 0.09, -0.08, -0.06, 0.009 +19610801, 0.87, -0.24, -0.28, 0.006 +19610802, -0.55, 0.01, 0.46, 0.006 +19610803, 0.53, -0.10, -0.17, 0.006 +19610804, 0.61, -0.31, 0.39, 0.006 +19610807, 0.11, -0.24, -0.10, 0.006 +19610808, 0.20, -0.21, 0.06, 0.006 +19610809, 0.00, -0.03, -0.07, 0.006 +19610810, 0.35, -0.11, -0.15, 0.006 +19610811, 0.20, 0.09, -0.46, 0.006 +19610814, -0.53, -0.01, 0.14, 0.006 +19610815, -0.20, -0.03, -0.13, 0.006 +19610816, 0.33, -0.08, 0.01, 0.006 +19610817, 0.52, -0.03, 0.04, 0.006 +19610818, 0.27, 0.01, 0.27, 0.006 +19610821, 0.16, -0.41, -0.05, 0.006 +19610822, 0.01, -0.03, 0.11, 0.006 +19610823, -0.61, -0.19, 0.40, 0.006 +19610824, -0.55, 0.15, -0.19, 0.006 +19610825, 0.13, 0.11, -0.03, 0.006 +19610828, 0.04, 0.15, -0.25, 0.006 +19610829, -0.08, -0.02, 0.03, 0.006 +19610830, 0.43, -0.01, -0.20, 0.006 +19610831, 0.33, -0.16, -0.13, 0.006 +19610901, 0.21, 0.17, -0.23, 0.008 +19610905, -0.34, 0.15, -0.12, 0.008 +19610906, 0.66, -0.44, -0.12, 0.008 +19610907, -0.22, -0.45, 0.25, 0.008 +19610908, -0.68, -0.26, 0.10, 0.008 +19610911, -0.83, 0.01, 0.22, 0.008 +19610912, 0.97, -0.06, -0.16, 0.008 +19610913, 0.02, 0.01, -0.23, 0.008 +19610914, -0.75, 0.25, -0.01, 0.008 +19610915, 0.10, 0.07, -0.12, 0.008 +19610918, -0.65, -0.23, -0.19, 0.008 +19610919, -0.80, 0.07, 0.06, 0.008 +19610920, 0.46, -0.28, 0.43, 0.008 +19610921, 0.04, -0.02, 0.09, 0.008 +19610922, -0.42, -0.14, 0.37, 0.008 +19610925, -1.42, -0.08, 0.33, 0.008 +19610926, 0.02, -0.19, -0.12, 0.008 +19610927, 1.02, -0.06, -0.66, 0.008 +19610928, 0.20, 0.09, -0.24, 0.008 +19610929, 0.28, 0.30, -0.28, 0.008 +19611002, 0.03, -0.05, -0.33, 0.008 +19611003, -0.08, -0.25, 0.17, 0.008 +19611004, 0.66, 0.13, 0.45, 0.008 +19611005, 0.85, -0.16, -0.21, 0.008 +19611006, 0.27, -0.04, 0.11, 0.008 +19611009, 0.01, -0.22, 0.07, 0.008 +19611010, 0.26, -0.11, -0.23, 0.008 +19611011, -0.01, -0.02, 0.53, 0.008 +19611012, -0.01, 0.18, -0.10, 0.008 +19611013, -0.14, 0.15, -0.04, 0.008 +19611016, -0.26, 0.13, -0.25, 0.008 +19611017, 0.10, 0.06, -0.04, 0.008 +19611018, 0.47, -0.22, 0.25, 0.008 +19611019, 0.21, -0.40, -0.01, 0.008 +19611020, 0.02, -0.10, -0.06, 0.008 +19611023, -0.61, -0.08, 0.06, 0.008 +19611024, -0.15, -0.24, -0.22, 0.008 +19611025, 0.48, -0.22, -0.22, 0.008 +19611026, 0.21, -0.09, -0.12, 0.008 +19611027, -0.14, 0.09, 0.09, 0.008 +19611030, 0.10, -0.02, 0.20, 0.008 +19611031, 0.30, -0.14, -0.02, 0.008 +19611101, 0.21, 0.07, -0.04, 0.008 +19611102, 0.50, -0.09, -0.18, 0.008 +19611103, 0.57, 0.07, -0.03, 0.008 +19611106, 0.79, -0.10, -0.36, 0.008 +19611108, 1.17, 0.07, -0.09, 0.008 +19611109, -0.02, 0.18, 0.07, 0.008 +19611110, 0.44, 0.24, -0.50, 0.008 +19611113, 0.33, 0.29, -0.60, 0.008 +19611114, 0.54, -0.08, -0.41, 0.008 +19611115, -0.03, -0.10, -0.10, 0.008 +19611116, -0.02, 0.04, -0.21, 0.008 +19611117, 0.02, 0.12, 0.13, 0.008 +19611120, 0.16, -0.12, 0.07, 0.008 +19611121, 0.08, 0.14, -0.04, 0.008 +19611122, -0.07, 0.20, 0.26, 0.008 +19611124, 0.25, 0.35, 0.05, 0.008 +19611127, -0.02, 0.09, 0.06, 0.008 +19611128, 0.00, 0.10, 0.07, 0.008 +19611129, -0.06, -0.27, 0.26, 0.008 +19611130, -0.48, -0.06, 0.47, 0.008 +19611201, 0.60, 0.06, 0.04, 0.009 +19611204, 0.22, -0.09, 0.38, 0.009 +19611205, -0.12, -0.33, -0.01, 0.009 +19611206, 0.12, -0.25, 0.17, 0.009 +19611207, -0.38, 0.14, 0.16, 0.009 +19611208, 0.46, -0.27, -0.08, 0.009 +19611211, 0.37, -0.29, 0.24, 0.009 +19611212, 0.30, -0.29, -0.21, 0.009 +19611213, -0.16, 0.10, -0.16, 0.009 +19611214, -0.72, -0.19, 0.43, 0.009 +19611215, -0.03, 0.08, -0.02, 0.009 +19611218, -0.38, -0.02, 0.39, 0.009 +19611219, -0.65, 0.26, -0.02, 0.009 +19611220, -0.19, 0.38, -0.08, 0.009 +19611221, -0.34, 0.20, 0.31, 0.009 +19611222, 0.04, -0.02, 0.16, 0.009 +19611226, 0.06, -0.29, 0.53, 0.009 +19611227, 0.79, -0.23, -0.40, 0.009 +19611228, 0.01, -0.10, -0.34, 0.009 +19611229, -0.16, 0.21, 0.20, 0.009 +19620102, -0.80, 0.88, 0.57, 0.011 +19620103, 0.24, 0.22, 0.97, 0.011 +19620104, -0.83, 0.01, 0.66, 0.011 +19620105, -1.34, 0.08, 0.32, 0.011 +19620108, -0.75, 0.22, 0.32, 0.011 +19620109, 0.02, -0.12, 0.35, 0.011 +19620110, -0.24, 0.01, -0.21, 0.011 +19620111, 0.61, -0.05, 0.08, 0.011 +19620112, 0.33, 0.18, 0.24, 0.011 +19620115, -0.24, 0.08, 0.07, 0.011 +19620116, -0.53, 0.18, 0.05, 0.011 +19620117, -1.01, 0.25, 0.39, 0.011 +19620118, 0.05, 0.14, -0.05, 0.011 +19620119, 0.56, 0.41, 0.24, 0.011 +19620122, -0.02, -0.09, -0.16, 0.011 +19620123, -0.69, 0.13, 0.09, 0.011 +19620124, 0.20, -0.39, 0.08, 0.011 +19620125, -0.13, 0.18, 0.29, 0.011 +19620126, -0.29, -0.03, 0.51, 0.011 +19620129, -0.33, -0.23, 0.36, 0.011 +19620130, 0.33, -0.10, 0.24, 0.011 +19620131, 0.94, -0.14, -0.26, 0.011 +19620201, 0.55, -0.54, 0.22, 0.011 +19620202, 0.77, -0.25, 0.01, 0.011 +19620205, 0.16, 0.02, 0.07, 0.011 +19620206, 0.22, 0.04, -0.23, 0.011 +19620207, 0.70, -0.23, 0.18, 0.011 +19620208, 0.18, 0.08, -0.15, 0.011 +19620209, -0.10, 0.05, -0.13, 0.011 +19620212, -0.04, -0.04, 0.30, 0.011 +19620213, 0.02, 0.20, 0.02, 0.011 +19620214, -0.05, -0.02, 0.13, 0.011 +19620215, 0.42, -0.32, 0.28, 0.011 +19620216, -0.23, 0.26, 0.12, 0.011 +19620219, -0.24, -0.18, 0.38, 0.011 +19620220, 0.33, -0.24, 0.11, 0.011 +19620221, -0.49, 0.15, -0.13, 0.011 +19620223, -0.21, -0.07, 0.03, 0.011 +19620226, -0.50, -0.10, 0.03, 0.011 +19620227, 0.14, -0.12, -0.08, 0.011 +19620228, 0.16, 0.16, -0.32, 0.011 +19620301, 0.32, 0.00, -0.05, 0.009 +19620302, -0.07, 0.30, 0.00, 0.009 +19620305, -0.22, 0.12, -0.21, 0.009 +19620306, -0.33, 0.35, -0.22, 0.009 +19620307, -0.12, 0.00, -0.21, 0.009 +19620308, 0.73, -0.08, -0.26, 0.009 +19620309, 0.29, 0.19, -0.10, 0.009 +19620312, -0.02, 0.23, -0.29, 0.009 +19620313, 0.28, -0.30, 0.18, 0.009 +19620314, 0.40, -0.27, -0.10, 0.009 +19620315, 0.17, -0.10, -0.12, 0.009 +19620316, -0.08, 0.15, -0.05, 0.009 +19620319, -0.19, 0.02, 0.14, 0.009 +19620320, -0.26, -0.08, 0.08, 0.009 +19620321, -0.21, 0.03, 0.08, 0.009 +19620322, -0.14, 0.40, -0.37, 0.009 +19620323, 0.08, -0.07, -0.21, 0.009 +19620326, -0.76, 0.23, -0.16, 0.009 +19620327, -0.27, -0.12, 0.31, 0.009 +19620328, 0.49, -0.11, 0.15, 0.009 +19620329, -0.09, 0.13, -0.21, 0.009 +19620330, -0.66, -0.35, -0.01, 0.009 +19620402, -0.31, -0.01, -0.13, 0.011 +19620403, -0.83, -0.11, -0.01, 0.011 +19620404, -0.54, -0.04, 0.07, 0.011 +19620405, 0.61, -0.12, -0.05, 0.011 +19620406, -0.09, 0.23, 0.05, 0.011 +19620409, -0.79, -0.35, -0.10, 0.011 +19620410, 0.32, -0.13, 0.03, 0.011 +19620411, -0.20, 0.22, 0.08, 0.011 +19620412, -1.07, -0.10, -0.01, 0.011 +19620413, 0.13, -0.19, 0.11, 0.011 +19620416, -0.38, -0.15, 0.13, 0.011 +19620417, 0.51, -0.39, 0.24, 0.011 +19620418, 0.54, 0.10, 0.23, 0.011 +19620419, 0.48, 0.11, -0.17, 0.011 +19620423, -0.13, 0.09, -0.52, 0.011 +19620424, -0.12, 0.13, -0.11, 0.011 +19620425, -1.14, 0.09, 0.06, 0.011 +19620426, -0.96, -0.18, -0.14, 0.011 +19620427, -1.09, 0.09, 0.38, 0.011 +19620430, -1.69, -0.17, 0.08, 0.011 +19620501, 0.81, -0.12, 0.22, 0.011 +19620502, 0.47, 0.29, 0.04, 0.011 +19620503, 0.82, -0.42, -0.20, 0.011 +19620504, -0.48, -0.06, -0.15, 0.011 +19620507, -0.31, -0.19, 0.30, 0.011 +19620508, -1.20, -0.15, 0.45, 0.011 +19620509, -1.32, 0.15, 0.15, 0.011 +19620510, -1.10, -0.28, 0.09, 0.011 +19620511, -1.47, -0.11, 0.37, 0.011 +19620514, 0.76, -0.01, 0.02, 0.011 +19620515, 1.76, 0.35, -0.27, 0.011 +19620516, -0.07, -0.32, 0.14, 0.011 +19620517, -0.63, -0.23, 0.32, 0.011 +19620518, -0.12, -0.19, 0.02, 0.011 +19620521, -0.39, 0.06, -0.06, 0.011 +19620522, -2.01, -0.07, 0.14, 0.011 +19620523, -2.00, -0.67, 0.70, 0.011 +19620524, -0.88, -0.41, 0.46, 0.011 +19620525, -1.89, -0.46, 0.17, 0.011 +19620528, -7.00, 0.75, 1.53, 0.011 +19620529, 4.95, -3.87, -1.53, 0.011 +19620531, 2.78, 2.37, -0.25, 0.011 +19620601, -0.33, 0.28, 0.16, 0.009 +19620604, -3.61, -0.44, 0.92, 0.009 +19620605, 0.48, -0.65, 0.17, 0.009 +19620606, 1.42, 0.45, -0.01, 0.009 +19620607, 0.01, 0.44, -0.23, 0.009 +19620608, 0.04, 0.06, -0.16, 0.009 +19620611, -1.09, -0.08, 0.62, 0.009 +19620612, -2.59, -0.32, 0.61, 0.009 +19620613, -1.58, -0.33, 0.27, 0.009 +19620614, -2.10, -0.38, 0.62, 0.009 +19620615, 2.99, -0.29, -0.55, 0.009 +19620618, -0.42, 0.48, 0.27, 0.009 +19620619, -0.26, -0.11, 0.21, 0.009 +19620620, -1.40, 0.37, 0.15, 0.009 +19620621, -2.24, 0.13, 0.58, 0.009 +19620622, -1.70, -0.19, -0.44, 0.009 +19620625, -0.34, -0.35, -0.75, 0.009 +19620626, -0.37, 0.65, 0.37, 0.009 +19620627, 0.54, -0.49, -0.27, 0.009 +19620628, 3.39, -0.22, -0.23, 0.009 +19620629, 0.61, 0.36, 0.27, 0.009 +19620702, 2.07, -0.59, -0.73, 0.013 +19620703, 1.14, 0.20, -0.42, 0.013 +19620705, 0.60, -0.13, 0.02, 0.013 +19620706, -1.08, -0.06, 0.66, 0.013 +19620709, 0.67, -0.08, -0.40, 0.013 +19620710, 1.25, 1.32, -0.06, 0.013 +19620711, 0.98, 0.20, -0.65, 0.013 +19620712, 0.53, 1.06, -0.29, 0.013 +19620713, -0.30, 0.35, -0.38, 0.013 +19620716, 0.01, 0.30, -0.72, 0.013 +19620717, -1.77, -0.16, 0.98, 0.013 +19620718, -1.03, -0.31, 0.35, 0.013 +19620719, 0.39, 0.06, -0.33, 0.013 +19620720, 0.61, -0.37, -0.01, 0.013 +19620723, -0.06, 0.20, -0.34, 0.013 +19620724, -0.84, 0.04, 0.45, 0.013 +19620725, 0.17, -0.42, -0.25, 0.013 +19620726, 0.45, 0.10, -0.21, 0.013 +19620727, 0.73, -0.27, -0.13, 0.013 +19620730, 1.01, -0.05, -0.52, 0.013 +19620731, 0.63, 0.04, -0.35, 0.013 +19620801, -0.74, 0.16, 0.49, 0.010 +19620802, 0.35, -0.03, -0.63, 0.010 +19620803, 0.21, -0.07, 0.26, 0.010 +19620806, -0.63, 0.11, 0.30, 0.010 +19620807, -0.61, -0.05, 0.20, 0.010 +19620808, 0.33, 0.03, -0.17, 0.010 +19620809, -0.12, 0.13, 0.09, 0.010 +19620810, 0.16, -0.13, 0.10, 0.010 +19620813, 0.21, 0.04, -0.25, 0.010 +19620814, 0.99, -0.30, -0.51, 0.010 +19620815, 0.71, 0.45, -0.09, 0.010 +19620816, 0.04, 0.52, -0.50, 0.010 +19620817, 0.61, -0.10, -0.32, 0.010 +19620820, 0.60, 0.30, -0.36, 0.010 +19620821, -0.36, -0.20, 0.37, 0.010 +19620822, 1.17, 0.01, -0.32, 0.010 +19620823, -0.12, -0.09, 0.08, 0.010 +19620824, -0.13, 0.30, -0.01, 0.010 +19620827, -0.05, 0.07, 0.03, 0.010 +19620828, -1.11, -0.26, 0.37, 0.010 +19620829, -0.18, -0.02, 0.07, 0.010 +19620830, -0.01, 0.14, -0.27, 0.010 +19620831, 0.81, 0.19, -0.15, 0.010 +19620904, -0.97, 0.05, 0.31, 0.011 +19620905, -0.71, -0.29, 0.48, 0.011 +19620906, 0.37, -0.02, -0.17, 0.011 +19620907, 0.01, -0.07, 0.12, 0.011 +19620910, 0.07, -0.36, -0.18, 0.011 +19620911, 0.25, -0.19, -0.19, 0.011 +19620912, 0.43, -0.03, -0.31, 0.011 +19620913, -0.25, -0.14, 0.17, 0.011 +19620914, 0.30, -0.19, 0.12, 0.011 +19620917, 0.26, 0.04, -0.76, 0.011 +19620918, -0.07, 0.04, -0.22, 0.011 +19620919, -0.19, -0.28, 0.05, 0.011 +19620920, -0.67, -0.06, 0.09, 0.011 +19620921, -1.44, -0.34, 0.54, 0.011 +19620924, -1.85, -0.16, 0.85, 0.011 +19620925, 0.54, -0.05, -0.40, 0.011 +19620926, -1.41, -0.25, 0.86, 0.011 +19620927, -0.65, -0.03, 0.39, 0.011 +19620928, 0.67, -0.24, -0.47, 0.011 +19621001, -1.28, -0.26, 0.44, 0.011 +19621002, 1.04, -0.20, -0.58, 0.011 +19621003, 0.14, -0.14, 0.43, 0.011 +19621004, 0.80, -0.45, -0.21, 0.011 +19621005, 0.61, -0.06, -0.18, 0.011 +19621008, 0.01, 0.15, 0.10, 0.011 +19621009, 0.30, -0.12, -0.30, 0.011 +19621010, -0.01, 0.12, -0.06, 0.011 +19621011, -0.30, -0.13, 0.08, 0.011 +19621012, -0.18, -0.18, 0.29, 0.011 +19621015, 0.46, -0.24, -0.35, 0.011 +19621016, -0.32, -0.13, 0.27, 0.011 +19621017, -0.46, -0.39, 0.29, 0.011 +19621018, -0.94, -0.19, 0.01, 0.011 +19621019, -1.35, -0.10, 0.45, 0.011 +19621022, -1.17, -0.55, 0.35, 0.011 +19621023, -2.68, -0.09, 1.01, 0.011 +19621024, 2.83, -1.44, -1.35, 0.011 +19621025, -0.77, 0.56, 1.06, 0.011 +19621026, -0.30, -0.27, 0.24, 0.011 +19621029, 2.19, 0.20, -0.56, 0.011 +19621030, 1.49, -0.09, -0.49, 0.011 +19621031, -0.01, -0.04, 0.27, 0.011 +19621101, 1.01, -0.24, -0.31, 0.010 +19621102, 1.07, 0.05, -0.27, 0.010 +19621105, 1.03, 0.16, -0.07, 0.010 +19621107, 0.69, 0.08, 0.25, 0.010 +19621108, -0.59, 0.19, 0.70, 0.010 +19621109, 0.98, 0.26, 0.22, 0.010 +19621112, 1.38, 0.72, 0.11, 0.010 +19621113, -0.19, -0.01, -0.13, 0.010 +19621114, 1.20, 0.22, -0.15, 0.010 +19621115, -0.27, 0.02, 0.10, 0.010 +19621116, 0.30, -0.11, 0.23, 0.010 +19621119, -0.47, -0.19, 0.26, 0.010 +19621120, 0.99, -0.38, 0.45, 0.010 +19621121, 0.69, 0.18, -0.14, 0.010 +19621123, 1.17, -0.08, 0.00, 0.010 +19621126, -0.28, 0.09, -0.12, 0.010 +19621127, 0.71, 0.53, -0.05, 0.010 +19621128, 0.74, 0.45, -0.38, 0.010 +19621129, 0.44, 0.14, -0.30, 0.010 +19621130, -0.22, 0.26, 0.49, 0.010 +19621203, -0.40, -0.01, 0.19, 0.012 +19621204, 1.08, -0.04, -0.19, 0.012 +19621205, 0.41, -0.09, -0.47, 0.012 +19621206, 0.08, -0.06, -0.36, 0.012 +19621207, 0.20, -0.53, -0.15, 0.012 +19621210, -1.30, -0.58, -0.04, 0.012 +19621211, 0.04, -0.33, 0.35, 0.012 +19621212, 0.46, 0.05, -0.03, 0.012 +19621213, -0.36, -0.17, 0.15, 0.012 +19621214, 0.20, -0.26, 0.02, 0.012 +19621217, -0.38, -0.13, -0.38, 0.012 +19621218, -0.48, -0.59, 0.43, 0.012 +19621219, 0.76, -0.46, -0.11, 0.012 +19621220, 0.31, -0.01, 0.08, 0.012 +19621221, -0.23, -0.22, 0.23, 0.012 +19621224, -0.06, -0.06, 0.12, 0.012 +19621226, 0.61, -0.10, 0.23, 0.012 +19621227, -0.16, -0.03, 0.08, 0.012 +19621228, 0.05, -0.06, -0.13, 0.012 +19621231, 0.23, -0.14, 0.32, 0.012 +19630102, -0.54, 0.94, 0.33, 0.011 +19630103, 1.66, 0.99, -0.24, 0.011 +19630104, 0.68, 0.64, 0.01, 0.011 +19630107, 0.06, 0.33, 0.28, 0.011 +19630108, 0.90, -0.03, 0.23, 0.011 +19630109, -0.16, 0.10, 0.08, 0.011 +19630110, 0.19, 0.21, -0.10, 0.011 +19630111, 0.25, -0.04, -0.16, 0.011 +19630114, 0.57, 0.07, 0.23, 0.011 +19630115, -0.10, -0.02, 0.33, 0.011 +19630116, -0.69, 0.10, 0.00, 0.011 +19630117, 0.66, 0.07, -0.21, 0.011 +19630118, 0.02, 0.07, -0.06, 0.011 +19630121, 0.14, -0.03, -0.17, 0.011 +19630122, 0.26, 0.41, -0.04, 0.011 +19630123, 0.22, 0.10, 0.29, 0.011 +19630124, 0.16, 0.24, 0.27, 0.011 +19630125, 0.25, -0.36, 0.32, 0.011 +19630128, 0.40, -0.39, 0.13, 0.011 +19630129, 0.02, -0.32, 0.36, 0.011 +19630130, -0.56, -0.12, 0.14, 0.011 +19630131, 0.44, -0.08, 0.06, 0.011 +19630201, 0.18, 0.08, 0.32, 0.012 +19630204, -0.20, 0.03, -0.21, 0.012 +19630205, -0.07, -0.35, 0.33, 0.012 +19630206, 0.48, 0.25, -0.18, 0.012 +19630207, -0.29, -0.02, 0.44, 0.012 +19630208, 0.04, -0.04, -0.09, 0.012 +19630211, -0.50, 0.08, 0.51, 0.012 +19630212, 0.04, -0.12, 0.05, 0.012 +19630213, 0.47, 0.29, 0.54, 0.012 +19630214, 0.30, 0.21, 0.16, 0.012 +19630215, 0.14, -0.11, -0.11, 0.012 +19630218, 0.15, -0.28, 0.23, 0.012 +19630219, -0.42, -0.04, 0.03, 0.012 +19630220, -0.51, 0.08, 0.10, 0.012 +19630221, 0.11, 0.11, -0.02, 0.012 +19630225, -0.60, 0.15, 0.15, 0.012 +19630226, 0.09, 0.24, -0.21, 0.012 +19630227, -0.65, 0.10, 0.11, 0.012 +19630228, -1.14, -0.18, 0.05, 0.012 +19630301, -0.34, -0.27, 0.17, 0.011 +19630304, 0.91, 0.01, 0.11, 0.011 +19630305, -0.03, -0.34, 0.11, 0.011 +19630306, 0.17, -0.25, 0.00, 0.011 +19630307, 0.58, -0.21, -0.03, 0.011 +19630308, 0.13, -0.09, 0.09, 0.011 +19630311, 0.21, -0.31, -0.06, 0.011 +19630312, 0.24, -0.12, 0.04, 0.011 +19630313, 0.31, -0.21, 0.38, 0.011 +19630314, -0.45, 0.09, -0.19, 0.011 +19630315, 0.39, -0.43, 0.27, 0.011 +19630318, -0.44, -0.05, -0.13, 0.011 +19630319, -0.23, -0.31, 0.14, 0.011 +19630320, 0.71, -0.08, 0.34, 0.011 +19630321, -0.13, 0.03, -0.01, 0.011 +19630322, 0.44, -0.06, 0.38, 0.011 +19630325, 0.03, -0.07, 0.16, 0.011 +19630326, 0.26, -0.19, 0.06, 0.011 +19630327, 0.40, 0.15, -0.17, 0.011 +19630328, -0.13, 0.09, 0.00, 0.011 +19630329, 0.00, 0.07, 0.42, 0.011 +19630401, 0.36, -0.20, 0.35, 0.012 +19630402, -0.03, -0.02, 0.04, 0.012 +19630403, 0.71, -0.44, -0.07, 0.012 +19630404, 0.62, -0.16, -0.28, 0.012 +19630405, 0.56, -0.12, 0.02, 0.012 +19630408, 0.33, 0.05, -0.22, 0.012 +19630409, -0.08, -0.01, -0.09, 0.012 +19630410, -0.26, -0.09, 0.34, 0.012 +19630411, 0.66, -0.11, 0.27, 0.012 +19630415, 0.38, -0.46, 0.20, 0.012 +19630416, 0.08, -0.03, 0.06, 0.012 +19630417, -0.23, 0.09, -0.14, 0.012 +19630418, 0.08, -0.10, 0.49, 0.012 +19630419, 0.47, 0.14, 0.17, 0.012 +19630422, 0.05, -0.04, 0.06, 0.012 +19630423, 0.36, -0.01, -0.05, 0.012 +19630424, 0.26, 0.08, 0.04, 0.012 +19630425, 0.06, -0.05, -0.10, 0.012 +19630426, -0.06, 0.25, -0.06, 0.012 +19630429, -0.08, -0.11, -0.18, 0.012 +19630430, 0.21, 0.08, 0.11, 0.012 +19630501, 0.25, -0.04, -0.03, 0.011 +19630502, 0.25, -0.08, 0.08, 0.011 +19630503, -0.18, 0.25, -0.07, 0.011 +19630506, -0.64, 0.36, -0.22, 0.011 +19630507, -0.04, 0.25, -0.17, 0.011 +19630508, 0.78, -0.03, -0.03, 0.011 +19630509, 0.43, -0.04, 0.20, 0.011 +19630510, 0.31, 0.18, -0.15, 0.011 +19630513, 0.03, 0.25, -0.04, 0.011 +19630514, -0.28, 0.59, 0.44, 0.011 +19630515, 0.25, 0.06, 0.27, 0.011 +19630516, -0.23, -0.12, 0.56, 0.011 +19630517, 0.08, 0.06, 0.09, 0.011 +19630520, -0.40, 0.25, 0.61, 0.011 +19630521, 0.23, -0.08, 0.38, 0.011 +19630522, 0.04, 0.09, 0.30, 0.011 +19630523, -0.08, 0.13, -0.16, 0.011 +19630524, -0.11, -0.08, -0.11, 0.011 +19630527, -0.11, -0.24, 0.03, 0.011 +19630528, 0.18, -0.21, 0.09, 0.011 +19630529, 0.43, -0.18, 0.39, 0.011 +19630531, 0.55, -0.34, -0.07, 0.011 +19630603, -0.08, 0.06, -0.09, 0.011 +19630604, -0.01, 0.02, -0.04, 0.011 +19630605, -0.25, 0.04, 0.29, 0.011 +19630606, 0.01, -0.26, 0.27, 0.011 +19630607, -0.19, 0.17, -0.14, 0.011 +19630610, -0.56, 0.05, -0.28, 0.011 +19630611, 0.10, 0.00, -0.24, 0.011 +19630612, 0.49, 0.06, -0.33, 0.011 +19630613, -0.26, 0.14, 0.12, 0.011 +19630614, 0.07, 0.15, -0.32, 0.011 +19630617, -0.39, 0.15, 0.22, 0.011 +19630618, 0.13, -0.14, 0.08, 0.011 +19630619, 0.07, 0.26, 0.16, 0.011 +19630620, -0.10, -0.14, 0.03, 0.011 +19630621, 0.31, 0.18, 0.34, 0.011 +19630624, -0.09, -0.05, 0.29, 0.011 +19630625, -0.24, -0.19, 0.14, 0.011 +19630626, -0.92, -0.30, 0.23, 0.011 +19630627, -0.49, -0.26, -0.11, 0.011 +19630628, 0.40, -0.20, 0.10, 0.011 +19630701, -0.67, 0.16, -0.32, 0.012 +19630702, 0.79, -0.28, 0.27, 0.012 +19630703, 0.63, -0.18, -0.09, 0.012 +19630705, 0.40, 0.10, -0.28, 0.012 +19630708, -0.63, 0.04, -0.18, 0.012 +19630709, 0.45, 0.01, 0.10, 0.012 +19630710, -0.18, 0.15, 0.01, 0.012 +19630711, -0.16, 0.19, -0.30, 0.012 +19630712, -0.12, 0.01, -0.11, 0.012 +19630715, -0.62, 0.02, -0.03, 0.012 +19630716, -0.07, -0.13, 0.14, 0.012 +19630717, -0.33, -0.15, 0.15, 0.012 +19630718, -0.54, 0.29, 0.05, 0.012 +19630719, -0.23, -0.02, -0.05, 0.012 +19630722, -0.70, -0.11, -0.31, 0.012 +19630723, 0.01, -0.07, -0.20, 0.012 +19630724, 0.46, -0.09, -0.01, 0.012 +19630725, -0.04, 0.04, 0.26, 0.012 +19630726, 0.35, -0.20, 0.07, 0.012 +19630729, 0.11, -0.29, 0.26, 0.012 +19630730, 0.84, -0.24, -0.27, 0.012 +19630731, -0.13, 0.18, -0.01, 0.012 +19630801, -0.08, -0.12, -0.12, 0.011 +19630802, 0.29, -0.23, 0.15, 0.011 +19630805, 0.57, -0.41, 0.16, 0.011 +19630806, 0.60, -0.40, 0.25, 0.011 +19630807, -0.19, 0.01, 0.17, 0.011 +19630808, 0.14, 0.03, -0.25, 0.011 +19630809, 0.60, -0.09, -0.06, 0.011 +19630812, 0.24, 0.10, 0.41, 0.011 +19630813, 0.27, -0.30, -0.03, 0.011 +19630814, 0.30, -0.05, 0.21, 0.011 +19630815, 0.43, -0.30, 0.37, 0.011 +19630816, 0.15, 0.11, 0.10, 0.011 +19630819, -0.05, 0.07, -0.10, 0.011 +19630820, -0.05, 0.06, -0.25, 0.011 +19630821, -0.11, 0.36, -0.12, 0.011 +19630822, 0.39, 0.12, 0.09, 0.011 +19630823, 0.34, -0.02, 0.10, 0.011 +19630826, 0.18, -0.21, 0.14, 0.011 +19630827, -0.44, 0.11, -0.05, 0.011 +19630828, 0.77, -0.04, 0.44, 0.011 +19630829, 0.18, 0.15, 0.02, 0.011 +19630830, 0.44, 0.12, -0.09, 0.011 +19630903, 0.23, 0.11, 0.06, 0.014 +19630904, -0.01, 0.10, -0.06, 0.014 +19630905, 0.47, -0.06, 0.11, 0.014 +19630906, -0.27, -0.17, -0.01, 0.014 +19630909, -0.36, -0.26, -0.01, 0.014 +19630910, 0.52, -0.21, 0.42, 0.014 +19630911, 0.24, -0.21, 0.20, 0.014 +19630912, -0.09, 0.10, -0.11, 0.014 +19630913, 0.02, 0.40, -0.15, 0.014 +19630916, -0.16, 0.10, 0.19, 0.014 +19630917, 0.03, -0.14, 0.17, 0.014 +19630918, -0.43, 0.10, -0.24, 0.014 +19630919, 0.52, -0.44, 0.17, 0.014 +19630920, 0.04, -0.05, -0.01, 0.014 +19630923, -0.50, -0.01, -0.21, 0.014 +19630924, 0.35, -0.40, 0.13, 0.014 +19630925, -0.58, -0.31, -0.08, 0.014 +19630926, -0.81, 0.52, -0.35, 0.014 +19630927, -0.18, 0.32, -0.22, 0.014 +19630930, -0.60, 0.25, 0.08, 0.014 +19631001, 0.65, -0.25, 0.25, 0.013 +19631002, 0.10, -0.05, 0.00, 0.013 +19631003, 0.67, -0.39, 0.85, 0.013 +19631004, 0.00, 0.01, 0.06, 0.013 +19631007, -0.23, 0.21, -0.02, 0.013 +19631008, -0.14, 0.05, 0.25, 0.013 +19631009, -0.61, 0.18, -0.05, 0.013 +19631010, 0.08, 0.00, 0.15, 0.013 +19631011, 0.13, 0.38, 0.08, 0.013 +19631014, 0.05, 0.03, 0.07, 0.013 +19631015, 0.17, -0.21, 0.14, 0.013 +19631016, 0.89, -0.31, 0.27, 0.013 +19631017, 0.14, 0.13, -0.25, 0.013 +19631018, 0.09, 0.17, -0.24, 0.013 +19631021, 0.03, -0.06, -0.30, 0.013 +19631022, -0.54, 0.43, -0.46, 0.013 +19631023, 0.03, -0.07, -0.05, 0.013 +19631024, 0.35, -0.17, 0.47, 0.013 +19631025, 0.85, -0.22, -0.89, 0.013 +19631028, 0.41, -0.68, -0.28, 0.013 +19631029, -0.04, -0.20, -0.07, 0.013 +19631030, -0.79, 0.46, -0.06, 0.013 +19631031, 0.21, -0.04, 0.11, 0.013 +19631101, -0.18, 0.18, 0.19, 0.015 +19631104, -0.43, -0.06, 0.36, 0.015 +19631106, -0.77, 0.05, 0.25, 0.015 +19631107, 0.33, -0.01, -0.04, 0.015 +19631108, 0.54, 0.03, 0.12, 0.015 +19631111, 0.20, 0.24, 0.15, 0.015 +19631112, -0.37, 0.33, -0.29, 0.015 +19631113, 0.05, 0.05, -0.08, 0.015 +19631114, -0.41, 0.20, -0.03, 0.015 +19631115, -0.75, 0.33, 0.00, 0.015 +19631118, -0.74, 0.16, -0.23, 0.015 +19631119, 0.10, -0.29, 0.35, 0.015 +19631120, 0.76, -0.93, -0.35, 0.015 +19631121, -1.25, -0.13, 0.03, 0.015 +19631122, -2.90, -0.55, 0.05, 0.015 +19631126, 3.94, -1.34, 0.87, 0.015 +19631127, -0.16, 0.38, 0.13, 0.015 +19631129, 1.34, 0.16, 0.31, 0.015 +19631202, 0.53, -0.28, -0.21, 0.014 +19631203, -0.05, 0.01, -0.20, 0.014 +19631204, 0.25, 0.01, 0.12, 0.014 +19631205, 0.57, -0.68, 0.12, 0.014 +19631206, -0.32, 0.13, 0.08, 0.014 +19631209, -0.11, -0.04, -0.16, 0.014 +19631210, 0.06, -0.18, 0.20, 0.014 +19631211, -0.14, 0.04, 0.09, 0.014 +19631212, -0.03, -0.17, -0.07, 0.014 +19631213, 0.16, -0.08, 0.11, 0.014 +19631216, 0.25, -0.45, -0.03, 0.014 +19631217, 0.44, -0.58, 0.06, 0.014 +19631218, -0.18, -0.31, 0.57, 0.014 +19631219, -0.33, -0.04, -0.44, 0.014 +19631220, -0.20, -0.19, 0.11, 0.014 +19631223, -0.60, 0.28, -0.07, 0.014 +19631224, 0.23, 0.23, -0.15, 0.014 +19631226, 0.47, 0.16, 0.08, 0.014 +19631227, 0.16, 0.10, -0.14, 0.014 +19631230, 0.10, -0.27, -0.17, 0.014 +19631231, 0.56, 0.39, -0.11, 0.014 +19640102, 0.60, 0.59, 0.59, 0.013 +19640103, 0.17, 0.12, 0.38, 0.013 +19640106, 0.23, 0.12, 0.02, 0.013 +19640107, 0.04, 0.08, 0.76, 0.013 +19640108, 0.34, 0.04, -0.15, 0.013 +19640109, 0.30, 0.03, -0.32, 0.013 +19640110, -0.04, -0.04, -0.12, 0.013 +19640113, -0.10, 0.00, 0.45, 0.013 +19640114, 0.15, -0.34, 0.64, 0.013 +19640115, 0.24, -0.28, -0.11, 0.013 +19640116, -0.10, 0.25, -0.32, 0.013 +19640117, -0.02, 0.34, -0.03, 0.013 +19640120, -0.21, 0.15, -0.54, 0.013 +19640121, 0.26, -0.47, 0.07, 0.013 +19640122, 0.48, -0.21, 0.41, 0.013 +19640123, 0.09, -0.12, 0.16, 0.013 +19640124, 0.04, 0.24, 0.18, 0.013 +19640127, -0.11, -0.30, 0.06, 0.013 +19640128, -0.01, -0.25, 0.18, 0.013 +19640129, -0.58, -0.03, -0.15, 0.013 +19640130, 0.04, 0.12, -0.30, 0.013 +19640131, 0.38, -0.27, -0.19, 0.013 +19640203, 0.00, -0.06, 0.06, 0.014 +19640204, -0.13, -0.21, -0.20, 0.014 +19640205, -0.08, 0.01, 0.29, 0.014 +19640206, 0.24, 0.10, -0.23, 0.014 +19640207, 0.37, 0.04, 0.12, 0.014 +19640210, -0.13, 0.17, -0.22, 0.014 +19640211, 0.33, 0.03, -0.14, 0.014 +19640212, 0.30, 0.03, 0.18, 0.014 +19640213, 0.08, 0.02, -0.06, 0.014 +19640214, -0.04, 0.10, 0.23, 0.014 +19640217, 0.03, 0.09, 0.27, 0.014 +19640218, 0.01, -0.26, 0.53, 0.014 +19640219, 0.11, -0.04, 0.05, 0.014 +19640220, 0.09, -0.03, 0.70, 0.014 +19640224, 0.10, -0.10, 0.46, 0.014 +19640225, 0.04, -0.12, 0.17, 0.014 +19640226, 0.28, 0.08, 0.22, 0.014 +19640227, -0.27, 0.26, -0.08, 0.014 +19640228, 0.21, -0.01, 0.42, 0.014 +19640302, 0.22, -0.06, 0.32, 0.015 +19640303, 0.26, -0.28, -0.25, 0.015 +19640304, -0.20, 0.02, -0.11, 0.015 +19640305, 0.00, 0.06, 0.22, 0.015 +19640306, 0.32, 0.41, 0.01, 0.015 +19640309, 0.01, 0.04, 0.42, 0.015 +19640310, 0.28, -0.40, 0.25, 0.015 +19640311, 0.40, -0.26, 0.19, 0.015 +19640312, 0.18, -0.06, 0.17, 0.015 +19640313, 0.09, 0.04, 0.10, 0.015 +19640316, 0.03, 0.01, -0.22, 0.015 +19640317, 0.19, -0.02, 0.25, 0.015 +19640318, 0.10, -0.11, 0.50, 0.015 +19640319, -0.09, 0.07, 0.02, 0.015 +19640320, -0.42, 0.33, 0.10, 0.015 +19640323, 0.01, 0.39, -0.07, 0.015 +19640324, -0.18, 0.07, 0.30, 0.015 +19640325, 0.24, 0.22, 0.60, 0.015 +19640326, 0.26, 0.10, 0.66, 0.015 +19640330, -0.10, 0.08, 0.06, 0.015 +19640331, -0.19, 0.23, -0.30, 0.015 +19640401, 0.34, 0.04, 0.65, 0.013 +19640402, 0.57, 0.00, 0.29, 0.013 +19640403, 0.22, 0.07, -0.41, 0.013 +19640406, 0.07, 0.08, 0.28, 0.013 +19640407, -0.34, 0.26, -0.44, 0.013 +19640408, 0.01, 0.34, 0.17, 0.013 +19640409, 0.00, 0.24, -0.16, 0.013 +19640410, 0.19, 0.16, 0.10, 0.013 +19640413, -0.08, -0.05, -0.21, 0.013 +19640414, 0.19, -0.25, -0.13, 0.013 +19640415, 0.11, -0.01, -0.56, 0.013 +19640416, 0.08, -0.20, -0.07, 0.013 +19640417, 0.38, -0.40, 0.27, 0.013 +19640420, -0.07, -0.19, -0.17, 0.013 +19640421, -0.01, -0.08, -0.10, 0.013 +19640422, -0.05, -0.18, 0.21, 0.013 +19640423, -0.16, -0.30, -0.03, 0.013 +19640424, -0.77, -0.14, -0.41, 0.013 +19640427, -0.54, -0.04, 0.22, 0.013 +19640428, 0.64, -0.27, 0.77, 0.013 +19640429, -0.40, -0.21, -0.70, 0.013 +19640430, -0.25, -0.26, -0.04, 0.013 +19640501, 0.78, -0.16, 0.32, 0.013 +19640504, 0.45, 0.05, 0.22, 0.013 +19640505, 0.46, -0.51, 0.12, 0.013 +19640506, 0.26, -0.22, 0.19, 0.013 +19640507, 0.11, -0.14, 0.73, 0.013 +19640508, -0.18, 0.00, 0.11, 0.013 +19640511, -0.03, 0.03, 0.01, 0.013 +19640512, 0.32, -0.08, 0.04, 0.013 +19640513, -0.25, 0.01, -0.17, 0.013 +19640514, -0.11, 0.27, -0.02, 0.013 +19640515, 0.15, -0.21, -0.06, 0.013 +19640518, -0.33, 0.01, -0.21, 0.013 +19640519, -0.44, 0.34, -0.15, 0.013 +19640520, 0.42, -0.24, 0.43, 0.013 +19640521, 0.07, 0.04, -0.20, 0.013 +19640522, 0.05, 0.14, 0.08, 0.013 +19640525, -0.12, -0.14, 0.07, 0.013 +19640526, -0.17, 0.09, 0.15, 0.013 +19640527, -0.15, -0.27, 0.23, 0.013 +19640528, 0.16, 0.11, 0.01, 0.013 +19640601, -0.35, 0.01, 0.04, 0.014 +19640602, -0.52, -0.06, -0.07, 0.014 +19640603, -0.26, -0.22, 0.19, 0.014 +19640604, -1.03, 0.03, -0.33, 0.014 +19640605, 0.42, -0.16, 0.16, 0.014 +19640608, -0.46, 0.06, -0.16, 0.014 +19640609, 0.56, -0.24, 0.46, 0.014 +19640610, 0.37, 0.04, -0.20, 0.014 +19640611, 0.30, 0.08, -0.36, 0.014 +19640612, -0.23, 0.15, 0.10, 0.014 +19640615, 0.45, -0.03, 0.05, 0.014 +19640616, 0.51, -0.06, 0.35, 0.014 +19640617, 0.51, -0.10, 0.12, 0.014 +19640618, 0.00, 0.01, 0.09, 0.014 +19640619, 0.10, -0.01, 0.11, 0.014 +19640622, 0.25, -0.28, 0.36, 0.014 +19640623, -0.38, 0.34, -0.24, 0.014 +19640624, 0.35, 0.03, 0.23, 0.014 +19640625, 0.20, -0.06, -0.02, 0.014 +19640626, 0.26, 0.17, 0.15, 0.014 +19640629, 0.18, 0.02, -0.17, 0.014 +19640630, 0.03, 0.00, -0.16, 0.014 +19640701, 0.62, -0.26, 0.38, 0.013 +19640702, 0.39, 0.13, -0.26, 0.013 +19640706, 0.41, -0.15, -0.09, 0.013 +19640707, 0.15, -0.17, 0.10, 0.013 +19640708, 0.02, 0.08, 0.11, 0.013 +19640709, 0.13, 0.33, -0.11, 0.013 +19640710, 0.19, -0.01, 0.43, 0.013 +19640713, -0.07, 0.08, 0.04, 0.013 +19640714, -0.29, 0.19, 0.09, 0.013 +19640715, 0.37, 0.00, -0.35, 0.013 +19640716, 0.31, -0.18, 0.18, 0.013 +19640717, 0.44, -0.13, -0.27, 0.013 +19640720, -0.31, 0.18, 0.09, 0.013 +19640721, -0.19, 0.21, -0.13, 0.013 +19640722, 0.02, -0.03, 0.01, 0.013 +19640723, -0.03, 0.17, 0.12, 0.013 +19640724, -0.03, -0.02, -0.05, 0.013 +19640727, -0.48, -0.15, 0.28, 0.013 +19640728, -0.24, 0.04, 0.05, 0.013 +19640729, 0.13, -0.06, -0.02, 0.013 +19640730, 0.13, -0.08, -0.01, 0.013 +19640731, 0.07, 0.05, 0.10, 0.013 +19640803, -0.24, -0.29, 0.23, 0.013 +19640804, -1.13, -0.09, -0.05, 0.013 +19640805, 0.16, -0.38, 0.05, 0.013 +19640806, -0.87, 0.43, -0.09, 0.013 +19640807, 0.56, -0.01, -0.14, 0.013 +19640810, 0.02, 0.12, -0.20, 0.013 +19640811, -0.01, 0.09, 0.17, 0.013 +19640812, 0.50, 0.16, -0.05, 0.013 +19640813, 0.28, 0.01, 0.14, 0.013 +19640814, -0.10, 0.20, 0.04, 0.013 +19640817, -0.01, -0.09, -0.20, 0.013 +19640818, 0.06, -0.16, 0.34, 0.013 +19640819, -0.09, 0.01, 0.04, 0.013 +19640820, -0.44, -0.03, -0.26, 0.013 +19640821, 0.16, 0.09, -0.08, 0.013 +19640824, -0.20, 0.01, 0.51, 0.013 +19640825, -0.50, 0.15, -0.33, 0.013 +19640826, -0.18, -0.02, -0.02, 0.013 +19640827, 0.48, -0.27, 0.03, 0.013 +19640828, 0.32, -0.05, -0.13, 0.013 +19640831, -0.21, 0.27, -0.07, 0.013 +19640901, 0.46, -0.20, 0.53, 0.013 +19640902, 0.20, 0.14, 0.18, 0.013 +19640903, 0.25, -0.15, -0.22, 0.013 +19640904, 0.21, 0.02, 0.03, 0.013 +19640908, 0.12, 0.00, -0.01, 0.013 +19640909, 0.19, -0.23, 0.33, 0.013 +19640910, 0.08, -0.06, 0.23, 0.013 +19640911, 0.33, -0.29, 0.34, 0.013 +19640914, -0.24, -0.05, 0.39, 0.013 +19640915, -0.24, 0.11, -0.09, 0.013 +19640916, 0.27, -0.10, 0.22, 0.013 +19640917, 0.59, -0.17, 0.21, 0.013 +19640918, -0.34, 0.16, -0.23, 0.013 +19640921, 0.40, -0.13, 0.13, 0.013 +19640922, 0.04, 0.18, -0.22, 0.013 +19640923, 0.01, 0.12, 0.21, 0.013 +19640924, 0.10, -0.12, 0.03, 0.013 +19640925, 0.20, 0.09, -0.36, 0.013 +19640928, 0.07, -0.04, -0.08, 0.013 +19640929, -0.01, 0.00, -0.09, 0.013 +19640930, -0.03, 0.16, -0.09, 0.013 +19641001, -0.14, 0.08, 0.11, 0.013 +19641002, 0.24, -0.24, 0.16, 0.013 +19641005, 0.41, -0.27, 0.38, 0.013 +19641006, 0.02, -0.09, 0.16, 0.013 +19641007, -0.02, -0.12, 0.09, 0.013 +19641008, 0.24, -0.03, 0.18, 0.013 +19641009, 0.19, 0.01, 0.09, 0.013 +19641012, 0.06, 0.21, -0.07, 0.013 +19641013, -0.25, 0.03, 0.35, 0.013 +19641014, -0.17, 0.03, 0.14, 0.013 +19641015, -0.70, -0.38, -0.17, 0.013 +19641016, 0.70, 0.38, 0.06, 0.013 +19641019, 0.13, 0.30, 0.16, 0.013 +19641020, 0.25, -0.03, 0.29, 0.013 +19641021, -0.06, -0.03, 0.00, 0.013 +19641022, -0.16, 0.11, 0.04, 0.013 +19641023, 0.20, -0.09, 0.01, 0.013 +19641026, -0.17, 0.23, 0.23, 0.013 +19641027, -0.04, 0.02, -0.11, 0.013 +19641028, -0.35, 0.06, -0.53, 0.013 +19641029, 0.05, 0.08, -0.16, 0.013 +19641030, 0.18, 0.20, -0.26, 0.013 +19641102, 0.43, -0.15, -0.28, 0.015 +19641104, -0.04, -0.09, 0.21, 0.015 +19641105, 0.00, -0.10, -0.52, 0.015 +19641106, 0.19, -0.16, -0.13, 0.015 +19641109, -0.05, 0.05, -0.49, 0.015 +19641110, -0.41, 0.09, -0.20, 0.015 +19641111, 0.26, -0.14, 0.53, 0.015 +19641112, 0.18, 0.20, 0.24, 0.015 +19641113, 0.10, 0.35, -0.27, 0.015 +19641116, 0.43, 0.01, -0.53, 0.015 +19641117, 0.45, -0.31, 0.04, 0.015 +19641118, 0.24, -0.08, -0.02, 0.015 +19641119, -0.01, 0.01, -0.32, 0.015 +19641120, 0.10, 0.03, -0.03, 0.015 +19641123, -0.24, 0.12, 0.05, 0.015 +19641124, -0.26, 0.08, 0.03, 0.015 +19641125, -0.21, 0.35, -0.12, 0.015 +19641127, -0.31, 0.18, -0.12, 0.015 +19641130, -0.87, 0.16, -0.14, 0.015 +19641201, -1.00, 0.17, -0.20, 0.014 +19641202, 0.28, -0.28, 0.01, 0.014 +19641203, 0.39, -0.05, 0.13, 0.014 +19641204, 0.18, 0.02, -0.18, 0.014 +19641207, -0.01, -0.02, -0.18, 0.014 +19641208, -0.37, -0.08, -0.57, 0.014 +19641209, -0.67, -0.20, -0.10, 0.014 +19641210, -0.04, -0.12, 0.19, 0.014 +19641211, 0.22, 0.09, 0.03, 0.014 +19641214, -0.26, 0.17, -0.31, 0.014 +19641215, -0.35, -0.18, -0.18, 0.014 +19641216, 0.40, 0.15, -0.26, 0.014 +19641217, 0.36, 0.03, 0.26, 0.014 +19641218, 0.47, -0.01, -0.05, 0.014 +19641221, 0.07, 0.03, -0.09, 0.014 +19641222, -0.07, 0.04, -0.32, 0.014 +19641223, -0.20, 0.13, -0.22, 0.014 +19641224, 0.01, 0.09, 0.08, 0.014 +19641228, -0.11, 0.02, -0.18, 0.014 +19641229, -0.31, -0.09, 0.03, 0.014 +19641230, 0.57, -0.07, -0.26, 0.014 +19641231, 0.49, -0.10, -0.13, 0.014 +19650104, -0.45, 0.71, -0.09, 0.014 +19650105, 0.49, 0.39, -0.10, 0.014 +19650106, 0.34, 0.19, 0.44, 0.014 +19650107, 0.40, 0.07, 0.18, 0.014 +19650108, 0.17, 0.17, -0.20, 0.014 +19650111, 0.06, 0.07, 0.09, 0.014 +19650112, 0.28, 0.20, -0.09, 0.014 +19650113, 0.28, 0.22, -0.02, 0.014 +19650114, 0.00, 0.04, 0.23, 0.014 +19650115, 0.41, -0.18, 0.17, 0.014 +19650118, 0.28, -0.10, -0.22, 0.014 +19650119, 0.16, -0.26, 0.17, 0.014 +19650120, -0.03, 0.01, 0.08, 0.014 +19650121, -0.10, 0.15, -0.08, 0.014 +19650122, 0.24, 0.04, 0.11, 0.014 +19650125, 0.16, 0.29, 0.07, 0.014 +19650126, 0.10, 0.06, -0.07, 0.014 +19650127, 0.28, 0.18, -0.28, 0.014 +19650128, 0.26, 0.01, -0.13, 0.014 +19650129, 0.13, 0.32, -0.06, 0.014 +19650201, 0.03, 0.12, -0.06, 0.016 +19650202, 0.05, 0.03, -0.03, 0.016 +19650203, 0.14, 0.22, -0.16, 0.016 +19650204, 0.00, 0.42, -0.26, 0.016 +19650205, -0.25, 0.39, -0.06, 0.016 +19650208, -0.32, 0.08, 0.18, 0.016 +19650209, 0.31, 0.10, 0.07, 0.016 +19650210, -0.84, -0.05, -0.03, 0.016 +19650211, -0.99, 0.33, -0.03, 0.016 +19650212, 0.66, 0.24, 0.04, 0.016 +19650215, -0.05, 0.27, 0.32, 0.016 +19650216, -0.35, 0.33, 0.12, 0.016 +19650217, 0.14, 0.24, -0.03, 0.016 +19650218, 0.31, 0.34, -0.02, 0.016 +19650219, 0.20, 0.34, -0.11, 0.016 +19650223, 0.48, 0.00, 0.66, 0.016 +19650224, 0.63, -0.08, 0.02, 0.016 +19650225, 0.07, -0.03, -0.04, 0.016 +19650226, 0.25, 0.09, -0.44, 0.016 +19650301, -0.14, 0.39, 0.00, 0.016 +19650302, 0.18, 0.13, -0.04, 0.016 +19650303, -0.05, 0.27, -0.19, 0.016 +19650304, -0.29, 0.27, -0.14, 0.016 +19650305, -0.19, 0.06, 0.01, 0.016 +19650308, 0.04, 0.20, 0.25, 0.016 +19650309, -0.16, -0.08, 0.13, 0.016 +19650310, -0.10, 0.16, -0.16, 0.016 +19650311, 0.38, 0.10, -0.31, 0.016 +19650312, 0.30, -0.18, 0.30, 0.016 +19650315, 0.06, -0.02, 0.20, 0.016 +19650316, -0.11, 0.00, 0.21, 0.016 +19650317, -0.15, 0.14, 0.02, 0.016 +19650318, -0.26, 0.24, -0.27, 0.016 +19650319, -0.01, -0.07, 0.11, 0.016 +19650322, -0.01, 0.03, 0.25, 0.016 +19650323, 0.04, -0.01, 0.08, 0.016 +19650324, 0.18, -0.01, 0.46, 0.016 +19650325, -0.29, 0.09, 0.11, 0.016 +19650326, -0.70, 0.04, -0.10, 0.016 +19650329, -0.24, -0.20, 0.01, 0.016 +19650330, 0.19, 0.05, -0.02, 0.016 +19650331, 0.01, 0.18, 0.14, 0.016 +19650401, 0.16, 0.05, -0.18, 0.015 +19650402, 0.25, 0.13, 0.22, 0.015 +19650405, 0.01, 0.04, 0.00, 0.015 +19650406, -0.04, 0.05, -0.05, 0.015 +19650407, 0.06, 0.15, -0.07, 0.015 +19650408, 0.52, 0.18, 0.00, 0.015 +19650409, 0.56, 0.05, 0.03, 0.015 +19650412, 0.44, -0.05, 0.11, 0.015 +19650413, 0.12, 0.04, 0.31, 0.015 +19650414, 0.18, 0.17, -0.25, 0.015 +19650415, -0.06, 0.36, -0.02, 0.015 +19650419, 0.36, 0.07, -0.39, 0.015 +19650420, -0.03, 0.20, 0.13, 0.015 +19650421, -0.23, -0.01, 0.01, 0.015 +19650422, 0.45, -0.16, -0.10, 0.015 +19650423, 0.13, 0.14, -0.11, 0.015 +19650426, 0.00, 0.01, 0.42, 0.015 +19650427, 0.17, -0.20, 0.41, 0.015 +19650428, -0.05, -0.27, 0.50, 0.015 +19650429, -0.07, 0.21, -0.16, 0.015 +19650430, 0.13, 0.01, -0.13, 0.015 +19650503, 0.08, -0.31, -0.16, 0.016 +19650504, 0.27, -0.31, -0.06, 0.016 +19650505, 0.24, -0.40, 0.24, 0.016 +19650506, 0.24, -0.04, -0.20, 0.016 +19650507, -0.07, 0.03, -0.06, 0.016 +19650510, -0.12, 0.22, -0.10, 0.016 +19650511, -0.09, -0.05, -0.19, 0.016 +19650512, 0.37, 0.10, -0.38, 0.016 +19650513, 0.32, 0.31, -0.26, 0.016 +19650514, -0.16, 0.37, -0.12, 0.016 +19650517, -0.54, 0.25, 0.30, 0.016 +19650518, -0.07, 0.08, 0.14, 0.016 +19650519, 0.20, 0.12, -0.14, 0.016 +19650520, -0.53, -0.11, -0.08, 0.016 +19650521, -0.46, 0.13, -0.03, 0.016 +19650524, -0.74, -0.15, 0.11, 0.016 +19650525, 0.54, 0.02, -0.33, 0.016 +19650526, -0.27, -0.20, 0.03, 0.016 +19650527, -0.58, -0.09, -0.14, 0.016 +19650528, 0.61, 0.02, -0.15, 0.016 +19650601, -0.70, -0.01, 0.18, 0.016 +19650602, -0.78, -0.36, -0.52, 0.016 +19650603, -0.24, 0.07, -0.09, 0.016 +19650604, 0.21, 0.07, -0.03, 0.016 +19650607, -0.35, -0.31, 0.13, 0.016 +19650608, -1.07, -0.20, 0.00, 0.016 +19650609, -1.04, -0.27, 0.56, 0.016 +19650610, -0.43, -0.69, 0.15, 0.016 +19650611, 0.42, 0.01, -0.06, 0.016 +19650614, -1.36, -0.70, -0.10, 0.016 +19650615, 0.47, -0.10, -0.12, 0.016 +19650616, 0.89, 0.57, 0.12, 0.016 +19650617, 0.59, -0.04, 0.21, 0.016 +19650618, -0.44, -0.04, -0.01, 0.016 +19650621, -0.38, -0.17, -0.10, 0.016 +19650622, 0.18, -0.05, 0.00, 0.016 +19650623, -0.64, -0.04, 0.04, 0.016 +19650624, -1.35, -0.77, 0.08, 0.016 +19650625, -0.64, -0.33, -0.05, 0.016 +19650628, -1.88, -1.49, 0.07, 0.016 +19650629, 0.79, -0.75, -0.16, 0.016 +19650630, 2.20, 1.16, 0.11, 0.016 +19650701, 0.46, 0.38, 0.02, 0.015 +19650702, 0.81, 0.15, -0.06, 0.015 +19650706, -0.18, 0.26, -0.01, 0.015 +19650707, -0.34, -0.17, 0.11, 0.015 +19650708, 0.80, 0.01, -0.20, 0.015 +19650709, 0.40, 0.40, -0.03, 0.015 +19650712, 0.00, 0.06, 0.22, 0.015 +19650713, -0.13, -0.08, -0.24, 0.015 +19650714, 0.29, 0.20, 0.13, 0.015 +19650715, -0.10, 0.26, -0.01, 0.015 +19650716, -0.04, 0.06, -0.06, 0.015 +19650719, -0.09, 0.13, -0.27, 0.015 +19650720, -1.24, -0.30, 0.23, 0.015 +19650721, -0.55, -0.08, 0.24, 0.015 +19650722, -0.23, 0.16, 0.18, 0.015 +19650723, 0.24, -0.18, 0.29, 0.015 +19650726, -0.03, 0.12, 0.03, 0.015 +19650727, -0.18, -0.01, 0.20, 0.015 +19650728, 0.16, -0.48, 0.86, 0.015 +19650729, 0.72, -0.12, 0.53, 0.015 +19650730, 0.67, 0.08, -0.03, 0.015 +19650802, 0.20, 0.21, -0.34, 0.015 +19650803, 0.12, 0.05, -0.23, 0.015 +19650804, 0.41, 0.21, 0.10, 0.015 +19650805, 0.02, 0.27, -0.03, 0.015 +19650806, 0.35, 0.01, -0.33, 0.015 +19650809, -0.14, 0.39, -0.12, 0.015 +19650810, 0.04, 0.38, -0.14, 0.015 +19650811, 0.33, 0.13, 0.11, 0.015 +19650812, 0.29, 0.28, -0.09, 0.015 +19650813, 0.43, -0.19, 0.26, 0.015 +19650816, 0.11, -0.08, 0.24, 0.015 +19650817, 0.16, 0.09, -0.27, 0.015 +19650818, 0.02, 0.11, 0.24, 0.015 +19650819, -0.24, -0.30, -0.02, 0.015 +19650820, -0.08, -0.04, 0.20, 0.015 +19650823, -0.13, 0.06, 0.03, 0.015 +19650824, 0.18, 0.22, -0.31, 0.015 +19650825, 0.14, 0.22, -0.26, 0.015 +19650826, 0.37, -0.10, 0.21, 0.015 +19650827, 0.12, 0.23, -0.01, 0.015 +19650830, 0.04, 0.28, -0.08, 0.015 +19650831, -0.05, 0.29, -0.06, 0.015 +19650901, 0.05, 0.06, -0.20, 0.015 +19650902, 0.54, 0.03, 0.05, 0.015 +19650903, 0.46, 0.08, 0.10, 0.015 +19650907, 0.32, 0.13, -0.47, 0.015 +19650908, 0.28, 0.04, -0.15, 0.015 +19650909, 0.24, 0.08, 0.08, 0.015 +19650910, 0.23, 0.08, -0.34, 0.015 +19650913, 0.25, 0.14, -0.15, 0.015 +19650914, -0.44, -0.28, 0.14, 0.015 +19650915, 0.47, -0.12, 0.08, 0.015 +19650916, 0.52, -0.27, 0.48, 0.015 +19650917, 0.03, 0.06, -0.08, 0.015 +19650920, 0.04, 0.16, 0.07, 0.015 +19650921, -0.27, 0.07, -0.06, 0.015 +19650922, 0.47, 0.22, 0.11, 0.015 +19650923, -0.39, -0.29, 0.07, 0.015 +19650924, 0.23, 0.05, 0.60, 0.015 +19650927, 0.58, 0.09, -0.17, 0.015 +19650928, -0.24, 0.27, 0.11, 0.015 +19650929, -0.47, -0.04, -0.14, 0.015 +19650930, -0.07, 0.06, -0.24, 0.015 +19651001, -0.06, 0.17, 0.09, 0.015 +19651004, 0.24, 0.47, 0.07, 0.015 +19651005, 0.56, -0.04, 0.31, 0.015 +19651006, -0.08, -0.10, -0.31, 0.015 +19651007, -0.05, 0.39, -0.01, 0.015 +19651008, 0.48, 0.57, 0.39, 0.015 +19651011, 0.57, 0.19, -0.05, 0.015 +19651012, -0.05, 0.37, -0.16, 0.015 +19651013, 0.01, -0.01, 0.56, 0.015 +19651014, -0.15, 0.38, 0.23, 0.015 +19651015, 0.22, 0.26, 0.04, 0.015 +19651018, 0.27, 0.26, -0.09, 0.015 +19651019, 0.11, 0.00, -0.44, 0.015 +19651020, -0.01, 0.18, 0.11, 0.015 +19651021, 0.15, 0.25, -0.03, 0.015 +19651022, -0.05, -0.17, -0.05, 0.015 +19651025, -0.40, -0.35, 0.07, 0.015 +19651026, 0.50, -0.13, 0.23, 0.015 +19651027, 0.36, -0.22, 0.20, 0.015 +19651028, -0.31, 0.00, 0.14, 0.015 +19651029, 0.26, -0.07, 0.19, 0.015 +19651101, -0.10, -0.08, 0.27, 0.017 +19651103, 0.10, 0.24, -0.26, 0.017 +19651104, 0.19, 0.09, -0.16, 0.017 +19651105, 0.11, 0.29, -0.33, 0.017 +19651108, -0.34, 0.12, -0.27, 0.017 +19651109, -0.24, 0.19, 0.31, 0.017 +19651110, -0.09, 0.16, -0.03, 0.017 +19651111, 0.27, 0.13, -0.06, 0.017 +19651112, 0.49, 0.49, -0.32, 0.017 +19651115, 0.11, 0.58, -0.23, 0.017 +19651116, -0.13, 0.42, -0.04, 0.017 +19651117, 0.15, -0.67, 0.14, 0.017 +19651118, -0.35, 0.54, 0.12, 0.017 +19651119, 0.03, 0.34, 0.10, 0.017 +19651122, -0.53, 0.28, 0.10, 0.017 +19651123, 0.17, 0.18, 0.03, 0.017 +19651124, 0.19, 0.29, 0.17, 0.017 +19651126, 0.26, 0.45, 0.19, 0.017 +19651129, -0.15, 0.42, 0.28, 0.017 +19651130, -0.15, 0.12, 0.19, 0.017 +19651201, -0.03, 0.34, 0.29, 0.015 +19651202, -0.24, 0.31, 0.06, 0.015 +19651203, 0.07, 0.20, -0.19, 0.015 +19651206, -0.79, -0.33, -0.31, 0.015 +19651207, 0.95, 0.56, 0.35, 0.015 +19651208, -0.07, 0.43, -0.25, 0.015 +19651209, 0.29, 0.45, -0.15, 0.015 +19651210, 0.28, 0.21, -0.06, 0.015 +19651213, 0.10, 0.47, -0.13, 0.015 +19651214, 0.06, -0.21, 0.46, 0.015 +19651215, 0.18, -0.08, 0.73, 0.015 +19651216, 0.16, 0.09, 0.49, 0.015 +19651217, 0.04, 0.12, 0.69, 0.015 +19651220, -0.53, -0.25, 0.04, 0.015 +19651221, 0.34, -0.04, 0.51, 0.015 +19651222, 0.16, -0.91, 0.20, 0.015 +19651223, -0.16, -0.02, -0.29, 0.015 +19651227, -0.66, 0.06, -0.15, 0.015 +19651228, -0.05, -0.06, -0.18, 0.015 +19651229, 0.29, 0.38, -0.03, 0.015 +19651230, 0.36, 0.26, -0.27, 0.015 +19651231, 0.26, 0.05, 0.14, 0.015 +19660103, -0.22, 0.57, 0.29, 0.018 +19660104, 0.10, 0.32, 0.18, 0.018 +19660105, 0.57, -0.31, 0.71, 0.018 +19660106, 0.18, -0.37, 0.55, 0.018 +19660107, 0.10, 0.11, -0.07, 0.018 +19660110, 0.20, 0.29, 0.06, 0.018 +19660111, 0.05, 0.38, -0.29, 0.018 +19660112, -0.15, 0.34, -0.07, 0.018 +19660113, 0.22, 0.42, 0.27, 0.018 +19660114, 0.15, 0.00, 0.12, 0.018 +19660117, 0.33, 0.33, 0.15, 0.018 +19660118, 0.18, 0.05, 0.09, 0.018 +19660119, -0.28, 0.01, 0.12, 0.018 +19660120, -0.29, 0.29, 0.13, 0.018 +19660121, 0.08, 0.16, -0.24, 0.018 +19660124, 0.25, 0.27, 0.33, 0.018 +19660125, 0.18, 0.11, 0.43, 0.018 +19660126, -0.12, 0.19, 0.10, 0.018 +19660127, -0.03, 0.12, 0.33, 0.018 +19660128, -0.33, 0.45, 0.09, 0.018 +19660131, -0.45, 0.19, -0.22, 0.018 +19660201, -0.81, -0.82, -0.43, 0.018 +19660202, 0.40, 0.21, 0.43, 0.018 +19660203, 0.15, 0.10, -0.32, 0.018 +19660204, 0.59, -0.11, 0.48, 0.018 +19660207, 0.34, 0.20, 0.28, 0.018 +19660208, -0.03, -0.25, 0.09, 0.018 +19660209, 0.57, 0.65, -0.02, 0.018 +19660210, -0.17, 0.48, 0.00, 0.018 +19660211, 0.01, 0.49, -0.01, 0.018 +19660214, -0.11, 0.31, 0.18, 0.018 +19660215, -0.43, 0.00, 0.29, 0.018 +19660216, 0.03, 0.38, -0.11, 0.018 +19660217, -0.51, 0.18, -0.31, 0.018 +19660218, -0.22, 0.55, 0.16, 0.018 +19660221, -0.56, 0.37, -0.09, 0.018 +19660223, -0.42, 0.24, -0.15, 0.018 +19660224, -0.52, 0.14, 0.24, 0.018 +19660225, 0.32, 0.44, -0.14, 0.018 +19660228, 0.16, 0.96, -0.21, 0.018 +19660301, -1.29, -0.17, -0.21, 0.017 +19660302, -1.03, -0.11, -0.17, 0.017 +19660303, 0.39, 0.64, 0.16, 0.017 +19660304, -0.28, 0.30, -0.34, 0.017 +19660307, -1.29, -0.36, -0.16, 0.017 +19660308, 0.04, -0.48, -0.30, 0.017 +19660309, 0.89, 0.44, -0.11, 0.017 +19660310, -0.01, -0.29, -0.23, 0.017 +19660311, -0.08, 0.27, 0.32, 0.017 +19660314, -1.11, -0.32, -0.40, 0.017 +19660315, -0.74, -1.18, -0.31, 0.017 +19660316, 0.54, -0.02, 0.04, 0.017 +19660317, 0.31, -0.06, 0.28, 0.017 +19660318, 0.48, 0.24, 0.49, 0.017 +19660321, 0.82, 0.52, 0.55, 0.017 +19660322, 0.27, 0.11, 0.06, 0.017 +19660323, -0.32, 0.41, -0.46, 0.017 +19660324, 0.18, 0.36, -0.54, 0.017 +19660325, 0.33, 0.39, -0.50, 0.017 +19660328, 0.16, 0.47, 0.53, 0.017 +19660329, -0.41, -0.15, -0.31, 0.017 +19660330, -0.87, -0.01, -0.25, 0.017 +19660331, 0.55, -0.07, -0.32, 0.017 +19660401, 0.76, -0.15, 0.19, 0.017 +19660404, 0.90, -0.07, 0.70, 0.017 +19660405, 0.58, 0.01, 0.57, 0.017 +19660406, 0.25, 0.16, 0.02, 0.017 +19660407, 0.30, 0.68, -0.45, 0.017 +19660411, 0.10, 0.87, -0.61, 0.017 +19660412, -0.29, 0.28, -0.10, 0.017 +19660413, 0.09, 0.55, -0.22, 0.017 +19660414, 0.30, -0.12, 0.07, 0.017 +19660415, 0.09, 0.19, 0.34, 0.017 +19660418, -0.43, -0.07, 0.40, 0.017 +19660419, 0.02, 0.65, 0.12, 0.017 +19660420, 0.51, 0.19, 0.05, 0.017 +19660421, 0.34, -0.10, -0.11, 0.017 +19660422, -0.20, -0.30, 0.13, 0.017 +19660425, -0.18, 0.09, -0.02, 0.017 +19660426, -0.11, 0.01, -0.28, 0.017 +19660427, -0.29, 0.25, -0.37, 0.017 +19660428, -0.67, -0.13, -0.36, 0.017 +19660429, 0.02, 0.53, -0.30, 0.017 +19660502, -0.11, -0.08, -0.15, 0.020 +19660503, -1.12, -0.55, -0.13, 0.020 +19660504, -0.55, -0.32, 0.26, 0.020 +19660505, -1.74, -1.24, -0.04, 0.020 +19660506, -0.27, -1.21, 0.47, 0.020 +19660509, -1.60, -0.48, -0.28, 0.020 +19660510, 0.86, 0.13, -0.29, 0.020 +19660511, 0.18, 0.08, -0.28, 0.020 +19660512, -1.26, -0.70, -0.29, 0.020 +19660513, -0.96, -0.77, -0.17, 0.020 +19660516, -1.50, -1.23, -0.27, 0.020 +19660517, -0.92, -1.12, -0.37, 0.020 +19660518, 1.88, 0.88, 0.39, 0.020 +19660519, -0.12, 0.10, -0.38, 0.020 +19660520, 0.50, 0.21, -0.05, 0.020 +19660523, 0.89, 0.59, -0.35, 0.020 +19660524, 0.73, 0.57, 0.12, 0.020 +19660525, 0.39, 0.15, 0.15, 0.020 +19660526, 0.04, -0.25, 0.25, 0.020 +19660527, 0.30, 0.27, -0.10, 0.020 +19660531, -1.34, 0.01, -0.13, 0.020 +19660601, -0.01, -0.09, -0.19, 0.017 +19660602, -0.06, 0.20, 0.17, 0.017 +19660603, 0.11, 0.03, 0.18, 0.017 +19660606, -0.74, -0.20, -0.05, 0.017 +19660607, -0.70, -0.25, -0.14, 0.017 +19660608, 0.15, 0.18, 0.23, 0.017 +19660609, 0.72, 0.45, -0.17, 0.017 +19660610, 1.09, 0.21, 0.75, 0.017 +19660613, 0.48, 0.42, 0.10, 0.017 +19660614, 0.33, 0.23, -0.24, 0.017 +19660615, -0.38, 0.48, -0.17, 0.017 +19660616, -0.23, 0.37, -0.14, 0.017 +19660617, 0.01, 0.17, -0.25, 0.017 +19660620, -0.05, -0.03, 0.04, 0.017 +19660621, 0.35, 0.29, 0.01, 0.017 +19660622, 0.18, 0.35, 0.01, 0.017 +19660623, -0.40, -0.37, 0.28, 0.017 +19660624, 0.01, -0.25, 0.46, 0.017 +19660627, -0.63, -0.28, -0.02, 0.017 +19660628, -0.48, 0.01, -0.11, 0.017 +19660629, -1.01, -0.30, -0.19, 0.017 +19660630, -0.18, -0.58, -0.04, 0.017 +19660701, 0.99, 0.24, -0.23, 0.018 +19660705, 0.13, 0.03, 0.01, 0.018 +19660706, 1.39, -0.33, -0.50, 0.018 +19660707, 0.35, 0.05, -0.04, 0.018 +19660708, 0.16, 0.11, 0.16, 0.018 +19660711, -0.15, 0.18, -0.07, 0.018 +19660712, -0.50, 0.22, 0.15, 0.018 +19660713, -0.62, 0.21, 0.11, 0.018 +19660714, 0.55, -0.03, -0.31, 0.018 +19660715, 0.29, -0.02, 0.19, 0.018 +19660718, -0.13, -0.15, 0.19, 0.018 +19660719, -0.73, -0.09, 0.18, 0.018 +19660720, -0.89, 0.29, 0.20, 0.018 +19660721, -0.04, -0.22, 0.08, 0.018 +19660722, -0.11, 0.14, 0.19, 0.018 +19660725, -1.93, -0.46, 0.33, 0.018 +19660726, -0.26, -0.70, 0.04, 0.018 +19660727, 0.48, 0.07, 0.11, 0.018 +19660728, -0.36, 0.09, 0.03, 0.018 +19660729, -0.20, -0.08, 0.15, 0.018 +19660801, -1.53, -0.29, 0.27, 0.018 +19660802, 0.04, -0.27, -0.12, 0.018 +19660803, 0.99, 0.11, -0.34, 0.018 +19660804, 0.91, -0.41, 0.27, 0.018 +19660805, 0.13, 0.19, -0.32, 0.018 +19660808, -0.18, -0.12, -0.20, 0.018 +19660809, -0.19, 0.35, -0.20, 0.018 +19660810, -0.42, -0.03, -0.07, 0.018 +19660811, -0.06, 0.18, -0.51, 0.018 +19660812, 0.23, 0.25, -0.35, 0.018 +19660815, -0.49, 0.18, -0.02, 0.018 +19660816, -1.27, -0.02, 0.33, 0.018 +19660817, -0.58, -0.29, -0.03, 0.018 +19660818, -1.27, -0.01, 0.04, 0.018 +19660819, -0.76, -0.50, 0.18, 0.018 +19660822, -1.82, -0.34, 0.27, 0.018 +19660823, -0.13, 0.13, -0.04, 0.018 +19660824, 1.16, -0.15, -0.10, 0.018 +19660825, -1.26, -0.02, 0.59, 0.018 +19660826, -2.23, -0.69, 0.77, 0.018 +19660829, -2.57, -1.19, 0.85, 0.018 +19660830, 1.61, -0.60, -1.09, 0.018 +19660831, 1.62, 0.07, 0.34, 0.018 +19660901, 0.66, -0.26, -0.06, 0.019 +19660902, -0.33, 0.02, 0.23, 0.019 +19660906, -0.52, 0.12, -0.02, 0.019 +19660907, -0.91, -0.50, 0.44, 0.019 +19660908, -0.37, -0.05, 0.14, 0.019 +19660909, 0.31, 0.12, -0.20, 0.019 +19660912, 2.13, -0.06, -0.66, 0.019 +19660913, 0.58, 0.27, -0.05, 0.019 +19660914, 0.90, -0.39, -0.82, 0.019 +19660915, 1.01, -0.44, -0.27, 0.019 +19660916, -0.04, 0.16, -0.01, 0.019 +19660919, -0.47, 0.28, 0.24, 0.019 +19660920, -0.68, 0.33, 0.29, 0.019 +19660921, -1.69, 0.04, 0.79, 0.019 +19660922, 0.21, -0.26, -0.29, 0.019 +19660923, -0.30, 0.13, 0.17, 0.019 +19660926, 0.21, -0.04, -0.28, 0.019 +19660927, 0.28, -0.13, -0.07, 0.019 +19660928, -1.17, 0.17, 0.71, 0.019 +19660929, -1.07, -0.38, 0.43, 0.019 +19660930, 0.28, -0.16, -0.31, 0.019 +19661003, -2.17, -0.29, 1.12, 0.022 +19661004, 0.07, -1.30, 0.20, 0.022 +19661005, -0.58, -0.53, 0.34, 0.022 +19661006, -1.01, -0.99, 0.64, 0.022 +19661007, -1.26, -0.68, 0.71, 0.022 +19661010, 1.69, -0.71, -1.32, 0.022 +19661011, 0.48, -0.02, 0.59, 0.022 +19661012, 2.63, -1.08, -0.25, 0.022 +19661013, -0.01, 0.83, -0.45, 0.022 +19661014, -0.30, 0.28, 0.30, 0.022 +19661017, 1.09, -0.55, -0.42, 0.022 +19661018, 1.62, -0.37, -0.56, 0.022 +19661019, -0.75, 0.29, 0.54, 0.022 +19661020, -0.31, 0.04, 0.03, 0.022 +19661021, 0.31, -0.50, -0.40, 0.022 +19661024, 0.23, -0.27, -0.01, 0.022 +19661025, 0.51, -0.67, 0.00, 0.022 +19661026, 0.85, -0.06, 0.42, 0.022 +19661027, 0.80, -0.48, 0.87, 0.022 +19661028, 0.04, 0.36, 0.32, 0.022 +19661031, -0.04, 0.14, 0.11, 0.022 +19661101, 0.84, -0.02, -0.38, 0.020 +19661102, 0.13, 0.16, -0.64, 0.020 +19661103, -0.32, 0.31, -0.21, 0.020 +19661104, 0.39, -0.05, -0.31, 0.020 +19661107, -0.05, 0.18, -0.20, 0.020 +19661109, 0.82, 0.17, -0.55, 0.020 +19661110, 0.63, 0.37, -0.52, 0.020 +19661111, 0.10, 0.59, -0.12, 0.020 +19661114, -0.53, 0.38, -0.03, 0.020 +19661115, 0.41, 0.09, -0.30, 0.020 +19661116, 0.86, 0.27, -0.11, 0.020 +19661117, -0.66, 0.44, 0.15, 0.020 +19661118, -0.61, 0.30, 0.06, 0.020 +19661121, -1.37, -0.03, 0.07, 0.020 +19661122, -0.50, -0.09, -0.25, 0.020 +19661123, 0.76, 0.22, -0.38, 0.020 +19661125, 0.79, 0.17, 0.05, 0.020 +19661128, -0.04, 0.11, -0.39, 0.020 +19661129, -0.29, 0.26, -0.22, 0.020 +19661130, 0.08, 0.25, -0.16, 0.020 +19661201, -0.39, 0.33, -0.21, 0.019 +19661202, 0.03, 0.12, -0.06, 0.019 +19661205, 0.07, -0.02, -0.35, 0.019 +19661206, 0.68, -0.34, -0.18, 0.019 +19661207, 1.01, -0.15, -0.61, 0.019 +19661208, 0.37, 0.18, -0.22, 0.019 +19661209, 0.22, 0.19, -0.21, 0.019 +19661212, 0.98, 0.04, -0.39, 0.019 +19661213, -0.28, 0.10, -0.01, 0.019 +19661214, -0.01, 0.73, -0.59, 0.019 +19661215, -1.04, 0.44, 0.35, 0.019 +19661216, 0.02, 0.34, 0.08, 0.019 +19661219, -0.27, 0.13, -0.20, 0.019 +19661220, -0.39, -0.14, 0.24, 0.019 +19661221, 0.52, 0.08, 0.25, 0.019 +19661222, 0.38, 0.09, 0.50, 0.019 +19661223, -0.25, 0.17, 0.49, 0.019 +19661227, -0.54, 0.10, 0.39, 0.019 +19661228, -0.48, -0.27, 0.11, 0.019 +19661229, -0.39, -0.36, 0.06, 0.019 +19661230, -0.08, 0.10, -0.53, 0.019 +19670103, 0.08, 0.92, 0.71, 0.020 +19670104, 0.16, -0.12, 0.25, 0.020 +19670105, 1.30, 0.53, 0.33, 0.020 +19670106, 0.72, 0.68, 0.14, 0.020 +19670109, 0.84, 0.52, 0.36, 0.020 +19670110, 0.00, 0.24, 0.13, 0.020 +19670111, 0.84, 0.18, 0.59, 0.020 +19670112, 0.54, 0.13, 0.24, 0.020 +19670113, 0.68, 0.17, -0.09, 0.020 +19670116, -0.19, 0.34, 0.23, 0.020 +19670117, 1.13, 0.01, -0.33, 0.020 +19670118, 0.52, -0.20, 0.09, 0.020 +19670119, 0.04, 0.20, 0.31, 0.020 +19670120, 0.37, 1.02, -0.13, 0.020 +19670123, 0.34, 0.31, -0.44, 0.020 +19670124, 0.20, 0.35, -0.30, 0.020 +19670125, -0.69, 0.40, -0.22, 0.020 +19670126, 0.03, 0.51, -0.03, 0.020 +19670127, 0.48, 0.46, -0.27, 0.020 +19670130, 0.56, 0.58, 0.07, 0.020 +19670131, -0.08, 0.19, 0.37, 0.020 +19670201, -0.15, 0.32, 0.03, 0.019 +19670202, 0.34, 0.38, 0.18, 0.019 +19670203, 0.71, 0.50, -0.01, 0.019 +19670206, -0.15, 0.24, 0.25, 0.019 +19670207, -0.18, 0.12, -0.28, 0.019 +19670208, 0.88, 0.33, -0.45, 0.019 +19670209, -0.39, -0.33, -0.14, 0.019 +19670210, 0.26, 0.31, -0.13, 0.019 +19670213, 0.14, 0.40, 0.11, 0.019 +19670214, 0.73, 0.12, -0.06, 0.019 +19670215, 0.05, -0.10, -0.35, 0.019 +19670216, -0.43, 0.24, -0.12, 0.019 +19670217, 0.02, 0.04, 0.03, 0.019 +19670220, -0.50, 0.29, -0.09, 0.019 +19670221, 0.00, 0.47, -0.37, 0.019 +19670223, 0.13, 0.00, -0.03, 0.019 +19670224, 0.08, 0.03, -0.02, 0.019 +19670227, -1.10, -0.34, -0.09, 0.019 +19670228, 0.38, 0.29, -0.58, 0.019 +19670301, 0.98, 0.04, -0.05, 0.018 +19670302, 0.52, -0.03, -0.22, 0.018 +19670303, 0.16, 0.27, -0.40, 0.018 +19670306, -0.13, 0.35, 0.29, 0.018 +19670307, 0.16, 0.34, -0.07, 0.018 +19670308, 0.17, 0.31, -0.25, 0.018 +19670309, 0.29, 0.30, 0.01, 0.018 +19670310, 0.37, -0.29, 0.69, 0.018 +19670313, -0.48, 0.00, -0.08, 0.018 +19670314, -0.11, 0.11, -0.19, 0.018 +19670315, 0.89, -0.31, 0.35, 0.018 +19670316, 0.90, -0.39, -0.26, 0.018 +19670317, 0.13, 0.12, -0.07, 0.018 +19670320, -0.01, 0.23, -0.15, 0.018 +19670321, -0.29, -0.07, 0.03, 0.018 +19670322, 0.28, 0.08, -0.16, 0.018 +19670323, 0.68, -0.19, 0.26, 0.018 +19670327, -0.06, 0.22, -0.21, 0.018 +19670328, 0.09, 0.01, 0.15, 0.018 +19670329, -0.13, 0.06, 0.13, 0.018 +19670330, 0.04, 0.30, -0.10, 0.018 +19670331, -0.51, 0.08, 0.58, 0.018 +19670403, -1.13, -0.16, 0.18, 0.016 +19670404, 0.01, 0.37, -0.29, 0.016 +19670405, 0.63, 0.04, 0.05, 0.016 +19670406, 0.20, -0.04, 0.14, 0.016 +19670407, -0.62, -0.25, 0.43, 0.016 +19670410, -1.24, -0.55, 0.38, 0.016 +19670411, 0.71, 0.25, -0.11, 0.016 +19670412, -0.11, 0.10, 0.12, 0.016 +19670413, 0.65, 0.05, -0.35, 0.016 +19670414, 1.01, -0.19, -0.79, 0.016 +19670417, 0.64, -0.26, -0.07, 0.016 +19670418, 0.85, 0.13, -0.09, 0.016 +19670419, 0.12, -0.07, -0.11, 0.016 +19670420, 0.19, 0.26, -0.25, 0.016 +19670421, 0.26, 0.43, -0.21, 0.016 +19670424, 0.27, -0.28, -0.27, 0.016 +19670425, 0.55, -0.17, -0.20, 0.016 +19670426, -0.12, 0.28, -0.43, 0.016 +19670427, 0.81, 0.20, -0.55, 0.016 +19670428, 0.15, 0.30, 0.06, 0.016 +19670501, -0.08, 0.39, -0.24, 0.015 +19670502, -0.02, 0.52, 0.06, 0.015 +19670503, 0.28, 0.51, -0.10, 0.015 +19670504, 0.33, -0.08, -0.26, 0.015 +19670505, 0.12, -0.05, 0.37, 0.015 +19670508, 0.21, -0.33, 0.19, 0.015 +19670509, -1.04, -0.48, 0.67, 0.015 +19670510, -0.13, 0.46, 0.04, 0.015 +19670511, 0.49, 0.59, -0.29, 0.015 +19670512, -0.20, 0.41, -0.10, 0.015 +19670515, -0.74, 0.26, 0.19, 0.015 +19670516, 0.48, 0.16, -0.12, 0.015 +19670517, -0.27, 0.22, 0.24, 0.015 +19670518, -0.19, 0.43, 0.17, 0.015 +19670519, -0.42, 0.20, -0.13, 0.015 +19670522, -0.34, 0.28, -0.22, 0.015 +19670523, -0.43, 0.08, -0.15, 0.015 +19670524, -1.20, -0.42, 0.18, 0.015 +19670525, 0.99, -0.07, -0.22, 0.015 +19670526, -0.11, -0.13, 0.35, 0.015 +19670529, -0.48, 0.23, -0.07, 0.015 +19670531, -1.67, -0.95, 0.05, 0.015 +19670601, 1.18, 0.00, -0.13, 0.012 +19670602, -0.40, 0.44, -0.02, 0.012 +19670605, -1.65, -1.37, 0.08, 0.012 +19670606, 2.02, 0.79, -0.32, 0.012 +19670607, 0.86, 0.43, 0.08, 0.012 +19670608, 0.57, 0.35, -0.05, 0.012 +19670609, 0.26, 0.41, 0.10, 0.012 +19670612, 0.63, 0.51, -0.23, 0.012 +19670613, 0.60, 0.03, 0.05, 0.012 +19670614, -0.17, 0.40, -0.09, 0.012 +19670615, 0.17, 0.47, -0.03, 0.012 +19670616, 0.03, 0.13, 0.19, 0.012 +19670619, 0.03, 0.47, -0.18, 0.012 +19670620, -0.03, 0.32, 0.11, 0.012 +19670621, -0.25, 0.24, 0.06, 0.012 +19670622, -0.20, 0.41, -0.09, 0.012 +19670623, 0.07, 0.38, 0.15, 0.012 +19670626, -0.40, -0.05, 0.25, 0.012 +19670627, -0.34, 0.41, 0.13, 0.012 +19670628, 0.07, 0.56, 0.14, 0.012 +19670629, -0.47, -0.15, 0.32, 0.012 +19670630, -0.14, 0.54, 0.34, 0.012 +19670703, 0.35, 0.36, -0.02, 0.016 +19670705, 0.53, 0.27, -0.22, 0.016 +19670706, -0.06, 0.31, -0.26, 0.016 +19670707, 0.47, 0.57, -0.09, 0.016 +19670710, 0.46, 0.27, 0.20, 0.016 +19670711, 0.43, -0.31, 0.17, 0.016 +19670712, -0.03, 0.20, 0.01, 0.016 +19670713, 0.06, 0.39, 0.12, 0.016 +19670714, 0.37, 0.31, 0.48, 0.016 +19670717, 0.07, 0.06, 0.38, 0.016 +19670718, 0.71, -0.32, 0.66, 0.016 +19670719, 0.09, -0.02, 0.44, 0.016 +19670720, 0.14, -0.34, 0.48, 0.016 +19670721, 0.04, -0.30, 0.18, 0.016 +19670724, -0.37, -0.33, 0.19, 0.016 +19670725, 0.02, 0.36, 0.13, 0.016 +19670726, 0.42, 0.25, -0.20, 0.016 +19670727, 0.34, 0.53, -0.16, 0.016 +19670728, 0.17, 0.36, 0.15, 0.016 +19670731, 0.28, 0.31, -0.17, 0.016 +19670801, 0.62, -0.44, 0.53, 0.014 +19670802, 0.34, -0.46, 0.23, 0.014 +19670803, -0.18, 0.02, -0.23, 0.014 +19670804, 0.26, 0.53, -0.18, 0.014 +19670807, -0.16, 0.17, 0.07, 0.014 +19670808, 0.09, -0.11, 0.40, 0.014 +19670809, 0.11, -0.02, 0.21, 0.014 +19670810, -0.27, -0.05, 0.11, 0.014 +19670811, -0.48, -0.01, 0.14, 0.014 +19670814, -0.50, -0.27, -0.07, 0.014 +19670815, 0.11, 0.01, 0.06, 0.014 +19670816, -0.25, -0.10, 0.07, 0.014 +19670817, 0.13, 0.31, 0.13, 0.014 +19670818, 0.17, 0.21, -0.04, 0.014 +19670821, -0.50, 0.21, -0.01, 0.014 +19670822, -0.54, -0.02, 0.21, 0.014 +19670823, -0.10, -0.02, -0.13, 0.014 +19670824, -0.52, 0.15, 0.04, 0.014 +19670825, -0.42, -0.19, -0.01, 0.014 +19670828, 0.03, 0.15, 0.00, 0.014 +19670829, 0.25, -0.12, 0.25, 0.014 +19670830, 0.28, 0.43, -0.21, 0.014 +19670831, 0.65, 0.07, -0.08, 0.014 +19670901, 0.15, 0.37, 0.04, 0.016 +19670905, 0.53, -0.08, -0.03, 0.016 +19670906, 0.17, 0.20, -0.14, 0.016 +19670907, -0.06, 0.11, 0.05, 0.016 +19670908, 0.01, 0.47, -0.35, 0.016 +19670911, 0.15, 0.24, -0.32, 0.016 +19670912, 0.49, -0.03, -0.01, 0.016 +19670913, 0.97, -0.49, 0.30, 0.016 +19670914, 0.14, 0.04, 0.12, 0.016 +19670915, 0.06, 0.13, -0.12, 0.016 +19670918, 0.26, 0.19, 0.03, 0.016 +19670919, -0.44, -0.10, -0.20, 0.016 +19670920, 0.05, 0.61, -0.02, 0.016 +19670921, 0.56, -0.06, -0.35, 0.016 +19670922, 0.28, 0.41, -0.10, 0.016 +19670925, 0.49, -0.18, -0.49, 0.016 +19670926, -0.87, -0.19, 0.23, 0.016 +19670927, 0.05, 0.38, -0.40, 0.016 +19670928, 0.07, 0.42, -0.59, 0.016 +19670929, -0.01, 0.55, 0.00, 0.016 +19671002, -0.40, 0.24, 0.01, 0.018 +19671003, 0.32, 0.26, -0.51, 0.018 +19671004, -0.13, 0.28, -0.24, 0.018 +19671005, 0.20, 0.22, -0.29, 0.018 +19671006, 0.57, 0.33, -0.41, 0.018 +19671009, 0.20, 0.21, -0.02, 0.018 +19671010, -0.73, -0.29, 0.40, 0.018 +19671011, -0.45, -0.04, -0.08, 0.018 +19671012, -0.61, 0.09, -0.03, 0.018 +19671013, 0.22, 0.33, 0.09, 0.018 +19671016, -0.81, -0.03, -0.02, 0.018 +19671017, -0.19, 0.16, -0.21, 0.018 +19671018, 0.24, 0.11, -0.07, 0.018 +19671019, 0.09, -0.09, -0.58, 0.018 +19671020, -0.12, -0.23, -0.21, 0.018 +19671023, -0.48, -0.21, -0.29, 0.018 +19671024, -0.57, -0.33, -0.01, 0.018 +19671025, 0.14, 0.01, -0.35, 0.018 +19671026, 0.43, 0.45, -0.70, 0.018 +19671027, 0.02, 0.02, -0.04, 0.018 +19671030, -0.17, 0.19, -0.17, 0.018 +19671031, -0.90, -0.22, 0.23, 0.018 +19671101, -1.22, 0.27, -0.08, 0.018 +19671102, -0.49, -0.17, -0.09, 0.018 +19671103, -0.48, 0.49, -0.25, 0.018 +19671106, -0.31, 0.11, -0.24, 0.018 +19671108, -0.38, 0.14, 0.20, 0.018 +19671109, 0.41, -0.37, -0.09, 0.018 +19671110, 0.58, -0.14, 0.09, 0.018 +19671113, -0.31, -0.60, 0.28, 0.018 +19671114, -0.73, -0.90, 0.44, 0.018 +19671115, 0.41, -0.53, -0.24, 0.018 +19671116, 0.95, 0.29, -0.52, 0.018 +19671117, 0.35, 0.64, -0.17, 0.018 +19671120, -1.39, -0.96, -0.04, 0.018 +19671121, 1.71, 0.97, -0.56, 0.018 +19671122, 0.66, 0.53, -0.50, 0.018 +19671124, 0.21, -0.18, -0.14, 0.018 +19671127, 0.35, 0.33, -0.43, 0.018 +19671128, 0.50, 0.12, 0.13, 0.018 +19671129, 0.05, 0.19, 0.22, 0.018 +19671130, -0.45, 0.00, 0.25, 0.018 +19671201, 0.54, 0.55, -0.13, 0.017 +19671204, 0.64, 0.53, -0.08, 0.017 +19671205, 0.11, -0.12, -0.13, 0.017 +19671206, 0.36, 0.13, -0.16, 0.017 +19671207, -0.09, 0.06, 0.38, 0.017 +19671208, -0.09, 0.40, -0.30, 0.017 +19671211, -0.17, 0.78, -0.25, 0.017 +19671212, -0.01, 0.50, -0.36, 0.017 +19671213, 0.43, 0.44, -0.48, 0.017 +19671214, 0.16, 0.39, 0.23, 0.017 +19671215, -0.57, -0.18, 0.51, 0.017 +19671218, -0.29, 0.36, -0.08, 0.017 +19671219, -0.10, 0.29, -0.32, 0.017 +19671220, 0.57, -0.04, 0.02, 0.017 +19671221, 0.25, 0.20, 0.14, 0.017 +19671222, -0.12, 0.42, 0.34, 0.017 +19671226, 0.15, 0.31, 0.27, 0.017 +19671227, 0.67, 0.13, -0.22, 0.017 +19671228, -0.05, -0.09, 0.27, 0.017 +19671229, 0.64, 0.24, 0.02, 0.017 +19680102, -0.26, 0.23, 1.20, 0.018 +19680103, -0.56, -0.09, 0.84, 0.018 +19680104, -0.30, -0.02, 0.71, 0.018 +19680105, 0.64, 0.52, 0.42, 0.018 +19680108, 0.70, 0.12, 0.17, 0.018 +19680109, -0.15, -0.04, -0.06, 0.018 +19680110, 0.14, 0.33, 0.05, 0.018 +19680111, 0.26, 0.89, 0.26, 0.018 +19680112, 0.20, 0.71, -0.15, 0.018 +19680115, -0.15, 0.51, -0.07, 0.018 +19680116, -0.56, 0.54, 0.23, 0.018 +19680117, -0.10, 0.67, -0.08, 0.018 +19680118, -0.01, 0.59, 0.13, 0.018 +19680119, -0.34, 0.09, -0.16, 0.018 +19680122, -1.38, -0.44, 0.25, 0.018 +19680123, -0.51, -0.13, -0.30, 0.018 +19680124, -0.41, 0.24, 0.09, 0.018 +19680125, 0.05, -0.27, -0.02, 0.018 +19680126, 0.21, 0.67, 0.02, 0.018 +19680129, -0.16, 0.02, 0.03, 0.018 +19680130, -0.56, -0.73, 0.75, 0.018 +19680131, -0.83, -0.38, 0.48, 0.018 +19680201, 0.28, -0.51, 0.29, 0.020 +19680202, -0.34, -0.07, 0.36, 0.020 +19680205, -0.47, -0.37, 0.28, 0.020 +19680206, 0.07, -0.10, 0.09, 0.020 +19680207, 0.15, -0.01, 0.04, 0.020 +19680208, -1.42, -0.96, 0.07, 0.020 +19680209, -1.19, -0.68, 0.17, 0.020 +19680213, -1.05, -0.89, 0.28, 0.020 +19680214, 1.25, 0.35, -0.77, 0.020 +19680215, 0.24, 0.54, 0.24, 0.020 +19680216, -0.39, 0.02, 0.34, 0.020 +19680219, 0.35, 0.17, -0.36, 0.020 +19680220, 0.62, 0.44, -0.23, 0.020 +19680221, 0.42, 0.27, -0.47, 0.020 +19680223, -0.48, -0.25, 0.24, 0.020 +19680226, -0.79, -0.62, 0.23, 0.020 +19680227, 0.40, -0.02, -0.11, 0.020 +19680228, -0.54, 0.14, 0.11, 0.020 +19680229, -0.88, -0.44, 0.31, 0.020 +19680301, -0.45, -0.66, 0.21, 0.018 +19680304, -1.55, -1.13, 0.96, 0.018 +19680305, -0.42, -0.97, -0.18, 0.018 +19680306, 1.80, 0.57, -0.25, 0.018 +19680307, -0.16, 0.49, 0.01, 0.018 +19680308, -0.10, -0.12, 0.04, 0.018 +19680311, 1.35, 0.54, -0.29, 0.018 +19680312, 0.18, 0.55, -0.21, 0.018 +19680313, -0.18, 0.34, 0.19, 0.018 +19680314, -2.09, -0.89, 0.19, 0.018 +19680315, 0.77, -0.38, -0.37, 0.018 +19680318, 0.65, 0.59, -0.41, 0.018 +19680319, -0.64, 0.06, 0.28, 0.018 +19680320, -0.08, -0.07, -0.16, 0.018 +19680321, -0.81, -0.25, 0.23, 0.018 +19680322, 0.01, -0.35, 0.17, 0.018 +19680325, -0.13, -0.19, 0.02, 0.018 +19680326, 0.66, 0.23, -0.44, 0.018 +19680327, 0.85, 0.27, -0.50, 0.018 +19680328, -0.08, 0.10, 0.12, 0.018 +19680329, 0.70, 0.11, -0.32, 0.018 +19680401, 2.38, -0.46, -0.79, 0.021 +19680402, 0.20, 0.14, 0.08, 0.021 +19680403, 0.87, -0.17, -0.21, 0.021 +19680404, 0.46, 0.15, 0.14, 0.021 +19680405, -0.54, 0.33, 0.09, 0.021 +19680408, 1.73, 0.00, -0.10, 0.021 +19680410, 0.73, 0.01, -0.14, 0.021 +19680411, 0.95, 0.15, 0.26, 0.021 +19680415, 0.20, 0.60, -0.04, 0.021 +19680416, 0.15, 0.78, 0.05, 0.021 +19680417, 0.30, 0.54, 0.41, 0.021 +19680418, 0.31, 0.40, 0.50, 0.021 +19680419, -1.23, 0.14, -0.45, 0.021 +19680422, -0.49, 0.39, -0.26, 0.021 +19680423, 1.28, 0.53, -0.51, 0.021 +19680424, 0.27, 0.49, -0.02, 0.021 +19680425, 0.34, 0.39, -0.06, 0.021 +19680426, 0.34, 0.26, -0.13, 0.021 +19680429, 0.30, 0.16, 0.06, 0.021 +19680430, 0.14, 0.29, 0.25, 0.021 +19680501, 0.32, 0.09, 0.21, 0.020 +19680502, 0.62, -0.01, -0.13, 0.020 +19680503, 0.08, 0.00, -0.38, 0.020 +19680506, -0.18, 0.24, 0.24, 0.020 +19680507, 0.57, 0.30, 0.35, 0.020 +19680508, 0.06, 0.43, -0.18, 0.020 +19680509, -0.52, -0.11, -0.08, 0.020 +19680510, 0.34, 0.71, 0.10, 0.020 +19680513, -0.17, 0.58, -0.06, 0.020 +19680514, -0.07, 0.19, 0.19, 0.020 +19680515, -0.06, 0.28, 0.03, 0.020 +19680516, -0.44, 0.02, 0.41, 0.020 +19680517, -0.59, 0.30, 0.38, 0.020 +19680520, -0.47, 0.04, 0.08, 0.020 +19680521, 0.58, 0.49, -0.07, 0.020 +19680522, 0.32, 0.64, 0.27, 0.020 +19680523, -0.13, 0.46, -0.23, 0.020 +19680524, 0.31, 0.26, 0.32, 0.020 +19680527, -0.04, 0.79, -0.30, 0.020 +19680528, 0.62, 0.18, -0.47, 0.020 +19680529, 0.32, 0.13, -0.02, 0.020 +19680531, 0.76, 0.09, 0.20, 0.020 +19680603, 1.25, -0.06, -0.33, 0.025 +19680604, 0.53, 0.30, 0.32, 0.025 +19680605, -0.47, -0.19, 0.20, 0.025 +19680606, 0.90, 0.42, 0.01, 0.025 +19680607, 0.67, 0.39, -0.17, 0.025 +19680610, 0.10, -0.02, -0.12, 0.025 +19680611, 0.23, 0.20, 0.28, 0.025 +19680613, -0.44, -0.13, -0.24, 0.025 +19680614, -0.16, -0.08, -0.11, 0.025 +19680617, -1.12, -0.43, -0.02, 0.025 +19680618, -0.12, 0.14, -0.06, 0.025 +19680620, 0.51, -0.29, -0.10, 0.025 +19680621, 0.14, -0.15, 0.26, 0.025 +19680624, -0.39, -0.32, 0.32, 0.025 +19680625, -0.44, -0.35, -0.03, 0.025 +19680627, -0.17, 0.04, -0.04, 0.025 +19680628, -0.34, 0.36, 0.43, 0.025 +19680701, -0.23, 0.01, 0.60, 0.028 +19680702, 0.41, 0.35, -0.41, 0.028 +19680703, 1.25, 0.46, -0.53, 0.028 +19680708, 1.06, 0.29, -0.36, 0.028 +19680709, 0.27, 0.00, 0.27, 0.028 +19680711, 0.10, 0.07, 0.37, 0.028 +19680712, -0.06, 0.14, 0.32, 0.028 +19680715, -0.17, 0.19, 0.35, 0.028 +19680716, -0.54, 0.16, 0.40, 0.028 +19680718, -0.35, -0.07, 0.27, 0.028 +19680719, -0.94, -0.24, 1.09, 0.028 +19680722, -1.43, -0.94, 1.42, 0.028 +19680723, -0.25, -0.35, -0.09, 0.028 +19680725, -1.30, -0.18, 0.88, 0.028 +19680726, 0.27, -0.48, 0.22, 0.028 +19680729, -0.88, -0.63, 0.71, 0.028 +19680730, 0.11, -0.06, -0.10, 0.028 +19680801, -0.54, 0.12, -0.05, 0.023 +19680802, -0.56, 0.02, 0.05, 0.023 +19680805, 0.39, 0.38, -0.34, 0.023 +19680806, 0.45, 0.37, -0.10, 0.023 +19680808, -0.25, 0.05, 0.47, 0.023 +19680809, 0.03, -0.10, 0.19, 0.023 +19680812, 0.99, 0.34, -0.48, 0.023 +19680813, 0.45, 0.04, -0.02, 0.023 +19680815, -0.39, 0.48, 0.30, 0.023 +19680816, 0.59, 0.02, 0.03, 0.023 +19680819, 0.34, 0.34, 0.09, 0.023 +19680820, 0.00, 0.21, -0.13, 0.023 +19680822, -0.32, -0.05, -0.11, 0.023 +19680823, 0.03, 0.34, 0.32, 0.023 +19680826, 0.23, -0.21, 0.28, 0.023 +19680827, -0.19, 0.05, 0.18, 0.023 +19680829, -0.12, -0.15, 0.13, 0.023 +19680830, 0.21, 0.09, 0.18, 0.023 +19680903, 0.37, -0.28, 0.27, 0.025 +19680904, 0.61, -0.07, 0.13, 0.025 +19680905, 0.70, -0.02, -0.27, 0.025 +19680906, 0.42, 0.20, -0.45, 0.025 +19680909, 0.13, 0.43, 0.04, 0.025 +19680910, -0.50, 0.08, 0.44, 0.025 +19680912, -0.20, 0.39, 0.08, 0.025 +19680913, 0.37, 0.36, -0.47, 0.025 +19680916, 0.38, 0.05, 0.05, 0.025 +19680917, 0.24, -0.01, -0.08, 0.025 +19680919, 0.16, 0.22, -0.12, 0.025 +19680920, 0.11, -0.02, 0.57, 0.025 +19680923, 0.56, -0.05, -0.21, 0.025 +19680924, 0.37, 0.38, -0.43, 0.025 +19680926, -0.19, 0.13, 0.19, 0.025 +19680927, 0.08, 0.56, 0.25, 0.025 +19680930, 0.42, 0.23, 0.28, 0.025 +19681001, 0.16, 0.37, 0.26, 0.024 +19681003, 0.34, -0.09, 0.47, 0.024 +19681004, 0.26, -0.42, 0.17, 0.024 +19681007, -0.03, -0.17, -0.07, 0.024 +19681008, -0.05, -0.34, 0.19, 0.024 +19681010, -0.42, 0.21, -0.09, 0.024 +19681011, 0.00, 0.38, 0.05, 0.024 +19681014, 0.16, 0.04, 0.05, 0.024 +19681015, 0.19, 0.14, 0.22, 0.024 +19681017, 0.49, -0.05, -0.16, 0.024 +19681018, 0.69, -0.30, -0.04, 0.024 +19681021, 0.14, -0.09, 0.28, 0.024 +19681022, -0.34, 0.12, 0.21, 0.024 +19681024, -0.63, 0.42, 0.32, 0.024 +19681025, 0.31, 0.00, 0.35, 0.024 +19681028, -0.33, -0.12, 0.13, 0.024 +19681029, -0.57, -0.30, 0.12, 0.024 +19681031, 0.05, -0.25, 0.38, 0.024 +19681101, -0.37, -0.14, 0.04, 0.025 +19681104, 0.01, -0.19, -0.42, 0.025 +19681106, 0.18, 0.06, 0.19, 0.025 +19681107, 0.27, -0.22, -0.42, 0.025 +19681108, 0.52, 0.30, 0.03, 0.025 +19681112, 0.74, 0.21, -0.27, 0.025 +19681113, 0.56, 0.32, -0.35, 0.025 +19681114, 0.10, 0.47, -0.18, 0.025 +19681115, 0.56, 0.16, 0.14, 0.025 +19681118, 0.16, -0.02, 0.23, 0.025 +19681119, 0.29, 0.14, 0.11, 0.025 +19681121, -0.05, 0.33, 0.22, 0.025 +19681122, 0.45, 0.28, -0.01, 0.025 +19681125, 0.26, 0.21, -0.05, 0.025 +19681126, 0.66, -0.12, 0.04, 0.025 +19681127, 0.42, 0.35, -0.28, 0.025 +19681129, 0.56, 0.10, 0.12, 0.025 +19681202, -0.19, 0.46, -0.40, 0.024 +19681203, -0.10, 0.16, -0.16, 0.024 +19681205, -0.28, 0.36, 0.15, 0.024 +19681206, 0.26, 0.27, -0.01, 0.024 +19681209, -0.18, 0.65, -0.18, 0.024 +19681210, -0.19, 0.27, 0.09, 0.024 +19681212, -0.05, 0.23, 0.32, 0.024 +19681213, 0.28, 0.17, 0.25, 0.024 +19681216, -0.40, 0.07, 0.06, 0.024 +19681217, -0.46, -0.11, -0.23, 0.024 +19681219, 0.23, -0.08, -0.22, 0.024 +19681220, -0.49, 0.59, -0.04, 0.024 +19681223, -1.05, 0.19, 0.25, 0.024 +19681224, -0.13, 0.13, -0.11, 0.024 +19681226, 0.12, 0.06, 0.13, 0.024 +19681227, -0.39, 0.19, 0.40, 0.024 +19681230, -1.04, -0.49, 0.01, 0.024 +19681231, 0.08, 0.39, -0.25, 0.024 +19690102, 0.08, 0.30, -0.04, 0.024 +19690103, -0.01, -0.05, -0.02, 0.024 +19690106, -1.51, -0.30, 0.45, 0.024 +19690107, -1.37, -1.00, 0.01, 0.024 +19690108, -0.51, -0.37, -0.07, 0.024 +19690109, 0.40, 0.11, 0.02, 0.024 +19690110, -0.30, -0.07, 0.45, 0.024 +19690113, -0.73, -0.94, 0.47, 0.024 +19690114, 0.73, 0.01, -0.23, 0.024 +19690115, 0.60, 0.54, -0.03, 0.024 +19690116, 0.55, 0.30, 0.06, 0.024 +19690117, -0.10, 0.34, -0.09, 0.024 +19690120, -0.20, 0.43, 0.11, 0.024 +19690121, -0.13, 0.09, -0.02, 0.024 +19690122, 0.39, 0.30, -0.21, 0.024 +19690123, 0.52, 0.43, -0.05, 0.024 +19690124, -0.06, 0.07, 0.01, 0.024 +19690127, -0.01, -0.05, 0.19, 0.024 +19690128, 0.02, -0.05, 0.34, 0.024 +19690129, 0.07, -0.28, 0.64, 0.024 +19690130, -0.03, -0.21, 0.06, 0.024 +19690131, 0.37, -0.38, -0.35, 0.024 +19690203, -0.09, -0.07, 0.43, 0.026 +19690204, 0.00, -0.05, 0.29, 0.026 +19690205, 0.14, -0.38, 0.16, 0.026 +19690206, 0.32, -0.35, -0.15, 0.026 +19690207, 0.09, 0.08, -0.16, 0.026 +19690211, 0.08, 0.12, -0.11, 0.026 +19690212, -0.05, 0.01, -0.39, 0.026 +19690213, 0.03, -0.15, -0.22, 0.026 +19690214, -0.11, 0.00, 0.01, 0.026 +19690217, -1.28, -0.54, 0.63, 0.026 +19690218, -1.20, -0.59, -0.04, 0.026 +19690219, -0.81, -0.21, 0.30, 0.026 +19690220, -0.96, -0.42, 0.06, 0.026 +19690224, -1.27, -0.73, 0.32, 0.026 +19690225, -0.75, -0.46, -0.19, 0.026 +19690226, 0.41, -0.13, -0.33, 0.026 +19690227, -0.47, -0.26, 0.23, 0.026 +19690228, -0.05, -0.08, 0.06, 0.026 +19690303, 0.17, -0.34, -0.18, 0.023 +19690304, 0.99, 0.07, 0.14, 0.023 +19690305, 0.33, 0.09, -0.24, 0.023 +19690306, -1.18, -0.29, 0.63, 0.023 +19690307, -0.18, -0.76, 0.40, 0.023 +19690310, 0.35, 0.13, -0.44, 0.023 +19690311, 0.40, 0.19, 0.09, 0.023 +19690312, -0.29, 0.00, 0.22, 0.023 +19690313, -0.71, -0.22, 0.28, 0.023 +19690314, -0.51, -0.34, 0.21, 0.023 +19690317, 0.21, -0.26, -0.59, 0.023 +19690318, 0.29, 0.37, -0.11, 0.023 +19690319, 0.71, 0.06, -0.25, 0.023 +19690320, 0.62, 0.33, -0.12, 0.023 +19690321, -0.20, 0.32, 0.23, 0.023 +19690324, -0.16, 0.11, -0.01, 0.023 +19690325, 0.12, 0.01, -0.24, 0.023 +19690326, 0.64, -0.19, 0.07, 0.023 +19690327, 0.68, 0.12, -0.15, 0.023 +19690328, 0.39, 0.36, -0.30, 0.023 +19690401, -0.14, 0.07, 0.44, 0.025 +19690402, -0.71, -0.25, 0.31, 0.025 +19690403, -0.09, -0.04, 0.16, 0.025 +19690407, -0.88, -0.24, -0.17, 0.025 +19690408, 0.21, -0.10, 0.37, 0.025 +19690409, 0.79, -0.10, -0.43, 0.025 +19690410, 0.45, -0.07, 0.10, 0.025 +19690411, 0.09, 0.08, 0.08, 0.025 +19690414, -0.14, -0.18, 0.03, 0.025 +19690415, -0.10, -0.13, -0.17, 0.025 +19690416, -0.90, 0.04, 0.36, 0.025 +19690417, 0.11, -0.10, 0.08, 0.025 +19690418, 0.38, -0.33, 0.22, 0.025 +19690421, -0.77, -0.27, 0.23, 0.025 +19690422, 0.16, -0.12, -0.31, 0.025 +19690423, 0.10, 0.28, 0.00, 0.025 +19690424, 0.42, -0.04, -0.04, 0.025 +19690425, 0.45, 0.11, -0.08, 0.025 +19690428, 0.34, -0.06, -0.14, 0.025 +19690429, 0.83, 0.23, -0.50, 0.025 +19690430, 0.86, 0.43, -0.50, 0.025 +19690501, -0.10, 0.35, -0.02, 0.023 +19690502, 0.46, -0.04, 0.09, 0.023 +19690505, 0.45, 0.30, -0.27, 0.023 +19690506, 0.45, -0.09, -0.13, 0.023 +19690507, -0.21, -0.17, 0.33, 0.023 +19690508, 0.34, -0.15, -0.21, 0.023 +19690509, 0.09, -0.15, 0.18, 0.023 +19690512, -0.19, -0.18, 0.07, 0.023 +19690513, 0.40, 0.02, -0.18, 0.023 +19690514, 0.68, -0.39, 0.09, 0.023 +19690515, -0.30, 0.06, 0.21, 0.023 +19690516, 0.02, -0.18, -0.17, 0.023 +19690519, -0.87, 0.22, 0.26, 0.023 +19690520, -0.84, 0.13, 0.22, 0.023 +19690521, 0.42, 0.04, -0.17, 0.023 +19690522, 0.19, -0.20, 0.31, 0.023 +19690523, -0.02, -0.06, -0.10, 0.023 +19690526, -0.20, 0.03, -0.05, 0.023 +19690527, -0.79, -0.05, 0.19, 0.023 +19690528, -0.26, 0.18, -0.32, 0.023 +19690529, 0.23, 0.08, 0.11, 0.023 +19690602, -0.54, 0.02, -0.03, 0.024 +19690603, -0.34, -0.30, 0.11, 0.024 +19690604, -0.05, -0.04, -0.05, 0.024 +19690605, 0.08, -0.12, -0.16, 0.024 +19690606, -0.69, -0.11, -0.19, 0.024 +19690609, -0.98, -0.11, -0.26, 0.024 +19690610, -0.79, -0.04, -0.06, 0.024 +19690611, -1.00, -0.34, 0.22, 0.024 +19690612, -1.42, -0.55, 0.29, 0.024 +19690613, 0.31, -0.25, -0.15, 0.024 +19690616, -0.40, -0.44, 0.06, 0.024 +19690617, -0.52, -0.67, -0.23, 0.024 +19690618, -0.22, -0.14, 0.16, 0.024 +19690619, -0.87, -0.79, 0.09, 0.024 +19690620, -0.74, -0.68, 0.53, 0.024 +19690623, -0.65, -0.94, -0.22, 0.024 +19690624, 1.09, -0.08, -0.53, 0.024 +19690625, -0.41, -0.24, 0.26, 0.024 +19690626, 0.17, -0.32, -0.62, 0.024 +19690627, 0.07, 0.02, -0.14, 0.024 +19690630, 0.46, 0.25, -0.17, 0.024 +19690701, 0.46, 0.35, -0.59, 0.025 +19690702, 0.86, 0.37, -0.46, 0.025 +19690703, 0.74, 0.41, -0.35, 0.025 +19690707, -0.68, -0.04, 0.55, 0.025 +19690708, -1.38, 0.04, 0.46, 0.025 +19690709, -0.80, -0.22, 0.10, 0.025 +19690710, -1.61, -0.41, 0.44, 0.025 +19690711, 0.29, -0.60, 0.05, 0.025 +19690714, -1.37, -0.25, 0.69, 0.025 +19690715, -0.43, -0.53, 0.13, 0.025 +19690716, 1.07, 0.08, -0.60, 0.025 +19690717, 0.53, -0.20, -0.07, 0.025 +19690718, -0.78, 0.23, 0.34, 0.025 +19690722, -1.57, 0.11, 0.63, 0.025 +19690723, -0.53, -0.67, -0.42, 0.025 +19690724, -0.42, -0.17, 0.38, 0.025 +19690725, -1.03, -0.29, 0.61, 0.025 +19690728, -2.26, -1.59, 1.47, 0.025 +19690729, -0.93, -0.64, 0.41, 0.025 +19690730, 0.52, 0.13, -1.09, 0.025 +19690731, 2.22, 0.50, -1.26, 0.025 +19690801, 1.97, 0.64, -0.43, 0.024 +19690804, -0.53, -0.02, 0.31, 0.024 +19690805, 0.42, -0.37, -0.41, 0.024 +19690806, 0.65, 0.24, -0.57, 0.024 +19690807, 0.09, -0.05, 0.03, 0.024 +19690808, -0.03, -0.08, 0.19, 0.024 +19690811, -0.59, 0.07, 0.12, 0.024 +19690812, -0.82, -0.19, 0.27, 0.024 +19690813, 0.03, -0.30, -0.51, 0.024 +19690814, 0.75, 0.37, -0.99, 0.024 +19690815, 0.81, -0.19, -0.38, 0.024 +19690818, 0.72, 0.40, -0.60, 0.024 +19690819, 0.54, 0.34, -0.43, 0.024 +19690820, -0.02, -0.06, 0.18, 0.024 +19690821, 0.25, 0.04, -0.27, 0.024 +19690822, 0.65, -0.03, -0.25, 0.024 +19690825, -0.93, 0.20, 0.62, 0.024 +19690826, -0.74, -0.14, 0.15, 0.024 +19690827, 0.27, 0.11, -0.39, 0.024 +19690828, 0.41, -0.21, -0.38, 0.024 +19690829, 0.74, -0.04, 0.00, 0.024 +19690902, -0.11, -0.08, 0.42, 0.030 +19690903, -0.71, -0.17, 0.41, 0.030 +19690904, -0.87, 0.01, -0.15, 0.030 +19690905, -0.65, -0.05, 0.01, 0.030 +19690908, -1.07, -0.15, 0.38, 0.030 +19690909, 0.74, -0.24, -0.46, 0.030 +19690910, 1.64, -0.10, -0.77, 0.030 +19690911, -0.70, 0.50, 0.13, 0.030 +19690912, 0.05, -0.13, -0.13, 0.030 +19690915, 0.62, 0.32, -0.67, 0.030 +19690916, 0.12, 0.19, -0.66, 0.030 +19690917, -0.31, 0.11, -0.44, 0.030 +19690918, 0.28, 0.19, -0.55, 0.030 +19690919, 0.35, 0.40, -0.94, 0.030 +19690922, 0.41, -0.09, -0.67, 0.030 +19690923, -0.01, 0.18, 0.10, 0.030 +19690924, -0.19, -0.11, 0.13, 0.030 +19690925, -0.75, 0.15, 0.66, 0.030 +19690926, -0.70, 0.15, 0.18, 0.030 +19690929, -0.73, 0.12, 0.09, 0.030 +19690930, -0.32, 0.08, -0.38, 0.030 +19691001, -0.63, 0.12, 0.23, 0.026 +19691002, 0.86, -0.08, -0.76, 0.026 +19691003, -0.08, -0.17, 0.18, 0.026 +19691006, 0.17, -0.01, -0.49, 0.026 +19691007, -0.23, 0.05, 0.06, 0.026 +19691008, -0.53, -0.12, 0.11, 0.026 +19691009, 0.33, -0.19, -0.49, 0.026 +19691010, 0.65, 0.26, -0.65, 0.026 +19691013, 1.25, 0.84, -0.72, 0.026 +19691014, 1.28, 0.10, 0.08, 0.026 +19691015, 0.04, 0.55, 0.20, 0.026 +19691016, 0.69, 0.28, -0.08, 0.026 +19691017, -0.09, 0.47, -0.12, 0.026 +19691020, 0.30, 0.36, 0.02, 0.026 +19691021, 0.79, 0.40, -0.22, 0.026 +19691022, 0.61, 0.08, 0.21, 0.026 +19691023, -0.33, 0.05, 0.08, 0.026 +19691024, 0.69, 0.05, -0.88, 0.026 +19691027, -0.10, 0.42, -0.12, 0.026 +19691028, -0.31, -0.14, 0.17, 0.026 +19691029, -0.90, 0.01, 0.52, 0.026 +19691030, 0.17, 0.17, -0.28, 0.026 +19691031, 0.34, 0.06, -0.03, 0.026 +19691103, -0.07, -0.23, 0.25, 0.027 +19691104, 0.07, 0.20, -0.49, 0.027 +19691105, 0.46, -0.11, -0.39, 0.027 +19691106, 0.14, -0.14, -0.18, 0.027 +19691107, 0.65, -0.26, -0.06, 0.027 +19691110, 0.06, -0.17, 0.05, 0.027 +19691111, -0.37, -0.04, 0.29, 0.027 +19691112, -0.17, 0.11, -0.16, 0.027 +19691113, -0.59, -0.38, 0.35, 0.027 +19691114, -0.43, -0.12, 0.13, 0.027 +19691117, -0.79, -0.28, 0.15, 0.027 +19691118, -0.09, -0.44, -0.07, 0.027 +19691119, -0.55, -0.30, 0.55, 0.027 +19691120, -1.12, -0.52, 0.37, 0.027 +19691121, -0.69, -0.19, 0.35, 0.027 +19691124, -1.08, -0.35, -0.10, 0.027 +19691125, -0.25, 0.16, -0.54, 0.027 +19691126, 0.36, 0.21, -0.95, 0.027 +19691128, 0.64, 0.26, -0.81, 0.027 +19691201, -0.76, -0.40, 0.23, 0.029 +19691202, -0.68, -0.07, -0.25, 0.029 +19691203, -1.23, -0.58, -0.02, 0.029 +19691204, 0.40, -0.03, -0.95, 0.029 +19691205, -0.38, -0.48, 0.44, 0.029 +19691208, -1.27, -0.42, 0.20, 0.029 +19691209, -0.20, -0.45, -0.48, 0.029 +19691210, -0.07, -0.17, -0.73, 0.029 +19691211, 0.07, -0.10, -0.24, 0.029 +19691212, 0.30, 0.04, -0.28, 0.029 +19691215, -0.29, 0.10, -0.13, 0.029 +19691216, -1.00, -0.47, -0.06, 0.029 +19691217, -0.54, -0.31, -0.07, 0.029 +19691218, 1.59, -0.19, -0.79, 0.029 +19691219, 0.82, 0.13, 0.01, 0.029 +19691222, -1.00, -0.32, 0.35, 0.029 +19691223, -0.53, -0.60, 0.29, 0.029 +19691224, 1.17, 0.49, -0.15, 0.029 +19691226, 0.81, 0.10, -0.04, 0.029 +19691229, -0.75, -0.27, -0.04, 0.029 +19691230, 0.39, -0.23, -0.16, 0.029 +19691231, 0.55, 0.49, -0.26, 0.029 +19700102, 1.18, 1.32, 0.97, 0.029 +19700105, 0.59, 0.67, 0.76, 0.029 +19700106, -0.74, 0.10, 0.28, 0.029 +19700107, -0.15, 0.38, -0.35, 0.029 +19700108, 0.04, 0.17, -0.18, 0.029 +19700109, -0.31, 0.19, 0.08, 0.029 +19700112, -0.80, -0.10, -0.04, 0.029 +19700113, 0.05, -0.17, -0.50, 0.029 +19700114, -0.25, -0.13, -0.28, 0.029 +19700115, -0.04, -0.09, -0.64, 0.029 +19700116, -0.82, -0.10, 0.70, 0.029 +19700119, -1.31, 0.42, 1.06, 0.029 +19700120, 0.17, 0.30, -0.39, 0.029 +19700121, 0.06, 0.06, 0.15, 0.029 +19700122, 0.11, 0.15, -0.11, 0.029 +19700123, -1.06, -0.14, 0.42, 0.029 +19700126, -1.13, -0.30, 0.42, 0.029 +19700127, -0.67, 0.21, -0.32, 0.029 +19700128, -0.99, 0.41, -0.14, 0.029 +19700129, -1.33, -0.09, 0.44, 0.029 +19700130, -0.88, -0.20, 0.93, 0.029 +19700202, 0.82, -0.64, -0.13, 0.032 +19700203, 1.26, -0.16, -0.30, 0.032 +19700204, -0.74, -0.31, 0.73, 0.032 +19700205, -0.41, -0.17, -0.06, 0.032 +19700206, 0.59, 0.17, -0.32, 0.032 +19700209, 0.82, -0.07, -0.22, 0.032 +19700210, -0.94, 0.35, 0.10, 0.032 +19700211, 0.90, -0.16, -0.83, 0.032 +19700212, -0.21, 0.27, 0.28, 0.032 +19700213, -0.18, -0.02, 0.63, 0.032 +19700216, -0.07, 0.20, 0.38, 0.032 +19700217, -0.20, -0.07, 0.19, 0.032 +19700218, 1.19, -0.51, -0.05, 0.032 +19700219, 0.28, -0.31, 0.53, 0.032 +19700220, 0.32, -0.62, 0.87, 0.032 +19700224, -0.03, -0.10, 0.47, 0.032 +19700225, 1.52, -0.18, 0.22, 0.032 +19700226, -0.53, 0.08, 0.64, 0.032 +19700227, 0.69, 0.11, 0.41, 0.032 +19700302, 0.13, -0.16, 0.70, 0.027 +19700303, 0.58, -0.43, 0.61, 0.027 +19700304, -0.25, 0.15, 0.61, 0.027 +19700305, -0.02, 0.17, 0.37, 0.027 +19700306, -0.69, 0.23, 0.26, 0.027 +19700309, -1.08, 0.00, 0.79, 0.027 +19700310, 0.14, -0.26, -0.33, 0.027 +19700311, -0.14, -0.12, 0.46, 0.027 +19700312, -0.51, -0.22, 0.39, 0.027 +19700313, -0.63, -0.29, 0.73, 0.027 +19700316, -1.15, -0.13, 0.36, 0.027 +19700317, 0.39, -0.15, -0.46, 0.027 +19700318, 0.26, -0.13, 0.14, 0.027 +19700319, -0.29, -0.32, 0.37, 0.027 +19700320, -0.52, -0.49, 0.66, 0.027 +19700323, -0.14, -0.18, -0.07, 0.027 +19700324, 1.01, -0.51, -0.44, 0.027 +19700325, 2.14, 0.12, -0.52, 0.027 +19700326, 0.10, 0.30, -0.10, 0.027 +19700330, -0.28, 0.10, -0.30, 0.027 +19700331, -0.05, -0.02, 0.11, 0.027 +19700401, 0.45, -0.07, 0.03, 0.023 +19700402, -0.39, 0.12, 0.11, 0.023 +19700403, -0.49, 0.01, 0.98, 0.023 +19700406, -0.83, -0.28, 1.16, 0.023 +19700407, -0.36, -0.12, 0.59, 0.023 +19700408, -0.19, -0.25, 0.09, 0.023 +19700409, -0.10, -0.65, 0.43, 0.023 +19700410, -0.44, -0.41, -0.29, 0.023 +19700413, -0.90, -0.87, 1.05, 0.023 +19700414, -0.86, -0.52, 0.34, 0.023 +19700415, -0.31, -0.20, 0.30, 0.023 +19700416, -1.14, -0.29, 0.70, 0.023 +19700417, -0.33, -0.25, 0.10, 0.023 +19700420, 0.22, 0.01, -0.55, 0.023 +19700421, -0.57, -0.31, 0.68, 0.023 +19700422, -1.48, -0.60, 1.06, 0.023 +19700423, -1.65, -0.64, 0.52, 0.023 +19700424, -0.51, -0.52, 0.18, 0.023 +19700427, -1.84, -0.87, 0.91, 0.023 +19700428, -1.47, -0.61, 0.60, 0.023 +19700429, 2.11, 0.16, -2.30, 0.023 +19700430, -0.40, 0.18, 0.63, 0.023 +19700501, -0.14, -0.02, 0.17, 0.025 +19700504, -2.60, -0.42, 1.79, 0.025 +19700505, -1.13, -0.53, 0.57, 0.025 +19700506, 1.20, 0.38, -0.95, 0.025 +19700507, 0.59, 0.03, -0.08, 0.025 +19700508, -0.52, -0.03, 0.29, 0.025 +19700511, -1.11, -0.02, 0.64, 0.025 +19700512, -0.93, -0.21, 0.54, 0.025 +19700513, -1.76, -0.52, 1.01, 0.025 +19700514, -1.53, -0.87, 0.63, 0.025 +19700515, 1.83, -0.33, -0.95, 0.025 +19700518, 0.13, -0.11, 0.18, 0.025 +19700519, -2.01, -0.15, 1.33, 0.025 +19700520, -2.66, -0.52, 1.69, 0.025 +19700521, -2.01, -0.95, 1.03, 0.025 +19700522, -0.15, -0.68, -0.65, 0.025 +19700525, -3.21, -1.64, 1.75, 0.025 +19700526, -1.32, -0.53, 0.58, 0.025 +19700527, 5.30, 1.35, -3.73, 0.025 +19700528, 2.63, 0.99, -1.20, 0.025 +19700529, 2.70, 0.12, -1.33, 0.025 +19700601, 1.83, 1.06, -1.72, 0.026 +19700602, 0.12, 0.55, -0.36, 0.026 +19700603, 1.11, 0.88, -0.92, 0.026 +19700604, -1.58, -0.26, 1.37, 0.026 +19700605, -1.70, -0.34, 0.34, 0.026 +19700608, 0.10, 0.01, 0.13, 0.026 +19700609, 0.01, -0.01, -0.45, 0.026 +19700610, -1.03, -0.01, 0.24, 0.026 +19700611, -1.42, -0.23, 1.03, 0.026 +19700612, -0.42, -0.31, -0.26, 0.026 +19700615, 0.30, 0.13, -0.54, 0.026 +19700616, 2.28, -0.47, -1.26, 0.026 +19700617, -0.27, -0.13, 0.58, 0.026 +19700618, 0.56, -0.33, -0.69, 0.026 +19700619, 0.66, -0.20, -0.03, 0.026 +19700622, -0.67, -0.12, 0.15, 0.026 +19700623, -2.49, -0.01, 1.20, 0.026 +19700624, -1.15, -0.81, 0.58, 0.026 +19700625, -0.05, -0.58, -0.03, 0.026 +19700626, -0.82, -0.18, 0.46, 0.026 +19700629, -0.87, -0.35, 0.30, 0.026 +19700630, -0.30, -0.57, 0.56, 0.026 +19700701, 0.33, -0.55, -0.26, 0.024 +19700702, -0.26, -0.48, 0.54, 0.024 +19700706, -1.58, -0.28, 0.81, 0.024 +19700707, -0.87, -0.33, 0.15, 0.024 +19700708, 2.38, -0.67, -1.29, 0.024 +19700709, 1.61, 0.18, -0.02, 0.024 +19700710, 0.71, 0.05, 0.14, 0.024 +19700713, -0.07, 0.17, 0.74, 0.024 +19700714, -0.15, -0.15, -0.25, 0.024 +19700715, 0.98, -0.30, -0.25, 0.024 +19700716, 1.33, -0.31, 0.12, 0.024 +19700717, 1.67, -0.10, 0.12, 0.024 +19700720, 0.13, 0.25, 0.44, 0.024 +19700721, -1.01, 0.00, 0.30, 0.024 +19700722, 0.12, 0.53, 0.10, 0.024 +19700723, 1.22, -0.40, -0.20, 0.024 +19700724, -0.23, 0.59, -0.17, 0.024 +19700727, -0.19, 0.34, 0.24, 0.024 +19700728, 0.26, 0.21, -0.37, 0.024 +19700729, 0.37, 0.48, -0.31, 0.024 +19700730, 0.06, 0.12, -0.20, 0.024 +19700731, -0.06, 0.13, 0.46, 0.024 +19700803, -1.22, 0.21, 0.47, 0.025 +19700804, 0.17, -0.28, -0.12, 0.025 +19700805, -0.08, -0.10, 0.19, 0.025 +19700806, -0.18, -0.40, 0.47, 0.025 +19700807, 0.26, -0.19, 0.42, 0.025 +19700810, -1.44, 0.01, 0.42, 0.025 +19700811, -0.57, -0.21, 0.32, 0.025 +19700812, -0.49, 0.12, 0.66, 0.025 +19700813, -0.90, 0.08, 0.76, 0.025 +19700814, 0.41, -0.32, 0.14, 0.025 +19700817, 0.17, -0.25, -0.52, 0.025 +19700818, 1.06, -0.52, -0.19, 0.025 +19700819, 0.90, -0.55, 0.39, 0.025 +19700820, 0.75, -0.77, 0.03, 0.025 +19700821, 2.09, -0.17, -0.16, 0.025 +19700824, 2.34, 0.65, -1.43, 0.025 +19700825, 0.38, 0.98, -0.83, 0.025 +19700826, 0.31, 0.96, -0.09, 0.025 +19700827, -0.12, 0.80, 0.01, 0.025 +19700828, 0.99, 0.70, -0.25, 0.025 +19700831, -0.35, 0.71, 0.27, 0.025 +19700901, -0.64, 0.04, 0.29, 0.025 +19700902, -0.02, 0.37, -0.40, 0.025 +19700903, 1.46, 0.21, -0.93, 0.025 +19700904, 1.07, 0.68, -0.01, 0.025 +19700908, 0.36, 0.68, -0.66, 0.025 +19700909, -0.30, 0.22, -0.16, 0.025 +19700910, -0.58, 0.33, 0.22, 0.025 +19700911, 0.35, 1.00, -0.32, 0.025 +19700914, -0.51, 0.10, 0.19, 0.025 +19700915, -0.98, -0.30, -0.12, 0.025 +19700916, 0.57, 0.43, -0.67, 0.025 +19700917, 0.80, 0.72, -0.72, 0.025 +19700918, 0.44, 0.59, 0.09, 0.025 +19700921, -0.84, -0.12, 0.32, 0.025 +19700922, -0.36, -0.08, -0.02, 0.025 +19700923, 1.35, 0.22, -0.63, 0.025 +19700924, 1.43, 1.39, -1.38, 0.025 +19700925, 0.17, 0.13, -0.01, 0.025 +19700928, -0.06, 0.69, -0.54, 0.025 +19700929, 0.58, 0.76, -0.04, 0.025 +19700930, -0.12, -0.02, 0.35, 0.025 +19701001, 0.12, -0.26, -0.11, 0.021 +19701002, 1.05, 0.40, -0.30, 0.021 +19701005, 1.44, -0.17, 0.01, 0.021 +19701006, 0.23, -0.86, 0.92, 0.021 +19701007, -0.03, 0.19, 0.07, 0.021 +19701008, -1.15, -0.38, 0.47, 0.021 +19701009, -0.97, 0.31, 0.09, 0.021 +19701012, -0.98, 0.00, 0.37, 0.021 +19701013, -0.26, 0.04, -0.35, 0.021 +19701014, 0.13, -0.21, -0.05, 0.021 +19701015, 0.41, -0.47, 0.25, 0.021 +19701016, -0.60, -0.63, 0.58, 0.021 +19701019, -1.41, -0.46, 0.63, 0.021 +19701020, 0.57, -0.36, -1.06, 0.021 +19701021, -0.08, -0.27, 0.13, 0.021 +19701022, -0.43, -0.29, 0.13, 0.021 +19701023, 0.49, 0.15, -0.52, 0.021 +19701026, -0.53, 0.14, -0.09, 0.021 +19701027, -0.30, -0.30, -0.14, 0.021 +19701028, 0.32, -0.34, -0.88, 0.021 +19701029, -0.18, -0.41, 0.26, 0.021 +19701030, -0.07, -0.27, -0.09, 0.021 +19701102, 0.32, -0.07, -0.18, 0.023 +19701103, 0.85, 0.25, 0.33, 0.023 +19701104, 0.18, -0.28, 0.20, 0.023 +19701105, -0.20, -0.18, 0.06, 0.023 +19701106, 0.09, -0.32, 0.24, 0.023 +19701109, 0.50, -0.24, -0.24, 0.023 +19701110, 0.15, -0.01, -0.08, 0.023 +19701111, 0.27, -0.07, 0.36, 0.023 +19701112, -1.11, -0.68, 0.42, 0.023 +19701113, -0.96, -0.27, 0.28, 0.023 +19701116, -0.17, -0.39, -0.21, 0.023 +19701117, 0.05, -0.33, 0.25, 0.023 +19701118, -0.77, -0.70, 0.32, 0.023 +19701119, 0.09, -0.46, -0.18, 0.023 +19701120, 0.98, -0.05, -0.33, 0.023 +19701123, 0.63, -0.34, 0.09, 0.023 +19701124, 0.58, -0.36, 0.26, 0.023 +19701125, 0.42, -0.04, 0.35, 0.023 +19701127, 0.98, -0.17, -0.36, 0.023 +19701130, 1.67, 0.77, -0.10, 0.023 +19701201, 0.29, -0.07, 0.19, 0.019 +19701202, 1.22, 0.10, -0.43, 0.019 +19701203, 0.45, 0.06, 0.49, 0.019 +19701204, 0.57, 0.10, 0.21, 0.019 +19701207, 0.58, 0.18, -0.25, 0.019 +19701208, -0.52, -0.16, 0.05, 0.019 +19701209, 0.01, -0.30, -0.03, 0.019 +19701210, 0.34, -0.10, -0.07, 0.019 +19701211, 0.37, 0.17, -0.15, 0.019 +19701214, -0.57, -0.46, 0.35, 0.019 +19701215, -0.18, -0.24, 0.13, 0.019 +19701216, 0.12, 0.22, 0.02, 0.019 +19701217, 0.31, 0.14, 0.02, 0.019 +19701218, 0.21, 0.38, -0.04, 0.019 +19701221, -0.29, 0.12, 0.04, 0.019 +19701222, 0.12, 0.18, 0.09, 0.019 +19701223, 0.15, 0.38, 0.09, 0.019 +19701224, 0.69, 0.96, -0.15, 0.019 +19701228, 0.53, 0.22, 0.05, 0.019 +19701229, 1.11, 0.49, 0.25, 0.019 +19701230, 0.18, 0.12, 0.08, 0.019 +19701231, -0.10, 0.26, -0.09, 0.019 +19710104, -0.99, 0.54, 0.69, 0.019 +19710105, 0.82, 0.66, 0.02, 0.019 +19710106, 0.74, 0.88, 0.49, 0.019 +19710107, 0.05, 0.09, 0.54, 0.019 +19710108, -0.13, 0.06, 0.41, 0.019 +19710111, -0.11, 0.50, 0.15, 0.019 +19710112, 0.98, 0.79, 0.38, 0.019 +19710113, -0.09, 0.38, -0.21, 0.019 +19710114, 0.29, 0.02, 0.15, 0.019 +19710115, 0.28, 0.41, 0.26, 0.019 +19710118, 0.35, 0.25, 0.25, 0.019 +19710119, 0.29, -0.14, -0.04, 0.019 +19710120, 0.08, 0.35, -0.05, 0.019 +19710121, 0.47, 0.48, -0.57, 0.019 +19710122, 0.67, -0.01, -0.30, 0.019 +19710125, 0.47, 0.46, -0.54, 0.019 +19710126, 0.28, 0.24, -0.66, 0.019 +19710127, -0.74, -0.02, 0.00, 0.019 +19710128, 0.37, 0.65, 0.21, 0.019 +19710129, 0.66, 0.23, 0.13, 0.019 +19710201, 0.67, 0.69, -0.20, 0.017 +19710202, 0.06, 0.07, -0.04, 0.017 +19710203, 0.30, 0.72, -0.38, 0.017 +19710204, 0.14, 0.14, -0.26, 0.017 +19710205, 0.45, 0.18, -0.03, 0.017 +19710208, 0.60, 0.86, 0.04, 0.017 +19710209, -0.04, -0.27, -0.10, 0.017 +19710210, -0.11, -0.20, -0.01, 0.017 +19710211, 0.52, 0.27, 0.48, 0.017 +19710212, 0.59, 0.58, -0.05, 0.017 +19710216, 0.24, 0.01, -0.10, 0.017 +19710217, -0.48, -0.11, 0.31, 0.017 +19710218, -0.68, -0.27, 0.21, 0.017 +19710219, -0.93, -0.52, 0.18, 0.017 +19710222, -1.06, -0.84, -0.30, 0.017 +19710223, 0.50, 0.51, -0.40, 0.017 +19710224, 0.74, 0.56, -0.30, 0.017 +19710225, 0.16, -0.25, 0.10, 0.017 +19710226, -0.25, -0.25, -0.43, 0.017 +19710301, 0.30, 0.23, -0.26, 0.013 +19710302, 0.05, 0.32, 0.16, 0.013 +19710303, 0.01, 0.32, -0.19, 0.013 +19710304, 1.05, 0.35, -0.43, 0.013 +19710305, 1.06, 0.24, -0.25, 0.013 +19710308, 0.48, 0.50, -0.38, 0.013 +19710309, 0.14, 0.46, -0.45, 0.013 +19710310, -0.12, 0.18, -0.42, 0.013 +19710311, -0.02, -0.42, 0.36, 0.013 +19710312, 0.16, -0.14, -0.12, 0.013 +19710315, 1.14, 0.19, -0.42, 0.013 +19710316, 0.46, -0.17, -0.16, 0.013 +19710317, 0.01, -0.03, -0.46, 0.013 +19710318, 0.11, 0.43, -0.06, 0.013 +19710319, -0.18, 0.02, -0.04, 0.013 +19710322, -0.40, -0.22, 0.11, 0.013 +19710323, -0.33, 0.14, -0.09, 0.013 +19710324, -0.61, -0.01, -0.02, 0.013 +19710325, 0.02, -0.06, -0.04, 0.013 +19710326, 0.38, 0.19, -0.21, 0.013 +19710329, 0.08, -0.26, -0.19, 0.013 +19710330, 0.21, -0.06, -0.10, 0.013 +19710331, 0.09, 0.22, -0.16, 0.013 +19710401, 0.06, -0.01, -0.23, 0.013 +19710402, 0.20, 0.06, -0.31, 0.013 +19710405, 0.17, -0.10, 0.12, 0.013 +19710406, 0.59, -0.23, -0.04, 0.013 +19710407, 0.43, -0.02, 0.38, 0.013 +19710408, 0.14, 0.13, 0.05, 0.013 +19710412, 0.67, -0.20, -0.03, 0.013 +19710413, 0.04, 0.03, 0.00, 0.013 +19710414, 0.35, 0.18, 0.39, 0.013 +19710415, 0.14, -0.19, 0.55, 0.013 +19710416, 0.00, -0.08, 0.40, 0.013 +19710419, 0.41, -0.33, 0.11, 0.013 +19710420, -0.49, -0.49, -0.03, 0.013 +19710421, -0.27, 0.04, -0.09, 0.013 +19710422, 0.29, 0.07, 0.15, 0.013 +19710423, 0.50, 0.15, -0.37, 0.013 +19710426, 0.00, 0.53, 0.11, 0.013 +19710427, 0.44, 0.14, -0.19, 0.013 +19710428, 0.34, 0.11, -0.26, 0.013 +19710429, -0.25, -0.39, -0.01, 0.013 +19710430, -0.65, 0.13, -0.02, 0.013 +19710503, -0.57, 0.23, -0.18, 0.015 +19710504, 0.55, 0.21, -0.03, 0.015 +19710505, -0.03, -0.08, -0.17, 0.015 +19710506, -0.58, -0.40, 0.00, 0.015 +19710507, -0.32, -0.11, -0.12, 0.015 +19710510, -0.49, -0.20, 0.21, 0.015 +19710511, 0.29, -0.06, 0.10, 0.015 +19710512, 0.23, -0.12, -0.13, 0.015 +19710513, -0.20, 0.09, -0.41, 0.015 +19710514, -0.42, 0.16, 0.09, 0.015 +19710517, -1.52, -0.44, 0.17, 0.015 +19710518, 0.05, -0.25, -0.18, 0.015 +19710519, 0.23, -0.15, 0.08, 0.015 +19710520, 0.25, 0.07, -0.20, 0.015 +19710521, -0.35, -0.04, -0.09, 0.015 +19710524, -0.83, -0.05, -0.28, 0.015 +19710525, -0.65, -0.14, -0.35, 0.015 +19710526, 0.15, 0.05, -0.12, 0.015 +19710527, -0.11, -0.08, 0.05, 0.015 +19710528, 0.27, 0.21, 0.04, 0.015 +19710601, 0.61, -0.06, -0.08, 0.017 +19710602, 0.84, 0.33, -0.24, 0.017 +19710603, 0.18, 0.44, -0.12, 0.017 +19710604, 0.25, 0.04, -0.18, 0.017 +19710607, -0.16, 0.13, -0.15, 0.017 +19710608, -0.79, -0.17, 0.28, 0.017 +19710609, -0.07, -0.31, -0.15, 0.017 +19710610, 0.29, -0.10, -0.21, 0.017 +19710611, 0.34, -0.32, -0.26, 0.017 +19710614, -0.81, -0.16, -0.10, 0.017 +19710615, 0.02, -0.46, -0.21, 0.017 +19710616, 0.16, -0.28, -0.46, 0.017 +19710617, -0.03, -0.30, -0.06, 0.017 +19710618, -1.54, -0.60, 0.08, 0.017 +19710621, -1.21, -0.53, 0.14, 0.017 +19710622, -0.30, -0.10, -0.01, 0.017 +19710623, 0.86, 0.36, -0.40, 0.017 +19710624, -0.17, 0.16, 0.20, 0.017 +19710625, -0.20, 0.13, 0.07, 0.017 +19710628, -0.26, 0.03, -0.14, 0.017 +19710629, 1.11, 0.20, 0.09, 0.017 +19710630, 0.92, 0.08, -0.10, 0.017 +19710701, 0.10, 0.13, -0.04, 0.019 +19710702, 0.04, 0.15, -0.18, 0.019 +19710706, 0.06, 0.27, -0.28, 0.019 +19710707, 0.35, 0.27, -0.09, 0.019 +19710708, 0.33, -0.26, -0.06, 0.019 +19710709, 0.34, -0.05, -0.14, 0.019 +19710712, 0.11, -0.13, 0.08, 0.019 +19710713, -1.29, 0.02, 0.20, 0.019 +19710714, -0.17, 0.13, -0.03, 0.019 +19710715, 0.03, 0.10, 0.00, 0.019 +19710716, -0.21, 0.10, 0.14, 0.019 +19710719, -0.24, -0.12, -0.01, 0.019 +19710720, 0.37, -0.26, 0.08, 0.019 +19710721, -0.08, -0.07, -0.15, 0.019 +19710722, -0.25, -0.25, 0.15, 0.019 +19710723, -0.17, 0.02, 0.02, 0.019 +19710726, -0.34, -0.09, 0.20, 0.019 +19710727, -0.99, -0.38, 0.23, 0.019 +19710728, -0.84, -0.32, -0.05, 0.019 +19710729, -1.27, -0.63, -0.02, 0.019 +19710730, -0.47, -0.26, 0.09, 0.019 +19710802, 0.49, 0.34, 0.75, 0.021 +19710803, -1.64, -0.58, 0.02, 0.021 +19710804, -0.59, -0.07, -0.08, 0.021 +19710805, 0.24, -0.04, -0.04, 0.021 +19710806, 0.26, 0.07, -0.21, 0.021 +19710809, -0.77, -0.18, -0.08, 0.021 +19710810, 0.00, -0.36, 0.05, 0.021 +19710811, 1.22, -0.03, -0.26, 0.021 +19710812, 1.41, 0.13, -0.38, 0.021 +19710813, -0.30, 0.11, 0.32, 0.021 +19710816, 3.62, 0.92, 1.19, 0.021 +19710817, 0.66, -0.20, 0.31, 0.021 +19710818, -1.34, 0.20, -0.27, 0.021 +19710819, -0.47, -0.27, 0.24, 0.021 +19710820, 0.17, 0.03, -0.03, 0.021 +19710823, 0.89, -0.63, 0.46, 0.021 +19710824, 0.92, -0.37, 0.51, 0.021 +19710825, 0.09, 0.17, 0.04, 0.021 +19710826, -0.12, 0.03, -0.07, 0.021 +19710827, 0.23, 0.12, 0.17, 0.021 +19710830, -0.92, 0.35, 0.15, 0.021 +19710831, -0.49, 0.13, -0.20, 0.021 +19710901, 0.04, 0.00, 0.15, 0.017 +19710902, 0.25, 0.06, 0.05, 0.017 +19710903, 1.39, 0.11, 0.11, 0.017 +19710907, 0.49, 0.26, 0.09, 0.017 +19710908, 0.20, 0.15, -0.42, 0.017 +19710909, -0.48, 0.13, -0.25, 0.017 +19710910, -0.35, 0.18, -0.23, 0.017 +19710913, -0.36, -0.05, -0.02, 0.017 +19710914, -0.76, 0.01, -0.10, 0.017 +19710915, 0.36, -0.20, -0.26, 0.017 +19710916, -0.18, 0.19, -0.22, 0.017 +19710917, 0.30, -0.19, -0.21, 0.017 +19710920, -0.32, -0.19, -0.25, 0.017 +19710921, -0.32, 0.11, -0.10, 0.017 +19710922, -0.89, -0.26, -0.05, 0.017 +19710923, -0.10, -0.14, -0.15, 0.017 +19710924, -0.18, 0.40, -0.15, 0.017 +19710927, -0.57, -0.09, -0.36, 0.017 +19710928, 0.19, -0.10, -0.02, 0.017 +19710929, 0.01, 0.17, -0.41, 0.017 +19710930, 0.46, -0.08, -0.13, 0.017 +19711001, 0.61, 0.20, -0.24, 0.017 +19711004, 0.26, 0.08, -0.02, 0.017 +19711005, -0.12, -0.04, -0.21, 0.017 +19711006, 0.73, -0.15, 0.25, 0.017 +19711007, 0.21, 0.04, 0.14, 0.017 +19711008, -0.62, -0.04, 0.16, 0.017 +19711011, -0.22, 0.08, 0.12, 0.017 +19711012, 0.35, -0.08, -0.02, 0.017 +19711013, -0.51, 0.16, -0.10, 0.017 +19711014, -0.92, -0.33, 0.13, 0.017 +19711015, -0.42, -0.11, -0.11, 0.017 +19711018, -0.51, -0.18, 0.06, 0.017 +19711019, -0.42, -0.33, -0.29, 0.017 +19711020, -1.38, -0.09, 0.08, 0.017 +19711021, -0.01, -0.06, -0.12, 0.017 +19711022, -0.05, 0.16, -0.19, 0.017 +19711025, -0.44, -0.05, -0.09, 0.017 +19711026, -0.52, -0.51, 0.11, 0.017 +19711027, -1.07, -0.58, -0.11, 0.017 +19711028, 0.12, -0.30, 0.15, 0.017 +19711029, 0.47, 0.22, -0.18, 0.017 +19711101, -1.48, -0.06, -0.12, 0.018 +19711102, 0.27, -0.45, -0.07, 0.018 +19711103, 1.70, -0.29, -0.17, 0.018 +19711104, 0.00, 0.28, -0.12, 0.018 +19711105, -0.28, -0.26, -0.09, 0.018 +19711108, -0.09, -0.03, -0.27, 0.018 +19711109, 0.07, 0.01, -0.23, 0.018 +19711110, -1.14, -0.01, -0.33, 0.018 +19711111, -1.38, -0.21, 0.33, 0.018 +19711112, -0.04, -0.24, -0.01, 0.018 +19711115, -0.36, 0.10, -0.05, 0.018 +19711116, 0.91, -0.37, -0.44, 0.018 +19711117, 0.07, -0.36, -0.05, 0.018 +19711118, -0.74, -0.05, 0.25, 0.018 +19711119, -0.61, -0.55, 0.19, 0.018 +19711122, -1.00, -0.59, -0.22, 0.018 +19711123, -0.80, -0.81, -0.14, 0.018 +19711124, 0.17, -0.08, 0.06, 0.018 +19711126, 1.81, -0.05, -0.14, 0.018 +19711129, 1.81, 0.75, 0.20, 0.018 +19711130, 0.74, 0.37, -0.25, 0.018 +19711201, 1.73, 0.53, -0.28, 0.017 +19711202, 0.29, 0.07, -0.19, 0.017 +19711203, 1.17, -0.03, -0.12, 0.017 +19711206, -0.46, 0.37, 0.55, 0.017 +19711207, 0.43, 0.14, -0.42, 0.017 +19711208, 0.14, 0.28, -0.23, 0.017 +19711209, 0.02, 0.17, -0.28, 0.017 +19711210, 0.81, 0.42, 0.09, 0.017 +19711213, 0.37, 0.43, 0.02, 0.017 +19711214, -0.40, -0.15, -0.13, 0.017 +19711215, 0.82, -0.06, 0.18, 0.017 +19711216, 1.10, -0.02, -0.13, 0.017 +19711217, 0.50, 0.20, -0.11, 0.017 +19711220, 1.22, -0.06, -0.08, 0.017 +19711221, 0.23, -0.12, -0.16, 0.017 +19711222, -0.59, 0.15, 0.24, 0.017 +19711223, -0.44, -0.05, 0.24, 0.017 +19711227, 0.14, -0.21, 0.11, 0.017 +19711228, 0.92, -0.37, 0.16, 0.017 +19711229, 0.32, 0.24, 0.29, 0.017 +19711230, -0.33, 0.24, 0.06, 0.017 +19711231, 0.40, 0.95, -0.29, 0.017 +19720103, -0.37, 0.63, 0.64, 0.014 +19720104, 0.39, 0.39, 0.35, 0.014 +19720105, 0.97, 0.34, 0.57, 0.014 +19720106, 0.44, 0.46, -0.13, 0.014 +19720107, -0.01, 0.26, 0.04, 0.014 +19720110, -0.04, 0.48, 0.23, 0.014 +19720111, 0.39, 0.49, 0.14, 0.014 +19720112, -0.07, -0.20, -0.17, 0.014 +19720113, -0.59, 0.02, -0.17, 0.014 +19720114, 0.40, 0.37, -0.13, 0.014 +19720117, 0.33, 0.30, 0.13, 0.014 +19720118, 0.38, 0.24, 0.15, 0.014 +19720119, -0.15, 0.16, -0.14, 0.014 +19720120, -0.08, -0.09, -0.25, 0.014 +19720121, -0.19, 0.31, -0.14, 0.014 +19720124, -1.09, 0.07, 0.26, 0.014 +19720125, 0.16, -0.03, -0.23, 0.014 +19720126, -0.16, 0.42, 0.11, 0.014 +19720127, 1.10, 0.42, 0.01, 0.014 +19720128, 0.73, 0.23, 0.35, 0.014 +19720131, -0.06, 0.56, 0.27, 0.014 +19720201, 0.14, 0.53, -0.38, 0.012 +19720202, 0.62, 0.57, -0.78, 0.012 +19720203, -0.02, -0.05, -0.65, 0.012 +19720204, 0.36, -0.07, 0.23, 0.012 +19720207, -0.35, -0.01, 0.39, 0.012 +19720208, 0.13, -0.02, -0.20, 0.012 +19720209, 0.72, 0.11, -0.14, 0.012 +19720210, 0.03, -0.20, 0.27, 0.012 +19720211, -0.40, 0.17, -0.14, 0.012 +19720214, -0.40, 0.01, 0.02, 0.012 +19720215, 0.45, 0.26, -0.07, 0.012 +19720216, 0.49, 0.00, -0.08, 0.012 +19720217, -0.04, 0.05, -0.15, 0.012 +19720218, -0.24, 0.15, -0.28, 0.012 +19720222, -0.01, 0.11, 0.10, 0.012 +19720223, 0.12, 0.07, -0.20, 0.012 +19720224, 0.15, 0.01, -0.20, 0.012 +19720225, 0.63, -0.10, -0.32, 0.012 +19720228, 0.06, -0.26, 0.26, 0.012 +19720229, 0.41, 0.01, -0.34, 0.012 +19720301, 0.80, 0.04, -0.59, 0.012 +19720302, 0.05, 0.06, -0.21, 0.012 +19720303, 0.58, 0.15, -0.35, 0.012 +19720306, 0.75, -0.18, 0.29, 0.012 +19720307, 0.12, -0.25, -0.05, 0.012 +19720308, 0.18, 0.61, -0.33, 0.012 +19720309, 0.02, 0.42, -0.21, 0.012 +19720310, -0.54, 0.13, 0.04, 0.012 +19720313, -0.95, -0.11, 0.51, 0.012 +19720314, 0.29, 0.01, 0.15, 0.012 +19720315, 0.07, -0.19, 0.03, 0.012 +19720316, -0.28, -0.22, -0.05, 0.012 +19720317, 0.27, -0.30, -0.18, 0.012 +19720320, -0.38, -0.58, -0.01, 0.012 +19720321, -0.94, -0.50, 0.00, 0.012 +19720322, 0.16, -0.04, 0.09, 0.012 +19720323, 0.95, 0.22, -0.16, 0.012 +19720324, -0.21, 0.04, -0.20, 0.012 +19720327, -0.21, 0.06, -0.15, 0.012 +19720328, -0.10, 0.15, -0.25, 0.012 +19720329, -0.59, 0.33, -0.28, 0.012 +19720330, 0.61, -0.10, 0.19, 0.012 +19720403, 0.23, -0.10, -0.11, 0.014 +19720404, 0.61, -0.14, 0.14, 0.014 +19720405, 0.82, 0.15, -0.31, 0.014 +19720406, 0.40, 0.14, -0.02, 0.014 +19720407, 0.26, 0.08, 0.05, 0.014 +19720410, -0.17, 0.34, 0.07, 0.014 +19720411, 0.36, 0.24, 0.09, 0.014 +19720412, 0.35, 0.26, -0.10, 0.014 +19720413, -0.27, -0.09, -0.14, 0.014 +19720414, 0.03, 0.24, -0.15, 0.014 +19720417, -0.26, -0.10, 0.27, 0.014 +19720418, 0.17, -0.13, 0.13, 0.014 +19720419, -0.63, -0.45, 0.50, 0.014 +19720420, -0.18, 0.13, 0.11, 0.014 +19720421, -0.16, -0.01, 0.19, 0.014 +19720424, -0.66, 0.20, -0.19, 0.014 +19720425, -0.99, -0.25, -0.26, 0.014 +19720426, -0.24, -0.11, 0.03, 0.014 +19720427, 0.10, -0.23, 0.04, 0.014 +19720428, 0.51, -0.09, -0.15, 0.014 +19720501, -0.91, -0.19, 0.17, 0.014 +19720502, -0.59, -0.20, -0.02, 0.014 +19720503, -0.23, -0.71, 0.15, 0.014 +19720504, 0.23, -0.37, -0.24, 0.014 +19720505, 0.36, -0.10, -0.31, 0.014 +19720508, -0.51, -0.37, 0.08, 0.014 +19720509, -1.45, -0.67, -0.11, 0.014 +19720510, 0.70, 0.18, -0.04, 0.014 +19720511, 0.41, 0.24, 0.01, 0.014 +19720512, 0.69, 0.26, 0.00, 0.014 +19720515, 0.50, 0.31, -0.36, 0.014 +19720516, -0.23, -0.08, 0.09, 0.014 +19720517, 0.20, -0.09, -0.18, 0.014 +19720518, 0.91, -0.05, -0.58, 0.014 +19720519, 0.92, -0.22, -0.24, 0.014 +19720522, 0.55, -0.31, -0.42, 0.014 +19720523, 0.03, -0.08, -0.49, 0.014 +19720524, 0.41, -0.13, -0.27, 0.014 +19720525, 0.21, -0.05, -0.31, 0.014 +19720526, 0.16, 0.25, -0.08, 0.014 +19720530, -0.34, -0.23, 0.33, 0.014 +19720531, -0.73, -0.19, 0.11, 0.014 +19720601, 0.22, 0.10, -0.08, 0.013 +19720602, 0.11, 0.28, -0.30, 0.013 +19720605, -0.80, 0.01, -0.05, 0.013 +19720606, -0.56, 0.16, -0.40, 0.013 +19720607, -0.51, 0.00, -0.11, 0.013 +19720608, -0.30, -0.06, 0.02, 0.013 +19720609, -0.46, 0.00, 0.10, 0.013 +19720612, 0.07, -0.06, -0.05, 0.013 +19720613, 0.43, -0.14, -0.20, 0.013 +19720614, 0.76, 0.12, -0.50, 0.013 +19720615, -0.07, -0.18, -0.22, 0.013 +19720616, -0.09, 0.06, 0.09, 0.013 +19720619, -0.16, 0.22, -0.05, 0.013 +19720620, 0.36, -0.20, -0.09, 0.013 +19720621, 0.15, -0.22, -0.33, 0.013 +19720622, -0.17, -0.11, 0.01, 0.013 +19720623, -0.42, 0.15, -0.08, 0.013 +19720626, -0.70, 0.21, 0.02, 0.013 +19720627, -0.12, -0.22, 0.07, 0.013 +19720628, -0.36, 0.08, -0.26, 0.013 +19720629, -0.20, 0.01, -0.24, 0.013 +19720630, 0.39, 0.20, 0.04, 0.013 +19720703, 0.34, 0.01, 0.11, 0.016 +19720705, 0.55, -0.07, -0.14, 0.016 +19720706, 0.76, -0.35, -0.35, 0.016 +19720707, -0.32, 0.17, -0.23, 0.016 +19720710, -0.55, -0.05, 0.19, 0.016 +19720711, -0.75, -0.04, 0.21, 0.016 +19720712, -0.53, -0.44, 0.46, 0.016 +19720713, -0.63, -0.15, 0.32, 0.016 +19720714, 0.47, -0.18, -0.09, 0.016 +19720717, -0.92, -0.15, 0.69, 0.016 +19720718, -0.09, -0.61, 0.30, 0.016 +19720719, 0.23, -0.03, -0.05, 0.016 +19720720, -0.34, -0.20, 0.28, 0.016 +19720721, 0.72, -0.04, -0.16, 0.016 +19720724, 1.08, 0.13, -0.52, 0.016 +19720725, -0.31, 0.02, 0.00, 0.016 +19720726, -0.10, -0.05, -0.19, 0.016 +19720727, -0.34, -0.42, 0.16, 0.016 +19720728, 0.03, -0.28, -0.04, 0.016 +19720731, -0.07, -0.28, -0.11, 0.016 +19720801, 0.93, -0.31, -0.54, 0.012 +19720802, 0.83, -0.34, -0.32, 0.012 +19720803, 0.74, -0.47, -0.23, 0.012 +19720804, 0.34, -0.08, -0.26, 0.012 +19720807, 0.11, -0.17, -0.03, 0.012 +19720808, 0.07, -0.27, -0.13, 0.012 +19720809, 0.12, 0.06, -0.05, 0.012 +19720810, 0.22, 0.02, 0.03, 0.012 +19720811, 0.82, -0.20, 0.06, 0.012 +19720814, 0.43, -0.23, 0.45, 0.012 +19720815, -0.43, -0.01, 0.67, 0.012 +19720816, -0.28, -0.19, 0.70, 0.012 +19720817, -0.22, -0.01, 0.70, 0.012 +19720818, 0.41, -0.14, 0.26, 0.012 +19720821, -0.08, -0.26, 0.81, 0.012 +19720822, 0.50, -0.68, 1.03, 0.012 +19720823, -0.15, 0.04, 0.41, 0.012 +19720824, -1.07, 0.14, 0.46, 0.012 +19720825, -0.27, -0.01, 0.17, 0.012 +19720828, -0.47, -0.07, 0.23, 0.012 +19720829, 0.13, -0.34, 0.09, 0.012 +19720830, 0.13, -0.22, 0.14, 0.012 +19720831, 0.44, -0.21, -0.02, 0.012 +19720901, 0.40, 0.10, -0.15, 0.017 +19720905, -0.29, 0.05, 0.06, 0.017 +19720906, -0.60, -0.11, 0.25, 0.017 +19720907, -0.34, -0.19, 0.35, 0.017 +19720908, -0.14, -0.19, 0.35, 0.017 +19720911, -0.69, -0.42, 0.30, 0.017 +19720912, -0.95, -0.15, 0.33, 0.017 +19720913, 0.33, -0.15, -0.15, 0.017 +19720914, 0.02, -0.04, -0.13, 0.017 +19720915, -0.10, -0.06, 0.05, 0.017 +19720918, -0.20, -0.11, 0.28, 0.017 +19720919, -0.06, -0.17, 0.20, 0.017 +19720920, -0.06, -0.22, -0.19, 0.017 +19720921, -0.19, -0.13, -0.10, 0.017 +19720922, 0.06, -0.17, 0.25, 0.017 +19720925, -0.46, -0.13, -0.02, 0.017 +19720926, 0.09, -0.19, -0.12, 0.017 +19720927, 1.38, -0.25, -0.65, 0.017 +19720928, 0.60, -0.22, -0.43, 0.017 +19720929, 0.11, 0.03, -0.03, 0.017 +19721002, -0.32, -0.03, 0.23, 0.018 +19721003, 0.07, -0.42, 0.10, 0.018 +19721004, -0.26, -0.63, 0.74, 0.018 +19721005, -1.11, -0.11, 0.64, 0.018 +19721006, 0.63, -0.19, -0.23, 0.018 +19721009, 0.22, 0.15, -0.08, 0.018 +19721010, 0.10, 0.09, -0.05, 0.018 +19721011, -0.46, -0.20, 0.13, 0.018 +19721012, -0.84, -0.15, 0.41, 0.018 +19721013, -0.68, 0.15, 0.18, 0.018 +19721016, -1.05, 0.24, 0.19, 0.018 +19721017, 0.60, -0.57, 0.28, 0.018 +19721018, 0.57, -0.28, -0.17, 0.018 +19721019, -0.12, -0.13, -0.13, 0.018 +19721020, 1.02, -0.37, -0.26, 0.018 +19721023, 0.95, -0.14, -0.19, 0.018 +19721024, 0.31, -0.20, -0.10, 0.018 +19721025, -0.04, -0.05, 0.12, 0.018 +19721026, 0.34, 0.11, -0.06, 0.018 +19721027, -0.29, 0.30, -0.16, 0.018 +19721030, -0.04, -0.07, -0.04, 0.018 +19721031, 0.94, -0.30, -0.26, 0.018 +19721101, 1.02, -0.36, -0.15, 0.019 +19721102, 0.47, -0.32, 0.11, 0.019 +19721103, 0.84, -0.15, 0.16, 0.019 +19721106, -0.17, 0.11, 0.54, 0.019 +19721108, -0.49, 0.00, 0.41, 0.019 +19721109, 0.06, -0.37, 0.63, 0.019 +19721110, 0.30, 0.06, 0.59, 0.019 +19721113, 0.09, -0.31, 0.43, 0.019 +19721114, 0.83, -0.68, 0.06, 0.019 +19721115, -0.34, 0.21, 0.01, 0.019 +19721116, 0.50, -0.25, 0.02, 0.019 +19721117, 0.31, 0.00, 0.31, 0.019 +19721120, 0.01, 0.07, 0.34, 0.019 +19721121, 0.46, -0.04, 0.26, 0.019 +19721122, 0.59, -0.06, 0.29, 0.019 +19721124, 0.27, -0.32, 0.83, 0.019 +19721127, -0.38, 0.04, 0.25, 0.019 +19721128, -0.19, 0.51, 0.25, 0.019 +19721129, 0.02, 0.22, -0.20, 0.019 +19721130, 0.26, 0.59, -0.48, 0.019 +19721201, 0.65, 0.30, -0.21, 0.020 +19721204, 0.31, 0.29, -0.26, 0.020 +19721205, -0.21, -0.06, -0.05, 0.020 +19721206, 0.32, 0.15, -0.13, 0.020 +19721207, 0.41, -0.18, -0.32, 0.020 +19721208, 0.19, 0.07, -0.70, 0.020 +19721211, 0.19, -0.17, -0.22, 0.020 +19721212, -0.41, -0.33, 0.19, 0.020 +19721213, -0.19, -0.53, 0.08, 0.020 +19721214, -0.33, -0.31, 0.10, 0.020 +19721215, 0.05, -0.04, -0.26, 0.020 +19721218, -1.08, -0.02, -0.04, 0.020 +19721219, -0.41, -0.03, -0.02, 0.020 +19721220, -0.36, -0.18, 0.04, 0.020 +19721221, -0.66, 0.13, 0.04, 0.020 +19721222, 0.54, -0.18, 0.06, 0.020 +19721226, 0.21, -0.45, 0.10, 0.020 +19721227, 0.40, -0.60, -0.19, 0.020 +19721229, 1.09, 0.26, -0.50, 0.020 +19730102, 0.87, 0.88, -0.02, 0.021 +19730103, 0.35, 0.18, 0.13, 0.021 +19730104, -0.23, 0.11, 0.15, 0.021 +19730105, 0.30, 0.00, -0.09, 0.021 +19730108, -0.03, -0.13, 0.31, 0.021 +19730109, -0.09, -0.21, 0.32, 0.021 +19730110, -0.26, -0.27, 0.61, 0.021 +19730111, 0.55, -0.53, 0.04, 0.021 +19730112, -0.85, -0.44, 0.08, 0.021 +19730115, -0.84, -0.30, 0.26, 0.021 +19730116, -0.36, -0.25, -0.02, 0.021 +19730117, 0.37, -0.22, 0.14, 0.021 +19730118, 0.13, -0.22, -0.08, 0.021 +19730119, -0.19, -0.22, -0.46, 0.021 +19730122, -0.53, -0.09, 0.09, 0.021 +19730123, -0.16, -0.36, -0.04, 0.021 +19730124, -1.39, -0.24, 0.13, 0.021 +19730126, -0.37, -0.51, 0.29, 0.021 +19730129, -0.51, -0.19, 0.23, 0.021 +19730130, -0.17, -0.36, 0.26, 0.021 +19730131, 0.12, -0.29, 0.45, 0.021 +19730201, -1.16, -0.16, 0.16, 0.022 +19730202, -0.41, -0.06, -0.08, 0.022 +19730205, -0.19, -0.27, -0.12, 0.022 +19730206, 0.19, -0.32, -0.17, 0.022 +19730207, -0.77, 0.09, -0.16, 0.022 +19730208, -0.44, 0.01, -0.44, 0.022 +19730209, 1.35, -0.18, -0.41, 0.022 +19730212, 1.07, -0.14, -0.23, 0.022 +19730213, 0.51, -0.32, -0.01, 0.022 +19730214, -1.41, 0.11, 0.43, 0.022 +19730215, -0.69, -0.11, 0.16, 0.022 +19730216, 0.36, -0.42, 0.18, 0.022 +19730220, 0.25, -0.47, 0.40, 0.022 +19730221, -0.74, -0.39, 0.55, 0.022 +19730222, -0.30, -0.38, 0.23, 0.022 +19730223, -1.08, -0.18, 0.54, 0.022 +19730226, -0.88, -0.53, 0.59, 0.022 +19730227, -1.15, -0.19, 0.65, 0.022 +19730228, 0.62, -0.35, -0.40, 0.022 +19730301, -0.70, 0.04, 0.46, 0.021 +19730302, 0.86, -0.82, -0.16, 0.021 +19730305, 0.37, 0.06, -0.46, 0.021 +19730306, 1.26, -0.19, -0.23, 0.021 +19730307, 0.37, 0.29, -0.38, 0.021 +19730308, -0.21, 0.09, 0.21, 0.021 +19730309, -0.36, 0.17, 0.07, 0.021 +19730312, -0.03, -0.19, 0.17, 0.021 +19730313, 0.42, -0.55, 0.19, 0.021 +19730314, 0.26, -0.54, 0.19, 0.021 +19730315, -0.71, -0.11, 0.41, 0.021 +19730316, -0.52, 0.08, 0.10, 0.021 +19730319, -1.23, -0.05, 0.41, 0.021 +19730320, -0.33, -0.40, 0.32, 0.021 +19730321, -1.29, 0.01, 1.05, 0.021 +19730322, -1.68, -0.36, 0.74, 0.021 +19730323, 0.00, -0.26, 0.19, 0.021 +19730326, 0.75, -0.24, -0.21, 0.021 +19730327, 1.43, -0.21, -0.51, 0.021 +19730328, 0.03, 0.06, -0.02, 0.021 +19730329, 0.98, -0.33, 0.08, 0.021 +19730330, -0.92, 0.60, 0.08, 0.021 +19730402, -1.20, 0.02, 0.64, 0.026 +19730403, -1.00, -0.08, 0.37, 0.026 +19730404, -0.63, -0.03, 0.34, 0.026 +19730405, -0.47, -0.44, 0.29, 0.026 +19730406, 0.70, -0.36, -0.24, 0.026 +19730409, 1.26, -0.82, 0.05, 0.026 +19730410, 1.11, -0.58, -0.03, 0.026 +19730411, 0.39, -0.36, 0.33, 0.026 +19730412, -0.09, 0.06, 0.37, 0.026 +19730413, -0.42, 0.23, 0.26, 0.026 +19730416, -0.56, 0.16, 0.22, 0.026 +19730417, -0.59, -0.26, 0.78, 0.026 +19730418, 0.34, -0.70, 0.07, 0.026 +19730419, 0.53, -0.17, 0.20, 0.026 +19730423, -0.58, -0.03, 0.02, 0.026 +19730424, -1.51, -0.16, 0.62, 0.026 +19730425, -1.56, -0.31, 1.04, 0.026 +19730426, 0.32, -0.36, 0.03, 0.026 +19730427, -1.54, 0.24, 0.49, 0.026 +19730430, -0.24, -0.31, 0.16, 0.026 +19730501, 0.02, -0.31, 0.02, 0.023 +19730502, 1.18, -0.42, -0.43, 0.023 +19730503, 1.46, -0.79, -0.12, 0.023 +19730504, 0.76, 0.17, -0.55, 0.023 +19730507, -0.43, 0.03, 0.16, 0.023 +19730508, 0.58, -0.11, -0.11, 0.023 +19730509, -0.51, 0.58, -0.34, 0.023 +19730510, -0.68, 0.13, 0.00, 0.023 +19730511, -1.17, 0.14, 0.25, 0.023 +19730514, -2.19, -0.13, 0.85, 0.023 +19730515, 0.42, -1.10, -0.02, 0.023 +19730516, -0.13, -0.37, 0.40, 0.023 +19730517, -0.89, -0.12, 0.30, 0.023 +19730518, -1.88, -1.06, 0.27, 0.023 +19730521, -1.49, -2.43, 0.13, 0.023 +19730522, 0.75, -0.56, -0.26, 0.023 +19730523, 0.40, -0.52, -0.08, 0.023 +19730524, 2.79, -0.96, -0.91, 0.023 +19730525, 0.94, 1.38, -0.41, 0.023 +19730529, -0.32, 0.60, -0.14, 0.023 +19730530, -1.53, -0.16, 0.64, 0.023 +19730531, -0.91, -0.44, 0.54, 0.023 +19730601, -0.95, -0.19, 0.68, 0.024 +19730604, -1.14, -0.49, 0.55, 0.024 +19730605, 1.36, -0.69, -0.70, 0.024 +19730606, -0.27, -0.03, -0.12, 0.024 +19730607, 1.30, -0.68, -0.26, 0.024 +19730608, 1.08, 0.08, -0.20, 0.024 +19730611, -0.31, 0.32, 0.38, 0.024 +19730612, 1.44, -0.54, -0.56, 0.024 +19730613, -0.49, 1.10, 0.06, 0.024 +19730614, -1.06, 0.28, 0.11, 0.024 +19730615, -1.26, 0.00, 0.71, 0.024 +19730618, -1.44, -0.14, 0.30, 0.024 +19730619, 0.24, -0.42, -0.27, 0.024 +19730620, 0.38, -0.17, -0.34, 0.024 +19730621, -1.14, 0.19, 0.49, 0.024 +19730622, 0.40, -0.51, 0.38, 0.024 +19730625, -1.43, -0.58, 1.10, 0.024 +19730626, 0.89, -0.61, -0.37, 0.024 +19730627, 0.30, -0.18, -0.11, 0.024 +19730628, 0.99, -0.17, -0.55, 0.024 +19730629, -0.34, 0.39, 0.11, 0.024 +19730702, -1.20, 0.52, 0.58, 0.030 +19730703, -0.92, 0.29, 0.91, 0.030 +19730705, -0.18, -0.14, 0.19, 0.030 +19730706, -0.43, 0.24, 0.36, 0.030 +19730709, 0.80, -0.40, -0.32, 0.030 +19730710, 1.38, 0.20, -0.62, 0.030 +19730711, 2.17, 0.33, -0.72, 0.030 +19730712, -0.06, 0.95, -0.42, 0.030 +19730713, -1.09, 1.04, 0.10, 0.030 +19730716, 1.50, 0.09, -1.14, 0.030 +19730717, 0.28, 0.78, -0.53, 0.030 +19730718, 0.79, 0.75, -0.50, 0.030 +19730719, 0.37, 0.77, -0.69, 0.030 +19730720, 0.66, 0.68, -0.60, 0.030 +19730723, 0.29, 0.53, -0.13, 0.030 +19730724, 0.55, -0.03, -0.55, 0.030 +19730725, 1.36, 0.28, -0.98, 0.030 +19730726, 0.11, 0.31, -0.28, 0.030 +19730727, -0.24, 0.01, 0.03, 0.030 +19730730, -0.33, -0.14, 0.26, 0.030 +19730731, -0.85, 0.20, 0.20, 0.030 +19730801, -1.31, -0.25, 0.40, 0.030 +19730802, -0.12, -0.08, -0.22, 0.030 +19730803, -0.10, 0.26, -0.20, 0.030 +19730806, 0.27, 0.13, -0.36, 0.030 +19730807, -0.17, 0.08, -0.25, 0.030 +19730808, -0.97, 0.03, 0.23, 0.030 +19730809, -0.03, -0.31, 0.11, 0.030 +19730810, -0.80, -0.20, 0.33, 0.030 +19730813, -1.08, -0.27, 0.26, 0.030 +19730814, -0.93, -0.16, 0.31, 0.030 +19730815, 0.24, -0.27, 0.00, 0.030 +19730816, -0.52, 0.29, 0.50, 0.030 +19730817, 0.02, -0.12, 0.31, 0.030 +19730820, -0.75, -0.20, 0.45, 0.030 +19730821, -0.78, 0.02, 0.00, 0.030 +19730822, -0.48, -0.27, 0.04, 0.030 +19730823, 1.28, -0.43, -0.52, 0.030 +19730824, -0.14, 0.07, 0.19, 0.030 +19730827, 0.68, -0.34, -0.54, 0.030 +19730828, 0.47, -0.32, 0.05, 0.030 +19730829, 0.89, -0.15, 0.00, 0.030 +19730830, 0.01, 0.27, 0.19, 0.030 +19730831, 0.50, 0.16, -0.17, 0.030 +19730904, 0.37, 0.05, 0.30, 0.036 +19730905, 0.19, 0.01, 0.06, 0.036 +19730906, 0.48, -0.16, 0.49, 0.036 +19730907, -0.18, 0.47, 0.12, 0.036 +19730910, -0.88, 0.54, 0.42, 0.036 +19730911, -0.58, 0.03, 0.19, 0.036 +19730912, -0.24, -0.01, 0.01, 0.036 +19730913, 0.29, 0.00, -0.65, 0.036 +19730914, 0.89, -0.04, -0.75, 0.036 +19730917, -0.04, 0.53, 0.23, 0.036 +19730918, -0.23, 0.15, 0.32, 0.036 +19730919, 1.93, -0.24, -0.72, 0.036 +19730920, 0.92, 0.22, -0.08, 0.036 +19730921, 0.51, 0.20, 0.55, 0.036 +19730924, 0.29, 0.38, 0.83, 0.036 +19730925, 0.50, -0.06, 0.33, 0.036 +19730926, 0.70, 0.27, 0.28, 0.036 +19730927, 0.23, 0.04, 0.05, 0.036 +19730928, -0.48, 0.41, 0.15, 0.036 +19731001, -0.16, 0.55, 0.70, 0.028 +19731002, 0.58, 0.67, -0.13, 0.028 +19731003, 0.08, 0.71, 0.62, 0.028 +19731004, -0.39, 0.19, 0.43, 0.028 +19731005, 1.19, -0.06, -0.26, 0.028 +19731008, 0.44, 0.33, -0.19, 0.028 +19731009, -0.10, 0.06, -0.08, 0.028 +19731010, -1.16, -0.58, -0.27, 0.028 +19731011, 1.65, 0.11, -0.53, 0.028 +19731012, 0.37, 0.17, -0.17, 0.028 +19731015, -1.17, 0.16, 0.12, 0.028 +19731016, -0.01, -0.39, -0.28, 0.028 +19731017, -0.29, -0.09, 0.13, 0.028 +19731018, -0.01, -0.26, 0.02, 0.028 +19731019, 0.20, -0.03, 0.28, 0.028 +19731022, -1.07, -0.40, 0.47, 0.028 +19731023, 0.35, -0.40, -0.11, 0.028 +19731024, 0.29, -0.34, 0.05, 0.028 +19731025, 0.15, -0.19, -0.02, 0.028 +19731026, 0.72, -0.29, 0.08, 0.028 +19731029, -0.26, -0.13, 0.27, 0.028 +19731030, -1.52, -0.05, 0.57, 0.028 +19731031, -0.88, 0.07, 0.05, 0.028 +19731101, -0.58, -0.08, -0.22, 0.026 +19731102, -0.56, -0.31, 0.10, 0.026 +19731105, -1.59, -0.29, 0.28, 0.026 +19731106, -0.72, -0.49, 0.31, 0.026 +19731107, 0.63, -0.86, 0.59, 0.026 +19731108, 1.08, -0.05, -0.38, 0.026 +19731109, -1.48, 0.04, 0.70, 0.026 +19731112, -0.96, -0.63, -0.08, 0.026 +19731113, -0.29, -0.86, -0.31, 0.026 +19731114, -1.87, -0.48, 0.40, 0.026 +19731115, -0.13, -0.71, 0.30, 0.026 +19731116, 1.13, -0.65, 0.18, 0.026 +19731119, -3.03, -0.13, 1.17, 0.026 +19731120, -2.26, -1.33, 0.12, 0.026 +19731121, 1.06, -0.81, -0.07, 0.026 +19731123, -0.14, 0.17, 0.64, 0.026 +19731126, -3.01, -1.33, 0.95, 0.026 +19731127, -0.94, -0.40, 0.05, 0.026 +19731128, 1.98, 0.07, -0.86, 0.026 +19731129, -0.35, 0.06, 0.12, 0.026 +19731130, -1.35, 0.01, 0.72, 0.026 +19731203, -2.06, -0.31, 0.18, 0.032 +19731204, -0.42, -0.41, -0.26, 0.032 +19731205, -1.74, -0.62, 0.16, 0.032 +19731206, 2.25, -1.13, -0.38, 0.032 +19731207, 2.19, 0.25, 0.72, 0.032 +19731210, 1.50, -0.32, -0.38, 0.032 +19731211, -1.81, 0.10, 0.80, 0.032 +19731212, -2.60, -0.10, 0.67, 0.032 +19731213, -1.48, -0.35, 0.88, 0.032 +19731214, 0.97, -0.58, 0.08, 0.032 +19731217, -0.66, -0.10, 0.58, 0.032 +19731218, 1.88, -1.01, -0.42, 0.032 +19731219, -0.02, -0.26, 0.18, 0.032 +19731220, -0.30, 0.08, 0.53, 0.032 +19731221, -0.96, 0.17, 0.88, 0.032 +19731224, -0.63, 0.36, 0.94, 0.032 +19731226, 2.71, -1.12, -0.85, 0.032 +19731227, 1.96, -0.34, -0.72, 0.032 +19731228, -0.11, -0.07, 0.17, 0.032 +19731231, 0.20, 0.50, 0.16, 0.032 +19740102, 0.26, 1.27, 1.21, 0.028 +19740103, 2.32, 1.45, 0.94, 0.028 +19740104, -0.56, 1.59, 1.54, 0.028 +19740107, -0.52, 1.37, 1.05, 0.028 +19740108, -1.77, 0.91, 0.83, 0.028 +19740109, -2.73, 0.58, 0.52, 0.028 +19740110, -1.07, 0.27, -0.18, 0.028 +19740111, 1.16, -0.29, 0.25, 0.028 +19740114, -0.14, 0.10, 0.54, 0.028 +19740115, 0.75, -0.35, -0.01, 0.028 +19740116, 1.43, -0.48, -0.22, 0.028 +19740117, 1.67, 0.16, -0.84, 0.028 +19740118, -1.55, 1.08, -0.05, 0.028 +19740121, -0.27, -0.21, -0.17, 0.028 +19740122, 0.98, -0.28, -0.20, 0.028 +19740123, 0.49, 0.48, -0.35, 0.028 +19740124, -0.25, 0.42, 0.32, 0.028 +19740125, -0.11, 0.45, -0.28, 0.028 +19740128, -0.50, 0.41, 0.15, 0.028 +19740129, -0.16, -0.04, 0.48, 0.028 +19740130, 1.01, -0.11, 0.00, 0.028 +19740131, -0.45, 0.41, 0.11, 0.028 +19740201, -1.23, 0.52, 0.23, 0.031 +19740204, -1.96, 0.07, 0.09, 0.031 +19740205, -0.40, -0.13, 0.48, 0.031 +19740206, 0.29, -0.21, 0.10, 0.031 +19740207, 0.12, 0.16, 0.45, 0.031 +19740208, -0.95, 0.31, 0.66, 0.031 +19740211, -1.76, 0.51, 0.81, 0.031 +19740212, 0.04, -0.52, 0.26, 0.031 +19740213, -0.04, -0.16, 0.15, 0.031 +19740214, -0.01, 0.25, 0.11, 0.031 +19740215, 1.30, -0.36, -0.39, 0.031 +19740219, -0.13, -0.05, 0.07, 0.031 +19740220, 1.24, -0.54, -0.27, 0.031 +19740221, 1.24, -0.47, -0.11, 0.031 +19740222, 0.82, -0.14, 0.40, 0.031 +19740225, -0.26, 0.28, 0.24, 0.031 +19740226, 0.98, -0.13, 0.02, 0.031 +19740227, 0.49, 0.39, -0.58, 0.031 +19740228, -0.14, 0.25, -0.28, 0.031 +19740301, -0.61, 0.61, 0.32, 0.026 +19740304, 0.01, 0.20, -0.05, 0.026 +19740305, 1.76, -0.37, -0.80, 0.026 +19740306, 0.56, 0.44, -0.70, 0.026 +19740307, -0.94, 0.67, 0.27, 0.026 +19740308, 0.75, -0.22, -0.30, 0.026 +19740311, 1.01, -0.29, -0.37, 0.026 +19740312, 0.18, -0.08, -0.08, 0.026 +19740313, 0.55, 0.04, -0.42, 0.026 +19740314, 0.04, 0.40, -0.22, 0.026 +19740315, -0.29, 0.35, -0.03, 0.026 +19740318, -1.29, 0.58, 0.44, 0.026 +19740319, -0.84, 0.06, 0.19, 0.026 +19740320, 0.27, -0.17, -0.25, 0.026 +19740321, -0.23, 0.01, 0.14, 0.026 +19740322, -0.11, -0.05, -0.05, 0.026 +19740325, 0.19, -0.41, -0.33, 0.026 +19740326, 0.21, -0.18, 0.32, 0.026 +19740327, -1.35, 0.41, 0.64, 0.026 +19740328, -1.85, 0.26, 0.48, 0.026 +19740329, -0.81, 0.23, 0.64, 0.026 +19740401, -0.79, 0.34, 0.34, 0.036 +19740402, 0.00, -0.06, 0.00, 0.036 +19740403, 0.81, -0.55, -0.28, 0.036 +19740404, -0.08, -0.04, 0.04, 0.036 +19740405, -1.40, 0.57, 0.39, 0.036 +19740408, -1.04, -0.08, 0.26, 0.036 +19740409, 0.49, -0.41, -0.02, 0.036 +19740410, -0.21, 0.04, 0.34, 0.036 +19740411, -0.27, 0.18, 0.22, 0.036 +19740415, -0.17, -0.02, 0.26, 0.036 +19740416, 1.56, -0.58, -0.29, 0.036 +19740417, 0.67, -0.17, -0.16, 0.036 +19740418, 0.35, -0.11, 0.04, 0.036 +19740419, -1.05, 0.40, 0.05, 0.036 +19740422, -0.41, -0.04, 0.09, 0.036 +19740423, -1.83, 0.05, 0.10, 0.036 +19740424, -1.73, 0.12, 0.31, 0.036 +19740425, -0.97, -0.30, 0.03, 0.036 +19740426, 0.57, -0.15, -0.09, 0.036 +19740429, -0.08, 0.20, -0.22, 0.036 +19740430, 0.26, -0.09, -0.32, 0.036 +19740501, 1.95, -0.90, -0.54, 0.034 +19740502, -0.10, 0.27, -0.12, 0.034 +19740503, -0.84, 0.19, 0.32, 0.034 +19740506, -0.16, -0.25, -0.13, 0.034 +19740507, 0.18, -0.31, -0.15, 0.034 +19740508, 0.01, -0.09, -0.34, 0.034 +19740509, 1.07, -0.76, -0.26, 0.034 +19740510, -1.63, 0.61, 0.37, 0.034 +19740513, -0.96, -0.19, 0.20, 0.034 +19740514, -0.03, -0.08, -0.21, 0.034 +19740515, -0.23, -0.09, -0.16, 0.034 +19740516, -0.66, 0.38, -0.01, 0.034 +19740517, -1.79, 0.19, 0.31, 0.034 +19740520, -0.48, -0.20, -0.21, 0.034 +19740521, -0.03, -0.58, -0.65, 0.034 +19740522, -1.00, -0.13, -0.19, 0.034 +19740523, 0.01, -0.82, -0.34, 0.034 +19740524, 1.52, -0.38, -0.33, 0.034 +19740528, -0.24, 0.03, 0.23, 0.034 +19740529, -1.62, 0.49, -0.02, 0.034 +19740530, 0.54, -0.72, 0.12, 0.034 +19740531, -0.14, 0.11, -0.01, 0.034 +19740603, 1.86, -0.76, -0.18, 0.030 +19740604, 1.22, -0.01, 0.06, 0.030 +19740605, 0.27, 0.16, 0.18, 0.030 +19740606, 1.70, -0.61, -0.68, 0.030 +19740607, 0.66, 0.38, 0.06, 0.030 +19740610, 0.55, -0.13, -0.30, 0.030 +19740611, -0.85, 0.47, -0.10, 0.030 +19740612, -0.38, -0.11, -0.18, 0.030 +19740613, 0.21, 0.21, -0.47, 0.030 +19740614, -1.03, 0.34, 0.28, 0.030 +19740617, -1.36, 0.38, 0.42, 0.030 +19740618, -0.69, 0.11, 0.05, 0.030 +19740619, -0.75, 0.12, 0.23, 0.030 +19740620, -0.83, 0.02, 0.17, 0.030 +19740621, -0.97, 0.08, 0.04, 0.030 +19740624, 0.07, -0.31, 0.06, 0.030 +19740625, 1.26, -0.79, -0.23, 0.030 +19740626, -1.57, 0.33, 0.92, 0.030 +19740627, -1.55, -0.01, 0.38, 0.030 +19740628, -0.58, -0.18, 0.01, 0.030 +19740701, -0.18, -0.39, 0.12, 0.032 +19740702, -2.13, 0.19, 0.71, 0.032 +19740703, -0.16, -0.56, 0.22, 0.032 +19740705, -0.57, 0.17, 0.25, 0.032 +19740708, -3.21, 0.02, 0.82, 0.032 +19740709, 0.24, -0.63, -0.29, 0.032 +19740710, -1.75, 0.51, 0.54, 0.032 +19740711, -0.14, -0.34, -0.33, 0.032 +19740712, 4.01, -1.01, -0.26, 0.032 +19740715, 0.79, 0.16, 0.17, 0.032 +19740716, -1.04, 0.50, 0.17, 0.032 +19740717, 1.08, -0.37, -0.14, 0.032 +19740718, 0.18, 0.54, 0.68, 0.032 +19740719, -0.11, 0.20, 0.16, 0.032 +19740722, 0.29, -0.09, -0.22, 0.032 +19740723, 1.03, -0.20, 0.32, 0.032 +19740724, 0.35, -0.36, 0.45, 0.032 +19740725, -1.20, 0.72, 0.61, 0.032 +19740726, -1.73, 0.92, 0.66, 0.032 +19740729, -1.80, 0.37, 0.24, 0.032 +19740730, -0.56, 0.13, -0.23, 0.032 +19740731, -1.51, 0.45, 0.72, 0.032 +19740801, -0.66, -0.13, 0.38, 0.027 +19740802, -0.25, -0.10, 0.23, 0.027 +19740805, 0.87, -0.46, -0.03, 0.027 +19740806, 1.55, -0.29, -0.68, 0.027 +19740807, 2.48, -0.91, -0.02, 0.027 +19740808, -1.21, 1.44, 0.53, 0.027 +19740809, -0.66, 0.67, 0.34, 0.027 +19740812, -1.17, 0.63, 0.31, 0.027 +19740813, -1.66, 0.23, 0.75, 0.027 +19740814, -2.19, 0.60, 0.34, 0.027 +19740815, -0.58, -0.26, 0.26, 0.027 +19740816, -0.85, 0.27, 0.59, 0.027 +19740819, -1.44, -0.05, 0.45, 0.027 +19740820, 0.39, -0.38, -0.04, 0.027 +19740821, -1.78, 0.46, 0.90, 0.027 +19740822, -1.11, -0.51, 0.38, 0.027 +19740823, -1.62, 0.20, 0.69, 0.027 +19740826, 0.70, -0.87, -0.97, 0.027 +19740827, -1.56, 0.57, -0.44, 0.027 +19740828, -0.33, -0.33, -0.70, 0.027 +19740829, -1.26, -0.26, -0.66, 0.027 +19740830, 2.79, -1.34, 0.06, 0.027 +19740903, -2.18, 0.59, 0.80, 0.040 +19740904, -2.69, -0.08, 0.61, 0.040 +19740905, 2.90, -1.78, -0.87, 0.040 +19740906, 0.75, -0.09, 0.56, 0.040 +19740909, -2.28, 0.53, 0.61, 0.040 +19740910, -0.79, -0.44, 0.37, 0.040 +19740911, -0.89, 0.00, -0.11, 0.040 +19740912, -2.56, -0.22, 0.76, 0.040 +19740913, -2.24, 0.35, 0.29, 0.040 +19740916, 1.40, -1.58, -0.95, 0.040 +19740917, 1.64, -0.32, 0.48, 0.040 +19740918, 0.36, -0.48, -0.37, 0.040 +19740919, 3.34, -0.66, -0.29, 0.040 +19740920, 0.31, 0.51, 0.33, 0.040 +19740923, -0.79, 0.54, 0.65, 0.040 +19740924, -1.84, 0.67, 0.62, 0.040 +19740925, -0.41, 0.82, 0.38, 0.040 +19740926, -1.64, 0.47, 0.63, 0.040 +19740927, -2.11, 0.91, 0.88, 0.040 +19740930, -2.37, 0.39, 0.53, 0.040 +19741001, -0.23, -0.29, -0.02, 0.022 +19741002, 0.06, 0.42, 0.16, 0.022 +19741003, -1.67, 0.71, 0.33, 0.022 +19741004, 0.07, -0.24, 0.29, 0.022 +19741007, 3.77, -1.68, -0.08, 0.022 +19741008, -0.12, 0.85, 0.01, 0.022 +19741009, 4.23, -2.05, -1.40, 0.022 +19741010, 2.96, 0.08, -1.20, 0.022 +19741011, 2.01, -0.19, -0.82, 0.022 +19741014, 2.28, -0.01, -0.76, 0.022 +19741015, -1.63, 0.75, -0.09, 0.022 +19741016, -1.42, 0.79, -0.09, 0.022 +19741017, 1.08, -0.27, -0.75, 0.022 +19741018, 1.38, -0.46, -0.92, 0.022 +19741021, 1.69, -0.63, -1.28, 0.022 +19741022, -0.30, 0.73, -0.28, 0.022 +19741023, -2.52, 1.29, 0.33, 0.022 +19741024, -1.20, -0.34, 0.10, 0.022 +19741025, -0.05, 0.00, 0.00, 0.022 +19741028, -0.09, -0.20, -0.35, 0.022 +19741029, 3.42, -2.25, -1.12, 0.022 +19741030, 1.94, -0.71, -1.00, 0.022 +19741031, -0.32, 0.37, -0.07, 0.022 +19741101, -0.03, 0.02, 0.06, 0.027 +19741104, -0.95, 0.20, -0.10, 0.027 +19741105, 2.56, -0.90, -1.44, 0.027 +19741106, -0.12, 0.13, 0.22, 0.027 +19741107, 0.74, -0.23, -0.14, 0.027 +19741108, -0.21, 0.27, 0.47, 0.027 +19741111, 0.32, 0.22, 0.45, 0.027 +19741112, -1.95, 0.45, 0.53, 0.027 +19741113, -0.49, -0.11, 0.01, 0.027 +19741114, -0.29, -0.22, 0.60, 0.027 +19741115, -1.44, 0.61, 0.50, 0.027 +19741118, -3.57, 0.65, 0.82, 0.027 +19741119, -1.65, -0.20, 0.29, 0.027 +19741120, -0.45, -0.27, 0.13, 0.027 +19741121, 0.49, -0.33, -0.87, 0.027 +19741122, 1.08, -0.55, -0.16, 0.027 +19741125, -0.10, -0.20, -0.54, 0.027 +19741126, 0.95, -0.44, -0.69, 0.027 +19741127, 0.60, -0.19, -0.15, 0.027 +19741129, 0.07, -0.15, -0.27, 0.027 +19741202, -2.51, 0.57, 0.58, 0.033 +19741203, -1.47, -0.05, 0.03, 0.033 +19741204, 0.20, -0.81, -0.06, 0.033 +19741205, -1.94, 0.07, 0.72, 0.033 +19741206, -1.75, -0.01, 0.03, 0.033 +19741209, 0.53, -1.49, -0.68, 0.033 +19741210, 2.27, -1.53, -0.53, 0.033 +19741211, 0.64, -0.54, 0.20, 0.033 +19741212, -0.41, -0.22, 0.12, 0.033 +19741213, -0.58, 0.08, 0.09, 0.033 +19741216, -0.92, -0.01, 0.38, 0.033 +19741217, 1.32, -1.35, -0.88, 0.033 +19741218, 0.46, -0.03, -0.05, 0.033 +19741219, -0.37, 0.15, 0.08, 0.033 +19741220, -1.15, 0.28, 0.46, 0.033 +19741223, -1.47, 0.22, 0.18, 0.033 +19741224, 1.30, -0.70, -0.18, 0.033 +19741226, 0.87, -0.14, -0.06, 0.033 +19741227, -0.42, 0.31, 0.01, 0.033 +19741230, -0.08, -0.36, -0.40, 0.033 +19741231, 2.18, 0.53, -0.06, 0.033 +19750102, 2.48, 0.30, 1.35, 0.026 +19750103, 0.80, 0.44, 1.43, 0.026 +19750106, 0.78, 0.69, 1.57, 0.026 +19750107, 0.00, 0.87, 0.69, 0.026 +19750108, -1.16, 1.12, 0.78, 0.026 +19750109, 1.60, -0.50, -0.04, 0.026 +19750110, 2.12, 0.51, 0.25, 0.026 +19750113, -0.35, 1.23, 0.99, 0.026 +19750114, -0.78, 0.77, 0.36, 0.026 +19750115, 0.68, -0.01, -0.54, 0.026 +19750116, 0.13, 0.75, -0.33, 0.026 +19750117, -1.24, 0.83, 0.29, 0.026 +19750120, 0.00, -0.32, 0.13, 0.026 +19750121, -0.43, 0.23, 0.88, 0.026 +19750122, 1.08, -0.63, -0.32, 0.026 +19750123, 0.51, 0.54, -0.10, 0.026 +19750124, 1.25, 0.06, 0.57, 0.026 +19750127, 3.35, 0.01, -0.32, 0.026 +19750128, 0.46, 0.65, -0.52, 0.026 +19750129, 1.55, 0.17, -0.27, 0.026 +19750130, -1.13, 1.15, 0.12, 0.026 +19750131, 0.98, 0.18, -0.01, 0.026 +19750203, 1.24, 0.41, 0.12, 0.023 +19750204, -0.32, 0.40, -1.03, 0.023 +19750205, 1.63, -0.33, -0.62, 0.023 +19750206, -0.13, 0.73, -0.08, 0.023 +19750207, -0.03, -0.15, -0.21, 0.023 +19750210, -0.30, 0.14, -0.26, 0.023 +19750211, 0.17, -0.26, -0.55, 0.023 +19750212, 1.57, -0.53, -0.50, 0.023 +19750213, 1.32, -0.04, -0.82, 0.023 +19750214, 0.51, -0.10, -0.50, 0.023 +19750218, -0.68, 0.10, 0.67, 0.023 +19750219, 0.47, -0.36, -0.31, 0.023 +19750220, 0.93, -0.34, -0.45, 0.023 +19750221, 0.44, 0.04, -0.12, 0.023 +19750224, -1.28, 0.69, 0.09, 0.023 +19750225, -2.25, 0.18, 0.16, 0.023 +19750226, 0.85, -0.34, -0.02, 0.023 +19750227, 0.50, 0.33, -0.48, 0.023 +19750228, 0.86, -0.46, 0.53, 0.023 +19750303, 1.71, -0.53, 0.30, 0.021 +19750304, 0.69, -0.14, 0.05, 0.021 +19750305, -0.75, 0.20, 0.39, 0.021 +19750306, 0.88, -0.09, 0.35, 0.021 +19750307, 0.75, 0.63, 0.17, 0.021 +19750310, 0.74, 0.43, 0.57, 0.021 +19750311, -0.53, 0.83, 0.63, 0.021 +19750312, -0.90, 0.21, 0.38, 0.021 +19750313, 0.26, 0.75, -0.69, 0.021 +19750314, 1.36, 0.66, -0.15, 0.021 +19750317, 1.36, 0.13, 0.46, 0.021 +19750318, -0.90, -0.25, 0.23, 0.021 +19750319, -0.89, 0.31, -0.13, 0.021 +19750320, -0.68, 0.66, -0.10, 0.021 +19750321, -0.21, -0.06, -0.02, 0.021 +19750324, -2.30, -0.11, 0.11, 0.021 +19750325, 0.58, -0.25, -0.49, 0.021 +19750326, 1.76, -0.23, 0.21, 0.021 +19750327, 0.34, 0.07, -0.03, 0.021 +19750331, -0.56, 0.37, 0.13, 0.021 +19750401, -0.81, 0.09, -0.32, 0.020 +19750402, -0.23, 0.25, -0.11, 0.020 +19750403, -1.03, 0.64, 0.21, 0.020 +19750404, -0.59, 0.34, 0.02, 0.020 +19750407, -0.68, -0.06, -0.05, 0.020 +19750408, 0.58, -0.70, -0.22, 0.020 +19750409, 2.00, -0.62, -0.51, 0.020 +19750410, 1.02, -0.45, 0.23, 0.020 +19750411, 0.58, 0.34, 0.03, 0.020 +19750414, 1.55, -0.21, -0.42, 0.020 +19750415, 0.66, -0.33, 0.12, 0.020 +19750416, 0.39, -0.07, -0.13, 0.020 +19750417, 0.73, -0.10, 0.14, 0.020 +19750418, -0.90, 0.89, 0.13, 0.020 +19750421, 1.08, 0.06, 0.19, 0.020 +19750422, -0.27, 0.07, 0.23, 0.020 +19750423, -1.04, 0.19, -0.16, 0.020 +19750424, -0.02, 0.05, 0.29, 0.020 +19750425, 0.70, 0.15, 0.07, 0.020 +19750428, -0.38, 0.08, 0.19, 0.020 +19750429, -0.77, -0.18, -0.32, 0.020 +19750430, 1.65, -1.00, -0.68, 0.020 +19750501, 0.85, -0.10, -0.53, 0.021 +19750502, 1.24, -0.57, -0.34, 0.021 +19750505, 0.96, -0.14, -0.26, 0.021 +19750506, -1.27, 0.72, -0.50, 0.021 +19750507, 0.47, 0.40, -0.52, 0.021 +19750508, 0.73, 0.24, 0.15, 0.021 +19750509, 1.15, 0.04, 0.20, 0.021 +19750512, 0.05, 0.20, -0.19, 0.021 +19750513, 0.81, -0.49, -0.09, 0.021 +19750514, 0.74, -0.35, 0.19, 0.021 +19750515, -0.76, 0.75, -0.16, 0.021 +19750516, -0.94, 0.67, -0.03, 0.021 +19750519, 0.08, 0.03, 0.11, 0.021 +19750520, -0.41, 0.53, -0.19, 0.021 +19750521, -1.13, 0.33, -0.30, 0.021 +19750522, 0.39, 0.36, -0.84, 0.021 +19750523, 1.29, -0.07, -0.29, 0.021 +19750527, -0.10, 0.36, 0.04, 0.021 +19750528, -0.66, 0.53, -0.24, 0.021 +19750529, 0.01, 0.15, 0.10, 0.021 +19750530, 1.62, 0.05, -0.06, 0.021 +19750602, 1.42, -0.22, 0.15, 0.019 +19750603, 0.33, -0.06, -0.16, 0.019 +19750604, -0.19, 0.56, -0.19, 0.019 +19750605, 0.11, 0.16, -0.06, 0.019 +19750606, -0.12, 0.18, -0.13, 0.019 +19750609, -1.24, 0.21, 0.52, 0.019 +19750610, -0.84, 0.06, -0.13, 0.019 +19750611, 0.12, -0.16, 0.15, 0.019 +19750612, -0.51, -0.20, 0.59, 0.019 +19750613, 0.49, -0.12, -0.10, 0.019 +19750616, 0.96, -0.69, 0.08, 0.019 +19750617, -0.84, 0.13, 0.21, 0.019 +19750618, -0.20, -0.15, 0.15, 0.019 +19750619, 1.78, -0.44, -0.13, 0.019 +19750620, 0.68, 0.15, 0.05, 0.019 +19750623, 1.04, 0.06, -0.17, 0.019 +19750624, 0.64, -0.03, -0.14, 0.019 +19750625, 0.42, 0.26, -0.04, 0.019 +19750626, 0.22, 0.10, 0.24, 0.019 +19750627, 0.02, 0.34, 0.19, 0.019 +19750630, 0.47, 0.55, 0.17, 0.019 +19750701, -0.41, 0.30, 0.30, 0.022 +19750702, -0.79, 0.20, -0.12, 0.022 +19750703, 0.35, 0.53, -0.10, 0.022 +19750707, -0.83, 0.35, 0.08, 0.022 +19750708, -0.18, -0.22, 0.38, 0.022 +19750709, 1.53, 0.03, 0.27, 0.022 +19750710, 0.06, 0.19, 0.69, 0.022 +19750711, -0.02, 0.34, 0.60, 0.022 +19750714, 0.55, 0.48, 0.17, 0.022 +19750715, 0.45, 0.26, 0.85, 0.022 +19750716, -0.99, 0.37, -0.05, 0.022 +19750717, -0.90, 0.51, 0.23, 0.022 +19750718, -0.34, 0.49, -0.03, 0.022 +19750721, -0.73, 0.42, -0.19, 0.022 +19750722, -1.14, -0.05, -0.29, 0.022 +19750723, -1.46, -0.24, -0.18, 0.022 +19750724, -0.35, -0.67, -0.51, 0.022 +19750725, -0.82, 0.18, 0.21, 0.022 +19750728, -0.74, -0.23, -0.37, 0.022 +19750729, -0.65, -0.23, -0.19, 0.022 +19750730, 0.70, -0.41, -0.01, 0.022 +19750731, -0.01, 0.21, 0.07, 0.022 +19750801, -0.98, 0.00, 0.24, 0.023 +19750804, -0.98, 0.04, -0.46, 0.023 +19750805, -1.13, -0.28, -0.33, 0.023 +19750806, -0.01, -0.42, -0.45, 0.023 +19750807, -0.05, -0.35, 0.26, 0.023 +19750808, -0.35, -0.42, 0.04, 0.023 +19750811, 0.47, -0.66, -0.83, 0.023 +19750812, 0.65, -0.05, 0.19, 0.023 +19750813, -1.22, 0.18, 0.53, 0.023 +19750814, -0.58, 0.04, -0.23, 0.023 +19750815, 0.74, -0.36, 0.10, 0.023 +19750818, -0.22, 0.05, 0.11, 0.023 +19750819, -1.57, 0.10, 0.47, 0.023 +19750820, -2.03, 0.22, -0.26, 0.023 +19750821, -0.12, -0.53, -0.38, 0.023 +19750822, 1.39, -0.45, -0.06, 0.023 +19750825, 0.95, -0.32, 0.02, 0.023 +19750826, -1.17, 0.42, -0.07, 0.023 +19750827, 0.48, -0.14, -0.32, 0.023 +19750828, 2.26, -0.76, 0.38, 0.023 +19750829, 0.72, 0.38, 0.20, 0.023 +19750902, -1.56, 0.47, 0.22, 0.025 +19750903, 0.46, -0.32, -0.23, 0.025 +19750904, 0.16, -0.02, 0.23, 0.025 +19750905, -0.64, 0.27, 0.16, 0.025 +19750908, 0.15, -0.29, 0.13, 0.025 +19750909, -1.36, 0.38, 0.55, 0.025 +19750910, -1.17, -0.07, -0.08, 0.025 +19750911, -0.39, 0.05, 0.00, 0.025 +19750912, -0.24, 0.29, 0.10, 0.025 +19750915, -0.55, -0.01, -0.13, 0.025 +19750916, -0.95, 0.03, -0.05, 0.025 +19750917, 0.19, -0.37, -0.16, 0.025 +19750918, 1.83, -1.01, 0.08, 0.025 +19750919, 2.22, -0.40, -0.20, 0.025 +19750922, -0.84, 0.48, 0.07, 0.025 +19750923, -0.15, -0.01, -0.34, 0.025 +19750924, 0.95, -0.15, 0.11, 0.025 +19750925, -0.18, 0.18, -0.38, 0.025 +19750926, 0.50, -0.27, -0.30, 0.025 +19750929, -1.24, 0.32, 0.53, 0.025 +19750930, -1.42, 0.22, -0.05, 0.025 +19751001, -1.16, 0.09, -0.07, 0.024 +19751002, 0.89, -0.69, -0.32, 0.024 +19751003, 2.37, -0.99, -0.32, 0.024 +19751006, 1.02, -0.42, -0.29, 0.024 +19751007, -0.15, 0.03, -0.34, 0.024 +19751008, 1.21, -0.41, -0.36, 0.024 +19751009, 0.45, -0.22, -0.03, 0.024 +19751010, -0.10, 0.00, 0.19, 0.024 +19751013, 1.34, -0.73, -0.05, 0.024 +19751014, -0.04, 0.28, -0.05, 0.024 +19751015, -0.07, -0.12, -0.02, 0.024 +19751016, 0.17, -0.01, 0.25, 0.024 +19751017, -0.60, 0.10, 0.05, 0.024 +19751020, 0.94, -0.80, 0.10, 0.024 +19751021, 0.78, -0.42, 0.41, 0.024 +19751022, 0.18, -0.02, -0.08, 0.024 +19751023, 0.48, -0.24, 0.52, 0.024 +19751024, -1.33, 0.82, 0.29, 0.024 +19751027, -0.11, -0.22, 0.25, 0.024 +19751028, 0.77, -0.18, -0.11, 0.024 +19751029, -1.35, 0.30, 0.05, 0.024 +19751030, -0.19, 0.00, -0.02, 0.024 +19751031, -0.26, -0.08, 0.26, 0.024 +19751103, -0.94, 0.46, -0.01, 0.022 +19751104, 0.41, -0.46, 0.02, 0.022 +19751105, 0.83, -0.21, 0.38, 0.022 +19751106, 0.43, -0.10, -0.03, 0.022 +19751107, -0.16, 0.25, 0.03, 0.022 +19751110, 0.00, -0.17, -0.30, 0.022 +19751111, 0.60, -0.08, 0.07, 0.022 +19751112, 1.47, -0.30, 0.11, 0.022 +19751113, -0.05, 0.19, 0.01, 0.022 +19751114, -0.12, 0.08, 0.18, 0.022 +19751117, 0.49, -0.43, 0.31, 0.022 +19751118, -0.52, -0.04, 0.36, 0.022 +19751119, -1.10, 0.26, 0.15, 0.022 +19751120, -0.41, 0.15, 0.22, 0.022 +19751121, -0.05, 0.05, 0.01, 0.022 +19751124, 0.28, -0.25, 0.08, 0.022 +19751125, 0.92, -0.51, -0.07, 0.022 +19751126, 0.30, 0.07, 0.10, 0.022 +19751128, 0.28, -0.15, 0.29, 0.022 +19751201, -0.59, 0.07, 0.14, 0.022 +19751202, -1.55, 0.30, -0.38, 0.022 +19751203, -2.07, 0.16, -0.34, 0.022 +19751204, 0.13, -0.46, -0.01, 0.022 +19751205, -1.08, 0.55, 0.55, 0.022 +19751208, 0.14, -0.49, -0.30, 0.022 +19751209, 0.09, -0.68, 0.01, 0.022 +19751210, 0.90, -0.49, -0.01, 0.022 +19751211, -0.25, 0.23, 0.16, 0.022 +19751212, -0.08, -0.06, 0.04, 0.022 +19751215, 0.19, -0.42, -0.16, 0.022 +19751216, 0.94, -0.33, -0.16, 0.022 +19751217, 0.29, -0.01, 0.06, 0.022 +19751218, 0.35, 0.06, 0.34, 0.022 +19751219, -0.65, 0.56, 0.19, 0.022 +19751222, -0.73, 0.14, -0.07, 0.022 +19751223, 0.58, -0.56, 0.31, 0.022 +19751224, 0.84, -0.16, 0.42, 0.022 +19751226, 0.90, -0.24, 0.34, 0.022 +19751229, -0.16, 0.08, -0.01, 0.022 +19751230, -0.38, 0.12, 0.08, 0.022 +19751231, 0.62, 0.85, 0.62, 0.022 +19760102, 0.79, -0.10, 1.22, 0.022 +19760105, 1.78, -0.26, 0.94, 0.022 +19760106, 1.20, 0.44, 0.27, 0.022 +19760107, 0.52, 0.08, -0.17, 0.022 +19760108, 0.68, -0.14, 0.18, 0.022 +19760109, 0.43, 0.38, 0.19, 0.022 +19760112, 1.30, -0.11, 0.46, 0.022 +19760113, -0.72, 0.27, -0.04, 0.022 +19760114, 1.58, -0.05, 0.76, 0.022 +19760115, -0.45, 0.43, 0.39, 0.022 +19760116, 0.44, 0.21, 0.31, 0.022 +19760119, 1.21, 0.00, 1.15, 0.022 +19760120, 0.49, 0.12, 0.24, 0.022 +19760121, -0.49, 0.56, 0.32, 0.022 +19760122, -0.19, 0.98, 0.11, 0.022 +19760123, 1.15, 0.25, 0.43, 0.022 +19760126, 0.41, 0.47, 0.23, 0.022 +19760127, -0.52, 0.51, 0.19, 0.022 +19760128, -0.46, 0.02, -0.21, 0.022 +19760129, 1.67, 0.08, 0.12, 0.022 +19760130, 0.73, 0.04, 0.29, 0.022 +19760202, 0.14, 0.30, 0.24, 0.018 +19760203, 0.42, 0.15, 0.40, 0.018 +19760204, 0.87, 0.60, 0.20, 0.018 +19760205, -1.31, 0.61, -0.19, 0.018 +19760206, -0.85, 0.35, -0.14, 0.018 +19760209, 0.27, 0.34, 0.95, 0.018 +19760210, 0.79, -0.02, 0.58, 0.018 +19760211, 0.43, 0.45, 0.23, 0.018 +19760212, -0.36, 0.82, 0.22, 0.018 +19760213, -0.41, 0.74, 0.10, 0.018 +19760217, -0.52, 0.75, 0.67, 0.018 +19760218, 0.79, 0.43, 0.66, 0.018 +19760219, 1.59, 0.34, 0.73, 0.018 +19760220, 0.67, 0.20, 0.22, 0.018 +19760223, -0.29, 0.35, 0.16, 0.018 +19760224, 0.49, 0.14, 0.78, 0.018 +19760225, -0.16, -0.09, 0.48, 0.018 +19760226, -1.48, 0.29, -0.59, 0.018 +19760227, -0.68, -0.17, -0.24, 0.018 +19760301, 0.32, -0.11, 0.47, 0.017 +19760302, 0.58, 0.25, 0.66, 0.017 +19760303, -0.56, 0.29, 0.16, 0.017 +19760304, -0.97, 0.30, -0.40, 0.017 +19760305, 0.12, -0.06, 0.29, 0.017 +19760308, 1.01, -0.11, 0.46, 0.017 +19760309, 0.27, -0.14, 0.04, 0.017 +19760310, 0.35, -0.21, 0.10, 0.017 +19760311, 0.83, -0.34, -0.34, 0.017 +19760312, -0.87, 0.10, -0.42, 0.017 +19760315, -1.12, 0.05, -0.39, 0.017 +19760316, 0.98, -0.49, 0.39, 0.017 +19760317, -0.03, 0.38, 0.19, 0.017 +19760318, -0.41, 0.04, -0.41, 0.017 +19760319, 0.09, -0.05, -0.20, 0.017 +19760322, 0.06, -0.10, -0.11, 0.017 +19760323, 1.30, -0.73, -0.25, 0.017 +19760324, 1.03, -0.20, -0.33, 0.017 +19760325, -0.55, 0.00, 0.02, 0.017 +19760326, 0.10, 0.15, 0.23, 0.017 +19760329, -0.40, 0.03, 0.05, 0.017 +19760330, -0.42, -0.14, -0.18, 0.017 +19760331, 0.62, -0.10, -0.02, 0.017 +19760401, -0.43, 0.43, -0.23, 0.020 +19760402, 0.03, 0.16, -0.27, 0.020 +19760405, 1.15, -0.24, 0.33, 0.020 +19760406, -0.09, 0.11, 0.24, 0.020 +19760407, -1.17, 0.10, -0.52, 0.020 +19760408, -0.98, -0.18, -0.48, 0.020 +19760409, -1.05, 0.02, -0.43, 0.020 +19760412, -0.19, -0.39, 0.17, 0.020 +19760413, 0.65, -0.62, -0.12, 0.020 +19760414, -0.61, 0.32, 0.04, 0.020 +19760415, 0.33, -0.24, 0.29, 0.020 +19760419, 0.67, -0.02, 0.31, 0.020 +19760420, 1.46, -0.02, 0.36, 0.020 +19760421, 0.36, 0.08, 0.20, 0.020 +19760422, -0.20, 0.22, 0.17, 0.020 +19760423, -0.66, 0.27, -0.16, 0.020 +19760426, 0.07, -0.08, 0.06, 0.020 +19760427, -0.52, 0.04, -0.27, 0.020 +19760428, 0.17, -0.26, -0.17, 0.020 +19760429, -0.03, 0.09, 0.25, 0.020 +19760430, -0.40, 0.20, 0.18, 0.020 +19760503, -0.83, -0.05, -0.36, 0.019 +19760504, 0.56, -0.37, 0.08, 0.019 +19760505, -0.45, 0.32, -0.21, 0.019 +19760506, 0.29, -0.17, -0.25, 0.019 +19760507, 0.76, -0.09, -0.03, 0.019 +19760510, 1.22, -0.53, 0.51, 0.019 +19760511, -0.10, 0.21, 0.30, 0.019 +19760512, -0.17, 0.15, -0.08, 0.019 +19760513, -0.56, 0.21, 0.18, 0.019 +19760514, -0.75, 0.09, 0.15, 0.019 +19760517, -0.28, -0.08, -0.19, 0.019 +19760518, 0.11, -0.20, 0.08, 0.019 +19760519, -0.05, -0.13, 0.21, 0.019 +19760520, 0.63, -0.18, -0.27, 0.019 +19760521, -0.54, 0.19, 0.11, 0.019 +19760524, -1.66, 0.15, -0.36, 0.019 +19760525, -0.09, -0.32, -0.73, 0.019 +19760526, -0.06, 0.12, -0.21, 0.019 +19760527, -0.11, -0.41, -0.42, 0.019 +19760528, 0.73, -0.18, 0.20, 0.019 +19760601, -0.28, -0.07, 0.17, 0.020 +19760602, 0.29, -0.19, -0.06, 0.020 +19760603, -0.05, -0.10, 0.09, 0.020 +19760604, -0.88, 0.13, -0.21, 0.020 +19760607, -0.52, -0.44, -0.23, 0.020 +19760608, 0.14, -0.20, -0.32, 0.020 +19760609, -0.06, 0.07, -0.06, 0.020 +19760610, 0.77, -0.20, -0.05, 0.020 +19760611, 1.17, -0.31, 0.13, 0.020 +19760614, 0.99, -0.16, 0.25, 0.020 +19760615, -0.42, 0.34, 0.10, 0.020 +19760616, 0.55, -0.13, 0.12, 0.020 +19760617, 1.43, -0.42, 0.13, 0.020 +19760618, 0.19, 0.12, 0.05, 0.020 +19760621, 0.39, -0.06, -0.14, 0.020 +19760622, -0.70, 0.21, -0.07, 0.020 +19760623, -0.22, -0.05, 0.02, 0.020 +19760624, 0.59, -0.07, 0.23, 0.020 +19760625, 0.01, 0.29, 0.11, 0.020 +19760628, -0.23, 0.15, 0.02, 0.020 +19760629, 0.38, -0.19, 0.14, 0.020 +19760630, 0.46, -0.04, 0.26, 0.020 +19760701, -0.67, 0.33, 0.10, 0.022 +19760702, 0.47, 0.02, -0.07, 0.022 +19760706, -0.46, 0.46, -0.05, 0.022 +19760707, 0.25, -0.09, 0.29, 0.022 +19760708, 0.15, 0.13, 0.19, 0.022 +19760709, 0.87, -0.05, 0.00, 0.022 +19760712, 0.76, -0.18, 0.09, 0.022 +19760713, -0.21, 0.06, 0.21, 0.022 +19760714, 0.25, 0.18, -0.06, 0.022 +19760715, -0.60, 0.48, -0.04, 0.022 +19760716, -0.48, 0.27, -0.18, 0.022 +19760719, -0.32, -0.11, 0.36, 0.022 +19760720, -0.63, -0.13, -0.12, 0.022 +19760721, 0.06, -0.07, 0.17, 0.022 +19760722, 0.12, 0.12, -0.35, 0.022 +19760723, 0.12, -0.10, 0.17, 0.022 +19760726, -0.08, -0.21, 0.13, 0.022 +19760727, -0.50, -0.05, 0.05, 0.022 +19760728, -0.40, -0.22, 0.21, 0.022 +19760729, -0.16, -0.15, 0.38, 0.022 +19760730, 0.40, -0.39, 0.19, 0.022 +19760802, -0.15, -0.08, 0.24, 0.019 +19760803, 0.89, -0.56, 0.15, 0.019 +19760804, 0.22, -0.05, 0.14, 0.019 +19760805, -0.43, 0.19, 0.05, 0.019 +19760806, -0.03, -0.02, 0.07, 0.019 +19760809, -0.23, -0.08, 0.01, 0.019 +19760810, 0.77, -0.40, 0.01, 0.019 +19760811, -0.25, 0.05, 0.09, 0.019 +19760812, 0.07, -0.15, -0.21, 0.019 +19760813, 0.05, 0.00, 0.09, 0.019 +19760816, 0.16, -0.14, 0.13, 0.019 +19760817, 0.30, -0.16, -0.14, 0.019 +19760818, -0.20, -0.09, 0.07, 0.019 +19760819, -1.17, -0.05, 0.10, 0.019 +19760820, -0.90, 0.26, -0.01, 0.019 +19760823, -0.43, -0.25, -0.15, 0.019 +19760824, -0.62, 0.25, -0.02, 0.019 +19760825, 0.75, -0.60, 0.02, 0.019 +19760826, -0.63, 0.37, 0.25, 0.019 +19760827, 0.09, -0.04, -0.10, 0.019 +19760830, 0.53, -0.33, -0.03, 0.019 +19760831, 0.69, -0.22, 0.04, 0.019 +19760901, 1.02, -0.19, -0.35, 0.021 +19760902, -0.04, 0.18, -0.15, 0.021 +19760903, 0.37, -0.02, 0.03, 0.021 +19760907, 0.61, -0.27, 0.07, 0.021 +19760908, -0.11, 0.20, -0.05, 0.021 +19760909, -0.44, 0.19, 0.01, 0.021 +19760910, 0.24, 0.03, -0.17, 0.021 +19760913, -0.29, 0.10, 0.05, 0.021 +19760914, -0.30, 0.06, -0.08, 0.021 +19760915, 0.20, -0.12, -0.21, 0.021 +19760916, 0.87, -0.34, -0.22, 0.021 +19760917, 0.87, -0.22, 0.18, 0.021 +19760920, 0.10, -0.07, 0.43, 0.021 +19760921, 1.23, -0.57, 0.29, 0.021 +19760922, -0.29, 0.46, 0.08, 0.021 +19760923, -0.46, 0.26, -0.11, 0.021 +19760924, -0.10, 0.22, -0.03, 0.021 +19760927, 0.36, -0.12, -0.01, 0.021 +19760928, -1.12, 0.22, -0.03, 0.021 +19760929, -0.52, 0.00, 0.05, 0.021 +19760930, -0.13, 0.05, -0.14, 0.021 +19761001, -0.92, 0.30, 0.18, 0.019 +19761004, -0.15, -0.01, 0.18, 0.019 +19761005, -0.73, -0.06, -0.01, 0.019 +19761006, -0.43, -0.25, -0.10, 0.019 +19761007, 0.58, -0.02, -0.31, 0.019 +19761008, -0.84, 0.41, 0.09, 0.019 +19761011, -0.93, 0.04, -0.41, 0.019 +19761012, -0.78, 0.06, 0.29, 0.019 +19761013, 1.10, -0.82, 0.02, 0.019 +19761014, -1.16, 0.67, 0.03, 0.019 +19761015, 0.10, 0.30, -0.03, 0.019 +19761018, 0.55, -0.24, 0.19, 0.019 +19761019, -0.05, 0.12, -0.05, 0.019 +19761020, 0.23, -0.08, 0.23, 0.019 +19761021, -0.82, 0.42, 0.26, 0.019 +19761022, -0.75, 0.24, 0.03, 0.019 +19761025, 0.09, -0.04, -0.12, 0.019 +19761026, 0.86, -0.41, -0.07, 0.019 +19761027, 0.56, -0.19, -0.27, 0.019 +19761028, -0.10, 0.11, -0.08, 0.019 +19761029, 1.19, -0.36, -0.19, 0.019 +19761101, 0.23, -0.04, 0.18, 0.020 +19761103, -1.16, 0.12, 0.34, 0.020 +19761104, 0.77, 0.35, 0.51, 0.020 +19761105, -1.20, 0.79, 0.41, 0.020 +19761108, -1.13, 0.41, -0.13, 0.020 +19761109, -0.34, -0.22, 0.20, 0.020 +19761110, -0.47, 0.36, -0.18, 0.020 +19761111, 0.71, -0.45, -0.22, 0.020 +19761112, -0.32, 0.25, 0.11, 0.020 +19761115, 0.51, -0.34, -0.21, 0.020 +19761116, 0.26, 0.19, -0.04, 0.020 +19761117, 0.63, 0.00, -0.09, 0.020 +19761118, 1.24, -0.35, 0.18, 0.020 +19761119, 0.14, 0.18, 0.30, 0.020 +19761122, 0.63, -0.17, 0.07, 0.020 +19761123, -0.41, 0.31, 0.16, 0.020 +19761124, 0.53, 0.19, -0.09, 0.020 +19761126, 0.70, 0.13, -0.35, 0.020 +19761129, -0.57, 0.44, 0.03, 0.020 +19761130, -0.32, 0.12, 0.38, 0.020 +19761201, 0.43, 0.00, 0.07, 0.018 +19761202, -0.29, 0.38, 0.42, 0.018 +19761203, 0.55, -0.10, 0.04, 0.018 +19761206, 0.78, -0.03, 0.27, 0.018 +19761207, 0.02, 0.27, 0.13, 0.018 +19761208, 0.53, 0.16, -0.20, 0.018 +19761209, 0.57, 0.27, 0.15, 0.018 +19761210, 0.22, 0.38, 0.21, 0.018 +19761213, 0.07, 0.30, 0.23, 0.018 +19761214, 0.40, -0.29, 0.40, 0.018 +19761215, 0.06, 0.03, 0.43, 0.018 +19761216, -0.28, 0.13, 0.42, 0.018 +19761217, -0.43, 0.31, 0.24, 0.018 +19761220, -0.55, 0.10, 0.07, 0.018 +19761221, 0.45, -0.23, -0.24, 0.018 +19761222, 0.46, 0.03, -0.04, 0.018 +19761223, 0.05, 0.19, -0.49, 0.018 +19761227, 1.07, -0.31, -0.20, 0.018 +19761228, 0.62, -0.04, -0.12, 0.018 +19761229, -0.32, 0.41, 0.09, 0.018 +19761230, 0.53, 0.25, 0.00, 0.018 +19761231, 0.59, 0.62, 0.17, 0.018 +19770103, -0.32, 0.56, 0.67, 0.017 +19770104, -0.98, 0.82, 0.26, 0.017 +19770105, -0.74, 0.38, 0.07, 0.017 +19770106, 0.18, 0.43, 0.26, 0.017 +19770107, 0.09, 0.51, 0.06, 0.017 +19770110, 0.12, 0.02, 0.21, 0.017 +19770111, -0.93, 0.08, 0.29, 0.017 +19770112, -0.68, 0.17, 0.18, 0.017 +19770113, 0.82, 0.21, -0.16, 0.017 +19770114, -0.02, 0.47, 0.19, 0.017 +19770117, -0.20, 0.26, 0.12, 0.017 +19770118, -0.29, 0.14, 0.25, 0.017 +19770119, 0.50, 0.27, 0.15, 0.017 +19770120, -0.74, 0.35, 0.48, 0.017 +19770121, 0.36, 0.10, 0.24, 0.017 +19770124, 0.01, -0.04, 0.48, 0.017 +19770125, -0.04, 0.15, 0.56, 0.017 +19770126, -0.65, 0.23, 0.38, 0.017 +19770127, -0.58, 0.13, 0.11, 0.017 +19770128, 0.03, -0.06, -0.24, 0.017 +19770131, 0.00, -0.43, -0.18, 0.017 +19770201, 0.50, 0.11, -0.12, 0.018 +19770202, -0.11, 0.31, 0.04, 0.018 +19770203, -0.39, 0.23, 0.09, 0.018 +19770204, 0.17, 0.29, 0.06, 0.018 +19770207, 0.06, 0.12, -0.13, 0.018 +19770208, -0.25, 0.25, -0.03, 0.018 +19770209, -0.85, 0.35, -0.07, 0.018 +19770210, 0.10, 0.17, -0.18, 0.018 +19770211, -0.53, 0.17, 0.04, 0.018 +19770214, 0.43, -0.40, -0.16, 0.018 +19770215, 0.28, -0.17, 0.29, 0.018 +19770216, 0.38, -0.19, 0.18, 0.018 +19770217, -0.52, 0.17, 0.18, 0.018 +19770218, -0.29, 0.14, 0.37, 0.018 +19770222, -0.03, -0.14, -0.12, 0.018 +19770223, -0.30, 0.13, -0.01, 0.018 +19770224, -0.62, -0.17, 0.15, 0.018 +19770225, -0.17, 0.14, -0.09, 0.018 +19770228, 0.20, -0.44, 0.05, 0.018 +19770301, 0.85, -0.21, -0.24, 0.016 +19770302, -0.22, 0.14, 0.09, 0.016 +19770303, 0.44, -0.25, 0.04, 0.016 +19770304, 0.35, 0.14, -0.09, 0.016 +19770307, 0.12, 0.06, 0.01, 0.016 +19770308, -0.34, 0.27, 0.06, 0.016 +19770309, -0.70, 0.18, 0.05, 0.016 +19770310, 0.48, -0.02, -0.22, 0.016 +19770311, 0.07, 0.13, 0.11, 0.016 +19770314, 0.63, -0.45, 0.11, 0.016 +19770315, 0.44, -0.31, 0.26, 0.016 +19770316, 0.19, -0.04, 0.04, 0.016 +19770317, -0.09, 0.11, 0.02, 0.016 +19770318, -0.22, 0.37, -0.02, 0.016 +19770321, -0.45, 0.24, -0.09, 0.016 +19770322, -0.22, 0.15, -0.01, 0.016 +19770323, -0.78, 0.35, 0.23, 0.016 +19770324, -0.46, 0.14, 0.08, 0.016 +19770325, -0.59, 0.41, -0.02, 0.016 +19770328, -0.15, -0.36, -0.01, 0.016 +19770329, 0.55, -0.29, 0.14, 0.016 +19770330, -1.10, 0.20, 0.40, 0.016 +19770331, -0.14, 0.01, 0.03, 0.016 +19770401, 0.75, -0.32, 0.02, 0.019 +19770404, -0.89, 0.26, 0.19, 0.019 +19770405, -0.28, -0.24, 0.04, 0.019 +19770406, -0.07, 0.10, 0.05, 0.019 +19770407, 0.32, -0.20, -0.10, 0.019 +19770411, 0.49, -0.30, -0.01, 0.019 +19770412, 1.20, -0.46, 0.46, 0.019 +19770413, 0.03, 0.12, 0.27, 0.019 +19770414, 0.84, -0.06, 0.13, 0.019 +19770415, 0.03, 0.12, 0.09, 0.019 +19770418, -0.40, 0.30, 0.18, 0.019 +19770419, -0.33, 0.36, 0.05, 0.019 +19770420, 0.34, 0.11, 0.36, 0.019 +19770421, -0.65, 0.25, 0.29, 0.019 +19770422, -1.20, 0.31, 0.48, 0.019 +19770425, -1.25, -0.02, 0.38, 0.019 +19770426, -0.05, -0.22, 0.20, 0.019 +19770427, 0.85, -0.22, 0.07, 0.019 +19770428, 0.21, -0.16, 0.13, 0.019 +19770429, 0.25, 0.13, 0.10, 0.019 +19770502, 0.53, -0.15, -0.14, 0.018 +19770503, 0.47, -0.03, 0.05, 0.018 +19770504, 0.57, -0.16, 0.13, 0.018 +19770505, 0.27, 0.11, -0.11, 0.018 +19770506, -0.41, 0.39, 0.19, 0.018 +19770509, -0.21, 0.08, 0.24, 0.018 +19770510, 0.30, -0.04, -0.10, 0.018 +19770511, -0.55, 0.40, 0.09, 0.018 +19770512, -0.03, 0.02, 0.08, 0.018 +19770513, 0.32, 0.12, 0.05, 0.018 +19770516, 0.40, -0.04, 0.05, 0.018 +19770517, 0.25, -0.09, -0.07, 0.018 +19770518, 0.48, 0.00, -0.11, 0.018 +19770519, -0.32, 0.31, 0.12, 0.018 +19770520, -0.37, 0.26, 0.11, 0.018 +19770523, -1.13, 0.13, 0.23, 0.018 +19770524, -0.47, -0.11, -0.19, 0.018 +19770525, -0.82, 0.11, 0.26, 0.018 +19770526, 0.16, -0.15, -0.17, 0.018 +19770527, -0.64, 0.40, 0.15, 0.018 +19770531, -0.24, -0.35, -0.03, 0.018 +19770601, 0.74, -0.27, -0.17, 0.018 +19770602, -0.14, 0.07, 0.31, 0.018 +19770603, 0.87, -0.17, -0.47, 0.018 +19770606, -0.39, 0.34, 0.09, 0.018 +19770607, 0.44, -0.23, 0.02, 0.018 +19770608, 0.51, -0.11, 0.12, 0.018 +19770609, -0.03, 0.38, -0.18, 0.018 +19770610, 0.29, 0.26, -0.01, 0.018 +19770613, 0.32, -0.12, -0.19, 0.018 +19770614, 0.99, -0.46, -0.20, 0.018 +19770615, -0.20, 0.26, 0.07, 0.018 +19770616, 0.29, 0.10, -0.25, 0.018 +19770617, 0.15, 0.27, -0.15, 0.018 +19770620, 0.43, -0.11, -0.05, 0.018 +19770621, 0.32, -0.19, 0.14, 0.018 +19770622, -0.20, 0.24, 0.15, 0.018 +19770623, 0.22, 0.35, 0.11, 0.018 +19770624, 0.56, 0.22, -0.09, 0.018 +19770627, -0.10, 0.30, -0.03, 0.018 +19770628, -0.72, 0.40, 0.15, 0.018 +19770629, -0.07, 0.17, 0.05, 0.018 +19770630, 0.35, 0.26, 0.07, 0.018 +19770701, -0.26, 0.51, 0.20, 0.022 +19770705, 0.01, 0.19, -0.11, 0.022 +19770706, -0.45, 0.32, 0.07, 0.022 +19770707, 0.31, 0.01, -0.18, 0.022 +19770708, -0.01, 0.42, 0.23, 0.022 +19770711, -0.26, 0.15, 0.25, 0.022 +19770712, -0.10, 0.09, 0.10, 0.022 +19770713, 0.16, 0.06, -0.17, 0.022 +19770715, 0.60, -0.02, -0.58, 0.022 +19770718, 0.62, -0.18, -0.25, 0.022 +19770719, 0.62, -0.08, -0.18, 0.022 +19770720, -0.03, -0.02, 0.07, 0.022 +19770721, -0.11, 0.18, 0.00, 0.022 +19770722, 0.07, 0.21, 0.05, 0.022 +19770725, -0.67, 0.40, -0.11, 0.022 +19770726, -0.53, 0.10, 0.07, 0.022 +19770727, -1.60, 0.06, 0.18, 0.022 +19770728, -0.05, -0.18, -0.27, 0.022 +19770729, -0.02, -0.15, -0.07, 0.022 +19770801, 0.35, -0.20, 0.00, 0.019 +19770802, -0.61, 0.18, -0.03, 0.019 +19770803, -0.22, -0.19, -0.08, 0.019 +19770804, 0.49, 0.13, -0.41, 0.019 +19770805, 0.01, 0.33, -0.17, 0.019 +19770808, -0.59, 0.12, 0.12, 0.019 +19770809, 0.07, 0.02, -0.23, 0.019 +19770810, 0.70, -0.19, -0.31, 0.019 +19770811, -0.54, 0.67, -0.22, 0.019 +19770812, -0.31, 0.15, -0.19, 0.019 +19770815, 0.21, -0.26, -0.32, 0.019 +19770816, -0.36, 0.32, -0.04, 0.019 +19770817, -0.05, 0.10, -0.44, 0.019 +19770818, 0.01, 0.15, -0.18, 0.019 +19770819, -0.23, 0.32, -0.47, 0.019 +19770822, 0.27, -0.11, -0.42, 0.019 +19770823, -0.15, 0.12, 0.31, 0.019 +19770824, -0.38, 0.20, 0.36, 0.019 +19770825, -0.91, 0.28, 0.28, 0.019 +19770826, -0.09, -0.13, -0.14, 0.019 +19770829, 0.80, -0.25, -0.40, 0.019 +19770830, -0.47, 0.11, 0.30, 0.019 +19770831, 0.24, -0.28, -0.18, 0.019 +19770901, 0.14, 0.33, 0.18, 0.021 +19770902, 0.63, -0.03, -0.09, 0.021 +19770906, 0.17, -0.16, -0.01, 0.021 +19770907, 0.26, 0.07, -0.17, 0.021 +19770908, -0.63, 0.42, 0.34, 0.021 +19770909, -0.85, 0.41, 0.13, 0.021 +19770912, -0.31, 0.06, -0.18, 0.021 +19770913, 0.00, 0.00, -0.24, 0.021 +19770914, 0.36, -0.08, -0.19, 0.021 +19770915, 0.31, -0.03, -0.02, 0.021 +19770916, -0.30, 0.34, 0.07, 0.021 +19770919, -0.59, 0.10, 0.30, 0.021 +19770920, 0.01, -0.01, -0.15, 0.021 +19770921, -0.75, 0.15, 0.30, 0.021 +19770922, -0.06, -0.12, -0.03, 0.021 +19770923, -0.02, 0.25, -0.06, 0.021 +19770926, 0.25, -0.16, -0.29, 0.021 +19770927, -0.14, 0.12, -0.12, 0.021 +19770928, 0.04, 0.09, -0.11, 0.021 +19770929, 0.52, -0.20, 0.08, 0.021 +19770930, 0.69, -0.07, -0.01, 0.021 +19771003, 0.28, 0.00, 0.10, 0.023 +19771004, -0.61, 0.28, 0.42, 0.023 +19771005, -0.36, 0.18, -0.02, 0.023 +19771006, 0.36, -0.07, 0.12, 0.023 +19771007, -0.01, 0.31, -0.06, 0.023 +19771010, -0.17, 0.15, 0.04, 0.023 +19771011, -0.77, 0.33, 0.30, 0.023 +19771012, -1.13, -0.21, 0.14, 0.023 +19771013, -0.69, -0.20, -0.19, 0.023 +19771014, 0.03, 0.02, 0.10, 0.023 +19771017, -0.11, -0.01, -0.15, 0.023 +19771018, -0.02, 0.21, 0.18, 0.023 +19771019, -1.05, 0.32, 0.47, 0.023 +19771020, 0.19, -0.27, -0.07, 0.023 +19771021, -0.23, 0.30, 0.08, 0.023 +19771024, -0.79, 0.10, 0.24, 0.023 +19771025, -0.83, -0.33, 0.07, 0.023 +19771026, 0.98, -0.45, -0.26, 0.023 +19771027, 0.36, 0.10, -0.05, 0.023 +19771028, 0.33, 0.19, -0.05, 0.023 +19771031, -0.19, 0.27, 0.20, 0.023 +19771101, -0.98, 0.19, 0.44, 0.024 +19771102, -0.60, 0.29, 0.00, 0.024 +19771103, 0.14, -0.03, -0.10, 0.024 +19771104, 0.94, 0.09, -0.07, 0.024 +19771107, 0.81, -0.01, -0.18, 0.024 +19771108, 0.19, 0.17, 0.17, 0.024 +19771109, 0.50, 0.16, -0.14, 0.024 +19771110, 1.91, -0.33, -0.55, 0.024 +19771111, 1.28, -0.34, -0.13, 0.024 +19771114, -0.50, 0.41, 0.27, 0.024 +19771115, 0.65, 0.09, -0.26, 0.024 +19771116, -0.33, 0.50, 0.10, 0.024 +19771117, -0.21, 0.66, 0.28, 0.024 +19771118, 0.25, 0.32, -0.04, 0.024 +19771121, -0.08, 0.19, -0.03, 0.024 +19771122, 0.86, -0.19, -0.13, 0.024 +19771123, 0.59, 0.24, -0.07, 0.024 +19771125, 0.32, 0.26, -0.02, 0.024 +19771128, -0.54, 0.32, 0.23, 0.024 +19771129, -1.41, 0.48, 0.38, 0.024 +19771130, 0.17, 0.00, 0.09, 0.024 +19771201, 0.05, 0.48, 0.08, 0.023 +19771202, 0.01, 0.32, 0.21, 0.023 +19771205, -0.36, 0.30, 0.07, 0.023 +19771206, -1.52, 0.07, 0.44, 0.023 +19771207, -0.14, -0.04, 0.01, 0.023 +19771208, 0.20, 0.13, -0.25, 0.023 +19771209, 0.69, -0.08, 0.01, 0.023 +19771212, 0.04, -0.01, -0.05, 0.023 +19771213, -0.05, -0.06, -0.05, 0.023 +19771214, 0.33, 0.10, -0.31, 0.023 +19771215, -0.40, 0.50, 0.01, 0.023 +19771216, -0.11, 0.18, 0.15, 0.023 +19771219, -0.71, -0.12, 0.37, 0.023 +19771220, -0.36, -0.32, -0.02, 0.023 +19771221, 0.58, -0.07, -0.45, 0.023 +19771222, 0.66, -0.11, -0.25, 0.023 +19771223, 0.88, -0.17, -0.21, 0.023 +19771227, -0.02, -0.25, 0.24, 0.023 +19771228, 0.02, 0.07, 0.10, 0.023 +19771229, 0.31, 0.06, -0.30, 0.023 +19771230, 0.18, 0.34, -0.17, 0.023 +19780103, -1.29, 0.33, 0.67, 0.023 +19780104, -0.41, -0.10, 0.08, 0.023 +19780105, -0.73, 0.31, 0.61, 0.023 +19780106, -1.24, -0.16, 0.54, 0.023 +19780109, -1.18, -0.26, 0.29, 0.023 +19780110, -0.64, -0.09, 0.14, 0.023 +19780111, -0.53, -0.02, 0.30, 0.023 +19780112, 0.19, 0.25, 0.00, 0.023 +19780113, -0.03, 0.32, 0.33, 0.023 +19780116, -0.35, -0.28, 0.09, 0.023 +19780117, 0.52, 0.14, -0.24, 0.023 +19780118, 0.68, -0.03, 0.21, 0.023 +19780119, -0.34, 0.68, 0.08, 0.023 +19780120, -0.21, 0.34, 0.04, 0.023 +19780123, -0.66, 0.27, 0.13, 0.023 +19780124, 0.02, 0.10, 0.06, 0.023 +19780125, 0.17, 0.11, 0.32, 0.023 +19780126, -0.77, 0.31, 0.45, 0.023 +19780127, -0.02, 0.03, 0.00, 0.023 +19780130, 0.75, -0.22, -0.32, 0.023 +19780131, -0.09, 0.29, -0.38, 0.023 +19780201, 0.78, 0.17, -0.37, 0.024 +19780202, 0.34, 0.10, 0.15, 0.024 +19780203, -0.30, 0.72, 0.02, 0.024 +19780206, 0.00, 0.12, 0.03, 0.024 +19780207, 0.75, -0.21, -0.23, 0.024 +19780208, 0.52, -0.10, 0.04, 0.024 +19780209, -0.36, 0.50, 0.24, 0.024 +19780210, -0.12, 0.39, -0.07, 0.024 +19780213, -0.27, 0.24, 0.04, 0.024 +19780214, -0.78, 0.30, 0.20, 0.024 +19780215, -0.26, 0.35, 0.05, 0.024 +19780216, -0.78, 0.33, 0.08, 0.024 +19780217, -0.11, 0.13, 0.22, 0.024 +19780221, -0.39, 0.16, 0.07, 0.024 +19780222, 0.06, 0.09, -0.01, 0.024 +19780223, 0.18, 0.01, -0.02, 0.024 +19780224, 0.84, -0.14, -0.19, 0.024 +19780227, -0.70, 0.33, 0.21, 0.024 +19780228, -0.79, 0.08, 0.30, 0.024 +19780301, 0.10, -0.09, -0.01, 0.024 +19780302, 0.21, 0.11, 0.17, 0.024 +19780303, 0.13, 0.00, 0.24, 0.024 +19780306, -0.54, 0.18, 0.23, 0.024 +19780307, 0.47, -0.08, -0.15, 0.024 +19780308, 0.49, -0.05, -0.15, 0.024 +19780309, 0.20, 0.33, -0.03, 0.024 +19780310, 1.04, -0.10, -0.34, 0.024 +19780313, 0.10, 0.02, 0.06, 0.024 +19780314, 0.40, -0.21, -0.03, 0.024 +19780315, -0.18, 0.38, 0.17, 0.024 +19780316, 0.43, 0.32, -0.06, 0.024 +19780317, 0.73, 0.03, -0.23, 0.024 +19780320, 0.58, -0.13, -0.19, 0.024 +19780321, -0.97, 0.51, 0.49, 0.024 +19780322, -0.26, 0.28, 0.12, 0.024 +19780323, -0.05, 0.44, 0.09, 0.024 +19780327, -0.43, 0.53, 0.25, 0.024 +19780328, 0.62, 0.01, -0.06, 0.024 +19780329, 0.20, 0.38, 0.10, 0.024 +19780330, -0.23, 0.34, 0.23, 0.024 +19780331, -0.23, 0.12, 0.27, 0.024 +19780403, -0.71, 0.11, 0.24, 0.027 +19780404, 0.38, 0.07, -0.09, 0.027 +19780405, 0.81, 0.08, -0.19, 0.027 +19780406, 0.24, 0.22, -0.08, 0.027 +19780407, 0.47, 0.26, -0.39, 0.027 +19780410, 0.31, -0.11, -0.05, 0.027 +19780411, -0.21, 0.18, 0.04, 0.027 +19780412, -0.03, 0.38, 0.24, 0.027 +19780413, 0.97, 0.19, -0.50, 0.027 +19780414, 1.86, -0.64, -0.59, 0.027 +19780417, 1.39, -0.97, -0.77, 0.027 +19780418, -1.03, 0.31, 0.28, 0.027 +19780419, 0.36, 0.02, -0.07, 0.027 +19780420, 0.72, 0.05, -0.26, 0.027 +19780421, -0.10, 0.47, 0.05, 0.027 +19780424, 1.24, -0.51, -0.38, 0.027 +19780425, 0.77, -0.36, -0.58, 0.027 +19780426, 0.17, 0.03, -0.04, 0.027 +19780427, -0.86, 0.60, 0.20, 0.027 +19780428, 0.87, -0.04, -0.36, 0.027 +19780501, 0.84, -0.13, -0.33, 0.023 +19780502, -0.26, 0.24, 0.23, 0.023 +19780503, -0.73, 0.74, 0.33, 0.023 +19780504, -0.05, 0.46, 0.05, 0.023 +19780505, 0.68, 0.36, -0.24, 0.023 +19780508, -0.26, 0.37, -0.02, 0.023 +19780509, -0.17, 0.27, -0.11, 0.023 +19780510, 0.09, 0.42, -0.07, 0.023 +19780511, 1.12, -0.09, -0.62, 0.023 +19780512, 0.83, 0.16, -0.46, 0.023 +19780515, 0.59, -0.15, -0.27, 0.023 +19780516, 0.67, 0.02, -0.24, 0.023 +19780517, 0.29, 0.27, 0.15, 0.023 +19780518, -0.75, 0.62, 0.43, 0.023 +19780519, -0.44, 0.47, 0.14, 0.023 +19780522, 0.83, -0.31, -0.25, 0.023 +19780523, -0.85, 0.17, 0.39, 0.023 +19780524, -0.98, -0.08, 0.40, 0.023 +19780525, -0.18, 0.35, -0.02, 0.023 +19780526, -0.16, 0.28, -0.11, 0.023 +19780530, 0.23, -0.03, -0.06, 0.023 +19780531, 0.40, -0.13, 0.06, 0.023 +19780601, 0.11, 0.01, -0.07, 0.024 +19780602, 0.74, -0.02, -0.25, 0.024 +19780605, 1.60, -0.54, -0.61, 0.024 +19780606, 0.43, 0.02, 0.12, 0.024 +19780607, -0.14, 0.33, 0.10, 0.024 +19780608, 0.21, 0.50, 0.14, 0.024 +19780609, -0.14, 0.69, -0.04, 0.024 +19780612, -0.28, 0.29, 0.12, 0.024 +19780613, 0.08, 0.17, -0.16, 0.024 +19780614, -0.06, 0.53, 0.00, 0.024 +19780615, -0.96, 0.44, 0.07, 0.024 +19780616, -0.85, 0.23, 0.24, 0.024 +19780619, -0.19, -0.42, 0.02, 0.024 +19780620, -0.95, 0.04, 0.45, 0.024 +19780621, -0.65, -0.51, 0.17, 0.024 +19780622, 0.21, -0.07, 0.12, 0.024 +19780623, -0.28, 0.47, 0.22, 0.024 +19780626, -1.27, -0.19, 0.38, 0.024 +19780627, 0.21, -0.61, -0.33, 0.024 +19780628, 0.37, -0.05, -0.04, 0.024 +19780629, 0.21, 0.26, -0.01, 0.024 +19780630, -0.07, 0.17, -0.02, 0.024 +19780703, -0.31, 0.30, 0.06, 0.028 +19780705, -0.87, -0.02, 0.03, 0.028 +19780706, -0.03, -0.37, -0.17, 0.028 +19780707, 0.57, -0.04, -0.07, 0.028 +19780710, 0.34, -0.18, -0.21, 0.028 +19780711, 0.60, -0.26, 0.08, 0.028 +19780712, 0.35, 0.00, -0.02, 0.028 +19780713, 0.02, 0.18, 0.13, 0.028 +19780714, 1.23, -0.31, -0.54, 0.028 +19780717, 0.23, 0.19, -0.08, 0.028 +19780718, -0.78, 0.45, 0.32, 0.028 +19780719, 1.10, -0.38, -0.09, 0.028 +19780720, 0.00, 0.62, -0.05, 0.028 +19780721, -0.32, 0.19, 0.23, 0.028 +19780724, -0.10, 0.03, -0.10, 0.028 +19780725, 0.68, -0.41, 0.01, 0.028 +19780726, 0.60, 0.10, -0.34, 0.028 +19780727, 0.52, 0.24, 0.08, 0.028 +19780728, 0.46, 0.07, 0.02, 0.028 +19780731, 0.71, -0.08, -0.24, 0.028 +19780801, 0.12, -0.02, -0.01, 0.024 +19780802, 2.13, -0.81, -0.62, 0.024 +19780803, 0.43, -0.31, 0.08, 0.024 +19780804, 0.43, -0.17, 0.09, 0.024 +19780807, -0.17, 0.62, -0.12, 0.024 +19780808, 0.48, 0.14, -0.33, 0.024 +19780809, 0.52, 0.48, -0.20, 0.024 +19780810, -0.59, 0.65, 0.30, 0.024 +19780811, 0.32, 0.25, 0.17, 0.024 +19780814, 0.09, 0.34, 0.16, 0.024 +19780815, -0.14, 0.10, 0.15, 0.024 +19780816, 0.72, 0.20, -0.42, 0.024 +19780817, 0.56, 0.41, -0.23, 0.024 +19780818, -0.23, 0.50, 0.17, 0.024 +19780821, -0.80, 0.08, 0.35, 0.024 +19780822, 0.29, 0.05, -0.17, 0.024 +19780823, 0.61, 0.21, -0.36, 0.024 +19780824, 0.27, 0.53, 0.17, 0.024 +19780825, 0.05, 0.50, -0.02, 0.024 +19780828, -0.72, 0.39, 0.23, 0.024 +19780829, -0.58, 0.27, 0.23, 0.024 +19780830, 0.15, 0.24, -0.18, 0.024 +19780831, -0.20, 0.16, 0.01, 0.024 +19780901, 0.40, -0.21, 0.06, 0.031 +19780905, 0.53, -0.45, -0.14, 0.031 +19780906, 0.84, 0.04, -0.17, 0.031 +19780907, 0.12, 0.43, 0.02, 0.031 +19780908, 1.25, -0.20, -0.17, 0.031 +19780911, 0.21, 0.40, 0.12, 0.031 +19780912, 0.07, 0.11, 0.00, 0.031 +19780913, -0.55, 0.51, 0.28, 0.031 +19780914, -1.06, 0.26, 0.41, 0.031 +19780915, -0.95, 0.08, 0.19, 0.031 +19780918, -1.07, -0.35, 0.27, 0.031 +19780919, -0.75, -0.54, 0.33, 0.031 +19780920, -0.94, -0.60, 0.40, 0.031 +19780921, -0.04, -0.41, 0.01, 0.031 +19780922, 0.03, 0.30, -0.05, 0.031 +19780925, -0.03, -0.05, 0.12, 0.031 +19780926, 0.69, 0.02, -0.09, 0.031 +19780927, -0.87, 0.27, 0.25, 0.031 +19780928, 0.21, -0.15, 0.04, 0.031 +19780929, 0.49, 0.08, -0.03, 0.031 +19781002, 0.32, -0.09, -0.04, 0.031 +19781003, -0.31, 0.02, 0.13, 0.031 +19781004, 0.38, -0.48, 0.04, 0.031 +19781005, 0.22, 0.19, 0.09, 0.031 +19781006, 0.23, 0.17, -0.06, 0.031 +19781009, 0.92, -0.36, -0.19, 0.031 +19781010, -0.14, 0.26, 0.05, 0.031 +19781011, 0.86, -0.70, -0.33, 0.031 +19781012, -0.47, 0.68, 0.07, 0.031 +19781013, -0.29, 0.20, 0.10, 0.031 +19781016, -1.82, 0.13, 0.36, 0.031 +19781017, -1.71, -1.32, 0.12, 0.031 +19781018, -0.99, -0.85, 0.08, 0.031 +19781019, -1.32, -0.39, 0.39, 0.031 +19781020, -1.79, -2.00, 0.08, 0.031 +19781023, -0.25, -1.45, -0.15, 0.031 +19781024, -0.58, 0.38, 0.34, 0.031 +19781025, -0.22, 0.24, 0.01, 0.031 +19781026, -1.73, -1.76, 0.63, 0.031 +19781027, -1.97, -1.59, -0.04, 0.031 +19781030, 0.00, -3.09, -0.76, 0.031 +19781031, -1.81, 0.24, 0.73, 0.031 +19781101, 4.12, 0.69, -1.70, 0.033 +19781102, -0.92, 1.21, 0.24, 0.033 +19781103, 0.56, 0.34, -0.13, 0.033 +19781106, -0.80, 0.72, 0.36, 0.033 +19781107, -1.58, -0.95, 0.53, 0.033 +19781108, 0.43, -0.39, -0.57, 0.033 +19781109, 0.14, 0.53, -0.01, 0.033 +19781110, 0.49, 0.40, -0.02, 0.033 +19781113, -1.67, -0.08, 0.44, 0.033 +19781114, -1.02, -1.37, 0.19, 0.033 +19781115, 0.29, 0.24, -0.26, 0.033 +19781116, 1.01, -0.42, -0.47, 0.033 +19781117, 0.95, 0.59, -0.33, 0.033 +19781120, 0.91, 0.19, -0.22, 0.033 +19781121, -0.13, 0.42, -0.03, 0.033 +19781122, 0.59, 0.33, -0.16, 0.033 +19781124, 0.47, 0.32, -0.22, 0.033 +19781127, 0.25, 0.01, -0.17, 0.033 +19781128, -0.80, 0.27, 0.36, 0.033 +19781129, -1.39, 0.12, 0.43, 0.033 +19781130, 0.90, -0.20, -0.42, 0.033 +19781201, 1.57, 0.12, -0.68, 0.039 +19781204, 0.01, 0.29, -0.07, 0.039 +19781205, 1.24, -0.18, -0.36, 0.039 +19781206, 0.17, 0.26, 0.16, 0.039 +19781207, -0.39, 0.37, -0.04, 0.039 +19781208, -0.43, 0.21, 0.42, 0.039 +19781211, 0.43, -0.16, -0.31, 0.039 +19781212, -0.52, 0.20, 0.30, 0.039 +19781213, -0.59, 0.18, 0.02, 0.039 +19781214, -0.03, -0.06, 0.02, 0.039 +19781215, -0.74, 0.05, 0.14, 0.039 +19781218, -2.23, -0.79, 0.60, 0.039 +19781219, 0.72, -0.33, -0.71, 0.039 +19781220, 0.41, 0.22, -0.31, 0.039 +19781221, 0.05, 0.34, -0.20, 0.039 +19781222, 1.66, -0.17, -0.61, 0.039 +19781226, 0.98, -0.37, -0.82, 0.039 +19781227, -0.84, 0.20, 0.32, 0.039 +19781228, -0.40, 0.06, -0.18, 0.039 +19781229, -0.13, 0.70, 0.10, 0.039 +19790102, 0.58, -0.18, 0.46, 0.035 +19790103, 1.12, 0.36, -0.06, 0.035 +19790104, 0.94, 0.42, 0.01, 0.035 +19790105, 0.65, 0.63, -0.03, 0.035 +19790108, -0.28, 0.05, 0.09, 0.035 +19790109, 0.51, 0.34, 0.02, 0.035 +19790110, -0.55, 0.32, 0.22, 0.035 +19790111, 0.42, -0.04, -0.39, 0.035 +19790112, 0.75, 0.36, -0.23, 0.035 +19790115, 0.65, -0.12, -0.12, 0.035 +19790116, -1.13, 0.24, 0.58, 0.035 +19790117, -0.08, -0.22, 0.23, 0.035 +19790118, 0.40, 0.49, 0.07, 0.035 +19790119, -0.02, 0.40, 0.24, 0.035 +19790122, 0.05, -0.10, -0.12, 0.035 +19790123, 0.63, -0.02, 0.16, 0.035 +19790124, -0.36, 0.06, 0.30, 0.035 +19790125, 0.93, -0.31, -0.01, 0.035 +19790126, 0.64, -0.07, 0.09, 0.035 +19790129, -0.24, 0.13, 0.18, 0.035 +19790130, -0.35, 0.24, 0.22, 0.035 +19790131, -1.13, 0.40, 0.22, 0.035 +19790201, 0.04, -0.19, -0.04, 0.038 +19790202, -0.33, 0.48, 0.07, 0.038 +19790205, -1.31, -0.09, 0.27, 0.038 +19790206, -0.04, -0.18, 0.20, 0.038 +19790207, -0.95, -0.34, 0.25, 0.038 +19790208, 0.52, 0.14, -0.12, 0.038 +19790209, 0.25, 0.32, 0.04, 0.038 +19790212, 0.25, -0.20, -0.26, 0.038 +19790213, 0.74, 0.17, -0.07, 0.038 +19790214, -0.14, 0.04, 0.24, 0.038 +19790215, -0.07, 0.27, -0.11, 0.038 +19790216, 0.03, 0.32, 0.09, 0.038 +19790220, 0.58, -0.26, -0.18, 0.038 +19790221, -0.28, 0.24, 0.23, 0.038 +19790222, -0.57, 0.29, 0.13, 0.038 +19790223, -0.57, 0.18, 0.15, 0.038 +19790226, -0.14, 0.06, -0.05, 0.038 +19790227, -1.70, -0.55, 0.48, 0.038 +19790228, 0.09, -0.23, -0.09, 0.038 +19790301, 0.67, -0.05, 0.02, 0.037 +19790302, 0.12, 0.33, 0.00, 0.037 +19790305, 1.10, -0.31, -0.06, 0.037 +19790306, -0.23, 0.15, 0.62, 0.037 +19790307, 0.64, 0.10, 0.15, 0.037 +19790308, 1.01, -0.05, -0.07, 0.037 +19790309, 0.03, 0.09, 0.07, 0.037 +19790312, 0.15, 0.14, -0.17, 0.037 +19790313, 0.23, 0.25, -0.11, 0.037 +19790314, -0.07, 0.21, -0.03, 0.037 +19790315, 0.17, 0.05, 0.17, 0.037 +19790316, 0.74, 0.00, -0.31, 0.037 +19790319, 0.35, -0.04, -0.04, 0.037 +19790320, -0.53, 0.29, 0.03, 0.037 +19790321, 0.66, -0.11, -0.37, 0.037 +19790322, 0.40, 0.11, -0.16, 0.037 +19790323, -0.02, 0.51, 0.08, 0.037 +19790326, -0.50, 0.17, 0.23, 0.037 +19790327, 1.30, -0.50, -0.43, 0.037 +19790328, -0.36, 0.41, 0.09, 0.037 +19790329, -0.03, 0.52, -0.28, 0.037 +19790330, -0.31, 0.65, -0.03, 0.037 +19790402, -0.68, 0.24, 0.15, 0.040 +19790403, 1.34, -0.29, -0.15, 0.040 +19790404, 0.30, 0.01, 0.12, 0.040 +19790405, 0.55, -0.04, -0.15, 0.040 +19790406, -0.06, 0.08, 0.08, 0.040 +19790409, -0.30, 0.15, 0.08, 0.040 +19790410, 0.45, -0.04, 0.17, 0.040 +19790411, -0.90, 0.38, 0.40, 0.040 +19790412, -0.24, 0.34, 0.30, 0.040 +19790416, -0.87, 0.01, 0.12, 0.040 +19790417, -0.08, -0.10, 0.02, 0.040 +19790418, 0.49, 0.30, -0.04, 0.040 +19790419, -0.38, 0.37, -0.05, 0.040 +19790420, 0.01, 0.19, -0.12, 0.040 +19790423, 0.30, 0.01, -0.22, 0.040 +19790424, 0.52, -0.03, -0.05, 0.040 +19790425, 0.33, 0.10, 0.00, 0.040 +19790426, -0.47, 0.36, 0.26, 0.040 +19790427, -0.25, 0.18, 0.14, 0.040 +19790430, -0.07, -0.12, -0.04, 0.040 +19790501, -0.02, 0.06, 0.09, 0.037 +19790502, 0.05, 0.17, -0.08, 0.037 +19790503, 0.02, 0.12, -0.19, 0.037 +19790504, -0.97, 0.19, 0.25, 0.037 +19790507, -1.82, -0.82, 0.33, 0.037 +19790508, -0.02, -0.72, -0.16, 0.037 +19790509, 0.33, 0.22, 0.21, 0.037 +19790510, -0.89, 0.12, 0.23, 0.037 +19790511, 0.12, 0.02, 0.02, 0.037 +19790514, -0.48, 0.18, 0.02, 0.037 +19790515, 0.07, -0.06, 0.22, 0.037 +19790516, 0.22, -0.20, 0.05, 0.037 +19790517, 1.47, -0.45, 0.08, 0.037 +19790518, 0.08, 0.38, 0.00, 0.037 +19790521, 0.30, 0.19, -0.16, 0.037 +19790522, 0.46, -0.01, -0.10, 0.037 +19790523, -0.39, 0.51, 0.04, 0.037 +19790524, 0.13, 0.15, 0.04, 0.037 +19790525, 0.29, 0.25, 0.03, 0.037 +19790529, -0.18, 0.02, 0.05, 0.037 +19790530, -0.94, -0.06, 0.21, 0.037 +19790531, 0.01, 0.33, 0.73, 0.037 +19790601, 0.10, 0.16, -0.12, 0.038 +19790604, 0.18, -0.03, 0.35, 0.038 +19790605, 1.18, -0.14, -0.37, 0.038 +19790606, 0.66, -0.09, -0.25, 0.038 +19790607, 0.57, -0.03, -0.03, 0.038 +19790608, -0.20, 0.37, 0.54, 0.038 +19790611, 0.26, 0.14, -0.03, 0.038 +19790612, 0.90, -0.08, 0.14, 0.038 +19790613, -0.35, 0.51, 0.56, 0.038 +19790614, -0.19, -0.08, 0.11, 0.038 +19790615, 0.05, 0.09, -0.14, 0.038 +19790618, -0.57, 0.15, 0.21, 0.038 +19790619, 0.02, -0.04, 0.27, 0.038 +19790620, 0.14, 0.38, 0.12, 0.038 +19790621, 0.39, 0.14, -0.17, 0.038 +19790622, 0.44, -0.12, -0.06, 0.038 +19790625, -0.52, -0.15, 0.14, 0.038 +19790626, -0.44, 0.08, 0.19, 0.038 +19790627, 0.56, -0.09, -0.09, 0.038 +19790628, 0.54, -0.04, 0.04, 0.038 +19790629, 0.02, -0.05, -0.02, 0.038 +19790702, -0.91, -0.06, 0.48, 0.036 +19790703, 0.14, 0.04, 0.28, 0.036 +19790705, 0.37, 0.19, 0.08, 0.036 +19790706, 1.04, -0.30, -0.26, 0.036 +19790709, 0.78, -0.41, 0.22, 0.036 +19790710, -0.31, 0.18, 0.10, 0.036 +19790711, -0.60, 0.41, 0.21, 0.036 +19790712, -0.76, 0.50, 0.35, 0.036 +19790713, -0.34, 0.13, 0.12, 0.036 +19790716, 0.41, -0.14, -0.02, 0.036 +19790717, -0.97, -0.08, 0.53, 0.036 +19790718, -0.29, -0.33, -0.13, 0.036 +19790719, -0.01, 0.49, 0.11, 0.036 +19790720, 0.25, 0.04, -0.21, 0.036 +19790723, -0.29, 0.11, -0.04, 0.036 +19790724, 0.31, -0.01, -0.01, 0.036 +19790725, 1.05, -0.27, -0.20, 0.036 +19790726, 0.11, 0.31, 0.02, 0.036 +19790727, 0.12, 0.38, 0.05, 0.036 +19790730, 0.13, 0.13, -0.11, 0.036 +19790731, 0.59, -0.10, 0.02, 0.036 +19790801, 0.35, 0.25, -0.18, 0.033 +19790802, 0.05, 0.35, -0.24, 0.033 +19790803, -0.08, 0.05, 0.16, 0.033 +19790806, 0.20, -0.16, -0.17, 0.033 +19790807, 1.17, -0.36, -0.50, 0.033 +19790808, 0.33, 0.06, -0.13, 0.033 +19790809, -0.29, 0.43, 0.09, 0.033 +19790810, 0.80, -0.11, -0.54, 0.033 +19790813, 0.86, -0.14, -0.23, 0.033 +19790814, 0.15, 0.16, 0.33, 0.033 +19790815, 0.69, 0.12, -0.16, 0.033 +19790816, -0.20, 0.09, -0.03, 0.033 +19790817, 0.24, -0.06, 0.15, 0.033 +19790820, 0.48, -0.12, -0.04, 0.033 +19790821, 0.02, 0.12, 0.00, 0.033 +19790822, 0.15, 0.23, 0.04, 0.033 +19790823, -0.28, 0.39, 0.14, 0.033 +19790824, 0.00, -0.09, 0.24, 0.033 +19790827, 0.53, -0.28, 0.10, 0.033 +19790828, -0.10, 0.16, -0.04, 0.033 +19790829, 0.01, 0.30, -0.11, 0.033 +19790830, -0.02, 0.29, -0.10, 0.033 +19790831, 0.31, 0.26, -0.22, 0.033 +19790904, -1.61, 0.15, 0.32, 0.043 +19790905, -1.25, -0.77, 0.20, 0.043 +19790906, 0.47, 0.26, -0.11, 0.043 +19790907, 0.76, -0.12, 0.22, 0.043 +19790910, 0.47, -0.06, 0.05, 0.043 +19790911, -0.68, 0.16, 0.05, 0.043 +19790912, 0.31, 0.09, -0.19, 0.043 +19790913, 0.03, 0.43, -0.49, 0.043 +19790914, 0.91, 0.00, -0.35, 0.043 +19790917, -0.11, -0.06, -0.18, 0.043 +19790918, -0.76, 0.02, 0.00, 0.043 +19790919, 0.21, -0.07, -0.05, 0.043 +19790920, 1.67, -1.25, -0.31, 0.043 +19790921, -0.05, 0.24, 0.04, 0.043 +19790924, -0.79, 0.30, -0.15, 0.043 +19790925, 0.01, -0.27, -0.16, 0.043 +19790926, 0.22, 0.10, 0.01, 0.043 +19790927, 0.10, 0.10, 0.02, 0.043 +19790928, -0.69, 0.52, 0.19, 0.043 +19791001, -0.58, 0.33, -0.18, 0.038 +19791002, 0.78, -0.27, -0.11, 0.038 +19791003, 0.13, 0.35, -0.20, 0.038 +19791004, 0.56, 0.04, 0.01, 0.038 +19791005, 0.85, -0.08, -0.02, 0.038 +19791008, -1.24, -0.03, -0.02, 0.038 +19791009, -3.44, -1.29, 0.01, 0.038 +19791010, -1.92, -2.69, -0.44, 0.038 +19791011, -0.02, 0.73, 0.01, 0.038 +19791012, -0.31, 0.73, 0.03, 0.038 +19791015, -1.23, -0.64, 0.04, 0.038 +19791016, -0.21, 0.02, 0.08, 0.038 +19791017, 0.30, 0.26, -0.13, 0.038 +19791018, 0.18, 0.04, -0.02, 0.038 +19791019, -2.09, -0.05, 0.36, 0.038 +19791022, -1.43, -1.63, -0.37, 0.038 +19791023, -0.37, -0.05, -0.26, 0.038 +19791024, 0.21, 0.12, -0.13, 0.038 +19791025, -0.34, 0.25, 0.19, 0.038 +19791026, 0.64, 0.25, -0.23, 0.038 +19791029, 0.16, 0.04, -0.10, 0.038 +19791030, 1.77, -0.51, -0.74, 0.038 +19791031, -0.62, 0.57, 0.17, 0.038 +19791101, 0.79, -0.16, -0.20, 0.047 +19791102, 0.17, 0.28, -0.15, 0.047 +19791105, -0.68, 0.11, -0.02, 0.047 +19791106, -0.61, 0.19, 0.08, 0.047 +19791107, -1.24, 0.06, 0.25, 0.047 +19791108, 0.53, -0.11, -0.37, 0.047 +19791109, 1.23, -0.07, -0.14, 0.047 +19791112, 1.71, -0.77, -0.30, 0.047 +19791113, -0.36, 0.32, 0.26, 0.047 +19791114, 0.37, 0.12, -0.25, 0.047 +19791115, 0.74, 0.23, -0.48, 0.047 +19791116, -0.18, 0.04, -0.05, 0.047 +19791119, 0.41, 0.03, -0.39, 0.047 +19791120, -0.48, 0.46, -0.21, 0.047 +19791121, 0.08, -0.23, -0.19, 0.047 +19791123, 0.76, 0.07, -0.31, 0.047 +19791126, 2.11, -0.28, -0.40, 0.047 +19791127, -0.19, 0.76, 0.29, 0.047 +19791128, 0.41, 0.40, -0.34, 0.047 +19791129, 0.07, 0.53, -0.19, 0.047 +19791130, -0.49, 0.54, 0.07, 0.047 +19791203, -0.30, 0.14, 0.19, 0.047 +19791204, 0.83, -0.20, -0.42, 0.047 +19791205, 0.50, 0.27, -0.37, 0.047 +19791206, 0.69, 0.20, -0.19, 0.047 +19791207, -0.35, 0.67, -0.08, 0.047 +19791210, 0.23, 0.06, -0.03, 0.047 +19791211, -0.22, 0.11, 0.06, 0.047 +19791212, 0.06, 0.54, -0.33, 0.047 +19791213, 0.14, 0.24, -0.48, 0.047 +19791214, 1.05, -0.20, -0.40, 0.047 +19791217, 0.44, 0.06, -0.24, 0.047 +19791218, -0.92, 0.30, 0.54, 0.047 +19791219, -0.14, 0.14, -0.06, 0.047 +19791220, 0.13, 0.26, -0.02, 0.047 +19791221, -0.61, 0.59, 0.02, 0.047 +19791224, 0.04, 0.00, 0.18, 0.047 +19791226, 0.09, 0.01, 0.03, 0.047 +19791227, 0.07, 0.14, -0.10, 0.047 +19791228, 0.03, 0.37, -0.10, 0.047 +19791231, 0.05, 0.28, -0.10, 0.047 +19800102, -2.05, 0.18, 1.07, 0.036 +19800103, -0.73, -0.90, 0.33, 0.036 +19800104, 1.32, 0.58, -0.38, 0.036 +19800107, 0.39, 0.24, 0.05, 0.036 +19800108, 1.92, -0.36, -0.70, 0.036 +19800109, 0.11, 0.64, 0.01, 0.036 +19800110, 0.85, 0.32, -0.02, 0.036 +19800111, 0.20, 0.21, 0.45, 0.036 +19800114, 0.34, 0.30, 0.66, 0.036 +19800115, 0.54, -0.11, -0.10, 0.036 +19800116, 0.04, 0.46, -0.10, 0.036 +19800117, -0.28, 0.46, 0.28, 0.036 +19800118, 0.22, 0.01, 0.09, 0.036 +19800121, 0.85, -0.17, 0.25, 0.036 +19800122, -0.59, -0.01, -0.04, 0.036 +19800123, 1.50, -0.70, -0.17, 0.036 +19800124, 0.25, 0.17, -0.09, 0.036 +19800125, -0.03, 0.33, -0.19, 0.036 +19800128, 1.00, -0.41, -0.29, 0.036 +19800129, -0.65, -0.04, 0.22, 0.036 +19800130, 0.94, -0.21, 0.17, 0.036 +19800131, -0.72, 0.54, 0.17, 0.036 +19800201, 0.66, -0.29, 0.11, 0.044 +19800204, -0.46, 0.34, 0.20, 0.044 +19800205, 0.21, -0.01, -0.07, 0.044 +19800206, 0.84, -0.67, 0.19, 0.044 +19800207, 0.43, -0.07, 0.45, 0.044 +19800208, 1.25, -0.72, 0.51, 0.044 +19800211, -0.72, 0.37, -0.19, 0.044 +19800212, 0.58, -0.45, -0.52, 0.044 +19800213, 0.27, -0.11, -0.26, 0.044 +19800214, -1.43, 0.47, 0.28, 0.044 +19800215, -0.92, 0.28, 0.01, 0.044 +19800219, -0.79, 0.01, -0.06, 0.044 +19800220, 1.41, -0.91, 0.08, 0.044 +19800221, -0.93, 0.41, -0.09, 0.044 +19800222, -0.40, -0.52, 0.16, 0.044 +19800225, -1.41, 0.31, -0.23, 0.044 +19800226, 0.56, -0.43, 0.14, 0.044 +19800227, -1.24, 0.81, 0.27, 0.044 +19800228, -0.03, -0.08, -0.26, 0.044 +19800229, 0.97, -0.66, -0.11, 0.044 +19800303, -0.94, 0.31, 0.02, 0.057 +19800304, -0.08, -1.14, 0.20, 0.057 +19800305, -1.59, -0.19, 0.42, 0.057 +19800306, -2.42, -0.34, -0.21, 0.057 +19800307, -1.73, -0.02, -0.35, 0.057 +19800310, -0.76, -1.52, 0.30, 0.057 +19800311, 1.21, -0.46, 0.01, 0.057 +19800312, -0.70, 0.64, -0.04, 0.057 +19800313, -1.02, 0.88, -0.45, 0.057 +19800314, -0.34, -0.22, -0.02, 0.057 +19800317, -3.20, -0.27, 0.00, 0.057 +19800318, 1.32, -2.15, 0.25, 0.057 +19800319, 0.36, 0.46, -0.01, 0.057 +19800320, -1.05, 0.96, -0.24, 0.057 +19800321, -0.77, 0.08, 0.26, 0.057 +19800324, -3.13, -0.41, 0.59, 0.057 +19800325, -0.55, -1.41, -0.43, 0.057 +19800326, -0.54, 0.34, -0.20, 0.057 +19800327, -1.85, -5.14, 0.32, 0.057 +19800328, 2.93, 1.98, -1.49, 0.057 +19800331, 1.46, 0.12, -0.16, 0.057 +19800401, 0.32, 0.85, -0.07, 0.059 +19800402, 0.84, 0.46, -0.31, 0.059 +19800403, -0.41, 0.38, 0.12, 0.059 +19800407, -2.07, 0.01, 0.51, 0.059 +19800408, 0.94, -0.52, -0.09, 0.059 +19800409, 1.81, -0.84, 0.22, 0.059 +19800410, 0.87, 0.45, 0.24, 0.059 +19800411, -0.11, 0.53, 0.41, 0.059 +19800414, -1.03, 0.18, 0.17, 0.059 +19800415, -0.23, -0.08, 0.12, 0.059 +19800416, -1.09, 0.39, 0.59, 0.059 +19800417, -0.55, -0.26, 0.21, 0.059 +19800418, -0.41, 0.32, 0.13, 0.059 +19800421, -0.89, -0.44, 0.39, 0.059 +19800422, 3.41, -0.83, -1.09, 0.059 +19800423, 0.35, 0.63, -0.05, 0.059 +19800424, 0.81, 0.28, -0.43, 0.059 +19800425, 0.47, -0.87, -0.24, 0.059 +19800428, 0.39, 0.11, 0.01, 0.059 +19800429, 0.30, 0.23, -0.03, 0.059 +19800430, 0.29, -0.05, 0.14, 0.059 +19800501, -0.66, 0.34, 0.30, 0.038 +19800502, 0.15, 0.10, 0.18, 0.038 +19800505, 0.76, -0.20, 0.24, 0.038 +19800506, 0.14, 0.50, -0.06, 0.038 +19800507, 0.87, -0.01, 0.64, 0.038 +19800508, -0.71, 0.68, 0.16, 0.038 +19800509, -1.18, 0.89, 0.16, 0.038 +19800512, -0.02, 0.03, -0.02, 0.038 +19800513, 1.19, -0.39, -0.24, 0.038 +19800514, 0.65, 0.42, -0.26, 0.038 +19800515, 0.20, 0.45, -0.38, 0.038 +19800516, 0.38, 0.15, -0.20, 0.038 +19800519, 0.24, 0.10, -0.12, 0.038 +19800520, -0.08, 0.12, -0.01, 0.038 +19800521, 0.06, -0.05, 0.11, 0.038 +19800522, 1.21, -0.37, -0.24, 0.038 +19800523, 1.45, -0.43, -0.09, 0.038 +19800527, 0.66, -0.27, 0.28, 0.038 +19800528, 0.61, -0.45, -0.02, 0.038 +19800529, -1.47, 0.82, -0.09, 0.038 +19800530, 0.70, -0.46, 0.02, 0.038 +19800602, -0.25, 0.31, 0.02, 0.029 +19800603, -0.21, 0.23, -0.05, 0.029 +19800604, 1.69, -0.69, -0.68, 0.029 +19800605, 0.21, 0.30, -0.02, 0.029 +19800606, 0.40, 0.09, -0.20, 0.029 +19800609, 0.37, -0.15, 0.19, 0.029 +19800610, 0.80, -0.37, -0.12, 0.029 +19800611, 1.08, -0.46, -0.22, 0.029 +19800612, -0.25, 0.19, -0.29, 0.029 +19800613, 0.29, 0.46, 0.04, 0.029 +19800616, 0.17, -0.13, 0.03, 0.029 +19800617, 0.03, 0.10, 0.16, 0.029 +19800618, 0.15, -0.24, 0.23, 0.029 +19800619, -1.27, 0.83, 0.16, 0.029 +19800620, -0.41, 0.27, 0.22, 0.029 +19800623, 0.39, -0.05, -0.10, 0.029 +19800624, 0.58, -0.11, -0.13, 0.029 +19800625, 1.21, -0.33, -0.09, 0.029 +19800626, -0.36, 0.39, 0.00, 0.029 +19800627, -0.12, 0.33, -0.17, 0.029 +19800630, -1.46, 0.61, 0.14, 0.029 +19800701, 0.55, -0.07, -0.69, 0.024 +19800702, 0.66, 0.16, -0.47, 0.024 +19800703, 1.39, -0.28, -0.52, 0.024 +19800707, 0.76, -0.12, -0.19, 0.024 +19800708, -0.30, 0.39, 0.06, 0.024 +19800709, 0.13, 0.26, -0.08, 0.024 +19800710, -0.75, 0.73, 0.14, 0.024 +19800711, 0.70, 0.04, -0.53, 0.024 +19800714, 1.72, -0.23, -0.97, 0.024 +19800715, -0.46, 0.64, 0.07, 0.024 +19800716, 0.21, 0.38, -0.12, 0.024 +19800717, 1.41, -0.22, -0.83, 0.024 +19800718, 0.33, 0.36, -0.17, 0.024 +19800721, 0.34, -0.03, -0.22, 0.024 +19800722, -0.26, 0.07, 0.20, 0.024 +19800723, -0.16, 0.25, -0.07, 0.024 +19800724, -0.11, 0.27, -0.22, 0.024 +19800725, -0.76, 0.43, 0.06, 0.024 +19800728, 0.43, -0.23, -0.40, 0.024 +19800729, 0.76, 0.07, -0.52, 0.024 +19800730, 0.08, 0.86, -0.52, 0.024 +19800731, -0.38, 0.18, 0.12, 0.024 +19800801, -0.18, 0.88, -0.32, 0.030 +19800804, -0.36, 0.03, 0.34, 0.030 +19800805, -0.02, 0.46, -0.17, 0.030 +19800806, 0.66, 0.01, -0.42, 0.030 +19800807, 1.45, -0.32, -0.77, 0.030 +19800808, 0.29, 0.12, -0.12, 0.030 +19800811, 0.91, -0.22, -0.24, 0.030 +19800812, -0.74, 0.31, 0.17, 0.030 +19800813, -0.28, 0.50, 0.08, 0.030 +19800814, 1.51, -0.16, -0.82, 0.030 +19800815, 0.40, 0.16, -0.23, 0.030 +19800818, -1.79, 0.09, 1.00, 0.030 +19800819, -0.61, 0.05, 0.07, 0.030 +19800820, 0.98, -0.13, -0.39, 0.030 +19800821, 1.47, 0.09, -0.74, 0.030 +19800822, 0.60, 0.21, -0.38, 0.030 +19800825, -0.50, 0.37, -0.20, 0.030 +19800826, -0.12, 0.40, -0.32, 0.030 +19800827, -0.93, 0.57, 0.28, 0.030 +19800828, -1.14, 0.13, 0.68, 0.030 +19800829, 0.26, 0.19, 0.00, 0.030 +19800902, 0.99, -0.28, -0.03, 0.036 +19800903, 1.92, -0.48, -0.41, 0.036 +19800904, -0.38, 0.58, 0.13, 0.036 +19800905, -0.31, 0.69, -0.19, 0.036 +19800908, -1.22, 0.69, 0.19, 0.036 +19800909, 0.54, -0.10, -0.32, 0.036 +19800910, 0.67, 0.34, -0.24, 0.036 +19800911, 0.68, 0.50, -0.96, 0.036 +19800912, 0.08, 0.63, -0.59, 0.036 +19800915, 0.09, 0.07, -0.40, 0.036 +19800916, 0.90, 0.06, -0.78, 0.036 +19800917, 1.50, -0.29, -1.08, 0.036 +19800918, -0.34, 0.16, 0.08, 0.036 +19800919, 0.57, 0.19, -0.45, 0.036 +19800922, 0.76, -0.62, -0.78, 0.036 +19800923, -0.68, -0.40, 0.27, 0.036 +19800924, 0.61, -0.71, -0.52, 0.036 +19800925, -1.17, 0.59, 0.25, 0.036 +19800926, -2.01, -0.06, 0.82, 0.036 +19800929, -2.42, -0.64, 1.08, 0.036 +19800930, 1.50, -0.06, -0.95, 0.036 +19801001, 1.31, -0.35, -1.56, 0.041 +19801002, 0.72, -0.05, -0.58, 0.041 +19801003, 1.11, 0.31, -0.59, 0.041 +19801006, 1.71, -0.24, -0.90, 0.041 +19801007, -0.50, 0.34, 0.05, 0.041 +19801008, 0.48, 0.23, -0.56, 0.041 +19801009, -0.37, 0.55, 0.05, 0.041 +19801010, -0.42, 0.51, 0.40, 0.041 +19801013, 1.13, -0.47, -0.45, 0.041 +19801014, 0.00, 0.25, -0.09, 0.041 +19801015, 1.10, -0.59, -0.55, 0.041 +19801016, -1.20, 0.37, 0.74, 0.041 +19801017, -0.52, 0.15, 0.08, 0.041 +19801020, 0.60, -0.48, 0.05, 0.041 +19801021, -0.63, 0.27, 0.10, 0.041 +19801022, 0.17, 0.41, -0.22, 0.041 +19801023, -1.79, 0.60, 0.90, 0.041 +19801024, 0.25, -0.06, 0.15, 0.041 +19801027, -1.41, 0.58, 0.44, 0.041 +19801028, -0.01, -0.13, -0.54, 0.041 +19801029, -0.14, 0.24, -0.23, 0.041 +19801030, -1.43, 0.44, 0.54, 0.041 +19801031, 0.97, -0.61, -0.20, 0.041 +19801103, 1.10, -0.52, -0.79, 0.053 +19801105, 1.69, -0.37, -1.42, 0.053 +19801106, -1.79, 0.38, 0.24, 0.053 +19801107, 0.12, -0.47, -0.10, 0.053 +19801110, 0.27, -0.18, -0.40, 0.053 +19801111, 1.20, -0.35, -0.23, 0.053 +19801112, 2.35, -0.96, -1.16, 0.053 +19801113, 1.47, -0.34, -0.88, 0.053 +19801114, 0.49, 0.12, -0.49, 0.053 +19801117, 0.39, -0.48, -0.47, 0.053 +19801118, 1.37, -0.60, -0.96, 0.053 +19801119, -0.37, 0.67, -0.58, 0.053 +19801120, 0.91, -0.41, -0.32, 0.053 +19801121, -0.87, 0.68, -0.05, 0.053 +19801124, -0.64, -0.37, 0.81, 0.053 +19801125, 0.76, -0.07, -0.19, 0.053 +19801126, 0.50, 0.08, -0.71, 0.053 +19801128, 0.27, 0.03, 0.06, 0.053 +19801201, -2.21, 0.91, 0.35, 0.059 +19801202, -0.30, -0.39, 0.24, 0.059 +19801203, -0.07, 0.56, -0.37, 0.059 +19801204, -0.12, 0.58, -0.20, 0.059 +19801205, -1.91, 0.60, 0.88, 0.059 +19801208, -2.71, -0.79, 1.68, 0.059 +19801209, -0.21, -0.64, 0.23, 0.059 +19801210, -1.60, 0.30, 0.84, 0.059 +19801211, -1.16, -1.51, 0.50, 0.059 +19801212, 1.38, -0.04, -1.08, 0.059 +19801215, 0.11, 0.24, -0.49, 0.059 +19801216, 0.71, -0.76, -0.47, 0.059 +19801217, 1.52, -0.85, -0.34, 0.059 +19801218, 0.41, 0.21, 1.27, 0.059 +19801219, 0.58, 0.18, 0.60, 0.059 +19801222, 1.28, -0.33, -0.04, 0.059 +19801223, -0.31, 0.55, 0.16, 0.059 +19801224, 0.35, 0.00, 0.19, 0.059 +19801226, 0.46, -0.05, -0.26, 0.059 +19801229, -1.06, 0.40, -0.24, 0.059 +19801230, 0.16, -0.06, -0.44, 0.059 +19801231, 0.35, 0.60, -0.33, 0.059 +19810102, 0.56, 0.22, 0.64, 0.049 +19810105, 0.95, -0.23, 0.94, 0.049 +19810106, 0.05, 0.19, 0.84, 0.049 +19810107, -2.65, -1.27, 1.80, 0.049 +19810108, -1.37, 0.72, 0.64, 0.049 +19810109, 0.37, 0.67, -0.35, 0.049 +19810112, 0.02, 0.38, 0.45, 0.049 +19810113, -0.33, 0.17, 0.05, 0.049 +19810114, 0.27, 0.21, -0.36, 0.049 +19810115, 0.50, 0.01, -0.47, 0.049 +19810116, 0.49, -0.06, -0.09, 0.049 +19810119, -0.25, 0.30, 0.17, 0.049 +19810120, -1.89, 0.65, 0.58, 0.049 +19810121, -0.36, -0.01, 0.32, 0.049 +19810122, -0.83, 0.44, 0.09, 0.049 +19810123, -0.05, 0.22, -0.19, 0.049 +19810126, -0.51, -0.15, 0.37, 0.049 +19810127, 1.01, -0.45, -0.31, 0.049 +19810128, -0.46, 0.42, 0.35, 0.049 +19810129, -0.08, 0.30, 0.45, 0.049 +19810130, -0.48, 0.34, 0.95, 0.049 +19810202, -2.25, -0.15, 1.79, 0.056 +19810203, 1.08, -0.93, -0.48, 0.056 +19810204, 0.21, 0.49, -0.14, 0.056 +19810205, 0.94, 0.11, -0.26, 0.056 +19810206, 0.77, 0.16, -0.44, 0.056 +19810209, -0.99, 0.69, 0.53, 0.056 +19810210, -0.14, 0.05, 0.13, 0.056 +19810211, -0.74, 0.41, 0.52, 0.056 +19810212, -0.66, 0.04, 0.56, 0.056 +19810213, -0.31, 0.07, -0.10, 0.056 +19810217, 0.43, -0.58, -0.04, 0.056 +19810218, 0.45, -0.27, -0.51, 0.056 +19810219, -1.47, 0.36, 0.55, 0.056 +19810220, -0.19, -0.20, 0.50, 0.056 +19810223, 0.53, -0.33, -0.13, 0.056 +19810224, 0.17, 0.20, -0.13, 0.056 +19810225, 0.70, -0.76, -0.23, 0.056 +19810226, 1.17, 0.13, -0.73, 0.056 +19810227, 0.95, 0.11, -0.53, 0.056 +19810302, 0.60, 0.04, -0.45, 0.055 +19810303, -0.92, 0.75, 0.56, 0.055 +19810304, 0.14, -0.02, 0.29, 0.055 +19810305, -0.51, 0.64, 0.19, 0.055 +19810306, -0.09, 0.43, 0.16, 0.055 +19810309, 0.72, -0.29, -0.53, 0.055 +19810310, -0.47, -0.07, 0.58, 0.055 +19810311, -0.32, 0.06, 0.37, 0.055 +19810312, 2.23, -0.99, -0.69, 0.055 +19810313, 0.03, 0.24, 0.50, 0.055 +19810316, 1.01, -0.27, -0.07, 0.055 +19810317, -0.45, 0.34, 0.74, 0.055 +19810318, 0.23, 0.25, 0.31, 0.055 +19810319, -0.50, 0.90, 0.59, 0.055 +19810320, 0.63, 0.42, -0.30, 0.055 +19810323, 1.02, -0.39, -1.01, 0.055 +19810324, -0.60, 0.48, -0.30, 0.055 +19810325, 1.54, -0.57, -0.45, 0.055 +19810326, -0.45, 0.52, 0.12, 0.055 +19810327, -1.01, 0.67, 0.10, 0.055 +19810330, -0.30, 0.22, -0.07, 0.055 +19810331, 1.05, -0.18, -0.10, 0.055 +19810401, 0.49, 0.19, 0.00, 0.051 +19810402, -0.08, 0.39, 0.18, 0.051 +19810403, -0.48, 0.63, 0.23, 0.051 +19810406, -1.11, 0.35, 0.17, 0.051 +19810407, -0.04, 0.33, 0.27, 0.051 +19810408, 0.32, 0.02, 0.22, 0.051 +19810409, 0.37, 0.21, 0.45, 0.051 +19810410, 0.03, 0.56, -0.14, 0.051 +19810413, -1.05, 0.49, 0.31, 0.051 +19810414, -0.56, 0.06, 0.74, 0.051 +19810415, 1.01, -0.13, -0.39, 0.051 +19810416, 0.44, 0.42, -0.42, 0.051 +19810420, 0.54, 0.06, -0.32, 0.051 +19810421, -0.95, 0.56, 0.36, 0.051 +19810422, -0.08, 0.16, 0.38, 0.051 +19810423, -0.03, 0.58, -0.01, 0.051 +19810424, 0.72, -0.18, -0.15, 0.051 +19810427, 0.20, -0.25, 0.04, 0.051 +19810428, -0.95, -0.29, 0.62, 0.051 +19810429, -0.94, 0.14, 0.21, 0.051 +19810430, 0.01, 0.23, -0.42, 0.051 +19810501, -0.17, 0.02, -0.30, 0.057 +19810504, -1.53, -0.35, 0.43, 0.057 +19810505, -0.41, -0.37, -0.35, 0.057 +19810506, 0.40, -0.05, -0.39, 0.057 +19810507, 0.70, -0.23, -0.34, 0.057 +19810508, 0.08, 0.35, 0.07, 0.057 +19810511, -1.42, 0.33, 0.73, 0.057 +19810512, 0.65, -0.66, 0.17, 0.057 +19810513, -0.04, 0.59, -0.17, 0.057 +19810514, 0.56, 0.00, 0.21, 0.057 +19810515, 0.61, -0.20, 0.22, 0.057 +19810518, 0.16, 0.06, -0.34, 0.057 +19810519, -0.32, 0.05, -0.01, 0.057 +19810520, 0.10, 0.45, -0.39, 0.057 +19810521, -0.11, 0.35, 0.12, 0.057 +19810522, -0.01, 0.38, -0.13, 0.057 +19810526, 0.88, -0.52, -0.39, 0.057 +19810527, 0.65, 0.22, -0.21, 0.057 +19810528, -0.17, 0.83, 0.29, 0.057 +19810529, -0.46, 0.61, 0.35, 0.057 +19810601, -0.23, 0.45, 0.37, 0.061 +19810602, -1.45, 0.18, 0.88, 0.061 +19810603, -0.03, -0.03, 0.13, 0.061 +19810604, 0.15, 0.04, -0.10, 0.061 +19810605, 0.85, -0.60, -0.30, 0.061 +19810608, -0.03, -0.16, 0.44, 0.061 +19810609, -0.34, -0.10, 0.31, 0.061 +19810610, 0.25, -0.18, 0.40, 0.061 +19810611, 1.01, -0.02, 0.10, 0.061 +19810612, -0.04, 0.38, 0.48, 0.061 +19810615, 0.06, -0.04, 1.11, 0.061 +19810616, -1.16, 0.06, 1.37, 0.061 +19810617, 0.68, -0.69, -0.23, 0.061 +19810618, -1.21, 0.53, 0.28, 0.061 +19810619, 0.38, -0.22, -0.35, 0.061 +19810622, -0.21, -0.10, 0.26, 0.061 +19810623, 0.93, -0.73, -0.16, 0.061 +19810624, -0.55, 0.53, 0.18, 0.061 +19810625, 0.10, -0.05, -0.08, 0.061 +19810626, -0.23, 0.24, -0.23, 0.061 +19810629, -0.68, -0.13, 0.35, 0.061 +19810630, -0.65, -0.20, 0.05, 0.061 +19810701, -0.98, 0.35, -0.02, 0.056 +19810702, -0.95, 0.04, 0.54, 0.056 +19810706, -1.12, -0.46, 0.82, 0.056 +19810707, 0.32, -0.80, -0.15, 0.056 +19810708, 0.09, -0.13, -0.01, 0.056 +19810709, 0.66, -0.18, -0.61, 0.056 +19810710, 0.10, 0.23, -0.12, 0.056 +19810713, 0.12, -0.18, 0.28, 0.056 +19810714, -0.12, -0.35, -0.35, 0.056 +19810715, 0.38, 0.15, -0.23, 0.056 +19810716, 0.14, 0.15, -0.28, 0.056 +19810717, 0.29, 0.02, -0.26, 0.056 +19810720, -1.59, 0.23, 0.31, 0.056 +19810721, -0.50, -0.55, -0.09, 0.056 +19810722, -0.88, 0.37, 0.31, 0.056 +19810723, 0.12, -0.33, -0.24, 0.056 +19810724, 0.80, -0.33, 0.01, 0.056 +19810727, 0.81, -0.34, -0.41, 0.056 +19810728, -0.51, 0.27, 0.28, 0.056 +19810729, -0.03, -0.05, 0.33, 0.056 +19810730, 0.57, -0.07, -0.44, 0.056 +19810731, 0.77, -0.21, -0.33, 0.056 +19810803, -0.34, -0.14, 0.12, 0.061 +19810804, 0.42, -0.51, -0.46, 0.061 +19810805, 1.05, -0.60, -0.26, 0.061 +19810806, 0.10, 0.14, 0.12, 0.061 +19810807, -0.45, 0.19, 0.24, 0.061 +19810810, 0.34, -0.72, 0.05, 0.061 +19810811, 0.84, -0.63, -0.10, 0.061 +19810812, -0.24, 0.32, 0.29, 0.061 +19810813, 0.06, 0.05, -0.27, 0.061 +19810814, -0.69, 0.58, 0.14, 0.061 +19810817, -1.02, 0.03, 0.61, 0.061 +19810818, -1.11, -0.17, 0.71, 0.061 +19810819, 0.19, -0.21, -0.27, 0.061 +19810820, 0.15, 0.12, -0.25, 0.061 +19810821, -1.03, 0.41, 0.88, 0.061 +19810824, -2.97, 0.08, 1.82, 0.061 +19810825, -0.53, -1.07, -0.15, 0.061 +19810826, -0.12, -0.06, 0.19, 0.061 +19810827, -1.08, 0.27, 0.81, 0.061 +19810828, 0.41, -0.19, -0.03, 0.061 +19810831, -1.15, 0.05, 0.87, 0.061 +19810901, 0.13, -0.50, -0.11, 0.059 +19810902, 0.26, 0.05, -0.14, 0.059 +19810903, -1.92, 0.25, 1.19, 0.059 +19810904, -1.04, 0.02, 0.42, 0.059 +19810908, -1.96, -0.79, 1.09, 0.059 +19810909, 0.25, -0.30, -0.21, 0.059 +19810910, 1.49, 0.00, -0.72, 0.059 +19810911, 1.15, -0.06, -0.25, 0.059 +19810914, -0.78, 0.68, -0.04, 0.059 +19810915, -0.59, 0.46, 0.42, 0.059 +19810916, -0.84, -0.30, 1.10, 0.059 +19810917, -1.49, 0.14, 1.30, 0.059 +19810918, -0.92, -0.26, 0.77, 0.059 +19810921, 0.54, -0.82, 0.25, 0.059 +19810922, -0.52, 0.18, 0.47, 0.059 +19810923, -1.22, -0.90, 0.90, 0.059 +19810924, -0.40, 0.28, 0.19, 0.059 +19810925, -2.40, -1.16, 1.74, 0.059 +19810928, 1.93, -1.82, -1.56, 0.059 +19810929, 0.85, 1.54, -1.27, 0.059 +19810930, 0.26, 0.50, -0.33, 0.059 +19811001, 0.66, 0.02, -0.83, 0.054 +19811002, 1.97, -0.19, -0.99, 0.054 +19811005, 0.31, 0.61, -0.22, 0.054 +19811006, -0.14, 0.33, -0.94, 0.054 +19811007, 1.55, -0.07, -0.82, 0.054 +19811008, 0.88, 0.39, -0.66, 0.054 +19811009, -0.51, 0.59, 0.88, 0.054 +19811012, -0.21, 0.31, 0.28, 0.054 +19811013, -0.22, 0.49, -0.10, 0.054 +19811014, -1.58, 0.41, 1.01, 0.054 +19811015, 0.55, -0.40, -0.17, 0.054 +19811016, -0.36, 0.36, 0.32, 0.054 +19811019, -0.21, -0.18, 0.27, 0.054 +19811020, 0.95, -0.37, -0.60, 0.054 +19811021, -0.12, 0.42, -0.47, 0.054 +19811022, -0.37, 0.07, -0.01, 0.054 +19811023, -0.80, 0.42, 0.09, 0.054 +19811026, -0.45, -0.15, -0.12, 0.054 +19811027, 0.94, -0.19, -0.50, 0.054 +19811028, 0.22, 0.21, -0.21, 0.054 +19811029, -0.38, 0.09, 0.03, 0.054 +19811030, 2.15, -1.20, -0.22, 0.054 +19811102, 1.89, -0.49, -1.36, 0.053 +19811103, 0.44, 0.20, -0.15, 0.053 +19811104, 0.13, 0.13, 0.09, 0.053 +19811105, -0.70, 0.59, 0.66, 0.053 +19811106, -0.51, 0.28, 0.48, 0.053 +19811109, 0.35, -0.62, 0.73, 0.053 +19811110, -0.40, 0.40, 0.62, 0.053 +19811111, 0.12, -0.23, 0.49, 0.053 +19811112, 0.21, 0.11, 0.52, 0.053 +19811113, -1.16, 0.61, 1.11, 0.053 +19811116, -1.31, -0.27, 1.08, 0.053 +19811117, 0.51, -0.67, 0.07, 0.053 +19811118, -0.45, 0.38, 0.41, 0.053 +19811119, 0.42, -0.42, -0.57, 0.053 +19811120, 0.87, -0.18, -0.51, 0.053 +19811123, -0.10, 0.11, -0.41, 0.053 +19811124, 1.21, -0.78, -0.16, 0.053 +19811125, 0.34, 0.17, -0.03, 0.053 +19811127, 0.70, -0.05, -0.39, 0.053 +19811130, 0.79, -0.28, -0.87, 0.053 +19811201, -0.23, 0.17, 0.09, 0.040 +19811202, -1.01, 0.61, 0.28, 0.040 +19811203, 0.31, -0.44, -0.18, 0.040 +19811204, 0.65, -0.21, -0.09, 0.040 +19811207, -0.78, 0.16, 0.41, 0.040 +19811208, -0.48, -0.33, 0.11, 0.040 +19811209, 0.46, -0.26, -0.50, 0.040 +19811210, 0.14, 0.15, -0.02, 0.040 +19811211, -0.57, 0.46, -0.03, 0.040 +19811214, -1.59, 0.16, 0.61, 0.040 +19811215, 0.04, 0.05, 0.02, 0.040 +19811216, -0.37, 0.37, -0.12, 0.040 +19811217, 0.40, -0.17, -0.65, 0.040 +19811218, 0.63, -0.14, -0.43, 0.040 +19811221, -0.47, 0.05, 0.37, 0.040 +19811222, -0.39, 0.08, 0.41, 0.040 +19811223, -0.40, 0.28, 0.21, 0.040 +19811224, 0.21, -0.02, -0.15, 0.040 +19811228, -0.27, -0.09, 0.27, 0.040 +19811229, -0.56, -0.02, 0.42, 0.040 +19811230, 0.34, -0.13, -0.12, 0.040 +19811231, 0.31, 0.44, -0.20, 0.040 +19820104, 0.16, -0.01, 0.59, 0.040 +19820105, -2.03, 0.66, 1.48, 0.040 +19820106, -0.81, -0.07, 0.73, 0.040 +19820107, -0.27, 0.24, 0.07, 0.040 +19820108, 0.46, -0.01, 0.08, 0.040 +19820111, -2.33, 0.22, 1.79, 0.040 +19820112, -0.55, -0.35, 0.12, 0.040 +19820113, -1.28, 0.41, 0.31, 0.040 +19820114, 0.48, -0.38, -0.39, 0.040 +19820115, 0.60, 0.13, -0.81, 0.040 +19820118, 0.58, -0.56, -0.52, 0.040 +19820119, -0.95, 0.51, 0.79, 0.040 +19820120, -0.61, 0.22, 0.56, 0.040 +19820121, 0.30, -0.34, 0.02, 0.040 +19820122, -0.38, 0.02, 0.64, 0.040 +19820125, -0.40, -0.94, 0.31, 0.040 +19820126, -0.17, -0.03, 0.09, 0.040 +19820127, 0.35, -0.38, -0.24, 0.040 +19820128, 2.53, -0.73, -1.75, 0.040 +19820129, 1.12, 0.03, -0.73, 0.040 +19820201, -1.79, 0.96, 0.80, 0.048 +19820202, 0.27, 0.01, -0.16, 0.048 +19820203, -0.93, 0.79, 0.55, 0.048 +19820204, -0.20, -0.01, 0.22, 0.048 +19820205, 0.76, -0.11, -0.09, 0.048 +19820208, -2.16, 0.27, 1.60, 0.048 +19820209, -0.94, -0.34, 0.94, 0.048 +19820210, 0.61, -0.47, -0.12, 0.048 +19820211, -0.14, -0.21, 0.44, 0.048 +19820212, -0.07, 0.15, -0.10, 0.048 +19820216, -0.46, -0.31, 0.11, 0.048 +19820217, -0.19, 0.45, -0.38, 0.048 +19820218, 0.06, -0.08, -0.43, 0.048 +19820219, -0.47, -0.07, 0.45, 0.048 +19820222, -1.25, 0.43, 1.63, 0.048 +19820223, -0.22, -0.66, 1.00, 0.048 +19820224, 1.40, -0.97, -0.27, 0.048 +19820225, -0.04, 0.65, -0.28, 0.048 +19820226, -0.16, -0.01, 0.43, 0.048 +19820301, 0.24, -0.04, 0.32, 0.042 +19820302, -0.38, 0.30, 1.13, 0.042 +19820303, -1.52, -0.07, 2.00, 0.042 +19820304, -1.08, -0.15, 1.44, 0.042 +19820305, -0.69, -0.60, 1.70, 0.042 +19820308, -1.61, -0.19, 2.10, 0.042 +19820309, 0.70, -1.33, -0.60, 0.042 +19820310, 0.50, 0.12, -0.49, 0.042 +19820311, -0.12, -0.07, 0.27, 0.042 +19820312, -0.80, -0.01, 0.57, 0.042 +19820315, 0.49, -0.63, -1.00, 0.042 +19820316, -0.06, 0.41, -0.26, 0.042 +19820317, -0.15, 0.17, -0.11, 0.042 +19820318, 1.12, -0.05, -0.97, 0.042 +19820319, 0.30, 0.45, -0.35, 0.042 +19820322, 1.88, -0.30, -1.66, 0.042 +19820323, 0.59, 0.01, -0.56, 0.042 +19820324, -0.45, 0.50, 0.19, 0.042 +19820325, 0.31, 0.36, -0.35, 0.042 +19820326, -0.89, 0.58, 0.34, 0.042 +19820329, 0.12, 0.03, -0.23, 0.042 +19820330, 0.01, 0.06, 0.01, 0.042 +19820331, -0.22, 0.20, 0.08, 0.042 +19820401, 1.37, -0.37, -1.02, 0.053 +19820402, 1.06, -0.31, -1.14, 0.053 +19820405, -0.31, 0.40, -0.15, 0.053 +19820406, 0.48, -0.24, -0.11, 0.053 +19820407, 0.15, 0.30, -0.24, 0.053 +19820408, 0.59, -0.05, -0.33, 0.053 +19820412, -0.22, 0.17, 0.17, 0.053 +19820413, -0.04, 0.13, 0.23, 0.053 +19820414, -0.17, -0.03, 0.25, 0.053 +19820415, 0.39, 0.01, -0.50, 0.053 +19820416, 0.45, 0.01, -0.31, 0.053 +19820419, -0.09, 0.19, 0.52, 0.053 +19820420, -0.94, 0.57, 0.68, 0.053 +19820421, 0.22, 0.00, 0.22, 0.053 +19820422, 1.01, -0.44, -0.57, 0.053 +19820423, 1.04, -0.35, -0.79, 0.053 +19820426, 0.42, 0.03, -0.48, 0.053 +19820427, -0.91, 0.43, 0.35, 0.053 +19820428, -0.61, 0.61, -0.05, 0.053 +19820429, -0.90, 0.46, 0.42, 0.053 +19820430, 0.17, -0.02, -0.18, 0.053 +19820503, 0.27, -0.31, 0.05, 0.053 +19820504, 0.59, -0.06, -0.19, 0.053 +19820505, 0.12, -0.24, 0.12, 0.053 +19820506, 0.83, -0.13, -0.13, 0.053 +19820507, 0.69, -0.30, -0.19, 0.053 +19820510, -0.75, 0.36, 0.11, 0.053 +19820511, 0.79, -0.32, -0.46, 0.053 +19820512, -0.31, 0.17, 0.24, 0.053 +19820513, -0.62, 0.52, 0.03, 0.053 +19820514, -0.13, 0.23, -0.06, 0.053 +19820517, -1.07, 0.32, 0.45, 0.053 +19820518, -0.82, 0.02, 0.32, 0.053 +19820519, -0.76, 0.15, 0.40, 0.053 +19820520, -0.44, -0.33, 0.32, 0.053 +19820521, 0.16, -0.37, 0.19, 0.053 +19820524, -0.08, -0.38, -0.18, 0.053 +19820525, -0.30, 0.12, 0.19, 0.053 +19820526, -1.26, -0.02, 0.60, 0.053 +19820527, -0.47, -0.01, -0.01, 0.053 +19820528, -0.38, 0.77, 0.01, 0.053 +19820601, -0.39, -0.24, -0.16, 0.043 +19820602, 0.31, -0.02, -0.05, 0.043 +19820603, -0.22, -0.01, 0.36, 0.043 +19820604, -1.52, 0.39, 0.81, 0.043 +19820607, -0.14, -0.48, 0.05, 0.043 +19820608, -0.44, -0.02, 0.23, 0.043 +19820609, -0.69, -0.25, 0.25, 0.043 +19820610, 0.37, -0.16, -0.31, 0.043 +19820611, 1.52, -0.21, -0.43, 0.043 +19820614, -1.14, 0.39, 0.72, 0.043 +19820615, -0.37, -0.09, 0.26, 0.043 +19820616, -0.56, 0.55, 0.30, 0.043 +19820617, -1.05, 0.13, 0.71, 0.043 +19820618, -0.55, -0.14, 0.19, 0.043 +19820621, -0.07, 0.15, -0.17, 0.043 +19820622, 0.76, -0.41, -0.73, 0.043 +19820623, 1.52, -0.51, -1.19, 0.043 +19820624, -0.19, 0.42, 0.21, 0.043 +19820625, -0.58, 0.32, 0.04, 0.043 +19820628, 0.74, -0.48, -0.61, 0.043 +19820629, 0.01, -0.28, 0.61, 0.043 +19820630, -0.39, 0.67, 0.69, 0.043 +19820701, -0.79, 0.35, 0.54, 0.050 +19820702, -0.75, 0.55, 0.45, 0.050 +19820706, -0.43, 0.03, 0.16, 0.050 +19820707, -0.21, -0.08, 0.13, 0.050 +19820708, 0.03, -0.74, -0.12, 0.050 +19820709, 1.08, -0.14, -0.38, 0.050 +19820712, 0.67, -0.09, 0.15, 0.050 +19820713, -0.12, 0.21, -0.31, 0.050 +19820714, 0.60, -0.76, -0.59, 0.050 +19820715, 0.04, 0.15, -0.14, 0.050 +19820716, 0.43, -0.32, -0.49, 0.050 +19820719, -0.25, 0.29, 0.24, 0.050 +19820720, 0.53, -0.25, -0.06, 0.050 +19820721, 0.00, 0.35, -0.22, 0.050 +19820722, 0.03, 0.26, -0.02, 0.050 +19820723, -0.33, 0.38, 0.17, 0.050 +19820726, -0.70, 0.23, 0.03, 0.050 +19820727, -0.80, 0.48, 0.07, 0.050 +19820728, -1.55, 0.14, 0.61, 0.050 +19820729, -0.16, -0.48, -0.24, 0.050 +19820730, -0.45, 0.35, 0.15, 0.050 +19820802, 1.56, -0.99, -0.01, 0.035 +19820803, -0.83, 0.69, 0.46, 0.035 +19820804, -1.46, 0.54, 0.86, 0.035 +19820805, -0.81, -0.05, 0.64, 0.035 +19820806, -1.20, 0.37, 0.91, 0.035 +19820809, -0.79, -0.90, 0.44, 0.035 +19820810, -0.17, 0.00, 0.21, 0.035 +19820811, -0.33, -0.19, 0.63, 0.035 +19820812, -0.30, -0.25, 0.64, 0.035 +19820813, 1.09, -1.36, 0.75, 0.035 +19820816, 0.41, 0.30, 0.48, 0.035 +19820817, 4.09, -2.41, 0.15, 0.035 +19820818, 0.12, 1.55, -0.40, 0.035 +19820819, 0.21, -0.46, 0.16, 0.035 +19820820, 3.08, -1.70, -0.44, 0.035 +19820823, 2.59, -1.01, -0.68, 0.035 +19820824, -0.25, 1.25, -0.62, 0.035 +19820825, 2.00, -0.26, -0.94, 0.035 +19820826, 1.07, 0.69, -1.13, 0.035 +19820827, -1.07, 0.96, -0.46, 0.035 +19820830, 0.36, -0.33, -0.41, 0.035 +19820831, 1.43, -0.41, -0.24, 0.035 +19820901, -0.88, 0.60, 0.53, 0.024 +19820902, 1.56, -0.35, -0.70, 0.024 +19820903, 1.80, -0.94, -0.60, 0.024 +19820907, -0.96, 0.69, 0.38, 0.024 +19820908, 0.67, 0.01, -0.36, 0.024 +19820909, 0.01, 0.64, 0.03, 0.024 +19820910, -0.73, 0.48, 0.29, 0.024 +19820913, 0.81, -0.77, -0.23, 0.024 +19820914, 0.81, 0.00, -0.28, 0.024 +19820915, 0.80, -0.21, -0.22, 0.024 +19820916, -0.15, 0.56, -0.21, 0.024 +19820917, -0.93, 0.62, 0.12, 0.024 +19820920, -0.11, -0.30, 0.13, 0.024 +19820921, 1.68, -0.74, -0.35, 0.024 +19820922, -0.46, 0.72, 0.47, 0.024 +19820923, -0.19, -0.08, -0.02, 0.024 +19820924, -0.28, 0.52, -0.19, 0.024 +19820927, 0.18, -0.23, 0.09, 0.024 +19820928, -0.20, 0.43, 0.15, 0.024 +19820929, -1.23, 0.51, 0.65, 0.024 +19820930, -0.85, 0.56, 0.52, 0.024 +19821001, 1.10, -0.66, 0.01, 0.028 +19821004, -0.29, 0.02, -0.02, 0.028 +19821005, 0.42, 0.10, -0.23, 0.028 +19821006, 2.92, -1.35, -0.97, 0.028 +19821007, 2.05, -0.46, -0.38, 0.028 +19821008, 1.74, -0.49, 0.26, 0.028 +19821011, 2.24, -0.53, 0.11, 0.028 +19821012, -0.10, 0.25, -0.12, 0.028 +19821013, 1.80, 0.23, -1.09, 0.028 +19821014, -1.28, 1.41, 0.23, 0.028 +19821015, -0.60, 0.66, 0.10, 0.028 +19821018, 2.03, -0.87, -0.65, 0.028 +19821019, -0.01, 0.21, 0.30, 0.028 +19821020, 1.87, -0.56, -0.55, 0.028 +19821021, 0.00, 0.72, -0.77, 0.028 +19821022, 0.04, 1.19, -0.18, 0.028 +19821025, -3.62, 1.47, 0.56, 0.028 +19821026, 0.55, -1.39, -0.11, 0.028 +19821027, 0.77, 0.83, -0.30, 0.028 +19821028, -1.02, 1.15, 0.30, 0.028 +19821029, 0.26, 0.08, 0.20, 0.028 +19821101, 1.15, -0.51, -0.32, 0.030 +19821102, 1.53, 0.12, -0.03, 0.030 +19821103, 3.56, -1.15, -0.55, 0.030 +19821104, -0.36, 1.04, -0.06, 0.030 +19821105, 0.48, 0.53, -0.04, 0.030 +19821108, -0.96, 1.04, -0.04, 0.030 +19821109, 1.64, 0.07, -0.47, 0.030 +19821110, -1.05, 1.06, -0.04, 0.030 +19821111, 0.44, -0.02, -0.26, 0.030 +19821112, -0.98, 1.50, 0.39, 0.030 +19821115, -1.75, 0.37, 0.83, 0.030 +19821116, -1.38, -0.49, 0.74, 0.030 +19821117, 1.67, -0.49, -0.47, 0.030 +19821118, 0.44, 0.38, -0.35, 0.030 +19821119, -0.67, 0.88, 0.04, 0.030 +19821122, -1.96, 0.70, 0.79, 0.030 +19821123, -0.80, 0.43, 0.01, 0.030 +19821124, 0.72, -0.14, -0.24, 0.030 +19821126, 0.71, 0.08, -0.55, 0.030 +19821129, -0.48, 0.30, -0.01, 0.030 +19821130, 2.81, -1.33, -1.33, 0.030 +19821201, 0.34, 0.94, -0.62, 0.031 +19821202, 0.01, 0.08, 0.01, 0.031 +19821203, -0.08, 0.14, 0.01, 0.031 +19821206, 1.80, -1.06, -0.97, 0.031 +19821207, 0.60, 0.22, -0.50, 0.031 +19821208, -0.44, 0.86, -0.05, 0.031 +19821209, -1.18, 0.20, 0.56, 0.031 +19821210, -0.59, -0.60, 0.37, 0.031 +19821213, 0.16, -0.59, 0.37, 0.031 +19821214, -1.58, 0.48, 1.44, 0.031 +19821215, -1.69, -0.50, 0.83, 0.031 +19821216, -0.14, -0.24, -0.31, 0.031 +19821217, 1.45, -0.17, -1.10, 0.031 +19821220, -0.81, 0.44, 0.22, 0.031 +19821221, 1.36, -0.98, -0.27, 0.031 +19821222, 0.24, 0.45, -0.36, 0.031 +19821223, 0.58, -0.13, 0.02, 0.031 +19821227, 1.43, -1.04, 0.12, 0.031 +19821228, -0.80, 0.54, 0.45, 0.031 +19821229, 0.30, -0.24, -0.12, 0.031 +19821230, -0.58, 0.47, 0.16, 0.031 +19821231, 0.31, 0.43, -0.39, 0.031 +19830103, -1.45, 0.76, 1.02, 0.033 +19830104, 1.67, -1.30, -0.18, 0.033 +19830105, 0.50, 0.25, 0.19, 0.033 +19830106, 2.28, -0.48, -0.50, 0.033 +19830107, 0.08, 0.66, 0.08, 0.033 +19830110, 1.12, 0.06, -0.53, 0.033 +19830111, -0.55, 0.62, 0.20, 0.033 +19830112, 0.62, 0.10, -0.07, 0.033 +19830113, -0.49, 0.40, 0.04, 0.033 +19830114, 0.61, 0.44, -0.12, 0.033 +19830117, 0.19, 0.48, -0.39, 0.033 +19830118, -0.14, 0.13, -0.16, 0.033 +19830119, -0.75, 0.09, 0.03, 0.033 +19830120, 0.47, -0.44, 0.07, 0.033 +19830121, -1.52, 0.54, 0.52, 0.033 +19830124, -2.75, -0.26, 0.86, 0.033 +19830125, 1.14, -0.36, -0.19, 0.033 +19830126, 0.05, 0.83, -0.47, 0.033 +19830127, 1.76, -0.44, -0.69, 0.033 +19830128, 0.22, 0.52, -0.23, 0.033 +19830131, 0.57, -0.07, -0.27, 0.033 +19830201, -1.15, 1.02, 0.64, 0.032 +19830202, 0.01, -0.05, 0.40, 0.032 +19830203, 0.72, -0.15, 0.27, 0.032 +19830204, 1.27, -0.24, -0.62, 0.032 +19830207, 0.51, 0.04, 0.33, 0.032 +19830208, -0.71, 0.60, 0.30, 0.032 +19830209, -0.36, 0.66, -0.09, 0.032 +19830210, 1.50, -0.35, -0.53, 0.032 +19830211, 0.15, 0.35, -0.40, 0.032 +19830214, 0.87, -0.14, -0.88, 0.032 +19830215, -0.20, 0.54, -0.40, 0.032 +19830216, -0.52, 0.52, 0.32, 0.032 +19830217, -0.06, -0.06, 0.08, 0.032 +19830218, 0.42, 0.30, -0.03, 0.032 +19830222, -1.33, 0.52, 0.68, 0.032 +19830223, 0.76, -0.52, -0.07, 0.032 +19830224, 1.64, -0.80, -0.44, 0.032 +19830225, 0.09, -0.06, 0.51, 0.032 +19830228, -0.99, 0.77, 0.44, 0.032 +19830301, 1.54, -1.17, 0.52, 0.027 +19830302, 0.86, -0.16, -0.13, 0.027 +19830303, 0.74, 0.11, 0.18, 0.027 +19830304, 0.18, 0.16, 0.39, 0.027 +19830307, 0.01, 0.36, 0.18, 0.027 +19830308, -1.35, 0.73, 0.72, 0.027 +19830309, 0.89, -0.23, -0.40, 0.027 +19830310, -0.50, 0.90, 0.12, 0.027 +19830311, -0.34, 0.16, 0.16, 0.027 +19830314, -0.43, -0.15, 0.37, 0.027 +19830315, 0.20, -0.43, 0.22, 0.027 +19830316, -0.76, 0.83, 0.48, 0.027 +19830317, -0.21, -0.14, 0.23, 0.027 +19830318, 0.21, 0.22, -0.23, 0.027 +19830321, 0.68, -0.34, -0.10, 0.027 +19830322, -0.20, 0.61, -0.06, 0.027 +19830323, 1.23, -0.43, -0.24, 0.027 +19830324, 0.39, 0.24, 0.10, 0.027 +19830325, -0.28, 0.45, -0.19, 0.027 +19830328, -0.58, 0.09, 0.11, 0.027 +19830329, -0.17, 0.04, -0.15, 0.027 +19830330, 0.96, -0.50, -0.34, 0.027 +19830331, -0.21, 0.32, 0.07, 0.027 +19830404, -0.07, -0.49, 0.31, 0.036 +19830405, -0.59, 0.69, 0.14, 0.036 +19830406, -0.67, -0.20, 0.68, 0.036 +19830407, 0.33, -0.23, 0.30, 0.036 +19830408, 0.58, -0.13, 0.07, 0.036 +19830411, 1.28, -0.41, -0.44, 0.036 +19830412, 0.44, 0.16, -0.14, 0.036 +19830413, 0.70, 0.28, -0.19, 0.036 +19830414, 0.83, 0.29, -0.24, 0.036 +19830415, 0.50, 0.17, -0.05, 0.036 +19830418, 0.60, -0.03, -0.02, 0.036 +19830419, -0.62, 0.41, 0.04, 0.036 +19830420, 1.12, -0.20, -0.21, 0.036 +19830421, -0.24, 0.56, 0.20, 0.036 +19830422, 0.22, 0.28, 0.01, 0.036 +19830425, -0.93, 0.27, 0.40, 0.036 +19830426, 1.48, -0.96, -0.02, 0.036 +19830427, -0.11, 0.24, -0.02, 0.036 +19830428, 0.87, -0.23, -0.05, 0.036 +19830429, 0.75, 0.01, -0.28, 0.036 +19830502, -1.25, 0.68, 0.29, 0.033 +19830503, 0.01, -0.18, 0.12, 0.033 +19830504, 0.83, 0.23, -0.13, 0.033 +19830505, 0.83, 0.53, -0.22, 0.033 +19830506, 1.15, 0.30, -0.28, 0.033 +19830509, 0.01, 0.57, -0.15, 0.033 +19830510, 0.22, 0.67, 0.07, 0.033 +19830511, -0.57, 0.19, 0.37, 0.033 +19830512, -0.36, 0.26, -0.07, 0.033 +19830513, 0.44, 0.45, -0.22, 0.033 +19830516, -0.98, -0.32, 0.07, 0.033 +19830517, 0.34, 0.29, -0.07, 0.033 +19830518, 0.01, 0.74, -0.40, 0.033 +19830519, -0.67, 0.19, -0.10, 0.033 +19830520, -0.02, 0.00, -0.13, 0.033 +19830523, 0.69, -0.73, -0.36, 0.033 +19830524, 1.24, 0.10, -0.21, 0.033 +19830525, 0.49, 0.30, -0.10, 0.033 +19830526, -0.22, 0.63, -0.05, 0.033 +19830527, -0.40, 0.75, 0.02, 0.033 +19830531, -1.20, 0.32, 0.27, 0.033 +19830601, 0.01, -0.25, -0.27, 0.030 +19830602, 0.78, 0.01, -0.44, 0.030 +19830603, 0.41, 0.57, -0.52, 0.030 +19830606, 0.32, 0.14, -0.38, 0.030 +19830607, -0.94, 0.87, -0.03, 0.030 +19830608, -0.84, 0.06, -0.19, 0.030 +19830609, 0.23, 0.01, -0.02, 0.030 +19830610, 0.65, 0.36, -0.04, 0.030 +19830613, 1.16, -0.22, -0.13, 0.030 +19830614, 0.41, 0.22, -0.17, 0.030 +19830615, 0.87, -0.10, -0.41, 0.030 +19830616, 1.05, -0.12, -0.41, 0.030 +19830617, -0.03, 0.04, -0.12, 0.030 +19830620, -0.13, 0.02, -0.04, 0.030 +19830621, 0.69, -0.36, -0.38, 0.030 +19830622, 0.24, 0.16, -0.23, 0.030 +19830623, -0.22, 0.08, -0.40, 0.030 +19830624, 0.16, 0.27, -0.31, 0.030 +19830627, -1.17, -0.16, 0.48, 0.030 +19830628, -1.85, -0.49, 0.81, 0.030 +19830629, 0.42, -0.44, -0.39, 0.030 +19830630, 0.83, 0.19, -0.20, 0.030 +19830701, 0.56, 0.24, -0.13, 0.037 +19830705, -1.34, 0.39, 0.82, 0.037 +19830706, 0.94, -0.16, 0.17, 0.037 +19830707, -0.43, 0.63, -0.08, 0.037 +19830708, -0.24, 0.06, 0.14, 0.037 +19830711, 0.45, -0.22, 0.05, 0.037 +19830712, -1.42, 0.43, 0.57, 0.037 +19830713, -0.25, -0.35, 0.76, 0.037 +19830714, 0.28, 0.01, 0.07, 0.037 +19830715, -1.01, 0.40, 0.51, 0.037 +19830718, -0.44, -0.46, 0.43, 0.037 +19830719, 0.45, -0.18, -0.02, 0.037 +19830720, 2.35, -1.11, -0.71, 0.037 +19830721, 0.08, 0.56, -0.55, 0.037 +19830722, -0.03, 0.50, -0.14, 0.037 +19830725, 0.30, -0.21, 0.10, 0.037 +19830726, 0.32, 0.12, 0.42, 0.037 +19830727, -1.57, 0.33, 1.49, 0.037 +19830728, -1.61, 0.53, 1.27, 0.037 +19830729, -1.45, -0.08, 0.50, 0.037 +19830801, -0.52, -0.72, 0.26, 0.033 +19830802, -0.05, -0.25, 0.03, 0.033 +19830803, 0.51, -0.83, 0.58, 0.033 +19830804, -1.20, 0.09, 0.57, 0.033 +19830805, 0.26, -0.04, -0.08, 0.033 +19830808, -1.54, 0.08, 0.88, 0.033 +19830809, 0.31, -1.03, 0.45, 0.033 +19830810, 0.79, -0.25, -0.15, 0.033 +19830811, 0.10, 0.24, -0.24, 0.033 +19830812, 0.55, -0.02, 0.02, 0.033 +19830815, 0.83, -0.19, -0.38, 0.033 +19830816, -0.35, -0.13, 0.71, 0.033 +19830817, 0.91, -0.59, 0.71, 0.033 +19830818, -0.78, 0.78, 0.25, 0.033 +19830819, 0.12, -0.22, 0.29, 0.033 +19830822, 0.04, -0.10, 0.69, 0.033 +19830823, -1.01, 0.29, 0.98, 0.033 +19830824, -0.91, 0.14, 0.56, 0.033 +19830825, -0.32, -0.21, 0.27, 0.033 +19830826, 0.65, -0.59, -0.27, 0.033 +19830829, -0.05, -0.40, -0.07, 0.033 +19830830, 0.19, 0.03, -0.02, 0.033 +19830831, 1.01, -0.43, -0.51, 0.033 +19830901, -0.01, 0.34, -0.17, 0.036 +19830902, 0.60, 0.02, -0.55, 0.036 +19830906, 1.48, -0.52, -0.31, 0.036 +19830907, 0.05, 0.19, 0.42, 0.036 +19830908, -0.01, 0.36, -0.05, 0.036 +19830909, -0.16, 0.40, 0.44, 0.036 +19830912, -0.85, 0.67, 0.34, 0.036 +19830913, -0.58, -0.13, 0.45, 0.036 +19830914, 0.24, -0.21, 0.02, 0.036 +19830915, -0.45, 0.25, 0.35, 0.036 +19830916, 0.85, -0.65, -0.41, 0.036 +19830919, 1.00, -0.02, -0.36, 0.036 +19830920, 0.72, -0.50, -0.03, 0.036 +19830921, -0.39, 0.26, 0.18, 0.036 +19830922, 0.71, -0.45, -0.30, 0.036 +19830923, -0.15, 0.03, 0.18, 0.036 +19830926, 0.14, -0.01, -0.19, 0.036 +19830927, -0.89, 0.09, 0.35, 0.036 +19830928, -0.27, -0.08, 0.05, 0.036 +19830929, -0.40, 0.27, 0.41, 0.036 +19830930, -0.68, 0.21, 0.19, 0.036 +19831003, -0.29, -0.40, 0.22, 0.036 +19831004, 0.26, -0.29, -0.17, 0.036 +19831005, 0.67, -0.52, -0.21, 0.036 +19831006, 1.26, -0.95, -0.35, 0.036 +19831007, 0.28, 0.03, -0.60, 0.036 +19831010, 0.72, -0.71, 0.37, 0.036 +19831011, -1.16, 0.81, 0.30, 0.036 +19831012, -0.62, -0.15, 0.83, 0.036 +19831013, -0.06, -0.39, 0.37, 0.036 +19831014, 0.01, -0.07, 0.31, 0.036 +19831017, 0.10, -0.21, 0.33, 0.036 +19831018, -1.58, 0.24, 1.67, 0.036 +19831019, -0.83, -0.46, 0.35, 0.036 +19831020, 0.18, -0.02, 0.04, 0.036 +19831021, -0.71, 0.24, 0.45, 0.036 +19831024, -0.15, -0.80, 0.22, 0.036 +19831025, 0.26, -0.15, -0.10, 0.036 +19831026, -0.56, 0.28, -0.03, 0.036 +19831027, -0.33, -0.09, 0.17, 0.036 +19831028, -0.79, 0.25, 0.37, 0.036 +19831031, -0.10, -0.43, 0.71, 0.036 +19831101, -0.03, -0.55, 0.06, 0.033 +19831102, 0.77, -0.31, -0.33, 0.033 +19831103, -0.60, 0.68, 0.04, 0.033 +19831104, -0.58, 0.20, 0.41, 0.033 +19831107, -0.40, -0.10, 0.31, 0.033 +19831108, -0.23, -0.16, 0.10, 0.033 +19831109, 1.06, -0.82, -0.07, 0.033 +19831110, 0.34, 0.25, -0.53, 0.033 +19831111, 1.20, -0.12, -0.88, 0.033 +19831114, 0.38, 0.44, -0.92, 0.033 +19831115, -0.55, 0.71, -0.09, 0.033 +19831116, 0.39, -0.16, 0.14, 0.033 +19831117, 0.06, 0.36, 0.08, 0.033 +19831118, -0.39, 0.62, -0.28, 0.033 +19831121, 0.51, -0.16, -0.14, 0.033 +19831122, 0.39, -0.09, 0.75, 0.033 +19831123, 0.02, 0.17, 0.52, 0.033 +19831125, 0.20, 0.07, 0.17, 0.033 +19831128, -0.36, 0.21, 0.20, 0.033 +19831129, 0.69, -0.13, -0.19, 0.033 +19831130, -0.69, 0.84, 0.03, 0.033 +19831201, 0.03, -0.01, 0.26, 0.034 +19831202, -0.65, 0.28, 0.42, 0.034 +19831205, 0.00, -0.27, 0.36, 0.034 +19831206, -0.21, 0.16, -0.09, 0.034 +19831207, 0.21, -0.11, -0.14, 0.034 +19831208, -0.48, 0.04, 0.50, 0.034 +19831209, 0.00, 0.02, 0.08, 0.034 +19831212, 0.12, -0.30, 0.06, 0.034 +19831213, -0.39, 0.18, 0.28, 0.034 +19831214, -0.97, 0.35, 0.45, 0.034 +19831215, -0.86, 0.48, 0.20, 0.034 +19831216, 0.30, -0.35, -0.41, 0.034 +19831219, -0.05, -0.21, -0.09, 0.034 +19831220, -0.25, -0.07, 0.10, 0.034 +19831221, 0.72, -0.57, -0.18, 0.034 +19831222, -0.19, 0.36, -0.25, 0.034 +19831223, -0.03, 0.04, -0.08, 0.034 +19831227, 0.64, -0.63, 0.03, 0.034 +19831228, 0.21, -0.50, 0.67, 0.034 +19831229, -0.16, 0.31, -0.21, 0.034 +19831230, 0.20, 0.48, -0.27, 0.034 +19840103, -0.47, 0.49, 0.10, 0.036 +19840104, 1.46, -0.67, -0.06, 0.036 +19840105, 1.26, -0.13, -0.38, 0.036 +19840106, 0.42, 0.41, 0.06, 0.036 +19840109, -0.22, 0.29, 0.47, 0.036 +19840110, -0.39, 0.47, 0.32, 0.036 +19840111, -0.11, 0.08, 0.23, 0.036 +19840112, -0.06, 0.27, 0.52, 0.036 +19840113, -0.37, 0.20, 0.48, 0.036 +19840116, -0.02, -0.02, -0.15, 0.036 +19840117, 0.29, -0.16, -0.01, 0.036 +19840118, -0.17, 0.25, 0.19, 0.036 +19840119, -0.34, 0.17, 0.34, 0.036 +19840120, -0.62, 0.12, 0.49, 0.036 +19840123, -0.93, -0.25, 1.06, 0.036 +19840124, 0.33, -0.65, 0.64, 0.036 +19840125, -0.60, 0.33, 0.66, 0.036 +19840126, -0.47, 0.02, 0.54, 0.036 +19840127, -0.23, -0.45, 0.72, 0.036 +19840130, -0.85, -0.44, 1.18, 0.036 +19840131, 0.11, -0.70, 0.18, 0.036 +19840201, -0.49, -0.11, 0.28, 0.036 +19840202, 0.30, -0.41, -0.17, 0.036 +19840203, -1.34, 0.68, 0.71, 0.036 +19840206, -1.67, -0.09, 1.07, 0.036 +19840207, 0.11, -1.03, -0.15, 0.036 +19840208, -1.73, 0.63, 0.82, 0.036 +19840209, -0.51, -0.77, 0.07, 0.036 +19840210, 0.51, -0.07, -0.69, 0.036 +19840213, -0.97, -0.25, 0.40, 0.036 +19840214, 0.94, -0.47, -0.32, 0.036 +19840215, -0.15, 0.29, 0.01, 0.036 +19840216, -0.21, -0.11, 0.26, 0.036 +19840217, -0.28, 0.19, 0.28, 0.036 +19840221, -0.76, 0.10, 0.31, 0.036 +19840222, -0.30, 0.05, 0.41, 0.036 +19840223, -0.23, -0.62, 0.37, 0.036 +19840224, 1.98, -0.69, -1.21, 0.036 +19840227, 1.17, -0.20, 0.19, 0.036 +19840228, -1.39, 0.86, 0.89, 0.036 +19840229, 0.21, 0.18, 0.03, 0.036 +19840301, 0.66, -0.27, 0.00, 0.033 +19840302, 0.67, 0.08, -0.23, 0.033 +19840305, -0.78, 0.38, 0.41, 0.033 +19840306, -1.00, 0.84, 0.07, 0.033 +19840307, -1.10, 0.11, 0.67, 0.033 +19840308, 0.31, -0.17, 0.17, 0.033 +19840309, -0.47, 0.22, 0.14, 0.033 +19840312, 0.99, -0.92, -0.51, 0.033 +19840313, 0.39, 0.36, -0.75, 0.033 +19840314, -0.06, 0.04, -0.30, 0.033 +19840315, 0.42, -0.01, -0.41, 0.033 +19840316, 1.04, -0.40, -0.16, 0.033 +19840319, -0.93, 0.19, 0.47, 0.033 +19840320, 0.53, -0.33, 0.10, 0.033 +19840321, -0.13, 0.43, 0.11, 0.033 +19840322, -1.03, 0.66, 0.34, 0.033 +19840323, -0.10, -0.16, 0.24, 0.033 +19840326, -0.08, -0.38, 0.51, 0.033 +19840327, 0.25, -0.42, 0.00, 0.033 +19840328, 1.37, -0.92, -0.45, 0.033 +19840329, -0.12, 0.39, 0.03, 0.033 +19840330, -0.15, 0.29, 0.00, 0.033 +19840402, -0.68, 0.34, 0.38, 0.041 +19840403, -0.34, 0.03, 0.44, 0.041 +19840404, -0.08, -0.21, 0.28, 0.041 +19840405, -1.53, 0.67, 0.51, 0.041 +19840406, -0.01, -0.77, 0.31, 0.041 +19840409, -0.07, -0.33, 0.20, 0.041 +19840410, 0.19, -0.22, 0.21, 0.041 +19840411, -0.59, 0.14, 0.55, 0.041 +19840412, 1.35, -1.19, -0.34, 0.041 +19840413, -0.07, 0.65, -0.50, 0.041 +19840416, 0.46, -0.57, -0.13, 0.041 +19840417, 0.45, 0.16, -0.15, 0.041 +19840418, -0.58, 0.56, -0.11, 0.041 +19840419, -0.01, -0.02, -0.05, 0.041 +19840423, -0.70, 0.24, 0.10, 0.041 +19840424, 0.53, -0.49, 0.01, 0.041 +19840425, 0.28, -0.07, -0.42, 0.041 +19840426, 0.97, -0.40, -0.13, 0.041 +19840427, -0.10, 0.30, 0.06, 0.041 +19840430, 0.06, -0.03, 0.03, 0.041 +19840501, 1.01, -0.43, -0.36, 0.035 +19840502, 0.37, 0.51, -0.64, 0.035 +19840503, -0.28, 0.63, -0.13, 0.035 +19840504, -1.03, 0.54, 0.67, 0.035 +19840507, 0.13, -0.11, -0.22, 0.035 +19840508, 0.63, -0.52, -0.02, 0.035 +19840509, -0.21, -0.01, 0.12, 0.035 +19840510, -0.11, 0.27, -0.06, 0.035 +19840511, -0.87, 0.12, 0.27, 0.035 +19840514, -0.64, 0.11, -0.07, 0.035 +19840515, 0.23, -0.46, 0.06, 0.035 +19840516, -0.08, 0.03, -0.06, 0.035 +19840517, -1.00, 0.22, 0.39, 0.035 +19840518, -0.62, 0.02, 0.45, 0.035 +19840521, -0.62, -0.04, 0.26, 0.035 +19840522, -0.71, -0.18, 0.03, 0.035 +19840523, -0.45, -0.04, 0.11, 0.035 +19840524, -1.38, -0.19, -0.02, 0.035 +19840525, 0.20, -0.43, 0.24, 0.035 +19840529, -0.86, 0.11, 0.44, 0.035 +19840530, -0.05, -0.25, -0.48, 0.035 +19840531, 0.27, 0.15, -0.79, 0.035 +19840601, 1.65, -0.58, -0.56, 0.036 +19840604, 0.84, 0.16, -0.79, 0.036 +19840605, -0.37, 0.33, -0.28, 0.036 +19840606, 0.65, -0.36, -0.16, 0.036 +19840607, 0.00, 0.31, -0.02, 0.036 +19840608, 0.13, 0.03, 0.01, 0.036 +19840611, -1.18, 0.54, 0.58, 0.036 +19840612, -0.47, 0.00, 0.21, 0.036 +19840613, -0.06, 0.14, -0.38, 0.036 +19840614, -1.02, 0.54, 0.11, 0.036 +19840615, -0.60, 0.22, -0.13, 0.036 +19840618, 1.38, -1.34, -0.23, 0.036 +19840619, 0.53, -0.17, -0.43, 0.036 +19840620, 1.07, -1.36, -0.24, 0.036 +19840621, -0.05, 0.43, -0.63, 0.036 +19840622, 0.06, 0.29, -0.36, 0.036 +19840625, -0.17, 0.20, -0.07, 0.036 +19840626, -0.77, 0.35, 0.16, 0.036 +19840627, -0.69, 0.11, 0.61, 0.036 +19840628, 0.64, -0.39, -0.17, 0.036 +19840629, 0.26, 0.14, 0.22, 0.036 +19840702, -0.16, -0.24, 0.36, 0.039 +19840703, 0.32, -0.10, -0.13, 0.039 +19840705, -0.52, 0.33, 0.23, 0.039 +19840706, -0.37, -0.01, 0.35, 0.039 +19840709, 0.53, -0.89, -0.04, 0.039 +19840710, -0.29, 0.41, -0.09, 0.039 +19840711, -1.34, 0.84, 0.30, 0.039 +19840712, -0.41, -0.08, 0.44, 0.039 +19840713, 0.42, -0.20, 0.37, 0.039 +19840716, 0.19, -0.64, 0.34, 0.039 +19840717, 0.37, -0.23, 0.15, 0.039 +19840718, -0.58, 0.14, 0.53, 0.039 +19840719, -0.70, 0.23, 0.26, 0.039 +19840720, -0.60, -0.06, 0.53, 0.039 +19840723, -0.65, -0.51, 0.41, 0.039 +19840724, -0.70, 0.00, 0.31, 0.039 +19840725, 0.44, -0.82, -0.47, 0.039 +19840726, 0.76, -0.51, -0.99, 0.039 +19840727, 0.79, -0.14, -1.26, 0.039 +19840730, -0.46, 0.26, -0.06, 0.039 +19840731, 0.25, -0.06, -0.99, 0.039 +19840801, 2.02, -0.76, -0.76, 0.036 +19840802, 2.43, -0.35, -1.57, 0.036 +19840803, 2.81, -0.19, -1.98, 0.036 +19840806, 0.38, 0.60, -0.69, 0.036 +19840807, 0.04, -0.19, -0.06, 0.036 +19840808, -0.53, 0.22, 1.12, 0.036 +19840809, 1.99, -1.08, -0.21, 0.036 +19840810, 0.21, 0.47, 0.17, 0.036 +19840813, -0.13, -0.17, 0.16, 0.036 +19840814, -0.52, 0.55, 0.46, 0.036 +19840815, -0.81, 0.50, 0.23, 0.036 +19840816, 0.52, -0.26, -0.01, 0.036 +19840817, 0.08, -0.02, 0.10, 0.036 +19840820, 0.29, -0.54, 0.32, 0.036 +19840821, 1.52, -0.63, -0.25, 0.036 +19840822, -0.32, 0.52, 0.58, 0.036 +19840823, 0.06, 0.09, -0.12, 0.036 +19840824, 0.17, 0.20, 0.03, 0.036 +19840827, -0.56, 0.19, 0.62, 0.036 +19840828, 0.48, -0.28, -0.10, 0.036 +19840829, -0.09, 0.30, 0.12, 0.036 +19840830, -0.29, 0.37, 0.04, 0.036 +19840831, 0.08, 0.14, 0.04, 0.036 +19840904, -0.90, 0.37, 0.43, 0.045 +19840905, -0.38, 0.10, 0.25, 0.045 +19840906, 0.69, -0.35, -0.04, 0.045 +19840907, -0.62, 0.51, 0.30, 0.045 +19840910, -0.12, -0.27, 0.16, 0.045 +19840911, 0.19, 0.19, -0.04, 0.045 +19840912, -0.03, -0.08, 0.53, 0.045 +19840913, 1.56, -1.15, -0.44, 0.045 +19840914, 0.60, 0.14, -0.15, 0.045 +19840917, 0.03, -0.14, 0.14, 0.045 +19840918, -0.60, 0.49, 0.66, 0.045 +19840919, -0.42, 0.27, 0.91, 0.045 +19840920, 0.25, -0.26, 0.40, 0.045 +19840921, -0.82, 1.01, 0.18, 0.045 +19840924, -0.34, -0.16, 0.47, 0.045 +19840925, 0.05, -0.55, 0.45, 0.045 +19840926, 0.26, -0.30, 0.36, 0.045 +19840927, 0.28, -0.12, 0.42, 0.045 +19840928, -0.45, 0.44, 0.33, 0.045 +19841001, -0.84, 0.12, 0.73, 0.043 +19841002, -0.70, 0.25, 0.52, 0.043 +19841003, -0.67, 0.14, 0.14, 0.043 +19841004, 0.16, -0.14, -0.05, 0.043 +19841005, -0.11, 0.32, 0.09, 0.043 +19841008, -0.40, 0.07, 0.25, 0.043 +19841009, -0.23, -0.02, 0.22, 0.043 +19841010, 0.14, -0.43, -0.13, 0.043 +19841011, 0.41, -0.04, 0.09, 0.043 +19841012, 0.79, -0.35, -0.15, 0.043 +19841015, 0.78, -0.53, -0.30, 0.043 +19841016, -0.42, 0.48, -0.14, 0.043 +19841017, -0.30, 0.34, -0.57, 0.043 +19841018, 1.93, -1.35, -0.98, 0.043 +19841019, 0.10, 0.46, -0.41, 0.043 +19841022, -0.37, 0.23, -0.17, 0.043 +19841023, -0.16, 0.07, 0.04, 0.043 +19841024, -0.01, -0.20, 0.12, 0.043 +19841025, -0.57, 0.13, 0.75, 0.043 +19841026, -0.66, 0.09, 0.56, 0.043 +19841029, -0.34, -0.10, -0.06, 0.043 +19841030, 1.01, -0.86, -0.09, 0.043 +19841031, -0.34, 0.17, 0.15, 0.043 +19841101, 0.68, -0.46, 0.25, 0.035 +19841102, 0.09, 0.13, 0.26, 0.035 +19841105, 0.63, -0.38, 0.32, 0.035 +19841106, 0.94, -0.44, -0.10, 0.035 +19841107, -0.67, 0.31, 0.42, 0.035 +19841108, -0.21, 0.09, -0.01, 0.035 +19841109, -0.45, 0.66, 0.26, 0.035 +19841112, -0.21, -0.05, -0.04, 0.035 +19841113, -0.76, 0.36, 0.25, 0.035 +19841114, -0.10, -0.19, 0.07, 0.035 +19841115, -0.13, -0.30, 0.36, 0.035 +19841116, -0.89, 0.42, 0.22, 0.035 +19841119, -0.73, -0.15, 0.29, 0.035 +19841120, 0.43, -0.61, 0.16, 0.035 +19841121, 0.20, -0.20, 0.29, 0.035 +19841123, 1.27, -0.55, -0.51, 0.035 +19841126, -0.62, 0.51, -0.01, 0.035 +19841127, 0.45, -0.49, 0.08, 0.035 +19841128, -0.70, 0.45, 0.45, 0.035 +19841129, -0.67, 0.23, 0.62, 0.035 +19841130, -0.27, -0.12, 0.35, 0.035 +19841203, -0.48, -0.02, 0.35, 0.032 +19841204, 0.18, -0.28, 0.09, 0.032 +19841205, -0.72, -0.09, 0.79, 0.032 +19841206, 0.25, -0.34, -0.23, 0.032 +19841207, -0.21, 0.13, 0.20, 0.032 +19841210, 0.24, -0.32, 0.01, 0.032 +19841211, 0.17, -0.08, -0.24, 0.032 +19841212, -0.22, 0.24, -0.13, 0.032 +19841213, -0.41, 0.33, 0.00, 0.032 +19841214, 0.47, -0.26, -0.27, 0.032 +19841217, 0.46, -0.62, 0.21, 0.032 +19841218, 2.40, -1.06, -1.16, 0.032 +19841219, -0.26, 0.89, -0.58, 0.032 +19841220, -0.43, 0.34, 0.57, 0.032 +19841221, -0.37, 0.19, 0.20, 0.032 +19841224, 0.67, -0.01, -0.07, 0.032 +19841226, -0.14, 0.14, 0.03, 0.032 +19841227, -0.44, 0.25, 0.30, 0.032 +19841228, 0.23, -0.09, -0.03, 0.032 +19841231, 0.46, 0.18, -0.03, 0.032 +19850102, -0.93, 0.78, 0.25, 0.029 +19850103, -0.33, 0.41, -0.03, 0.029 +19850104, -0.42, 0.35, -0.17, 0.029 +19850107, 0.25, -0.17, 0.14, 0.029 +19850108, -0.05, 0.19, 0.15, 0.029 +19850109, 0.63, -0.11, -0.17, 0.029 +19850110, 1.68, -0.70, -0.70, 0.029 +19850111, -0.05, 0.45, -0.31, 0.029 +19850114, 1.41, -0.32, -0.90, 0.029 +19850115, 0.27, 0.47, -0.19, 0.029 +19850116, 0.40, 0.39, -0.07, 0.029 +19850117, -0.12, 0.62, -0.18, 0.029 +19850118, 0.31, 0.25, 0.02, 0.029 +19850121, 1.96, -0.91, -0.92, 0.029 +19850122, 0.18, 0.21, -0.14, 0.029 +19850123, 0.99, -0.27, -0.71, 0.029 +19850124, -0.15, 0.55, -0.34, 0.029 +19850125, 0.40, 0.13, -0.33, 0.029 +19850128, 0.17, 0.42, -0.58, 0.029 +19850129, 0.82, -0.36, -0.26, 0.029 +19850130, 0.24, 0.39, -0.06, 0.029 +19850131, 0.04, 0.11, 0.48, 0.029 +19850201, -0.45, 0.31, 0.37, 0.030 +19850204, 0.97, -0.46, -0.47, 0.030 +19850205, 0.30, 0.41, -0.08, 0.030 +19850206, 0.08, 0.56, -0.22, 0.030 +19850207, 0.79, 0.01, -0.40, 0.030 +19850208, 0.24, 0.22, 0.16, 0.030 +19850211, -0.78, 0.57, 0.34, 0.030 +19850212, -0.05, 0.09, 0.41, 0.030 +19850213, 1.35, -0.74, -0.18, 0.030 +19850214, -0.31, 0.44, 0.06, 0.030 +19850215, -0.43, 0.30, 0.09, 0.030 +19850219, -0.14, -0.07, 0.10, 0.030 +19850220, 0.02, 0.18, -0.29, 0.030 +19850221, -0.55, 0.18, 0.21, 0.030 +19850222, -0.39, -0.04, 0.28, 0.030 +19850225, -0.25, -0.85, -0.12, 0.030 +19850226, 0.83, -0.60, -0.50, 0.030 +19850227, -0.19, 0.13, 0.12, 0.030 +19850228, 0.19, -0.10, -0.30, 0.030 +19850301, 1.04, -0.28, -0.34, 0.029 +19850304, -0.53, 0.46, 0.17, 0.029 +19850305, 0.05, -0.10, 0.28, 0.029 +19850306, -0.78, 0.51, 0.59, 0.029 +19850307, -0.58, 0.24, 0.68, 0.029 +19850308, -0.27, 0.09, 0.23, 0.029 +19850311, -0.22, -0.21, 0.15, 0.029 +19850312, 0.31, -0.52, 0.35, 0.029 +19850313, -0.86, 0.12, 0.82, 0.029 +19850314, -0.15, 0.10, 0.10, 0.029 +19850315, -0.45, 0.55, -0.07, 0.029 +19850318, -0.12, -0.50, 0.19, 0.029 +19850319, 1.21, -0.98, -0.75, 0.029 +19850320, -0.21, 0.06, 0.24, 0.029 +19850321, 0.14, -0.05, 0.11, 0.029 +19850322, -0.20, -0.04, 0.23, 0.029 +19850325, -0.57, -0.18, 0.82, 0.029 +19850326, 0.16, -0.28, 0.14, 0.029 +19850327, 0.57, -0.19, -0.17, 0.029 +19850328, 0.10, 0.13, 0.11, 0.029 +19850329, 0.56, -0.15, 0.20, 0.029 +19850401, 0.28, -0.17, 0.01, 0.034 +19850402, -0.36, 0.29, 0.25, 0.034 +19850403, -0.74, 0.26, 0.56, 0.034 +19850404, -0.09, -0.08, 0.12, 0.034 +19850408, -0.44, 0.33, 0.60, 0.034 +19850409, 0.04, -0.12, 0.18, 0.034 +19850410, 0.59, -0.12, -0.25, 0.034 +19850411, 0.42, -0.09, -0.07, 0.034 +19850412, 0.15, -0.09, 0.00, 0.034 +19850415, 0.20, -0.11, 0.12, 0.034 +19850416, 0.15, -0.04, -0.11, 0.034 +19850417, 0.21, 0.04, -0.01, 0.034 +19850418, -0.46, 0.38, 0.37, 0.034 +19850419, 0.09, -0.20, 0.16, 0.034 +19850422, -0.28, 0.05, 0.28, 0.034 +19850423, 0.54, -0.46, -0.06, 0.034 +19850424, 0.14, -0.12, 0.13, 0.034 +19850425, 0.49, -0.37, 0.23, 0.034 +19850426, -0.53, 0.50, 0.01, 0.034 +19850429, -0.82, 0.23, 0.80, 0.034 +19850430, -0.52, 0.01, 0.43, 0.034 +19850501, -0.67, 0.42, 0.55, 0.030 +19850502, 0.14, -0.46, 0.30, 0.030 +19850503, 0.58, -0.39, -0.21, 0.030 +19850506, 0.04, -0.03, 0.15, 0.030 +19850507, 0.40, -0.22, -0.20, 0.030 +19850508, -0.01, 0.17, -0.20, 0.030 +19850509, 0.74, -0.13, -0.33, 0.030 +19850510, 1.30, -0.25, -0.78, 0.030 +19850513, 0.14, -0.06, -0.23, 0.030 +19850514, -0.30, 0.26, 0.47, 0.030 +19850515, 0.29, -0.17, 0.02, 0.030 +19850516, 0.54, -0.23, 0.09, 0.030 +19850517, 0.91, -0.26, -0.36, 0.030 +19850520, 1.16, -0.46, -0.47, 0.030 +19850521, -0.06, -0.08, -0.07, 0.030 +19850522, -0.56, 0.17, -0.04, 0.030 +19850523, -0.47, 0.20, 0.21, 0.030 +19850524, 0.31, -0.16, -0.09, 0.030 +19850528, -0.16, 0.02, 0.29, 0.030 +19850529, -0.08, 0.09, -0.20, 0.030 +19850530, -0.02, -0.06, 0.21, 0.030 +19850531, 0.75, -0.55, 0.02, 0.030 +19850603, 0.05, 0.07, -0.17, 0.028 +19850604, 0.37, -0.23, -0.28, 0.028 +19850605, 0.13, 0.22, 0.01, 0.028 +19850606, 0.36, -0.39, -0.27, 0.028 +19850607, -0.61, 0.45, 0.22, 0.028 +19850610, -0.13, -0.25, 0.36, 0.028 +19850611, -0.22, 0.25, 0.39, 0.028 +19850612, -0.61, 0.43, 0.75, 0.028 +19850613, -1.11, 0.49, 0.67, 0.028 +19850614, 0.74, -0.56, 0.03, 0.028 +19850617, -0.26, 0.17, 0.13, 0.028 +19850618, 0.37, -0.18, 0.29, 0.028 +19850619, -0.21, 0.35, -0.04, 0.028 +19850620, -0.07, -0.10, 0.17, 0.028 +19850621, 1.06, -0.82, -0.04, 0.028 +19850624, 0.04, 0.17, -0.60, 0.028 +19850625, 0.35, 0.20, -0.58, 0.028 +19850626, 0.16, -0.03, -0.38, 0.028 +19850627, 0.59, -0.08, -0.30, 0.028 +19850628, 0.29, 0.21, 0.02, 0.028 +19850701, 0.27, -0.08, -0.13, 0.028 +19850702, -0.11, 0.30, 0.15, 0.028 +19850703, -0.20, 0.28, 0.15, 0.028 +19850705, 0.53, 0.14, 0.08, 0.028 +19850708, -0.33, 0.01, 0.28, 0.028 +19850709, -0.37, 0.19, 0.57, 0.028 +19850710, 0.59, -0.10, -0.14, 0.028 +19850711, 0.34, 0.25, -0.29, 0.028 +19850712, 0.21, 0.14, 0.02, 0.028 +19850715, -0.15, 0.37, 0.06, 0.028 +19850716, 0.98, -0.09, -0.55, 0.028 +19850717, 0.37, 0.20, -0.53, 0.028 +19850718, -0.57, 0.64, 0.33, 0.028 +19850719, 0.30, 0.41, 0.04, 0.028 +19850722, -0.45, 0.10, -0.54, 0.028 +19850723, -0.84, 0.69, -1.17, 0.028 +19850724, -0.62, 0.14, 0.29, 0.028 +19850725, 0.08, -0.07, 0.07, 0.028 +19850726, 0.11, -0.11, -0.05, 0.028 +19850729, -1.39, 0.35, 0.22, 0.028 +19850730, 0.05, -0.37, 0.29, 0.028 +19850731, 0.49, -0.23, -0.44, 0.028 +19850801, 0.69, -0.06, -0.42, 0.025 +19850802, -0.23, 0.47, 0.06, 0.025 +19850805, -0.53, -0.31, 0.02, 0.025 +19850806, -1.20, 0.28, 0.10, 0.025 +19850807, -0.29, -0.29, 0.45, 0.025 +19850808, 0.70, -0.39, 0.39, 0.025 +19850809, -0.23, 0.16, -0.12, 0.025 +19850812, -0.34, -0.14, 0.08, 0.025 +19850813, -0.19, -0.02, 0.37, 0.025 +19850814, 0.09, 0.04, 0.19, 0.025 +19850815, -0.06, 0.20, 0.37, 0.025 +19850816, -0.56, 0.02, -0.06, 0.025 +19850819, 0.11, -0.27, 0.32, 0.025 +19850820, 0.67, -0.50, -0.05, 0.025 +19850821, 0.48, -0.08, -0.09, 0.025 +19850822, -0.76, 0.45, 0.32, 0.025 +19850823, -0.12, 0.19, 0.15, 0.025 +19850826, 0.12, -0.23, -0.03, 0.025 +19850827, 0.33, -0.18, -0.22, 0.025 +19850828, 0.31, -0.17, 0.00, 0.025 +19850829, 0.07, 0.07, 0.16, 0.025 +19850830, -0.05, 0.39, 0.32, 0.025 +19850903, -0.43, -0.19, 0.08, 0.032 +19850904, -0.33, 0.00, 0.25, 0.032 +19850905, -0.04, -0.05, 0.05, 0.032 +19850906, 0.41, -0.13, -0.49, 0.032 +19850909, 0.07, -0.15, -0.15, 0.032 +19850910, -0.75, 0.11, 0.12, 0.032 +19850911, -1.03, 0.11, 0.27, 0.032 +19850912, -0.79, 0.06, -0.25, 0.032 +19850913, -0.60, -0.43, 0.18, 0.032 +19850916, -0.14, -0.33, 0.04, 0.032 +19850917, -0.93, -0.35, 0.59, 0.032 +19850918, 0.07, -0.26, 0.05, 0.032 +19850919, 0.91, 0.00, -0.26, 0.032 +19850920, -0.46, 0.70, -0.01, 0.032 +19850923, 0.91, -0.57, -0.35, 0.032 +19850924, -0.76, 0.40, 0.27, 0.032 +19850925, -1.01, 0.39, 0.42, 0.032 +19850926, 0.07, -0.65, 0.40, 0.032 +19850930, 0.26, -0.33, 0.16, 0.032 +19851001, 1.36, -0.84, 0.02, 0.028 +19851002, -0.39, 0.25, 0.69, 0.028 +19851003, 0.11, -0.09, 0.38, 0.028 +19851004, -0.53, 0.38, 0.46, 0.028 +19851007, -0.68, 0.13, 0.20, 0.028 +19851008, -0.13, -0.31, 0.40, 0.028 +19851009, 0.34, -0.06, -0.02, 0.028 +19851010, 0.24, 0.03, -0.16, 0.028 +19851011, 0.78, -0.19, -0.59, 0.028 +19851014, 1.01, -0.50, -0.61, 0.028 +19851015, -0.12, 0.25, -0.11, 0.028 +19851016, 0.84, -0.47, -0.34, 0.028 +19851017, 0.04, 0.38, -0.29, 0.028 +19851018, -0.23, 0.25, 0.02, 0.028 +19851021, -0.09, -0.25, 0.24, 0.028 +19851022, 0.51, -0.35, -0.25, 0.028 +19851023, 0.46, -0.19, 0.08, 0.028 +19851024, -0.20, 0.37, 0.08, 0.028 +19851025, -0.51, 0.24, 0.37, 0.028 +19851028, 0.07, -0.37, 0.33, 0.028 +19851029, 0.71, -0.28, -0.20, 0.028 +19851030, 0.42, -0.14, 0.01, 0.028 +19851031, -0.06, 0.19, 0.13, 0.028 +19851101, 0.73, -0.31, -0.21, 0.030 +19851104, -0.04, 0.11, 0.01, 0.030 +19851105, 0.58, -0.27, -0.39, 0.030 +19851106, 0.29, 0.09, -0.28, 0.030 +19851107, 0.02, 0.19, 0.02, 0.030 +19851108, 0.68, 0.10, 0.01, 0.030 +19851111, 1.52, -0.92, -0.27, 0.030 +19851112, 0.50, 0.24, -0.05, 0.030 +19851113, -0.46, 0.18, -0.12, 0.030 +19851114, 0.84, -0.35, 0.08, 0.030 +19851115, -0.32, 0.63, -0.12, 0.030 +19851118, 0.19, -0.37, -0.51, 0.030 +19851119, 0.05, 0.55, -0.02, 0.030 +19851120, 0.10, -0.16, -0.09, 0.030 +19851121, 1.08, -0.29, -0.13, 0.030 +19851122, 0.16, 0.42, 0.04, 0.030 +19851125, -0.55, 0.15, 0.12, 0.030 +19851126, 0.13, -0.03, -0.15, 0.030 +19851127, 0.81, -0.17, -0.64, 0.030 +19851129, -0.02, 0.38, -0.06, 0.030 +19851202, -0.75, 0.60, -0.01, 0.031 +19851203, 0.20, 0.03, -0.01, 0.031 +19851204, 1.49, -0.40, -0.58, 0.031 +19851205, -0.05, 0.34, -0.29, 0.031 +19851206, -0.52, -0.09, 0.09, 0.031 +19851209, 0.57, -0.56, -0.51, 0.031 +19851210, 0.10, -0.13, -0.47, 0.031 +19851211, 0.88, -0.42, -0.22, 0.031 +19851212, 0.23, 0.26, -0.16, 0.031 +19851213, 1.38, -0.41, -0.27, 0.031 +19851216, 0.77, -0.67, -0.14, 0.031 +19851217, -0.61, -0.06, 0.88, 0.031 +19851218, -0.44, 0.03, 0.46, 0.031 +19851219, 0.02, 0.09, -0.03, 0.031 +19851220, 0.38, 0.26, -0.07, 0.031 +19851223, -1.02, 0.65, -0.28, 0.031 +19851224, -0.56, 0.22, 0.19, 0.031 +19851226, 0.19, 0.08, 0.00, 0.031 +19851227, 0.87, -0.23, -0.10, 0.031 +19851230, 0.39, -0.29, -0.22, 0.031 +19851231, 0.31, 0.15, 0.29, 0.031 +19860102, -0.63, 0.84, 0.38, 0.025 +19860103, 0.56, -0.07, 0.21, 0.025 +19860106, -0.04, 0.09, 0.09, 0.025 +19860107, 1.38, -0.42, 0.05, 0.025 +19860108, -2.16, 1.40, 0.30, 0.025 +19860109, -1.17, -0.77, -0.14, 0.025 +19860110, -0.02, 0.19, 0.26, 0.025 +19860113, 0.28, -0.04, 0.28, 0.025 +19860114, 0.01, 0.44, -0.01, 0.025 +19860115, 0.79, -0.04, -0.21, 0.025 +19860116, 0.46, -0.02, -0.37, 0.025 +19860117, -0.17, 0.47, 0.19, 0.025 +19860120, -0.39, 0.20, 0.09, 0.025 +19860121, -0.67, 0.35, -0.17, 0.025 +19860122, -0.93, 0.45, 0.21, 0.025 +19860123, 0.24, -0.26, -0.23, 0.025 +19860124, 0.95, -0.22, -0.11, 0.025 +19860127, 0.45, -0.33, -0.15, 0.025 +19860128, 0.98, -0.55, 0.08, 0.025 +19860129, 0.24, -0.69, -0.29, 0.025 +19860130, -0.34, 0.61, 0.10, 0.025 +19860131, 0.92, -0.46, 0.01, 0.025 +19860203, 0.93, -0.55, -0.62, 0.028 +19860204, -0.25, 0.14, -0.30, 0.028 +19860205, 0.07, -0.01, -0.56, 0.028 +19860206, 0.26, 0.19, -0.10, 0.028 +19860207, 0.49, 0.08, -0.33, 0.028 +19860210, 0.66, -0.41, -0.13, 0.028 +19860211, 0.03, 0.17, -0.06, 0.028 +19860212, 0.14, 0.17, 0.29, 0.028 +19860213, 0.57, -0.22, 0.02, 0.028 +19860214, 0.89, -0.43, 0.12, 0.028 +19860218, 1.12, -0.51, -0.10, 0.028 +19860219, -0.92, 0.82, -0.06, 0.028 +19860220, 0.83, -0.54, -0.18, 0.028 +19860221, 1.00, -0.02, 0.16, 0.028 +19860224, -0.12, 0.03, 0.33, 0.028 +19860225, -0.23, 0.19, 0.35, 0.028 +19860226, 0.10, 0.08, 0.15, 0.028 +19860227, 1.14, -0.21, 0.17, 0.028 +19860228, 0.19, 0.36, -0.02, 0.028 +19860303, -0.39, 0.69, 0.00, 0.030 +19860304, -0.14, 0.80, 0.17, 0.030 +19860305, -0.20, -0.30, 0.09, 0.030 +19860306, 0.41, 0.25, 0.00, 0.030 +19860307, 0.14, 0.12, -0.23, 0.030 +19860310, 0.43, -0.06, -0.20, 0.030 +19860311, 1.86, -1.09, 0.03, 0.030 +19860312, 0.45, 0.10, 0.26, 0.030 +19860313, 0.20, -0.14, -0.33, 0.030 +19860314, 1.03, -0.84, -0.22, 0.030 +19860317, -0.75, 0.02, -0.32, 0.030 +19860318, 0.47, 0.04, -0.17, 0.030 +19860319, -0.17, 0.13, -0.09, 0.030 +19860320, 0.39, -0.16, -0.02, 0.030 +19860321, -0.83, 1.68, 0.67, 0.030 +19860324, 0.38, -1.25, -0.25, 0.030 +19860325, -0.25, -0.08, 0.25, 0.030 +19860326, 0.98, -0.58, 0.05, 0.030 +19860327, 0.71, -0.07, 0.05, 0.030 +19860331, 0.06, 0.21, -0.15, 0.030 +19860401, -1.21, 0.86, 0.34, 0.024 +19860402, 0.09, -0.28, -0.09, 0.024 +19860403, -1.01, 0.80, 0.01, 0.024 +19860404, -1.45, 0.81, 0.26, 0.024 +19860407, -0.32, -0.45, 0.13, 0.024 +19860408, 1.90, -0.84, -0.60, 0.024 +19860409, 0.21, 0.14, -0.23, 0.024 +19860410, 0.97, -0.35, -0.42, 0.024 +19860411, -0.08, 0.34, -0.13, 0.024 +19860414, 0.53, 0.03, -0.55, 0.024 +19860415, 0.14, -0.10, 0.13, 0.024 +19860416, 1.75, -0.60, -0.57, 0.024 +19860417, 0.33, 0.32, -0.26, 0.024 +19860418, -0.11, 0.46, -0.11, 0.024 +19860421, 0.76, -0.32, -0.28, 0.024 +19860422, -0.78, 0.70, 0.11, 0.024 +19860423, -0.42, 0.02, 0.03, 0.024 +19860424, 0.18, 0.29, -0.51, 0.024 +19860425, 0.00, 0.18, -0.42, 0.024 +19860428, 0.17, -0.27, -0.18, 0.024 +19860429, -0.97, 0.37, -0.09, 0.024 +19860430, -1.90, 0.65, 0.53, 0.024 +19860501, -0.20, -0.22, 0.27, 0.023 +19860502, -0.06, 0.17, 0.19, 0.023 +19860505, 1.11, -0.60, 0.11, 0.023 +19860506, -0.12, 0.23, 0.05, 0.023 +19860507, -0.42, 0.22, 0.25, 0.023 +19860508, 0.50, 0.10, 0.20, 0.023 +19860509, 0.30, 0.14, 0.05, 0.023 +19860512, -0.18, -0.17, 0.32, 0.023 +19860513, -0.40, 0.10, -0.16, 0.023 +19860514, 0.38, -0.27, -0.40, 0.023 +19860515, -1.09, 0.68, 0.29, 0.023 +19860516, -0.56, 0.48, 0.10, 0.023 +19860519, 0.06, -0.40, 0.08, 0.023 +19860520, 1.01, -0.86, -0.49, 0.023 +19860521, -0.16, 0.33, 0.10, 0.023 +19860522, 1.61, -0.94, -0.21, 0.023 +19860523, 0.55, 0.04, -0.06, 0.023 +19860527, 1.27, -0.39, -0.33, 0.023 +19860528, 0.69, -0.19, -0.51, 0.023 +19860529, 0.40, -0.20, -0.11, 0.023 +19860530, -0.13, 0.41, 0.16, 0.023 +19860602, -0.75, 0.53, 0.06, 0.025 +19860603, 0.10, 0.02, -0.21, 0.025 +19860604, -0.49, 0.53, -0.21, 0.025 +19860605, 0.43, -0.46, 0.08, 0.025 +19860606, 0.01, 0.11, -0.03, 0.025 +19860609, -2.00, 0.75, 0.35, 0.025 +19860610, -0.23, -0.02, -0.11, 0.025 +19860611, 0.61, -0.15, -0.22, 0.025 +19860612, 0.17, 0.02, 0.05, 0.025 +19860613, 1.45, -0.81, -0.17, 0.025 +19860616, 0.02, -0.34, 0.68, 0.025 +19860617, -0.57, 0.11, 0.33, 0.025 +19860618, 0.04, -0.41, 0.29, 0.025 +19860619, -0.17, 0.40, -0.01, 0.025 +19860620, 0.76, -1.43, -0.21, 0.025 +19860623, -0.54, 0.67, 0.13, 0.025 +19860624, 0.77, -0.22, 0.00, 0.025 +19860625, 0.70, -0.37, 0.06, 0.025 +19860626, -0.05, 0.26, 0.11, 0.025 +19860627, 0.29, -0.21, 0.31, 0.025 +19860630, 0.52, 0.11, 0.03, 0.025 +19860701, 0.47, -0.03, -0.58, 0.024 +19860702, 0.33, -0.23, -0.23, 0.024 +19860703, -0.21, 0.29, 0.17, 0.024 +19860707, -2.90, 0.50, 1.64, 0.024 +19860708, -1.52, -1.08, 1.00, 0.024 +19860709, 0.64, 0.01, -0.24, 0.024 +19860710, 0.00, -0.17, 0.34, 0.024 +19860711, -0.12, 0.28, 0.53, 0.024 +19860714, -1.65, -0.08, 1.52, 0.024 +19860715, -1.68, 0.05, 1.12, 0.024 +19860716, 0.38, -0.17, -0.06, 0.024 +19860717, 0.45, -0.21, -0.46, 0.024 +19860718, 0.05, -0.19, -0.22, 0.024 +19860721, -0.17, -0.31, 0.38, 0.024 +19860722, 0.75, -0.74, 0.10, 0.024 +19860723, 0.12, -0.11, -0.12, 0.024 +19860724, -0.29, -0.17, -0.08, 0.024 +19860725, 0.76, -0.69, -0.15, 0.024 +19860728, -1.62, 0.42, 0.19, 0.024 +19860729, -0.68, -0.14, 0.37, 0.024 +19860730, 0.48, -0.95, -0.06, 0.024 +19860731, -0.12, 0.06, -0.17, 0.024 +19860801, -0.43, 0.34, 0.45, 0.022 +19860804, 0.11, -1.24, 0.63, 0.022 +19860805, 0.26, -0.02, 0.68, 0.022 +19860806, -0.15, -0.26, 0.28, 0.022 +19860807, 0.24, -0.05, 0.05, 0.022 +19860808, 0.02, 0.05, -0.08, 0.022 +19860811, 1.49, -0.75, -0.48, 0.022 +19860812, 1.08, -0.36, -0.51, 0.022 +19860813, 0.92, -0.26, 0.13, 0.022 +19860814, 0.35, 0.22, -0.26, 0.022 +19860815, 0.23, -0.03, 0.39, 0.022 +19860818, 0.04, -0.24, 0.22, 0.022 +19860819, -0.26, 0.08, 0.42, 0.022 +19860820, 1.08, -0.82, 0.61, 0.022 +19860821, -0.04, 0.04, 0.24, 0.022 +19860822, 0.13, -0.11, 0.03, 0.022 +19860825, -0.80, 0.26, 0.24, 0.022 +19860826, 1.53, -1.32, 0.19, 0.022 +19860827, 0.16, -0.03, 0.36, 0.022 +19860828, -0.09, 0.31, -0.15, 0.022 +19860829, 0.04, 0.18, -0.11, 0.022 +19860902, -1.41, 0.89, 0.76, 0.021 +19860903, 0.26, -0.62, 0.11, 0.021 +19860904, 1.26, -0.35, 0.16, 0.021 +19860905, -1.25, 0.81, -0.15, 0.021 +19860908, -1.12, 0.16, -0.15, 0.021 +19860909, -0.29, -0.17, 0.17, 0.021 +19860910, -0.46, -0.15, 0.26, 0.021 +19860911, -4.42, 1.13, 0.84, 0.021 +19860912, -1.85, 0.37, 0.43, 0.021 +19860915, 0.26, -0.74, 0.27, 0.021 +19860916, -0.18, -0.40, 0.23, 0.021 +19860917, 0.31, 0.24, 0.06, 0.021 +19860918, 0.15, -0.09, -0.30, 0.021 +19860919, -0.07, 0.32, 0.16, 0.021 +19860922, 1.05, -0.34, -0.45, 0.021 +19860923, 0.45, 0.18, 0.10, 0.021 +19860924, 0.39, -0.05, 0.03, 0.021 +19860925, -1.53, 0.85, 0.46, 0.021 +19860926, 0.04, 0.12, 0.27, 0.021 +19860929, -0.99, 0.18, 0.33, 0.021 +19860930, 0.65, 0.03, -0.15, 0.021 +19861001, 0.83, -0.39, -0.13, 0.020 +19861002, 0.12, 0.00, -0.18, 0.020 +19861003, -0.09, -0.10, 0.20, 0.020 +19861006, 0.34, -0.45, -0.30, 0.020 +19861007, -0.18, -0.05, 0.56, 0.020 +19861008, 0.77, -0.63, -0.16, 0.020 +19861009, -0.26, 0.26, -0.01, 0.020 +19861010, -0.10, 0.15, -0.25, 0.020 +19861013, 0.13, -0.13, 0.06, 0.020 +19861014, -0.20, 0.09, -0.43, 0.020 +19861015, 1.21, -0.54, -0.48, 0.020 +19861016, 0.27, -0.20, 0.01, 0.020 +19861017, -0.28, 0.24, -0.03, 0.020 +19861020, -0.98, 0.42, 0.17, 0.020 +19861021, -0.05, 0.18, 0.12, 0.020 +19861022, 0.14, -0.13, -0.13, 0.020 +19861023, 1.08, -0.63, -0.38, 0.020 +19861024, -0.26, 0.29, -0.07, 0.020 +19861027, 0.21, -0.31, -0.14, 0.020 +19861028, 0.20, -0.07, -0.10, 0.020 +19861029, 0.61, -0.20, -0.09, 0.020 +19861030, 1.01, -0.49, 0.13, 0.020 +19861031, 0.05, 0.27, 0.31, 0.020 +19861103, 0.60, -0.68, -0.10, 0.021 +19861104, 0.21, 0.06, 0.01, 0.021 +19861105, 0.21, 0.12, 0.30, 0.021 +19861106, -0.24, 0.05, 0.15, 0.021 +19861107, -0.02, 0.22, -0.01, 0.021 +19861110, 0.06, 0.09, 0.10, 0.021 +19861111, 0.32, -0.21, -0.08, 0.021 +19861112, -0.20, 0.06, 0.15, 0.021 +19861113, -1.28, 0.70, 0.52, 0.021 +19861114, 0.43, -0.28, -0.11, 0.021 +19861117, -0.57, 0.04, -0.08, 0.021 +19861118, -2.26, 1.02, 0.27, 0.021 +19861119, -0.05, -1.03, 0.10, 0.021 +19861120, 1.58, -0.78, -0.14, 0.021 +19861121, 1.29, -0.94, -0.21, 0.021 +19861124, 0.55, -0.46, -0.26, 0.021 +19861125, 0.26, -0.02, -0.46, 0.021 +19861126, 0.15, -0.16, -0.40, 0.021 +19861128, 0.19, 0.28, 0.23, 0.021 +19861201, -0.16, -0.50, -0.08, 0.022 +19861202, 1.71, -0.89, -0.37, 0.022 +19861203, 0.10, 0.01, -0.34, 0.022 +19861204, -0.18, 0.30, -0.14, 0.022 +19861205, -0.68, 0.40, 0.09, 0.022 +19861208, -0.11, -0.23, 0.04, 0.022 +19861209, -0.68, 0.25, 0.22, 0.022 +19861210, 0.51, -0.47, 0.01, 0.022 +19861211, -0.95, 0.43, 0.05, 0.022 +19861212, -0.45, -0.04, 0.63, 0.022 +19861215, 0.08, -0.69, 0.42, 0.022 +19861216, 0.60, -0.43, -0.12, 0.022 +19861217, -0.82, 0.38, -0.04, 0.022 +19861218, -0.36, 0.11, 0.02, 0.022 +19861219, 0.83, -0.12, -0.08, 0.022 +19861222, -0.35, -0.19, 0.42, 0.022 +19861223, -0.99, 0.07, 0.01, 0.022 +19861224, 0.32, 0.18, -0.05, 0.022 +19861226, 0.11, 0.09, -0.15, 0.022 +19861229, -0.90, 0.14, 0.10, 0.022 +19861230, -0.54, 0.25, -0.13, 0.022 +19861231, -0.37, 1.04, -0.18, 0.022 +19870102, 1.79, -0.27, -0.01, 0.020 +19870105, 2.45, -0.11, -0.33, 0.020 +19870106, 0.43, 0.38, -0.61, 0.020 +19870107, 1.13, 0.20, -0.62, 0.020 +19870108, 0.82, 0.27, -0.33, 0.020 +19870109, 0.58, 0.23, 0.17, 0.020 +19870112, 0.70, 0.44, 0.24, 0.020 +19870113, -0.09, 0.29, 0.12, 0.020 +19870114, 0.94, -0.13, -0.47, 0.020 +19870115, 0.89, -0.03, -0.52, 0.020 +19870116, -0.02, -0.82, 0.08, 0.020 +19870119, 0.98, -0.51, -0.80, 0.020 +19870120, -0.09, -0.07, 0.42, 0.020 +19870121, -0.51, -0.31, 0.01, 0.020 +19870122, 1.85, -1.26, -0.69, 0.020 +19870123, -1.14, 0.65, 0.21, 0.020 +19870126, -0.38, -0.39, 0.38, 0.020 +19870127, 1.30, -0.63, -0.60, 0.020 +19870128, 0.56, -0.22, -0.22, 0.020 +19870129, -0.36, 0.36, 0.36, 0.020 +19870130, -0.02, 0.19, 0.29, 0.020 +19870202, 0.97, 0.25, -0.37, 0.023 +19870203, -0.03, 0.70, -0.32, 0.023 +19870204, 1.22, 0.03, -0.04, 0.023 +19870205, 0.68, 0.14, -0.16, 0.023 +19870206, -0.21, 0.64, -0.09, 0.023 +19870209, -0.62, 0.35, -0.13, 0.023 +19870210, -0.99, 0.63, -0.01, 0.023 +19870211, 0.86, 0.17, -0.91, 0.023 +19870212, -0.46, 0.83, -0.47, 0.023 +19870213, 1.25, -0.63, -0.83, 0.023 +19870217, 1.68, -0.72, -1.10, 0.023 +19870218, -0.02, -0.28, 0.22, 0.023 +19870219, 0.12, -0.15, 0.27, 0.023 +19870220, -0.02, 0.05, 0.19, 0.023 +19870223, -0.86, 0.32, -0.11, 0.023 +19870224, 0.20, 0.23, -0.51, 0.023 +19870225, 0.44, 0.14, -0.89, 0.023 +19870226, -0.22, 0.50, -0.38, 0.023 +19870227, 0.37, 0.10, -0.12, 0.023 +19870302, -0.22, 0.27, 0.29, 0.021 +19870303, 0.21, -0.29, 0.30, 0.021 +19870304, 1.25, -0.64, -0.21, 0.021 +19870305, 0.59, -0.17, -0.38, 0.021 +19870306, -0.02, 0.18, 0.32, 0.021 +19870309, -0.67, 0.31, 0.19, 0.021 +19870310, 0.79, -0.32, -0.50, 0.021 +19870311, -0.08, 0.56, -0.16, 0.021 +19870312, 0.29, 0.19, 0.00, 0.021 +19870313, -0.38, 0.37, 0.38, 0.021 +19870316, -0.60, 0.15, 0.18, 0.021 +19870317, 1.17, -0.65, -0.28, 0.021 +19870318, 0.06, 0.03, 0.36, 0.021 +19870319, 0.43, -0.10, -0.20, 0.021 +19870320, 1.06, -0.39, -0.11, 0.021 +19870323, 0.65, -1.00, 0.01, 0.021 +19870324, 0.11, -0.19, 0.17, 0.021 +19870325, -0.25, 0.27, 0.13, 0.021 +19870326, 0.17, 0.17, 0.29, 0.021 +19870327, -1.32, 1.16, 0.28, 0.021 +19870330, -2.27, 0.40, 0.73, 0.021 +19870331, 0.69, 0.01, -0.21, 0.021 +19870401, 0.08, -0.66, -0.09, 0.021 +19870402, 0.40, 0.29, -0.15, 0.021 +19870403, 1.92, -0.83, -0.69, 0.021 +19870406, 0.40, -0.23, -0.15, 0.021 +19870407, -1.41, 0.98, 0.42, 0.021 +19870408, 0.07, -0.02, -0.21, 0.021 +19870409, -1.33, 0.68, -0.24, 0.021 +19870410, -0.27, -0.03, -0.16, 0.021 +19870413, -2.06, 0.86, 0.13, 0.021 +19870414, -2.48, -0.32, -0.12, 0.021 +19870415, 1.59, -1.08, 0.04, 0.021 +19870416, 0.94, -0.25, 0.48, 0.021 +19870420, -0.31, -0.06, 0.16, 0.021 +19870421, 1.75, -1.96, -0.37, 0.021 +19870422, -1.43, 1.57, -0.15, 0.021 +19870423, -0.21, -0.06, 0.19, 0.021 +19870424, -1.63, 0.76, 0.28, 0.021 +19870427, -0.20, -0.88, 0.23, 0.021 +19870428, 0.45, 0.09, -0.08, 0.021 +19870429, 0.66, -0.25, 0.04, 0.021 +19870430, 1.12, -0.43, 0.08, 0.021 +19870501, -0.13, 0.05, 0.21, 0.019 +19870504, 0.32, -0.41, -0.05, 0.019 +19870505, 1.77, -0.87, -0.37, 0.019 +19870506, 0.03, -0.03, 0.65, 0.019 +19870507, -0.16, 0.42, 0.51, 0.019 +19870508, -0.32, 0.51, 0.13, 0.019 +19870511, -0.45, 0.65, 0.41, 0.019 +19870512, 0.25, -0.57, -0.25, 0.019 +19870513, 0.21, 0.00, -0.53, 0.019 +19870514, 0.04, 0.15, -0.17, 0.019 +19870515, -1.96, 1.10, 0.25, 0.019 +19870518, -0.65, -0.61, 0.37, 0.019 +19870519, -2.05, 1.06, 0.05, 0.019 +19870520, -0.55, -0.18, -0.33, 0.019 +19870521, 0.67, -0.24, -0.27, 0.019 +19870522, 0.42, -0.58, 0.11, 0.019 +19870526, 2.18, -1.41, -0.37, 0.019 +19870527, 0.07, 0.28, -0.20, 0.019 +19870528, 0.56, -0.50, -0.45, 0.019 +19870529, -0.04, 0.57, 0.35, 0.019 +19870601, -0.04, -0.09, 0.28, 0.022 +19870602, -0.46, 0.34, 0.00, 0.022 +19870603, 1.35, -1.02, -0.20, 0.022 +19870604, 0.50, -0.25, -0.07, 0.022 +19870605, -0.30, 0.51, 0.07, 0.022 +19870608, 0.88, -0.60, 0.07, 0.022 +19870609, 0.20, -0.02, -0.40, 0.022 +19870610, 0.13, -0.02, 0.07, 0.022 +19870611, 0.34, -0.25, 0.01, 0.022 +19870612, 0.86, -0.53, -0.03, 0.022 +19870615, 0.41, -0.54, 0.10, 0.022 +19870616, 0.46, -0.28, -0.20, 0.022 +19870617, 0.07, 0.12, -0.12, 0.022 +19870618, 0.19, -0.18, 0.18, 0.022 +19870619, 0.27, 0.02, 0.14, 0.022 +19870622, 0.63, -0.65, -0.35, 0.022 +19870623, -0.32, 0.07, 0.08, 0.022 +19870624, -0.44, 0.40, -0.01, 0.022 +19870625, 0.55, -0.42, 0.29, 0.022 +19870626, -0.46, 0.31, 0.12, 0.022 +19870629, 0.05, -0.07, 0.47, 0.022 +19870630, -1.04, 1.01, 0.52, 0.022 +19870701, -0.24, 0.14, 0.15, 0.021 +19870702, 0.63, -0.36, -0.10, 0.021 +19870706, -0.21, 0.04, 0.25, 0.021 +19870707, 0.58, -0.26, 0.71, 0.021 +19870708, 0.24, 0.09, 0.07, 0.021 +19870709, -0.13, 0.37, 0.11, 0.021 +19870710, 0.20, -0.17, 0.12, 0.021 +19870713, -0.18, 0.24, 0.22, 0.021 +19870714, 0.91, -0.25, -0.28, 0.021 +19870715, -0.06, 0.24, 0.08, 0.021 +19870716, 0.56, -0.13, 0.07, 0.021 +19870717, 0.46, -0.10, 0.16, 0.021 +19870720, -0.83, 0.50, 0.24, 0.021 +19870721, -0.80, 0.36, -0.02, 0.021 +19870722, -0.10, -0.12, -0.08, 0.021 +19870723, -0.28, -0.12, -0.08, 0.021 +19870724, 0.37, -0.08, -0.29, 0.021 +19870727, 0.38, -0.38, -0.20, 0.021 +19870728, 0.47, -0.21, -0.11, 0.021 +19870729, 0.89, -0.44, -0.28, 0.021 +19870730, 0.71, -0.14, -0.22, 0.021 +19870731, 0.20, 0.10, 0.15, 0.021 +19870803, -0.38, 0.05, 0.60, 0.022 +19870804, -0.31, 0.16, 0.21, 0.022 +19870805, 0.71, -0.10, -0.44, 0.022 +19870806, 1.09, -0.30, -0.86, 0.022 +19870807, 0.39, 0.12, -0.24, 0.022 +19870810, 1.32, -0.98, -0.05, 0.022 +19870811, 1.35, -1.03, -0.13, 0.022 +19870812, -0.22, -0.04, 0.28, 0.022 +19870813, 0.61, -0.34, 0.03, 0.022 +19870814, -0.09, 0.16, 0.65, 0.022 +19870817, 0.09, -0.27, -0.19, 0.022 +19870818, -1.40, 0.46, 0.13, 0.022 +19870819, 0.11, 0.21, -0.07, 0.022 +19870820, 1.39, -0.50, -0.27, 0.022 +19870821, 0.30, 0.10, -0.41, 0.022 +19870824, -0.59, 0.38, 0.05, 0.022 +19870825, 0.81, -0.56, -0.34, 0.022 +19870826, -0.47, 0.44, 0.11, 0.022 +19870827, -0.82, 0.68, 0.06, 0.022 +19870828, -1.10, 0.75, -0.14, 0.022 +19870831, 0.71, -0.16, 0.11, 0.022 +19870901, -1.59, 1.02, -0.08, 0.021 +19870902, -0.67, -0.08, -0.06, 0.021 +19870903, -0.45, 0.36, 0.01, 0.021 +19870904, -0.91, 0.61, 0.19, 0.021 +19870908, -1.27, -1.02, 0.11, 0.021 +19870909, 0.21, 0.23, 0.00, 0.021 +19870910, 0.92, -0.05, -0.80, 0.021 +19870911, 1.34, -0.37, -0.47, 0.021 +19870914, 0.21, -0.35, 0.12, 0.021 +19870915, -1.34, 0.74, 0.39, 0.021 +19870916, -0.77, 0.61, 0.15, 0.021 +19870917, -0.04, -0.15, 0.13, 0.021 +19870918, -0.10, 0.19, -0.09, 0.021 +19870921, -1.28, 0.42, 0.83, 0.021 +19870922, 2.16, -2.36, -0.03, 0.021 +19870923, 0.58, 0.09, -0.28, 0.021 +19870924, -0.25, 0.45, -0.22, 0.021 +19870925, 0.11, -0.08, 0.03, 0.021 +19870928, 0.72, -0.50, 0.04, 0.021 +19870929, -0.31, 0.07, 0.29, 0.021 +19870930, 0.18, 0.67, -0.06, 0.021 +19871001, 1.43, -1.15, -0.02, 0.027 +19871002, 0.30, 0.05, -0.36, 0.027 +19871005, 0.05, 0.27, -0.23, 0.027 +19871006, -2.24, 1.00, 0.60, 0.027 +19871007, -0.38, -0.37, -0.15, 0.027 +19871008, -1.34, 0.29, 0.35, 0.027 +19871009, -0.82, 0.30, 0.29, 0.027 +19871012, -0.74, -0.56, 0.28, 0.027 +19871013, 1.29, -1.41, 0.19, 0.027 +19871014, -2.44, 1.04, 0.57, 0.027 +19871015, -2.26, 0.87, 0.50, 0.027 +19871016, -4.87, 0.58, 0.76, 0.027 +19871019, -17.44, 6.20, 1.20, 0.027 +19871020, 0.72, -11.62, 2.62, 0.027 +19871021, 8.57, -1.12, -1.95, 0.027 +19871022, -3.97, -0.59, 1.45, 0.027 +19871023, -0.61, -1.95, 1.15, 0.027 +19871026, -8.31, -0.75, 2.56, 0.027 +19871027, 1.56, -3.54, -0.35, 0.027 +19871028, -0.19, -2.19, -0.96, 0.027 +19871029, 4.73, -0.47, -2.71, 0.027 +19871030, 3.61, 3.15, -0.96, 0.027 +19871102, 1.26, 0.22, 0.02, 0.017 +19871103, -1.87, -0.14, 0.96, 0.017 +19871104, -0.60, 0.23, 0.51, 0.017 +19871105, 2.11, -0.69, -0.25, 0.017 +19871106, -1.12, 1.64, 0.29, 0.017 +19871109, -2.48, 1.16, 0.90, 0.017 +19871110, -1.74, 0.04, 0.67, 0.017 +19871111, 1.00, -0.47, -0.42, 0.017 +19871112, 2.40, -0.82, -1.04, 0.017 +19871113, -0.80, 0.88, 0.09, 0.017 +19871116, 0.28, -0.38, 0.14, 0.017 +19871117, -1.47, -0.12, 0.58, 0.017 +19871118, 0.87, -0.54, -0.12, 0.017 +19871119, -1.98, 0.87, 0.14, 0.017 +19871120, 0.53, -1.12, 0.12, 0.017 +19871123, 0.32, -0.34, -0.08, 0.017 +19871124, 1.30, -0.35, -0.39, 0.017 +19871125, -0.60, 1.10, -0.18, 0.017 +19871127, -1.20, 0.95, 0.47, 0.017 +19871130, -3.99, 0.68, 0.87, 0.017 +19871201, 0.51, -0.92, 0.48, 0.018 +19871202, 0.39, -0.67, 0.03, 0.018 +19871203, -3.06, 1.28, 0.93, 0.018 +19871204, -1.02, -1.10, 0.33, 0.018 +19871207, 1.63, -1.75, -0.69, 0.018 +19871208, 2.28, -1.61, -0.14, 0.018 +19871209, 1.66, -0.24, -1.32, 0.018 +19871210, -1.67, 1.35, -0.66, 0.018 +19871211, 0.54, -0.05, 0.25, 0.018 +19871214, 2.71, -0.51, -1.35, 0.018 +19871215, 0.41, 1.19, -0.80, 0.018 +19871216, 2.02, -0.01, -0.67, 0.018 +19871217, -1.41, 1.75, -0.28, 0.018 +19871218, 2.21, -0.02, -0.19, 0.018 +19871221, 0.35, -0.01, -0.05, 0.018 +19871222, -0.05, -0.41, 0.12, 0.018 +19871223, 1.20, -0.12, -0.05, 0.018 +19871224, -0.16, 0.78, -0.19, 0.018 +19871228, -2.37, 0.35, 0.59, 0.018 +19871229, -0.36, -0.05, 0.04, 0.018 +19871230, 1.20, -0.28, -0.66, 0.018 +19871231, -0.19, 1.01, -0.04, 0.018 +19880104, 3.34, -0.88, -0.01, 0.015 +19880105, 1.22, 0.75, -0.48, 0.015 +19880106, 0.27, 0.35, 0.11, 0.015 +19880107, 0.74, -0.07, 0.29, 0.015 +19880108, -5.66, 2.84, 1.56, 0.015 +19880111, 0.90, -2.09, -0.37, 0.015 +19880112, -0.88, -0.15, 0.54, 0.015 +19880113, 0.19, -0.12, 0.36, 0.015 +19880114, 0.08, 0.33, 0.04, 0.015 +19880115, 2.31, -0.93, -0.45, 0.015 +19880118, 0.03, 0.19, 0.46, 0.015 +19880119, -0.70, 0.86, 0.57, 0.015 +19880120, -2.42, 0.64, 1.03, 0.015 +19880121, 0.17, -0.20, -0.10, 0.015 +19880122, 1.21, -0.37, 0.31, 0.015 +19880125, 1.93, -1.55, 0.07, 0.015 +19880126, -0.75, 0.57, 0.45, 0.015 +19880127, -0.05, 0.23, 0.31, 0.015 +19880128, 1.30, -0.71, 0.03, 0.015 +19880129, 1.24, -0.67, -0.05, 0.015 +19880201, -0.30, 0.85, 0.17, 0.023 +19880202, 0.19, -0.03, 0.25, 0.023 +19880203, -1.11, 0.82, 0.92, 0.023 +19880204, 0.00, -0.12, 0.14, 0.023 +19880205, -0.21, 0.55, 0.01, 0.023 +19880208, -0.68, 0.38, -0.16, 0.023 +19880209, 0.83, -0.71, -0.18, 0.023 +19880210, 1.72, -0.49, -0.51, 0.023 +19880211, -0.13, 0.77, -0.12, 0.023 +19880212, 0.55, 0.03, -0.32, 0.023 +19880216, 0.74, -0.47, -0.12, 0.023 +19880217, -0.17, 0.50, -0.10, 0.023 +19880218, -0.35, 0.68, -0.15, 0.023 +19880219, 1.13, -0.89, -0.02, 0.023 +19880222, 1.29, -0.35, -0.43, 0.023 +19880223, -0.06, 0.39, -0.13, 0.023 +19880224, 0.01, 0.61, -0.34, 0.023 +19880225, -0.73, 1.29, 0.20, 0.023 +19880226, 0.22, -0.12, -0.21, 0.023 +19880229, 1.79, -0.53, -0.42, 0.023 +19880301, -0.15, 0.24, -0.05, 0.019 +19880302, 0.43, 0.28, -0.24, 0.019 +19880303, 0.06, 0.22, -0.27, 0.019 +19880304, -0.13, 0.52, 0.07, 0.019 +19880307, 0.13, 0.51, -0.23, 0.019 +19880308, 0.69, 0.34, -0.20, 0.019 +19880309, 0.06, 1.02, -0.40, 0.019 +19880310, -1.66, 0.96, 0.33, 0.019 +19880311, 0.17, -0.38, 0.70, 0.019 +19880314, 0.42, -0.15, -0.33, 0.019 +19880315, -0.05, 0.12, 0.11, 0.019 +19880316, 0.81, -0.30, 0.10, 0.019 +19880317, 0.87, -0.40, -0.34, 0.019 +19880318, -0.01, 0.08, 0.34, 0.019 +19880321, -0.78, 0.29, 0.18, 0.019 +19880322, 0.06, 0.18, -0.20, 0.019 +19880323, 0.14, 0.45, 0.37, 0.019 +19880324, -1.80, 0.75, 0.22, 0.019 +19880325, -1.49, 0.79, 0.15, 0.019 +19880328, -0.40, -0.46, 0.12, 0.019 +19880329, 0.72, 0.07, -0.22, 0.019 +19880330, -0.64, 0.27, 0.47, 0.019 +19880331, 0.35, 0.67, 0.10, 0.019 +19880404, -0.93, 0.00, 0.31, 0.023 +19880405, 0.68, -0.51, -0.05, 0.023 +19880406, 2.20, -1.47, -0.04, 0.023 +19880407, 0.28, 0.26, 0.08, 0.023 +19880408, 1.09, -0.32, 0.06, 0.023 +19880411, 0.28, 0.16, 0.11, 0.023 +19880412, 0.45, -0.10, 0.12, 0.023 +19880413, -0.03, 0.04, 0.08, 0.023 +19880414, -3.76, 1.59, 0.44, 0.023 +19880415, -0.17, -0.37, -0.01, 0.023 +19880418, -0.14, 0.79, 0.25, 0.023 +19880419, -0.28, 0.74, -0.06, 0.023 +19880420, -0.70, 0.06, 0.03, 0.023 +19880421, -0.04, -0.22, 0.17, 0.023 +19880422, 1.09, -1.06, 0.24, 0.023 +19880425, 0.71, -0.47, 0.25, 0.023 +19880426, 0.60, -0.10, -0.20, 0.023 +19880427, 0.01, 0.32, -0.07, 0.023 +19880428, -0.39, 0.56, 0.01, 0.023 +19880429, -0.25, 0.91, -0.12, 0.023 +19880502, 0.02, -0.09, -0.31, 0.024 +19880503, 0.51, -0.18, 0.02, 0.024 +19880504, -0.75, 0.76, 0.12, 0.024 +19880505, -0.54, 0.28, 0.33, 0.024 +19880506, -0.38, 0.36, 0.52, 0.024 +19880509, -0.43, -0.28, 0.35, 0.024 +19880510, 0.24, -0.48, 0.32, 0.024 +19880511, -1.56, -0.01, 0.40, 0.024 +19880512, 0.25, -0.07, 0.15, 0.024 +19880513, 0.93, -0.35, 0.01, 0.024 +19880516, 0.59, -0.56, -0.04, 0.024 +19880517, -0.92, 0.68, 0.21, 0.024 +19880518, -1.49, 0.18, 0.47, 0.024 +19880519, 0.25, -0.66, -0.11, 0.024 +19880520, 0.11, 0.09, -0.05, 0.024 +19880523, -0.75, 0.19, 0.15, 0.024 +19880524, 0.86, -0.64, -0.19, 0.024 +19880525, 0.20, -0.02, 0.02, 0.024 +19880526, 0.33, 0.02, 0.08, 0.024 +19880527, -0.36, 0.17, 0.16, 0.024 +19880531, 2.70, -2.08, -0.21, 0.024 +19880601, 1.66, -0.68, -0.36, 0.022 +19880602, -0.40, 0.49, 0.02, 0.022 +19880603, 0.44, 0.01, 0.14, 0.022 +19880606, 0.27, 0.16, -0.28, 0.022 +19880607, -0.51, 0.46, -0.07, 0.022 +19880608, 1.97, -1.06, -0.17, 0.022 +19880609, -0.18, 0.75, -0.04, 0.022 +19880610, 0.30, 0.13, 0.13, 0.022 +19880613, 0.08, 0.13, -0.16, 0.022 +19880614, 0.87, -0.61, -0.02, 0.022 +19880615, 0.09, 0.10, 0.13, 0.022 +19880616, -1.31, 1.02, 0.31, 0.022 +19880617, 0.14, -0.37, 0.16, 0.022 +19880620, -0.51, 0.45, 0.15, 0.022 +19880621, 0.81, -0.63, -0.02, 0.022 +19880622, 1.25, -0.65, -0.12, 0.022 +19880623, -0.14, 0.42, -0.01, 0.022 +19880624, -0.21, 0.51, 0.07, 0.022 +19880627, -1.34, 1.13, 0.09, 0.022 +19880628, 0.93, -0.54, -0.28, 0.022 +19880629, -0.36, 0.46, -0.18, 0.022 +19880630, 0.86, 0.28, -0.54, 0.022 +19880701, -0.39, 0.42, 0.10, 0.025 +19880705, 1.09, -1.09, -0.01, 0.025 +19880706, -1.11, 1.15, 0.14, 0.025 +19880707, -0.06, 0.11, -0.02, 0.025 +19880708, -0.50, 0.38, 0.34, 0.025 +19880711, 0.11, -0.04, 0.05, 0.025 +19880712, -0.78, 0.55, 0.05, 0.025 +19880713, 0.30, -0.47, 0.11, 0.025 +19880714, 0.28, -0.04, 0.00, 0.025 +19880715, 0.44, -0.31, -0.01, 0.025 +19880718, -0.42, 0.41, 0.11, 0.025 +19880719, -0.76, 0.34, 0.45, 0.025 +19880720, 0.41, -0.21, 0.18, 0.025 +19880721, -1.05, 0.60, 0.30, 0.025 +19880722, -1.04, 0.47, 0.31, 0.025 +19880725, 0.28, -0.44, 0.01, 0.025 +19880726, 0.14, -0.24, 0.05, 0.025 +19880727, -0.85, 0.40, 0.48, 0.025 +19880728, 0.97, -0.99, -0.14, 0.025 +19880729, 1.75, -1.29, -0.24, 0.025 +19880801, 0.19, 0.16, 0.04, 0.026 +19880802, -0.01, -0.07, 0.25, 0.026 +19880803, 0.30, -0.25, -0.15, 0.026 +19880804, -0.21, 0.23, 0.22, 0.026 +19880805, -0.32, 0.08, 0.23, 0.026 +19880808, -0.33, 0.21, 0.14, 0.026 +19880809, -1.12, 0.39, 0.17, 0.026 +19880810, -1.66, 0.28, 0.42, 0.026 +19880811, 0.21, -0.47, -0.10, 0.026 +19880812, -0.10, 0.24, 0.06, 0.026 +19880815, -1.28, 0.29, 0.48, 0.026 +19880816, 0.59, -0.51, -0.37, 0.026 +19880817, 0.10, -0.19, 0.11, 0.026 +19880818, 0.13, -0.01, -0.11, 0.026 +19880819, -0.17, 0.32, 0.04, 0.026 +19880822, -1.12, 0.12, 0.61, 0.026 +19880823, -0.03, -0.18, 0.03, 0.026 +19880824, 1.25, -0.68, -0.30, 0.026 +19880825, -0.63, 0.16, 0.14, 0.026 +19880826, 0.15, -0.07, -0.03, 0.026 +19880829, 0.89, -0.64, -0.39, 0.026 +19880830, 0.10, -0.02, 0.23, 0.026 +19880831, -0.23, 0.62, 0.33, 0.026 +19880901, -1.10, 0.29, 0.42, 0.029 +19880902, 1.88, -1.28, -0.26, 0.029 +19880906, 0.37, -0.16, -0.31, 0.029 +19880907, 0.11, 0.15, -0.14, 0.029 +19880908, 0.12, 0.31, -0.21, 0.029 +19880909, 0.37, -0.04, -0.39, 0.029 +19880912, -0.10, 0.20, -0.17, 0.029 +19880913, 0.23, -0.18, 0.14, 0.029 +19880914, 0.56, -0.30, -0.09, 0.029 +19880915, -0.35, 0.29, 0.29, 0.029 +19880916, 0.69, -0.58, -0.01, 0.029 +19880919, -0.47, 0.40, 0.30, 0.029 +19880920, 0.27, -0.18, -0.01, 0.029 +19880921, 0.17, -0.17, -0.39, 0.029 +19880922, -0.35, 0.17, -0.03, 0.029 +19880923, 0.19, -0.07, 0.03, 0.029 +19880926, -0.34, -0.14, 0.39, 0.029 +19880927, -0.24, 0.06, 0.06, 0.029 +19880928, 0.27, -0.20, -0.19, 0.029 +19880929, 1.08, -0.45, -0.30, 0.029 +19880930, -0.08, 0.62, 0.21, 0.029 +19881003, -0.32, -0.60, 0.03, 0.029 +19881004, -0.19, 0.33, -0.18, 0.029 +19881005, 0.37, -0.19, 0.17, 0.029 +19881006, 0.15, 0.00, 0.14, 0.029 +19881007, 1.58, -1.55, 0.07, 0.029 +19881010, 0.07, 0.12, 0.05, 0.029 +19881011, -0.13, -0.04, 0.00, 0.029 +19881012, -1.25, 0.88, 0.52, 0.029 +19881013, 0.30, -0.44, 0.07, 0.029 +19881014, 0.10, 0.07, -0.17, 0.029 +19881017, 0.19, -0.19, 0.09, 0.029 +19881018, 0.80, -0.56, -0.13, 0.029 +19881019, -0.69, 0.58, 0.03, 0.029 +19881020, 1.67, -1.29, -0.69, 0.029 +19881021, 0.17, -0.27, 0.39, 0.029 +19881024, -0.32, 0.18, 0.09, 0.029 +19881025, -0.05, -0.15, 0.38, 0.029 +19881026, -0.34, 0.12, 0.22, 0.029 +19881027, -1.33, 0.24, 0.59, 0.029 +19881028, 0.33, -0.12, 0.08, 0.029 +19881031, 0.09, -0.07, -0.03, 0.029 +19881101, 0.05, -0.17, 0.15, 0.027 +19881102, -0.04, -0.17, 0.18, 0.027 +19881103, 0.08, 0.02, 0.27, 0.027 +19881104, -0.77, 0.32, 0.05, 0.027 +19881107, -0.90, -0.17, 0.21, 0.027 +19881108, 0.38, 0.03, -0.21, 0.027 +19881109, -0.54, 0.21, 0.01, 0.027 +19881110, 0.08, 0.09, 0.12, 0.027 +19881111, -1.82, 0.93, 0.27, 0.027 +19881114, -0.20, -0.41, 0.14, 0.027 +19881115, 0.16, -0.16, 0.01, 0.027 +19881116, -1.56, 0.43, 0.49, 0.027 +19881117, 0.10, -0.50, -0.20, 0.027 +19881118, 0.58, -0.48, -0.14, 0.027 +19881121, -0.22, -0.38, 0.38, 0.027 +19881122, 0.27, -0.48, 0.23, 0.027 +19881123, 0.63, -0.28, -0.21, 0.027 +19881125, -0.57, 0.41, 0.41, 0.027 +19881128, 0.36, -0.46, -0.11, 0.027 +19881129, 0.80, -0.49, -0.49, 0.027 +19881130, 0.91, -0.03, -0.32, 0.027 +19881201, -0.19, 0.51, -0.13, 0.030 +19881202, -0.20, 0.34, -0.40, 0.030 +19881205, 0.87, -0.34, -0.18, 0.030 +19881206, 0.83, -0.60, 0.04, 0.030 +19881207, 0.13, -0.12, 0.17, 0.030 +19881208, -0.48, 0.31, 0.08, 0.030 +19881209, 0.12, -0.09, 0.06, 0.030 +19881212, -0.18, -0.14, 0.33, 0.030 +19881213, -0.17, -0.11, 0.11, 0.030 +19881214, -0.33, 0.40, -0.02, 0.030 +19881215, -0.31, 0.28, -0.14, 0.030 +19881216, 0.60, 0.19, -0.36, 0.030 +19881219, 0.69, -0.63, -0.30, 0.030 +19881220, -0.32, 0.29, -0.11, 0.030 +19881221, -0.10, -0.08, -0.10, 0.030 +19881222, -0.10, 0.29, 0.07, 0.030 +19881223, 0.38, -0.14, -0.20, 0.030 +19881227, -0.30, 0.09, 0.00, 0.030 +19881228, 0.11, 0.08, -0.03, 0.030 +19881229, 0.67, -0.14, -0.26, 0.030 +19881230, -0.23, 1.39, -0.29, 0.030 +19890103, -0.82, 0.60, 0.29, 0.026 +19890104, 1.30, -0.38, -0.05, 0.026 +19890105, 0.21, 0.06, 0.28, 0.026 +19890106, 0.29, 0.29, 0.39, 0.026 +19890109, 0.12, -0.12, 0.31, 0.026 +19890110, -0.21, -0.01, 0.12, 0.026 +19890111, 0.43, -0.40, 0.03, 0.026 +19890112, 0.36, -0.09, -0.05, 0.026 +19890113, 0.14, -0.05, 0.06, 0.026 +19890116, 0.12, -0.12, 0.16, 0.026 +19890117, -0.21, 0.01, 0.22, 0.026 +19890118, 0.87, -0.28, 0.00, 0.026 +19890119, 0.14, 0.13, -0.19, 0.026 +19890120, -0.06, 0.14, 0.02, 0.026 +19890123, -0.60, 0.32, 0.13, 0.026 +19890124, 1.04, -0.89, -0.17, 0.026 +19890125, 0.26, 0.04, -0.07, 0.026 +19890126, 0.80, -0.35, -0.52, 0.026 +19890127, 0.64, -0.56, 0.02, 0.026 +19890130, 0.33, -0.14, -0.30, 0.026 +19890131, 0.77, -0.24, -0.18, 0.026 +19890201, -0.01, 0.47, -0.43, 0.032 +19890202, 0.00, 0.40, -0.12, 0.032 +19890203, 0.10, 0.31, -0.34, 0.032 +19890206, -0.17, 0.13, 0.34, 0.032 +19890207, 1.04, -0.46, 0.18, 0.032 +19890208, -0.21, 0.35, 0.20, 0.032 +19890209, -0.70, 0.51, 0.14, 0.032 +19890210, -1.27, 0.46, 0.35, 0.032 +19890213, 0.04, -0.42, 0.16, 0.032 +19890214, -0.10, 0.42, -0.23, 0.032 +19890215, 0.74, -0.31, -0.11, 0.032 +19890216, 0.21, 0.19, 0.14, 0.032 +19890217, 0.55, -0.21, -0.12, 0.032 +19890221, -0.23, 0.01, 0.10, 0.032 +19890222, -1.47, 0.67, 0.18, 0.032 +19890223, 0.26, -0.29, 0.03, 0.032 +19890224, -1.37, 0.81, 0.13, 0.032 +19890227, 0.07, -0.30, 0.11, 0.032 +19890228, 0.31, -0.02, 0.12, 0.032 +19890301, -0.37, 0.47, 0.14, 0.030 +19890302, 0.84, -0.23, -0.20, 0.030 +19890303, 0.36, 0.05, 0.04, 0.030 +19890306, 0.99, -0.51, -0.03, 0.030 +19890307, -0.17, 0.45, 0.10, 0.030 +19890308, 0.07, 0.17, -0.09, 0.030 +19890309, -0.10, 0.03, 0.02, 0.030 +19890310, -0.25, 0.35, -0.03, 0.030 +19890313, 0.61, -0.49, -0.08, 0.030 +19890314, -0.07, -0.06, 0.01, 0.030 +19890315, 0.39, -0.01, -0.03, 0.030 +19890316, 0.79, -0.36, -0.14, 0.030 +19890317, -2.08, 0.50, 0.58, 0.030 +19890320, -0.97, 0.02, 0.27, 0.030 +19890321, 0.45, 0.15, -0.14, 0.030 +19890322, -0.28, 0.24, 0.08, 0.030 +19890323, -0.39, 0.55, 0.03, 0.030 +19890327, 0.36, -0.46, 0.12, 0.030 +19890328, 0.35, 0.17, -0.15, 0.030 +19890329, 0.23, -0.13, -0.13, 0.030 +19890330, 0.06, -0.03, -0.06, 0.030 +19890331, 0.76, -0.19, 0.11, 0.030 +19890403, 0.45, -0.22, -0.13, 0.034 +19890404, -0.25, 0.12, -0.05, 0.034 +19890405, 0.27, -0.06, 0.16, 0.034 +19890406, -0.26, 0.25, -0.01, 0.034 +19890407, 0.55, -0.09, -0.30, 0.034 +19890410, -0.01, 0.14, -0.14, 0.034 +19890411, 0.40, 0.00, -0.06, 0.034 +19890412, 0.19, 0.27, -0.19, 0.034 +19890413, -0.75, 0.31, -0.01, 0.034 +19890414, 1.32, -0.68, -0.15, 0.034 +19890417, 0.07, -0.25, 0.06, 0.034 +19890418, 1.13, -0.82, -0.06, 0.034 +19890419, 0.35, -0.21, -0.05, 0.034 +19890420, -0.21, 0.24, 0.05, 0.034 +19890421, 0.72, -0.39, -0.06, 0.034 +19890424, -0.16, 0.20, 0.06, 0.034 +19890425, -0.45, 0.59, -0.34, 0.034 +19890426, 0.10, 0.05, -0.03, 0.034 +19890427, 0.71, -0.25, -0.09, 0.034 +19890428, 0.05, 0.20, -0.03, 0.034 +19890501, -0.15, 0.08, -0.10, 0.036 +19890502, -0.21, 0.45, 0.03, 0.036 +19890503, 0.00, 0.22, -0.28, 0.036 +19890504, -0.06, 0.27, -0.22, 0.036 +19890505, 0.01, 0.21, 0.11, 0.036 +19890508, -0.49, 0.07, 0.07, 0.036 +19890509, -0.20, 0.23, -0.07, 0.036 +19890510, 0.16, -0.01, -0.26, 0.036 +19890511, 0.30, -0.11, -0.25, 0.036 +19890512, 1.82, -1.32, -0.34, 0.036 +19890515, 0.66, -0.64, 0.01, 0.036 +19890516, -0.19, 0.05, 0.36, 0.036 +19890517, 0.62, -0.11, -0.30, 0.036 +19890518, 0.19, 0.24, -0.16, 0.036 +19890519, 0.78, -0.56, 0.01, 0.036 +19890522, 0.25, -0.45, 0.22, 0.036 +19890523, -0.92, 0.67, 0.31, 0.036 +19890524, 0.19, -0.01, 0.02, 0.036 +19890525, 0.08, 0.26, -0.18, 0.036 +19890526, 0.67, -0.17, -0.11, 0.036 +19890530, -0.61, 0.41, 0.28, 0.036 +19890531, 0.40, 0.12, 0.03, 0.036 +19890601, 0.45, 0.01, 0.05, 0.032 +19890602, 0.97, -0.46, -0.17, 0.032 +19890605, -0.87, 0.47, 0.35, 0.032 +19890606, 0.44, -0.51, 0.00, 0.032 +19890607, 0.81, -0.33, -0.24, 0.032 +19890608, 0.00, 0.30, -0.06, 0.032 +19890609, -0.02, -0.02, 0.09, 0.032 +19890612, -0.12, 0.06, 0.18, 0.032 +19890613, -0.67, 0.24, 0.50, 0.032 +19890614, -0.10, -0.06, 0.27, 0.032 +19890615, -1.06, 0.44, 0.08, 0.032 +19890616, 0.25, -0.02, -0.13, 0.032 +19890619, 0.08, -0.37, -0.09, 0.032 +19890620, -0.20, 0.03, 0.16, 0.032 +19890621, -0.21, -0.05, 0.04, 0.032 +19890622, 0.38, -0.27, -0.14, 0.032 +19890623, 1.41, -0.97, -0.38, 0.032 +19890626, -0.29, 0.10, 0.24, 0.032 +19890627, 0.50, -0.16, 0.04, 0.032 +19890628, -0.70, 0.15, 0.31, 0.032 +19890629, -1.83, 0.27, 0.68, 0.032 +19890630, -0.53, 0.10, 0.38, 0.032 +19890703, 0.33, -0.28, -0.11, 0.035 +19890705, 0.31, -0.23, -0.04, 0.035 +19890706, 0.36, 0.44, 0.00, 0.035 +19890707, 0.91, -0.46, -0.32, 0.035 +19890710, 0.52, -0.31, 0.06, 0.035 +19890711, 0.48, -0.31, -0.09, 0.035 +19890712, 0.30, 0.13, 0.01, 0.035 +19890713, 0.06, 0.11, -0.07, 0.035 +19890714, 0.37, -0.48, 0.18, 0.035 +19890717, 0.19, 0.07, -0.34, 0.035 +19890718, -0.31, 0.21, -0.02, 0.035 +19890719, 1.09, -0.47, -0.63, 0.035 +19890720, -0.58, 0.42, 0.04, 0.035 +19890721, 0.42, -0.48, -0.24, 0.035 +19890724, -0.59, 0.14, -0.03, 0.035 +19890725, 0.02, -0.07, -0.02, 0.035 +19890726, 1.00, -0.75, -0.46, 0.035 +19890727, 1.01, -0.52, -0.60, 0.035 +19890728, 0.10, -0.14, -0.03, 0.035 +19890731, 0.94, -0.82, 0.08, 0.035 +19890801, -0.50, 0.29, 0.44, 0.032 +19890802, 0.18, -0.09, 0.07, 0.032 +19890803, 0.23, 0.33, -0.06, 0.032 +19890804, -0.22, 0.29, 0.20, 0.032 +19890807, 1.27, -0.73, -0.02, 0.032 +19890808, 0.08, 0.08, 0.00, 0.032 +19890809, -0.47, 0.63, 0.04, 0.032 +19890810, 0.36, 0.01, 0.16, 0.032 +19890811, -0.80, 0.57, 0.08, 0.032 +19890814, -0.50, -0.01, 0.00, 0.032 +19890815, 0.33, -0.35, 0.15, 0.032 +19890816, 0.19, -0.24, -0.02, 0.032 +19890817, -0.27, 0.12, -0.21, 0.032 +19890818, 0.31, -0.21, -0.05, 0.032 +19890821, -1.28, 0.65, 0.20, 0.032 +19890822, 0.01, -0.12, -0.45, 0.032 +19890823, 0.88, -0.33, -0.18, 0.032 +19890824, 1.68, -1.01, -0.22, 0.032 +19890825, -0.16, 0.27, 0.08, 0.032 +19890828, 0.30, -0.34, -0.01, 0.032 +19890829, -0.50, 0.46, 0.16, 0.032 +19890830, 0.24, 0.03, 0.17, 0.032 +19890831, 0.13, 0.12, 0.20, 0.032 +19890901, 0.59, -0.37, -0.02, 0.033 +19890905, -0.22, 0.22, -0.05, 0.033 +19890906, -0.85, 0.46, 0.18, 0.033 +19890907, -0.18, 0.35, 0.27, 0.033 +19890908, 0.09, 0.30, -0.02, 0.033 +19890911, -0.29, -0.22, 0.14, 0.033 +19890912, 0.33, -0.05, -0.14, 0.033 +19890913, -0.77, 0.67, 0.15, 0.033 +19890914, -0.74, 0.09, -0.21, 0.033 +19890915, 0.19, -0.77, 0.05, 0.033 +19890918, 0.34, -0.50, -0.16, 0.033 +19890919, 0.06, -0.06, -0.13, 0.033 +19890920, -0.09, -0.03, 0.02, 0.033 +19890921, -0.11, 0.16, -0.15, 0.033 +19890922, 0.26, -0.14, 0.02, 0.033 +19890925, -0.71, 0.30, -0.03, 0.033 +19890926, 0.12, 0.21, -0.22, 0.033 +19890927, 0.11, -0.21, -0.52, 0.033 +19890928, 0.88, -0.28, -0.54, 0.033 +19890929, 0.26, 0.12, 0.03, 0.033 +19891002, 0.45, -0.12, 0.04, 0.031 +19891003, 0.95, -0.65, -0.29, 0.031 +19891004, 0.53, -0.42, -0.12, 0.031 +19891005, 0.06, 0.09, 0.13, 0.031 +19891006, 0.47, -0.26, -0.23, 0.031 +19891009, 0.20, -0.02, -0.18, 0.031 +19891010, -0.20, -0.12, -0.11, 0.031 +19891011, -0.60, 0.19, 0.09, 0.031 +19891012, -0.41, 0.23, -0.12, 0.031 +19891013, -5.52, 2.08, 0.97, 0.031 +19891016, 1.64, -3.49, -0.63, 0.031 +19891017, -0.43, 0.24, -0.26, 0.031 +19891018, 0.25, 0.32, -0.37, 0.031 +19891019, 1.52, -0.22, -0.65, 0.031 +19891020, -0.05, -0.05, 0.10, 0.031 +19891023, -0.67, 0.00, -0.05, 0.031 +19891024, -0.56, -0.80, -0.15, 0.031 +19891025, -0.26, 0.52, 0.17, 0.031 +19891026, -1.14, 0.26, 0.19, 0.031 +19891027, -0.99, -0.16, 0.42, 0.031 +19891030, -0.06, -0.43, 0.02, 0.031 +19891031, 1.34, -0.75, -0.19, 0.031 +19891101, 0.29, -0.09, 0.24, 0.033 +19891102, -0.66, 0.34, 0.30, 0.033 +19891103, -0.20, 0.28, 0.04, 0.033 +19891106, -1.36, 0.44, -0.01, 0.033 +19891107, 0.49, -0.56, 0.03, 0.033 +19891108, 0.97, -0.12, -0.70, 0.033 +19891109, -0.34, 0.38, -0.07, 0.033 +19891110, 0.59, -0.28, -0.39, 0.033 +19891113, 0.15, -0.23, -0.08, 0.033 +19891114, -0.47, 0.16, 0.28, 0.033 +19891115, 0.58, -0.40, -0.12, 0.033 +19891116, 0.02, -0.09, -0.08, 0.033 +19891117, 0.28, 0.06, -0.30, 0.033 +19891120, -0.64, 0.04, -0.08, 0.033 +19891121, -0.08, -0.23, -0.02, 0.033 +19891122, 0.53, -0.27, -0.22, 0.033 +19891124, 0.54, -0.25, -0.16, 0.033 +19891127, 0.37, -0.32, 0.23, 0.033 +19891128, 0.08, 0.17, 0.14, 0.033 +19891129, -0.56, 0.22, 0.05, 0.033 +19891130, 0.44, -0.51, -0.21, 0.033 +19891201, 1.06, -0.96, 0.01, 0.030 +19891204, 0.26, -0.28, 0.06, 0.030 +19891205, -0.38, 0.29, 0.16, 0.030 +19891206, -0.31, 0.38, 0.21, 0.030 +19891207, -0.25, 0.05, -0.27, 0.030 +19891208, 0.16, -0.13, 0.20, 0.030 +19891211, -0.14, -0.36, 0.05, 0.030 +19891212, 0.59, -0.80, 0.31, 0.030 +19891213, 0.25, -0.11, 0.14, 0.030 +19891214, -0.54, -0.21, 0.16, 0.030 +19891215, -0.39, -0.17, -0.27, 0.030 +19891218, -1.74, 0.13, 0.31, 0.030 +19891219, -0.44, -0.26, -0.06, 0.030 +19891220, 0.09, -0.05, 0.31, 0.030 +19891221, 0.53, 0.00, -0.06, 0.030 +19891222, 0.80, -0.02, -0.33, 0.030 +19891226, -0.09, 0.21, 0.06, 0.030 +19891227, 0.50, -0.16, -0.14, 0.030 +19891228, 0.46, -0.26, -0.32, 0.030 +19891229, 0.77, 0.33, -0.28, 0.030 +19900102, 1.44, -0.68, -0.06, 0.026 +19900103, -0.06, 0.74, -0.31, 0.026 +19900104, -0.71, 0.43, -0.25, 0.026 +19900105, -0.85, 0.76, -0.23, 0.026 +19900108, 0.30, -0.42, -0.24, 0.026 +19900109, -1.01, 0.87, 0.09, 0.026 +19900110, -0.76, -0.05, 0.32, 0.026 +19900111, 0.23, -0.22, 0.09, 0.026 +19900112, -2.33, 0.34, 0.39, 0.026 +19900115, -0.95, 0.03, 0.46, 0.026 +19900116, 0.92, -0.79, -0.41, 0.026 +19900117, -0.76, 0.96, -0.27, 0.026 +19900118, 0.05, -0.66, -0.04, 0.026 +19900119, 0.31, 0.10, 0.04, 0.026 +19900122, -2.31, 0.81, 0.50, 0.026 +19900123, -0.07, -0.47, 0.05, 0.026 +19900124, -0.44, -1.09, -0.36, 0.026 +19900125, -1.07, 1.00, 0.31, 0.026 +19900126, -0.36, -0.55, 0.45, 0.026 +19900129, -0.34, -0.69, 0.02, 0.026 +19900130, -0.90, -0.65, 0.59, 0.026 +19900131, 1.67, -1.22, -0.16, 0.026 +19900201, 0.08, 0.56, -0.03, 0.030 +19900202, 0.73, 0.31, -0.55, 0.030 +19900205, 0.38, 0.22, -0.28, 0.030 +19900206, -0.54, 0.62, 0.13, 0.030 +19900207, 1.07, -0.42, -0.27, 0.030 +19900208, -0.09, 0.29, -0.07, 0.030 +19900209, 0.24, -0.03, 0.08, 0.030 +19900212, -0.94, 0.52, 0.19, 0.030 +19900213, 0.14, -0.51, 0.14, 0.030 +19900214, 0.20, -0.12, 0.10, 0.030 +19900215, 0.78, -0.37, -0.05, 0.030 +19900216, -0.50, 0.52, 0.20, 0.030 +19900220, -1.35, 0.53, 0.35, 0.030 +19900221, -0.21, -0.49, 0.48, 0.030 +19900222, -0.36, 0.82, 0.00, 0.030 +19900223, -0.55, -0.21, 0.49, 0.030 +19900226, 1.00, -1.31, -0.12, 0.030 +19900227, 0.54, -0.10, -0.08, 0.030 +19900228, 0.53, 0.15, -0.12, 0.030 +19900301, 0.26, -0.04, -0.09, 0.029 +19900302, 0.80, -0.12, -0.26, 0.029 +19900305, -0.37, 0.56, -0.14, 0.029 +19900306, 1.07, -0.46, -0.40, 0.029 +19900307, -0.22, 0.65, -0.26, 0.029 +19900308, 0.84, -0.20, -0.52, 0.029 +19900309, -0.53, 0.47, 0.03, 0.029 +19900312, 0.15, -0.21, -0.04, 0.029 +19900313, -0.69, 0.48, 0.27, 0.029 +19900314, 0.23, 0.17, -0.35, 0.029 +19900315, 0.25, 0.04, -0.17, 0.029 +19900316, 0.90, -0.41, -0.60, 0.029 +19900319, 0.38, -0.24, -0.74, 0.029 +19900320, -0.55, 0.34, 0.20, 0.029 +19900321, -0.45, 0.44, -0.03, 0.029 +19900322, -1.22, 0.32, 0.37, 0.029 +19900323, 0.44, 0.10, -0.37, 0.029 +19900326, 0.17, 0.05, -0.12, 0.029 +19900327, 0.80, -0.71, -0.31, 0.029 +19900328, 0.09, -0.31, 0.55, 0.029 +19900329, -0.35, 0.17, 0.12, 0.029 +19900330, -0.18, 0.37, 0.02, 0.029 +19900402, -0.42, -0.40, -0.06, 0.034 +19900403, 1.25, -0.67, -0.50, 0.034 +19900404, -0.64, 0.20, 0.07, 0.034 +19900405, -0.15, 0.18, -0.41, 0.034 +19900406, -0.29, -0.08, -0.23, 0.034 +19900409, 0.21, -0.75, -0.23, 0.034 +19900410, 0.17, 0.05, -0.24, 0.034 +19900411, 0.01, 0.12, -0.30, 0.034 +19900412, 0.69, -0.34, -0.35, 0.034 +19900416, 0.08, -0.09, -0.07, 0.034 +19900417, -0.08, -0.06, 0.03, 0.034 +19900418, -1.07, 0.46, 0.20, 0.034 +19900419, -0.75, 0.39, 0.32, 0.034 +19900420, -0.89, 0.31, -0.23, 0.034 +19900423, -1.17, 0.06, 0.24, 0.034 +19900424, -0.28, 0.16, -0.02, 0.034 +19900425, 0.45, -0.25, -0.19, 0.034 +19900426, 0.15, -0.02, -0.36, 0.034 +19900427, -1.08, 0.51, 0.32, 0.034 +19900430, 0.45, -0.31, -0.65, 0.034 +19900501, 0.42, -0.18, -0.08, 0.031 +19900502, 0.55, -0.37, -0.13, 0.031 +19900503, 0.31, -0.02, 0.06, 0.031 +19900504, 0.75, -0.36, -0.13, 0.031 +19900507, 0.56, -0.35, -0.15, 0.031 +19900508, 0.37, -0.47, 0.12, 0.031 +19900509, 0.11, -0.17, 0.14, 0.031 +19900510, 0.39, -0.06, -0.07, 0.031 +19900511, 2.01, -1.17, -0.09, 0.031 +19900514, 0.79, -0.38, -0.15, 0.031 +19900515, -0.08, -0.01, -0.06, 0.031 +19900516, -0.11, 0.12, 0.03, 0.031 +19900517, 0.19, 0.46, -0.28, 0.031 +19900518, 0.09, 0.26, -0.51, 0.031 +19900521, 0.94, -0.15, -0.68, 0.031 +19900522, 0.15, 0.18, -0.56, 0.031 +19900523, 0.22, 0.15, -0.57, 0.031 +19900524, -0.08, 0.33, -0.32, 0.031 +19900525, -0.94, 0.55, 0.55, 0.031 +19900529, 1.35, -0.95, -0.38, 0.031 +19900530, 0.07, 0.09, -0.04, 0.031 +19900531, 0.07, 0.05, -0.19, 0.031 +19900601, 0.53, -0.06, 0.10, 0.030 +19900604, 1.11, -0.64, 0.26, 0.030 +19900605, -0.17, 0.11, 0.34, 0.030 +19900606, -0.36, 0.30, 0.18, 0.030 +19900607, -0.47, 0.39, 0.02, 0.030 +19900608, -1.10, 0.61, 0.16, 0.030 +19900611, 0.67, -0.50, -0.03, 0.030 +19900612, 1.10, -0.65, -0.67, 0.030 +19900613, -0.26, 0.78, -0.49, 0.030 +19900614, -0.53, 0.30, -0.16, 0.030 +19900615, -0.10, 0.23, -0.32, 0.030 +19900618, -1.47, 0.22, 0.29, 0.030 +19900619, 0.29, -0.44, -0.06, 0.030 +19900620, 0.06, -0.10, -0.12, 0.030 +19900621, 0.26, -0.21, -0.47, 0.030 +19900622, -1.07, 1.08, 0.01, 0.030 +19900625, -0.86, 0.30, -0.07, 0.030 +19900626, -0.15, -0.01, -0.05, 0.030 +19900627, 0.65, -0.58, -0.14, 0.030 +19900628, 0.66, 0.02, -0.73, 0.030 +19900629, 0.17, 0.26, 0.00, 0.030 +19900702, 0.30, -0.42, -0.12, 0.032 +19900703, 0.13, -0.16, -0.34, 0.032 +19900705, -1.04, 0.48, 0.02, 0.032 +19900706, 0.61, -0.41, -0.25, 0.032 +19900709, 0.22, -0.33, -0.15, 0.032 +19900710, -0.67, 0.47, -0.25, 0.032 +19900711, 1.04, -0.40, -0.55, 0.032 +19900712, 1.02, -0.41, -0.54, 0.032 +19900713, 0.42, -0.13, -0.11, 0.032 +19900716, 0.37, -0.29, -0.45, 0.032 +19900717, -0.45, -0.29, 0.49, 0.032 +19900718, -0.92, 0.25, 0.43, 0.032 +19900719, 0.12, -0.65, 0.06, 0.032 +19900720, -0.87, 0.62, -0.03, 0.032 +19900723, -1.89, -0.48, 0.77, 0.032 +19900724, 0.00, 0.05, 0.13, 0.032 +19900725, 0.35, 0.04, -0.15, 0.032 +19900726, -0.25, 0.35, -0.03, 0.032 +19900727, -0.68, -0.03, 0.49, 0.032 +19900730, 0.26, -1.21, 0.31, 0.032 +19900731, 0.07, -0.38, 0.23, 0.032 +19900801, -0.20, -0.31, -0.09, 0.028 +19900802, -1.22, -0.06, 0.46, 0.028 +19900803, -1.84, -0.71, 0.64, 0.028 +19900806, -3.32, -0.14, 1.37, 0.028 +19900807, 0.17, -0.03, -0.81, 0.028 +19900808, 1.11, 0.00, -0.73, 0.028 +19900809, 0.63, 0.30, -0.96, 0.028 +19900810, -1.19, 0.21, 0.58, 0.028 +19900813, 0.71, -1.03, -0.31, 0.028 +19900814, 0.21, 0.18, -0.20, 0.028 +19900815, 0.25, -0.20, -0.39, 0.028 +19900816, -2.18, 0.46, 0.70, 0.028 +19900817, -1.55, -0.34, 0.80, 0.028 +19900820, -0.11, -0.94, 0.52, 0.028 +19900821, -2.00, -0.39, 0.75, 0.028 +19900822, -1.58, 0.27, 0.90, 0.028 +19900823, -3.24, -1.09, 1.58, 0.028 +19900824, 1.46, -0.35, -1.69, 0.028 +19900827, 3.20, 0.11, -1.85, 0.028 +19900828, 0.07, 0.48, -0.08, 0.028 +19900829, 0.74, -0.51, 0.23, 0.028 +19900830, -1.39, 0.94, 0.33, 0.028 +19900831, 0.95, -0.78, -0.21, 0.028 +19900904, 0.09, -0.29, -0.27, 0.031 +19900905, 0.35, 0.18, -0.17, 0.031 +19900906, -1.06, 0.45, 0.62, 0.031 +19900907, 0.79, -0.51, -0.16, 0.031 +19900910, -0.38, 0.53, 0.02, 0.031 +19900911, -0.19, -0.15, 0.05, 0.031 +19900912, 0.29, -0.39, -0.10, 0.031 +19900913, -1.11, 0.33, 0.23, 0.031 +19900914, -0.61, -0.10, -0.18, 0.031 +19900917, 0.18, -0.56, -0.14, 0.031 +19900918, 0.07, -0.65, -0.13, 0.031 +19900919, -0.57, 0.48, 0.47, 0.031 +19900920, -1.61, 0.18, 0.68, 0.031 +19900921, -0.20, -0.57, 0.14, 0.031 +19900924, -2.19, -0.30, 0.61, 0.031 +19900925, 1.03, -0.82, -0.78, 0.031 +19900926, -1.07, -0.33, 0.23, 0.031 +19900927, -1.51, -0.45, 0.76, 0.031 +19900928, 1.50, -1.00, -1.16, 0.031 +19901001, 2.74, -1.50, -1.23, 0.030 +19901002, 0.20, 0.47, 0.17, 0.030 +19901003, -1.16, 0.38, 0.31, 0.030 +19901004, 0.19, -0.72, 0.36, 0.030 +19901005, -0.46, -0.29, 0.33, 0.030 +19901008, 0.53, -0.54, 0.03, 0.030 +19901009, -2.54, 0.59, 0.78, 0.030 +19901010, -1.60, 0.13, 0.50, 0.030 +19901011, -1.76, -0.48, 0.85, 0.030 +19901012, 1.28, -1.04, -0.46, 0.030 +19901015, 0.91, -0.89, -0.18, 0.030 +19901016, -1.40, 0.49, 0.48, 0.030 +19901017, -0.02, -0.14, -0.43, 0.030 +19901018, 2.20, -0.71, -1.40, 0.030 +19901019, 1.77, -1.15, -0.48, 0.030 +19901022, 0.78, -0.98, -0.30, 0.030 +19901023, -0.52, 0.91, -0.17, 0.030 +19901024, -0.03, -0.06, 0.04, 0.030 +19901025, -0.66, 0.54, 0.15, 0.030 +19901026, -1.68, 0.53, 0.03, 0.030 +19901029, -0.96, -0.03, 0.37, 0.030 +19901030, 0.46, -1.18, -0.12, 0.030 +19901031, 0.02, -0.09, 0.41, 0.030 +19901101, 0.79, -0.75, 0.16, 0.027 +19901102, 1.55, -0.57, -0.32, 0.027 +19901105, 0.96, -0.13, -0.50, 0.027 +19901106, -0.71, 0.74, 0.23, 0.027 +19901107, -1.59, 0.86, 0.38, 0.027 +19901108, 0.44, -0.66, -0.17, 0.027 +19901109, 1.81, -0.94, -0.24, 0.027 +19901112, 1.92, -0.38, -0.69, 0.027 +19901113, -0.34, 0.69, -0.04, 0.027 +19901114, 0.82, 0.11, -0.18, 0.027 +19901115, -0.91, 0.67, 0.00, 0.027 +19901116, -0.05, -0.08, 0.36, 0.027 +19901119, 0.58, -0.29, -0.37, 0.027 +19901120, -1.09, 0.52, 0.01, 0.027 +19901121, 0.07, -0.18, -0.18, 0.027 +19901123, -0.25, 0.48, -0.11, 0.027 +19901126, 0.29, -0.49, 0.19, 0.027 +19901127, 0.68, 0.47, -0.79, 0.027 +19901128, 0.04, 0.37, 0.04, 0.027 +19901129, -0.39, 0.49, -0.30, 0.027 +19901130, 1.61, -0.67, -0.45, 0.027 +19901203, 0.68, -0.12, -0.23, 0.030 +19901204, 0.72, -0.23, 0.18, 0.030 +19901205, 1.18, 0.48, 0.20, 0.030 +19901206, -0.22, 0.54, -0.13, 0.030 +19901207, -0.39, 0.29, -0.09, 0.030 +19901210, 0.22, -0.47, -0.05, 0.030 +19901211, -0.61, 0.03, 0.23, 0.030 +19901212, 0.93, -0.45, -0.51, 0.030 +19901213, -0.11, 0.50, -0.42, 0.030 +19901214, -0.78, 0.23, 0.03, 0.030 +19901217, -0.40, -0.52, 0.06, 0.030 +19901218, 1.18, -0.70, 0.08, 0.030 +19901219, 0.07, 0.37, 0.15, 0.030 +19901220, 0.06, 0.12, -0.19, 0.030 +19901221, 0.30, -0.35, -0.10, 0.030 +19901224, -0.40, 0.05, 0.00, 0.030 +19901226, 0.24, -0.13, -0.09, 0.030 +19901227, -0.63, 0.48, 0.08, 0.030 +19901228, -0.02, -0.13, -0.14, 0.030 +19901231, 0.43, 0.79, -0.54, 0.030 +19910102, -0.95, 0.60, 0.78, 0.023 +19910103, -1.25, 0.27, 1.13, 0.023 +19910104, -0.24, 0.13, 0.40, 0.023 +19910107, -1.72, 0.33, 0.24, 0.023 +19910108, -0.29, -0.35, -0.03, 0.023 +19910109, -0.95, 0.51, 0.03, 0.023 +19910110, 0.94, -0.45, -0.50, 0.023 +19910111, 0.10, -0.07, -0.12, 0.023 +19910114, -1.01, -0.73, 0.16, 0.023 +19910115, 0.32, -0.40, -0.34, 0.023 +19910116, 1.00, 0.12, -0.95, 0.023 +19910117, 3.41, -1.00, -0.78, 0.023 +19910118, 0.93, -1.21, 0.04, 0.023 +19910121, -0.08, 0.48, -0.17, 0.023 +19910122, -0.65, 1.09, 0.27, 0.023 +19910123, 0.59, 0.54, -0.21, 0.023 +19910124, 1.45, 0.34, -0.49, 0.023 +19910125, 0.40, 0.79, -0.20, 0.023 +19910128, 0.14, 0.77, -0.12, 0.023 +19910129, 0.10, 0.72, -0.08, 0.023 +19910130, 1.52, 0.36, -0.43, 0.023 +19910131, 0.95, 0.68, -0.42, 0.023 +19910201, -0.03, 1.09, 0.32, 0.025 +19910204, 1.59, 0.53, 0.20, 0.025 +19910205, 1.05, 0.45, -0.33, 0.025 +19910206, 1.77, -0.46, -0.72, 0.025 +19910207, -0.44, -0.43, 0.60, 0.025 +19910208, 0.63, -0.52, -0.03, 0.025 +19910211, 2.37, -0.59, -0.01, 0.025 +19910212, -0.59, 0.75, 0.14, 0.025 +19910213, 0.89, 0.13, -0.10, 0.025 +19910214, -1.20, 0.89, 0.20, 0.025 +19910215, 1.20, -0.20, -0.20, 0.025 +19910219, 0.13, -0.03, -0.48, 0.025 +19910220, -1.06, 0.32, 0.17, 0.025 +19910221, -0.03, 0.54, -0.11, 0.025 +19910222, 0.23, 0.33, -0.67, 0.025 +19910225, 0.40, 0.32, -0.46, 0.025 +19910226, -1.08, 0.21, 0.32, 0.025 +19910227, 1.17, -0.49, -0.19, 0.025 +19910228, 0.02, 0.79, 0.87, 0.025 +19910301, 0.86, -0.13, -0.18, 0.022 +19910304, 0.03, 1.39, -0.04, 0.022 +19910305, 1.91, 0.16, -0.80, 0.022 +19910306, -0.14, 0.35, 0.07, 0.022 +19910307, 0.00, 0.29, -0.35, 0.022 +19910308, -0.23, 0.49, -0.16, 0.022 +19910311, -0.59, -0.32, 0.45, 0.022 +19910312, -0.87, -0.22, 1.03, 0.022 +19910313, 1.10, -0.49, -0.45, 0.022 +19910314, -0.16, 0.43, -0.01, 0.022 +19910315, -0.19, -0.52, -0.12, 0.022 +19910318, -0.27, 0.18, -0.04, 0.022 +19910319, -1.29, 0.50, 0.14, 0.022 +19910320, 0.36, 0.59, -0.48, 0.022 +19910321, -0.26, 0.52, 0.06, 0.022 +19910322, 0.16, -0.25, 0.26, 0.022 +19910325, 0.67, -0.19, 0.17, 0.022 +19910326, 1.67, -0.57, -0.35, 0.022 +19910327, -0.01, 0.78, -0.42, 0.022 +19910328, -0.09, 0.72, -0.01, 0.022 +19910401, -0.85, 0.65, -0.14, 0.024 +19910402, 1.98, -0.67, -0.72, 0.024 +19910403, 0.09, 0.74, -0.05, 0.024 +19910404, 0.29, 0.14, -0.21, 0.024 +19910405, -0.97, 0.77, 0.30, 0.024 +19910408, 0.59, -0.60, -0.12, 0.024 +19910409, -1.08, 0.79, 0.30, 0.024 +19910410, -0.20, -0.02, 0.25, 0.024 +19910411, 1.17, -0.24, 0.01, 0.024 +19910412, 0.60, -0.01, -0.21, 0.024 +19910415, 0.17, -0.23, 0.12, 0.024 +19910416, 1.44, -0.60, -0.36, 0.024 +19910417, 0.78, 0.00, -0.06, 0.024 +19910418, -0.51, -0.10, 0.82, 0.024 +19910419, -1.04, 0.44, 0.63, 0.024 +19910422, -0.98, -0.37, -0.19, 0.024 +19910423, 0.13, -0.05, 0.14, 0.024 +19910424, 0.27, 0.01, 0.10, 0.024 +19910425, -0.79, 0.74, -0.18, 0.024 +19910426, -0.14, -0.19, 0.21, 0.024 +19910429, -1.31, 0.37, 0.33, 0.024 +19910430, 0.18, -1.12, 0.44, 0.024 +19910501, 1.21, -0.54, 0.05, 0.021 +19910502, 0.13, 0.57, -0.40, 0.021 +19910503, 0.09, 0.15, -0.11, 0.021 +19910506, -0.18, 0.06, -0.05, 0.021 +19910507, -0.54, 0.71, -0.05, 0.021 +19910508, 0.21, 0.01, 0.07, 0.021 +19910509, 1.16, -0.41, -0.48, 0.021 +19910510, -1.66, 0.85, 0.26, 0.021 +19910513, 0.17, -0.24, -0.20, 0.021 +19910514, -1.24, 0.38, 0.11, 0.021 +19910515, -1.05, -0.78, 0.88, 0.021 +19910516, 0.94, -0.33, -0.24, 0.021 +19910517, -0.03, -0.13, 0.06, 0.021 +19910520, -0.04, -0.20, -0.07, 0.021 +19910521, 0.74, -0.10, -0.39, 0.021 +19910522, 0.25, -0.13, -0.04, 0.021 +19910523, -0.14, 0.47, -0.16, 0.021 +19910524, 0.63, -0.26, 0.03, 0.021 +19910528, 1.04, -0.62, -0.17, 0.021 +19910529, 0.26, 0.14, 0.44, 0.021 +19910530, 1.01, 0.02, -0.29, 0.021 +19910531, 0.69, 0.03, 0.21, 0.021 +19910603, -0.29, 0.43, 0.42, 0.021 +19910604, -0.05, 0.11, -0.10, 0.021 +19910605, -0.56, 0.70, 0.40, 0.021 +19910606, -0.38, 0.23, 0.45, 0.021 +19910607, -0.95, 0.38, 0.11, 0.021 +19910610, -0.26, -0.04, 0.04, 0.021 +19910611, 0.44, -0.56, -0.02, 0.021 +19910612, -1.11, -0.01, 0.03, 0.021 +19910613, 0.21, -0.11, -0.06, 0.021 +19910614, 1.06, -0.57, -0.25, 0.021 +19910617, -0.41, 0.24, 0.20, 0.021 +19910618, -0.40, 0.12, 0.18, 0.021 +19910619, -0.97, 0.06, 0.01, 0.021 +19910620, 0.01, -0.13, -0.09, 0.021 +19910621, 0.43, -0.52, 0.06, 0.021 +19910624, -1.73, 0.09, 0.36, 0.021 +19910625, -0.22, -0.36, 0.01, 0.021 +19910626, 0.11, -0.44, -0.04, 0.021 +19910627, 0.70, -0.39, -0.39, 0.021 +19910628, -0.64, 0.83, -0.02, 0.021 +19910701, 1.62, -1.11, -0.35, 0.022 +19910702, -0.12, -0.05, -0.08, 0.022 +19910703, -0.98, 0.27, -0.09, 0.022 +19910705, 0.17, -0.16, -0.11, 0.022 +19910708, 0.82, -0.62, -0.21, 0.022 +19910709, -0.13, 0.72, -0.11, 0.022 +19910710, 0.01, 0.60, -0.16, 0.022 +19910711, 0.30, 0.01, -0.24, 0.022 +19910712, 0.75, -0.33, 0.00, 0.022 +19910715, 0.60, -0.07, 0.22, 0.022 +19910716, -0.21, 0.12, 0.51, 0.022 +19910717, -0.05, 0.16, -0.03, 0.022 +19910718, 0.90, -0.21, 0.02, 0.022 +19910719, -0.24, 0.49, 0.09, 0.022 +19910722, -0.37, 0.17, 0.12, 0.022 +19910723, -0.91, 0.16, 0.24, 0.022 +19910724, -0.31, -0.19, 0.14, 0.022 +19910725, 0.55, -0.50, 0.05, 0.022 +19910726, 0.06, 0.01, -0.04, 0.022 +19910729, 0.47, -0.48, -0.31, 0.022 +19910730, 0.86, -0.29, -0.47, 0.022 +19910731, 0.39, 0.36, -0.43, 0.022 +19910801, -0.12, 0.24, -0.16, 0.021 +19910802, 0.09, 0.12, -0.05, 0.021 +19910805, -0.53, 0.20, 0.20, 0.021 +19910806, 1.22, -0.93, 0.04, 0.021 +19910807, 0.09, 0.10, -0.07, 0.021 +19910808, -0.16, 0.26, -0.02, 0.021 +19910809, -0.43, 0.63, -0.14, 0.021 +19910812, 0.20, -0.36, 0.58, 0.021 +19910813, 0.42, -0.11, 0.68, 0.021 +19910814, 0.21, 0.26, -0.16, 0.021 +19910815, -0.16, 0.24, -0.43, 0.021 +19910816, -0.85, 0.51, -0.03, 0.021 +19910819, -2.38, -0.51, -0.19, 0.021 +19910820, 0.72, 0.19, -0.10, 0.021 +19910821, 2.76, -0.39, -0.34, 0.021 +19910822, 0.20, 0.37, -0.11, 0.021 +19910823, 0.62, -0.23, 0.26, 0.021 +19910826, -0.06, 0.26, -0.01, 0.021 +19910827, -0.12, 0.28, -0.47, 0.021 +19910828, 0.85, -0.25, 0.01, 0.021 +19910829, -0.02, 0.20, -0.05, 0.021 +19910830, -0.15, 0.45, -0.16, 0.021 +19910903, -0.80, 0.11, 0.12, 0.023 +19910904, -0.57, 0.18, -0.04, 0.023 +19910905, -0.27, 0.26, -0.05, 0.023 +19910906, -0.03, 0.03, 0.12, 0.023 +19910909, -0.13, 0.15, -0.11, 0.023 +19910910, -1.04, -0.09, 0.10, 0.023 +19910911, 0.18, 0.17, -0.19, 0.023 +19910912, 0.65, 0.02, -0.55, 0.023 +19910913, -0.92, 0.65, 0.17, 0.023 +19910916, 0.42, -0.55, -0.23, 0.023 +19910917, -0.05, -0.04, -0.12, 0.023 +19910918, 0.37, -0.04, -0.16, 0.023 +19910919, 0.32, 0.38, -0.25, 0.023 +19910920, 0.23, 0.44, -0.28, 0.023 +19910923, -0.47, 0.10, -0.07, 0.023 +19910924, 0.44, -0.36, 0.02, 0.023 +19910925, -0.17, 0.02, -0.02, 0.023 +19910926, -0.03, 0.12, 0.42, 0.023 +19910927, -0.21, -0.08, 0.09, 0.023 +19910930, 0.53, 0.11, -0.04, 0.023 +19911001, 0.27, -0.06, -0.61, 0.018 +19911002, -0.29, 0.00, 0.15, 0.018 +19911003, -0.94, 0.03, 0.39, 0.018 +19911004, -0.61, 0.40, 0.11, 0.018 +19911007, -0.60, -0.39, 0.18, 0.018 +19911008, 0.26, -0.05, -0.06, 0.018 +19911009, -0.89, 0.60, -0.30, 0.018 +19911010, 0.73, -0.74, 0.07, 0.018 +19911011, 0.24, 0.06, 0.19, 0.018 +19911014, 1.21, -0.48, -0.24, 0.018 +19911015, 1.23, -0.08, -0.09, 0.018 +19911016, 0.64, 0.75, -0.10, 0.018 +19911017, -0.29, 0.19, -0.02, 0.018 +19911018, 0.18, 0.10, 0.16, 0.018 +19911021, -0.60, 0.46, -0.04, 0.018 +19911022, -0.43, 0.50, -0.17, 0.018 +19911023, -0.05, -0.03, -0.27, 0.018 +19911024, -0.81, -0.31, 0.38, 0.018 +19911025, -0.30, -0.28, 0.35, 0.018 +19911028, 1.18, -0.76, -0.30, 0.018 +19911029, 0.57, 0.05, 0.04, 0.018 +19911030, 0.52, 0.17, 0.23, 0.018 +19911031, 0.09, 0.75, -0.44, 0.018 +19911101, -0.31, 0.16, -0.29, 0.020 +19911104, -0.34, -0.13, 0.02, 0.020 +19911105, -0.26, 0.32, 0.01, 0.020 +19911106, 0.28, -0.24, 0.28, 0.020 +19911107, 0.92, -0.21, -0.20, 0.020 +19911108, 0.01, 0.41, -0.19, 0.020 +19911111, 0.15, 0.34, -0.67, 0.020 +19911112, 0.87, -0.19, -0.23, 0.020 +19911113, 0.12, -0.27, 0.09, 0.020 +19911114, -0.11, -0.11, -0.08, 0.020 +19911115, -3.55, 0.36, 1.06, 0.020 +19911118, 0.50, -0.51, -0.89, 0.020 +19911119, -1.60, -0.70, 0.32, 0.020 +19911120, -0.13, 0.54, -0.08, 0.020 +19911121, 0.43, -0.13, -0.38, 0.020 +19911122, -0.95, 0.32, -0.29, 0.020 +19911125, -0.33, -0.38, 0.08, 0.020 +19911126, 0.50, -0.94, 0.09, 0.020 +19911127, -0.22, 0.23, -0.33, 0.020 +19911129, -0.18, 0.66, -0.38, 0.020 +19911202, 1.38, -1.34, -0.61, 0.018 +19911203, 0.07, 0.36, -0.49, 0.018 +19911204, -0.12, 0.45, -0.58, 0.018 +19911205, -0.55, 0.35, -0.49, 0.018 +19911206, 0.37, 0.01, -0.37, 0.018 +19911209, -0.23, -0.12, -0.36, 0.018 +19911210, -0.12, -0.39, -0.26, 0.018 +19911211, -0.19, -0.42, 0.12, 0.018 +19911212, 0.92, -0.45, 0.12, 0.018 +19911213, 0.72, 0.18, 0.05, 0.018 +19911216, 0.16, 0.68, -0.82, 0.018 +19911217, -0.50, 0.19, -0.82, 0.018 +19911218, 0.11, -0.22, -0.34, 0.018 +19911219, -0.40, -0.23, -0.01, 0.018 +19911220, 0.99, -1.28, 0.61, 0.018 +19911223, 2.28, -1.41, 0.74, 0.018 +19911224, 0.81, 0.05, 0.57, 0.018 +19911226, 1.44, 0.22, -0.03, 0.018 +19911227, 0.58, 0.62, -0.40, 0.018 +19911230, 2.04, 0.14, -0.37, 0.018 +19911231, 0.63, 0.55, 0.12, 0.018 +19920102, -0.10, -0.10, 0.52, 0.015 +19920103, 0.55, 0.51, 0.15, 0.015 +19920106, -0.01, 1.01, -0.01, 0.015 +19920107, 0.06, 0.72, -0.09, 0.015 +19920108, 0.38, 0.91, -0.69, 0.015 +19920109, 0.23, 1.11, -0.68, 0.015 +19920110, -0.63, 0.07, 0.48, 0.015 +19920113, -0.14, 0.54, -0.04, 0.015 +19920114, 1.32, -0.14, 0.28, 0.015 +19920115, 0.31, 0.31, 1.58, 0.015 +19920116, -0.62, 0.45, 1.92, 0.015 +19920117, 0.07, 0.47, -0.22, 0.015 +19920120, -0.66, 0.27, 0.50, 0.015 +19920121, -1.15, -0.65, 0.35, 0.015 +19920122, 1.39, 0.02, -0.82, 0.015 +19920123, -0.43, 0.85, 0.05, 0.015 +19920124, 0.14, 0.23, -0.07, 0.015 +19920127, -0.15, -0.09, 1.07, 0.015 +19920128, 0.00, -0.05, 0.66, 0.015 +19920129, -1.02, 0.56, -0.12, 0.015 +19920130, 0.43, 0.33, -0.33, 0.015 +19920131, -0.51, 0.84, -0.12, 0.015 +19920203, 0.25, -0.02, 0.35, 0.015 +19920204, 1.01, -0.06, -0.03, 0.015 +19920205, 0.24, 0.52, 0.04, 0.015 +19920206, 0.04, 0.19, 0.61, 0.015 +19920207, -0.59, 0.47, 0.23, 0.015 +19920210, 0.46, -0.42, 0.73, 0.015 +19920211, 0.02, 0.03, 0.46, 0.015 +19920212, 0.89, 0.24, -0.10, 0.015 +19920213, -0.83, 0.22, 0.51, 0.015 +19920214, -0.23, 0.02, 0.87, 0.015 +19920218, -1.20, 0.19, 1.82, 0.015 +19920219, -0.01, -1.03, 0.94, 0.015 +19920220, 1.28, -0.03, -0.14, 0.015 +19920221, -0.52, 0.38, 0.05, 0.015 +19920224, -0.05, -0.54, 0.16, 0.015 +19920225, -0.44, -0.13, -0.41, 0.015 +19920226, 1.19, 0.05, -0.42, 0.015 +19920227, -0.13, 0.59, 0.21, 0.015 +19920228, -0.27, 0.17, 0.28, 0.015 +19920302, 0.09, 0.16, 0.30, 0.015 +19920303, 0.03, 0.04, 0.45, 0.015 +19920304, -0.74, 0.50, 0.29, 0.015 +19920305, -0.88, -0.39, 0.02, 0.015 +19920306, -0.56, -0.08, -0.22, 0.015 +19920309, 0.15, -0.31, 0.22, 0.015 +19920310, 0.55, 0.18, -0.11, 0.015 +19920311, -0.73, 0.05, 0.13, 0.015 +19920312, -0.13, -0.35, -0.14, 0.015 +19920313, 0.44, -0.13, 0.02, 0.015 +19920316, 0.04, -0.37, 0.18, 0.015 +19920317, 0.74, -0.30, 0.02, 0.015 +19920318, -0.02, 0.52, 0.79, 0.015 +19920319, 0.17, -0.13, 0.64, 0.015 +19920320, 0.18, -0.33, 0.31, 0.015 +19920323, -0.29, 0.03, -0.14, 0.015 +19920324, -0.28, -0.05, -0.03, 0.015 +19920325, -0.14, 0.34, 0.05, 0.015 +19920326, -0.11, -0.40, 0.29, 0.015 +19920327, -1.09, 0.03, 0.10, 0.015 +19920330, -0.21, -0.32, 0.39, 0.015 +19920331, 0.12, 0.29, 0.10, 0.015 +19920401, 0.02, -0.59, -0.24, 0.015 +19920402, -1.00, 0.06, 0.16, 0.015 +19920403, 0.00, -0.62, -0.39, 0.015 +19920406, 0.91, -0.60, -0.01, 0.015 +19920407, -1.83, -0.19, 0.84, 0.015 +19920408, -1.08, -0.53, 0.19, 0.015 +19920409, 1.63, 0.11, -0.68, 0.015 +19920410, 0.73, -0.22, 0.21, 0.015 +19920413, 0.45, -0.39, -0.17, 0.015 +19920414, 1.39, -0.60, 0.53, 0.015 +19920415, 0.82, -0.47, 0.34, 0.015 +19920416, -0.31, -0.85, 1.37, 0.015 +19920420, -1.52, -0.47, 1.18, 0.015 +19920421, -0.13, -0.35, 0.58, 0.015 +19920422, -0.01, 0.01, 0.61, 0.015 +19920423, 0.22, -0.51, 0.43, 0.015 +19920424, -0.51, 0.68, -0.05, 0.015 +19920427, -0.22, -0.50, -0.16, 0.015 +19920428, -0.09, -0.89, 0.44, 0.015 +19920429, 0.80, 0.12, -0.15, 0.015 +19920430, 0.88, 0.64, -0.72, 0.015 +19920501, -0.45, 0.59, -0.08, 0.014 +19920504, 1.02, -0.44, -0.36, 0.014 +19920505, 0.16, 0.19, 0.03, 0.014 +19920506, 0.04, 0.30, 0.18, 0.014 +19920507, -0.19, 0.14, 0.22, 0.014 +19920508, -0.03, -0.22, 0.27, 0.014 +19920511, 0.51, -0.13, -0.09, 0.014 +19920512, -0.50, 0.12, 0.57, 0.014 +19920513, -0.04, -0.19, 0.59, 0.014 +19920514, -0.81, -0.02, 0.21, 0.014 +19920515, -0.59, 0.35, -0.11, 0.014 +19920518, 0.50, -0.40, -0.11, 0.014 +19920519, 0.72, -0.64, 0.02, 0.014 +19920520, -0.06, 0.33, 0.05, 0.014 +19920521, -0.63, 0.47, 0.18, 0.014 +19920522, 0.27, 0.04, -0.01, 0.014 +19920526, -0.70, 0.03, -0.05, 0.014 +19920527, 0.22, -0.15, 0.13, 0.014 +19920528, 0.88, -0.58, -0.50, 0.014 +19920529, 0.01, 0.63, 0.05, 0.014 +19920601, 0.45, -0.23, 0.01, 0.015 +19920602, -0.62, 0.89, 0.39, 0.015 +19920603, 0.14, -0.14, 0.30, 0.015 +19920604, -0.34, 0.15, 0.71, 0.015 +19920605, -0.08, -0.19, 0.21, 0.015 +19920608, -0.17, -0.33, 0.56, 0.015 +19920609, -0.86, -0.26, 0.59, 0.015 +19920610, -0.71, -0.09, 0.40, 0.015 +19920611, 0.20, -0.79, -0.06, 0.015 +19920612, 0.25, 0.09, -0.12, 0.015 +19920615, -0.02, -0.43, 0.23, 0.015 +19920616, -0.49, -0.26, 0.60, 0.015 +19920617, -1.55, -0.28, 0.10, 0.015 +19920618, -0.43, -0.59, 0.03, 0.015 +19920619, 0.65, -0.21, -0.28, 0.015 +19920622, -0.27, -0.70, -0.37, 0.015 +19920623, 0.29, 0.03, -0.08, 0.015 +19920624, -0.13, -0.27, 0.44, 0.015 +19920625, -0.17, -0.02, 0.14, 0.015 +19920626, 0.05, -0.08, 0.18, 0.015 +19920629, 1.34, -0.32, -0.48, 0.015 +19920630, 0.14, 0.84, 0.07, 0.015 +19920701, 1.05, -0.32, -0.52, 0.014 +19920702, -0.30, -0.19, 0.51, 0.014 +19920706, 0.38, -0.63, -0.31, 0.014 +19920707, -1.04, 0.29, 1.02, 0.014 +19920708, 0.15, -0.51, 0.00, 0.014 +19920709, 0.96, -0.08, -0.14, 0.014 +19920710, 0.19, 0.35, -0.15, 0.014 +19920713, 0.16, 0.20, -0.11, 0.014 +19920714, 0.62, 0.08, -0.09, 0.014 +19920715, -0.12, 0.45, -0.32, 0.014 +19920716, 0.08, 0.07, -0.55, 0.014 +19920717, -0.52, -0.03, 0.14, 0.014 +19920720, -0.48, -0.36, 0.35, 0.014 +19920721, 0.16, 0.31, -0.41, 0.014 +19920722, -0.68, 0.23, 0.28, 0.014 +19920723, 0.24, -0.06, 0.05, 0.014 +19920724, -0.05, 0.03, 0.20, 0.014 +19920727, 0.04, 0.05, -0.08, 0.014 +19920728, 1.31, -0.59, -0.12, 0.014 +19920729, 1.05, -0.21, -0.34, 0.014 +19920730, 0.38, 0.07, 0.23, 0.014 +19920731, 0.16, 0.41, -0.18, 0.014 +19920803, 0.24, 0.10, -0.37, 0.012 +19920804, -0.11, 0.21, -0.12, 0.012 +19920805, -0.52, 0.17, 0.09, 0.012 +19920806, -0.35, 0.10, -0.23, 0.012 +19920807, -0.25, 0.20, -0.16, 0.012 +19920810, 0.01, -0.37, 0.15, 0.012 +19920811, -0.14, 0.00, 0.14, 0.012 +19920812, -0.31, 0.19, -0.08, 0.012 +19920813, 0.04, -0.13, -0.14, 0.012 +19920814, 0.49, -0.16, 0.06, 0.012 +19920817, 0.18, -0.12, -0.06, 0.012 +19920818, 0.08, -0.21, -0.06, 0.012 +19920819, -0.66, 0.24, -0.11, 0.012 +19920820, -0.05, -0.23, -0.06, 0.012 +19920821, -0.75, 0.27, 0.16, 0.012 +19920824, -1.16, -0.02, -0.24, 0.012 +19920825, 0.05, -0.43, -0.07, 0.012 +19920826, 0.49, -0.24, -0.22, 0.012 +19920827, 0.22, 0.33, -0.04, 0.012 +19920828, 0.23, -0.06, 0.08, 0.012 +19920831, -0.13, 0.05, 0.22, 0.012 +19920901, 0.45, -0.20, -0.40, 0.012 +19920902, 0.52, 0.17, -0.19, 0.012 +19920903, 0.11, 0.47, -0.47, 0.012 +19920904, -0.21, 0.03, -0.13, 0.012 +19920908, -0.59, 0.22, -0.24, 0.012 +19920909, 0.41, -0.21, -0.28, 0.012 +19920910, 0.83, -0.16, -0.17, 0.012 +19920911, 0.04, 0.37, -0.56, 0.012 +19920914, 1.39, -0.45, -0.37, 0.012 +19920915, -1.12, 0.51, 0.25, 0.012 +19920916, -0.08, -0.10, 0.10, 0.012 +19920917, 0.02, 0.03, -0.18, 0.012 +19920918, 0.52, -0.29, 0.27, 0.012 +19920921, -0.11, -0.09, 0.25, 0.012 +19920922, -1.04, 0.64, 0.32, 0.012 +19920923, -0.03, -0.02, -0.02, 0.012 +19920924, 0.36, -0.02, 0.04, 0.012 +19920925, -1.06, -0.10, 1.03, 0.012 +19920928, 0.30, -0.62, 0.32, 0.012 +19920929, 0.10, -0.11, 0.12, 0.012 +19920930, 0.38, 0.48, 0.10, 0.012 +19921001, -0.44, -0.33, 0.18, 0.010 +19921002, -1.28, 0.40, 0.30, 0.010 +19921005, -0.82, -0.88, 0.19, 0.010 +19921006, 0.16, 0.54, -0.19, 0.010 +19921007, -0.55, 0.74, -0.32, 0.010 +19921008, 0.81, -0.15, -0.59, 0.010 +19921009, -1.05, 0.61, 0.18, 0.010 +19921012, 0.94, -0.68, 0.18, 0.010 +19921013, 0.48, -0.06, -0.26, 0.010 +19921014, 0.02, 0.25, -0.17, 0.010 +19921015, 0.09, 0.13, -0.29, 0.010 +19921016, 0.45, -0.05, -0.31, 0.010 +19921019, 0.92, 0.23, -0.92, 0.010 +19921020, 0.16, 0.33, 0.22, 0.010 +19921021, 0.17, 0.29, -0.02, 0.010 +19921022, -0.17, -0.03, 0.11, 0.010 +19921023, -0.13, 0.39, 0.25, 0.010 +19921026, 0.82, -0.66, 0.35, 0.010 +19921027, 0.03, 0.00, -0.17, 0.010 +19921028, 0.48, 0.08, -0.27, 0.010 +19921029, 0.28, 0.09, -0.47, 0.010 +19921030, -0.32, 0.78, -0.06, 0.010 +19921102, 0.79, -0.44, -0.10, 0.012 +19921103, -0.50, 0.46, 0.25, 0.012 +19921104, -0.47, 0.44, 0.25, 0.012 +19921105, 0.44, 0.28, -0.36, 0.012 +19921106, 0.03, 0.41, -0.32, 0.012 +19921109, 0.35, 0.44, -0.59, 0.012 +19921110, 0.17, 0.57, -0.58, 0.012 +19921111, 0.86, 0.41, -0.77, 0.012 +19921112, 0.08, -0.21, 0.17, 0.012 +19921113, 0.00, 0.42, 0.02, 0.012 +19921116, -0.33, 0.18, 0.01, 0.012 +19921117, -0.40, -0.16, 0.53, 0.012 +19921118, 0.81, 0.01, -0.42, 0.012 +19921119, 0.23, 0.20, -0.33, 0.012 +19921120, 0.68, -0.07, -0.09, 0.012 +19921123, -0.28, 0.23, 0.21, 0.012 +19921124, 0.60, 0.07, -0.17, 0.012 +19921125, 0.41, 0.02, 0.33, 0.012 +19921127, 0.24, 0.00, 0.05, 0.012 +19921130, 0.34, 0.19, 0.51, 0.012 +19921201, -0.06, 0.16, 0.06, 0.013 +19921202, -0.21, 0.40, 0.20, 0.013 +19921203, 0.06, 0.31, 0.00, 0.013 +19921204, 0.51, 0.08, -0.16, 0.013 +19921207, 0.64, -0.06, -0.27, 0.013 +19921208, 0.32, -0.14, 0.16, 0.013 +19921209, -0.29, -0.13, 0.21, 0.013 +19921210, -0.32, -0.33, 0.33, 0.013 +19921211, -0.17, 0.09, 0.17, 0.013 +19921214, -0.17, 0.04, 0.19, 0.013 +19921215, -0.18, -0.35, 0.25, 0.013 +19921216, -0.37, -0.29, 0.46, 0.013 +19921217, 0.88, -0.04, -0.50, 0.013 +19921218, 1.10, -0.59, -0.17, 0.013 +19921221, -0.08, -0.09, 0.12, 0.013 +19921222, -0.06, -0.13, 0.59, 0.013 +19921223, -0.14, 0.34, 0.46, 0.013 +19921224, 0.19, 0.28, -0.01, 0.013 +19921228, -0.06, -0.26, 0.09, 0.013 +19921229, -0.05, 0.43, 0.13, 0.013 +19921230, 0.20, 0.41, 0.10, 0.013 +19921231, -0.18, 1.47, 0.00, 0.013 +19930104, -0.30, -0.30, 0.55, 0.012 +19930105, -0.19, 0.39, 0.25, 0.012 +19930106, 0.14, 0.42, 0.49, 0.012 +19930107, -0.77, 0.65, 0.17, 0.012 +19930108, -0.40, 0.02, -0.19, 0.012 +19930111, 0.41, -0.01, 0.30, 0.012 +19930112, 0.00, -0.29, 0.19, 0.012 +19930113, 0.50, 0.00, -0.11, 0.012 +19930114, 0.73, 0.22, -0.17, 0.012 +19930115, 0.36, 0.18, 0.33, 0.012 +19930118, 0.01, -0.03, 0.94, 0.012 +19930119, -0.27, 0.27, 1.32, 0.012 +19930120, -0.27, 0.62, 0.14, 0.012 +19930121, 0.43, -0.19, -0.05, 0.012 +19930122, 0.25, 0.21, 0.29, 0.012 +19930125, 0.74, 0.05, 0.14, 0.012 +19930126, 0.02, 0.40, 0.25, 0.012 +19930127, -0.54, -0.59, 0.65, 0.012 +19930128, -0.02, -0.28, 0.14, 0.012 +19930129, 0.11, 0.29, 0.09, 0.012 +19930201, 0.84, -0.54, 0.22, 0.012 +19930202, 0.14, 0.14, 0.27, 0.012 +19930203, 0.95, -0.10, 0.25, 0.012 +19930204, 0.55, -0.44, 0.70, 0.012 +19930205, -0.33, -0.45, 0.70, 0.012 +19930208, -0.21, 0.03, 0.39, 0.012 +19930209, -0.66, -0.07, 0.16, 0.012 +19930210, 0.20, -0.24, 0.01, 0.012 +19930211, 0.30, 0.18, 0.30, 0.012 +19930212, -0.61, 0.17, 0.36, 0.012 +19930216, -2.71, -0.72, 0.85, 0.012 +19930217, -0.43, -0.79, 0.60, 0.012 +19930218, -0.17, 0.72, 0.00, 0.012 +19930219, 0.41, -0.14, 1.47, 0.012 +19930222, -0.16, -1.25, 2.10, 0.012 +19930223, -0.07, -0.04, -0.47, 0.012 +19930224, 1.43, -0.60, -1.12, 0.012 +19930225, 0.42, 0.17, 0.03, 0.012 +19930226, 0.29, 0.52, -0.40, 0.012 +19930301, -0.14, 0.22, 0.04, 0.011 +19930302, 1.18, -0.57, -0.41, 0.011 +19930303, 0.49, 0.21, -0.03, 0.011 +19930304, -0.41, 0.39, 0.33, 0.011 +19930305, -0.17, 0.45, -0.01, 0.011 +19930308, 1.56, -0.99, -0.20, 0.011 +19930309, 0.09, 0.16, 0.41, 0.011 +19930310, 0.49, 0.02, -0.27, 0.011 +19930311, -0.36, 0.72, -0.12, 0.011 +19930312, -0.73, 0.43, -0.16, 0.011 +19930315, 0.31, 0.02, -0.12, 0.011 +19930316, -0.05, -0.14, 0.37, 0.011 +19930317, -0.73, 0.13, 0.62, 0.011 +19930318, 0.65, -0.72, 0.41, 0.011 +19930319, -0.49, -0.09, 0.71, 0.011 +19930322, -0.42, -0.49, 0.68, 0.011 +19930323, -0.06, -0.14, 0.11, 0.011 +19930324, -0.16, -0.03, -0.06, 0.011 +19930325, 0.66, -0.05, -0.24, 0.011 +19930326, -0.38, 0.58, 0.21, 0.011 +19930329, 0.45, -0.39, -0.17, 0.011 +19930330, 0.39, -0.12, -0.63, 0.011 +19930331, 0.15, 0.57, -0.30, 0.011 +19930401, -0.37, 0.13, 0.31, 0.011 +19930402, -2.01, 0.34, 0.79, 0.011 +19930405, 0.12, -0.62, 0.42, 0.011 +19930406, -0.43, -0.47, 1.07, 0.011 +19930407, 0.31, -0.25, 0.32, 0.011 +19930408, -0.22, 0.02, 0.76, 0.011 +19930412, 1.28, -0.99, -0.10, 0.011 +19930413, 0.33, 0.15, 0.56, 0.011 +19930414, -0.06, 0.05, 0.48, 0.011 +19930415, -0.16, -0.15, 0.37, 0.011 +19930416, -0.01, -0.34, 0.90, 0.011 +19930419, -0.37, 0.08, -0.42, 0.011 +19930420, -0.52, 0.21, -0.69, 0.011 +19930421, -0.17, 0.61, -0.81, 0.011 +19930422, -0.74, 0.92, -0.28, 0.011 +19930423, -0.59, 0.17, -0.21, 0.011 +19930426, -1.03, -0.29, -0.17, 0.011 +19930427, 0.91, -0.89, -0.63, 0.011 +19930428, 0.14, 0.18, 0.18, 0.011 +19930429, 0.19, 0.10, -0.07, 0.011 +19930430, 0.38, 0.35, -0.06, 0.011 +19930503, 0.56, -0.20, -0.54, 0.011 +19930504, 0.58, 0.57, -0.41, 0.011 +19930505, 0.31, 0.61, -0.68, 0.011 +19930506, -0.31, 0.40, -0.06, 0.011 +19930507, -0.14, 0.22, -0.27, 0.011 +19930510, 0.20, -0.13, -0.01, 0.011 +19930511, 0.33, -0.19, 0.37, 0.011 +19930512, 0.00, 0.02, 0.43, 0.011 +19930513, -1.15, 0.72, 0.08, 0.011 +19930514, -0.03, 0.30, -1.12, 0.011 +19930517, 0.14, -0.17, -0.55, 0.011 +19930518, 0.06, 0.18, -0.45, 0.011 +19930519, 1.46, -0.93, -0.79, 0.011 +19930520, 0.68, -0.12, -0.32, 0.011 +19930521, -0.81, 0.85, 0.13, 0.011 +19930524, 0.29, -0.36, 0.14, 0.011 +19930525, 0.26, -0.07, 0.14, 0.011 +19930526, 1.00, -0.37, 0.12, 0.011 +19930527, -0.16, 0.38, 0.45, 0.011 +19930528, -0.40, 0.15, 0.01, 0.011 +19930601, 0.75, -0.51, 0.18, 0.012 +19930602, 0.05, 0.31, 0.05, 0.012 +19930603, -0.21, 0.28, 0.45, 0.012 +19930604, -0.58, 0.34, 0.23, 0.012 +19930607, -0.69, 0.10, 0.26, 0.012 +19930608, -0.76, -0.20, 0.11, 0.012 +19930609, 0.27, -0.13, 0.10, 0.012 +19930610, -0.14, -0.22, -0.14, 0.012 +19930611, 0.39, -0.15, -0.32, 0.012 +19930614, 0.13, -0.01, -0.09, 0.012 +19930615, -0.16, 0.53, 0.22, 0.012 +19930616, 0.16, -0.30, -0.05, 0.012 +19930617, 0.22, -0.26, 0.32, 0.012 +19930618, -0.93, 0.48, 0.67, 0.012 +19930621, 0.37, -0.80, 0.41, 0.012 +19930622, -0.10, -0.20, 0.61, 0.012 +19930623, -0.44, 0.27, -0.02, 0.012 +19930624, 0.69, -0.52, -0.07, 0.012 +19930625, 0.35, 0.25, -0.37, 0.012 +19930628, 1.06, -0.44, 0.11, 0.012 +19930629, -0.22, 0.49, -0.30, 0.012 +19930630, 0.13, 0.36, 0.24, 0.012 +19930701, -0.22, 0.50, 0.47, 0.011 +19930702, -0.48, 0.66, -0.23, 0.011 +19930706, -0.79, 0.55, 0.61, 0.011 +19930707, 0.13, -0.51, 0.44, 0.011 +19930708, 1.03, -0.69, -0.11, 0.011 +19930709, 0.05, 0.27, 0.04, 0.011 +19930712, 0.16, 0.16, -0.15, 0.011 +19930713, -0.06, 0.35, -0.17, 0.011 +19930714, 0.43, 0.14, -0.10, 0.011 +19930715, -0.19, 0.04, 0.39, 0.011 +19930716, -0.72, 0.24, 0.90, 0.011 +19930719, -0.13, -0.50, 0.50, 0.011 +19930720, 0.26, -0.30, -0.28, 0.011 +19930721, -0.10, -0.02, 0.34, 0.011 +19930722, -0.57, 0.05, 0.29, 0.011 +19930723, 0.47, -0.24, -0.42, 0.011 +19930726, 0.54, -0.10, 0.04, 0.011 +19930727, -0.24, 0.05, 0.08, 0.011 +19930728, -0.07, 0.39, 0.00, 0.011 +19930729, 0.54, -0.50, 0.07, 0.011 +19930730, -0.38, 0.35, 0.46, 0.011 +19930802, 0.40, -0.25, 0.01, 0.011 +19930803, -0.02, 0.24, -0.06, 0.011 +19930804, -0.01, 0.24, -0.02, 0.011 +19930805, -0.07, -0.04, -0.34, 0.011 +19930806, 0.15, 0.18, -0.29, 0.011 +19930809, 0.46, -0.47, 0.09, 0.011 +19930810, -0.16, 0.30, 0.47, 0.011 +19930811, 0.15, 0.00, 0.25, 0.011 +19930812, -0.29, 0.11, 0.24, 0.011 +19930813, 0.17, -0.04, -0.13, 0.011 +19930816, 0.51, -0.32, -0.07, 0.011 +19930817, 0.31, 0.05, -0.57, 0.011 +19930818, 0.57, 0.15, -0.79, 0.011 +19930819, 0.01, -0.08, 0.03, 0.011 +19930820, 0.00, 0.32, 0.05, 0.011 +19930823, -0.15, 0.01, 0.15, 0.011 +19930824, 0.88, -0.32, -0.04, 0.011 +19930825, 0.04, -0.02, 0.62, 0.011 +19930826, 0.07, -0.28, 0.39, 0.011 +19930827, -0.07, 0.30, -0.28, 0.011 +19930830, 0.29, -0.02, -0.15, 0.011 +19930831, 0.44, 0.23, 0.01, 0.011 +19930901, 0.03, 0.26, -0.09, 0.012 +19930902, -0.21, 0.63, -0.43, 0.012 +19930903, 0.06, 0.23, 0.11, 0.012 +19930907, -0.76, -0.30, 0.58, 0.012 +19930908, -0.66, -0.73, 0.44, 0.012 +19930909, 0.37, 0.18, -0.19, 0.012 +19930910, 0.87, -0.01, -0.25, 0.012 +19930913, 0.01, -0.11, 0.49, 0.012 +19930914, -0.57, -0.10, 0.12, 0.012 +19930915, 0.34, -0.06, -0.19, 0.012 +19930916, -0.26, 0.49, -0.01, 0.012 +19930917, -0.09, 0.26, 0.23, 0.012 +19930920, -0.58, 0.57, 0.14, 0.012 +19930921, -0.61, -0.34, -0.18, 0.012 +19930922, 0.84, 0.26, -0.55, 0.012 +19930923, 0.47, 0.16, -0.82, 0.012 +19930924, 0.07, 0.26, -0.04, 0.012 +19930927, 0.79, -0.21, -0.34, 0.012 +19930928, 0.06, 0.22, 0.29, 0.012 +19930929, -0.19, 0.53, 0.13, 0.012 +19930930, -0.10, 0.91, 0.09, 0.012 +19931001, 0.33, -0.44, 0.35, 0.011 +19931004, 0.05, 0.20, 0.05, 0.011 +19931005, -0.06, -0.03, 0.01, 0.011 +19931006, -0.05, 0.47, -0.12, 0.011 +19931007, -0.31, 0.26, -0.06, 0.011 +19931008, 0.15, -0.09, -0.11, 0.011 +19931011, 0.19, 0.27, -0.51, 0.011 +19931012, 0.23, 0.35, -0.47, 0.011 +19931013, 0.20, 0.37, -0.49, 0.011 +19931014, 0.89, -0.50, -0.63, 0.011 +19931015, 0.46, 0.02, -0.50, 0.011 +19931018, -0.32, 0.18, -0.24, 0.011 +19931019, -0.79, -0.54, 1.04, 0.011 +19931020, -0.13, -0.26, 0.26, 0.011 +19931021, -0.06, 0.13, -0.14, 0.011 +19931022, -0.25, 0.53, 0.19, 0.011 +19931025, 0.03, -0.06, -0.07, 0.011 +19931026, -0.16, -0.19, 0.15, 0.011 +19931027, 0.25, 0.23, -0.09, 0.011 +19931028, 0.53, -0.22, 0.09, 0.011 +19931029, 0.24, 0.77, -0.21, 0.011 +19931101, 0.28, -0.27, -0.23, 0.012 +19931102, -0.09, 0.42, -0.26, 0.012 +19931103, -1.26, 0.45, -0.58, 0.012 +19931104, -1.35, -0.10, 0.27, 0.012 +19931105, 0.45, -0.65, -0.32, 0.012 +19931108, 0.27, 0.21, -0.11, 0.012 +19931109, 0.18, 0.38, -0.37, 0.012 +19931110, 0.65, -0.19, -0.24, 0.012 +19931111, -0.08, 0.34, -0.06, 0.012 +19931112, 0.46, -0.25, 0.16, 0.012 +19931115, -0.42, -0.03, 0.20, 0.012 +19931116, 0.38, -0.96, 0.04, 0.012 +19931117, -0.55, -0.14, 0.51, 0.012 +19931118, -0.40, -0.33, 0.42, 0.012 +19931119, -0.30, 0.05, 0.04, 0.012 +19931122, -1.09, -0.64, 0.68, 0.012 +19931123, 0.54, -0.20, -0.12, 0.012 +19931124, 0.49, 0.08, 0.02, 0.012 +19931126, 0.25, -0.10, -0.08, 0.012 +19931129, -0.19, 0.05, 0.16, 0.012 +19931130, -0.08, 0.41, -0.39, 0.012 +19931201, 0.32, 0.60, -0.10, 0.010 +19931202, 0.23, -0.17, -0.07, 0.010 +19931203, 0.40, 0.00, -0.17, 0.010 +19931206, 0.29, -0.30, 0.03, 0.010 +19931207, 0.03, -0.08, 0.14, 0.010 +19931208, -0.06, 0.18, 0.21, 0.010 +19931209, -0.44, 0.13, 0.37, 0.010 +19931210, -0.07, -0.21, 0.32, 0.010 +19931213, 0.19, -0.57, 0.19, 0.010 +19931214, -0.61, -0.24, 0.20, 0.010 +19931215, -0.21, 0.12, -0.25, 0.010 +19931216, 0.24, 0.01, -0.10, 0.010 +19931217, 0.64, -0.03, 0.20, 0.010 +19931220, -0.08, -0.05, 0.08, 0.010 +19931221, -0.25, -0.41, 0.31, 0.010 +19931222, 0.29, -0.41, 0.13, 0.010 +19931223, 0.14, 0.23, -0.33, 0.010 +19931227, 0.58, -0.33, -0.02, 0.010 +19931228, 0.23, 0.17, 0.07, 0.010 +19931229, 0.11, 0.82, -0.20, 0.010 +19931230, -0.25, 0.42, -0.25, 0.010 +19931231, -0.09, 1.33, -0.24, 0.010 +19940103, -0.45, -0.20, 0.41, 0.012 +19940104, 0.24, -0.08, 0.24, 0.012 +19940105, 0.21, 0.29, -0.12, 0.012 +19940106, -0.07, 0.28, -0.14, 0.012 +19940107, 0.48, -0.19, 0.15, 0.012 +19940110, 0.88, -0.78, 0.05, 0.012 +19940111, -0.16, 0.14, -0.03, 0.012 +19940112, 0.04, 0.15, -0.13, 0.012 +19940113, -0.17, 0.36, 0.21, 0.012 +19940114, 0.47, -0.21, -0.01, 0.012 +19940117, -0.25, 0.44, 0.10, 0.012 +19940118, 0.10, -0.03, 0.09, 0.012 +19940119, -0.08, 0.25, 0.03, 0.012 +19940120, 0.21, 0.18, -0.15, 0.012 +19940121, -0.05, 0.23, 0.09, 0.012 +19940124, -0.47, 0.21, 0.38, 0.012 +19940125, -0.26, -0.03, -0.03, 0.012 +19940126, 0.41, -0.14, -0.09, 0.012 +19940127, 0.78, -0.74, 0.35, 0.012 +19940128, 0.42, 0.07, 0.08, 0.012 +19940131, 0.57, -0.07, 0.55, 0.012 +19940201, -0.28, 0.38, -0.15, 0.011 +19940202, 0.43, -0.07, 0.01, 0.011 +19940203, -0.21, 0.13, 0.11, 0.011 +19940204, -2.32, 0.21, 0.27, 0.011 +19940207, 0.33, -0.47, 0.06, 0.011 +19940208, 0.05, 0.69, 0.18, 0.011 +19940209, 0.44, 0.34, -0.11, 0.011 +19940210, -0.67, 0.48, -0.29, 0.011 +19940211, 0.03, -0.44, -0.27, 0.011 +19940214, 0.11, -0.02, -0.15, 0.011 +19940215, 0.47, -0.03, -0.34, 0.011 +19940216, 0.06, 0.65, -0.15, 0.011 +19940217, -0.46, 0.19, -0.14, 0.011 +19940218, -0.48, 0.25, -0.04, 0.011 +19940222, 0.63, -0.52, -0.04, 0.011 +19940223, -0.14, 0.15, -0.30, 0.011 +19940224, -1.25, 0.28, 0.25, 0.011 +19940225, 0.36, -0.11, -0.18, 0.011 +19940228, 0.38, 0.68, -0.19, 0.011 +19940301, -0.52, -0.05, 0.10, 0.012 +19940302, -0.13, -0.71, 0.21, 0.012 +19940303, -0.24, 0.36, -0.11, 0.012 +19940304, 0.46, 0.06, 0.00, 0.012 +19940307, 0.56, 0.19, -0.16, 0.012 +19940308, -0.23, 0.15, 0.21, 0.012 +19940309, 0.16, -0.04, -0.11, 0.012 +19940310, -0.62, 0.35, 0.05, 0.012 +19940311, 0.44, -0.41, 0.32, 0.012 +19940314, 0.29, 0.03, -0.01, 0.012 +19940315, 0.03, 0.26, 0.05, 0.012 +19940316, 0.56, 0.07, 0.08, 0.012 +19940317, 0.30, 0.00, -0.51, 0.012 +19940318, 0.05, 0.52, -0.20, 0.012 +19940321, -0.50, -0.23, 0.21, 0.012 +19940322, 0.04, 0.08, 0.45, 0.012 +19940323, 0.03, 0.22, 0.30, 0.012 +19940324, -0.98, -0.13, 0.02, 0.012 +19940325, -0.62, 0.61, -0.15, 0.012 +19940328, -0.47, -1.16, 0.48, 0.012 +19940329, -1.80, -0.26, 0.48, 0.012 +19940330, -1.53, -0.23, 0.03, 0.012 +19940331, -0.13, -0.69, -0.35, 0.012 +19940404, -1.58, -0.17, 0.32, 0.014 +19940405, 2.37, 0.44, -0.55, 0.014 +19940406, 0.03, 0.12, 0.25, 0.014 +19940407, 0.60, -0.01, 0.00, 0.014 +19940408, -0.81, 0.49, -0.09, 0.014 +19940411, 0.33, -0.49, 0.27, 0.014 +19940412, -0.54, -0.17, 0.61, 0.014 +19940413, -0.61, -0.68, 0.37, 0.014 +19940414, 0.04, -0.03, 0.54, 0.014 +19940415, 0.03, -0.09, 0.10, 0.014 +19940418, -0.82, 0.07, 0.40, 0.014 +19940419, -0.26, -0.85, -0.01, 0.014 +19940420, -0.42, -1.17, 0.59, 0.014 +19940421, 1.47, -0.50, -0.58, 0.014 +19940422, -0.05, 0.75, -0.44, 0.014 +19940425, 1.00, -0.10, 0.02, 0.014 +19940426, 0.05, 0.68, -0.11, 0.014 +19940428, -0.55, 0.89, -0.28, 0.014 +19940429, 0.47, -0.11, 0.23, 0.014 +19940502, 0.50, -0.03, -0.39, 0.015 +19940503, -0.01, 0.13, 0.07, 0.015 +19940504, -0.15, 0.31, -0.36, 0.015 +19940505, -0.10, 0.10, -0.15, 0.015 +19940506, -0.91, 0.15, 0.22, 0.015 +19940509, -1.24, 0.23, -0.02, 0.015 +19940510, 0.59, -0.58, -0.10, 0.015 +19940511, -1.06, 0.06, 0.03, 0.015 +19940512, 0.38, -0.13, -0.11, 0.015 +19940513, 0.04, -0.38, 0.33, 0.015 +19940516, -0.16, -0.44, 0.26, 0.015 +19940517, 0.81, -1.22, 0.60, 0.015 +19940518, 1.14, -0.20, -0.28, 0.015 +19940519, 0.61, 0.04, -0.24, 0.015 +19940520, -0.24, 0.10, 0.21, 0.015 +19940523, -0.33, 0.17, -0.08, 0.015 +19940524, 0.40, -0.28, -0.17, 0.015 +19940525, 0.27, -0.37, 0.31, 0.015 +19940526, 0.23, 0.13, 0.09, 0.015 +19940527, 0.08, 0.14, -0.03, 0.015 +19940531, -0.16, 0.08, -0.07, 0.015 +19940601, 0.27, -0.09, 0.23, 0.014 +19940602, 0.15, 0.73, -0.39, 0.014 +19940603, 0.47, -0.31, -0.47, 0.014 +19940606, 0.00, 0.20, 0.28, 0.014 +19940607, -0.25, -0.07, -0.08, 0.014 +19940608, -0.45, -0.23, 0.70, 0.014 +19940609, 0.02, -0.28, 0.09, 0.014 +19940610, 0.25, 0.18, 0.13, 0.014 +19940613, 0.06, -0.27, 0.50, 0.014 +19940614, 0.57, -0.43, 0.29, 0.014 +19940615, -0.31, 0.38, 0.15, 0.014 +19940616, 0.22, -0.06, -0.16, 0.014 +19940617, -0.70, 0.29, 0.15, 0.014 +19940620, -0.93, -0.40, 0.11, 0.014 +19940621, -0.95, -0.22, 0.14, 0.014 +19940622, 0.34, 0.09, 0.10, 0.014 +19940623, -0.89, -0.16, 0.47, 0.014 +19940624, -1.41, 0.11, 0.06, 0.014 +19940627, 0.89, -0.80, -0.26, 0.014 +19940628, -0.24, -0.10, -0.32, 0.014 +19940629, 0.36, 0.05, -0.19, 0.014 +19940630, -0.51, 0.86, 0.27, 0.014 +19940701, 0.42, -0.22, 0.16, 0.014 +19940705, -0.04, -0.14, -0.09, 0.014 +19940706, -0.03, -0.11, 0.31, 0.014 +19940707, 0.49, -0.26, 0.15, 0.014 +19940708, 0.17, -0.23, -0.27, 0.014 +19940711, -0.30, 0.25, -0.03, 0.014 +19940712, 0.08, 0.14, -0.04, 0.014 +19940713, 0.37, 0.12, -0.18, 0.014 +19940714, 0.98, -0.20, -0.12, 0.014 +19940715, 0.08, 0.04, 0.22, 0.014 +19940718, 0.19, -0.30, 0.03, 0.014 +19940719, -0.27, 0.28, 0.02, 0.014 +19940720, -0.54, -0.01, 0.21, 0.014 +19940721, 0.19, -0.24, 0.27, 0.014 +19940722, 0.05, -0.14, 0.10, 0.014 +19940725, 0.17, -0.25, -0.01, 0.014 +19940726, -0.17, 0.05, 0.19, 0.014 +19940727, -0.25, -0.12, 0.12, 0.014 +19940728, 0.24, -0.36, 0.03, 0.014 +19940729, 0.95, 0.01, -0.44, 0.014 +19940801, 0.53, -0.40, 0.20, 0.016 +19940802, 0.10, 0.11, 0.09, 0.016 +19940803, 0.01, 0.07, 0.32, 0.016 +19940804, -0.52, 0.35, 0.00, 0.016 +19940805, -0.32, 0.09, -0.08, 0.016 +19940808, 0.20, -0.12, 0.06, 0.016 +19940809, 0.09, 0.05, -0.04, 0.016 +19940810, 0.55, 0.08, -0.78, 0.016 +19940811, -0.26, 0.21, -0.25, 0.016 +19940812, 0.55, -0.18, -0.30, 0.016 +19940815, -0.02, 0.32, 0.06, 0.016 +19940816, 0.60, -0.57, -0.26, 0.016 +19940817, 0.17, 0.38, -0.50, 0.016 +19940818, -0.35, 0.51, -0.28, 0.016 +19940819, 0.12, 0.09, -0.07, 0.016 +19940822, -0.20, 0.28, -0.34, 0.016 +19940823, 0.54, 0.11, -0.36, 0.016 +19940824, 0.71, -0.42, 0.00, 0.016 +19940825, -0.07, 0.32, -0.06, 0.016 +19940826, 1.08, -0.60, -0.29, 0.016 +19940829, 0.17, 0.04, -0.03, 0.016 +19940830, 0.35, -0.04, 0.20, 0.016 +19940831, -0.10, 0.62, 0.04, 0.016 +19940901, -0.49, 0.06, 0.09, 0.017 +19940902, -0.32, 0.52, -0.02, 0.017 +19940906, 0.03, -0.24, 0.12, 0.017 +19940907, -0.02, 0.42, -0.22, 0.017 +19940908, 0.46, 0.06, -0.36, 0.017 +19940909, -0.93, 0.62, 0.08, 0.017 +19940912, -0.44, 0.14, 0.00, 0.017 +19940913, 0.30, 0.24, -0.36, 0.017 +19940914, 0.26, -0.07, 0.08, 0.017 +19940915, 1.14, -0.33, -0.49, 0.017 +19940916, -0.52, 0.62, 0.11, 0.017 +19940919, -0.13, -0.02, -0.18, 0.017 +19940920, -1.44, 0.54, 0.27, 0.017 +19940921, -0.55, -0.18, 0.03, 0.017 +19940922, -0.10, 0.12, -0.17, 0.017 +19940923, -0.33, 0.13, -0.14, 0.017 +19940926, 0.20, -0.43, -0.12, 0.017 +19940927, 0.16, -0.22, -0.16, 0.017 +19940928, 0.59, -0.04, -0.23, 0.017 +19940929, -0.37, 0.26, -0.09, 0.017 +19940930, 0.21, 0.63, -0.25, 0.017 +19941003, -0.27, -0.25, -0.14, 0.018 +19941004, -1.47, 0.22, 0.41, 0.018 +19941005, -0.38, -0.48, -0.06, 0.018 +19941006, -0.23, 0.44, -0.16, 0.018 +19941007, 0.60, -0.30, -0.10, 0.018 +19941010, 0.75, -0.18, -0.29, 0.018 +19941011, 1.28, -0.62, -0.68, 0.018 +19941012, -0.01, 0.18, 0.00, 0.018 +19941013, 0.35, -0.24, 0.03, 0.018 +19941014, 0.17, -0.44, 0.32, 0.018 +19941017, -0.07, 0.10, -0.10, 0.018 +19941018, -0.20, -0.20, 0.10, 0.018 +19941019, 0.49, -0.20, -0.09, 0.018 +19941020, -0.67, 0.38, -0.09, 0.018 +19941021, -0.41, 0.16, -0.14, 0.018 +19941024, -0.77, 0.42, -0.21, 0.018 +19941025, -0.03, -0.49, 0.33, 0.018 +19941026, 0.27, -0.22, -0.41, 0.018 +19941027, 0.63, -0.15, -0.34, 0.018 +19941028, 1.52, -0.76, -0.18, 0.018 +19941031, -0.18, 0.31, 0.06, 0.018 +19941101, -0.77, 0.31, -0.38, 0.018 +19941102, -0.24, 0.43, -0.12, 0.018 +19941103, 0.25, -0.17, 0.29, 0.018 +19941104, -0.93, 0.67, -0.12, 0.018 +19941107, -0.04, -0.45, -0.03, 0.018 +19941108, 0.50, -0.32, -0.22, 0.018 +19941109, -0.09, -0.10, -0.11, 0.018 +19941110, -0.26, -0.05, -0.01, 0.018 +19941111, -0.42, 0.09, -0.21, 0.018 +19941114, 0.67, -0.49, -0.39, 0.018 +19941115, -0.11, 0.21, 0.13, 0.018 +19941116, 0.02, -0.08, -0.25, 0.018 +19941117, -0.46, 0.17, -0.26, 0.018 +19941118, -0.44, 0.21, -0.41, 0.018 +19941121, -0.75, 0.10, 0.00, 0.018 +19941122, -1.84, 0.17, 0.29, 0.018 +19941123, -0.15, -0.98, 0.90, 0.018 +19941125, 0.62, -0.03, -0.09, 0.018 +19941128, 0.35, -0.20, -0.36, 0.018 +19941129, 0.25, 0.21, -0.15, 0.018 +19941130, -0.21, 0.53, 0.52, 0.018 +19941201, -1.04, 0.13, 0.06, 0.021 +19941202, 0.71, -0.56, 0.06, 0.021 +19941205, 0.08, -0.16, 0.15, 0.021 +19941206, -0.17, -0.33, 0.31, 0.021 +19941207, -0.54, -0.29, 0.22, 0.021 +19941208, -1.43, -0.21, 0.24, 0.021 +19941209, 0.16, -0.69, 0.12, 0.021 +19941212, 0.39, -0.44, -0.17, 0.021 +19941213, 0.22, -0.25, 0.12, 0.021 +19941214, 1.02, -0.27, -0.20, 0.021 +19941215, 0.33, 0.84, 0.01, 0.021 +19941216, 0.46, -0.60, -0.09, 0.021 +19941219, -0.22, -0.07, 0.38, 0.021 +19941220, -0.07, 0.23, 0.01, 0.021 +19941221, 0.62, 0.38, -0.30, 0.021 +19941222, -0.04, 0.25, -0.42, 0.021 +19941223, 0.22, 0.14, 0.01, 0.021 +19941227, 0.46, -0.03, -0.15, 0.021 +19941228, -0.41, 0.18, -0.13, 0.021 +19941229, 0.28, 0.21, -0.10, 0.021 +19941230, -0.14, 1.58, 0.38, 0.021 +19950103, -0.26, -0.89, 0.85, 0.020 +19950104, 0.33, -0.31, 0.65, 0.020 +19950105, -0.05, 0.06, 0.03, 0.020 +19950106, 0.18, -0.03, 0.31, 0.020 +19950109, 0.08, 0.05, 0.09, 0.020 +19950110, 0.20, 0.08, -0.26, 0.020 +19950111, -0.09, -0.14, -0.19, 0.020 +19950112, 0.01, 0.02, 0.11, 0.020 +19950113, 0.87, -0.37, 0.37, 0.020 +19950116, 0.79, -0.40, -0.09, 0.020 +19950117, 0.22, 0.42, -0.45, 0.020 +19950118, -0.15, 0.10, -0.08, 0.020 +19950119, -0.57, 0.12, -0.18, 0.020 +19950120, -0.51, 0.26, -0.20, 0.020 +19950123, 0.00, -0.67, 0.24, 0.020 +19950124, 0.16, 0.31, -0.20, 0.020 +19950125, 0.20, -0.32, 0.26, 0.020 +19950126, 0.04, -0.17, -0.16, 0.020 +19950127, 0.39, -0.31, -0.09, 0.020 +19950130, -0.45, -0.25, -0.14, 0.020 +19950131, 0.39, -0.24, 0.04, 0.020 +19950201, 0.15, -0.06, 0.18, 0.021 +19950202, 0.44, 0.00, -0.23, 0.021 +19950203, 1.22, -0.65, 0.31, 0.021 +19950206, 0.61, 0.06, -0.46, 0.021 +19950207, -0.07, 0.22, 0.25, 0.021 +19950208, 0.13, 0.17, -0.20, 0.021 +19950209, -0.09, 0.40, -0.12, 0.021 +19950210, 0.23, 0.16, -0.16, 0.021 +19950213, 0.02, 0.00, 0.10, 0.021 +19950214, 0.09, -0.24, 0.38, 0.021 +19950215, 0.48, 0.23, 0.09, 0.021 +19950216, -0.05, -0.50, -0.15, 0.021 +19950217, -0.58, 0.14, 0.24, 0.021 +19950221, -0.05, -0.26, 0.39, 0.021 +19950222, 0.40, -0.34, 0.03, 0.021 +19950223, 0.45, -0.18, 0.23, 0.021 +19950224, 0.16, 0.13, 0.20, 0.021 +19950227, -0.82, 0.03, 0.10, 0.021 +19950228, 0.82, 0.10, -0.21, 0.021 +19950301, -0.31, 0.27, -0.41, 0.020 +19950302, -0.14, 0.13, -0.33, 0.020 +19950303, 0.14, 0.15, -0.16, 0.020 +19950306, -0.13, -0.19, -0.31, 0.020 +19950307, -0.75, 0.15, -0.15, 0.020 +19950308, 0.21, 0.04, 0.02, 0.020 +19950309, 0.05, -0.12, 0.01, 0.020 +19950310, 1.12, -0.74, -0.30, 0.020 +19950313, 0.09, -0.01, -0.01, 0.020 +19950314, 0.56, -0.15, -0.40, 0.020 +19950315, -0.17, 0.15, 0.23, 0.020 +19950316, 0.56, -0.32, 0.01, 0.020 +19950317, -0.07, -0.13, -0.35, 0.020 +19950320, 0.10, 0.17, -0.26, 0.020 +19950321, -0.24, -0.01, -0.11, 0.020 +19950322, 0.04, -0.25, 0.05, 0.020 +19950323, 0.08, 0.07, 0.11, 0.020 +19950324, 0.93, -0.55, 0.02, 0.020 +19950327, 0.48, -0.17, 0.06, 0.020 +19950328, 0.15, 0.13, -0.25, 0.020 +19950329, -0.17, -0.08, 0.63, 0.020 +19950330, -0.08, 0.07, 0.79, 0.020 +19950331, -0.27, 0.65, 0.04, 0.020 +19950403, 0.14, -0.15, 0.09, 0.023 +19950404, 0.47, -0.52, 0.28, 0.023 +19950405, 0.09, -0.02, 0.29, 0.023 +19950406, 0.05, -0.09, 0.61, 0.023 +19950407, -0.04, -0.38, 0.15, 0.023 +19950410, 0.25, 0.33, -0.21, 0.023 +19950411, -0.17, 0.48, -0.02, 0.023 +19950412, 0.33, -0.32, 0.17, 0.023 +19950413, 0.34, 0.19, -0.15, 0.023 +19950417, -0.53, 0.40, 0.45, 0.023 +19950418, -0.34, -0.08, 0.10, 0.023 +19950419, -0.30, -0.61, 0.61, 0.023 +19950420, 0.16, 0.02, 0.28, 0.023 +19950421, 0.51, -0.13, 0.08, 0.023 +19950424, 0.72, -0.38, -0.02, 0.023 +19950425, -0.09, 0.24, 0.13, 0.023 +19950426, 0.14, 0.25, -0.36, 0.023 +19950427, 0.20, 0.15, -0.08, 0.023 +19950428, 0.16, 0.02, -0.21, 0.023 +19950501, -0.13, 0.08, 0.14, 0.024 +19950502, 0.08, -0.03, -0.12, 0.024 +19950503, 0.94, -0.72, -0.33, 0.024 +19950504, -0.10, -0.44, 0.27, 0.024 +19950505, -0.10, -0.11, 0.26, 0.024 +19950508, 0.64, -0.21, 0.22, 0.024 +19950509, 0.05, -0.28, 0.37, 0.024 +19950510, 0.15, 0.06, 0.33, 0.024 +19950511, 0.23, 0.29, -0.50, 0.024 +19950512, 0.23, 0.01, 0.24, 0.024 +19950515, 0.42, -0.24, 0.46, 0.024 +19950516, 0.12, 0.29, -0.07, 0.024 +19950517, -0.21, 0.50, -0.15, 0.024 +19950518, -1.30, 0.81, 0.16, 0.024 +19950519, -0.08, 0.01, -0.18, 0.024 +19950522, 0.76, -0.37, 0.16, 0.024 +19950523, 0.85, -0.47, 0.06, 0.024 +19950524, -0.05, -0.07, 0.01, 0.024 +19950525, -0.04, -0.12, -0.08, 0.024 +19950526, -0.82, 0.44, 0.23, 0.024 +19950530, -0.22, -0.41, 0.43, 0.024 +19950531, 1.46, -1.22, -0.29, 0.024 +19950601, 0.15, 0.22, 0.37, 0.021 +19950602, 0.00, 0.18, 0.22, 0.021 +19950605, 0.61, 0.03, -0.11, 0.021 +19950606, -0.03, 0.27, -0.16, 0.021 +19950607, -0.34, 0.57, -0.45, 0.021 +19950608, -0.08, 0.63, -0.40, 0.021 +19950609, -0.73, 0.61, -0.27, 0.021 +19950612, 0.50, -0.04, -0.32, 0.021 +19950613, 0.92, -0.52, 0.01, 0.021 +19950614, 0.07, 0.14, -0.25, 0.021 +19950615, 0.22, 0.39, -0.24, 0.021 +19950616, 0.43, -0.11, -0.45, 0.021 +19950619, 0.92, -0.54, -0.22, 0.021 +19950620, 0.04, -0.06, 0.47, 0.021 +19950621, -0.04, 0.22, 0.04, 0.021 +19950622, 1.15, -0.67, -0.46, 0.021 +19950623, -0.29, 0.24, -0.08, 0.021 +19950626, -1.00, 0.11, 0.52, 0.021 +19950627, -0.39, 0.12, 0.20, 0.021 +19950628, 0.32, -0.47, 0.14, 0.021 +19950629, -0.03, 0.54, -0.39, 0.021 +19950630, 0.28, 0.89, -0.33, 0.021 +19950703, 0.33, -0.36, -0.14, 0.023 +19950705, 0.19, 0.10, 0.27, 0.023 +19950706, 1.12, -0.70, 0.10, 0.023 +19950707, 0.59, 0.29, 0.13, 0.023 +19950710, 0.17, 0.31, 0.34, 0.023 +19950711, -0.34, 0.62, -0.27, 0.023 +19950712, 1.10, -0.17, -0.59, 0.023 +19950713, 0.07, 0.30, -0.20, 0.023 +19950714, -0.15, 0.38, -0.38, 0.023 +19950717, 0.40, 0.17, -0.66, 0.023 +19950718, -0.81, 0.03, 0.63, 0.023 +19950719, -1.65, -0.66, 0.85, 0.023 +19950720, 0.59, 0.28, -0.26, 0.023 +19950721, 0.06, 0.49, -0.57, 0.023 +19950724, 0.69, 0.22, -0.50, 0.023 +19950725, 0.76, -0.36, -0.03, 0.023 +19950726, 0.23, 0.23, -0.37, 0.023 +19950727, 0.71, 0.04, -0.26, 0.023 +19950728, -0.28, 0.49, 0.22, 0.023 +19950731, -0.10, 0.31, 0.06, 0.023 +19950801, -0.51, 0.16, 0.19, 0.020 +19950802, -0.21, -0.08, 0.84, 0.020 +19950803, -0.11, -0.15, 0.43, 0.020 +19950804, 0.15, 0.25, -0.15, 0.020 +19950807, 0.24, 0.05, 0.12, 0.020 +19950808, 0.05, -0.13, -0.06, 0.020 +19950809, 0.01, 0.47, -0.48, 0.020 +19950810, -0.27, 0.22, 0.09, 0.020 +19950811, -0.34, 0.36, -0.07, 0.020 +19950814, 0.74, -0.40, -0.50, 0.020 +19950815, -0.10, 0.27, 0.02, 0.020 +19950816, 0.45, 0.09, -0.03, 0.020 +19950817, 0.00, 0.46, 0.02, 0.020 +19950818, 0.07, 0.24, 0.00, 0.020 +19950821, -0.22, 0.55, 0.38, 0.020 +19950822, 0.18, -0.45, -0.15, 0.020 +19950823, -0.27, 0.40, -0.15, 0.020 +19950824, -0.07, -0.19, 0.30, 0.020 +19950825, 0.40, -0.32, 0.30, 0.020 +19950828, -0.30, -0.22, 1.13, 0.020 +19950829, 0.02, -0.80, 0.61, 0.020 +19950830, 0.33, 0.39, -0.07, 0.020 +19950831, 0.32, 0.36, -0.13, 0.020 +19950901, 0.27, -0.16, 0.45, 0.022 +19950905, 0.96, -0.47, -0.26, 0.022 +19950906, 0.36, 0.40, -0.40, 0.022 +19950907, 0.08, 0.47, -0.31, 0.022 +19950908, 0.51, 0.20, -0.07, 0.022 +19950911, 0.24, -0.08, -0.36, 0.022 +19950912, 0.25, -0.01, -0.22, 0.022 +19950913, 0.40, -0.16, -0.33, 0.022 +19950914, 0.59, -0.56, 0.23, 0.022 +19950915, -0.18, -0.50, 0.81, 0.022 +19950918, -0.14, -0.16, -0.55, 0.022 +19950919, 0.30, -0.19, -0.36, 0.022 +19950920, 0.44, -0.10, -0.15, 0.022 +19950921, -0.62, 0.41, -0.32, 0.022 +19950922, -0.32, -0.05, -0.34, 0.022 +19950925, -0.19, -0.37, 0.30, 0.022 +19950926, -0.12, -0.30, 0.16, 0.022 +19950927, -0.31, -1.03, 0.84, 0.022 +19950928, 0.89, -0.19, -0.11, 0.022 +19950929, -0.11, 0.83, 0.25, 0.022 +19951002, -0.63, -0.51, 0.57, 0.021 +19951003, -0.17, -0.89, 0.31, 0.021 +19951004, -0.46, -0.67, 0.58, 0.021 +19951005, 0.29, -0.29, -0.16, 0.021 +19951006, 0.00, 0.14, 0.14, 0.021 +19951009, -1.07, -0.69, 1.02, 0.021 +19951010, -0.25, -0.70, 0.39, 0.021 +19951011, 0.62, 0.41, -0.33, 0.021 +19951012, 0.80, -0.05, -0.25, 0.021 +19951013, 0.33, 0.31, -0.23, 0.021 +19951016, -0.20, 0.24, 0.08, 0.021 +19951017, 0.60, -0.43, -0.59, 0.021 +19951018, 0.22, 0.26, -0.48, 0.021 +19951019, 0.31, -0.44, -0.55, 0.021 +19951020, -0.57, 0.47, 0.13, 0.021 +19951023, -0.38, -0.26, -0.06, 0.021 +19951024, 0.11, -0.02, -0.54, 0.021 +19951025, -0.85, -0.14, -0.05, 0.021 +19951026, -0.95, -0.10, -0.10, 0.021 +19951027, 0.41, -0.72, 0.22, 0.021 +19951030, 0.64, -0.13, -0.59, 0.021 +19951031, -0.27, 0.41, -0.29, 0.021 +19951101, 0.51, -0.31, 0.19, 0.020 +19951102, 1.03, -0.17, -0.13, 0.020 +19951103, 0.31, 0.37, -0.22, 0.020 +19951106, -0.29, 0.30, 0.15, 0.020 +19951107, -0.50, 0.04, 0.43, 0.020 +19951108, 0.72, -0.47, -0.14, 0.020 +19951109, 0.45, 0.14, -0.49, 0.020 +19951110, -0.12, 0.33, -0.11, 0.020 +19951113, -0.15, -0.06, -0.02, 0.020 +19951114, -0.66, 0.00, 0.40, 0.020 +19951115, 0.55, -0.57, -0.27, 0.020 +19951116, 0.59, -0.27, 0.14, 0.020 +19951117, 0.38, -0.13, 0.20, 0.020 +19951120, -0.58, 0.14, 0.56, 0.020 +19951121, 0.21, -0.93, 0.54, 0.020 +19951122, -0.24, 0.03, 0.66, 0.020 +19951124, 0.33, -0.05, -0.19, 0.020 +19951127, 0.17, -0.05, 0.18, 0.020 +19951128, 0.79, -0.29, -0.78, 0.020 +19951129, 0.41, 0.13, -0.08, 0.020 +19951130, -0.03, 0.70, -0.15, 0.020 +19951201, 0.13, 0.15, 0.28, 0.024 +19951204, 1.04, -0.57, -0.09, 0.024 +19951205, 0.43, -0.28, -0.11, 0.024 +19951206, 0.18, -0.47, 0.31, 0.024 +19951207, -0.70, 0.42, -0.22, 0.024 +19951208, 0.20, 0.11, -0.27, 0.024 +19951211, 0.24, -0.20, -0.22, 0.024 +19951212, -0.26, 0.06, -0.06, 0.024 +19951213, 0.43, -0.08, -0.06, 0.024 +19951214, -0.83, 0.79, 0.44, 0.024 +19951215, -0.29, -0.41, 0.49, 0.024 +19951218, -1.76, -0.48, 1.01, 0.024 +19951219, 0.99, -0.43, -0.31, 0.024 +19951220, -0.57, 1.47, 0.26, 0.024 +19951221, 0.70, -0.02, -0.33, 0.024 +19951222, 0.32, 0.23, -0.12, 0.024 +19951226, 0.30, -0.14, -0.20, 0.024 +19951227, 0.14, 0.19, 0.00, 0.024 +19951228, -0.06, -0.04, 0.28, 0.024 +19951229, 0.41, 0.28, -0.26, 0.024 +19960102, 0.59, -0.35, -0.15, 0.019 +19960103, -0.08, -0.25, 0.66, 0.019 +19960104, -0.82, -0.33, 0.25, 0.019 +19960105, -0.15, 0.73, -0.17, 0.019 +19960108, 0.24, -0.23, -0.06, 0.019 +19960109, -1.67, 0.19, 1.17, 0.019 +19960110, -1.62, 0.27, 0.07, 0.019 +19960111, 0.87, 0.02, -0.63, 0.019 +19960112, -0.13, -0.13, 0.22, 0.019 +19960115, -0.58, -0.43, 0.71, 0.019 +19960116, 1.02, -1.42, 0.05, 0.019 +19960117, -0.09, 0.22, 0.27, 0.019 +19960118, 0.37, 0.24, -0.67, 0.019 +19960119, 0.57, -0.23, -0.49, 0.019 +19960122, 0.41, 0.08, -0.30, 0.019 +19960123, -0.02, 0.39, -0.18, 0.019 +19960124, 1.05, -0.39, -0.40, 0.019 +19960125, -0.40, 0.44, 0.31, 0.019 +19960126, 0.63, -0.38, -0.44, 0.019 +19960129, 0.37, -0.35, 0.28, 0.019 +19960130, 0.91, -0.41, -0.08, 0.019 +19960131, 0.83, -0.32, -0.17, 0.019 +19960201, 0.43, 0.19, -0.43, 0.020 +19960202, -0.28, 0.47, -0.42, 0.020 +19960205, 0.74, -0.51, -0.38, 0.020 +19960206, 0.68, -0.35, -0.06, 0.020 +19960207, 0.36, -0.68, 0.17, 0.020 +19960208, 0.80, -0.38, -0.43, 0.020 +19960209, 0.08, 0.16, 0.00, 0.020 +19960212, 0.54, -0.60, 0.19, 0.020 +19960213, -0.20, -0.37, 0.58, 0.020 +19960214, -0.46, 0.89, -0.02, 0.020 +19960215, -0.31, 0.47, -0.18, 0.020 +19960216, -0.39, 0.72, 0.04, 0.020 +19960220, -1.05, 0.31, -0.16, 0.020 +19960221, 1.05, -0.33, -0.57, 0.020 +19960222, 1.57, -0.53, -0.54, 0.020 +19960223, 0.08, 0.13, -0.05, 0.020 +19960226, -1.05, 0.95, 0.34, 0.020 +19960227, -0.44, 0.27, 0.28, 0.020 +19960228, -0.19, 0.37, 0.27, 0.020 +19960229, -0.60, 0.64, -0.03, 0.020 +19960301, 0.25, -0.61, 0.74, 0.019 +19960304, 0.92, -0.55, -0.04, 0.019 +19960305, 0.68, -0.39, -0.48, 0.019 +19960306, -0.38, 0.45, 0.29, 0.019 +19960307, 0.18, -0.09, -0.12, 0.019 +19960308, -2.91, 0.66, 0.08, 0.019 +19960311, 0.92, -0.09, -0.64, 0.019 +19960312, -0.49, 0.26, 0.09, 0.019 +19960313, 0.42, 0.30, -0.04, 0.019 +19960314, 0.41, 0.17, 0.02, 0.019 +19960315, 0.17, -0.02, -0.45, 0.019 +19960318, 1.47, -0.71, -0.03, 0.019 +19960319, -0.15, 0.19, 0.42, 0.019 +19960320, -0.28, 0.18, 0.35, 0.019 +19960321, -0.09, 0.32, 0.01, 0.019 +19960322, 0.20, 0.00, -0.08, 0.019 +19960325, -0.30, -0.41, 0.99, 0.019 +19960326, 0.28, -0.30, -0.01, 0.019 +19960327, -0.34, 0.65, -0.02, 0.019 +19960328, 0.04, 0.07, 0.08, 0.019 +19960329, -0.21, 1.16, -0.13, 0.019 +19960401, 1.04, -0.80, -0.04, 0.022 +19960402, 0.21, 0.20, -0.14, 0.022 +19960403, 0.13, 0.29, -0.16, 0.022 +19960404, 0.04, 0.23, 0.01, 0.022 +19960408, -1.67, 0.70, -0.31, 0.022 +19960409, -0.13, 0.57, 0.19, 0.022 +19960410, -1.19, 0.98, -0.32, 0.022 +19960411, -0.54, 0.33, -0.22, 0.022 +19960412, 0.83, -0.52, 0.13, 0.022 +19960415, 0.81, -0.05, -0.30, 0.022 +19960416, 0.49, 0.18, -0.69, 0.022 +19960417, -0.49, 0.33, 0.37, 0.022 +19960418, 0.47, 0.45, -0.46, 0.022 +19960419, 0.22, 0.25, -0.32, 0.022 +19960422, 0.57, 0.21, -0.59, 0.022 +19960423, 0.60, 0.14, -0.14, 0.022 +19960424, -0.01, 0.39, -0.42, 0.022 +19960425, 0.45, 0.18, -0.33, 0.022 +19960426, 0.15, 0.37, 0.00, 0.022 +19960429, 0.09, 0.17, -0.15, 0.022 +19960430, 0.03, 0.13, 0.13, 0.022 +19960501, 0.22, 0.48, -0.04, 0.019 +19960502, -1.61, 0.66, 0.17, 0.019 +19960503, -0.11, 0.58, -0.16, 0.019 +19960506, -0.16, 0.37, -0.20, 0.019 +19960507, -0.41, -0.01, 0.16, 0.019 +19960508, 0.61, -1.08, 0.25, 0.019 +19960509, 0.25, 0.58, -0.17, 0.019 +19960510, 1.09, -0.14, -0.26, 0.019 +19960513, 1.31, -0.43, -0.68, 0.019 +19960514, 0.72, 0.13, -0.06, 0.019 +19960515, -0.02, 0.26, -0.08, 0.019 +19960516, 0.05, 0.26, -0.39, 0.019 +19960517, 0.55, 0.00, 0.28, 0.019 +19960520, 0.59, 0.20, -0.22, 0.019 +19960521, -0.07, 0.14, 0.21, 0.019 +19960522, 0.62, -0.22, 0.49, 0.019 +19960523, -0.26, 0.32, -0.10, 0.019 +19960524, 0.24, -0.02, -0.49, 0.019 +19960528, -0.89, 0.06, 0.19, 0.019 +19960529, -0.68, 0.04, 0.52, 0.019 +19960530, 0.51, -0.05, -0.28, 0.019 +19960531, -0.18, 0.82, -0.38, 0.019 +19960603, -0.25, 0.04, 0.09, 0.020 +19960604, 0.68, -0.59, 0.06, 0.020 +19960605, 0.72, -0.55, -0.11, 0.020 +19960606, -0.77, 0.16, 0.39, 0.020 +19960607, -0.21, -0.41, -0.58, 0.020 +19960610, -0.12, 0.38, 0.11, 0.020 +19960611, -0.12, 0.07, 0.06, 0.020 +19960612, -0.08, 0.27, 0.10, 0.020 +19960613, -0.29, -0.46, 0.24, 0.020 +19960614, -0.45, -0.10, 0.44, 0.020 +19960617, -0.21, -0.26, 0.28, 0.020 +19960618, -0.78, -0.95, 0.80, 0.020 +19960619, -0.12, -0.37, 0.02, 0.020 +19960620, -0.32, -0.69, -0.04, 0.020 +19960621, 0.58, -0.22, -0.48, 0.020 +19960624, 0.33, 0.19, -0.17, 0.020 +19960625, -0.25, -0.45, 0.15, 0.020 +19960626, -0.82, -0.71, 0.61, 0.020 +19960627, 0.60, -0.11, -0.16, 0.020 +19960628, 0.73, 1.14, -0.25, 0.020 +19960701, 0.75, -0.44, -0.01, 0.020 +19960702, -0.29, 0.15, 0.25, 0.020 +19960703, -0.35, -0.08, 0.20, 0.020 +19960705, -2.05, 0.83, 0.37, 0.020 +19960708, -0.86, -0.09, 0.32, 0.020 +19960709, 0.32, -0.45, 0.12, 0.020 +19960710, -0.21, -1.15, 0.85, 0.020 +19960711, -1.87, -1.00, 1.49, 0.020 +19960712, 0.00, -0.31, 0.25, 0.020 +19960715, -2.69, -0.40, 1.94, 0.020 +19960716, -0.53, -1.17, 0.13, 0.020 +19960717, 1.42, 1.51, -1.47, 0.020 +19960718, 1.60, 0.07, -1.19, 0.020 +19960719, -0.79, 0.47, 0.27, 0.020 +19960722, -0.95, -0.47, 0.82, 0.020 +19960723, -1.46, -0.79, 1.52, 0.020 +19960724, -0.26, -1.35, -0.04, 0.020 +19960725, 0.92, 0.53, -0.75, 0.020 +19960726, 0.90, 0.17, -0.73, 0.020 +19960729, -0.79, 0.27, 0.67, 0.020 +19960730, 0.48, -0.50, 0.09, 0.020 +19960731, 0.73, 0.11, -0.42, 0.020 +19960801, 1.57, -0.67, -0.38, 0.019 +19960802, 1.85, -0.48, -0.87, 0.019 +19960805, -0.29, 0.30, 0.23, 0.019 +19960806, 0.31, -0.10, -0.41, 0.019 +19960807, 0.39, 0.42, -0.47, 0.019 +19960808, -0.17, 0.07, 0.25, 0.019 +19960809, -0.28, 0.07, 0.39, 0.019 +19960812, 0.54, -0.60, -0.06, 0.019 +19960813, -0.79, 0.31, 0.25, 0.019 +19960814, 0.39, -0.05, 0.02, 0.019 +19960815, 0.08, 0.12, 0.21, 0.019 +19960816, 0.41, -0.11, 0.35, 0.019 +19960819, 0.07, -0.18, 0.25, 0.019 +19960820, -0.16, 0.02, 0.50, 0.019 +19960821, -0.09, -0.01, 0.08, 0.019 +19960822, 0.86, -0.03, -0.52, 0.019 +19960823, -0.36, 0.61, -0.11, 0.019 +19960826, -0.37, 0.31, 0.06, 0.019 +19960827, 0.41, 0.26, -0.48, 0.019 +19960828, 0.00, 0.61, -0.20, 0.019 +19960829, -0.95, 0.68, 0.26, 0.019 +19960830, -0.63, 0.62, 0.21, 0.019 +19960903, 0.15, -0.35, -0.02, 0.022 +19960904, 0.15, 0.27, 0.19, 0.022 +19960905, -0.98, 0.23, 0.53, 0.022 +19960906, 0.99, -0.15, -0.54, 0.022 +19960909, 0.98, -0.59, -0.19, 0.022 +19960910, 0.04, 0.11, -0.17, 0.022 +19960911, 0.42, -0.30, 0.02, 0.022 +19960912, 0.62, -0.08, -0.36, 0.022 +19960913, 1.29, -0.60, -0.69, 0.022 +19960916, 0.48, -0.30, -0.04, 0.022 +19960917, -0.12, 0.16, -0.31, 0.022 +19960918, -0.18, 0.18, -0.12, 0.022 +19960919, 0.18, -0.16, -0.54, 0.022 +19960920, 0.50, -0.09, -0.08, 0.022 +19960923, -0.20, -0.17, 0.15, 0.022 +19960924, -0.03, 0.27, -0.23, 0.022 +19960925, 0.15, 0.36, -0.31, 0.022 +19960926, 0.20, 0.26, -0.54, 0.022 +19960927, 0.06, 0.07, 0.02, 0.022 +19960930, 0.19, 0.00, 0.21, 0.022 +19961001, 0.02, -0.65, 0.75, 0.018 +19961002, 0.73, -0.01, -0.09, 0.018 +19961003, -0.17, 0.02, 0.08, 0.018 +19961004, 1.10, -0.76, -0.19, 0.018 +19961007, 0.18, -0.35, 0.16, 0.018 +19961008, -0.44, 0.02, 0.36, 0.018 +19961009, -0.51, 0.32, 0.16, 0.018 +19961010, -0.23, 0.37, 0.07, 0.018 +19961011, 0.70, -0.38, -0.15, 0.018 +19961014, 0.44, -0.24, -0.13, 0.018 +19961015, -0.17, 0.08, 0.15, 0.018 +19961016, 0.09, -0.29, 0.13, 0.018 +19961017, 0.24, -0.43, 0.42, 0.018 +19961018, 0.35, -0.42, 0.20, 0.018 +19961021, -0.28, -0.45, 0.78, 0.018 +19961022, -0.67, -0.46, 0.64, 0.018 +19961023, -0.01, -0.11, 0.09, 0.018 +19961024, -0.48, 0.60, 0.18, 0.018 +19961025, -0.21, 0.13, 0.45, 0.018 +19961028, -0.62, -0.41, 0.60, 0.018 +19961029, 0.25, -1.06, 0.73, 0.018 +19961030, -0.03, -0.04, 0.12, 0.018 +19961031, 0.63, 0.09, -0.43, 0.018 +19961101, -0.18, -0.25, 0.06, 0.020 +19961104, 0.27, -0.44, 0.46, 0.020 +19961105, 0.86, -0.92, -0.11, 0.020 +19961106, 1.39, -0.56, -0.64, 0.020 +19961107, 0.41, 0.21, -0.48, 0.020 +19961108, 0.34, -0.29, -0.10, 0.020 +19961111, 0.17, 0.14, -0.04, 0.020 +19961112, -0.23, 0.14, 0.47, 0.020 +19961113, 0.18, -0.06, -0.22, 0.020 +19961114, 0.60, -0.32, -0.02, 0.020 +19961115, 0.06, -0.38, 0.30, 0.020 +19961118, -0.17, -0.26, 0.82, 0.020 +19961119, 0.54, -0.53, 0.37, 0.020 +19961120, 0.20, -0.18, 0.26, 0.020 +19961121, -0.20, 0.07, 0.20, 0.020 +19961122, 0.74, -0.09, -0.20, 0.020 +19961125, 0.99, -0.57, 0.10, 0.020 +19961126, -0.19, -0.05, 0.06, 0.020 +19961127, 0.02, 0.40, -0.07, 0.020 +19961129, 0.27, 0.23, -0.11, 0.020 +19961202, 0.06, 0.17, -0.09, 0.022 +19961203, -0.74, 1.43, 0.10, 0.022 +19961204, -0.33, 0.39, -0.04, 0.022 +19961205, -0.07, 0.44, -0.13, 0.022 +19961206, -0.74, -0.32, 0.15, 0.022 +19961209, 1.38, 0.04, -0.55, 0.022 +19961210, -0.29, 0.51, 0.54, 0.022 +19961211, -0.91, 0.03, -0.05, 0.022 +19961212, -1.29, 1.19, -0.08, 0.022 +19961213, -0.30, -0.45, 0.44, 0.022 +19961216, -1.12, 0.18, 0.66, 0.022 +19961217, 0.47, -0.86, 0.28, 0.022 +19961218, 0.83, 0.14, -0.58, 0.022 +19961219, 1.56, -1.05, -0.28, 0.022 +19961220, 0.29, -0.25, 0.53, 0.022 +19961223, -0.36, -0.15, 0.26, 0.022 +19961224, 0.48, -0.37, -0.18, 0.022 +19961226, 0.57, -0.25, -0.07, 0.022 +19961227, 0.17, 0.16, -0.12, 0.022 +19961230, -0.26, 0.12, 0.33, 0.022 +19961231, -1.02, 2.04, -0.23, 0.022 +19970102, -0.75, 0.05, 0.13, 0.020 +19970103, 1.39, -0.32, -0.78, 0.020 +19970106, 0.02, 0.11, 0.05, 0.020 +19970107, 0.72, -0.02, -0.52, 0.020 +19970108, -0.44, 0.50, 0.52, 0.020 +19970109, 0.72, -0.38, -0.15, 0.020 +19970110, 0.50, -0.16, -0.36, 0.020 +19970113, -0.07, 0.09, 0.27, 0.020 +19970114, 1.11, -0.85, 0.04, 0.020 +19970115, -0.22, 0.04, 0.47, 0.020 +19970116, 0.25, -0.21, -0.33, 0.020 +19970117, 0.72, -0.28, -0.26, 0.020 +19970120, 0.26, 0.21, -0.41, 0.020 +19970121, 0.59, -0.53, -0.21, 0.020 +19970122, 0.44, -0.41, -0.07, 0.020 +19970123, -0.85, 0.91, 0.37, 0.020 +19970124, -0.97, 0.35, 0.30, 0.020 +19970127, -0.72, 0.08, 0.34, 0.020 +19970128, 0.01, 0.41, -0.22, 0.020 +19970129, 0.68, -0.73, -0.03, 0.020 +19970130, 1.21, -0.67, -0.42, 0.020 +19970131, 0.31, 0.01, -0.34, 0.020 +19970203, -0.02, 0.04, 0.37, 0.020 +19970204, 0.12, -0.54, 0.28, 0.020 +19970205, -1.28, 0.47, 0.77, 0.020 +19970206, 0.24, -0.23, -0.09, 0.020 +19970207, 0.96, -0.79, -0.04, 0.020 +19970210, -0.65, -0.08, 0.80, 0.020 +19970211, 0.32, -0.90, 0.45, 0.020 +19970212, 1.52, -0.79, -0.67, 0.020 +19970213, 1.02, -0.55, 0.16, 0.020 +19970214, -0.22, 0.29, 0.33, 0.020 +19970218, 0.71, -0.52, 0.27, 0.020 +19970219, -0.32, 0.41, 0.31, 0.020 +19970220, -1.17, 0.41, 0.42, 0.020 +19970221, -0.26, -0.05, 0.64, 0.020 +19970224, 0.85, -0.78, 0.03, 0.020 +19970225, 0.25, -0.18, 0.17, 0.020 +19970226, -0.75, 0.17, 0.11, 0.020 +19970227, -1.27, 0.61, 0.76, 0.020 +19970228, -0.49, 0.04, 0.15, 0.020 +19970303, 0.39, -0.47, 0.13, 0.021 +19970304, -0.29, 0.66, 0.23, 0.021 +19970305, 1.17, -0.51, -0.50, 0.021 +19970306, -0.31, 0.09, 0.47, 0.021 +19970307, 0.67, -0.59, 0.23, 0.021 +19970310, 0.85, -0.45, 0.03, 0.021 +19970311, -0.24, 0.39, 0.27, 0.021 +19970312, -0.79, -0.07, 0.77, 0.021 +19970313, -1.66, 0.66, 0.01, 0.021 +19970314, 0.31, -0.42, -0.11, 0.021 +19970317, -0.11, -0.84, 0.61, 0.021 +19970318, -0.77, 0.31, 0.16, 0.021 +19970319, -0.65, -0.71, 0.80, 0.021 +19970320, -0.20, 0.48, -0.19, 0.021 +19970321, 0.09, -0.37, 0.22, 0.021 +19970324, 0.47, -1.45, 0.69, 0.021 +19970325, -0.08, 0.41, -0.32, 0.021 +19970326, 0.23, 0.54, -0.83, 0.021 +19970327, -1.90, 1.18, 0.26, 0.021 +19970331, -2.26, 0.67, 1.05, 0.021 +19970401, 0.17, -0.89, 0.34, 0.020 +19970402, -1.17, 0.44, 0.12, 0.020 +19970403, -0.02, -0.34, -0.36, 0.020 +19970404, 1.15, 0.27, -1.43, 0.020 +19970407, 0.77, 0.27, -0.21, 0.020 +19970408, 0.43, -0.38, 0.18, 0.020 +19970409, -0.58, 0.90, 0.33, 0.020 +19970410, -0.42, 0.00, 0.36, 0.020 +19970411, -2.48, 0.95, 0.45, 0.020 +19970414, 0.55, -0.67, -0.31, 0.020 +19970415, 1.19, -1.04, 0.24, 0.020 +19970416, 0.81, -1.02, 0.23, 0.020 +19970417, -0.11, 0.13, 0.31, 0.020 +19970418, 0.42, -0.09, -0.09, 0.020 +19970421, -0.99, -0.10, 0.44, 0.020 +19970422, 1.40, -1.60, -0.05, 0.020 +19970423, -0.03, -0.05, -0.19, 0.020 +19970424, -0.22, 0.43, -0.08, 0.020 +19970425, -0.95, 0.16, 0.39, 0.020 +19970428, 0.81, -1.12, 0.19, 0.020 +19970429, 2.41, -1.50, -0.39, 0.020 +19970430, 0.93, -0.43, -0.45, 0.020 +19970501, -0.10, 1.02, -0.26, 0.023 +19970502, 1.93, 0.53, -0.85, 0.023 +19970505, 2.16, 0.14, -1.61, 0.023 +19970506, -0.31, 0.02, 0.63, 0.023 +19970507, -1.18, 1.21, -0.03, 0.023 +19970508, 0.41, -0.55, -0.07, 0.023 +19970509, 0.51, -0.06, 0.12, 0.023 +19970512, 1.29, -0.74, -0.19, 0.023 +19970513, -0.45, 0.45, 0.00, 0.023 +19970514, 0.35, -0.24, 0.43, 0.023 +19970515, 0.58, -0.08, -0.85, 0.023 +19970516, -1.13, 1.05, 0.46, 0.023 +19970519, 0.27, 0.00, -0.18, 0.023 +19970520, 0.91, -0.59, -0.19, 0.023 +19970521, -0.13, 0.83, -0.69, 0.023 +19970522, -0.27, 0.56, 0.45, 0.023 +19970523, 1.26, -0.09, -0.49, 0.023 +19970527, 0.30, 0.29, -0.89, 0.023 +19970528, -0.11, 0.52, -0.02, 0.023 +19970529, -0.28, 0.50, 0.14, 0.023 +19970530, 0.55, -0.30, 0.52, 0.023 +19970602, -0.05, 0.92, -0.24, 0.018 +19970603, -0.16, -0.09, 0.91, 0.018 +19970604, -0.44, 0.47, 0.40, 0.018 +19970605, 0.42, 0.02, 0.05, 0.018 +19970606, 1.41, -0.79, -0.39, 0.018 +19970609, 0.48, -0.26, 0.07, 0.018 +19970610, 0.14, -0.54, 0.61, 0.018 +19970611, 0.41, -0.34, 0.25, 0.018 +19970612, 1.29, -0.99, 0.10, 0.018 +19970613, 0.98, -0.38, -0.39, 0.018 +19970616, 0.04, -0.08, -0.12, 0.018 +19970617, 0.12, 0.21, -0.19, 0.018 +19970618, -0.38, 0.21, 0.65, 0.018 +19970619, 0.95, -0.01, -0.41, 0.018 +19970620, -0.04, -0.31, -0.07, 0.018 +19970623, -1.84, 1.36, 0.32, 0.018 +19970624, 1.61, -0.91, -0.22, 0.018 +19970625, -0.71, 0.51, 0.35, 0.018 +19970626, -0.50, 0.37, 0.12, 0.018 +19970627, 0.42, 0.22, 0.04, 0.018 +19970630, -0.10, 1.61, -0.71, 0.018 +19970701, 0.55, -0.95, 0.50, 0.019 +19970702, 1.17, -1.19, -0.15, 0.019 +19970703, 1.20, -0.77, -0.25, 0.019 +19970707, -0.35, 0.38, 0.04, 0.019 +19970708, 0.69, -0.38, -0.23, 0.019 +19970709, -0.95, 0.86, 0.15, 0.019 +19970710, 0.57, -0.16, 0.22, 0.019 +19970711, 0.44, 0.44, -0.41, 0.019 +19970714, 0.24, 0.27, -0.41, 0.019 +19970715, 0.75, 0.16, -0.66, 0.019 +19970716, 1.14, -0.20, -0.56, 0.019 +19970717, -0.55, 0.14, 0.33, 0.019 +19970718, -1.41, 0.93, 0.52, 0.019 +19970721, -0.41, -0.11, 0.10, 0.019 +19970722, 1.98, -1.35, -0.48, 0.019 +19970723, 0.29, -0.10, 0.42, 0.019 +19970724, 0.31, -0.16, -0.01, 0.019 +19970725, -0.11, 0.25, 0.08, 0.019 +19970728, -0.23, 0.06, 0.68, 0.019 +19970729, 0.53, -0.51, 0.50, 0.019 +19970730, 1.09, -0.38, 0.10, 0.019 +19970731, 0.18, 0.07, 0.25, 0.019 +19970801, -0.57, 0.53, 0.26, 0.020 +19970804, 0.30, 0.09, -0.13, 0.020 +19970805, 0.34, 0.63, -0.54, 0.020 +19970806, 0.74, -0.21, 0.06, 0.020 +19970807, -0.77, 0.79, 0.37, 0.020 +19970808, -1.81, 0.68, 0.11, 0.020 +19970811, 0.16, -0.60, 0.47, 0.020 +19970812, -0.93, 0.64, 0.59, 0.020 +19970813, -0.26, 0.30, 0.04, 0.020 +19970814, 0.26, -0.04, -0.21, 0.020 +19970815, -2.06, 1.32, 0.54, 0.020 +19970818, 0.81, -0.86, -0.33, 0.020 +19970819, 1.38, -0.23, -0.42, 0.020 +19970820, 1.36, -0.14, -0.53, 0.020 +19970821, -1.23, 0.88, 0.34, 0.020 +19970822, -0.28, -0.14, 0.16, 0.020 +19970825, -0.12, 0.69, 0.27, 0.020 +19970826, -0.60, 0.72, 0.31, 0.020 +19970827, 0.18, 0.63, -0.17, 0.020 +19970828, -0.81, 0.98, 0.38, 0.020 +19970829, -0.21, 0.59, -0.17, 0.020 +19970902, 2.44, -1.29, -0.59, 0.021 +19970903, 0.18, -0.16, 0.47, 0.021 +19970904, 0.28, 0.04, -0.03, 0.021 +19970905, 0.02, 0.73, 0.05, 0.021 +19970908, 0.32, 0.27, 0.16, 0.021 +19970909, 0.27, 0.18, 0.23, 0.021 +19970910, -1.22, 1.17, 0.65, 0.021 +19970911, -0.63, 0.68, -0.10, 0.021 +19970912, 1.19, -0.31, -0.27, 0.021 +19970915, -0.31, 0.34, 0.38, 0.021 +19970916, 2.25, -1.48, -0.33, 0.021 +19970917, -0.08, 0.24, 0.31, 0.021 +19970918, 0.35, -0.29, 0.04, 0.021 +19970919, 0.30, 0.07, -0.61, 0.021 +19970922, 0.49, 0.06, -0.54, 0.021 +19970923, -0.28, 0.67, -0.23, 0.021 +19970924, -0.62, 0.62, 0.35, 0.021 +19970925, -0.61, 0.60, 0.10, 0.021 +19970926, 0.64, -0.39, -0.09, 0.021 +19970929, 0.73, -0.27, -0.27, 0.021 +19970930, -0.43, 0.88, 0.32, 0.021 +19971001, 0.62, -0.54, 0.19, 0.018 +19971002, 0.55, -0.05, 0.11, 0.018 +19971003, 0.48, 0.04, -0.22, 0.018 +19971006, 0.68, -0.22, -0.12, 0.018 +19971007, 0.89, -0.27, -0.71, 0.018 +19971008, -0.61, 0.76, -0.27, 0.018 +19971009, -0.20, 0.40, 0.33, 0.018 +19971010, -0.28, 0.55, 0.19, 0.018 +19971013, 0.10, 0.00, 0.35, 0.018 +19971014, 0.03, -0.32, 0.16, 0.018 +19971015, -0.33, 0.06, 0.09, 0.018 +19971016, -1.05, -0.19, 0.57, 0.018 +19971017, -1.31, -0.55, 0.38, 0.018 +19971020, 1.10, -0.16, -0.46, 0.018 +19971021, 1.65, -0.69, -0.31, 0.018 +19971022, -0.30, 0.32, 0.11, 0.018 +19971023, -1.85, -0.11, 0.46, 0.018 +19971024, -0.81, 0.42, 0.66, 0.018 +19971027, -6.58, 0.25, 1.85, 0.018 +19971028, 4.10, -1.80, -2.20, 0.018 +19971029, 0.07, 0.89, 0.81, 0.018 +19971030, -1.61, 0.29, 0.33, 0.018 +19971031, 1.17, 0.12, -0.53, 0.018 +19971103, 2.31, -0.88, -0.27, 0.021 +19971104, 0.23, -0.03, -0.10, 0.021 +19971105, 0.34, 0.28, -0.33, 0.021 +19971106, -0.51, 0.06, 0.39, 0.021 +19971107, -1.28, -0.36, 0.12, 0.021 +19971110, -0.53, 0.50, 0.68, 0.021 +19971111, 0.05, -0.39, 0.04, 0.021 +19971112, -1.96, -0.24, 0.81, 0.021 +19971113, 0.84, -0.86, -0.58, 0.021 +19971114, 1.21, -0.18, -0.91, 0.021 +19971117, 1.84, -0.48, -0.33, 0.021 +19971118, -0.80, 0.00, 0.61, 0.021 +19971119, 0.45, -0.54, -0.25, 0.021 +19971120, 1.37, -0.62, -0.28, 0.021 +19971121, 0.25, -0.46, 0.12, 0.021 +19971124, -1.68, -0.03, 0.84, 0.021 +19971125, 0.35, -0.69, 0.19, 0.021 +19971126, 0.18, 0.06, 0.17, 0.021 +19971128, 0.36, -0.09, -0.07, 0.021 +19971201, 1.79, -1.17, -0.01, 0.022 +19971202, -0.33, -0.29, 0.78, 0.022 +19971203, 0.53, -0.18, -0.48, 0.022 +19971204, -0.20, 0.31, 0.12, 0.022 +19971205, 0.97, -0.40, -0.21, 0.022 +19971208, 0.04, 0.76, -0.12, 0.022 +19971209, -0.74, -0.24, 0.72, 0.022 +19971210, -0.79, -0.62, 0.84, 0.022 +19971211, -1.58, -0.35, 0.82, 0.022 +19971212, -0.30, -0.31, 0.62, 0.022 +19971215, 0.67, -1.49, 0.63, 0.022 +19971216, 0.60, 0.34, -0.55, 0.022 +19971217, -0.15, 0.20, 0.45, 0.022 +19971218, -1.08, -0.19, 0.28, 0.022 +19971219, -0.68, 0.55, -0.42, 0.022 +19971222, 0.57, -0.29, 0.13, 0.022 +19971223, -1.22, 1.06, 0.75, 0.022 +19971224, -0.58, 0.44, 0.22, 0.022 +19971226, 0.33, -0.30, -0.02, 0.022 +19971229, 1.60, -0.76, -0.50, 0.022 +19971230, 1.76, -0.22, -0.49, 0.022 +19971231, 0.21, 0.87, -0.23, 0.022 +19980102, 0.22, -0.05, -0.46, 0.021 +19980105, 0.22, 0.08, -0.31, 0.021 +19980106, -1.04, 0.24, 0.23, 0.021 +19980107, -0.38, -0.39, -0.10, 0.021 +19980108, -0.82, 0.33, -0.25, 0.021 +19980109, -2.98, 0.16, 0.71, 0.021 +19980112, 0.74, -1.63, 0.10, 0.021 +19980113, 1.50, 0.11, -0.64, 0.021 +19980114, 0.61, -0.01, 0.23, 0.021 +19980115, -0.60, 0.59, 0.25, 0.021 +19980116, 1.08, 0.00, -0.26, 0.021 +19980120, 1.63, -0.37, -0.91, 0.021 +19980121, -0.66, 0.27, 0.17, 0.021 +19980122, -0.80, 0.03, 0.53, 0.021 +19980123, -0.56, 0.34, -0.31, 0.021 +19980126, -0.25, -0.70, 0.59, 0.021 +19980127, 0.97, -0.61, -0.27, 0.021 +19980128, 1.01, 0.29, -0.52, 0.021 +19980129, 0.78, -0.18, -0.38, 0.021 +19980130, -0.40, 0.30, 0.16, 0.021 +19980202, 1.93, -1.21, -0.67, 0.021 +19980203, 0.53, 0.19, 0.03, 0.021 +19980204, 0.22, 0.70, -0.36, 0.021 +19980205, -0.15, 0.68, 0.12, 0.021 +19980206, 0.75, -0.50, 0.07, 0.021 +19980209, -0.09, 0.37, 0.31, 0.021 +19980210, 0.81, 0.04, -0.18, 0.021 +19980211, 0.16, -0.01, 0.34, 0.021 +19980212, 0.36, -0.29, 0.01, 0.021 +19980213, -0.25, 0.67, 0.02, 0.021 +19980217, 0.15, -0.45, 0.50, 0.021 +19980218, 0.80, -0.49, -0.38, 0.021 +19980219, -0.23, 0.34, -0.11, 0.021 +19980220, 0.38, -0.35, 0.06, 0.021 +19980223, 0.44, 0.11, -0.44, 0.021 +19980224, -0.74, 0.33, 0.65, 0.021 +19980225, 1.14, -0.32, -0.24, 0.021 +19980226, 0.56, 0.05, -0.10, 0.021 +19980227, 0.05, 0.06, 0.23, 0.021 +19980302, -0.16, 0.06, 0.60, 0.018 +19980303, 0.34, -0.31, 0.48, 0.018 +19980304, -0.42, 0.32, 0.39, 0.018 +19980305, -1.03, -0.14, 0.56, 0.018 +19980306, 1.85, -0.36, -0.67, 0.018 +19980309, -0.32, -0.19, 0.40, 0.018 +19980310, 1.07, -0.45, -0.27, 0.018 +19980311, 0.50, 0.05, -0.11, 0.018 +19980312, 0.13, 0.14, -0.33, 0.018 +19980313, -0.08, 0.22, 0.26, 0.018 +19980316, 0.88, -0.41, 0.15, 0.018 +19980317, 0.10, -0.43, 0.72, 0.018 +19980318, 0.48, -0.20, -0.09, 0.018 +19980319, 0.40, 0.02, -0.13, 0.018 +19980320, 0.57, -0.69, 0.14, 0.018 +19980323, -0.33, 0.33, -0.13, 0.018 +19980324, 0.85, -0.25, -0.15, 0.018 +19980325, -0.25, 0.39, -0.18, 0.018 +19980326, -0.06, 0.31, -0.25, 0.018 +19980327, -0.40, 0.44, -0.02, 0.018 +19980330, -0.22, 0.21, -0.24, 0.018 +19980331, 0.77, 0.06, -0.22, 0.018 +19980401, 0.60, 0.37, -0.58, 0.020 +19980402, 0.83, -0.66, 0.06, 0.020 +19980403, 0.19, -0.17, 0.05, 0.020 +19980406, -0.31, -0.64, 0.92, 0.020 +19980407, -1.05, -0.54, 0.60, 0.020 +19980408, -0.49, 0.71, 0.11, 0.020 +19980409, 0.81, 0.13, 0.07, 0.020 +19980413, -0.03, -0.23, 0.72, 0.020 +19980414, 0.67, 0.17, 0.27, 0.020 +19980415, 0.37, 0.09, 0.11, 0.020 +19980416, -0.88, 0.43, -0.03, 0.020 +19980417, 1.12, -0.44, -0.57, 0.020 +19980420, 0.17, 0.61, -0.73, 0.020 +19980421, 0.24, 0.50, -0.16, 0.020 +19980422, 0.29, -0.26, 0.02, 0.020 +19980423, -1.13, -0.04, 0.43, 0.020 +19980424, -0.98, 0.21, -0.01, 0.020 +19980427, -2.14, -0.38, 0.45, 0.020 +19980428, 0.15, 0.67, -0.37, 0.020 +19980429, 0.89, -0.02, -0.27, 0.020 +19980430, 1.47, -0.26, -0.44, 0.020 +19980501, 0.60, -0.49, 0.25, 0.020 +19980504, 0.15, 0.10, -0.19, 0.020 +19980505, -0.59, -0.02, 0.16, 0.020 +19980506, -0.83, 0.23, 0.57, 0.020 +19980507, -0.83, 0.13, 0.58, 0.020 +19980508, 1.07, -0.44, -0.54, 0.020 +19980511, -0.25, -0.32, 0.53, 0.020 +19980512, 0.53, -0.82, -0.05, 0.020 +19980513, 0.27, -0.07, 0.11, 0.020 +19980514, -0.18, -0.24, 0.29, 0.020 +19980515, -0.78, 0.03, 0.49, 0.020 +19980518, -0.44, -0.59, 0.13, 0.020 +19980519, 0.38, 0.37, -0.53, 0.020 +19980520, 0.47, -1.17, 0.44, 0.020 +19980521, -0.36, -0.05, 0.56, 0.020 +19980522, -0.55, -0.36, 0.52, 0.020 +19980526, -1.50, -0.57, 0.99, 0.020 +19980527, -0.37, -0.82, -0.52, 0.020 +19980528, 0.56, 0.57, 0.03, 0.020 +19980529, -0.42, 0.65, 0.47, 0.020 +19980601, -0.33, -1.27, 1.08, 0.019 +19980602, 0.18, -0.63, 0.26, 0.019 +19980603, -0.78, 0.60, 0.50, 0.019 +19980604, 0.99, -0.35, -0.72, 0.019 +19980605, 1.45, -0.90, -0.57, 0.019 +19980608, 0.27, 0.06, -0.04, 0.019 +19980609, 0.25, 0.05, -0.48, 0.019 +19980610, -0.70, -0.55, 0.56, 0.019 +19980611, -1.46, 0.13, 0.22, 0.019 +19980612, 0.09, -0.65, -0.46, 0.019 +19980615, -1.93, 0.17, 0.49, 0.019 +19980616, 0.99, 0.15, -0.91, 0.019 +19980617, 1.63, -0.51, -0.24, 0.019 +19980618, -0.14, -0.44, -0.32, 0.019 +19980619, -0.42, 0.21, 0.11, 0.019 +19980622, 0.33, 0.35, -0.09, 0.019 +19980623, 1.36, -0.07, -1.12, 0.019 +19980624, 1.13, -0.24, -0.58, 0.019 +19980625, -0.31, 0.00, 0.29, 0.019 +19980626, 0.30, -0.22, 0.20, 0.019 +19980629, 0.55, 0.11, -0.32, 0.019 +19980630, -0.20, 0.87, -0.14, 0.019 +19980701, 1.12, -0.65, -0.02, 0.018 +19980702, -0.20, -0.21, 0.31, 0.018 +19980706, 0.85, -0.79, 0.17, 0.018 +19980707, -0.17, -0.12, 0.07, 0.018 +19980708, 0.90, -0.71, -0.54, 0.018 +19980709, -0.51, 0.77, -0.08, 0.018 +19980710, 0.31, -0.29, -0.56, 0.018 +19980713, 0.10, -0.01, -0.31, 0.018 +19980714, 0.83, -0.70, -0.15, 0.018 +19980715, -0.08, 0.91, -0.62, 0.018 +19980716, 0.65, -0.30, -0.41, 0.018 +19980717, 0.20, -0.19, -0.36, 0.018 +19980720, -0.13, 0.12, -0.45, 0.018 +19980721, -1.59, 0.31, 0.87, 0.018 +19980722, -0.28, -0.97, 0.17, 0.018 +19980723, -2.05, 0.15, 0.49, 0.018 +19980724, -0.15, -0.32, -0.46, 0.018 +19980727, 0.20, -1.54, 0.01, 0.018 +19980728, -1.50, 0.20, 0.50, 0.018 +19980729, -0.46, 0.03, 0.29, 0.018 +19980730, 1.45, -0.82, -0.35, 0.018 +19980731, -1.87, -0.27, 0.41, 0.018 +19980803, -0.87, -0.77, 0.66, 0.020 +19980804, -3.55, 0.68, 0.89, 0.020 +19980805, 0.47, -1.19, -0.22, 0.020 +19980806, 1.07, 0.98, -0.53, 0.020 +19980807, 0.39, 1.62, -0.29, 0.020 +19980810, -0.59, -0.16, -0.03, 0.020 +19980811, -1.66, -0.87, 0.11, 0.020 +19980812, 1.54, -0.04, 0.04, 0.020 +19980813, -0.87, -0.20, 0.35, 0.020 +19980814, -0.96, 0.72, 0.16, 0.020 +19980817, 1.51, -1.44, -0.72, 0.020 +19980818, 1.61, -0.34, -0.45, 0.020 +19980819, -0.46, -0.73, 0.47, 0.020 +19980820, -0.67, -0.14, -0.10, 0.020 +19980821, -1.16, -0.33, 0.06, 0.020 +19980824, 0.38, -1.13, 0.23, 0.020 +19980825, 0.21, -1.14, -0.27, 0.020 +19980826, -1.09, -1.25, -0.08, 0.020 +19980827, -3.92, 0.21, 0.25, 0.020 +19980828, -1.70, -0.65, 1.05, 0.020 +19980831, -6.71, -0.19, 2.43, 0.020 +19980901, 3.56, -0.66, -1.79, 0.022 +19980902, -0.02, 1.34, -0.15, 0.022 +19980903, -1.09, -0.43, -0.21, 0.022 +19980904, -0.78, 0.97, 0.01, 0.022 +19980908, 4.92, -1.07, -1.89, 0.022 +19980909, -1.77, -0.64, 1.17, 0.022 +19980910, -2.52, 0.27, 0.69, 0.022 +19980911, 2.67, -0.35, -1.26, 0.022 +19980914, 2.04, -1.27, 0.03, 0.022 +19980915, 0.72, -1.16, 0.78, 0.022 +19980916, 0.84, -0.36, -0.23, 0.022 +19980917, -2.35, 1.14, 0.60, 0.022 +19980918, 0.41, 1.37, -0.31, 0.022 +19980921, 0.19, -0.52, -0.32, 0.022 +19980922, 0.70, 0.53, -0.61, 0.022 +19980923, 3.24, -1.49, -0.82, 0.022 +19980924, -2.05, 0.89, 0.61, 0.022 +19980925, 0.08, -0.52, 0.17, 0.022 +19980928, 0.34, -0.44, 0.29, 0.022 +19980929, -0.11, -0.37, -0.26, 0.022 +19980930, -2.58, 2.35, 0.17, 0.022 +19981001, -3.29, -0.38, 1.35, 0.015 +19981002, 1.40, -1.65, 0.11, 0.015 +19981005, -1.91, -1.59, 0.91, 0.015 +19981006, -0.55, -0.69, -0.06, 0.015 +19981007, -1.80, -1.54, 0.93, 0.015 +19981008, -1.69, -2.42, 0.16, 0.015 +19981009, 2.64, -0.52, -1.35, 0.015 +19981012, 1.65, 0.91, -1.69, 0.015 +19981013, -0.63, -1.05, 0.85, 0.015 +19981014, 1.34, -0.32, -0.20, 0.015 +19981015, 4.06, -1.26, -0.96, 0.015 +19981016, 1.02, 0.96, -0.42, 0.015 +19981019, 0.83, 1.59, -0.24, 0.015 +19981020, 0.27, 1.34, 0.38, 0.015 +19981021, 0.59, 0.87, -0.59, 0.015 +19981022, 0.87, 1.24, -0.83, 0.015 +19981023, -0.60, 1.26, -0.57, 0.015 +19981026, 0.41, 1.18, -0.56, 0.015 +19981027, -0.53, 0.56, 0.32, 0.015 +19981028, 0.24, 0.15, -0.18, 0.015 +19981029, 1.60, -0.65, -0.53, 0.015 +19981030, 1.22, -0.79, 0.70, 0.015 +19981102, 1.40, 0.73, -0.47, 0.015 +19981103, -0.10, 0.37, 0.11, 0.015 +19981104, 0.88, 0.33, 0.16, 0.015 +19981105, 1.28, -0.02, -0.36, 0.015 +19981106, 0.68, 0.59, -0.62, 0.015 +19981109, -0.83, 0.62, -0.43, 0.015 +19981110, -0.15, -0.15, 0.01, 0.015 +19981111, -0.69, 0.13, 0.11, 0.015 +19981112, -0.27, -0.11, 0.28, 0.015 +19981113, 0.53, -1.38, 0.61, 0.015 +19981116, 0.75, -0.67, -0.26, 0.015 +19981117, 0.32, -0.80, 0.09, 0.015 +19981118, 0.51, 0.04, -0.53, 0.015 +19981119, 0.66, 0.17, -0.39, 0.015 +19981120, 0.78, -0.51, -0.47, 0.015 +19981123, 2.02, -1.10, -0.89, 0.015 +19981124, -0.43, 0.02, 0.47, 0.015 +19981125, 0.39, 0.68, -0.40, 0.015 +19981127, 0.54, 0.81, -0.67, 0.015 +19981130, -2.31, 1.21, 0.73, 0.015 +19981201, 0.86, -0.74, 0.04, 0.017 +19981202, -0.21, -0.05, -0.29, 0.017 +19981203, -1.62, 0.73, 0.50, 0.017 +19981204, 2.00, -1.09, -0.59, 0.017 +19981207, 0.89, -0.22, -0.57, 0.017 +19981208, -0.44, 0.49, -0.27, 0.017 +19981209, 0.09, 0.11, -0.32, 0.017 +19981210, -1.55, 0.30, 0.53, 0.017 +19981211, -0.05, -0.22, -0.32, 0.017 +19981214, -2.12, 0.09, 0.64, 0.017 +19981215, 1.67, -1.11, -0.78, 0.017 +19981216, -0.08, -0.12, 0.37, 0.017 +19981217, 1.51, -1.00, -0.03, 0.017 +19981218, 0.68, 0.59, -0.76, 0.017 +19981221, 1.35, -0.32, -0.72, 0.017 +19981222, 0.00, -0.08, -0.42, 0.017 +19981223, 1.93, -0.50, -0.88, 0.017 +19981224, -0.07, 0.22, -0.02, 0.017 +19981228, 0.16, 0.50, -0.66, 0.017 +19981229, 1.14, -0.39, -0.28, 0.017 +19981230, -0.50, 0.65, 0.44, 0.017 +19981231, 0.43, 1.86, 0.04, 0.017 +19990104, -0.19, 0.21, 0.45, 0.019 +19990105, 1.10, -0.88, 0.12, 0.019 +19990106, 2.10, -0.70, -0.40, 0.019 +19990107, -0.07, 0.46, -0.22, 0.019 +19990108, 0.45, -0.05, 0.38, 0.019 +19990111, -0.52, 1.11, -0.08, 0.019 +19990112, -1.85, 0.66, 0.09, 0.019 +19990113, -0.54, -0.03, -0.22, 0.019 +19990114, -1.66, 1.09, -0.01, 0.019 +19990115, 2.28, -0.75, -0.41, 0.019 +19990119, 0.80, 0.13, -0.66, 0.019 +19990120, 0.24, 0.15, -0.67, 0.019 +19990121, -1.82, 0.31, 0.73, 0.019 +19990122, -0.66, 0.41, 0.15, 0.019 +19990125, 0.67, -0.84, -0.24, 0.019 +19990126, 1.39, -0.25, -1.13, 0.019 +19990127, -0.74, 0.06, -0.57, 0.019 +19990128, 1.63, -0.99, -0.68, 0.019 +19990129, 0.95, 0.19, -0.61, 0.019 +19990201, -0.39, 0.01, -0.27, 0.019 +19990202, -0.89, -0.16, -0.18, 0.019 +19990203, 0.90, -0.20, -0.72, 0.019 +19990204, -1.92, 0.37, 1.06, 0.019 +19990205, -0.92, -0.56, 0.79, 0.019 +19990208, 0.23, -0.59, 0.13, 0.019 +19990209, -2.25, 0.09, 1.40, 0.019 +19990210, 0.27, -1.20, -0.45, 0.019 +19990211, 2.49, -0.51, -1.60, 0.019 +19990212, -1.90, 0.16, 0.51, 0.019 +19990216, 0.65, -1.29, -0.16, 0.019 +19990217, -1.45, -0.69, 1.11, 0.019 +19990218, 0.92, -1.18, 0.68, 0.019 +19990219, 0.25, 0.16, -0.50, 0.019 +19990222, 2.41, -1.26, -0.56, 0.019 +19990223, 0.09, 0.39, -0.57, 0.019 +19990224, -1.31, 0.34, 0.22, 0.019 +19990225, -0.69, 0.10, 0.05, 0.019 +19990226, -0.49, 0.03, 0.46, 0.019 +19990301, -0.01, 0.24, 0.08, 0.018 +19990302, -0.69, 0.08, 0.48, 0.018 +19990303, 0.01, -0.62, 0.11, 0.018 +19990304, 1.34, -1.03, -0.31, 0.018 +19990305, 2.04, -1.25, -0.47, 0.018 +19990308, 0.66, -0.08, -0.94, 0.018 +19990309, -0.23, 0.15, -0.24, 0.018 +19990310, 0.52, 0.04, -0.31, 0.018 +19990311, 0.73, -0.75, 0.03, 0.018 +19990312, -0.32, -0.44, 0.72, 0.018 +19990315, 0.94, -0.40, -0.32, 0.018 +19990316, -0.15, -0.22, -0.30, 0.018 +19990317, -0.55, 0.12, 0.37, 0.018 +19990318, 1.27, -1.18, -0.20, 0.018 +19990319, -1.32, 0.17, 0.81, 0.018 +19990322, -0.33, -0.47, 0.33, 0.018 +19990323, -2.64, 0.46, 0.88, 0.018 +19990324, 0.51, -0.51, -0.26, 0.018 +19990325, 1.78, 0.39, -1.01, 0.018 +19990326, -0.50, 0.94, -0.33, 0.018 +19990329, 1.98, -0.21, -1.75, 0.018 +19990330, -0.63, 0.61, -0.24, 0.018 +19990331, -0.86, -0.01, 0.22, 0.018 +19990401, 0.54, -0.10, -0.02, 0.018 +19990405, 1.87, -0.95, -0.56, 0.018 +19990406, -0.26, -0.01, 0.13, 0.018 +19990407, 0.42, -0.73, -0.22, 0.018 +19990408, 1.27, -0.42, -0.77, 0.018 +19990409, 0.43, 1.25, -0.48, 0.018 +19990412, 0.87, 0.24, -0.19, 0.018 +19990413, -0.34, 1.95, -0.18, 0.018 +19990414, -1.43, 0.54, 1.98, 0.018 +19990415, -0.39, -0.10, 0.85, 0.018 +19990416, -0.23, 0.85, 1.04, 0.018 +19990419, -2.48, -1.01, 3.77, 0.018 +19990420, 1.38, -0.12, -1.97, 0.018 +19990421, 2.53, 0.59, -1.93, 0.018 +19990422, 1.35, -0.55, -0.89, 0.018 +19990423, 0.11, 0.57, 0.16, 0.018 +19990426, 0.44, 0.89, -1.23, 0.018 +19990427, 0.09, -0.07, 0.59, 0.018 +19990428, -0.88, -0.11, 1.59, 0.018 +19990429, -0.45, 0.36, 0.86, 0.018 +19990430, -0.47, 0.70, -0.40, 0.018 +19990503, 1.10, -1.41, 0.58, 0.017 +19990504, -1.49, 0.96, 0.44, 0.017 +19990505, 1.03, -0.86, -0.16, 0.017 +19990506, -1.15, 0.85, 1.01, 0.017 +19990507, 0.89, -0.51, -0.11, 0.017 +19990510, -0.03, 1.20, 0.15, 0.017 +19990511, 1.19, 0.06, -0.88, 0.017 +19990512, 0.65, 0.09, -0.52, 0.017 +19990513, 0.23, 0.22, 0.13, 0.017 +19990514, -2.14, 0.80, 0.52, 0.017 +19990517, 0.15, -0.03, -0.74, 0.017 +19990518, -0.40, 0.41, 0.41, 0.017 +19990519, 0.82, -0.10, -0.20, 0.017 +19990520, -0.36, 0.93, 0.41, 0.017 +19990521, -0.57, 0.73, 0.70, 0.017 +19990524, -1.93, 0.06, 1.03, 0.017 +19990525, -1.81, -0.10, 1.05, 0.017 +19990526, 1.41, -1.18, -0.66, 0.017 +19990527, -1.43, 1.22, -0.03, 0.017 +19990528, 1.53, -0.07, -0.66, 0.017 +19990601, -0.80, 0.29, 0.82, 0.018 +19990602, 0.13, -0.32, -0.43, 0.018 +19990603, 0.12, -0.24, 0.33, 0.018 +19990604, 2.03, -0.27, -1.62, 0.018 +19990607, 0.71, 0.23, -0.06, 0.018 +19990608, -1.23, 0.60, 0.42, 0.018 +19990609, 0.16, 0.72, -0.62, 0.018 +19990610, -1.20, 0.47, 0.58, 0.018 +19990611, -0.80, -0.04, 0.33, 0.018 +19990614, -0.49, -1.26, 1.02, 0.018 +19990615, 0.52, -0.42, -0.02, 0.018 +19990616, 2.26, -0.60, -1.05, 0.018 +19990617, 0.72, 0.09, -0.74, 0.018 +19990618, 0.22, 0.38, -0.13, 0.018 +19990621, 0.63, 0.78, -0.72, 0.018 +19990622, -0.93, 0.59, 0.30, 0.018 +19990623, -0.14, 0.25, -0.22, 0.018 +19990624, -1.31, 0.58, 0.59, 0.018 +19990625, -0.06, 0.17, -0.06, 0.018 +19990628, 1.23, 0.16, -0.24, 0.018 +19990629, 1.49, -0.05, -0.92, 0.018 +19990630, 1.60, 1.01, -1.48, 0.018 +19990701, 0.55, -0.84, -0.20, 0.018 +19990702, 0.73, -0.03, -0.48, 0.018 +19990706, -0.08, 0.07, 0.14, 0.018 +19990707, 0.22, -0.57, -0.19, 0.018 +19990708, 0.03, 0.68, -0.54, 0.018 +19990709, 0.54, 0.53, -0.43, 0.018 +19990712, -0.24, 0.53, 0.19, 0.018 +19990713, -0.39, 0.34, -0.02, 0.018 +19990714, 0.46, 0.44, -0.65, 0.018 +19990715, 0.83, 0.26, -0.64, 0.018 +19990716, 0.48, -0.44, -0.07, 0.018 +19990719, -0.82, 0.06, 0.62, 0.018 +19990720, -2.22, 0.12, 1.08, 0.018 +19990721, 0.27, 0.20, -0.55, 0.018 +19990722, -1.33, 0.05, 0.94, 0.018 +19990723, -0.32, -0.23, 0.02, 0.018 +19990726, -1.02, -0.59, 0.81, 0.018 +19990727, 1.12, -0.36, -0.74, 0.018 +19990728, 0.15, 0.31, -0.44, 0.018 +19990729, -1.75, 0.71, 0.48, 0.018 +19990730, -0.72, 1.55, -0.19, 0.018 +19990802, -0.27, -0.54, 0.52, 0.018 +19990803, -0.79, -0.76, 0.50, 0.018 +19990804, -1.45, -0.46, 1.25, 0.018 +19990805, 0.63, -0.66, -0.45, 0.018 +19990806, -1.00, 0.81, 0.14, 0.018 +19990809, -0.41, -0.50, 0.85, 0.018 +19990810, -1.16, 0.37, 0.05, 0.018 +19990811, 1.63, -0.64, -0.23, 0.018 +19990812, -0.14, 0.30, 0.11, 0.018 +19990813, 2.21, -0.94, -0.97, 0.018 +19990816, 0.26, 0.01, -0.53, 0.018 +19990817, 0.97, -0.61, -0.29, 0.018 +19990818, -0.75, 0.38, -0.21, 0.018 +19990819, -0.78, 0.63, 0.68, 0.018 +19990820, 0.89, -0.31, -0.44, 0.018 +19990823, 1.76, -0.95, -0.88, 0.018 +19990824, 0.18, -0.02, -0.37, 0.018 +19990825, 1.21, -0.14, -1.49, 0.018 +19990826, -1.18, 0.89, 0.27, 0.018 +19990827, -0.99, 0.46, 0.39, 0.018 +19990830, -1.78, 1.03, -0.08, 0.018 +19990831, -0.17, 0.27, -0.13, 0.018 +19990901, 0.76, -0.20, -0.12, 0.018 +19990902, -0.86, 0.37, 0.11, 0.018 +19990903, 2.84, -0.94, -1.24, 0.018 +19990907, -0.34, 0.95, -0.05, 0.018 +19990908, -0.55, 0.20, 0.31, 0.018 +19990909, 0.31, 0.15, 0.05, 0.018 +19990910, 0.44, 0.46, -0.48, 0.018 +19990913, -0.64, 0.17, 0.32, 0.018 +19990914, -0.52, 0.30, -0.26, 0.018 +19990915, -1.28, 0.62, 0.80, 0.018 +19990916, -0.20, -0.87, 0.04, 0.018 +19990917, 1.22, -0.18, -0.81, 0.018 +19990920, 0.00, 0.06, -0.61, 0.018 +19990921, -1.93, 0.69, 0.08, 0.018 +19990922, 0.29, 0.09, -0.74, 0.018 +19990923, -2.35, 0.50, 0.84, 0.018 +19990924, -0.19, -0.42, -0.33, 0.018 +19990927, 0.42, 0.56, -0.37, 0.018 +19990928, -0.23, -0.02, -0.83, 0.018 +19990929, -0.80, 0.60, 0.56, 0.018 +19990930, 0.92, 0.35, -0.89, 0.018 +19991001, -0.16, -0.10, -0.26, 0.018 +19991004, 1.66, -1.35, -0.26, 0.018 +19991005, -0.09, -0.13, -0.21, 0.018 +19991006, 1.82, -1.12, -0.58, 0.018 +19991007, -0.47, 0.30, -0.14, 0.018 +19991008, 1.09, -0.87, -0.45, 0.018 +19991011, 0.21, 0.36, -0.11, 0.018 +19991012, -1.72, 0.41, 0.55, 0.018 +19991013, -2.04, 0.41, 1.04, 0.018 +19991014, -0.02, -0.26, 0.00, 0.018 +19991015, -2.65, 1.70, 0.28, 0.018 +19991018, 0.09, -1.51, 0.16, 0.018 +19991019, 0.76, -0.14, -0.82, 0.018 +19991020, 1.86, -0.61, -1.31, 0.018 +19991021, -0.16, 0.21, -0.22, 0.018 +19991022, 1.31, -1.04, 0.55, 0.018 +19991025, -0.43, 0.31, 0.05, 0.018 +19991026, -0.85, 0.75, -0.05, 0.018 +19991027, 0.89, -1.20, 0.13, 0.018 +19991028, 3.32, -2.11, -0.82, 0.018 +19991029, 1.73, -1.02, -0.36, 0.018 +19991101, -0.38, 1.25, -0.49, 0.017 +19991102, -0.33, 0.21, 0.45, 0.017 +19991103, 0.69, 1.08, -0.70, 0.017 +19991104, 0.66, -0.11, -0.55, 0.017 +19991105, 0.79, -0.34, -0.36, 0.017 +19991108, 0.59, 0.46, -0.66, 0.017 +19991109, -0.78, 1.19, 0.13, 0.017 +19991110, 0.53, 0.43, -0.59, 0.017 +19991111, 0.37, 0.12, -0.68, 0.017 +19991112, 1.10, -0.91, 0.11, 0.017 +19991115, 0.03, 0.62, 0.47, 0.017 +19991116, 1.84, -0.79, -0.69, 0.017 +19991117, -0.63, 1.01, 0.00, 0.017 +19991118, 1.13, 0.78, -1.44, 0.017 +19991119, -0.11, 0.35, -0.50, 0.017 +19991122, 0.02, 0.22, -0.92, 0.017 +19991123, -1.29, 0.08, 0.30, 0.017 +19991124, 0.87, 0.08, -0.89, 0.017 +19991126, 0.23, 0.92, -0.20, 0.017 +19991129, -0.60, 0.57, -0.14, 0.017 +19991130, -1.28, -0.18, 1.28, 0.017 +19991201, 0.49, -0.15, -0.30, 0.020 +19991202, 1.15, 0.53, -1.01, 0.020 +19991203, 1.59, -1.06, -0.52, 0.020 +19991206, -0.42, 0.88, -0.55, 0.020 +19991207, -0.43, 1.06, -1.16, 0.020 +19991208, -0.08, 0.95, -0.45, 0.020 +19991209, 0.30, -0.23, -0.56, 0.020 +19991210, 0.51, 0.58, -0.69, 0.020 +19991213, 0.05, 1.13, -0.66, 0.020 +19991214, -1.33, -0.51, 1.27, 0.020 +19991215, 0.54, -1.01, 0.13, 0.020 +19991216, 0.61, 0.54, -0.73, 0.020 +19991217, 0.27, 0.00, -0.23, 0.020 +19991220, -0.08, 0.65, -0.68, 0.020 +19991221, 1.44, 0.21, -0.77, 0.020 +19991222, 0.33, 0.02, -0.19, 0.020 +19991223, 1.30, -0.46, -0.33, 0.020 +19991227, -0.21, 0.77, -0.73, 0.020 +19991228, 0.21, 0.25, 0.15, 0.020 +19991229, 0.64, 0.98, -0.10, 0.020 +19991230, 0.08, 0.02, -0.10, 0.020 +19991231, 0.52, 1.36, 0.29, 0.020 +20000103, -0.71, 0.38, -0.85, 0.021 +20000104, -4.06, -0.04, 2.21, 0.021 +20000105, -0.09, 0.18, 0.14, 0.021 +20000106, -0.73, -0.67, 1.38, 0.021 +20000107, 3.21, -0.59, -1.24, 0.021 +20000110, 1.76, 1.00, -1.51, 0.021 +20000111, -1.71, 0.19, 0.93, 0.021 +20000112, -0.69, -0.53, 0.91, 0.021 +20000113, 1.59, 1.00, -1.31, 0.021 +20000114, 1.15, 0.09, -0.19, 0.021 +20000118, -0.26, 2.56, -0.47, 0.021 +20000119, 0.44, 0.93, -0.51, 0.021 +20000120, -0.37, 1.92, -1.15, 0.021 +20000121, 0.23, 1.41, -0.46, 0.021 +20000124, -2.59, 1.11, 0.84, 0.021 +20000125, 0.49, -0.23, -0.46, 0.021 +20000126, -0.44, -0.23, 0.30, 0.021 +20000127, -0.44, -0.40, -0.09, 0.021 +20000128, -2.82, -0.10, 1.36, 0.021 +20000131, 1.50, -2.90, -0.37, 0.021 +20000201, 1.29, -0.13, 0.15, 0.022 +20000202, 0.16, 1.73, -0.54, 0.022 +20000203, 1.49, 1.35, -1.37, 0.022 +20000204, -0.05, 1.15, -0.58, 0.022 +20000207, 0.35, 1.60, -1.24, 0.022 +20000208, 1.23, 0.69, -1.79, 0.022 +20000209, -1.83, 1.80, -0.07, 0.022 +20000210, 0.57, 1.59, -1.15, 0.022 +20000211, -1.74, 1.10, 0.61, 0.022 +20000214, 0.24, 0.62, 0.18, 0.022 +20000215, 0.70, -0.65, 0.01, 0.022 +20000216, -0.58, 1.84, -0.33, 0.022 +20000217, 0.46, 1.99, -1.13, 0.022 +20000218, -2.69, 1.18, 0.58, 0.022 +20000222, 0.11, -1.05, 0.36, 0.022 +20000223, 1.24, 0.91, -1.63, 0.022 +20000224, 0.01, 1.02, -0.36, 0.022 +20000225, -1.04, 1.64, 0.16, 0.022 +20000228, 0.76, -0.19, -0.11, 0.022 +20000229, 1.96, 1.96, -0.68, 0.022 +20000301, 1.39, 1.06, -0.61, 0.020 +20000302, -0.09, 0.06, 0.28, 0.020 +20000303, 2.30, -0.05, -0.96, 0.020 +20000306, -0.77, 1.72, 0.25, 0.020 +20000307, -2.20, 0.84, 0.38, 0.020 +20000308, 0.69, -0.56, -0.26, 0.020 +20000309, 2.45, -0.31, -0.56, 0.020 +20000310, -0.43, 0.24, 0.26, 0.020 +20000313, -1.48, -1.14, 1.10, 0.020 +20000314, -2.33, -1.23, 1.23, 0.020 +20000315, 0.83, -5.09, 1.50, 0.020 +20000316, 4.25, -3.76, 0.37, 0.020 +20000317, 0.62, 0.73, -0.69, 0.020 +20000320, -1.71, -2.67, 2.11, 0.020 +20000321, 1.95, -2.28, -0.39, 0.020 +20000322, 1.31, 2.43, -1.29, 0.020 +20000323, 1.48, -1.08, 0.38, 0.020 +20000324, 0.11, -0.30, -0.04, 0.020 +20000327, -0.39, 0.32, -0.42, 0.020 +20000328, -1.34, -1.21, 0.92, 0.020 +20000329, -1.00, -2.41, 1.90, 0.020 +20000330, -1.76, -2.07, 1.67, 0.020 +20000331, 1.19, 0.28, 0.01, 0.020 +20000403, -1.67, -4.06, 2.16, 0.024 +20000404, -1.20, -1.76, 0.26, 0.024 +20000405, 0.01, 1.36, -0.74, 0.024 +20000406, 1.47, 1.44, -0.43, 0.024 +20000407, 1.42, 1.85, -0.69, 0.024 +20000410, -1.95, -3.52, 2.18, 0.024 +20000411, -1.01, -2.45, 2.18, 0.024 +20000412, -2.97, -2.86, 2.84, 0.024 +20000413, -1.80, -0.30, 0.95, 0.024 +20000414, -6.72, -1.27, 2.07, 0.024 +20000417, 2.94, -1.60, -1.56, 0.024 +20000418, 3.84, 3.29, -2.40, 0.024 +20000419, -0.80, 1.48, 0.11, 0.024 +20000420, 0.09, -1.15, 1.04, 0.024 +20000424, -1.01, -2.35, 1.14, 0.024 +20000425, 3.74, 0.44, -1.06, 0.024 +20000426, -1.23, 0.28, 1.33, 0.024 +20000427, 0.76, 1.45, -0.77, 0.024 +20000428, 0.07, 2.28, 0.01, 0.024 +20000501, 1.40, 1.18, -1.21, 0.023 +20000502, -2.07, -1.27, 1.93, 0.023 +20000503, -2.09, 0.35, -0.46, 0.023 +20000504, 0.00, 0.89, -0.08, 0.023 +20000505, 1.48, 0.79, -0.67, 0.023 +20000508, -0.98, -1.63, 1.47, 0.023 +20000509, -1.19, -0.97, 0.90, 0.023 +20000510, -2.70, -1.07, 0.87, 0.023 +20000511, 2.08, 0.33, -0.23, 0.023 +20000512, 0.81, -0.66, 0.51, 0.023 +20000515, 2.13, -0.78, -0.79, 0.023 +20000516, 1.30, 0.33, -0.63, 0.023 +20000517, -1.38, 0.20, 0.73, 0.023 +20000518, -1.09, -1.29, 1.06, 0.023 +20000519, -2.39, -0.25, 0.88, 0.023 +20000522, -0.73, -1.02, -0.31, 0.023 +20000523, -2.38, -0.89, 1.39, 0.023 +20000524, 1.55, -1.17, -1.27, 0.023 +20000525, -1.29, 0.51, 0.11, 0.023 +20000526, -0.18, 0.24, -0.06, 0.023 +20000530, 3.82, 0.77, -2.25, 0.023 +20000531, -0.22, 0.05, 0.54, 0.023 +20000601, 2.50, 0.84, -1.64, 0.018 +20000602, 2.91, 1.70, -2.45, 0.018 +20000605, -0.37, 1.32, -0.57, 0.018 +20000606, -0.87, 0.70, 0.18, 0.018 +20000607, 1.16, 0.28, -0.76, 0.018 +20000608, -0.60, 0.72, 0.17, 0.018 +20000609, 0.04, 1.52, -0.07, 0.018 +20000612, -1.19, -0.87, 1.28, 0.018 +20000613, 1.45, -0.15, -0.99, 0.018 +20000614, -0.16, -0.34, 0.35, 0.018 +20000615, 0.50, 0.35, -1.23, 0.018 +20000616, -0.74, 1.35, -0.19, 0.018 +20000619, 1.66, 0.16, -1.28, 0.018 +20000620, -0.25, 0.98, -0.51, 0.018 +20000621, 0.36, 0.68, -0.49, 0.018 +20000622, -1.88, 0.10, 0.43, 0.018 +20000623, -0.99, -0.37, 1.05, 0.018 +20000626, 0.92, 1.35, -1.37, 0.018 +20000627, -0.55, -0.62, 0.77, 0.018 +20000628, 0.77, 1.87, -1.20, 0.018 +20000629, -0.67, 0.08, 0.62, 0.018 +20000630, 0.74, 1.88, -1.56, 0.018 +20000703, 0.91, -0.67, 0.83, 0.024 +20000705, -1.60, -0.12, 1.85, 0.024 +20000706, 0.87, 0.01, -0.16, 0.024 +20000707, 1.46, -0.76, -0.80, 0.024 +20000710, -0.13, 0.12, 0.59, 0.024 +20000711, 0.12, -0.25, 0.11, 0.024 +20000712, 1.31, 0.38, -0.64, 0.024 +20000713, 0.51, 0.26, -0.55, 0.024 +20000714, 0.94, -0.43, -0.40, 0.024 +20000717, 0.10, 1.10, -1.32, 0.024 +20000718, -1.35, 0.13, 1.19, 0.024 +20000719, -1.19, -0.37, 1.26, 0.024 +20000720, 1.33, -0.22, -0.81, 0.024 +20000721, -1.30, -0.46, 1.11, 0.024 +20000724, -1.44, -0.42, 0.88, 0.024 +20000725, 0.51, -0.69, 0.24, 0.024 +20000726, -1.33, 0.83, 0.95, 0.024 +20000727, -0.90, -1.75, 2.48, 0.024 +20000728, -2.33, -0.24, 1.72, 0.024 +20000731, 1.03, 0.75, -0.44, 0.024 +20000801, 0.16, -1.33, 1.55, 0.022 +20000802, 0.02, 0.08, 0.22, 0.022 +20000803, 1.11, -1.36, -0.02, 0.022 +20000804, 0.89, -0.73, 0.22, 0.022 +20000807, 1.16, 0.13, -0.73, 0.022 +20000808, 0.10, -0.53, 1.08, 0.022 +20000809, -0.60, 0.50, 0.06, 0.022 +20000810, -1.03, -0.50, 1.18, 0.022 +20000811, 0.86, 0.13, 0.25, 0.022 +20000814, 1.24, -0.06, -0.40, 0.022 +20000815, -0.46, 0.00, 0.05, 0.022 +20000816, -0.18, 0.65, -0.20, 0.022 +20000817, 1.12, -0.34, -0.59, 0.022 +20000818, -0.28, 0.06, 0.03, 0.022 +20000821, 0.40, -0.07, -0.49, 0.022 +20000822, -0.01, 0.00, 0.09, 0.022 +20000823, 0.55, 0.18, -1.02, 0.022 +20000824, 0.34, 0.48, -0.48, 0.022 +20000825, -0.04, 0.68, -0.47, 0.022 +20000828, 0.49, -0.36, -0.11, 0.022 +20000829, -0.03, 0.69, -0.24, 0.022 +20000830, -0.11, 0.45, -0.01, 0.022 +20000831, 1.19, 0.16, -0.66, 0.022 +20000901, 0.38, 0.14, -0.34, 0.025 +20000905, -0.97, -0.24, 1.33, 0.025 +20000906, -1.23, -0.34, 2.02, 0.025 +20000907, 0.80, 0.59, -0.72, 0.025 +20000908, -0.83, -0.66, 0.92, 0.025 +20000911, -0.45, -0.78, 1.44, 0.025 +20000912, -0.50, 0.41, -0.08, 0.025 +20000913, 0.29, -0.19, -0.14, 0.025 +20000914, 0.01, 0.92, -0.37, 0.025 +20000915, -1.23, -0.11, 0.99, 0.025 +20000918, -1.80, -0.35, 0.56, 0.025 +20000919, 1.24, 0.44, -1.54, 0.025 +20000920, -0.39, 0.60, -0.60, 0.025 +20000921, -0.54, -0.68, 1.07, 0.025 +20000922, 0.40, -0.53, -0.15, 0.025 +20000925, -0.56, -0.24, 0.46, 0.025 +20000926, -0.96, -0.63, 1.16, 0.025 +20000927, -0.21, -0.63, 0.34, 0.025 +20000928, 2.32, 0.14, -1.22, 0.025 +20000929, -1.26, 0.69, 1.26, 0.025 +20001002, -0.70, -1.58, 1.47, 0.025 +20001003, -1.29, 0.12, 1.05, 0.025 +20001004, 0.64, 0.05, -0.66, 0.025 +20001005, -0.23, -0.11, 0.08, 0.025 +20001006, -2.17, -0.12, 1.58, 0.025 +20001009, -0.39, -0.28, 0.50, 0.025 +20001010, -1.44, 0.01, 0.70, 0.025 +20001011, -1.77, -0.02, 0.86, 0.025 +20001012, -2.83, 0.68, 1.22, 0.025 +20001013, 3.88, -0.54, -2.37, 0.025 +20001016, 0.24, -0.19, -0.47, 0.025 +20001017, -1.95, 0.16, 0.61, 0.025 +20001018, -0.84, -0.25, 0.58, 0.025 +20001019, 3.66, -0.59, -2.17, 0.025 +20001020, 0.92, 0.41, -1.05, 0.025 +20001023, 0.03, 0.70, -0.68, 0.025 +20001024, -0.12, -0.90, 1.14, 0.025 +20001025, -2.52, -0.14, 1.88, 0.025 +20001026, 0.00, 0.89, -0.32, 0.025 +20001027, 0.91, -1.19, 1.23, 0.025 +20001030, 0.74, -1.56, 1.83, 0.025 +20001031, 2.75, 0.59, -1.66, 0.025 +20001101, -0.48, -0.23, 0.49, 0.024 +20001102, 1.05, 1.36, -1.29, 0.024 +20001103, -0.03, 1.14, -1.20, 0.024 +20001106, 0.13, -0.97, 0.52, 0.024 +20001107, -0.08, 0.44, -0.33, 0.024 +20001108, -1.97, 0.19, 2.16, 0.024 +20001109, -0.96, -0.36, 0.81, 0.024 +20001110, -2.69, -0.42, 2.31, 0.024 +20001113, -1.39, -0.18, 1.70, 0.024 +20001114, 2.66, -0.06, -1.85, 0.024 +20001115, 0.60, 0.05, 0.07, 0.024 +20001116, -1.67, -0.61, 1.62, 0.024 +20001117, -0.52, 0.78, 0.45, 0.024 +20001120, -2.46, -0.16, 1.39, 0.024 +20001121, -0.05, -0.85, 0.72, 0.024 +20001122, -2.12, -0.22, 1.96, 0.024 +20001124, 2.08, 0.83, -2.03, 0.024 +20001127, 0.30, -0.20, -0.64, 0.024 +20001128, -1.67, -1.09, 2.52, 0.024 +20001129, 0.18, -1.71, 1.05, 0.024 +20001130, -2.03, -0.68, 1.49, 0.024 +20001201, 0.51, 1.58, -0.68, 0.025 +20001204, 0.35, -1.58, 0.91, 0.025 +20001205, 4.55, 0.01, -2.89, 0.025 +20001206, -1.78, 0.06, 1.10, 0.025 +20001207, -0.59, 0.09, 0.43, 0.025 +20001208, 2.79, 0.65, -1.43, 0.025 +20001211, 1.15, 0.22, -0.95, 0.025 +20001212, -1.07, -0.56, 0.55, 0.025 +20001213, -1.14, -0.26, 1.11, 0.025 +20001214, -1.80, 0.14, 1.04, 0.025 +20001215, -1.96, 0.30, 1.63, 0.025 +20001218, 0.60, -0.63, 1.31, 0.025 +20001219, -1.63, -0.43, 2.11, 0.025 +20001220, -3.59, -0.95, 3.05, 0.025 +20001221, 0.54, -0.18, 0.31, 0.025 +20001222, 3.06, 0.73, -2.11, 0.025 +20001226, 0.55, -0.45, 0.74, 0.025 +20001227, 1.36, 0.76, -0.31, 0.025 +20001228, 0.88, 1.80, -0.68, 0.025 +20001229, -1.23, -0.22, 1.43, 0.025 +20010102, -3.52, -0.29, 1.96, 0.026 +20010103, 5.39, 0.60, -4.15, 0.026 +20010104, -1.30, 0.72, 0.22, 0.026 +20010105, -2.98, 0.29, 2.19, 0.026 +20010108, -0.36, -0.53, 0.96, 0.026 +20010109, 0.51, 0.50, -0.24, 0.026 +20010110, 1.44, 0.81, -1.31, 0.026 +20010111, 1.39, 1.63, -2.85, 0.026 +20010112, -0.40, 1.23, -0.55, 0.026 +20010116, 0.68, 1.08, -0.23, 0.026 +20010117, 0.37, 0.17, -0.83, 0.026 +20010118, 1.16, -0.09, -1.37, 0.026 +20010119, -0.55, -0.17, -0.27, 0.026 +20010122, -0.01, -0.46, 1.11, 0.026 +20010123, 1.57, 0.45, -0.42, 0.026 +20010124, 0.34, -0.39, -0.35, 0.026 +20010125, -0.81, -0.68, 1.59, 0.026 +20010126, -0.11, 0.32, -0.21, 0.026 +20010129, 0.90, 0.66, -0.32, 0.026 +20010130, 0.63, -0.11, -0.21, 0.026 +20010131, -0.72, 0.42, 0.28, 0.026 +20010201, 0.39, -0.26, 0.80, 0.020 +20010202, -1.90, -0.31, 2.21, 0.020 +20010205, 0.17, -0.50, 1.05, 0.020 +20010206, 0.04, 1.05, -0.49, 0.020 +20010207, -0.86, 0.82, 1.18, 0.020 +20010208, -0.67, -0.31, 0.78, 0.020 +20010209, -1.42, -0.14, 1.20, 0.020 +20010212, 1.10, 0.16, 0.04, 0.020 +20010213, -0.90, 0.16, 1.01, 0.020 +20010214, -0.04, 0.45, -0.41, 0.020 +20010215, 0.93, 0.30, -0.86, 0.020 +20010216, -1.93, -0.60, 1.88, 0.020 +20010220, -1.93, 0.18, 1.41, 0.020 +20010221, -1.84, 0.06, 0.93, 0.020 +20010222, -0.48, -1.04, 0.59, 0.020 +20010223, -0.38, 0.34, -0.35, 0.020 +20010226, 1.91, -0.33, -0.01, 0.020 +20010227, -1.17, -1.21, 1.64, 0.020 +20010228, -1.48, 0.44, 0.82, 0.020 +20010301, 0.02, -0.18, -0.07, 0.019 +20010302, -0.53, 0.40, 1.15, 0.019 +20010305, 0.54, -0.68, 0.17, 0.019 +20010306, 1.06, 0.29, -1.02, 0.019 +20010307, 0.58, -0.10, 0.64, 0.019 +20010308, -0.14, -0.72, 0.99, 0.019 +20010309, -2.50, 0.22, 2.01, 0.019 +20010312, -4.34, 0.60, 2.39, 0.019 +20010313, 1.61, -0.17, -1.49, 0.019 +20010314, -2.50, 0.79, 0.10, 0.019 +20010315, 0.34, -0.64, 0.30, 0.019 +20010316, -2.11, -0.37, 1.27, 0.019 +20010319, 1.86, -0.15, -1.16, 0.019 +20010320, -2.40, 0.67, 1.34, 0.019 +20010321, -1.88, -0.07, 0.67, 0.019 +20010322, -0.43, 0.35, -1.41, 0.019 +20010323, 2.08, 0.10, -1.23, 0.019 +20010326, 1.09, -1.03, 0.61, 0.019 +20010327, 2.40, -0.49, -1.54, 0.019 +20010328, -2.58, 0.00, 1.89, 0.019 +20010329, -0.53, -0.17, 1.51, 0.019 +20010330, 1.19, 1.66, -0.60, 0.019 +20010402, -1.60, -1.69, 1.49, 0.020 +20010403, -3.69, 0.06, 2.05, 0.020 +20010404, -0.39, -0.27, 0.81, 0.020 +20010405, 4.68, 0.22, -3.30, 0.020 +20010406, -2.07, 0.37, 0.21, 0.020 +20010409, 0.87, 0.24, -0.11, 0.020 +20010410, 2.87, -0.35, -1.36, 0.020 +20010411, -0.10, -0.16, -0.65, 0.020 +20010412, 1.57, 0.24, -1.31, 0.020 +20010416, -0.47, -0.36, 0.67, 0.020 +20010417, 1.10, 0.15, -0.22, 0.020 +20010418, 3.92, -1.50, -2.54, 0.020 +20010419, 1.48, 0.34, -1.38, 0.020 +20010420, -0.87, 0.10, 0.16, 0.020 +20010423, -1.72, 0.34, 1.22, 0.020 +20010424, -1.15, 1.07, 1.00, 0.020 +20010425, 1.68, 0.77, -0.90, 0.020 +20010426, 0.45, 0.26, 0.26, 0.020 +20010427, 1.47, -0.09, -0.44, 0.020 +20010430, 0.03, 0.73, -0.51, 0.020 +20010501, 1.37, 0.05, -0.73, 0.015 +20010502, 0.33, 0.50, -0.95, 0.015 +20010503, -1.58, 0.26, 0.92, 0.015 +20010504, 1.45, -0.15, 0.01, 0.015 +20010507, -0.34, -0.07, 0.23, 0.015 +20010508, -0.09, 0.60, 0.15, 0.015 +20010509, -0.49, 0.08, 0.48, 0.015 +20010510, -0.10, 0.10, 0.58, 0.015 +20010511, -0.74, 0.21, 0.76, 0.015 +20010514, 0.11, -0.27, 0.68, 0.015 +20010515, 0.06, 0.49, 0.18, 0.015 +20010516, 2.78, -1.11, -1.15, 0.015 +20010517, 0.52, 0.75, -0.41, 0.015 +20010518, 0.22, 0.18, -0.01, 0.015 +20010521, 1.87, 0.18, -1.41, 0.015 +20010522, -0.15, 0.31, 0.23, 0.015 +20010523, -1.71, -0.08, 0.73, 0.015 +20010524, 0.41, 0.48, -0.44, 0.015 +20010525, -1.04, 0.81, 0.32, 0.015 +20010529, -1.06, -0.34, 1.21, 0.015 +20010530, -1.74, -0.23, 1.73, 0.015 +20010531, 0.73, -0.28, -0.16, 0.015 +20010601, 0.54, 0.73, -0.31, 0.013 +20010604, 0.49, 0.68, -0.19, 0.013 +20010605, 1.45, 0.39, -1.19, 0.013 +20010606, -0.97, 0.04, 0.12, 0.013 +20010607, 0.54, 0.23, -1.12, 0.013 +20010608, -0.99, 0.07, 0.66, 0.013 +20010611, -0.98, 0.04, 0.75, 0.013 +20010612, 0.02, -0.12, 0.08, 0.013 +20010613, -1.06, 0.57, 0.72, 0.013 +20010614, -1.96, 0.02, 0.76, 0.013 +20010615, -0.46, 0.00, 0.39, 0.013 +20010618, -0.63, -0.96, 1.08, 0.013 +20010619, 0.21, -0.56, 0.04, 0.013 +20010620, 1.07, 0.31, -0.56, 0.013 +20010621, 0.98, -0.25, -0.13, 0.013 +20010622, -1.00, -0.31, 0.00, 0.013 +20010625, -0.54, 0.42, -0.33, 0.013 +20010626, -0.04, 1.42, -0.17, 0.013 +20010627, -0.22, 0.85, -0.04, 0.013 +20010628, 1.31, 0.06, -0.86, 0.013 +20010629, 0.35, 2.47, -0.87, 0.013 +20010702, 0.56, -3.32, 1.31, 0.014 +20010703, -0.21, -0.03, 0.13, 0.014 +20010705, -1.24, 0.23, 0.47, 0.014 +20010706, -2.29, 0.36, 0.95, 0.014 +20010709, 0.59, -0.31, 0.77, 0.014 +20010710, -1.49, -0.80, 2.15, 0.014 +20010711, -0.18, -0.48, 0.28, 0.014 +20010712, 2.44, 0.19, -0.86, 0.014 +20010713, 0.54, 0.26, -0.49, 0.014 +20010716, -1.16, -0.20, 1.19, 0.014 +20010717, 1.05, 0.46, -0.74, 0.014 +20010718, -0.69, -0.70, 0.59, 0.014 +20010719, 0.51, 0.65, -0.71, 0.014 +20010720, -0.33, 0.71, -0.16, 0.014 +20010723, -1.55, 0.62, 0.34, 0.014 +20010724, -1.70, 0.08, 0.15, 0.014 +20010725, 1.37, -1.03, -0.09, 0.014 +20010726, 1.19, -0.37, 0.08, 0.014 +20010727, 0.26, -0.39, 0.05, 0.014 +20010730, -0.12, 0.04, 0.18, 0.014 +20010731, 0.50, -0.50, 0.13, 0.014 +20010801, 0.48, 0.38, -0.08, 0.013 +20010802, 0.33, -0.29, 0.06, 0.013 +20010803, -0.49, 0.20, 0.10, 0.013 +20010806, -1.16, -0.21, 0.81, 0.013 +20010807, 0.21, -0.38, 0.18, 0.013 +20010808, -1.72, 0.08, 0.78, 0.013 +20010809, -0.06, 0.41, -0.52, 0.013 +20010810, 0.44, -0.40, 0.11, 0.013 +20010813, 0.23, 0.18, -0.14, 0.013 +20010814, -0.30, 0.51, 0.45, 0.013 +20010815, -0.75, 0.52, 0.15, 0.013 +20010816, 0.21, -0.01, 0.25, 0.013 +20010817, -1.63, 0.54, 0.36, 0.013 +20010820, 0.71, 0.04, -0.57, 0.013 +20010821, -1.22, -0.22, 0.78, 0.013 +20010822, 0.71, 0.33, -0.68, 0.013 +20010823, -0.31, -0.29, -0.10, 0.013 +20010824, 1.84, -0.12, -0.82, 0.013 +20010827, -0.42, 0.33, -0.47, 0.013 +20010828, -1.46, 0.18, 0.88, 0.013 +20010829, -0.98, 0.87, 0.09, 0.013 +20010830, -1.60, 0.32, 0.63, 0.013 +20010831, 0.42, -0.38, 0.29, 0.013 +20010904, -0.12, -0.39, 0.65, 0.018 +20010905, -0.32, -0.65, 0.54, 0.018 +20010906, -2.13, 0.27, 0.44, 0.018 +20010907, -1.83, 0.38, -0.52, 0.018 +20010910, 0.37, -1.08, -0.49, 0.018 +20010917, -5.03, 0.25, -0.80, 0.018 +20010918, -0.82, -1.45, 1.19, 0.018 +20010919, -1.67, -0.79, 0.00, 0.018 +20010920, -3.05, -0.82, -0.10, 0.018 +20010921, -1.96, -0.39, -0.58, 0.018 +20010924, 3.82, -0.08, -0.29, 0.018 +20010925, 0.74, -0.61, 0.75, 0.018 +20010926, -0.67, -0.82, 0.24, 0.018 +20010927, 1.10, -1.06, 0.40, 0.018 +20010928, 2.25, 0.42, 0.52, 0.018 +20011001, -0.45, -1.03, -0.18, 0.010 +20011002, 1.17, -0.34, -0.28, 0.010 +20011003, 2.28, 0.53, -1.10, 0.010 +20011004, -0.12, 1.52, -0.75, 0.010 +20011005, 0.04, 0.23, -1.22, 0.010 +20011008, -0.80, 0.29, 0.39, 0.010 +20011009, -0.51, -0.35, 0.02, 0.010 +20011010, 2.35, 0.32, -0.57, 0.010 +20011011, 1.73, 0.24, -0.38, 0.010 +20011012, -0.57, 0.46, -0.40, 0.010 +20011015, -0.09, 0.55, -0.25, 0.010 +20011016, 0.78, 0.46, -0.69, 0.010 +20011017, -2.02, 0.21, 0.16, 0.010 +20011018, -0.73, 0.35, -0.19, 0.010 +20011019, 0.54, 0.69, -0.75, 0.010 +20011022, 1.51, -0.39, -0.47, 0.010 +20011023, -0.51, 0.04, -0.16, 0.010 +20011024, 0.08, 0.54, -1.11, 0.010 +20011025, 1.42, 0.70, -1.34, 0.010 +20011026, 0.41, 0.29, 0.10, 0.010 +20011029, -2.33, 0.38, 0.81, 0.010 +20011030, -1.76, 0.40, 0.67, 0.010 +20011031, 0.18, 1.36, -0.25, 0.010 +20011101, 2.10, -0.56, -0.72, 0.008 +20011102, 0.18, -0.82, 0.48, 0.008 +20011105, 1.42, -0.60, -0.32, 0.008 +20011106, 1.44, -0.39, -0.05, 0.008 +20011107, -0.23, 0.06, -0.35, 0.008 +20011108, 0.07, -0.40, 0.48, 0.008 +20011109, 0.07, 0.00, -0.13, 0.008 +20011112, -0.07, 0.77, -0.43, 0.008 +20011113, 1.86, -0.41, -0.01, 0.008 +20011114, 0.34, 0.44, 0.54, 0.008 +20011115, 0.00, -1.08, 1.37, 0.008 +20011116, -0.25, 0.52, 0.49, 0.008 +20011119, 1.15, 0.22, -0.35, 0.008 +20011120, -0.80, 0.10, 0.15, 0.008 +20011121, -0.48, 0.41, -0.29, 0.008 +20011123, 1.17, 0.00, 0.00, 0.008 +20011126, 0.72, -0.14, -0.16, 0.008 +20011127, -0.55, 0.58, 0.23, 0.008 +20011128, -1.78, 0.12, 1.02, 0.008 +20011129, 1.15, 0.97, -0.48, 0.008 +20011130, -0.14, -0.20, 0.28, 0.008 +20011203, -0.86, -0.07, 0.32, 0.007 +20011204, 1.44, 0.69, -0.40, 0.007 +20011205, 2.31, 0.07, -0.63, 0.007 +20011206, -0.12, 0.21, 0.78, 0.007 +20011207, -0.74, 0.76, 0.03, 0.007 +20011210, -1.52, 0.67, -0.36, 0.007 +20011211, -0.20, 0.45, -0.13, 0.007 +20011212, 0.04, 0.16, -0.04, 0.007 +20011213, -1.51, 0.41, 0.23, 0.007 +20011214, 0.31, 0.35, 0.50, 0.007 +20011217, 1.05, 0.22, 0.10, 0.007 +20011218, 0.84, 0.43, -0.72, 0.007 +20011219, 0.43, -0.74, -0.36, 0.007 +20011220, -0.93, -1.22, 1.26, 0.007 +20011221, 0.57, 1.31, 0.12, 0.007 +20011224, 0.02, 0.28, 0.06, 0.007 +20011226, 0.50, 0.53, -0.28, 0.007 +20011227, 0.69, 0.03, -0.37, 0.007 +20011228, 0.41, -0.36, 0.12, 0.007 +20011231, -1.04, 0.22, 0.79, 0.007 +20020102, 0.42, -0.61, 0.13, 0.007 +20020103, 0.99, 0.88, -0.54, 0.007 +20020104, 0.70, 0.13, 0.31, 0.007 +20020107, -0.70, -0.44, 0.87, 0.007 +20020108, -0.23, 1.17, 0.24, 0.007 +20020109, -0.45, 0.19, -0.15, 0.007 +20020110, 0.08, -0.08, 0.26, 0.007 +20020111, -0.86, -0.08, 0.29, 0.007 +20020114, -0.85, -0.57, -0.05, 0.007 +20020115, 0.67, -0.47, 0.20, 0.007 +20020116, -1.62, 0.12, 0.59, 0.007 +20020117, 1.06, 0.38, -0.63, 0.007 +20020118, -1.08, -0.56, 0.88, 0.007 +20020122, -0.81, -0.22, 0.09, 0.007 +20020123, 0.92, 0.69, -0.16, 0.007 +20020124, 0.40, -0.30, 0.31, 0.007 +20020125, 0.09, -0.24, 0.38, 0.007 +20020128, 0.05, 0.12, 0.62, 0.007 +20020129, -2.54, 1.36, 0.22, 0.007 +20020130, 1.05, 0.28, -0.76, 0.007 +20020131, 1.35, -0.59, 0.21, 0.007 +20020201, -0.71, 0.37, -0.31, 0.007 +20020204, -2.37, 0.72, 0.16, 0.007 +20020205, -0.35, 0.29, -0.43, 0.007 +20020206, -0.78, -0.37, -0.11, 0.007 +20020207, -0.41, -1.17, 0.99, 0.007 +20020208, 1.59, -0.29, 0.32, 0.007 +20020211, 1.33, -0.25, -0.48, 0.007 +20020212, -0.28, 0.68, -0.49, 0.007 +20020213, 0.99, -0.02, -0.12, 0.007 +20020214, -0.24, -0.59, -0.16, 0.007 +20020215, -1.12, 0.90, 0.15, 0.007 +20020219, -1.94, 0.27, 0.52, 0.007 +20020220, 1.33, -0.35, 0.39, 0.007 +20020221, -1.52, -0.49, 0.70, 0.007 +20020222, 0.75, 0.43, 0.00, 0.007 +20020225, 1.66, -1.38, 0.43, 0.007 +20020226, 0.11, 0.28, 0.10, 0.007 +20020227, 0.08, -0.01, 0.43, 0.007 +20020228, -0.31, -0.27, 0.53, 0.007 +20020301, 2.22, -0.50, -0.40, 0.007 +20020304, 1.98, -0.42, -0.29, 0.007 +20020305, -0.54, 0.63, -0.02, 0.007 +20020306, 1.39, -0.10, 0.30, 0.007 +20020307, -0.42, 0.58, 0.14, 0.007 +20020308, 0.72, 0.41, -0.12, 0.007 +20020311, 0.29, 0.11, -0.04, 0.007 +20020312, -0.28, 0.32, -0.13, 0.007 +20020313, -0.91, 0.51, 0.03, 0.007 +20020314, -0.05, 0.43, -0.06, 0.007 +20020315, 1.06, -1.01, 0.31, 0.007 +20020318, 0.09, 0.65, 0.05, 0.007 +20020319, 0.34, 0.11, -0.14, 0.007 +20020320, -1.50, 0.45, 0.65, 0.007 +20020321, 0.31, 1.06, -0.33, 0.007 +20020322, -0.42, -0.18, 0.27, 0.007 +20020325, -1.45, 0.62, -0.02, 0.007 +20020326, 0.60, 0.49, -0.13, 0.007 +20020327, 0.55, -0.06, 0.64, 0.007 +20020328, 0.29, -0.16, 0.31, 0.007 +20020401, -0.12, -0.08, -0.11, 0.007 +20020402, -0.92, 0.25, 0.19, 0.007 +20020403, -0.98, 0.31, 0.42, 0.007 +20020404, 0.12, -0.09, 0.52, 0.007 +20020405, -0.26, -0.21, 0.83, 0.007 +20020408, 0.35, 0.52, 0.14, 0.007 +20020409, -0.60, 0.44, 0.69, 0.007 +20020410, 1.15, 0.67, -0.30, 0.007 +20020411, -2.22, 0.84, 0.79, 0.007 +20020412, 0.84, 1.04, 0.12, 0.007 +20020415, -0.67, 0.46, -0.08, 0.007 +20020416, 2.26, -0.61, 0.59, 0.007 +20020417, -0.24, -0.45, 0.30, 0.007 +20020418, -0.14, 0.49, -0.61, 0.007 +20020419, 0.07, -0.25, 0.23, 0.007 +20020422, -1.50, 0.85, -0.53, 0.007 +20020423, -0.52, 0.16, 0.46, 0.007 +20020424, -0.66, 0.05, 0.47, 0.007 +20020425, -0.11, 0.18, 0.00, 0.007 +20020426, -1.41, -0.01, 0.28, 0.007 +20020429, -0.88, 0.92, -0.58, 0.007 +20020430, 1.20, 0.55, 0.11, 0.007 +20020501, 0.74, -0.97, 0.70, 0.007 +20020502, -0.21, 0.54, 0.30, 0.007 +20020503, -0.96, 0.59, 0.72, 0.007 +20020506, -1.84, -0.01, 0.92, 0.007 +20020507, -0.36, -0.81, 0.81, 0.007 +20020508, 3.57, -0.86, -1.99, 0.007 +20020509, -1.43, -0.28, 0.70, 0.007 +20020510, -1.64, -0.13, 0.51, 0.007 +20020513, 1.75, -0.36, -1.02, 0.007 +20020514, 2.20, 0.52, -1.16, 0.007 +20020515, -0.40, 0.30, 0.60, 0.007 +20020516, 0.35, -0.77, -0.78, 0.007 +20020517, 0.69, -0.18, -0.44, 0.007 +20020520, -1.28, -0.18, 1.04, 0.007 +20020521, -1.16, -0.31, 0.26, 0.007 +20020522, 0.37, -0.64, -0.13, 0.007 +20020523, 1.05, 0.01, -0.07, 0.007 +20020524, -1.17, -0.35, 0.66, 0.007 +20020528, -0.75, 0.69, -0.41, 0.007 +20020529, -0.67, -0.18, 0.22, 0.007 +20020530, -0.24, 0.23, -0.06, 0.007 +20020531, 0.19, -0.17, 0.22, 0.007 +20020603, -2.43, -0.72, 1.30, 0.006 +20020604, -0.11, 0.08, -0.71, 0.006 +20020605, 0.83, -0.17, -0.31, 0.006 +20020606, -1.91, -0.32, 0.99, 0.006 +20020607, 0.08, 0.78, -0.10, 0.006 +20020610, 0.21, -0.27, -0.29, 0.006 +20020611, -1.70, 0.56, 0.44, 0.006 +20020612, 0.54, 0.05, -1.33, 0.006 +20020613, -1.10, -0.28, 0.42, 0.006 +20020614, -0.07, 0.72, -0.70, 0.006 +20020617, 2.77, -0.14, -0.94, 0.006 +20020618, 0.05, -0.41, 0.59, 0.006 +20020619, -1.63, -0.03, 0.50, 0.006 +20020620, -1.37, 1.29, -0.13, 0.006 +20020621, -1.53, 1.23, 1.37, 0.006 +20020624, 0.18, -0.08, -0.53, 0.006 +20020625, -1.69, 0.49, 0.06, 0.006 +20020626, -0.27, 1.09, -1.09, 0.006 +20020627, 1.68, 0.39, -1.18, 0.006 +20020628, 0.12, 0.08, 1.83, 0.006 +20020701, -2.32, -0.25, 0.37, 0.007 +20020702, -2.27, -1.01, 0.03, 0.007 +20020703, 0.41, -1.27, -0.16, 0.007 +20020705, 3.55, -0.81, -0.74, 0.007 +20020708, -1.21, -0.20, 0.34, 0.007 +20020709, -2.36, 1.31, 1.00, 0.007 +20020710, -3.03, 1.36, -0.19, 0.007 +20020711, 0.56, -1.34, -0.50, 0.007 +20020712, -0.55, 0.00, -0.53, 0.007 +20020715, -0.45, -0.57, -0.45, 0.007 +20020716, -1.50, 1.34, -0.91, 0.007 +20020717, 0.63, 0.02, -0.31, 0.007 +20020718, -2.70, -0.52, 0.99, 0.007 +20020719, -3.38, 1.08, 0.10, 0.007 +20020722, -3.18, 1.23, 0.41, 0.007 +20020723, -2.86, -0.26, -1.59, 0.007 +20020724, 5.43, -1.71, -1.67, 0.007 +20020725, -0.52, 0.24, -0.06, 0.007 +20020726, 1.49, -0.57, 0.23, 0.007 +20020729, 5.39, -0.99, -0.14, 0.007 +20020730, 0.42, -0.69, -0.02, 0.007 +20020731, 0.65, -2.53, 0.06, 0.007 +20020801, -2.68, 1.50, 1.03, 0.006 +20020802, -2.36, -0.30, -0.67, 0.006 +20020805, -3.34, 1.05, 0.52, 0.006 +20020806, 3.03, 0.19, -0.51, 0.006 +20020807, 1.81, -1.04, -0.39, 0.006 +20020808, 3.05, -1.55, -0.53, 0.006 +20020809, 0.30, -0.66, 0.04, 0.006 +20020812, -0.43, 0.41, -0.15, 0.006 +20020813, -2.15, -0.33, 0.55, 0.006 +20020814, 3.76, -0.73, -0.91, 0.006 +20020815, 1.17, -1.43, 0.62, 0.006 +20020816, 0.06, 1.22, -0.15, 0.006 +20020819, 2.17, -0.85, -0.05, 0.006 +20020820, -1.30, 0.26, 0.82, 0.006 +20020821, 1.36, 0.51, 0.34, 0.006 +20020822, 1.32, -0.45, -0.33, 0.006 +20020823, -2.25, 0.27, -0.01, 0.006 +20020826, 0.83, 0.63, 0.40, 0.006 +20020827, -1.55, -1.10, 0.94, 0.006 +20020828, -1.79, -0.32, 0.27, 0.006 +20020829, 0.21, 0.60, -0.45, 0.006 +20020830, -0.28, -0.41, 0.88, 0.006 +20020903, -3.95, 1.07, 0.62, 0.007 +20020904, 1.83, 0.69, -0.13, 0.007 +20020905, -1.62, -0.56, 0.09, 0.007 +20020906, 1.82, 0.48, 0.13, 0.007 +20020909, 0.92, -0.61, -0.52, 0.007 +20020910, 0.66, -0.03, -0.25, 0.007 +20020911, -0.03, -0.24, 0.28, 0.007 +20020912, -2.37, 0.83, 0.35, 0.007 +20020913, 0.38, 0.41, 0.04, 0.007 +20020916, 0.02, -0.67, -0.30, 0.007 +20020917, -1.91, 0.19, 0.60, 0.007 +20020918, -0.45, -0.44, 0.20, 0.007 +20020919, -2.96, 0.26, 0.34, 0.007 +20020920, 0.19, -0.05, 0.27, 0.007 +20020923, -1.48, -0.83, 0.09, 0.007 +20020924, -1.54, 1.06, -0.61, 0.007 +20020925, 2.44, 0.05, -1.11, 0.007 +20020926, 1.74, -0.81, 1.02, 0.007 +20020927, -2.98, 0.52, 0.64, 0.007 +20020930, -1.28, 1.47, -0.40, 0.007 +20021001, 3.56, -1.88, -0.50, 0.006 +20021002, -2.31, 0.51, 0.34, 0.006 +20021003, -1.14, 0.64, -0.15, 0.006 +20021004, -2.25, 0.18, -0.20, 0.006 +20021007, -2.00, -0.28, -0.36, 0.006 +20021008, 1.54, -0.38, -1.81, 0.006 +20021009, -2.77, -0.03, -1.04, 0.006 +20021010, 3.41, -2.03, 0.28, 0.006 +20021011, 3.74, -1.43, -0.30, 0.006 +20021014, 0.77, 0.23, -1.19, 0.006 +20021015, 4.57, -1.10, 0.22, 0.006 +20021016, -2.42, 0.14, 0.20, 0.006 +20021017, 2.40, 0.83, -0.62, 0.006 +20021018, 0.49, -0.15, -0.48, 0.006 +20021021, 1.65, -0.88, 0.56, 0.006 +20021022, -1.11, -0.60, 0.63, 0.006 +20021023, 0.76, 0.71, 0.19, 0.006 +20021024, -1.44, 0.68, 0.28, 0.006 +20021025, 1.69, 0.14, -0.48, 0.006 +20021028, -0.83, 0.00, -0.25, 0.006 +20021029, -0.87, 1.05, -0.18, 0.006 +20021030, 1.03, 0.43, -0.63, 0.006 +20021031, -0.41, 0.25, 0.36, 0.006 +20021101, 1.73, 0.80, -0.54, 0.006 +20021104, 0.79, 0.32, -0.55, 0.006 +20021105, 0.63, -1.03, 0.26, 0.006 +20021106, 0.98, 0.51, 0.41, 0.006 +20021107, -2.22, 0.44, -0.29, 0.006 +20021108, -0.92, -0.14, 0.28, 0.006 +20021111, -2.09, -0.42, 0.49, 0.006 +20021112, 0.83, 0.51, -0.25, 0.006 +20021113, 0.02, 0.47, -0.30, 0.006 +20021114, 2.43, 0.26, -0.90, 0.006 +20021115, 0.61, -0.78, -0.11, 0.006 +20021118, -1.00, 0.29, -0.17, 0.006 +20021119, -0.48, -0.27, 0.27, 0.006 +20021120, 1.93, 0.57, -0.94, 0.006 +20021121, 2.16, -0.32, 0.05, 0.006 +20021122, -0.22, 0.58, 0.24, 0.006 +20021125, 0.36, 0.85, 0.06, 0.006 +20021126, -2.03, 0.57, 0.58, 0.006 +20021127, 2.78, 0.10, -0.14, 0.006 +20021129, -0.32, -0.65, 0.53, 0.006 +20021202, -0.10, 0.63, -0.12, 0.005 +20021203, -1.54, 0.30, -0.71, 0.005 +20021204, -0.38, -0.34, 0.50, 0.005 +20021205, -1.11, 0.11, 0.70, 0.005 +20021206, 0.61, -0.10, -0.11, 0.005 +20021209, -2.26, -0.23, 0.30, 0.005 +20021210, 1.44, 0.31, -0.13, 0.005 +20021211, 0.10, -0.27, 0.32, 0.005 +20021212, -0.27, 0.63, 0.30, 0.005 +20021213, -1.37, -0.43, 0.42, 0.005 +20021216, 2.21, -0.50, -0.34, 0.005 +20021217, -0.76, -0.29, 0.43, 0.005 +20021218, -1.34, -0.42, 0.07, 0.005 +20021219, -0.70, 0.49, 0.38, 0.005 +20021220, 1.23, -0.47, -0.41, 0.005 +20021223, 0.24, 0.44, -0.06, 0.005 +20021224, -0.52, 0.18, 0.05, 0.005 +20021226, -0.19, 0.33, 0.09, 0.005 +20021227, -1.53, 0.42, 0.01, 0.005 +20021230, 0.34, -0.86, 0.06, 0.005 +20021231, 0.12, 0.00, 0.57, 0.005 +20030102, 3.14, -0.86, -0.32, 0.005 +20030103, -0.11, -0.42, 0.04, 0.005 +20030106, 2.13, -0.60, -0.41, 0.005 +20030107, -0.63, 0.28, -0.17, 0.005 +20030108, -1.34, 0.10, 0.43, 0.005 +20030109, 1.89, -0.11, -0.48, 0.005 +20030110, 0.04, 0.05, 0.18, 0.005 +20030113, -0.12, 0.14, 0.19, 0.005 +20030114, 0.55, 0.08, -0.17, 0.005 +20030115, -1.32, 0.67, 0.56, 0.005 +20030116, -0.34, 0.22, 0.18, 0.005 +20030117, -1.40, -0.39, 0.70, 0.005 +20030121, -1.53, 0.52, -0.35, 0.005 +20030122, -0.94, 0.51, -0.49, 0.005 +20030123, 0.99, 0.10, -0.65, 0.005 +20030124, -2.78, 0.50, 0.57, 0.005 +20030127, -1.65, 0.23, -0.12, 0.005 +20030128, 1.26, 0.08, -0.45, 0.005 +20030129, 0.63, -0.19, -0.14, 0.005 +20030130, -2.13, 0.74, -0.37, 0.005 +20030131, 1.28, -0.32, 0.24, 0.005 +20030203, 0.37, -0.69, -0.07, 0.005 +20030204, -1.34, 1.11, -0.19, 0.005 +20030205, -0.49, 0.17, 0.06, 0.005 +20030206, -0.64, 0.02, 0.13, 0.005 +20030207, -1.06, -0.45, -0.25, 0.005 +20030210, 0.69, 0.08, 0.06, 0.005 +20030211, -0.71, 0.33, -0.32, 0.005 +20030212, -1.25, 0.18, 0.11, 0.005 +20030213, -0.26, -0.09, -0.24, 0.005 +20030214, 1.90, -0.78, -0.66, 0.005 +20030218, 1.97, -0.42, -0.13, 0.005 +20030219, -0.70, -0.29, 0.03, 0.005 +20030220, -0.83, 0.86, -0.16, 0.005 +20030221, 1.31, -0.15, -0.07, 0.005 +20030224, -1.78, 0.45, -0.11, 0.005 +20030225, 0.70, 0.11, -0.19, 0.005 +20030226, -1.22, 0.15, 0.44, 0.005 +20030227, 1.15, -0.26, -0.14, 0.005 +20030228, 0.41, -0.69, 0.22, 0.005 +20030303, -0.67, 0.13, 0.42, 0.005 +20030304, -1.44, 0.96, -0.54, 0.005 +20030305, 0.78, -0.90, -0.02, 0.005 +20030306, -0.84, 0.16, 0.02, 0.005 +20030307, 0.76, -0.67, -0.16, 0.005 +20030310, -2.36, 0.83, 0.10, 0.005 +20030311, -0.81, 0.92, -0.70, 0.005 +20030312, 0.32, -0.38, -0.41, 0.005 +20030313, 3.39, -0.94, -0.62, 0.005 +20030314, 0.13, -0.50, 0.15, 0.005 +20030317, 3.41, -0.83, -0.25, 0.005 +20030318, 0.44, 0.48, -0.65, 0.005 +20030319, 0.72, -0.45, -0.23, 0.005 +20030320, 0.28, 0.09, 0.36, 0.005 +20030321, 2.19, -0.85, -0.05, 0.005 +20030324, -3.36, 1.24, 0.18, 0.005 +20030325, 1.21, -0.08, -0.03, 0.005 +20030326, -0.55, -0.17, -0.28, 0.005 +20030327, -0.09, 0.65, -0.01, 0.005 +20030328, -0.48, 0.29, 0.22, 0.005 +20030331, -1.65, 0.73, 0.42, 0.005 +20030401, 1.12, -0.25, 0.24, 0.005 +20030402, 2.60, -0.36, -0.87, 0.005 +20030403, -0.49, 0.40, 0.01, 0.005 +20030404, 0.15, -0.73, 0.39, 0.005 +20030407, 0.18, 0.38, 0.58, 0.005 +20030408, -0.24, -0.29, 0.09, 0.005 +20030409, -1.28, 0.47, 0.77, 0.005 +20030410, 0.52, -0.24, -0.25, 0.005 +20030411, -0.32, 0.01, -0.05, 0.005 +20030414, 1.88, -0.46, 0.00, 0.005 +20030415, 0.62, 0.08, -0.39, 0.005 +20030416, -1.11, 0.56, 0.18, 0.005 +20030417, 1.52, 0.02, -0.04, 0.005 +20030421, -0.11, 0.35, 0.12, 0.005 +20030422, 2.07, -0.90, 0.24, 0.005 +20030423, 0.89, -0.27, 0.31, 0.005 +20030424, -0.81, 0.58, -0.23, 0.005 +20030425, -1.30, 0.66, -0.11, 0.005 +20030428, 1.76, -0.05, -0.11, 0.005 +20030429, 0.34, -0.21, -0.21, 0.005 +20030430, 0.03, 0.73, 0.25, 0.005 +20030501, -0.03, 0.43, -0.26, 0.004 +20030502, 1.56, 0.52, -0.49, 0.004 +20030505, -0.19, 0.82, -0.38, 0.004 +20030506, 0.80, -0.18, 0.04, 0.004 +20030507, -0.46, -0.05, 0.58, 0.004 +20030508, -0.99, 0.50, 0.14, 0.004 +20030509, 1.39, 0.12, -0.22, 0.004 +20030512, 1.25, -0.12, -0.11, 0.004 +20030513, -0.23, 0.47, 0.30, 0.004 +20030514, -0.23, 0.29, 0.01, 0.004 +20030515, 0.74, -0.10, -0.14, 0.004 +20030516, -0.31, -1.59, 1.01, 0.004 +20030519, -2.30, 0.80, 0.04, 0.004 +20030520, -0.12, 0.11, -0.10, 0.004 +20030521, 0.41, -0.22, 0.31, 0.004 +20030522, 0.96, -0.18, -0.08, 0.004 +20030523, 0.26, 0.27, 0.39, 0.004 +20030527, 1.95, 0.45, -1.05, 0.004 +20030528, 0.22, 0.70, -0.41, 0.004 +20030529, -0.26, 1.02, 0.08, 0.004 +20030530, 1.53, 0.26, 0.10, 0.004 +20030602, 0.39, -0.40, 0.75, 0.005 +20030603, 0.39, 0.15, -0.57, 0.005 +20030604, 1.56, 0.14, -0.04, 0.005 +20030605, 0.55, 0.90, -0.75, 0.005 +20030606, -0.33, -0.17, -0.30, 0.005 +20030609, -1.31, -0.20, 0.18, 0.005 +20030610, 0.95, 0.39, 0.10, 0.005 +20030611, 1.29, -0.48, 0.38, 0.005 +20030612, 0.18, 0.05, 0.34, 0.005 +20030613, -1.02, -0.18, 0.12, 0.005 +20030616, 2.15, -0.39, -0.48, 0.005 +20030617, 0.13, 0.21, -0.13, 0.005 +20030618, -0.15, 0.32, -0.23, 0.005 +20030619, -1.49, 0.05, 0.74, 0.005 +20030620, 0.05, -0.19, 0.11, 0.005 +20030623, -1.52, -0.60, 0.23, 0.005 +20030624, 0.19, 0.07, 0.13, 0.005 +20030625, -0.60, 1.07, -0.08, 0.005 +20030626, 1.12, 0.42, -0.51, 0.005 +20030627, -0.84, 0.58, 0.20, 0.005 +20030630, -0.17, -0.11, 0.43, 0.005 +20030701, 0.73, -0.39, -0.15, 0.003 +20030702, 1.28, 1.06, 0.05, 0.003 +20030703, -0.72, 0.26, -0.08, 0.003 +20030707, 1.91, -0.10, 0.26, 0.003 +20030708, 0.51, 1.31, -0.04, 0.003 +20030709, -0.34, 1.02, 0.26, 0.003 +20030710, -1.33, -0.07, -0.23, 0.003 +20030711, 0.92, 0.07, -0.06, 0.003 +20030714, 0.73, 0.18, 0.13, 0.003 +20030715, -0.41, 0.08, -0.04, 0.003 +20030716, -0.64, 0.25, -0.27, 0.003 +20030717, -1.45, -1.27, -0.40, 0.003 +20030718, 1.08, -0.17, 0.02, 0.003 +20030721, -1.42, 0.03, -0.38, 0.003 +20030722, 0.97, 0.33, 0.34, 0.003 +20030723, 0.18, 0.62, -1.00, 0.003 +20030724, -0.65, 0.31, 0.39, 0.003 +20030725, 1.51, -0.64, -0.24, 0.003 +20030728, -0.02, 0.98, 0.36, 0.003 +20030729, -0.57, 0.54, 0.02, 0.003 +20030730, -0.18, 0.27, -0.61, 0.003 +20030731, 0.32, 0.26, 0.40, 0.003 +20030801, -1.06, -0.49, -0.06, 0.003 +20030804, 0.11, -0.66, -0.30, 0.003 +20030805, -1.71, 0.38, 0.01, 0.003 +20030806, 0.02, -1.03, 0.46, 0.003 +20030807, 0.57, -0.48, -0.47, 0.003 +20030808, 0.33, -0.46, 0.16, 0.003 +20030811, 0.43, 0.72, -0.03, 0.003 +20030812, 1.09, 0.51, 0.05, 0.003 +20030813, -0.50, 0.69, 0.06, 0.003 +20030814, 0.62, 0.11, 0.44, 0.003 +20030815, 0.10, 0.19, -0.14, 0.003 +20030818, 1.03, 0.85, 0.09, 0.003 +20030819, 0.43, 0.99, 0.61, 0.003 +20030820, -0.14, 0.34, 0.06, 0.003 +20030821, 0.47, 0.61, 0.41, 0.003 +20030822, -1.06, -0.58, 0.12, 0.003 +20030825, -0.04, -0.07, -0.31, 0.003 +20030826, 0.29, 0.16, 0.19, 0.003 +20030827, 0.17, 0.82, 0.06, 0.003 +20030828, 0.70, 0.26, 0.22, 0.003 +20030829, 0.53, -0.32, 0.33, 0.003 +20030902, 1.40, 0.48, 0.02, 0.004 +20030903, 0.42, 0.32, 0.14, 0.004 +20030904, 0.22, 0.46, -0.17, 0.004 +20030905, -0.62, -0.05, 0.20, 0.004 +20030908, 1.07, 0.62, -0.12, 0.004 +20030909, -0.79, 0.33, -0.22, 0.004 +20030910, -1.37, -0.64, -0.60, 0.004 +20030911, 0.62, 0.64, 0.03, 0.004 +20030912, 0.23, 0.15, 0.16, 0.004 +20030915, -0.35, 0.24, -0.07, 0.004 +20030916, 1.40, 0.10, 0.06, 0.004 +20030917, -0.26, 0.19, 0.18, 0.004 +20030918, 1.25, -0.57, 0.25, 0.004 +20030919, -0.23, 0.49, 0.02, 0.004 +20030922, -1.30, 0.16, 0.14, 0.004 +20030923, 0.65, 0.57, -0.10, 0.004 +20030924, -1.88, -0.20, 0.08, 0.004 +20030925, -0.81, -1.65, -0.21, 0.004 +20030926, -0.84, -1.26, 0.04, 0.004 +20030929, 0.98, 0.51, 0.02, 0.004 +20030930, -0.96, -0.05, 0.15, 0.004 +20031001, 2.16, 0.38, 0.09, 0.003 +20031002, 0.31, 0.15, 0.07, 0.003 +20031003, 1.02, 0.69, -0.01, 0.003 +20031006, 0.49, 0.37, 0.36, 0.003 +20031007, 0.51, 0.34, 0.10, 0.003 +20031008, -0.48, -0.29, 0.19, 0.003 +20031009, 0.55, 0.27, 0.38, 0.003 +20031010, -0.08, -0.43, 0.41, 0.003 +20031013, 0.81, 0.79, 0.09, 0.003 +20031014, 0.44, 0.48, 0.16, 0.003 +20031015, -0.36, -0.28, -0.04, 0.003 +20031016, 0.35, 0.10, 0.04, 0.003 +20031017, -1.11, -0.52, 0.05, 0.003 +20031020, 0.41, -0.11, -0.25, 0.003 +20031021, 0.24, 0.68, -0.31, 0.003 +20031022, -1.52, -0.68, -0.02, 0.003 +20031023, 0.22, -0.74, -0.22, 0.003 +20031024, -0.45, -0.41, -0.01, 0.003 +20031027, 0.40, 1.16, 0.30, 0.003 +20031028, 1.59, 0.50, -0.22, 0.003 +20031029, 0.28, 0.79, 0.31, 0.003 +20031030, -0.11, -0.12, 0.27, 0.003 +20031031, 0.28, -0.56, -0.09, 0.003 +20031103, 0.93, 0.68, 0.41, 0.004 +20031104, -0.45, 0.74, 0.41, 0.004 +20031105, -0.04, 0.23, -0.09, 0.004 +20031106, 0.58, 0.11, 0.10, 0.004 +20031107, -0.33, 0.36, 0.30, 0.004 +20031110, -0.74, -1.02, -0.02, 0.004 +20031111, -0.21, -0.59, -0.10, 0.004 +20031112, 1.33, 1.01, -0.21, 0.004 +20031113, 0.03, 0.20, -0.21, 0.004 +20031114, -0.83, -0.62, -0.07, 0.004 +20031117, -0.72, -0.68, -0.19, 0.004 +20031118, -0.87, 0.12, 0.09, 0.004 +20031119, 0.76, 0.06, -0.02, 0.004 +20031120, -0.77, 0.13, 0.03, 0.004 +20031121, 0.21, 0.15, 0.60, 0.004 +20031124, 1.71, 0.74, -0.03, 0.004 +20031125, 0.31, 0.23, 0.59, 0.004 +20031126, 0.40, -0.07, 0.42, 0.004 +20031128, 0.11, 0.26, -0.17, 0.004 +20031201, 1.11, 0.40, -0.12, 0.004 +20031202, -0.27, 0.13, 0.13, 0.004 +20031203, -0.34, -1.19, 0.42, 0.004 +20031204, 0.26, -0.41, -0.23, 0.004 +20031205, -0.79, -0.06, -0.07, 0.004 +20031208, 0.65, -0.17, 0.36, 0.004 +20031209, -0.95, -0.60, 0.19, 0.004 +20031210, -0.29, -1.02, -0.23, 0.004 +20031211, 1.34, 1.23, 0.15, 0.004 +20031212, 0.31, 0.54, 0.31, 0.004 +20031215, -0.73, -1.39, 0.16, 0.004 +20031216, 0.50, -0.31, 0.02, 0.004 +20031217, 0.15, -0.05, -0.10, 0.004 +20031218, 1.24, 0.27, 0.22, 0.004 +20031219, -0.04, -0.13, 0.40, 0.004 +20031222, 0.36, -0.09, 0.46, 0.004 +20031223, 0.36, 0.70, -0.06, 0.004 +20031224, -0.18, -0.24, 0.12, 0.004 +20031226, 0.19, 0.34, 0.06, 0.004 +20031229, 1.29, 0.36, -0.04, 0.004 +20031230, 0.05, 0.24, 0.15, 0.004 +20031231, 0.01, -1.39, 0.02, 0.004 +20040102, -0.17, 0.82, 0.43, 0.003 +20040105, 1.20, 0.42, 0.01, 0.003 +20040106, 0.20, 0.09, 0.18, 0.003 +20040107, 0.34, 0.54, -0.06, 0.003 +20040108, 0.45, 0.35, 0.64, 0.003 +20040109, -0.72, 0.04, 0.21, 0.003 +20040112, 0.57, 0.93, 0.08, 0.003 +20040113, -0.51, 0.19, 0.09, 0.003 +20040114, 0.80, -0.07, 0.41, 0.003 +20040115, 0.15, 0.03, -0.28, 0.003 +20040116, 0.72, 0.10, 0.56, 0.003 +20040120, 0.15, 1.18, 0.58, 0.003 +20040121, 0.64, -1.08, 0.46, 0.003 +20040122, -0.32, -0.63, 0.05, 0.003 +20040123, -0.14, 0.93, -0.26, 0.003 +20040126, 1.12, -0.10, -0.33, 0.003 +20040127, -0.96, -0.03, 0.04, 0.003 +20040128, -1.44, -0.34, -0.44, 0.003 +20040129, 0.25, -0.96, -0.84, 0.003 +20040130, -0.15, 0.30, 0.37, 0.003 +20040202, 0.27, -0.31, -0.26, 0.003 +20040203, 0.00, -0.13, -0.16, 0.003 +20040204, -0.97, -1.57, -0.52, 0.003 +20040205, 0.23, 0.46, 0.25, 0.003 +20040206, 1.39, 1.05, 0.35, 0.003 +20040209, -0.10, 0.36, 0.21, 0.003 +20040210, 0.56, 0.58, 0.13, 0.003 +20040211, 1.04, -0.39, 0.17, 0.003 +20040212, -0.46, -0.12, -0.15, 0.003 +20040213, -0.57, -0.71, -0.18, 0.003 +20040217, 0.98, 0.35, 0.54, 0.003 +20040218, -0.39, -0.09, 0.04, 0.003 +20040219, -0.54, -1.03, -0.07, 0.003 +20040220, -0.30, -0.10, -0.35, 0.003 +20040223, -0.51, -1.20, -0.11, 0.003 +20040224, -0.14, 0.34, -0.27, 0.003 +20040225, 0.54, 0.50, 0.15, 0.003 +20040226, 0.29, 0.48, 0.35, 0.003 +20040227, 0.11, 0.19, 0.36, 0.003 +20040301, 1.02, 0.52, 0.26, 0.004 +20040302, -0.59, -0.12, 0.18, 0.004 +20040303, 0.14, -0.17, -0.20, 0.004 +20040304, 0.44, 0.81, 0.20, 0.004 +20040305, 0.24, -0.12, -0.21, 0.004 +20040308, -0.84, -0.35, 0.23, 0.004 +20040309, -0.66, -0.44, -0.34, 0.004 +20040310, -1.50, -0.28, -0.45, 0.004 +20040311, -1.42, 0.35, -0.13, 0.004 +20040312, 1.34, 1.02, 0.21, 0.004 +20040315, -1.56, -1.09, -0.24, 0.004 +20040316, 0.43, -0.63, -0.12, 0.004 +20040317, 1.22, 0.70, 0.45, 0.004 +20040318, -0.20, -0.53, 0.13, 0.004 +20040319, -1.00, 0.33, 0.26, 0.004 +20040322, -1.42, -0.66, -0.20, 0.004 +20040323, -0.09, 0.36, 0.04, 0.004 +20040324, -0.27, -0.07, -0.14, 0.004 +20040325, 1.68, 0.77, -0.29, 0.004 +20040326, 0.00, 0.34, 0.39, 0.004 +20040329, 1.34, 0.59, -0.21, 0.004 +20040330, 0.47, 0.43, 0.23, 0.004 +20040331, 0.00, 0.14, 0.18, 0.004 +20040401, 0.64, 0.27, 0.00, 0.004 +20040402, 0.90, 0.82, 0.08, 0.004 +20040405, 0.79, 0.11, -0.31, 0.004 +20040406, -0.28, -0.77, 0.21, 0.004 +20040407, -0.50, 0.92, -0.18, 0.004 +20040408, -0.14, -0.31, 0.11, 0.004 +20040412, 0.50, 0.24, -0.29, 0.004 +20040413, -1.50, -0.58, -0.39, 0.004 +20040414, -0.21, -0.30, -0.44, 0.004 +20040415, -0.04, -0.24, -0.38, 0.004 +20040416, 0.46, -0.06, 0.17, 0.004 +20040419, 0.22, 0.52, -0.35, 0.004 +20040420, -1.48, -0.29, 0.13, 0.004 +20040421, 0.60, 0.48, 0.08, 0.004 +20040422, 1.44, 0.09, 0.05, 0.004 +20040423, -0.01, -0.28, -0.07, 0.004 +20040426, -0.33, -0.05, -0.27, 0.004 +20040427, 0.13, -0.09, -0.06, 0.004 +20040428, -1.46, -0.92, -0.12, 0.004 +20040429, -0.86, -0.81, -0.65, 0.004 +20040430, -0.66, -0.84, -0.01, 0.004 +20040503, 0.85, 0.00, -0.40, 0.003 +20040504, 0.21, 0.43, 0.16, 0.003 +20040505, 0.27, -0.11, -0.25, 0.003 +20040506, -0.80, -0.36, -0.21, 0.003 +20040507, -1.48, -0.65, -0.54, 0.003 +20040510, -1.29, -0.53, -0.48, 0.003 +20040511, 0.95, 0.85, 0.15, 0.003 +20040512, 0.12, -0.22, -0.01, 0.003 +20040513, -0.08, -0.26, 0.02, 0.003 +20040514, -0.17, -0.62, -0.03, 0.003 +20040517, -1.13, -0.40, -0.34, 0.003 +20040518, 0.76, 0.34, 0.35, 0.003 +20040519, -0.19, 0.03, 0.47, 0.003 +20040520, 0.02, -0.13, 0.11, 0.003 +20040521, 0.44, 0.44, -0.01, 0.003 +20040524, 0.29, 0.67, 0.57, 0.003 +20040525, 1.66, 0.56, 0.04, 0.003 +20040526, 0.29, 0.14, 0.02, 0.003 +20040527, 0.51, -0.29, -0.08, 0.003 +20040528, 0.02, -0.03, 0.09, 0.003 +20040601, 0.14, 0.67, -0.04, 0.004 +20040602, 0.31, -0.23, -0.15, 0.004 +20040603, -0.90, -0.96, -0.06, 0.004 +20040604, 0.57, 0.38, 0.05, 0.004 +20040607, 1.57, 0.17, 0.33, 0.004 +20040608, 0.08, -0.17, -0.05, 0.004 +20040609, -1.04, -0.51, 0.03, 0.004 +20040610, 0.36, -0.29, 0.39, 0.004 +20040614, -1.05, -0.57, -0.55, 0.004 +20040615, 0.71, 1.04, 0.22, 0.004 +20040616, 0.14, 0.20, 0.06, 0.004 +20040617, -0.14, 0.00, 0.12, 0.004 +20040618, 0.19, -0.20, 0.22, 0.004 +20040621, -0.42, 0.10, 0.16, 0.004 +20040622, 0.38, 0.22, 0.05, 0.004 +20040623, 0.90, 0.53, 0.19, 0.004 +20040624, -0.23, 0.01, 0.15, 0.004 +20040625, -0.23, 1.24, 0.08, 0.004 +20040628, -0.25, -0.06, -0.15, 0.004 +20040629, 0.31, 0.57, -0.04, 0.004 +20040630, 0.48, 0.11, 0.30, 0.004 +20040701, -1.06, -0.50, 0.55, 0.005 +20040702, -0.28, 0.19, 0.37, 0.005 +20040706, -0.94, -0.88, 1.03, 0.005 +20040707, 0.15, -0.33, 0.25, 0.005 +20040708, -0.96, -0.94, 0.27, 0.005 +20040709, 0.31, 0.16, -0.13, 0.005 +20040712, 0.04, -0.48, 0.39, 0.005 +20040713, 0.09, 0.06, 0.14, 0.005 +20040714, -0.33, -0.34, 0.50, 0.005 +20040715, -0.32, 0.64, 0.06, 0.005 +20040716, -0.56, -0.73, 0.66, 0.005 +20040719, -0.12, -0.24, 0.59, 0.005 +20040720, 0.83, 0.92, -0.81, 0.005 +20040721, -1.49, -1.21, 0.75, 0.005 +20040722, 0.14, -0.46, -0.53, 0.005 +20040723, -1.03, -0.45, 0.83, 0.005 +20040726, -0.39, -0.71, 0.26, 0.005 +20040727, 1.10, 1.00, -0.50, 0.005 +20040728, -0.09, -0.63, 0.36, 0.005 +20040729, 0.66, 0.90, -0.49, 0.005 +20040730, 0.14, 0.19, -0.32, 0.005 +20040802, 0.36, -0.44, 0.28, 0.005 +20040803, -0.75, -0.88, 0.81, 0.005 +20040804, -0.20, 0.04, 0.02, 0.005 +20040805, -1.63, -0.22, 0.48, 0.005 +20040806, -1.59, -0.90, 0.73, 0.005 +20040809, 0.02, -0.38, 0.01, 0.005 +20040810, 1.39, 0.76, -0.37, 0.005 +20040811, -0.29, -0.39, 0.14, 0.005 +20040812, -1.18, -0.50, 0.27, 0.005 +20040813, 0.10, -0.05, 0.04, 0.005 +20040816, 1.40, 0.38, 0.04, 0.005 +20040817, 0.30, 0.12, -0.60, 0.005 +20040818, 1.34, 0.75, -0.78, 0.005 +20040819, -0.38, -0.26, 0.23, 0.005 +20040820, 0.79, 0.90, -0.30, 0.005 +20040823, -0.32, -0.37, -0.31, 0.005 +20040824, 0.03, 0.15, 0.14, 0.005 +20040825, 0.84, 0.14, -0.50, 0.005 +20040826, -0.05, -0.49, 0.39, 0.005 +20040827, 0.33, 0.49, -0.22, 0.005 +20040830, -0.86, -0.45, 0.37, 0.005 +20040831, 0.48, 0.04, 0.15, 0.005 +20040901, 0.30, 0.56, -0.40, 0.005 +20040902, 1.09, 0.26, -0.16, 0.005 +20040903, -0.45, -0.25, 0.42, 0.005 +20040907, 0.73, 0.32, 0.04, 0.005 +20040908, -0.48, -0.34, 0.01, 0.005 +20040909, 0.34, 1.22, -0.37, 0.005 +20040910, 0.53, 0.14, -0.65, 0.005 +20040913, 0.30, 0.41, -0.48, 0.005 +20040914, 0.19, -0.45, -0.17, 0.005 +20040915, -0.67, 0.17, 0.33, 0.005 +20040916, 0.36, 0.44, 0.35, 0.005 +20040917, 0.35, -0.54, -0.01, 0.005 +20040920, -0.51, 0.19, 0.07, 0.005 +20040921, 0.66, 0.36, -0.08, 0.005 +20040922, -1.37, -0.47, 0.55, 0.005 +20040923, -0.37, 0.39, -0.08, 0.005 +20040924, 0.14, -0.20, 0.36, 0.005 +20040927, -0.71, -0.63, 0.36, 0.005 +20040928, 0.63, 0.64, -0.24, 0.005 +20040929, 0.50, 0.67, -0.66, 0.005 +20040930, 0.06, 0.10, 0.52, 0.005 +20041001, 1.48, 0.58, -0.14, 0.005 +20041004, 0.38, 0.35, -0.16, 0.005 +20041005, -0.11, -0.18, 0.08, 0.005 +20041006, 0.69, 0.12, 0.14, 0.005 +20041007, -1.05, -0.61, 0.30, 0.005 +20041008, -0.80, -0.49, 0.62, 0.005 +20041011, 0.23, 0.20, -0.45, 0.005 +20041012, -0.23, -0.06, 0.27, 0.005 +20041013, -0.75, -0.36, -0.37, 0.005 +20041014, -0.92, 0.09, -0.34, 0.005 +20041015, 0.45, 0.27, 0.05, 0.005 +20041018, 0.51, 0.01, -0.79, 0.005 +20041019, -0.92, 0.14, -0.53, 0.005 +20041020, 0.11, 0.49, -0.13, 0.005 +20041021, 0.37, 0.76, -0.06, 0.005 +20041022, -1.00, -0.59, 0.64, 0.005 +20041025, -0.03, 0.66, 0.50, 0.005 +20041026, 1.36, -0.60, 0.65, 0.005 +20041027, 1.39, 0.38, -1.12, 0.005 +20041028, 0.13, -0.34, -0.06, 0.005 +20041029, 0.18, -0.53, 0.24, 0.005 +20041101, 0.06, 0.37, 0.06, 0.007 +20041102, -0.01, -0.15, -0.01, 0.007 +20041103, 1.17, 0.45, -0.05, 0.007 +20041104, 1.51, -0.65, 0.28, 0.007 +20041105, 0.44, 0.28, -0.32, 0.007 +20041108, -0.13, -0.26, 0.03, 0.007 +20041109, 0.05, 0.69, -0.02, 0.007 +20041110, -0.01, 0.47, 0.28, 0.007 +20041111, 0.90, 0.10, -0.22, 0.007 +20041112, 0.86, -0.02, -0.10, 0.007 +20041115, 0.07, 0.34, -0.26, 0.007 +20041116, -0.66, -0.18, 0.31, 0.007 +20041117, 0.64, 0.32, -0.11, 0.007 +20041118, 0.05, -0.18, 0.05, 0.007 +20041119, -1.11, -0.17, 0.74, 0.007 +20041122, 0.60, 0.47, 0.36, 0.007 +20041123, 0.06, 0.30, 0.35, 0.007 +20041124, 0.47, 0.31, 0.12, 0.007 +20041126, 0.12, 0.17, 0.30, 0.007 +20041129, -0.21, 0.86, -0.15, 0.007 +20041130, -0.37, 0.16, 0.11, 0.007 +20041201, 1.48, 0.06, -0.76, 0.007 +20041202, -0.07, 0.11, -0.57, 0.007 +20041203, 0.04, -0.17, 0.11, 0.007 +20041206, -0.13, -0.40, -0.07, 0.007 +20041207, -1.16, -0.90, 0.36, 0.007 +20041208, 0.46, 0.42, -0.41, 0.007 +20041209, 0.44, -0.75, 0.14, 0.007 +20041210, -0.01, 0.46, 0.18, 0.007 +20041213, 0.86, -0.03, -0.04, 0.007 +20041214, 0.45, 0.51, -0.19, 0.007 +20041215, 0.33, 0.39, 0.47, 0.007 +20041216, -0.28, -0.43, 0.34, 0.007 +20041217, -0.55, 0.49, 0.45, 0.007 +20041220, -0.13, -0.59, 0.39, 0.007 +20041221, 0.92, 0.26, -0.05, 0.007 +20041222, 0.39, 0.04, -0.15, 0.007 +20041223, 0.09, 0.21, -0.21, 0.007 +20041227, -0.45, -0.21, 0.02, 0.007 +20041228, 0.83, 0.76, -0.16, 0.007 +20041229, 0.01, -0.05, -0.03, 0.007 +20041230, 0.04, -0.03, -0.11, 0.007 +20041231, -0.14, -0.01, 0.20, 0.007 +20050103, -0.97, -0.62, -0.04, 0.008 +20050104, -1.30, -0.58, 0.44, 0.008 +20050105, -0.51, -1.11, 0.00, 0.008 +20050106, 0.34, -0.14, 0.13, 0.008 +20050107, -0.22, -0.76, -0.02, 0.008 +20050110, 0.42, 0.27, 0.04, 0.008 +20050111, -0.68, -0.35, 0.30, 0.008 +20050112, 0.38, -0.04, -0.16, 0.008 +20050113, -0.77, 0.13, 0.38, 0.008 +20050114, 0.66, 0.55, 0.07, 0.008 +20050118, 0.97, 0.16, -0.17, 0.008 +20050119, -0.97, -0.13, 0.48, 0.008 +20050120, -0.77, -0.12, -0.05, 0.008 +20050121, -0.56, 0.29, 0.25, 0.008 +20050124, -0.49, -0.80, 0.62, 0.008 +20050125, 0.34, 0.20, -0.37, 0.008 +20050126, 0.62, 0.95, -0.21, 0.008 +20050127, 0.08, 0.17, 0.04, 0.008 +20050128, -0.30, -0.26, 0.18, 0.008 +20050131, 0.97, 0.78, 0.16, 0.008 +20050201, 0.69, -0.08, 0.19, 0.009 +20050202, 0.36, 0.25, 0.17, 0.009 +20050203, -0.27, -0.17, 0.40, 0.009 +20050204, 1.12, 0.12, -0.56, 0.009 +20050207, -0.11, 0.13, -0.03, 0.009 +20050208, 0.08, 0.24, -0.17, 0.009 +20050209, -1.00, -1.18, 0.73, 0.009 +20050210, 0.35, -0.33, 0.05, 0.009 +20050211, 0.77, 0.43, -0.30, 0.009 +20050214, 0.09, -0.01, 0.13, 0.009 +20050215, 0.28, -0.36, -0.01, 0.009 +20050216, 0.07, 0.42, 0.39, 0.009 +20050217, -0.79, -0.30, 0.20, 0.009 +20050218, 0.01, -0.08, -0.05, 0.009 +20050222, -1.47, -0.31, -0.12, 0.009 +20050223, 0.53, -0.14, 0.24, 0.009 +20050224, 0.83, 0.24, -0.23, 0.009 +20050225, 0.97, 0.38, 0.38, 0.009 +20050228, -0.61, 0.27, 0.04, 0.009 +20050301, 0.58, 0.11, 0.02, 0.010 +20050302, -0.01, -0.18, 0.05, 0.010 +20050303, -0.01, 0.09, 0.55, 0.010 +20050304, 0.89, -0.03, 0.32, 0.010 +20050307, 0.27, -0.38, 0.00, 0.010 +20050308, -0.54, -0.40, -0.06, 0.010 +20050309, -0.96, 0.06, -0.07, 0.010 +20050310, 0.01, -0.83, -0.21, 0.010 +20050311, -0.55, 0.56, 0.51, 0.010 +20050314, 0.61, -0.22, 0.11, 0.010 +20050315, -0.67, 0.20, 0.27, 0.010 +20050316, -0.84, 0.22, 0.12, 0.010 +20050317, 0.19, 0.05, 0.52, 0.010 +20050318, -0.13, -0.31, -0.04, 0.010 +20050321, -0.38, 0.37, -0.20, 0.010 +20050322, -0.92, 0.69, -0.12, 0.010 +20050323, -0.12, -0.91, -0.50, 0.010 +20050324, 0.01, 0.45, -0.08, 0.010 +20050328, 0.15, -0.23, -0.03, 0.010 +20050329, -0.86, -0.83, 0.07, 0.010 +20050330, 1.35, 0.12, -0.22, 0.010 +20050331, 0.00, -0.05, 0.64, 0.010 +20050401, -0.64, 0.01, 0.42, 0.010 +20050404, 0.29, 0.00, 0.19, 0.010 +20050405, 0.40, -0.14, -0.25, 0.010 +20050406, 0.22, -0.11, 0.03, 0.010 +20050407, 0.57, 0.01, -0.17, 0.010 +20050408, -0.88, -0.45, 0.04, 0.010 +20050411, -0.09, -0.65, 0.03, 0.010 +20050412, 0.56, 0.24, -0.09, 0.010 +20050413, -1.22, -0.34, -0.17, 0.010 +20050414, -1.10, -0.56, -0.26, 0.010 +20050415, -1.59, -0.12, -0.37, 0.010 +20050418, 0.29, 0.32, 0.23, 0.010 +20050419, 0.75, 0.83, 0.12, 0.010 +20050420, -1.35, -0.23, 0.06, 0.010 +20050421, 1.87, 0.32, -0.57, 0.010 +20050422, -0.83, -0.84, 0.43, 0.010 +20050425, 0.93, 0.06, 0.00, 0.010 +20050426, -0.88, -0.52, -0.13, 0.010 +20050427, 0.30, -0.54, -0.24, 0.010 +20050428, -1.20, -0.99, 0.37, 0.010 +20050429, 1.04, -0.39, -0.03, 0.010 +20050502, 0.52, 0.47, 0.06, 0.011 +20050503, -0.04, -0.01, -0.31, 0.011 +20050504, 1.28, 0.27, 0.41, 0.011 +20050505, -0.19, 0.30, -0.39, 0.011 +20050506, -0.03, 0.33, 0.16, 0.011 +20050509, 0.61, 0.31, -0.04, 0.011 +20050510, -1.03, -0.15, 0.02, 0.011 +20050511, 0.39, -0.41, -0.13, 0.011 +20050512, -1.02, -0.18, -0.74, 0.011 +20050513, -0.50, -0.07, -0.67, 0.011 +20050516, 1.03, 0.49, -0.17, 0.011 +20050517, 0.66, -0.23, 0.29, 0.011 +20050518, 1.15, 0.95, -0.27, 0.011 +20050519, 0.47, -0.10, -0.08, 0.011 +20050520, -0.13, -0.04, 0.25, 0.011 +20050523, 0.43, 0.20, -0.02, 0.011 +20050524, 0.05, 0.01, 0.00, 0.011 +20050525, -0.44, -0.57, 0.19, 0.011 +20050526, 0.74, 0.65, 0.08, 0.011 +20050527, 0.18, 0.10, 0.31, 0.011 +20050531, -0.49, 0.47, 0.28, 0.011 +20050601, 0.90, 0.18, -0.01, 0.010 +20050602, 0.24, 0.14, -0.24, 0.010 +20050603, -0.67, -0.20, 0.48, 0.010 +20050606, 0.14, 0.32, 0.13, 0.010 +20050607, -0.03, 0.15, 0.09, 0.010 +20050608, -0.28, -0.39, 0.36, 0.010 +20050609, 0.58, 0.31, -0.11, 0.010 +20050610, -0.21, 0.11, 0.54, 0.010 +20050613, 0.28, 0.14, 0.17, 0.010 +20050614, 0.31, 0.49, 0.39, 0.010 +20050615, 0.22, 0.23, 0.21, 0.010 +20050616, 0.46, 0.63, -0.30, 0.010 +20050617, 0.36, -0.60, 0.20, 0.010 +20050620, -0.07, -0.32, 0.09, 0.010 +20050621, -0.18, 0.11, -0.05, 0.010 +20050622, 0.05, 0.28, -0.10, 0.010 +20050623, -1.07, -0.43, 0.14, 0.010 +20050624, -0.72, -0.04, 0.12, 0.010 +20050627, -0.07, -0.12, 0.55, 0.010 +20050628, 1.05, 1.10, -0.51, 0.010 +20050629, -0.07, 0.31, 0.12, 0.010 +20050630, -0.63, 0.20, 0.27, 0.010 +20050701, 0.32, 0.11, 0.30, 0.012 +20050705, 0.92, 0.58, -0.19, 0.012 +20050706, -0.73, 0.07, 0.07, 0.012 +20050707, 0.26, -0.11, -0.24, 0.012 +20050708, 1.21, 0.78, -0.55, 0.012 +20050711, 0.69, 0.78, -0.13, 0.012 +20050712, 0.20, -0.28, -0.04, 0.012 +20050713, 0.02, -0.41, 0.07, 0.012 +20050714, 0.14, -0.66, -0.44, 0.012 +20050715, 0.12, -0.03, -0.03, 0.012 +20050718, -0.55, -0.16, 0.10, 0.012 +20050719, 0.75, 0.91, -0.11, 0.012 +20050720, 0.54, 0.78, -0.26, 0.012 +20050721, -0.74, -0.61, 0.15, 0.012 +20050722, 0.57, 0.94, 0.54, 0.012 +20050725, -0.47, -0.52, 0.13, 0.012 +20050726, 0.21, 0.28, 0.23, 0.012 +20050727, 0.43, -0.38, -0.04, 0.012 +20050728, 0.67, 0.53, -0.18, 0.012 +20050729, -0.66, 0.24, 0.12, 0.012 +20050801, 0.15, 0.27, -0.12, 0.013 +20050802, 0.70, 0.05, 0.11, 0.013 +20050803, -0.02, -0.66, -0.04, 0.013 +20050804, -0.82, -0.84, 0.35, 0.013 +20050805, -0.81, -0.32, -0.02, 0.013 +20050808, -0.32, 0.01, 0.25, 0.013 +20050809, 0.55, -0.48, -0.07, 0.013 +20050810, -0.13, 0.02, 0.16, 0.013 +20050811, 0.71, 0.19, -0.08, 0.013 +20050812, -0.57, -0.39, 0.11, 0.013 +20050815, 0.30, 0.47, -0.13, 0.013 +20050816, -1.22, -0.46, 0.17, 0.013 +20050817, 0.05, 0.01, -0.06, 0.013 +20050818, -0.15, -0.43, 0.05, 0.013 +20050819, 0.07, 0.07, 0.17, 0.013 +20050822, 0.19, 0.50, 0.15, 0.013 +20050823, -0.31, -0.02, 0.01, 0.013 +20050824, -0.56, 0.46, 0.12, 0.013 +20050825, 0.21, 0.13, 0.20, 0.013 +20050826, -0.66, -0.57, -0.10, 0.013 +20050829, 0.65, 0.39, -0.22, 0.013 +20050830, -0.31, -0.03, 0.34, 0.013 +20050831, 1.10, 0.72, -0.06, 0.013 +20050901, 0.13, -0.03, 0.25, 0.014 +20050902, -0.36, -0.31, -0.01, 0.014 +20050906, 1.22, 0.30, -0.49, 0.014 +20050907, 0.30, 0.08, -0.14, 0.014 +20050908, -0.40, -0.12, -0.05, 0.014 +20050909, 0.73, -0.10, 0.13, 0.014 +20050912, 0.00, 0.54, -0.34, 0.014 +20050913, -0.76, -0.21, 0.13, 0.014 +20050914, -0.44, -0.67, 0.42, 0.014 +20050915, -0.02, -0.26, 0.30, 0.014 +20050916, 0.72, 0.15, -0.10, 0.014 +20050919, -0.55, -0.17, 0.22, 0.014 +20050920, -0.78, -0.11, 0.04, 0.014 +20050921, -1.03, -0.49, 0.30, 0.014 +20050922, 0.30, -0.07, -0.23, 0.014 +20050923, 0.15, 0.53, 0.19, 0.014 +20050926, 0.12, 0.53, 0.06, 0.014 +20050927, -0.02, -0.07, -0.08, 0.014 +20050928, 0.06, -0.60, 0.27, 0.014 +20050929, 0.92, 0.21, 0.04, 0.014 +20050930, 0.20, 0.32, -0.17, 0.014 +20051003, 0.00, 0.47, 0.02, 0.013 +20051004, -0.97, 0.22, -0.19, 0.013 +20051005, -1.63, -1.02, -0.25, 0.013 +20051006, -0.57, -0.34, 0.11, 0.013 +20051007, 0.42, 0.32, 0.25, 0.013 +20051010, -0.73, -0.07, -0.22, 0.013 +20051011, -0.33, -0.97, 0.14, 0.013 +20051012, -0.79, -0.54, 0.10, 0.013 +20051013, -0.09, 0.45, -0.55, 0.013 +20051014, 0.92, 0.50, -0.10, 0.013 +20051017, 0.29, -0.34, 0.11, 0.013 +20051018, -1.03, -0.02, -0.13, 0.013 +20051019, 1.45, 0.46, -0.19, 0.013 +20051020, -1.44, 0.01, -0.37, 0.013 +20051021, 0.32, 0.38, 0.24, 0.013 +20051024, 1.70, 0.15, 0.29, 0.013 +20051025, -0.30, -0.32, 0.09, 0.013 +20051026, -0.46, -0.23, 0.18, 0.013 +20051027, -1.24, -1.04, 0.42, 0.013 +20051028, 1.55, -0.03, 0.26, 0.013 +20051031, 0.96, 0.80, 0.04, 0.013 +20051101, -0.27, -0.23, 0.39, 0.015 +20051102, 1.15, 0.84, 0.00, 0.015 +20051103, 0.43, -0.10, -0.18, 0.015 +20051104, 0.01, 0.06, -0.28, 0.015 +20051107, 0.25, 0.22, -0.05, 0.015 +20051108, -0.37, -0.34, -0.04, 0.015 +20051109, 0.15, 0.25, -0.02, 0.015 +20051110, 0.80, -0.07, -0.59, 0.015 +20051111, 0.27, -0.03, -0.12, 0.015 +20051114, -0.10, -0.34, 0.06, 0.015 +20051115, -0.49, -0.65, -0.17, 0.015 +20051116, 0.11, -0.35, 0.00, 0.015 +20051117, 1.06, 0.68, -0.09, 0.015 +20051118, 0.43, 0.27, -0.16, 0.015 +20051121, 0.60, 0.43, -0.35, 0.015 +20051122, 0.48, -0.04, -0.01, 0.015 +20051123, 0.31, -0.27, 0.22, 0.015 +20051125, 0.18, -0.12, -0.08, 0.015 +20051128, -1.01, -0.71, 0.21, 0.015 +20051129, 0.01, 0.28, 0.28, 0.015 +20051130, -0.43, 1.14, -0.16, 0.015 +20051201, 1.27, 0.52, 0.13, 0.015 +20051202, 0.05, 0.06, -0.14, 0.015 +20051205, -0.30, -0.22, 0.08, 0.015 +20051206, 0.12, 0.06, 0.06, 0.015 +20051207, -0.49, -0.07, 0.06, 0.015 +20051208, -0.03, 0.25, 0.07, 0.015 +20051209, 0.27, 0.22, 0.05, 0.015 +20051212, 0.10, 0.12, -0.05, 0.015 +20051213, 0.44, -0.53, -0.21, 0.015 +20051214, 0.34, -0.25, 0.08, 0.015 +20051215, -0.23, -0.57, -0.37, 0.015 +20051216, -0.29, 0.03, -0.04, 0.015 +20051219, -0.73, -0.81, 0.28, 0.015 +20051220, -0.02, -0.02, 0.01, 0.015 +20051221, 0.33, 0.66, -0.35, 0.015 +20051222, 0.45, 0.12, -0.02, 0.015 +20051223, 0.08, 0.29, 0.00, 0.015 +20051227, -1.00, -0.44, 0.16, 0.015 +20051228, 0.19, 0.40, 0.12, 0.015 +20051229, -0.27, -0.02, 0.21, 0.015 +20051230, -0.50, -0.22, 0.26, 0.015 +20060103, 1.50, -0.19, 0.13, 0.017 +20060104, 0.46, 0.34, 0.03, 0.017 +20060105, 0.03, 0.28, -0.14, 0.017 +20060106, 0.92, 0.09, -0.23, 0.017 +20060109, 0.45, 0.52, -0.09, 0.017 +20060110, 0.05, 0.58, 0.02, 0.017 +20060111, 0.28, -0.25, -0.11, 0.017 +20060112, -0.65, 0.09, -0.03, 0.017 +20060113, 0.17, 0.13, 0.06, 0.017 +20060117, -0.40, -0.32, 0.22, 0.017 +20060118, -0.35, 0.36, 0.30, 0.017 +20060119, 0.63, 0.93, -0.08, 0.017 +20060120, -1.80, 0.37, 0.51, 0.017 +20060123, 0.18, 0.20, 0.43, 0.017 +20060124, 0.44, 1.03, 0.16, 0.017 +20060125, -0.22, -0.04, -0.11, 0.017 +20060126, 0.79, 0.81, 0.04, 0.017 +20060127, 0.67, -0.15, -0.17, 0.017 +20060130, 0.10, -0.26, 0.21, 0.017 +20060131, -0.21, 0.61, -0.03, 0.017 +20060201, 0.14, 0.18, 0.05, 0.018 +20060202, -0.88, -0.28, -0.06, 0.018 +20060203, -0.51, 0.23, 0.01, 0.018 +20060206, 0.10, 0.26, 0.50, 0.018 +20060207, -0.92, -0.48, -0.22, 0.018 +20060208, 0.77, -0.25, -0.09, 0.018 +20060209, -0.19, -0.16, -0.27, 0.018 +20060210, 0.15, -0.36, -0.05, 0.018 +20060213, -0.47, -0.50, 0.14, 0.018 +20060214, 1.01, 0.26, -0.11, 0.018 +20060215, 0.41, 0.41, -0.47, 0.018 +20060216, 0.75, 0.05, 0.22, 0.018 +20060217, -0.16, -0.05, 0.36, 0.018 +20060221, -0.38, -0.20, 0.14, 0.018 +20060222, 0.73, 0.01, -0.04, 0.018 +20060223, -0.29, 0.22, -0.22, 0.018 +20060224, 0.19, 0.35, 0.17, 0.018 +20060227, 0.40, 0.16, -0.36, 0.018 +20060228, -1.10, -0.21, 0.07, 0.018 +20060301, 0.90, 0.68, -0.04, 0.016 +20060302, -0.16, -0.08, 0.05, 0.016 +20060303, -0.15, -0.01, 0.07, 0.016 +20060306, -0.75, -0.21, -0.14, 0.016 +20060307, -0.40, -1.07, 0.05, 0.016 +20060308, 0.14, -0.05, 0.06, 0.016 +20060309, -0.51, -0.01, 0.29, 0.016 +20060310, 0.69, 0.39, 0.03, 0.016 +20060313, 0.24, -0.03, 0.10, 0.016 +20060314, 1.00, 0.04, -0.03, 0.016 +20060315, 0.48, 0.40, 0.15, 0.016 +20060316, 0.11, -0.13, 0.31, 0.016 +20060317, 0.18, 0.11, -0.32, 0.016 +20060320, -0.07, 0.17, -0.32, 0.016 +20060321, -0.69, -0.52, -0.10, 0.016 +20060322, 0.62, 0.49, 0.12, 0.016 +20060323, -0.18, 0.54, -0.01, 0.016 +20060324, 0.22, 0.66, 0.20, 0.016 +20060327, -0.07, 0.15, 0.25, 0.016 +20060328, -0.61, 0.24, -0.08, 0.016 +20060329, 0.87, 0.86, 0.14, 0.016 +20060330, -0.16, 0.16, -0.16, 0.016 +20060331, -0.23, 0.70, -0.04, 0.016 +20060403, 0.07, -0.88, 0.69, 0.019 +20060404, 0.54, -0.26, 0.13, 0.019 +20060405, 0.42, -0.03, 0.25, 0.019 +20060406, -0.15, 0.18, 0.01, 0.019 +20060407, -1.02, -0.12, -0.17, 0.019 +20060410, -0.02, -0.40, 0.05, 0.019 +20060411, -0.83, -0.67, 0.02, 0.019 +20060412, 0.19, 0.57, -0.03, 0.019 +20060413, 0.12, 0.38, -0.14, 0.019 +20060417, -0.28, 0.00, 0.30, 0.019 +20060418, 1.71, 0.67, 0.07, 0.019 +20060419, 0.33, 0.87, 0.07, 0.019 +20060420, 0.01, -0.49, 0.04, 0.019 +20060421, -0.10, -0.19, 0.30, 0.019 +20060424, -0.30, -0.41, 0.12, 0.019 +20060425, -0.44, 0.44, 0.01, 0.019 +20060426, 0.20, -0.09, 0.28, 0.019 +20060427, 0.24, -0.95, 0.00, 0.019 +20060428, 0.05, 0.13, 0.52, 0.019 +20060501, -0.41, 0.01, 0.47, 0.020 +20060502, 0.54, 0.20, 0.57, 0.020 +20060503, -0.31, 0.40, 0.07, 0.020 +20060504, 0.37, 0.59, -0.24, 0.020 +20060505, 1.04, -0.30, -0.02, 0.020 +20060508, -0.05, 0.08, 0.09, 0.020 +20060509, -0.01, -0.14, 0.20, 0.020 +20060510, -0.20, -0.59, 0.54, 0.020 +20060511, -1.35, -1.09, 0.23, 0.020 +20060512, -1.26, -0.72, -0.08, 0.020 +20060515, 0.04, -0.91, -0.29, 0.020 +20060516, -0.12, 0.10, 0.35, 0.020 +20060517, -1.66, 0.12, 0.16, 0.020 +20060518, -0.69, -0.34, 0.13, 0.020 +20060519, 0.38, 0.11, 0.00, 0.020 +20060522, -0.55, -0.76, 0.24, 0.020 +20060523, -0.44, 0.07, -0.01, 0.020 +20060524, 0.03, -0.08, -0.14, 0.020 +20060525, 1.22, 0.70, 0.01, 0.020 +20060526, 0.60, -0.16, -0.08, 0.020 +20060530, -1.65, -0.78, 0.13, 0.020 +20060531, 0.94, 0.36, 0.38, 0.020 +20060601, 1.29, 0.82, -0.17, 0.018 +20060602, 0.16, -0.07, 0.21, 0.018 +20060605, -1.94, -1.17, 0.20, 0.018 +20060606, -0.28, -0.17, -0.10, 0.018 +20060607, -0.57, 0.04, -0.18, 0.018 +20060608, 0.01, -0.26, 0.04, 0.018 +20060609, -0.44, -0.24, -0.05, 0.018 +20060612, -1.48, -1.27, 0.27, 0.018 +20060613, -1.15, -0.34, -0.41, 0.018 +20060614, 0.46, 0.18, -0.22, 0.018 +20060615, 2.33, 1.05, 0.27, 0.018 +20060616, -0.43, -0.72, 0.01, 0.018 +20060619, -1.01, -0.78, 0.15, 0.018 +20060620, -0.07, -0.38, 0.07, 0.018 +20060621, 1.11, 0.75, -0.17, 0.018 +20060622, -0.52, 0.15, 0.16, 0.018 +20060623, 0.03, 0.24, 0.22, 0.018 +20060626, 0.50, 0.53, 0.20, 0.018 +20060627, -1.00, -0.73, 0.29, 0.018 +20060628, 0.47, -0.37, 0.15, 0.018 +20060629, 2.29, 1.42, -0.25, 0.018 +20060630, -0.02, 1.15, 0.13, 0.018 +20060703, 0.72, -0.07, -0.24, 0.020 +20060705, -0.88, -0.55, 0.38, 0.020 +20060706, 0.23, -0.07, 0.02, 0.020 +20060707, -0.80, -0.85, 0.72, 0.020 +20060710, 0.04, -0.27, 0.51, 0.020 +20060711, 0.37, 0.32, -0.16, 0.020 +20060712, -1.21, -0.66, 0.35, 0.020 +20060713, -1.43, -0.55, 0.07, 0.020 +20060714, -0.60, -0.35, 0.15, 0.020 +20060717, -0.22, -0.45, 0.08, 0.020 +20060718, 0.17, 0.16, 0.30, 0.020 +20060719, 1.98, 0.90, -0.28, 0.020 +20060720, -1.11, -1.60, 0.60, 0.020 +20060721, -0.89, -0.86, 0.33, 0.020 +20060724, 1.75, 0.86, -0.49, 0.020 +20060725, 0.69, 0.20, 0.00, 0.020 +20060726, -0.13, -0.35, 0.47, 0.020 +20060727, -0.58, -0.73, 0.36, 0.020 +20060728, 1.31, 0.67, -0.15, 0.020 +20060731, -0.09, 0.26, -0.09, 0.020 +20060801, -0.60, -0.92, 0.34, 0.018 +20060802, 0.64, 0.28, -0.25, 0.018 +20060803, 0.27, 0.85, -0.46, 0.018 +20060804, -0.13, -0.45, 0.16, 0.018 +20060807, -0.35, -0.27, 0.10, 0.018 +20060808, -0.42, -0.80, 0.10, 0.018 +20060809, -0.52, -0.43, -0.01, 0.018 +20060810, 0.49, 0.36, -0.38, 0.018 +20060811, -0.49, -0.58, 0.19, 0.018 +20060814, 0.12, 0.25, -0.31, 0.018 +20060815, 1.46, 0.75, -0.42, 0.018 +20060816, 0.90, 0.63, -0.52, 0.018 +20060817, 0.18, 0.36, -0.18, 0.018 +20060818, 0.30, -0.17, -0.12, 0.018 +20060821, -0.48, -0.49, 0.15, 0.018 +20060822, 0.07, 0.28, 0.06, 0.018 +20060823, -0.55, -0.75, 0.15, 0.018 +20060824, 0.16, -0.21, 0.08, 0.018 +20060825, -0.07, 0.18, -0.09, 0.018 +20060828, 0.58, 0.40, -0.12, 0.018 +20060829, 0.33, 0.92, -0.12, 0.018 +20060830, 0.13, 0.75, -0.28, 0.018 +20060831, 0.03, 0.01, 0.23, 0.018 +20060901, 0.49, -0.27, -0.04, 0.020 +20060905, 0.21, 0.52, 0.01, 0.020 +20060906, -1.13, -1.01, 0.46, 0.020 +20060907, -0.50, -0.17, 0.21, 0.020 +20060908, 0.32, -0.08, -0.12, 0.020 +20060911, -0.03, -0.16, -0.08, 0.020 +20060912, 1.18, 1.15, -0.32, 0.020 +20060913, 0.45, 0.43, -0.08, 0.020 +20060914, -0.16, -0.25, 0.08, 0.020 +20060915, 0.21, 0.01, -0.29, 0.020 +20060918, 0.04, 0.00, -0.30, 0.020 +20060919, -0.29, -0.23, 0.19, 0.020 +20060920, 0.60, 0.53, 0.01, 0.020 +20060921, -0.59, -0.39, 0.07, 0.020 +20060922, -0.41, -0.89, 0.51, 0.020 +20060925, 0.86, 0.17, 0.09, 0.020 +20060926, 0.71, -0.35, -0.18, 0.020 +20060927, 0.08, 0.42, -0.27, 0.020 +20060928, 0.15, -0.10, -0.19, 0.020 +20060929, -0.33, -0.64, 0.25, 0.020 +20061002, -0.43, -0.55, 0.19, 0.018 +20061003, 0.13, -0.37, 0.46, 0.018 +20061004, 1.28, 0.73, -0.52, 0.018 +20061005, 0.43, 0.93, -0.37, 0.018 +20061006, -0.31, -0.04, -0.09, 0.018 +20061009, 0.20, 0.42, 0.11, 0.018 +20061010, 0.21, -0.04, 0.00, 0.018 +20061011, -0.30, -0.33, 0.23, 0.018 +20061012, 1.07, 0.93, -0.19, 0.018 +20061013, 0.22, 0.49, -0.06, 0.018 +20061016, 0.34, 0.62, -0.32, 0.018 +20061017, -0.44, -0.22, 0.41, 0.018 +20061018, 0.08, -0.32, 0.03, 0.018 +20061019, 0.10, 0.45, -0.09, 0.018 +20061020, -0.02, -0.73, 0.04, 0.018 +20061023, 0.56, -0.42, -0.19, 0.018 +20061024, 0.01, -0.22, 0.22, 0.018 +20061025, 0.32, 0.18, -0.09, 0.018 +20061026, 0.63, 0.41, 0.20, 0.018 +20061027, -0.88, -0.35, 0.12, 0.018 +20061030, 0.07, 0.43, -0.01, 0.018 +20061031, -0.07, -0.34, -0.11, 0.018 +20061101, -0.87, -0.99, 0.27, 0.020 +20061102, -0.05, -0.23, 0.05, 0.020 +20061103, -0.12, 0.52, -0.14, 0.020 +20061106, 1.16, 0.26, -0.11, 0.020 +20061107, 0.23, 0.06, -0.30, 0.020 +20061108, 0.29, 0.31, 0.33, 0.020 +20061109, -0.58, -0.39, 0.33, 0.020 +20061110, 0.26, 0.70, -0.03, 0.020 +20061113, 0.27, 0.18, 0.02, 0.020 +20061114, 0.71, 0.92, -0.23, 0.020 +20061115, 0.35, 0.58, -0.41, 0.020 +20061116, 0.16, -0.31, 0.11, 0.020 +20061117, 0.03, -0.37, -0.12, 0.020 +20061120, -0.06, 0.21, 0.05, 0.020 +20061121, 0.14, 0.04, -0.08, 0.020 +20061122, 0.28, -0.08, -0.25, 0.020 +20061124, -0.32, 0.24, 0.09, 0.020 +20061127, -1.53, -1.02, 0.32, 0.020 +20061128, 0.30, 0.01, -0.04, 0.020 +20061129, 0.95, 0.13, -0.04, 0.020 +20061130, 0.11, 0.13, 0.21, 0.020 +20061201, -0.30, -0.36, 0.11, 0.020 +20061204, 0.99, 0.86, -0.16, 0.020 +20061205, 0.41, -0.19, 0.24, 0.020 +20061206, -0.10, -0.09, 0.24, 0.020 +20061207, -0.41, -0.05, 0.08, 0.020 +20061208, 0.14, -0.16, 0.01, 0.020 +20061211, 0.18, -0.28, 0.65, 0.020 +20061212, -0.20, -0.51, 0.45, 0.020 +20061213, 0.09, -0.04, 0.17, 0.020 +20061214, 0.80, -0.13, -0.12, 0.020 +20061215, 0.07, -0.33, 0.40, 0.020 +20061218, -0.46, -0.95, 0.17, 0.020 +20061219, 0.16, -0.12, 0.04, 0.020 +20061220, -0.12, 0.56, 0.08, 0.020 +20061221, -0.38, 0.02, 0.35, 0.020 +20061222, -0.48, 0.29, 0.09, 0.020 +20061226, 0.44, 0.34, 0.37, 0.020 +20061227, 0.74, 0.51, -0.04, 0.020 +20061228, -0.18, -0.17, -0.01, 0.020 +20061229, -0.51, -0.26, -0.02, 0.020 +20070103, -0.04, 0.05, 0.14, 0.022 +20070104, 0.16, 0.24, -0.51, 0.022 +20070105, -0.73, -0.91, -0.33, 0.022 +20070108, 0.24, -0.07, 0.08, 0.022 +20070109, 0.00, 0.28, -0.20, 0.022 +20070110, 0.23, -0.08, -0.17, 0.022 +20070111, 0.74, 0.55, -0.29, 0.022 +20070112, 0.50, 0.21, -0.28, 0.022 +20070116, 0.00, -0.26, 0.06, 0.022 +20070117, -0.14, -0.21, -0.05, 0.022 +20070118, -0.48, -1.07, 0.53, 0.022 +20070119, 0.33, 0.43, 0.07, 0.022 +20070122, -0.55, -0.49, 0.34, 0.022 +20070123, 0.37, 0.60, 0.07, 0.022 +20070124, 0.84, 0.23, -0.05, 0.022 +20070125, -1.15, -0.07, -0.10, 0.022 +20070126, -0.06, 0.55, 0.10, 0.022 +20070129, 0.02, 0.59, 0.23, 0.022 +20070130, 0.52, -0.02, 0.22, 0.022 +20070131, 0.64, -0.42, 0.03, 0.022 +20070201, 0.59, 0.34, -0.24, 0.020 +20070202, 0.15, 0.10, 0.27, 0.020 +20070205, -0.12, -0.22, 0.13, 0.020 +20070206, 0.10, 0.28, 0.19, 0.020 +20070207, 0.21, 0.40, -0.01, 0.020 +20070208, -0.10, 0.24, -0.21, 0.020 +20070209, -0.76, -0.34, 0.15, 0.020 +20070212, -0.35, 0.19, 0.09, 0.020 +20070213, 0.72, -0.17, 0.33, 0.020 +20070214, 0.73, -0.50, -0.17, 0.020 +20070215, 0.11, 0.16, -0.37, 0.020 +20070216, 0.00, 0.26, 0.07, 0.020 +20070220, 0.42, 0.64, -0.18, 0.020 +20070221, -0.09, 0.30, -0.21, 0.020 +20070222, -0.06, 0.37, -0.12, 0.020 +20070223, -0.31, 0.14, -0.26, 0.020 +20070226, -0.19, -0.14, 0.09, 0.020 +20070227, -3.43, -0.18, 0.03, 0.020 +20070228, 0.47, -0.51, 0.35, 0.020 +20070301, -0.25, -0.09, 0.19, 0.019 +20070302, -1.24, -0.63, 0.23, 0.019 +20070305, -1.11, -0.69, -0.28, 0.019 +20070306, 1.58, 0.67, 0.00, 0.019 +20070307, -0.21, -0.06, -0.01, 0.019 +20070308, 0.68, -0.10, 0.11, 0.019 +20070309, 0.09, 0.28, 0.14, 0.019 +20070312, 0.28, 0.27, -0.12, 0.019 +20070313, -2.03, -0.26, -0.12, 0.019 +20070314, 0.57, 0.11, -0.09, 0.019 +20070315, 0.44, 0.49, 0.13, 0.019 +20070316, -0.42, -0.11, -0.17, 0.019 +20070319, 1.08, -0.11, 0.02, 0.019 +20070320, 0.67, 0.02, 0.14, 0.019 +20070321, 1.64, -0.15, -0.10, 0.019 +20070322, -0.02, 0.19, -0.31, 0.019 +20070323, 0.08, 0.08, 0.04, 0.019 +20070326, 0.06, -0.04, -0.08, 0.019 +20070327, -0.61, -0.21, -0.02, 0.019 +20070328, -0.74, 0.22, -0.04, 0.019 +20070329, 0.29, -0.20, 0.17, 0.019 +20070330, -0.07, 0.27, -0.05, 0.019 +20070402, 0.22, 0.09, -0.11, 0.022 +20070403, 0.93, 0.05, -0.12, 0.022 +20070404, 0.09, -0.17, -0.25, 0.022 +20070405, 0.31, 0.00, -0.08, 0.022 +20070409, 0.05, -0.24, 0.07, 0.022 +20070410, 0.22, 0.10, 0.02, 0.022 +20070411, -0.64, -0.10, 0.12, 0.022 +20070412, 0.61, 0.25, -0.19, 0.022 +20070413, 0.34, 0.24, -0.08, 0.022 +20070416, 1.06, 0.29, 0.11, 0.022 +20070417, 0.09, -0.42, -0.12, 0.022 +20070418, 0.00, -0.71, 0.44, 0.022 +20070419, -0.23, -0.38, 0.03, 0.022 +20070420, 0.89, 0.20, 0.04, 0.022 +20070423, -0.24, 0.07, -0.29, 0.022 +20070424, -0.10, -0.04, -0.24, 0.022 +20070425, 0.91, -0.35, 0.17, 0.022 +20070426, -0.02, 0.32, -0.34, 0.022 +20070427, -0.13, -0.30, -0.31, 0.022 +20070430, -0.93, -0.91, 0.02, 0.022 +20070501, 0.22, -0.09, 0.03, 0.018 +20070502, 0.79, 0.62, 0.02, 0.018 +20070503, 0.37, -0.36, 0.32, 0.018 +20070504, 0.25, 0.18, -0.02, 0.018 +20070507, 0.18, -0.37, 0.32, 0.018 +20070508, -0.13, -0.03, -0.11, 0.018 +20070509, 0.35, 0.07, -0.03, 0.018 +20070510, -1.42, -0.50, 0.29, 0.018 +20070511, 0.95, 0.18, 0.06, 0.018 +20070514, -0.28, -0.61, 0.07, 0.018 +20070515, -0.27, -0.80, 0.28, 0.018 +20070516, 0.82, -0.21, 0.05, 0.018 +20070517, -0.10, -0.34, 0.03, 0.018 +20070518, 0.66, 0.39, -0.49, 0.018 +20070521, 0.31, 0.93, -0.28, 0.018 +20070522, 0.08, 0.70, -0.04, 0.018 +20070523, -0.18, -0.21, -0.12, 0.018 +20070524, -1.07, -0.43, -0.04, 0.018 +20070525, 0.55, 0.23, -0.08, 0.018 +20070529, 0.24, 0.60, 0.01, 0.018 +20070530, 0.77, -0.23, -0.02, 0.018 +20070531, 0.13, 0.34, -0.30, 0.018 +20070601, 0.44, 0.36, -0.05, 0.019 +20070604, 0.18, 0.07, 0.00, 0.019 +20070605, -0.55, -0.12, -0.22, 0.019 +20070606, -0.92, 0.08, 0.05, 0.019 +20070607, -1.75, -0.04, 0.06, 0.019 +20070608, 1.07, -0.06, 0.03, 0.019 +20070611, 0.08, -0.29, 0.10, 0.019 +20070612, -1.06, -0.16, -0.18, 0.019 +20070613, 1.37, -0.20, -0.10, 0.019 +20070614, 0.50, 0.10, -0.06, 0.019 +20070615, 0.69, 0.52, -0.07, 0.019 +20070618, -0.13, 0.01, -0.11, 0.019 +20070619, 0.14, 0.00, 0.15, 0.019 +20070620, -1.29, 0.09, -0.18, 0.019 +20070621, 0.56, -0.16, 0.01, 0.019 +20070622, -1.25, 0.62, -0.01, 0.019 +20070625, -0.39, -0.42, -0.10, 0.019 +20070626, -0.35, 0.14, -0.31, 0.019 +20070627, 0.92, 0.47, -0.39, 0.019 +20070628, 0.03, 0.14, 0.15, 0.019 +20070629, -0.19, -0.35, 0.11, 0.019 +20070702, 1.06, -0.07, 0.11, 0.019 +20070703, 0.36, -0.05, -0.10, 0.019 +20070705, 0.07, 0.20, -0.60, 0.019 +20070706, 0.40, -0.07, -0.08, 0.019 +20070709, 0.10, 0.06, -0.06, 0.019 +20070710, -1.43, -0.15, -0.37, 0.019 +20070711, 0.55, -0.29, -0.10, 0.019 +20070712, 1.78, -0.18, -0.32, 0.019 +20070713, 0.28, -0.31, 0.08, 0.019 +20070716, -0.31, -0.46, -0.23, 0.019 +20070717, 0.02, 0.16, -0.23, 0.019 +20070718, -0.25, -0.21, -0.19, 0.019 +20070719, 0.44, 0.34, -0.48, 0.019 +20070720, -1.25, -0.27, -0.19, 0.019 +20070723, 0.36, -0.42, -0.42, 0.019 +20070724, -2.04, -0.53, -0.22, 0.019 +20070725, 0.30, -0.41, 0.08, 0.019 +20070726, -2.36, -0.01, -0.23, 0.019 +20070727, -1.51, -0.06, 0.14, 0.019 +20070730, 0.93, -0.24, -0.08, 0.019 +20070731, -1.19, 0.32, -0.02, 0.019 +20070801, 0.51, -0.50, -0.25, 0.018 +20070802, 0.55, 0.15, -0.36, 0.018 +20070803, -2.66, -0.63, -0.73, 0.018 +20070806, 2.07, -1.17, -0.41, 0.018 +20070807, 0.65, 0.27, -0.67, 0.018 +20070808, 1.47, 1.16, -0.73, 0.018 +20070809, -2.74, 1.65, -0.61, 0.018 +20070810, 0.03, 0.05, 1.35, 0.018 +20070813, -0.06, -1.15, 0.32, 0.018 +20070814, -1.83, -0.04, -0.19, 0.018 +20070815, -1.46, 0.04, -0.04, 0.018 +20070816, 0.31, 1.20, 1.16, 0.018 +20070817, 2.36, -0.42, 0.38, 0.018 +20070820, 0.00, 0.16, -0.32, 0.018 +20070821, 0.15, -0.06, 0.08, 0.018 +20070822, 1.20, 0.05, -0.01, 0.018 +20070823, -0.23, -0.98, 0.16, 0.018 +20070824, 1.21, 0.12, -0.22, 0.018 +20070827, -0.85, -0.11, -0.15, 0.018 +20070828, -2.33, -0.07, -0.41, 0.018 +20070829, 2.13, 0.11, 0.01, 0.018 +20070830, -0.43, 0.00, -0.48, 0.018 +20070831, 1.12, 0.05, -0.08, 0.018 +20070904, 1.03, -0.20, 0.05, 0.017 +20070905, -1.05, 0.03, -0.32, 0.017 +20070906, 0.42, 0.00, -0.19, 0.017 +20070907, -1.70, -0.30, 0.19, 0.017 +20070910, -0.27, -0.51, -0.22, 0.017 +20070911, 1.35, 0.05, -0.33, 0.017 +20070912, -0.03, -0.44, -0.20, 0.017 +20070913, 0.69, -0.68, 0.30, 0.017 +20070914, 0.10, 0.36, -0.06, 0.017 +20070917, -0.60, -0.44, 0.04, 0.017 +20070918, 2.88, 0.59, 0.36, 0.017 +20070919, 0.59, 0.60, 0.24, 0.017 +20070920, -0.65, -0.14, -0.31, 0.017 +20070921, 0.43, -0.24, -0.24, 0.017 +20070924, -0.56, -0.38, -0.63, 0.017 +20070925, -0.03, -0.29, -0.38, 0.017 +20070926, 0.60, 0.12, -0.08, 0.017 +20070927, 0.43, 0.20, -0.03, 0.017 +20070928, -0.37, -0.54, 0.03, 0.017 +20071001, 1.37, 0.81, 0.07, 0.014 +20071002, 0.11, 0.65, 0.18, 0.014 +20071003, -0.48, -0.22, -0.17, 0.014 +20071004, 0.18, -0.03, 0.05, 0.014 +20071005, 1.10, 0.64, -0.07, 0.014 +20071008, -0.27, -0.18, -0.29, 0.014 +20071009, 0.78, -0.23, -0.15, 0.014 +20071010, -0.13, 0.02, -0.40, 0.014 +20071011, -0.58, -0.67, 0.60, 0.014 +20071012, 0.51, 0.11, -0.31, 0.014 +20071015, -0.89, -0.39, -0.21, 0.014 +20071016, -0.67, -0.03, -0.28, 0.014 +20071017, 0.22, -0.15, -0.26, 0.014 +20071018, -0.10, 0.11, -0.39, 0.014 +20071019, -2.45, -0.47, 0.02, 0.014 +20071022, 0.47, 0.90, 0.06, 0.014 +20071023, 0.85, 0.06, -0.54, 0.014 +20071024, -0.33, -0.45, -0.21, 0.014 +20071025, -0.19, -0.31, -0.02, 0.014 +20071026, 1.38, 0.26, 0.37, 0.014 +20071029, 0.40, -0.27, -0.58, 0.014 +20071030, -0.64, 0.09, 0.13, 0.014 +20071031, 1.23, 0.04, -0.13, 0.014 +20071101, -2.66, -0.86, -0.43, 0.016 +20071102, 0.08, 0.19, -0.90, 0.016 +20071105, -0.59, -0.28, -0.11, 0.016 +20071106, 1.19, 0.02, -0.17, 0.016 +20071107, -2.77, -0.04, -0.46, 0.016 +20071108, -0.05, 0.54, 1.16, 0.016 +20071109, -1.46, 0.23, 0.87, 0.016 +20071112, -1.08, 0.38, 0.28, 0.016 +20071113, 2.81, -0.45, 0.05, 0.016 +20071114, -0.63, -0.22, -0.18, 0.016 +20071115, -1.25, 0.05, -0.06, 0.016 +20071116, 0.41, -0.62, -0.63, 0.016 +20071119, -1.81, -0.26, -0.37, 0.016 +20071120, 0.31, -0.56, -0.10, 0.016 +20071121, -1.54, 0.41, 0.09, 0.016 +20071123, 1.59, 0.17, 0.19, 0.016 +20071126, -2.09, -0.06, -0.65, 0.016 +20071127, 1.31, -0.54, -0.19, 0.016 +20071128, 2.90, 0.29, -0.20, 0.016 +20071129, 0.01, -0.50, -0.31, 0.016 +20071130, 0.70, -0.62, 0.86, 0.016 +20071203, -0.60, -0.53, 0.10, 0.014 +20071204, -0.61, -0.15, -0.16, 0.014 +20071205, 1.47, 0.02, -0.04, 0.014 +20071206, 1.55, 0.85, 0.27, 0.014 +20071207, -0.07, 0.04, -0.05, 0.014 +20071210, 0.71, -0.14, 0.24, 0.014 +20071211, -2.50, -0.26, -0.07, 0.014 +20071212, 0.48, 0.04, -0.20, 0.014 +20071213, 0.06, -0.33, -0.32, 0.014 +20071214, -1.36, -0.49, -0.26, 0.014 +20071217, -1.59, -0.20, 0.31, 0.014 +20071218, 0.65, 1.13, -0.01, 0.014 +20071219, -0.10, 0.31, -0.42, 0.014 +20071220, 0.64, 0.86, -0.39, 0.014 +20071221, 1.64, 0.33, -0.02, 0.014 +20071224, 0.80, 0.09, 0.21, 0.014 +20071226, 0.10, 0.22, -0.04, 0.014 +20071227, -1.49, -1.16, 0.04, 0.014 +20071228, 0.12, -0.37, -0.14, 0.014 +20071231, -0.65, 0.03, 0.42, 0.014 +20080102, -1.46, -0.10, -0.10, 0.010 +20080103, -0.14, -1.02, -0.37, 0.010 +20080104, -2.56, -0.50, 0.13, 0.010 +20080107, 0.16, 0.11, 0.13, 0.010 +20080108, -1.81, -0.43, -0.86, 0.010 +20080109, 1.10, -0.36, -0.64, 0.010 +20080110, 0.89, -0.16, 0.57, 0.010 +20080111, -1.42, -0.77, 0.25, 0.010 +20080114, 1.02, -0.04, -0.20, 0.010 +20080115, -2.39, 0.49, -0.12, 0.010 +20080116, -0.51, 0.82, 1.20, 0.010 +20080117, -2.80, 0.38, -0.11, 0.010 +20080118, -0.56, -0.24, -0.88, 0.010 +20080122, -0.98, 0.32, 1.19, 0.010 +20080123, 2.04, 0.68, 1.65, 0.010 +20080124, 1.02, -0.94, -0.53, 0.010 +20080125, -1.39, 0.82, 0.24, 0.010 +20080128, 1.71, 0.04, 0.99, 0.010 +20080129, 0.69, -0.48, 0.99, 0.010 +20080130, -0.59, -0.37, -0.10, 0.010 +20080131, 1.66, 0.84, 0.46, 0.010 +20080201, 1.48, 0.69, 0.05, 0.007 +20080204, -0.99, 0.18, -0.17, 0.007 +20080205, -3.01, 0.44, 0.03, 0.007 +20080206, -0.85, -0.37, 0.51, 0.007 +20080207, 0.82, 0.40, 0.03, 0.007 +20080208, -0.30, -0.09, -0.33, 0.007 +20080211, 0.58, -0.18, -0.59, 0.007 +20080212, 0.61, -0.16, -0.06, 0.007 +20080213, 1.46, 0.71, 0.03, 0.007 +20080214, -1.35, -0.77, 0.14, 0.007 +20080215, -0.02, -0.82, 0.33, 0.007 +20080219, -0.06, 0.28, -0.36, 0.007 +20080220, 0.83, 0.22, -0.02, 0.007 +20080221, -1.28, -0.35, -0.19, 0.007 +20080222, 0.61, -0.85, 0.63, 0.007 +20080225, 1.46, 0.45, -0.06, 0.007 +20080226, 0.72, 0.41, -0.09, 0.007 +20080227, -0.11, -0.04, -0.24, 0.007 +20080228, -0.93, -0.39, -0.48, 0.007 +20080229, -2.64, 0.11, -0.16, 0.007 +20080303, -0.04, -0.23, -0.35, 0.009 +20080304, -0.36, 0.00, -0.05, 0.009 +20080305, 0.56, -0.20, -0.36, 0.009 +20080306, -2.26, -0.41, -0.24, 0.009 +20080307, -0.88, 0.25, 0.59, 0.009 +20080310, -1.72, -0.59, 0.50, 0.009 +20080311, 3.57, 0.20, 0.22, 0.009 +20080312, -0.77, 0.21, -0.81, 0.009 +20080313, 0.65, 1.32, -0.21, 0.009 +20080314, -2.07, -0.20, -0.26, 0.009 +20080317, -1.21, -0.77, 0.51, 0.009 +20080318, 4.09, 0.02, -0.25, 0.009 +20080319, -2.37, -0.01, 0.20, 0.009 +20080320, 2.30, -0.16, 0.75, 0.009 +20080324, 1.71, 1.13, -0.61, 0.009 +20080325, 0.38, 0.44, -0.17, 0.009 +20080326, -0.82, 0.61, -0.49, 0.009 +20080327, -1.13, -0.20, 0.02, 0.009 +20080328, -0.82, -0.44, 0.26, 0.009 +20080331, 0.57, 0.04, 0.59, 0.009 +20080401, 3.37, -0.74, 0.05, 0.008 +20080402, -0.09, 0.47, -0.14, 0.008 +20080403, 0.14, -0.08, -0.06, 0.008 +20080404, 0.16, 0.09, -0.46, 0.008 +20080407, 0.14, -0.45, 0.49, 0.008 +20080408, -0.34, 0.33, -0.05, 0.008 +20080409, -0.96, -0.80, -0.22, 0.008 +20080410, 0.53, 0.69, -0.55, 0.008 +20080411, -2.02, -0.63, 0.54, 0.008 +20080414, -0.38, 0.18, -0.32, 0.008 +20080415, 0.46, 0.29, 0.27, 0.008 +20080416, 2.27, 0.48, 0.15, 0.008 +20080417, -0.10, -0.86, 0.34, 0.008 +20080418, 1.67, 0.12, -0.66, 0.008 +20080421, -0.17, -0.13, -0.55, 0.008 +20080422, -0.97, -1.10, 0.29, 0.008 +20080423, 0.26, 0.20, -1.16, 0.008 +20080424, 0.66, 0.54, 0.38, 0.008 +20080425, 0.68, -0.21, 0.17, 0.008 +20080428, -0.03, 0.55, 0.19, 0.008 +20080429, -0.36, -0.42, 0.34, 0.008 +20080430, -0.30, -0.12, 0.09, 0.008 +20080501, 1.66, 0.06, 0.23, 0.008 +20080502, 0.20, -0.76, 0.02, 0.008 +20080505, -0.41, 0.30, -0.13, 0.008 +20080506, 0.75, -0.03, 0.29, 0.008 +20080507, -1.66, 0.06, -0.18, 0.008 +20080508, 0.37, 0.14, -0.16, 0.008 +20080509, -0.54, 0.66, -0.25, 0.008 +20080512, 1.10, 0.66, -0.34, 0.008 +20080513, 0.09, 0.67, -0.04, 0.008 +20080514, 0.38, -0.43, 0.17, 0.008 +20080515, 1.02, -0.08, -0.30, 0.008 +20080516, 0.10, -0.40, 0.03, 0.008 +20080519, -0.02, -0.28, 0.25, 0.008 +20080520, -0.80, 0.62, -0.17, 0.008 +20080521, -1.56, 0.46, 0.18, 0.008 +20080522, 0.38, 0.29, -0.04, 0.008 +20080523, -1.24, 0.15, -0.37, 0.008 +20080527, 0.72, 0.58, -0.22, 0.008 +20080528, 0.49, -0.06, -0.07, 0.008 +20080529, 0.61, 0.30, -0.25, 0.008 +20080530, 0.29, 0.26, 0.00, 0.008 +20080602, -0.98, 0.16, 0.24, 0.008 +20080603, -0.46, 0.28, 0.02, 0.008 +20080604, 0.02, 0.69, -0.74, 0.008 +20080605, 1.95, 0.31, -0.09, 0.008 +20080606, -2.90, 0.16, -0.03, 0.008 +20080609, -0.03, -0.53, -0.22, 0.008 +20080610, -0.31, 0.01, -0.21, 0.008 +20080611, -1.66, -0.14, -0.15, 0.008 +20080612, 0.31, 0.00, -0.06, 0.008 +20080613, 1.55, 0.26, -0.35, 0.008 +20080616, 0.15, 0.88, -0.19, 0.008 +20080617, -0.55, 0.15, -0.25, 0.008 +20080618, -0.96, 0.20, 0.26, 0.008 +20080619, 0.34, 0.49, -0.58, 0.008 +20080620, -1.79, 0.34, 0.07, 0.008 +20080623, -0.16, -0.61, -0.31, 0.008 +20080624, -0.54, -1.17, 0.28, 0.008 +20080625, 0.64, 0.35, -0.44, 0.008 +20080626, -2.83, 0.56, 0.13, 0.008 +20080627, -0.37, 0.23, -0.42, 0.008 +20080630, -0.07, -1.21, 0.32, 0.008 +20080701, 0.29, -0.44, 0.27, 0.007 +20080702, -2.00, -0.86, 0.12, 0.007 +20080703, -0.15, -0.68, -0.17, 0.007 +20080707, -0.81, 0.12, -1.10, 0.007 +20080708, 1.84, 1.01, 2.36, 0.007 +20080709, -2.06, -0.08, -1.32, 0.007 +20080710, 0.65, -0.02, -1.23, 0.007 +20080711, -0.88, 1.48, -1.11, 0.007 +20080714, -0.93, -0.13, -2.43, 0.007 +20080715, -0.96, 1.15, -1.15, 0.007 +20080716, 2.52, 0.03, 4.75, 0.007 +20080717, 1.13, -0.08, 4.11, 0.007 +20080718, -0.08, -0.78, 1.09, 0.007 +20080721, 0.16, 0.30, -0.57, 0.007 +20080722, 1.37, 0.95, 3.16, 0.007 +20080723, 0.32, 0.05, 1.60, 0.007 +20080724, -2.31, 0.51, -2.87, 0.007 +20080725, 0.47, 0.90, -0.99, 0.007 +20080728, -1.76, 0.02, -1.38, 0.007 +20080729, 2.27, -0.29, 3.17, 0.007 +20080730, 1.58, -1.35, -0.15, 0.007 +20080731, -1.16, 0.61, 0.38, 0.007 +20080801, -0.47, 0.66, 0.85, 0.006 +20080804, -1.09, -0.22, 0.50, 0.006 +20080805, 2.65, -0.57, 1.66, 0.006 +20080806, 0.50, 0.53, -1.14, 0.006 +20080807, -1.73, 0.62, -1.73, 0.006 +20080808, 2.28, 0.59, 1.37, 0.006 +20080811, 0.83, 1.38, 1.20, 0.006 +20080812, -1.05, 0.98, -1.93, 0.006 +20080813, -0.15, 0.75, -2.03, 0.006 +20080814, 0.63, 0.10, 1.30, 0.006 +20080815, 0.38, -0.36, 1.07, 0.006 +20080818, -1.45, 0.28, -0.89, 0.006 +20080819, -1.00, -0.56, -1.24, 0.006 +20080820, 0.54, -0.65, -0.07, 0.006 +20080821, 0.12, -0.90, -0.46, 0.006 +20080822, 1.14, 0.43, 1.03, 0.006 +20080825, -1.92, -0.12, -0.52, 0.006 +20080826, 0.33, -0.20, 0.14, 0.006 +20080827, 0.88, 0.27, 0.29, 0.006 +20080828, 1.51, 0.15, 1.80, 0.006 +20080829, -1.25, 0.24, 0.63, 0.006 +20080902, -0.44, 0.31, 2.03, 0.007 +20080903, -0.23, 0.54, 1.66, 0.007 +20080904, -2.90, 0.20, -0.47, 0.007 +20080905, 0.42, -0.83, 1.58, 0.007 +20080908, 1.76, -0.56, 2.20, 0.007 +20080909, -3.41, 0.58, -0.69, 0.007 +20080910, 0.70, 0.41, -0.79, 0.007 +20080911, 1.22, -0.94, 0.18, 0.007 +20080912, 0.29, -0.17, -0.21, 0.007 +20080915, -4.45, 1.47, -2.24, 0.007 +20080916, 1.65, 0.28, 1.96, 0.007 +20080917, -4.60, 0.60, -2.13, 0.007 +20080918, 4.41, 1.08, 4.83, 0.007 +20080919, 4.27, -1.97, 3.60, 0.007 +20080922, -3.94, 0.33, -3.37, 0.007 +20080923, -1.55, 0.10, 0.15, 0.007 +20080924, -0.32, -1.05, -0.76, 0.007 +20080925, 1.70, -1.16, 0.65, 0.007 +20080926, 0.11, -0.90, 0.95, 0.007 +20080929, -8.26, 3.40, -3.67, 0.007 +20080930, 4.88, -3.67, 2.85, 0.007 +20081001, -0.47, -0.82, 2.78, 0.004 +20081002, -4.20, -0.59, 0.63, 0.004 +20081003, -1.47, -0.83, -1.24, 0.004 +20081006, -3.95, -0.06, 0.45, 0.004 +20081007, -5.76, 1.07, -3.40, 0.004 +20081008, -1.27, -0.21, -2.20, 0.004 +20081009, -7.36, -0.24, -2.54, 0.004 +20081010, -0.95, 3.83, 3.01, 0.004 +20081013, 11.35, -2.42, -2.36, 0.004 +20081014, -0.86, -2.99, 4.43, 0.004 +20081015, -8.78, 0.24, 0.82, 0.004 +20081016, 4.32, 2.17, -1.64, 0.004 +20081017, -0.41, -0.78, -0.77, 0.004 +20081020, 4.55, -1.24, -0.87, 0.004 +20081021, -2.95, 0.06, 0.57, 0.004 +20081022, -5.76, 0.90, 0.13, 0.004 +20081023, 0.29, -3.35, -0.86, 0.004 +20081024, -3.28, -0.09, -0.35, 0.004 +20081027, -3.36, -0.86, 0.35, 0.004 +20081028, 9.77, -3.75, 0.27, 0.004 +20081029, -0.47, 2.82, -1.39, 0.004 +20081030, 2.99, 2.01, -0.64, 0.004 +20081031, 1.88, 2.28, 1.96, 0.004 +20081103, -0.05, 0.13, 0.59, 0.001 +20081104, 3.57, -2.61, 0.20, 0.001 +20081105, -5.05, 0.20, -1.46, 0.001 +20081106, -4.83, 1.55, -0.41, 0.001 +20081107, 2.62, -1.15, -0.78, 0.001 +20081110, -1.32, -0.70, -2.04, 0.001 +20081111, -2.25, 0.16, 0.02, 0.001 +20081112, -5.14, -0.50, -1.07, 0.001 +20081113, 6.79, 0.76, -0.11, 0.001 +20081114, -4.27, -2.23, 0.03, 0.001 +20081117, -2.43, 1.82, -1.62, 0.001 +20081118, 0.70, -1.27, -0.69, 0.001 +20081119, -6.29, -0.03, -3.09, 0.001 +20081120, -6.60, 1.70, -2.49, 0.001 +20081121, 6.11, -1.25, -2.04, 0.001 +20081124, 6.27, -1.32, 4.65, 0.001 +20081125, 0.94, 0.06, 2.27, 0.001 +20081126, 3.88, 1.66, 0.24, 0.001 +20081128, 1.06, -0.66, 1.91, 0.001 +20081201, -8.95, -0.74, -3.52, 0.000 +20081202, 3.97, 0.67, 2.54, 0.000 +20081203, 2.63, -0.22, 1.47, 0.000 +20081204, -2.90, 0.02, 1.25, 0.000 +20081205, 3.75, 0.08, 1.77, 0.000 +20081208, 3.80, -0.37, 0.15, 0.000 +20081209, -2.23, -0.59, -1.22, 0.000 +20081210, 1.20, 1.05, -0.98, 0.000 +20081211, -2.93, -1.18, -2.20, 0.000 +20081212, 0.96, 2.30, 0.60, 0.000 +20081215, -1.54, -1.27, -1.26, 0.000 +20081216, 5.15, -0.18, 2.41, 0.000 +20081217, -0.62, 1.73, -0.51, 0.000 +20081218, -1.83, 0.91, -0.34, 0.000 +20081219, 0.35, 0.72, -0.03, 0.000 +20081222, -1.87, 0.00, -0.75, 0.000 +20081223, -0.89, -0.11, -0.90, 0.000 +20081224, 0.51, -0.33, 0.59, 0.000 +20081226, 0.63, 0.58, 0.07, 0.000 +20081229, -0.56, -1.41, -0.03, 0.000 +20081230, 2.47, 0.56, 0.98, 0.000 +20081231, 1.70, 1.54, 0.77, 0.000 +20090102, 3.11, -1.32, -0.36, 0.000 +20090105, -0.28, 0.65, -1.12, 0.000 +20090106, 0.87, 1.01, 0.87, 0.000 +20090107, -2.96, 0.32, -1.11, 0.000 +20090108, 0.47, 0.72, 0.41, 0.000 +20090109, -2.21, -1.43, -1.11, 0.000 +20090112, -2.28, 0.30, -1.81, 0.000 +20090113, 0.28, 0.42, 0.21, 0.000 +20090114, -3.38, -0.54, -1.24, 0.000 +20090115, 0.39, 2.26, -2.25, 0.000 +20090116, 0.74, 0.44, -1.02, 0.000 +20090120, -5.34, 0.12, -3.90, 0.000 +20090121, 4.21, -1.20, 2.53, 0.000 +20090122, -1.62, -1.01, -1.61, 0.000 +20090123, 0.44, -0.49, 0.90, 0.000 +20090126, 0.54, 0.76, -0.60, 0.000 +20090127, 1.08, -0.42, 0.32, 0.000 +20090128, 3.32, -0.59, 2.63, 0.000 +20090129, -3.23, -0.15, -2.29, 0.000 +20090130, -2.16, 0.19, -1.19, 0.000 +20090202, 0.06, 1.29, -0.51, 0.001 +20090203, 1.46, -0.19, -2.35, 0.001 +20090204, -0.60, -0.23, -0.43, 0.001 +20090205, 1.61, 0.14, -0.24, 0.001 +20090206, 2.79, -0.03, 2.19, 0.001 +20090209, 0.03, -0.93, 0.20, 0.001 +20090210, -4.62, 1.06, -2.78, 0.001 +20090211, 0.75, -0.76, 1.25, 0.001 +20090212, 0.30, 0.32, -0.59, 0.001 +20090213, -0.85, 0.97, -1.44, 0.001 +20090217, -4.36, 1.00, -2.30, 0.001 +20090218, -0.33, -0.93, -0.71, 0.001 +20090219, -1.15, -0.04, -1.99, 0.001 +20090220, -1.16, -0.02, -0.99, 0.001 +20090223, -3.43, -0.47, 0.87, 0.001 +20090224, 4.00, -0.96, 2.93, 0.001 +20090225, -1.15, -1.45, 0.18, 0.001 +20090226, -1.53, -0.42, 1.28, 0.001 +20090227, -2.01, 1.80, -2.12, 0.001 +20090302, -4.75, -0.25, -0.28, 0.001 +20090303, -0.71, -0.69, -2.42, 0.001 +20090304, 2.42, 0.53, -0.98, 0.001 +20090305, -4.21, -0.48, -2.99, 0.001 +20090306, 0.20, 0.41, -0.66, 0.001 +20090309, -1.09, -0.93, 0.33, 0.001 +20090310, 6.35, -0.91, 4.15, 0.001 +20090311, 0.30, -0.55, 0.57, 0.001 +20090312, 4.16, 1.12, 2.60, 0.001 +20090313, 0.73, 0.17, 0.55, 0.001 +20090316, -0.55, -1.03, 0.42, 0.001 +20090317, 3.20, 0.68, 1.41, 0.001 +20090318, 2.18, 0.09, 3.96, 0.001 +20090319, -1.03, 1.00, -2.53, 0.001 +20090320, -1.95, -0.36, -0.79, 0.001 +20090323, 6.89, -0.65, 4.03, 0.001 +20090324, -1.93, -1.15, -1.53, 0.001 +20090325, 0.94, 0.96, 1.30, 0.001 +20090326, 2.68, 1.90, -0.01, 0.001 +20090327, -2.06, -1.35, 0.28, 0.001 +20090330, -3.47, 1.74, -3.83, 0.001 +20090331, 1.29, -0.56, 1.52, 0.001 +20090401, 1.65, -0.50, 1.47, 0.001 +20090402, 3.07, 1.93, 0.49, 0.001 +20090403, 1.02, -0.12, 0.86, 0.001 +20090406, -0.92, -0.66, -0.48, 0.001 +20090407, -2.42, -0.73, -0.19, 0.001 +20090408, 1.28, 1.06, 0.09, 0.001 +20090409, 3.91, 0.36, 4.33, 0.001 +20090413, 0.26, -0.92, 2.27, 0.001 +20090414, -2.02, -0.07, -2.84, 0.001 +20090415, 1.12, -0.15, 2.32, 0.001 +20090416, 1.69, 1.23, 0.13, 0.001 +20090417, 0.55, 0.86, 0.26, 0.001 +20090420, -4.32, 0.05, -4.22, 0.001 +20090421, 2.19, 0.79, 3.08, 0.001 +20090422, -0.61, 1.47, -1.10, 0.001 +20090423, 0.66, -1.83, 0.24, 0.001 +20090424, 1.77, 0.80, 0.17, 0.001 +20090427, -0.95, -0.46, -1.71, 0.001 +20090428, -0.20, 0.92, 0.07, 0.001 +20090429, 2.41, 0.75, 1.18, 0.001 +20090430, -0.04, -0.42, -0.64, 0.001 +20090501, 0.45, -0.48, -0.25, 0.000 +20090504, 3.36, -0.39, 2.93, 0.000 +20090505, -0.27, 0.19, -0.15, 0.000 +20090506, 1.45, -2.07, 2.63, 0.000 +20090507, -1.42, -0.77, -0.80, 0.000 +20090508, 2.48, 0.26, 2.76, 0.000 +20090511, -2.01, 1.21, -2.45, 0.000 +20090512, -0.31, -0.79, -1.63, 0.000 +20090513, -2.91, -1.52, -1.47, 0.000 +20090514, 1.11, 0.50, 0.96, 0.000 +20090515, -1.02, 0.56, -1.13, 0.000 +20090518, 3.13, 0.35, 1.93, 0.000 +20090519, -0.04, 0.20, -1.21, 0.000 +20090520, -0.48, -0.02, -1.10, 0.000 +20090521, -1.68, -0.11, 0.35, 0.000 +20090522, -0.15, -0.34, -0.57, 0.000 +20090526, 2.78, 1.52, 0.62, 0.000 +20090527, -1.80, 0.25, -1.29, 0.000 +20090528, 1.35, -1.37, 0.45, 0.000 +20090529, 1.38, 0.56, -0.21, 0.000 +20090601, 2.72, 1.56, -0.72, 0.000 +20090602, 0.29, 0.85, -0.19, 0.000 +20090603, -1.39, 0.78, -0.84, 0.000 +20090604, 1.18, 0.15, 1.08, 0.000 +20090605, -0.19, 0.13, -0.55, 0.000 +20090608, -0.20, -0.97, 0.60, 0.000 +20090609, 0.49, 0.34, -0.28, 0.000 +20090610, -0.35, -0.33, -0.47, 0.000 +20090611, 0.63, -0.21, 0.26, 0.000 +20090612, 0.03, -0.19, 0.01, 0.000 +20090615, -2.38, -0.30, -0.33, 0.000 +20090616, -1.33, -0.09, -0.26, 0.000 +20090617, -0.08, 0.90, -0.98, 0.000 +20090618, 0.74, -0.64, 0.41, 0.000 +20090619, 0.35, 0.29, 0.10, 0.000 +20090622, -3.08, -0.37, -0.71, 0.000 +20090623, 0.08, -1.10, 0.14, 0.000 +20090624, 0.78, 0.27, -0.18, 0.000 +20090625, 2.19, 0.81, 0.04, 0.000 +20090626, 0.04, 1.57, 0.13, 0.000 +20090629, 0.82, -1.09, 0.35, 0.000 +20090630, -0.74, 0.25, -0.19, 0.000 +20090701, 0.54, 1.49, 0.19, 0.001 +20090702, -2.89, -0.60, -1.03, 0.001 +20090706, -0.03, -0.94, -0.98, 0.001 +20090707, -1.93, 0.03, -0.15, 0.001 +20090708, -0.20, -0.55, -1.11, 0.001 +20090709, 0.35, -0.58, 1.25, 0.001 +20090710, -0.35, 0.94, -0.50, 0.001 +20090713, 2.43, -0.68, 1.81, 0.001 +20090714, 0.59, 0.32, 0.63, 0.001 +20090715, 2.98, 0.56, 1.41, 0.001 +20090716, 0.94, 0.46, -0.11, 0.001 +20090717, -0.05, -0.23, -0.04, 0.001 +20090720, 1.19, 0.33, 0.37, 0.001 +20090721, 0.31, -0.53, -0.81, 0.001 +20090722, 0.08, 0.61, 0.34, 0.001 +20090723, 2.37, 0.59, 1.09, 0.001 +20090724, 0.38, 0.31, 0.15, 0.001 +20090727, 0.30, 0.09, 0.98, 0.001 +20090728, -0.20, 0.29, -0.34, 0.001 +20090729, -0.46, -0.13, -0.82, 0.001 +20090730, 1.24, 0.31, 1.45, 0.001 +20090731, 0.05, -0.17, 1.27, 0.001 +20090803, 1.63, 0.10, 1.68, 0.001 +20090804, 0.32, 0.43, 0.83, 0.001 +20090805, -0.30, -1.11, 1.70, 0.001 +20090806, -0.62, -0.98, 0.05, 0.001 +20090807, 1.44, 0.98, 1.18, 0.001 +20090810, -0.32, 0.47, 0.27, 0.001 +20090811, -1.25, -0.07, -1.14, 0.001 +20090812, 1.21, 0.44, 0.55, 0.001 +20090813, 0.73, -0.30, 1.11, 0.001 +20090814, -0.97, -1.21, -0.28, 0.001 +20090817, -2.46, -0.11, -1.69, 0.001 +20090818, 1.11, 0.47, 1.30, 0.001 +20090819, 0.72, 0.44, -0.39, 0.001 +20090820, 1.00, -0.04, 0.84, 0.001 +20090821, 1.83, 0.36, 0.68, 0.001 +20090824, -0.09, 0.06, -0.28, 0.001 +20090825, 0.27, 0.17, 0.65, 0.001 +20090826, -0.01, 0.14, 0.11, 0.001 +20090827, 0.21, -0.15, 0.53, 0.001 +20090828, -0.19, -0.37, 0.54, 0.001 +20090831, -0.86, -0.48, -0.63, 0.001 +20090901, -2.15, 0.10, -2.03, 0.000 +20090902, -0.28, 0.14, -0.70, 0.000 +20090903, 0.93, 0.03, 1.09, 0.000 +20090904, 1.31, 0.26, 0.27, 0.000 +20090908, 0.88, 0.20, 0.09, 0.000 +20090909, 0.90, 0.80, 0.67, 0.000 +20090910, 1.08, 0.46, 0.93, 0.000 +20090911, -0.10, 0.13, -0.09, 0.000 +20090914, 0.65, 0.09, 0.64, 0.000 +20090915, 0.44, 0.58, 0.60, 0.000 +20090916, 1.55, 0.41, 1.30, 0.000 +20090917, -0.30, -0.07, -0.34, 0.000 +20090918, 0.23, 0.10, -0.20, 0.000 +20090921, -0.27, -0.17, -0.67, 0.000 +20090922, 0.66, -0.09, 1.50, 0.000 +20090923, -1.00, 0.15, -0.88, 0.000 +20090924, -1.07, -0.66, -1.34, 0.000 +20090925, -0.64, 0.19, -0.51, 0.000 +20090928, 1.79, 0.36, 1.04, 0.000 +20090929, -0.12, -0.06, 0.36, 0.000 +20090930, -0.40, -0.55, -0.62, 0.000 +20091001, -2.63, -0.60, -1.37, 0.000 +20091002, -0.49, -0.31, -0.14, 0.000 +20091005, 1.54, 0.09, 1.83, 0.000 +20091006, 1.42, 0.53, 0.24, 0.000 +20091007, 0.28, -0.37, 0.56, 0.000 +20091008, 0.82, 0.30, 0.34, 0.000 +20091009, 0.59, 0.60, -0.22, 0.000 +20091012, 0.36, -0.52, 0.33, 0.000 +20091013, -0.22, 0.12, -0.18, 0.000 +20091014, 1.73, 0.04, 1.12, 0.000 +20091015, 0.35, -0.23, -0.45, 0.000 +20091016, -0.82, -0.01, -1.27, 0.000 +20091019, 0.92, 0.08, 0.02, 0.000 +20091020, -0.69, -0.70, -0.48, 0.000 +20091021, -0.90, -0.09, -0.54, 0.000 +20091022, 1.05, 0.03, 0.65, 0.000 +20091023, -1.23, -0.80, -1.02, 0.000 +20091026, -1.20, 0.02, -1.35, 0.000 +20091027, -0.51, -0.62, -0.60, 0.000 +20091028, -2.16, -1.49, -1.40, 0.000 +20091029, 2.20, -0.25, 1.64, 0.000 +20091030, -2.80, -0.07, -1.87, 0.000 +20091102, 0.54, -0.79, -0.33, 0.000 +20091103, 0.45, 1.05, 0.75, 0.000 +20091104, 0.03, -1.05, -0.49, 0.000 +20091105, 2.07, 1.14, 0.63, 0.000 +20091106, 0.24, -0.23, -0.45, 0.000 +20091109, 2.17, -0.43, 1.35, 0.000 +20091110, -0.05, -0.80, -0.08, 0.000 +20091111, 0.52, 0.31, 0.31, 0.000 +20091112, -1.12, -0.89, -0.76, 0.000 +20091113, 0.61, 0.36, -0.04, 0.000 +20091116, 1.54, 1.30, 0.20, 0.000 +20091117, 0.14, -0.21, -0.04, 0.000 +20091118, -0.13, -0.49, 0.44, 0.000 +20091119, -1.39, -0.79, -0.59, 0.000 +20091120, -0.33, 0.20, -0.47, 0.000 +20091123, 1.30, 0.39, -0.09, 0.000 +20091124, -0.09, -0.12, -0.43, 0.000 +20091125, 0.47, -0.42, 0.12, 0.000 +20091127, -1.74, -0.55, -0.77, 0.000 +20091130, 0.28, -0.39, 0.74, 0.000 +20091201, 1.28, 0.63, -0.27, 0.000 +20091202, 0.18, 1.03, -0.30, 0.000 +20091203, -0.86, -0.27, -0.34, 0.000 +20091204, 0.70, 1.53, 0.75, 0.000 +20091207, -0.15, 0.51, -0.27, 0.000 +20091208, -0.97, 0.06, -0.13, 0.000 +20091209, 0.32, -0.19, 0.01, 0.000 +20091210, 0.50, -0.96, -0.10, 0.000 +20091211, 0.43, 0.28, 0.47, 0.000 +20091214, 0.80, 0.63, 0.34, 0.000 +20091215, -0.48, 0.31, -0.59, 0.000 +20091216, 0.19, 0.45, 0.73, 0.000 +20091217, -1.18, 0.25, -0.33, 0.000 +20091218, 0.68, 0.22, 0.24, 0.000 +20091221, 1.03, 0.15, 0.33, 0.000 +20091222, 0.43, 0.58, -0.10, 0.000 +20091223, 0.36, 0.91, -0.39, 0.000 +20091224, 0.51, -0.08, 0.20, 0.000 +20091228, 0.08, -0.12, -0.28, 0.000 +20091229, -0.09, 0.11, -0.08, 0.000 +20091230, 0.00, -0.06, -0.09, 0.000 +20091231, -0.99, -0.20, 0.32, 0.000 +20100104, 1.69, 0.58, 1.12, 0.000 +20100105, 0.31, -0.58, 1.22, 0.000 +20100106, 0.13, -0.25, 0.52, 0.000 +20100107, 0.40, 0.08, 0.94, 0.000 +20100108, 0.33, 0.40, 0.01, 0.000 +20100111, 0.13, -0.13, -0.21, 0.000 +20100112, -1.00, -0.19, -1.31, 0.000 +20100113, 0.85, 0.27, 0.34, 0.000 +20100114, 0.24, 0.28, 0.05, 0.000 +20100115, -1.12, -0.13, -0.40, 0.000 +20100119, 1.26, 0.43, -0.16, 0.000 +20100120, -0.98, -0.59, 0.25, 0.000 +20100121, -1.74, 0.41, -1.15, 0.000 +20100122, -2.14, 0.55, -0.82, 0.000 +20100125, 0.37, -0.20, 0.34, 0.000 +20100126, -0.45, -0.09, -0.46, 0.000 +20100127, 0.53, 0.23, 0.16, 0.000 +20100128, -1.18, -0.67, 0.46, 0.000 +20100129, -0.97, -0.04, -0.45, 0.000 +20100201, 1.39, -0.20, 0.91, 0.000 +20100202, 1.21, -0.42, 0.66, 0.000 +20100203, -0.49, 0.11, -0.38, 0.000 +20100204, -3.14, -0.15, -1.19, 0.000 +20100205, 0.29, -0.05, -0.06, 0.000 +20100208, -0.79, 0.05, -0.36, 0.000 +20100209, 1.33, 0.32, 0.59, 0.000 +20100210, -0.17, 0.25, 0.29, 0.000 +20100211, 1.13, 0.71, 0.07, 0.000 +20100212, -0.07, 0.97, 0.14, 0.000 +20100216, 1.75, -0.28, 1.02, 0.000 +20100217, 0.49, 0.11, 0.12, 0.000 +20100218, 0.62, 0.11, 0.01, 0.000 +20100219, 0.28, 0.05, 0.48, 0.000 +20100222, -0.05, -0.04, 0.57, 0.000 +20100223, -1.24, 0.27, -0.94, 0.000 +20100224, 0.94, -0.34, 0.53, 0.000 +20100225, -0.13, 0.24, 0.28, 0.000 +20100226, 0.13, -0.55, 0.39, 0.000 +20100301, 1.20, 1.22, 0.07, 0.000 +20100302, 0.32, 0.61, 0.18, 0.000 +20100303, 0.09, 0.17, 0.09, 0.000 +20100304, 0.37, 0.09, 0.23, 0.000 +20100305, 1.43, 0.40, 0.61, 0.000 +20100308, 0.02, 0.08, 0.26, 0.000 +20100309, 0.21, 0.25, -0.10, 0.000 +20100310, 0.53, 0.05, 0.69, 0.000 +20100311, 0.43, -0.09, -0.11, 0.000 +20100312, -0.02, 0.03, -0.28, 0.000 +20100315, -0.02, -0.31, -0.48, 0.000 +20100316, 0.78, -0.14, 0.59, 0.000 +20100317, 0.57, 0.04, 0.35, 0.000 +20100318, -0.10, -0.17, -0.57, 0.000 +20100319, -0.62, -0.60, -0.63, 0.000 +20100322, 0.67, 0.89, 0.01, 0.000 +20100323, 0.80, 0.35, 0.36, 0.000 +20100324, -0.60, -0.64, 0.82, 0.000 +20100325, -0.26, -0.48, -0.28, 0.000 +20100326, 0.06, -0.08, 0.31, 0.000 +20100329, 0.59, -0.07, 0.19, 0.000 +20100330, 0.04, 0.29, -0.45, 0.000 +20100331, -0.36, -0.50, 0.15, 0.000 +20100401, 0.75, -0.01, 0.79, 0.001 +20100405, 0.95, 1.07, 0.92, 0.001 +20100406, 0.19, 0.23, 0.46, 0.001 +20100407, -0.48, 0.21, 0.24, 0.001 +20100408, 0.31, -0.28, 0.39, 0.001 +20100409, 0.66, -0.12, 0.17, 0.001 +20100412, 0.23, 0.27, 0.06, 0.001 +20100413, 0.07, 0.16, -0.04, 0.001 +20100414, 1.24, 0.87, 1.41, 0.001 +20100415, 0.11, 0.59, -0.04, 0.001 +20100416, -1.53, 0.80, -1.83, 0.001 +20100419, 0.28, -0.85, -0.09, 0.001 +20100420, 0.88, 0.66, 0.56, 0.001 +20100421, -0.06, 0.71, 0.20, 0.001 +20100422, 0.37, 0.81, 0.49, 0.001 +20100423, 0.70, 0.37, 0.57, 0.001 +20100426, -0.43, 0.46, -0.31, 0.001 +20100427, -2.34, 0.11, -1.41, 0.001 +20100428, 0.56, -0.74, 0.74, 0.001 +20100429, 1.34, 0.46, 0.46, 0.001 +20100430, -1.72, -0.97, -0.92, 0.001 +20100503, 1.36, 0.65, 0.61, 0.001 +20100504, -2.50, -0.58, -0.90, 0.001 +20100505, -0.75, -0.74, -0.63, 0.001 +20100506, -3.27, -0.27, -0.90, 0.001 +20100507, -1.75, -1.35, -0.48, 0.001 +20100510, 4.47, 0.97, 1.17, 0.001 +20100511, -0.17, 1.16, -0.15, 0.001 +20100512, 1.63, 1.48, 0.19, 0.001 +20100513, -1.12, 0.32, -0.30, 0.001 +20100514, -1.92, -0.27, -0.76, 0.001 +20100517, 0.11, 0.04, -0.56, 0.001 +20100518, -1.41, -0.24, -0.96, 0.001 +20100519, -0.63, -0.97, 0.03, 0.001 +20100520, -3.99, -0.89, -1.16, 0.001 +20100521, 1.44, -0.44, 1.58, 0.001 +20100524, -1.19, 0.33, -0.91, 0.001 +20100525, -0.03, -0.47, 0.54, 0.001 +20100526, -0.35, 0.83, 0.38, 0.001 +20100527, 3.45, 0.67, 1.61, 0.001 +20100528, -1.18, 0.06, -0.63, 0.001 +20100601, -1.89, -1.09, -1.57, 0.001 +20100602, 2.63, 0.19, 0.43, 0.001 +20100603, 0.54, 0.70, -0.28, 0.001 +20100604, -3.62, -1.22, -0.70, 0.001 +20100607, -1.52, -1.08, -1.06, 0.001 +20100608, 0.90, -1.47, 0.17, 0.001 +20100609, -0.46, 0.74, -0.17, 0.001 +20100610, 2.95, 0.40, 0.90, 0.001 +20100611, 0.62, 0.93, 0.06, 0.001 +20100614, -0.06, 0.66, 0.01, 0.001 +20100615, 2.36, 0.08, 0.91, 0.001 +20100616, -0.11, -0.21, -0.32, 0.001 +20100617, 0.08, -0.16, -0.46, 0.001 +20100618, 0.13, 0.00, 0.24, 0.001 +20100621, -0.47, -0.55, 0.00, 0.001 +20100622, -1.63, -0.34, -0.75, 0.001 +20100623, -0.29, -0.05, 0.23, 0.001 +20100624, -1.65, 0.10, -0.89, 0.001 +20100625, 0.48, 1.05, 1.03, 0.001 +20100628, -0.23, -0.02, -0.72, 0.001 +20100629, -3.23, -0.66, -1.28, 0.001 +20100630, -0.98, 0.04, -0.36, 0.001 +20100701, -0.40, -0.31, -0.43, 0.001 +20100702, -0.50, -0.31, -0.43, 0.001 +20100706, 0.33, -2.00, 0.08, 0.001 +20100707, 3.17, 0.06, 0.45, 0.001 +20100708, 1.00, 0.57, 0.00, 0.001 +20100709, 0.81, 0.65, 0.58, 0.001 +20100712, -0.11, -1.19, 0.05, 0.001 +20100713, 1.76, 1.62, 0.65, 0.001 +20100714, -0.04, -0.16, -0.76, 0.001 +20100715, 0.02, -0.87, -0.10, 0.001 +20100716, -2.94, -0.56, -0.96, 0.001 +20100719, 0.54, -0.15, -0.19, 0.001 +20100720, 1.23, 0.65, 0.14, 0.001 +20100721, -1.30, -0.38, -0.42, 0.001 +20100722, 2.37, 1.25, 0.54, 0.001 +20100723, 1.05, 1.47, -0.23, 0.001 +20100726, 1.23, 0.87, 0.11, 0.001 +20100727, -0.23, -0.33, 0.35, 0.001 +20100728, -0.82, -0.90, -0.03, 0.001 +20100729, -0.36, 0.32, 0.67, 0.001 +20100730, 0.06, 0.03, -0.22, 0.001 +20100802, 2.08, -0.54, 0.15, 0.001 +20100803, -0.55, -0.41, -0.51, 0.001 +20100804, 0.74, 0.43, -0.10, 0.001 +20100805, -0.22, -0.82, 0.13, 0.001 +20100806, -0.36, -0.17, -0.35, 0.001 +20100809, 0.62, 0.62, 0.05, 0.001 +20100810, -0.79, -1.23, -0.21, 0.001 +20100811, -2.91, -1.07, -0.65, 0.001 +20100812, -0.50, -0.07, -0.05, 0.001 +20100813, -0.47, -0.80, 0.24, 0.001 +20100816, 0.10, 0.93, -0.20, 0.001 +20100817, 1.31, 0.59, -0.18, 0.001 +20100818, 0.21, 0.06, 0.07, 0.001 +20100819, -1.74, -0.82, -0.42, 0.001 +20100820, -0.28, 0.27, -0.23, 0.001 +20100823, -0.50, -0.94, -0.44, 0.001 +20100824, -1.48, 0.14, 0.14, 0.001 +20100825, 0.45, 1.04, 0.00, 0.001 +20100826, -0.76, -0.08, -0.26, 0.001 +20100827, 1.82, 0.93, 0.37, 0.001 +20100830, -1.54, -0.82, -0.40, 0.001 +20100831, 0.01, -0.26, 0.77, 0.001 +20100901, 3.05, 0.62, 0.47, 0.001 +20100902, 0.97, 0.26, -0.31, 0.001 +20100903, 1.35, 0.35, 0.20, 0.001 +20100907, -1.23, -0.79, -0.74, 0.001 +20100908, 0.65, 0.02, 0.17, 0.001 +20100909, 0.44, -0.48, 0.55, 0.001 +20100910, 0.45, -0.09, -0.13, 0.001 +20100913, 1.30, 1.13, 0.21, 0.001 +20100914, -0.06, -0.23, -0.52, 0.001 +20100915, 0.36, 0.11, -0.23, 0.001 +20100916, -0.07, -0.51, -0.69, 0.001 +20100917, 0.15, 0.61, -0.58, 0.001 +20100920, 1.60, 1.13, 0.23, 0.001 +20100921, -0.31, -0.28, -0.32, 0.001 +20100922, -0.52, -0.56, -0.53, 0.001 +20100923, -0.78, -0.08, -0.68, 0.001 +20100924, 2.19, 0.99, 0.48, 0.001 +20100927, -0.46, 0.21, -0.45, 0.001 +20100928, 0.58, 0.53, 0.10, 0.001 +20100929, -0.17, 0.66, -0.25, 0.001 +20100930, -0.26, 0.04, 0.29, 0.001 +20101001, 0.43, -0.06, 0.21, 0.001 +20101004, -0.88, -0.72, -0.07, 0.001 +20101005, 2.11, 0.77, 0.15, 0.001 +20101006, -0.10, -0.39, 0.47, 0.001 +20101007, -0.16, 0.05, -0.28, 0.001 +20101008, 0.74, 0.96, -0.13, 0.001 +20101011, 0.04, 0.02, -0.22, 0.001 +20101012, 0.39, -0.04, 0.18, 0.001 +20101013, 0.78, 0.88, -0.36, 0.001 +20101014, -0.38, 0.41, -0.41, 0.001 +20101015, 0.18, -0.06, -1.28, 0.001 +20101018, 0.69, 0.06, 0.86, 0.001 +20101019, -1.67, -0.69, 0.26, 0.001 +20101020, 1.06, 0.07, 0.09, 0.001 +20101021, 0.11, -0.53, -0.51, 0.001 +20101022, 0.29, 0.46, -0.43, 0.001 +20101025, 0.31, 0.47, -0.53, 0.001 +20101026, 0.02, 0.01, -0.18, 0.001 +20101027, -0.24, -0.18, -0.22, 0.001 +20101028, 0.08, -0.60, -0.06, 0.001 +20101029, 0.07, 0.32, -0.11, 0.001 +20101101, -0.01, -0.65, -0.20, 0.001 +20101102, 0.90, 1.34, -0.17, 0.001 +20101103, 0.38, -0.06, 0.17, 0.001 +20101104, 1.94, 0.47, 1.05, 0.001 +20101105, 0.41, -0.09, 0.68, 0.001 +20101108, -0.12, 0.45, -0.48, 0.001 +20101109, -0.78, -0.41, -0.49, 0.001 +20101110, 0.53, 0.58, 0.55, 0.001 +20101111, -0.35, -0.06, -0.08, 0.001 +20101112, -1.29, -0.49, -0.06, 0.001 +20101115, -0.09, 0.20, 0.32, 0.001 +20101116, -1.58, -0.34, -0.15, 0.001 +20101117, 0.07, 0.34, -0.29, 0.001 +20101118, 1.57, 0.31, -0.30, 0.001 +20101119, 0.31, 0.21, -0.18, 0.001 +20101122, -0.02, 0.60, -0.94, 0.001 +20101123, -1.38, 0.48, -0.28, 0.001 +20101124, 1.59, 0.66, 0.03, 0.001 +20101126, -0.67, 0.29, -0.35, 0.001 +20101129, -0.13, 0.01, 0.42, 0.001 +20101130, -0.59, -0.21, -0.02, 0.001 +20101201, 2.12, -0.09, 0.01, 0.001 +20101202, 1.23, -0.31, 0.66, 0.001 +20101203, 0.35, 0.39, 0.05, 0.001 +20101206, -0.03, 0.75, -0.05, 0.001 +20101207, 0.10, 0.36, 0.00, 0.001 +20101208, 0.32, -0.52, 0.62, 0.001 +20101209, 0.42, -0.01, 0.65, 0.001 +20101210, 0.67, 0.43, 0.24, 0.001 +20101213, -0.08, -0.58, 0.08, 0.001 +20101214, 0.09, -0.04, -0.11, 0.001 +20101215, -0.49, 0.20, -0.54, 0.001 +20101216, 0.70, 0.43, -0.11, 0.001 +20101217, 0.15, 0.15, -0.13, 0.001 +20101220, 0.23, 0.01, 0.33, 0.001 +20101221, 0.68, 0.35, 0.74, 0.001 +20101222, 0.29, -0.39, 0.82, 0.001 +20101223, -0.16, 0.07, -0.32, 0.001 +20101227, 0.08, 0.21, 0.44, 0.001 +20101228, 0.00, -0.43, 0.18, 0.001 +20101229, 0.17, 0.11, -0.16, 0.001 +20101230, -0.11, 0.14, -0.03, 0.001 +20101231, -0.10, -0.65, 0.23, 0.001 +20110103, 1.18, 0.53, 0.79, 0.000 +20110104, -0.26, -1.38, 0.11, 0.000 +20110105, 0.59, 0.61, 0.14, 0.000 +20110106, -0.15, -0.06, -0.32, 0.000 +20110107, -0.21, -0.25, -0.30, 0.000 +20110110, -0.02, 0.56, -0.15, 0.000 +20110111, 0.39, 0.12, 0.22, 0.000 +20110112, 0.87, -0.05, 0.26, 0.000 +20110113, -0.17, 0.13, -0.38, 0.000 +20110114, 0.69, 0.02, 0.49, 0.000 +20110118, 0.18, 0.07, -0.41, 0.000 +20110119, -1.24, -1.37, -0.54, 0.000 +20110120, -0.30, -1.04, 0.76, 0.000 +20110121, 0.11, -0.89, 0.56, 0.000 +20110124, 0.65, 0.31, -0.22, 0.000 +20110125, 0.02, -0.02, 0.10, 0.000 +20110126, 0.60, 1.38, -0.22, 0.000 +20110127, 0.26, -0.09, 0.28, 0.000 +20110128, -1.88, -0.88, -0.03, 0.000 +20110131, 0.71, -0.01, -0.28, 0.000 +20110201, 1.75, 0.51, 0.53, 0.001 +20110202, -0.26, -0.08, -0.39, 0.001 +20110203, 0.26, -0.06, -0.10, 0.001 +20110204, 0.29, 0.09, -0.57, 0.001 +20110207, 0.70, 0.27, 0.59, 0.001 +20110208, 0.48, 0.23, 0.00, 0.001 +20110209, -0.31, -0.20, -0.09, 0.001 +20110210, 0.12, 0.35, -0.30, 0.001 +20110211, 0.67, 0.41, 0.51, 0.001 +20110214, 0.30, 0.21, -0.15, 0.001 +20110215, -0.38, -0.37, 0.30, 0.001 +20110216, 0.68, 0.38, 0.26, 0.001 +20110217, 0.37, 0.38, 0.21, 0.001 +20110218, 0.12, -0.14, -0.03, 0.001 +20110222, -2.19, -0.53, -0.35, 0.001 +20110223, -0.78, -1.18, 0.40, 0.001 +20110224, 0.04, 0.72, -0.32, 0.001 +20110225, 1.22, 1.01, 0.22, 0.001 +20110228, 0.42, -0.44, 0.27, 0.001 +20110301, -1.58, -0.30, -0.06, 0.000 +20110302, 0.28, 0.33, -0.23, 0.000 +20110303, 1.76, 0.45, -0.04, 0.000 +20110304, -0.67, 0.30, -0.53, 0.000 +20110307, -0.96, -0.72, 0.12, 0.000 +20110308, 0.97, 0.46, 0.67, 0.000 +20110309, -0.17, -0.26, 0.32, 0.000 +20110310, -1.93, -0.74, -0.31, 0.000 +20110311, 0.69, -0.34, 0.14, 0.000 +20110314, -0.59, 0.10, -0.40, 0.000 +20110315, -1.05, 0.28, -0.14, 0.000 +20110316, -1.77, 0.63, -0.07, 0.000 +20110317, 1.12, -0.81, 0.58, 0.000 +20110318, 0.49, 0.57, 0.22, 0.000 +20110321, 1.58, 0.96, -0.26, 0.000 +20110322, -0.34, -0.09, -0.05, 0.000 +20110323, 0.31, 0.15, -0.40, 0.000 +20110324, 0.96, -0.11, -0.42, 0.000 +20110325, 0.41, 0.43, -0.04, 0.000 +20110328, -0.35, 0.05, -0.18, 0.000 +20110329, 0.74, 0.26, -0.19, 0.000 +20110330, 0.79, 0.43, 0.08, 0.000 +20110331, -0.11, 0.59, -0.30, 0.000 +20110401, 0.52, -0.10, 0.24, 0.000 +20110404, 0.09, 0.25, -0.11, 0.000 +20110405, 0.08, 0.47, -0.20, 0.000 +20110406, 0.21, -0.20, 0.60, 0.000 +20110407, -0.20, -0.21, -0.16, 0.000 +20110408, -0.47, -0.56, -0.27, 0.000 +20110411, -0.39, -0.65, -0.11, 0.000 +20110412, -0.84, -0.67, 0.02, 0.000 +20110413, 0.11, 0.15, -0.69, 0.000 +20110414, 0.00, 0.37, -0.35, 0.000 +20110415, 0.44, 0.58, -0.06, 0.000 +20110418, -1.15, -0.39, -0.35, 0.000 +20110419, 0.50, -0.35, -0.16, 0.000 +20110420, 1.45, 0.61, -0.61, 0.000 +20110421, 0.56, 0.32, -0.05, 0.000 +20110425, -0.16, -0.06, -0.04, 0.000 +20110426, 0.89, 0.14, -0.04, 0.000 +20110427, 0.66, -0.08, -0.23, 0.000 +20110428, 0.32, -0.14, 0.12, 0.000 +20110429, 0.29, 0.21, -0.05, 0.000 +20110502, -0.28, -0.90, -0.14, 0.000 +20110503, -0.50, -1.01, 0.44, 0.000 +20110504, -0.74, -0.55, -0.15, 0.000 +20110505, -0.82, 0.51, -0.34, 0.000 +20110506, 0.46, 0.04, -0.17, 0.000 +20110509, 0.55, 0.67, -0.43, 0.000 +20110510, 0.86, 0.66, 0.24, 0.000 +20110511, -1.09, -0.62, -0.44, 0.000 +20110512, 0.52, 0.36, -0.43, 0.000 +20110513, -0.88, -0.46, -0.32, 0.000 +20110516, -0.76, -1.00, 0.44, 0.000 +20110517, -0.11, -0.48, 0.12, 0.000 +20110518, 1.02, 0.67, -0.30, 0.000 +20110519, 0.22, -0.03, -0.12, 0.000 +20110520, -0.73, 0.08, -0.21, 0.000 +20110523, -1.29, -0.53, 0.01, 0.000 +20110524, -0.14, -0.29, 0.00, 0.000 +20110525, 0.45, 1.02, -0.36, 0.000 +20110526, 0.52, 0.66, -0.15, 0.000 +20110527, 0.49, 0.18, 0.23, 0.000 +20110531, 1.04, 0.43, -0.06, 0.000 +20110601, -2.33, -0.75, -0.26, 0.000 +20110602, -0.10, -0.02, 0.13, 0.000 +20110603, -1.10, -0.55, 0.18, 0.000 +20110606, -1.18, -0.26, -0.32, 0.000 +20110607, -0.04, 0.31, -0.12, 0.000 +20110608, -0.54, -0.73, 0.04, 0.000 +20110609, 0.75, -0.08, 0.01, 0.000 +20110610, -1.37, -0.24, 0.44, 0.000 +20110613, 0.01, -0.55, 0.36, 0.000 +20110614, 1.36, 1.05, -0.39, 0.000 +20110615, -1.72, -0.01, -0.15, 0.000 +20110616, 0.12, -0.08, 0.43, 0.000 +20110617, 0.25, -0.39, 0.65, 0.000 +20110620, 0.58, 0.38, -0.09, 0.000 +20110621, 1.52, 0.95, -0.39, 0.000 +20110622, -0.62, -0.09, 0.07, 0.000 +20110623, -0.14, 0.64, -0.83, 0.000 +20110624, -1.10, 0.44, 0.12, 0.000 +20110627, 0.89, 0.04, -0.04, 0.000 +20110628, 1.36, 0.42, -0.53, 0.000 +20110629, 0.77, -0.69, 0.66, 0.000 +20110630, 0.99, 0.17, -0.24, 0.000 +20110701, 1.45, -0.03, 0.14, 0.000 +20110705, -0.08, 0.21, -0.84, 0.000 +20110706, 0.18, 0.42, -0.56, 0.000 +20110707, 1.10, 0.48, 0.09, 0.000 +20110708, -0.67, -0.01, -0.42, 0.000 +20110711, -1.91, -0.14, -0.28, 0.000 +20110712, -0.45, 0.05, 0.45, 0.000 +20110713, 0.45, 0.57, -0.12, 0.000 +20110714, -0.82, -0.80, 0.12, 0.000 +20110715, 0.58, 0.11, -0.52, 0.000 +20110718, -0.94, -0.59, -0.37, 0.000 +20110719, 1.72, 0.57, -0.67, 0.000 +20110720, -0.10, -0.30, 0.73, 0.000 +20110721, 1.29, -0.35, 1.06, 0.000 +20110722, 0.10, -0.10, -0.74, 0.000 +20110725, -0.68, -0.58, 0.09, 0.000 +20110726, -0.47, -0.38, 0.15, 0.000 +20110727, -2.16, -0.80, 0.43, 0.000 +20110728, -0.31, 0.15, -0.12, 0.000 +20110729, -0.56, 0.23, 0.11, 0.000 +20110801, -0.40, -0.18, 0.21, 0.000 +20110802, -2.68, -0.49, 0.15, 0.000 +20110803, 0.58, 0.27, -0.33, 0.000 +20110804, -5.04, -0.83, 0.31, 0.000 +20110805, -0.36, -1.23, -0.45, 0.000 +20110808, -6.97, -1.45, -1.56, 0.000 +20110809, 4.97, 0.93, 0.65, 0.000 +20110810, -4.30, -0.55, -1.49, 0.000 +20110811, 4.72, 0.32, 0.61, 0.000 +20110812, 0.54, -0.19, -1.47, 0.000 +20110815, 2.25, 0.44, 0.98, 0.000 +20110816, -1.07, -0.79, -0.10, 0.000 +20110817, -0.01, -0.33, 0.71, 0.000 +20110818, -4.65, -1.02, 0.58, 0.000 +20110819, -1.55, 0.15, -0.37, 0.000 +20110822, -0.03, 0.09, -0.81, 0.000 +20110823, 3.60, 1.24, -0.81, 0.000 +20110824, 1.35, -0.15, 0.95, 0.000 +20110825, -1.67, -0.99, 0.54, 0.000 +20110826, 1.74, 0.91, -1.06, 0.000 +20110829, 3.11, 1.56, 0.82, 0.000 +20110830, 0.32, 0.26, -0.77, 0.000 +20110831, 0.42, -0.72, 0.26, 0.000 +20110901, -1.33, -1.10, -0.76, 0.000 +20110902, -2.64, -0.81, -0.67, 0.000 +20110906, -0.71, 0.50, -0.64, 0.000 +20110907, 3.06, 0.94, 0.92, 0.000 +20110908, -1.18, -0.76, -0.56, 0.000 +20110909, -2.65, -0.18, 0.04, 0.000 +20110912, 0.68, 0.00, 0.31, 0.000 +20110913, 1.12, 0.76, -0.41, 0.000 +20110914, 1.45, 0.44, -0.40, 0.000 +20110915, 1.64, -0.55, 0.54, 0.000 +20110916, 0.47, -0.39, -0.35, 0.000 +20110919, -0.99, -0.53, -1.23, 0.000 +20110920, -0.45, -1.49, 0.24, 0.000 +20110921, -2.92, -0.36, -1.23, 0.000 +20110922, -3.29, 0.12, 0.46, 0.000 +20110923, 0.74, 0.66, -0.02, 0.000 +20110926, 2.28, -0.64, 1.25, 0.000 +20110927, 1.22, 1.07, -0.55, 0.000 +20110928, -2.29, -1.65, -0.18, 0.000 +20110929, 0.77, 0.58, 2.04, 0.000 +20110930, -2.50, -0.16, -0.08, 0.000 +20111003, -3.18, -1.92, -0.62, 0.000 +20111004, 2.68, 3.61, 0.34, 0.000 +20111005, 1.92, -0.20, -0.45, 0.000 +20111006, 1.94, 0.25, 0.51, 0.000 +20111007, -0.98, -1.27, -1.34, 0.000 +20111010, 3.44, 0.46, 0.61, 0.000 +20111011, 0.15, 0.69, -0.17, 0.000 +20111012, 1.07, 0.50, 0.91, 0.000 +20111013, -0.21, 0.25, -1.21, 0.000 +20111014, 1.72, 0.15, -0.37, 0.000 +20111017, -2.06, -1.29, -0.45, 0.000 +20111018, 2.11, 0.63, 1.51, 0.000 +20111019, -1.38, -0.77, 0.37, 0.000 +20111020, 0.43, -0.30, 0.70, 0.000 +20111021, 1.92, 0.15, 0.01, 0.000 +20111024, 1.59, 1.76, -0.39, 0.000 +20111025, -2.13, -0.89, -0.33, 0.000 +20111026, 1.12, 0.70, 0.78, 0.000 +20111027, 3.54, 1.41, 0.83, 0.000 +20111028, -0.01, -0.57, -0.44, 0.000 +20111031, -2.50, 0.05, -0.80, 0.000 +20111101, -2.86, -0.53, -1.08, 0.000 +20111102, 1.72, 0.77, 1.00, 0.000 +20111103, 1.97, 0.59, -0.13, 0.000 +20111104, -0.53, 0.03, -0.58, 0.000 +20111107, 0.48, -0.71, 0.40, 0.000 +20111108, 1.21, 0.00, 0.47, 0.000 +20111109, -3.78, -0.81, -0.64, 0.000 +20111110, 0.83, 0.05, 0.57, 0.000 +20111111, 1.98, 0.48, -0.22, 0.000 +20111114, -0.92, -0.47, -0.80, 0.000 +20111115, 0.56, 0.88, -0.26, 0.000 +20111116, -1.64, -0.16, -0.18, 0.000 +20111117, -1.65, 0.19, 0.19, 0.000 +20111118, -0.07, 0.06, 0.91, 0.000 +20111121, -1.87, -0.50, -0.07, 0.000 +20111122, -0.44, -0.26, -0.56, 0.000 +20111123, -2.29, -0.70, -0.29, 0.000 +20111125, -0.34, -1.00, 0.47, 0.000 +20111128, 3.10, 1.63, -0.70, 0.000 +20111129, 0.18, -0.49, 0.17, 0.000 +20111130, 4.44, 1.05, 1.09, 0.000 +20111201, -0.22, -0.50, -0.65, 0.000 +20111202, 0.05, 0.44, 0.64, 0.000 +20111205, 1.09, 0.27, 0.30, 0.000 +20111206, 0.04, -0.08, 0.08, 0.000 +20111207, 0.16, -0.31, 0.73, 0.000 +20111208, -2.23, -0.74, -0.99, 0.000 +20111209, 1.83, 1.32, 0.07, 0.000 +20111212, -1.48, 0.04, -0.44, 0.000 +20111213, -1.05, -1.04, 0.12, 0.000 +20111214, -1.21, -0.26, 0.91, 0.000 +20111215, 0.40, 0.66, 0.12, 0.000 +20111216, 0.45, 0.23, -0.10, 0.000 +20111219, -1.31, -0.43, -0.70, 0.000 +20111220, 3.10, 0.81, 0.30, 0.000 +20111221, 0.20, -0.03, 1.31, 0.000 +20111222, 0.83, -0.21, 0.69, 0.000 +20111223, 0.84, -0.58, -0.16, 0.000 +20111227, 0.04, 0.47, -0.52, 0.000 +20111228, -1.34, -0.73, -0.04, 0.000 +20111229, 1.10, 0.19, 0.24, 0.000 +20111230, -0.40, -0.07, -0.14, 0.000 +20120103, 1.50, -0.16, 0.87, 0.000 +20120104, 0.00, -0.66, 0.09, 0.000 +20120105, 0.39, 0.19, 0.14, 0.000 +20120106, -0.19, 0.01, -0.26, 0.000 +20120109, 0.28, 0.22, -0.06, 0.000 +20120110, 0.97, 0.40, 0.40, 0.000 +20120111, 0.13, 0.16, 0.35, 0.000 +20120112, 0.31, 0.30, 0.00, 0.000 +20120113, -0.52, -0.26, -0.45, 0.000 +20120117, 0.36, -0.11, -0.72, 0.000 +20120118, 1.22, 0.56, 0.15, 0.000 +20120119, 0.51, -0.15, -0.22, 0.000 +20120120, 0.03, 0.24, 0.65, 0.000 +20120123, 0.02, -0.27, 0.13, 0.000 +20120124, 0.00, 0.84, -0.40, 0.000 +20120125, 0.91, 0.11, -0.71, 0.000 +20120126, -0.59, 0.25, -0.55, 0.000 +20120127, 0.01, 0.85, -0.12, 0.000 +20120130, -0.31, -0.45, -0.30, 0.000 +20120131, -0.05, -0.05, 0.02, 0.000 +20120201, 1.10, 1.12, 0.36, 0.000 +20120202, 0.17, 0.41, -0.05, 0.000 +20120203, 1.58, 0.59, 0.33, 0.000 +20120206, -0.05, -0.26, -0.20, 0.000 +20120207, 0.16, -0.28, -0.09, 0.000 +20120208, 0.25, -0.13, 0.42, 0.000 +20120209, 0.15, -0.35, -0.38, 0.000 +20120210, -0.75, -0.59, -0.10, 0.000 +20120213, 0.75, 0.59, -0.06, 0.000 +20120214, -0.09, -0.41, -0.41, 0.000 +20120215, -0.50, -0.23, 0.09, 0.000 +20120216, 1.27, 0.69, 0.28, 0.000 +20120217, 0.16, -0.30, 0.50, 0.000 +20120221, -0.05, -0.66, 0.37, 0.000 +20120222, -0.39, -0.38, -0.64, 0.000 +20120223, 0.56, 0.91, -0.08, 0.000 +20120224, 0.15, -0.44, -0.65, 0.000 +20120227, 0.14, -0.21, 0.36, 0.000 +20120228, 0.28, -0.63, -0.14, 0.000 +20120229, -0.55, -1.03, 0.20, 0.000 +20120301, 0.64, -0.23, 0.02, 0.000 +20120302, -0.46, -1.25, 0.00, 0.000 +20120305, -0.40, 0.45, 0.26, 0.000 +20120306, -1.62, -0.33, -0.33, 0.000 +20120307, 0.80, 0.31, 0.22, 0.000 +20120308, 1.07, 0.37, -0.30, 0.000 +20120309, 0.49, 0.90, 0.15, 0.000 +20120312, -0.07, -0.21, -0.03, 0.000 +20120313, 1.86, 0.09, 0.89, 0.000 +20120314, -0.23, -0.62, -0.22, 0.000 +20120315, 0.67, 0.27, 0.51, 0.000 +20120316, 0.06, -0.27, 0.39, 0.000 +20120319, 0.41, 0.52, -0.10, 0.000 +20120320, -0.39, -0.65, 0.31, 0.000 +20120321, -0.10, 0.30, -0.40, 0.000 +20120322, -0.74, -0.13, -0.43, 0.000 +20120323, 0.39, 0.59, 0.32, 0.000 +20120326, 1.45, 0.47, -0.24, 0.000 +20120327, -0.30, -0.34, -0.32, 0.000 +20120328, -0.51, -0.02, 0.42, 0.000 +20120329, -0.16, -0.02, -0.23, 0.000 +20120330, 0.28, -0.71, -0.04, 0.000 +20120402, 0.77, 0.34, 0.04, 0.000 +20120403, -0.34, -0.29, -0.32, 0.000 +20120404, -1.11, -0.58, 0.04, 0.000 +20120405, -0.03, -0.08, -0.48, 0.000 +20120409, -1.21, -0.45, -0.04, 0.000 +20120410, -1.85, -0.41, 0.09, 0.000 +20120411, 0.85, 0.76, 0.28, 0.000 +20120412, 1.44, 0.07, 0.31, 0.000 +20120413, -1.25, -0.15, -0.76, 0.000 +20120416, -0.09, 0.14, 0.85, 0.000 +20120417, 1.55, 0.06, -0.24, 0.000 +20120418, -0.43, -0.48, -0.41, 0.000 +20120419, -0.57, -0.04, 0.30, 0.000 +20120420, 0.11, 0.54, -0.08, 0.000 +20120423, -0.95, -0.56, 0.15, 0.000 +20120424, 0.29, 0.22, 0.99, 0.000 +20120425, 1.44, 0.40, -1.05, 0.000 +20120426, 0.75, -0.04, -0.03, 0.000 +20120427, 0.35, 0.71, -0.18, 0.000 +20120430, -0.49, -0.61, 0.09, 0.000 +20120501, 0.48, -0.84, 0.39, 0.000 +20120502, -0.15, 0.70, -0.59, 0.000 +20120503, -0.92, -0.64, 0.11, 0.000 +20120504, -1.62, -0.21, 0.13, 0.000 +20120507, 0.04, 0.14, 0.49, 0.000 +20120508, -0.41, 0.35, 0.36, 0.000 +20120509, -0.62, 0.17, -0.24, 0.000 +20120510, 0.29, 0.06, 0.56, 0.000 +20120511, -0.29, 0.21, -0.94, 0.000 +20120514, -1.14, -0.07, -0.12, 0.000 +20120515, -0.52, 0.51, -0.21, 0.000 +20120516, -0.44, -0.17, -0.44, 0.000 +20120517, -1.64, -0.52, 0.43, 0.000 +20120518, -0.80, -0.18, 0.16, 0.000 +20120521, 1.69, 0.67, -1.18, 0.000 +20120522, 0.00, -0.87, 0.29, 0.000 +20120523, 0.26, 0.49, -0.27, 0.000 +20120524, 0.16, -0.02, 0.20, 0.000 +20120525, -0.16, 0.23, -0.10, 0.000 +20120529, 1.14, 0.17, -0.02, 0.000 +20120530, -1.47, -0.28, -0.25, 0.000 +20120531, -0.23, 0.14, 0.56, 0.000 +20120601, -2.60, -0.54, 0.21, 0.000 +20120604, -0.05, 0.10, -0.56, 0.000 +20120605, 0.68, 0.26, 0.07, 0.000 +20120606, 2.32, 0.07, 0.22, 0.000 +20120607, -0.10, -0.46, 0.13, 0.000 +20120608, 0.85, 0.21, 0.01, 0.000 +20120611, -1.40, -0.88, -0.05, 0.000 +20120612, 1.16, 0.10, 0.09, 0.000 +20120613, -0.77, -0.51, 0.36, 0.000 +20120614, 1.04, 0.18, 0.37, 0.000 +20120615, 1.07, 0.11, -0.06, 0.000 +20120618, 0.21, 0.13, -0.85, 0.000 +20120619, 1.09, 0.69, 0.15, 0.000 +20120620, -0.14, -0.10, 0.15, 0.000 +20120621, -2.26, -0.09, 0.12, 0.000 +20120622, 0.79, 0.67, 0.07, 0.000 +20120625, -1.62, 0.08, -0.14, 0.000 +20120626, 0.52, -0.13, -0.06, 0.000 +20120627, 0.92, 0.39, 0.48, 0.000 +20120628, -0.24, 0.16, 0.44, 0.000 +20120629, 2.55, 0.39, -0.70, 0.000 +20120702, 0.33, 0.72, -0.02, 0.000 +20120703, 0.76, 0.71, 0.07, 0.000 +20120705, -0.36, 0.58, -0.88, 0.000 +20120706, -0.99, -0.41, 0.36, 0.000 +20120709, -0.23, -0.26, -0.24, 0.000 +20120710, -0.84, -0.38, 0.31, 0.000 +20120711, -0.08, -0.40, 0.74, 0.000 +20120712, -0.50, 0.23, -0.82, 0.000 +20120713, 1.62, -0.40, 0.57, 0.000 +20120716, -0.31, -0.41, -0.26, 0.000 +20120717, 0.67, -0.54, 0.24, 0.000 +20120718, 0.71, 0.30, -0.79, 0.000 +20120719, 0.27, -0.35, -0.98, 0.000 +20120720, -1.06, -0.32, 0.07, 0.000 +20120723, -1.02, -0.69, 0.20, 0.000 +20120724, -0.99, -0.57, 0.26, 0.000 +20120725, -0.01, 0.26, -0.05, 0.000 +20120726, 1.53, -0.82, 0.38, 0.000 +20120727, 1.96, 0.59, 0.08, 0.000 +20120730, -0.13, -0.40, 0.26, 0.000 +20120731, -0.47, 0.00, 0.26, 0.000 +20120801, -0.50, -1.60, 0.29, 0.000 +20120802, -0.69, 0.25, -0.41, 0.000 +20120803, 1.99, 0.55, 0.56, 0.000 +20120806, 0.34, 0.57, 0.08, 0.000 +20120807, 0.64, 0.33, 0.07, 0.000 +20120808, 0.09, -0.25, 0.59, 0.000 +20120809, 0.12, 0.37, 0.12, 0.000 +20120810, 0.17, -0.34, -0.02, 0.000 +20120813, -0.14, -0.15, 0.00, 0.000 +20120814, -0.03, -0.43, -0.05, 0.000 +20120815, 0.27, 0.74, -0.07, 0.000 +20120816, 0.75, 0.47, -0.17, 0.000 +20120817, 0.27, 0.59, 0.12, 0.000 +20120820, -0.06, -0.46, 0.59, 0.000 +20120821, -0.31, 0.10, 0.40, 0.000 +20120822, 0.00, -0.44, -0.35, 0.000 +20120823, -0.78, -0.01, -0.35, 0.000 +20120824, 0.61, -0.27, -0.03, 0.000 +20120827, -0.06, 0.12, -0.12, 0.000 +20120828, 0.01, 0.60, -0.08, 0.000 +20120829, 0.15, 0.25, 0.12, 0.000 +20120830, -0.80, -0.45, 0.00, 0.000 +20120831, 0.52, -0.07, 0.00, 0.000 +20120904, 0.08, 0.97, -0.16, 0.000 +20120905, -0.05, -0.07, 0.31, 0.000 +20120906, 2.07, -0.10, 0.34, 0.000 +20120907, 0.45, -0.01, 0.78, 0.000 +20120910, -0.57, 0.29, -0.07, 0.000 +20120911, 0.28, 0.03, 0.54, 0.000 +20120912, 0.27, 0.12, 0.32, 0.000 +20120913, 1.56, -0.40, 0.56, 0.000 +20120914, 0.54, 0.56, 0.48, 0.000 +20120917, -0.42, -0.18, -0.79, 0.000 +20120918, -0.15, -0.01, -0.23, 0.000 +20120919, 0.18, -0.15, 0.06, 0.000 +20120920, -0.13, -0.42, -0.17, 0.000 +20120921, 0.04, 0.49, -0.04, 0.000 +20120924, -0.26, -0.22, 0.33, 0.000 +20120925, -1.11, -0.34, -0.36, 0.000 +20120926, -0.57, -0.03, 0.03, 0.000 +20120927, 0.99, 0.24, -0.15, 0.000 +20120928, -0.46, -0.31, -0.25, 0.000 +20121001, 0.26, 0.07, 0.23, 0.000 +20121002, 0.10, -0.15, 0.27, 0.000 +20121003, 0.36, -0.66, -0.02, 0.000 +20121004, 0.76, -0.20, 0.77, 0.000 +20121005, -0.03, -0.18, 0.22, 0.000 +20121008, -0.36, -0.24, 0.22, 0.000 +20121009, -1.05, -0.30, 0.34, 0.000 +20121010, -0.58, 0.38, 0.26, 0.000 +20121011, 0.11, 0.33, 0.68, 0.000 +20121012, -0.34, -0.31, -0.90, 0.000 +20121015, 0.79, -0.15, 0.16, 0.000 +20121016, 1.00, -0.21, -0.24, 0.000 +20121017, 0.49, 0.15, 1.13, 0.000 +20121018, -0.31, -0.59, 0.27, 0.000 +20121019, -1.68, -0.41, 0.47, 0.000 +20121022, 0.01, -0.04, 0.17, 0.000 +20121023, -1.29, 0.98, -0.51, 0.000 +20121024, -0.28, -0.15, 0.43, 0.000 +20121025, 0.27, 0.16, -0.08, 0.000 +20121026, -0.07, -0.13, -0.40, 0.000 +20121031, 0.14, 0.51, 0.38, 0.000 +20121101, 1.19, 0.15, 0.21, 0.000 +20121102, -1.04, -0.55, 0.25, 0.000 +20121105, 0.28, 0.42, -0.23, 0.000 +20121106, 0.80, -0.04, 0.56, 0.000 +20121107, -2.31, -0.03, -1.46, 0.000 +20121108, -1.24, -0.28, 0.41, 0.000 +20121109, 0.15, 0.03, -0.14, 0.000 +20121112, 0.00, -0.18, 0.05, 0.000 +20121113, -0.40, -0.21, -0.30, 0.000 +20121114, -1.40, -0.36, -0.24, 0.000 +20121115, -0.24, -0.43, 0.17, 0.000 +20121116, 0.58, 0.08, 0.03, 0.000 +20121119, 1.98, 0.25, 0.00, 0.000 +20121120, 0.11, -0.06, 0.14, 0.000 +20121121, 0.31, 0.38, -0.06, 0.000 +20121123, 1.28, -0.15, 0.07, 0.000 +20121126, -0.14, 0.54, -0.17, 0.000 +20121127, -0.43, 0.44, -0.21, 0.000 +20121128, 0.83, 0.02, -0.27, 0.000 +20121129, 0.54, 0.69, -0.03, 0.000 +20121130, 0.02, -0.14, 0.27, 0.000 +20121203, -0.46, 0.28, 0.22, 0.001 +20121204, -0.16, 0.35, -0.06, 0.001 +20121205, 0.17, -0.66, 0.99, 0.001 +20121206, 0.31, -0.18, -0.15, 0.001 +20121207, 0.27, -0.43, 0.34, 0.001 +20121210, 0.11, 0.47, 0.02, 0.001 +20121211, 0.68, 0.46, -0.06, 0.001 +20121212, -0.02, -0.70, 0.54, 0.001 +20121213, -0.57, 0.03, 0.06, 0.001 +20121214, -0.34, 0.32, 0.26, 0.001 +20121217, 1.16, -0.07, 0.59, 0.001 +20121218, 1.20, 0.32, 0.07, 0.001 +20121219, -0.60, 0.60, 0.24, 0.001 +20121220, 0.53, -0.23, 0.72, 0.001 +20121221, -0.88, 0.43, -0.34, 0.001 +20121224, -0.24, -0.21, 0.00, 0.001 +20121226, -0.54, -0.16, 0.34, 0.001 +20121227, -0.11, 0.00, -0.17, 0.001 +20121228, -1.00, 0.45, 0.01, 0.001 +20121231, 1.71, 0.43, -0.07, 0.001 +20130102, 2.62, 0.16, 0.35, 0.000 +20130103, -0.14, 0.12, 0.05, 0.000 +20130104, 0.55, 0.10, 0.43, 0.000 +20130107, -0.31, -0.09, -0.36, 0.000 +20130108, -0.27, 0.05, -0.06, 0.000 +20130109, 0.34, 0.29, -0.41, 0.000 +20130110, 0.66, -0.66, 0.51, 0.000 +20130111, 0.02, 0.08, -0.45, 0.000 +20130114, -0.06, 0.03, -0.09, 0.000 +20130115, 0.19, 0.24, 0.01, 0.000 +20130116, -0.04, -0.24, 0.23, 0.000 +20130117, 0.61, 0.43, -0.09, 0.000 +20130118, 0.29, 0.03, -0.11, 0.000 +20130122, 0.48, 0.16, 0.46, 0.000 +20130123, 0.10, -0.29, -0.12, 0.000 +20130124, 0.09, 0.26, 0.05, 0.000 +20130125, 0.59, -0.05, -0.28, 0.000 +20130128, -0.14, 0.38, 0.12, 0.000 +20130129, 0.36, -0.45, 0.36, 0.000 +20130130, -0.38, -0.88, 0.12, 0.000 +20130131, -0.08, 0.69, 0.19, 0.000 +20130201, 0.99, 0.07, 0.26, 0.000 +20130204, -1.19, -0.14, -0.16, 0.000 +20130205, 1.07, -0.09, 0.18, 0.000 +20130206, 0.15, 0.29, 0.13, 0.000 +20130207, -0.15, -0.06, 0.02, 0.000 +20130208, 0.58, 0.01, -0.21, 0.000 +20130211, -0.08, -0.05, 0.39, 0.000 +20130212, 0.16, 0.20, 0.71, 0.000 +20130213, 0.14, 0.11, -0.01, 0.000 +20130214, 0.11, 0.34, 0.12, 0.000 +20130215, -0.11, 0.03, -0.09, 0.000 +20130219, 0.74, 0.22, 0.18, 0.000 +20130220, -1.36, -0.55, -0.64, 0.000 +20130221, -0.66, -0.31, -0.06, 0.000 +20130222, 0.94, 0.16, -0.06, 0.000 +20130225, -1.82, -0.21, -0.72, 0.000 +20130226, 0.58, -0.18, 0.02, 0.000 +20130227, 1.29, -0.38, 0.16, 0.000 +20130228, -0.05, 0.10, -0.16, 0.000 +20130301, 0.22, 0.13, -0.33, 0.000 +20130304, 0.47, -0.41, 0.10, 0.000 +20130305, 1.00, 0.22, -0.17, 0.000 +20130306, 0.18, 0.06, 0.48, 0.000 +20130307, 0.27, 0.19, 0.42, 0.000 +20130308, 0.52, 0.39, -0.16, 0.000 +20130311, 0.30, -0.34, 0.23, 0.000 +20130312, -0.22, 0.05, -0.13, 0.000 +20130313, 0.20, 0.18, 0.06, 0.000 +20130314, 0.58, 0.38, 0.39, 0.000 +20130315, -0.19, 0.02, 0.42, 0.000 +20130318, -0.50, 0.11, -0.23, 0.000 +20130319, -0.24, -0.03, 0.04, 0.000 +20130320, 0.76, 0.27, 0.01, 0.000 +20130321, -0.85, 0.17, -0.28, 0.000 +20130322, 0.62, -0.46, -0.30, 0.000 +20130325, -0.29, 0.29, 0.02, 0.000 +20130326, 0.76, -0.38, -0.22, 0.000 +20130327, -0.02, 0.16, -0.30, 0.000 +20130328, 0.39, -0.27, -0.30, 0.000 +20130401, -0.57, -0.93, 0.02, 0.000 +20130402, 0.33, -0.90, -0.33, 0.000 +20130403, -1.16, -0.42, -0.20, 0.000 +20130404, 0.42, 0.18, 0.25, 0.000 +20130405, -0.41, 0.05, 0.35, 0.000 +20130408, 0.70, 0.13, 0.29, 0.000 +20130409, 0.31, -0.40, 0.20, 0.000 +20130410, 1.28, 0.63, -0.10, 0.000 +20130411, 0.35, -0.20, -0.14, 0.000 +20130412, -0.28, -0.13, -0.46, 0.000 +20130415, -2.48, -1.49, -0.28, 0.000 +20130416, 1.47, 0.18, 0.07, 0.000 +20130417, -1.46, -0.29, -0.55, 0.000 +20130418, -0.71, 0.16, 0.02, 0.000 +20130419, 0.97, 0.04, 0.13, 0.000 +20130422, 0.45, -0.15, -0.14, 0.000 +20130423, 1.11, 0.46, 0.63, 0.000 +20130424, 0.06, 0.37, 1.21, 0.000 +20130425, 0.49, 0.20, 0.01, 0.000 +20130426, -0.20, -0.35, -0.22, 0.000 +20130429, 0.67, 0.13, -0.07, 0.000 +20130430, 0.29, 0.38, -0.05, 0.000 +20130501, -1.08, -1.40, -0.27, 0.000 +20130502, 1.04, 0.59, 0.13, 0.000 +20130503, 1.12, 0.62, 0.16, 0.000 +20130506, 0.23, 0.24, 0.84, 0.000 +20130507, 0.54, 0.12, 0.13, 0.000 +20130508, 0.44, -0.21, 0.13, 0.000 +20130509, -0.31, 0.11, -0.30, 0.000 +20130510, 0.54, 0.43, -0.19, 0.000 +20130513, -0.02, -0.23, -0.04, 0.000 +20130514, 1.10, 0.12, 0.31, 0.000 +20130515, 0.51, -0.15, 0.28, 0.000 +20130516, -0.50, 0.15, -0.28, 0.000 +20130517, 1.04, -0.01, 0.39, 0.000 +20130520, -0.06, 0.38, 0.50, 0.000 +20130521, 0.16, -0.10, -0.08, 0.000 +20130522, -0.92, -0.73, -0.17, 0.000 +20130523, -0.19, 0.48, -0.08, 0.000 +20130524, -0.06, 0.16, 0.06, 0.000 +20130528, 0.77, 0.65, 0.21, 0.000 +20130529, -0.70, -0.36, 0.58, 0.000 +20130530, 0.50, 0.31, 0.49, 0.000 +20130531, -1.31, 0.51, -0.25, 0.000 +20130603, 0.48, 0.17, -0.10, 0.000 +20130604, -0.55, -0.30, -0.17, 0.000 +20130605, -1.38, 0.07, -0.26, 0.000 +20130606, 0.89, 0.15, 0.26, 0.000 +20130607, 1.30, -0.47, 0.07, 0.000 +20130610, 0.07, 0.65, 0.22, 0.000 +20130611, -1.04, 0.01, -0.58, 0.000 +20130612, -0.82, 0.01, 0.02, 0.000 +20130613, 1.47, 0.11, 0.31, 0.000 +20130614, -0.59, -0.24, -0.54, 0.000 +20130617, 0.74, -0.09, 0.02, 0.000 +20130618, 0.80, 0.38, -0.05, 0.000 +20130619, -1.28, 0.17, 0.11, 0.000 +20130620, -2.45, -0.02, 0.34, 0.000 +20130621, 0.13, 0.19, -0.09, 0.000 +20130624, -1.19, 0.08, -0.66, 0.000 +20130625, 0.96, -0.02, 0.87, 0.000 +20130626, 0.92, -0.74, -0.13, 0.000 +20130627, 0.77, 0.84, 0.36, 0.000 +20130628, -0.33, 0.33, -0.14, 0.000 +20130701, 0.71, 0.82, -0.14, 0.000 +20130702, -0.10, 0.00, 0.09, 0.000 +20130703, 0.11, 0.19, -0.21, 0.000 +20130705, 1.11, 0.37, 0.45, 0.000 +20130708, 0.53, -0.18, 0.05, 0.000 +20130709, 0.74, 0.04, 0.26, 0.000 +20130710, 0.06, 0.35, -0.41, 0.000 +20130711, 1.32, -0.11, -0.62, 0.000 +20130712, 0.33, -0.01, 0.20, 0.000 +20130715, 0.20, 0.50, 0.34, 0.000 +20130716, -0.41, 0.03, 0.09, 0.000 +20130717, 0.30, -0.04, 0.18, 0.000 +20130718, 0.54, 0.03, 0.96, 0.000 +20130719, 0.09, -0.12, 0.28, 0.000 +20130722, 0.22, 0.10, 0.29, 0.000 +20130723, -0.15, 0.06, 0.28, 0.000 +20130724, -0.39, -0.27, -0.26, 0.000 +20130725, 0.42, 0.59, -0.35, 0.000 +20130726, 0.02, -0.64, -0.21, 0.000 +20130729, -0.37, -0.32, -0.28, 0.000 +20130730, 0.12, 0.20, -0.51, 0.000 +20130731, 0.09, 0.15, 0.09, 0.000 +20130801, 1.40, 0.06, 0.05, 0.000 +20130802, 0.20, -0.21, -0.33, 0.000 +20130805, -0.07, 0.50, -0.17, 0.000 +20130806, -0.68, -0.33, -0.10, 0.000 +20130807, -0.42, -0.34, 0.02, 0.000 +20130808, 0.47, 0.01, -0.01, 0.000 +20130809, -0.29, 0.13, -0.20, 0.000 +20130812, -0.02, 0.58, -0.22, 0.000 +20130813, 0.20, -0.29, -0.05, 0.000 +20130814, -0.50, 0.14, 0.28, 0.000 +20130815, -1.47, -0.37, 0.29, 0.000 +20130816, -0.26, 0.05, 0.09, 0.000 +20130819, -0.62, -0.19, -0.75, 0.000 +20130820, 0.53, 0.84, 0.13, 0.000 +20130821, -0.59, -0.02, -0.46, 0.000 +20130822, 0.93, 0.51, 0.05, 0.000 +20130823, 0.38, -0.22, -0.14, 0.000 +20130826, -0.29, 0.50, -0.50, 0.000 +20130827, -1.75, -0.74, -0.32, 0.000 +20130828, 0.30, 0.11, 0.08, 0.000 +20130829, 0.34, 0.78, -0.41, 0.000 +20130830, -0.47, -1.14, -0.21, 0.000 +20130903, 0.46, 0.05, 0.10, 0.000 +20130904, 0.83, -0.01, -0.15, 0.000 +20130905, 0.19, 0.17, 0.37, 0.000 +20130906, 0.01, 0.04, 0.00, 0.000 +20130909, 1.09, 0.46, -0.22, 0.000 +20130910, 0.80, 0.01, 0.21, 0.000 +20130911, 0.28, -0.22, 0.01, 0.000 +20130912, -0.32, -0.23, -0.34, 0.000 +20130913, 0.29, 0.24, -0.01, 0.000 +20130916, 0.49, -0.44, 0.40, 0.000 +20130917, 0.54, 0.47, -0.13, 0.000 +20130918, 1.10, -0.16, -0.45, 0.000 +20130919, -0.13, 0.16, -0.60, 0.000 +20130920, -0.63, 0.53, 0.18, 0.000 +20130923, -0.45, 0.45, -0.37, 0.000 +20130924, -0.12, 0.53, 0.01, 0.000 +20130925, -0.23, 0.03, 0.58, 0.000 +20130926, 0.42, 0.21, -0.73, 0.000 +20130927, -0.39, -0.01, -0.06, 0.000 +20130930, -0.49, 0.50, 0.06, 0.000 +20131001, 0.90, 0.41, -0.13, 0.000 +20131002, -0.10, -0.37, -0.08, 0.000 +20131003, -0.88, -0.19, 0.20, 0.000 +20131004, 0.74, -0.01, 0.10, 0.000 +20131007, -0.95, -0.27, 0.00, 0.000 +20131008, -1.35, -0.47, 0.76, 0.000 +20131009, -0.05, -0.44, 0.62, 0.000 +20131010, 2.23, 0.16, -0.02, 0.000 +20131011, 0.71, 0.79, 0.00, 0.000 +20131014, 0.44, 0.23, -0.11, 0.000 +20131015, -0.73, -0.19, 0.01, 0.000 +20131016, 1.37, -0.32, 0.14, 0.000 +20131017, 0.70, 0.15, 0.04, 0.000 +20131018, 0.73, 0.34, -0.05, 0.000 +20131021, -0.02, -0.12, 0.05, 0.000 +20131022, 0.50, -0.28, 0.09, 0.000 +20131023, -0.51, 0.16, -0.33, 0.000 +20131024, 0.42, 0.40, -0.30, 0.000 +20131025, 0.33, -0.34, 0.14, 0.000 +20131028, 0.09, -0.06, 0.02, 0.000 +20131029, 0.54, -0.14, -0.11, 0.000 +20131030, -0.61, -0.77, 0.49, 0.000 +20131031, -0.34, -0.09, -0.43, 0.000 +20131101, 0.20, -0.68, 0.22, 0.000 +20131104, 0.47, 0.76, -0.03, 0.000 +20131105, -0.23, 0.00, -0.25, 0.000 +20131106, 0.27, -0.83, 0.38, 0.000 +20131107, -1.46, -0.36, 0.19, 0.000 +20131108, 1.45, 0.53, 0.41, 0.000 +20131111, 0.12, 0.01, -0.13, 0.000 +20131112, -0.19, 0.37, -0.70, 0.000 +20131113, 0.90, 0.09, -0.12, 0.000 +20131114, 0.43, -0.56, 0.31, 0.000 +20131115, 0.43, 0.06, -0.27, 0.000 +20131118, -0.50, -0.45, 0.45, 0.000 +20131119, -0.27, -0.33, 0.26, 0.000 +20131120, -0.33, 0.26, 0.03, 0.000 +20131121, 0.97, 0.79, -0.06, 0.000 +20131122, 0.50, -0.07, 0.11, 0.000 +20131125, -0.11, 0.15, 0.14, 0.000 +20131126, 0.18, 0.85, -0.48, 0.000 +20131127, 0.30, 0.35, -0.06, 0.000 +20131129, -0.02, 0.29, -0.17, 0.000 +20131202, -0.31, -0.97, 0.16, 0.000 +20131203, -0.34, -0.08, -0.09, 0.000 +20131204, -0.07, -0.20, 0.26, 0.000 +20131205, -0.35, 0.70, -0.63, 0.000 +20131206, 1.02, -0.28, 0.20, 0.000 +20131209, 0.17, -0.42, 0.00, 0.000 +20131210, -0.34, -0.56, 0.20, 0.000 +20131211, -1.16, -0.35, 0.05, 0.000 +20131212, -0.23, 0.36, 0.25, 0.000 +20131213, 0.10, 0.25, -0.01, 0.000 +20131216, 0.67, 0.58, -0.14, 0.000 +20131217, -0.26, 0.18, -0.16, 0.000 +20131218, 1.55, -0.47, 0.04, 0.000 +20131219, -0.10, -0.54, 0.16, 0.000 +20131220, 0.69, 1.29, -0.30, 0.000 +20131223, 0.62, 0.50, -0.05, 0.000 +20131224, 0.34, 0.10, 0.11, 0.000 +20131226, 0.44, -0.32, -0.31, 0.000 +20131227, -0.05, -0.07, 0.23, 0.000 +20131230, 0.00, 0.02, -0.30, 0.000 +20131231, 0.44, -0.17, 0.04, 0.000 +20140102, -0.88, -0.27, 0.11, 0.000 +20140103, 0.03, 0.36, 0.04, 0.000 +20140106, -0.34, -0.57, 0.26, 0.000 +20140107, 0.68, 0.40, -0.41, 0.000 +20140108, 0.04, 0.01, -0.12, 0.000 +20140109, 0.02, 0.17, -0.38, 0.000 +20140110, 0.27, 0.52, -0.77, 0.000 +20140113, -1.32, -0.07, 0.10, 0.000 +20140114, 1.15, 0.19, -0.38, 0.000 +20140115, 0.53, 0.21, 0.20, 0.000 +20140116, -0.07, 0.29, -0.68, 0.000 +20140117, -0.39, 0.03, 0.04, 0.000 +20140121, 0.30, 0.46, -0.01, 0.000 +20140122, 0.15, 0.27, 0.21, 0.000 +20140123, -0.86, 0.15, -0.50, 0.000 +20140124, -2.19, -0.39, 0.22, 0.000 +20140127, -0.65, -0.86, 0.46, 0.000 +20140128, 0.73, 0.19, -0.02, 0.000 +20140129, -1.07, -0.41, 0.25, 0.000 +20140130, 1.22, 0.31, -0.42, 0.000 +20140131, -0.66, -0.06, -0.39, 0.000 +20140203, -2.48, -0.89, 0.32, 0.000 +20140204, 0.77, -0.04, -0.10, 0.000 +20140205, -0.23, -0.60, 0.20, 0.000 +20140206, 1.21, -0.48, 0.23, 0.000 +20140207, 1.33, -0.16, -0.67, 0.000 +20140210, 0.16, 0.12, -0.44, 0.000 +20140211, 1.09, -0.19, 0.24, 0.000 +20140212, 0.11, 0.25, -0.08, 0.000 +20140213, 0.72, 0.73, -0.09, 0.000 +20140214, 0.42, -0.37, 0.38, 0.000 +20140218, 0.27, 0.98, -0.24, 0.000 +20140219, -0.74, -0.29, -0.39, 0.000 +20140220, 0.70, 0.53, -0.14, 0.000 +20140221, -0.09, 0.35, -0.04, 0.000 +20140224, 0.65, 0.19, 0.26, 0.000 +20140225, -0.10, 0.12, -0.61, 0.000 +20140226, 0.12, 0.68, -0.09, 0.000 +20140227, 0.54, 0.15, 0.01, 0.000 +20140228, 0.15, -0.71, 0.83, 0.000 +20140303, -0.70, 0.08, 0.15, 0.000 +20140304, 1.67, 1.11, -0.12, 0.000 +20140305, 0.01, -0.27, 0.28, 0.000 +20140306, 0.16, -0.32, 0.75, 0.000 +20140307, 0.04, -0.11, 0.52, 0.000 +20140310, -0.09, -0.11, 0.06, 0.000 +20140311, -0.62, -0.54, -0.19, 0.000 +20140312, 0.13, 0.30, -0.17, 0.000 +20140313, -1.21, -0.13, 0.27, 0.000 +20140314, -0.16, 0.68, -0.05, 0.000 +20140317, 0.90, -0.36, -0.01, 0.000 +20140318, 0.82, 0.74, -0.42, 0.000 +20140319, -0.59, -0.17, 0.60, 0.000 +20140320, 0.52, -0.48, 0.99, 0.000 +20140321, -0.37, -0.28, 0.88, 0.000 +20140324, -0.64, -0.89, 0.97, 0.000 +20140325, 0.30, -0.34, 0.14, 0.000 +20140326, -0.89, -1.19, 0.30, 0.000 +20140327, -0.19, -0.13, -0.24, 0.000 +20140328, 0.41, -0.43, 0.52, 0.000 +20140331, 0.97, 0.99, -0.16, 0.000 +20140401, 0.87, 0.74, -0.41, 0.000 +20140402, 0.29, 0.04, 0.12, 0.000 +20140403, -0.31, -0.89, 0.79, 0.000 +20140404, -1.47, -1.15, 0.74, 0.000 +20140407, -1.26, -0.30, -0.02, 0.000 +20140408, 0.50, 0.31, -0.22, 0.000 +20140409, 1.20, 0.34, -0.93, 0.000 +20140410, -2.24, -0.71, 0.86, 0.000 +20140411, -1.07, -0.41, 0.29, 0.000 +20140414, 0.70, -0.50, 0.21, 0.000 +20140415, 0.59, -0.38, 0.17, 0.000 +20140416, 1.13, 0.04, -0.44, 0.000 +20140417, 0.23, 0.32, 0.24, 0.000 +20140421, 0.36, 0.20, -0.43, 0.000 +20140422, 0.58, 0.72, -0.37, 0.000 +20140423, -0.31, -0.64, 0.89, 0.000 +20140424, 0.08, -0.41, -0.17, 0.000 +20140425, -1.05, -0.96, 0.62, 0.000 +20140428, 0.11, -0.65, -0.54, 0.000 +20140429, 0.56, -0.21, -0.22, 0.000 +20140430, 0.35, 0.25, -0.04, 0.000 +20140501, 0.04, -0.15, -0.18, 0.000 +20140502, -0.07, 0.23, 0.33, 0.000 +20140505, 0.13, -0.30, -0.52, 0.000 +20140506, -1.03, -0.54, 0.16, 0.000 +20140507, 0.45, -0.85, 1.18, 0.000 +20140508, -0.26, -1.00, 0.34, 0.000 +20140509, 0.25, 0.71, -0.39, 0.000 +20140512, 1.20, 1.41, -0.30, 0.000 +20140513, -0.05, -1.06, 0.18, 0.000 +20140514, -0.60, -1.10, -0.43, 0.000 +20140515, -0.90, 0.33, -0.27, 0.000 +20140516, 0.36, 0.26, -0.40, 0.000 +20140519, 0.50, 0.63, 0.00, 0.000 +20140520, -0.78, -0.81, 0.23, 0.000 +20140521, 0.81, -0.26, 0.05, 0.000 +20140522, 0.36, 0.63, -0.27, 0.000 +20140523, 0.49, 0.62, -0.24, 0.000 +20140527, 0.69, 0.70, -0.19, 0.000 +20140528, -0.11, -0.33, 0.27, 0.000 +20140529, 0.54, -0.20, -0.12, 0.000 +20140530, 0.06, -0.68, 0.28, 0.000 +20140602, 0.06, -0.69, 0.40, 0.000 +20140603, -0.05, -0.27, 0.18, 0.000 +20140604, 0.28, 0.23, -0.09, 0.000 +20140605, 0.77, 1.29, -0.18, 0.000 +20140606, 0.54, 0.48, 0.00, 0.000 +20140609, 0.22, 1.01, -0.31, 0.000 +20140610, -0.03, -0.18, -0.04, 0.000 +20140611, -0.34, -0.13, -0.28, 0.000 +20140612, -0.68, 0.10, 0.17, 0.000 +20140613, 0.31, -0.07, -0.19, 0.000 +20140616, 0.13, 0.46, -0.67, 0.000 +20140617, 0.34, 0.55, 0.45, 0.000 +20140618, 0.75, -0.27, -0.09, 0.000 +20140619, 0.12, -0.16, -0.04, 0.000 +20140620, 0.18, 0.18, 0.04, 0.000 +20140623, -0.01, -0.24, 0.08, 0.000 +20140624, -0.72, -0.33, -0.21, 0.000 +20140625, 0.53, 0.36, 0.07, 0.000 +20140626, -0.11, -0.08, 0.05, 0.000 +20140627, 0.26, 0.48, -0.22, 0.000 +20140630, 0.07, 0.26, 0.19, 0.000 +20140701, 0.74, 0.48, -0.37, 0.000 +20140702, -0.03, -0.45, -0.21, 0.000 +20140703, 0.59, 0.22, 0.08, 0.000 +20140707, -0.62, -1.27, 0.38, 0.000 +20140708, -0.82, -0.66, 0.71, 0.000 +20140709, 0.46, -0.38, -0.11, 0.000 +20140710, -0.49, -0.59, 0.02, 0.000 +20140711, 0.12, -0.21, -0.39, 0.000 +20140714, 0.46, 0.00, -0.13, 0.000 +20140715, -0.32, -0.94, 0.98, 0.000 +20140716, 0.32, -0.60, 0.32, 0.000 +20140717, -1.21, -0.39, 0.18, 0.000 +20140718, 1.12, 0.49, -0.47, 0.000 +20140721, -0.25, -0.24, 0.05, 0.000 +20140722, 0.53, 0.25, -0.32, 0.000 +20140723, 0.19, 0.13, -0.74, 0.000 +20140724, 0.05, -0.27, 0.04, 0.000 +20140725, -0.53, -0.36, 0.16, 0.000 +20140728, -0.08, -0.47, 0.28, 0.000 +20140729, -0.33, 0.70, -0.67, 0.000 +20140730, 0.12, 0.43, -0.29, 0.000 +20140731, -2.03, -0.20, 0.46, 0.000 +20140801, -0.32, -0.18, -0.07, 0.000 +20140804, 0.74, 0.02, -0.22, 0.000 +20140805, -0.84, 0.77, -0.19, 0.000 +20140806, 0.02, 0.37, 0.18, 0.000 +20140807, -0.52, -0.03, -0.14, 0.000 +20140808, 1.12, -0.21, -0.18, 0.000 +20140811, 0.40, 0.60, -0.29, 0.000 +20140812, -0.23, -0.60, 0.25, 0.000 +20140813, 0.69, -0.08, -0.24, 0.000 +20140814, 0.44, -0.23, 0.04, 0.000 +20140815, 0.00, -0.15, -0.15, 0.000 +20140818, 0.93, 0.60, -0.19, 0.000 +20140819, 0.49, -0.13, -0.10, 0.000 +20140820, 0.19, -0.64, 0.27, 0.000 +20140821, 0.28, -0.14, 0.82, 0.000 +20140822, -0.10, 0.30, -0.39, 0.000 +20140825, 0.50, -0.24, 0.04, 0.000 +20140826, 0.19, 0.70, -0.33, 0.000 +20140827, 0.00, -0.23, 0.15, 0.000 +20140828, -0.19, -0.42, 0.09, 0.000 +20140829, 0.39, 0.27, 0.09, 0.000 +20140902, 0.06, 0.46, -0.09, 0.000 +20140903, -0.14, -0.54, 0.23, 0.000 +20140904, -0.17, -0.14, -0.15, 0.000 +20140905, 0.45, -0.26, -0.06, 0.000 +20140908, -0.22, 0.52, -0.44, 0.000 +20140909, -0.72, -0.43, -0.02, 0.000 +20140910, 0.45, 0.20, -0.39, 0.000 +20140911, 0.19, 0.49, 0.20, 0.000 +20140912, -0.55, -0.23, 0.14, 0.000 +20140915, -0.28, -1.06, 0.66, 0.000 +20140916, 0.70, -0.39, -0.13, 0.000 +20140917, 0.17, 0.08, -0.20, 0.000 +20140918, 0.50, 0.01, 0.03, 0.000 +20140919, -0.18, -0.96, 0.05, 0.000 +20140922, -0.97, -0.57, 0.13, 0.000 +20140923, -0.62, -0.32, -0.05, 0.000 +20140924, 0.81, 0.08, -0.92, 0.000 +20140925, -1.62, 0.08, 0.15, 0.000 +20140926, 0.85, -0.04, -0.27, 0.000 +20140929, -0.22, 0.17, -0.44, 0.000 +20140930, -0.40, -1.00, 0.14, 0.000 +20141001, -1.39, -0.15, 0.33, 0.000 +20141002, 0.15, 1.02, -0.38, 0.000 +20141003, 1.08, -0.39, -0.41, 0.000 +20141006, -0.26, -0.78, 0.39, 0.000 +20141007, -1.56, -0.12, 0.12, 0.000 +20141008, 1.70, 0.02, -0.06, 0.000 +20141009, -2.17, -0.42, -0.40, 0.000 +20141010, -1.30, -0.16, 0.56, 0.000 +20141013, -1.59, 1.32, 0.50, 0.000 +20141014, 0.28, 0.85, -0.12, 0.000 +20141015, -0.53, 1.80, -1.31, 0.000 +20141016, 0.23, 1.08, 0.17, 0.000 +20141017, 1.14, -1.56, -0.10, 0.000 +20141020, 0.94, 0.20, -0.33, 0.000 +20141021, 1.98, -0.41, 0.02, 0.000 +20141022, -0.85, -0.57, 0.21, 0.000 +20141023, 1.29, 0.52, -0.46, 0.000 +20141024, 0.66, -0.46, -0.11, 0.000 +20141027, -0.17, 0.11, -0.26, 0.000 +20141028, 1.37, 1.58, -0.02, 0.000 +20141029, -0.18, -0.02, 0.44, 0.000 +20141030, 0.60, 0.27, -0.47, 0.000 +20141031, 1.23, 0.28, 0.19, 0.000 +20141103, -0.01, -0.26, -0.06, 0.000 +20141104, -0.35, -0.03, -0.11, 0.000 +20141105, 0.48, -0.53, 0.86, 0.000 +20141106, 0.49, 0.09, -0.48, 0.000 +20141107, 0.09, 0.01, 0.44, 0.000 +20141110, 0.33, 0.19, -0.50, 0.000 +20141111, 0.10, 0.02, -0.29, 0.000 +20141112, 0.07, 0.77, -0.28, 0.000 +20141113, -0.03, -0.91, -0.33, 0.000 +20141114, 0.06, -0.14, 0.14, 0.000 +20141117, -0.05, -0.98, 0.27, 0.000 +20141118, 0.51, 0.04, -0.36, 0.000 +20141119, -0.21, -0.93, -0.06, 0.000 +20141120, 0.31, 0.87, -0.02, 0.000 +20141121, 0.48, -0.39, -0.08, 0.000 +20141124, 0.40, 0.94, -0.57, 0.000 +20141125, -0.08, 0.06, -0.04, 0.000 +20141126, 0.30, 0.09, -0.46, 0.000 +20141128, -0.35, -0.93, -1.02, 0.000 +20141201, -0.90, -0.96, 0.61, 0.000 +20141202, 0.65, 0.41, 0.05, 0.000 +20141203, 0.46, 0.45, 0.30, 0.000 +20141204, -0.17, -0.32, 0.08, 0.000 +20141205, 0.25, 0.57, 0.25, 0.000 +20141208, -0.82, -0.58, 0.27, 0.000 +20141209, 0.13, 1.71, -0.29, 0.000 +20141210, -1.72, -0.61, -0.10, 0.000 +20141211, 0.49, -0.08, -0.20, 0.000 +20141212, -1.55, 0.48, -0.58, 0.000 +20141215, -0.68, -0.26, 0.11, 0.000 +20141216, -0.80, 0.63, 0.60, 0.000 +20141217, 2.15, 0.85, -0.10, 0.000 +20141218, 2.36, -0.88, -0.21, 0.000 +20141219, 0.43, -0.22, 0.19, 0.000 +20141222, 0.37, 0.19, -0.04, 0.000 +20141223, 0.21, -0.26, 1.06, 0.000 +20141224, 0.07, 0.36, -0.17, 0.000 +20141226, 0.39, 0.37, -0.32, 0.000 +20141229, 0.13, 0.16, 0.57, 0.000 +20141230, -0.48, 0.06, 0.35, 0.000 +20141231, -0.93, 0.49, -0.39, 0.000 +20150102, -0.11, -0.59, 0.09, 0.000 +20150105, -1.84, 0.33, -0.63, 0.000 +20150106, -1.04, -0.78, -0.26, 0.000 +20150107, 1.19, 0.17, -0.65, 0.000 +20150108, 1.81, -0.11, -0.27, 0.000 +20150109, -0.85, 0.02, -0.50, 0.000 +20150112, -0.79, 0.37, -0.37, 0.000 +20150113, -0.19, 0.28, 0.03, 0.000 +20150114, -0.60, 0.29, -0.50, 0.000 +20150115, -1.08, -0.95, 0.63, 0.000 +20150116, 1.36, 0.47, -0.14, 0.000 +20150120, 0.11, -0.67, -0.55, 0.000 +20150121, 0.42, -0.95, 0.55, 0.000 +20150122, 1.58, 0.46, 0.41, 0.000 +20150123, -0.47, 0.51, -0.82, 0.000 +20150126, 0.42, 0.57, -0.05, 0.000 +20150127, -1.21, 0.67, 0.23, 0.000 +20150128, -1.39, -0.08, -0.77, 0.000 +20150129, 0.98, 0.24, 0.00, 0.000 +20150130, -1.30, -0.77, 0.03, 0.000 +20150202, 1.25, -0.46, 1.00, 0.000 +20150203, 1.49, 0.17, 0.51, 0.000 +20150204, -0.35, -0.07, -0.21, 0.000 +20150205, 1.10, 0.47, -0.16, 0.000 +20150206, -0.20, 0.07, 0.38, 0.000 +20150209, -0.46, -0.39, 0.09, 0.000 +20150210, 1.04, -0.31, -0.70, 0.000 +20150211, 0.03, -0.11, -0.33, 0.000 +20150212, 1.00, 0.16, -0.09, 0.000 +20150213, 0.47, 0.18, -0.29, 0.000 +20150217, 0.17, -0.02, 0.00, 0.000 +20150218, 0.03, 0.29, -0.81, 0.000 +20150219, -0.01, 0.27, -0.35, 0.000 +20150220, 0.61, -0.40, -0.26, 0.000 +20150223, -0.08, 0.04, -0.38, 0.000 +20150224, 0.32, -0.04, 0.69, 0.000 +20150225, 0.02, 0.22, -0.51, 0.000 +20150226, -0.08, 0.62, -0.49, 0.000 +20150227, -0.36, -0.21, 0.22, 0.000 +20150302, 0.62, 0.23, -0.43, 0.000 +20150303, -0.43, -0.31, 0.30, 0.000 +20150304, -0.41, 0.09, -0.40, 0.000 +20150305, 0.15, 0.24, -0.43, 0.000 +20150306, -1.29, 0.27, 0.43, 0.000 +20150309, 0.37, 0.08, -0.02, 0.000 +20150310, -1.63, 0.42, -0.47, 0.000 +20150311, -0.04, 0.57, 0.52, 0.000 +20150312, 1.28, 0.38, 0.50, 0.000 +20150313, -0.57, 0.21, -0.03, 0.000 +20150316, 1.23, -0.77, -0.42, 0.000 +20150317, -0.20, 0.54, -0.02, 0.000 +20150318, 1.08, -0.51, 0.00, 0.000 +20150319, -0.36, 0.87, -1.10, 0.000 +20150320, 0.81, -0.14, 0.54, 0.000 +20150323, -0.19, 0.21, 0.23, 0.000 +20150324, -0.51, 0.58, -0.28, 0.000 +20150325, -1.56, -0.98, 1.04, 0.000 +20150326, -0.22, 0.11, -0.06, 0.000 +20150327, 0.32, 0.50, -0.70, 0.000 +20150330, 1.24, 0.01, -0.04, 0.000 +20150331, -0.75, 0.42, 0.37, 0.000 +20150401, -0.38, 0.34, 0.42, 0.000 +20150402, 0.35, -0.08, 0.31, 0.000 +20150406, 0.61, -0.27, -0.15, 0.000 +20150407, -0.22, -0.19, -0.16, 0.000 +20150408, 0.37, 0.53, -0.72, 0.000 +20150409, 0.41, -0.70, -0.06, 0.000 +20150410, 0.49, -0.07, -0.28, 0.000 +20150413, -0.38, 0.49, 0.23, 0.000 +20150414, 0.11, -0.19, 0.19, 0.000 +20150415, 0.57, 0.25, 0.32, 0.000 +20150416, -0.08, -0.08, -0.20, 0.000 +20150417, -1.23, -0.46, 0.23, 0.000 +20150420, 0.95, 0.16, -0.27, 0.000 +20150421, -0.10, 0.19, -0.76, 0.000 +20150422, 0.46, -0.37, 0.16, 0.000 +20150423, 0.29, 0.29, -0.22, 0.000 +20150424, 0.17, -0.51, -0.28, 0.000 +20150427, -0.54, -0.70, 0.56, 0.000 +20150428, 0.27, 0.21, 1.02, 0.000 +20150429, -0.38, -0.74, 0.74, 0.000 +20150430, -1.11, -1.06, 0.77, 0.000 +20150501, 1.01, -0.31, -0.63, 0.000 +20150504, 0.32, 0.03, 0.25, 0.000 +20150505, -1.19, -0.15, 0.51, 0.000 +20150506, -0.31, 0.64, -0.13, 0.000 +20150507, 0.39, 0.04, -0.40, 0.000 +20150508, 1.21, -0.57, -0.12, 0.000 +20150511, -0.39, 0.67, -0.03, 0.000 +20150512, -0.27, 0.00, 0.07, 0.000 +20150513, 0.01, 0.00, 0.02, 0.000 +20150514, 1.01, -0.11, -0.35, 0.000 +20150515, 0.05, -0.24, -0.21, 0.000 +20150518, 0.44, 0.74, -0.09, 0.000 +20150519, -0.09, -0.12, 0.23, 0.000 +20150520, -0.05, 0.22, -0.13, 0.000 +20150521, 0.23, -0.30, -0.02, 0.000 +20150522, -0.22, -0.12, -0.14, 0.000 +20150526, -1.01, -0.02, -0.01, 0.000 +20150527, 0.93, 0.33, -0.35, 0.000 +20150528, -0.12, 0.10, 0.13, 0.000 +20150529, -0.58, 0.02, 0.05, 0.000 +20150601, 0.17, -0.04, -0.22, 0.000 +20150602, -0.02, 0.32, 0.33, 0.000 +20150603, 0.39, 0.86, -0.24, 0.000 +20150604, -0.88, -0.10, -0.01, 0.000 +20150605, 0.06, 0.80, 0.05, 0.000 +20150608, -0.66, 0.05, 0.03, 0.000 +20150609, 0.02, -0.31, 0.35, 0.000 +20150610, 1.20, 0.15, 0.19, 0.000 +20150611, 0.21, -0.10, -0.11, 0.000 +20150612, -0.63, 0.33, 0.13, 0.000 +20150615, -0.45, 0.11, -0.13, 0.000 +20150616, 0.57, 0.10, 0.00, 0.000 +20150617, 0.16, -0.29, -0.63, 0.000 +20150618, 0.99, 0.21, -0.43, 0.000 +20150619, -0.43, 0.56, -0.20, 0.000 +20150622, 0.63, 0.08, -0.06, 0.000 +20150623, 0.12, 0.24, 0.27, 0.000 +20150624, -0.79, -0.11, 0.13, 0.000 +20150625, -0.25, 0.36, -0.20, 0.000 +20150626, -0.06, -0.23, 0.45, 0.000 +20150629, -2.15, -0.42, 0.18, 0.000 +20150630, 0.33, 0.31, -0.67, 0.000 +20150701, 0.60, -0.77, -0.06, 0.000 +20150702, -0.11, -0.56, -0.04, 0.000 +20150706, -0.37, 0.16, -0.55, 0.000 +20150707, 0.53, -0.44, -0.25, 0.000 +20150708, -1.68, -0.03, 0.08, 0.000 +20150709, 0.29, 0.16, -0.03, 0.000 +20150710, 1.24, 0.23, -0.55, 0.000 +20150713, 1.14, -0.07, -0.41, 0.000 +20150714, 0.47, 0.15, 0.12, 0.000 +20150715, -0.19, -0.81, -0.08, 0.000 +20150716, 0.78, -0.17, -0.62, 0.000 +20150717, 0.05, -0.60, -0.64, 0.000 +20150720, -0.01, -0.72, -0.57, 0.000 +20150721, -0.47, 0.03, 0.30, 0.000 +20150722, -0.18, 0.18, 0.19, 0.000 +20150723, -0.60, -0.36, -0.35, 0.000 +20150724, -1.08, -0.61, -0.02, 0.000 +20150727, -0.74, -0.25, 0.08, 0.000 +20150728, 1.23, -0.34, -0.12, 0.000 +20150729, 0.74, -0.36, 0.52, 0.000 +20150730, 0.12, 0.17, -0.25, 0.000 +20150731, -0.15, 0.82, -0.99, 0.000 +20150803, -0.35, -0.33, -0.17, 0.000 +20150804, -0.14, 0.09, -0.19, 0.000 +20150805, 0.36, 0.01, -0.45, 0.000 +20150806, -0.88, -0.53, 1.99, 0.000 +20150807, -0.36, -0.46, -0.35, 0.000 +20150810, 1.32, 0.16, 0.69, 0.000 +20150811, -0.98, -0.08, 0.43, 0.000 +20150812, 0.07, -0.09, -0.28, 0.000 +20150813, -0.14, -0.43, 0.01, 0.000 +20150814, 0.43, 0.13, 0.44, 0.000 +20150817, 0.60, 0.44, -0.87, 0.000 +20150818, -0.35, -0.63, 0.35, 0.000 +20150819, -0.85, -0.12, -0.22, 0.000 +20150820, -2.24, -0.28, 0.60, 0.000 +20150821, -2.95, 1.82, 0.14, 0.000 +20150824, -3.90, 0.34, -0.43, 0.000 +20150825, -1.17, 0.69, -0.61, 0.000 +20150826, 3.68, -1.35, -0.38, 0.000 +20150827, 2.40, -0.68, 0.60, 0.000 +20150828, 0.23, 0.97, 0.08, 0.000 +20150831, -0.74, 0.77, 1.42, 0.000 +20150901, -2.91, 0.32, -0.50, 0.000 +20150902, 1.81, -0.16, -0.93, 0.000 +20150903, 0.17, -0.32, 0.72, 0.000 +20150904, -1.39, 0.90, -0.57, 0.000 +20150908, 2.52, -0.37, -0.56, 0.000 +20150909, -1.34, 0.16, 0.11, 0.000 +20150910, 0.49, -0.13, -0.32, 0.000 +20150911, 0.44, -0.20, -0.70, 0.000 +20150914, -0.41, 0.03, 0.01, 0.000 +20150915, 1.22, -0.19, 0.24, 0.000 +20150916, 0.84, 0.02, 0.44, 0.000 +20150917, -0.17, 0.89, -1.49, 0.000 +20150918, -1.62, 0.46, -0.96, 0.000 +20150921, 0.36, -0.94, 1.21, 0.000 +20150922, -1.29, -0.27, 0.14, 0.000 +20150923, -0.27, -0.17, -0.14, 0.000 +20150924, -0.36, 0.25, 0.56, 0.000 +20150925, -0.22, -1.66, 1.87, 0.000 +20150928, -2.63, -0.27, 1.17, 0.000 +20150929, -0.07, -0.72, 0.72, 0.000 +20150930, 1.88, -0.43, -0.48, 0.000 +20151001, 0.13, -0.45, -0.04, 0.000 +20151002, 1.48, 0.34, -0.84, 0.000 +20151005, 1.93, 0.62, 0.77, 0.000 +20151006, -0.43, -0.23, 1.72, 0.000 +20151007, 0.94, 0.70, -0.24, 0.000 +20151008, 0.84, 0.24, 0.77, 0.000 +20151009, 0.12, 0.21, -1.08, 0.000 +20151012, 0.06, -0.40, -0.07, 0.000 +20151013, -0.74, -0.73, 0.69, 0.000 +20151014, -0.60, -0.26, -0.03, 0.000 +20151015, 1.56, 0.65, -0.15, 0.000 +20151016, 0.36, -0.49, -0.34, 0.000 +20151019, 0.00, 0.16, -0.71, 0.000 +20151020, -0.15, 0.02, 1.21, 0.000 +20151021, -0.74, -0.88, -0.18, 0.000 +20151022, 1.50, -0.78, 0.47, 0.000 +20151023, 1.09, -0.01, -0.60, 0.000 +20151026, -0.20, -0.35, -0.71, 0.000 +20151027, -0.42, -0.87, -0.88, 0.000 +20151028, 1.43, 1.41, 0.64, 0.000 +20151029, -0.20, -0.88, 0.10, 0.000 +20151030, -0.41, 0.22, -0.54, 0.000 +20151102, 1.25, 0.85, -0.02, 0.000 +20151103, 0.32, 0.45, 0.22, 0.000 +20151104, -0.26, 0.33, -0.33, 0.000 +20151105, -0.08, 0.03, 0.46, 0.000 +20151106, 0.14, 0.81, 0.27, 0.000 +20151109, -0.95, -0.21, -0.05, 0.000 +20151110, 0.13, 0.00, 0.27, 0.000 +20151111, -0.43, -0.52, -0.18, 0.000 +20151112, -1.45, -0.51, -0.45, 0.000 +20151113, -1.06, 0.30, 0.38, 0.000 +20151116, 1.39, -0.58, 0.46, 0.000 +20151117, -0.11, -0.12, -0.66, 0.000 +20151118, 1.61, 0.00, -0.09, 0.000 +20151119, -0.13, -0.26, -0.11, 0.000 +20151120, 0.35, 0.43, -0.41, 0.000 +20151123, -0.01, 0.66, -0.35, 0.000 +20151124, 0.21, 0.70, 0.26, 0.000 +20151125, 0.09, 0.87, -0.55, 0.000 +20151127, 0.09, 0.22, -0.29, 0.000 +20151130, -0.47, 0.14, 0.69, 0.000 +20151201, 0.97, -0.66, 0.24, 0.000 +20151202, -1.01, 0.25, -0.70, 0.000 +20151203, -1.50, -0.22, 0.43, 0.000 +20151204, 1.86, -1.04, -0.52, 0.000 +20151207, -0.84, -0.86, -0.66, 0.000 +20151208, -0.59, 0.48, -1.23, 0.000 +20151209, -0.83, -0.33, 0.41, 0.000 +20151210, 0.30, 0.11, -0.22, 0.000 +20151211, -2.03, -0.22, -0.06, 0.000 +20151214, 0.29, -1.05, -0.18, 0.000 +20151215, 1.10, 0.03, 0.76, 0.000 +20151216, 1.47, 0.01, -0.64, 0.000 +20151217, -1.46, 0.38, -0.31, 0.000 +20151218, -1.70, 0.76, -0.40, 0.000 +20151221, 0.74, -0.18, -0.06, 0.000 +20151222, 0.89, -0.04, 0.51, 0.000 +20151223, 1.30, 0.13, 0.59, 0.000 +20151224, -0.11, 0.30, -0.03, 0.000 +20151228, -0.29, -0.48, -0.38, 0.000 +20151229, 1.05, 0.09, -0.31, 0.000 +20151230, -0.74, -0.17, -0.13, 0.000 +20151231, -0.92, -0.24, 0.24, 0.000 +20160104, -1.59, -0.83, 0.53, 0.000 +20160105, 0.12, -0.22, 0.01, 0.000 +20160106, -1.35, -0.12, 0.00, 0.000 +20160107, -2.44, -0.29, 0.08, 0.000 +20160108, -1.11, -0.47, -0.03, 0.000 +20160111, -0.06, -0.65, 0.34, 0.000 +20160112, 0.71, -0.40, -0.77, 0.000 +20160113, -2.67, -0.70, 0.78, 0.000 +20160114, 1.65, -0.01, -0.41, 0.000 +20160115, -2.14, 0.42, -0.21, 0.000 +20160119, -0.20, -1.34, -0.07, 0.000 +20160120, -0.94, 1.85, -1.24, 0.000 +20160121, 0.45, -0.49, 0.01, 0.000 +20160122, 2.08, 0.22, -0.19, 0.000 +20160125, -1.71, -0.37, -0.98, 0.000 +20160126, 1.52, 0.38, 1.22, 0.000 +20160127, -1.11, -0.54, 1.72, 0.000 +20160128, 0.49, -0.47, 1.26, 0.000 +20160129, 2.57, 0.46, 0.37, 0.000 +20160201, -0.04, -0.21, -0.96, 0.001 +20160202, -2.00, -0.03, -0.34, 0.001 +20160203, 0.46, -0.32, 0.44, 0.001 +20160204, 0.27, 0.20, 0.32, 0.001 +20160205, -2.06, -1.10, 1.75, 0.001 +20160208, -1.51, -0.02, 0.90, 0.001 +20160209, -0.10, -0.47, -0.29, 0.001 +20160210, 0.01, -0.05, -0.56, 0.001 +20160211, -1.17, 0.50, -1.47, 0.001 +20160212, 1.98, -0.54, 1.14, 0.001 +20160216, 1.78, 0.55, -0.56, 0.001 +20160217, 1.75, -0.05, -0.63, 0.001 +20160218, -0.51, 0.00, 0.21, 0.001 +20160219, 0.06, 0.43, -0.62, 0.001 +20160222, 1.43, -0.27, 0.24, 0.001 +20160223, -1.22, 0.47, -0.52, 0.001 +20160224, 0.53, 0.68, -0.32, 0.001 +20160225, 1.10, -0.43, 0.23, 0.001 +20160226, -0.01, 0.82, 0.26, 0.001 +20160229, -0.69, 0.66, 0.26, 0.001 +20160301, 2.34, -0.64, 0.30, 0.001 +20160302, 0.54, 0.50, 0.71, 0.001 +20160303, 0.51, 0.44, 0.64, 0.001 +20160304, 0.37, 0.27, 0.28, 0.001 +20160307, 0.21, 1.21, 0.54, 0.001 +20160308, -1.27, -1.14, -0.49, 0.001 +20160309, 0.50, 0.04, 0.38, 0.001 +20160310, -0.11, -0.81, 0.63, 0.001 +20160311, 1.69, 0.27, 0.19, 0.001 +20160314, -0.12, -0.07, -0.87, 0.001 +20160315, -0.36, -1.43, 0.67, 0.001 +20160316, 0.63, 0.10, -0.04, 0.001 +20160317, 0.72, 0.84, 0.58, 0.001 +20160318, 0.54, 0.34, -0.19, 0.001 +20160321, 0.10, -0.20, -0.31, 0.001 +20160322, -0.05, -0.01, -0.45, 0.001 +20160323, -0.86, -1.17, -0.09, 0.001 +20160324, 0.00, 0.47, -0.06, 0.001 +20160328, 0.04, -0.03, 0.14, 0.001 +20160329, 1.07, 1.77, -1.18, 0.001 +20160330, 0.41, -0.29, 0.14, 0.001 +20160331, -0.11, 0.44, -0.48, 0.001 +20160401, 0.64, -0.25, -0.62, 0.000 +20160404, -0.41, -0.25, -0.74, 0.000 +20160405, -0.94, -0.08, -0.36, 0.000 +20160406, 1.14, 0.17, -0.82, 0.000 +20160407, -1.23, -0.05, -0.35, 0.000 +20160408, 0.29, 0.02, 0.68, 0.000 +20160411, -0.28, -0.10, 0.95, 0.000 +20160412, 0.99, -0.06, 0.85, 0.000 +20160413, 1.23, 0.84, 0.35, 0.000 +20160414, 0.03, -0.28, 0.18, 0.000 +20160415, -0.04, 0.33, -0.32, 0.000 +20160418, 0.65, 0.09, -0.19, 0.000 +20160419, 0.29, -0.36, 1.48, 0.000 +20160420, 0.15, -0.10, 0.54, 0.000 +20160421, -0.47, 0.11, -0.59, 0.000 +20160422, 0.12, 0.82, 0.49, 0.000 +20160425, -0.24, -0.58, -0.17, 0.000 +20160426, 0.29, 0.65, 0.78, 0.000 +20160427, 0.21, 0.09, 0.68, 0.000 +20160428, -0.96, -0.15, 0.05, 0.000 +20160429, -0.50, -0.14, 0.38, 0.000 +20160502, 0.78, -0.01, -0.36, 0.001 +20160503, -1.05, -0.66, -0.49, 0.001 +20160504, -0.66, -0.15, 0.06, 0.001 +20160505, -0.08, -0.50, 0.09, 0.001 +20160506, 0.38, 0.05, 0.24, 0.001 +20160509, 0.05, 0.36, -1.48, 0.001 +20160510, 1.26, -0.40, 0.47, 0.001 +20160511, -0.89, -0.36, 0.78, 0.001 +20160512, -0.11, -0.60, 0.15, 0.001 +20160513, -0.82, 0.38, -0.66, 0.001 +20160516, 0.99, 0.28, -0.24, 0.001 +20160517, -0.95, -0.78, 0.61, 0.001 +20160518, 0.10, 0.11, 0.83, 0.001 +20160519, -0.33, -0.32, -0.29, 0.001 +20160520, 0.75, 0.90, -0.30, 0.001 +20160523, -0.18, 0.26, -0.32, 0.001 +20160524, 1.43, 0.68, -0.34, 0.001 +20160525, 0.72, -0.21, 0.57, 0.001 +20160526, -0.04, -0.09, -0.51, 0.001 +20160527, 0.49, 0.33, -0.22, 0.001 +20160531, -0.01, 0.50, -0.36, 0.001 +20160601, 0.20, 0.65, -0.25, 0.001 +20160602, 0.35, 0.31, -0.59, 0.001 +20160603, -0.38, -0.14, -0.11, 0.001 +20160606, 0.60, 0.68, 0.32, 0.001 +20160607, 0.12, 0.19, 0.11, 0.001 +20160608, 0.37, 0.45, -0.11, 0.001 +20160609, -0.27, -0.40, -0.22, 0.001 +20160610, -1.05, -0.34, -0.18, 0.001 +20160613, -0.84, -0.36, 0.10, 0.001 +20160614, -0.19, 0.27, -0.71, 0.001 +20160615, -0.11, 0.25, -0.05, 0.001 +20160616, 0.24, -0.34, -0.40, 0.001 +20160617, -0.30, -0.10, 0.94, 0.001 +20160620, 0.71, 0.61, -0.01, 0.001 +20160621, 0.21, -0.62, 0.50, 0.001 +20160622, -0.20, -0.31, 0.08, 0.001 +20160623, 1.45, 0.50, 0.43, 0.001 +20160624, -3.70, 0.15, -1.14, 0.001 +20160627, -2.07, -0.95, -0.67, 0.001 +20160628, 1.76, -0.39, 0.14, 0.001 +20160629, 1.80, 0.27, -0.07, 0.001 +20160630, 1.42, 0.35, 0.45, 0.001 +20160701, 0.24, 0.53, -0.41, 0.001 +20160705, -0.85, -0.62, -1.36, 0.001 +20160706, 0.62, 0.17, -0.12, 0.001 +20160707, 0.02, 0.35, -0.20, 0.001 +20160708, 1.60, 0.89, 0.35, 0.001 +20160711, 0.43, 0.60, 0.25, 0.001 +20160712, 0.75, 0.62, 1.00, 0.001 +20160713, -0.05, -0.52, 0.51, 0.001 +20160714, 0.51, -0.46, 0.45, 0.001 +20160715, -0.05, 0.30, 0.01, 0.001 +20160718, 0.25, -0.02, -0.12, 0.001 +20160719, -0.22, -0.62, 0.05, 0.001 +20160720, 0.48, 0.45, -0.87, 0.001 +20160721, -0.38, -0.05, -0.01, 0.001 +20160722, 0.48, 0.23, -0.08, 0.001 +20160725, -0.27, -0.02, -0.24, 0.001 +20160726, 0.13, 0.58, 0.54, 0.001 +20160727, -0.14, 0.58, -0.42, 0.001 +20160728, 0.18, -0.41, -0.34, 0.001 +20160729, 0.17, -0.02, 0.04, 0.001 +20160801, -0.16, 0.18, -0.87, 0.001 +20160802, -0.70, -0.59, 0.16, 0.001 +20160803, 0.45, 0.46, 0.83, 0.001 +20160804, 0.05, 0.08, -0.33, 0.001 +20160805, 0.93, 0.44, 0.87, 0.001 +20160808, -0.06, 0.02, 0.57, 0.001 +20160809, 0.05, -0.02, -0.31, 0.001 +20160810, -0.29, -0.44, -0.12, 0.001 +20160811, 0.54, 0.15, 0.04, 0.001 +20160812, -0.06, 0.08, -0.18, 0.001 +20160815, 0.39, 0.73, 0.39, 0.001 +20160816, -0.57, -0.27, 0.61, 0.001 +20160817, 0.12, -0.55, 0.25, 0.001 +20160818, 0.32, 0.45, 0.37, 0.001 +20160819, -0.11, 0.12, -0.12, 0.001 +20160822, -0.02, 0.25, -0.41, 0.001 +20160823, 0.27, 0.56, -0.01, 0.001 +20160824, -0.56, -0.47, 0.40, 0.001 +20160825, -0.08, 0.19, 0.48, 0.001 +20160826, -0.15, 0.15, -0.13, 0.001 +20160829, 0.53, -0.07, 0.35, 0.001 +20160830, -0.14, 0.10, 0.31, 0.001 +20160831, -0.24, -0.39, 0.13, 0.001 +20160901, 0.03, 0.12, -0.49, 0.001 +20160902, 0.53, 0.39, 0.36, 0.001 +20160906, 0.26, 0.06, -0.53, 0.001 +20160907, 0.09, 0.61, 0.03, 0.001 +20160908, -0.18, -0.03, 0.57, 0.001 +20160909, -2.47, -0.56, 0.31, 0.001 +20160912, 1.44, 0.00, -0.46, 0.001 +20160913, -1.48, -0.25, -0.48, 0.001 +20160914, -0.08, 0.11, -0.83, 0.001 +20160915, 1.07, 0.30, -0.33, 0.001 +20160916, -0.36, 0.32, -0.46, 0.001 +20160919, 0.05, 0.40, 0.17, 0.001 +20160920, -0.02, -0.21, -0.51, 0.001 +20160921, 1.12, 0.14, 0.33, 0.001 +20160922, 0.70, 0.85, -0.06, 0.001 +20160923, -0.60, -0.10, -0.19, 0.001 +20160926, -0.88, -0.23, -0.35, 0.001 +20160927, 0.64, -0.07, -0.53, 0.001 +20160928, 0.56, 0.22, 1.10, 0.001 +20160929, -0.98, -0.41, 0.54, 0.001 +20160930, 0.88, 0.37, 0.35, 0.001 +20161003, -0.26, -0.03, -0.13, 0.001 +20161004, -0.46, 0.04, 0.09, 0.001 +20161005, 0.58, 0.28, 0.79, 0.001 +20161006, -0.06, -0.27, 0.37, 0.001 +20161007, -0.38, -0.51, 0.16, 0.001 +20161010, 0.52, 0.57, 0.01, 0.001 +20161011, -1.30, -0.60, 0.48, 0.001 +20161012, 0.06, -0.23, 0.37, 0.001 +20161013, -0.42, -0.68, -0.63, 0.001 +20161014, 0.01, -0.36, 0.57, 0.001 +20161017, -0.29, -0.05, 0.14, 0.001 +20161018, 0.60, -0.17, 0.03, 0.001 +20161019, 0.25, 0.04, 0.91, 0.001 +20161020, -0.16, -0.03, -0.11, 0.001 +20161021, 0.02, -0.13, -0.32, 0.001 +20161024, 0.54, 0.06, -0.16, 0.001 +20161025, -0.46, -0.58, 0.22, 0.001 +20161026, -0.23, -0.84, 0.75, 0.001 +20161027, -0.33, -0.96, 0.60, 0.001 +20161028, -0.29, -0.10, 0.11, 0.001 +20161031, 0.02, 0.03, 0.13, 0.001 +20161101, -0.68, -0.36, 0.17, 0.001 +20161102, -0.73, -0.66, 0.36, 0.001 +20161103, -0.40, -0.46, 1.02, 0.001 +20161104, -0.12, 0.86, -0.42, 0.001 +20161107, 2.23, 0.21, -0.15, 0.001 +20161108, 0.40, -0.07, -0.19, 0.001 +20161109, 1.46, 1.82, 0.99, 0.001 +20161110, 0.32, 1.14, 1.81, 0.001 +20161111, 0.18, 2.50, -0.04, 0.001 +20161114, 0.21, 0.58, 1.42, 0.001 +20161115, 0.80, -0.55, 0.14, 0.001 +20161116, -0.12, 0.30, -0.56, 0.001 +20161117, 0.56, 0.13, -0.13, 0.001 +20161118, -0.16, 0.56, 0.39, 0.001 +20161121, 0.77, -0.26, 0.08, 0.001 +20161122, 0.31, 0.54, 0.58, 0.001 +20161123, 0.16, 0.52, 0.19, 0.001 +20161125, 0.40, -0.08, -0.24, 0.001 +20161128, -0.64, -0.77, 0.06, 0.001 +20161129, 0.11, -0.36, -0.07, 0.001 +20161130, -0.25, -0.39, 2.25, 0.001 +20161201, -0.36, -0.66, 2.06, 0.001 +20161202, 0.00, 0.05, -0.32, 0.001 +20161205, 0.75, 1.09, 0.28, 0.001 +20161206, 0.48, 0.63, 0.23, 0.001 +20161207, 1.26, -0.63, 0.53, 0.001 +20161208, 0.36, 1.15, 0.58, 0.001 +20161209, 0.46, -0.28, 0.12, 0.001 +20161212, -0.30, -0.94, -0.11, 0.001 +20161213, 0.60, -0.51, -0.29, 0.001 +20161214, -0.82, -0.36, -0.29, 0.001 +20161215, 0.46, 0.37, 0.28, 0.001 +20161216, -0.22, 0.05, -0.42, 0.001 +20161219, 0.22, 0.31, 0.08, 0.001 +20161220, 0.44, 0.42, 0.68, 0.001 +20161221, -0.24, -0.38, 0.24, 0.001 +20161222, -0.30, -0.75, 0.24, 0.001 +20161223, 0.19, 0.56, -0.52, 0.001 +20161227, 0.27, 0.21, 0.13, 0.001 +20161228, -0.87, -0.27, 0.08, 0.001 +20161229, -0.04, 0.13, -0.31, 0.001 +20161230, -0.52, -0.11, 0.20, 0.001 +20170103, 0.83, -0.11, 0.09, 0.002 +20170104, 0.79, 0.96, -0.15, 0.002 +20170105, -0.21, -0.87, -0.80, 0.002 +20170106, 0.29, -0.63, -0.32, 0.002 +20170109, -0.37, -0.27, -1.03, 0.002 +20170110, 0.16, 0.97, 0.56, 0.002 +20170111, 0.31, -0.31, 0.53, 0.002 +20170112, -0.30, -0.57, -0.88, 0.002 +20170113, 0.29, 0.63, -0.08, 0.002 +20170117, -0.49, -0.86, -0.59, 0.002 +20170118, 0.24, 0.17, 0.23, 0.002 +20170119, -0.38, -0.50, -0.03, 0.002 +20170120, 0.33, 0.06, 0.18, 0.002 +20170123, -0.29, -0.02, -0.30, 0.002 +20170124, 0.83, 0.68, 0.81, 0.002 +20170125, 0.84, 0.15, 0.35, 0.002 +20170126, -0.10, -0.62, 0.38, 0.002 +20170127, -0.12, 0.03, -0.67, 0.002 +20170130, -0.68, -0.72, -0.41, 0.002 +20170131, 0.00, 0.88, -0.55, 0.002 +20170201, 0.04, -0.05, 0.02, 0.002 +20170202, -0.02, -0.26, -0.31, 0.002 +20170203, 0.82, 0.55, 0.65, 0.002 +20170206, -0.27, -0.57, -0.20, 0.002 +20170207, -0.01, -0.29, -0.51, 0.002 +20170208, 0.06, -0.24, -0.53, 0.002 +20170209, 0.72, 0.70, 0.03, 0.002 +20170210, 0.38, 0.38, 0.12, 0.002 +20170213, 0.49, -0.32, 0.33, 0.002 +20170214, 0.45, -0.23, 0.33, 0.002 +20170215, 0.54, 0.19, -0.44, 0.002 +20170216, -0.16, -0.21, -0.04, 0.002 +20170217, 0.20, -0.01, -0.57, 0.002 +20170221, 0.60, -0.03, 0.13, 0.002 +20170222, -0.15, -0.37, 0.12, 0.002 +20170223, -0.11, -0.68, 0.26, 0.002 +20170224, 0.15, 0.04, -0.91, 0.002 +20170227, 0.22, 0.82, -0.34, 0.002 +20170228, -0.42, -1.38, 0.20, 0.002 +20170301, 1.47, 0.43, 0.72, 0.001 +20170302, -0.70, -0.53, -0.88, 0.001 +20170303, 0.09, -0.22, 0.15, 0.001 +20170306, -0.38, -0.35, -0.10, 0.001 +20170307, -0.36, -0.29, -0.05, 0.001 +20170308, -0.19, -0.10, -0.82, 0.001 +20170309, 0.04, -0.47, -0.28, 0.001 +20170310, 0.34, 0.10, -0.38, 0.001 +20170313, 0.13, 0.32, -0.03, 0.001 +20170314, -0.36, -0.23, 0.02, 0.001 +20170315, 0.86, 0.73, -0.41, 0.001 +20170316, -0.06, 0.44, 0.23, 0.001 +20170317, -0.08, 0.62, -0.26, 0.001 +20170320, -0.25, -0.07, -0.75, 0.001 +20170321, -1.48, -1.34, -0.69, 0.001 +20170322, 0.16, -0.30, -0.54, 0.001 +20170323, -0.03, 0.69, 0.46, 0.001 +20170324, -0.05, 0.12, -0.24, 0.001 +20170327, -0.05, 0.56, -0.52, 0.001 +20170328, 0.72, -0.15, 0.71, 0.001 +20170329, 0.18, 0.40, -0.06, 0.001 +20170330, 0.36, 0.33, 0.93, 0.001 +20170331, -0.16, 0.57, -0.31, 0.001 +20170403, -0.28, -1.10, -0.11, 0.003 +20170404, 0.05, -0.22, 0.32, 0.003 +20170405, -0.44, -0.79, -0.30, 0.003 +20170406, 0.32, 0.69, 0.49, 0.003 +20170407, -0.08, 0.14, -0.26, 0.003 +20170410, 0.08, 0.11, 0.11, 0.003 +20170411, -0.05, 0.80, 0.25, 0.003 +20170412, -0.49, -0.84, -0.53, 0.003 +20170413, -0.75, -0.23, -0.79, 0.003 +20170417, 0.89, 0.24, 0.22, 0.003 +20170418, -0.25, 0.36, -0.16, 0.003 +20170419, -0.08, 0.59, -0.38, 0.003 +20170420, 0.83, 0.52, 0.27, 0.003 +20170421, -0.28, 0.10, -0.14, 0.003 +20170424, 1.18, 0.17, 0.52, 0.003 +20170425, 0.66, 0.36, -0.05, 0.003 +20170426, 0.04, 0.70, 0.32, 0.003 +20170427, 0.05, -0.13, -0.95, 0.003 +20170428, -0.30, -0.67, -0.59, 0.003 +20170501, 0.21, 0.27, -0.13, 0.003 +20170502, 0.03, -0.46, -0.21, 0.003 +20170503, -0.19, -0.54, 0.20, 0.003 +20170504, 0.02, -0.06, -0.35, 0.003 +20170505, 0.46, 0.07, 0.06, 0.003 +20170508, -0.04, -0.27, 0.29, 0.003 +20170509, -0.05, 0.49, -0.81, 0.003 +20170510, 0.21, 0.19, 0.02, 0.003 +20170511, -0.26, -0.36, -0.14, 0.003 +20170512, -0.18, -0.30, -0.62, 0.003 +20170515, 0.53, 0.25, 0.19, 0.003 +20170516, -0.03, 0.16, -0.09, 0.003 +20170517, -1.97, -0.88, -0.53, 0.003 +20170518, 0.40, 0.05, -0.40, 0.003 +20170519, 0.70, -0.38, 0.41, 0.003 +20170522, 0.56, 0.28, -0.30, 0.003 +20170523, 0.18, -0.07, 0.62, 0.003 +20170524, 0.24, -0.16, -0.50, 0.003 +20170525, 0.42, -0.27, -0.77, 0.003 +20170526, 0.06, -0.02, 0.09, 0.003 +20170530, -0.19, -0.50, -0.32, 0.003 +20170531, -0.02, 0.03, -0.56, 0.003 +20170601, 0.95, 0.99, 0.04, 0.003 +20170602, 0.35, 0.55, -0.80, 0.003 +20170605, -0.17, -0.46, 0.00, 0.003 +20170606, -0.28, 0.10, -0.07, 0.003 +20170607, 0.15, -0.19, 0.01, 0.003 +20170608, 0.18, 1.16, 0.92, 0.003 +20170609, -0.12, 0.01, 2.38, 0.003 +20170612, -0.11, -0.27, 0.35, 0.003 +20170613, 0.55, 0.08, -0.14, 0.003 +20170614, -0.17, -0.47, -0.54, 0.003 +20170615, -0.30, -0.23, -0.12, 0.003 +20170616, -0.03, -0.23, -0.18, 0.003 +20170619, 0.86, 0.12, -0.74, 0.003 +20170620, -0.73, -0.41, -0.51, 0.003 +20170621, -0.07, -0.05, -1.69, 0.003 +20170622, 0.02, 0.52, -0.41, 0.003 +20170623, 0.24, 0.82, -0.51, 0.003 +20170626, 0.04, -0.05, 0.69, 0.003 +20170627, -0.85, -0.40, 1.33, 0.003 +20170628, 1.02, 0.74, 0.21, 0.003 +20170629, -0.83, -0.11, 1.38, 0.003 +20170630, 0.14, -0.09, -0.23, 0.003 +20170703, 0.24, 0.35, 1.21, 0.004 +20170705, 0.12, -0.70, -0.57, 0.004 +20170706, -0.95, -0.50, 0.11, 0.004 +20170707, 0.70, 0.42, -0.41, 0.004 +20170710, 0.05, -0.43, -0.09, 0.004 +20170711, 0.00, 0.38, -0.53, 0.004 +20170712, 0.72, 0.13, -0.53, 0.004 +20170713, 0.17, -0.06, 0.37, 0.004 +20170714, 0.42, -0.13, -0.51, 0.004 +20170717, 0.00, 0.21, 0.13, 0.004 +20170718, 0.04, -0.30, -0.33, 0.004 +20170719, 0.59, 0.52, 0.03, 0.004 +20170720, -0.01, 0.05, -0.01, 0.004 +20170721, -0.08, -0.42, -0.28, 0.004 +20170724, -0.03, 0.12, -0.20, 0.004 +20170725, 0.38, 0.37, 0.92, 0.004 +20170726, -0.06, -0.35, -0.70, 0.004 +20170727, -0.14, -0.62, 0.45, 0.004 +20170728, -0.17, -0.06, 0.24, 0.004 +20170731, -0.11, -0.33, 0.44, 0.004 +20170801, 0.24, -0.24, 0.18, 0.004 +20170802, -0.08, -1.17, 0.15, 0.004 +20170803, -0.21, -0.33, -0.29, 0.004 +20170804, 0.25, 0.30, 0.36, 0.004 +20170807, 0.16, -0.09, -0.60, 0.004 +20170808, -0.24, -0.10, 0.21, 0.004 +20170809, -0.14, -0.76, -0.10, 0.004 +20170810, -1.49, -0.29, 0.25, 0.004 +20170811, 0.20, 0.24, -0.88, 0.004 +20170814, 1.03, 0.26, 0.06, 0.004 +20170815, -0.11, -0.85, -0.04, 0.004 +20170816, 0.18, -0.12, -0.45, 0.004 +20170817, -1.59, -0.17, -0.15, 0.004 +20170818, -0.15, 0.14, 0.21, 0.004 +20170821, 0.06, -0.25, -0.22, 0.004 +20170822, 1.06, -0.02, -0.25, 0.004 +20170823, -0.32, 0.10, 0.40, 0.004 +20170824, -0.14, 0.60, 0.18, 0.004 +20170825, 0.18, 0.12, 0.58, 0.004 +20170828, 0.08, 0.35, -0.74, 0.004 +20170829, 0.10, 0.13, -0.39, 0.004 +20170830, 0.53, 0.02, -0.32, 0.004 +20170831, 0.62, 0.47, -0.42, 0.004 +20170901, 0.27, 0.41, 0.44, 0.005 +20170905, -0.81, 0.10, -0.95, 0.005 +20170906, 0.28, -0.02, 0.13, 0.005 +20170907, -0.07, 0.15, -0.93, 0.005 +20170908, -0.16, 0.04, 0.36, 0.005 +20170911, 1.08, -0.12, 0.63, 0.005 +20170912, 0.43, 0.25, 0.71, 0.005 +20170913, 0.11, 0.31, 0.36, 0.005 +20170914, -0.12, -0.04, -0.07, 0.005 +20170915, 0.19, 0.28, 0.12, 0.005 +20170918, 0.24, 0.37, 0.20, 0.005 +20170919, 0.15, -0.28, 0.35, 0.005 +20170920, 0.16, 0.23, 0.52, 0.005 +20170921, -0.28, 0.10, 0.37, 0.005 +20170922, 0.12, 0.44, 0.13, 0.005 +20170925, -0.25, 0.31, 0.63, 0.005 +20170926, 0.05, 0.38, 0.13, 0.005 +20170927, 0.63, 1.38, 0.17, 0.005 +20170928, 0.13, 0.16, -0.07, 0.005 +20170929, 0.35, -0.12, -0.27, 0.005 +20171002, 0.50, 0.84, 0.16, 0.004 +20171003, 0.26, -0.03, -0.02, 0.004 +20171004, 0.05, -0.28, -0.45, 0.004 +20171005, 0.55, -0.34, 0.35, 0.004 +20171006, -0.08, -0.08, -0.25, 0.004 +20171009, -0.22, -0.28, -0.05, 0.004 +20171010, 0.24, -0.01, 0.42, 0.004 +20171011, 0.16, -0.20, -0.22, 0.004 +20171012, -0.18, 0.04, -0.51, 0.004 +20171013, 0.04, -0.22, 0.11, 0.004 +20171016, 0.17, -0.28, 0.37, 0.004 +20171017, 0.01, -0.33, -0.28, 0.004 +20171018, 0.14, 0.31, 0.22, 0.004 +20171019, 0.02, -0.38, 0.17, 0.004 +20171020, 0.57, -0.07, 0.28, 0.004 +20171023, -0.45, -0.42, 0.12, 0.004 +20171024, 0.20, -0.18, 0.47, 0.004 +20171025, -0.51, -0.01, 0.11, 0.004 +20171026, 0.20, 0.04, 0.22, 0.004 +20171027, 0.82, -0.02, -1.01, 0.004 +20171030, -0.46, -0.80, -0.06, 0.004 +20171031, 0.23, 0.81, -0.22, 0.004 +20171101, 0.05, -0.80, 0.15, 0.004 +20171102, 0.06, -0.03, 0.49, 0.004 +20171103, 0.31, -0.42, -0.69, 0.004 +20171106, 0.06, 0.20, 0.19, 0.004 +20171107, -0.20, -1.36, -0.37, 0.004 +20171108, 0.12, 0.06, -0.62, 0.004 +20171109, -0.41, -0.02, 0.22, 0.004 +20171110, 0.01, 0.05, -0.38, 0.004 +20171113, 0.09, -0.30, 0.02, 0.004 +20171114, -0.22, -0.13, 0.00, 0.004 +20171115, -0.52, -0.05, 0.24, 0.004 +20171116, 1.01, 0.85, -0.52, 0.004 +20171117, -0.14, 0.74, 0.29, 0.004 +20171120, 0.21, 0.56, 0.00, 0.004 +20171121, 0.67, 0.41, -0.35, 0.004 +20171122, -0.05, 0.10, -0.03, 0.004 +20171124, 0.21, 0.02, -0.45, 0.004 +20171127, -0.06, -0.37, 0.03, 0.004 +20171128, 1.06, 0.39, 0.86, 0.004 +20171129, 0.02, 0.04, 1.44, 0.004 +20171130, 0.82, -0.56, -0.51, 0.004 +20171201, -0.22, -0.37, 0.37, 0.004 +20171204, -0.10, -0.35, 1.23, 0.004 +20171205, -0.43, -0.44, -0.24, 0.004 +20171206, -0.09, -0.45, -0.52, 0.004 +20171207, 0.42, 0.25, -0.17, 0.004 +20171208, 0.51, -0.44, -0.13, 0.004 +20171211, 0.26, -0.40, -0.14, 0.004 +20171212, 0.07, -0.52, 0.52, 0.004 +20171213, 0.02, 0.71, -0.88, 0.004 +20171214, -0.47, -0.69, -0.21, 0.004 +20171215, 0.92, 0.68, 0.03, 0.004 +20171218, 0.67, 0.75, 0.26, 0.004 +20171219, -0.30, -0.36, -0.26, 0.004 +20171220, 0.01, 0.36, 0.05, 0.004 +20171221, 0.24, 0.27, 0.63, 0.004 +20171222, -0.07, -0.23, -0.20, 0.004 +20171226, -0.07, 0.34, -0.06, 0.004 +20171227, 0.05, -0.13, -0.19, 0.004 +20171228, 0.22, 0.12, 0.04, 0.004 +20171229, -0.57, -0.30, 0.02, 0.004 +20180102, 0.85, 0.36, -0.22, 0.005 +20180103, 0.59, -0.39, -0.21, 0.005 +20180104, 0.42, -0.26, 0.24, 0.005 +20180105, 0.66, -0.34, -0.26, 0.005 +20180108, 0.19, -0.16, 0.07, 0.005 +20180109, 0.15, -0.36, -0.03, 0.005 +20180110, -0.07, 0.07, 0.58, 0.005 +20180111, 0.87, 1.16, 0.29, 0.005 +20180112, 0.66, -0.30, 0.17, 0.005 +20180116, -0.49, -1.02, -0.02, 0.005 +20180117, 0.95, -0.02, -0.15, 0.005 +20180118, -0.18, -0.50, -0.25, 0.005 +20180119, 0.57, 0.94, -0.07, 0.005 +20180122, 0.77, -0.34, -0.14, 0.005 +20180123, 0.22, 0.14, -0.33, 0.005 +20180124, -0.13, -0.80, 0.39, 0.005 +20180125, 0.07, 0.17, -0.49, 0.005 +20180126, 1.11, -0.62, -0.50, 0.005 +20180129, -0.62, -0.02, -0.26, 0.005 +20180130, -1.06, 0.11, -0.17, 0.005 +20180131, -0.07, -0.72, 0.06, 0.005 +20180201, 0.03, 0.10, 0.51, 0.006 +20180202, -2.13, 0.03, -0.27, 0.006 +20180205, -4.03, 0.78, -0.56, 0.006 +20180206, 1.67, -0.51, -0.23, 0.006 +20180207, -0.37, 0.51, 0.27, 0.006 +20180208, -3.67, 0.83, 0.47, 0.006 +20180209, 1.36, -0.62, 0.11, 0.006 +20180212, 1.36, -0.43, -0.29, 0.006 +20180213, 0.31, 0.05, -0.23, 0.006 +20180214, 1.52, 0.26, 0.46, 0.006 +20180215, 1.21, -0.14, -0.65, 0.006 +20180216, 0.03, 0.36, 0.13, 0.006 +20180220, -0.62, -0.36, -0.26, 0.006 +20180221, -0.43, 0.78, 0.20, 0.006 +20180222, 0.01, 0.04, -0.39, 0.006 +20180223, 1.54, -0.36, -0.14, 0.006 +20180226, 1.12, -0.49, -0.07, 0.006 +20180227, -1.25, -0.20, 0.01, 0.006 +20180228, -1.10, -0.40, -0.31, 0.006 +20180301, -1.18, 1.01, -0.04, 0.006 +20180302, 0.70, 1.16, -0.50, 0.006 +20180305, 1.06, -0.39, 0.25, 0.006 +20180306, 0.36, 0.67, 0.10, 0.006 +20180307, 0.05, 0.80, -0.45, 0.006 +20180308, 0.37, -0.49, -0.33, 0.006 +20180309, 1.70, -0.27, 0.28, 0.006 +20180312, -0.09, 0.46, -0.06, 0.006 +20180313, -0.67, 0.09, -0.01, 0.006 +20180314, -0.53, 0.23, -0.54, 0.006 +20180315, -0.18, -0.41, 0.31, 0.006 +20180316, 0.25, 0.46, 0.20, 0.006 +20180319, -1.38, 0.34, 0.41, 0.006 +20180320, 0.15, -0.07, -0.38, 0.006 +20180321, -0.06, 0.75, 0.45, 0.006 +20180322, -2.54, 0.50, -0.46, 0.006 +20180323, -2.09, 0.20, -0.20, 0.006 +20180326, 2.67, -0.69, 0.02, 0.006 +20180327, -1.87, -0.24, 0.39, 0.006 +20180328, -0.35, 0.11, 0.65, 0.006 +20180329, 1.41, -0.29, -0.21, 0.006 +20180402, -2.29, -0.14, 0.39, 0.007 +20180403, 1.24, -0.05, 0.17, 0.007 +20180404, 1.17, 0.32, -0.31, 0.007 +20180405, 0.75, 0.03, 0.48, 0.007 +20180406, -2.19, 0.40, -0.06, 0.007 +20180409, 0.30, -0.15, -0.50, 0.007 +20180410, 1.77, 0.40, -0.12, 0.007 +20180411, -0.49, 0.92, -0.31, 0.007 +20180412, 0.84, -0.22, 0.19, 0.007 +20180413, -0.37, 0.02, -0.25, 0.007 +20180416, 0.82, 0.08, -0.04, 0.007 +20180417, 1.09, 0.16, -1.18, 0.007 +20180418, 0.13, 0.24, 0.02, 0.007 +20180419, -0.49, -0.46, 1.08, 0.007 +20180420, -0.81, 0.06, 0.62, 0.007 +20180423, -0.05, -0.08, 0.20, 0.007 +20180424, -1.30, 0.52, 0.98, 0.007 +20180425, 0.10, -0.34, 0.01, 0.007 +20180426, 0.96, -0.41, -0.85, 0.007 +20180427, 0.01, -0.27, 0.07, 0.007 +20180430, -0.80, 0.03, -0.08, 0.007 +20180501, 0.24, 0.22, -0.53, 0.006 +20180502, -0.63, 1.26, -0.28, 0.006 +20180503, -0.25, -0.50, -0.17, 0.006 +20180504, 1.30, 0.03, -0.23, 0.006 +20180507, 0.42, 0.42, -0.36, 0.006 +20180508, 0.07, 0.48, 0.26, 0.006 +20180509, 0.89, -0.19, 0.24, 0.006 +20180510, 0.84, -0.43, -0.04, 0.006 +20180511, 0.19, 0.11, -0.37, 0.006 +20180514, 0.05, -0.35, 0.11, 0.006 +20180515, -0.55, 0.68, 0.41, 0.006 +20180516, 0.49, 0.70, -0.24, 0.006 +20180517, 0.02, 0.90, 0.25, 0.006 +20180518, -0.23, 0.56, -0.58, 0.006 +20180521, 0.72, -0.21, 0.43, 0.006 +20180522, -0.42, -0.75, 0.59, 0.006 +20180523, 0.29, 0.05, -0.71, 0.006 +20180524, -0.16, 0.34, -0.31, 0.006 +20180525, -0.21, 0.23, -0.40, 0.006 +20180529, -1.03, 1.32, -1.03, 0.006 +20180530, 1.31, 0.06, 0.35, 0.006 +20180531, -0.70, 0.07, -0.40, 0.006 +20180601, 1.06, -0.22, -0.13, 0.006 +20180604, 0.48, 0.17, -0.46, 0.006 +20180605, 0.16, 0.82, -0.41, 0.006 +20180606, 0.86, -0.34, 0.17, 0.006 +20180607, -0.14, -0.29, 0.92, 0.006 +20180608, 0.31, 0.08, -0.40, 0.006 +20180611, 0.12, 0.18, -0.16, 0.006 +20180612, 0.23, 0.24, -0.61, 0.006 +20180613, -0.33, 0.10, -0.21, 0.006 +20180614, 0.27, 0.32, -0.99, 0.006 +20180615, -0.08, 0.04, -0.24, 0.006 +20180618, -0.09, 0.74, 0.09, 0.006 +20180619, -0.38, 0.56, -0.18, 0.006 +20180620, 0.23, 0.73, -0.52, 0.006 +20180621, -0.73, -0.63, 0.32, 0.006 +20180622, 0.11, 0.01, 0.44, 0.006 +20180625, -1.48, -0.56, 0.55, 0.006 +20180626, 0.27, 0.61, -0.19, 0.006 +20180627, -1.02, -0.99, 0.39, 0.006 +20180628, 0.58, -0.19, -0.51, 0.006 +20180629, 0.07, -0.19, -0.24, 0.006 +20180702, 0.36, 0.45, -0.35, 0.008 +20180703, -0.44, 0.76, 0.09, 0.008 +20180705, 0.87, 0.42, -0.40, 0.008 +20180706, 0.87, 0.07, -0.38, 0.008 +20180709, 0.93, -0.37, 0.78, 0.008 +20180710, 0.21, -0.81, -0.08, 0.008 +20180711, -0.69, 0.00, -0.53, 0.008 +20180712, 0.86, -0.33, -1.08, 0.008 +20180713, 0.08, -0.12, -0.29, 0.008 +20180716, -0.16, -0.73, 0.84, 0.008 +20180717, 0.48, 0.24, -0.68, 0.008 +20180718, 0.27, -0.25, 0.61, 0.008 +20180719, -0.34, 0.97, -0.37, 0.008 +20180720, -0.10, -0.17, 0.08, 0.008 +20180723, 0.15, -0.24, 0.38, 0.008 +20180724, 0.22, -1.38, 0.52, 0.008 +20180725, 0.83, -0.39, -1.21, 0.008 +20180726, -0.20, 0.64, 0.61, 0.008 +20180727, -0.82, -1.38, 1.15, 0.008 +20180730, -0.70, -0.25, 1.66, 0.008 +20180731, 0.51, 0.78, -0.96, 0.008 +20180801, -0.13, 0.10, -0.30, 0.007 +20180802, 0.67, 0.37, -0.73, 0.007 +20180803, 0.31, -1.06, 0.55, 0.007 +20180806, 0.46, 0.27, -0.32, 0.007 +20180807, 0.29, 0.01, -0.13, 0.007 +20180808, -0.04, -0.13, 0.23, 0.007 +20180809, -0.05, 0.38, -0.32, 0.007 +20180810, -0.60, 0.43, -0.23, 0.007 +20180813, -0.46, -0.16, -0.31, 0.007 +20180814, 0.69, 0.32, 0.20, 0.007 +20180815, -0.91, -0.55, -0.14, 0.007 +20180816, 0.86, -0.08, 0.27, 0.007 +20180817, 0.30, 0.08, 0.04, 0.007 +20180820, 0.25, 0.12, 0.17, 0.007 +20180821, 0.33, 0.87, 0.15, 0.007 +20180822, 0.05, 0.41, -0.45, 0.007 +20180823, -0.19, -0.05, -0.33, 0.007 +20180824, 0.62, -0.04, -0.51, 0.007 +20180827, 0.74, -0.69, -0.11, 0.007 +20180828, -0.01, -0.12, -0.29, 0.007 +20180829, 0.56, -0.04, -0.59, 0.007 +20180830, -0.41, 0.30, -0.43, 0.007 +20180831, 0.08, 0.50, -0.43, 0.007 +20180904, -0.11, -0.33, -0.08, 0.008 +20180905, -0.41, -0.19, 0.69, 0.008 +20180906, -0.44, -0.39, -0.13, 0.008 +20180907, -0.18, 0.08, -0.21, 0.008 +20180910, 0.23, 0.10, -0.33, 0.008 +20180911, 0.37, -0.30, -0.21, 0.008 +20180912, 0.03, -0.09, -0.06, 0.008 +20180913, 0.45, -0.44, -0.39, 0.008 +20180914, 0.12, 0.26, 0.25, 0.008 +20180917, -0.71, -0.47, 0.92, 0.008 +20180918, 0.57, 0.07, -0.53, 0.008 +20180919, 0.06, -0.62, 1.17, 0.008 +20180920, 0.77, 0.30, -0.18, 0.008 +20180921, -0.13, -0.44, 0.38, 0.008 +20180924, -0.31, 0.03, -0.87, 0.008 +20180925, -0.05, 0.30, -0.44, 0.008 +20180926, -0.40, -0.40, -0.58, 0.008 +20180927, 0.27, -0.26, -0.57, 0.008 +20180928, -0.03, 0.40, -0.19, 0.008 +20181001, 0.16, -1.63, 0.37, 0.008 +20181002, -0.21, -1.00, 0.66, 0.008 +20181003, 0.20, 0.88, 0.44, 0.008 +20181004, -0.93, -1.04, 1.54, 0.008 +20181005, -0.64, -0.40, 0.39, 0.008 +20181008, -0.17, -0.38, 1.19, 0.008 +20181009, -0.18, -0.26, 0.17, 0.008 +20181010, -3.33, 0.28, 1.14, 0.008 +20181011, -1.96, 0.43, -0.89, 0.008 +20181012, 1.38, -0.88, -1.69, 0.008 +20181015, -0.48, 0.92, 0.47, 0.008 +20181016, 2.24, 0.68, -1.45, 0.008 +20181017, -0.08, -0.64, 0.18, 0.008 +20181018, -1.54, -0.57, 0.52, 0.008 +20181019, -0.25, -1.32, 0.80, 0.008 +20181022, -0.38, 0.44, -1.19, 0.008 +20181023, -0.62, -0.14, -0.33, 0.008 +20181024, -3.33, -0.88, 0.62, 0.008 +20181025, 1.93, 0.47, -0.72, 0.008 +20181026, -1.65, 0.56, 0.36, 0.008 +20181029, -0.77, -0.29, 1.63, 0.008 +20181030, 1.66, 0.37, 0.11, 0.008 +20181031, 1.22, -0.63, -0.69, 0.008 +20181101, 1.29, 1.30, -1.10, 0.008 +20181102, -0.53, 0.80, 0.64, 0.008 +20181105, 0.40, -0.98, 1.55, 0.008 +20181106, 0.58, -0.15, 0.04, 0.008 +20181107, 2.11, -0.33, -1.03, 0.008 +20181108, -0.28, -0.24, 0.22, 0.008 +20181109, -1.04, -0.91, 0.38, 0.008 +20181112, -2.06, 0.00, 0.96, 0.008 +20181113, -0.13, -0.10, 0.07, 0.008 +20181114, -0.77, -0.02, -0.20, 0.008 +20181115, 1.18, 0.37, -0.55, 0.008 +20181116, 0.15, 0.00, -0.01, 0.008 +20181119, -1.88, -0.66, 2.32, 0.008 +20181120, -1.85, 0.14, -0.63, 0.008 +20181121, 0.51, 0.97, -0.30, 0.008 +20181123, -0.55, 0.79, -0.57, 0.008 +20181126, 1.62, -0.67, -0.18, 0.008 +20181127, 0.11, -1.07, 0.27, 0.008 +20181128, 2.42, 0.48, -1.27, 0.008 +20181129, -0.22, -0.12, -0.17, 0.008 +20181130, 0.78, -0.35, -0.38, 0.008 +20181203, 1.13, -0.07, -0.70, 0.010 +20181204, -3.45, -0.97, -0.12, 0.010 +20181206, -0.16, 0.10, -1.00, 0.010 +20181207, -2.36, 0.23, 1.29, 0.010 +20181210, 0.10, -0.22, -1.57, 0.010 +20181211, -0.08, -0.08, -0.35, 0.010 +20181212, 0.68, 0.55, -0.13, 0.010 +20181213, -0.26, -1.50, -0.17, 0.010 +20181214, -1.89, -0.10, 0.59, 0.010 +20181217, -2.13, -0.26, 0.98, 0.010 +20181218, -0.03, 0.00, -0.55, 0.010 +20181219, -1.58, -0.65, 0.17, 0.010 +20181220, -1.62, -0.23, 0.77, 0.010 +20181221, -2.17, -0.58, 0.83, 0.010 +20181224, -2.55, 0.99, -0.45, 0.010 +20181226, 5.06, -0.01, -1.05, 0.010 +20181227, 0.78, -0.67, -0.08, 0.010 +20181228, -0.03, 0.74, 0.25, 0.010 +20181231, 0.90, -0.09, -0.47, 0.010 +20190102, 0.23, 0.57, 1.15, 0.010 +20190103, -2.45, 0.39, 1.22, 0.010 +20190104, 3.55, 0.44, -0.73, 0.010 +20190107, 0.94, 0.94, -0.66, 0.010 +20190108, 1.01, 0.50, -0.53, 0.010 +20190109, 0.56, 0.50, -0.05, 0.010 +20190110, 0.42, 0.00, -0.41, 0.010 +20190111, -0.01, 0.10, 0.30, 0.010 +20190114, -0.60, -0.56, 0.87, 0.010 +20190115, 1.06, 0.00, -0.88, 0.010 +20190116, 0.28, 0.11, 0.83, 0.010 +20190117, 0.75, 0.10, -0.19, 0.010 +20190118, 1.29, -0.35, 0.12, 0.010 +20190122, -1.53, -0.38, 0.30, 0.010 +20190123, 0.15, -0.41, -0.13, 0.010 +20190124, 0.23, 0.45, -0.09, 0.010 +20190125, 0.90, 0.47, -0.36, 0.010 +20190128, -0.80, -0.17, 0.66, 0.010 +20190129, -0.19, 0.00, 0.17, 0.010 +20190130, 1.51, -0.10, -1.06, 0.010 +20190131, 0.92, 0.13, -1.08, 0.010 +20190201, 0.14, -0.12, 0.34, 0.010 +20190204, 0.72, 0.52, -0.57, 0.010 +20190205, 0.43, -0.10, -0.56, 0.010 +20190206, -0.22, -0.01, 0.01, 0.010 +20190207, -0.93, -0.14, 0.41, 0.010 +20190208, 0.09, 0.03, -0.68, 0.010 +20190211, 0.14, 0.64, 0.21, 0.010 +20190212, 1.36, 0.03, -0.24, 0.010 +20190213, 0.28, 0.08, 0.05, 0.010 +20190214, -0.21, 0.50, -0.55, 0.010 +20190215, 1.13, 0.24, 0.53, 0.010 +20190219, 0.19, 0.28, 0.32, 0.010 +20190220, 0.19, 0.21, 0.59, 0.010 +20190221, -0.37, -0.07, -0.26, 0.010 +20190222, 0.65, 0.51, -1.37, 0.010 +20190225, 0.15, -0.24, -0.20, 0.010 +20190226, -0.16, -0.63, -0.32, 0.010 +20190227, 0.09, 0.22, -0.16, 0.010 +20190228, -0.31, 0.01, -0.27, 0.010 +20190301, 0.72, 0.32, -0.48, 0.009 +20190304, -0.52, -0.38, 0.32, 0.009 +20190305, -0.17, -0.31, -0.22, 0.009 +20190306, -0.84, -1.27, 0.08, 0.009 +20190307, -0.82, -0.07, -0.28, 0.009 +20190308, -0.22, 0.04, -0.13, 0.009 +20190311, 1.49, 0.33, -0.49, 0.009 +20190312, 0.25, -0.27, -0.05, 0.009 +20190313, 0.68, -0.31, 0.02, 0.009 +20190314, -0.10, -0.39, 0.26, 0.009 +20190315, 0.48, -0.27, -0.28, 0.009 +20190318, 0.46, 0.16, 0.34, 0.009 +20190319, -0.09, -0.38, -0.89, 0.009 +20190320, -0.39, -0.01, -0.99, 0.009 +20190321, 1.11, 0.25, -1.12, 0.009 +20190322, -2.17, -1.56, 0.06, 0.009 +20190325, -0.05, 0.65, -0.30, 0.009 +20190326, 0.76, 0.19, 0.43, 0.009 +20190327, -0.50, 0.09, 0.51, 0.009 +20190328, 0.40, 0.39, -0.10, 0.009 +20190329, 0.66, -0.26, -0.84, 0.009 +20190401, 1.19, -0.29, 0.96, 0.010 +20190402, -0.05, -0.14, -0.40, 0.010 +20190403, 0.27, 0.20, -0.37, 0.010 +20190404, 0.19, 0.21, 0.96, 0.010 +20190405, 0.52, 0.51, -0.01, 0.010 +20190408, 0.08, -0.30, 0.12, 0.010 +20190409, -0.65, -0.58, -0.08, 0.010 +20190410, 0.48, 0.94, -0.05, 0.010 +20190411, 0.00, -0.34, 0.43, 0.010 +20190412, 0.65, -0.53, 0.69, 0.010 +20190415, -0.09, -0.21, -0.59, 0.010 +20190416, 0.13, 0.14, 0.64, 0.010 +20190417, -0.32, -0.68, 0.77, 0.010 +20190418, 0.11, -0.26, -0.46, 0.010 +20190422, 0.11, -0.44, -0.55, 0.010 +20190423, 0.97, 0.73, -0.58, 0.010 +20190424, -0.23, 0.31, -0.22, 0.010 +20190425, -0.14, -0.70, -0.27, 0.010 +20190426, 0.53, 0.43, 0.05, 0.010 +20190429, 0.18, 0.12, 0.61, 0.010 +20190430, -0.04, -0.71, 0.27, 0.010 +20190501, -0.83, -0.10, -0.05, 0.009 +20190502, -0.16, 0.50, -0.48, 0.009 +20190503, 1.13, 0.95, -0.27, 0.009 +20190506, -0.39, 0.62, -0.45, 0.009 +20190507, -1.69, -0.30, 0.54, 0.009 +20190508, -0.21, -0.15, -0.30, 0.009 +20190509, -0.28, 0.08, 0.08, 0.009 +20190510, 0.35, -0.39, 0.11, 0.009 +20190513, -2.67, -0.75, 0.36, 0.009 +20190514, 0.93, 0.40, -0.03, 0.009 +20190515, 0.58, 0.04, -0.94, 0.009 +20190516, 0.91, -0.41, -0.24, 0.009 +20190517, -0.73, -0.82, 0.36, 0.009 +20190520, -0.65, -0.23, 0.78, 0.009 +20190521, 0.90, 0.42, -0.34, 0.009 +20190522, -0.40, -0.49, -0.63, 0.009 +20190523, -1.37, -0.71, -0.24, 0.009 +20190524, 0.23, 0.51, 0.29, 0.009 +20190528, -0.78, 0.26, -0.60, 0.009 +20190529, -0.71, -0.29, 0.44, 0.009 +20190530, 0.14, -0.28, -0.78, 0.009 +20190531, -1.37, -0.15, -0.22, 0.009 +20190603, -0.40, 0.40, 1.44, 0.009 +20190604, 2.33, 0.47, -0.16, 0.009 +20190605, 0.69, -1.01, -0.91, 0.009 +20190606, 0.55, -1.02, -0.01, 0.009 +20190607, 1.04, -0.01, -1.15, 0.009 +20190610, 0.53, 0.01, -0.07, 0.009 +20190611, -0.12, -0.26, 0.59, 0.009 +20190612, -0.20, 0.36, -0.89, 0.009 +20190613, 0.52, 0.66, -0.01, 0.009 +20190614, -0.27, -0.76, 0.31, 0.009 +20190617, 0.15, 0.61, -1.08, 0.009 +20190618, 1.04, 0.20, 0.19, 0.009 +20190619, 0.32, 0.11, -0.59, 0.009 +20190620, 0.89, -0.36, -0.23, 0.009 +20190621, -0.21, -0.46, -0.07, 0.009 +20190624, -0.34, -0.92, 0.15, 0.009 +20190625, -0.98, 0.34, 0.73, 0.009 +20190626, -0.06, -0.06, 0.23, 0.009 +20190627, 0.60, 1.42, -0.09, 0.009 +20190628, 0.68, 0.64, 0.60, 0.009 + +Copyright 2019 Kenneth R. French From 5a40511ba4be28644fff102c34991a5e6ba5ab73 Mon Sep 17 00:00:00 2001 From: Xin Wei Date: Thu, 29 Aug 2019 15:59:06 -0700 Subject: [PATCH 063/215] Changed to a shorter folder name test if the long folder name caused error in downloading --- .../F-F_Research_Data_Factors_daily.CSV | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 04 Strategy Library/{354 Expected Idiosyncratic Skewness Using Fama and French Factors => 354 Expected Idiosyncratic Skewness}/F-F_Research_Data_Factors_daily.CSV (100%) diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness Using Fama and French Factors/F-F_Research_Data_Factors_daily.CSV b/04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV similarity index 100% rename from 04 Strategy Library/354 Expected Idiosyncratic Skewness Using Fama and French Factors/F-F_Research_Data_Factors_daily.CSV rename to 04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV From f3e34d1878c8f3fc98fc7da36bf6b48d4969afe9 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Fri, 30 Aug 2019 13:33:20 -0700 Subject: [PATCH 064/215] Update introduction link for the new section --- 03 Open Source/00 Introduction/Introduction.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/03 Open Source/00 Introduction/Introduction.html b/03 Open Source/00 Introduction/Introduction.html index d895560..2fef38d 100644 --- a/03 Open Source/00 Introduction/Introduction.html +++ b/03 Open Source/00 Introduction/Introduction.html @@ -6,10 +6,10 @@ i.tutorial-link-icon { position: absolute; top: 15px; right: 15px } - + -@@ -17,7 +17,7 @@100 Desktop Charting with LEAN
-Guide to using the desktop charting environment that comes with LEAN (UX v1.0).
+Debugging Python
+Explore different methods to debug python algorithms.
100 Desktop Charting with LEAN
From 257541687fca48242aadbac5886065e915c4b15d Mon Sep 17 00:00:00 2001 From: Ethan Lee101 Backtesting from Visual Studio
-VIsual Studio plugin integrated with the QuantConnect API.
+Visual Studio plugin integrated with the QuantConnect API.
Date: Fri, 30 Aug 2019 13:43:11 -0700 Subject: [PATCH 065/215] Add course code --- 03 Open Source/00 Introduction/Introduction.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03 Open Source/00 Introduction/Introduction.html b/03 Open Source/00 Introduction/Introduction.html index 2fef38d..744480f 100644 --- a/03 Open Source/00 Introduction/Introduction.html +++ b/03 Open Source/00 Introduction/Introduction.html @@ -8,7 +8,7 @@ -From 735009dd82bce5d69ef84d023d7cdaf9afa08d56 Mon Sep 17 00:00:00 2001 From: Ethan LeeDebugging Python
+100 Debugging Python
Explore different methods to debug python algorithms.
Date: Fri, 6 Sep 2019 11:13:46 -0700 Subject: [PATCH 066/215] Add new strategy mapping for search table --- .../00 Strategy Library/01 Strategy Library.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index e855425..6f45a59 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -513,6 +513,15 @@ 'description' => "Invests in stocks with low P/E ratio.", 'tags'=>'Beginner,Fundamental Factors,Equities' ], + [ + 'name' => 'Mean-Reversion Statistical Arbitrage Strategy in Stocks', + 'link' => 'strategy-library/mean-reversion-statistical-arbitrage-strategy-in-stocks', + 'sources' => [ + 'NYU' => 'https://www.math.nyu.edu/faculty/avellane/AvellanedaLeeStatArb071108.pdf' + ], + 'description' => "Apply statistical arbitrage to take advantage of pricing inefficiencies in stocks.", + 'tags'=>'PCA,Mean Reversion,Stocks,Arbitrage' + ], ]; ?> From e461046b7fc884b5a7afad293388c79761fdcecb Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Fri, 6 Sep 2019 11:41:05 -0700 Subject: [PATCH 067/215] Add startegy mapping for search table --- .../00 Strategy Library/01 Strategy Library.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index e855425..0e5cf5a 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -513,6 +513,15 @@ 'description' => "Invests in stocks with low P/E ratio.", 'tags'=>'Beginner,Fundamental Factors,Equities' ], + [ + 'name' => 'Fama French Five Factors', + 'link' => 'strategy-library/fama-french-five-factors', + 'sources' => [ + 'NYU' => 'https://www.quantpedia.com/Screener/Details/78' + ], + 'description' => "Stock selecting strategy based on Fama-French Five Factors Model.", + 'tags'=>'Long Short,Fundamental Factors,Equities' + ], ]; ?> From f4a3ee8a75773789aadc3c9740479ce53ec3b79b Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Fri, 6 Sep 2019 11:42:26 -0700 Subject: [PATCH 068/215] Add strategy mapping for search table --- 04 Strategy Library/00 Strategy Library/01 Strategy Library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index 0e5cf5a..bbce99e 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -517,7 +517,7 @@ 'name' => 'Fama French Five Factors', 'link' => 'strategy-library/fama-french-five-factors', 'sources' => [ - 'NYU' => 'https://www.quantpedia.com/Screener/Details/78' + 'NYU' => 'https://www.sciencedirect.com/science/article/pii/S0304405X14002323' ], 'description' => "Stock selecting strategy based on Fama-French Five Factors Model.", 'tags'=>'Long Short,Fundamental Factors,Equities' From e0d30dbd929b2e47444f86e86b7eb9535aa4ea85 Mon Sep 17 00:00:00 2001 From: Xin Wei Date: Fri, 6 Sep 2019 17:16:24 -0700 Subject: [PATCH 069/215] Tutorial - Expected Idiosyncratic Skewness NYU Strategy -- Expected Idiosyncratic Skewness --- .../01 Abstract.html | 3 ++ .../02 Theory.html | 7 +++ .../03 Data Description.html | 3 ++ .../04 Method.html | 50 +++++++++++++++++++ .../05 Conclusion and Future Work.html | 13 +++++ .../06 Algorithm.html | 6 +++ .../07 References.html | 11 ++++ 7 files changed, 93 insertions(+) create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html create mode 100644 04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html new file mode 100644 index 0000000..9b7d744 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html @@ -0,0 +1,3 @@ + + This tutorial implements a strategy that trades stocks with low expected idiosyncratic skewness based on a paper by Boyer, Mitton and Vorkink (2009, hereafter BMV) published in The Review of Financial Studies. Our implementation narrows down our initial universe to liquid assets by selecting 200 stocks based on daily trading volume, price and whether the stock has fundamental data in our data library. We calculate the expected idiosyncratic skewness at the end of each month and sort our universe based on the calculated skewness. This implementation will long the bottom 5%, hold for the next month, and rebalance the portfolio monthly. The annual return during the period of July 1, 2009 to July 1, 2019 is 21.0%. +
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html new file mode 100644 index 0000000..b1ae556 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html @@ -0,0 +1,7 @@ ++ BMV tests recent theories that stocks with low idiosyncratic skewness should have high expected returns. For example, Mitton and Vorkink (2007) develop a model that some investors (“lotto investors”) have a preference for positive skewness while others (“traditional investors”) are mean-variance optimizers seeking to maximize the Sharpe ratio of their portfolios. Lotto investors accept lower average returns on stocks with high idiosyncratic skewness because they have a preference for stocks with lottery-like return properties. In equilibrium, markets clear at prices such that stocks with high idiosyncratic skewness have low expected returns, due to the different portfolio preferences of the two groups of investors. +
+ ++ Despite the theoretical basis for the pricing effects of skewness preference, empirically testing the relation is not straightforward as expected skewness is difficult to measure. BMV accounts for the phenomenon that lagged skewness alone does not adequately forecast skewness by presenting a cross-sectional model of expected skewness using additional predictive variables. Using their model, they reaffirm the existing theory that expected idiosyncratic skewness and returns are negatively correlated. Notably, they find the Fama-French alpha of a low-expected-skewness quintile exceeds the alpha of a high-expected-skewness quintile by 1.00% per month. Furthermore, the Fama-MacBeth cross-sectional regressions have statistically significant, negative coefficients. Besides, BMV finds that the expected skewness helps explain how stocks with low idiosyncratic volatility have high expected returns. +
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html new file mode 100644 index 0000000..3aa2885 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html @@ -0,0 +1,3 @@ ++ To execute our algorithm, we will use daily data from Kenneth French’s Data Library that captures the Fama-French three factors for the period July 1, 2009 to July 1, 2019. The raw data is delivered in a zip file which is not directly importable into LEAN. We need to unzip the file and upload the CSV to our Github cloud. All other data used for this algorithm, including stock price, volume, and market capitalization, are from QuantConnect’s Data Library. In the original paper, BSV also includes firm-specific variables like momentum, turnover, and dummies of properties including Nasdaq-listed stocks, small-size, medium-size, industries. We can refer to this online technical appendix for descriptions of these variables. +
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html new file mode 100644 index 0000000..b864049 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html @@ -0,0 +1,50 @@ ++ We can develop a model of estimated expected idiosyncratic skewness using Fama-French three factors. Lower expected idiosyncratic skewness will predict a higher alpha. We will let the investment horizon over which investors are hoping to experience an extreme positive outcome be 1 month. And, let S(t) denote the set of trading days in the current month, and let N(t) denote the number of days in this set. +
+ +Step 1: Getting Fama-French three-factor regression residuals
+ ++ Let \(\epsilon_{i,d}\) be the regression residual using the Fama and French (1993) three-factor model on day d for firm i, where the regression coefficients that define this residual are estimated using daily data for days in S(t) as the time-series regression below. +
+ +\[R_{i,d} - R_{f,d} = \alpha_i + \beta_i [R_{M,d} - R_{f,d}] + s_i SMB_{d} + h_i HML_{d} + \epsilon_{i,d}\] + ++ for all day \(d \in S(t)\) and each \(i = 1,2,\dots,N\). +
+ +Step 2: Estimating historical idiosyncratic moments
+ ++ Let \(iv_{i,t}\) and \(is_{i,t}\) denote historical estimates of idiosyncratic volatility and skewness (respectively) for firm i using daily data for all days in S(t). We can then define \(iv_{i,t}\) and \(is_{i,t}\) as: +
+ +\[iv_{i,t} = \left( \frac{1}{N(t) - 1} \sum_{d\in S(t)} \epsilon_{i,d}^2 \right)^{1/2}\] + +\[is_{i,t} = \frac{1}{N(t) - 2} \frac{ \sum_{d\in S(t)} \epsilon_{i,d}^3 } { iv_{i,t}^{3/2} }\] + +Step 3: Estimating expected idiosyncratic skewness
+ ++ We need measures of expected skewness over a horizon of 1 months for firm i at the end of month t, \(E_t[is_{i,t+1}]\), rather than measures of historical skewness as defined in equation above. To model investor perceptions of expected skewness in a feasible manner, we first estimate cross-sectional regression separately at the end of each month t in our sample, +
+ +\[is_{i,t} = \beta_0^t + \beta_1^t is_{i,t-1} + \beta_2^t iv_{i,t-1} + \varepsilon_{i,t}\] + ++ Superscripts on regression parameters are included to emphasize that we estimate these parameters using information observable at the end of month t. We then use the regression parameters from equation above, along with information observable at the end of each month t, to estimate expected skewness for each firm, +
+ +\[ E_t[is_{i,t+1}] = \beta_0^t + \beta_1^t is_{i,t} + \beta_2^t iv_{i,t} \] + ++ This approach provides feasible estimates of each month’s expected skewness and accounts for variation between historical moments and expected skewness across time. +
+ +Step 4: Generating trading signals
+ ++ At the end of each month, we use the results of equation above to sort stocks by expected idiosyncratic skewness. We construct our universe using the lowest 5% of expected skewness, and long our assets to construct a value-weighted portfolio. +
+ diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html new file mode 100644 index 0000000..0252ef9 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html @@ -0,0 +1,13 @@ ++ Before the BMV paper was published in 2009, a number of theories on the pricing premium for stocks with idiosyncratic skewness existed, but lacked supporting empirical evidence of the relationship between idiosyncratic skewness and returns. BMV fills this void by estimating a model of predicted skewness and using predicted skewness to explain the cross-section of returns. The paper finds that lagged idiosyncratic volatility is a stronger predictor of skewness than lagged idiosyncratic skewness. +
+ ++ In this implementation, we rely on idiosyncratic volatility and skewness to predict idiosyncratic skewness. Interested users can build from this implementation by trying the following extensions: +
+ ++
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html new file mode 100644 index 0000000..af8d286 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html @@ -0,0 +1,6 @@ +- Including a number of firm-specific variables to improve predictive power for expected idiosyncratic skewness; +
- Using different investment horizons such as 3 months, 6 months, 1 year; +
- Adding more lags in the time-series regression for both expected and historical idiosyncratic skewness. +
+ +\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html new file mode 100644 index 0000000..337cf0a --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html @@ -0,0 +1,11 @@ ++ +++
- + Boyer B, Mitton T, Vorkink K. Expected idiosyncratic skewness. The Review of Financial Studies. 2009 Jun 3;23(1):169-202. Online Copy +
+- + Fama EF, French KR. Common risk factors in the returns on stocks and bonds. Journal of Financial Economics. 1993 Feb 1;33(1):3-56. Online Copy +
+- + Mitton T, Vorkink K. Equilibrium underdiversification and the preference for skewness. The Review of Financial Studies. 2007 Jan 29;20(4):1255-88. Online Copy +
+From 5b318eb5751eb70778b82ae4be6795d1359c025d Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Mon, 9 Sep 2019 15:53:54 -0700 Subject: [PATCH 070/215] Add Strategy of Keloharju, T. Linnainmaa & Nyberg, 2014 --- .../01 Strategy Library.php | 10 +++ .../01 Introduction.html | 19 +++++ .../02 Method.html | 70 +++++++++++++++++++ .../03 Results.html | 9 +++ .../04 Algorithm.html | 6 ++ .../05 Reference.html | 5 ++ 6 files changed, 119 insertions(+) create mode 100644 04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html create mode 100644 04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html create mode 100644 04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html create mode 100644 04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html create mode 100644 04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index e1f954c..eca1bd5 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -532,6 +532,16 @@ 'tags'=>'PCA,Mean Reversion,Stocks,Arbitrage' ], + [ + 'name' => 'Seasonality Effect based on Same-Calendar Month Returns', + 'link' => 'strategy-library/seasonality-effect-based-on-same-calendar-month-returns', + 'sources' => [ + 'NYU' => 'https://www.nber.org/papers/w20815.pdf' + ], + 'description' => "A strategy that takes long and short positions based on historical same-calendar month returns", + 'tags'=>'Seasonality,Stocks,Universe Selection' + + ], ]; ?> diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html new file mode 100644 index 0000000..17958c4 --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html @@ -0,0 +1,19 @@ +
+ This tutorial implements a seasonality strategy that trades based on historical same-calendar-month returns. The strategy is + derived from the paper Common Factors in Return Seasonalities. +
++ A great deal of research on seasonality effects in algorithmic trading exists. Seasonality patterns are well documented in stock returns across numerous + countries and in commodity and country portfolios. The phenomenon’s occurrence is not isolated to specific stocks or monthly time intervals, for example, seasonality is observed at the daily frequency as well. Our implementation reflects the existing research. +
++ In our algorithm, we will first use a coarse selection filter function to narrow down our universe to the top 100 liquid securities with a price greater than $5. +
++ Next, for each security in the universe, we will calculate the monthly return for the same-calendar month of the previous year. For example, if we implement this strategy on a backtest for the period of August 2019, we would base our long and short positions on monthly returns from August 2018. We will long the securities with top monthly returns and short those with the bottom monthly returns. +
++ At the end of each month we will rebalance and repeat the strategy. The following section offers further explanation of how to implement each step of the strategy. +
+ + \ No newline at end of file diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html new file mode 100644 index 0000000..4bcd1ee --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html @@ -0,0 +1,70 @@ +Step 1: Select our universe
++ We first select liquid securities and ETFs with prices greater than $5 based on Dollar Volume for our universe. Research from “Common Factors” suggests that the U.S. equity, commodity, and index markets are all affected by seasonality patterns. Therefore, we can include any assets in our universe. Note that while this strategy does not require fundamental data for implementation, other strategies in the library do. In those cases we would need to remove ETFs from the universe because we don’t have fundamental data for ETFs. +
+ +++ ++ # Sort the securities with prices > 5 in DollarVolume decendingly + selected = sorted([x for x in coarse if x.Price > 5], + key=lambda x: x.DollarVolume, reverse=True) + + # Get securities after coarse selection + symbols = [x.Symbol for x in selected[:self.num_coarse]] ++Step 2: Calculate the same-calendar month returns of the previous year
++ “Common Factors” indicates that taking long and short positions based on historical same-calendar month returns earns an average monthly return of 1.88%. Our implementation also selects securities to long and short based on their same-calendar month returns. For each security in the universe, we calculate the monthly return for the same-calendar month of the previous year and choose the symbols as follows: +
+ +++ ++ # Get historical close data for coarse-selected symbols of the same calendar month + start = self.Time.replace(day = 1, year = self.Time.year-1) + end = Expiry.EndOfMonth(start) - timedelta(1) + history = self.History(symbols, start, end, Resolution.Daily).close.unstack(level=0) + + # Get the same calendar month returns for the symbols + MonthlyReturn = {ticker: prices.iloc[-1]/prices.iloc[0] for ticker, prices in history.iteritems()} + + # Sorted the values of monthly return + sortedReturn = sorted(MonthlyReturn.items(), key=lambda x:x[1], reverse=True) + + # Get the symbols to long / short + self.longSymbols = [x[0] for x in sortedReturn[:self.num_long]] + self.shortSymbols = [x[0] for x in sortedReturn[-self.num_short:]] + + # Note that self.longSymbols/self.shortSymbols contains strings instead of symbols + return [x for x in symbols if str(x) in self.longSymbols + self.shortSymbols] ++Step 3: Rebalance monthly
++ At the end of each month, we rebalance our portfolio, liquidate the securities that are not part of the new month’s universe, and repeat step 1 and 2. Keep in mind we use equal weights for the long and short positions of securities in our portfolio. +
+ ++\ No newline at end of file diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html new file mode 100644 index 0000000..d502249 --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html @@ -0,0 +1,9 @@ ++ ''' + Rebalance every month based on same-calendar month returns effect + ''' + # Before next rebalance, do nothing + if self.Time < self.nextRebalance: + return + + count = len(self.longSymbols + self.shortSymbols) + # Open long positions + for symbol in self.longSymbols: + self.SetHoldings(symbol, 1/count) + + # Open short positions + for symbol in self.shortSymbols: + self.SetHoldings(symbol, -1/count) + + # Rebalance at the end of every month + self.nextRebalance = Expiry.EndOfMonth(self.Time) - timedelta(1) +++ In backtesting our algorithm achieves an annual rate of return over 5% with a max drawdown of approximately 30% for the past 10 years. + The performance indicates using the idea of same-calendar month returns makes sense. Interested users can build upon this implementation by trying the following extensions: +
++
\ No newline at end of file diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html new file mode 100644 index 0000000..03c24b0 --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html @@ -0,0 +1,6 @@ +- Using the same-calendar months of multiple years (e.g. the last 5 years), instead of using the previous year as we did in this tutorial, to get more stable monthly returns.
+- Using discounting to capture time effects in the returns.
+- Creating the initial universe using different criteria such as quarterly, rather than monthly, returns.
++ +diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html new file mode 100644 index 0000000..a859e6e --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html @@ -0,0 +1,5 @@ + From d0fa07ef18618b07f0d18b7f6028825eca53d114 Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Tue, 10 Sep 2019 10:53:32 -0700 Subject: [PATCH 071/215] Add Strategy of Lemperiere, Deremble & Nguyen, 2015 --- .../01 Strategy Library.php | 10 +++ .../01 Introduction.html | 7 ++ .../02 Method.html | 73 +++++++++++++++++++ .../03 Results.html | 9 +++ .../04 Algorithm.html | 6 ++ .../05 Reference.html | 5 ++ 6 files changed, 110 insertions(+) create mode 100644 04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html create mode 100644 04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html create mode 100644 04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html create mode 100644 04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html create mode 100644 04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index e1f954c..3ca35d0 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -532,6 +532,16 @@ 'tags'=>'PCA,Mean Reversion,Stocks,Arbitrage' ], + [ + 'name' => 'Risk Premia in Forex Markets', + 'link' => 'strategy-library/risk-premia-in-forex-markets', + 'sources' => [ + 'NYU' => 'https://arxiv.org/pdf/1409.7720.pdf' + ], + 'description' => "A strategy based on asymmetric tail risks and excess returns in forex markets.", + 'tags'=>'Forex,Skewness,Risk Premium' + + ], ]; ?> diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html b/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html new file mode 100644 index 0000000..2c85d7e --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html @@ -0,0 +1,7 @@ ++ +++ This tutorial implements a risk premia strategy that enters long-short positions in the forex market based on signals from a skewness indicator. The strategy is derived from the paper “Risk Premia: Asymmetric Tail Risks and Excess Returns” by Lemperiere, Deremble, Nguyen, Seager, Potters, and Bouchaud. +
+ ++ One of the pillars in modern finance theory is the concept of risk premium, which states the riskier an investment is today the more profitable it should be in the long run. Risk premia strategies aim to profit from risk premiums. Lemperiere et al. describe a positive linear relationship between the Sharpe ratio of risk premia strategies and their negative skewness. It provides extensive evidence that risk premium is indeed strongly correlated with the skewness of a strategy, not only in the equity world but also in currencies, options, credit, etc. +
diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html b/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html new file mode 100644 index 0000000..fd1d64a --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html @@ -0,0 +1,73 @@ +Step 1: Select our forex universe
++ In this algorithm, we use a fixed forex universe which contains four symbols: "EURUSD", "AUDUSD", "USDCAD" and "USDJPY". By using self.AddForex(), we add the requested forex data into the data feed. +
+ +++ ++ # Add forex data of the following symbols + for pair in ['EURUSD', 'AUDUSD', 'USDCAD', 'USDJPY']: + self.AddForex(pair, Resolution.Hour, Market.FXCM) ++Step 2: Calculate the skewness indicator
++ In statistics, skewness is a measure of the asymmetry of the probability distribution of a real-valued random variable about its mean. Lemperiere et al. suggest there is a positive relationship between risk premia strategies and their negative skewness. We will use this relationship in our trading logic. Our implementation goes long for a forex pair when the skewness indicator is lower than a minimum threshold (-0.6) and short the pair when the indicator exceeds a maximum threshold (0.6). For each forex pair in the universe, we will calculate the skewness indicator with historical close prices and select the symbols as follows: +
+ +++ ++ ### In OnData() + # Get historical close data for the symbols + history = self.History(self.Securities.Keys, self.lookback, Resolution.Daily) + history = history.drop_duplicates().close.unstack(level=0) + + # Get the skewness of the historical data + skewness = self.GetSkewness(history) + + longSymbols = [k for k,v in skewness.items() if v < self.longSkewLevel] + shortSymbols = [k for k,v in skewness.items() if v > self.shortSkewLevel] + + def GetSkewness(self, values): + ''' + Get the skewness for all forex symbols based on its historical data + Ref: https://www.itl.nist.gov/div898/handbook/eda/section3/eda35b.htm + ''' + # Get the numerator of the skewness + numer = ((values - values.mean()) ** 3).sum() + + # Get the denominator of the skewness + denom = self.lookback * values.std() ** 3 + + # Return the skewness + return (numer/denom).to_dict() ++Step 3: Rebalance weekly
++ We rebalance every week, liquidate the forex pairs not on the trading list, then repeat steps 1-2. We use equal weights for the long and short positions of securities in our portfolio. +
+ ++\ No newline at end of file diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html b/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html new file mode 100644 index 0000000..3e38c14 --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html @@ -0,0 +1,9 @@ ++ # Liquidate the holdings for pairs that will not trade + for holding in self.Portfolio.Values: + symbol = holding.Symbol + if holding.Invested and symbol.Value not in longSymbols + shortSymbols: + self.Liquidate(symbol, 'Not selected pair') + + # Open positions for the symbols with equal weights + count = len(longSymbols) + len(shortSymbols) + + for pair in longSymbols: + self.SetHoldings(pair, 1/count) + + for pair in shortSymbols: + self.SetHoldings(pair, -1/count) + + # Set next rebalance time + self.nextRebalance += timedelta(self.rebalanceDays) +++ In this case our backtest results in a low annual return of approximately -0.7% over a decade. The poor performance may be due to several reasons: +
+
+ We encourage the community to further develop this strategy by testing out different symbols, thresholds, and historical data lengths. + \ No newline at end of file diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html b/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html new file mode 100644 index 0000000..f3764f8 --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html @@ -0,0 +1,6 @@ +- The fixed forex universe chosen is not large enough to properly diversify market risk
+- The thresholds for entering long and short positions (0.6, -0.6) may need adjustment
+- The length of historical data might be not large enough for this weekly-rebalanced strategy.
++ +diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html b/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html new file mode 100644 index 0000000..dfffb15 --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html @@ -0,0 +1,5 @@ + From 332860875f137d6c2cf3d085e0145fce2421ee7b Mon Sep 17 00:00:00 2001 From: Xin Wei+ ++Date: Tue, 10 Sep 2019 11:27:32 -0700 Subject: [PATCH 072/215] Add mapping of strategy 354 for search table Strategy 354 PR: https://github.com/QuantConnect/Tutorials/pull/235 --- .../00 Strategy Library/01 Strategy Library.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index e1f954c..f65e379 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -530,8 +530,16 @@ ], 'description' => "Apply statistical arbitrage to take advantage of pricing inefficiencies in stocks.", 'tags'=>'PCA,Mean Reversion,Stocks,Arbitrage' - ], + [ + 'name' => 'Expected Idiosyncratic Skewness', + 'link' => 'strategy-library/expected-idiosyncratic-skewness', + 'sources' => [ + 'NYU' => 'http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.825.592&rep=rep1&type=pdf' + ], + 'description' => "Stock selection strategy that calculates expected idiosyncratic skewness using Fama-French three-factor model, sorts stocks based on the calculated skewness, and longs the bottom 5%.", + 'tags' => 'Equities, Skewness, Fundamental Factors, Statistical Arbitrage' + ], ]; ?> From d1dca0ae71b352ec9484ae3d849429ec81cb6007 Mon Sep 17 00:00:00 2001 From: Xin Wei Date: Tue, 10 Sep 2019 14:31:02 -0700 Subject: [PATCH 073/215] Add Strategy Standardized Unexpected Earnings Based on paper: https://www.jstor.org/stable/pdf/247321.pdf --- .../01 Strategy Library.php | 9 ++ .../01 Abstract.html | 3 + .../02 Theory.html | 3 + .../03 Method.html | 124 ++++++++++++++++++ .../04 Conclusion and Future Work.html | 10 ++ .../05 Algorithm.html | 6 + .../06 References.html | 8 ++ 7 files changed, 163 insertions(+) create mode 100644 04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html create mode 100644 04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html create mode 100644 04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html create mode 100644 04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html create mode 100644 04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html create mode 100644 04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index e1f954c..6c8af87 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -532,6 +532,15 @@ 'tags'=>'PCA,Mean Reversion,Stocks,Arbitrage' ], + [ + 'name' => 'Standardized Unexpected Earnings', + 'link' => 'strategy-library/standardized-unexpected-earnings', + 'sources' => [ + 'NYU' => 'https://www.jstor.org/stable/pdf/247321.pdf' + ], + 'description' => "Stock selection strategy that calculates the unexpected earnings, standardizes the unexpected earnings, goes long on the top 5%, and rebalances the portfolio monthly." + 'tags' => 'Equities, Fundamental Factors, Earnings, Anomaly' + ] ]; ?> diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html b/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html new file mode 100644 index 0000000..07de981 --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html @@ -0,0 +1,3 @@ + + This tutorial implements a strategy that standardizes the unexpected earnings of stocks and trades the top 5% of those standardized stocks. It is written based on a paper published in The Accounting Review by Foster, Olsen, and Shevlin (1984). Our implementation narrows down our universe to 1000 liquid assets based on daily trading volume and price, and the availability of fundamental data on the stocks in our data library. We calculate the unexpected earnings at the beginning of each month, standardize the unexpected earnings, go long on the top 5%, and rebalance the portfolio monthly. We observed an 11.8% annual return using this implementation during the period of December 1, 2009 to September 1, 2019 in backtesting. +
\ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html b/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html new file mode 100644 index 0000000..0179e8b --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html @@ -0,0 +1,3 @@ ++ In market efficiency literature, one frequently discussed topic is the anomalous behavior of stock returns following earnings announcements. The market does not adjust to news from earning announcements instantaneously. Instead, many studies report evidence that the direction and magnitude of returns in the post-earnings announcement period are positively correlated with the direction and magnitude of the unexpected component in the earnings releases. This observed phenomenon is consistent with suggestions that the capital market is inefficient. +
\ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html b/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html new file mode 100644 index 0000000..130dcfd --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html @@ -0,0 +1,124 @@ ++ Unexpected earnings, or earnings surprise, is the difference between reported earnings and the expected earnings of a firm. Expected earnings is calculated using a combination of analyst forecasts and mathematical models based on earnings of previous periods. In this tutorial, we use standardized unexpected earnings (SUE) to measure earnings surprise. SUE’s numerator is the change in quarterly earnings per share (EPS) from EPS four quarters ago. Its denominator is the standard deviation of a series of deltas each calculated by subtracting EPS at quarter q-4 from EPS at quarter q. It can be formulated as +
+ +\[ + SUE_q = \frac{ EPS_q - EPS_{q-4} }{ \sigma( EPS_q - EPS_{q-4} ) } +\] + ++ where \(\sigma(X)\) is the standard deviation of X, EPS a firm’s quarterly earnings per share, q the current quarter, and q-4 four quarters ago. Keep in mind that although we use quarterly EPS data, the portfolio rebalances monthly. Additionally, note that SUE’s stock ranking changes month to month because each company’s earnings announcement release date for the quarter differs (i.e., firm A’s Q3 announcement may come out in August while firm B’s Q3 announcement comes out in September). +
+ + +Step 1: Narrow down the universe with a coarse selection filter function
+ ++ We use a coarse selection filter to narrow down the universe to 1000 stocks at the beginning of each month according to dollar volume, price and whether the stock has fundamental data in our data library. +
+ ++ ++ +def CoarseSelectionFunction(self, coarse): + '''Get dynamic coarse universe to be further selected in fine selection + ''' + # Before next rebalance time, just remain the current universe + if self.Time < self.next_rebalance: + return Universe.Unchanged + + ### Run the coarse selection to narrow down the universe + # filter by fundamental data and price & Sort descendingly by daily dollar volume + sorted_by_volume = sorted([ x for x in coarse if x.HasFundamentalData and x.Price > 5 ], + key = lambda x: x.DollarVolume, reverse = True) + self.new_fine = [ x.Symbol for x in sorted_by_volume[:self.num_coarse] ] + + # Return all symbols that have appeared in Coarse Selection + return list( set(self.new_fine).union( set(self.eps_by_symbol.keys()) ) ) ++Step 2: Sort the universe by SUE and select the top 5%
+ ++ Next we use a fine universe selection filter to extract quarterly EPS data and save it in a rolling window for each stock. We don’t trade during the first 36-month warm-up period because the window is not ready yet. After the warm-up period, we can calculate quarterly EPS change from four quarters ago and the standard deviation of the change over the prior eight quarters using historical EPS data saved in the rolling windows. Then we sort the universe and assign the top 5% of symbols to self.long. +
+ + ++ ++ +def FineSelectionAndSueSorting(self, fine): + '''Select symbols to trade based on sorting of SUE''' + + sue_by_symbol = dict() + + for stock in fine: + + ### Save (symbol, rolling window of EPS) pair in dictionary + if not stock.Symbol in self.eps_by_symbol: + self.eps_by_symbol[stock.Symbol] = RollingWindow[float](self.months_count) + # update rolling window for each stock + self.eps_by_symbol[stock.Symbol].Add(stock.EarningReports.BasicEPS.ThreeMonths) + + ### Calculate SUE + + if stock.Symbol in self.new_fine and self.eps_by_symbol[stock.Symbol].IsReady: + + # Calculate the EPS change from four quarters ago + rw = self.eps_by_symbol[stock.Symbol] + eps_change = rw[0] - rw[self.months_eps_change] + + # Calculate the st dev of EPS change for the prior eight quarters + new_eps_list = list(rw)[:self.months_count - self.months_eps_change:3] + old_eps_list = list(rw)[self.months_eps_change::3] + eps_std = np.std( [ new_eps - old_eps for new_eps, old_eps in + zip( new_eps_list, old_eps_list ) + ] ) + + # Get Standardized Unexpected Earnings (SUE) + sue_by_symbol[stock.Symbol] = eps_change / eps_std + + # Sort and return the top quantile + sorted_dict = sorted(sue_by_symbol.items(), key = lambda x: x[1], reverse = True) + + self.long = [ x[0] for x in sorted_dict[:math.ceil( self.top_percent * len(sorted_dict) )] ] + # If universe is empty, OnData will not be triggered, then update next rebalance time here + if not self.long: + self.next_rebalance = Expiry.EndOfMonth(self.Time) + + return self.long ++Step 3: Form an equal-weighted portfolio and place orders
+ ++ Once the symbols are selected, we form an equal-weighted portfolio and place orders. Finally, we update the next rebalance time to the beginning of the next calendar month. The portfolio will be held until liquidated at next rebalance time. +
+ + ++ +\ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html b/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html new file mode 100644 index 0000000..3ac670b --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html @@ -0,0 +1,10 @@ +def OnSecuritiesChanged(self, changes): + '''Liquidate symbols that are removed from the dynamic universe + ''' + for security in changes.RemovedSecurities: + if security.Invested: + self.Liquidate(security.Symbol, 'Removed from universe') + + +def OnData(self, data): + '''Monthly rebalance at the beginning of each month. Form portfolio with equal weights. + ''' + # Before next rebalance, do nothing + if self.Time < self.next_rebalance or not self.long: + return + + # Placing orders (with equal weights) + equal_weight = 1 / len(self.long) + for stock in self.long: + self.SetHoldings(stock, equal_weight) + + # Rebalance at the beginning of every month + self.next_rebalance = Expiry.EndOfMonth(self.Time) +++ This tutorial shows that SEU is a valid indicator for earnings surprise, which can be used as a trading signal to follow post-earning announcement drifts. Our implementation generations a non-trivial 11.8% annual return. Interested users can build from this implementation by trying the following extensions: +
+ ++
\ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html b/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html new file mode 100644 index 0000000..26f8e7e --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html @@ -0,0 +1,6 @@ +- Using a more complicated measure for expected earnings to replace the historical EPS from four quarters ago. +
- Using different investment horizons such as 3 months, 6 months, 1 year. In a longer investment horizon of n months, each month’s decile will have n subdeciles, each of which is initiated in a different month in the prior n-month period. An example is a horizon of 6 months with each month having 6 subdeciles, each initiated in a different month in the prior 6-month period. +
- Importing custom data of analysts’ forecasts of firms’ earnings to replace the expected earnings based on historical EPS. +
- Selecting small-size companies and then trade based on SUE ranking, since studies suggest that post-earnings announcement is more significant for small-size companies than larger ones. +
+ +\ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html b/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html new file mode 100644 index 0000000..b138986 --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html @@ -0,0 +1,8 @@ ++ +++
- + Foster G, Olsen C, Shevlin T. Earnings releases, anomalies, and the behavior of security returns. Accounting Review. 1984 Oct 1:574-603 Online Copy +
+- + Hou K, Xue C, Zhang L. Replicating Anomalies. The Review of Financial Studies Online Copy +
+From 59bcdf0671fb43027f399c6f6094a6b717080fee Mon Sep 17 00:00:00 2001 From: Xin Wei
Date: Tue, 10 Sep 2019 17:20:31 -0700 Subject: [PATCH 074/215] Requested Changes to Strategy 354 --- .../354 Expected Idiosyncratic Skewness/02 Theory.html | 2 +- .../03 Data Description.html | 2 +- .../354 Expected Idiosyncratic Skewness/04 Method.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html index b1ae556..b49f79e 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html @@ -1,5 +1,5 @@ - BMV tests recent theories that stocks with low idiosyncratic skewness should have high expected returns. For example, Mitton and Vorkink (2007) develop a model that some investors (“lotto investors”) have a preference for positive skewness while others (“traditional investors”) are mean-variance optimizers seeking to maximize the Sharpe ratio of their portfolios. Lotto investors accept lower average returns on stocks with high idiosyncratic skewness because they have a preference for stocks with lottery-like return properties. In equilibrium, markets clear at prices such that stocks with high idiosyncratic skewness have low expected returns, due to the different portfolio preferences of the two groups of investors. + BMV tests recent theories that stocks with low idiosyncratic skewness should have high expected returns. For example, Mitton and Vorkink (2007) develop a model that some investors ("lotto investors") have a preference for positive skewness while others ("traditional investors") are mean-variance optimizers seeking to maximize the Sharpe ratio of their portfolios. Lotto investors accept lower average returns on stocks with high idiosyncratic skewness because they have a preference for stocks with lottery-like return properties. In equilibrium, markets clear at prices such that stocks with high idiosyncratic skewness have low expected returns, due to the different portfolio preferences of the two groups of investors.
diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html index 3aa2885..cfe92cd 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html @@ -1,3 +1,3 @@
- To execute our algorithm, we will use daily data from Kenneth French’s Data Library that captures the Fama-French three factors for the period July 1, 2009 to July 1, 2019. The raw data is delivered in a zip file which is not directly importable into LEAN. We need to unzip the file and upload the CSV to our Github cloud. All other data used for this algorithm, including stock price, volume, and market capitalization, are from QuantConnect’s Data Library. In the original paper, BSV also includes firm-specific variables like momentum, turnover, and dummies of properties including Nasdaq-listed stocks, small-size, medium-size, industries. We can refer to this online technical appendix for descriptions of these variables. + To execute our algorithm, we will use daily data from Kenneth French's Data Library that captures the Fama-French three factors for the period July 1, 2009 to July 1, 2019. The raw data is delivered in a zip file which is not directly importable into LEAN. We need to unzip the file and upload the CSV to a Github repository. All other data used for this algorithm, including stock price, volume, and market capitalization, are from QuantConnect's Data Library. In the original paper, BSV also includes firm-specific variables like momentum, turnover, and dummies of properties including Nasdaq-listed stocks, small-size, medium-size, industries. We can refer to this online technical appendix for descriptions of these variables.
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html index b864049..fa80957 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html @@ -27,7 +27,7 @@Step 2: Estimating historical idiosyncratic moments
Step 3: Estimating expected idiosyncratic skewness
- We need measures of expected skewness over a horizon of 1 months for firm i at the end of month t, \(E_t[is_{i,t+1}]\), rather than measures of historical skewness as defined in equation above. To model investor perceptions of expected skewness in a feasible manner, we first estimate cross-sectional regression separately at the end of each month t in our sample, + We need measures of expected skewness over a horizon of 1 month for firm i at the end of month t, \(E_t[is_{i,t+1}]\), rather than measures of historical skewness as defined in equation above. To model investor perceptions of expected skewness in a feasible manner, we first estimate cross-sectional regression separately at the end of each month t in our sample,
\[is_{i,t} = \beta_0^t + \beta_1^t is_{i,t-1} + \beta_2^t iv_{i,t-1} + \varepsilon_{i,t}\] @@ -39,7 +39,7 @@Step 3: Estimating expected idiosyncratic skewness
\[ E_t[is_{i,t+1}] = \beta_0^t + \beta_1^t is_{i,t} + \beta_2^t iv_{i,t} \]- This approach provides feasible estimates of each month’s expected skewness and accounts for variation between historical moments and expected skewness across time. + This approach provides feasible estimates of each month's expected skewness and accounts for variation between historical moments and expected skewness across time.
Step 4: Generating trading signals
From fc331e2a2b9c1303f9a1a1039aff4c25729c832d Mon Sep 17 00:00:00 2001 From: Xin WeiDate: Tue, 10 Sep 2019 18:07:29 -0700 Subject: [PATCH 075/215] Requested Changes to Strategy 355 --- .../01 Abstract.html | 2 +- .../03 Method.html | 11 ++++++----- .../04 Conclusion and Future Work.html | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html b/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html index 07de981..9972cb0 100644 --- a/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html @@ -1,3 +1,3 @@ - This tutorial implements a strategy that standardizes the unexpected earnings of stocks and trades the top 5% of those standardized stocks. It is written based on a paper published in The Accounting Review by Foster, Olsen, and Shevlin (1984). Our implementation narrows down our universe to 1000 liquid assets based on daily trading volume and price, and the availability of fundamental data on the stocks in our data library. We calculate the unexpected earnings at the beginning of each month, standardize the unexpected earnings, go long on the top 5%, and rebalance the portfolio monthly. We observed an 11.8% annual return using this implementation during the period of December 1, 2009 to September 1, 2019 in backtesting. + This tutorial implements a strategy that standardizes the unexpected earnings of stocks and trades the top 5% of those standardized stocks. It is written based on a paper published in The Accounting Review by Foster, Olsen, and Shevlin (1984). Our implementation narrows down our universe to 1000 liquid assets based on daily trading volume and price, and the availability of fundamental data on the stocks in our data library. We calculate the unexpected earnings at the beginning of each month, standardize the unexpected earnings, go long on the top 5%, and rebalance the portfolio monthly. We observed a Sharpe ratio of 0.83 relative to SPY Sharpe of 0.88 using this implementation during the period of December 1, 2009 to September 1, 2019 in backtesting.
\ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html b/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html index 130dcfd..a1b3ba6 100644 --- a/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html @@ -1,5 +1,5 @@- Unexpected earnings, or earnings surprise, is the difference between reported earnings and the expected earnings of a firm. Expected earnings is calculated using a combination of analyst forecasts and mathematical models based on earnings of previous periods. In this tutorial, we use standardized unexpected earnings (SUE) to measure earnings surprise. SUE’s numerator is the change in quarterly earnings per share (EPS) from EPS four quarters ago. Its denominator is the standard deviation of a series of deltas each calculated by subtracting EPS at quarter q-4 from EPS at quarter q. It can be formulated as + Unexpected earnings, or earnings surprise, is the difference between reported earnings and the expected earnings of a firm. Expected earnings is calculated using a combination of analyst forecasts and mathematical models based on earnings of previous periods. In this tutorial, we use standardized unexpected earnings (SUE) to measure earnings surprise. SUE's numerator is the change in quarterly earnings per share (EPS) from EPS four quarters ago. Its denominator is the standard deviation of a series of deltas each calculated by subtracting EPS at quarter q-4 from EPS at quarter q. It can be formulated as
\[ @@ -7,7 +7,7 @@ \]- where \(\sigma(X)\) is the standard deviation of X, EPS a firm’s quarterly earnings per share, q the current quarter, and q-4 four quarters ago. Keep in mind that although we use quarterly EPS data, the portfolio rebalances monthly. Additionally, note that SUE’s stock ranking changes month to month because each company’s earnings announcement release date for the quarter differs (i.e., firm A’s Q3 announcement may come out in August while firm B’s Q3 announcement comes out in September). + where \(\sigma(X)\) is the standard deviation of X, EPS a firm's quarterly earnings per share, q the current quarter, and q-4 four quarters ago. Keep in mind that although we use quarterly EPS data, the portfolio rebalances monthly. Additionally, note that SUE's stock ranking changes month to month because each company's earnings announcement release date for the quarter differs (i.e., firm A's Q3 announcement may come out in August while firm B's Q3 announcement comes out in September).
@@ -22,12 +22,13 @@Step 1: Narrow down the universe with a coarse selection filter function
def CoarseSelectionFunction(self, coarse): '''Get dynamic coarse universe to be further selected in fine selection ''' - # Before next rebalance time, just remain the current universe + # Before next rebalance time, keep the current universe unchanged if self.Time < self.next_rebalance: return Universe.Unchanged ### Run the coarse selection to narrow down the universe - # filter by fundamental data and price & Sort descendingly by daily dollar volume + # Filter stocks by price and whether they have fundamental data + # Then, sort descendingly by daily dollar volume sorted_by_volume = sorted([ x for x in coarse if x.HasFundamentalData and x.Price > 5 ], key = lambda x: x.DollarVolume, reverse = True) self.new_fine = [ x.Symbol for x in sorted_by_volume[:self.num_coarse] ] @@ -40,7 +41,7 @@Step 1: Narrow down the universe with a coarse selection filter function
Step 2: Sort the universe by SUE and select the top 5%- Next we use a fine universe selection filter to extract quarterly EPS data and save it in a rolling window for each stock. We don’t trade during the first 36-month warm-up period because the window is not ready yet. After the warm-up period, we can calculate quarterly EPS change from four quarters ago and the standard deviation of the change over the prior eight quarters using historical EPS data saved in the rolling windows. Then we sort the universe and assign the top 5% of symbols to self.long. + Next we use a fine universe selection filter to extract quarterly EPS data and save it in a rolling window for each stock. We don't trade during the first 36-month warm-up period because the window is not ready yet. After the warm-up period, we can calculate quarterly EPS change from four quarters ago and the standard deviation of the change over the prior eight quarters using historical EPS data saved in the rolling windows. Then we sort the universe and assign the top 5% of symbols to self.long.
diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html b/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html index 3ac670b..291c81a 100644 --- a/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html @@ -1,5 +1,5 @@- This tutorial shows that SEU is a valid indicator for earnings surprise, which can be used as a trading signal to follow post-earning announcement drifts. Our implementation generations a non-trivial 11.8% annual return. Interested users can build from this implementation by trying the following extensions: + This tutorial shows that SEU is a valid indicator for earnings surprise, which can be used as a trading signal to follow post-earning announcement drifts. Our implementation generates a Sharpe ratio of 0.83 relative to SPY Sharpe ratio of 0.88. Interested users can build from this implementation by trying the following extensions:
From 2335b97261680ce702d701beb6789421cdeced23 Mon Sep 17 00:00:00 2001 From: Xin Wei
Date: Tue, 10 Sep 2019 18:14:19 -0700 Subject: [PATCH 076/215] Replaced Annual Return with Sharpe --- .../354 Expected Idiosyncratic Skewness/01 Abstract.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html index 9b7d744..5d4ea33 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html @@ -1,3 +1,3 @@ - This tutorial implements a strategy that trades stocks with low expected idiosyncratic skewness based on a paper by Boyer, Mitton and Vorkink (2009, hereafter BMV) published in The Review of Financial Studies. Our implementation narrows down our initial universe to liquid assets by selecting 200 stocks based on daily trading volume, price and whether the stock has fundamental data in our data library. We calculate the expected idiosyncratic skewness at the end of each month and sort our universe based on the calculated skewness. This implementation will long the bottom 5%, hold for the next month, and rebalance the portfolio monthly. The annual return during the period of July 1, 2009 to July 1, 2019 is 21.0%. + This tutorial implements a strategy that trades stocks with low expected idiosyncratic skewness based on a paper by Boyer, Mitton and Vorkink (2009, hereafter BMV) published in The Review of Financial Studies. Our implementation narrows down our initial universe to liquid assets by selecting 200 stocks based on daily trading volume, price and whether the stock has fundamental data in our data library. We calculate the expected idiosyncratic skewness at the end of each month and sort our universe based on the calculated skewness. This implementation will long the bottom 5%, hold for the next month, and rebalance the portfolio monthly. The Sharpe ratio is 1.1 relative to SPY Sharpe ratio of 0.99 during the period of July 1, 2009 to July 1, 2019.
\ No newline at end of file From 0d5b1ad63d0492e5ee235b99351e789faac07f30 Mon Sep 17 00:00:00 2001 From: Xin WeiDate: Wed, 11 Sep 2019 16:22:32 -0700 Subject: [PATCH 077/215] Resolve Conflict & A Few Extra Minor Changes Minor changes include: (1) Fixed a bug related to month-end rebalance in code. (2) Changed texts accordingly. --- .../354 Expected Idiosyncratic Skewness/01 Abstract.html | 2 +- .../03 Data Description.html | 2 +- .../354 Expected Idiosyncratic Skewness/06 Algorithm.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html index 5d4ea33..ffa6192 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html @@ -1,3 +1,3 @@ - This tutorial implements a strategy that trades stocks with low expected idiosyncratic skewness based on a paper by Boyer, Mitton and Vorkink (2009, hereafter BMV) published in The Review of Financial Studies. Our implementation narrows down our initial universe to liquid assets by selecting 200 stocks based on daily trading volume, price and whether the stock has fundamental data in our data library. We calculate the expected idiosyncratic skewness at the end of each month and sort our universe based on the calculated skewness. This implementation will long the bottom 5%, hold for the next month, and rebalance the portfolio monthly. The Sharpe ratio is 1.1 relative to SPY Sharpe ratio of 0.99 during the period of July 1, 2009 to July 1, 2019. + This tutorial implements a strategy that trades stocks with low expected idiosyncratic skewness based on a paper by Boyer, Mitton and Vorkink (2009, hereafter BMV) published in The Review of Financial Studies. Our implementation narrows down our initial universe to liquid assets by selecting 200 stocks based on daily trading volume, price and whether the stock has fundamental data in our data library. We calculate the expected idiosyncratic skewness at the end of each month and sort our universe based on the calculated skewness. This implementation will long the bottom 5%, hold for the next month, and rebalance the portfolio monthly. The Sharpe ratio is 1.03 relative to S&P 500 (SPY) Sharpe ratio of 1.00 during the period of July 1, 2009 to July 30, 2019.
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html index cfe92cd..31483b2 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html @@ -1,3 +1,3 @@- To execute our algorithm, we will use daily data from Kenneth French's Data Library that captures the Fama-French three factors for the period July 1, 2009 to July 1, 2019. The raw data is delivered in a zip file which is not directly importable into LEAN. We need to unzip the file and upload the CSV to a Github repository. All other data used for this algorithm, including stock price, volume, and market capitalization, are from QuantConnect's Data Library. In the original paper, BSV also includes firm-specific variables like momentum, turnover, and dummies of properties including Nasdaq-listed stocks, small-size, medium-size, industries. We can refer to this online technical appendix for descriptions of these variables. + To execute our algorithm, we will use daily data from Kenneth French's Data Library that captures the Fama-French three factors for the period July 1, 2009 to June 30, 2019. The raw data is delivered in a zip file which is not directly importable into LEAN. We need to unzip the file and upload the CSV to a Github repository. All other data used for this algorithm, including stock price, volume, and market capitalization, are from QuantConnect's Data Library. In the original paper, BSV also includes firm-specific variables like momentum, turnover, and dummies of properties including Nasdaq-listed stocks, small-size, medium-size, industries. We can refer to this online technical appendix for descriptions of these variables.
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html index af8d286..20f54ed 100644 --- a/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html @@ -1,6 +1,6 @@\ No newline at end of file From 7e101aff6883324720fec86c87942fb0cd23a781 Mon Sep 17 00:00:00 2001 From: Gustavo Aviles- +Date: Thu, 12 Sep 2019 10:28:11 -0700 Subject: [PATCH 078/215] Fix strategy library map Address missing comma, that was preventing the tutorials repository from being generated. --- 04 Strategy Library/00 Strategy Library/01 Strategy Library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index 8316643..c2eb29a 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -556,7 +556,7 @@ 'sources' => [ 'NYU' => 'https://www.jstor.org/stable/pdf/247321.pdf' ], - 'description' => "Stock selection strategy that calculates the unexpected earnings, standardizes the unexpected earnings, goes long on the top 5%, and rebalances the portfolio monthly." + 'description' => "Stock selection strategy that calculates the unexpected earnings, standardizes the unexpected earnings, goes long on the top 5%, and rebalances the portfolio monthly.", 'tags' => 'Equities, Fundamental Factors, Earnings, Anomaly' ] ]; From 410079a33dff785310f3b1bd46ce2f4a55439063 Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Thu, 12 Sep 2019 16:51:57 -0700 Subject: [PATCH 079/215] Changes requested --- .../02 Method.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html index 4bcd1ee..5b5da95 100644 --- a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html @@ -1,6 +1,6 @@ Step 1: Select our universe
- We first select liquid securities and ETFs with prices greater than $5 based on Dollar Volume for our universe. Research from “Common Factors” suggests that the U.S. equity, commodity, and index markets are all affected by seasonality patterns. Therefore, we can include any assets in our universe. Note that while this strategy does not require fundamental data for implementation, other strategies in the library do. In those cases we would need to remove ETFs from the universe because we don’t have fundamental data for ETFs. + We first select the top 100 liquid securities and ETFs with prices greater than $5 based on Dollar Volume for our universe. Research from "Common Factors" suggests that the U.S. equity, commodity, and index markets are all affected by seasonality patterns. Therefore, we can include any assets in our universe. Note that while this strategy does not require fundamental data for implementation, other strategies in the library do. In those cases we would need to remove ETFs from the universe because we don’t have fundamental data for ETFs.
@@ -16,7 +16,7 @@Step 1: Select our universe
Step 2: Calculate the same-calendar month returns of the previous year
- “Common Factors” indicates that taking long and short positions based on historical same-calendar month returns earns an average monthly return of 1.88%. Our implementation also selects securities to long and short based on their same-calendar month returns. For each security in the universe, we calculate the monthly return for the same-calendar month of the previous year and choose the symbols as follows: + "Common Factors" indicates that taking long and short positions based on historical same-calendar month returns earns an average monthly return of 1.88%. Our implementation also selects securities to long and short based on their same-calendar month returns. For each security in the universe, we calculate the monthly return for the same-calendar month of the previous year and choose the symbols as follows:
From aaf91ce77c44446bee6912867d049d958d9397e9 Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Thu, 12 Sep 2019 18:03:05 -0700 Subject: [PATCH 080/215] Update 03 Results --- .../03 Results.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html index d502249..e4e319f 100644 --- a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html @@ -1,5 +1,5 @@@@ -126,17 +140,29 @@- In backtesting our algorithm achieves an annual rate of return over 5% with a max drawdown of approximately 30% for the past 10 years. + In backtesting our algorithm achieves a Sharpe ratio of 0.332 relative to S&P 500 (SPY) Sharpe ratio of 0.893 for the past 10 years. The performance indicates using the idea of same-calendar month returns makes sense. Interested users can build upon this implementation by trying the following extensions:
From 2d92e4e421644e93c0c187d2d84bb5758b638569 Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Tue, 17 Sep 2019 10:44:40 -0700 Subject: [PATCH 081/215] Add Improved Momentum Strategy on Commodities Futures --- .../01 Strategy Library.php | 9 + .../01 Abstract.html | 3 + .../02 Introduction.html | 16 ++ .../03 TSMOM-CF Theory.html | 99 +++++++++ .../04 Method.html | 207 ++++++++++++++++++ .../05 Summary.html | 3 + .../06 Algorithm.html | 6 + .../07 References.html | 8 + 8 files changed, 351 insertions(+) create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html create mode 100644 04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index 1aef751..76fe5bf 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -568,6 +568,15 @@ ], 'description' => "Stock selection strategy that calculates the unexpected earnings, standardizes the unexpected earnings, goes long on the top 5%, and rebalances the portfolio monthly.", 'tags' => 'Equities, Fundamental Factors, Earnings, Anomaly' + ], + [ + 'name' => 'Improved Momentum Strategy on Commodities Futures', + 'link' => 'strategy-library/improved-momentum-strategy-on-commodities-futures', + 'sources' => [ + 'NYU' => 'https://pdfs.semanticscholar.org/a2e9/df201d4b4774fda84a961cc804f2450988c5.pdf' + ], + 'description' => "An advanced momentum strategy that modifies the basic momentum strategies by introducing Baltas and Kosowski weights and rebalances the portfolio monthly. The new weighing scheme incorporates trend strength into the trading signal, uses an efficient volatility estimator, and adds a dynamic leverage mechanism.", + 'tags' => 'Momentum, Futures, Commodities' ] ]; diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html new file mode 100644 index 0000000..2c4d2da --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html @@ -0,0 +1,3 @@ +
+ In this tutorial we implement a correlation-adjusted time-series momentum strategy (TSMOM-CF) that addresses three weaknesses typically found in traditional time-series momentum strategies (TSMOM). Our implementation is based on the paper “Demystifying Time-Series Momentum Strategies: Volatility Estimators, Trading Rules and Pairwise Correlations” by Nick Baltas and Robert Kosowski. We will also compare TSMOM-CF to the basic momentum strategy implemented in our strategy library - Momentum Effect in Commodities Futures. +
\ No newline at end of file diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html new file mode 100644 index 0000000..7dae98b --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html @@ -0,0 +1,16 @@ ++ Baltas and Kosowski modify the basic momentum strategy by incorporating trend strength into the trading signal, using an efficient volatility estimator, and adding a dynamic leverage mechanism. The modifications overcome these three weaknesses: +
+ ++
+ diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html new file mode 100644 index 0000000..2c51e91 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html @@ -0,0 +1,99 @@ +- + An Oversimplified Trading Signal: The traditional time-series momentum strategy (TSMOM) results in high portfolio turnover which, after accounting for transaction costs, leads to diminished performance. Baltas and Kosowski attribute the traditional strategy’s extreme long/short positions to an oversimplified trading signal whose values are a discrete +1 or -1. The traditional trading signal is based on the sign of the past 12-month average simple return. Baltas and Kosowski propose a trading signal with a continuous value between +1 and -1. Their signal is a statistical measure that reflects the strength of the price trend. +
+- + An Inefficient Volatility Estimator: The TSMOM generally scales asset positions using the estimated volatility of portfolio constituents. The traditional strategy’s volatility estimator is the standard deviation of past daily close-to-close returns, which is subject to large estimation errors. Baltas and Kosowski demonstrate that a more efficient volatility estimator can significantly reduce portfolio turnover which, after taking into account transaction costs, boosts the portfolio performance. They present the Yang and Zhang volatility estimator, a range-based estimator that considers the open, high, low, and close prices of assets. The next section will discuss this estimator in greater detail. +
+- + A Fixed Portfolio Allocation Mechanism: The TSMOM does not consider the correlation between assets during portfolio construction. It simply allocates funds to each asset based on the properties of the individual assets. Strategies based on TSMOM significantly underperform in the post-2008 global financial crisis (GFC) period due to the increased level of asset co-movement at the time. As a remedy, Baltas and Kosowski introduce a dynamic leverage adjustment for the overall portfolio by adding a correlation factor to the weighting scheme. +
++Baltas and Kosowski’s modifications to the basic time-series momentum strategy can be summarized in the formula below: +
+ +\[r_{t,t+1}^{TSMOM-CF} = \frac{1}{N_t} \sum_{i=1}^{N_t} X_t^i \frac{\sigma_{P,tgt}{\sigma_t^i} CF(\bar{\rho}_t)r_{t,t+1}^i\] + ++ where: +
+\[r_{t,t+1}^{TSMOM-CF} = \text{TSMOM-CF portfolio return from time t to time t+1}\] +\[N_t = \text{Number of portfolio constituents at time t}\] +\[X_t^i = \text{Trading signal value of asset i at time t}\] +\[\sigma_{P,tgt} = \text{Target level of volatility for the overall portfolio}\] +\[\sigma_t^i = \text{Estimated volatility of asset i at time t}\] +\[CF(\bar{\rho}_t) = \text{Correlation factor that adjusts the level of leverage applied to each portfolio constituents at time t}\] +\[r_{t,t+1}^i = \text{return of asset i from time t to time t+1}\] + ++ The formula shows that the weights for each portfolio constituent are dependent on three parts: +
+ + +Part I: Trading Rule Adjustment (\(X_t^i\))
+ ++The TREND trading rule determines the trading signal based on the statistical strength of the realized return: +
+ + +\[ +\text{TREND}_i^{12M} \quad +\begin{cases} +1, \text{ if } t(r_{t-12,t})>+1 \\ +t(r_{t-12,t}), \text{ otherwise} \\ +-1, \text{ if } t(r_{t-12,t})<-1 \\ +\end{cases} +\] + ++where t() is the t-statistic of the daily futures log-returns over the past 12 months to scale the gross exposure to each portfolio constituents. +
+ ++When the absolute value of our t-statistic is greater than 1, the trend is highly statistically significant, so the strategy puts 100% exposure to the asset. When the t-statistic is between -1 and 1, the strength of the trend is not as significant, so the strategy scales its exposure to less than 100%. +
+ + +Part II: Yang and Zhang Volatility Estimato(\(\sigma_{YZ}\))
++ Instead of estimating each asset’s volatility as the standard deviation of past close-to-close daily logarithmic returns, Baltas and Kosowski adopt a more efficient volatility estimator proposed by Yang and Zhang (2000). The formula for the Yang and Zhang volatility estimator (\(\sigma_{YZ}\)) is shown below: +
+ +\[\sigma_{YZ}^2(t) = \sigma_{OJ}^2(t) + k \sigma_{SD}^2(t) + (1-k) \sigma_{RS}^2(t)\] + ++ where: +
+ +\[\sigma_{OJ} = \text{Overnight jump estimator (standard deviation of close-to-open daily logarithmic returns)}\] +\[\sigma_{SD} = \text{Standard volatility estimator (standard deviation of close-to-close daily logarithmic returns)}\] +\[\sigma_{RS} = \text{Rogers and Satchell (1991) range estimator}\] +\[k = \text{parameter that minimizes YZ estimator variance, which is a function of the numbers of days in the estimation}\] + ++The formula for parameter k is below: +
+\[k = \frac{0.34}{1.34+\frac{N_D+1}{N_D-1}}\] + ++The Rogers and Satchell range estimator calculation is based on the following formula: +
+ +\[\sigma_{RS}^2(\tau) = h(\tau)[h(\tau)-c(\tau)]+l(\tau)[l(\tau)-c(\tau)]\] + ++ where \(h(\tau)\), \(l(\tau)\) and \(c(\tau)\) denote the logarithmic difference between the high, low and closing prices respectively with the opening price. The RS volatility of an asset at the end of month t, assuming a certain estimation period, is equal to the average daily RS volatility over this period. +
+ ++The estimation period is chosen to be 1 month, or 21 trading days, based on Baltas and Kosowski's suggestions. +
+ + +Part III: Correlation Factor (CF)
+Baltas and Kosowski’s correlation factor (CF) is a function of \(\bar{\rho}\), which is the average pairwise signed correlation of all portfolio constituents. The calculations are shown below: + +\[CF(\bar{\rho}) = \sqrt{\frac{N}{1+(N-1)\bar{\rho}}\] +\[\bar{\rho} = 2 \frac{\sum_{i=1}^N \sum_{j=i+1}^N X_i X_j \rho_{i,j}{N(N-1)}\] + ++ where: +
+ +\[N = \text{number of assets in the portfolio}\] +\[\rho_{i,j} = \text{correlation between asset i, j}\] +\[X_i = \text{trade signal of asset i}\] +\[\bar{\rho} = \text{average pairwise signed correlation for the entire portfolio}\] + diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html new file mode 100644 index 0000000..2014718 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html @@ -0,0 +1,207 @@ ++ The strategy requires the continuous futures contract, so we import the custom data from Quandl. We manually create a universe of tradable commodity futures from all available commodity futures traded on CME and ICE. They are all liquid and active continuous contracts #1. The data from Quandl are non-adjusted price based on spot-month continuous contract calculations. The data resolution is daily. +
+ + +Step 1: Import the data
+ +++ + + ++from QuantConnect.Python import PythonQuandl +class ImprovedCommodityMomentumTrading(QCAlgorithm): + def Initialize(self): + for ticker in tickers: + data = self.AddData(QuandlFutures, ticker, Resolution.Daily) + data.SetLeverage(3) # Leverage was set to 3 for each of the futures contract +class QuandlFutures(PythonQuandl): + def __init__(self): + self.ValueColumnName = "Settle" ++Step 2: Set the portfolio target volatility and decide rebalance schedule
+++ ++def Initialize(self): + # Last trading date tracker to achieve rebalancing the portfolio every month + self.nextRebalance = self.Time + + # Set portfolio target level of volatility, set to 12% + self.portfolio_target_sigma = 0.12 ++Step 3: Implement functions to calculate the three components of Baltas and Kosowski weights
+1. TREND Trade Signal
+++ ++def GetTradingSignal(self, history): + ''' + TREND Trading Signal + - Uses the t-statistics of historical daily log-returns to reflect the strength of price movement trend + - TREND Signal Conditions: + t-stat > 1 => TREND Signal = 1 + t-stat < 1 => TREND Signal = -1 + -1 < t-stat < 1 => TREND Signal = t-stat + ''' + settle = history.settle.unstack(level = 0) + + # daily futures log-returns based on close-to-close + log_returns = np.log(settle/settle.shift(1)).dropna() + + # Calculate the t-statistics as + # (mean-0)/(stdev/sqrt(n)), where n is sample size + mean = np.mean(log_returns) + std = np.std(log_returns) + n = len(log_returns) + t_stat = mean/(std/np.sqrt(n)) + + # cap holding at 1 and -1 + return np.clip(t_stat, a_max=1, a_min=-1) ++2. Yang and Zhang Volatility Estimator
+++ ++def GetYZVolatility(self, history, available_symbols): + ''' + Yang and Zhang 'Drift-Independent Volatility Estimation' + + Formula: sigma_YZ^2 = sigma_OJ^2 + self.k * sigma_SD^2 + (1-self.k)*sigma_RS^2 (Equation 20 in [1]) + where, sigma_OJ - (Overnight Jump Volitility estimator) + sigma_SD - (Standard Volitility estimator) + sigma_RS - (Rogers and Satchell Range Volatility estimator)''' + YZ_volatility = [] + + time_index = history.loc[available_symbols[0]].index + today = time_index[-1] + + #Calculate YZ volatility for each security and append to list + for ticker in available_symbols: + past_month_ohlc = history.loc[ticker].loc[today-timedelta(self.OneMonth):today] + open, high, low, close = past_month_ohlc.open, past_month_ohlc.high, past_month_ohlc.low, past_month_ohlc.settle + estimation_period = past_month_ohlc.shape[0] + + # Calculate constant parameter k for Yang and Zhang volatility estimator + # using the formula found in Yang and Zhang (2000) + k = 0.34 / (1.34 + (estimation_period + 1) / (estimation_period - 1)) + + # sigma_OJ (overnight jump => stdev of close-to-open log returns) + open_to_close_log_returns = np.log(open/close.shift(1)) + open_to_close_log_returns = open_to_close_log_returns[np.isfinite(open_to_close_log_returns)] + sigma_OJ = np.std(open_to_close_log_returns) + + # sigma_SD (standard deviation of close-to-close log returns) + close_to_close_log_returns = np.log(close/close.shift(1)) + close_to_close_log_returns = close_to_close_log_returns[np.isfinite(close_to_close_log_returns)] + sigma_SD = np.std(close_to_close_log_returns) + + # sigma_RS (Rogers and Satchell (1991)) + h = np.log(high/open) + l = np.log(low/open) + c = np.log(close/open) + sigma_RS_daily = (h * (h - c) + l * (l - c))**0.5 + sigma_RS_daily = sigma_RS_daily[np.isfinite(sigma_RS_daily)] + sigma_RS = np.mean(sigma_RS_daily) + + # daily Yang and Zhang volatility + sigma_YZ = np.sqrt(sigma_OJ**2 + k * sigma_SD**2 + (1 - k) * sigma_RS**2) + + # append annualized volatility to the list + YZ_volatility.append(sigma_YZ*np.sqrt(252)) + + return YZ_volatility ++3. Correlation Factor (CF)
+++ ++def GetCorrelationFactor(self, history, trade_signals, available_symbols): + ''' + Calculate the Correlation Factor, which is a function of the average pairwise correlation of all portfolio contituents + - the calculation is based on past three month pairwise correlation + - Notations: + rho_bar - average pairwise correlation of all portfolio constituents + CF_rho_bar - the correlation factor as a function of rho_bar''' + + # Get the past three month simple daily returns for all securities + settle = history.settle.unstack(level = 0) + past_three_month_returns = settle.pct_change().loc[settle.index[-1]-timedelta(self.ThreeMonths):] + + # Get number of assets + N_assets = len(available_symbols) + + # Get the pairwise signed correlation matrix for all assets + correlation_matrix = past_three_month_returns.corr() + + # Calculate rho_bar + summation = 0 + for i in range(N_assets-1): + for temp in range(N_assets - 1 - i): + j = i + temp + 1 + x_i = trade_signals[i] + x_j = trade_signals[j] + rho_i_j = correlation_matrix.iloc[i,j] + summation += x_i * x_j * rho_i_j + + # Equation 14 in [1] + rho_bar = (2 * summation) / (N_assets * (N_assets - 1)) + + # Calculate the correlation factor (CF_rho_bar) + # Equation 18 in [1] + return np.sqrt(N_assets / (1 + (N_assets - 1) * rho_bar)) ++Step 4: Construct/Rebalance the Portfolio
++For efficiency purposes, a History() request is called once on each rebalance date to get all the data from the past year for all securities. We retrieve our trade signal, Yang and Zhang volatility, and correlation factor by passing the history data frame to each respective function. +
+ ++diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html new file mode 100644 index 0000000..80f9ba3 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html @@ -0,0 +1,3 @@ ++def OnData(self, data): + ''' + Monthly rebalance at the beginning of each month. + Portfolio weights for each constituents are calculated based on Baltas and Kosowski weights. + ''' + + # skip if less than 30 days passed since the last trading date + if self.Time < self.nextRebalance: + return + + '''Monthly Rebalance Execution''' + # dataframe that contains the historical data for all securities + history = self.History(self.Securities.Keys, self.OneYear, Resolution.Daily) + history.replace(0, np.nan, inplace = True) + + # Get the security symbols are are in the history dataframe + available_symbols = list(set(history.index.get_level_values(level = 0))) + + # Liquidate symbols that are not in the history dataframe anymore + for security in self.Securities.Keys: + if security.Value not in available_symbols: + self.Liquidate(security, 'Not found in history request') + + # Get the trade signals and YZ volatility for all securities + trade_signals = self.GetTradingSignal(history) + volatility = self.GetYZVolatility(history, available_symbols) + + # Get the correlation factor + CF_rho_bar = self.GetCorrelationFactor(history, trade_signals, available_symbols) + + #Rebalance the portfolio according to Baltas and Kosowski suggested weights + N_assets = len(available_symbols) + for symbol, signal, vol in zip(available_symbols, trade_signals, volatility): + # Baltas and Kosowski weights (Equation 19 in [1]) + weight = (signal*self.portfolio_target_sigma*CF_rho_bar)/(N_assets*vol) + self.SetHoldings(symbol, weight) + + # Set next rebalance time + self.nextRebalance = Expiry.EndOfMonth(self.Time) +++The implementation of TSMOM-CF in the post-GFC period, January 2018 to September 2019, shows significant performance improvement over the basic TSMOM. The backtest of TSMOM-CF produces Sharpe ratio of 0.321, compared to TSMOM’s Sharpe ratio of -0.746 and SPY Sharpe ratio of 0.46. The exact TSMOM algorithm can be found in the strategy library. +
\ No newline at end of file diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html new file mode 100644 index 0000000..6eebbb0 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html @@ -0,0 +1,6 @@ ++ +diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html new file mode 100644 index 0000000..5a494dd --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html @@ -0,0 +1,8 @@ ++ +++
- + Baltas, Nick & Kosowski, Robert. (2017). Demystifying Time-Series Momentum Strategies: Volatility Estimators, Trading Rules and Pairwise Correlations. SSRN Electronic Journal. 10.2139/ssrn.2140091. Online Copy +
+- + Yang, Dennis & Zhang, Qiang. (2000). Drift-Independent Volatility Estimation Based on High, Low, Open, and Close Prices. The Journal of Business, 73(3), 477-492. doi:10.1086/209650. Online Copy +
+\ No newline at end of file From 409eeea47e4aacc4cb9f6cf848569ac3ad4de932 Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Tue, 17 Sep 2019 10:55:32 -0700 Subject: [PATCH 082/215] Apostrophes edited --- .../01 Abstract.html | 2 +- .../02 Introduction.html | 4 ++-- .../03 TSMOM-CF Theory.html | 6 +++--- .../05 Summary.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html index 2c4d2da..a095d84 100644 --- a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html @@ -1,3 +1,3 @@
- In this tutorial we implement a correlation-adjusted time-series momentum strategy (TSMOM-CF) that addresses three weaknesses typically found in traditional time-series momentum strategies (TSMOM). Our implementation is based on the paper “Demystifying Time-Series Momentum Strategies: Volatility Estimators, Trading Rules and Pairwise Correlations” by Nick Baltas and Robert Kosowski. We will also compare TSMOM-CF to the basic momentum strategy implemented in our strategy library - Momentum Effect in Commodities Futures. + In this tutorial we implement a correlation-adjusted time-series momentum strategy (TSMOM-CF) that addresses three weaknesses typically found in traditional time-series momentum strategies (TSMOM). Our implementation is based on the paper "Demystifying Time-Series Momentum Strategies: Volatility Estimators, Trading Rules and Pairwise Correlations" by Nick Baltas and Robert Kosowski. We will also compare TSMOM-CF to the basic momentum strategy implemented in our strategy library - Momentum Effect in Commodities Futures.
\ No newline at end of file diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html index 7dae98b..2130e92 100644 --- a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html @@ -4,10 +4,10 @@
- - An Oversimplified Trading Signal: The traditional time-series momentum strategy (TSMOM) results in high portfolio turnover which, after accounting for transaction costs, leads to diminished performance. Baltas and Kosowski attribute the traditional strategy’s extreme long/short positions to an oversimplified trading signal whose values are a discrete +1 or -1. The traditional trading signal is based on the sign of the past 12-month average simple return. Baltas and Kosowski propose a trading signal with a continuous value between +1 and -1. Their signal is a statistical measure that reflects the strength of the price trend. + An Oversimplified Trading Signal: The traditional time-series momentum strategy (TSMOM) results in high portfolio turnover which, after accounting for transaction costs, leads to diminished performance. Baltas and Kosowski attribute the traditional strategy's extreme long/short positions to an oversimplified trading signal whose values are a discrete +1 or -1. The traditional trading signal is based on the sign of the past 12-month average simple return. Baltas and Kosowski propose a trading signal with a continuous value between +1 and -1. Their signal is a statistical measure that reflects the strength of the price trend.
- - An Inefficient Volatility Estimator: The TSMOM generally scales asset positions using the estimated volatility of portfolio constituents. The traditional strategy’s volatility estimator is the standard deviation of past daily close-to-close returns, which is subject to large estimation errors. Baltas and Kosowski demonstrate that a more efficient volatility estimator can significantly reduce portfolio turnover which, after taking into account transaction costs, boosts the portfolio performance. They present the Yang and Zhang volatility estimator, a range-based estimator that considers the open, high, low, and close prices of assets. The next section will discuss this estimator in greater detail. + An Inefficient Volatility Estimator: The TSMOM generally scales asset positions using the estimated volatility of portfolio constituents. The traditional strategy's volatility estimator is the standard deviation of past daily close-to-close returns, which is subject to large estimation errors. Baltas and Kosowski demonstrate that a more efficient volatility estimator can significantly reduce portfolio turnover which, after taking into account transaction costs, boosts the portfolio performance. They present the Yang and Zhang volatility estimator, a range-based estimator that considers the open, high, low, and close prices of assets. The next section will discuss this estimator in greater detail.
- A Fixed Portfolio Allocation Mechanism: The TSMOM does not consider the correlation between assets during portfolio construction. It simply allocates funds to each asset based on the properties of the individual assets. Strategies based on TSMOM significantly underperform in the post-2008 global financial crisis (GFC) period due to the increased level of asset co-movement at the time. As a remedy, Baltas and Kosowski introduce a dynamic leverage adjustment for the overall portfolio by adding a correlation factor to the weighting scheme. diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html index 2c51e91..8057d58 100644 --- a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html @@ -1,5 +1,5 @@
-Baltas and Kosowski’s modifications to the basic time-series momentum strategy can be summarized in the formula below: +Baltas and Kosowski's modifications to the basic time-series momentum strategy can be summarized in the formula below:
\[r_{t,t+1}^{TSMOM-CF} = \frac{1}{N_t} \sum_{i=1}^{N_t} X_t^i \frac{\sigma_{P,tgt}{\sigma_t^i} CF(\bar{\rho}_t)r_{t,t+1}^i\] @@ -48,7 +48,7 @@Part I: Trading Rule Adjustment (\(X_t^i\))
Part II: Yang and Zhang Volatility Estimato(\(\sigma_{YZ}\))
- Instead of estimating each asset’s volatility as the standard deviation of past close-to-close daily logarithmic returns, Baltas and Kosowski adopt a more efficient volatility estimator proposed by Yang and Zhang (2000). The formula for the Yang and Zhang volatility estimator (\(\sigma_{YZ}\)) is shown below: + Instead of estimating each asset's volatility as the standard deviation of past close-to-close daily logarithmic returns, Baltas and Kosowski adopt a more efficient volatility estimator proposed by Yang and Zhang (2000). The formula for the Yang and Zhang volatility estimator (\(\sigma_{YZ}\)) is shown below:
\[\sigma_{YZ}^2(t) = \sigma_{OJ}^2(t) + k \sigma_{SD}^2(t) + (1-k) \sigma_{RS}^2(t)\] @@ -83,7 +83,7 @@Part II: Yang and Zhang Volatility Estimato(\(\sigma_{YZ}\))
Part III: Correlation Factor (CF)
-Baltas and Kosowski’s correlation factor (CF) is a function of \(\bar{\rho}\), which is the average pairwise signed correlation of all portfolio constituents. The calculations are shown below: +Baltas and Kosowski's correlation factor (CF) is a function of \(\bar{\rho}\), which is the average pairwise signed correlation of all portfolio constituents. The calculations are shown below: \[CF(\bar{\rho}) = \sqrt{\frac{N}{1+(N-1)\bar{\rho}}\] \[\bar{\rho} = 2 \frac{\sum_{i=1}^N \sum_{j=i+1}^N X_i X_j \rho_{i,j}{N(N-1)}\] diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html index 80f9ba3..572eb95 100644 --- a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html @@ -1,3 +1,3 @@-The implementation of TSMOM-CF in the post-GFC period, January 2018 to September 2019, shows significant performance improvement over the basic TSMOM. The backtest of TSMOM-CF produces Sharpe ratio of 0.321, compared to TSMOM’s Sharpe ratio of -0.746 and SPY Sharpe ratio of 0.46. The exact TSMOM algorithm can be found in the strategy library. +The implementation of TSMOM-CF in the post-GFC period, January 2018 to September 2019, shows significant performance improvement over the basic TSMOM. The backtest of TSMOM-CF produces Sharpe ratio of 0.321, compared to TSMOM's Sharpe ratio of -0.746 and SPY Sharpe ratio of 0.46. The exact TSMOM algorithm can be found in the strategy library.
\ No newline at end of file From 8e513ede895cab4cff44a6f29725a2aa296c61cc Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Wed, 18 Sep 2019 17:58:28 -0700 Subject: [PATCH 083/215] Fixes Formula --- .../03 TSMOM-CF Theory.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html index 8057d58..9792a24 100644 --- a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html @@ -2,7 +2,7 @@ Baltas and Kosowski's modifications to the basic time-series momentum strategy can be summarized in the formula below: -\[r_{t,t+1}^{TSMOM-CF} = \frac{1}{N_t} \sum_{i=1}^{N_t} X_t^i \frac{\sigma_{P,tgt}{\sigma_t^i} CF(\bar{\rho}_t)r_{t,t+1}^i\] +\[r_{t,t+1}^{TSMOM-CF} = \frac{1}{N_t} \sum_{i=1}^{N_t} X_t^i \frac{\sigma_{P,tgt}}{\sigma_t^i} CF(\bar{\rho}_t)r_{t,t+1}^i\]where: @@ -86,7 +86,7 @@
Part III: Correlation Factor (CF)
Baltas and Kosowski's correlation factor (CF) is a function of \(\bar{\rho}\), which is the average pairwise signed correlation of all portfolio constituents. The calculations are shown below: \[CF(\bar{\rho}) = \sqrt{\frac{N}{1+(N-1)\bar{\rho}}\] -\[\bar{\rho} = 2 \frac{\sum_{i=1}^N \sum_{j=i+1}^N X_i X_j \rho_{i,j}{N(N-1)}\] +\[\bar{\rho} = 2 \frac{\sum_{i=1}^N \sum_{j=i+1}^N X_i X_j \rho_{i,j}}{N(N-1)}\]where: From 0c788deb2d33f1f9182f65ff1ecb79edb4caeff6 Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Thu, 19 Sep 2019 08:39:27 -0700 Subject: [PATCH 084/215] Update 03 TSMOM-CF Theory.html --- .../03 TSMOM-CF Theory.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html index 9792a24..cff2f81 100644 --- a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html @@ -85,7 +85,7 @@
Part II: Yang and Zhang Volatility Estimato(\(\sigma_{YZ}\))
Part III: Correlation Factor (CF)
Baltas and Kosowski's correlation factor (CF) is a function of \(\bar{\rho}\), which is the average pairwise signed correlation of all portfolio constituents. The calculations are shown below: -\[CF(\bar{\rho}) = \sqrt{\frac{N}{1+(N-1)\bar{\rho}}\] +\[CF(\bar{\rho}) = \sqrt{\frac{N}{1+(N-1)\bar{\rho}}}\] \[\bar{\rho} = 2 \frac{\sum_{i=1}^N \sum_{j=i+1}^N X_i X_j \rho_{i,j}}{N(N-1)}\]From 363b28750eaf96910b5464ef8342f5e767f2eb7b Mon Sep 17 00:00:00 2001 From: Daniel Chen <44457690+QilongChan@users.noreply.github.com> Date: Fri, 20 Sep 2019 15:12:54 -0700 Subject: [PATCH 085/215] Add Strategy of Price and Earnings Momentum --- .../01 Strategy Library.php | 12 +- .../01 Introduction.html | 11 ++ .../02 Method.html | 166 ++++++++++++++++++ .../03 Results.html | 9 + .../04 Algorithm.html | 6 + .../05 Reference.html | 5 + 6 files changed, 208 insertions(+), 1 deletion(-) create mode 100644 04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html create mode 100644 04 Strategy Library/271 Price and Earning Momentum/02 Method.html create mode 100644 04 Strategy Library/271 Price and Earning Momentum/03 Results.html create mode 100644 04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html create mode 100644 04 Strategy Library/271 Price and Earning Momentum/05 Reference.html diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index 1aef751..22cad2e 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -568,7 +568,17 @@ ], 'description' => "Stock selection strategy that calculates the unexpected earnings, standardizes the unexpected earnings, goes long on the top 5%, and rebalances the portfolio monthly.", 'tags' => 'Equities, Fundamental Factors, Earnings, Anomaly' - ] + ], + [ + 'name' => 'Price and Earnings Momentum', + 'link' => 'strategy-library/price-and-earnings-momentum', + 'sources' => [ + 'NYU' => 'http://papers.ssrn.com/sol3/papers.cfm?abstract_id=299107' + ], + 'description' => "A momentum strategy based on quarterly returns and earnings growth", + 'tags'=>'Momentum, Stocks, Universe Selection, Historical Data, Rolling Window' + + ] ]; ?> diff --git a/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html b/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html new file mode 100644 index 0000000..aa3ce63 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html @@ -0,0 +1,11 @@ +
+ In this tutorial, we will develop a strategy based on the price and earnings momentum effect of stocks. This strategy is derived from the paper "Momentum" by N.Jegadeesh and S.Titman. +
+ ++ N.Jegadeesh et al. describe price/return momentum as a tendency for stocks that perform well over a three to twelve month period to continue to perform well over a subsequent three to twelve month period. Similarly, stocks that perform poorly over a three to twelve month period have a tendency to continue to perform poorly. They describe earnings momentum as the tendency for stocks with high earnings per share (EPS) to continue to outperform stocks with low EPS. +
+ ++ Below, we will implement a quarterly-rebalanced stock strategy based on the price and earnings momentum. +
diff --git a/04 Strategy Library/271 Price and Earning Momentum/02 Method.html b/04 Strategy Library/271 Price and Earning Momentum/02 Method.html new file mode 100644 index 0000000..755688e --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/02 Method.html @@ -0,0 +1,166 @@ +Step 1: Select the coarse universe
++ We will use both a coarse selection filter and in a later step, a fine universe filter, to narrow down our universe of assets. Our coarse universe filter creates a set of stocks based on volume, price, and whether fundamental data on the stock exists. In this step we filter for the top 100 liquid equities with prices greater than $5. We also exclude the equities missing fundamental data because EPS is needed in the fine selection step. +
+ +++ ++def CoarseSelection(self, coarse): + ''' + Pick the top 100 liquid equities as the coarse-selected universe + ''' + # Before next rebalance time, just remain the current universe + if self.Time < self.nextRebalance: + return Universe.Unchanged + + # Sort the equities (prices > 5) by Dollar Volume descendingly + selectedByDollarVolume = sorted([x for x in coarse if x.Price > 5 and x.HasFundamentalData], + key = lambda x: x.DollarVolume, reverse = True) + + # Pick the top 100 liquid equities as the coarse-selected universe + return [x.Symbol for x in selectedByDollarVolume[:self.numOfCoarse]] ++Step 2: Calculate quarterly return and earnings growth
++ N.Jegadeesh et al. state price momentum and earnings momentum can be used as two indicators for trading. We will calculate for price momentum with the "GetQuarterlyReturn" method and for earnings momentum with the "GetEarningGrowth" method. +
++ "GetQuarterlyReturn" calculates price momentum for each symbol in our coarse universe and ranks each stock based on its quarterly return. First we request last quarter’s close price for all stocks. Then we calculate quarterly return by taking the delta of the first day’s close price and the last day’s close price. Finally, we store the symbols and their corresponding rankings by quarterly return in a dictionary in preparation for fine selection. +
+ ++++ def GetQuarterlyReturn(self, history): + ''' + Get the rank of securities based on their quarterly return from historical close prices + Return: dictionary + ''' + # Get quarterly returns for all symbols + # (The first row divided by the last row) + returns = history.iloc[0] / history.iloc[-1] + + # Transform them to dictionary structure + returns = returns.to_dict() + + # Get the rank of the returns (key: symbol; value: rank) + # (The symbol with the 1st quarterly return ranks the 1st, etc.) + ranked = sorted(returns, key = returns.get, reverse = True) + return {symbol: rank for rank, symbol in enumerate(ranked, 1)} +++ "GetEarningGrowth" calculates earnings momentum for each symbol in our coarse universe and ranks each stock based on its earnings growth. First we use a RollingWindow to store and update the BasicEPS to reflect quarterly earnings reports. A RollingWindow holds a set of the most recent entries of data. As we move from time t=0 forward, our rolling window will shuffle data further along to a different index until it leaves the window completely. The object in the window with index[0] refers to the most recent item. The length-1 in the window is the oldest object. +
+ ++ Our rolling window has a length of 2 so index[0] is the current EPS and index[1] is last quarter's EPS. We calculate earnings growth for each stock by taking the delta of this quarter’s EPS and last quarter’s EPS divided by last quarter’s EPS. Finally we rank each asset based on earnings growth. +
+++ ++ def GetEarningGrowth(self, fine): + ''' + Get the rank of securities based on their EPS growth + Return: dictionary + ''' + + # Earning Growth by symbol + egBySymbol = {} + for stock in fine: + + # Select the securities with EPS (> 0) + if stock.EarningReports.BasicEPS.ThreeMonths == 0: + continue + + # Add the symbol in the dict if not exist + if not stock.Symbol in self.epsBySymbol: + self.epsBySymbol[stock.Symbol] = RollingWindow[float](2) + + # Update the rolling window for each stock + self.epsBySymbol[stock.Symbol].Add(stock.EarningReports.BasicEPS.ThreeMonths) + + # If the rolling window is ready + if self.epsBySymbol[stock.Symbol].IsReady: + rw = self.epsBySymbol[stock.Symbol] + # Caculate the Earning Growth + egBySymbol[stock.Symbol] = (rw[0] - rw[1]) / rw[1] + + # Get the rank of the Earning Growth + ranked = sorted(egBySymbol, key = egBySymbol.get, reverse = True) + return {symbol: rank for rank, symbol in enumerate(ranked, 1)} ++Step 3: Select the fine universe
++ We use a fine selection filter in addition to a coarse selection filter to refine our asset selection based on corporate fundamental data. We can use both quarterly return and earnings growth from our two indicators to generate an average rank for each stock. Then we can go long on the top 10 and short the bottom 10. +
+ +++ ++ def FineSelection(self, fine): + ''' + Select securities based on their quarterly return and their earnings growth + ''' + symbols = [x.Symbol for x in fine] + + # Get the quarterly returns for each symbol + history = self.History(symbols, self.rebalanceDays, Resolution.Daily) + history = history.drop_duplicates().close.unstack(level = 0) + rankByQuarterReturn = self.GetQuarterlyReturn(history) + + # Get the earning growth for each symbol + rankByEarningGrowth = self.GetEarningGrowth(fine) + + # Get the sum of rank for each symbol and pick the top ones to long and the bottom ones to short + rankSumBySymbol = {key: rankByQuarterReturn.get(key, 0) + rankByEarningGrowth.get(key, 0) + for key in set(rankByQuarterReturn) | set(rankByEarningGrowth)} + + # Get 10 symbols to long and short respectively + sortedDict = sorted(rankSumBySymbol.items(), key = lambda x: x[1], reverse = True) + self.longSymbols = [x[0] for x in sortedDict[:10]] + self.shortSymbols = [x[0] for x in sortedDict[-10:]] + + return [x for x in symbols if str(x) in self.longSymbols + self.shortSymbols] ++Step 4: Rebalance quarterly
++ We choose to rebalance every quarter and use equal weights for the long and short positions of securities in our portfolio. +
+ ++\ No newline at end of file diff --git a/04 Strategy Library/271 Price and Earning Momentum/03 Results.html b/04 Strategy Library/271 Price and Earning Momentum/03 Results.html new file mode 100644 index 0000000..e0cab48 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/03 Results.html @@ -0,0 +1,9 @@ ++ def OnData(self, data): + ''' + Rebalance quarterly + ''' + # Do nothing until next rebalance + if self.Time < self.nextRebalance: + return + + # Liquidate the holdings if necessary + for holding in self.Portfolio.Values: + symbol = holding.Symbol + if holding.Invested and symbol.Value not in self.longSymbols + self.shortSymbols: + self.Liquidate(symbol, "Not Selected") + + # Open positions for the symbols with equal weights + count = len(self.longSymbols + self.shortSymbols) + if count == 0: + return + + # Enter long positions + for symbol in self.longSymbols: + self.SetHoldings(symbol, 1 / count) + + # Enter short positions + for symbol in self.shortSymbols: + self.SetHoldings(symbol, -1 / count) + + # Set next rebalance time + self.nextRebalance += timedelta(self.rebalanceDays) +++ Our backtest results in a Sharpe ratio of 0.59 while the SP500 Sharpe ratio is 0.8 during the same decade. This performance may be due to several factors: +
+
+ This tutorial shows us how to take advantage of the techniques of requesting historical data and using a RollingWindow. We hope the community can further develop strategies based on these techniques. + \ No newline at end of file diff --git a/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html b/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html new file mode 100644 index 0000000..65639b2 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html @@ -0,0 +1,6 @@ +- The number of stocks in our portfolio, 100, could be too low.
+- Equal weighting for all stocks may not fully capture the strength of higher ranking stocks.
+- Rebalancing quarterly may be too frequent for a momentum strategy in equities.
++ +diff --git a/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html b/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html new file mode 100644 index 0000000..8ce9247 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html @@ -0,0 +1,5 @@ ++ +++
From dd315de127685c40d99555d8c59f05e3c746c445 Mon Sep 17 00:00:00 2001 From: Xin Wei- + Momentum, N. Jegadeesh, S.Titman +
+Date: Fri, 20 Sep 2019 17:12:18 -0700 Subject: [PATCH 086/215] Fixed bug in copula pairs trading 03 - Part I - Copula Method 06 - Algorithm 05 - Summary (need to be changed after cointegration code is updated) --- .../03 Part I - Copula Method.html | 275 +++++++++++------- .../06 Algorithm.html | 2 +- 2 files changed, 166 insertions(+), 111 deletions(-) diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html index 9c26993..a16ea55 100755 --- a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html @@ -3,7 +3,7 @@ - We use the first 3 years of data to choose the best fitting copula and asset pair ("training formation period"). Next, we use a period of 5 years from 2011 to 2017 ("the trading period"), to execute the strategy. During the trading period we use a rolling 12 month window of data to get the copula parameters ("rolling formation period"). + We use the first 3 years of data to choose the best fitting copula and asset pair ("training formation period"). Next, we use a period of more than 9 years from January 2010 to September 2019 ("the trading period"), to execute the strategy. During the trading period we use a rolling 12 month window of data to get the copula parameters ("rolling formation period").
Step 1: Selecting the Paired Stocks
@@ -59,28 +59,42 @@2) Filter the trading pair with statistical correlation
-def _pair_selection(self): - - tick_syl = [["QQQ","XME","TNA","FAS","XLF","EWC","QLD"], - ["XLK","EWG","TLT","FAZ","XLU","EWA","QID"]] - logreturn={} - for i in range(2): - syl = [self.AddSecurity(SecurityType.Equity, x, Resolution.Daily).Symbol.Value for x in tick_syl[i]] - history = self.History(syl, self.lookbackdays,Resolution.Daily) - # generate the log return series of paired stocks - close = history['close'].unstack(level=0) - df_logreturn = (np.log(close) - np.log(close.shift(1))).dropna() - for j in tick_syl[i]: - logreturn[j] = df_logreturn[j] - # estimate coefficients of different correlation measures - tau_coef,pr_coef,sr_coef= [],[],[] - for i in range(len(tick_syl[i])): - tik_x, tik_y= logreturn[tick_syl[0][i]], logreturn[tick_syl[1][i]] - tau_coef.append(kendalltau(tik_x, tik_y)[0]) - pr_coef.append(pearsonr(tik_x, tik_y)[0]) - sr_coef.append(spearmanr(tik_x, tik_y)[0]) - index_max = tau_coef.index(max(tau_coef)) - self.ticker = [tick_syl[0][index_max],tick_syl[1][index_max]] +def PairSelection(self, date): + '''Selects the pair of stocks with the maximum Kendall tau value. + It's called on first day of each month''' + + if date.month == self.month: + return Universe.Unchanged + + symbols = [ Symbol.Create(x, SecurityType.Equity, Market.USA) + for x in [ + "QQQ", "XLK", + "XME", "EWG", + "TNA", "TLT", + "FAS", "FAZ", + "XLF", "XLU", + "EWC", "EWA", + "QLD", "QID" + ] ] + + logreturns = self._get_historical_returns(symbols, self.lookbackdays) + + tau = 0 + for i in range(0, len(symbols), 2): + + x = logreturns[str(symbols[i])] + y = logreturns[str(symbols[i+1])] + + # Estimate Kendall rank correlation for each pair + tau_ = kendalltau(x, y)[0] + + if tau > tau_: + continue + + tau = tau_ + self.pair = symbols[i:i+2] + + return [x.Value for x in self.pair]Step 3: Estimating Copula Parameters
def _parameter(self, family, tau): - if family == 'clayton': - return 2*tau/(1-tau) - elif family == 'frank': - # debye = quad(integrand, sys.float_info.epsilon, theta)[0]/theta is first order Debye function - # frank_fun is the squared difference - # Minimize the frank_fun would give the parameter theta for the frank copula - integrand = lambda t: t/(np.exp(t)-1) - frank_fun = lambda theta: ((tau - 1)/4.0 - (quad(integrand, sys.float_info.epsilon, theta)[0]/theta - 1)/theta)**2 - return minimize(frank_fun, 4, method='BFGS', tol=1e-5).x - elif family == 'gumbel': - return 1/(1-tau)+ ''' Estimate the parameters for three kinds of Archimedean copulas + according to association between Archimedean copulas and the Kendall rank correlation measure + ''' + + if family == 'clayton': + return 2 * tau / (1 - tau) + + elif family == 'frank': + + ''' + debye = quad(integrand, sys.float_info.epsilon, theta)[0]/theta is first order Debye function + frank_fun is the squared difference + Minimize the frank_fun would give the parameter theta for the frank copula + ''' + + integrand = lambda t: t / (np.exp(t) - 1) # generate the integrand + frank_fun = lambda theta: ((tau - 1) / 4.0 - (quad(integrand, sys.float_info.epsilon, theta)[0] / theta - 1) / theta) ** 2 + + return minimize(frank_fun, 4, method='BFGS', tol=1e-5).x + + elif family == 'gumbel': + return 1 / (1 - tau) +Step 4: Selecting the Best Fitting Copula
@@ -183,18 +209,23 @@Step 4: Selecting the Best Fitting Copula
@@ -202,22 +233,6 @@def _lpdf_copula(self, family, theta, u, v): - ''' estimate the log probability density function of three kinds of Archimedean copulas ''' - if family == 'clayton': - pdf = (theta+1) * ((u**(-theta)+v**(-theta)-1)**(-2-1/theta)) * (u**(-theta-1)*v**(-theta-1)) - elif family == 'frank': - num = -theta * (np.exp(-theta)-1) * (np.exp(-theta*(u+v))) - denom = ((np.exp(-theta*u)-1) * (np.exp(-theta*v)-1) + (np.exp(-theta)-1))**2 - pdf = num/denom - elif family == 'gumbel': - A = (-np.log(u))**theta + (-np.log(v))**theta - c = np.exp(-A**(1/theta)) - pdf = c * (u*v)**(-1) * (A**(-2+2/theta)) * ((np.log(u)*np.log(v))**(theta-1)) * (1+(theta-1)*A**(-1/theta)) - return np.log(pdf) + '''Estimate the log probability density function of three kinds of Archimedean copulas + ''' + + if family == 'clayton': + pdf = (theta + 1) * ((u ** (-theta) + v ** (-theta) - 1) ** (-2 - 1 / theta)) * (u ** (-theta - 1) * v ** (-theta - 1)) + + elif family == 'frank': + num = -theta * (np.exp(-theta) - 1) * (np.exp(-theta * (u + v))) + denom = ((np.exp(-theta * u) - 1) * (np.exp(-theta * v) - 1) + (np.exp(-theta) - 1)) ** 2 + pdf = num / denom + + elif family == 'gumbel': + A = (-np.log(u)) ** theta + (-np.log(v)) ** theta + c = np.exp(-A ** (1 / theta)) + pdf = c * (u * v) ** (-1) * (A ** (-2 + 2 / theta)) * ((np.log(u) * np.log(v)) ** (theta - 1)) * (1 + (theta - 1) * A ** (-1 / theta)) + + return np.log(pdf)Step 4: Selecting the Best Fitting Copula
The copula that provides the best fit is the one that corresponds to the lowest value of AIC criterion. The chosen pair is "QQQ" & "XLK". -- --self.family = ['clayton', 'frank', 'gumbel'] -tau = kendalltau(x, y)[0] # estimate Kendall'rank correlation -AIC ={} # generate a dict with key being the copula family, value = [theta, AIC] -for i in self.family: - lpdf = [self._lpdf_copula(i, self._parameter(i,tau), x, y) for (x, y) in zip(u, v)] - # Replace nan with zero and inf with finite numbers in lpdf list - lpdf = np.nan_to_num(lpdf) - loglikelihood = sum(lpdf) - AIC[i] = [self._parameter(i,tau), -2*loglikelihood + 2] - # choose the copula with the minimum AIC - self.copula = min(AIC.items(), key = lambda x: x[1][1])[0] --Step 5: Generating the Trading Signals
@@ -271,20 +286,57 @@
Step 5: Generating the Trading Signals
-@@ -294,39 +346,42 @@def _set_signal(self): - history = self.History(self.ticker, self.lookbackdays,Resolution.Daily) - # generate the log return series of paired stocks - close = history['close'].unstack(level=0) - logreturn = (np.log(close) - np.log(close.shift(1))).dropna() - x, y = logreturn[self.ticker[0]], logreturn[self.ticker[1]] - # estimate Kendall'rank correlation each trading day - tau = kendalltau(x, y)[0] - # etstimate the copula parameter: theta - self.theta = self._parameter(self.copula, tau) - # simulate the empirical distribution function for returns of two paired stocks - self.ecdf_x, self.ecdf_y = ECDF(x), ECDF(y) - # run linear regression over the two history return series - self.coef = stats.linregress(x,y).slope +def SetSignal(self, slice): + '''Computes the mispricing indices to generate the trading signals. + It's called on first day of each month''' + + if self.Time.month == self.month: + return + + ## Compute the best copula + + # Pull historical log returns used to determine copula + logreturns = self._get_historical_returns(self.pair, self.numdays) + x, y = logreturns[str(self.pair[0])], logreturns[str(self.pair[1])] + + # Convert the two returns series to two uniform values u and v using the empirical distribution functions + ecdf_x, ecdf_y = ECDF(x), ECDF(y) + u, v = [ecdf_x(a) for a in x], [ecdf_y(a) for a in y] + + # Compute the Akaike Information Criterion (AIC) for different copulas and choose copula with minimum AIC + tau = kendalltau(x, y)[0] # estimate Kendall'rank correlation + AIC ={} # generate a dict with key being the copula family, value = [theta, AIC] + + for i in ['clayton', 'frank', 'gumbel']: + param = self._parameter(i, tau) + lpdf = [self._lpdf_copula(i, param, x, y) for (x, y) in zip(u, v)] + # Replace nan with zero and inf with finite numbers in lpdf list + lpdf = np.nan_to_num(lpdf) + loglikelihood = sum(lpdf) + AIC[i] = [param, -2 * loglikelihood + 2] + + # Choose the copula with the minimum AIC + self.copula = min(AIC.items(), key = lambda x: x[1][1])[0] + + ## Compute the signals + + # Generate the log return series of the selected trading pair + logreturns = logreturns.tail(self.lookbackdays) + x, y = logreturns[str(self.pair[0])], logreturns[str(self.pair[1])] + + # Estimate Kendall'rank correlation + tau = kendalltau(x, y)[0] + + # Estimate the copula parameter: theta + self.theta = self._parameter(self.copula, tau) + + # Simulate the empirical distribution function for returns of selected trading pair + self.ecdf_x, self.ecdf_y = ECDF(x), ECDF(y) + + # Run linear regression over the two history return series and return the desired trading size ratio + self.coef = stats.linregress(x,y).slope + + self.month = self.Time.monthStep 5: Generating the Trading Signals
-diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html index 038e110..21099b5 100755 --- a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html @@ -4,7 +4,7 @@def OnData(self,data): - for i in self.syl: - self.price_list[i].append(self.Portfolio[i].Price) - # compute today's log return of 2 stocks - if len(self.price_list[self.syl[0]]) < 2 or len(self.price_list[self.syl[1]]) < 2: return - else: - return_x = np.log(float(self.price_list[self.syl[0]][-1]/self.price_list[self.syl[0]][-2])) - return_y = np.log(float(self.price_list[self.syl[1]][-1]/self.price_list[self.syl[1]][-2])) - # Convert the two returns to uniform values u and v using the empirical distribution functions - u_value = self.ecdf_x(return_x) - v_value = self.ecdf_y(return_y) - # Compute the mispricing indices for u and v by using estimated copula - self._misprice_index(self.copula, self.theta, u_value, v_value) - quantity = self.CalculateOrderQuantity(self.syl[1],0.4) - if self.MI_u_v < self.floor_CL and self.MI_v_u > self.cap_CL: - if self.Portfolio[self.syl[0]].Quantity < 0 and self.Portfolio[self.syl[1]].Quantity > 0: - self.Liquidate(self.syl[0]) - self.Liquidate(self.syl[1]) - quantity = self.CalculateOrderQuantity(self.syl[1],0.4) - self.Sell(self.syl[1], 1 * quantity ) - self.Buy(self.syl[0], self.coef * quantity) - else: - self.Sell(self.syl[1], 1 * quantity ) - self.Buy(self.syl[0], self.coef * quantity) - elif self.MI_u_v > self.cap_CL and self.MI_v_u < self.floor_CL: - if self.Portfolio[self.syl[0]].Quantity > 0 and self.Portfolio[self.syl[1]].Quantity < 0: - self.Liquidate(self.syl[0]) - self.Liquidate(self.syl[1]) - quantity = self.CalculateOrderQuantity(self.syl[1],0.4) - self.Buy(self.syl[1], 1 * quantity ) - self.Sell(self.syl[0], self.coef * quantity) - else: - self.Buy(self.syl[1], 1 * quantity ) - self.Sell(self.syl[0], self.coef * quantity) +def OnData(self, slice): + '''Main event handler. Implement trading logic.''' + + self.SetSignal(slice) # only executed at first day of each month + + # Daily rebalance + if self.Time.day == self.day: + return + + long, short = self.pair[0], self.pair[1] + + # Update current price to trading pair's historical price series + for kvp in self.Securities: + symbol = kvp.Key + if symbol in self.pair: + price = kvp.Value.Price + self.window[symbol].append(price) + + if len(self.window[long]) < 2 or len(self.window[short]) < 2: + return + + # Compute the mispricing indices for u and v by using estimated copula + MI_u_v, MI_v_u = self._misprice_index() + + # Placing orders: if long is relatively underpriced, buy the pair + if MI_u_v < self.floor_CL and MI_v_u > self.cap_CL: + + self.SetHoldings(short, -self.weight_v, False, f'Coef: {self.coef}') + self.SetHoldings(long, self.weight_v * self.coef * self.Portfolio[long].Price / self.Portfolio[short].Price) + + # Placing orders: if short is relatively underpriced, sell the pair + elif MI_u_v > self.cap_CL and MI_v_u < self.floor_CL: + + self.SetHoldings(short, self.weight_v, False, f'Coef: {self.coef}') + self.SetHoldings(long, -self.weight_v * self.coef * self.Portfolio[long].Price / self.Portfolio[short].Price) + + self.day = self.Time.dayFrom d8340fa8d6308be805b02b7715c8f1eb584dbb33 Mon Sep 17 00:00:00 2001 From: wyiyun95- +Date: Wed, 25 Sep 2019 17:27:12 -0700 Subject: [PATCH 087/215] Mandarin Translation (Strategy Library) 03, 100 full 07 partial section 01-03 --- .../01 \346\221\230\350\246\201.cn.html" | 7 + ...7\263\273\346\241\206\346\236\266.cn.html" | 71 ++++ ...0\201\224\347\263\273\346\263\225.cn.html" | 332 ++++++++++++++++++ ...5\215\217\346\225\264\346\263\225.cn.html" | 47 +++ .../05 \346\200\273\347\273\223.cn.html" | 35 ++ .../06 \347\256\227\346\263\225.cn.html" | 19 + ...0\200\203\346\226\207\347\214\256.cn.html" | 32 ++ .../01 \346\221\230\350\246\201.cn.html" | 11 + .../02 \347\256\200\344\273\213.cn.html" | 115 ++++++ .../03 \346\226\271\346\263\225.cn.html" | 252 +++++++++++++ .../01 \347\256\200\344\273\213.cn.html" | 3 + .../02 \346\226\271\346\263\225.cn.html" | 117 ++++++ .../03 \347\256\227\346\263\225.cn.html" | 6 + .../04 \346\235\245\346\272\220.cn.html" | 5 + 14 files changed, 1052 insertions(+) create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" new file mode 100644 index 0000000..e06b3ac --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" @@ -0,0 +1,7 @@ + + 在本研究中,我们研究了两种配对交易方法,并对结果进行了比较。配对交易涉及到对两种高度相关资产之间依附结构的研究。在假定会出现平均值回复的情况下,当出现价格差异时,多头或空头头寸将反向入市。一般情况下,资产价格分布是采用收益率序列高斯分布来建模的,但联合正态分布可能无法捕捉到股票对价格依赖性的一些关键特征(如尾部相关性)。我们的研究使用了联系理论来识别这些交易机会。 +
+ ++ 我们将从数学的角度讨论联系的基本框架,并解释如何在配对交易中应用这一方法。算法的实现基于Stander Y, Marais D, BothaI(2013)的论文带有联系函数的交易策略。根据Hanson T A,Hall J R.(2012)的论文统计套利交易策略和高频交易,我们将联系配对交易策略的性能与协整配对交易方法进行了比较。协整法假设配对股票之间存在协整关系,可以识别有利可图的交易机会。实证结果表明,与传统的配对交易策略相比,基于联系的策略更容易获益。 +
diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" new file mode 100644 index 0000000..5fdb07a --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" @@ -0,0 +1,71 @@ +1.定义
++ 给定一个随机向量\(X_1,X_2,...,X_p\),其边际累积分布函数(CDF)为\(F_i(x) = P[X_i \leq x]\)。通过对每个分量进行概率积分变换,\((U_1,U_2,...,U_p) = (F_1(X_1),F_2(X_2),...,F_p(X_p))\)的边际分布是一致的(from Wikipedia)。然后将\(X_1,X_2,...,X_p\)的联系定义为\(U_1,U_2,...,U_p\)的联合累积分布函数,其中每个变量U的边际分布均为\(U(0,1)\)。 +
+ +\[C(u_1,u_2,...,u_p) = P[U_1\leq u_1,U_2\leq u_2,..., U_1\leq u_1]\] + ++ 联系函数包含了所有边际分布的依赖性特征,能够更好地利用概率描述变量之间的线性和非线性关系。它们使边际分布能够彼此独立地建模,并且不需要对边际分布的联合行为进行假设。 +
+ +2.二元联系
++ 由于本研究的重点是二元联系 (对于配对交易,我们有2个随机变量),因此指定了一些概率性质。 + 设X和Y为两个随机变量,累积概率函数为\(F_1(X)\)和\(F_2(Y)\)。\(U=F_1(X), V=F_2(Y)\)是均匀分布的。则联系函数为\(C(u,v)=P(U\leq u,V\leq v)\)。取U和V联系函数的偏导数,所得到条件分布函数如下: +
+ +\[P(U\leq u\mid V= v)=\frac{\partial C(u,v)}{\partial v}\] +\[P(V\leq v\mid U= u)=\frac{\partial C(u,v)}{\partial u}\] + +3.阿基米德联系
++ 除了高斯假设之外,还有许多联系函数可以用来描述变量之间的依附结构。这里我们将重点讨论其中的三种,它们分别是来自阿基米德分类中的Clayton,Gumbel和Frank。 + 阿基米德联系是基于单变量分布函数的Laplace变换参数φ。它们是由特定的生成器函数\(\phi\)创建的。 +
+ +\[C(u,v)=\phi^{-1}( \phi(u),\phi(v) )\] + ++ 概率密度函数为: +
+ +\[c(u,v)=\phi_{(2)}^{-1}(\phi(u)+\phi(v))\phi^{'}(u)\phi^{'}(v)\] + ++ 其中,\(\phi_{(2)}^{-1}\)是生成器函数二次导数的倒数。 +
+ ++ +
+ + ++ + + +联系 +联系函数C(u,v;θ) ++ +Clayton联系公式 +\[(u^{-\theta}+v^{-\theta}-1)^{-1/\theta}\] ++ +Gumbel联系公式 +\[exp(-[(-\ln u)^{\theta}+(-\ln v)^{\theta}]^{1/\theta})\] ++ + +Frank联系公式 +\[-\theta^{-1}\ln\left[1+\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)}{exp(-\theta)-1}\right]\] ++ Genest和MacKay证明了在双变量情况下联系生成器函数与Kendall秩相关tau之间的关系为: +
+ +\[\tau=1+4\int_{0}^{1} \frac{\partial \phi (v)}{\partial \phi^{'}(v)}dv\] + ++ 因此,只要知道Kendall的tau秩测量值和生成器函数,就可以很容易地估算出阿基米德联系函数中的参数。请参照步骤3查看公式。 +
diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" new file mode 100644 index 0000000..920e147 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" @@ -0,0 +1,332 @@ ++ 交易所交易基金(ETF)有许多不同的股票板块和资产类别,为我们提供了各种不同的配对交易选择。我们的数据集包括在纳斯达克或纽约证券交易所进行基金买卖交易的每日数据。 +
+ ++ 我们使用前3年的数据来选择联系和资产配对的最佳组合(“训练形成期”)。接下来,我们使用2011年至2017年的5年时间(“交易期”)来执行策略。在交易期间,我们使用12个月的滚动窗口数据来获取联系参数(“滚动形成期”)。 +
+ +步骤1:选择配对股票
++ 配对选择的一般方法基于基础分析和统计分析。 +
+ +1)收集可能相关的配对
++ 任何随机对都可以相互关联。这些变量之间可能并没有因果关系,而是由于巧合或存在某种第三种不可见因素而产生了虚假关系。因此,对于我们来说重要的是从一些有共同点的证券开始。为了说明这一点,我们选择了一些在纳斯达克或纽交所交易中流动性最强的基金。这些潜在相关配对之间的关系可能是由于指数、行业或资产类别重叠所造成的。例如,QQQ和XLK就是市场领先指数的两支基金。 +
+ +2)采用统计相关性来筛选交易配对
+ ++ 为了确定分析中所包含的股票配对,将要对预先选择基金对之间的相关性进行分析。以下是我们在统计中常用的三种相关指标: +
+ ++ +
+ + ++ + + +相关测量技术 ++ +Pearson相关系数 +\[r = \frac{\sum (x_i- \bar{x})(y_i- \bar{y})}{\sqrt{\sum (x_i- \bar{x})^2)\sum (y_i- \bar{y})^2)} }\] ++ +Kendall秩相关系数 +\[\tau=\frac{n_c-n_d}{\frac{1}{2}n(n-1)}\] ++ +Spearman秩相关系数 +\[\rho=1-\frac{6\sum d_i^2}{n(n^2-1)}\] ++ + +\(n\) = 每个数据集中的值数 +\(n_c\) = 一致数 +\(n_d\) = 不一致数 +\(d_i\) = \(x_i\)和\(y_i\)对应值秩之间的差异。 ++ 我们可以在Python中使用SciPy统计值程序库中的函数来获得这些系数。利用训练形成期间的每日股价收益率来计算相关系数。我们可以发现这三种相关性技术对配对基金给出了相同的相关系数排名。Pearson相关性假设两个变量都是正态分布的。因此,本文采用Kendall秩作为相关性测量法,并选择具有最高Kendall秩相关性的配对来进行配对交易。通过使用历史函数并将价格转换为对数收益序列,我们可以得出基金对的每日历史收盘价。设Px和Py为股票x和股票y的历史股价序列,则基金配对的对数收益为: +
+ +\[R_x = ln(\frac{P_{x,t}}{P_{x,t-1}}), R_y = ln(\frac{P_{y,t}}{P_{y,t-1}})\] t = 1,2,...,n,其中n是价格数据的数量 + ++ ++ +def _pair_selection(self): + + tick_syl = [["QQQ","XME","TNA","FAS","XLF","EWC","QLD"], + ["XLK","EWG","TLT","FAZ","XLU","EWA","QID"]] + logreturn={} + for i in range(2): + syl = [self.AddSecurity(SecurityType.Equity, x, Resolution.Daily).Symbol.Value for x in tick_syl[i]] + history = self.History(syl, self.lookbackdays,Resolution.Daily) + # 生成配对股票的对数收益序列 + close = history['close'].unstack(level=0) + df_logreturn = (np.log(close) - np.log(close.shift(1))).dropna() + for j in tick_syl[i]: + logreturn[j] = df_logreturn[j] + # 不同相关性测量法的估计系数 + tau_coef,pr_coef,sr_coef= [],[],[] + for i in range(len(tick_syl[i])): + tik_x, tik_y= logreturn[tick_syl[0][i]], logreturn[tick_syl[1][i]] + tau_coef.append(kendalltau(tik_x, tik_y)[0]) + pr_coef.append(pearsonr(tik_x, tik_y)[0]) + sr_coef.append(spearmanr(tik_x, tik_y)[0]) + index_max = tau_coef.index(max(tau_coef)) + self.ticker = [tick_syl[0][index_max],tick_syl[1][index_max]] ++步骤2:估算对数收益的边缘分布
++ 为了构造联系,我们需要将对数收益序列Rx和Ry转化为两个均匀分布的值u和v。这可以通过估计Rx和Ry的边际分布函数,并将回归值代入一个分布函数来实现。由于我们对两个对数收益序列的分布没有做任何假设,所以在这里我们会使用经验分布函数来接近边际分布F1(Rx)F1(Rx)和F2(Ry)F2(Ry)。统计模型库中的Python 经验累积分布(ECDF)函数将经验性的累积分布函数(CDF)作为阶梯函数提供给我们。 +
+步骤3:估算联系参数
++ 正如上文所讨论的,对于每个阿基米德联系来说,我们通过联系与依附测度Kendall tau之间的关系来估算联系参数。 +
+ ++ +
+ ++ + + +联系 +Kendall's tau +参数θ ++ +Clayton联系 +\[\frac{\theta}{\theta +2}\] +\[\theta=2\tau(1-\tau)^{-1}\] ++ +Gumbel联系 +\[1-\theta^{-1}\] +\[\theta=(1-\tau)^{-1}\] ++ +Frank联系 +\[1+4[D_1(\theta)-1]/\theta\] +\[arg min\left(\frac{\tau-1}{4}-\frac{D_1(\theta)-1}{\theta}\right)^2\] ++ + +\[D_1(\theta)=\frac{1}{\theta}\int_{0}^{\theta}\frac{t}{exp(t)-1}dt \] ++ ++ +def _parameter(self, family, tau): + if family == 'clayton': + return 2*tau/(1-tau) + elif family == 'frank': + # debye = quad(被积函数,sys.float_info.epsilon, theta)[0]/theta是一阶Debye函数 + # frank_fun是平方差 + # 将frank_fun最小化可以得出直接联系的参数theta + integrand = lambda t: t/(np.exp(t)-1) + frank_fun = lambda theta: ((tau - 1)/4.0 - (quad(integrand, sys.float_info.epsilon, theta)[0]/theta - 1)/theta)**2 + return minimize(frank_fun, 4, method='BFGS', tol=1e-5).x + elif family == 'gumbel': + return 1/(1-tau)+步骤4:选择最适合的联系
++ 得到联系函数的参数估计值后,我们使用AIC准则来选择最适合算法初始化的联系。 +
+ +\[AIC=-2L(\theta)+2k\] + ++ 其中\(L(\theta)=\sum_{t=1}^T\log c(u_t,v_t;\theta)\)是对数似然函数,k是参数的数量,在这里k=1。 +
+ ++ 各联系函数的密度函数如下: +
+ ++ +
+ ++ + + +联系 +密度函数c(u,v;θ) ++ +Clayton联系 +\[(\theta+1)(u^{-\theta}+v^{-\theta}-1)^{-2-1/\theta}u^{-\theta-1}v^{-\theta-1}\] ++ +Gumbel联系 +\[C(u,v;\theta)(uv)^{-1}A^{-2+2/\theta}[(\ln u)(\ln v)]^{\theta -1}[1+(\theta-1)A^{-1/\theta}]\] ++ +Frank联系 +\[\frac{-\theta(exp(-\theta)-1)(exp(-\theta(u+v)))}{((exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1))^2}\] ++ + +\[A=(-\ln u)^{\theta}+(-\ln v)^{\theta}\] ++ ++ +def _lpdf_copula(self, family, theta, u, v): + ''' estimate the log probability density function of three kinds of Archimedean copulas ''' + if family == 'clayton': + pdf = (theta+1) * ((u**(-theta)+v**(-theta)-1)**(-2-1/theta)) * (u**(-theta-1)*v**(-theta-1)) + elif family == 'frank': + num = -theta * (np.exp(-theta)-1) * (np.exp(-theta*(u+v))) + denom = ((np.exp(-theta*u)-1) * (np.exp(-theta*v)-1) + (np.exp(-theta)-1))**2 + pdf = num/denom + elif family == 'gumbel': + A = (-np.log(u))**theta + (-np.log(v))**theta + c = np.exp(-A**(1/theta)) + pdf = c * (u*v)**(-1) * (A**(-2+2/theta)) * ((np.log(u)*np.log(v))**(theta-1)) * (1+(theta-1)*A**(-1/theta)) + return np.log(pdf) +++ 所提供最适合的联系应对应于AIC准则的最低值。所选择的配对是“QQQ”和“XLK”。 +
+ ++ ++ + +self.family = ['clayton', 'frank', 'gumbel'] +tau = kendalltau(x, y)[0] # 估算Kendall秩相关 +AIC ={} # 生成一个关键字为联系系列的字典,值 = [theta, AIC] +for i in self.family: + lpdf = [self._lpdf_copula(i, self._parameter(i,tau), x, y) for (x, y) in zip(u, v)] + # 在lpdf列表中用零替换非数字,用有限数目替换无穷大 + lpdf = np.nan_to_num(lpdf) + loglikelihood = sum(lpdf) + AIC[i] = [self._parameter(i,tau), -2*loglikelihood + 2] + # 选择AIC最小的联系 + self.copula = min(AIC.items(), key = lambda x: x[1][1])[0] ++步骤5:生成交易信号
++ 联系函数中包含了两个收益序列依附结构的所有信息。根据Stander Y、Marais D和Botha I,在有联系的交易策略中,使用适合联系推导出\(C(v\mid u)\)和\(C(u\mid v)\)条件边际分布函数的置信区间,即错误定价指数。当市场观察值处于置信区间之外时,表明配对交易机会是可用的。在这里,我们选取95%作为置信区间上边际,5%作为置信区间下边际。置信水平的选择是基于本文的反测试分析,该分析表明,使用95%的置信水平应该可以确定适当的交易机会。 +
+ ++ 将股票X、股票Y的当前收益设为\(R_x, R_y\),我们可以将“错误定价指数”定义为: +
+ +\[MI_{X|Y}=P(U\leq u\mid V\leq v)=\frac{\partial C(u,v)}{\partial v}\] + +\[MI_{Y|X}=P(V\leq v\mid U\leq u)=\frac{\partial C(u,v)}{\partial u}\] + ++ 关于进一步的数学证明,请参考Xie W和Wu Y的《以联系为基础的配对交易策略》。通过表1中联系函数的偏导数,可以推导出二元联系的条件概率公式。结果如下: +
++Gumbel联系 +
+\[C(v\mid u)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln u)^{\theta-1}\frac{1}{u}\] + +\[C(u\mid v)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln v)^{\theta-1}\frac{1}{v}\] + ++ Clayton联系 +
+ +\[C(v\mid u)=u^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] + +\[C(u\mid v)=v^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] + ++ Frank联系 +
+ +\[C(v\mid u)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta v)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)} \] + +\[C(u\mid v)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta u)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)} \] + ++ 在选择交易配对和最合适的联系后,我们采取下列步骤进行交易。请注意,我们在每个月的第一天使用过去12个月的每日数据来实施步骤1、2、3、4,这意味着我们的经验分布函数和联系参数theta估值会每月更新一次。在每月总结中: +
+ ++
+ +- 在12个月的滚动形成期内,使用日收盘价计算这对基金的每日对数收益,然后计算Kendall秩的相关性。
+- 估算X和Y对数收益的边际分布函数,分别为ecdf_x和ecdf_y。
+- 将Kendall tau代入联系参数估计函数,得到theta的值。
+- 对两个价格系列进行线性回归。这个系数用来决定股票X和股票Y的买卖数量。例如,如果系数是2,每买入或卖出一股X,就买入或卖出2股Y。
++ ++ +def _set_signal(self): + history = self.History(self.ticker, self.lookbackdays,Resolution.Daily) + # 生成配对股票的对数收益序列 + close = history['close'].unstack(level=0) + logreturn = (np.log(close) - np.log(close.shift(1))).dropna() + x, y = logreturn[self.ticker[0]], logreturn[self.ticker[1]] + # 估算每个交易日的Kendall秩相关 + tau = kendalltau(x, y)[0] + # 估算联系参数:theta + self.theta = self._parameter(self.copula, tau) + # 模拟两对股票收益的经验分布函数 + self.ecdf_x, self.ecdf_y = ECDF(x), ECDF(y) + # 对两个历史收益序列进行线性回归 + self.coef = stats.linregress(x,y).slope +++ 最后,在交易期间,我们每天使用经验分布函数ecdf_x和ecdf_y将当天的收益转换为u和v。然后,利用估算的联系C,在每个交易日计算两个错误定价指标。\(MI_{Y|X}<0.05\)和\(MI_{X|Y}>0.95\)的日子,算法构建了X的空头头寸和Y的多头头寸。\(MI_{Y|X}>0.95\)且\(MI_{X|Y}<0.05\)时,构建Y的空头头寸和X的多头头寸。 +
+ ++ +diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" new file mode 100644 index 0000000..93cb5d9 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" @@ -0,0 +1,47 @@ +def OnData(self,data): + for i in self.syl: + self.price_list[i].append(self.Portfolio[i].Price) + # 计算两支股票的当天对数收益 + if len(self.price_list[self.syl[0]]) < 2 or len(self.price_list[self.syl[1]]) < 2: return + else: + return_x = np.log(float(self.price_list[self.syl[0]][-1]/self.price_list[self.syl[0]][-2])) + return_y = np.log(float(self.price_list[self.syl[1]][-1]/self.price_list[self.syl[1]][-2])) + # 使用经验分布函数将两种收益转换为统一值u和v + u_value = self.ecdf_x(return_x) + v_value = self.ecdf_y(return_y) + # 用估算联系来计算u和v的错误定价指数 + self._misprice_index(self.copula, self.theta, u_value, v_value) + quantity = self.CalculateOrderQuantity(self.syl[1],0.4) + if self.MI_u_v < self.floor_CL and self.MI_v_u > self.cap_CL: + if self.Portfolio[self.syl[0]].Quantity < 0 and self.Portfolio[self.syl[1]].Quantity > 0: + self.Liquidate(self.syl[0]) + self.Liquidate(self.syl[1]) + quantity = self.CalculateOrderQuantity(self.syl[1],0.4) + self.Sell(self.syl[1], 1 * quantity ) + self.Buy(self.syl[0], self.coef * quantity) + else: + self.Sell(self.syl[1], 1 * quantity ) + self.Buy(self.syl[0], self.coef * quantity) + elif self.MI_u_v > self.cap_CL and self.MI_v_u < self.floor_CL: + if self.Portfolio[self.syl[0]].Quantity > 0 and self.Portfolio[self.syl[1]].Quantity < 0: + self.Liquidate(self.syl[0]) + self.Liquidate(self.syl[1]) + quantity = self.CalculateOrderQuantity(self.syl[1],0.4) + self.Buy(self.syl[1], 1 * quantity ) + self.Sell(self.syl[0], self.coef * quantity) + else: + self.Buy(self.syl[1], 1 * quantity ) + self.Sell(self.syl[0], self.coef * quantity) +++ 对于协整配对交易法,我们选择了相同的基金对“GLD”和“DGL”。不需要选择联系函数,因此只有12个月的滚动形成周期。交易期为5年,从2011年1月到2017年5月。 +
+ +步骤1:生成价差序列
++ 在每个月月初,我们使用每日收盘价生成两支基金的对数价格序列。然后基于对数价格序列数据,采用回归分析法对价差序列进行估算。对于股票X和Y,我们对对数价格序列进行线性回归,得到系数β。 +
+ +\[spread_t=\log(price_t^y)-\beta \log(price_t^x)\] + +步骤2:计算阈值
+ ++ 在本文中,利用滚动形成期价差的标准差,为交易策略设定了两个标准差的阈值。 +
+ ++ ++ +price_x = pd.Series([float(i.Close) for i in self.symbols[0].hist_window], + index = [i.Time for i in self.symbols[0].hist_window]) + +price_y = pd.Series([float(i.Close) for i in self.symbols[1].hist_window], + index = [i.Time for i in self.symbols[1].hist_window]) +if len(price_x) < 250: return +spread = self.regr(np.log(price_x), np.log(price_y)) +mean = np.mean(spread) +std = np.std(spread) +ratio = floor(self.Portfolio[self.symbols[1]].Price / self.Portfolio[self.symbols[0]].Price) +if spread[-1] > mean + self.threshold * std: + if not self.Portfolio[self.symbols[0]].Quantity > 0 and not self.Portfolio[self.symbols[0]].Quantity < 0: + self.Sell(self.symbols[1], 100) + self.Buy(self.symbols[0], ratio * 100) + +elif spread[-1] < mean - self.threshold * std: + if not self.Portfolio[self.symbols[0]].Quantity < 0 and not self.Portfolio[self.symbols[0]].Quantity > 0: + self.Sell(self.symbols[0], 100) + self.Buy(self.symbols[1], ratio * 100) +else: + self.Liquidate() ++步骤3:设置交易信号
++ 在每个交易日,只要价差偏离平均值超过两个标准差,我们就进入交易。换句话说,我们在价差平均值+2*std的当天构建X的空多头寸和Y的多头头寸。当价差<平均值-2*std时,我们在当天构建Y的空多头寸和X的多头头寸。如果价差恢复到均衡水平(定义为偏离零价差小于标准差的一半),就会退出交易。平均值和标准偏差的值从滚动形成周期开始计算,每月更新一次。 +
diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" new file mode 100644 index 0000000..27fcc84 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" @@ -0,0 +1,35 @@ ++ 配对交易的最终目的是通过平均值回归来捕捉两种相关资产的价格差异。我们的结果表明,配对交易的联系方法要优于传统的协整方法,因为联系法基于依附结构的概率,而协整法则依赖于正常定价的简单线性回归方差。通过对联系法性能的测试,发现联系法对启动参数的敏感性较低。由于协整方法依赖于标准分布,基金对的波动性较小,交易机会也较少。 +
+ ++ +
+ ++ + + +方法 +交易 +利润 +夏普指数 +动用资金 ++ +联系法 +346 +274.293% +1.022 +19.4% ++ + +协整法 +91 +26.358% +0.298 +23.7% ++ 一般情况下,基金的波动性并不大,因此均值回归并不会提供太多交易机会。在5年的时间里,只有39笔交易采用了协整法。根据Liew R Q和Wu Y的《配对交易联系法》,我们发现在配对交易中使用联系法可以提供更多的交易机会,因为它不需要任何严格的假设。 +
diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..932854a --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,19 @@ ++ 联系法的回溯测试 +
++ ++ ++ +++ 协整法的回溯测试 +
++ +diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..1d7ae89 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,32 @@ ++ +++
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" new file mode 100644 index 0000000..9aa9136 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" @@ -0,0 +1,11 @@ +- + Stander Y, Marais D, Botha I. Trading strategies with copulas[J]. Journal of Economic and Financial Sciences, 2013, 6(1): 83-107. Online Copy +
+- + Hanson T A, Hall J R. Statistical arbitrage trading strategies and high-frequency trading[J]. 2012. Online Copy +
+- + Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012. Online Copy +
+- + Rad H, Low R K Y, Faff R. The profitability of pairs trading strategies: distance, cointegration and copula methods[J]. Quantitative Finance, 2016, 16(10): 1541-1558.online copy +
+- + Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012. Online Copy +
+- + LANDGRAF N, SCHOLTUS K, DIRIS D R B. High-Frequency copula-based pairs trading on US Goldmine Stocks[J]. 2016. +
+- + Genest, C. and MacKay, J., 1986, The Joy of Copulas: Bivariate Distributions with Uniform Marginals, The American Statistician, 40, 280-283 +
+- + Jean Folger, Pairs Trading Example Online Copy +
+- + Xie W, Wu Y. Copula-based pairs trading strategy[C] Asian Finance Association (AsFA) 2013 Conference. doi. 2013, 10. +
+- + Liew R Q, Wu Y. Pairs trading: A copula approach[J]. Journal of Derivatives & Hedge Funds, 2013, 19(1): 12-30. +
++ 在本教程中,我们使用两阶段关联法和协整法,基于市场中性统计套利策略实施了高频动态配对交易策略。这种策略基于George J. Miao的研究。我们将这一交易策略应用于美国银行板块股票,使用2012年至2013年的10分钟股票数据对这一策略进行了回溯测试。我们交易策略所产生的复合年回报率高达29.4%,夏普指数为0.968。 +
+ ++ 当市场表现不佳时,这种策略尤其有利可图。利润来自于错误定价,当市场下跌或波动性增加时,很可能会发生错误定价。 +
+ ++ 为了进一步探讨这种策略,我们将策略设计得更为灵活。我们可以通过简单地更改参数,将数据分辨率更改为5分钟、10分钟甚至30分钟。选择最优的进入、结束和止损阈值也是非常重要的。每个人都可以有自己的策略。 +
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..f0b6f74 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,115 @@ ++ 高频交易(HFT)是一种定量交易,其特点是持有期短,利用复杂的计算机方法迅速交易证券。它的目标是在每笔短期交易中都获得小额利润(Cartea & Penalva, 2012)。 + 统计套利是根据一项或多项资产的预期价值对该资产进行统计错误定价的情况。当证券之间因定价效率低下而出现盈利情况时,交易者可以通过数学模型识别统计套利情况。统计套利在很大程度上取决于市场价格回归历史或预测均值的能力。单一价格法则(LOP)为这一假设奠定了基础。LOP指出,如果两支股票在各种自然状态下都具有相同的收益,则它们必定具有相同的现值(Gatev, Goetzmann, & Rouwenhorst, 2006)。因此,两支股票近似替代资产之间的价差应在一段时间内具有稳定的长期均衡价格。 +
+ +数据描述
++ 为了获得更多高度相关的配对,我们选择了特定行业的股票。从经济角度看,我们更喜欢传统行业,因为这些行业的公司更有可能成为近似替代品。。如果我们选择N只股票,可以使用\(\textrm{C}_{n}^{2} = \frac{n*(n-1)}{2}\)来计算配对的数目。在演示的策略中,我们使用了80只股票,所以总共得到了3160对。我们使用分钟数据并将其聚合为较低的分辨率,因此1分钟是该策略的最高分辨率。 +
+ +关联法
++ 关联性衡量的是具有价格趋势两只股票之间的关系。由于这两支股票相互关联,因此倾向于一起移动。关联性过滤器是对备选配对进行筛选的第一步。以A股票和B股票为例,股票之间的关联系数是一个统计数值,用于衡量股票A和股票B之间的关联程度。股票A和股票B的相关系数\(\rho\)可以通过下式获得: +
+ +\[\rho = \frac{\sum_{i}^{N}(A_i - \bar{A})(B_i - \bar{B}))}{[\sum_{i}^{N}(A - \bar{A})^2\sum_{i}^{N}(B_i - \bar{B})^2]^\frac{1}{2}}\] + ++ 其中\(\bar{A}\)和\(\bar{B}\)分别是股票A和股票B的平均价格,N表示交易数据范围。\(\rho\)在[-1,1]范围内。正值的\(\rho\)越多,股票A和股票B之间的关联性就越积极。 +
+ ++ 然而,随着时间的推移,仅仅基于关联法的配对交易将存在不稳定的缺点。关联系数并不一定意味着两支配对股票价格之间的均值回归。为了克服上述问题,将进一步采用协整法作为配对选择过程的第二步。 +
+ +协整法
++ 协整概念是由诺贝尔奖得主Engle和Granger开发的一种创新经济学数学模型。协整法指出,在某些情况下,尽管给定两个非平稳时间序列,但两个时间序列的特定线性组合实际上是平稳的。换句话说,这两个时间序列以步调一致的模式一起移动。 +
+ ++ 协整的定义如下:假设\(x_t\)和\(y_t\)是两个非平稳的时间序列。如果存在参数\(\gamma\),则可以得出以下方程: +
+ +\[z_t = y_t - \gamma x_t\] + ++ 这是一个平稳的过程,然后xt和yt将会进行协整。这一过程是研究多元时间序列中共同资产趋势的强大工具。 +
++ 在我们的例子中,\(p_t^A\)和\(p_t^B\)分别为A股和B股的价格。如果假设{\({p_t^A, p_t^B}\)}都分别不平稳,则存在参数\(\gamma\),以下方程是一个平稳过程: +
+ +\[P_t^A - \gamma P_t^B = \mu + \epsilon_t\] + ++ 其中\(\mu\)是协整模型的平均值。\(\epsilon_t\)是平稳的均值回复过程,被称为协整残差。参数\(\gamma\)被称为协整系数。上面的公式表示股票A和股票B的协整对模型。 +
+ ++ 了解协整残差和协整系数如何决定交易方向是非常重要的。如果\(\epsilon\)为正值,处于给定的置信区间内,这是股票 A定价相对较高而股票B定价相对较低的信号,我们将买入股票B,并抛出股票A。如果\(\epsilon\)为负值,则买入股票A并抛出股票B。 +
+ +协整验证(可选阅读部分)
++ 在Engle-Granger法中(Engle & Granger, 1987),如上文方程式所述,我们首先在股票A和股票B之间建立协整回归,然后使用普通最小二乘法(OLS)估算回归参数\(\mu\)和\(\gamma\)。我们对回归残差\(epsilon_t\)进行了测试,以确定其是否平稳。 +
+ ++ 在协整领域中,最受欢迎的平稳性测试是Augmented Dickey Fuller (ADF)测试,此测试用于确定回归残差\(\epsilon\)是否具有单位根。 +
++ 利用ADF测试来检验回归残差是否存在单位根: +
+ +\[\Delta Z_t = \alpha + \beta t + \gamma Z_{t-1} + \sum_{i = 1}^{p -1}\delta_i \Delta Z_{t-i} + \mu_t\] + ++ 其中\(\alpha\)是常数,\(\beta\)是时间趋势系数,p是自回归过程的滞后阶,\(\mu_t\)是误差项,与连续性无关。 +
+ ++ 方程中滞后阶p的数量通常是未知的,因此需要进行估算。为了确定滞后阶p的数量,采用了滞后阶选择的信息准则。这里我们选择贝叶斯信息准则(BIC)。 +
+ +\[BIC = (T-p)\ln\frac{T\hat{\sigma}_p^2}{T-p} + T[1+ln(\sqrt{2\pi})] + p\ln[\frac{\sum_{t=1}^{T}(\Delta Z_t)^2 -T\hat{\sigma}_p^2}{p}]\] + ++ 其中T为样本量。 +
++ 然后在零假设\(H_0 : \gamma = 0\)与替代假设\(H_1 : \gamma < 0\)的情况下,使用ADF测试对回归残差\(\epsilon\)进行单位根检验。通过下式得出ADF测试的统计值 +
+ +\[ADF test = \frac{\hat{\gamma }}{SE(\hat{\gamma })}\] + ++ 将上述方程的测试结果与ADF测试的临界值进行比较。如果测试结果小于临界值,则否定零假设。这意味着回归残差\(\epsilon\)是平稳的。因此,两支股票价格{\({p_t^A, p_t^B}\)}是协整的。 +
+配对交易策略
++ 配对交易策略使用基于回归残差\(\epsilon\)的交易信号,并被建模为均值回复过程。 +
+ ++ 为了选择合适的股票进行配对交易,采用了两阶段的关联协整法。第一步是识别来自同一行业的潜在股票配对,使用关联方法选择关联系数至少达到0.9的股票配对。第二步是检验通过关联性测试股票配对的协整性。如果协整性的测试值等于或小于-3.34(这也是95%置信水平的阈值),则否定零假设\(H_0 : \gamma = 0\),因此残差\(\epsilon\)是平稳的,股票对通过了协整测试。第三步是根据协整测试值对所有通过两阶段测试的股票对进行排序。协整测试值越小,股票对的排名越高。排名靠前的金融股票配对将用于配对交易。 +
++ 策略的最后一步是定义交易规则。打开一个配对交易,回归残差\(\epsilon_t\)必须超过高于标准值的正\(\sigma\)标准差,或是低于标准值的负\(\sigma\)标准差。若残差为正,则抛出股票B,买入股票A;如果残差为负,则抛出股票A,买入股票B。当回归残差(\epsilon_t\)返回到一定水平时,配对交易结束。此外,为了防止在单一配对交易中损失过多,当残差达到\(4\epsilon\)正负标准差时,采用止损关闭配对交易。 +
+ ++ 在训练期间,每个培训数据包含3个月的周期,这是一个动态滚动窗口规模。在训练期结束后,我们立即开始为期一个月的交易周期,动态滚动窗口自动向前移动,记录每对股票的新价格。在第一个交易期之后,我们使用更新后的股票价格再次选择交易配对,并开始另一个交易周期。 +
+ +参数调整
++ 该策略的性能对参数非常敏感。主要有四个参数需要调整:开始阀值、结束阀值、止损阀值和数据分辨率。 +
++ 开始阈值代表有多少残差\(\epsilon\)超过标准差,可通过\(\frac{\epsilon - \bar{\epsilon}}{\sigma}\)进行计算。默认情况下,我们将其设置为2.32和-2.32,如果假设残差服从正态分布,则这是99%置信区间的阈值。结束阈值的计算方法与开始阈值相同,我们将其默认设置为0.5,可以尽早结束以防止进一步的发散。 +
++ 止损阀值设置为4.5。这取决于我们能承受的错误定价水平。我们对风险的容忍度越高,我们对这一参数的设置就可以越高。但是,如果我们将这个数字设置得太低,我们可能会在止损反转前结束过多的配对。 +
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..2be6e77 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,252 @@ ++ 在此类交易策略中,我们将定义一个名为“配对”的类。我们不直接对股票进行管理,而是对股票配对进行管理,这可以使我们更方便地计算关联性和协整性,更新配对股票的价格,并交易选定的配对。 +
+ +步骤1:配对分类定义
++ 配对由两支股票组成,即股票A和股票B。这一分类有几种属性。基本属性包括股票A和股票B的代码、包含这两支股票时间和价格的数据分析框架、当前误差、最后一个数据点的误差,以及记录股票价格以便进行更新的列表。我们不会每5分钟更新一次数据框架,而是将价格记录在列表中,每月更新一次数据框架。由于操作数据框架非常耗时,这可以使算法的速度至少提高10倍。每个月使用cor_update方法更新配对股票中两支股票之间的关联性。采用cointegration_test每月进行最小二乘法(OLS)回归,进行ADF测试,计算残差的均值和标准差。这种方法还会将这些计算值作为属性分配给配对对象。 +
+ ++ ++class pairs(object): + def __init__(self, a, b): + self.a = a + self.b = b + self.name = str(a) + ':' + str(b) + self.df = pd.concat([a.df,b.df],axis = 1).dropna() + # The number of bars in the rolling window would be determined by the resolution, so we get this + information from the shape of the DataFrame here. + self.num_bar = self.df.shape[0] + self.cor = self.df.corr().ix[0][1] + # Set the initial signals to be 0 + self.error = 0 + self.last_error = 0 + self.a_price = [] + self.a_date = [] + self.b_price = [] + self.b_date = [] + + def cor_update(self): + self.cor = self.df.corr().ix[0][1] + + def cointegration_test(self): + self.model = sm.ols(formula = '%s ~ %s'%(str(self.a),str(self.b)), data = self.df).fit() + # This line conduct ADF test on the residual. ts.adfuller() returns a tuple and the first element in + the tuple is the test value. + self.adf = ts.adfuller(self.model.resid,autolag = 'BIC')[0] + self.mean_error = np.mean(self.model.resid) + self.sd = np.std(self.model.resid) + + def price_record(self,data_a,data_b): + self.a_price.append(float(data_a.Close)) + self.a_date.append(data_a.EndTime) + self.b_price.append(float(data_b.Close)) + self.b_date.append(data_b.EndTime) + + def df_update(self): + new_df = pd.DataFrame({str(self.a):self.a_price,str(self.b):self.b_price},index = + [self.a_date]).dropna() + self.df = pd.concat([self.df,new_df]) + self.df = self.df.tail(self.num_bar) + # after updating the DataFrame, we empty the lists for the incoming data + for list in [self.a_price,self.a_date,self.b_price,self.b_date]: + list = [] ++Step 2: Generate and Clean Pairs
++ The function generate_pairs generates pairs using the stock symbols. self.pair_threshold and self.pair_num are pre-determined to control the number of candidate pairs. The pairs in self.pair_list would be kept and updated throughout our backtesting period. we set self.pair_threshold to 0.88 and self.pair_num to 120 to limit the number of pairs in the list. If we put too many pairs in the list, the backtesting would be too time consuming. + The function pair_clean is called after the two-stage screen. If the first pair contains stock A and stock B, and the second pair contains stock B and stock C, we would remove the second pair because the overlapped signal would disturb the balance of our portfolio. +
+ ++ ++ +def generate_pairs(self): + for i in range(len(self.symbols)): + for j in range(i+1,len(self.symbols)): + self.pair_list.append(pairs(self.symbols[i],self.symbols[j])) + + self.pair_list = [x for x in self.pair_list if x.cor > self.pair_threshold] + + self.pair_list.sort(key = lambda x: x.cor, reverse = True) + + if len(self.pair_list) > self.pair_num: + self.pair_list = self.pair_list[:self.pair_num] + +def pair_clean(self,list): + l = [] + l.append(list[0]) + for i in list: + symbols = [x.a for x in l] + [x.b for x in l] + if i.a not in symbols and i.b not in symbols: + l.append(i) + else: + pass + return l ++Step 3: Warming up Period
++ This part is under the OnData step. We set self.num_bar equals to the number of TradeBar in three months, which is determined by the resolution. During this period we fill the stock prices in lists, and assign each stock's price list to the symbol as a property. We would also remove the symbol from the symbol list if it has no data. +
+ ++ ++if len(self.symbols[0].prices) < self.num_bar: + for symbol in self.symbols: + if data.ContainsKey(i) is True: + symbol.prices.append(float(data[symbol].Close)) + symbol.dates.append(data[symbol].EndTime) + else: + self.Log('%s is missing'%str(symbol)) + self.symbols.remove(symbol) + self.data_count = 0 + return+Step 4: Pairs Selection
++ This process is also under the OnData step. This step would generate pairs if it is the first trading period of this algorithm. If it's not, it will update the DataFrame and correlation coefficient of each pair in self.pair_list. After that the pairs have a correlation coefficient higher than 0.9 would be selected into self.selected_pair. Then all the pairs in self.selected_pair would be tested on their cointegration, and the pairs with a test value less than -3.34 would be selected to the final list. This step will also limit the number of stocks in the final list, by default we set self.selected_num to 10. self.count is a flag to count the number of datapoint we received. Once it reach 1-month amount, that means one trading period is passed and it would be set to 0. +
+ ++ ++ +if self.count == 0 and len(self.symbols[0].prices) == self.num_bar: + if self.generate_count == 0: + for symbol in self.symbols: + symbol.df = pd.DataFrame(symbol.prices, index = symbol.dates, columns = ['%s'%str(symbol)]) + + self.generate_pairs() + self.generate_count +=1 + self.Log('pair list length:'+str(len(self.pair_list))) + + for pair in self.pair_list: + pair.cor_update() + # Update the DataFrame and correlation selection + if len(self.pair_list[0].a_price) != 0: + for pair in self.pair_list: + pair.df_update() + pair.cor_update() + + self.selected_pair = [x for x in self.pair_list if x.cor > 0.9] + # Cointegration test + for pair in self.selected_pair: + pair.cointegration_test() + + self.selected_pair = [x for x in self.selected_pair if x.adf < self.BIC] + self.selected_pair.sort(key = lambda x: x.adf) + # If no pair passed the two-stage test, return. + if len(self.selected_pair) == 0: + self.Log('no selected pair') + self.count += 1 + return + # clean the pair to avoid overlapping stocks. + self.selected_pair = self.pair_clean(self.selected_pair) + # assign a property to the selected pair, this is a signal that would be used for trading. + for pair in self.selected_pair: + pair.touch = 0 + self.Log(str(pair.adf) + pair.name) + # limit the number of selected pairs. + if len(self.selected_pair) > self.selected_num: + self.selected_pair = self.selected_pair[:self.selected_num] + + self.count +=1 + self.data_count = 0 + return ++Step 5: Trade Period
++ It would be too long to read if we paste all the code in trading period together. Thus we would separate the code into three part: updating pairs, opening pairs trading and closing pairs trading. But all those lines are under OnData step and are under the condition: if self.count != 0 and self.count < self.one_month. This means it's in the trading period. +
+ +Updating Pairs
++ This step would update the stock prices in each pair. It would also update the signal called 'last_error' and immediately after this the pairs would receive new signals. +
+ ++ ++num_select = len(self.selected_pair) +for pair in self.pair_list: + if data.ContainsKey(pair.a) is True and data.ContainsKey(pair.b) is True: + i.price_record(data[i.a],data[i.b]) + else: + self.Log('%s has no data'%str(pair.name)) + self.pair_list.remove(pair) + +for pair in self.selected_pair: + pair.last_error = pair.error + +for pair in self.trading_pairs: + pair.last_error = pair.error+Opening Pairs Trading
++ For each pair in self.selected_pair, we receive the current prices of the stocks, and then use the cointegration model to calculate the residual \(\epsilon\), which is assigned to the pair as a property named 'error'. self.trading.pairs is a list to store the trading pairs. Once a pairs trading is open, this pair would be add to the list, and it would be removed when the trading is closed. The property 'touch' is signal. If the residual \(\epsilon\) cross over the positive threshold standard deviation(we set \(\ 2.23*sigma\) here), the signal would become +1; while if it cross down the negative threshold deviation(\(\ -2.23*sigma\), the signal would become -1. For those pairs with +1 signal, if the error cross down positive threshold, there is a signal to open a trade. We long stock B and short stock A. For those pairs with -1 signal, if the error cross over negative threshold, we long Stock A and short stock B. + When we opening a trade, we need to record the current model, current mean and standard deviation of the residual. This is necessary because if we enter a new trading period and the trade has not been closed yet, the cointegration model, mean and standard deviation of the pairs would be changed. We need to use the original thresholds to close the trades. while adding the pairs into self.trading_pairs, we also need to set the signal 'touch' to 0 for further use. +
+ ++ ++ +for i in self.selected_pair: + price_a = float(data[i.a].Close) + price_b = float(data[i.b].Close) + i.error = price_a - (i.model.params[0] + i.model.params[1]*price_b) + if (self.Portfolio[i.a].Quantity == 0 and self.Portfolio[i.b].Quantity == 0) and i not in + self.trading_pairs: + if i.touch == 0: + if i.error < i.mean_error - self.open_size*i.sd and i.last_error > i.mean_error - + self.open_size*i.sd: + i.touch += -1 + elif i.error > i.mean_error + self.open_size*i.sd and i.last_error < i.mean_error + self.open_size*i.sd: i.touch += 1 else: pass elif i.touch == -1: if i.error > i.mean_error - self.open_size*i.sd and i.last_error < i.mean_error - + self.open_size*i.sd: + self.Log('long %s and short %s'%(str(i.a),str(i.b))) + i.record_model = i.model + i.record_mean_error = i.mean_error + i.record_sd = i.sd + self.trading_pairs.append(i) + self.SetHoldings(i.a, 5.0/(len(self.selected_pair))) + self.SetHoldings(i.b, -5.0/(len(self.selected_pair))) + i.touch = 0 + elif i.touch == 1: + if i.error < i.mean_error + self.open_size*i.sd and i.last_error > i.mean_error + + self.open_size*i.sd: + self.Log('long %s and short %s'%(str(i.b),str(i.a))) + i.record_model = i.model + i.record_mean_error = i.mean_error + i.record_sd = i.sd + self.trading_pairs.append(i) + self.SetHoldings(i.b, 5.0/(len(self.selected_pair))) + self.SetHoldings(i.a, -5.0/(len(self.selected_pair))) + i.touch = 0 + else: + pass + else: + pass ++Closing Pairs Trading
++ This part controls pairs trading exit. It works similar to the opening part. It uses the recorded original model and thresholds to determine whether or not we should close the position. If the residual \(\epsilon\) reaches our closing threshold, we liquidate stock A and stock B to close. If the residual continue to deviate from the mean and goes too far, we would also close the position to stop loss. When we close a pairs trading, we also remove the pairs from self.trading_pairs. +
+ ++ +diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..1645559 --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +for i in self.trading_pairs: + price_a = float(data[i.a].Close) + price_b = float(data[i.b].Close) + i.error = price_a - (i.record_model.params[0] + i.record_model.params[1]*price_b) + if ((i.error < i.record_mean_error + self.close_size*i.record_sd and i.last_error >i.record_mean_error + self.close_size*i.record_sd) or (i.error > i.record_mean_error - + self.close_size*i.record_sd and i.last_error i.record_mean_error + + self.stop_loss*i.record_sd: + self.Log('close %s to stop loss'%str(i.name)) + self.Liquidate(i.a) + self.Liquidate(i.b) + self.trading_pairs.remove(i) + else: + pass++ WTI-Brent价差指的是两种原油价格之间的差异:即多头的西德克萨斯中质原油(WTI)和空头布伦特原油(Brent)。多年来,两者之间的价格差距平均只有几美元。由于这两种原油非常相似,它们的价差显示出很强的可预测性,通常在某个平均值附近波动。因此,有可能使用偏离公允价差的值来押注回复到公允价值。本文提出了一种基于价差价格差异的交易策略。 +
diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..979fd31 --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,117 @@ ++ 我们从Macrotrends下载WTI和Brent原油价格,并使用自定义数据下载器导入csv文件。单位为美元/桶。 +
++++ class WTI(PythonData): + "Class to import WTI Spot Price(Dollars per Barrel) data from Dropbox" + + def GetSource(self, config, date, isLiveMode): + return SubscriptionDataSource("https://www.dropbox.com/s/jpie3z6j0stp97d/wti-crude-oil-prices-10-year-daily.csv?dl=1", SubscriptionTransportMedium.RemoteFile) + + def Reader(self, config, line, date, isLiveMode): + if not (line.strip() and line[1].isdigit()): return None + index = WTI() + index.Symbol = config.Symbol + try: + data = line.split(',') + index.Time = datetime.strptime(data[0], "%Y-%m-%d") + index.Value = Decimal(data[1]) + except: + return None + return index + + class BRENT(PythonData): + "Class to import BRENT Spot Price(Dollars per Barrel) data from Dropbox" + + def GetSource(self, config, date, isLiveMode): + return SubscriptionDataSource("https://www.dropbox.com/s/w380c4n7xjmdqxl/brent-crude-oil-prices-10-year-daily.csv?dl=1", SubscriptionTransportMedium.RemoteFile) + + def Reader(self, config, line, date, isLiveMode): + if not (line.strip() and line[1].isdigit()): return None + index = BRENT() + index.Symbol = config.Symbol + try: + data = line.split(',') + index.Time = datetime.strptime(data[0], "%Y-%m-%d") + index.Value = Decimal(data[1]) + except: + return None + return index +++ 价差定义为WTI价格与Brent价格之间的差。接下来,我们需要使用指标
+SimpleMovingAverage来计算价差系列的移动平均值。由于指标使用的是价格差异而不是价格系列,因此需要使用历史请求手动初始化指标。 ++++self.SpreadSMA = SimpleMovingAverage(20) +hist = self.History(["WTI", "BRENT"], 400, Resolution.Daily)["value"].unstack(level=0).dropna() +hist_20days = hist[-20:] +spread = (hist_20days["WTI"] - hist_20days["BRENT"]).dropna() +for index, value in spread.items(): + self.SpreadSMA.Update(index, value) +++ 为了得到价差的公允价值,我们对WTI和Brent价格在过去一年的历史价格进行了线性回归。 +
+ \[P_{Brent}=\beta \cdot P_{WTI}+\alpha\] ++ 那么差价的公允价值是 +
+\[Fair \ Spread =(1-\beta)\cdot CurrentPrice_{WTI}-\alpha\] + ++++hist_one_year = hist[-252:] +X = hist_one_year["WTI"][:, np.newaxis] +y = hist_one_year["BRENT"] +self.regr = linear_model.LinearRegression() +self.regr.fit(X, y) +++ 公允价值每天计算一次。如果当前价差值高于SMA 20,那么我们将在收盘时进入价差空头头寸(押注价差将降至SMA 20所代表的公允价值)。当价差低于公允价值时,交易在交易日收盘时结束。如果当前价差低于SMA 20,那么我们就进入多头头寸,押注价差将会增加,当价差超过公允价值时,交易将在交易日收盘时结束。 +
+ ++++def OnData(self, data): + if not (data.ContainsKey("WTI") and data.ContainsKey("BRENT")): return + self.Plot("Spread Plot", "Spread", data["WTI"].Price - data["BRENT"].Price) + + self.SpreadSMA.Update(self.Time, data["WTI"].Price - data["BRENT"].Price) + if not self.SpreadSMA.IsReady: return + spread = self.Securities["WTI"].Price - self.Securities["BRENT"].Price + fair_value =self.Securities["WTI"].Price - Decimal(self.regr.predict([[self.Securities["WTI"].Price]])[0]) + + if spread > self.SpreadSMA.Current.Value and not (self.Portfolio["WTI"].IsShort and self.Portfolio["BRENT"].IsLong): + self.SetHoldings("WTI", -0.5) + self.SetHoldings("BRENT", 0.5) + self.Plot("Spread Plot", "Long Spread Trade", data["WTI"].Price - data["BRENT"].Price) + + elif spread < self.SpreadSMA.Current.Value and not (self.Portfolio["WTI"].IsLong and self.Portfolio["BRENT"].IsShort): + self.SetHoldings("WTI", 0.5) + self.SetHoldings("BRENT", -0.5) + self.Plot("Spread Plot", "Short Spread Trade", data["WTI"].Price - data["BRENT"].Price) + + if self.Portfolio["WTI"].IsShort and self.Portfolio["BRENT"].IsLong and spread < fair_value: + self.Liquidate() + + if self.Portfolio["WTI"].IsLong and self.Portfolio["BRENT"].IsShort and spread > fair_value: + self.Liquidate() +++ 为了显示价差序列的趋势,我们添加了价差图,并在价差曲线上标记了价差的多头/空头点。 +
++diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..15151d8 --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ ++spreadPlot = Chart("Spread Plot") +spreadPlot.AddSeries(Series("Spread", SeriesType.Line, 0)) +spreadPlot.AddSeries(Series("Long Spread Trade", SeriesType.Scatter, 0)) +spreadPlot.AddSeries(Series("Short Spread Trade", SeriesType.Scatter, 0)) +self.AddChart(spreadPlot) +++ +diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..5cbb24e --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + From 4cd938580117501807f3d659da69146a81321000 Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Thu, 26 Sep 2019 10:36:54 -0700 Subject: [PATCH 088/215] Add Commodities Futures Trend Following --- .../01 Abstract.html | 3 + .../02 Introduction.html | 21 +++ .../03 Method.html | 126 ++++++++++++++++++ .../04 Summary.html | 7 + .../05 Algorithm.html | 6 + .../06 References.html | 5 + 6 files changed, 168 insertions(+) create mode 100644 04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html create mode 100644 04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html create mode 100644 04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html create mode 100644 04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html create mode 100644 04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html create mode 100644 04 Strategy Library/357 Commodities Futures Trend Following/06 References.html diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html b/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html new file mode 100644 index 0000000..46860f0 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html @@ -0,0 +1,3 @@ ++ +++ In this tutorial we implement a trend following strategy on commodities futures based on a 2014 paper "Two Centuries Of Trend Following" by Y. Lempérière, C. Deremble, P. Seager, M. Potters, and J. P. Bouchaud. +
\ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html b/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html new file mode 100644 index 0000000..21ba8d1 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html @@ -0,0 +1,21 @@ ++The paper highlights the existence of trends as an anomaly that contradicts the efficient market hypothesis. If financial markets are completely efficient as the hypothesis suggests, then asset price changes should be totally unpredictable. In other words, no systematic excess return based on public information should exist since asset prices ought to reflect all public information available. However observationally, trend existence in the market do exist. They make it possible to use the simple trend following strategy which states, buy when prices goes up and sell when prices goes down. Numerous academic studies have demonstrated that trend following strategies generate persistent returns over long periods of time. +
+ ++The paper extends the backtest period of trend following strategies to two centuries and demonstrates statistically significant systematic excess returns on four asset classes (commodities, currencies, stock indices, and bonds). It implements a risk managed strategy that buys or sells a quantity of \(\sigma_n^{-1}\) of the underlying contract depending on the sign of \(s_n\). +
+ ++The signal \(s_n(t)\) at the beginning of month t is: +
+ +\[s_n(t) = \frac{p(t-1)-\text{<}p\text{>}_{n,t-1}}{\sigma_n(t-1)}\] + ++where \(\text{<}p\text{>}_{n,t-1}\) is last month's exponential moving average of past prices with a decay rate equal to n months,\(p(t-1)\) is the price of last month, and \(\sigma_n(t-1)\) is last month's volatility, estimated as the exponential moving average of the absolute monthly price changes, with a decay rate equal to n months. The decay rate was set to 5 months. +
+ ++Below, we will implement the above monthly-rebalanced trend following strategy on commodities futures. +
\ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html b/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html new file mode 100644 index 0000000..783e8bf --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html @@ -0,0 +1,126 @@ ++ The strategy requires the continuous futures contract, so we import the custom data from Quandl. We manually create a universe of tradable commodity futures. They are all liquid and active continuous contracts #1. The data from Quandl are non-adjusted price based on spot-month continuous contract calculations. The data resolution is daily. +
+ + +Step 1: Import futures data from Quandl
+ ++The paper selected a well-balanced commodities pool to include 7 representative contracts: Crude oil, Henry Hub Natural Gas, Corn, Wheat, Super, Live Cattle and Copper. We will add continuous futures data of these contracts from Quandl. This implementation performs a backtest on 20 years as opposed to 200 years of data for the purpose of comparing to benchmark SPY. +
+ +++ + + ++from QuantConnect.Python import PythonQuandl +class ImprovedCommodityMomentumTrading(QCAlgorithm): + def Initialize(self): + tickers = ["CHRIS/CME_W1", # Wheat Futures, Continuous Contract #1 + "CHRIS/CME_C1", # Corn Futures, Continuous Contract #1 + "CHRIS/CME_LC1", # Live Cattle Futures, Continuous Contract #1 + "CHRIS/CME_CL1", # Crude Oil Futures, Continuous Contract #1 + "CHRIS/CME_NG1", # Natural Gas (Henry Hub) Physical Futures, Continuous Contract #1 + "CHRIS/LIFFE_W1", # White Sugar Future, Continuous Contract #1 + "CHRIS/CME_HG1"] # Copper Futures, Continuous Contract #1 + for ticker in tickers: + data = self.AddData(QuandlFutures, ticker, Resolution.Daily) + data.SetLeverage(3) +class QuandlFutures(PythonQuandl): + def __init__(self): + self.ValueColumnName = "Settle" ++Step 2: Create a SymbolData class to store and update the number of contracts to trade for each security
+ ++In Initialize(), we create a dictionary to store the SymbolData object for each security. The strategy is designed to trade monthly, so we will create a MonthlyConsolidator for each security as well. When a new monthly data becomes available, the consolidator calls an event handler CalendarHandler. Within this event handler, we will update the SymbolData object with the freshly produced monthly data. +
+++ ++def Initialize(self): + # Container to store the SymbolData object for each security + self.Data = {} + + for ticker in tickers: + # Add Quandl data and set desired leverage + data = self.AddData(QuandlFutures, ticker, Resolution.Daily) + data.SetLeverage(3) + + # Create a monthly consolidator for each security + MonthlyConsolidator = self.Consolidate(ticker, CalendarType.Monthly, self.CalendarHandler) + + # Create a SymbolData object for each security to store relevant indicators and calculated quantity of contracts to Buy/Sell + self.Data[data.Symbol] = SymbolData() +def CalendarHandler(self, bar): + ''' + Event Handler that updates the SymbolData object for each security when a new monthly bar becomes available + ''' + self.Data[bar.Symbol].Update(bar) +++The SymbolData class is designed to contain everything we need for calculating how many contracts to Buy/Sell at the beginning of each month. LEAN provides helpful indicators to get the exponential moving average and momentum. +
+ +++ ++class SymbolData: + ''' + Contains the relevant indicators used to calculate number of contracts to Buy/Sell + ''' + def __init__(self): + self.ema = ExponentialMovingAverage("MonthEMA", 5) + + # Volatility estimation is defined as the EMA of absolute monthly price changes + # Use Momentum indicator to get absolute monthly price changes. Then use the IndicatorExtensions.Of and pass the momentum indicator values to get the volatility + self.mom = Momentum("MonthMOM", 1) + self.vol = IndicatorExtensions.Of(ExponentialMovingAverage("Vol", 5), self.mom) + self.Quantity = 0 + + def Update(self, bar): + self.ema.Update(bar.Time, bar.Value) + self.mom.Update(bar.Time, bar.Value) + self.vol.Update(bar.Time, self.mom.Current.Value) + if self.ema.IsReady and self.vol.IsReady: + # Equation 1 in [1] + signal = ( bar.Value - self.ema.Current.Value )/ self.vol.Current.Value + # Equation 2 in [1] + self.Quantity = np.sign(signal)/abs(self.vol.Current.Value) + + return self.Quantity != 0 ++Step 3: Buy and Sell at the beginning of each month
++Now we’ll place orders based on the quantity of contracts calculated from previous month stored in the SymbolData object. Note that we have set a warm up period of 5 months which prepares data to allow the algorithm to execute trades on the start date. +
+ ++\ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html b/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html new file mode 100644 index 0000000..db5ce31 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html @@ -0,0 +1,7 @@ ++ +def Initialize(self): + # Set decay rate equal to 5 months and warm up period + period = 150 + self.SetWarmUp(period) + + # Set monthly rebalance + self.nextRebalance = self.Time +def OnData(self, data): + ''' + Buy/Sell security every month + ''' + if self.IsWarmingUp: return + if self.Time < self.nextRebalance: return + + for symbol in data.Keys: + symbolData = self.Data[symbol] + if symbolData.Quantity != 0: + self.MarketOrder(symbol, symbolData.Quantity) + + self.nextRebalance = Expiry.EndOfMonth(self.Time) +++For the backtest period (January 1998 to September 2019), the trend following strategy produced a Sharpe ratio of 0.273, compared to SPY’s Sharpe ratio of 0.459. The positive performance of the trend-following strategy over the approximately 20-year time horizon indeed suggests the existence of statistically significant, anomalous, systematic, excess returns from trends. Furthermore, the paper suggests the anomaly is universal across 3 other asset classes (currencies, stock indices and bonds). +
+ ++This tutorial demonstrates trends as one of the most powerful sources of anomalous excess returns in financial markets. We hope to inspire the community to develop more trend-based strategies and encourage you to test out this strategy on other asset classes from the original paper. +
\ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html b/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html new file mode 100644 index 0000000..d21ff42 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html @@ -0,0 +1,6 @@ ++ +diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html b/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html new file mode 100644 index 0000000..cb5636b --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html @@ -0,0 +1,5 @@ ++ +++
- + Y. Lempérière, C. Deremble, P. Seager, M. Potters, J. P. Bouchaud (2014). Two centuries of trend following. Online Copy +
+\ No newline at end of file From bbf9e5e7f5a0a8ec8deaf53cfcc78fca3a8c332c Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Thu, 26 Sep 2019 10:43:18 -0700 Subject: [PATCH 089/215] Add Commodities Futures Trend Following --- .../00 Strategy Library/01 Strategy Library.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php index 76fe5bf..ec88ded 100644 --- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -577,6 +577,15 @@ ], 'description' => "An advanced momentum strategy that modifies the basic momentum strategies by introducing Baltas and Kosowski weights and rebalances the portfolio monthly. The new weighing scheme incorporates trend strength into the trading signal, uses an efficient volatility estimator, and adds a dynamic leverage mechanism.", 'tags' => 'Momentum, Futures, Commodities' + ], + [ + 'name' => 'Commodities Futures Trend Following', + 'link' => 'strategy-library/commodities-futures-trend-following', + 'sources' => [ + 'NYU' => 'https://arxiv.org/pdf/1404.3274.pdf' + ], + 'description' => "A simple trend following strategy on commodities futures.", + 'tags' => 'Momentum, Futures, Commodities' ] ]; From 499d462b0fee3348c5344efd40bf0742763f003c Mon Sep 17 00:00:00 2001 From: Alethea <31491434+AlinXlin@users.noreply.github.com> Date: Thu, 26 Sep 2019 14:11:05 -0700 Subject: [PATCH 090/215] Edit: Add Commodities Futures Trend Following Edited text and attached new edited algorithm --- .../03 Method.html | 67 +++++++++---------- .../04 Summary.html | 2 +- .../05 Algorithm.html | 2 +- 3 files changed, 34 insertions(+), 37 deletions(-) diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html b/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html index 783e8bf..6e8e094 100644 --- a/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html +++ b/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html @@ -6,7 +6,7 @@
Step 1: Import futures data from Quandl
-The paper selected a well-balanced commodities pool to include 7 representative contracts: Crude oil, Henry Hub Natural Gas, Corn, Wheat, Super, Live Cattle and Copper. We will add continuous futures data of these contracts from Quandl. This implementation performs a backtest on 20 years as opposed to 200 years of data for the purpose of comparing to benchmark SPY. +The paper selected a well-balanced commodities pool to include 7 representative contracts: Crude oil, Henry Hub Natural Gas, Corn, Wheat, Super, Live Cattle and Copper. We will add continuous futures data of these contracts from Quandl. This implementation performs a backtest on 20 years as opposed to 200 years of data for the purpose of comparing to benchmark SPY.
@@ -35,7 +35,7 @@Step 1: Import futures data from Quandl
Step 2: Create a SymbolData class to store and update the number of contracts to trade for each security
-In Initialize(), we create a dictionary to store the SymbolData object for each security. The strategy is designed to trade monthly, so we will create a MonthlyConsolidator for each security as well. When a new monthly data becomes available, the consolidator calls an event handler CalendarHandler. Within this event handler, we will update the SymbolData object with the freshly produced monthly data. +In Initialize(), we create a dictionary to store the SymbolData object for each security. The strategy is designed to trade monthly, so we will create a monthly consolidator for each security as well. When a new monthly data becomes available, the consolidator calls an event handler CalendarHandler. Within this event handler, we will update the SymbolData object with the freshly received monthly data.
@@ -49,9 +49,10 @@Step 2: Create a SymbolData class to store and update the number of contract data.SetLeverage(3) # Create a monthly consolidator for each security - MonthlyConsolidator = self.Consolidate(ticker, CalendarType.Monthly, self.CalendarHandler) + self.Consolidate(ticker, CalendarType.Monthly, self.CalendarHandler) - # Create a SymbolData object for each security to store relevant indicators and calculated quantity of contracts to Buy/Sell + # Create a SymbolData object for each security to store relevant indicators + # and calculate quantity of contracts to Buy/Sell self.Data[data.Symbol] = SymbolData() def CalendarHandler(self, bar): ''' @@ -62,7 +63,7 @@
Step 2: Create a SymbolData class to store and update the number of contract
-The SymbolData class is designed to contain everything we need for calculating how many contracts to Buy/Sell at the beginning of each month. LEAN provides helpful indicators to get the exponential moving average and momentum. +The SymbolData class is designed to contain everything we need for calculating how many contracts to Buy/Sell at the beginning of each month. LEAN provides helpful indicators to get the exponential moving average and momentum indicators. The Introduction section above detailed the formula for calculating the number of contracts to Buy/Sell. We implement the formula in the Update function.
@@ -73,54 +74,50 @@Step 2: Create a SymbolData class to store and update the number of contract ''' def __init__(self): self.ema = ExponentialMovingAverage("MonthEMA", 5) - - # Volatility estimation is defined as the EMA of absolute monthly price changes - # Use Momentum indicator to get absolute monthly price changes. Then use the IndicatorExtensions.Of and pass the momentum indicator values to get the volatility - self.mom = Momentum("MonthMOM", 1) - self.vol = IndicatorExtensions.Of(ExponentialMovingAverage("Vol", 5), self.mom) + + # Volatility estimation is defined as the EMA of absolute monthly price changes + # Use Momentum indicator to get absolute monthly price changes. + # Then use the IndicatorExtensions.EMA and pass the momentum indicator values to get the volatility + self.mom = Momentum("MonthMOM", 1) + # Note: self.vol will automatically be updated with self.mom + self.vol = IndicatorExtensions.EMA(self.mom, 5) + self.Quantity = 0 - + + def Update(self, bar): self.ema.Update(bar.Time, bar.Value) self.mom.Update(bar.Time, bar.Value) - self.vol.Update(bar.Time, self.mom.Current.Value) + if self.ema.IsReady and self.vol.IsReady: # Equation 1 in [1] - signal = ( bar.Value - self.ema.Current.Value )/ self.vol.Current.Value + signal = (bar.Value - self.ema.Current.Value) / self.vol.Current.Value # Equation 2 in [1] self.Quantity = np.sign(signal)/abs(self.vol.Current.Value) - + return self.Quantity != 0
Step 3: Buy and Sell at the beginning of each month
-Now we’ll place orders based on the quantity of contracts calculated from previous month stored in the SymbolData object. Note that we have set a warm up period of 5 months which prepares data to allow the algorithm to execute trades on the start date. +Now we’ll place orders based on the quantity of contracts calculated from previous month stored in the SymbolData object. Note that we warm up the algorithm with 150 days of data to allow the algorithm to execute trades on the start date.
\ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html b/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html index db5ce31..363d402 100644 --- a/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html +++ b/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html @@ -1,5 +1,5 @@- -def Initialize(self): - # Set decay rate equal to 5 months and warm up period - period = 150 - self.SetWarmUp(period) - - # Set monthly rebalance - self.nextRebalance = self.Time def OnData(self, data): - ''' - Buy/Sell security every month - ''' - if self.IsWarmingUp: return - if self.Time < self.nextRebalance: return - - for symbol in data.Keys: - symbolData = self.Data[symbol] - if symbolData.Quantity != 0: - self.MarketOrder(symbol, symbolData.Quantity) - - self.nextRebalance = Expiry.EndOfMonth(self.Time) + ''' + Buy/Sell security every month + ''' + if self.Time < self.nextRebalance or self.IsWarmingUp: + return + + for symbol in data.Keys: + symbolData = self.Data[symbol] + if symbolData.Quantity != 0: + self.MarketOrder(symbol, symbolData.Quantity) + + self.nextRebalance = Expiry.EndOfMonth(self.Time)-For the backtest period (January 1998 to September 2019), the trend following strategy produced a Sharpe ratio of 0.273, compared to SPY’s Sharpe ratio of 0.459. The positive performance of the trend-following strategy over the approximately 20-year time horizon indeed suggests the existence of statistically significant, anomalous, systematic, excess returns from trends. Furthermore, the paper suggests the anomaly is universal across 3 other asset classes (currencies, stock indices and bonds). +For the backtest period (January 1998 to September 2019), the trend following strategy produced a Sharpe ratio of 0.266, compared to SPY’s Sharpe ratio of 0.459. The positive performance of the trend-following strategy over the approximately 20-year time horizon indeed suggests the existence of statistically significant, anomalous, systematic, excess returns from trends. Furthermore, the paper suggests the anomaly is universal across 3 other asset classes (currencies, stock indices and bonds).
diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html b/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html index d21ff42..c56a62c 100644 --- a/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html +++ b/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html @@ -1,6 +1,6 @@
From e4ecb10f76813386b6582543e8a0decdcec6df1c Mon Sep 17 00:00:00 2001 From: wyiyun95- +Date: Thu, 26 Sep 2019 17:36:56 -0700 Subject: [PATCH 091/215] Mandarin Translation (Strategy Library) 01, 07, 09, 162, 20, 22, 36, 39 full --- .../01 \347\256\200\344\273\213.cn.html" | 14 ++ ...7\274\211\347\220\206\350\256\272.cn.html" | 44 ++++ .../03 \346\226\271\346\263\225.cn.html" | 95 +++++++ .../04 \346\200\273\347\273\223.cn.html" | 14 ++ .../05 \347\256\227\346\263\225.cn.html" | 9 + ...0\200\203\346\226\207\347\214\256.cn.html" | 8 + .../03 \346\226\271\346\263\225.cn.html" | 52 ++-- .../04 \347\273\223\346\236\234.cn.html" | 20 ++ .../05 \346\200\273\347\273\223.cn.html" | 3 + .../06 \347\256\227\346\263\225.cn.html" | 6 + ...0\200\203\346\226\207\347\214\256.cn.html" | 16 ++ .../01 \346\221\230\350\246\201.cn.html" | 3 + .../02 Factor Selection.html | 2 +- ...7\264\240\351\200\211\346\213\251.cn.html" | 236 ++++++++++++++++++ ...7\245\250\351\200\211\346\213\251.cn.html" | 17 ++ .../04 \347\256\227\346\263\225.cn.html" | 6 + ...0\200\203\346\226\207\347\214\256.cn.html" | 5 + .../01 \347\256\200\344\273\213.cn.html" | 3 + .../02 \346\226\271\346\263\225.cn.html" | 63 +++++ .../03 \347\256\227\346\263\225.cn.html" | 6 + .../04 \346\235\245\346\272\220.cn.html" | 5 + .../01 \347\256\200\344\273\213.cn.html" | 3 + .../02 \346\226\271\346\263\225.cn.html" | 19 ++ .../03 \347\256\227\346\263\225.cn.html" | 6 + .../04 \346\235\245\346\272\220.cn.html" | 5 + .../01 \347\256\200\344\273\213.cn.html" | 3 + .../02 \346\226\271\346\263\225.cn.html" | 6 + .../03 \347\273\223\350\256\272.cn.html" | 3 + .../04 \347\256\227\346\263\225.cn.html" | 14 ++ .../05 \346\235\245\346\272\220.cn.html" | 5 + .../01 \347\256\200\344\273\213.cn.html" | 3 + .../02 \346\226\271\346\263\225.cn.html" | 120 +++++++++ .../03 \347\256\227\346\263\225.cn.html" | 6 + .../04 \346\235\245\346\272\220.cn.html" | 5 + .../01 \347\256\200\344\273\213.cn.html" | 6 + .../02 \346\226\271\346\263\225.cn.html" | 57 +++++ .../03 \347\256\227\346\263\225.cn.html" | 6 + .../04 \346\235\245\346\272\220.cn.html" | 5 + 38 files changed, 870 insertions(+), 29 deletions(-) create mode 100644 "04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" create mode 100644 "04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" create mode 100644 "04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" create mode 100644 "04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" create mode 100644 "04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" create mode 100644 "04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" create mode 100644 "04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" create mode 100644 "04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" create mode 100644 "04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" create mode 100644 "04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" create mode 100644 "04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" create mode 100644 "04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" create mode 100644 "04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" create mode 100644 "04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" create mode 100644 "04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" create mode 100644 "04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..9ccb0d0 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,14 @@ + + 本教程执行一个简单的线性回归来构建资本资产定价模型(CAPM),这是由William F. Sharpe和Harry Markowitz开发的一个经典模型。该模型对各资产都会产生alpha和beta值,并通过做多alpha值最高的股票进行交易。本教程将演示以下内容: +
+ ++
+ +- 如何使用历史数据
+- 设置事件处理程序
+- 进行线性回归
+- 在QuantConnect算法实验室中构建自己的函数
++ 该策略的实施表明,在上个月跑赢大盘的股票很可能在接下来的一个月里再次跑赢大盘。该算法在市场平稳时性能良好。然而,当市场波动性增加时,模型未能捕捉到alpha值,且表现不佳。我们从中了解到,市场波动降低了线性回归系数的显著性水平,特别是当我们使用日收益率来拟合模型时。 +
diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" new file mode 100644 index 0000000..7add139 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" @@ -0,0 +1,44 @@ ++ 资本资产定价模型(CAPM)描述了系统性风险与资产(通常是股票)预期收益之间的关系。给定风险的资产预期收益计算公式如下: +
+ +\[r_a = r_f + \beta_a*(r_m - r_f) + \epsilon \] + ++ 其中: +
+ +\[r_f = Risk Free Rate\] +\[\beta = Beta of the security\] + +\[r_m = Expected market return\] + +\[\epsilon = Tracking error\] + ++ 将公式重构如下,可以更好地理解这个公式: +
+ +\[(r_a - r_f ) = \beta_a*(r_m - r_f) + \epsilon \] + ++ 方程的左边给出了资产收益和无风险利率之间的差额,即"超额收益"。如果我们将市场超额收益与资产超额收益进行对比,斜率代表资产的"beta"。因此,beta也可以通过公式计算: +
+ +\[\beta = \frac{Cov(r_a,r_b)}{var(r_b)}\] + ++ 因此beta可以描述为: +
+ +\[\beta = \rho _a,_b*\frac{\sigma _a}{\sigma_b}\] + ++ 由上式可知,beta可以解释为“关联相对波动”。为了更加简化,可以通过简单的线性回归来计算beta,线性回归可以看作是解释收僧的一个因素,跟踪误差可以表示alpha。为了使这个理论对我们的算法更加便利,我们将上面的公式改为如下形式: +
+ +\[r_a = \beta*r_m + r_f*(1-\beta) + \epsilon\] + ++ 等式右边的r*(1-β) 是一个非常小的项目,在道琼斯前30强企业的背景下可以忽略不计。如果我们使用基准收益对股票收益进行回归,斜率和截距将分别为beta和alpha。 +
diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..b64df7a --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,95 @@ ++ 我们的投资逻辑简单明了。我们认为上个月跑赢大盘的股票将继续跑赢大盘。我们根据alpha值对股票进行排名,每个月我们都会对排名前两支的股票“做多”。要使这一战略发挥作用,我们需要在每月月初做下列工作: +
+ ++
+- 计算道琼斯前30强股票在过去21个交易日的历史价格,并计算它们的日收益。
+- 根据基准(S&P 500指数,SPY)对每支股票的收益进行简单的线性回归。
+- 根据截距对股票进行排名。
+- 平掉所有仓位,并购买排序列表中的排名前两支股票。
++ 道琼斯指数成份股很少变动,最近一次变动发生在2015年3月19日。为了使实施更加容易,我们在这个算法中简单地列出了当前的道琼期成份股。这意味着该算法最早的开始日期是2015年3月19日。 +
+ +步骤1:设置事件处理程序
++ 在初始化方法中,我们定义了日程事件来触发投资组合的每月重新平衡。有关如何使用日程事件的更多细节,可以阅读Documentation或查看示例ScheduledEventsAlgorithm。 +
++ ++ +def Initialize(self): + self.Schedule.On(self.DateRules.MonthStart(self.benchmark), self.TimeRules.AfterMarketOpen(self.benchmark), Action(self.rebalance)) ++步骤2:线性回归函数
++ 为了进行线性回归,我们需要编写一个函数来获取价格数据并输出回归结果。函数获得“资产价格”列表(x)和一个“基准价格”列表(y),然后计算变化百分比并进行线性回归。输出是一个包含截距和斜率的元组。 +
+ ++ ++def regression(self,x,y): + x = np.array(x) + x = np.diff(x)/x[:-1] + y = np.array(y) + y = np.diff(y)/y[:-1] + A = np.vstack([x, np.ones(len(x))]).T + result = np.linalg.lstsq(A, y)[0] + beta = result[0] + alpha = result[1] + return(alpha,beta) ++步骤3:历史功能
++ 每个月我们都会使用History API获得道琼斯30强成份股的历史价格。数据作为复杂的Slice对象从API返回。为了使其在算法中可以使用,我们将资产价格和基准价格提取到一个列表中。 +
++ ++def get_regression_data(self,symbol,history): + symbol_price = [] + benchmark_price = [] + for i in history: + bar = i[symbol] + benchmark = i[self.benchmark] + symbol_price.append(bar.Close) + benchmark_price.append(benchmark.Close) + + result = self.regression(symbol_price,benchmark_price) + return result ++步骤4:再平衡功能
++ 此功能是所有动作发生的地方,将作为预定事件在每个月的第一个交易日执行。SetHoldings的第二个参数是小数,将其设置为“1”表示算法将投资组合设置为“100%多头”而不使用杠杆。有关这一功能的更多信息可以在链接SetHoldings上阅读。 +
+ ++ +-def rebalance(self): + # 获得历史股票代码和价格,然后放入元组中 + history = self.History(self.regression_dates, Resolution.Daily) + filter = [] + for i in self.symbols: + filter.append((i,self.get_regression_data(i, history)[0])) + # 根据alpha排序筛选 + filter.sort(key = lambda x : x[1],reverse = True) + sorted_symbols = [] + for i in range(2): + sorted_symbols.append(filter[i][0]) + # 获得所持有股票的代码 + holding_list = [] + for i in self.Portfolio: + if i.Value.Invested: + holding_list.append(i.Value.Symbol) + # 如果我们不打算继续持有现有的股份,则将其出售 + if holding_list: + for i in holding_list: + if i not in sorted_symbols: + self.Liquidate(i) + # 做多列表中的两支股票 + for i in sorted_symbols: + self.SetHoldings(i,1) +diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" new file mode 100644 index 0000000..c68387d --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" @@ -0,0 +1,14 @@ ++ 我们已经证明,在一个平稳的市场中,上个月跑赢大盘的股票很可能在接下来的一个月里再次跑赢大盘。当市场波动时,线性回归的显著性水平降低,模型性能下降。我们可以通过观察资产(x)和基准(y)的协方差来理解这一点。当协方差减小到零时,beta将会减小。 +
+ +\[\hat{\beta} = \frac{Cov[x,y]}{\sum (x_i - \beta{x})^2}\] + ++ 作为实验,我们根据2015年的市场数据对算法进行了测试。对市场来说,这是一个极不稳定的时期,波动回到了接近于零的平均值,并在当年8月18日至8月25日期间下跌了近10%。该算法在今年的表现很差,收益率为-11.58%。与这一策略相关的风险包括大幅削减、缺乏对冲和止损。由于我们使用杠杆,风险增加了,因此在1月份有追加保证金的通知。我们可以通过应用以下技术来提高性能: +
+ ++
diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..1f296ed --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,9 @@ +- 进行优化:我们可以实施均值方差分析来确定每月的资产配置,选择更多的股票进行交易。这将降低我们的风险,更科学地管理投资组合。
+- 考虑beta:如果我们想要更加积极,我们可以结合alpha和beta来选择目标。这意味着我们选择的股票具有比市场波动更大的高alpha值。然而,如果我们是保守的投资者,我们可以使策略保持市场中立,这意味着投资组合不会受到市场表现的影响。例如,如果我们做多两只beta值为1和-1的股票,并分别持有相同的头寸大小,那么我们的投资组合就会变得市场中性。
++ 使用OptionChainProvider进行回溯测试。 +
++ +diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..f6f75d0 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,8 @@ ++ +++
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" index 2be6e77..a69dc45 100644 --- "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" @@ -15,11 +15,10 @@- + https://en.wikipedia.org/wiki/Dow_Jones_Industrial_Average +
+- + Sharpe, William, 1990 http://www.nobelprize.org/nobel_prizes/economic-sciences/laureates/1990/sharpe-lecture.pdf +
+步骤1:配对分类定义
self.b = b self.name = str(a) + ':' + str(b) self.df = pd.concat([a.df,b.df],axis = 1).dropna() - # The number of bars in the rolling window would be determined by the resolution, so we get this - information from the shape of the DataFrame here. + # 滚动窗口中的条数应由分辨率确定,因此我们可以得到 self.num_bar = self.df.shape[0] self.cor = self.df.corr().ix[0][1] - # Set the initial signals to be 0 + # 将初始信号设置为0 self.error = 0 self.last_error = 0 self.a_price = [] @@ -32,8 +31,7 @@步骤1:配对分类定义
def cointegration_test(self): self.model = sm.ols(formula = '%s ~ %s'%(str(self.a),str(self.b)), data = self.df).fit() - # This line conduct ADF test on the residual. ts.adfuller() returns a tuple and the first element in - the tuple is the test value. + # 此行对残差进行ADF测试,ts.adfuller() 返回元组,第一元素为 self.adf = ts.adfuller(self.model.resid,autolag = 'BIC')[0] self.mean_error = np.mean(self.model.resid) self.sd = np.std(self.model.resid) @@ -49,15 +47,14 @@步骤1:配对分类定义
[self.a_date]).dropna() self.df = pd.concat([self.df,new_df]) self.df = self.df.tail(self.num_bar) - # after updating the DataFrame, we empty the lists for the incoming data + # 更新数据框架后,我们清空输入数据列表 for list in [self.a_price,self.a_date,self.b_price,self.b_date]: list = []Step 2: Generate and Clean Pairs
+步骤2:生成并整理配对
- The function generate_pairs generates pairs using the stock symbols. self.pair_threshold and self.pair_num are pre-determined to control the number of candidate pairs. The pairs in self.pair_list would be kept and updated throughout our backtesting period. we set self.pair_threshold to 0.88 and self.pair_num to 120 to limit the number of pairs in the list. If we put too many pairs in the list, the backtesting would be too time consuming. - The function pair_clean is called after the two-stage screen. If the first pair contains stock A and stock B, and the second pair contains stock B and stock C, we would remove the second pair because the overlapped signal would disturb the balance of our portfolio. + 函数generate_pair使用股票代码生成配对。self.pair_threshold和self.pair_num是预先确定的,用于控制候选配对的数量。在我们的回溯测试期间,self.pair_list中的配对将保留并更新。我们将self.pair_threshold设置为0.88,将self.pair_num设置为120,以限制列表中配对的数量。如果我们列表中的配对过多,那么回溯测试将会非常耗时。在两阶段筛选后会调用函数pair_clean。如果第一对包含股票A和股票B,第二对包含股票B和股票C,我们将删除第二对,因为重叠的信号会干扰投资组合的平衡。
@@ -87,9 +84,9 @@-Step 2: Generate and Clean Pairs
Step 3: Warming up Period
+步骤3:预热期
- This part is under the OnData step. We set self.num_bar equals to the number of TradeBar in three months, which is determined by the resolution. During this period we fill the stock prices in lists, and assign each stock's price list to the symbol as a property. We would also remove the symbol from the symbol list if it has no data. + 此部分属于OnData步骤。我们将self.num_bar设置为三个月内TradeBar的数量,这将由决议决定。在此期间,我们将股票价格填入列表,并将每支股票的价格列表作为属性分配给代码。如果代码列表中没有数据,我们还将从代码列表中删除此代码。
@@ -105,9 +102,9 @@-Step 3: Warming up Period
self.data_count = 0 returnStep 4: Pairs Selection
+步骤4:配对选择
- This process is also under the OnData step. This step would generate pairs if it is the first trading period of this algorithm. If it's not, it will update the DataFrame and correlation coefficient of each pair in self.pair_list. After that the pairs have a correlation coefficient higher than 0.9 would be selected into self.selected_pair. Then all the pairs in self.selected_pair would be tested on their cointegration, and the pairs with a test value less than -3.34 would be selected to the final list. This step will also limit the number of stocks in the final list, by default we set self.selected_num to 10. self.count is a flag to count the number of datapoint we received. Once it reach 1-month amount, that means one trading period is passed and it would be set to 0. + 这一过程同样属于OnData步骤。如果这是此算法的第一个交易周期,则此步骤将生成配对。如果不是,它将更新self.pair_list中每对股票的数据框架和关联系数。然后将关联系数大于0.9的配对选择到self.selected_pair中。然后对self.selected_pair中的所有配对进行协整,测试值小于-3.34的配对将被选择到最终列表中。此步骤还会限制最终列表中的股票数量,在默认情况下我们将self.selected_num设置为10。self.count是一个标志,用于计算我们所接收到数据点的数量。一旦达到1个月的数量,这意味着一个交易周期已经过去,它将被设置为0。
@@ -123,31 +120,31 @@-Step 4: Pairs Selection
for pair in self.pair_list: pair.cor_update() - # Update the DataFrame and correlation selection + # 更新数据框架和关联性选择 if len(self.pair_list[0].a_price) != 0: for pair in self.pair_list: pair.df_update() pair.cor_update() self.selected_pair = [x for x in self.pair_list if x.cor > 0.9] - # Cointegration test + # 协整测试 for pair in self.selected_pair: pair.cointegration_test() self.selected_pair = [x for x in self.selected_pair if x.adf < self.BIC] self.selected_pair.sort(key = lambda x: x.adf) - # If no pair passed the two-stage test, return. + # 如果没有配对通过两阶段测试,则返回 if len(self.selected_pair) == 0: self.Log('no selected pair') self.count += 1 return - # clean the pair to avoid overlapping stocks. + # 整理配对避免出现重叠股票 self.selected_pair = self.pair_clean(self.selected_pair) - # assign a property to the selected pair, this is a signal that would be used for trading. + # 为所选配对分析属性,这是用于交易的信号 for pair in self.selected_pair: pair.touch = 0 self.Log(str(pair.adf) + pair.name) - # limit the number of selected pairs. + # 限制选择配对的数量 if len(self.selected_pair) > self.selected_num: self.selected_pair = self.selected_pair[:self.selected_num] @@ -157,14 +154,14 @@Step 4: Pairs Selection
Step 5: Trade Period
+步骤5:交易期
- It would be too long to read if we paste all the code in trading period together. Thus we would separate the code into three part: updating pairs, opening pairs trading and closing pairs trading. But all those lines are under OnData step and are under the condition: if self.count != 0 and self.count < self.one_month. This means it's in the trading period. + 如果我们把交易期间的所有代码都粘贴在一起,清单将会过长。因此,我们将代码分为三个部分: 更新配对、开始配对交易和结束配对交易。 但是所有这些行都属于OnData步骤,并且都在此条件下:即self.count != 0且self.count < self.one_month。这意味着它在交易期内。
-Updating Pairs
+更新配对
- This step would update the stock prices in each pair. It would also update the signal called 'last_error' and immediately after this the pairs would receive new signals. + 这一步将更新每对股票的价格。它还会更新名为“last_error”的信号,在此之后,配对会立即接收到新的信号。
@@ -183,10 +180,9 @@-Updating Pairs
for pair in self.trading_pairs: pair.last_error = pair.errorOpening Pairs Trading
+开始配对交易
- For each pair in self.selected_pair, we receive the current prices of the stocks, and then use the cointegration model to calculate the residual \(\epsilon\), which is assigned to the pair as a property named 'error'. self.trading.pairs is a list to store the trading pairs. Once a pairs trading is open, this pair would be add to the list, and it would be removed when the trading is closed. The property 'touch' is signal. If the residual \(\epsilon\) cross over the positive threshold standard deviation(we set \(\ 2.23*sigma\) here), the signal would become +1; while if it cross down the negative threshold deviation(\(\ -2.23*sigma\), the signal would become -1. For those pairs with +1 signal, if the error cross down positive threshold, there is a signal to open a trade. We long stock B and short stock A. For those pairs with -1 signal, if the error cross over negative threshold, we long Stock A and short stock B. - When we opening a trade, we need to record the current model, current mean and standard deviation of the residual. This is necessary because if we enter a new trading period and the trade has not been closed yet, the cointegration model, mean and standard deviation of the pairs would be changed. We need to use the original thresholds to close the trades. while adding the pairs into self.trading_pairs, we also need to set the signal 'touch' to 0 for further use. + 对于self.selected_pair中的每对股票,我们接受当前的股票价格,然后使用协整模型计算残差\(\epsilon\),这是分配给配对的属性,命名为“误差”。 self.trading.pairs是存储交易配对的列表。一旦配对交易开始,配对就会被添加到列表中,当交易结束时将被删除。属性“touch”是一个信号。如果残差\(\epsilon\)超出正阈值标准偏差(我们在此设置为\(\ 2.23*sigma\)),信号会+ 1;如果低于负阈值偏差(\(\ -2.23*sigma\),则信号会-1。对于那些获得+1信号的配对,如果误差超过正阈值,则会有开始交易的信号。我们买入股票B并抛出股票A。对于那些获得-1信号的配对,如果误差低于负阈值,我们买入股票A并抛出股票B。这是必要的,当我们开始交易时,我们需要记录残差的当前模型、当前平均值和标准。因为如果我们进入一个新的交易周期,而交易尚未结束,配对的协整模型、平均值和标准差将发生变化。我们需要使用最初的阈值来结束交易。同时把配对添加到self.trading_pairs中。我们还需要将信号“touch”设置为0,以便进一步使用。
@@ -229,9 +225,9 @@-Opening Pairs Trading
Closing Pairs Trading
+结束配对交易
- This part controls pairs trading exit. It works similar to the opening part. It uses the recorded original model and thresholds to determine whether or not we should close the position. If the residual \(\epsilon\) reaches our closing threshold, we liquidate stock A and stock B to close. If the residual continue to deviate from the mean and goes too far, we would also close the position to stop loss. When we close a pairs trading, we also remove the pairs from self.trading_pairs. + 此部分控制退出交易。它的工作原理与开始部分相似。它使用记录原始模型和阈值来决定我们是否应该结束仓位。如果残差\(\epsilon\)达到结束阈值,我们将平仓股票A和股票B结束交易。如果残差继续偏离平均值,并且偏离太远,我们也会平仓止损。当我们结束配对交易时,我们也从self.trading_pair中删除了这些配对。
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" new file mode 100644 index 0000000..9361eda --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" @@ -0,0 +1,20 @@ ++ 我们使用了2013年1月至2016年12月的10分钟分辨率数据对该策略进行了回溯测试。为了证明样本的培训结果,我们随机选取了2016年9月7日至2013年11月30日的训练期。 +
++ 下表展示了上述训练期间所选择的前10组配对。可以看出,关联系数最高的配对不一定具有最好的ADF测试值。我们用ADF测试值来进行排序,因为它更加稳健。 +
+ ++ +
+ 下表的上半部分是ING和TCB配对的股票价格。下半部分表示残差偏离平均值的次数。如果我们将开始阈值设为2.32,则有5个交易机会。 +
+ ++ +
+ 下图是残差的密度图。从图中可以看出,误差近似正常分布。 +
+ +diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" new file mode 100644 index 0000000..fa65597 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" @@ -0,0 +1,3 @@ +
+ 该策略被认为是市场中性策略,因为它是一种对价格趋同进行押注的多/空策略。回溯测试beta为-0.112,在我们的预期范围内。从理论上讲,我们使用的分辨率越高,获胜的几率就越高,因为一方面,更高的分辨率会增加我们训练期间的数据点数量,这将使我们更难通过两阶段测试;另一方面,高分辨率的数据可以让我们更准确地捕捉微小的利润。然而,在性能和回测时间之间存在权衡。较高的分辨率将导致回溯测试时间急剧增加。初始化步骤中股票的数量也会影响我们的性能。理论上,我们拥有的股票越多,我们可能选择的股票配对就越好。但过多的股票也会耗费时间,值得一提的是,每个行业的优化参数是不同的。这取决于特定行业价格模式的特点。绘制出配对价格和观察残差是调整阈值的较好选择。 +
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..69b6365 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ ++ +diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..b50463a --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,16 @@ ++ +++ +
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" new file mode 100644 index 0000000..64620eb --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" @@ -0,0 +1,3 @@ +- + George J. Miao High Frequency and Dynamic Pairs Trading Based on Statistical Arbitrage Using a Two-Stage Correlation and Cointegration Approach Online Copy +
+- + Cartea & Penalva, 2012, Where is the value in high frequency trading? Online Copy +
+- + Gatev, Goetzmann, & Rouwenhorst, 2006, Pairs trading: Performance of a relative-value arbitrage rule. The Review of Financial Studies, 19(3), 797–827. Online Copy +
+- + Engle and Granger, Co-integration and error correction: Representation, estimation, and testing. Econometrica, 55(2), 251–276. Online Copy +
+ ++ 近年来,投资要素在全球机构投资者中非常受欢迎。在本教程中,我们首先开发了一个要素选择模型,用于测试要素是否具有区分股市中潜在赢家和输家的能力。然后,根据2015年基于要素的土耳其股票选择模型,我们利用这些预先选择要素,实现了要素排序选股算法,Ayhan Yüksel。 +
diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html index eb8ac07..663d5e1 100755 --- a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html +++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html @@ -51,7 +51,7 @@Step 1: Ranking the stocks by factor values
2. We extract the factor values of candidate stocks at the beginning of each month and sort the stocks in ascending order of their factor values. Here we use 12-months' total risk-based capital datax.FinancialStatements.TotalRiskBasedCapital.TwelveMonthsas an example. - It is the sum of Tier 1 and Tier 2 Capital.x.Symbol.Value+ It is the sum of Tier 1 and Tier 2 Capital.x.Symbol.Valuecan give the string symbol of selected stock x. Then we save those sorted symbols asself.symbol. diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" new file mode 100644 index 0000000..b8cefb8 --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" @@ -0,0 +1,236 @@ ++ QuantConnect为美国股市提供了晨星基本面数据。估值比率是每日数据。对于其他项目,如营业比率和财务报表,可以根据不同的属性获得不同时期的数据。详细的可用要素请参阅Data Library。 +
++ 该算法的设计是为了每次测试一个要素的重要性。 +
+ ++ ++def Initialize(self): + self.SetStartDate(2005,01,01) # 设置开始日期 + self.SetEndDate(2012,03,01) # 设置结束日期 + self.SetCash(50000) # 设置策略现金 + self.UniverseSettings.Resolution = Resolution.Daily + self.AddUniverse(self.CoarseSelectionFunction, self.FineSelectionFunction) + self.AddEquity("SPY") # add benchmark + self.numOfCourseSymbols = 200 + self.numOfPortfolio = 5 + self._changes = None + self.flag1 = 1 # 控制粗选和精选函数每月重新平衡的变量 + self.flag2 = 0 # 控制OnData函数每月重新平衡的变量 + self.flag3 = 0 # 记录重新平衡次数的变量 + # 将不同投资组合的月收益存储在一个数据框架内 + self.df_return = pd.DataFrame(index = range(self.numOfPortfolio+1)) + # 预定事件在SPY的第一个交易日解除 + self.Schedule.On(self.DateRules.MonthStart("SPY"), self.TimeRules.AfterMarketOpen("SPY"), Action(self.Rebalancing)) ++步骤1:按要素值对股票进行排序
++ 1. 首先,我们按每日美元交易量对股票进行排序,并将美元交易量最高的股票作为候选股票。有一种方便的方法使用我们的集合选择API。在默认情况下,集合每天都会刷新,但也可以根据需要经常刷新。这是由可变
+UniverseSettings.Resolution控制的。您可以参考documentation了解更多详细信息。在这里,我们使用Scheduled events API来触发在每个月第一个交易日运行的代码,并使用三个标志变量来控制CoarseSelection,FineSelection和Ondata函数的重新平衡。 ++ 粗略集合选择是由QuantConnect提供的内置集合数据,它允许你对超过16,000个符号的集合进行筛选,在你的算法之前进行粗略的筛选。由于粗选功能考虑了包括基金在内的所有无基础数据股票,所以我们需要属性
+x.HasFundamentalData将这些股票排除在我们的候选股票池之外。 ++ ++ +# 按照每日美元交易量对数据进行排序,并取排名最上面的条目 +def CoarseSelectionFunction(self, coarse): + if self.flag1: + CoarseWithFundamental = [x for x in coarse if x.HasFundamentalData] + sortedByVolume = sorted(CoarseWithFundamental, key=lambda x: x.DollarVolume, reverse=True) + top = sortedByVolume[:self.numOfCourseSymbols] + return [i.Symbol for i in top] + else: + return [] +++ 2. 我们在每个月初提取候选股票的要素值,并按其要素值的升序对股票进行排序。例如,这里我们使用了12个月的总风险基础资本数据
+ +x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths。它是一级资本和二级资本的总和。x.Symbol.Value可以给出所选股票x的串符号,然后将这些排序后的符号保存为self.symbol。 ++ ++ +def FineSelectionFunction(self, fine): + if self.flag1: + self.flag1 = 0 + self.flag2 = 1 + # 通过删除要素值为零的股票来进行精细筛选 + filtered_fine = [x for x in fine if x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths != 0 ] + # 按照要素值倒序排序 + sorted_fine = sorted(filtered_fine, key=lambda x: x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths, reverse=True) + self.symbol = [str(x.Symbol.Value) for x in sorted_fine] + # 要素值 = [x.ValuationRatios.PERatio for x in sorted_fine] + self.flag3 = self.flag3 + 1 + return [] + else: + return [] ++步骤2:计算投资组合的月收益
++ 1. 在每个月底,我们提取每支股票的一个月历史收盘价,并计算月收益。 +
+ ++ ++ + +sorted_symbol = self.symbol +self.AddEquity("SPY") # 添加基准 +for x in sorted_symbol: + self.AddEquity(x) +history = self.History(20,Resolution.Daily) +monthly_return =[] +new_symbol_list =[] +for j in range(len(sorted_symbol)): + try: + daily_price = [] + for slice in history: + bar = slice[sorted_symbol[j]] + daily_price.append(float(bar.Close)) + new_symbol_list.append(sorted_symbol[j]) + monthly_return.append(daily_price[-1] / daily_price[0] - 1) + except: + self.Log("No history data for " + str(sorted_symbol[j])) + del daily_price +# 月收益列表的长度应能够被投资组合的数量整除 +monthly_return = monthly_return[:int(math.floor(len(monthly_return) / self.numOfPortfolio) * self.numOfPortfolio)] +++ 2. 我们将股票分为5个投资组合,计算每个投资组合的平均月收益。然后在数据框架
+ +df_return的最后一行添加基准“SPY”的月收益。 ++ ++reshape_return = np.reshape(monthly_return, (self.numOfPortfolio, len(monthly_return)/self.numOfPortfolio)) +# 计算不同投资组合的平均收益 +port_avg_return = np.mean(reshape_return,axis=1).tolist() +# 将"SPY"的收益作为基准添加到收益列表的末尾 +benchmark_syl = self.AddEquity("SPY").Symbol +history_benchmark = self.History(20,Resolution.Daily) +benchmark_daily_price = [float(slice[benchmark_syl].Close) for slice in history_benchmark] +benchmark_monthly_return = (benchmark_daily_price[-1]/benchmark_daily_price[0]) - 1 +port_avg_return.append(benchmark_monthly_return) +self.df_return[str(self.flag3)] = port_avg_return ++步骤3:生成度量来测试要素重要性
++ 在得到投资组合的月收益和基准后,我们计算了整个回溯测试期间各投资组合的年平均收益和基准之上的超额收益。然后我们生成三个度量来判断每个因素的重要性。 +
+ ++
+ +- 第一个度量是投资组合收益与其排名之间的相关性。关联系数绝对值应大于0.8。
+- 如果排名第一投资组合的收益大于排名垫底的投资组合,我们将其定义为盈利投资组合和亏损投资组合,反之亦然。盈利概率是盈利投资组合收益超过基准收益的概率。亏损概率是指亏损组合收益低于基准的概率。如果要素显著,则损益概率均应大于0.4。
+- 盈利投资组合的超额收益应大于0.25,亏损投资组合的超额收益应小于0.05。
++ ++ +def calculate_criteria(self,df_port_return): + total_return = (df_port_return + 1).T.cumprod().iloc[-1,:] - 1 + annual_return = (total_return+1)**(1./6)-1 + excess_return = annual_return - np.array(annual_return)[-1] + correlation = annual_return[0:5].corr(pd.Series([5,4,3,2,1],index = annual_return[0:5].index)) + # 高收益的高要素 + if np.array(total_return)[0] > np.array(total_return)[-2]: + loss_excess = df_port_return.iloc[-2,:] - df_port_return.iloc[-1,:] + win_excess = df_port_return.iloc[0,:] - df_port_return.iloc[-1,:] + loss_prob = loss_excess[loss_excess<0].count()/float(len(loss_excess)) win_prob = win_excess[win_excess>0].count()/float(len(win_excess)) + win_port_excess_return = np.array(excess_return)[0] + loss_port_excess_return = np.array(excess_return)[-2] + # 低收益的高要素 + else: + loss_excess = df_port_return.iloc[0,:] - df_port_return.iloc[-1,:] + win_excess = df_port_return.iloc[-2,:] - df_port_return.iloc[-1,:] + loss_prob = loss_excess[loss_excess<0].count()/float(len(loss_excess)) win_prob = win_excess[win_excess>0].count()/float(len(win_excess)) + win_port_excess_return = np.array(excess_return)[-2] + loss_port_excess_return = np.array(excess_return)[0] + test_result = {} + test_result["correelation"]=correlation + test_result["win probality"]=win_prob + test_result["loss probality"]=loss_prob + test_result["win portfolio excess return"]=win_port_excess_return + test_result["loss portfolio excess return"]=loss_port_excess_return + + return test_result++ +
+ ++ + + +要素显著性测试结果 ++ +要素 +FCFYield +BuyBackYield +PriceChange1M +TrailingDividendYield +EVToEBITDA +RevenueGrowth +BookValuePerShare ++ +关联性 +-0.936 +-0.987 +0.918 +-0.981 +0.939 +0.89 +-0.92 ++ +盈利概率 +0.630 +0.639 +1 +0.667 +0.722 +0.69 +0.69 ++ +亏损概率 +0.426 +0.472 +1 +0.518 +0.472 +0.42 +0.40 ++ +超额收益(盈利) +0.324 +0.212 +0.303 +0.225 +0.414 +0.23 +0.27 ++ + +超额收益(亏损) +0.060 +0.037 +-1.67 +0.043 +0.042 +0.07 +0.06 ++ 我们选择了4个要素:FCFYield、PriceChange1M、BookValuePerShare和RevenueGrowth。 +
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" new file mode 100644 index 0000000..00bbed2 --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" @@ -0,0 +1,17 @@ +接下来我们将选择股票。 +步骤1:按照要素值对股票排序
++ 首先,我们删除没有基础数据或要素值为零的股票。对于每种预先选择的因素,我们根据这些因素值对股票进行排序。当要素相关性为负时,顺序递减;要素相关性为正时,顺序递增。 +
+ +步骤2:计算平均加权综合要素得分
++ 第二步是使用不同的选择要素变量来计算每支股票的平均加权综合要素得分。 +
+ ++
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..bcf0bc2 --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +- 首先,根据要素顺序,我们将股票集合分成不同的五分位投资组合,分别为P1、P2、P3、P4和P5。投资组合的排序列出了要素模型的偏好,即第一投资组合(P1)对应“最优”的股票,第五投资组合(P5)对应“最不喜爱”的股票。假设总共有n支股票。然后进入第一投资组合的股票得分为p,进入第二级投资组合的股票得分为p-1,以此类推。然后我们可以得到每支股票的分数。我们对每个要素都进行了相同的计算。
+- 其次,我们将6个因素的得分结合起来,使用平均加权方案来计算“综合要素得分”。然后可以得到每支股票的综合要素得分。
+- 第三,然后我们根据综合要素得分对我们集合中的股票进行排名,并在每个月初选择排名最高的20支股票来构建我们的投资组合。
+- 每个月月底,我们都会重复上述步骤来构建新的投资组合,调整持有的股票。
++ +diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..145c7bf --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,5 @@ ++ +++
diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..e81a4a4 --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +- + Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy +
++ 动量异常的主要原因是投资者的行为偏差,例如反应不足和确认偏差。动量策略通常会使用由成千上万只股票组成的投资组合来计算动量要素收益。这对于持有小型投资组合的小型散户投资者来说是不可能的。与大型对冲基金相比,它们受到限制,无法进行多样化投资。在本教程中,我们将构建一个由50支股票组成的小型投资组合,以检查动量所产生影响。 +
diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..61298fc --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,63 @@ ++ 投资集合包括所有美国上市公司。没有基本数据的股票被排除在集合之外。 +
++++def CoarseSelectionFunction(self, coarse): + if self.yearly_rebalance: + # 放弃没有基本数据的股票 + self.filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData)] + return self.filtered_coarse + else: + return [] +++ 在
+FineSelectionFunction中,由于流动性较低,市值最低的股票(占集合的25%)被排除在外。动量被定义为过去12个月的股市收益。动量利润是根据排名公司的年度收益进行计算的。排名周期为一年。 ++++ def FineSelectionFunction(self, fine): + if self.yearly_rebalance: + # 计算年收益和市值 + for i in fine: + i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio)) + top_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)[:int(len(fine)*0.75)] + has_return = [] + for i in top_market_cap: + history = self.History([i.Symbol], timedelta(days=365), Resolution.Daily) + if not history.empty: + close = history.loc[str(i.Symbol)]['close'] + i.returns = (close[0]-close[-1])/close[-1] + has_return.append(i) + sorted_by_return = sorted(has_return, key = lambda x: x.returns) + self.long = [i.Symbol for i in sorted_by_return[-10:]] + self.short = [i.Symbol for i in sorted_by_return[:10]] + + return self.long+self.short + else: + return [] +++ 投资者做多表现最好的10支股票,做空表现最差的10支股票。投资组合每年都进行平均加权和重新平衡。 +
++diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..6bbcd8e --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ ++ def OnData(self, data): + if not self.yearly_rebalance: return + if self.long and self.short: + stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested] + # 平仓未进入交易清单的股票 + for i in stocks_invested: + if i not in self.long+self.short: + self.Liquidate(i) + for i in self.short: + self.SetHoldings(i, -0.5/len(self.short)) + for i in self.long: + self.SetHoldings(i, 0.5/len(self.long)) + self.long = None + self.short = None + self.yearly_rebalance = False +++ +diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..0cfa5d6 --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..f770bb0 --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ ++ +++ 套利交易在外汇市场上很常见。此策略系统性地出售低利率货币,买入高利率货币。资产的“套利”是持有该资产的机会成本。套利交易策略持有相对于其他货币的某一种货币,以获取利率之间的价差。我们可以把这种策略看作是从一个利率较低的国家借钱,然后将钱投资到另一个利率较高的国家。 +
diff --git "a/04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..2fc26c1 --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,19 @@ +导入自定义数据
++ 央行利率数据来自Quandl。对于交易集合来说,我们选择了央行利率数据在Quandl中可用的9种货币。导入自定义数据的方法是
+AddData(type, symbol, resoltuion, timeZone, fillDataForward)。由于自定义文件具有唯一的colume名称,因此我们需要创建一个类别来指定利率的colume名称。 ++++from QuantConnect.Python import PythonQuandl +class QuandlRate(PythonQuandl): + def __init__(self): + self.ValueColumnName = 'Value' +++ 我们将利率符号和对应的外汇资产符号保存到字典中。 +
+每月调整交易
++ 下一步,我们根据利率的值对外汇符号进行排序。这种算法会做多利率最高的货币,做空利率最低的货币。该战略每月都会重新调整。采用日程事件法在每个月的第一个交易日触发重新调整事件。 +
diff --git "a/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..1bb774b --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ ++ +diff --git "a/04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..18f54dd --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ ++ +++
diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..6b02628 --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +- + Quantpedia - FX Carry Trade +
++ 此算法检验了国家指数交易所交易基金的动量效应。 +
diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..7b69538 --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,6 @@ ++此算法选取35个国家的指数基金作为交易集合。由于集合中的符号不会随时间发生变化,我们使用动量指示器辅助方法
+self.MOM(symbol, period, resolution)。这种辅助方法会创建一个新的动量指示器,并计算证券在绝对n周期中的变化。与指示器构造函数Momentum(period)相反,辅助方法指示器将根据给定的分辨率自动更新。 ++ 在
diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" new file mode 100644 index 0000000..b3aecfd --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" @@ -0,0 +1,3 @@ +Initialize()中,我们将预热周期设置为动量周期并创建字典self.data,以保存每个符号的指示符。每个月,将选择6个月势头最好的前5支指数基金进行多头仓位。没有列在榜首的基金将被斩仓。采用日程事件API制定投资组合,在每个月月初时重新平衡。 ++ 算法结果表明,国家指数存在动量效应。在2002年至2018年的16年时间里,持有一个月的策略(即在过去6个月中表现最好的5个国家指数基金投资组合)的表现每年要超出平均加权投资组合约40%。 +
diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..cd34f0c --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,14 @@ +动量效应
++ +++ ++平均加权基准
++ +diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..2334ff4 --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..c26b591 --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ ++ +++ 成长型股票指的是高质量、成功的公司,它们的盈利预期将继续以高于市场平均水平的速度增长。成长型股票通常具有高市盈率(P/E)和高市净率(P/B)。有时,成长型股票被认为价格过高。价值型股票是指股息率高或财务比率(如市盈率和市净率)低的股票。价值型股票通常会被市场低估。此算法将基于投资者情绪和价值型股票相对于成长型股票表现之间的关系来建立多空头寸。 +
diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..3104b1b --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,120 @@ +投资情绪的测量
++ 要衡量投资者的情绪,我们使用的指标是:芝加哥期权交易所(CBOE)的股票看跌/看涨比率和市场波动率(VIX)指数。VIX指数是利用标准普尔500指数期权的隐含波动率构建的,它显示了市场对30天波动率的预期。芝加哥期权交易所(CBOE) 股票看跌/看涨比率的计算方法是将芝加哥期权交易所股票看跌期权的交易量除以芝加哥期权交易所股票看涨期权的交易量。看跌/看涨期权比率上升,意味着股票交易员买入的看跌期权多于看涨期权,表明市场人气看跌,而看跌/看涨比率下降则被视为市场人气上涨。 +
++ 我们从Quandl导入每日波动率数据。CBOE提供了从2006年11月1日到现在的成交量看跌/看涨比率数据,因此我们从CBOE导入自定义数据。 +
++++class SentimentAndStyleRotationAlgorithm(QCAlgorithm): + def Initialize(self): + self.SetStartDate(2010, 1, 1) + self.SetEndDate(2018, 7, 1) + self.SetCash(100000) + self.AddData(QuandlVix, "CBOE/VIX", Resolution.Daily) + self.AddData(CBOE, "PutCallRatio", Resolution.Daily) + +class QuandlVix(PythonQuandl): + '''Quandl VIX data class''' + def __init__(self): + self.ValueColumnName = "VIX Close" + +class CBOE(PythonData): + '''Cboe Equity Volume Put/Call Ratios (11-01-2006 to present) Custom Data Class''' + def GetSource(self, config, date, isLiveMode): + return SubscriptionDataSource("http://www.cboe.com/publish/scheduledtask/mktdata/datahouse/equitypc.csv", SubscriptionTransportMedium.RemoteFile) + + def Reader(self, config, line, date, isLiveMode): + if not (line.strip() and line[0].isdigit()): return None + index = CBOE() + index.Symbol = config.Symbol + + try: + # 示例文件格式: + # 日期 看涨 看跌 合计 看跌/看涨比率 + # 11/1/06 976510 623929 1600439 0.64 + data = line.split(',') + index.Time = datetime.strptime(data[0], "%m/%d/%Y").strftime("%Y-%m-%d") + index.Value = Decimal(data[4]) + + except ValueError: + return None + + return index ++股票增长和价值的衡量
++ 纽交所和纳斯达克的所有股票都被用作投资集合。在
+CoarseSelectionFunction中,我们剔除了没有基本数据的基金。在FineSelectionFunction中,股票根据市值大小被分成十等分。我们的算法只使用前百分之三十来避免小型非流动性股票的潜在问题。 ++++def FineSelectionFunction(self, fine): + if self.month_start: + self.selection = True + + fine = [i for i in fine if i.EarningReports.BasicAverageShares.ThreeMonths>0 + and i.EarningReports.BasicEPS.TwelveMonths>0 + and i.ValuationRatios.PERatio>0 + and i.ValuationRatios.PBRatio>0] + # 计算市场价值并将“市值”属性添加到精细集合对象中 + for i in fine: + i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio)) + # 根据市值对精细对象分类 + sotrted_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True) + decile_top1 = sotrted_market_cap[:floor(len(sotrted_market_cap)/10)] + decile_top2 = sotrted_market_cap[floor(len(sotrted_market_cap)/10):floor(len(sotrted_market_cap)*2/10)] + decile_top3 = sotrted_market_cap[floor(len(sotrted_market_cap)*2/10):floor(len(sotrted_market_cap)*3/10)] +++ 在接下来的步骤中,我们根据市净率将十等分中的每一份再细分为五个投资组合。对于前百分之三十的股票,价值型投资组合由市净率最低的五分之一公司组成,而成长型投资组合则由市净率最高的股票组成。 +
+++ ++sorted_PB1 = sorted(decile_top1, key = lambda x: x.ValuationRatios.PBRatio) +sorted_PB2 = sorted(decile_top2, key = lambda x: x.ValuationRatios.PBRatio) +sorted_PB3 = sorted(decile_top3, key = lambda x: x.ValuationRatios.PBRatio) +# 价值型投资组合由市净率最低的五分之一公司组成 +PB_bottom1 = sorted_PB1[:floor(len(decile_top1)/5)] +PB_bottom2 = sorted_PB2[:floor(len(decile_top2)/5)] +PB_bottom3 = sorted_PB3[:floor(len(decile_top3)/5)] +self.value_portfolio = [i.Symbol for i in PB_bottom1 + PB_bottom2 + PB_bottom3] +# 成长型投资组合由市净率最高的五分之一公司组成 +PB_top1 = sorted_PB1[-floor(len(decile_top1)/5):] +PB_top2 = sorted_PB2[-floor(len(decile_top2)/5):] +PB_top3 = sorted_PB3[-floor(len(decile_top3)/5):] +self.growth_portfolio = [i.Symbol for i in PB_top1 + PB_top2 + PB_top3] ++投资者情绪和股票风格之间的关系
++ 根据Lee和Song的研究论文《When Do Value Stocks Outperform Growth Stocks?: Investor Sentiment and Equity Style Rotation Strategies》,当芝加哥期权交易所股票看跌/看涨比率相对较低,并且波动率指数相对较高时,价值型股票的表现往往优于成长型股票。当看跌/看涨比率和波动率指数均较高时,价值组合的表现明显要逊于成长型投资组合。要将每日看跌/看涨比率和波动率数据转换为月度数值,我们取最近一个月和前六个月的平均值。 +
++ 如果最近芝加哥期权交易所的月平均看跌/看涨比率低于6个月平均水平,而波动率指数(VIX)的一个月平均水平高于6个月平均水平,那么该算法就会做多由排名前百分之三十价值股(市净率最低的五分之一)组成的平均加权投资组合。如果最近芝加哥期权交易所的月平均看跌/看涨比率和VIX指数均高于6个月平均水平,该算法就会做空价值股。否则,该算法既做多价值型股票,也做多成长型股票。持仓期为三个月,投资组合每三个月重新平衡一次。 +
++diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..9af8464 --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ ++stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested] +for i in stocks_invested: + if i not in self.value_portfolio+self.growth_portfolio: + self.Liquidate(i) + +if self.vix_SMA_1.Current.Value > self.vix_SMA_6.Current.Value: + if self.PCRatio_SMA_1.Current.Value < self.PCRatio_SMA_6.Current.Value: + long_weight = 1/len(self.value_portfolio) + for long in self.value_portfolio: + self.SetHoldings(long, long_weight) + elif self.PCRatio_SMA_1.Current.Value > self.PCRatio_SMA_6.Current.Value: + short_weight = 1/len(self.value_portfolio) + for short in self.value_portfolio: + self.SetHoldings(short, -short_weight) +else: + long_weight = 1/len(self.value_portfolio+self.growth_portfolio) + for long in self.value_portfolio+self.growth_portfolio: + self.SetHoldings(long, long_weight) +++ +diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..d965226 --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..69d32c7 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,6 @@ ++ +++ 资产增长效基于高资产增长股票的表现弱于低资产增长股票。一些研究认为,低资产成长型股票的收益溢价与风险补偿是一致的。有两种流行的观点支持这种回报溢价。一种观点是,随着公司的成长,公司的资产组合风险会降低,因为现有资产取代了公司未来预期投资的资产价值。第二种观点是,由于将过去的收益推断为高资产成长型企业的增长,导致了对成长型企业的系统性市场定价错误。 +
++ 这一策略将在低资产增长型公司做多,同时在高资产增长的公司做空。值得注意的是,这一策略需要根据当前和过去一年的基本数据来进行分析。因此,这种策略需要一年的实时交易时间来确定信号。 +
\ No newline at end of file diff --git "a/04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..983e337 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,57 @@ ++ 第一步是粗略和精细集合选择。通过粗选,我们创建了一个包含所有在纽交所、美国证券交易所和纳斯达克上市的非金融类美国股票的投资领域,这些股票都包含基本数据。这一集合将被保存下来,这样我们就可以对下一年中总资产的年度变化进行分析。 +
++++def CoarseSelectionFunction(self, coarse): + if self.yearly_rebalance: + filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData) + and (x.Market == "usa")] + return filtered_coarse + else: + return [] + +def FineSelectionFunction(self, fine): + if self.yearly_rebalance: + fine = [x for x in fine if x.FinancialStatements.BalanceSheet.TotalAssets.Value > 0 + and ((x.SecurityReference.ExchangeId == "NYS") or (x.SecurityReference.ExchangeId == "NAS") or (x.SecurityReference.ExchangeId == "ASE")) + and (x.CompanyReference.IndustryTemplateCode!="B") + and (x.CompanyReference.IndustryTemplateCode!="I")] + if not self.previous_fine: + self.previous_fine = fine + self.yearly_rebalance = False + return [] + else: + self.filtered_fine = self.Calculate(fine,self.previous_fine) + sorted_filter = sorted(self.filtered_fine, key=lambda x: x.delta_assets) + self.filtered_fine = [i.Symbol for i in sorted_filter] + self.previous_fine = fine + return self.filtered_fine + else: + return [] +++ 在精细集合选择中,我们从上一年和当年的股票中计算出它们的总资产增长。然后根据采用的计算按照升序对股票进行排序。要注意的是,我们通过去年总资产的增长比例来计算样本公司之间的规模差异。 +
++++def Calculate(self, current, previous): + growth = [] + for stock_data in current: + try: + prev_data = None + for x in previous: + if x.Symbol == stock_data.Symbol: + prev_data = x + break + stock_data.delta_assets = (float(stock_data.FinancialStatements.BalanceSheet.TotalAssets.Value)-float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value))/float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value) + growth.append(stock_data) + except: + pass + return growth +++ 在
diff --git "a/04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..04cf1c1 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +OnData()中,我们做空排序列表中前百分之十的股票,做多后百分之十的股票。投资组合每年会在6月底重新调整。 ++ +diff --git "a/04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..a9d5834 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ ++ +++
\ No newline at end of file From 9af6160d72f423673858345735b2e212bb7c28a5 Mon Sep 17 00:00:00 2001 From: Kamuela Franco- + Quantpedia - Asset Growth Effect +
+Date: Wed, 2 Oct 2019 00:09:50 +0100 Subject: [PATCH 092/215] Fix typographical error --- .../02 Introduction to Options/01 What Will I learn %3F.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html b/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html index 2e6c07b..f05701e 100644 --- a/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html +++ b/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html @@ -1,7 +1,7 @@ General Features of OptionsQuantConnect Options API-Options Pricing: Black-Sholes-Merton Model+Options Pricing: Black-Scholes-Merton ModelStochastic ProcessMonte Carlo MethodThe Greek LettersFrom 5b30b123ecf13e09e05e6be8ac1b5a2f7a9db2a7 Mon Sep 17 00:00:00 2001 From: JaredDate: Tue, 8 Oct 2019 15:04:29 -0700 Subject: [PATCH 093/215] Update 05 Planning Your Lesson.html --- .../05 Planning Your Lesson.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html b/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html index 672b9be..6174895 100644 --- a/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html +++ b/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html @@ -63,7 +63,7 @@ 2. Strategy Implementation
Consolidators Equities
Assigned
Completed
Assigned
Completed
Assigned
Completed
Assigned
+Completed
Separation of Concerns with the Algorithm Framework
A simple strategy to buy SPY each morning on market open using the algorithm framework - a scaffolding for powerful strategy design.
The Algorithm Framework
A simple strategy to buy SPY each morning on market open using the algorithm framework - a scaffolding for powerful strategy design.
Pairs Trading with Cointegration Test
Scanning a basket of assets monthly for potential cointegration and making a pairs trade when detect a divergent pair. Using scheduled events for the cointegration test, and
Pairs Trading with Cointegration Test
Scanning a basket of assets monthly for potential cointegration and making a pairs trade when detect a divergent pair. Using scheduled events for the cointegration test.
Sentiment Analysis on Stocks
Harness Psychsignal data to rank the sentiment of a basket of US Equity stocks and invest in those with the most postive sentiment.
Sentiment Analysis on Stocks
Harness Psychsignal data to rank the sentiment of a basket of US Equity stocks and invest in those with the most positive sentiment.
Our investment logic is simple and straightforward. We assume that stocks which beat the market last month will continue to beat the market. We rank stocks according to their alpha, and each month we "long" the top two stocks. For this strategy to work, we need to do the following at the start of each month:
-Dow Jones components change very infrequently, with the last change being on March 19th, 2015. To make the implementation easier we have simply listed the current Dow components in this algorithm. This means that the earliest start date of this algorithm is March 19th, 2015.
-In the initialize method we define a Scheduled Event to trigger a monthly re-balancing of the portfolio. For more details about how to use Scheduled Events, you can read the Documentation or see the example ScheduledEventsAlgorithm.
def Initialize(self): - self.Schedule.On(self.DateRules.MonthStart(self.benchmark), self.TimeRules.AfterMarketOpen(self.benchmark), Action(self.rebalance)) --
- In order to conduct linear regression, we need to write a function to take the price data and output the regression results. The function takes a list of the "asset prices" (x) and a list of the "benchmark prices" (y). It then calculates the percentage change and conducts a linear regression. The output is a tuple which contains the intercept and slope. + Each month we get the historical prices of the DOW30 components using the History API. The data is returned from the API as a pandas.DataFrame indexed by Symbol objects. The close data is selected and the data frame is unstack to create columns of Symbol objects.
-def regression(self,x,y): - x = np.array(x) - x = np.diff(x)/x[:-1] - y = np.array(y) - y = np.diff(y)/y[:-1] - A = np.vstack([x, np.ones(len(x))]).T - result = np.linalg.lstsq(A, y)[0] - beta = result[0] - alpha = result[1] - return(alpha,beta) -+
# Fetch the historical data to perform the linear regression +history = self.History( + self.symbols + [self.benchmark], + self.lookback, + Resolution.Daily).close.unstack(level=0)
- Each month we get the historical prices of the DOW30 components using the History API. The data is returned from the API as complex Slice objects. To make this useful in the algorithm we extract the asset prices, and benchmark prices to a list. + We aim to trade the two assets with the highest alpha to the benchmark. In order to conduct linear regression to find the alpha (linear regression intercept), we need to compute returns (percentage change of closing price) benchmark and the asset then conduct a linear regression.
def SelectSymbols(self, history): + '''Select symbols with the highest intercept/alpha to the benchmark + ''' + alphas = dict() -def get_regression_data(self,symbol,history): - symbol_price = [] - benchmark_price = [] - for i in history: - bar = i[symbol] - benchmark = i[self.benchmark] - symbol_price.append(bar.Close) - benchmark_price.append(benchmark.Close) + # Get the benchmark returns + benchmark = history[self.benchmark].pct_change().dropna() - result = self.regression(symbol_price,benchmark_price) - return result -+ # Conducts linear regression for each symbol and save the intercept/alpha + for symbol in self.symbols: + + # Get the security returns + returns = history[symbol].pct_change().dropna() + returns = np.vstack([returns, np.ones(len(returns))]).T + + # Simple linear regression function in Numpy + result = np.linalg.lstsq(returns, benchmark) + alphas[symbol] = result[0][1] + + # Select symbols with the highest intercept/alpha to the benchmark + selected = sorted(alphas.items(), key=lambda x: x[1], reverse=True)[:2] + return [x[0] for x in selected]
- This function is where all the action happens, it will be executed on the first trading day of each month as a scheduled event. The second argument of SetHoldings is a decimal, setting this to "1" tells the algorithm to set the portfolio as "long 100%" with no leverage. More information on the function can be read on this link: SetHoldings. + This function is where all the action happens, it will be executed on the first trading day of each month as a scheduled event. The algorithm closes all positions of securities that were not selected using Liquidate and go 100% long for both of the selected symbols using SetHoldings.
-def Rebalance(self): + + # Fetch the historical data to perform the linear regression + history = self.History( + self.symbols + [self.benchmark], + self.lookback, + Resolution.Daily).close.unstack(level=0) + + symbols = self.SelectSymbols(history) + + # Liquidate positions that are not held by selected symbols + for holdings in self.Portfolio.Values: + symbol = holdings.Symbol + if symbol not in symbols and holdings.Invested: + self.Liquidate(symbol) -\ No newline at end of file diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html index 3d63cc8..f47a119 100755 --- a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html @@ -1,9 +1,6 @@ -def rebalance(self): - # get historical stock symbols and prices, then put them in tuples - history = self.History(self.regression_dates, Resolution.Daily) - filter = [] - for i in self.symbols: - filter.append((i,self.get_regression_data(i, history)[0])) - # sort the filter by alpha - filter.sort(key = lambda x : x[1],reverse = True) - sorted_symbols = [] - for i in range(2): - sorted_symbols.append(filter[i][0]) - # get the symbols of our holding stocks - holding_list = [] - for i in self.Portfolio: - if i.Value.Invested: - holding_list.append(i.Value.Symbol) - # if we have holdings and we are not going to hold them anymore, sell them - if holding_list: - for i in holding_list: - if i not in sorted_symbols: - self.Liquidate(i) - # Long the 2 stock in our list. - for i in sorted_symbols: - self.SetHoldings(i,1) -+ # Invest 100% in the each of the selected symbols + for symbol in symbols: + self.SetHoldings(symbol, 1)
- Backtest using OptionChainProvider -
- API Tutorials
-
- Tutorial Series
-
+
+
+
+
- Open Source
-
- Strategy Library
-
+
+
+
+
+
\ No newline at end of file
+
\ No newline at end of file
diff --git a/03 Open Source/04 Lean Report Creator/01 Introduction.html b/03 Open Source/04 Lean Report Creator/01 Introduction.html
index 74cffbc..f5f8f98 100644
--- a/03 Open Source/04 Lean Report Creator/01 Introduction.html
+++ b/03 Open Source/04 Lean Report Creator/01 Introduction.html
@@ -1,8 +1,14 @@
-The LEAN Report Creator is a report generated from backtesting-result objects and allows you to quickly create polished, professional-grade reports for each backtest (see a full example report generated by LRC). Our hope is that you can use these reports to share your strategy performance with prospective investors. +The LEAN Report Creator (LRC) is a report generated from backtesting-result objects and allows you to quickly create polished, professional-grade reports for each backtest (see a full example report generated by LRC). We hope that you can use these reports to share your strategy performance with prospective investors. +The report was generated using the examples provided in this tutorial.
-Users working through the QuantConnect.com IDE can have these reports generated automatically at the end of a backtest. To generate one, look at the “Report” tab below your backtest result charts. +The algorithm used to generate the example report is provided below.
-
+
+
++Users working through the QuantConnect.com IDE can have these reports generated automatically at the end of a backtest. To generate one, look at the “Report” tab below your backtest result charts and click "Request Report". +
+
diff --git a/03 Open Source/04 Lean Report Creator/02 Creating a Report.html b/03 Open Source/04 Lean Report Creator/02 Creating a Report.html
index d34f496..a2ea27a 100644
--- a/03 Open Source/04 Lean Report Creator/02 Creating a Report.html
+++ b/03 Open Source/04 Lean Report Creator/02 Creating a Report.html
@@ -1,13 +1,14 @@
-The LEAN Report Creator is a python script located in the PythonToolbox. It is a command line tool which takes the json backtest result object as its input. You can run it like this:
+The Lean Report Creator is a project located in the Report folder. It is a command line tool that takes the JSON backtest result object as its input.
+You can run it using command line arguments, or by filling in the config.json file.
-python CreateLeanReport.py--backtest=./sample.json --output=./report.html --user=data.json +./QuantConnect.Report.exe --backtest-data-source-file sample.json --report-destination Example.html
-The program has three key options you should configure to your requirements: +The program has a few options you should configure to your requirements:
--backtest |
-Location of the source backtest json file. | +--backtest-data-source-file |
+Location of the source backtest JSON file. |
--live-data-source-file |
+Location of the source live JSON file. | ||
--output |
+--report-destination |
Resulting output HTML file location. | |
--user |
-Json data object for the user data of the report (see example). | +--strategy-name |
+Name of the strategy. This will appear at the top-right corner of each page in the report. | +
--strategy-version |
+Version number of the strategy. This will appear at the top-right corner next to the strategy name. | +||
--strategy-description |
+Description that describes what the strategy does. This will appear under the "Strategy Description" section of the report. |
-The --backtest switch refers to a JSON file created by the LEAN Engine. This holds all of the backtest data which is required for generating the report html. This data can be sourced for desktop or cloud backtests.
+The --backtest-data-source-file switch refers to a JSON file created by the LEAN Engine. This holds all of the backtest data which is required for generating the report HTML. This data can be sourced from desktop or cloud backtests.
-By default LEAN saves the backtest result data to disk inside of your LEAN launcher folder: Lean/Launcher/bin/Debug/BasicTemplateAlgorithm.json. It is saved there by the BaseResultHandler.SaveResult method. You can access it like this from the Python Toolbox:
+By default, LEAN saves the backtest result data to disk inside of your LEAN launcher folder: Lean/Launcher/bin/Debug/BasicTemplateAlgorithm.json. You can access it like this from the Report executable:
python CreateLeanReport.py --backtest=../Launcher/bin/Debug/BasicTemplateAlgorithm.json ....+
./QuantConnect.Report.exe --backtest-data-source-file ../../../Launcher/bin/Debug/BasicTemplateAlgorithm.json ...
-Backtest processed reports can also be downloaded via API. The following example imports the QuantConnect API class; and uses it to download the final HTML report. To access the API you will need to know your API User Id and Token, which can be located on your Account page. +Backtest processed reports can be downloaded via API. The following example imports the QuantConnect API class and uses it to download the final HTML report. To access the API you will need to know your API User ID and Token, which can be obtained in the Account page.
-Option 1: Easy: Downloading Cloud Generated Reports: -->>> from IPython.core.display import display, HTML ->>> from quantconnect.api import Api ->>> api = Api(your-user-id, your-token) ->>> lean_report = api.read_backtest_report(project-id, backtest-id) ->>> display(HTML(lean_report['report'])) --
>>> from quantconnect.api import Api @@ -38,7 +27,13 @@Cloud Backtesting Results
+You can manually download the backtest result file and place the file in the location configured in the config.json file.
+
+
-You can update your report description by clicking on the Project Description button in your project panel. The report automatically uses your profile picture for the report image. +You can update your report description by clicking on the Project Description button in your project panel.
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html b/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html
index c9a997f..7c86acc 100644
--- a/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html
+++ b/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html
@@ -1,12 +1,24 @@
-The report imports a profile image and description of the strategy. This is stored inside a JSON file user_data.json. You can customize the contents of this file to automatically generate future reports with the new data:
+The report can contain a description of the strategy. This is set either in the config.json file or via the command line argument --strategy-description.
+An example config.json configuration is provided below.
{
- "authorName": "Joe Blogs",
- "authorPicture": "AuthorProfile.png",
- "authorBiography": "Put your biography here.",
- "projectName": " -- Page title / project name --",
- "projectDescription": " -- Longer description text area -- "
-}
-
+We recommend that you use the existing config.example.json
+and rename it to config.json once you have finished editing the file. Please rebuild the project on rename or if you make any changes to the configuration
+so that the file is copied into the binary output path.
+
+
-This chart shows the cumulative returns for your strategy in orange and the benchmark in gray. +This chart shows the cumulative returns for your strategy in blue for backtesting, orange for live trading, and the benchmark in gray.
-
+
-This chart shows the daily returns for your strategy. When the return is positive, a orange bar will show above the horizontal line; when the return is negative, a gray bar will show below the horizontal line. +This chart shows a histogram showing the distribution of returns per trade over the algorithm's backtesting or live trading period.
+
-This chart shows the drawdown of each day. A certain day's drawdown is defined as the percentage of loss compared to the maximum value prior to this day. The drawdowns are calculated based on daily data. The top 5 drawdown periods are marked in the chart with different colors. +This chart shows the drawdown of each day. A certain day's drawdown is defined as the percentage of loss compared to the maximum value before this day. The drawdowns are calculated based on daily data. The top 5 drawdown periods are marked in the chart with different colors.
+
-This chart shows the return of each month. We convert original price series into monthly series, and calculate the returns of each month. The green color indicates positive return, the red color indicates negative return, and the greater the loss is, the darker the color is; the yellow color means the gain or loss is rather small; the white color means the month is not included in the backtest period. The values in the cells are in percentage. +This chart shows the return of each month. We convert original price series into monthly series and calculate the returns of each month. The green color indicates positive return, the red color indicates negative return, and the greater the loss is, the darker the color is; the yellow color means the gain or loss is rather small; the white color means the month is not included in the backtest period. The values in the cells are in percentage.
-
-This chart shows the return of each year. We calculate the total return within each year, shown by the blue bars. The red dotted line represents the average of the annual returns. If the backtest covers less than 12 months of a certain year, then the value in the chart is the actual return which is not annualized.
+
+
This chart shows the return of each year. We calculate the total return within each year, shown by the blue bars. The red dotted line represents the average of the annual returns.
-This group of charts shows the behaviors of both your strategy and the benchmark during a certain historical period. We set the value of your strategy the same as the benchmark at the beginning of each crisis event, and the lines represent the cumulative returns of your strategy and benchmark from the beginning of this crisis event. The report only draws the crisis event charts whose time periods are covered by your strategy. -
- -
--This chart shows the rolling portfolio beta to the benchmark. This chart is drawn based on daily data. Every day, we calculate the beta of your portfolio to the benchmark over the past 6 months (gray line) or 12 months (blue line).
--A beta close to 1 means the strategy has a risk exposure similar to the benchmark. A beta higher than 1 means the strategy has more risk than the benchmark, a beta close to 0 means the strategy is "market neutral", which isn't much affected by market situation. Beta can also be negative - in this situation the the strategy has opposite risk exposure to the benchmark. We won't draw this chart when your backtest period is less than 12 months. -
- -
-This chart shows the rolling sharpe ratio of your strategy. The rolling sharpe ratio is calculated on daily data, and annualized. Every day, we calculate the sharpe ratio of your portfolio over the past 6 months, and connect the sharpe ratios into a line. The red dotted line represents the mean value of the total sharpe ratios. We won't draw this chart when your backtest period is less than 6 months. -
- -
-This chart shows the net holdings of your portfolio. The net holding is the aggregated weight of risky assets in your portfolio. It could be either positive (when your total position is long), negative (when your total position is short) or 0 (when you only hold cash). The net holding changes only if new order is fired. The chart is drawn based on minute data, which means we aggregate all the positions of a minute together. -
- -
-This chart shows the leverage of your portfolio. The value of the leverage is always non-negative. When you only hold cash, the leverage is 0; a leverage smaller than 1 means you either long assets with money less than your portfolio value or short assets with total value less than your portfolio value; a leverage larger than 1 means you either borrow money to buy assets or short assets whose value is larger than your portfolio value. The leverage changes only if new order is fired.
+
+
This group of charts shows the behaviors of both your strategy and the benchmark during a certain historical period. We set the value of your strategy the same as the benchmark at the beginning of each crisis event, and the lines represent the cumulative returns of your strategy and benchmark from the beginning of this crisis event. The report only draws the crisis event charts whose periods are covered by your strategy.
+
-The asset allocation charts show a time-weighted average of each class of asset to your portfolio. When a certain asset has very small percentage and is too small to be shown in the pie chart, it will be incorporated into an "Others" category. The value of the percentage could be either positive or negative. +The asset allocation charts show a time-weighted average of each asset to your portfolio. When a certain asset has a very small percentage and is too small to be shown in the pie chart, it will be incorporated into an "Others" category. The value of the percentage could be either positive or negative.
From 1f8ffff6cc34a4ce1ad1e6b4e48feaf3bc91d50e Mon Sep 17 00:00:00 2001 From: AlexCatarinodef FineSelectionFunction(self, fine): - if self.year == self.Time.year: - return self.symbols + ''' Selects the stocks by lowest market cap ''' + sorted_market_cap = sorted([x for x in fine if x.MarketCap > 0], + key=lambda x: x.MarketCap) - # Calculate the market cap and add the "MarketCap" property to fine universe object - for i in fine: - i.MarketCap = (i.EarningReports.BasicAverageShares.ThreeMonths * - i.EarningReports.BasicEPS.TwelveMonths * - i.ValuationRatios.PERatio) - - sorted_market_cap = sorted([x for x in fine if x.MarketCap > 0], key=lambda x: x.MarketCap) - - self.symbols = [i.Symbol for i in sorted_market_cap[:10]] - return self.symbols + return [x.Symbol for x in sorted_market_cap[:self.count]]
diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html index f14f61e..cc3a665 100644 --- a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html @@ -1,6 +1,6 @@ div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
- We start by creating scheduled events. The event at MonthEnd() will trigger the algorithm to buy SPY and the event at MonthStart() will start the process to sell SPY.
+ We start by creating a scheduled event, MonthEnd(), that will trigger the algorithm to buy SPY.
-self.Schedule.On(self.DateRules.MonthStart("SPY"), self.TimeRules.AfterMarketOpen("SPY", 1), self.rebalance)
-self.Schedule.On(self.DateRules.MonthEnd("SPY"), self.TimeRules.AfterMarketOpen("SPY", 1), self.purchase)
+self.Schedule.On(
+ self.DateRules.MonthEnd(self.spy),
+ self.TimeRules.AfterMarketOpen(self.spy, 1),
+ self.Purchase)
- We will purchase the SPY immediately, and we will wait 3 trading days, as suggested, before liquidating our portfolio. Assigning self.sell_flag in the scheduled event handler will help us wait 3 days before executing the liquidate order in OnData(). The equity index is bought and sold every month.
+ We will purchase the SPY immediately, and we will wait 3 trading days, as suggested, before liquidating our portfolio. The boolean self.Portfolio.Invested will help us wait 3 days before executing the liquidate order in OnData(). The equity index is bought and sold every month.
-def purchase(self):
- self.SetHoldings("SPY", 1)
-
-def rebalance(self):
- self.sell_flag = True
-
+def Purchase(self):
+ ''' Immediately purchases the ETF at market opening '''
+ self.SetHoldings(self.spy, 1)
+ self.days = 0
+
def OnData(self, data):
- if self.sell_flag:
+ if self.Portfolio.Invested:
self.days += 1
- if self.days == 3:
- self.Liquidate()
- self.sell_flag = False
- self.days = 0
+
+ # Liquidates after 3 days
+ if self.days > 3:
+ self.Liquidate(self.spy, 'Liquidate after 3 days')
-for i in slice.OptionChains:
if i.Key != self.symbol: continue
- chain = i.Value
-# differentiate the call and put options
-call = [x for x in optionchain if chain.Right == 0]
-put = [x for x in optionchain if chain.Right == 1]
-# choose ITM contracts
-contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike > 0]
-# or choose ATM contracts
-contracts = sorted(optionchain, key = lambda x: abs(optionchain.Underlying.Price - x.Strike))[0]
-# or choose OTM contracts
-contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike < 0]
-# sort the contracts by their expiration dates
-contracts = sorted(contracts, key = lambda x:x.Expiry, reverse = True)
+ optionchain = i.Value
+ # differentiate the call and put options
+ call = [x for x in optionchain if x.Right == 0]
+ put = [x for x in optionchain if x.Right == 1]
+ # choose ITM contracts
+ contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike > 0]
+ # or choose ATM contracts
+ contracts = sorted(optionchain, key = lambda x: abs(optionchain.Underlying.Price - x.Strike))[0]
+ # or choose OTM contracts
+ contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike < 0]
+ # sort the contracts by their expiration dates
+ contracts = sorted(contracts, key = lambda x:x.Expiry, reverse = True)
From 5b97f854d81bee500e268464788542de5aefdbee Mon Sep 17 00:00:00 2001
From: Ayushman Chhabra def OnData(self,slice):
for i in slice.OptionChains:
if i.Key != self.symbol: continue
- optionchain = i.Value
- self.Log("underlying price:" + str(optionchain.Underlying.Price))
- df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
- index=[x.Symbol.Value for x in optionchain],
- columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
+ optionchain = i.Value
+ self.Log("underlying price:" + str(optionchain.Underlying.Price))
+ df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
+ index=[x.Symbol.Value for x in optionchain],
+ columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
self.Log(str(df))
def OnData(self,slice):
- for i in slice.OptionChains:
- if i.Key != self.symbol: continue
- optionchain = i.Value
- self.Log("underlying price:" + str(optionchain.Underlying.Price))
+ for kvp in slice.OptionChains:
+ if kvp.Key != self.symbol:
+ continue
+ optionchain = kvp.Value
df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
index=[x.Symbol.Value for x in optionchain],
columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
- self.Log(str(df))
+ self.Log(f"Underlying price: {optionchain.Underlying.Price}\n{df}")
| Market Order | -MarketOrder("SPY", 100); |
+var ticket = MarketOrder("SPY", 100); |
||||||||||||||||
| Limit Order | From 105b688a4d46a16b46c25485b0121fe750114376 Mon Sep 17 00:00:00 2001 From: metricquant <44590120+metricquant@users.noreply.github.com> Date: Sat, 23 May 2020 22:29:07 +0200 Subject: [PATCH 126/215] removed reference to a C# example The example includes both C# and Python code, yet the text refers to only C#. --- .../03 Tracking and Managing Orders/02 Updating Orders.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html b/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html index a923569..668d4a1 100755 --- a/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html +++ b/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html @@ -1,5 +1,5 @@||||||||||||||||||
| Market Order | -var ticket = MarketOrder("SPY", 100); |
+var ticket = MarketOrder("SPY", 100);self.ticket = self.MarketOrder("SPY", 100) |
||||||||||||||||
| Limit Order | -var ticket = LimitOrder("SPY", 100, 100.10m); |
+var ticket = LimitOrder("SPY", 100, 100.10m);self.ticket = self.LimitOrder("SPY", 100, 100.1) |
||||||||||||||||
| Stop Market Order | -var ticket = StopMarketOrder("SPY", 100, 100.10m); |
+var ticket = StopMarketOrder("SPY", 100, 100.10m);self.ticket = self.StopMarketOrder("SPY", 100, 100.1) |
||||||||||||||||
| Stop Limit Order | -var ticket = StopLimitOrder("SPY", 100, 100.12m, 99.5m); |
+var ticket = StopLimitOrder("SPY", 100, 100.12m, 99.5m);self.ticket = self.StopLimitOrder("SPY", 100, 100.12, 99.5) |
||||||||||||||||
| Market On Open Order | -var ticket = MarketOnOpen("SPY", 100); |
+var ticket = MarketOnOpen("SPY", 100);self.ticket = self.MarketOnOpen("SPY", 100) |
||||||||||||||||
| Market On Close Order | -var ticket = MarketOnClose("SPY", 100); |
+var ticket = MarketOnClose("SPY", 100);self.ticket = self.MarketOnClose("SPY", 100) |
- Residual momentum is the phenomenon that stocks with greater monthly residual returns (normalized by the volatility of the residual returns) tend to outperform those with less. Research has shown the strategy experiences less exposure to the dynamic Fama-French factors, produces greater sharpe ratios, and is more robust out-of-sample than a total return momentum strategy. This strategy is more stable throughout the business cycle than a total return momentum strategy. It tends to underperform during trending regimes and outperform during reverting regimes. Additionally, this strategy is less concentrated is small-cap stocks than a total return strategy can sometimes be, leading to less trading costs and reducing the effect of tax-loss selling. -
\ No newline at end of file + Residual momentum is the phenomenon that stocks with greater monthly residual returns (normalized by the volatility of the + residual returns) tend to outperform those with less. Research has shown the strategy experiences less exposure to the dynamic + Fama-French factors, produces greater sharpe ratios, and is more robust out-of-sample than a total return momentum strategy. + This strategy is claimed to be more stable throughout the business cycle than a total return momentum strategy. It tends to underperform during trending regimes and outperform during reverting regimes. Additionally, this strategy is less concentrated is small-cap stocks than a total return strategy can sometimes be, leading to less trading costs and reducing the effect of tax-loss selling. + From 87290fff62a1af50edee0ed334a91ef12e9940a1 Mon Sep 17 00:00:00 2001 From: David Jacobsonx.Rightx.UnderlyingLastPrice+ Where \(r_t\) is the monthly return of the stock in month \(t\); \(Mkt_t\), \(SMB_t\), and \(HML_t\) are the Fama-French factor values in month \(t\); and \(epsilon_t\) is the residual return in month \(t\). After fitting, we test the model on the trailing 12 months of data (excluding the most recent month) to calculate the score. We simply sum the residuals and divide by the standard deviation of the residuals to get the score. +
\[score = \frac{\sum{} \epsilon}{\sigma_\epsilon} \] diff --git a/04 Strategy Library/136 Residual Momentum/03 Algorithm.html b/04 Strategy Library/136 Residual Momentum/03 Algorithm.html index 90f2cf2..a989254 100644 --- a/04 Strategy Library/136 Residual Momentum/03 Algorithm.html +++ b/04 Strategy Library/136 Residual Momentum/03 Algorithm.html @@ -1,6 +1,6 @@
\ No newline at end of file
diff --git a/03 Open Source/02 Backtesting from Visual Studio/01 Introduction.html b/03 Open Source/02 Backtesting from Visual Studio/01 Introduction.html
deleted file mode 100644
index 4005af9..0000000
--- a/03 Open Source/02 Backtesting from Visual Studio/01 Introduction.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
--The Visual Studio plugin is a tool which allows you to code locally; harnessing all the power of Visual Studio's autocomplete and code analysis; while also backtesting in the QuantConnect Cloud. It aims to facilitate your strategy development. The plugin supports Visual Studio 2015, 2017 and 2019. -
- -
- You can download the plugin here:
- QuantConnect.VisualStudioPlugin_20190711.vsix *
-* Some browsers rename the VSIX file link above to ZIP once its downloaded. Please make sure its a VSIX file before executing.
-
-To install the plugin simply execute ("double click") the binary supplied download above, or you can rebuild it from scratch from the LEAN project. To build it from scratch please follow the instructions below. -
- --If you have intstalled a previous version of the plugin you first need to remove this first. You do this from the ‘Tools’ Menu → ‘Extensions and Updates...’ → ‘Installed’. Then search for ‘QuantConnect.VisualStudioPlugin’ and click uninstall. Once uninstalled; remember to restart Visual Studio. -
--After building navigate to ‘..\Lean\VisualStudioPlugin\bin\Release’. If you built sucessfully you should be able to execute ‘QuantConnect.VisualStudioPlugin.vsix’. -
- -
--Manually logging in is only required the first time. After the first login, the plugin will automatically log in using previously saved credentials. -
\ No newline at end of file diff --git a/03 Open Source/02 Backtesting from Visual Studio/03 Plugin Features.html b/03 Open Source/02 Backtesting from Visual Studio/03 Plugin Features.html deleted file mode 100644 index 8a4607c..0000000 --- a/03 Open Source/02 Backtesting from Visual Studio/03 Plugin Features.html +++ /dev/null @@ -1,46 +0,0 @@ --The Visual Studio plugin can currently save files to a project, compile the project, and backtest it in the cloud. Through the accompanying "tool window" it can also rename, open or add a note to a backtest, and create a new project. -
- --Save files from your local project to a QuantConnect project. You can save many files at a time. -
-

-This feature allows you to upload one or more files to a target project, compile it and backtest it in the QuantConnect cloud. -
-

-The backtesting tool window utility allows you to monitor and control ongoing backtests, along with editing various properties of existing completed backtests. -
-
--If you select a project ‘BuyTheDip_007’ using the tool windows combo box and launch a backtest using ‘Send For Backtesting’ for ‘BuyTheDip_007’ project, it will display the backtests progress in the tool window. -
- --From the Visual Studio IDE go to ‘View’ menu → ‘Other Windows’ → ‘QuantConnect’. If there are previous valid credentials, the tool window will auto login when open or when the user performs an action. -
- -
-
--VisualStudio plugin can write log data to the VisualStudio activity log, but only if VisualStudio is started with the /log parameter switch. To debug the QuantConnect plugin start VisualStudio with the following command: -
-devenv /log <path-to-log>-
-See Visual Studio Documentation for more information. -
\ No newline at end of file From 58429f39bf70e37c5815e195397fd7239b5f6379 Mon Sep 17 00:00:00 2001 From: JaredVisual Studio plugin integrated with the QuantConnect API.
- -Guide to implementing your own brokerage in LEAN.
\ No newline at end of file
+
From 1d76f6ce967fd92e68435b9b4374e33a84962aac Mon Sep 17 00:00:00 2001
From: Gustavo Aviles
\ No newline at end of file
+
From 291389c69ca15cc7094b3c84476731a0232dde7f Mon Sep 17 00:00:00 2001
From: Derek Melchin + Researchers have shown that the historical returns of a mutual fund and the nearness of its NAV to a previous high can provide + significant predictive power about the fund's future returns. In respect to the historical returns, some have attributed the + persistence to investor herding and macroeconomic variables. When it comes to the NAV, some suggest the outperformance of funds + with a NAV near its trailing high is a result of anchoring bias in investors' psychology. As we do not have access to invest in + individual mutual funds on the QC platform or access to NAV metrics, in this tutorial, we trade asset management firms and use + their respective share price as a proxy for fund performance and NAV. +
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html new file mode 100644 index 0000000..119b3e7 --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html @@ -0,0 +1,179 @@ ++ In coarse universe selection, we return symbols that have fundamental data and are traded in the US market. +
++def SelectCoarse(self, algorithm, coarse): + if self.month == algorithm.Time.month: + return Universe.Unchanged + filtered = [x for x in coarse if (x.HasFundamentalData) and (x.Market == "usa")] + return [ x.Symbol for x in filtered[:self.coarse_size] ] ++
+ In fine universe selection, we return symbols that Morningstar has classified as being in the asset management industry. +
++def SelectFine(self, algorithm, fine): + self.month = algorithm.Time.month + filtered = [f for f in fine if f.AssetClassification.MorningstarIndustryCode == MorningstarIndustryCode.AssetManagement] + return [ x.Symbol for x in filtered[:self.fine_size] ] ++
+ When constructing the alpha model, we can provide parameters for the lookback windows and the percentage of the universe to + long/short. Both of these arguments are validated in the constructor. By default, this alpha model uses the trailing 6 months to + calculate the rate of change factor and the trailing 12 months to calculate the nearness to historical highs. +
++def __init__(self, roc_lookback_months=6, nearness_lookback_months=12, holding_months=6, pct_long_short=10): + if roc_lookback_months <= 0 or nearness_lookback_months <= 0 or holding_months <= 0: + algorithm.Error(f"Requirement violated: roc_lookback_months > 0 and nearness_lookback_months > 0 and holding_months > 0") + algorithm.Quit() + return + + if pct_long_short <= 0 or pct_long_short > 50: + algorithm.Error(f"Requirement violated: 0 < pct_long_short <= 50") + algorithm.Quit() + return + + self.roc_lookback_months = roc_lookback_months + self.nearness_lookback_months = nearness_lookback_months + self.holding_months = holding_months + self.pct_long_short = pct_long_short ++
+ For each security added to the universe, we construct a ROCAndNearness indicator which warm up the lookback windows and registers + a data consolidator. When a security is removed from the universe, we unsubscribe the associated consolidator. +
++def OnSecuritiesChanged(self, algorithm, changes): + for added in changes.AddedSecurities: + roc_and_nearness = ROCAndNearness(added.Symbol, algorithm, self.roc_lookback_months, self.nearness_lookback_months) + self.symbol_data_by_symbol[added.Symbol] = roc_and_nearness + + for removed in changes.RemovedSecurities: + symbol_data = self.symbol_data_by_symbol.pop(removed.Symbol, None) + if symbol_data: + symbol_data.dispose() ++
+ On the first trading day of each month, we rank the symbols in the universe and emit insights for the portfolio construction model. +
++def Update(self, algorithm, data): + # Emit insights on a monthly basis + time = algorithm.Time + if self.month == time.month: + return [] + self.month = time.month + + return self.generate_insights(self.ranked_symbols, time) ++
+ We only rank symbols that have enough history to fill the rate of change lookback window. We start by filling a DataFrame with + the rate of change and nearness to trailing high values for each symbol. We rank the symbols by both metrics and sum the ranks. + The symbols with a larger final sum have a greater index in the list we return. +
+
+@property
+def ranked_symbols(self):
+ ranking_df = pd.DataFrame()
+
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ if symbol_data.IsReady:
+ row = pd.DataFrame({'ROC': symbol_data.roc, 'Nearness': symbol_data.nearness}, index=[symbol])
+ ranking_df = ranking_df.append(row)
+
+ return ranking_df.rank().sum(axis=1).sort_values().index
+
++ We calculate the rate of change and nearness factors by slicing the historical data into the approriate lookback window size, and + then computing the respective values. +
++@property +def roc(self): + lookback = self.get_lookback(self.roc_lookback_months) + start_price = lookback.iloc[0].open + end_price = lookback.iloc[-1].close + return (end_price - start_price) / start_price + +@property +def nearness(self): + lookback = self.get_lookback(self.nearness_lookback_months) + return lookback.iloc[-1].close / lookback.high.max() ++
+ We return insights that instruct the portfolio construction model to form a balance long-short portfolio. The percentage of the + universe we long and short is customizable in the alpha model constructor. Here, we long the 10% of symbols with the highest + rank, short the 10% of symbols with the lowest ranks, and instruct the portfolio construction model to hold positions for 6 months. +
++def generate_insights(self, ranked_symbols, time): + insights = [] + + num_long_short = int(len(ranked_symbols) * (self.pct_long_short / 100)) + if num_long_short > 0: + hold_duration = Expiry.EndOfMonth(time) + relativedelta(months=self.holding_months-1, seconds=-1) + for symbol in ranked_symbols[-num_long_short:]: + insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Up)) + for symbol in ranked_symbols[:num_long_short]: + insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Down)) + + return insights ++
+ We utilize a custom portfolio construction model that rebalances monthly and performs allocations based on the net direction of + insights for each symbol. A symbol that has two active insights with an up direction will have twice the allocation than a symbol + with only one. Furthermore, a symbol that has an up active insight and a down active insight will have no position. We calculate + the net direction of the symbols with the following helper method. +
+
+def get_net_direction(self, insights):
+ net_direction_by_symbol = {}
+ num_directional_insights = 0
+
+ for insight in insights:
+ symbol = insight.Symbol
+ direction = insight.Direction
+ if symbol in net_direction_by_symbol:
+ net_direction_by_symbol[symbol] += direction
+ else:
+ net_direction_by_symbol[symbol] = direction
+
+ num_directional_insights += abs(direction)
+
+ return net_direction_by_symbol, num_directional_insights
+
++ Researchers have shown that the historical returns of a mutual fund and the nearness of its NAV to a previous high can provide + significant predictive power about the fund's future returns. In respect to the historical returns, some have attributed the + persistence to investor herding and macroeconomic variables. When it comes to the NAV, some suggest the outperformance of funds + with a NAV near its trailing high is a result of anchoring bias in investors' psychology. As we do not have access to invest in + individual mutual funds on the QC platform or access to NAV metrics, in this tutorial, we trade asset management firms and use + their respective share price as a proxy for fund performance and NAV. +
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html new file mode 100644 index 0000000..119b3e7 --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html @@ -0,0 +1,179 @@ ++ In coarse universe selection, we return symbols that have fundamental data and are traded in the US market. +
++def SelectCoarse(self, algorithm, coarse): + if self.month == algorithm.Time.month: + return Universe.Unchanged + filtered = [x for x in coarse if (x.HasFundamentalData) and (x.Market == "usa")] + return [ x.Symbol for x in filtered[:self.coarse_size] ] ++
+ In fine universe selection, we return symbols that Morningstar has classified as being in the asset management industry. +
++def SelectFine(self, algorithm, fine): + self.month = algorithm.Time.month + filtered = [f for f in fine if f.AssetClassification.MorningstarIndustryCode == MorningstarIndustryCode.AssetManagement] + return [ x.Symbol for x in filtered[:self.fine_size] ] ++
+ When constructing the alpha model, we can provide parameters for the lookback windows and the percentage of the universe to + long/short. Both of these arguments are validated in the constructor. By default, this alpha model uses the trailing 6 months to + calculate the rate of change factor and the trailing 12 months to calculate the nearness to historical highs. +
++def __init__(self, roc_lookback_months=6, nearness_lookback_months=12, holding_months=6, pct_long_short=10): + if roc_lookback_months <= 0 or nearness_lookback_months <= 0 or holding_months <= 0: + algorithm.Error(f"Requirement violated: roc_lookback_months > 0 and nearness_lookback_months > 0 and holding_months > 0") + algorithm.Quit() + return + + if pct_long_short <= 0 or pct_long_short > 50: + algorithm.Error(f"Requirement violated: 0 < pct_long_short <= 50") + algorithm.Quit() + return + + self.roc_lookback_months = roc_lookback_months + self.nearness_lookback_months = nearness_lookback_months + self.holding_months = holding_months + self.pct_long_short = pct_long_short ++
+ For each security added to the universe, we construct a ROCAndNearness indicator which warm up the lookback windows and registers + a data consolidator. When a security is removed from the universe, we unsubscribe the associated consolidator. +
++def OnSecuritiesChanged(self, algorithm, changes): + for added in changes.AddedSecurities: + roc_and_nearness = ROCAndNearness(added.Symbol, algorithm, self.roc_lookback_months, self.nearness_lookback_months) + self.symbol_data_by_symbol[added.Symbol] = roc_and_nearness + + for removed in changes.RemovedSecurities: + symbol_data = self.symbol_data_by_symbol.pop(removed.Symbol, None) + if symbol_data: + symbol_data.dispose() ++
+ On the first trading day of each month, we rank the symbols in the universe and emit insights for the portfolio construction model. +
++def Update(self, algorithm, data): + # Emit insights on a monthly basis + time = algorithm.Time + if self.month == time.month: + return [] + self.month = time.month + + return self.generate_insights(self.ranked_symbols, time) ++
+ We only rank symbols that have enough history to fill the rate of change lookback window. We start by filling a DataFrame with + the rate of change and nearness to trailing high values for each symbol. We rank the symbols by both metrics and sum the ranks. + The symbols with a larger final sum have a greater index in the list we return. +
+
+@property
+def ranked_symbols(self):
+ ranking_df = pd.DataFrame()
+
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ if symbol_data.IsReady:
+ row = pd.DataFrame({'ROC': symbol_data.roc, 'Nearness': symbol_data.nearness}, index=[symbol])
+ ranking_df = ranking_df.append(row)
+
+ return ranking_df.rank().sum(axis=1).sort_values().index
+
++ We calculate the rate of change and nearness factors by slicing the historical data into the approriate lookback window size, and + then computing the respective values. +
++@property +def roc(self): + lookback = self.get_lookback(self.roc_lookback_months) + start_price = lookback.iloc[0].open + end_price = lookback.iloc[-1].close + return (end_price - start_price) / start_price + +@property +def nearness(self): + lookback = self.get_lookback(self.nearness_lookback_months) + return lookback.iloc[-1].close / lookback.high.max() ++
+ We return insights that instruct the portfolio construction model to form a balance long-short portfolio. The percentage of the + universe we long and short is customizable in the alpha model constructor. Here, we long the 10% of symbols with the highest + rank, short the 10% of symbols with the lowest ranks, and instruct the portfolio construction model to hold positions for 6 months. +
++def generate_insights(self, ranked_symbols, time): + insights = [] + + num_long_short = int(len(ranked_symbols) * (self.pct_long_short / 100)) + if num_long_short > 0: + hold_duration = Expiry.EndOfMonth(time) + relativedelta(months=self.holding_months-1, seconds=-1) + for symbol in ranked_symbols[-num_long_short:]: + insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Up)) + for symbol in ranked_symbols[:num_long_short]: + insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Down)) + + return insights ++
+ We utilize a custom portfolio construction model that rebalances monthly and performs allocations based on the net direction of + insights for each symbol. A symbol that has two active insights with an up direction will have twice the allocation than a symbol + with only one. Furthermore, a symbol that has an up active insight and a down active insight will have no position. We calculate + the net direction of the symbols with the following helper method. +
+
+def get_net_direction(self, insights):
+ net_direction_by_symbol = {}
+ num_directional_insights = 0
+
+ for insight in insights:
+ symbol = insight.Symbol
+ direction = insight.Direction
+ if symbol in net_direction_by_symbol:
+ net_direction_by_symbol[symbol] += direction
+ else:
+ net_direction_by_symbol[symbol] = direction
+
+ num_directional_insights += abs(direction)
+
+ return net_direction_by_symbol, num_directional_insights
+
+- Researchers have shown that the historical returns of a mutual fund and the nearness of its NAV to a previous high can provide - significant predictive power about the fund's future returns. In respect to the historical returns, some have attributed the - persistence to investor herding and macroeconomic variables. When it comes to the NAV, some suggest the outperformance of funds - with a NAV near its trailing high is a result of anchoring bias in investors' psychology. As we do not have access to invest in - individual mutual funds on the QC platform or access to NAV metrics, in this tutorial, we trade asset management firms and use - their respective share price as a proxy for fund performance and NAV. + Researchers have shown that the historical returns of a mutual fund and the nearness of its net asset value (NAV) to + a previous high can provide significant predictive power about the fund's future returns. In respect to the + historical returns, some have attributed the persistence to investor herding and macroeconomic variables. When it + comes to the NAV, some suggest the outperformance of funds with a NAV near its trailing high is a result of + anchoring bias in investors' psychology. As we do not have access to invest in individual mutual funds on the QC + platform or access to NAV metrics, in this tutorial, we trade asset management firms and use their respective share + price as a proxy for fund performance and NAV.
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html index 119b3e7..cd4436e 100644 --- a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html @@ -1,14 +1,14 @@- In coarse universe selection, we return symbols that have fundamental data and are traded in the US market. + In coarse universe selection, we return symbols that have fundamental data.
def SelectCoarse(self, algorithm, coarse):
if self.month == algorithm.Time.month:
- return Universe.Unchanged
- filtered = [x for x in coarse if (x.HasFundamentalData) and (x.Market == "usa")]
- return [ x.Symbol for x in filtered[:self.coarse_size] ]
+ return Universe.Unchanged
+
+ return [x.Symbol for x in coarse if x.HasFundamentalData]
def SelectFine(self, algorithm, fine):
self.month = algorithm.Time.month
- filtered = [f for f in fine if f.AssetClassification.MorningstarIndustryCode == MorningstarIndustryCode.AssetManagement]
- return [ x.Symbol for x in filtered[:self.fine_size] ]
+
+ return [f.Symbol for f in fine if f.AssetClassification.MorningstarIndustryCode == MorningstarIndustryCode.AssetManagement]
@@ -34,14 +34,10 @@
def __init__(self, roc_lookback_months=6, nearness_lookback_months=12, holding_months=6, pct_long_short=10):
if roc_lookback_months <= 0 or nearness_lookback_months <= 0 or holding_months <= 0:
- algorithm.Error(f"Requirement violated: roc_lookback_months > 0 and nearness_lookback_months > 0 and holding_months > 0")
- algorithm.Quit()
- return
-
+ algorithm.Quit(f"Requirement violated: roc_lookback_months > 0 and nearness_lookback_months > 0 and holding_months > 0")
+
if pct_long_short <= 0 or pct_long_short > 50:
- algorithm.Error(f"Requirement violated: 0 < pct_long_short <= 50")
- algorithm.Quit()
- return
+ algorithm.Quit(f"Requirement violated: 0 < pct_long_short <= 50")
self.roc_lookback_months = roc_lookback_months
self.nearness_lookback_months = nearness_lookback_months
@@ -70,7 +66,8 @@ Alpha Construction
Alpha Update
- On the first trading day of each month, we rank the symbols in the universe and emit insights for the portfolio construction model.
+ On the first trading day of each month, we rank the symbols in the universe and emit insights for the portfolio construction
+ model. We instruct the alpha model to emit insights on a monthly basis by adding the following guard to the Update method.
@@ -81,34 +78,45 @@ Alpha Update
return []
self.month = time.month
- return self.generate_insights(self.ranked_symbols, time)
+ ...
Alpha Ranking
- We only rank symbols that have enough history to fill the rate of change lookback window. We start by filling a DataFrame with
- the rate of change and nearness to trailing high values for each symbol. We rank the symbols by both metrics and sum the ranks.
- The symbols with a larger final sum have a greater index in the list we return.
+ We only rank symbols that have enough history to fill the rate of change lookback window. Therefore, we define the
+ IsReady method of the ROCAndNearness as
@property
-def ranked_symbols(self):
- ranking_df = pd.DataFrame()
+def IsReady(self):
+ return self.get_lookback(self.roc_lookback_months).shape[0] > 1
+
+
+
+ To rank the symbols, we start by filling a DataFrame with the rate of change and nearness to trailing high values for each
+ symbol. When the DataFrame is full, we rank the symbols by both metrics and sum the ranks. The symbols with a larger final
+ sum have a greater index in the `ranked_symbols` list.
+
+
+
+def Update(self, algorithm, data):
+ ...
+ ranking_df = pd.DataFrame()
for symbol, symbol_data in self.symbol_data_by_symbol.items():
if symbol_data.IsReady:
row = pd.DataFrame({'ROC': symbol_data.roc, 'Nearness': symbol_data.nearness}, index=[symbol])
ranking_df = ranking_df.append(row)
-
- return ranking_df.rank().sum(axis=1).sort_values().index
+ ranked_symbols = ranking_df.rank().sum(axis=1).sort_values().index
+ ...
- We calculate the rate of change and nearness factors by slicing the historical data into the approriate lookback window size, and
- then computing the respective values.
+ Calculating the rate of change and nearness factors is done by slicing the historical data into the approriate lookback window
+ size, and then computing the respective values.
@@ -129,14 +137,14 @@ Alpha Ranking
Alpha Insights
We return insights that instruct the portfolio construction model to form a balance long-short portfolio. The percentage of the
- universe we long and short is customizable in the alpha model constructor. Here, we long the 10% of symbols with the highest
- rank, short the 10% of symbols with the lowest ranks, and instruct the portfolio construction model to hold positions for 6 months.
+ universe we long and short is customizable in the alpha model constructor. Here, we long the 25% of symbols with the highest
+ rank, short the 25% of symbols with the lowest ranks, and instruct the portfolio construction model to hold positions for 6 months.
-def generate_insights(self, ranked_symbols, time):
+def Update(self, algorithm, data):
+ ...
insights = []
-
num_long_short = int(len(ranked_symbols) * (self.pct_long_short / 100))
if num_long_short > 0:
hold_duration = Expiry.EndOfMonth(time) + relativedelta(months=self.holding_months-1, seconds=-1)
@@ -144,7 +152,6 @@ Alpha Insights
insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Up))
for symbol in ranked_symbols[:num_long_short]:
insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Down))
-
return insights
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html
index 646988c..ade7d3b 100644
--- a/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html
+++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/quantpedia.json b/quantpedia.json
index 255ed4f..cbf4970 100644
--- a/quantpedia.json
+++ b/quantpedia.json
@@ -34,7 +34,7 @@
77: "0483e5a7094604254ab37eda8b5141b8",
78: "27fb5f05b0e48f488f0994d8d83ddc77",
83: "fdfcddd132eaf55039d867c03efe3012",
- 85: "cdcfb760e59da292a56e08c04a219179",
+ 85: "ba030edb022016f967a6296a556d717e",
91: "95cffbeec0d003da873b791d3a10f60f",
100: "5ee5507fef6bf190ae533ce05ccaa785",
102: "cd2d187e44a00c7b19f64aee8b0895d9",
From ccbf44f6741687e50985494f4a6baa3cb3d90ef0 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Wed, 29 Jul 2020 18:07:56 -0600
Subject: [PATCH 140/215] Adds intraday etf momentum strategy
---
.../01 Strategy Library.php | 11 +-
.../01 Abstract.html | 7 +
.../02 Background.html | 19 +++
.../1026 Intraday ETF Momentum/03 Method.html | 143 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 Conclusion.html | 23 +++
.../06 References.html | 6 +
7 files changed, 214 insertions(+), 1 deletion(-)
create mode 100644 04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html
create mode 100644 04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html
create mode 100644 04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html
create mode 100644 04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html
create mode 100644 04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
create mode 100644 04 Strategy Library/1026 Intraday ETF Momentum/06 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index e5ab9e0..30af0f7 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -606,7 +606,16 @@
],
'description' => "A simple trend following strategy on commodities futures.",
'tags' => 'Momentum, Futures, Commodities'
- ]
+ ],
+ [
+ 'name' => 'Intraday ETF Momentum',
+ 'link' => 'strategy-library/intraday-etf-momentum',
+ 'sources' => [
+ 'NYU' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2440866'
+ ],
+ 'description' => "A momentum strategy based on returns of the market open",
+ 'tags'=>'Momentum, Stocks, Universe Selection, Equities, Anomaly'
+ ]
];
?>
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html b/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html
new file mode 100644
index 0000000..c9aef2c
--- /dev/null
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html
@@ -0,0 +1,7 @@
+
+ In this tutorial, we implement an intraday momentum strategy that trades some of the most actively traded ETFs.
+ Specifically, we observe the return generated from the first half-hour of the trading day to predict the sign of
+ the trading day's last half-hour return. Researchers have shown that this momentum pattern is statistically and
+ economically significant, even after accounting for trading fees. The algorithm we design here is a recreation of
+ the research completed by Gao, Han, Li, and Zhou (2017).
+
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html b/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html
new file mode 100644
index 0000000..c06af0a
--- /dev/null
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html
@@ -0,0 +1,19 @@
+
+ News items are usually released before the opening bell. As it takes time for traders to digest and interpret the
+ news, the first half-hour of trading typically has relatively higher levels of volume and volatility. Additionally,
+ as traders attempt to mitigate overnight risk by unloading positions near the close, the last half-hour of trading
+ also sees these higher levels of volume and volatility. These characteristics can be observed from the image below,
+ which is reproducible in the attached research notebook.
+
+
+
+
+
+ Bogousslavsky (2016) points out that some investors are late-informed or simply prefer to delay their trading until
+ the market close. As a result, a positive correlation exists between the direction of the opening and closing
+ periods. Gao et al (2017) find that when trading this momentum strategy, the average annual return over their
+ sample period was 6.67% for SPY, 11.72% for IWM, and 24.22% for IYR. Equal-weighting these returns leads to a
+ combined average annual return of 14.2%.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html b/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html
new file mode 100644
index 0000000..29481ab
--- /dev/null
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html
@@ -0,0 +1,143 @@
+Universe Selection
+
+ We implement a manual universe selection model that supplies a subset of the proposed ETFs in the attached research
+ paper. Gao et al (2017) select the following tickers: DIA, QQQ, IWM, EEM, FXI, EFA, VWO, XLF, IYR, and TLT. In an
+ effort to increase the backtest performance, we narrow our universe to SPY, IWM, and IYR.
+
+
+
+tickers = ['SPY', # S&P 500
+ 'IWM', # Russell 2000
+ 'IYR' # Real Estate ETF
+]
+symbols = [ Symbol.Create(ticker, SecurityType.Equity, Market.USA) for ticker in tickers ]
+self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )
+self.UniverseSettings.Resolution = Resolution.Minute
+
+
+
+Alpha Construction
+
+ The IntradayMomentumAlphaModel emits insights to take positions for the last `return_bar_count` minutes of the day
+ in the direction of the return for the first `return_bar_count` minutes of the day. During construction, we create
+ a dictionary to store IntradayMomentum data for each symbol, define a method to determine the sign of returns, and
+ specify the value of `return_bar_count`. In this tutorial, we follow Gao et al (2017) in setting `return_bar_count`
+ to 30 by default.
+
+
+
+class IntradayMomentumAlphaModel(AlphaModel):
+ intraday_momentum_by_symbol = {}
+ sign = lambda _, x: int(x and (1, -1)[x < 0])
+
+ def __init__(self, algorithm, return_bar_count = 30):
+ self.return_bar_count = return_bar_count
+
+
+
+Alpha Securities Management
+
+ When a new security is added to the universe, we create an IntradayMomentum object for it to store information
+ needed to calculate morning returns. The management of the IntradayMomentum objects occurs in the alpha model's
+ OnSecuritiesChanged method.
+
+
+
+def OnSecuritiesChanged(self, algorithm, changes):
+ for security in changes.AddedSecurities:
+ self.intraday_momentum_by_symbol[security.Symbol] = IntradayMomentum(security, algorithm)
+
+ for security in changes.RemovedSecurities:
+ self.intraday_momentum_by_symbol.pop(security.Symbol, None)
+
+
+
+
+ The definition of the IntradayMomentum class is shown below. We save a reference to the security's exchange so we
+ can access the market hours of the exchange when generating insights.
+
+
+
+class IntradayMomentum:
+ def __init__(self, security, algorithm):
+ self.symbol = security.Symbol
+ self.exchange = security.Exchange
+
+ self.bars_seen_today = 0
+ self.yesterdays_close = algorithm.History(self.symbol, 1, Resolution.Daily).loc[self.symbol].close[0]
+ self.morning_return = 0
+
+
+
+Alpha Update
+
+ With each call to the alpha model's Update method, we count the number of bars the algorithm has received for each
+ symbol. If we've reached the end of the morning window, we calculate the morning return. If we are at the
+ beginning of the close window, we emit an insight in the direction of the morning window's return. If we are at
+ the end of the day, we save the closing price and reset the counter for the number of bars seen today.
+
+
+
+def Update(self, algorithm, slice):
+ insights = []
+
+ for symbol, intraday_momentum in self.intraday_momentum_by_symbol.items():
+ if slice.ContainsKey(symbol) and slice[symbol] is not None:
+ intraday_momentum.bars_seen_today += 1
+
+ # End of the morning return
+ if intraday_momentum.bars_seen_today == self.return_bar_count:
+ intraday_momentum.morning_return = (slice[symbol].Close - intraday_momentum.yesterdays_close) / intraday_momentum.yesterdays_close
+
+ ## Beginning of the close
+ next_close_time = intraday_momentum.exchange.Hours.GetNextMarketClose(slice.Time, False)
+ mins_to_close = int((next_close_time - slice.Time).total_seconds() / 60)
+
+ if mins_to_close == self.return_bar_count + 1:
+ insight = Insight.Price(intraday_momentum.symbol,
+ next_close_time,
+ self.sign(intraday_momentum.morning_return))
+ insights.append(insight)
+ continue
+
+ # End of the day
+ if not intraday_momentum.exchange.DateTimeIsOpen(slice.Time):
+ intraday_momentum.yesterdays_close = slice[symbol].Close
+ intraday_momentum.bars_seen_today = 0
+
+ return insights
+
+
+
+Trade Execution
+
+ The attached research paper holds positions for the last 30 minutes of the trading day, exiting at the market close.
+ In order to accomplish this, we create a custom execution model. The model defined below submits a market order for
+ the entry while also submitting a market on close order in the same time step.
+
+
+
+class CloseOnCloseExecutionModel(ExecutionModel):
+ def __init__(self):
+ self.targetsCollection = PortfolioTargetCollection()
+ self.invested_symbols = []
+
+ def Execute(self, algorithm, targets):
+ # for performance we check count value, OrderByMarginImpact and ClearFulfilled are expensive to call
+ self.targetsCollection.AddRange(targets)
+ if self.targetsCollection.Count > 0:
+ for target in self.targetsCollection.OrderByMarginImpact(algorithm):
+ # calculate remaining quantity to be ordered
+ quantity = OrderSizing.GetUnorderedQuantity(algorithm, target)
+ if quantity == 0:
+ continue
+
+ algorithm.MarketOrder(target.Symbol, quantity)
+ algorithm.MarketOnCloseOrder(target.Symbol, -quantity)
+
+ self.targetsCollection.ClearFulfilled(algorithm)
+
+
+
+
+
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html b/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html
new file mode 100644
index 0000000..c7304ae
--- /dev/null
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
new file mode 100644
index 0000000..7623dda
--- /dev/null
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
@@ -0,0 +1,23 @@
+
+ We conclude that the momentum pattern documented by Gao et al (2017) produces lower returns over our testing period.
+ In the algorithm attached above, we find a compounding annual return of -3.8%. This may be attributed to the
+ inclusion of transaction costs in our analysis while Gao et al (2017) decide to ignore them. Throughout their
+ research paper, Gao et al (2017) provide several suggestions to increase the return generated by this momentum
+ pattern. These areas of future research include:
+
+
+
+ -
+ Trading only on days with economic news events by utilizing the
+ TradingEconomics data set.
+ Gae et al (2017) suggest using the Michigan Consumer Sentiment Index, and news released on gross domestic
+ product or the consumer price index.
+
+ - Restricting trading to times of greater volatility or during financial crises.
+ - Incorporating a volume threshold the morning session must pass to signal a trade for the close.
+ - Increasing diversification by extending the universe to include ETFs from other sectors.
+ -
+ Considering the return from multiple n-minute periods throughout the day to predict the return of the closing
+ period.
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html b/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html
new file mode 100644
index 0000000..a3127a1
--- /dev/null
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html
@@ -0,0 +1,6 @@
+
+ -
+ Gao, Lei and Han, Yufeng and Li, Sophia Zhengzi and Zhou, Guofu, Market Intraday Momentum (June 19, 2017).
+ Online copy
+
+
\ No newline at end of file
From 75a44e5d0877fd4c51bcafa9b911aaab1727879f Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Mon, 3 Aug 2020 08:48:05 -0700
Subject: [PATCH 141/215] Added 279 temporal cnn strategy
---
.../01 Abstract.html | 6 +
.../02 Introduction.html | 8 +
.../03 Method.html | 280 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 References.html | 7 +
5 files changed, 307 insertions(+)
create mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
create mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
create mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
create mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
create mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
new file mode 100644
index 0000000..a6cf634
--- /dev/null
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
@@ -0,0 +1,6 @@
+
+ In this tutorial, we apply Deep Learning Classification in an attempt to forecast the movement of future stock prices.
+
+
+ Key Concepts: Convolutional Neural Network, Deep Learning, Time-series Forecasting, Classification, Trading
+
\ No newline at end of file
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
new file mode 100644
index 0000000..1fa0f4e
--- /dev/null
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
@@ -0,0 +1,8 @@
+
+ Various time series forecasting models (SMA, EMA, etc.) have been applied to stocks to forecast price movements.
+ More recently, with the advent of Neural Networks, which have seen applications in several fields, ranging from
+ medicine to fraud detection, researchers have tried to apply Neural Networks to the markets in an attempt to forecast price
+ movements. Convolutional Neural Networks (CNNs) are a class of Neural Networks most widely known for their use in
+ image classification, and now, researchers are applying CNNs to extract patterns, also known as features, from times-series
+ data to forecast future stock prices.
+
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
new file mode 100644
index 0000000..1a4765a
--- /dev/null
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
@@ -0,0 +1,280 @@
+Overview
+
+ Our strategy is to develop a Temporal Convolutional Neural Network model and train our model on historical OHLCV data
+ to predict the movement of future prices. Then, when trading, we take the most recent data, feed it into our model, and
+ bet on the direction of the price movement based on our model prediction. We will walk through the code required
+ for building the Neural Network Architecture and for preparing the data for our model, as this part is the harder part to understand.
+
+
+Inputs/Outputs
+
+
+ Before we build our Neural Network Architecture, we need to understand the inputs and outputs to our model.
+ The input to the model will be the OHLC+Volume data for t-14 to t time steps (past 15 time steps). The output is a
+ direction (Up, Down, Stationary) of the movement of the average close of the t+1 to t+5 time steps (5 future timestamps).
+ The movement is considered stationary if the abs(% change 5-step average close) < .01%. These three directions will
+ form the labels for which our model will try to classify, thus we have a classification problem.
+
+
+
+Neural Network Model Architecture
+
+
+ Now, we will need to build our Neural Network Architecture, which we will build using Keras,
+ a high-level Python Deep Learning API. To begin, we will need a few import statements:
+
+
+
+
+ import tensorflow as tf
+ from tensorflow.keras.layers import Input, Conv1D, Dense, Lambda, Flatten, Concatenate
+ from tensorflow.keras import Model
+ from tensorflow.keras import metrics
+ from tensorflow.keras.losses import CategoricalCrossentropy
+ from tensorflow.keras import utils
+ from sklearn.preprocessing import StandardScaler
+ import numpy as np
+ import math
+
+
+
+
+
+ We start with an Input Layer, where training and testing data are initially accepted. With 15 time steps and 5 input
+ variables (OHLCV), our input shape will be 15 x 5.
+
+
+
+
+ inputs = Input(shape=(15, 5))
+
+
+
+
+
+ We then feed this Layer into our Convolutional Layer, where we extract features, which will serve as
+ the Neural Network's method of extracting patterns from the time-series data.
+
+
+
+
+ feature_extraction = Conv1D(30, 4, activation='relu')(inputs)
+
+
+
+
+
+
+ long_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[0])(feature_extraction)
+ mid_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[1])(feature_extraction)
+ short_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[2])(feature_extraction)
+
+ long_term_conv = Conv1D(1, 1, activation='relu')(long_term)
+ mid_term_conv = Conv1D(1, 1, activation='relu')(mid_term)
+ short_term_conv = Conv1D(1, 1, activation='relu')(short_term)
+
+
+
+
+
+ These three layers are then combined, and since we will be working with 2D input matrices, we will then need to flatten
+ our layer.
+
+
+
+
+ combined = Concatenate(axis=1)([long_term_conv, mid_term_conv, short_term_conv])
+ flattened = Flatten()(combined)
+
+
+
+
+
+ Our final layer will be our output layer, and since we have three outputs (Up, Stationary, Down),
+ this layer will have three nodes.
+
+
+
+
+ outputs = Dense(3, activation='softmax')(flattened)
+
+
+
+
+ The resulting Neural Network Architecture is shown in the following:
+
+
+
+
+
+Preparing the Data for Our Model
+
+
+ First, we need to define a class and a few variables:
+
+
+
+
+ input_vars = ['open', 'high', 'low', 'close', 'volume']
+
+ class Direction:
+ UP = 0
+ DOWN = 1
+ STATIONARY = 2
+
+ rolling_avg_window_size = 5
+
+ shift = -(rolling_avg_window_size-1)
+
+ stationary_threshold = .0001
+
+ scaler = StandardScaler()
+
+
+
+
+ input_vars define the variables we want to use to make our predictions. The class Direction
+ defines a few integers that we will label our data with (labels are needed for classification problems). The reason
+ we use integers instead of strings is because Keras, like most ML libraries, only work with numerical data. Moving on,
+ rolling_avg_window_size is the number of time steps used for the calculate the average of future closing prices,
+ described earlier in
+ Inputs/Outputs (t+1 to t+5 is 5 time steps, thus this value accordingly is set to 5).
+ The constant stationary_threshold defines the threshold for a change in price to be considered
+ stationary, and this change also described in Inputs/Outputs. The shift is the shift needed to align
+ the average value (mentioned earlier), in our pandas DataFrame to make it easier for us to slice our DataFrame into pieces
+ manageable for our Neural Network model. The scaler object will be used later to scale our data.
+ The purpose of the variables will become clearer in use.
+
+ Next, say we are at time t in the pandas DataFrame, to calculate the average closing prices of t+1 to t+5, and calculate
+ the percent change from the close at t, we use the following lines of code:
+
+
+
+
+ df['close_avg'] = df['close'].rolling(window=rolling_avg_window_size).mean().shift(shift)
+ df['close_avg_change_pct'] = (df['close_avg'] - df['close']) / df['close']
+
+
+
+
+ The rolling mean should be self explanatory for those familiar with pandas (if not, I hope by now readers realize
+ this is a more advanced resource).
+ Here, .shift(shift) aligns the five time step rolling average 'close_avg' column to the end of the last
+ time step we want to use as an input for prediction, and this action will make slicing up the DataFrame into input
+ and labeled data for our model much easier.
+
+
+
+ To label our data, we need to first define a function that we will use with the DataFrame's apply() method.
+ Usually, lambda functions are used for this purpose, however, our function's logic will not fit inside a lambda.
+
+
+
+
+ def label_data(row):
+ if row['close_avg_change_pct'] > stationary_threshold:
+ return Direction.UP
+ elif row['close_avg_change_pct'] < -stationary_threshold:
+ return Direction.DOWN
+ else:
+ return Direction.STATIONARY
+
+
+
+
+ Now, we apply the above function to our DataFrame to get a column of labels:
+
+
+
+
+ df['movement_labels'] = df.apply(label_data, axis=1)
+
+
+
+
+ With our labels in place, we can now slice up our DataFrame into pieces manageable for our model and collect them into
+ lists:
+
+
+
+
+ data = []
+ labels = []
+
+ for i in range(len(df)-self.n_tsteps+1+shift):
+ label = df['movement_labels'].iloc[i+self.n_tsteps-1]
+ data.append(df[input_vars].iloc[i:i+self.n_tsteps].values)
+ labels.append(label)
+
+ data = np.array(data)
+
+
+
+
+ Here, we iterate numerically through the DataFrame, with a carefully calculated value in our range()
+ function to make sure we do access an out-of-bounds index. We cast the list of numpy arrays to a numpy array because
+ Keras works best with numpy arrays.
+
+
+
+ Now, we need to scale our data. It is good practice to scale data when using Machine Learning models so that the
+ range of values is normalized across the features.
+
+
+
+
+ dim1, dim2, dim3 = data.shape
+ data = data.reshape(dim1*dim2, dim3)
+ data = scaler.fit_transform(data)
+ data = data.reshape(dim1, dim2, dim3)
+
+
+
+
+ The reason we reshape the data before the scaling is because sklearn is only able to handle 2D data, but right after,
+ we can return the data to the original shape with another reshaping.
+
+
+
+ Finally, since Keras requires the labels to be dummified (which essentially turns a list of labels into a matrix of
+ 1s and 0s, where the index of the 1 is equal to the value of the integer label), we use the following:
+
+
+
+
+ labels = utils.to_categorical(labels, num_classes=3)
+
+
+
+
+ Specifying num_classes to 3 ensures our matrix will have three columns, one for each label (Up, Down, Stationary).
+
+
+
+ We have now finished the walk through of the difficult parts of the code.
+
+
+Trading
+
+
+ After we feed in the prepared data into the model (the corresponding code, as well as the rest of the code, can be
+ found in Algorithm) we can
+ use our model to make predictions. We take the most recent 15 bars of OHLCV data and apply our model on it to make
+ a prediction. If the model predicts with above 55% confidence that the future direction is up (resp. down), we emit
+ an Price Insight with direction InsightDirection.Up (resp. InsightDirection.Down). Since we are
+ betting on the direction of the average of the future five closing prices, it would be intuitive to emit an Insights
+ in the respective direction for timedeltas of one through five. However, we choose to only emit an Insight
+ with a timedelta with a random integer between one and five to constrain the number of insights we emit.
+
+
+
+The Rest
+
+
+ We have covered the difficult aspects of the code, as well as give an overview of our strategy. The rest of the
+ necessary code to execute the strategy can be found in Algorithm.
+
+
+
+
+
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
new file mode 100644
index 0000000..9e98ce9
--- /dev/null
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
new file mode 100644
index 0000000..dedbeb6
--- /dev/null
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
@@ -0,0 +1,7 @@
+
+ -
+ Nikolaos Passalis, Anastasios Tefas, Juho Kanniainen, Moncef Gabbouj, Alexandros Iosifidis:
+ "Temporal Logistic Neural Bag-of-Features for Financial Time series Forecasting leveraging Limit Order Book Data", 2019;
+ https://arxiv.org/pdf/1901.08280.pdf.
+
+
\ No newline at end of file
From a7c9fbec4ab53b8a8334d2acde9d6b87dec13848 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Mon, 3 Aug 2020 08:50:08 -0700
Subject: [PATCH 142/215] 279 temporal cnn update 00 SL
---
.../00 Strategy Library/01 Strategy Library.php | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index e5ab9e0..2efe9eb 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -606,7 +606,16 @@
],
'description' => "A simple trend following strategy on commodities futures.",
'tags' => 'Momentum, Futures, Commodities'
- ]
+ ],
+ [
+ 'name' => 'Price Forecasting using a Temporal Convolutional Neural Network Model',
+ 'link' => 'strategy-library/forecasting-stock-prices-using-a-temporal-cnn',
+ 'sources' => [
+ 'Tampere University' => 'https://arxiv.org/pdf/1901.08280.pdf'
+ ],
+ 'description' => "Applying a Temporal Convolutional Neural Network to forecasting future stock prices.",
+ 'tags' => 'Convolutional Neural Network, Equities, Forecasting, Deep Learning'
+ ]
];
?>
From cb872175e7804070859b0b63661189572f8ad161 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Mon, 3 Aug 2020 17:45:37 -0600
Subject: [PATCH 143/215] Fix missing div tags
---
.../03 Method.html | 3 ++-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../29 Term Structure Effect in Commodities/03 Algorithm.html | 4 ++--
.../92 Price Earnings Anomaly/03 Algorithm.html | 2 +-
5 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html
index 3675eee..ffff064 100755
--- a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html
+++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html
@@ -82,4 +82,5 @@ Step 4: Rebalance Function:
# Invest 100% in the each of the selected symbols
for symbol in symbols:
- self.SetHoldings(symbol, 1)
\ No newline at end of file
+ self.SetHoldings(symbol, 1)
+
\ No newline at end of file
diff --git a/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html b/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html
index 635c7b2..ad5e9f8 100644
--- a/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html
+++ b/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html
@@ -1,4 +1,4 @@
-div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
+
diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html
index cc3a665..b50f912 100644
--- a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html
+++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html
@@ -1,4 +1,4 @@
-div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
+
diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html b/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html
index 1707718..ada8627 100644
--- a/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html
+++ b/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html
@@ -1,6 +1,6 @@
Algorithm
-div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
+
@@ -8,7 +8,7 @@
-div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
+
diff --git a/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html b/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html
index dce77dd..35a5232 100644
--- a/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html
+++ b/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html
@@ -1,4 +1,4 @@
-div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;">
+
From 53e3114c169f284aba74960ff1b61d9ad3837982 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Tue, 11 Aug 2020 17:03:22 -0600
Subject: [PATCH 144/215] Adds strategy 1028 - Ichimoku Clouds in the Energy
Sector
---
.../01 Strategy Library.php | 11 +-
.../01 Abstract.html | 8 +
.../02 Introduction.html | 35 ++++
.../03 Method.html | 150 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 Benchmark Performance.html | 10 ++
...06 Market & Competition Qualification.html | 13 ++
.../07 Conclusion.html | 21 +++
.../08 References.html | 6 +
9 files changed, 259 insertions(+), 1 deletion(-)
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index e5ab9e0..e4eb7df 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -606,7 +606,16 @@
],
'description' => "A simple trend following strategy on commodities futures.",
'tags' => 'Momentum, Futures, Commodities'
- ]
+ ],
+ [
+ 'name' => 'Ichimoku Clouds in the Energy Sector',
+ 'link' => 'strategy-library/ichimoku-clouds-in-the-energy-sector',
+ 'sources' => [
+ 'SSRN' => 'https://ssrn.com/abstract=3520582'
+ ],
+ 'description' => 'A techincal indicator crossover strategy trading the largest energy companies.',
+ 'tags'=>'Intermediate, Technical Indicator, Ichimoku Cloud, Crossover, Equities'
+ ],
];
?>
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html
new file mode 100644
index 0000000..3dd4983
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html
@@ -0,0 +1,8 @@
+
+ Gurrib (2020) is the first published research paper to analyze the predictive power of Ichimoku Clouds for the
+ largest 10 stocks in the US energy sector. In this tutorial, we implement a similar strategy while reducing the
+ effect of look-ahead bias integrated into the original study. Our findings show that while the strategy has an
+ impressive 79% return during the 2020 oil price war, the strategy has worse performance than found by Gurrib
+ (2020). We discover that throughout a 5 year backtest, the strategy fails to beat the benchmark of a popular
+ energy sector ETF.
+
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html
new file mode 100644
index 0000000..c5efef1
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html
@@ -0,0 +1,35 @@
+
+ A vast amount of research studies have been published which document mixed results when utilizing technical
+ analysis to forecast future prices of securities. The Ichimoku Cloud, one of the most widely-used technical
+ indicators in Japan, was first publicized by Goichi Hosoda. In 1996, Hidenobu Sasaki reworked the framework to
+ form the current charting analysis tool. This indicator is composed of 5 lines in a time series, each of which
+ are described mathematically in
+ online resources.
+
+
+
+ Gurrib (2020) finds that applying a simple trading strategy using the time series of the Ichimoku Cloud can
+ increase the mean return of a basket containing the top energy stocks from 21.5% (buy-and-hold) to 194% over a 7
+ year period. The components of the Ichimoku Cloud that Gurrib (2020) utilizes in this strategy are the Chikou
+ Span, Senkou Span A, and Senkou Span B. The Senkou Span lines form the top and bottom of the Ichimoku Cloud. The
+ strategy that we trade off of these lines is defined as follows:
+
+
+
+ - Long when the Chikou line crosses the top of the cloud from below.
+ - Short when the Chikou line crosses the bottom of the cloud from above.
+
+
+
+ For better understanding, here is a visualization of the price of XOM, it's Ichimoku Cloud time series, and the
+ resulting buy/sell signals.
+
+
+
+
+
+ Note: all of the plots throughout this tutorial are reproducible in the attached research notebook, along with
+ some descriptive statistics for securities in the universe.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html
new file mode 100644
index 0000000..8669ce3
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html
@@ -0,0 +1,150 @@
+Universe Selection
+
+ Gurrib (2020) selects a universe of the 10 largest-weighed constituents of the S&P Composite 1500 Energy Index
+ over the testing period. This inherently incorporates lookahead-bias into the study as the security weights are
+ sourced over the period the trading simulation occurs. Furthermore, since the publication of Gurrib (2020), some
+ of the securities have even been delisted. Thus, to eliminate lookahead-bias and avoid delistings, we implement a
+ universe selection model that provides the trading system with the 10 largest companies in the energy sector as of
+ the current date in the backtest. Since the largest companies change infrequently, we only refresh the universe on
+ a monthly basis.
+
+
+
+
+def SelectCoarse(self, algorithm, coarse):
+ if algorithm.Time.month == self.month:
+ return Universe.Unchanged
+ return [ x.Symbol for x in coarse if x.HasFundamentalData ]
+
+def SelectFine(self, algorithm, fine):
+ self.month = algorithm.Time.month
+
+ energy_stocks = [ f for f in fine if f.AssetClassification.MorningstarSectorCode == MorningstarSectorCode.Energy ]
+ sorted_by_market_cap = sorted(energy_stocks, key=lambda x: x.MarketCap, reverse=True)
+ return [ x.Symbol for x in sorted_by_market_cap[:self.fine_size] ]
+
+
+
+
+Alpha Construction
+
+ The IchimokuCloudCrossOverAlphaModel emits insights to hold a long position after the Chikou Span crosses over the
+ top of the cloud for a given security. Additionally, the strategy is made symmetrical by entering short positions
+ after the Chikou Span crosses below the bottom of the cloud. During construction of this alpha model, we simply
+ set up a dictionary to hold a SymbolData object for each symbol in the universe.
+
+
+
+
+class IchimokuCloudCrossOverAlphaModel(AlphaModel):
+ symbol_data_by_symbol = {}
+
+
+
+
+ The SymbolData class constructor is shown below. We first set up two class variables, `previous_location` and
+ `direction`. The former enables the algorithm to signal when the Chikou Span crosses over the boundaries of the
+ Ichimoku Cloud. The latter is added to ensure we continue to emit daily insights in the proper direction. Inside
+ the `__init__` method is where we create the
+ IchimokuKinkoHyo indicator and warm
+ it up.
+
+
+
+
+class SymbolData:
+ previous_location = None
+ direction = None
+
+ def __init__(self, symbol, algorithm):
+ # Create Ichimoku indicator
+ self.ichimoku = IchimokuKinkoHyo()
+
+ # Warm up indicator
+ history = algorithm.History(symbol, self.ichimoku.WarmUpPeriod + 1, Resolution.Daily).loc[symbol]
+ for idx, row in history.iterrows():
+ if self.ichimoku.IsReady:
+ self.previous_location = self.get_location()
+
+ tradebar = TradeBar(idx, symbol, row.open, row.high, row.low, row.close, row.volume)
+ self.ichimoku.Update(tradebar)
+
+
+
+
+Determining the Indicator Location
+
+ We define the following helper method to return the location of the Chikou Span with respect to the cloud. The
+ alpha model utilizes this helper method to determine when the Chikou Span is exiting the Ichimoku Cloud.
+
+
+
+
+def get_location(self):
+ chikou = self.ichimoku.Chikou.Current.Value
+
+ senkou_span_a = self.ichimoku.SenkouA.Current.Value
+ senkou_span_b = self.ichimoku.SenkouB.Current.Value
+ cloud_top = max(senkou_span_a, senkou_span_b)
+ cloud_bottom = min(senkou_span_a, senkou_span_b)
+
+ if chikou > cloud_top:
+ return 1 # Above cloud
+ if chikou < cloud_bottom:
+ return -1 # Below cloud
+
+ return 0 # Inside cloud
+
+
+
+
+Alpha Update
+
+ As new TradeBars are provided to the
+ alpha model's Update method, we update the Ichimoku indicator of each symbol. We then emit insights for the
+ symbols that have their Chikou Span breaking out of their respective Ichimoku Cloud in a new direction. To
+ maintain positions while we wait for another crossover in the Ichimoku Cloud, we emit insights on a daily basis
+ with 1-day duration.
+
+
+
+
+def Update(self, algorithm, data):
+ insights = []
+
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ if not data.ContainsKey(symbol) or data[symbol] is None:
+ continue
+
+ # Update indicator with the latest TradeBar
+ symbol_data.ichimoku.Update(data[symbol])
+
+ # Determine insight direction
+ current_location = symbol_data.get_location()
+ if symbol_data.previous_location is not None: # Indicator is ready
+ if symbol_data.previous_location != 1 and current_location == 1:
+ symbol_data.direction = InsightDirection.Up
+ if symbol_data.previous_location != -1 and current_location == -1:
+ symbol_data.direction = InsightDirection.Down
+
+ symbol_data.previous_location = current_location
+
+ # Emit insight
+ if symbol_data.direction:
+ insight = Insight.Price(symbol, timedelta(days=1), symbol_data.direction)
+ insights.append(insight)
+
+ return insights
+
+
+
+
+Portfolio Construction & Trade Execution
+
+ Following the guidelines of Alpha Streams
+ and the Quant League competition, we
+ utilize the
+ EqualWeightingPortfolioConstructionModel and the
+
+ ImmediateExecutionModel.
+
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html
new file mode 100644
index 0000000..487c85d
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html
new file mode 100644
index 0000000..f3592aa
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html
@@ -0,0 +1,10 @@
+
+ To analyze the performance of this trading strategy, we compare its return to the return of buying and holding a
+ popular ETF tracking the energy sector. In this study, we use XLE, the Energy Select Sector SPDR® Fund, as the
+ benchmark. We can see from the plot below that holding the benchmark ETF would have produced a return of -32% over
+ the backtest period.
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html
new file mode 100644
index 0000000..e63b0d3
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html
@@ -0,0 +1,13 @@
+
+ Although this strategy passes several of the
+ metrics required for Alpha Streams
+ and the Quant League competition, it requires further work to pass the following requirements:
+
+
+
+ - Profitable
+ - PSR >= 80%
+ - Max drawdown duration <= 6 months
+ - Insights contain the following properties: Symbol, Duration, Direction, and Weight
+ - Minute or second data resolution
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html
new file mode 100644
index 0000000..4631b74
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html
@@ -0,0 +1,21 @@
+
+ While the strategy examined herein produces a 79% return throughout the 2020 oil price war and stock market crash,
+ we conclude the strategy does not currently provide as profitable of results as documented by Gurrib (2020). The
+ strategy experiences a -39% return, a 48% drawdown, about a 5 year drawdown duration, and a profit-loss ratio of
+ 0.92. To continue the development of this strategy, future areas of research include:
+
+
+
+ -
+ Only trading when a bullish or bearish trend are confirmed. Gurrib (2020) provides conditions for evaluating
+ the trend.
+
+ - Adjusting the data resolution used within the indicator.
+ - Considering fundamental or alternative data points before placing trades.
+ - Adjusting the parameters of the Ichimoku indicator.
+ -
+ Replacing the portfolio construction model with one that only allocates 10% of the capital base to each security.
+ This will violate the requirements of the Alpha Streams and Quant League competition, but it will reduce the
+ transaction costs and provide a more accurate equity curve of the underlying strategies performance.
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html
new file mode 100644
index 0000000..37c3e11
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html
@@ -0,0 +1,6 @@
+
+ -
+ Gurrib, Ikhlaas, Can the Leading Us Energy Stock Prices Be Predicted Using Ichimoku Clouds? (January 16, 2020).
+ Online Copy
+
+
\ No newline at end of file
From 6142dbf3ae57c8d8500e5722e8ff4b84d1106e97 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 09:29:42 -0700
Subject: [PATCH 145/215] fixed 01 strategy library information
---
.../00 Strategy Library/01 Strategy Library.php | 4 ++--
.../01 Abstract.html | 0
.../02 Introduction.html | 0
.../03 Method.html | 0
.../04 Algorithm.html | 0
.../05 References.html | 0
6 files changed, 2 insertions(+), 2 deletions(-)
rename 04 Strategy Library/{1024 Forecasting Stock Prices using a Temporal CNN => 1024 Forecasting Stock Prices using a Temporal CNN Model}/01 Abstract.html (100%)
rename 04 Strategy Library/{1024 Forecasting Stock Prices using a Temporal CNN => 1024 Forecasting Stock Prices using a Temporal CNN Model}/02 Introduction.html (100%)
rename 04 Strategy Library/{1024 Forecasting Stock Prices using a Temporal CNN => 1024 Forecasting Stock Prices using a Temporal CNN Model}/03 Method.html (100%)
rename 04 Strategy Library/{1024 Forecasting Stock Prices using a Temporal CNN => 1024 Forecasting Stock Prices using a Temporal CNN Model}/04 Algorithm.html (100%)
rename 04 Strategy Library/{1024 Forecasting Stock Prices using a Temporal CNN => 1024 Forecasting Stock Prices using a Temporal CNN Model}/05 References.html (100%)
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 2efe9eb..1c02f03 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -608,8 +608,8 @@
'tags' => 'Momentum, Futures, Commodities'
],
[
- 'name' => 'Price Forecasting using a Temporal Convolutional Neural Network Model',
- 'link' => 'strategy-library/forecasting-stock-prices-using-a-temporal-cnn',
+ 'name' => 'Forecasting Stock Prices using a Temporal CNN Model',
+ 'link' => 'strategy-library/forecasting-stock-prices-using-a-temporal-cnn-model',
'sources' => [
'Tampere University' => 'https://arxiv.org/pdf/1901.08280.pdf'
],
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html
similarity index 100%
rename from 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
rename to 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html
similarity index 100%
rename from 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
rename to 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html
similarity index 100%
rename from 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
rename to 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
similarity index 100%
rename from 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
rename to 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 References.html
similarity index 100%
rename from 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
rename to 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 References.html
From 0328c543a7d0cf791ffa8d7e561ca875029ae620 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 09:35:47 -0700
Subject: [PATCH 146/215] Adds 292 Leveraged ETFS
---
.../00 Strategy Library/01 Strategy Library.php | 9 +++++++++
.../01 Abstract.html | 3 +++
.../02 Introduction.html | 9 +++++++++
.../03 Method.html | 12 ++++++++++++
.../04 Algorithm.html | 6 ++++++
.../05 Results.html | 5 +++++
.../06 References.html | 7 +++++++
7 files changed, 51 insertions(+)
create mode 100644 04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html
create mode 100644 04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html
create mode 100644 04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html
create mode 100644 04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html
create mode 100644 04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
create mode 100644 04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 2efe9eb..4ddbbdf 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -615,6 +615,15 @@
],
'description' => "Applying a Temporal Convolutional Neural Network to forecasting future stock prices.",
'tags' => 'Convolutional Neural Network, Equities, Forecasting, Deep Learning'
+ ],
+ [
+ 'name' => 'Leveraged ETFs with Systematic Risk Management',
+ 'link' => 'leveraged-etfs-with-systematic-risk-management',
+ 'sources' => [
+ 'The Lead-Lag Report' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2741701'
+ ],
+ 'description' => 'We apply Simple Moving Averages to manage risk in holding leveraged ETFs in an attempt to by the S&P500',
+ 'tags' => 'Simple Moving Average, Risk Management, S&P500, ETF'
]
];
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html
new file mode 100644
index 0000000..6e0ee07
--- /dev/null
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html
@@ -0,0 +1,3 @@
+
+ In this tutorial, we attempt to beat the returns of the S&P500 Index using leverage and systematic risk management.
+
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html
new file mode 100644
index 0000000..0b1b370
--- /dev/null
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html
@@ -0,0 +1,9 @@
+
+ When measuring the profitability of a strategy, it is usually not enough to be profitable, as it should also beat
+ the benchmark, for which the SP500 Index is most commonly used. If not, what would be the reason to not just invest
+ in a low-cost SP500 index instead (not accounting for risk)? However, what if we could beat the SP500 with the SP500?
+ This is what Gayed et al. proposed with their strategy of using Leveraged SP500 indices with Systematic Risk Management.
+ They propose that Moving Averages are a good method to assess volatility in the market, and they use it to manage risk,
+ which is especially important since the effects of price swings in a leveraged ETF are magnified due to the leverage.
+ With this method, we hope to outperform the SP500 while at the same time, attempt to reduce drawdown.
+
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html
new file mode 100644
index 0000000..a43a70e
--- /dev/null
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html
@@ -0,0 +1,12 @@
+
+ We develop hold/liquidate positions based on the 200-day Simple Moving Average (SMA) of our ETF, for which we use SSO,
+ a 2x leveraged SP500 index ETF. With 200 days instead of using fewer days, say 50, we reduce the number of trades per year,
+ thereby reducing transaction costs and the effects of slippage. Moving on, if the current price of SOO is above the 200-day SMA,
+ we hold SSO, and if SSO dips below our 200-day SMA, we sell liquidate our position and rotate our position into short-term
+ treasuries, which is done through SHY, an ETF that tracks 1-3 year U.S. Treasury Bonds. If we are holding SHY, and the
+ current price of SSO moves above the 200-day SMA, then we rotate back into SSO and liquidate SHY.
+
+
+
+
+
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html
new file mode 100644
index 0000000..3b0ead5
--- /dev/null
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
new file mode 100644
index 0000000..dfa86cf
--- /dev/null
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
@@ -0,0 +1,5 @@
+
+ We compare our results to the SP500 Benchmark, for which we use SPY, over a five year period. For some years,
+ our algorithm outperforms, but for other years, the algorithm is beaten by SPY, and the returns just slightly beat SPY
+ in final ROI. The algorithm produced a CAGR of 11.49% during the five years.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html
new file mode 100644
index 0000000..c1ce885
--- /dev/null
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html
@@ -0,0 +1,7 @@
+
+ -
+ Gayed, Michael and Bilello, Charles, Leverage for the Long Run - A Systematic Approach to Managing Risk and
+ Magnifying Returns in Stocks (March 3, 2016). 2016 Charles H. Dow Award.
+ Online Copy.
+
+
\ No newline at end of file
From ba096a3db4291a475c71e7356b4c4b0f24aff9f6 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 12:03:40 -0700
Subject: [PATCH 147/215] updated algorithm
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index 9e98ce9..ef8f26c 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From ac9c4113615c14c7feb66311d29081f9cdbf3b47 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 13:14:33 -0700
Subject: [PATCH 148/215] removed feature-292 from PR
---
.../01 Strategy Library.php | 9 -
.../01 Abstract.html | 6 -
.../02 Introduction.html | 8 -
.../03 Method.html | 280 ------------------
.../04 Algorithm.html | 6 -
.../05 References.html | 7 -
6 files changed, 316 deletions(-)
delete mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
delete mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
delete mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
delete mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
delete mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 4ddbbdf..cb9f4b9 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -607,15 +607,6 @@
'description' => "A simple trend following strategy on commodities futures.",
'tags' => 'Momentum, Futures, Commodities'
],
- [
- 'name' => 'Price Forecasting using a Temporal Convolutional Neural Network Model',
- 'link' => 'strategy-library/forecasting-stock-prices-using-a-temporal-cnn',
- 'sources' => [
- 'Tampere University' => 'https://arxiv.org/pdf/1901.08280.pdf'
- ],
- 'description' => "Applying a Temporal Convolutional Neural Network to forecasting future stock prices.",
- 'tags' => 'Convolutional Neural Network, Equities, Forecasting, Deep Learning'
- ],
[
'name' => 'Leveraged ETFs with Systematic Risk Management',
'link' => 'leveraged-etfs-with-systematic-risk-management',
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
deleted file mode 100644
index a6cf634..0000000
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/01 Abstract.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
- In this tutorial, we apply Deep Learning Classification in an attempt to forecast the movement of future stock prices.
-
-
- Key Concepts: Convolutional Neural Network, Deep Learning, Time-series Forecasting, Classification, Trading
-
\ No newline at end of file
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
deleted file mode 100644
index 1fa0f4e..0000000
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/02 Introduction.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
- Various time series forecasting models (SMA, EMA, etc.) have been applied to stocks to forecast price movements.
- More recently, with the advent of Neural Networks, which have seen applications in several fields, ranging from
- medicine to fraud detection, researchers have tried to apply Neural Networks to the markets in an attempt to forecast price
- movements. Convolutional Neural Networks (CNNs) are a class of Neural Networks most widely known for their use in
- image classification, and now, researchers are applying CNNs to extract patterns, also known as features, from times-series
- data to forecast future stock prices.
-
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
deleted file mode 100644
index 1a4765a..0000000
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/03 Method.html
+++ /dev/null
@@ -1,280 +0,0 @@
-Overview
-
- Our strategy is to develop a Temporal Convolutional Neural Network model and train our model on historical OHLCV data
- to predict the movement of future prices. Then, when trading, we take the most recent data, feed it into our model, and
- bet on the direction of the price movement based on our model prediction. We will walk through the code required
- for building the Neural Network Architecture and for preparing the data for our model, as this part is the harder part to understand.
-
-
-Inputs/Outputs
-
-
- Before we build our Neural Network Architecture, we need to understand the inputs and outputs to our model.
- The input to the model will be the OHLC+Volume data for t-14 to t time steps (past 15 time steps). The output is a
- direction (Up, Down, Stationary) of the movement of the average close of the t+1 to t+5 time steps (5 future timestamps).
- The movement is considered stationary if the abs(% change 5-step average close) < .01%. These three directions will
- form the labels for which our model will try to classify, thus we have a classification problem.
-
-
-
-Neural Network Model Architecture
-
-
- Now, we will need to build our Neural Network Architecture, which we will build using Keras,
- a high-level Python Deep Learning API. To begin, we will need a few import statements:
-
-
-
-
- import tensorflow as tf
- from tensorflow.keras.layers import Input, Conv1D, Dense, Lambda, Flatten, Concatenate
- from tensorflow.keras import Model
- from tensorflow.keras import metrics
- from tensorflow.keras.losses import CategoricalCrossentropy
- from tensorflow.keras import utils
- from sklearn.preprocessing import StandardScaler
- import numpy as np
- import math
-
-
-
-
-
- We start with an Input Layer, where training and testing data are initially accepted. With 15 time steps and 5 input
- variables (OHLCV), our input shape will be 15 x 5.
-
-
-
-
- inputs = Input(shape=(15, 5))
-
-
-
-
-
- We then feed this Layer into our Convolutional Layer, where we extract features, which will serve as
- the Neural Network's method of extracting patterns from the time-series data.
-
-
-
-
- feature_extraction = Conv1D(30, 4, activation='relu')(inputs)
-
-
-
-
-
-
- long_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[0])(feature_extraction)
- mid_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[1])(feature_extraction)
- short_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[2])(feature_extraction)
-
- long_term_conv = Conv1D(1, 1, activation='relu')(long_term)
- mid_term_conv = Conv1D(1, 1, activation='relu')(mid_term)
- short_term_conv = Conv1D(1, 1, activation='relu')(short_term)
-
-
-
-
-
- These three layers are then combined, and since we will be working with 2D input matrices, we will then need to flatten
- our layer.
-
-
-
-
- combined = Concatenate(axis=1)([long_term_conv, mid_term_conv, short_term_conv])
- flattened = Flatten()(combined)
-
-
-
-
-
- Our final layer will be our output layer, and since we have three outputs (Up, Stationary, Down),
- this layer will have three nodes.
-
-
-
-
- outputs = Dense(3, activation='softmax')(flattened)
-
-
-
-
- The resulting Neural Network Architecture is shown in the following:
-
-
-
-
-
-Preparing the Data for Our Model
-
-
- First, we need to define a class and a few variables:
-
-
-
-
- input_vars = ['open', 'high', 'low', 'close', 'volume']
-
- class Direction:
- UP = 0
- DOWN = 1
- STATIONARY = 2
-
- rolling_avg_window_size = 5
-
- shift = -(rolling_avg_window_size-1)
-
- stationary_threshold = .0001
-
- scaler = StandardScaler()
-
-
-
-
- input_vars define the variables we want to use to make our predictions. The class Direction
- defines a few integers that we will label our data with (labels are needed for classification problems). The reason
- we use integers instead of strings is because Keras, like most ML libraries, only work with numerical data. Moving on,
- rolling_avg_window_size is the number of time steps used for the calculate the average of future closing prices,
- described earlier in
- Inputs/Outputs (t+1 to t+5 is 5 time steps, thus this value accordingly is set to 5).
- The constant stationary_threshold defines the threshold for a change in price to be considered
- stationary, and this change also described in Inputs/Outputs. The shift is the shift needed to align
- the average value (mentioned earlier), in our pandas DataFrame to make it easier for us to slice our DataFrame into pieces
- manageable for our Neural Network model. The scaler object will be used later to scale our data.
- The purpose of the variables will become clearer in use.
-
- Next, say we are at time t in the pandas DataFrame, to calculate the average closing prices of t+1 to t+5, and calculate
- the percent change from the close at t, we use the following lines of code:
-
-
-
-
- df['close_avg'] = df['close'].rolling(window=rolling_avg_window_size).mean().shift(shift)
- df['close_avg_change_pct'] = (df['close_avg'] - df['close']) / df['close']
-
-
-
-
- The rolling mean should be self explanatory for those familiar with pandas (if not, I hope by now readers realize
- this is a more advanced resource).
- Here, .shift(shift) aligns the five time step rolling average 'close_avg' column to the end of the last
- time step we want to use as an input for prediction, and this action will make slicing up the DataFrame into input
- and labeled data for our model much easier.
-
-
-
- To label our data, we need to first define a function that we will use with the DataFrame's apply() method.
- Usually, lambda functions are used for this purpose, however, our function's logic will not fit inside a lambda.
-
-
-
-
- def label_data(row):
- if row['close_avg_change_pct'] > stationary_threshold:
- return Direction.UP
- elif row['close_avg_change_pct'] < -stationary_threshold:
- return Direction.DOWN
- else:
- return Direction.STATIONARY
-
-
-
-
- Now, we apply the above function to our DataFrame to get a column of labels:
-
-
-
-
- df['movement_labels'] = df.apply(label_data, axis=1)
-
-
-
-
- With our labels in place, we can now slice up our DataFrame into pieces manageable for our model and collect them into
- lists:
-
-
-
-
- data = []
- labels = []
-
- for i in range(len(df)-self.n_tsteps+1+shift):
- label = df['movement_labels'].iloc[i+self.n_tsteps-1]
- data.append(df[input_vars].iloc[i:i+self.n_tsteps].values)
- labels.append(label)
-
- data = np.array(data)
-
-
-
-
- Here, we iterate numerically through the DataFrame, with a carefully calculated value in our range()
- function to make sure we do access an out-of-bounds index. We cast the list of numpy arrays to a numpy array because
- Keras works best with numpy arrays.
-
-
-
- Now, we need to scale our data. It is good practice to scale data when using Machine Learning models so that the
- range of values is normalized across the features.
-
-
-
-
- dim1, dim2, dim3 = data.shape
- data = data.reshape(dim1*dim2, dim3)
- data = scaler.fit_transform(data)
- data = data.reshape(dim1, dim2, dim3)
-
-
-
-
- The reason we reshape the data before the scaling is because sklearn is only able to handle 2D data, but right after,
- we can return the data to the original shape with another reshaping.
-
-
-
- Finally, since Keras requires the labels to be dummified (which essentially turns a list of labels into a matrix of
- 1s and 0s, where the index of the 1 is equal to the value of the integer label), we use the following:
-
-
-
-
- labels = utils.to_categorical(labels, num_classes=3)
-
-
-
-
- Specifying num_classes to 3 ensures our matrix will have three columns, one for each label (Up, Down, Stationary).
-
-
-
- We have now finished the walk through of the difficult parts of the code.
-
-
-Trading
-
-
- After we feed in the prepared data into the model (the corresponding code, as well as the rest of the code, can be
- found in Algorithm) we can
- use our model to make predictions. We take the most recent 15 bars of OHLCV data and apply our model on it to make
- a prediction. If the model predicts with above 55% confidence that the future direction is up (resp. down), we emit
- an Price Insight with direction InsightDirection.Up (resp. InsightDirection.Down). Since we are
- betting on the direction of the average of the future five closing prices, it would be intuitive to emit an Insights
- in the respective direction for timedeltas of one through five. However, we choose to only emit an Insight
- with a timedelta with a random integer between one and five to constrain the number of insights we emit.
-
-
-
-The Rest
-
-
- We have covered the difficult aspects of the code, as well as give an overview of our strategy. The rest of the
- necessary code to execute the strategy can be found in Algorithm.
-
-
-
-
-
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
deleted file mode 100644
index 9e98ce9..0000000
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/04 Algorithm.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
deleted file mode 100644
index dedbeb6..0000000
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN/05 References.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
- -
- Nikolaos Passalis, Anastasios Tefas, Juho Kanniainen, Moncef Gabbouj, Alexandros Iosifidis:
- "Temporal Logistic Neural Bag-of-Features for Financial Time series Forecasting leveraging Limit Order Book Data", 2019;
- https://arxiv.org/pdf/1901.08280.pdf.
-
-
\ No newline at end of file
From b922d8c1ac92684470ce8020782b9d8f1260a1de Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 14:00:50 -0700
Subject: [PATCH 149/215] updated algorithm and methodology
---
.../03 Method.html | 3 +++
.../04 Algorithm.html | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html
index 1a4765a..e56515f 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html
@@ -265,6 +265,9 @@ Trading
betting on the direction of the average of the future five closing prices, it would be intuitive to emit an Insights
in the respective direction for timedeltas of one through five. However, we choose to only emit an Insight
with a timedelta with a random integer between one and five to constrain the number of insights we emit.
+
+ As an additional note, we decided to set the trading fees to zero (the default fee
+ is one dollar per trade), or else our algorithm will only lose money due to the frequency at which we trade.
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index ef8f26c..bf5b897 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From 6a8345a2d3720170ea4bc4eb4e8fe075c04e82fa Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 14:30:29 -0700
Subject: [PATCH 150/215] fixed error with certain starting dates
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index bf5b897..b2d6569 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From 8c7f56c4223d4545afb61b56b92b6193240c2d55 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 12 Aug 2020 16:53:08 -0700
Subject: [PATCH 151/215] Leveraged ETFs with Systematic Risk Management
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index b2d6569..f3cdced 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From be1fa00392688a3af30a3d05c04aa74e8ac0b662 Mon Sep 17 00:00:00 2001
From: Gustavo Aviles
Date: Thu, 13 Aug 2020 10:02:50 -0700
Subject: [PATCH 152/215] Fix missing opening bracket.
---
04 Strategy Library/00 Strategy Library/01 Strategy Library.php | 1 +
1 file changed, 1 insertion(+)
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index c1c2ad7..ce7332d 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -634,6 +634,7 @@
'description' => 'A techincal indicator crossover strategy trading the largest energy companies.',
'tags'=>'Intermediate, Technical Indicator, Ichimoku Cloud, Crossover, Equities'
],
+ [
'name' => 'Intraday ETF Momentum',
'link' => 'strategy-library/intraday-etf-momentum',
'sources' => [
From d5da7a245726b7c2e51f83141f1c215ae6bca507 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 13 Aug 2020 13:20:33 -0700
Subject: [PATCH 153/215] Leveraged ETFs with Systematic Risk Management
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index f3cdced..ec0cfdf 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From 72f735277380dcb79f6a046b06a48a108583132b Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 13 Aug 2020 16:25:28 -0700
Subject: [PATCH 154/215] fixed typo and link
---
.../00 Strategy Library/01 Strategy Library.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index cb9f4b9..5516ba3 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -609,11 +609,11 @@
],
[
'name' => 'Leveraged ETFs with Systematic Risk Management',
- 'link' => 'leveraged-etfs-with-systematic-risk-management',
+ 'link' => 'strategy-library/leveraged-etfs-with-systematic-risk-management',
'sources' => [
'The Lead-Lag Report' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2741701'
],
- 'description' => 'We apply Simple Moving Averages to manage risk in holding leveraged ETFs in an attempt to by the S&P500',
+ 'description' => 'We apply Simple Moving Averages to manage risk in holding leveraged ETFs in an attempt to beat the S&P500',
'tags' => 'Simple Moving Average, Risk Management, S&P500, ETF'
]
];
From c5c4e8c8ce2dc46d6282824a07549dd836dd2373 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 13 Aug 2020 16:34:10 -0700
Subject: [PATCH 155/215] updated Results section
---
.../05 Results.html | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
index dfa86cf..34fa59b 100644
--- a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
@@ -1,5 +1,4 @@
- We compare our results to the SP500 Benchmark, for which we use SPY, over a five year period. For some years,
- our algorithm outperforms, but for other years, the algorithm is beaten by SPY, and the returns just slightly beat SPY
- in final ROI. The algorithm produced a CAGR of 11.49% during the five years.
+ Our strategy yielded a Sharpe Ratio of .732 over the five years, while buying and holding SPY for the same period
+ yielded a Sharpe Ratio of .572.
\ No newline at end of file
From dd18c61a059301e86e84cfb07c0f49b99ce9ed87 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 13 Aug 2020 16:36:32 -0700
Subject: [PATCH 156/215] improved wording of description
---
04 Strategy Library/00 Strategy Library/01 Strategy Library.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 5516ba3..1f9fe06 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -613,7 +613,7 @@
'sources' => [
'The Lead-Lag Report' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2741701'
],
- 'description' => 'We apply Simple Moving Averages to manage risk in holding leveraged ETFs in an attempt to beat the S&P500',
+ 'description' => 'We apply Simple Moving Averages to manage the risk of holding leveraged ETFs in an attempt to beat the S&P500',
'tags' => 'Simple Moving Average, Risk Management, S&P500, ETF'
]
];
From b7865614fd803ca14d376453528125c21caca440 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Mon, 17 Aug 2020 11:10:56 -0700
Subject: [PATCH 157/215] updated description
---
.../05 Results.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
index 34fa59b..ade26d7 100644
--- a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
+++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html
@@ -1,4 +1,4 @@
- Our strategy yielded a Sharpe Ratio of .732 over the five years, while buying and holding SPY for the same period
- yielded a Sharpe Ratio of .572.
+ We use the S&P 500 as our benchmark, which we track by using the SPY ETF. Our strategy yielded a Sharpe Ratio of .732
+ over the past five years, while buying and holding SPY for the same period yielded a Sharpe Ratio of .572.
\ No newline at end of file
From 3aa608104eae8d3c059c8ecbcc753ecd201e21b3 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Mon, 17 Aug 2020 19:14:13 -0600
Subject: [PATCH 158/215] Add relative metrics to strategy 1026
---
.../04 Algorithm.html | 2 +-
.../05 Conclusion.html | 89 ++++++++++++++++++-
2 files changed, 86 insertions(+), 5 deletions(-)
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html b/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html
index c7304ae..1379e93 100644
--- a/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
index 7623dda..c03c6ca 100644
--- a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
@@ -1,9 +1,90 @@
We conclude that the momentum pattern documented by Gao et al (2017) produces lower returns over our testing period.
- In the algorithm attached above, we find a compounding annual return of -3.8%. This may be attributed to the
- inclusion of transaction costs in our analysis while Gao et al (2017) decide to ignore them. Throughout their
- research paper, Gao et al (2017) provide several suggestions to increase the return generated by this momentum
- pattern. These areas of future research include:
+ Comparing the strategy to the S&P 500 benchmark, the strategy has a lower Sharpe ratio during the backtesting
+ period and during the recovery from the 2020 stock market crash. However, the strategy greatly outperforms the
+ benchmark during the downfall of the 2020 crash, achieving a 4.8 Sharpe ratio. Throughout all of the time periods
+ we tested, the strategy had a lower annual standard deviation than the benchmark, meaning more consistent returns.
+ A breakdown of the results from all of the testing periods can be seen in the table below.
+
+
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ ASD
+
+
+
+
+ Backtest
+ 1/1/2015
+ 8/16/2020
+ Strategy
+ -0.764
+ 0.05
+
+
+ Benchmark
+ 0.709
+ 0.185
+
+
+ Fall 2015
+ 8/10/2015
+ 10/10/2015
+ Strategy
+ -0.696
+ 0.058
+
+
+ Benchmark
+ -1.243
+ 0.793
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ 4.818
+ 0.266
+
+
+ Benchmark
+ -1.243
+ 0.793
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ 0.602
+ 0.103
+
+
+ Benchmark
+ 13.761
+ 0.386
+
+
+
+
+
+
+ We find the lack of performance for this strategy is not largely attributed to the inclusion of transaction costs
+ in our analysis while Gao et al (2017) decide to ignore them. Even with ignoring the transaction fees, spread costs,
+ and slippage, the strategy still has a lower Sharpe ratio the S&P 500 and doesn't match the results found in the
+ original research paper. Refer to the backtest results.
+
+
+
+ Throughout their research paper, Gao et al (2017) provide several suggestions to increase the return generated by
+ this momentum pattern. These areas of future research include:
From 5611f91976a151d6c1d0f46a3470516433701a57 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Mon, 17 Aug 2020 19:58:35 -0600
Subject: [PATCH 159/215] Fix typo
---
.../1026 Intraday ETF Momentum/05 Conclusion.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
index c03c6ca..ff087ea 100644
--- a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
@@ -78,7 +78,7 @@
We find the lack of performance for this strategy is not largely attributed to the inclusion of transaction costs
in our analysis while Gao et al (2017) decide to ignore them. Even with ignoring the transaction fees, spread costs,
- and slippage, the strategy still has a lower Sharpe ratio the S&P 500 and doesn't match the results found in the
+ and slippage, the strategy still has a lower Sharpe ratio than the S&P 500 and doesn't match the results found in the
original research paper. Refer to the backtest results.
From fd71669aff0599ec339f3b3f28aae2b789f65815 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Mon, 17 Aug 2020 20:15:37 -0600
Subject: [PATCH 160/215] Add relative metrics to strat 1028
---
.../01 Abstract.html | 6 +-
.../04 Algorithm.html | 2 +-
.../05 Benchmark Performance.html | 10 --
.../05 Relative Performance.html | 92 +++++++++++++++++++
.../07 Conclusion.html | 8 +-
5 files changed, 100 insertions(+), 18 deletions(-)
delete mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html
create mode 100644 04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html
index 3dd4983..587ce33 100644
--- a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html
@@ -2,7 +2,7 @@
Gurrib (2020) is the first published research paper to analyze the predictive power of Ichimoku Clouds for the
largest 10 stocks in the US energy sector. In this tutorial, we implement a similar strategy while reducing the
effect of look-ahead bias integrated into the original study. Our findings show that while the strategy has an
- impressive 79% return during the 2020 oil price war, the strategy has worse performance than found by Gurrib
- (2020). We discover that throughout a 5 year backtest, the strategy fails to beat the benchmark of a popular
- energy sector ETF.
+ impressive 176 Sharpe ratio during the downfall of the 2020 oil price war, the strategy has worse performance than
+ found by Gurrib (2020). We discover that throughout a 5 year backtest, the strategy fails to beat the benchmark of
+ a popular energy sector ETF.
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html
index 487c85d..56ab2db 100644
--- a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html
deleted file mode 100644
index f3592aa..0000000
--- a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Benchmark Performance.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
- To analyze the performance of this trading strategy, we compare its return to the return of buying and holding a
- popular ETF tracking the energy sector. In this study, we use XLE, the Energy Select Sector SPDR® Fund, as the
- benchmark. We can see from the plot below that holding the benchmark ETF would have produced a return of -32% over
- the backtest period.
-
-
-
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html
new file mode 100644
index 0000000..a1d1610
--- /dev/null
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html
@@ -0,0 +1,92 @@
+
+ To analyze the value of this trading strategy, we compare its performance to buying and holding a popular ETF
+ tracking the energy sector. In this study, we use XLE, the Energy Select Sector SPDR® Fund, as the benchmark. We
+ can see from the plot below how the portfolio would have performed just had we had just invested in the benchmark.
+
+
+
+
+
+ We now analyze the Sharpe ratio and annual standard deviation of returns for both the strategy and the benchmark.
+ From the table below, we can see the results of the strategy and the benchmark over the entire backtest period, the
+ Fall 2015 crisis, and the 2020 oil price war. The strategy has a lower Sharpe ratio than the benchmark across all
+ of the time periods we tested, except for the crash during the 2020 oil price war, where it generated an impressive
+ 176 Sharpe ratio. We can also see the strategy has a lower annual standard deviation accross all of the time
+ frames, implying that the strategy has more consistent returns than the benchmark.
+
+
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ ASD
+
+
+
+
+ Backtest
+ 1/1/2015
+ 8/16/2020
+ Strategy
+ -0.31
+ 0.223
+
+
+ Benchmark
+ -0.083
+ 0.312
+
+
+ Fall 2015
+ 8/10/2015
+ 10/10/2015
+ Strategy
+ -0.31
+ 0.294
+
+
+ Benchmark
+ 0.242
+ 0.351
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ 176.524
+ 0.949
+
+
+ Benchmark
+ -0.902
+ 1.108
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ -1.556
+ 0.447
+
+
+ Benchmark
+ 46.068
+ 0.703
+
+
+
+
+
+ We find the lack of performance for this strategy is not largely attributed to the transaction costs. After
+ ignoring the transaction fees, spread costs, and slippage, the strategy still has a lower Sharpe ratio than the
+ benchmark and doesn't match the results found in the original research paper. See the backtest results
+ here.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html
index 4631b74..452f0d8 100644
--- a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html
@@ -1,8 +1,8 @@
- While the strategy examined herein produces a 79% return throughout the 2020 oil price war and stock market crash,
- we conclude the strategy does not currently provide as profitable of results as documented by Gurrib (2020). The
- strategy experiences a -39% return, a 48% drawdown, about a 5 year drawdown duration, and a profit-loss ratio of
- 0.92. To continue the development of this strategy, future areas of research include:
+ While the strategy examined herein produces a 176 Sharpe ratio throughout the downfall of the 2020 oil price war
+ and stock market crash, we conclude the strategy does not currently provide as profitable of results as documented
+ by Gurrib (2020). The strategy experiences a -0.234 Sharpe ratio over the entire backtest period. To continue the
+ development of this strategy, future areas of research include:
From 273015c388b224938520ba2f6957dd0f7852c4d1 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Tue, 18 Aug 2020 13:56:53 -0700
Subject: [PATCH 161/215] updated algorithm
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index ec0cfdf..9d83532 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From 5e2cdad4412f2a862cd2d4829a4dd6b98525e51a Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Tue, 18 Aug 2020 15:37:07 -0600
Subject: [PATCH 162/215] Add relative metrics to strat 85 and fix PCM bug
---
.../02 Method.html | 2 +-
.../04 Relative Performance.html | 81 +++++++++++++++++++
...05 Market & Competition Qualification.html | 15 ++++
.../06 Conclusion.html | 17 ++++
...{04 References.html => 07 References.html} | 0
5 files changed, 114 insertions(+), 1 deletion(-)
create mode 100644 04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html
create mode 100644 04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html
create mode 100644 04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html
rename 04 Strategy Library/85 Momentum in Mutual Fund Returns/{04 References.html => 07 References.html} (100%)
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html
index cd4436e..a43b163 100644
--- a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html
+++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html
@@ -106,7 +106,7 @@ Alpha Ranking
...
ranking_df = pd.DataFrame()
for symbol, symbol_data in self.symbol_data_by_symbol.items():
- if symbol_data.IsReady:
+ if data.ContainsKey(symbol) and symbol_data.IsReady:
row = pd.DataFrame({'ROC': symbol_data.roc, 'Nearness': symbol_data.nearness}, index=[symbol])
ranking_df = ranking_df.append(row)
ranked_symbols = ranking_df.rank().sum(axis=1).sort_values().index
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html
new file mode 100644
index 0000000..26cb3ef
--- /dev/null
+++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html
@@ -0,0 +1,81 @@
+
+ To analyze the value of this trading strategy, we compare its performance to buying-and-holding the S&P 500 index
+ ETF, SPY. We can see the results from the table below. The strategy has a lower Sharpe ratio than the SPY for all of
+ the time frames we tested, except for the downfall of the 2020 stock market crash. During this time it greatly
+ outperformed the SPY, achieving a 10.4 Sharpe ratio. We also notice that the strategy generates more consistent
+ returns than the benchmark, documented by the lower annual standard deviation of returns throughout all the testing
+ periods.
+
+
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ ASD
+
+
+
+
+ Backtest
+ 1/1/2015
+ 8/16/2020
+ Strategy
+ 0.192
+ 0.046
+
+
+ Benchmark
+ 0.709
+ 0.186
+
+
+ Fall 2015
+ 8/10/2015
+ 10/10/2015
+ Strategy
+ -1.448
+ 0.052
+
+
+ Benchmark
+ -0.724
+ 0.251
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ 10.386
+ 0.104
+
+
+ Benchmark
+ -1.243
+ 0.793
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ -2.942
+ 0.177
+
+
+ Benchmark
+ 13.761
+ 0.386
+
+
+
+
+
+ We find the lack of performance for this strategy is not largely attributed to the trading fees. After ignoring the
+ transaction fees, spread costs, and slippage, the strategy still has a lower Sharpe ratio than the benchmark. See
+ the backtest results here.
+
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html
new file mode 100644
index 0000000..fbc487d
--- /dev/null
+++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html
@@ -0,0 +1,15 @@
+
+ Although this strategy passes several of the
+ metrics required for Alpha Streams and
+ the Quant League competition, it requires further work to meet the following requirements:
+
+
+
+
+ - Profitable
+ - PSR >= 80%
+ - Max drawdown duration <= 6 months
+ - Insights contain the following properties: Symbol, Duration, Direction, and Weight
+ - Minute or second data resolution
+ - Insight Weighting or Equal Weighting Portfolio Construction model
+
\ No newline at end of file
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html
new file mode 100644
index 0000000..763902d
--- /dev/null
+++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html
@@ -0,0 +1,17 @@
+
+ The momentum pattern examined throughout this tutorial has a greater Sharpe ratio than the SPY during the downfall
+ of the 2020 stock market crash and has more a lower annual standard deviation of returns than the SPY over all the
+ periods we tested. However, we conclude the strategy, which is loosely based on the research of Sapp (2010), does
+ not consistently outperform our benchmark. To continue the development of this strategy, future areas of research
+ include:
+
+
+
+
+ -
+ Incorporating historical returns and NAV of mutual funds to better-reflect the strategy documented by Saap (2010).
+
+ - Adjusting the parameters in the ROCAndNearnessAlphaModel.
+ - Performing more filtering and sorting in the AssetManagementUniverseSelection model.
+ - Testing other portfolio construction techniques.
+
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 References.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html
similarity index 100%
rename from 04 Strategy Library/85 Momentum in Mutual Fund Returns/04 References.html
rename to 04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html
From a398733997925cfd76a15c44332d3176dfc56dc2 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Tue, 18 Aug 2020 16:05:58 -0600
Subject: [PATCH 163/215] Update backtest with PCM fix
---
.../85 Momentum in Mutual Fund Returns/03 Algorithm.html | 2 +-
quantpedia.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html
index ade7d3b..93109c0 100644
--- a/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html
+++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/quantpedia.json b/quantpedia.json
index cbf4970..22f8d06 100644
--- a/quantpedia.json
+++ b/quantpedia.json
@@ -34,7 +34,7 @@
77: "0483e5a7094604254ab37eda8b5141b8",
78: "27fb5f05b0e48f488f0994d8d83ddc77",
83: "fdfcddd132eaf55039d867c03efe3012",
- 85: "ba030edb022016f967a6296a556d717e",
+ 85: "a86b19f12b40d8a676bf7f885742631d",
91: "95cffbeec0d003da873b791d3a10f60f",
100: "5ee5507fef6bf190ae533ce05ccaa785",
102: "cd2d187e44a00c7b19f64aee8b0895d9",
From 53c3c878864a735c9e826d4208cd63e733a7ff52 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Wed, 19 Aug 2020 13:09:15 -0600
Subject: [PATCH 164/215] Add relative metrics & fix execution model bug
---
.../01 Strategy Library.php | 9 ++
.../01 Abstract.html | 7 +
.../02 Background.html | 9 ++
.../03 Method.html | 129 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 Relative Performance.html | 91 ++++++++++++
...06 Market & Competition Qualification.html | 19 +++
.../07 Conclusion.html | 10 ++
.../08 References.html | 8 ++
9 files changed, 288 insertions(+)
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html
create mode 100644 04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index ce7332d..426d089 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -642,6 +642,15 @@
],
'description' => "A momentum strategy based on returns of the market open",
'tags'=>'Momentum, Stocks, Universe Selection, Equities, Anomaly'
+ ],
+ [
+ 'name' => 'Intraday Arbitrage Between Index ETFs',
+ 'link' => 'strategy-library/intraday-arbitrage-between-index-etfs',
+ 'sources' => [
+ 'SSRN' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1709599'
+ ],
+ 'description' => "A strategy that tracks the price paths of two correlated ETFs and takes advantage of mis-pricings that arise when the price paths diverge",
+ 'tags'=>'Intermediate, Equities, Arbitrage, Intraday'
]
];
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html
new file mode 100644
index 0000000..7d69c19
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html
@@ -0,0 +1,7 @@
+
+ In this tutorial, we implement an intraday arbitrage strategy that capitalizes on deviations between two closely correlated
+ index ETFs. Even though at times both ETFs may hold different constituents and different weights of securities while tracking
+ the index, they are both highly correlated and extremely liquid. Researchers have shown these two properties are essential to
+ an arbitrage system's success. The algorithm we implement here is inspired by the work of Kakushadze and Serur (2018) and
+ Marshall, Nguyen, and Visaltanachoti (2010).
+
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html
new file mode 100644
index 0000000..8c03fe6
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html
@@ -0,0 +1,9 @@
+
+ Marshall et al (2010) define an arbitrage opportunity as when the bid price of ETF A (B) diverts high enough away from the ask
+ price of ETF B (A) such that their quotient reaches a threshold. In their paper, an arbitrage opportunity is only acted upon
+ when the threshold is satisfied for 15 seconds. When these criteria are met, the algorithm enters the arbitrage trade by going
+ long ETF B (A) and short ETF A (B). When the spread reverts back to where the bid of ETF B (A) >= the ask of ETF A (B) for 15
+ seconds, the positions are liquidated. An overview of the trade process is illustrated in the image below.
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html
new file mode 100644
index 0000000..ecac338
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html
@@ -0,0 +1,129 @@
+Universe Selection
+
+ We implement a manual universe selection model that includes our two ETFs, SPY and IVV. The attached research notebook finds
+ the correlation of daily returns to be >0.99.
+
+
+
+tickers = ['IVV', 'SPY']
+symbols = [ Symbol.Create(t, SecurityType.Equity, Market.USA) for t in tickers ]
+self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )
+
+
+
+Spread Adjustments
+
+ Plotting the ratio of the security prices shows its trending behavior.
+
+
+
+ Without adjusting this ratio over time, an arbitrage system would be stuck in a single trade for majority of the backtest. To
+ resolve this, we subtract a trailing mean from each data point.
+
+
+
+ Both of the above plots can be reproduced in the attached research notebook. During backtesting, this adjustment is done
+ during trading by setting up a
+ QuoteBarConsolidator for each security in our
+ universe. On each new consolidated QuoteBar, we
+ update the trailing window of L1 data, then calculate the latest spread adjustment values.
+
+
+
+# In OnSecuritiesChanged
+for symbol in self.symbols:
+ self.consolidators[symbol] = QuoteBarConsolidator(1)
+ self.consolidators[symbol].DataConsolidated += self.CustomDailyHandler
+ algorithm.SubscriptionManager.AddConsolidator(symbol, self.consolidators[symbol])
+
+def CustomDailyHandler(self, sender, consolidated):
+ # Add new data point to history while removing expired history
+ self.history[consolidated.Symbol]['bids'] = np.append(self.history[consolidated.Symbol]['bids'][1:], consolidated.Bid.Close)
+ self.history[consolidated.Symbol]['asks'] = np.append(self.history[consolidated.Symbol]['asks'][1:], consolidated.Ask.Close)
+
+ self.update_spread_adjusters()
+
+def update_spread_adjusters(self):
+ for i in range(2):
+ numerator_history = self.history[self.symbols[i]]['bids']
+ denominator_history = self.history[self.symbols[abs(i-1)]]['asks']
+ self.spread_adjusters[i] = (numerator_history / denominator_history).mean()
+
+
+
+
+Alpha Construction
+
+ The ArbitrageAlphaModel monitors the intraday bid and ask prices of the securities in the universe. In the constructor, we
+ can specify the model parameters. In this tutorial, we select a shorter window an arbitrage opportunity must be active before
+ we act on it by setting `order_delay` to 3.
+
+
+
+class ArbitrageAlphaModel(AlphaModel):
+ symbols = [] # IVV, SPY
+ entry_timer = [0, 0]
+ exit_timer = [0, 0]
+ spread_adjusters = [0, 0]
+ long_side = -1
+ consolidators = {}
+ history = {}
+
+ def __init__(self, order_delay = 3, profit_pct_threshold = 0.02, window_size = 400):
+ self.order_delay = order_delay
+ self.pct_threshold = profit_pct_threshold / 100
+ self.window_size = window_size
+
+
+
+
+Trade Signals
+
+ To emit insights, we check if either side of the arbitrage strategy warrants an entry. If no new entries are to be made, the
+ algorithm then looks to exit any current positions. With this design, we can flip our long/short bias without first
+ flattening our position. We use a practically-infinite insight durations as we do not know how long the algorithm will be in
+ an arbitrage trade.
+
+
+
+# Search for entries
+for i in range(2):
+ if quotebars[abs(i-1)].Bid.Close / quotebars[i].Ask.Close - self.spread_adjusters[abs(i-1)] >= self.pct_threshold:
+ self.entry_timer[i] += 1
+ if self.entry_timer[i] == self.order_delay:
+ self.exit_timer = [0, 0]
+ if self.long_side == i:
+ return []
+ self.long_side = i
+ return [Insight.Price(self.symbols[i], timedelta(days=9999), InsightDirection.Up),
+ Insight.Price(self.symbols[abs(i-1)], timedelta(days=9999), InsightDirection.Down)]
+ else:
+ return []
+ self.entry_timer[i] = 0
+
+# Search for an exit
+if self.long_side >= 0: # In a position
+ if quotebars[self.long_side].Bid.Close / quotebars[abs(self.long_side-1)].Ask.Close - self.spread_adjusters[self.long_side] >= 0: # Exit signal
+ self.exit_timer[self.long_side] += 1
+ if self.exit_timer[self.long_side] == self.order_delay: # Exit signal lasted long enough
+ self.exit_timer[self.long_side] = 0
+ i = self.long_side
+ self.long_side = -1
+ return [Insight.Price(self.symbols[i], timedelta(days=9999), InsightDirection.Flat),
+ Insight.Price(self.symbols[abs(i-1)], timedelta(days=9999), InsightDirection.Flat)]
+ else:
+ return []
+return []
+
+
+
+
+Portfolio Construction & Trade Execution
+
+ Following the guidelines of Alpha Streams
+ and the Quant League competition, we
+ utilize the
+ EqualWeightingPortfolioConstructionModel and the
+
+ ImmediateExecutionModel.
+
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html
new file mode 100644
index 0000000..c59088b
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html
new file mode 100644
index 0000000..fd71509
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html
@@ -0,0 +1,91 @@
+
+ We analyze the performance of this strategy by comparing it to the S&P 500 ETF benchmark, SPY. We notice that the
+ strategy has a lower Sharpe ratio over all of our testing periods than the benchmark, except for the Fall 2015
+ crisis where it achieved a 2.8 Sharpe ratio. The strategy also has a lower annual standard deviation of returns
+ when compared to the SPY, implying more consistent returns over time. A breakdown of the strategy's performance
+ across all our testing periods is displayed in the table below.
+
+
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ ASD
+
+
+
+
+ Backtest
+ 8/11/2015
+ 8/11/2020
+ Strategy
+ -0.447
+ 0.053
+
+
+ Benchmark
+ 0.732
+ 0.192
+
+
+ Fall 2015
+ 8/10/2015
+ 10/10/2015
+ Strategy
+ 2.837
+ 0.225
+
+
+ Benchmark
+ -0.724
+ 0.251
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ -4.196
+ 0.209
+
+
+ Benchmark
+ -1.243
+ 0.793
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ -3.443
+ 0.013
+
+
+ Benchmark
+ 13.761
+ 0.386
+
+
+
+
+
+
+ The lack of performance for this arbitrage strategy is mostly attributed to the fees it incurs while trading. This
+ is common for an intraday arbitrage strategy, but we discuss ways to reduces these fees in the conclusion of this
+ tutorial. After removing the costs of commissions, crossing the spread, and slippage, the strategy outperforms the
+ SPY over the entire backtesting period. Without these costs, the strategy generates a 1.09 Share ratio while the
+ SPY generates a 0.732 Sharpe ratio. See the backtest performance without fees below.
+
+
+
+
+
+
+
+
+
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html
new file mode 100644
index 0000000..c76ecb6
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html
@@ -0,0 +1,19 @@
+
+ Although this strategy passes several of the
+ metrics required for Alpha Streams
+ and the Quant League competition, it requires further work to pass the following requirements:
+
+
+
+
+ - Profitable
+ - PSR >= 80%
+ - Max drawdown duration <= 6 months
+ - Insights contain the following properties: Symbol, Duration, Direction, and Weight
+ - Alphas need to place at least 10 trades per month for the majority of the backtest
+
+
+
+ The algorithm currently places trades during 12 unique months throughout the backtest. Since the backtest spans
+ across 61 months, it places trades through a minority of the backtest.
+
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html
new file mode 100644
index 0000000..3df342d
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html
@@ -0,0 +1,10 @@
+
+ The intraday arbitrage strategy we built and tested throughout this tutorial underperforms the SPY benchmark in
+ terms of Sharpe ratio when including trading costs. Without these costs, we found the strategy outperforms the SPY
+ in terms of Sharpe ratio. In our implementation, we specified the alpha model to initiate trading when atleast a
+ 0.02% profit threshold is reached for 3 seconds. Both of these parameters are set lower than the strategy examined
+ in Marshall et al (2010) for demonstration purposes. Increasing the profit threshold will lead to more profitable,
+ but fewer, trades that may overcome the cost of trading. We leave this area of study for future research.
+ Additional areas of future research include increasing the resolution of data from second to tick and incorportating
+ an execution model that utilizes limit orders to reduce fees.
+
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html
new file mode 100644
index 0000000..a684227
--- /dev/null
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html
@@ -0,0 +1,8 @@
+
+ -
+ Marshall, Ben R. and Nguyen, Nhut (Nick) Hoang and Visaltanachoti, Nuttawat, ETF Arbitrage: Intraday Evidence (November 16, 2010). Online copy
+
+ -
+ Kakushadze, Zura and Serur, Juan Andrés, 151 Trading Strategies (August 17, 2018). Z. Kakushadze and J.A. Serur. 151 Trading Strategies. Cham, Switzerland: Palgrave Macmillan, an imprint of Springer Nature, 1st Edition (2018), XX, 480 pp; ISBN 978-3-030-02791-9. Online copy
+
+
\ No newline at end of file
From 85f17f582596286a29138f65bd752b32d942b9d3 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 10:39:19 -0700
Subject: [PATCH 165/215] updated algorithm
---
.../05 Results.html | 5 +++++
.../{05 References.html => 06 References.html} | 0
2 files changed, 5 insertions(+)
create mode 100644 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html
rename 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/{05 References.html => 06 References.html} (100%)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html
new file mode 100644
index 0000000..2b6a817
--- /dev/null
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html
@@ -0,0 +1,5 @@
+
+ Since we trade three technology stocks, we decided to use QQQ as our benchmark. We achieve a Sharpe Ratio of 1.028 over
+ two years, while QQQ achieves a Sharpe Ratio of 0.931 over the same period. However, it should be noted that since the
+ algorithm is non-deterministic, users may see different results from repeated backtests.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 References.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html
similarity index 100%
rename from 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 References.html
rename to 04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html
From 5f6d72305f567da1d1544b3ed45ebb4798514d65 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 12:02:33 -0700
Subject: [PATCH 166/215] updated algorithm
---
.../04 Algorithm.html | 2 +-
.../05 Results.html | 7 ++++---
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
index 9d83532..0a1b0bd 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html
index 2b6a817..a9d5b42 100644
--- a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html
+++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html
@@ -1,5 +1,6 @@
- Since we trade three technology stocks, we decided to use QQQ as our benchmark. We achieve a Sharpe Ratio of 1.028 over
- two years, while QQQ achieves a Sharpe Ratio of 0.931 over the same period. However, it should be noted that since the
- algorithm is non-deterministic, users may see different results from repeated backtests.
+ Since our algorithm is non-deterministic, users should expect to see different results in repeated backtests. From
+ running our algorithm ten times, we achieved Sharpe Ratios with an average of .211, a maximum of 0.917, and minimum
+ of -0.312, and a standard deviation of 0.327. As we traded three technology stocks, we compare our results to QQQ.
+ Comparing our algorithm to QQQ, our average Sharpe of .211 is significantly lower than the 0.967 Sharpe of QQQ.
\ No newline at end of file
From 2b686253c3d088fb9bf3008bbc2b36a16cc11d08 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 14:32:57 -0700
Subject: [PATCH 167/215] updated algorithm
---
.../01 Strategy Library.php | 9 ++++
.../01 Abstract.html | 4 ++
.../02 Introduction.html | 9 ++++
.../1029 Optimal Pairs Trading/03 Method.html | 50 +++++++++++++++++++
.../04 Algorithm.html | 6 +++
.../05 Video Walkthrough.html | 5 ++
.../06 Results.html | 8 +++
.../07 References.html | 7 +++
8 files changed, 98 insertions(+)
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index ce7332d..e4d357f 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -642,6 +642,15 @@
],
'description' => "A momentum strategy based on returns of the market open",
'tags'=>'Momentum, Stocks, Universe Selection, Equities, Anomaly'
+ ],
+ [
+ 'name' => 'Optimal Pairs Trading',
+ 'link' => 'strategy-library/optimal-pairs-trading',
+ 'sources' => [
+ 'arXiv' => 'https://arxiv.org/pdf/1411.5062.pdf'
+ ],
+ 'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process",
+ 'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping'
]
];
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html b/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html
new file mode 100644
index 0000000..f913c9e
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html
@@ -0,0 +1,4 @@
+
+ In this tutorial, we apply Ornstein-Uhlenbeck model to a Pairs Trading process and derive the Optimal Entry and Liquidation
+ levels.
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html b/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html
new file mode 100644
index 0000000..d0a7cd5
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html
@@ -0,0 +1,9 @@
+
+ Pairs trading is holding one stock while simultaneously shorting another stock, typically in an attempt to profit
+ from the convergence of the spread between these two stocks. One method of execution is to apply a Kalman Filter,
+ which we have implemented in this post.
+ However, today, we will model the portfolio values of holding positions in
+ a pair of stocks as an Ornstein-Uhlenbeck (OU) process in order to derive the optimal values to enter and liquidate
+ the position in the pair of stocks. Let (number) refer to the corresponding equation in the given paper, which can
+ be found under the References section. For example, (2.1) refers to equation 2.1 in the paper.
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
new file mode 100644
index 0000000..594383e
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
@@ -0,0 +1,50 @@
+Computing the OU Coefficients
+Say there are two arbitrary stocks A and B. For each value β in .01, .02, .03, …, 1.00:
+
+ - We compute the portfolio values over 252 days of the pairs trade by computing the value of holding $1 of A minus the value of holding $β B (we short B) on each of the 252 days
+ - Then we compute the OU coefficients (θ, µ, σ) of the 252 portfolio values using the Maximum Likelihood Estimation method, maximizing the average log-likelihood defined by this function:
+
+$-\frac{1}{2}ln(2\pi)-ln(\widetilde{\sigma})-\frac{1}{2n{\widetilde{\sigma}}^2}\sum_{i=1}^{n}[x_i-x_{i-1}e^{-\mu\Delta t}-\theta(1-e^{-\mu\Delta t})]^2\quad(2.2)$
+where
+xj is the value at the jth index of the portfolio values
+and
+$\widetilde{\sigma}^2 = \sigma ^2\frac{1-e^{-2\mu\Delta t}}{2\mu}$
+and n = the number of portfolio values
+and Δt = 1 ÷ (days between the start and end dates of the portfolio values),
+We then select the β, which we differentiate as β*, that maximizes the average log-likelihood defined in the equation in step 2, while keeping the corresponding θ*, µ*, σ* values. The implementation of finding θ*, µ*, and σ* can be found in ou_mle.py in the Algorithm section.
+
+
+Deriving the Optimal Entry and Liquidation Levels
+With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level, before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reach, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
+$F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)$
+$G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)$
+$V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)$
+Where constants c = the cost of transaction and r = investor’s subject discount rate. We choose to set c = r = .05 as these were the values given in the paper.
+With these equations, we can now solve for the optimal liquidation level, which we denote as b*, as well as the optimal entry level, which we denote at d*. Note: the reason we derive the optimal liquidation level first is because we use b* in the computation of d*.
+As deriving b* and d* require the derivative of the functions given above, given an arbitrary function input x and an arbitrary function f(x), we approximate f’(x) with the following equation equation:
+$f'(x) = \frac{f(x+h)-f(x)}{h}$
+where h is some arbitrarily small value (we set h = 1 x 10-4 in our implementation).
+To find b*, we solve for b in the following equation:
+$F(b)=(b-c)F'(b)\quad(4.3)$
+We solve this equation by getting all terms to one side:
+$F(b)-(b-c)F'(b)=0$
+Finding the root of the above equation results in b*.
+Now to derive d*, we solve for d in the following equation:
+$G(d)(V'(d)-1)=G'(d)(V(d)-d-c)$
+Again, we will move all terms to one side:
+$G(d)(V'(d)-1)-G'(d)(V(d)-d-c)=0$
+And finding the root of this equation results in d*.
+
The full method of finding b* and d* can be found in the OptimalStopping.py
+ file in the Algorithm section.
+
+Trading
+
+ Our trading logic is very simple. First, we feed in 252 points of the most recent data for the daily closing prices
+ for stocks A and B. We then train our model on these data points, and we get the
+ b*, d*, and β* values. We then keep track of a hypothetical portfolio of holding $1
+ of A and -$β* of B. Once the value of our hypothetical portfolio is less than or equal to b*,
+ we allocate 1.0 of our capital to long of A and short B using (β* x capital used for A) worth of stock.
+ Once the hypothetical portfolio value we tracking reaches d*, we liquidate our positions. We repeat these
+ trading rules when possible. On the first day of every quarter, we retrain our model with the most recent 252 points of data to
+ update our b*, d*, and β* values.
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
new file mode 100644
index 0000000..40bda21
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html b/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html
new file mode 100644
index 0000000..1e7e3ae
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html b/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html
new file mode 100644
index 0000000..3eb8a0f
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html
@@ -0,0 +1,8 @@
+
+ Our algorithm yielded a Sharpe ratio of 0.898 over a five year period, while holding SPY over the same period
+ yielded a Sharpe ratio of 0.667. However it should be noted, due to the fact the algorithm had to wait periods
+ of time before our optimal entry and liquidation levels were reached, our algorithm only made twelve trades over the
+ entire backtest duration. To increase the number of trades, we can add additional pairs, such as GLD-GDX. We encourage
+ our users to clone this algorithm and and to experiment with different ideas for pairs and to play with the parameters
+ of the algorithm.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
new file mode 100644
index 0000000..87de37d
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
@@ -0,0 +1,7 @@
+
+ -
+ Leung, Tim and Li, Xin, Optimal Mean Reversion Trading with Transaction Costs and Stop-Loss Exit (April 26, 2015).
+ International Journal of Theoretical and Applied Finance, Vol. 18, No. 3, 2015.
+ Online Copy.
+
+
\ No newline at end of file
From f02f7eaccecf43df2079c10bb6b97791ff50bf63 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 14:43:40 -0700
Subject: [PATCH 168/215] updated algorithm
---
.../1029 Optimal Pairs Trading/04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
index 40bda21..04066ff 100644
--- a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From fc66d22377675ad67b0fa1090611938fce46f0b2 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 14:32:57 -0700
Subject: [PATCH 169/215] updated algorithm
---
.../01 Strategy Library.php | 9 ++++
.../01 Abstract.html | 4 ++
.../02 Introduction.html | 9 ++++
.../1029 Optimal Pairs Trading/03 Method.html | 50 +++++++++++++++++++
.../04 Algorithm.html | 6 +++
.../05 Video Walkthrough.html | 5 ++
.../06 Results.html | 8 +++
.../07 References.html | 7 +++
8 files changed, 98 insertions(+)
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html
create mode 100644 04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 5671080..c65c7b8 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -651,6 +651,15 @@
],
'description' => "A momentum strategy based on returns of the market open",
'tags'=>'Momentum, Stocks, Universe Selection, Equities, Anomaly'
+ ],
+ [
+ 'name' => 'Optimal Pairs Trading',
+ 'link' => 'strategy-library/optimal-pairs-trading',
+ 'sources' => [
+ 'arXiv' => 'https://arxiv.org/pdf/1411.5062.pdf'
+ ],
+ 'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process",
+ 'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping'
]
];
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html b/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html
new file mode 100644
index 0000000..f913c9e
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html
@@ -0,0 +1,4 @@
+
+ In this tutorial, we apply Ornstein-Uhlenbeck model to a Pairs Trading process and derive the Optimal Entry and Liquidation
+ levels.
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html b/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html
new file mode 100644
index 0000000..d0a7cd5
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html
@@ -0,0 +1,9 @@
+
+ Pairs trading is holding one stock while simultaneously shorting another stock, typically in an attempt to profit
+ from the convergence of the spread between these two stocks. One method of execution is to apply a Kalman Filter,
+ which we have implemented in this post.
+ However, today, we will model the portfolio values of holding positions in
+ a pair of stocks as an Ornstein-Uhlenbeck (OU) process in order to derive the optimal values to enter and liquidate
+ the position in the pair of stocks. Let (number) refer to the corresponding equation in the given paper, which can
+ be found under the References section. For example, (2.1) refers to equation 2.1 in the paper.
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
new file mode 100644
index 0000000..594383e
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
@@ -0,0 +1,50 @@
+Computing the OU Coefficients
+Say there are two arbitrary stocks A and B. For each value β in .01, .02, .03, …, 1.00:
+
+ - We compute the portfolio values over 252 days of the pairs trade by computing the value of holding $1 of A minus the value of holding $β B (we short B) on each of the 252 days
+ - Then we compute the OU coefficients (θ, µ, σ) of the 252 portfolio values using the Maximum Likelihood Estimation method, maximizing the average log-likelihood defined by this function:
+
+$-\frac{1}{2}ln(2\pi)-ln(\widetilde{\sigma})-\frac{1}{2n{\widetilde{\sigma}}^2}\sum_{i=1}^{n}[x_i-x_{i-1}e^{-\mu\Delta t}-\theta(1-e^{-\mu\Delta t})]^2\quad(2.2)$
+where
+xj is the value at the jth index of the portfolio values
+and
+$\widetilde{\sigma}^2 = \sigma ^2\frac{1-e^{-2\mu\Delta t}}{2\mu}$
+and n = the number of portfolio values
+and Δt = 1 ÷ (days between the start and end dates of the portfolio values),
+We then select the β, which we differentiate as β*, that maximizes the average log-likelihood defined in the equation in step 2, while keeping the corresponding θ*, µ*, σ* values. The implementation of finding θ*, µ*, and σ* can be found in ou_mle.py in the Algorithm section.
+
+
+Deriving the Optimal Entry and Liquidation Levels
+With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level, before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reach, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
+$F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)$
+$G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)$
+$V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)$
+Where constants c = the cost of transaction and r = investor’s subject discount rate. We choose to set c = r = .05 as these were the values given in the paper.
+With these equations, we can now solve for the optimal liquidation level, which we denote as b*, as well as the optimal entry level, which we denote at d*. Note: the reason we derive the optimal liquidation level first is because we use b* in the computation of d*.
+As deriving b* and d* require the derivative of the functions given above, given an arbitrary function input x and an arbitrary function f(x), we approximate f’(x) with the following equation equation:
+$f'(x) = \frac{f(x+h)-f(x)}{h}$
+where h is some arbitrarily small value (we set h = 1 x 10-4 in our implementation).
+To find b*, we solve for b in the following equation:
+$F(b)=(b-c)F'(b)\quad(4.3)$
+We solve this equation by getting all terms to one side:
+$F(b)-(b-c)F'(b)=0$
+Finding the root of the above equation results in b*.
+Now to derive d*, we solve for d in the following equation:
+$G(d)(V'(d)-1)=G'(d)(V(d)-d-c)$
+Again, we will move all terms to one side:
+$G(d)(V'(d)-1)-G'(d)(V(d)-d-c)=0$
+And finding the root of this equation results in d*.
+
The full method of finding b* and d* can be found in the OptimalStopping.py
+ file in the Algorithm section.
+
+Trading
+
+ Our trading logic is very simple. First, we feed in 252 points of the most recent data for the daily closing prices
+ for stocks A and B. We then train our model on these data points, and we get the
+ b*, d*, and β* values. We then keep track of a hypothetical portfolio of holding $1
+ of A and -$β* of B. Once the value of our hypothetical portfolio is less than or equal to b*,
+ we allocate 1.0 of our capital to long of A and short B using (β* x capital used for A) worth of stock.
+ Once the hypothetical portfolio value we tracking reaches d*, we liquidate our positions. We repeat these
+ trading rules when possible. On the first day of every quarter, we retrain our model with the most recent 252 points of data to
+ update our b*, d*, and β* values.
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
new file mode 100644
index 0000000..40bda21
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html b/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html
new file mode 100644
index 0000000..1e7e3ae
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html b/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html
new file mode 100644
index 0000000..3eb8a0f
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html
@@ -0,0 +1,8 @@
+
+ Our algorithm yielded a Sharpe ratio of 0.898 over a five year period, while holding SPY over the same period
+ yielded a Sharpe ratio of 0.667. However it should be noted, due to the fact the algorithm had to wait periods
+ of time before our optimal entry and liquidation levels were reached, our algorithm only made twelve trades over the
+ entire backtest duration. To increase the number of trades, we can add additional pairs, such as GLD-GDX. We encourage
+ our users to clone this algorithm and and to experiment with different ideas for pairs and to play with the parameters
+ of the algorithm.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
new file mode 100644
index 0000000..87de37d
--- /dev/null
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
@@ -0,0 +1,7 @@
+
+ -
+ Leung, Tim and Li, Xin, Optimal Mean Reversion Trading with Transaction Costs and Stop-Loss Exit (April 26, 2015).
+ International Journal of Theoretical and Applied Finance, Vol. 18, No. 3, 2015.
+ Online Copy.
+
+
\ No newline at end of file
From 81c8ab32405ffd6cf6acf51635fe97dd8a05791f Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 14:43:40 -0700
Subject: [PATCH 170/215] updated algorithm
---
.../1029 Optimal Pairs Trading/04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
index 40bda21..04066ff 100644
--- a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From bc5492740e6f0ebfa6df6dbb095de46839466c9f Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 16:34:22 -0700
Subject: [PATCH 171/215] fixed typos
---
04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
index 594383e..fd3f849 100644
--- a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
@@ -15,7 +15,7 @@ Computing the OU Coefficients
Deriving the Optimal Entry and Liquidation Levels
-With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level, before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reach, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
+With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reached, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
$F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)$
$G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)$
$V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)$
From 700abdbfd2115364f0d091bfbb4edfe69e5bd0f9 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 17 Sep 2020 16:37:47 -0700
Subject: [PATCH 172/215] fixed typos
---
04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html | 4 ----
1 file changed, 4 deletions(-)
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
index 8ab9f29..fd3f849 100644
--- a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
@@ -15,11 +15,7 @@ Computing the OU Coefficients
Deriving the Optimal Entry and Liquidation Levels
-<<<<<<< HEAD
With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reached, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
-=======
-With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level, before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reach, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
->>>>>>> origin/feature-310-optimal-pairs-trading
$F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)$
$G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)$
$V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)$
From fdf740bdf7815509d61ac17e968b7d10ef1155dd Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 18 Sep 2020 10:25:18 -0700
Subject: [PATCH 173/215] changed LaTex format as $$ don't render properly
---
.../1029 Optimal Pairs Trading/03 Method.html | 20 +++++++++----------
.../07 References.html | 2 +-
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
index fd3f849..83986fa 100644
--- a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html
@@ -4,11 +4,11 @@ Computing the OU Coefficients
- We compute the portfolio values over 252 days of the pairs trade by computing the value of holding $1 of A minus the value of holding $β B (we short B) on each of the 252 days
- Then we compute the OU coefficients (θ, µ, σ) of the 252 portfolio values using the Maximum Likelihood Estimation method, maximizing the average log-likelihood defined by this function:
-$-\frac{1}{2}ln(2\pi)-ln(\widetilde{\sigma})-\frac{1}{2n{\widetilde{\sigma}}^2}\sum_{i=1}^{n}[x_i-x_{i-1}e^{-\mu\Delta t}-\theta(1-e^{-\mu\Delta t})]^2\quad(2.2)$
+\[-\frac{1}{2}ln(2\pi)-ln(\widetilde{\sigma})-\frac{1}{2n{\widetilde{\sigma}}^2}\sum_{i=1}^{n}[x_i-x_{i-1}e^{-\mu\Delta t}-\theta(1-e^{-\mu\Delta t})]^2\quad(2.2)\]
where
xj is the value at the jth index of the portfolio values
and
-$\widetilde{\sigma}^2 = \sigma ^2\frac{1-e^{-2\mu\Delta t}}{2\mu}$
+\[\widetilde{\sigma}^2 = \sigma ^2\frac{1-e^{-2\mu\Delta t}}{2\mu}\]
and n = the number of portfolio values
and Δt = 1 ÷ (days between the start and end dates of the portfolio values),
We then select the β, which we differentiate as β*, that maximizes the average log-likelihood defined in the equation in step 2, while keeping the corresponding θ*, µ*, σ* values. The implementation of finding θ*, µ*, and σ* can be found in ou_mle.py in the Algorithm section.
@@ -16,23 +16,23 @@ Computing the OU Coefficients
Deriving the Optimal Entry and Liquidation Levels
With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reached, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:
-$F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)$
-$G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)$
-$V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)$
+\[F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)\]
+\[G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)\]
+\[V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)\]
Where constants c = the cost of transaction and r = investor’s subject discount rate. We choose to set c = r = .05 as these were the values given in the paper.
With these equations, we can now solve for the optimal liquidation level, which we denote as b*, as well as the optimal entry level, which we denote at d*. Note: the reason we derive the optimal liquidation level first is because we use b* in the computation of d*.
As deriving b* and d* require the derivative of the functions given above, given an arbitrary function input x and an arbitrary function f(x), we approximate f’(x) with the following equation equation:
-$f'(x) = \frac{f(x+h)-f(x)}{h}$
+\[f'(x) = \frac{f(x+h)-f(x)}{h}\]
where h is some arbitrarily small value (we set h = 1 x 10-4 in our implementation).
To find b*, we solve for b in the following equation:
-$F(b)=(b-c)F'(b)\quad(4.3)$
+\[F(b)=(b-c)F'(b)\quad(4.3)\]
We solve this equation by getting all terms to one side:
-$F(b)-(b-c)F'(b)=0$
+\[F(b)-(b-c)F'(b)=0\]
Finding the root of the above equation results in b*.
Now to derive d*, we solve for d in the following equation:
-$G(d)(V'(d)-1)=G'(d)(V(d)-d-c)$
+\[G(d)(V'(d)-1)=G'(d)(V(d)-d-c)\]
Again, we will move all terms to one side:
-$G(d)(V'(d)-1)-G'(d)(V(d)-d-c)=0$
+\[G(d)(V'(d)-1)-G'(d)(V(d)-d-c)=0\]
And finding the root of this equation results in d*.
The full method of finding b* and d* can be found in the OptimalStopping.py
file in the Algorithm section.
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
index 87de37d..10b2dac 100644
--- a/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
+++ b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html
@@ -2,6 +2,6 @@
-
Leung, Tim and Li, Xin, Optimal Mean Reversion Trading with Transaction Costs and Stop-Loss Exit (April 26, 2015).
International Journal of Theoretical and Applied Finance, Vol. 18, No. 3, 2015.
- Online Copy.
+ Online Copy.
\ No newline at end of file
From 7fb1a0c3b7c573ca18d19ef20beb614a34219a5f Mon Sep 17 00:00:00 2001
From: Aaron Janeiro Stone <60862650+aarjaneiro@users.noreply.github.com>
Date: Fri, 18 Sep 2020 14:26:12 -0400
Subject: [PATCH 174/215] Correction of a typo
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
\text{Var} (R_P) = w^2 \text{Var} (R_{\text{market}}}) →\text{Var} (R_P) = w^2 \text{Var} (R_{\text{market}})
---
.../12 Modern Portfolio Theory/04 Mean-Variance Analysis.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html
index 51a1bf9..e60dcab 100755
--- a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html
+++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html
@@ -26,7 +26,7 @@ Capital Market Line
Since there is only n = 1 risky asset, the variance of the CML portfolio return is
-\[ \text{Var} (R_P) = w^2 \text{Var} (R_{\text{market}}}) \]
+\[ \text{Var} (R_P) = w^2 \text{Var} (R_{\text{market}}) \]
Taking square roots, we deduce that a CML portfolio's risk is proportional to the market portfolio's weight:
From 0fe294f7414b458dded00ddcad919e1a7269dd54 Mon Sep 17 00:00:00 2001
From: Alexandre Catarino
Date: Fri, 18 Sep 2020 19:34:28 +0100
Subject: [PATCH 175/215] Add Data Directory and Fama-French Data Factors
Latest files from http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/data_library.html
---
Data/F-F_Research_Data_5_Factors_2x3.CSV | 748 +
.../F-F_Research_Data_5_Factors_2x3_daily.CSV | 14374 +++++++++
Data/F-F_Research_Data_Factors.CSV | 1231 +
Data/F-F_Research_Data_Factors_daily.CSV | 24797 ++++++++++++++++
Data/F-F_Research_Data_Factors_weekly.CSV | 4916 +++
5 files changed, 46066 insertions(+)
create mode 100644 Data/F-F_Research_Data_5_Factors_2x3.CSV
create mode 100644 Data/F-F_Research_Data_5_Factors_2x3_daily.CSV
create mode 100644 Data/F-F_Research_Data_Factors.CSV
create mode 100644 Data/F-F_Research_Data_Factors_daily.CSV
create mode 100644 Data/F-F_Research_Data_Factors_weekly.CSV
diff --git a/Data/F-F_Research_Data_5_Factors_2x3.CSV b/Data/F-F_Research_Data_5_Factors_2x3.CSV
new file mode 100644
index 0000000..8adb14e
--- /dev/null
+++ b/Data/F-F_Research_Data_5_Factors_2x3.CSV
@@ -0,0 +1,748 @@
+This file was created by CMPT_ME_BEME_OP_INV_RETS using the 202007 CRSP database.
+The 1-month TBill return is from Ibbotson and Associates Inc.
+
+,Mkt-RF,SMB,HML,RMW,CMA,RF
+196307, -0.39, -0.47, -0.83, 0.66, -1.15, 0.27
+196308, 5.07, -0.79, 1.67, 0.40, -0.40, 0.25
+196309, -1.57, -0.48, 0.18, -0.76, 0.24, 0.27
+196310, 2.53, -1.29, -0.10, 2.75, -2.24, 0.29
+196311, -0.85, -0.84, 1.71, -0.45, 2.22, 0.27
+196312, 1.83, -1.89, -0.12, 0.07, -0.30, 0.29
+196401, 2.24, 0.08, 1.59, 0.22, 1.50, 0.30
+196402, 1.54, 0.32, 2.83, 0.06, 0.85, 0.26
+196403, 1.41, 1.41, 3.32, -2.01, 2.93, 0.31
+196404, 0.10, -1.52, -0.55, -1.35, -1.08, 0.29
+196405, 1.42, -0.68, 1.98, -0.26, 0.24, 0.26
+196406, 1.27, 0.09, 0.68, -0.42, 0.14, 0.30
+196407, 1.74, 0.53, 0.68, 0.14, 1.84, 0.30
+196408, -1.44, 0.30, 0.09, 0.06, 0.36, 0.28
+196409, 2.69, -0.31, 1.65, -0.48, 0.58, 0.28
+196410, 0.59, 0.88, 1.14, -0.29, 0.48, 0.29
+196411, 0.00, -0.27, -1.98, 0.60, -0.16, 0.29
+196412, 0.03, -0.58, -2.55, 1.13, -1.63, 0.31
+196501, 3.54, 2.49, 0.18, 0.84, 0.11, 0.28
+196502, 0.44, 3.31, 0.22, 0.40, -0.69, 0.30
+196503, -1.34, 2.03, 1.09, -0.30, 0.73, 0.36
+196504, 3.11, 1.18, 0.71, 0.26, -2.30, 0.31
+196505, -0.77, 0.05, -1.63, -0.38, 0.70, 0.31
+196506, -5.51, -4.30, 0.55, 0.12, 0.41, 0.35
+196507, 1.43, 1.08, 2.18, -1.41, -0.02, 0.31
+196508, 2.73, 2.72, -0.96, 2.06, -0.75, 0.33
+196509, 2.86, 0.62, -0.10, -0.82, 0.82, 0.31
+196510, 2.60, 3.42, 1.52, 1.22, -0.76, 0.31
+196511, -0.03, 5.19, 0.21, -1.06, -0.90, 0.35
+196512, 1.01, 2.64, 1.95, -1.28, -0.45, 0.33
+196601, 0.72, 4.72, 3.49, -2.83, -0.07, 0.38
+196602, -1.21, 4.86, 0.27, -0.15, -1.44, 0.35
+196603, -2.51, 0.22, -2.07, 1.30, -0.01, 0.38
+196604, 2.14, 3.36, -0.54, 0.41, -0.91, 0.34
+196605, -5.66, -5.18, -1.55, 1.66, -1.52, 0.41
+196606, -1.44, 1.34, 0.50, 0.06, 0.80, 0.38
+196607, -1.63, -0.50, 0.96, -0.45, 1.77, 0.35
+196608, -7.91, -3.03, 0.47, 0.05, 0.77, 0.41
+196609, -1.06, -1.18, 0.53, -1.65, 2.50, 0.40
+196610, 3.86, -6.53, 2.87, -3.64, 4.28, 0.45
+196611, 1.40, 3.37, -4.46, 4.17, -6.53, 0.40
+196612, 0.13, 1.91, -1.22, 0.68, -0.13, 0.40
+196701, 8.15, 9.00, 2.22, 0.62, -2.97, 0.43
+196702, 0.78, 3.03, -2.17, 1.94, -0.94, 0.36
+196703, 3.99, 1.90, 0.31, 0.90, -1.51, 0.39
+196704, 3.89, 0.46, -2.64, 2.43, -3.75, 0.32
+196705, -4.33, 2.37, 0.80, -1.75, 1.61, 0.33
+196706, 2.41, 6.46, 0.96, -0.64, -2.39, 0.27
+196707, 4.58, 3.48, 2.65, 0.51, 2.72, 0.31
+196708, -0.89, 0.76, 1.46, 0.42, 1.41, 0.31
+196709, 3.11, 2.46, -2.47, 0.22, -0.95, 0.32
+196710, -3.09, 0.47, -3.39, 0.81, -2.55, 0.39
+196711, 0.37, -0.06, -1.71, 1.29, -2.29, 0.36
+196712, 3.05, 5.75, -0.39, -0.64, 0.03, 0.33
+196801, -4.06, 4.48, 4.75, -4.58, 6.45, 0.40
+196802, -3.75, -2.91, 1.17, -0.14, 2.49, 0.39
+196803, 0.20, -1.52, -0.59, 1.17, -1.15, 0.38
+196804, 9.05, 6.25, -1.03, 2.79, -3.66, 0.43
+196805, 2.28, 7.03, 0.84, 0.39, -1.82, 0.45
+196806, 0.69, -0.26, 0.67, -1.33, 2.68, 0.43
+196807, -2.72, -1.33, 5.48, -3.00, 3.61, 0.48
+196808, 1.34, 2.29, 1.00, -0.60, 0.40, 0.42
+196809, 4.03, 2.77, 0.23, -2.03, 0.92, 0.43
+196810, 0.42, -0.43, 2.89, -1.30, 2.81, 0.44
+196811, 5.43, 2.41, -0.90, 0.46, -2.52, 0.42
+196812, -3.94, 3.60, 0.02, -1.78, 1.65, 0.43
+196901, -1.25, -0.46, 1.69, -1.54, 1.41, 0.53
+196902, -5.84, -4.12, 0.91, 2.17, 0.80, 0.46
+196903, 2.64, -0.41, -0.46, -1.34, -0.42, 0.46
+196904, 1.46, -0.82, 0.03, 0.38, 0.06, 0.53
+196905, -0.10, -0.18, 0.73, -0.97, 1.49, 0.48
+196906, -7.18, -5.49, -1.09, 4.26, -1.55, 0.51
+196907, -7.00, -3.37, 1.42, 1.40, 1.97, 0.53
+196908, 4.68, 0.71, -3.87, 1.16, -4.08, 0.50
+196909, -2.98, 1.29, -3.19, 3.42, -0.83, 0.62
+196910, 5.06, 3.89, -3.19, 0.01, -2.03, 0.60
+196911, -3.79, -2.41, -1.12, 1.44, 0.32, 0.52
+196912, -2.63, -3.70, -3.02, 2.47, -2.04, 0.64
+197001, -8.10, 3.09, 3.04, -1.77, 3.92, 0.60
+197002, 5.13, -2.58, 4.04, -2.28, 3.06, 0.62
+197003, -1.06, -2.40, 4.25, -0.87, 4.43, 0.57
+197004, -11.00, -6.30, 6.40, -0.64, 5.88, 0.50
+197005, -6.92, -4.42, 3.60, -1.30, 3.62, 0.53
+197006, -5.79, -2.17, 0.87, 0.19, 2.90, 0.58
+197007, 6.93, -0.69, 0.96, -0.07, 1.90, 0.52
+197008, 4.49, 1.54, 1.03, 0.57, -0.15, 0.53
+197009, 4.18, 8.49, -5.58, 0.24, -5.93, 0.54
+197010, -2.28, -4.50, 0.27, 1.83, 2.38, 0.46
+197011, 4.60, -4.00, 1.63, 1.75, 1.59, 0.46
+197012, 5.72, 3.02, 1.01, 0.14, 0.28, 0.42
+197101, 4.84, 7.54, 1.38, -2.19, -0.14, 0.38
+197102, 1.41, 2.05, -1.29, 0.65, -0.72, 0.33
+197103, 4.13, 2.15, -4.04, 1.97, -2.69, 0.30
+197104, 3.15, -0.37, 0.72, -1.56, 0.72, 0.28
+197105, -3.98, -1.17, -1.38, 1.46, 0.30, 0.29
+197106, -0.10, -1.45, -2.06, 1.52, -1.74, 0.37
+197107, -4.50, -1.41, 0.17, 0.48, 1.62, 0.40
+197108, 3.79, -0.18, 2.67, -0.34, 2.60, 0.47
+197109, -0.85, 0.19, -2.96, 2.59, -1.56, 0.37
+197110, -4.42, -1.65, -0.43, 1.48, -1.24, 0.37
+197111, -0.46, -2.90, -1.70, 2.45, -0.36, 0.37
+197112, 8.71, 3.27, -0.35, -0.43, -1.83, 0.37
+197201, 2.49, 6.33, 1.99, -1.48, 0.29, 0.29
+197202, 2.87, 0.95, -2.76, 1.65, -0.52, 0.25
+197203, 0.63, -0.49, -1.73, 1.58, -0.19, 0.27
+197204, 0.29, 0.15, 0.23, -0.59, -0.89, 0.29
+197205, 1.25, -3.15, -2.69, 2.33, -1.85, 0.30
+197206, -2.43, -0.35, -2.51, 1.75, -0.36, 0.29
+197207, -0.80, -2.74, 0.78, 1.08, -0.59, 0.31
+197208, 3.26, -3.53, 4.69, -2.02, 2.95, 0.29
+197209, -1.14, -2.25, 0.47, 1.67, -1.98, 0.34
+197210, 0.52, -2.53, 1.37, -0.12, -0.05, 0.40
+197211, 4.60, -0.53, 4.76, -1.98, 3.35, 0.37
+197212, 0.62, -1.82, -2.27, 2.60, -2.20, 0.37
+197301, -3.29, -2.79, 2.68, 0.40, 0.92, 0.44
+197302, -4.85, -4.01, 1.70, -0.34, -0.01, 0.41
+197303, -1.30, -2.31, 2.78, -1.07, 0.73, 0.46
+197304, -5.68, -3.00, 5.69, -1.63, 2.71, 0.52
+197305, -2.94, -5.98, 0.21, 2.02, -1.79, 0.51
+197306, -1.56, -2.54, 1.44, -0.27, 0.22, 0.51
+197307, 5.05, 7.26, -5.35, -0.10, -3.46, 0.64
+197308, -3.82, -1.75, 1.13, -1.36, 1.20, 0.70
+197309, 4.75, 3.54, 2.19, -2.30, 1.82, 0.68
+197310, -0.83, -0.27, 1.75, -1.94, 2.59, 0.65
+197311, -12.75, -7.26, 4.09, -2.71, 1.50, 0.56
+197312, 0.61, -4.60, 4.10, -2.80, 2.30, 0.64
+197401, -0.17, 10.41, 5.98, -3.01, 4.46, 0.63
+197402, -0.47, 0.16, 2.56, -1.93, 2.67, 0.58
+197403, -2.81, 2.64, -0.11, 2.82, 0.36, 0.56
+197404, -5.29, -0.63, 1.03, 2.86, 1.84, 0.75
+197405, -4.68, -3.16, -2.07, 5.08, -0.01, 0.75
+197406, -2.83, -0.02, 0.77, 0.62, 3.05, 0.60
+197407, -8.05, 1.99, 5.14, -3.26, 4.58, 0.70
+197408, -9.35, 0.30, 2.50, -0.26, 2.55, 0.60
+197409, -11.77, 1.46, 5.49, -4.28, 5.91, 0.81
+197410, 16.10, -6.85, -9.99, -0.03, -2.94, 0.51
+197411, -4.51, -1.44, -0.16, -3.39, 2.95, 0.54
+197412, -3.45, -4.36, 0.00, -0.65, 3.23, 0.70
+197501, 13.66, 12.79, 8.44, -0.89, -0.86, 0.58
+197502, 5.56, -0.65, -4.56, 1.15, -2.14, 0.43
+197503, 2.66, 3.98, 2.49, 1.23, -1.25, 0.41
+197504, 4.23, -0.59, -1.11, 1.37, -1.35, 0.44
+197505, 5.19, 2.89, -4.02, -1.05, -0.61, 0.44
+197506, 4.83, 1.32, 1.32, -2.62, 1.07, 0.41
+197507, -6.59, 3.42, 1.70, 0.43, 1.19, 0.48
+197508, -2.85, -2.79, -0.90, 1.03, -0.89, 0.48
+197509, -4.26, 0.02, 0.34, 0.53, 0.50, 0.53
+197510, 5.31, -4.23, 0.30, -0.46, 2.27, 0.56
+197511, 2.64, -1.07, 1.99, -0.62, 1.71, 0.41
+197512, -1.60, -0.03, 1.75, -0.12, 0.60, 0.48
+197601, 12.16, 6.35, 8.58, -1.90, 2.36, 0.47
+197602, 0.32, 7.97, 5.78, -2.58, 3.84, 0.34
+197603, 2.32, -1.34, -0.04, -0.38, 1.09, 0.40
+197604, -1.49, 0.14, -0.06, 0.39, -1.10, 0.42
+197605, -1.34, -1.12, -1.32, 2.47, -1.42, 0.37
+197606, 4.05, -1.13, 0.68, -0.59, 0.93, 0.43
+197607, -1.07, 0.62, 1.74, -1.09, 0.29, 0.47
+197608, -0.56, -2.03, 0.79, -0.46, -0.59, 0.42
+197609, 2.07, 0.12, -0.29, 0.99, -1.14, 0.44
+197610, -2.42, 0.16, -0.12, -0.22, -0.32, 0.41
+197611, 0.36, 2.66, 1.52, -1.39, 0.07, 0.40
+197612, 5.65, 3.60, 2.21, -0.62, 2.23, 0.40
+197701, -4.05, 5.90, 4.26, -0.53, 1.93, 0.36
+197702, -1.94, 1.11, 0.50, -0.13, -0.19, 0.35
+197703, -1.37, 1.29, 1.02, -0.32, -0.09, 0.38
+197704, 0.15, 0.61, 3.47, -2.05, 1.14, 0.38
+197705, -1.45, 1.28, 0.84, 0.33, 0.11, 0.37
+197706, 4.71, 2.07, -0.64, 0.88, -1.22, 0.40
+197707, -1.69, 1.82, -0.59, 0.83, 0.01, 0.42
+197708, -1.75, 0.89, -2.79, 0.96, -0.62, 0.44
+197709, -0.27, 1.56, -0.49, 1.23, -0.84, 0.43
+197710, -4.38, 1.50, 1.72, -0.30, -0.46, 0.49
+197711, 4.00, 3.62, 0.31, -0.05, 0.65, 0.50
+197712, 0.27, 1.60, -0.37, 0.94, -0.65, 0.49
+197801, -6.01, 2.69, 3.31, -1.67, 1.53, 0.49
+197802, -1.38, 3.67, 0.76, 0.36, 1.04, 0.46
+197803, 2.85, 3.72, 1.20, -0.60, 1.88, 0.53
+197804, 7.88, -0.31, -3.54, 2.82, -1.35, 0.54
+197805, 1.76, 4.56, -0.62, 0.27, 0.36, 0.51
+197806, -1.69, 1.59, 0.59, -1.44, -0.02, 0.54
+197807, 5.11, 0.15, -1.11, 1.58, -0.78, 0.56
+197808, 3.75, 4.93, -0.46, 1.39, 0.42, 0.56
+197809, -1.43, -0.28, 1.87, -0.68, 1.80, 0.62
+197810, -11.91, -10.05, 1.36, 0.17, 1.03, 0.68
+197811, 2.71, 2.85, -2.22, 1.09, -1.21, 0.70
+197812, 0.88, 1.07, -2.19, 1.96, -1.38, 0.78
+197901, 4.23, 3.84, 2.27, -2.50, 1.57, 0.77
+197902, -3.56, 0.55, 1.20, -1.14, 1.04, 0.73
+197903, 5.68, 3.16, -0.67, 0.62, 0.28, 0.81
+197904, -0.06, 2.40, 1.05, 1.05, 0.21, 0.80
+197905, -2.21, 0.15, 1.32, -1.39, -0.35, 0.82
+197906, 3.85, 0.99, 1.48, -1.61, -0.45, 0.81
+197907, 0.82, 1.24, 1.70, -0.20, 0.59, 0.77
+197908, 5.53, 1.97, -1.55, 1.58, -1.45, 0.77
+197909, -0.82, -0.27, -0.87, 1.02, 0.54, 0.83
+197910, -8.10, -3.46, -1.86, 1.04, 0.24, 0.87
+197911, 5.21, 2.44, -3.25, 0.11, -2.00, 0.99
+197912, 1.79, 4.34, -1.98, -0.67, -1.01, 0.95
+198001, 5.51, 1.90, 1.80, -1.67, 2.01, 0.80
+198002, -1.22, -1.49, 0.62, 0.11, 3.03, 0.89
+198003, -12.90, -6.97, -1.06, 1.38, -1.34, 1.21
+198004, 3.97, 1.00, 1.06, -2.09, 0.54, 1.26
+198005, 5.26, 2.10, 0.39, 0.31, -0.47, 0.81
+198006, 3.06, 1.47, -0.89, -0.09, -0.95, 0.61
+198007, 6.49, 3.93, -6.30, 3.94, -2.46, 0.53
+198008, 1.80, 4.26, -2.64, 2.10, -0.80, 0.64
+198009, 2.19, 0.58, -4.79, 2.03, -2.81, 0.75
+198010, 1.06, 2.33, -2.74, 1.67, -1.22, 0.95
+198011, 9.59, -3.40, -8.35, 4.53, -5.74, 0.96
+198012, -4.52, -0.31, 2.68, -1.25, 1.18, 1.31
+198101, -5.04, 3.37, 6.84, -3.54, 4.35, 1.04
+198102, 0.57, -0.49, 0.97, 0.19, 2.25, 1.07
+198103, 3.56, 3.08, 0.67, -2.34, -0.53, 1.21
+198104, -2.11, 4.60, 2.26, 0.82, 1.20, 1.08
+198105, 0.11, 2.45, -0.43, 0.33, -1.60, 1.15
+198106, -2.36, -0.97, 5.13, -1.35, 2.68, 1.35
+198107, -1.54, -1.97, -0.66, 1.08, -3.04, 1.24
+198108, -7.04, -1.81, 4.84, -0.25, 1.46, 1.28
+198109, -7.17, -2.49, 5.20, -0.02, 2.79, 1.24
+198110, 4.92, 2.24, -4.21, 3.29, -2.76, 1.21
+198111, 3.36, -1.38, 1.90, 0.10, 0.63, 1.07
+198112, -3.65, 1.19, 0.74, 0.19, 2.41, 0.87
+198201, -3.24, -1.18, 3.17, -1.52, 2.08, 0.80
+198202, -5.86, 0.37, 6.10, -3.38, 4.57, 0.92
+198203, -1.87, 0.00, 3.78, -1.44, 2.37, 0.98
+198204, 3.27, 1.15, -2.78, 1.51, -0.15, 1.13
+198205, -3.99, 0.56, 1.81, 0.91, -0.09, 1.06
+198206, -3.09, -0.51, 1.54, 0.03, 2.72, 0.96
+198207, -3.19, 0.95, 0.15, 1.03, 1.54, 1.05
+198208, 11.14, -4.29, 1.16, -1.96, 0.18, 0.76
+198209, 1.29, 2.57, 0.34, 2.12, -0.04, 0.51
+198210, 11.30, 1.92, -3.68, 0.30, -0.37, 0.59
+198211, 4.67, 4.53, -1.96, -1.05, 0.32, 0.63
+198212, 0.55, -0.01, 0.01, -0.07, 1.03, 0.67
+198301, 3.60, 3.28, -0.86, -1.50, -0.46, 0.69
+198302, 2.59, 2.90, 0.67, -0.57, 1.02, 0.62
+198303, 2.82, 1.42, 2.07, -0.07, 2.81, 0.63
+198304, 6.67, 0.49, 0.60, -0.16, 1.60, 0.71
+198305, 0.52, 6.22, -1.40, -1.85, -1.53, 0.69
+198306, 3.07, 1.15, -3.87, 2.52, -0.89, 0.67
+198307, -4.07, 0.98, 5.62, -0.03, 2.84, 0.74
+198308, -0.50, -4.34, 5.55, 0.45, 1.95, 0.76
+198309, 0.91, 0.25, 1.09, 1.21, 0.59, 0.76
+198310, -3.44, -3.82, 5.06, -0.81, 2.97, 0.76
+198311, 2.16, 1.88, -0.62, -0.48, 0.64, 0.70
+198312, -1.78, -0.47, 1.67, 1.59, 1.21, 0.73
+198401, -1.92, -0.07, 7.63, -0.93, 3.00, 0.76
+198402, -4.82, -1.62, 3.36, 0.82, 1.57, 0.71
+198403, 0.63, -0.28, 0.48, -0.93, 1.09, 0.73
+198404, -0.51, -1.01, 1.29, 3.27, 0.76, 0.81
+198405, -5.97, 0.08, 0.26, 2.32, -0.50, 0.78
+198406, 1.82, 0.07, -2.60, 3.08, -1.51, 0.75
+198407, -2.74, -2.22, 0.49, 3.69, -2.17, 0.82
+198408, 10.28, -0.30, -1.85, -0.89, -0.81, 0.83
+198409, -0.80, 0.00, 5.32, 1.40, 2.53, 0.86
+198410, -0.84, -1.43, 0.51, 1.17, -1.16, 1.00
+198411, -1.76, -0.98, 4.08, 0.81, 2.08, 0.73
+198412, 1.84, -0.69, -0.17, 1.21, -1.26, 0.64
+198501, 7.99, 3.49, -5.43, -0.83, -3.36, 0.65
+198502, 1.22, 1.00, -0.12, 1.26, 1.03, 0.58
+198503, -0.84, -1.48, 4.10, 1.18, 2.94, 0.62
+198504, -0.96, -0.10, 3.73, 1.59, 0.71, 0.72
+198505, 5.09, -2.33, -0.86, 1.30, -1.39, 0.66
+198506, 1.27, 0.31, 0.40, 1.73, -0.59, 0.55
+198507, -0.74, 2.89, -1.63, -0.45, -0.31, 0.62
+198508, -1.02, -0.32, 2.28, -0.04, 1.88, 0.55
+198509, -4.54, -1.81, 1.32, 1.16, 1.61, 0.60
+198510, 4.02, -1.55, 0.78, 0.92, -1.11, 0.65
+198511, 6.48, 0.00, -2.87, 0.29, -2.33, 0.61
+198512, 3.88, -0.39, -1.53, 0.97, -1.80, 0.65
+198601, 0.65, 1.01, 0.53, -2.02, -2.05, 0.56
+198602, 7.13, -0.76, -0.94, 1.15, -1.39, 0.53
+198603, 4.88, -0.57, -0.44, 1.12, 0.99, 0.60
+198604, -1.31, 2.92, -2.85, 2.91, 0.02, 0.52
+198605, 4.62, -1.26, -0.11, 2.08, 1.11, 0.49
+198606, 1.03, -0.87, 1.40, 1.83, 0.87, 0.52
+198607, -6.45, -3.54, 4.78, -0.57, 0.61, 0.52
+198608, 6.07, -4.36, 3.52, -1.74, 3.24, 0.46
+198609, -8.60, 1.97, 3.19, -0.05, 3.62, 0.45
+198610, 4.66, -2.33, -1.32, 0.13, 0.89, 0.46
+198611, 1.17, -1.88, -0.06, 1.12, 0.61, 0.39
+198612, -3.27, 0.07, 0.37, 0.83, -0.03, 0.49
+198701, 12.47, -1.51, -3.18, 0.20, -1.09, 0.42
+198702, 4.39, 3.41, -5.99, -0.90, -2.76, 0.43
+198703, 1.64, 0.21, 1.66, 1.36, 4.03, 0.47
+198704, -2.11, -1.55, -0.33, -0.46, 1.22, 0.44
+198705, 0.11, -0.59, 0.13, 0.52, 1.32, 0.38
+198706, 3.94, -2.29, 1.07, 1.73, 0.83, 0.48
+198707, 3.85, -1.11, 0.66, -0.50, 1.56, 0.46
+198708, 3.52, -0.90, -0.90, 2.03, -1.59, 0.47
+198709, -2.59, 0.37, 0.28, -0.90, 1.89, 0.45
+198710, -23.24, -8.09, 4.23, 2.01, 2.39, 0.60
+198711, -7.77, 2.83, 3.14, -1.92, 0.71, 0.35
+198712, 6.81, 0.09, -4.49, 3.01, -2.36, 0.39
+198801, 4.21, -0.54, 5.08, -1.12, 2.09, 0.29
+198802, 4.75, 3.32, -1.65, 1.56, -0.11, 0.46
+198803, -2.27, 6.26, 0.74, -0.16, 1.91, 0.44
+198804, 0.56, 1.12, 1.69, -0.23, 1.90, 0.46
+198805, -0.29, -2.59, 2.30, -0.70, 0.38, 0.51
+198806, 4.79, 2.19, -1.07, 1.42, -3.25, 0.49
+198807, -1.25, -0.17, 2.27, -0.59, 1.45, 0.51
+198808, -3.31, -0.02, 2.03, -0.76, 1.74, 0.59
+198809, 3.30, -1.31, -0.68, 1.72, -0.48, 0.62
+198810, 1.15, -2.95, 1.71, 1.40, 1.04, 0.61
+198811, -2.29, -1.66, 1.24, -0.31, 1.60, 0.57
+198812, 1.49, 2.01, -1.55, 0.64, -0.37, 0.63
+198901, 6.10, -2.23, 0.51, -1.03, 0.16, 0.55
+198902, -2.25, 2.67, 0.87, -0.82, 1.89, 0.61
+198903, 1.57, 0.76, 0.46, 0.01, 0.79, 0.67
+198904, 4.33, -0.70, -1.45, 0.76, -0.54, 0.67
+198905, 3.35, -0.01, -0.82, 0.49, -0.04, 0.79
+198906, -1.35, -1.08, 2.19, 0.24, 1.52, 0.71
+198907, 7.20, -4.04, -2.84, 1.99, -0.62, 0.70
+198908, 1.44, 0.43, 0.72, 0.41, -0.50, 0.74
+198909, -0.76, 0.46, -1.34, 1.40, 0.59, 0.65
+198910, -3.67, -3.33, -1.03, 0.00, 0.02, 0.68
+198911, 1.03, -1.30, -1.12, -0.91, 1.47, 0.69
+198912, 1.16, -2.30, 0.28, -0.10, 1.45, 0.61
+199001, -7.85, -1.33, 0.87, -1.13, 1.32, 0.57
+199002, 1.11, 1.18, 0.61, -0.19, -0.64, 0.57
+199003, 1.83, 1.64, -2.90, 2.15, -1.02, 0.64
+199004, -3.36, -0.40, -2.55, 1.72, -0.98, 0.69
+199005, 8.42, -2.40, -3.74, 1.65, -1.57, 0.68
+199006, -1.09, 1.38, -1.94, -1.00, -0.34, 0.63
+199007, -1.90, -3.27, -0.01, -0.27, 3.10, 0.68
+199008, -10.15, -3.85, 1.58, -0.43, 2.99, 0.66
+199009, -6.12, -3.78, 0.73, -0.16, 3.71, 0.60
+199010, -1.92, -5.07, 0.22, 2.87, -0.49, 0.68
+199011, 6.35, -0.05, -3.16, 0.81, -4.75, 0.57
+199012, 2.46, 0.61, -1.54, 2.86, -2.00, 0.60
+199101, 4.69, 3.86, -1.84, 1.55, -4.08, 0.52
+199102, 7.19, 3.96, -0.54, -0.27, -0.16, 0.48
+199103, 2.65, 3.82, -1.23, -0.39, -0.99, 0.44
+199104, -0.28, 0.33, 1.42, 0.53, 0.71, 0.53
+199105, 3.65, 0.17, -0.57, 2.11, -2.45, 0.47
+199106, -4.94, 0.17, 1.21, 1.75, 0.63, 0.42
+199107, 4.24, -0.96, -1.25, 1.61, -1.41, 0.49
+199108, 2.32, 1.44, -0.78, 0.88, -0.55, 0.46
+199109, -1.59, 1.55, -1.00, -1.81, 0.16, 0.46
+199110, 1.29, 0.95, -0.43, -1.73, -0.29, 0.42
+199111, -4.19, -0.87, -1.93, 1.08, 0.12, 0.39
+199112, 10.84, -2.42, -4.03, 3.58, -3.12, 0.38
+199201, -0.59, 9.26, 4.51, -1.33, 3.15, 0.34
+199202, 1.09, 1.35, 6.37, 0.09, 2.04, 0.28
+199203, -2.66, -0.90, 3.65, -0.08, 1.93, 0.34
+199204, 1.07, -5.73, 4.31, 1.71, 2.22, 0.32
+199205, 0.30, 0.21, 1.28, -0.96, 0.43, 0.28
+199206, -2.34, -2.71, 3.40, -0.03, 1.07, 0.32
+199207, 3.77, -0.61, -0.53, 1.57, -0.72, 0.31
+199208, -2.38, -0.42, -1.03, 3.79, -1.62, 0.26
+199209, 1.19, 0.48, -0.21, 1.53, -0.50, 0.26
+199210, 1.02, 2.02, -2.10, 1.31, -0.80, 0.23
+199211, 4.13, 3.91, -1.48, -0.84, -1.91, 0.23
+199212, 1.53, 1.64, 2.52, -0.44, 0.75, 0.28
+199301, 0.93, 2.09, 5.87, -1.77, 2.78, 0.23
+199302, 0.12, -3.42, 6.42, -0.50, 4.05, 0.22
+199303, 2.30, 0.05, 1.22, -0.29, 0.92, 0.25
+199304, -3.05, -0.86, 2.61, -3.69, 1.52, 0.24
+199305, 2.89, 1.88, -3.41, -0.01, -1.18, 0.22
+199306, 0.31, 0.11, 2.62, -1.06, 1.09, 0.25
+199307, -0.34, 0.90, 3.25, -2.17, 2.03, 0.24
+199308, 3.71, 0.24, -0.45, -1.15, -0.04, 0.25
+199309, -0.12, 3.06, -0.44, 0.77, -0.08, 0.26
+199310, 1.41, 1.62, -1.54, -0.10, 0.59, 0.22
+199311, -1.89, -1.42, -0.27, 1.55, -0.96, 0.25
+199312, 1.65, 1.37, 0.56, 0.71, -0.32, 0.23
+199401, 2.87, -0.14, 2.10, -2.30, 1.45, 0.25
+199402, -2.55, 2.65, -1.46, 2.45, -1.03, 0.21
+199403, -4.78, -1.02, 1.29, 0.77, 1.27, 0.27
+199404, 0.68, -1.04, 1.67, 1.01, 1.12, 0.27
+199405, 0.58, -2.46, 0.20, 0.90, 0.70, 0.31
+199406, -3.03, -0.52, 1.69, 1.16, 1.53, 0.31
+199407, 2.82, -1.83, 0.62, -0.89, 0.11, 0.28
+199408, 4.01, 1.29, -2.80, 0.87, -1.45, 0.37
+199409, -2.31, 2.67, -1.91, 0.60, 0.93, 0.37
+199410, 1.34, -2.30, -1.74, 0.58, -0.62, 0.38
+199411, -4.04, 0.11, -0.94, 0.81, -0.44, 0.37
+199412, 0.86, -0.02, 0.54, 0.42, 0.31, 0.44
+199501, 1.80, -2.76, 0.81, 0.62, -0.83, 0.42
+199502, 3.63, -0.55, 1.09, 0.57, -0.33, 0.40
+199503, 2.19, -0.72, -1.09, -0.33, 0.16, 0.46
+199504, 2.11, -0.34, 2.27, 0.05, 1.00, 0.44
+199505, 2.90, -2.06, 1.72, 0.46, 0.09, 0.54
+199506, 2.72, 2.95, -2.28, -0.48, -2.44, 0.47
+199507, 3.72, 2.10, -1.67, 0.45, -1.71, 0.45
+199508, 0.55, 1.83, 2.71, -1.36, 1.64, 0.47
+199509, 3.35, -1.88, -0.75, 1.33, 0.36, 0.43
+199510, -1.52, -4.05, -0.73, 2.14, -0.03, 0.47
+199511, 3.96, -1.17, 0.94, -0.82, 1.19, 0.42
+199512, 1.03, 0.67, 0.87, -1.33, 2.99, 0.49
+199601, 2.26, -2.59, 0.31, -0.64, 2.27, 0.43
+199602, 1.33, 1.82, -1.42, 0.40, -1.80, 0.39
+199603, 0.73, 1.54, 1.01, 1.30, -0.97, 0.39
+199604, 2.06, 4.64, -3.91, 0.18, -2.20, 0.46
+199605, 2.36, 3.18, -1.20, 0.43, -0.22, 0.42
+199606, -1.14, -3.47, 1.56, 3.46, 1.09, 0.40
+199607, -5.97, -3.68, 4.45, 2.83, 2.59, 0.45
+199608, 2.77, 2.54, -0.46, -0.30, -2.42, 0.41
+199609, 5.01, -1.33, -3.15, 1.51, -2.18, 0.44
+199610, 0.86, -3.88, 5.13, 1.32, 2.97, 0.42
+199611, 6.25, -3.78, 1.17, 2.00, -0.73, 0.41
+199612, -1.70, 3.20, 0.88, 0.54, 1.52, 0.46
+199701, 4.98, -1.82, -1.64, 1.31, -0.28, 0.45
+199702, -0.49, -2.53, 5.20, 0.68, 3.41, 0.39
+199703, -5.02, -0.48, 3.81, 0.36, 1.66, 0.43
+199704, 4.04, -5.73, -0.06, 3.25, -0.90, 0.43
+199705, 6.74, 4.65, -3.89, -0.96, -2.91, 0.49
+199706, 4.10, 1.26, 1.23, 1.01, 0.55, 0.37
+199707, 7.33, -2.84, 0.82, -0.24, -2.56, 0.43
+199708, -4.15, 7.66, 1.38, -0.93, -0.02, 0.41
+199709, 5.35, 2.56, 0.01, -1.39, -0.93, 0.44
+199710, -3.80, -0.51, 1.95, 1.09, 1.87, 0.42
+199711, 2.98, -5.03, 0.78, 3.07, 1.66, 0.39
+199712, 1.32, -2.01, 3.45, 1.19, 1.92, 0.48
+199801, 0.15, -1.41, -1.45, 0.46, -0.85, 0.43
+199802, 7.04, -0.02, -0.13, -0.86, -2.41, 0.39
+199803, 4.76, -0.65, 1.05, -1.02, -0.47, 0.39
+199804, 0.73, -0.02, 0.73, -2.13, -0.23, 0.43
+199805, -3.07, -3.11, 4.16, 0.96, 2.54, 0.40
+199806, 3.18, -3.68, -2.33, -0.52, -2.93, 0.41
+199807, -2.46, -5.32, -0.96, 1.82, 0.45, 0.40
+199808, -16.08, -5.02, 3.40, 3.47, 5.84, 0.43
+199809, 6.15, -0.84, -3.31, -1.51, -2.91, 0.46
+199810, 7.13, -3.51, -2.21, 0.59, 0.29, 0.32
+199811, 6.10, 0.64, -3.15, -1.24, -1.15, 0.31
+199812, 6.16, -1.51, -4.46, -0.75, -3.33, 0.38
+199901, 3.50, -0.75, -4.03, -2.69, -6.86, 0.35
+199902, -4.08, -5.15, 1.40, -1.71, 4.09, 0.35
+199903, 3.45, -4.29, -2.65, -4.20, -1.40, 0.43
+199904, 4.33, 4.67, 2.53, -2.42, 0.92, 0.37
+199905, -2.46, 3.73, 2.40, 1.09, 3.36, 0.34
+199906, 4.77, 2.25, -3.60, 1.32, -3.38, 0.40
+199907, -3.49, 2.53, -0.76, 0.49, 3.11, 0.38
+199908, -1.38, -1.93, -1.31, -0.30, 0.31, 0.39
+199909, -2.79, 2.57, -3.39, -0.72, -1.07, 0.39
+199910, 6.12, -7.09, -2.89, -1.72, -1.25, 0.39
+199911, 3.37, 5.90, -6.51, -3.85, -1.58, 0.36
+199912, 7.72, 5.42, -8.73, -7.91, -5.29, 0.44
+200001, -4.74, 4.15, -0.28, -6.05, 4.73, 0.41
+200002, 2.45, 18.32, -9.93, -18.34, -0.51, 0.43
+200003, 5.20, -14.91, 7.37, 11.67, -1.05, 0.47
+200004, -6.40, -5.55, 8.61, 7.55, 5.27, 0.46
+200005, -4.42, -3.68, 2.57, 4.64, 0.74, 0.50
+200006, 4.64, 10.39, -9.86, -6.83, -3.07, 0.40
+200007, -2.51, -0.95, 8.06, 6.00, 2.99, 0.48
+200008, 7.03, -1.10, -0.66, -3.07, 0.61, 0.50
+200009, -5.45, 0.23, 6.13, 3.08, 6.43, 0.51
+200010, -2.76, -2.83, 5.64, 9.66, 4.67, 0.56
+200011, -10.72, -0.46, 11.26, 13.33, 8.51, 0.51
+200012, 1.19, 3.17, 7.38, 1.85, 5.68, 0.50
+200101, 3.13, 5.80, -4.86, -4.44, -6.55, 0.54
+200102, -10.05, 2.67, 12.87, 9.00, 9.56, 0.38
+200103, -7.26, 2.32, 6.46, 3.41, 3.94, 0.42
+200104, 7.94, -0.64, -4.72, -2.72, -3.95, 0.39
+200105, 0.72, 3.58, 3.17, 0.18, 2.18, 0.32
+200106, -1.94, 6.61, -1.03, 2.03, -1.79, 0.28
+200107, -2.13, -2.91, 5.57, 7.16, 3.01, 0.30
+200108, -6.46, 2.73, 2.50, 3.95, 6.50, 0.31
+200109, -9.25, -5.68, 1.60, 4.96, 3.27, 0.28
+200110, 2.46, 5.41, -8.10, -2.66, -4.64, 0.22
+200111, 7.54, -0.31, 2.01, -3.76, -1.66, 0.17
+200112, 1.61, 5.14, 1.10, 0.30, -0.29, 0.15
+200201, -1.44, 1.19, 3.33, 4.35, 2.84, 0.14
+200202, -2.29, -0.46, 2.50, 7.62, 5.12, 0.13
+200203, 4.24, 4.28, 1.10, -1.36, 0.61, 0.13
+200204, -5.20, 6.66, 3.93, 4.57, 5.41, 0.15
+200205, -1.38, -3.07, 1.68, 2.27, 2.42, 0.14
+200206, -7.21, 3.78, 0.12, 3.62, 2.51, 0.13
+200207, -8.18, -6.24, -3.44, 4.19, -0.72, 0.15
+200208, 0.50, -1.27, 2.53, 1.15, -1.61, 0.14
+200209, -10.35, 3.07, 1.32, 3.24, -2.28, 0.14
+200210, 7.84, -4.12, -5.45, -3.28, 0.92, 0.14
+200211, 5.96, 2.90, -1.12, -9.13, 5.12, 0.12
+200212, -5.76, 0.50, 2.23, 6.04, -1.59, 0.11
+200301, -2.57, 0.81, -0.94, -0.63, 0.81, 0.10
+200302, -1.88, -0.89, -1.45, 1.04, -0.55, 0.09
+200303, 1.09, 0.56, -2.07, 1.80, -0.69, 0.10
+200304, 8.22, 1.06, 1.03, -4.57, 1.14, 0.10
+200305, 6.05, 4.83, -0.29, -6.92, 3.22, 0.09
+200306, 1.42, 1.68, 0.69, 0.55, -0.33, 0.10
+200307, 2.35, 4.73, -1.14, -4.17, 1.87, 0.07
+200308, 2.34, 2.54, 2.03, -2.46, 2.20, 0.07
+200309, -1.24, 0.52, 0.01, 1.34, 0.31, 0.08
+200310, 6.08, 2.64, 1.77, -1.59, 1.55, 0.07
+200311, 1.35, 2.21, 1.85, 0.08, 1.67, 0.07
+200312, 4.29, -2.68, 2.41, 0.00, 0.97, 0.08
+200401, 2.15, 2.54, 1.97, -3.53, 3.40, 0.07
+200402, 1.40, -0.91, 0.50, 2.28, -1.34, 0.06
+200403, -1.32, 2.11, 0.22, 1.50, -1.04, 0.09
+200404, -1.83, -2.19, -2.62, 3.31, -2.80, 0.08
+200405, 1.17, -0.40, -0.39, -0.97, -0.08, 0.06
+200406, 1.86, 2.56, 1.39, 1.12, -0.41, 0.08
+200407, -4.06, -3.03, 4.11, 5.08, -1.62, 0.10
+200408, 0.08, -1.27, 1.03, 1.30, -1.43, 0.11
+200409, 1.60, 3.28, -0.25, -1.34, -1.90, 0.11
+200410, 1.43, 0.28, -0.63, -0.07, 0.40, 0.11
+200411, 4.54, 4.12, 1.79, -1.06, -0.22, 0.15
+200412, 3.43, 0.01, -0.08, -1.26, 0.51, 0.16
+200501, -2.76, -1.11, 1.96, 3.05, -1.38, 0.16
+200502, 1.89, -0.30, 1.65, 1.20, -0.05, 0.16
+200503, -1.97, -1.39, 1.61, 0.47, 1.12, 0.21
+200504, -2.61, -4.01, -0.35, 0.96, -0.90, 0.21
+200505, 3.65, 2.72, -0.81, -1.31, 0.28, 0.24
+200506, 0.57, 3.26, 2.63, 0.98, -0.52, 0.23
+200507, 3.92, 2.83, -0.52, -1.19, -0.98, 0.24
+200508, -1.22, -0.86, 1.27, -2.23, 0.44, 0.30
+200509, 0.49, -0.31, 0.77, 0.49, -0.57, 0.29
+200510, -2.02, -1.41, 0.22, -0.58, -1.25, 0.27
+200511, 3.61, 0.80, -1.19, -0.60, -1.18, 0.31
+200512, -0.25, -0.27, 0.44, 0.12, 0.22, 0.32
+200601, 3.04, 5.77, 1.13, -0.94, -0.54, 0.35
+200602, -0.30, -0.44, -0.25, -0.70, 2.03, 0.34
+200603, 1.46, 3.44, 0.60, -0.04, -0.52, 0.37
+200604, 0.73, -0.82, 2.61, 1.15, -0.20, 0.36
+200605, -3.57, -3.00, 2.54, 0.96, 1.31, 0.43
+200606, -0.35, -0.23, 0.87, 1.38, -0.11, 0.40
+200607, -0.78, -3.69, 2.94, 1.54, 0.93, 0.40
+200608, 2.03, 0.44, -1.71, -1.74, 2.15, 0.42
+200609, 1.84, -1.44, 0.04, 0.88, 0.53, 0.41
+200610, 3.23, 1.93, -0.03, -0.22, 0.26, 0.41
+200611, 1.71, 0.82, 0.07, 0.10, -0.88, 0.42
+200612, 0.87, -0.79, 3.16, -0.80, 2.05, 0.40
+200701, 1.40, 0.08, -0.11, 0.22, 0.24, 0.44
+200702, -1.96, 1.40, -0.09, -0.47, -0.74, 0.38
+200703, 0.68, 0.07, -0.22, 0.24, -0.59, 0.43
+200704, 3.49, -2.02, -1.15, 1.02, 1.01, 0.44
+200705, 3.24, 0.28, -0.04, 1.13, -1.29, 0.41
+200706, -1.96, 0.76, -1.12, 0.53, 0.07, 0.40
+200707, -3.73, -2.87, -3.33, 0.57, -1.04, 0.40
+200708, 0.92, -0.34, -2.24, -0.91, -0.56, 0.42
+200709, 3.22, -2.41, -1.86, -0.58, -3.17, 0.32
+200710, 1.80, 0.03, -2.59, -0.31, -0.10, 0.32
+200711, -4.83, -2.81, -1.18, 1.88, -0.34, 0.34
+200712, -0.87, 0.18, -0.51, 0.70, -1.09, 0.27
+200801, -6.36, -0.52, 3.65, 1.98, 2.20, 0.21
+200802, -3.09, -0.53, -0.94, 0.76, -1.06, 0.13
+200803, -0.93, 0.75, -0.14, 1.09, 0.47, 0.17
+200804, 4.60, -1.15, -0.95, 1.28, -2.54, 0.18
+200805, 1.86, 3.22, -1.38, 0.81, 0.04, 0.18
+200806, -8.44, 1.15, -2.41, 4.30, -0.42, 0.17
+200807, -0.77, 3.64, 5.93, -1.00, 1.06, 0.15
+200808, 1.53, 3.42, 1.55, 1.84, 0.81, 0.13
+200809, -9.24, 0.35, 6.32, 2.95, 1.78, 0.15
+200810, -17.23, -3.21, -2.88, 3.58, 1.92, 0.08
+200811, -7.86, -3.88, -6.03, 4.79, 2.72, 0.03
+200812, 1.74, 3.38, -0.28, -0.08, -1.41, 0.00
+200901, -8.12, -1.99, -11.23, 0.23, -1.16, 0.00
+200902, -10.10, -1.17, -7.30, 1.71, -1.11, 0.01
+200903, 8.95, 0.66, 3.64, -2.33, -2.22, 0.02
+200904, 10.19, 6.70, 5.53, 0.29, 0.14, 0.01
+200905, 5.21, -2.33, -0.21, -0.98, -2.16, 0.00
+200906, 0.43, 2.31, -2.66, -1.06, -0.18, 0.01
+200907, 7.72, 2.45, 5.31, -0.59, 3.21, 0.01
+200908, 3.33, -0.05, 7.76, -2.99, 3.23, 0.01
+200909, 4.08, 2.74, 0.91, 1.44, 0.38, 0.01
+200910, -2.59, -4.78, -4.17, 4.18, -1.67, 0.00
+200911, 5.56, -2.80, -0.19, 0.82, 0.16, 0.00
+200912, 2.75, 6.24, -0.01, 0.65, -0.08, 0.01
+201001, -3.36, 0.28, 0.31, -1.41, 0.44, 0.00
+201002, 3.40, 1.47, 3.13, -0.28, 1.43, 0.00
+201003, 6.31, 1.79, 2.13, -0.62, 1.69, 0.01
+201004, 2.00, 5.05, 2.82, 1.12, 1.69, 0.01
+201005, -7.89, 0.06, -2.39, 1.29, -0.19, 0.01
+201006, -5.56, -2.49, -4.48, -0.27, -1.50, 0.01
+201007, 6.93, 0.09, -0.26, 0.24, 2.01, 0.01
+201008, -4.77, -3.11, -1.96, 0.72, -1.69, 0.01
+201009, 9.54, 3.72, -3.13, -0.21, 0.47, 0.01
+201010, 3.88, 0.78, -2.61, 1.29, -0.23, 0.01
+201011, 0.60, 3.61, -0.90, 0.24, 1.63, 0.01
+201012, 6.82, 0.95, 3.81, -3.65, 3.23, 0.01
+201101, 1.99, -2.42, 0.81, -0.89, 0.69, 0.01
+201102, 3.49, 1.64, 1.09, -1.93, 0.95, 0.01
+201103, 0.45, 2.67, -1.58, 1.65, -0.03, 0.01
+201104, 2.90, -0.51, -2.52, 1.10, -0.84, 0.00
+201105, -1.27, -0.68, -2.07, 2.02, -1.50, 0.00
+201106, -1.75, 0.11, -0.31, 2.38, -1.45, 0.00
+201107, -2.36, -1.35, -1.21, 2.43, -1.69, 0.00
+201108, -5.99, -3.21, -2.45, 3.19, -0.20, 0.01
+201109, -7.59, -3.77, -1.39, 1.89, 0.28, 0.00
+201110, 11.35, 3.56, -0.18, -1.94, -0.85, 0.00
+201111, -0.28, -0.26, -0.34, 1.77, 1.50, 0.00
+201112, 0.74, -0.44, 1.78, 0.76, 2.36, 0.00
+201201, 5.05, 2.16, -1.14, -1.80, -1.41, 0.00
+201202, 4.42, -1.63, 0.09, -0.19, -0.06, 0.00
+201203, 3.11, -0.46, 0.91, -0.41, 0.81, 0.00
+201204, -0.85, -0.59, -0.49, 1.12, 0.67, 0.00
+201205, -6.19, -0.10, -0.58, 2.25, 2.41, 0.01
+201206, 3.89, 0.96, 0.44, -1.23, 0.32, 0.00
+201207, 0.79, -2.68, -0.26, 1.13, 0.13, 0.00
+201208, 2.55, 0.44, 1.28, -1.27, -0.73, 0.01
+201209, 2.73, 0.66, 1.52, -1.38, 1.59, 0.01
+201210, -1.76, -0.81, 3.79, -1.39, 2.28, 0.01
+201211, 0.78, 0.36, -0.98, 0.67, 0.91, 0.01
+201212, 1.18, 1.88, 3.58, -1.99, 0.86, 0.01
+201301, 5.57, 0.56, 0.91, -1.64, 1.47, 0.00
+201302, 1.29, -0.38, 0.01, -0.68, 0.48, 0.00
+201303, 4.03, 0.83, -0.28, 0.17, 1.31, 0.00
+201304, 1.55, -2.30, 0.59, 0.08, 0.47, 0.00
+201305, 2.80, 2.07, 2.56, -1.68, -0.78, 0.00
+201306, -1.20, 1.35, -0.17, -0.45, -0.01, 0.00
+201307, 5.65, 1.79, 0.55, -1.45, 0.56, 0.00
+201308, -2.71, -0.02, -2.76, 0.62, -2.18, 0.00
+201309, 3.77, 2.67, -1.20, -0.77, -1.30, 0.00
+201310, 4.18, -1.51, 1.10, 2.66, 0.88, 0.00
+201311, 3.12, 1.35, 0.27, 0.13, 0.08, 0.00
+201312, 2.81, -0.53, -0.30, -0.49, 0.08, 0.00
+201401, -3.32, 0.59, -2.10, -3.97, -1.36, 0.00
+201402, 4.65, 0.13, -0.46, -0.25, -0.43, 0.00
+201403, 0.43, -1.17, 5.06, 2.14, 1.89, 0.00
+201404, -0.19, -4.17, 1.07, 3.48, 1.04, 0.00
+201405, 2.06, -1.88, -0.19, 0.09, -1.06, 0.00
+201406, 2.61, 3.08, -0.76, -1.95, -1.94, 0.00
+201407, -2.04, -4.25, 0.01, 0.94, 0.47, 0.00
+201408, 4.24, 0.28, -0.58, -0.63, -0.69, 0.00
+201409, -1.97, -3.79, -1.23, 1.12, -0.52, 0.00
+201410, 2.52, 3.78, -1.68, -0.47, -0.17, 0.00
+201411, 2.55, -2.30, -2.99, 1.40, 0.19, 0.00
+201412, -0.06, 2.87, 2.06, -1.16, 0.88, 0.00
+201501, -3.11, -0.89, -3.47, 1.67, -1.66, 0.00
+201502, 6.13, 0.22, -1.83, -1.06, -1.76, 0.00
+201503, -1.12, 3.04, -0.46, 0.10, -0.51, 0.00
+201504, 0.59, -3.02, 1.85, -0.14, -0.49, 0.00
+201505, 1.36, 0.80, -1.36, -1.73, -0.73, 0.00
+201506, -1.53, 2.85, -0.79, 0.50, -1.48, 0.00
+201507, 1.54, -4.55, -4.14, 0.04, -2.54, 0.00
+201508, -6.04, 0.41, 2.66, 0.76, 1.25, 0.00
+201509, -3.08, -2.79, 0.53, 1.83, -0.47, 0.00
+201510, 7.75, -2.17, -0.06, 0.81, 0.45, 0.00
+201511, 0.56, 3.36, -0.50, -2.59, -1.11, 0.00
+201512, -2.17, -2.99, -2.60, 0.32, 0.10, 0.01
+201601, -5.77, -3.42, 2.08, 2.60, 3.04, 0.01
+201602, -0.07, 0.95, -0.49, 3.27, 2.06, 0.02
+201603, 6.96, 1.10, 1.15, 0.82, -0.06, 0.02
+201604, 0.92, 1.18, 3.26, -2.88, 1.97, 0.01
+201605, 1.78, -0.72, -1.82, -1.01, -2.54, 0.01
+201606, -0.05, 0.49, -1.46, 1.19, 1.96, 0.02
+201607, 3.95, 2.64, -1.09, 1.32, -1.24, 0.02
+201608, 0.50, 1.73, 3.37, -1.31, -0.35, 0.02
+201609, 0.25, 1.76, -1.47, -2.31, -0.06, 0.02
+201610, -2.02, -4.04, 4.14, 1.19, 0.21, 0.02
+201611, 4.86, 6.80, 8.32, -0.06, 3.78, 0.01
+201612, 1.81, 0.42, 3.60, 0.98, -0.29, 0.03
+201701, 1.94, -1.26, -2.77, -0.01, -0.94, 0.04
+201702, 3.57, -2.14, -1.82, 0.79, -1.74, 0.04
+201703, 0.17, 0.78, -3.17, 0.66, -1.04, 0.03
+201704, 1.09, 0.48, -1.87, 1.99, -1.58, 0.05
+201705, 1.06, -3.07, -3.81, 1.21, -1.93, 0.06
+201706, 0.78, 2.49, 1.35, -1.99, -0.05, 0.06
+201707, 1.87, -1.57, -0.26, -0.58, -0.15, 0.07
+201708, 0.16, -1.82, -2.22, 0.24, -2.43, 0.09
+201709, 2.51, 4.80, 3.02, -1.35, 1.62, 0.09
+201710, 2.25, -1.94, -0.08, 0.96, -3.33, 0.09
+201711, 3.12, -0.43, -0.04, 3.12, 0.01, 0.08
+201712, 1.06, -1.04, 0.11, 0.68, 1.65, 0.09
+201801, 5.58, -3.11, -1.55, -0.41, -0.89, 0.11
+201802, -3.65, 0.34, -1.09, 0.53, -2.25, 0.11
+201803, -2.35, 3.50, 0.00, -0.60, -0.01, 0.12
+201804, 0.29, 0.93, 0.56, -2.36, 1.18, 0.14
+201805, 2.65, 4.75, -3.21, -2.04, -1.43, 0.14
+201806, 0.48, 0.88, -2.40, 0.73, 0.34, 0.14
+201807, 3.19, -1.95, 0.47, 1.55, 0.40, 0.16
+201808, 3.44, 0.64, -4.13, -0.26, -2.47, 0.16
+201809, 0.06, -2.52, -1.32, 0.60, 1.26, 0.15
+201810, -7.68, -4.53, 3.47, 0.82, 3.42, 0.19
+201811, 1.69, -0.84, 0.27, -0.63, 0.33, 0.18
+201812, -9.55, -3.05, -1.49, -0.14, 0.15, 0.19
+201901, 8.41, 3.08, -0.60, -0.70, -1.36, 0.21
+201902, 3.40, 1.78, -2.83, 0.23, -1.47, 0.18
+201903, 1.10, -3.58, -4.04, 0.87, -1.03, 0.19
+201904, 3.96, -1.15, 1.96, 1.72, -2.18, 0.21
+201905, -6.94, -1.51, -2.35, -0.43, 1.78, 0.21
+201906, 6.93, 0.36, -1.08, 0.94, -0.38, 0.18
+201907, 1.19, -1.89, 0.17, -0.04, 0.34, 0.19
+201908, -2.58, -3.30, -5.05, 0.41, -0.88, 0.16
+201909, 1.43, 0.27, 6.81, 1.98, 3.50, 0.18
+201910, 2.06, 0.22, -2.04, 0.39, -0.99, 0.15
+201911, 3.87, 0.52, -1.80, -1.52, -1.24, 0.12
+201912, 2.77, 0.96, 1.93, 0.19, 1.29, 0.14
+202001, -0.11, -4.40, -6.37, -1.24, -2.34, 0.13
+202002, -8.13, -0.05, -4.05, -1.67, -2.49, 0.12
+202003, -13.39, -8.42, -14.17, -1.33, 1.21, 0.12
+202004, 13.65, 2.81, -1.18, 2.65, -1.03, 0.00
+202005, 5.58, 1.92, -4.92, 0.66, -3.28, 0.01
+202006, 2.45, 1.93, -2.19, -0.02, 0.34, 0.01
+202007, 5.77, -3.11, -1.27, 0.61, 1.07, 0.01
+
+ Annual Factors: January-December
+,Mkt-RF,SMB,HML,RMW,CMA,RF
+ 1964, 12.54, 0.33, 9.86, -2.99, 6.80, 3.54
+ 1965, 10.52, 24.41, 7.36, -0.79, -3.17, 3.93
+ 1966, -13.51, 2.15, -0.68, -0.12, -0.34, 4.76
+ 1967, 24.49, 50.40, -8.58, 7.53, -15.04, 4.21
+ 1968, 8.79, 26.32, 18.49, -12.84, 16.25, 5.21
+ 1969, -17.54, -14.06, -9.81, 11.77, -4.14, 6.58
+ 1970, -6.49, -12.36, 22.34, -2.65, 24.45, 6.52
+ 1971, 11.78, 5.58, -11.29, 10.16, -5.86, 4.39
+ 1972, 13.05, -11.43, 1.75, 7.99, -3.05, 3.84
+ 1973, -26.19, -20.00, 18.08, -9.03, 6.66, 6.93
+ 1974, -35.75, 0.67, 9.67, -4.04, 22.88, 8.00
+ 1975, 32.44, 19.05, 9.49, 0.53, 0.48, 5.80
+ 1976, 21.91, 19.90, 24.50, -6.67, 7.47, 5.08
+ 1977, -8.26, 24.64, 7.51, 2.16, -0.39, 5.12
+ 1978, 1.03, 13.68, 0.37, 5.07, 4.15, 7.18
+ 1979, 13.09, 21.05, -2.12, -2.80, -0.99, 10.38
+ 1980, 22.13, 4.91, -25.06, 14.08, -11.32, 11.24
+ 1981, -18.13, 7.48, 25.01, -1.60, 10.36, 14.71
+ 1982, 10.66, 7.42, 13.59, -4.46, 18.01, 10.54
+ 1983, 13.74, 11.84, 20.85, 0.67, 16.43, 8.80
+ 1984, -6.05, -8.45, 19.63, 14.88, 3.84, 9.85
+ 1985, 24.91, -0.62, 1.35, 11.89, -2.49, 7.72
+ 1986, 10.12, -10.37, 9.58, 7.13, 9.84, 6.16
+ 1987, -3.87, -11.28, -1.64, 6.20, 6.90, 5.47
+ 1988, 11.55, 6.46, 14.77, 3.08, 9.74, 6.35
+ 1989, 20.49, -13.02, -4.29, 2.74, 8.21, 8.37
+ 1990, -13.95, -14.30, -9.72, 7.44, 0.60, 7.81
+ 1991, 29.18, 15.77, -14.41, 12.06, -14.91, 5.60
+ 1992, 6.23, 9.07, 24.28, 7.54, 6.96, 3.51
+ 1993, 8.21, 6.01, 18.91, -8.55, 11.99, 2.90
+ 1994, -4.10, -2.51, -0.69, 6.35, 3.90, 3.90
+ 1995, 31.22, -8.17, 5.30, 1.97, 2.81, 5.60
+ 1996, 15.96, -2.80, 6.16, 15.53, 0.52, 5.21
+ 1997, 25.96, -6.17, 17.46, 10.51, 5.19, 5.26
+ 1998, 19.46, -28.67, -8.89, 0.63, -4.60, 4.86
+ 1999, 20.57, 8.56, -31.77, -27.89, -8.44, 4.68
+ 2000, -17.60, 4.21, 39.69, 26.67, 32.74, 5.89
+ 2001, -15.20, 23.68, 19.52, 19.84, 11.79, 3.83
+ 2002, -22.76, 5.82, 7.47, 20.39, 14.47, 1.65
+ 2003, 30.75, 24.49, 5.40, -20.46, 17.26, 1.02
+ 2004, 10.72, 7.34, 8.08, 8.34, -7.86, 1.20
+ 2005, 3.09, -0.75, 8.33, 1.71, -5.03, 2.98
+ 2006, 10.60, 1.53, 14.11, 2.08, 8.19, 4.80
+ 2007, 1.04, -7.94, -14.65, 4.37, -7.80, 4.66
+ 2008, -38.34, 3.34, 0.82, 15.06, 4.16, 1.60
+ 2009, 28.26, 7.99, -9.17, 2.78, -2.67, 0.10
+ 2010, 17.37, 13.28, -5.31, -1.48, 9.93, 0.12
+ 2011, 0.44, -5.78, -8.35, 12.60, -0.88, 0.04
+ 2012, 16.28, -0.08, 9.68, -4.71, 9.41, 0.06
+ 2013, 35.20, 7.68, 1.33, -4.44, 1.31, 0.02
+ 2014, 11.70, -8.10, -1.74, 1.04, -1.70, 0.02
+ 2015, 0.07, -5.85, -9.65, 0.89, -8.49, 0.02
+ 2016, 13.30, 9.20, 23.02, 4.82, 9.77, 0.20
+ 2017, 21.50, -5.84, -13.98, 6.81, -11.80, 0.80
+ 2018, -6.93, -5.35, -9.16, -1.37, 0.21, 1.81
+ 2019, 28.28, -6.22, -11.67, 4.99, -2.81, 2.14
diff --git a/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV b/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV
new file mode 100644
index 0000000..de66995
--- /dev/null
+++ b/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV
@@ -0,0 +1,14374 @@
+This file was created by CMPT_ME_BEME_OP_INV_RETS_DAILY using the 202007 CRSP database.
+The 1-month TBill return is from Ibbotson and Associates, Inc.
+
+,Mkt-RF,SMB,HML,RMW,CMA,RF
+19630701, -0.67, 0.00, -0.32, -0.01, 0.15, 0.012
+19630702, 0.79, -0.27, 0.27, -0.07, -0.19, 0.012
+19630703, 0.63, -0.17, -0.09, 0.17, -0.33, 0.012
+19630705, 0.40, 0.08, -0.28, 0.08, -0.33, 0.012
+19630708, -0.63, 0.04, -0.18, -0.29, 0.13, 0.012
+19630709, 0.45, 0.00, 0.10, 0.14, -0.04, 0.012
+19630710, -0.18, 0.21, 0.01, 0.06, -0.07, 0.012
+19630711, -0.16, 0.14, -0.30, -0.06, 0.05, 0.012
+19630712, -0.12, 0.02, -0.11, 0.12, 0.04, 0.012
+19630715, -0.62, 0.07, -0.03, 0.17, -0.06, 0.012
+19630716, -0.07, -0.08, 0.14, -0.06, -0.07, 0.012
+19630717, -0.33, -0.07, 0.15, 0.04, 0.10, 0.012
+19630718, -0.54, 0.27, 0.05, -0.03, 0.32, 0.012
+19630719, -0.23, -0.06, -0.05, 0.16, -0.31, 0.012
+19630722, -0.70, -0.10, -0.31, -0.01, -0.10, 0.012
+19630723, 0.01, -0.10, -0.20, 0.04, -0.08, 0.012
+19630724, 0.46, -0.10, -0.01, -0.11, -0.31, 0.012
+19630725, -0.04, 0.14, 0.26, -0.16, 0.18, 0.012
+19630726, 0.35, -0.14, 0.07, 0.04, -0.08, 0.012
+19630729, 0.11, -0.17, 0.26, 0.07, -0.11, 0.012
+19630730, 0.84, -0.29, -0.27, 0.53, -0.40, 0.012
+19630731, -0.13, 0.11, -0.01, -0.15, 0.34, 0.012
+19630801, -0.08, -0.12, -0.12, 0.17, -0.02, 0.011
+19630802, 0.29, -0.14, 0.15, -0.05, 0.02, 0.011
+19630805, 0.57, -0.42, 0.16, 0.03, 0.11, 0.011
+19630806, 0.60, -0.34, 0.25, 0.01, -0.03, 0.011
+19630807, -0.19, 0.04, 0.17, -0.19, 0.14, 0.011
+19630808, 0.14, -0.01, -0.25, 0.29, -0.33, 0.011
+19630809, 0.60, -0.09, -0.06, 0.22, -0.17, 0.011
+19630812, 0.24, 0.20, 0.41, -0.13, 0.32, 0.011
+19630813, 0.27, -0.26, -0.03, 0.05, -0.04, 0.011
+19630814, 0.30, -0.08, 0.21, -0.19, 0.05, 0.011
+19630815, 0.43, -0.29, 0.37, -0.19, 0.00, 0.011
+19630816, 0.15, 0.07, 0.10, 0.04, -0.18, 0.011
+19630819, -0.05, -0.01, -0.10, -0.06, -0.06, 0.011
+19630820, -0.05, 0.02, -0.25, 0.02, 0.09, 0.011
+19630821, -0.11, 0.34, -0.12, -0.07, 0.09, 0.011
+19630822, 0.39, 0.07, 0.09, -0.09, -0.31, 0.011
+19630823, 0.34, 0.00, 0.10, 0.06, -0.03, 0.011
+19630826, 0.18, -0.12, 0.14, 0.11, -0.20, 0.011
+19630827, -0.44, 0.10, -0.05, -0.01, 0.14, 0.011
+19630828, 0.77, 0.08, 0.44, 0.12, 0.21, 0.011
+19630829, 0.18, 0.11, 0.02, 0.10, 0.11, 0.011
+19630830, 0.44, 0.11, -0.09, 0.13, -0.29, 0.011
+19630903, 0.23, 0.07, 0.06, 0.02, 0.20, 0.014
+19630904, -0.01, 0.06, -0.06, -0.39, -0.05, 0.014
+19630905, 0.47, -0.10, 0.11, -0.09, 0.03, 0.014
+19630906, -0.27, -0.17, -0.01, 0.13, -0.04, 0.014
+19630909, -0.36, -0.25, -0.01, 0.05, 0.13, 0.014
+19630910, 0.52, -0.17, 0.42, 0.06, -0.24, 0.014
+19630911, 0.24, -0.20, 0.20, -0.07, 0.32, 0.014
+19630912, -0.09, 0.11, -0.11, -0.20, -0.13, 0.014
+19630913, 0.02, 0.35, -0.15, -0.31, 0.12, 0.014
+19630916, -0.16, 0.15, 0.19, -0.08, -0.38, 0.014
+19630917, 0.03, -0.20, 0.17, 0.05, 0.08, 0.014
+19630918, -0.43, 0.12, -0.24, -0.15, -0.06, 0.014
+19630919, 0.52, -0.39, 0.17, 0.15, -0.02, 0.014
+19630920, 0.04, -0.07, -0.01, 0.09, -0.34, 0.014
+19630923, -0.50, -0.09, -0.21, 0.09, 0.15, 0.014
+19630924, 0.35, -0.33, 0.12, -0.07, 0.07, 0.014
+19630925, -0.58, -0.25, -0.08, -0.41, 0.15, 0.014
+19630926, -0.81, 0.47, -0.35, -0.06, 0.29, 0.014
+19630927, -0.18, 0.28, -0.22, 0.20, -0.07, 0.014
+19630930, -0.60, 0.20, 0.08, 0.21, -0.06, 0.014
+19631001, 0.65, -0.21, 0.25, -0.05, -0.13, 0.013
+19631002, 0.10, -0.13, 0.00, 0.02, -0.12, 0.013
+19631003, 0.67, -0.29, 0.85, -0.35, 0.17, 0.013
+19631004, 0.00, 0.03, 0.06, 0.00, 0.16, 0.013
+19631007, -0.23, 0.18, -0.02, -0.19, -0.03, 0.013
+19631008, -0.14, 0.19, 0.25, -0.03, -0.21, 0.013
+19631009, -0.61, 0.15, -0.05, -0.01, 0.20, 0.013
+19631010, 0.08, -0.03, 0.15, 0.07, -0.09, 0.013
+19631011, 0.13, 0.39, 0.08, 0.01, -0.02, 0.013
+19631014, 0.05, -0.01, 0.07, 0.10, -0.21, 0.013
+19631015, 0.17, -0.29, 0.14, 0.01, 0.02, 0.013
+19631016, 0.89, -0.34, 0.27, 0.18, -0.41, 0.013
+19631017, 0.14, 0.10, -0.25, 0.24, -0.01, 0.013
+19631018, 0.09, 0.11, -0.24, 0.19, -0.06, 0.013
+19631021, 0.03, -0.22, -0.30, 0.55, 0.08, 0.013
+19631022, -0.54, 0.34, -0.46, 0.27, -0.33, 0.013
+19631023, 0.03, -0.12, -0.05, 0.10, -0.10, 0.013
+19631024, 0.35, -0.07, 0.47, 0.07, -0.12, 0.013
+19631025, 0.85, -0.43, -0.89, 0.63, -0.95, 0.013
+19631028, 0.41, -0.78, -0.28, 0.69, -0.41, 0.013
+19631029, -0.04, -0.29, -0.07, 0.26, 0.29, 0.013
+19631030, -0.79, 0.43, -0.06, -0.22, 0.50, 0.013
+19631031, 0.21, -0.04, 0.11, 0.12, -0.32, 0.013
+19631101, -0.18, 0.26, 0.19, -0.22, 0.22, 0.015
+19631104, -0.43, 0.08, 0.36, -0.22, 0.45, 0.015
+19631106, -0.77, 0.10, 0.25, -0.12, 0.51, 0.015
+19631107, 0.33, 0.05, -0.04, -0.07, -0.23, 0.015
+19631108, 0.54, 0.06, 0.12, 0.11, -0.16, 0.015
+19631111, 0.20, 0.22, 0.15, 0.13, -0.08, 0.015
+19631112, -0.37, 0.25, -0.29, 0.20, -0.18, 0.015
+19631113, 0.05, 0.05, -0.08, 0.05, -0.12, 0.015
+19631114, -0.41, 0.12, -0.03, -0.11, 0.35, 0.015
+19631115, -0.75, 0.35, 0.00, -0.15, 0.61, 0.015
+19631118, -0.74, 0.08, -0.23, 0.25, -0.04, 0.015
+19631119, 0.10, -0.31, 0.35, -0.17, 0.07, 0.015
+19631120, 0.76, -0.96, -0.35, 0.26, 0.53, 0.015
+19631121, -1.25, -0.11, 0.03, -0.44, 0.39, 0.015
+19631122, -2.90, -0.58, 0.05, 0.62, 0.50, 0.015
+19631126, 3.94, -1.22, 0.87, -0.37, -0.36, 0.015
+19631127, -0.16, 0.35, 0.13, -0.02, -0.07, 0.015
+19631129, 1.34, 0.33, 0.31, -0.23, -0.18, 0.015
+19631202, 0.53, -0.31, -0.21, 0.50, -0.35, 0.014
+19631203, -0.05, -0.07, -0.20, 0.12, 0.20, 0.014
+19631204, 0.25, 0.11, 0.12, -0.13, 0.16, 0.014
+19631205, 0.57, -0.70, 0.12, -0.24, 0.35, 0.014
+19631206, -0.32, 0.19, 0.08, -0.12, 0.01, 0.014
+19631209, -0.11, 0.02, -0.16, 0.12, -0.35, 0.014
+19631210, 0.06, -0.13, 0.20, 0.19, 0.18, 0.014
+19631211, -0.14, 0.05, 0.09, -0.27, -0.16, 0.014
+19631212, -0.03, -0.16, -0.07, 0.06, 0.37, 0.014
+19631213, 0.16, -0.06, 0.11, -0.13, -0.02, 0.014
+19631216, 0.25, -0.48, -0.03, 0.03, -0.20, 0.014
+19631217, 0.44, -0.64, 0.06, 0.20, -0.70, 0.014
+19631218, -0.18, -0.14, 0.57, -0.43, 0.61, 0.014
+19631219, -0.33, -0.08, -0.44, -0.02, 0.25, 0.014
+19631220, -0.20, -0.23, 0.11, -0.06, 0.44, 0.014
+19631223, -0.60, 0.25, -0.07, -0.46, 0.09, 0.014
+19631224, 0.23, 0.18, -0.15, 0.27, -0.59, 0.014
+19631226, 0.47, 0.13, 0.08, -0.07, 0.03, 0.014
+19631227, 0.16, 0.09, -0.14, -0.11, -0.08, 0.014
+19631230, 0.10, -0.31, -0.17, 0.47, -0.40, 0.014
+19631231, 0.56, 0.44, -0.11, 0.20, -0.15, 0.014
+19640102, 0.60, 0.62, 0.59, -0.36, 0.04, 0.013
+19640103, 0.17, 0.22, 0.38, -0.31, 0.45, 0.013
+19640106, 0.23, 0.11, 0.02, -0.23, 0.40, 0.013
+19640107, 0.04, 0.21, 0.76, -0.45, 0.93, 0.013
+19640108, 0.34, 0.03, -0.15, 0.23, -0.02, 0.013
+19640109, 0.30, -0.16, -0.32, 0.46, -0.85, 0.013
+19640110, -0.04, 0.02, -0.12, 0.16, -0.01, 0.013
+19640113, -0.10, 0.12, 0.45, -0.22, 0.37, 0.013
+19640114, 0.15, -0.21, 0.64, -0.20, 0.42, 0.013
+19640115, 0.24, -0.28, -0.11, -0.05, -0.34, 0.013
+19640116, -0.10, 0.22, -0.32, -0.22, 0.05, 0.013
+19640117, -0.02, 0.29, -0.03, 0.19, 0.02, 0.013
+19640120, -0.21, 0.15, -0.54, 0.42, -0.27, 0.013
+19640121, 0.26, -0.43, 0.07, 0.13, 0.24, 0.013
+19640122, 0.48, -0.22, 0.41, -0.31, -0.03, 0.013
+19640123, 0.09, 0.00, 0.16, 0.46, 0.00, 0.013
+19640124, 0.04, 0.32, 0.18, -0.06, -0.22, 0.013
+19640127, -0.11, -0.45, 0.06, -0.36, 0.41, 0.013
+19640128, -0.01, -0.22, 0.18, -0.16, 0.21, 0.013
+19640129, -0.58, -0.01, -0.15, -0.18, 0.02, 0.013
+19640130, 0.04, 0.07, -0.30, 0.88, -0.13, 0.013
+19640131, 0.38, -0.33, -0.19, 0.35, -0.21, 0.013
+19640203, 0.00, 0.03, 0.06, -0.33, 0.19, 0.014
+19640204, -0.13, -0.29, -0.20, -0.14, 0.30, 0.014
+19640205, -0.08, 0.07, 0.29, 0.02, 0.39, 0.014
+19640206, 0.24, 0.04, -0.23, 0.06, -0.04, 0.014
+19640207, 0.37, -0.03, 0.12, 0.12, 0.34, 0.014
+19640210, -0.13, 0.14, -0.22, 0.14, -0.14, 0.014
+19640211, 0.33, -0.05, -0.14, 0.22, 0.37, 0.014
+19640212, 0.30, 0.04, 0.18, -0.01, -0.12, 0.014
+19640213, 0.08, 0.00, -0.06, 0.15, -0.33, 0.014
+19640214, -0.04, 0.05, 0.23, -0.23, -0.21, 0.014
+19640217, 0.03, 0.19, 0.27, 0.13, 0.24, 0.014
+19640218, 0.01, -0.23, 0.53, 0.02, 0.12, 0.014
+19640219, 0.11, -0.01, 0.05, 0.19, -0.23, 0.014
+19640220, 0.09, 0.01, 0.70, -0.39, 0.19, 0.014
+19640224, 0.10, -0.02, 0.46, -0.01, 0.00, 0.014
+19640225, 0.04, -0.07, 0.17, 0.13, -0.19, 0.014
+19640226, 0.28, 0.19, 0.22, 0.15, -0.02, 0.014
+19640227, -0.27, 0.22, -0.08, -0.09, 0.14, 0.014
+19640228, 0.21, 0.02, 0.42, -0.07, -0.17, 0.014
+19640302, 0.22, -0.06, 0.32, -0.21, 0.19, 0.015
+19640303, 0.26, -0.35, -0.26, 0.06, 0.26, 0.015
+19640304, -0.20, 0.02, -0.11, -0.46, 0.06, 0.015
+19640305, 0.00, 0.18, 0.22, 0.05, -0.17, 0.015
+19640306, 0.32, 0.33, 0.01, 0.03, 0.06, 0.015
+19640309, 0.01, 0.02, 0.42, -0.02, 0.00, 0.015
+19640310, 0.28, -0.37, 0.25, 0.20, 0.11, 0.015
+19640311, 0.40, -0.25, 0.19, -0.09, 0.26, 0.015
+19640312, 0.18, -0.05, 0.17, -0.12, -0.04, 0.015
+19640313, 0.09, 0.11, 0.10, -0.24, 0.27, 0.015
+19640316, 0.03, 0.05, -0.22, -0.06, -0.12, 0.015
+19640317, 0.19, 0.06, 0.25, 0.01, -0.01, 0.015
+19640318, 0.10, 0.07, 0.50, -0.39, 0.34, 0.015
+19640319, -0.09, 0.09, 0.02, 0.10, 0.04, 0.015
+19640320, -0.42, 0.31, 0.10, -0.18, 0.21, 0.015
+19640323, 0.01, 0.35, -0.07, 0.13, 0.02, 0.015
+19640324, -0.18, 0.14, 0.30, -0.12, 0.30, 0.015
+19640325, 0.24, 0.26, 0.60, -0.31, 0.16, 0.015
+19640326, 0.26, 0.19, 0.66, -0.20, 0.33, 0.015
+19640330, -0.10, 0.05, 0.06, -0.11, 0.46, 0.015
+19640331, -0.19, 0.19, -0.29, -0.03, 0.09, 0.015
+19640401, 0.34, 0.25, 0.65, -0.05, 0.04, 0.013
+19640402, 0.57, -0.03, 0.29, 0.27, 0.33, 0.013
+19640403, 0.22, 0.00, -0.41, 0.13, -0.09, 0.013
+19640406, 0.07, 0.11, 0.27, -0.43, 0.02, 0.013
+19640407, -0.34, 0.22, -0.44, -0.13, -0.27, 0.013
+19640408, 0.01, 0.39, 0.17, 0.05, 0.00, 0.013
+19640409, 0.00, 0.12, -0.16, 0.15, 0.04, 0.013
+19640410, 0.19, 0.05, 0.10, -0.13, -0.16, 0.013
+19640413, -0.08, -0.07, -0.21, -0.05, 0.23, 0.013
+19640414, 0.19, -0.20, -0.13, 0.39, -0.18, 0.013
+19640415, 0.11, -0.17, -0.56, -0.20, 0.24, 0.013
+19640416, 0.08, -0.15, -0.07, -0.20, -0.01, 0.013
+19640417, 0.38, -0.21, 0.27, 0.20, 0.00, 0.013
+19640420, -0.07, -0.21, -0.17, 0.03, -0.04, 0.013
+19640421, -0.01, -0.21, -0.10, -0.01, -0.43, 0.013
+19640422, -0.05, -0.20, 0.21, -0.35, -0.21, 0.013
+19640423, -0.16, -0.40, -0.03, -0.40, 0.05, 0.013
+19640424, -0.77, -0.17, -0.41, 0.24, -0.21, 0.013
+19640427, -0.54, -0.03, 0.22, -0.30, 0.07, 0.013
+19640428, 0.64, -0.15, 0.77, -0.26, -0.08, 0.013
+19640429, -0.40, -0.21, -0.70, -0.13, -0.46, 0.013
+19640430, -0.25, -0.25, -0.04, -0.13, 0.04, 0.013
+19640501, 0.78, -0.16, 0.32, 0.07, -0.34, 0.013
+19640504, 0.45, 0.11, 0.22, -0.18, -0.07, 0.013
+19640505, 0.46, -0.49, 0.12, 0.06, -0.56, 0.013
+19640506, 0.26, -0.20, 0.19, -0.04, 0.34, 0.013
+19640507, 0.11, -0.06, 0.73, -0.15, 0.67, 0.013
+19640508, -0.18, -0.01, 0.11, -0.12, 0.06, 0.013
+19640511, -0.03, 0.06, 0.01, -0.06, -0.08, 0.013
+19640512, 0.32, -0.18, 0.04, 0.16, -0.02, 0.013
+19640513, -0.25, -0.01, -0.17, -0.02, -0.08, 0.013
+19640514, -0.11, 0.27, -0.02, 0.03, 0.01, 0.013
+19640515, 0.15, -0.25, -0.06, 0.09, 0.12, 0.013
+19640518, -0.33, 0.00, -0.21, -0.04, -0.06, 0.013
+19640519, -0.44, 0.36, -0.15, 0.11, 0.44, 0.013
+19640520, 0.42, -0.18, 0.43, 0.07, -0.17, 0.013
+19640521, 0.07, -0.07, -0.20, 0.24, -0.28, 0.013
+19640522, 0.05, 0.22, 0.08, 0.09, -0.06, 0.013
+19640525, -0.12, -0.06, 0.07, 0.12, 0.01, 0.013
+19640526, -0.17, 0.12, 0.15, -0.26, -0.01, 0.013
+19640527, -0.15, -0.28, 0.23, -0.32, 0.21, 0.013
+19640528, 0.16, 0.13, 0.01, -0.10, 0.09, 0.013
+19640601, -0.35, 0.00, 0.04, -0.20, 0.09, 0.014
+19640602, -0.52, -0.13, -0.07, -0.06, 0.07, 0.014
+19640603, -0.26, -0.11, 0.19, -0.25, 0.38, 0.014
+19640604, -1.03, -0.05, -0.33, 0.11, 0.16, 0.014
+19640605, 0.42, -0.11, 0.16, 0.07, 0.02, 0.014
+19640608, -0.46, 0.05, -0.16, 0.05, -0.07, 0.014
+19640609, 0.56, -0.20, 0.46, 0.28, 0.09, 0.014
+19640610, 0.37, -0.02, -0.20, 0.25, -0.08, 0.014
+19640611, 0.30, -0.03, -0.36, 0.09, -0.47, 0.014
+19640612, -0.23, 0.23, 0.10, 0.18, -0.06, 0.014
+19640615, 0.45, 0.04, 0.05, 0.04, -0.25, 0.014
+19640616, 0.51, 0.01, 0.35, 0.09, -0.04, 0.014
+19640617, 0.51, -0.10, 0.12, -0.63, -0.10, 0.014
+19640618, 0.00, 0.03, 0.09, -0.26, 0.13, 0.014
+19640619, 0.10, 0.02, 0.11, 0.03, 0.00, 0.014
+19640622, 0.25, -0.17, 0.36, -0.39, -0.08, 0.014
+19640623, -0.38, 0.42, -0.24, 0.10, 0.23, 0.014
+19640624, 0.35, 0.03, 0.23, -0.07, 0.07, 0.014
+19640625, 0.20, 0.02, -0.02, -0.10, 0.30, 0.014
+19640626, 0.26, 0.25, 0.15, -0.23, -0.04, 0.014
+19640629, 0.18, -0.01, -0.17, 0.12, 0.10, 0.014
+19640630, 0.03, -0.08, -0.16, 0.35, -0.34, 0.014
+19640701, 0.62, -0.15, 0.38, -0.26, -0.11, 0.013
+19640702, 0.39, 0.07, -0.26, 0.04, -0.28, 0.013
+19640706, 0.41, -0.11, -0.09, 0.25, -0.21, 0.013
+19640707, 0.15, -0.15, 0.10, 0.18, 0.10, 0.013
+19640708, 0.02, 0.03, 0.11, -0.01, 0.15, 0.013
+19640709, 0.13, 0.30, -0.11, -0.23, 0.32, 0.013
+19640710, 0.19, 0.04, 0.43, 0.15, 0.24, 0.013
+19640713, -0.07, 0.08, 0.04, 0.25, -0.13, 0.013
+19640714, -0.29, 0.23, 0.09, -0.33, 0.29, 0.013
+19640715, 0.37, -0.01, -0.35, 0.31, -0.09, 0.013
+19640716, 0.31, -0.19, 0.18, -0.24, 0.11, 0.013
+19640717, 0.44, -0.16, -0.27, 0.28, 0.02, 0.013
+19640720, -0.31, 0.17, 0.09, -0.16, 0.11, 0.013
+19640721, -0.19, 0.12, -0.13, 0.04, -0.09, 0.013
+19640722, 0.02, 0.01, 0.01, 0.11, 0.31, 0.013
+19640723, -0.03, 0.14, 0.12, 0.08, 0.09, 0.013
+19640724, -0.03, 0.11, -0.05, -0.01, 0.16, 0.013
+19640727, -0.48, -0.07, 0.28, -0.09, 0.22, 0.013
+19640728, -0.24, 0.15, 0.05, 0.14, 0.06, 0.013
+19640729, 0.13, -0.08, -0.02, 0.23, -0.07, 0.013
+19640730, 0.13, -0.13, -0.01, -0.31, 0.09, 0.013
+19640731, 0.07, 0.10, 0.10, -0.27, 0.52, 0.013
+19640803, -0.24, -0.27, 0.23, -0.03, 0.06, 0.013
+19640804, -1.13, -0.14, -0.05, -0.23, 0.54, 0.013
+19640805, 0.16, -0.40, 0.05, -0.05, -0.22, 0.013
+19640806, -0.87, 0.41, -0.09, 0.21, 0.11, 0.013
+19640807, 0.56, -0.09, -0.14, -0.01, -0.04, 0.013
+19640810, 0.02, 0.03, -0.20, -0.03, 0.01, 0.013
+19640811, -0.01, 0.13, 0.17, -0.26, -0.20, 0.013
+19640812, 0.50, 0.15, -0.05, 0.08, -0.32, 0.013
+19640813, 0.28, 0.08, 0.14, -0.01, -0.19, 0.013
+19640814, -0.10, 0.19, 0.04, -0.05, 0.28, 0.013
+19640817, -0.01, -0.07, -0.20, 0.17, -0.13, 0.013
+19640818, 0.06, -0.08, 0.34, 0.05, 0.20, 0.013
+19640819, -0.09, 0.05, 0.04, 0.00, 0.16, 0.013
+19640820, -0.44, 0.00, -0.26, -0.10, 0.20, 0.013
+19640821, 0.16, 0.10, -0.08, 0.20, -0.01, 0.013
+19640824, -0.20, 0.14, 0.51, -0.29, -0.01, 0.013
+19640825, -0.50, 0.10, -0.33, 0.07, 0.08, 0.013
+19640826, -0.18, 0.03, -0.02, -0.12, -0.03, 0.013
+19640827, 0.48, -0.26, 0.03, 0.28, 0.00, 0.013
+19640828, 0.32, -0.06, -0.13, 0.17, -0.25, 0.013
+19640831, -0.21, 0.28, -0.07, 0.01, 0.12, 0.013
+19640901, 0.46, -0.14, 0.53, 0.09, 0.03, 0.013
+19640902, 0.20, 0.23, 0.18, -0.23, -0.21, 0.013
+19640903, 0.25, -0.18, -0.22, 0.36, 0.07, 0.013
+19640904, 0.21, -0.01, 0.03, -0.11, 0.08, 0.013
+19640908, 0.12, 0.02, -0.01, -0.10, 0.06, 0.013
+19640909, 0.19, -0.10, 0.33, 0.04, 0.11, 0.013
+19640910, 0.08, -0.06, 0.23, 0.19, 0.15, 0.013
+19640911, 0.33, -0.20, 0.34, -0.09, 0.46, 0.013
+19640914, -0.24, 0.04, 0.39, -0.10, 0.26, 0.013
+19640915, -0.24, 0.09, -0.09, 0.26, -0.27, 0.013
+19640916, 0.27, -0.05, 0.22, 0.12, -0.40, 0.013
+19640917, 0.59, -0.26, 0.21, 0.04, 0.02, 0.013
+19640918, -0.34, 0.14, -0.23, 0.00, 0.19, 0.013
+19640921, 0.40, -0.09, 0.13, -0.42, -0.12, 0.013
+19640922, 0.04, 0.09, -0.22, -0.17, -0.04, 0.013
+19640923, 0.01, 0.08, 0.21, -0.15, 0.05, 0.013
+19640924, 0.10, -0.13, 0.03, -0.23, -0.02, 0.013
+19640925, 0.20, 0.08, -0.36, 0.04, -0.25, 0.013
+19640928, 0.07, -0.04, -0.08, -0.25, -0.03, 0.013
+19640929, -0.01, -0.03, -0.09, 0.14, 0.15, 0.013
+19640930, -0.03, 0.18, -0.09, 0.13, 0.28, 0.013
+19641001, -0.14, 0.09, 0.11, 0.21, -0.15, 0.013
+19641002, 0.24, -0.19, 0.16, -0.12, -0.12, 0.013
+19641005, 0.41, -0.18, 0.38, -0.12, 0.20, 0.013
+19641006, 0.02, -0.04, 0.16, 0.20, 0.38, 0.013
+19641007, -0.02, -0.07, 0.09, -0.03, 0.03, 0.013
+19641008, 0.24, 0.02, 0.18, 0.10, -0.40, 0.013
+19641009, 0.19, 0.09, 0.09, -0.20, -0.06, 0.013
+19641012, 0.06, 0.26, -0.07, 0.13, 0.12, 0.013
+19641013, -0.25, 0.13, 0.35, -0.17, 0.35, 0.013
+19641014, -0.17, 0.03, 0.14, -0.35, 0.24, 0.013
+19641015, -0.70, -0.45, -0.17, 0.27, 0.14, 0.013
+19641016, 0.70, 0.36, 0.06, -0.35, 0.11, 0.013
+19641019, 0.13, 0.33, 0.16, -0.18, 0.25, 0.013
+19641020, 0.25, 0.06, 0.29, 0.22, -0.06, 0.013
+19641021, -0.06, 0.01, 0.00, 0.09, 0.11, 0.013
+19641022, -0.16, 0.17, 0.04, 0.12, -0.10, 0.013
+19641023, 0.20, -0.04, 0.01, 0.14, -0.21, 0.013
+19641026, -0.17, 0.29, 0.23, -0.47, 0.25, 0.013
+19641027, -0.04, 0.02, -0.11, 0.16, -0.18, 0.013
+19641028, -0.35, -0.14, -0.53, 0.10, -0.07, 0.013
+19641029, 0.05, 0.03, -0.16, 0.09, -0.16, 0.013
+19641030, 0.18, 0.13, -0.26, 0.09, -0.18, 0.013
+19641102, 0.43, -0.13, -0.28, 0.42, -0.17, 0.015
+19641104, -0.04, -0.09, 0.21, 0.08, 0.08, 0.015
+19641105, 0.00, -0.20, -0.52, 0.07, -0.37, 0.015
+19641106, 0.19, -0.24, -0.13, 0.01, -0.36, 0.015
+19641109, -0.05, -0.13, -0.49, 0.43, -0.04, 0.015
+19641110, -0.41, 0.01, -0.20, -0.09, 0.16, 0.015
+19641111, 0.26, -0.01, 0.53, -0.10, -0.16, 0.015
+19641112, 0.18, 0.24, 0.24, -0.29, 0.18, 0.015
+19641113, 0.10, 0.20, -0.27, -0.08, 0.01, 0.015
+19641116, 0.43, -0.18, -0.53, 0.13, -0.23, 0.015
+19641117, 0.45, -0.35, 0.04, -0.06, 0.10, 0.015
+19641118, 0.24, -0.21, -0.02, 0.03, 0.39, 0.015
+19641119, -0.01, 0.01, -0.32, 0.26, -0.20, 0.015
+19641120, 0.10, 0.04, -0.03, -0.25, -0.27, 0.015
+19641123, -0.24, 0.18, 0.05, 0.03, -0.08, 0.015
+19641124, -0.26, 0.08, 0.03, -0.19, 0.15, 0.015
+19641125, -0.21, 0.31, -0.12, -0.05, -0.07, 0.015
+19641127, -0.31, 0.17, -0.12, 0.16, 0.14, 0.015
+19641130, -0.87, 0.04, -0.14, 0.11, 0.57, 0.015
+19641201, -1.00, 0.17, -0.20, 0.39, 0.17, 0.014
+19641202, 0.28, -0.23, 0.01, -0.10, -0.39, 0.014
+19641203, 0.39, -0.03, 0.13, -0.15, 0.05, 0.014
+19641204, 0.18, 0.01, -0.18, 0.12, -0.27, 0.014
+19641207, -0.01, -0.08, -0.18, -0.12, 0.20, 0.014
+19641208, -0.37, -0.18, -0.57, 0.20, -0.02, 0.014
+19641209, -0.67, -0.26, -0.10, 0.08, -0.32, 0.014
+19641210, -0.04, -0.11, 0.19, -0.16, 0.02, 0.014
+19641211, 0.22, 0.14, 0.03, -0.14, -0.05, 0.014
+19641214, -0.26, 0.14, -0.31, 0.25, -0.01, 0.014
+19641215, -0.35, -0.15, -0.18, 0.10, -0.19, 0.014
+19641216, 0.40, 0.08, -0.26, 0.01, -0.31, 0.014
+19641217, 0.36, 0.02, 0.26, 0.08, -0.35, 0.014
+19641218, 0.47, -0.01, -0.05, 0.17, -0.24, 0.014
+19641221, 0.07, 0.05, -0.09, 0.07, 0.19, 0.014
+19641222, -0.07, -0.06, -0.32, 0.35, -0.27, 0.014
+19641223, -0.20, 0.06, -0.22, 0.06, -0.37, 0.014
+19641224, 0.01, 0.19, 0.08, -0.21, -0.05, 0.014
+19641228, -0.11, 0.00, -0.18, -0.07, 0.22, 0.014
+19641229, -0.31, -0.12, 0.03, 0.04, 0.01, 0.014
+19641230, 0.57, -0.11, -0.26, 0.07, 0.04, 0.014
+19641231, 0.49, -0.10, -0.13, 0.03, 0.29, 0.014
+19650104, -0.45, 0.66, -0.09, -0.20, 0.33, 0.014
+19650105, 0.49, 0.42, -0.10, 0.03, 0.55, 0.014
+19650106, 0.34, 0.25, 0.44, 0.13, -0.14, 0.014
+19650107, 0.40, 0.07, 0.18, -0.05, -0.37, 0.014
+19650108, 0.17, 0.09, -0.20, 0.01, -0.40, 0.014
+19650111, 0.06, 0.14, 0.09, 0.06, 0.14, 0.014
+19650112, 0.28, 0.21, -0.09, 0.07, 0.08, 0.014
+19650113, 0.28, 0.16, -0.02, -0.34, 0.07, 0.014
+19650114, 0.00, 0.09, 0.23, -0.06, -0.14, 0.014
+19650115, 0.41, -0.14, 0.17, 0.04, 0.00, 0.014
+19650118, 0.28, -0.11, -0.22, 0.17, 0.05, 0.014
+19650119, 0.16, -0.18, 0.17, 0.06, -0.34, 0.014
+19650120, -0.03, -0.06, 0.08, 0.01, 0.09, 0.014
+19650121, -0.10, 0.12, -0.08, 0.34, 0.06, 0.014
+19650122, 0.24, 0.08, 0.11, 0.30, -0.04, 0.014
+19650125, 0.16, 0.33, 0.07, -0.05, 0.12, 0.014
+19650126, 0.10, -0.01, -0.07, 0.12, -0.03, 0.014
+19650127, 0.28, 0.05, -0.28, 0.21, -0.06, 0.014
+19650128, 0.26, -0.06, -0.13, 0.04, 0.08, 0.014
+19650129, 0.13, 0.28, -0.06, -0.08, 0.05, 0.014
+19650201, 0.03, 0.10, -0.06, -0.06, 0.32, 0.016
+19650202, 0.05, 0.01, -0.03, -0.02, -0.06, 0.016
+19650203, 0.14, 0.16, -0.16, 0.02, -0.24, 0.016
+19650204, 0.00, 0.31, -0.26, 0.53, -0.02, 0.016
+19650205, -0.25, 0.37, -0.06, 0.08, 0.00, 0.016
+19650208, -0.32, 0.09, 0.18, -0.02, 0.12, 0.016
+19650209, 0.31, 0.10, 0.07, -0.13, -0.01, 0.016
+19650210, -0.84, -0.02, -0.03, 0.21, 0.14, 0.016
+19650211, -0.99, 0.26, -0.02, 0.32, 0.13, 0.016
+19650212, 0.66, 0.31, 0.04, -0.06, -0.08, 0.016
+19650215, -0.05, 0.37, 0.32, -0.10, 0.32, 0.016
+19650216, -0.35, 0.36, 0.12, -0.10, 0.09, 0.016
+19650217, 0.14, 0.19, -0.03, -0.28, -0.43, 0.016
+19650218, 0.31, 0.30, -0.02, 0.06, -0.36, 0.016
+19650219, 0.20, 0.32, -0.11, -0.12, 0.00, 0.016
+19650223, 0.48, 0.11, 0.66, -0.16, -0.13, 0.016
+19650224, 0.63, -0.12, 0.02, -0.11, -0.25, 0.016
+19650225, 0.07, -0.05, -0.04, -0.07, -0.16, 0.016
+19650226, 0.25, 0.04, -0.44, 0.36, -0.06, 0.016
+19650301, -0.14, 0.42, 0.00, 0.27, 0.07, 0.016
+19650302, 0.18, 0.17, -0.04, -0.03, 0.31, 0.016
+19650303, -0.05, 0.30, -0.19, 0.31, 0.21, 0.016
+19650304, -0.29, 0.23, -0.14, 0.16, 0.35, 0.016
+19650305, -0.19, 0.03, 0.01, 0.05, -0.02, 0.016
+19650308, 0.04, 0.30, 0.25, -0.07, -0.26, 0.016
+19650309, -0.16, -0.16, 0.13, -0.27, -0.35, 0.016
+19650310, -0.10, 0.18, -0.16, -0.15, -0.20, 0.016
+19650311, 0.38, 0.07, -0.31, 0.26, -0.33, 0.016
+19650312, 0.30, -0.07, 0.30, 0.16, 0.26, 0.016
+19650315, 0.06, 0.05, 0.20, 0.22, -0.15, 0.016
+19650316, -0.11, 0.05, 0.21, -0.15, 0.16, 0.016
+19650317, -0.15, 0.07, 0.02, -0.17, 0.15, 0.016
+19650318, -0.26, 0.19, -0.27, 0.11, -0.22, 0.016
+19650319, -0.01, -0.05, 0.11, -0.06, -0.01, 0.016
+19650322, -0.01, 0.08, 0.25, -0.04, 0.09, 0.016
+19650323, 0.04, -0.05, 0.08, 0.02, 0.11, 0.016
+19650324, 0.18, 0.04, 0.46, -0.23, 0.09, 0.016
+19650325, -0.29, 0.17, 0.11, 0.05, 0.26, 0.016
+19650326, -0.70, 0.06, -0.10, -0.16, 0.43, 0.016
+19650329, -0.24, -0.32, 0.01, 0.03, -0.16, 0.016
+19650330, 0.19, 0.04, -0.02, -0.25, -0.17, 0.016
+19650331, 0.01, 0.21, 0.14, -0.36, 0.08, 0.016
+19650401, 0.16, 0.06, -0.18, 0.10, -0.24, 0.015
+19650402, 0.25, 0.15, 0.22, -0.04, 0.03, 0.015
+19650405, 0.01, 0.04, 0.00, 0.38, 0.11, 0.015
+19650406, -0.04, 0.01, -0.05, -0.14, -0.01, 0.015
+19650407, 0.06, 0.11, -0.07, -0.01, -0.28, 0.015
+19650408, 0.52, 0.23, 0.00, -0.15, -0.06, 0.015
+19650409, 0.56, 0.08, 0.03, 0.01, -0.27, 0.015
+19650412, 0.44, -0.07, 0.11, -0.22, 0.02, 0.015
+19650413, 0.12, 0.09, 0.31, 0.16, 0.12, 0.015
+19650414, 0.18, 0.09, -0.25, 0.15, -0.01, 0.015
+19650415, -0.06, 0.37, -0.02, -0.08, -0.27, 0.015
+19650419, 0.36, -0.05, -0.39, -0.07, -0.68, 0.015
+19650420, -0.03, 0.16, 0.13, -0.12, -0.14, 0.015
+19650421, -0.23, -0.02, 0.01, -0.15, 0.26, 0.015
+19650422, 0.45, -0.15, -0.10, 0.17, -0.16, 0.015
+19650423, 0.13, 0.14, -0.11, 0.15, -0.28, 0.015
+19650426, 0.00, 0.09, 0.42, -0.13, -0.07, 0.015
+19650427, 0.17, -0.08, 0.41, 0.21, -0.15, 0.015
+19650428, -0.05, -0.22, 0.50, -0.14, 0.01, 0.015
+19650429, -0.07, 0.20, -0.16, 0.08, 0.10, 0.015
+19650430, 0.13, -0.07, -0.13, 0.14, -0.23, 0.015
+19650503, 0.08, -0.31, -0.16, 0.08, 0.04, 0.016
+19650504, 0.27, -0.32, -0.06, -0.04, -0.16, 0.016
+19650505, 0.24, -0.32, 0.24, -0.08, 0.20, 0.016
+19650506, 0.24, -0.01, -0.20, 0.27, 0.03, 0.016
+19650507, -0.07, 0.02, -0.06, -0.10, -0.13, 0.016
+19650510, -0.12, 0.20, -0.10, 0.04, 0.23, 0.016
+19650511, -0.09, -0.08, -0.19, 0.03, -0.05, 0.016
+19650512, 0.37, 0.02, -0.38, -0.02, 0.27, 0.016
+19650513, 0.32, 0.26, -0.26, 0.04, 0.10, 0.016
+19650514, -0.16, 0.32, -0.12, -0.06, 0.27, 0.016
+19650517, -0.54, 0.38, 0.30, -0.12, -0.12, 0.016
+19650518, -0.07, 0.07, 0.14, -0.20, 0.22, 0.016
+19650519, 0.20, 0.14, -0.14, -0.24, 0.00, 0.016
+19650520, -0.53, -0.14, -0.08, -0.26, 0.07, 0.016
+19650521, -0.46, 0.14, -0.03, 0.18, -0.01, 0.016
+19650524, -0.74, 0.00, 0.11, -0.19, -0.11, 0.016
+19650525, 0.54, -0.01, -0.33, 0.12, -0.27, 0.016
+19650526, -0.27, -0.24, 0.03, -0.10, 0.22, 0.016
+19650527, -0.58, -0.11, -0.14, -0.12, 0.35, 0.016
+19650528, 0.61, 0.02, -0.15, 0.35, -0.47, 0.016
+19650601, -0.70, 0.03, 0.18, -0.12, 0.14, 0.016
+19650602, -0.78, -0.48, -0.52, 0.36, 0.07, 0.016
+19650603, -0.24, 0.00, -0.09, 0.06, 0.06, 0.016
+19650604, 0.21, 0.09, -0.03, -0.15, -0.16, 0.016
+19650607, -0.35, -0.34, 0.13, -0.02, 0.23, 0.016
+19650608, -1.07, -0.24, 0.00, 0.09, 0.28, 0.016
+19650609, -1.04, -0.18, 0.56, -0.12, 0.18, 0.016
+19650610, -0.43, -0.62, 0.15, 0.04, -0.04, 0.016
+19650611, 0.42, -0.11, -0.06, -0.16, 0.19, 0.016
+19650614, -1.36, -0.87, -0.10, -0.14, -0.02, 0.016
+19650615, 0.47, -0.04, -0.12, 0.00, -0.46, 0.016
+19650616, 0.89, 0.73, 0.12, 0.04, -0.18, 0.016
+19650617, 0.59, 0.11, 0.21, 0.12, -0.20, 0.016
+19650618, -0.44, -0.08, -0.01, 0.01, -0.08, 0.016
+19650621, -0.38, -0.20, -0.10, 0.06, 0.09, 0.016
+19650622, 0.18, -0.01, 0.00, -0.43, -0.20, 0.016
+19650623, -0.64, -0.09, 0.04, -0.17, -0.01, 0.016
+19650624, -1.35, -0.73, 0.08, 0.07, 0.39, 0.016
+19650625, -0.64, -0.36, -0.05, 0.15, 0.48, 0.016
+19650628, -1.88, -1.62, 0.07, 0.01, 0.30, 0.016
+19650629, 0.79, -0.71, -0.16, 0.06, -0.25, 0.016
+19650630, 2.20, 1.24, 0.11, 0.42, -0.40, 0.016
+19650701, 0.46, 0.31, 0.02, -0.26, 0.25, 0.015
+19650702, 0.81, 0.13, -0.06, 0.02, -0.21, 0.015
+19650706, -0.18, 0.23, -0.01, 0.14, 0.09, 0.015
+19650707, -0.34, -0.16, 0.11, -0.18, 0.07, 0.015
+19650708, 0.80, -0.09, -0.20, 0.08, -0.34, 0.015
+19650709, 0.40, 0.44, -0.03, -0.02, 0.00, 0.015
+19650712, 0.00, 0.04, 0.22, -0.14, 0.08, 0.015
+19650713, -0.13, -0.19, -0.24, -0.02, 0.07, 0.015
+19650714, 0.29, 0.16, 0.13, 0.04, -0.14, 0.015
+19650715, -0.10, 0.30, -0.01, -0.04, -0.08, 0.015
+19650716, -0.04, 0.02, -0.06, -0.11, -0.25, 0.015
+19650719, -0.09, 0.06, -0.27, -0.11, 0.19, 0.015
+19650720, -1.24, -0.23, 0.24, -0.16, 0.50, 0.015
+19650721, -0.55, -0.08, 0.24, -0.38, 0.34, 0.015
+19650722, -0.23, 0.23, 0.18, -0.02, 0.00, 0.015
+19650723, 0.24, -0.14, 0.29, 0.00, -0.13, 0.015
+19650726, -0.03, 0.09, 0.03, 0.07, -0.23, 0.015
+19650727, -0.18, 0.02, 0.20, -0.17, 0.05, 0.015
+19650728, 0.16, -0.21, 0.86, 0.03, 0.17, 0.015
+19650729, 0.72, 0.00, 0.53, -0.16, -0.13, 0.015
+19650730, 0.67, 0.11, -0.03, 0.00, -0.32, 0.015
+19650802, 0.20, 0.06, -0.34, 0.04, -0.08, 0.015
+19650803, 0.12, -0.08, -0.23, 0.21, 0.02, 0.015
+19650804, 0.41, 0.29, 0.10, 0.13, 0.30, 0.015
+19650805, 0.02, 0.27, -0.03, -0.19, 0.13, 0.015
+19650806, 0.35, -0.05, -0.33, 0.19, 0.00, 0.015
+19650809, -0.14, 0.33, -0.12, -0.02, 0.02, 0.015
+19650810, 0.04, 0.36, -0.14, 0.12, 0.17, 0.015
+19650811, 0.33, 0.30, 0.11, 0.11, 0.06, 0.015
+19650812, 0.29, 0.22, -0.09, 0.15, -0.56, 0.015
+19650813, 0.43, -0.05, 0.26, 0.20, -0.31, 0.015
+19650816, 0.11, -0.01, 0.24, 0.14, -0.21, 0.015
+19650817, 0.16, -0.02, -0.27, 0.16, 0.11, 0.015
+19650818, 0.02, 0.11, 0.24, 0.14, 0.03, 0.015
+19650819, -0.24, -0.33, -0.02, -0.20, -0.02, 0.015
+19650820, -0.08, 0.08, 0.20, 0.04, -0.15, 0.015
+19650823, -0.13, 0.10, 0.03, 0.28, -0.29, 0.015
+19650824, 0.18, 0.17, -0.31, 0.40, -0.15, 0.015
+19650825, 0.14, 0.23, -0.26, 0.16, 0.46, 0.015
+19650826, 0.37, -0.08, 0.21, -0.02, 0.13, 0.015
+19650827, 0.12, 0.18, -0.02, -0.12, -0.26, 0.015
+19650830, 0.04, 0.26, -0.08, 0.08, -0.10, 0.015
+19650831, -0.05, 0.28, -0.06, -0.01, -0.05, 0.015
+19650901, 0.05, 0.01, -0.20, -0.06, -0.05, 0.015
+19650902, 0.54, 0.04, 0.05, 0.23, -0.05, 0.015
+19650903, 0.46, 0.06, 0.10, 0.04, 0.14, 0.015
+19650907, 0.32, -0.05, -0.47, 0.15, -0.11, 0.015
+19650908, 0.28, 0.05, -0.15, -0.02, 0.42, 0.015
+19650909, 0.24, 0.04, 0.08, -0.29, -0.11, 0.015
+19650910, 0.23, 0.02, -0.34, -0.34, 0.02, 0.015
+19650913, 0.25, 0.07, -0.15, 0.01, -0.07, 0.015
+19650914, -0.44, -0.28, 0.14, -0.12, -0.02, 0.015
+19650915, 0.47, 0.02, 0.08, -0.03, 0.00, 0.015
+19650916, 0.52, -0.17, 0.48, 0.14, 0.10, 0.015
+19650917, 0.03, 0.11, -0.08, -0.07, -0.36, 0.015
+19650920, 0.04, 0.21, 0.07, -0.03, 0.06, 0.015
+19650921, -0.27, -0.02, -0.06, -0.17, 0.09, 0.015
+19650922, 0.47, 0.33, 0.11, 0.19, 0.21, 0.015
+19650923, -0.39, -0.30, 0.07, 0.31, -0.21, 0.015
+19650924, 0.23, 0.14, 0.60, -0.32, -0.05, 0.015
+19650927, 0.58, 0.03, -0.17, 0.12, 0.40, 0.015
+19650928, -0.24, 0.23, 0.11, -0.03, 0.39, 0.015
+19650929, -0.47, 0.00, -0.14, -0.38, 0.30, 0.015
+19650930, -0.07, 0.04, -0.24, -0.14, -0.32, 0.015
+19651001, -0.06, 0.18, 0.09, -0.64, 0.10, 0.015
+19651004, 0.24, 0.47, 0.07, 0.23, -0.37, 0.015
+19651005, 0.56, 0.06, 0.31, 0.07, -0.11, 0.015
+19651006, -0.08, -0.10, -0.31, 0.18, -0.23, 0.015
+19651007, -0.05, 0.35, -0.01, 0.11, 0.00, 0.015
+19651008, 0.48, 0.68, 0.39, -0.19, -0.05, 0.015
+19651011, 0.57, 0.27, -0.05, 0.26, -0.17, 0.015
+19651012, -0.05, 0.37, -0.16, 0.14, -0.17, 0.015
+19651013, 0.01, 0.23, 0.56, 0.20, -0.03, 0.015
+19651014, -0.15, 0.44, 0.23, 0.09, 0.03, 0.015
+19651015, 0.22, 0.28, 0.04, -0.38, 0.12, 0.015
+19651018, 0.27, 0.33, -0.09, 0.02, 0.08, 0.015
+19651019, 0.11, -0.13, -0.44, 0.14, -0.04, 0.015
+19651020, -0.01, 0.26, 0.11, 0.11, 0.22, 0.015
+19651021, 0.15, 0.30, -0.03, -0.25, -0.17, 0.015
+19651022, -0.05, -0.09, -0.05, 0.48, 0.12, 0.015
+19651025, -0.40, -0.40, 0.07, 0.06, -0.04, 0.015
+19651026, 0.50, -0.07, 0.23, 0.30, 0.23, 0.015
+19651027, 0.36, -0.09, 0.20, 0.03, -0.21, 0.015
+19651028, -0.31, -0.03, 0.14, 0.03, 0.09, 0.015
+19651029, 0.26, -0.02, 0.19, 0.19, -0.11, 0.015
+19651101, -0.10, 0.01, 0.27, 0.09, -0.22, 0.017
+19651103, 0.10, 0.22, -0.26, 0.03, 0.07, 0.017
+19651104, 0.19, 0.08, -0.16, -0.23, -0.01, 0.017
+19651105, 0.11, 0.24, -0.33, -0.04, -0.22, 0.017
+19651108, -0.34, 0.12, -0.27, -0.09, 0.00, 0.017
+19651109, -0.24, 0.15, 0.31, -0.38, -0.40, 0.017
+19651110, -0.09, 0.14, -0.03, -0.30, -0.08, 0.017
+19651111, 0.27, 0.18, -0.06, 0.14, 0.06, 0.017
+19651112, 0.49, 0.45, -0.32, 0.09, 0.24, 0.017
+19651115, 0.11, 0.54, -0.24, 0.20, -0.11, 0.017
+19651116, -0.13, 0.35, -0.04, -0.21, -0.22, 0.017
+19651117, 0.15, -0.54, 0.14, 0.24, -0.25, 0.017
+19651118, -0.35, 0.57, 0.12, -0.21, -0.17, 0.017
+19651119, 0.03, 0.40, 0.10, 0.10, -0.08, 0.017
+19651122, -0.53, 0.29, 0.10, 0.10, 0.12, 0.017
+19651123, 0.17, 0.20, 0.03, 0.09, 0.13, 0.017
+19651124, 0.19, 0.28, 0.17, -0.25, -0.29, 0.017
+19651126, 0.26, 0.53, 0.19, -0.06, 0.05, 0.017
+19651129, -0.15, 0.61, 0.28, -0.08, 0.22, 0.017
+19651130, -0.15, 0.27, 0.19, -0.26, 0.25, 0.017
+19651201, -0.03, 0.40, 0.29, -0.32, -0.13, 0.015
+19651202, -0.24, 0.36, 0.06, -0.01, -0.27, 0.015
+19651203, 0.07, 0.22, -0.19, 0.37, -0.15, 0.015
+19651206, -0.79, -0.35, -0.31, 0.27, 0.09, 0.015
+19651207, 0.95, 0.71, 0.35, -0.12, 0.09, 0.015
+19651208, -0.07, 0.40, -0.25, 0.08, -0.29, 0.015
+19651209, 0.29, 0.43, -0.15, -0.21, 0.16, 0.015
+19651210, 0.28, 0.19, -0.06, -0.22, -0.20, 0.015
+19651213, 0.10, 0.44, -0.13, -0.05, -0.08, 0.015
+19651214, 0.06, 0.00, 0.46, -0.34, 0.55, 0.015
+19651215, 0.18, 0.07, 0.73, -0.33, 0.14, 0.015
+19651216, 0.16, 0.27, 0.49, -0.06, -0.44, 0.015
+19651217, 0.04, 0.31, 0.69, 0.03, -0.01, 0.015
+19651220, -0.53, -0.24, 0.04, 0.19, -0.14, 0.015
+19651221, 0.34, 0.09, 0.51, -0.11, 0.05, 0.015
+19651222, 0.16, -0.90, 0.20, -0.07, -0.03, 0.015
+19651223, -0.16, -0.14, -0.29, 0.18, 0.07, 0.015
+19651227, -0.66, -0.04, -0.15, -0.08, 0.10, 0.015
+19651228, -0.05, -0.21, -0.18, -0.62, -0.19, 0.015
+19651229, 0.29, 0.32, -0.03, 0.02, 0.10, 0.015
+19651230, 0.36, 0.16, -0.27, -0.08, 0.05, 0.015
+19651231, 0.26, 0.10, 0.14, 0.20, 0.12, 0.015
+19660103, -0.22, 0.69, 0.29, -0.46, 0.20, 0.018
+19660104, 0.10, 0.40, 0.18, -0.03, -0.07, 0.018
+19660105, 0.57, -0.07, 0.71, 0.44, 0.06, 0.018
+19660106, 0.18, -0.28, 0.55, 0.03, 0.07, 0.018
+19660107, 0.10, 0.13, -0.07, -0.16, -0.09, 0.018
+19660110, 0.20, 0.41, 0.06, -0.14, 0.14, 0.018
+19660111, 0.05, 0.26, -0.29, -0.16, -0.21, 0.018
+19660112, -0.15, 0.27, -0.07, -0.39, -0.05, 0.018
+19660113, 0.22, 0.54, 0.27, 0.01, 0.02, 0.018
+19660114, 0.15, 0.06, 0.12, -0.09, 0.09, 0.018
+19660117, 0.33, 0.44, 0.15, -0.04, 0.21, 0.018
+19660118, 0.18, 0.14, 0.09, -0.22, 0.21, 0.018
+19660119, -0.28, -0.01, 0.12, -0.23, 0.22, 0.018
+19660120, -0.29, 0.36, 0.13, -0.11, -0.30, 0.018
+19660121, 0.08, 0.11, -0.24, 0.04, -0.38, 0.018
+19660124, 0.25, 0.29, 0.33, -0.26, 0.14, 0.018
+19660125, 0.18, 0.13, 0.43, -0.38, -0.01, 0.018
+19660126, -0.12, 0.19, 0.10, -0.24, -0.11, 0.018
+19660127, -0.03, 0.14, 0.33, -0.21, -0.08, 0.018
+19660128, -0.33, 0.40, 0.09, -0.02, -0.05, 0.018
+19660131, -0.45, 0.10, -0.22, 0.12, -0.10, 0.018
+19660201, -0.81, -0.89, -0.43, 0.70, -0.10, 0.018
+19660202, 0.40, 0.33, 0.43, -0.35, 0.15, 0.018
+19660203, 0.15, -0.02, -0.32, 0.16, -0.31, 0.018
+19660204, 0.59, 0.01, 0.48, 0.06, -0.07, 0.018
+19660207, 0.34, 0.32, 0.28, -0.13, -0.44, 0.018
+19660208, -0.03, -0.26, 0.09, -0.20, -0.36, 0.018
+19660209, 0.57, 0.59, -0.02, -0.13, -0.48, 0.018
+19660210, -0.17, 0.40, 0.00, -0.17, -0.06, 0.018
+19660211, 0.01, 0.50, -0.01, 0.27, -0.58, 0.018
+19660214, -0.11, 0.33, 0.18, 0.00, 0.00, 0.018
+19660215, -0.43, 0.12, 0.29, 0.06, 0.12, 0.018
+19660216, 0.03, 0.33, -0.11, -0.08, 0.00, 0.018
+19660217, -0.51, 0.19, -0.31, 0.06, 0.19, 0.018
+19660218, -0.22, 0.63, 0.16, -0.27, 0.23, 0.018
+19660221, -0.56, 0.40, -0.09, 0.02, 0.04, 0.018
+19660223, -0.42, 0.14, -0.15, -0.39, 0.04, 0.018
+19660224, -0.52, 0.21, 0.24, -0.10, 0.13, 0.018
+19660225, 0.32, 0.53, -0.14, 0.16, -0.41, 0.018
+19660228, 0.16, 1.01, -0.21, 0.27, 0.39, 0.018
+19660301, -1.29, -0.20, -0.21, 0.39, 0.19, 0.017
+19660302, -1.03, -0.19, -0.17, -0.02, 0.31, 0.017
+19660303, 0.39, 0.63, 0.16, -0.50, 0.23, 0.017
+19660304, -0.28, 0.21, -0.34, 0.40, 0.13, 0.017
+19660307, -1.29, -0.39, -0.16, 0.06, 0.40, 0.017
+19660308, 0.04, -0.60, -0.30, 0.07, 0.32, 0.017
+19660309, 0.89, 0.38, -0.11, 0.02, -0.39, 0.017
+19660310, -0.01, -0.37, -0.22, 0.29, -0.17, 0.017
+19660311, -0.08, 0.33, 0.32, -0.51, 0.12, 0.017
+19660314, -1.11, -0.44, -0.40, 0.19, -0.13, 0.017
+19660315, -0.74, -1.41, -0.31, 0.15, 0.09, 0.017
+19660316, 0.54, 0.00, 0.04, 0.19, -0.11, 0.017
+19660317, 0.31, 0.01, 0.28, -0.03, -0.06, 0.017
+19660318, 0.48, 0.38, 0.49, -0.04, -0.15, 0.017
+19660321, 0.82, 0.70, 0.55, 0.03, 0.27, 0.017
+19660322, 0.27, 0.14, 0.06, 0.28, -0.30, 0.017
+19660323, -0.32, 0.36, -0.46, 0.30, -0.30, 0.017
+19660324, 0.18, 0.27, -0.54, 0.61, 0.04, 0.017
+19660325, 0.33, 0.29, -0.50, 0.06, -0.61, 0.017
+19660328, 0.16, 0.58, 0.53, -0.61, 0.12, 0.017
+19660329, -0.41, -0.26, -0.31, 0.01, -0.04, 0.017
+19660330, -0.87, 0.00, -0.25, 0.10, 0.20, 0.017
+19660331, 0.55, -0.16, -0.32, -0.14, -0.18, 0.017
+19660401, 0.76, -0.12, 0.19, -0.11, 0.08, 0.017
+19660404, 0.90, 0.16, 0.70, -0.21, -0.15, 0.017
+19660405, 0.58, 0.23, 0.57, -0.13, 0.06, 0.017
+19660406, 0.25, 0.13, 0.02, -0.12, -0.15, 0.017
+19660407, 0.30, 0.59, -0.45, 0.26, -0.15, 0.017
+19660411, 0.10, 0.86, -0.61, 0.52, -0.57, 0.017
+19660412, -0.29, 0.17, -0.10, 0.13, 0.12, 0.017
+19660413, 0.09, 0.41, -0.22, -0.18, -0.08, 0.017
+19660414, 0.30, -0.15, 0.07, -0.19, -0.50, 0.017
+19660415, 0.09, 0.22, 0.34, 0.07, -0.09, 0.017
+19660418, -0.43, -0.08, 0.40, -0.44, 0.18, 0.017
+19660419, 0.02, 0.73, 0.12, -0.12, 0.65, 0.017
+19660420, 0.51, 0.28, 0.05, 0.26, -0.13, 0.017
+19660421, 0.34, -0.10, -0.11, 0.07, -0.01, 0.017
+19660422, -0.20, -0.27, 0.13, -0.09, 0.11, 0.017
+19660425, -0.18, 0.09, -0.02, -0.09, 0.27, 0.017
+19660426, -0.11, -0.04, -0.28, 0.10, -0.37, 0.017
+19660427, -0.29, -0.12, -0.37, 0.01, -0.12, 0.017
+19660428, -0.67, -0.23, -0.36, 0.21, 0.23, 0.017
+19660429, 0.02, 0.53, -0.30, 0.42, -0.28, 0.017
+19660502, -0.11, -0.08, -0.15, 0.54, -0.33, 0.020
+19660503, -1.12, -0.67, -0.13, 0.08, -0.04, 0.020
+19660504, -0.55, -0.18, 0.26, 0.05, 0.29, 0.020
+19660505, -1.74, -1.32, -0.04, -0.05, 0.26, 0.020
+19660506, -0.27, -1.08, 0.47, -0.26, 0.49, 0.020
+19660509, -1.60, -0.58, -0.28, 0.12, 0.32, 0.020
+19660510, 0.86, 0.13, -0.29, -0.12, -0.40, 0.020
+19660511, 0.18, -0.08, -0.28, 0.17, -0.24, 0.020
+19660512, -1.26, -0.81, -0.29, 0.26, 0.21, 0.020
+19660513, -0.96, -0.82, -0.17, 0.14, -0.22, 0.020
+19660516, -1.50, -1.39, -0.27, -0.05, -0.13, 0.020
+19660517, -0.92, -1.28, -0.37, -0.09, -0.09, 0.020
+19660518, 1.88, 0.99, 0.39, 0.12, -0.16, 0.020
+19660519, -0.12, 0.00, -0.38, 0.60, -0.78, 0.020
+19660520, 0.50, 0.31, -0.05, 0.14, 0.15, 0.020
+19660523, 0.89, 0.57, -0.35, 0.15, -0.77, 0.020
+19660524, 0.73, 0.65, 0.12, 0.45, 0.08, 0.020
+19660525, 0.39, 0.23, 0.15, -0.10, -0.15, 0.020
+19660526, 0.04, -0.29, 0.25, -0.16, 0.01, 0.020
+19660527, 0.30, 0.25, -0.10, -0.27, -0.26, 0.020
+19660531, -1.34, 0.00, -0.13, 0.07, 0.11, 0.020
+19660601, -0.01, -0.08, -0.19, -0.08, 0.31, 0.017
+19660602, -0.06, 0.27, 0.17, -0.10, -0.20, 0.017
+19660603, 0.11, 0.07, 0.18, 0.13, 0.08, 0.017
+19660606, -0.74, -0.25, -0.05, 0.03, 0.43, 0.017
+19660607, -0.70, -0.30, -0.14, -0.06, 0.29, 0.017
+19660608, 0.15, 0.22, 0.23, -0.08, -0.12, 0.017
+19660609, 0.72, 0.40, -0.17, 0.23, -0.47, 0.017
+19660610, 1.09, 0.57, 0.75, -0.10, 0.17, 0.017
+19660613, 0.48, 0.39, 0.10, 0.02, 0.13, 0.017
+19660614, 0.33, 0.14, -0.24, -0.12, 0.10, 0.017
+19660615, -0.38, 0.43, -0.17, -0.20, 0.26, 0.017
+19660616, -0.23, 0.42, -0.14, 0.27, -0.05, 0.017
+19660617, 0.01, 0.06, -0.25, 0.22, -0.28, 0.017
+19660620, -0.05, 0.03, 0.04, -0.20, -0.41, 0.017
+19660621, 0.35, 0.30, 0.01, 0.16, 0.20, 0.017
+19660622, 0.18, 0.38, 0.01, 0.20, 0.14, 0.017
+19660623, -0.40, -0.33, 0.28, -0.36, 0.06, 0.017
+19660624, 0.01, -0.10, 0.46, -0.20, 0.11, 0.017
+19660627, -0.63, -0.25, -0.02, 0.15, 0.28, 0.017
+19660628, -0.48, 0.01, -0.11, 0.11, -0.27, 0.017
+19660629, -1.01, -0.44, -0.19, 0.09, 0.20, 0.017
+19660630, -0.18, -0.57, -0.03, -0.05, -0.18, 0.017
+19660701, 0.99, 0.17, -0.23, 0.32, -0.15, 0.018
+19660705, 0.13, 0.02, 0.01, 0.36, 0.44, 0.018
+19660706, 1.39, -0.27, -0.50, 0.44, -0.64, 0.018
+19660707, 0.35, 0.01, -0.04, 0.08, 0.07, 0.018
+19660708, 0.16, 0.09, 0.16, -0.04, -0.12, 0.018
+19660711, -0.15, 0.15, -0.07, 0.11, -0.19, 0.018
+19660712, -0.50, 0.19, 0.15, -0.40, 0.57, 0.018
+19660713, -0.62, 0.14, 0.11, -0.38, 0.45, 0.018
+19660714, 0.55, -0.09, -0.31, -0.12, -0.28, 0.018
+19660715, 0.29, 0.04, 0.19, 0.02, -0.10, 0.018
+19660718, -0.13, -0.12, 0.19, 0.02, 0.16, 0.018
+19660719, -0.73, -0.06, 0.18, -0.22, 0.32, 0.018
+19660720, -0.89, 0.36, 0.20, -0.03, 0.45, 0.018
+19660721, -0.04, -0.27, 0.08, 0.04, 0.05, 0.018
+19660722, -0.11, 0.22, 0.19, -0.28, -0.06, 0.018
+19660725, -1.93, -0.50, 0.33, -0.16, 0.82, 0.018
+19660726, -0.26, -0.69, 0.04, 0.41, -0.21, 0.018
+19660727, 0.48, 0.08, 0.11, -0.27, -0.22, 0.018
+19660728, -0.36, 0.05, 0.03, -0.20, 0.13, 0.018
+19660729, -0.20, -0.02, 0.15, -0.16, 0.28, 0.018
+19660801, -1.53, -0.23, 0.27, -0.03, 0.46, 0.018
+19660802, 0.04, -0.30, -0.12, 0.26, -0.33, 0.018
+19660803, 0.99, 0.08, -0.34, 0.28, -0.75, 0.018
+19660804, 0.91, -0.37, 0.27, 0.23, -0.10, 0.018
+19660805, 0.13, 0.10, -0.32, -0.07, -0.18, 0.018
+19660808, -0.18, -0.23, -0.20, 0.08, -0.27, 0.018
+19660809, -0.19, 0.34, -0.20, 0.08, -0.29, 0.018
+19660810, -0.42, -0.02, -0.07, -0.05, 0.28, 0.018
+19660811, -0.06, 0.14, -0.51, 0.34, -0.59, 0.018
+19660812, 0.23, 0.21, -0.35, 0.40, -0.28, 0.018
+19660815, -0.49, 0.34, -0.01, 0.08, 0.12, 0.018
+19660816, -1.27, -0.01, 0.33, -0.27, 0.57, 0.018
+19660817, -0.58, -0.40, -0.03, 0.06, 0.11, 0.018
+19660818, -1.27, 0.02, 0.04, 0.04, 0.00, 0.018
+19660819, -0.76, -0.42, 0.18, -0.24, 0.37, 0.018
+19660822, -1.82, -0.41, 0.27, -0.26, 0.56, 0.018
+19660823, -0.13, 0.17, -0.04, 0.05, -0.58, 0.018
+19660824, 1.16, -0.05, -0.10, 0.32, -0.54, 0.018
+19660825, -1.26, 0.04, 0.59, -0.28, 0.76, 0.018
+19660826, -2.23, -0.59, 0.77, -0.72, 1.02, 0.018
+19660829, -2.57, -1.14, 0.85, -0.53, 1.13, 0.018
+19660830, 1.61, -0.69, -1.09, 0.80, -1.28, 0.018
+19660831, 1.62, 0.13, 0.34, -0.52, 0.58, 0.018
+19660901, 0.66, -0.31, -0.06, -0.08, 0.59, 0.019
+19660902, -0.33, 0.06, 0.23, -0.28, 0.65, 0.019
+19660906, -0.52, 0.15, -0.02, -0.09, 0.24, 0.019
+19660907, -0.91, -0.48, 0.44, -0.37, 0.63, 0.019
+19660908, -0.37, -0.05, 0.14, 0.17, -0.08, 0.019
+19660909, 0.31, 0.09, -0.20, 0.18, -0.17, 0.019
+19660912, 2.13, -0.21, -0.66, 0.16, -0.79, 0.019
+19660913, 0.58, 0.34, -0.05, 0.09, 0.02, 0.019
+19660914, 0.90, -0.53, -0.82, 0.33, -0.60, 0.019
+19660915, 1.01, -0.46, -0.27, 0.04, -0.02, 0.019
+19660916, -0.04, 0.24, -0.01, 0.20, 0.05, 0.019
+19660919, -0.47, 0.22, 0.24, 0.02, 0.08, 0.019
+19660920, -0.68, 0.34, 0.29, -0.39, 0.00, 0.019
+19660921, -1.69, 0.10, 0.79, -0.63, 0.50, 0.019
+19660922, 0.21, -0.37, -0.29, 0.11, 0.09, 0.019
+19660923, -0.30, 0.18, 0.17, -0.39, 0.07, 0.019
+19660926, 0.21, -0.07, -0.28, 0.22, -0.42, 0.019
+19660927, 0.28, -0.13, -0.07, -0.09, 0.15, 0.019
+19660928, -1.17, 0.30, 0.71, -0.68, 0.55, 0.019
+19660929, -1.07, -0.31, 0.43, -0.17, 0.68, 0.019
+19660930, 0.28, -0.23, -0.31, 0.13, 0.21, 0.019
+19661003, -2.17, -0.13, 1.12, -0.82, 1.17, 0.022
+19661004, 0.07, -1.31, 0.20, 0.21, 0.13, 0.022
+19661005, -0.58, -0.46, 0.34, -0.48, 0.69, 0.022
+19661006, -1.01, -0.99, 0.64, -0.72, 1.09, 0.022
+19661007, -1.26, -0.62, 0.71, -0.35, 1.21, 0.022
+19661010, 1.69, -0.88, -1.32, 1.34, -1.22, 0.022
+19661011, 0.48, 0.08, 0.59, -0.41, 0.30, 0.022
+19661012, 2.63, -1.04, -0.25, -0.06, -0.49, 0.022
+19661013, -0.01, 0.70, -0.45, 0.11, -0.21, 0.022
+19661014, -0.30, 0.26, 0.30, -0.65, 0.16, 0.022
+19661017, 1.09, -0.63, -0.42, -0.18, -0.10, 0.022
+19661018, 1.62, -0.46, -0.56, 0.09, -0.60, 0.022
+19661019, -0.75, 0.38, 0.54, -0.27, 0.38, 0.022
+19661020, -0.31, 0.00, 0.03, -0.32, 0.61, 0.022
+19661021, 0.31, -0.59, -0.40, -0.21, 0.02, 0.022
+19661024, 0.23, -0.36, -0.01, 0.12, 0.56, 0.022
+19661025, 0.51, -0.64, 0.00, -0.05, 0.35, 0.022
+19661026, 0.85, 0.05, 0.42, 0.12, -0.09, 0.022
+19661027, 0.80, -0.30, 0.87, -0.35, 0.20, 0.022
+19661028, 0.04, 0.45, 0.31, -0.45, -0.03, 0.022
+19661031, -0.04, 0.07, 0.11, -0.17, -0.01, 0.022
+19661101, 0.84, -0.07, -0.38, 0.71, -0.61, 0.020
+19661102, 0.13, 0.15, -0.64, 0.78, -0.18, 0.020
+19661103, -0.32, 0.21, -0.21, -0.28, -0.30, 0.020
+19661104, 0.39, -0.17, -0.31, 0.17, -0.29, 0.020
+19661107, -0.05, 0.14, -0.20, 0.33, -0.53, 0.020
+19661109, 0.82, 0.08, -0.55, 0.53, -0.63, 0.020
+19661110, 0.63, 0.33, -0.52, 0.43, -0.21, 0.020
+19661111, 0.10, 0.65, -0.12, -0.18, -0.13, 0.020
+19661114, -0.53, 0.41, -0.03, 0.05, -0.14, 0.020
+19661115, 0.41, 0.06, -0.30, 0.60, -0.70, 0.020
+19661116, 0.86, 0.37, -0.11, 0.19, -0.33, 0.020
+19661117, -0.66, 0.43, 0.15, -0.14, 0.47, 0.020
+19661118, -0.61, 0.30, 0.06, 0.11, 0.02, 0.020
+19661121, -1.37, -0.09, 0.07, -0.25, -0.02, 0.020
+19661122, -0.50, -0.17, -0.25, 0.21, -0.38, 0.020
+19661123, 0.76, 0.13, -0.38, 0.00, -0.58, 0.020
+19661125, 0.79, 0.13, 0.05, 0.55, -0.79, 0.020
+19661128, -0.04, 0.07, -0.39, 0.41, -0.17, 0.020
+19661129, -0.29, 0.19, -0.22, -0.22, -0.27, 0.020
+19661130, 0.08, 0.14, -0.16, 0.05, -0.61, 0.020
+19661201, -0.39, 0.34, -0.21, -0.08, 0.23, 0.019
+19661202, 0.03, 0.14, -0.06, 0.19, -0.06, 0.019
+19661205, 0.07, -0.06, -0.35, 0.17, -0.28, 0.019
+19661206, 0.68, -0.33, -0.18, 0.24, -0.56, 0.019
+19661207, 1.01, -0.16, -0.61, 0.03, -0.38, 0.019
+19661208, 0.37, 0.08, -0.22, -0.32, -0.14, 0.019
+19661209, 0.22, 0.27, -0.21, 0.03, -0.15, 0.019
+19661212, 0.98, 0.07, -0.39, 0.54, -0.60, 0.019
+19661213, -0.28, 0.13, -0.01, 0.33, -0.01, 0.019
+19661214, -0.01, 0.66, -0.59, 0.40, -0.30, 0.019
+19661215, -1.04, 0.48, 0.35, -0.07, 0.73, 0.019
+19661216, 0.02, 0.33, 0.08, 0.18, -0.02, 0.019
+19661219, -0.27, 0.08, -0.20, -0.01, 0.05, 0.019
+19661220, -0.39, -0.18, 0.24, -0.59, 0.28, 0.019
+19661221, 0.52, 0.16, 0.25, -0.19, -0.22, 0.019
+19661222, 0.38, 0.12, 0.50, -0.10, 0.06, 0.019
+19661223, -0.25, 0.34, 0.49, -0.35, 0.42, 0.019
+19661227, -0.54, 0.12, 0.39, -0.42, 0.16, 0.019
+19661228, -0.48, -0.28, 0.11, 0.09, 0.53, 0.019
+19661229, -0.39, -0.41, 0.06, 0.25, 0.27, 0.019
+19661230, -0.08, 0.02, -0.53, 0.37, -0.12, 0.019
+19670103, 0.08, 1.11, 0.71, 0.11, 0.29, 0.020
+19670104, 0.16, -0.05, 0.25, 0.00, 0.05, 0.020
+19670105, 1.30, 0.67, 0.33, 0.11, -0.13, 0.020
+19670106, 0.72, 0.69, 0.14, 0.12, 0.34, 0.020
+19670109, 0.84, 0.60, 0.36, 0.46, -0.36, 0.020
+19670110, 0.00, 0.36, 0.13, -0.23, 0.31, 0.020
+19670111, 0.84, 0.19, 0.59, -0.23, -0.12, 0.020
+19670112, 0.54, 0.27, 0.24, -0.30, -0.08, 0.020
+19670113, 0.68, 0.21, -0.09, -0.05, -0.41, 0.020
+19670116, -0.19, 0.33, 0.23, -0.10, -0.15, 0.020
+19670117, 1.13, 0.00, -0.33, 0.42, -0.79, 0.020
+19670118, 0.52, -0.25, 0.09, -0.27, 0.17, 0.020
+19670119, 0.04, 0.35, 0.31, -0.30, -0.01, 0.020
+19670120, 0.37, 0.95, -0.13, 0.32, -0.35, 0.020
+19670123, 0.34, 0.31, -0.44, 0.34, -0.33, 0.020
+19670124, 0.20, 0.26, -0.30, 0.10, -0.32, 0.020
+19670125, -0.69, 0.43, -0.21, -0.03, -0.06, 0.020
+19670126, 0.03, 0.45, -0.03, 0.05, -0.45, 0.020
+19670127, 0.48, 0.48, -0.27, 0.28, -0.38, 0.020
+19670130, 0.56, 0.55, 0.07, 0.05, 0.05, 0.020
+19670131, -0.08, 0.15, 0.37, -0.32, 0.04, 0.020
+19670201, -0.15, 0.33, 0.03, -0.02, -0.36, 0.019
+19670202, 0.34, 0.19, 0.18, -0.17, 0.14, 0.019
+19670203, 0.71, 0.40, -0.01, -0.18, 0.02, 0.019
+19670206, -0.15, 0.20, 0.25, -0.32, -0.04, 0.019
+19670207, -0.18, 0.19, -0.28, -0.06, -0.14, 0.019
+19670208, 0.88, 0.30, -0.45, 0.45, -0.12, 0.019
+19670209, -0.39, -0.28, -0.14, 0.25, 0.05, 0.019
+19670210, 0.26, 0.33, -0.13, 0.28, -0.42, 0.019
+19670213, 0.14, 0.50, 0.11, 0.03, 0.14, 0.019
+19670214, 0.73, 0.18, -0.06, 0.24, -0.39, 0.019
+19670215, 0.05, -0.08, -0.35, 0.20, 0.11, 0.019
+19670216, -0.43, 0.22, -0.12, -0.30, 0.47, 0.019
+19670217, 0.02, 0.03, 0.03, -0.12, 0.08, 0.019
+19670220, -0.50, 0.16, -0.09, 0.03, 0.01, 0.019
+19670221, 0.00, 0.40, -0.37, 0.40, -0.06, 0.019
+19670223, 0.13, 0.00, -0.03, 0.01, 0.05, 0.019
+19670224, 0.08, 0.07, -0.02, -0.04, -0.19, 0.019
+19670227, -1.10, -0.39, -0.09, 0.26, 0.19, 0.019
+19670228, 0.38, 0.26, -0.58, 0.98, -0.50, 0.019
+19670301, 0.98, 0.11, -0.05, 0.37, -0.33, 0.018
+19670302, 0.52, -0.05, -0.22, 0.06, -0.37, 0.018
+19670303, 0.16, 0.27, -0.40, 0.12, -0.12, 0.018
+19670306, -0.13, 0.32, 0.29, -0.02, -0.05, 0.018
+19670307, 0.16, 0.30, -0.07, -0.11, -0.55, 0.018
+19670308, 0.17, 0.31, -0.26, 0.29, -0.21, 0.018
+19670309, 0.29, 0.41, 0.01, 0.08, 0.08, 0.018
+19670310, 0.37, -0.02, 0.69, 0.29, -0.21, 0.018
+19670313, -0.48, 0.04, -0.08, 0.09, 0.35, 0.018
+19670314, -0.11, 0.06, -0.19, -0.05, -0.17, 0.018
+19670315, 0.89, -0.20, 0.35, 0.27, -0.19, 0.018
+19670316, 0.90, -0.37, -0.26, 0.22, 0.04, 0.018
+19670317, 0.13, 0.06, -0.07, -0.15, -0.03, 0.018
+19670320, -0.01, 0.23, -0.15, 0.32, -0.15, 0.018
+19670321, -0.29, -0.12, 0.04, 0.16, 0.12, 0.018
+19670322, 0.28, 0.12, -0.16, 0.14, -0.06, 0.018
+19670323, 0.68, -0.22, 0.26, 0.03, 0.09, 0.018
+19670327, -0.06, 0.09, -0.21, -0.35, -0.25, 0.018
+19670328, 0.09, -0.03, 0.15, -0.01, -0.03, 0.018
+19670329, -0.13, 0.10, 0.13, -0.14, 0.15, 0.018
+19670330, 0.04, 0.20, -0.10, -0.39, 0.20, 0.018
+19670331, -0.51, 0.21, 0.58, -0.36, 0.23, 0.018
+19670403, -1.13, -0.23, 0.18, -0.59, 0.82, 0.016
+19670404, 0.01, 0.30, -0.29, 0.10, -0.32, 0.016
+19670405, 0.63, 0.00, 0.05, -0.34, -0.13, 0.016
+19670406, 0.20, -0.01, 0.14, -0.11, -0.03, 0.016
+19670407, -0.62, -0.16, 0.43, -0.36, 0.48, 0.016
+19670410, -1.24, -0.51, 0.38, -0.23, 0.37, 0.016
+19670411, 0.71, 0.32, -0.11, 0.19, -0.73, 0.016
+19670412, -0.11, 0.15, 0.12, 0.27, 0.19, 0.016
+19670413, 0.65, 0.02, -0.35, 0.24, -0.66, 0.016
+19670414, 1.01, -0.22, -0.79, 0.77, -0.76, 0.016
+19670417, 0.64, -0.17, -0.07, 0.36, -0.33, 0.016
+19670418, 0.85, 0.11, -0.09, 0.15, -0.28, 0.016
+19670419, 0.12, 0.03, -0.11, 0.00, 0.10, 0.016
+19670420, 0.19, 0.18, -0.26, 0.14, -0.57, 0.016
+19670421, 0.26, 0.46, -0.21, 0.07, -0.60, 0.016
+19670424, 0.27, -0.30, -0.27, 0.50, -0.16, 0.016
+19670425, 0.55, -0.19, -0.20, 0.15, -0.20, 0.016
+19670426, -0.12, 0.18, -0.43, 0.37, -0.07, 0.016
+19670427, 0.81, 0.20, -0.55, 0.44, -0.74, 0.016
+19670428, 0.15, 0.26, 0.06, 0.23, -0.04, 0.016
+19670501, -0.08, 0.39, -0.24, 0.12, -0.07, 0.015
+19670502, -0.02, 0.53, 0.06, -0.07, -0.48, 0.015
+19670503, 0.28, 0.52, -0.10, -0.06, 0.04, 0.015
+19670504, 0.33, -0.09, -0.27, 0.13, 0.05, 0.015
+19670505, 0.12, 0.04, 0.37, -0.65, 0.73, 0.015
+19670508, 0.21, -0.26, 0.19, -0.76, 0.31, 0.015
+19670509, -1.04, -0.44, 0.67, -0.56, 0.39, 0.015
+19670510, -0.13, 0.52, 0.04, -0.34, -0.04, 0.015
+19670511, 0.49, 0.52, -0.29, 0.11, -0.48, 0.015
+19670512, -0.20, 0.45, -0.10, 0.18, -0.44, 0.015
+19670515, -0.74, 0.29, 0.19, -0.15, 0.43, 0.015
+19670516, 0.48, 0.16, -0.12, -0.07, -0.22, 0.015
+19670517, -0.27, 0.30, 0.24, -0.13, 0.14, 0.015
+19670518, -0.19, 0.38, 0.17, -0.40, 0.23, 0.015
+19670519, -0.42, 0.15, -0.13, -0.11, 0.09, 0.015
+19670522, -0.34, 0.31, -0.22, 0.21, -0.23, 0.015
+19670523, -0.43, 0.12, -0.15, 0.39, 0.15, 0.015
+19670524, -1.20, -0.41, 0.18, -0.23, 0.41, 0.015
+19670525, 0.99, -0.07, -0.22, 0.10, -0.09, 0.015
+19670526, -0.11, -0.11, 0.35, -0.03, -0.06, 0.015
+19670529, -0.48, 0.23, -0.07, 0.23, 0.18, 0.015
+19670531, -1.67, -1.00, 0.06, 0.30, 0.59, 0.015
+19670601, 1.18, 0.00, -0.13, 0.04, -0.50, 0.012
+19670602, -0.40, 0.40, -0.02, 0.01, 0.03, 0.012
+19670605, -1.65, -1.37, 0.09, 0.69, 0.51, 0.012
+19670606, 2.02, 0.83, -0.32, -0.15, -0.86, 0.012
+19670607, 0.86, 0.44, 0.08, -0.39, -0.29, 0.012
+19670608, 0.57, 0.36, -0.05, -0.23, -0.35, 0.012
+19670609, 0.26, 0.51, 0.10, -0.12, 0.19, 0.012
+19670612, 0.63, 0.58, -0.23, -0.14, -0.48, 0.012
+19670613, 0.60, 0.11, 0.05, 0.08, -0.25, 0.012
+19670614, -0.17, 0.38, -0.09, -0.02, -0.20, 0.012
+19670615, 0.17, 0.64, -0.03, 0.31, -0.25, 0.012
+19670616, 0.03, 0.17, 0.19, -0.12, 0.14, 0.012
+19670619, 0.03, 0.48, -0.18, 0.19, -0.22, 0.012
+19670620, -0.03, 0.31, 0.11, 0.09, -0.04, 0.012
+19670621, -0.25, 0.26, 0.06, -0.16, 0.25, 0.012
+19670622, -0.20, 0.46, -0.09, 0.13, -0.43, 0.012
+19670623, 0.07, 0.36, 0.15, -0.10, 0.06, 0.012
+19670626, -0.40, -0.07, 0.25, -0.01, 0.05, 0.012
+19670627, -0.34, 0.45, 0.13, -0.12, -0.10, 0.012
+19670628, 0.07, 0.55, 0.15, -0.31, -0.29, 0.012
+19670629, -0.47, -0.15, 0.32, -0.07, 0.40, 0.012
+19670630, -0.14, 0.53, 0.34, -0.32, 0.25, 0.012
+19670703, 0.35, 0.38, -0.02, 0.26, -0.17, 0.016
+19670705, 0.53, 0.30, -0.22, 0.39, -0.18, 0.016
+19670706, -0.06, 0.34, -0.26, 0.60, 0.11, 0.016
+19670707, 0.47, 0.51, -0.09, 0.35, -0.38, 0.016
+19670710, 0.46, 0.31, 0.20, 0.47, -0.28, 0.016
+19670711, 0.43, -0.33, 0.17, -0.38, 0.12, 0.016
+19670712, -0.03, 0.15, 0.01, 0.28, 0.17, 0.016
+19670713, 0.06, 0.41, 0.12, -0.15, 0.27, 0.016
+19670714, 0.37, 0.47, 0.48, 0.11, 0.16, 0.016
+19670717, 0.07, 0.24, 0.38, -0.28, 0.19, 0.016
+19670718, 0.71, -0.22, 0.66, 0.07, 0.63, 0.016
+19670719, 0.09, 0.02, 0.44, -0.51, 0.83, 0.016
+19670720, 0.14, -0.28, 0.48, -0.40, 0.70, 0.016
+19670721, 0.04, -0.34, 0.18, -0.37, 0.74, 0.016
+19670724, -0.37, -0.33, 0.19, -0.26, 0.18, 0.016
+19670725, 0.02, 0.40, 0.13, -0.26, -0.31, 0.016
+19670726, 0.42, 0.23, -0.20, 0.22, -0.44, 0.016
+19670727, 0.34, 0.40, -0.16, 0.45, 0.12, 0.016
+19670728, 0.17, 0.40, 0.15, -0.12, -0.13, 0.016
+19670731, 0.28, 0.23, -0.17, 0.02, 0.21, 0.016
+19670801, 0.62, -0.30, 0.53, 0.15, 0.16, 0.014
+19670802, 0.34, -0.36, 0.23, -0.03, 0.28, 0.014
+19670803, -0.18, -0.03, -0.23, 0.10, 0.02, 0.014
+19670804, 0.26, 0.56, -0.18, 0.03, -0.35, 0.014
+19670807, -0.16, 0.23, 0.07, 0.10, 0.01, 0.014
+19670808, 0.09, -0.03, 0.40, -0.08, 0.12, 0.014
+19670809, 0.11, -0.02, 0.21, -0.14, 0.31, 0.014
+19670810, -0.27, -0.09, 0.11, -0.14, 0.50, 0.014
+19670811, -0.48, -0.10, 0.14, 0.07, 0.33, 0.014
+19670814, -0.50, -0.32, -0.07, 0.12, 0.19, 0.014
+19670815, 0.11, 0.03, 0.06, -0.10, 0.18, 0.014
+19670816, -0.25, -0.12, 0.07, -0.07, -0.31, 0.014
+19670817, 0.13, 0.31, 0.13, -0.01, 0.25, 0.014
+19670818, 0.17, 0.24, -0.04, 0.23, 0.23, 0.014
+19670821, -0.50, 0.20, -0.01, 0.16, 0.13, 0.014
+19670822, -0.54, 0.00, 0.21, 0.00, 0.24, 0.014
+19670823, -0.10, -0.03, -0.13, -0.07, -0.38, 0.014
+19670824, -0.52, 0.13, 0.04, -0.19, 0.52, 0.014
+19670825, -0.42, -0.22, -0.01, -0.26, -0.08, 0.014
+19670828, 0.03, 0.10, 0.00, -0.19, -0.14, 0.014
+19670829, 0.25, -0.04, 0.25, 0.37, 0.01, 0.014
+19670830, 0.28, 0.50, -0.22, 0.39, -0.48, 0.014
+19670831, 0.65, 0.11, -0.08, 0.02, -0.32, 0.014
+19670901, 0.15, 0.42, 0.05, -0.09, -0.53, 0.016
+19670905, 0.53, -0.14, -0.03, 0.21, 0.16, 0.016
+19670906, 0.17, 0.17, -0.14, 0.03, -0.06, 0.016
+19670907, -0.06, 0.02, 0.05, -0.39, 0.07, 0.016
+19670908, 0.01, 0.42, -0.35, 0.01, 0.11, 0.016
+19670911, 0.15, 0.21, -0.32, 0.48, -0.11, 0.016
+19670912, 0.49, -0.06, -0.01, -0.08, -0.27, 0.016
+19670913, 0.97, -0.45, 0.30, -0.84, 0.17, 0.016
+19670914, 0.14, 0.05, 0.12, -0.35, 0.79, 0.016
+19670915, 0.06, 0.23, -0.12, 0.37, 0.34, 0.016
+19670918, 0.26, 0.16, 0.03, 0.15, 0.28, 0.016
+19670919, -0.44, -0.19, -0.20, -0.03, -0.07, 0.016
+19670920, 0.05, 0.67, -0.02, 0.17, -0.14, 0.016
+19670921, 0.56, -0.24, -0.35, 0.31, -0.58, 0.016
+19670922, 0.28, 0.38, -0.10, 0.14, -0.15, 0.016
+19670925, 0.49, -0.29, -0.49, 0.14, -0.10, 0.016
+19670926, -0.87, -0.13, 0.23, -0.14, 0.03, 0.016
+19670927, 0.05, 0.31, -0.40, 0.31, -0.25, 0.016
+19670928, 0.07, 0.25, -0.59, 0.03, -0.32, 0.016
+19670929, -0.01, 0.57, 0.00, -0.24, -0.26, 0.016
+19671002, -0.40, 0.16, 0.01, -0.36, 0.16, 0.018
+19671003, 0.32, 0.09, -0.51, 0.30, -0.18, 0.018
+19671004, -0.13, 0.28, -0.24, -0.04, -0.24, 0.018
+19671005, 0.20, 0.14, -0.29, 0.00, -0.56, 0.018
+19671006, 0.57, 0.18, -0.41, 0.27, -0.52, 0.018
+19671009, 0.20, 0.20, -0.02, -0.33, 0.01, 0.018
+19671010, -0.73, -0.17, 0.40, -0.24, 0.10, 0.018
+19671011, -0.45, -0.04, -0.08, 0.23, 0.07, 0.018
+19671012, -0.61, 0.05, -0.03, -0.12, -0.04, 0.018
+19671013, 0.22, 0.33, 0.09, -0.28, 0.24, 0.018
+19671016, -0.81, -0.10, -0.02, -0.09, 0.19, 0.018
+19671017, -0.19, 0.17, -0.21, 0.23, -0.14, 0.018
+19671018, 0.24, 0.09, -0.07, 0.16, -0.41, 0.018
+19671019, 0.09, -0.15, -0.58, 0.57, -0.27, 0.018
+19671020, -0.12, -0.36, -0.21, 0.24, -0.01, 0.018
+19671023, -0.48, -0.25, -0.29, -0.18, -0.17, 0.018
+19671024, -0.57, -0.32, -0.01, 0.13, -0.04, 0.018
+19671025, 0.14, -0.10, -0.35, 0.43, -0.34, 0.018
+19671026, 0.43, 0.26, -0.70, 0.36, -0.45, 0.018
+19671027, 0.02, 0.04, -0.04, -0.22, 0.00, 0.018
+19671030, -0.17, 0.16, -0.17, -0.01, -0.03, 0.018
+19671031, -0.90, -0.15, 0.23, -0.21, -0.01, 0.018
+19671101, -1.22, 0.21, -0.08, -0.50, -0.11, 0.018
+19671102, -0.49, -0.19, -0.09, -0.02, 0.41, 0.018
+19671103, -0.48, 0.53, -0.25, 0.03, -0.23, 0.018
+19671106, -0.31, 0.01, -0.24, 0.30, -0.36, 0.018
+19671108, -0.38, 0.13, 0.20, 0.02, 0.41, 0.018
+19671109, 0.41, -0.37, -0.09, 0.23, -0.12, 0.018
+19671110, 0.58, -0.10, 0.09, -0.02, 0.13, 0.018
+19671113, -0.31, -0.61, 0.28, -0.23, 0.24, 0.018
+19671114, -0.73, -0.88, 0.44, -0.34, 0.45, 0.018
+19671115, 0.41, -0.54, -0.24, 0.42, -0.58, 0.018
+19671116, 0.95, 0.17, -0.52, 0.24, -1.01, 0.018
+19671117, 0.35, 0.54, -0.17, 0.11, -0.50, 0.018
+19671120, -1.39, -0.98, -0.04, -0.30, 0.26, 0.018
+19671121, 1.71, 0.98, -0.56, 0.75, -1.16, 0.018
+19671122, 0.66, 0.46, -0.50, 0.10, 0.13, 0.018
+19671124, 0.21, -0.23, -0.14, -0.08, -0.16, 0.018
+19671127, 0.35, 0.24, -0.43, 0.32, -0.37, 0.018
+19671128, 0.50, 0.23, 0.13, 0.14, 0.07, 0.018
+19671129, 0.05, 0.29, 0.22, 0.03, 0.16, 0.018
+19671130, -0.45, 0.06, 0.25, 0.13, -0.01, 0.018
+19671201, 0.54, 0.51, -0.13, -0.11, -0.16, 0.017
+19671204, 0.64, 0.57, -0.08, 0.24, -0.60, 0.017
+19671205, 0.11, -0.19, -0.13, -0.25, 0.48, 0.017
+19671206, 0.36, 0.01, -0.16, 0.11, -0.43, 0.017
+19671207, -0.09, 0.12, 0.38, -0.07, -0.02, 0.017
+19671208, -0.09, 0.34, -0.30, 0.21, -0.26, 0.017
+19671211, -0.17, 0.71, -0.25, -0.10, -0.30, 0.017
+19671212, -0.01, 0.53, -0.36, 0.09, -0.40, 0.017
+19671213, 0.43, 0.44, -0.48, 0.32, -0.10, 0.017
+19671214, 0.16, 0.43, 0.23, -0.13, -0.04, 0.017
+19671215, -0.57, -0.21, 0.51, -0.26, 0.97, 0.017
+19671218, -0.29, 0.33, -0.08, -0.13, 0.70, 0.017
+19671219, -0.10, 0.29, -0.32, 0.15, -0.26, 0.017
+19671220, 0.57, 0.01, 0.02, 0.01, 0.12, 0.017
+19671221, 0.25, 0.21, 0.14, -0.20, 0.29, 0.017
+19671222, -0.12, 0.50, 0.34, -0.25, 0.66, 0.017
+19671226, 0.15, 0.46, 0.27, 0.02, 0.08, 0.017
+19671227, 0.67, 0.09, -0.22, 0.11, -0.41, 0.017
+19671228, -0.05, -0.06, 0.27, -0.25, -0.12, 0.017
+19671229, 0.64, 0.25, 0.02, 0.07, -0.32, 0.017
+19680102, -0.26, 0.47, 1.20, -0.86, 1.47, 0.018
+19680103, -0.56, -0.02, 0.84, -0.83, 1.17, 0.018
+19680104, -0.30, 0.04, 0.71, -1.12, 0.85, 0.018
+19680105, 0.64, 0.53, 0.42, -0.75, 0.75, 0.018
+19680108, 0.70, 0.11, 0.17, -0.43, 0.46, 0.018
+19680109, -0.15, 0.04, -0.06, 0.44, 0.12, 0.018
+19680110, 0.14, 0.36, 0.05, 0.11, -0.66, 0.018
+19680111, 0.26, 0.95, 0.26, -0.22, -0.20, 0.018
+19680112, 0.20, 0.73, -0.15, -0.13, 0.21, 0.018
+19680115, -0.15, 0.56, -0.07, 0.10, -0.22, 0.018
+19680116, -0.56, 0.59, 0.23, -0.10, 0.29, 0.018
+19680117, -0.10, 0.65, -0.08, -0.11, 0.32, 0.018
+19680118, -0.01, 0.66, 0.13, 0.15, -0.17, 0.018
+19680119, -0.34, 0.07, -0.16, 0.49, 0.16, 0.018
+19680122, -1.38, -0.41, 0.25, -0.06, 0.32, 0.018
+19680123, -0.51, -0.26, -0.30, 0.18, -0.17, 0.018
+19680124, -0.41, 0.30, 0.09, -0.07, 0.29, 0.018
+19680125, 0.05, -0.32, -0.02, -0.23, 0.02, 0.018
+19680126, 0.21, 0.57, 0.02, -0.27, -0.04, 0.018
+19680129, -0.16, -0.08, 0.03, -0.03, 0.50, 0.018
+19680130, -0.56, -0.55, 0.75, -0.57, 0.45, 0.018
+19680131, -0.83, -0.32, 0.48, -0.58, 0.73, 0.018
+19680201, 0.28, -0.42, 0.29, 0.07, 0.06, 0.020
+19680202, -0.34, -0.01, 0.36, 0.04, 0.30, 0.020
+19680205, -0.47, -0.42, 0.28, 0.16, 0.26, 0.020
+19680206, 0.07, -0.06, 0.09, -0.17, -0.13, 0.020
+19680207, 0.15, -0.05, 0.04, -0.05, 0.17, 0.020
+19680208, -1.42, -1.00, 0.07, -0.29, 0.70, 0.020
+19680209, -1.19, -0.69, 0.17, 0.03, 0.37, 0.020
+19680213, -1.05, -0.87, 0.28, -0.27, 0.08, 0.020
+19680214, 1.25, 0.24, -0.77, 0.46, -0.53, 0.020
+19680215, 0.24, 0.61, 0.24, -0.33, -0.02, 0.020
+19680216, -0.39, 0.16, 0.34, -0.18, 0.50, 0.020
+19680219, 0.35, 0.14, -0.36, 0.34, -0.20, 0.020
+19680220, 0.62, 0.37, -0.23, 0.35, -0.24, 0.020
+19680221, 0.42, 0.11, -0.47, 0.22, -0.35, 0.020
+19680223, -0.48, -0.17, 0.24, 0.02, 0.46, 0.020
+19680226, -0.79, -0.58, 0.23, -0.25, 0.33, 0.020
+19680227, 0.40, 0.00, -0.11, 0.03, -0.49, 0.020
+19680228, -0.54, 0.04, 0.11, -0.15, 0.66, 0.020
+19680229, -0.88, -0.42, 0.31, -0.09, 0.61, 0.020
+19680301, -0.45, -0.69, 0.21, -0.19, 0.29, 0.018
+19680304, -1.55, -1.07, 0.96, -0.32, 1.11, 0.018
+19680305, -0.42, -1.05, -0.18, 0.27, -0.43, 0.018
+19680306, 1.80, 0.60, -0.25, 0.18, -0.62, 0.018
+19680307, -0.16, 0.50, 0.01, -0.10, -0.02, 0.018
+19680308, -0.10, -0.12, 0.04, -0.58, 0.21, 0.018
+19680311, 1.35, 0.53, -0.29, 0.79, -0.87, 0.018
+19680312, 0.18, 0.50, -0.21, 0.27, -0.35, 0.018
+19680313, -0.18, 0.41, 0.19, -0.28, 0.26, 0.018
+19680314, -2.09, -0.88, 0.19, -0.03, 0.72, 0.018
+19680315, 0.77, -0.42, -0.37, 0.09, -0.60, 0.018
+19680318, 0.65, 0.57, -0.41, 0.61, -0.67, 0.018
+19680319, -0.64, 0.15, 0.28, -0.34, 0.24, 0.018
+19680320, -0.08, -0.11, -0.16, 0.16, -0.03, 0.018
+19680321, -0.81, -0.26, 0.23, -0.13, 0.36, 0.018
+19680322, 0.01, -0.39, 0.17, 0.08, 0.14, 0.018
+19680325, -0.13, -0.16, 0.02, -0.06, -0.04, 0.018
+19680326, 0.66, 0.07, -0.44, 0.23, -0.50, 0.018
+19680327, 0.85, 0.20, -0.50, 0.12, -0.47, 0.018
+19680328, -0.08, 0.11, 0.12, 0.10, 0.23, 0.018
+19680329, 0.70, 0.07, -0.32, 0.34, -0.20, 0.018
+19680401, 2.38, -0.63, -0.79, 0.63, -0.48, 0.021
+19680402, 0.20, 0.14, 0.08, 0.46, 0.08, 0.021
+19680403, 0.87, -0.16, -0.21, 0.48, -0.03, 0.021
+19680404, 0.46, 0.20, 0.14, -0.01, -0.39, 0.021
+19680405, -0.54, 0.39, 0.09, -0.10, -0.21, 0.021
+19680408, 1.73, -0.07, -0.10, 0.06, -0.45, 0.021
+19680410, 0.73, 0.01, -0.14, -0.05, -0.03, 0.021
+19680411, 0.95, 0.31, 0.26, 0.18, -0.16, 0.021
+19680415, 0.20, 0.62, -0.04, -0.06, 0.11, 0.021
+19680416, 0.15, 0.83, 0.05, 0.33, -0.03, 0.021
+19680417, 0.30, 0.72, 0.41, -0.13, 0.00, 0.021
+19680418, 0.31, 0.52, 0.50, -0.33, 0.05, 0.021
+19680419, -1.23, 0.10, -0.45, 0.35, -0.28, 0.021
+19680422, -0.49, 0.38, -0.26, 0.29, -0.27, 0.021
+19680423, 1.28, 0.48, -0.51, 0.41, -0.50, 0.021
+19680424, 0.27, 0.52, -0.02, 0.08, -0.22, 0.021
+19680425, 0.34, 0.35, -0.06, -0.05, 0.11, 0.021
+19680426, 0.34, 0.33, -0.13, 0.21, -0.12, 0.021
+19680429, 0.30, 0.21, 0.06, -0.16, -0.18, 0.021
+19680430, 0.14, 0.35, 0.25, -0.01, -0.32, 0.021
+19680501, 0.32, 0.12, 0.21, 0.17, -0.39, 0.020
+19680502, 0.62, -0.05, -0.14, 0.24, -0.27, 0.020
+19680503, 0.08, -0.07, -0.38, 0.36, 0.37, 0.020
+19680506, -0.18, 0.24, 0.24, -0.10, 0.24, 0.020
+19680507, 0.57, 0.37, 0.35, -0.35, 0.27, 0.020
+19680508, 0.06, 0.42, -0.18, 0.18, -0.16, 0.020
+19680509, -0.52, -0.10, -0.08, -0.17, 0.15, 0.020
+19680510, 0.34, 0.82, 0.10, -0.12, 0.02, 0.020
+19680513, -0.17, 0.61, -0.06, -0.11, 0.18, 0.020
+19680514, -0.07, 0.15, 0.19, -0.23, 0.04, 0.020
+19680515, -0.06, 0.30, 0.03, 0.20, 0.00, 0.020
+19680516, -0.44, 0.15, 0.41, -0.21, 0.08, 0.020
+19680517, -0.59, 0.44, 0.38, -0.30, 0.34, 0.020
+19680520, -0.47, 0.11, 0.08, -0.14, 0.17, 0.020
+19680521, 0.58, 0.54, -0.07, 0.24, -0.59, 0.020
+19680522, 0.32, 0.73, 0.27, -0.23, -0.40, 0.020
+19680523, -0.13, 0.40, -0.23, 0.10, -0.29, 0.020
+19680524, 0.31, 0.34, 0.32, 0.08, -0.18, 0.020
+19680527, -0.04, 0.76, -0.30, 0.34, -0.40, 0.020
+19680528, 0.62, 0.22, -0.47, 0.02, -0.14, 0.020
+19680529, 0.32, 0.14, -0.02, 0.35, -0.45, 0.020
+19680531, 0.76, 0.06, 0.20, 0.10, -0.40, 0.020
+19680603, 1.25, -0.20, -0.33, 0.28, -0.29, 0.025
+19680604, 0.53, 0.42, 0.32, 0.27, -0.08, 0.025
+19680605, -0.47, -0.10, 0.20, 0.26, 0.32, 0.025
+19680606, 0.90, 0.59, 0.01, -0.09, -0.61, 0.025
+19680607, 0.67, 0.37, -0.17, 0.14, -0.10, 0.025
+19680610, 0.10, -0.11, -0.12, 0.10, -0.13, 0.025
+19680611, 0.23, 0.24, 0.28, -0.03, 0.09, 0.025
+19680613, -0.44, -0.20, -0.23, -0.02, 0.70, 0.025
+19680614, -0.16, -0.17, -0.11, -0.63, 0.42, 0.025
+19680617, -1.12, -0.52, -0.02, -0.57, 0.88, 0.025
+19680618, -0.12, 0.06, -0.06, -0.27, 0.15, 0.025
+19680620, 0.51, -0.29, -0.10, 0.16, -0.31, 0.025
+19680621, 0.14, -0.12, 0.26, -0.41, 0.16, 0.025
+19680624, -0.39, -0.26, 0.32, -0.54, 0.70, 0.025
+19680625, -0.44, -0.41, -0.03, 0.08, -0.11, 0.025
+19680627, -0.17, 0.00, -0.04, 0.14, 0.24, 0.025
+19680628, -0.34, 0.43, 0.43, -0.16, 0.55, 0.025
+19680701, -0.23, 0.14, 0.60, 0.03, 0.17, 0.028
+19680702, 0.41, 0.26, -0.41, -0.21, -0.29, 0.028
+19680703, 1.25, 0.49, -0.53, 0.31, -0.30, 0.028
+19680708, 1.06, 0.26, -0.36, -0.10, -0.36, 0.028
+19680709, 0.27, 0.00, 0.27, -0.18, 0.39, 0.028
+19680711, 0.10, 0.02, 0.37, -0.46, 1.07, 0.028
+19680712, -0.06, 0.18, 0.32, -0.21, 0.19, 0.028
+19680715, -0.17, 0.16, 0.35, -0.07, 0.30, 0.028
+19680716, -0.54, 0.13, 0.40, -0.39, 0.50, 0.028
+19680718, -0.35, -0.13, 0.27, -0.04, 0.42, 0.028
+19680719, -0.94, -0.21, 1.09, -0.61, 0.87, 0.028
+19680722, -1.43, -0.87, 1.42, -0.20, 0.58, 0.028
+19680723, -0.25, -0.35, -0.09, 0.02, -0.47, 0.028
+19680725, -1.30, -0.14, 0.88, -0.26, 0.49, 0.028
+19680726, 0.27, -0.53, 0.22, -0.45, 0.47, 0.028
+19680729, -0.88, -0.63, 0.71, -0.11, -0.11, 0.028
+19680730, 0.11, -0.12, -0.10, -0.15, -0.26, 0.028
+19680801, -0.54, -0.01, -0.05, 0.39, 0.35, 0.023
+19680802, -0.56, 0.03, 0.04, -0.02, -0.16, 0.023
+19680805, 0.39, 0.46, -0.33, 0.13, -0.38, 0.023
+19680806, 0.45, 0.38, -0.10, -0.19, -0.06, 0.023
+19680808, -0.25, 0.01, 0.47, 0.03, 0.37, 0.023
+19680809, 0.03, -0.02, 0.19, -0.10, -0.23, 0.023
+19680812, 0.99, 0.33, -0.48, 0.14, -0.34, 0.023
+19680813, 0.45, 0.00, -0.02, 0.08, -0.19, 0.023
+19680815, -0.39, 0.48, 0.30, -0.10, -0.08, 0.023
+19680816, 0.59, 0.05, 0.03, -0.20, 0.11, 0.023
+19680819, 0.34, 0.27, 0.09, -0.21, 0.01, 0.023
+19680820, 0.00, 0.13, -0.13, -0.14, 0.21, 0.023
+19680822, -0.32, -0.08, -0.11, 0.14, 0.34, 0.023
+19680823, 0.03, 0.41, 0.32, -0.31, 0.25, 0.023
+19680826, 0.23, -0.24, 0.28, -0.10, 0.09, 0.023
+19680827, -0.19, 0.10, 0.17, -0.23, -0.02, 0.023
+19680829, -0.12, -0.15, 0.13, 0.25, 0.07, 0.023
+19680830, 0.21, 0.11, 0.18, -0.19, 0.02, 0.023
+19680903, 0.37, -0.17, 0.27, 0.04, -0.18, 0.025
+19680904, 0.61, -0.02, 0.13, 0.13, 0.02, 0.025
+19680905, 0.70, -0.14, -0.27, -0.40, 0.38, 0.025
+19680906, 0.42, 0.19, -0.45, -0.02, 0.11, 0.025
+19680909, 0.13, 0.42, 0.04, -0.07, -0.01, 0.025
+19680910, -0.50, 0.04, 0.44, -0.17, -0.02, 0.025
+19680912, -0.20, 0.39, 0.08, 0.30, 0.48, 0.025
+19680913, 0.37, 0.34, -0.47, 0.14, -0.25, 0.025
+19680916, 0.38, 0.02, 0.05, -0.01, 0.26, 0.025
+19680917, 0.24, -0.08, -0.08, -0.26, -0.09, 0.025
+19680919, 0.16, 0.24, -0.12, -0.04, 0.00, 0.025
+19680920, 0.11, 0.05, 0.57, -0.40, 0.12, 0.025
+19680923, 0.56, -0.08, -0.21, -0.01, -0.14, 0.025
+19680924, 0.37, 0.39, -0.43, 0.06, -0.10, 0.025
+19680926, -0.19, 0.16, 0.19, -0.40, -0.05, 0.025
+19680927, 0.08, 0.63, 0.25, -0.53, 0.02, 0.025
+19680930, 0.42, 0.26, 0.28, -0.27, 0.34, 0.025
+19681001, 0.16, 0.40, 0.26, -0.07, 0.14, 0.024
+19681003, 0.34, -0.09, 0.47, 0.01, 0.23, 0.024
+19681004, 0.26, -0.44, 0.17, 0.05, 0.13, 0.024
+19681007, -0.03, -0.12, -0.07, 0.23, 0.07, 0.024
+19681008, -0.05, -0.34, 0.19, -0.02, -0.01, 0.024
+19681010, -0.42, 0.13, -0.09, -0.06, 0.11, 0.024
+19681011, 0.00, 0.44, 0.05, -0.27, 0.01, 0.024
+19681014, 0.16, 0.11, 0.05, 0.06, 0.10, 0.024
+19681015, 0.19, 0.14, 0.22, -0.19, 0.27, 0.024
+19681017, 0.49, -0.19, -0.16, 0.05, 0.45, 0.024
+19681018, 0.69, -0.30, -0.04, 0.00, -0.01, 0.024
+19681021, 0.14, -0.08, 0.28, -0.09, 0.16, 0.024
+19681022, -0.34, 0.16, 0.21, -0.04, 0.03, 0.024
+19681024, -0.63, 0.46, 0.32, -0.18, -0.04, 0.024
+19681025, 0.31, 0.03, 0.35, -0.54, 0.13, 0.024
+19681028, -0.33, -0.14, 0.13, -0.21, 0.25, 0.024
+19681029, -0.57, -0.33, 0.12, 0.04, 0.42, 0.024
+19681031, 0.05, -0.27, 0.38, -0.11, 0.39, 0.024
+19681101, -0.37, -0.16, 0.04, 0.27, -0.08, 0.025
+19681104, 0.01, -0.24, -0.42, 0.49, 0.01, 0.025
+19681106, 0.18, 0.11, 0.19, -0.04, 0.31, 0.025
+19681107, 0.27, -0.28, -0.42, 0.31, -0.18, 0.025
+19681108, 0.52, 0.31, 0.03, -0.23, 0.14, 0.025
+19681112, 0.74, 0.25, -0.27, 0.17, -0.50, 0.025
+19681113, 0.56, 0.35, -0.35, 0.28, -0.59, 0.025
+19681114, 0.10, 0.46, -0.18, 0.08, -0.23, 0.025
+19681115, 0.56, 0.27, 0.14, 0.22, -0.13, 0.025
+19681118, 0.16, -0.01, 0.23, -0.08, 0.20, 0.025
+19681119, 0.29, 0.15, 0.11, -0.19, -0.35, 0.025
+19681121, -0.05, 0.32, 0.22, -0.08, -0.43, 0.025
+19681122, 0.45, 0.27, -0.01, -0.21, -0.10, 0.025
+19681125, 0.26, 0.18, -0.05, -0.12, 0.01, 0.025
+19681126, 0.66, -0.07, 0.05, -0.02, -0.35, 0.025
+19681127, 0.42, 0.32, -0.28, -0.03, -0.37, 0.025
+19681129, 0.56, 0.05, 0.12, -0.43, 0.22, 0.025
+19681202, -0.19, 0.41, -0.40, -0.03, 0.57, 0.024
+19681203, -0.10, 0.10, -0.16, -0.16, -0.11, 0.024
+19681205, -0.28, 0.44, 0.15, -0.04, -0.07, 0.024
+19681206, 0.26, 0.30, -0.01, 0.02, 0.35, 0.024
+19681209, -0.18, 0.61, -0.18, -0.27, 0.06, 0.024
+19681210, -0.19, 0.30, 0.09, -0.26, -0.09, 0.024
+19681212, -0.05, 0.29, 0.32, -0.27, 0.17, 0.024
+19681213, 0.28, 0.18, 0.25, -0.57, 0.40, 0.024
+19681216, -0.40, 0.12, 0.06, -0.14, 0.00, 0.024
+19681217, -0.46, -0.17, -0.23, 0.17, -0.06, 0.024
+19681219, 0.23, -0.04, -0.22, 0.30, -0.46, 0.024
+19681220, -0.49, 0.60, -0.04, -0.20, 0.23, 0.024
+19681223, -1.05, 0.26, 0.25, -0.06, 0.29, 0.024
+19681224, -0.13, 0.12, -0.11, -0.07, -0.15, 0.024
+19681226, 0.12, 0.10, 0.13, -0.21, 0.00, 0.024
+19681227, -0.39, 0.18, 0.40, -0.16, 0.32, 0.024
+19681230, -1.04, -0.51, 0.01, 0.24, 0.31, 0.024
+19681231, 0.08, 0.40, -0.25, -0.09, -0.02, 0.024
+19690102, 0.08, 0.30, -0.04, -0.04, 0.16, 0.024
+19690103, -0.01, -0.04, -0.02, 0.23, 0.27, 0.024
+19690106, -1.51, -0.34, 0.46, 0.08, 0.25, 0.024
+19690107, -1.37, -0.98, 0.01, 0.29, -0.27, 0.024
+19690108, -0.51, -0.38, -0.07, 0.02, -0.29, 0.024
+19690109, 0.40, 0.13, 0.02, 0.21, -0.16, 0.024
+19690110, -0.30, -0.02, 0.45, -0.33, 0.29, 0.024
+19690113, -0.73, -0.93, 0.47, -0.10, 0.58, 0.024
+19690114, 0.73, 0.01, -0.23, -0.05, -0.41, 0.024
+19690115, 0.60, 0.58, -0.03, -0.13, 0.05, 0.024
+19690116, 0.55, 0.36, 0.06, -0.18, -0.12, 0.024
+19690117, -0.10, 0.33, -0.09, 0.13, 0.20, 0.024
+19690120, -0.20, 0.41, 0.11, -0.39, 0.09, 0.024
+19690121, -0.13, 0.11, -0.02, -0.01, -0.19, 0.024
+19690122, 0.39, 0.30, -0.21, -0.46, -0.08, 0.024
+19690123, 0.52, 0.39, -0.05, -0.40, 0.32, 0.024
+19690124, -0.06, 0.02, 0.01, -0.07, 0.09, 0.024
+19690127, -0.01, -0.03, 0.19, 0.12, 0.11, 0.024
+19690128, 0.02, 0.04, 0.34, -0.22, -0.03, 0.024
+19690129, 0.07, -0.14, 0.64, -0.29, 0.09, 0.024
+19690130, -0.03, -0.26, 0.07, -0.07, 0.02, 0.024
+19690131, 0.37, -0.32, -0.35, 0.08, 0.42, 0.024
+19690203, -0.09, -0.10, 0.43, -0.35, 0.46, 0.026
+19690204, 0.00, 0.02, 0.29, -0.06, 0.01, 0.026
+19690205, 0.14, -0.33, 0.16, 0.23, -0.03, 0.026
+19690206, 0.32, -0.40, -0.15, 0.35, -0.14, 0.026
+19690207, 0.09, 0.08, -0.16, 0.28, -0.03, 0.026
+19690211, 0.08, 0.15, -0.11, 0.12, -0.37, 0.026
+19690212, -0.05, -0.02, -0.39, 0.08, 0.05, 0.026
+19690213, 0.03, -0.22, -0.22, 0.35, 0.00, 0.026
+19690214, -0.11, -0.05, 0.01, -0.03, 0.03, 0.026
+19690217, -1.28, -0.48, 0.63, 0.13, -0.01, 0.026
+19690218, -1.20, -0.62, -0.04, 0.26, 0.18, 0.026
+19690219, -0.81, -0.18, 0.30, 0.10, 0.16, 0.026
+19690220, -0.96, -0.50, 0.06, 0.39, 0.08, 0.026
+19690224, -1.27, -0.78, 0.32, 0.31, 0.05, 0.026
+19690225, -0.75, -0.49, -0.19, 0.12, 0.04, 0.026
+19690226, 0.41, -0.16, -0.33, -0.04, -0.09, 0.026
+19690227, -0.47, -0.23, 0.23, 0.11, 0.13, 0.026
+19690228, -0.05, -0.07, 0.06, -0.01, 0.17, 0.026
+19690303, 0.17, -0.36, -0.18, 0.18, 0.09, 0.023
+19690304, 0.99, 0.06, 0.14, -0.23, 0.20, 0.023
+19690305, 0.33, -0.04, -0.24, -0.17, 0.17, 0.023
+19690306, -1.18, -0.24, 0.63, 0.04, -0.02, 0.023
+19690307, -0.18, -0.76, 0.40, -0.37, 0.20, 0.023
+19690310, 0.35, 0.08, -0.44, 0.28, 0.04, 0.023
+19690311, 0.40, 0.21, 0.09, -0.13, 0.12, 0.023
+19690312, -0.29, -0.02, 0.22, 0.06, 0.31, 0.023
+19690313, -0.71, -0.18, 0.28, -0.36, 0.26, 0.023
+19690314, -0.51, -0.36, 0.21, -0.19, 0.01, 0.023
+19690317, 0.21, -0.29, -0.59, 0.36, -0.38, 0.023
+19690318, 0.29, 0.38, -0.11, -0.14, -0.17, 0.023
+19690319, 0.71, 0.04, -0.25, -0.17, -0.49, 0.023
+19690320, 0.62, 0.36, -0.12, -0.02, -0.23, 0.023
+19690321, -0.20, 0.34, 0.23, -0.04, 0.06, 0.023
+19690324, -0.16, 0.09, -0.01, 0.07, -0.08, 0.023
+19690325, 0.12, -0.02, -0.24, -0.03, 0.10, 0.023
+19690326, 0.64, -0.20, 0.07, -0.23, -0.03, 0.023
+19690327, 0.68, 0.13, -0.15, -0.14, -0.17, 0.023
+19690328, 0.39, 0.33, -0.30, -0.01, -0.18, 0.023
+19690401, -0.14, 0.12, 0.44, -0.04, 0.14, 0.025
+19690402, -0.71, -0.22, 0.31, 0.04, 0.05, 0.025
+19690403, -0.09, -0.02, 0.16, 0.16, 0.18, 0.025
+19690407, -0.88, -0.30, -0.17, 0.14, 0.01, 0.025
+19690408, 0.21, -0.05, 0.37, -0.38, 0.04, 0.025
+19690409, 0.79, -0.17, -0.43, -0.11, -0.06, 0.025
+19690410, 0.45, -0.05, 0.10, -0.08, 0.14, 0.025
+19690411, 0.09, 0.11, 0.08, -0.22, 0.13, 0.025
+19690414, -0.14, -0.14, 0.03, -0.01, 0.01, 0.025
+19690415, -0.10, -0.15, -0.17, 0.28, -0.10, 0.025
+19690416, -0.90, 0.06, 0.36, 0.27, 0.06, 0.025
+19690417, 0.11, -0.03, 0.08, -0.04, 0.27, 0.025
+19690418, 0.38, -0.23, 0.22, -0.10, -0.11, 0.025
+19690421, -0.77, -0.31, 0.23, 0.23, 0.27, 0.025
+19690422, 0.16, -0.18, -0.31, 0.18, -0.10, 0.025
+19690423, 0.10, 0.31, 0.00, 0.00, -0.16, 0.025
+19690424, 0.42, -0.04, -0.04, 0.03, -0.23, 0.025
+19690425, 0.45, 0.04, -0.08, -0.13, 0.01, 0.025
+19690428, 0.34, -0.08, -0.14, -0.03, -0.27, 0.025
+19690429, 0.83, 0.25, -0.50, 0.34, -0.18, 0.025
+19690430, 0.86, 0.33, -0.50, -0.27, -0.07, 0.025
+19690501, -0.10, 0.32, -0.01, -0.03, 0.43, 0.023
+19690502, 0.46, -0.06, 0.09, -0.10, -0.10, 0.023
+19690505, 0.45, 0.24, -0.27, -0.09, 0.01, 0.023
+19690506, 0.45, -0.03, -0.13, -0.22, -0.18, 0.023
+19690507, -0.21, -0.05, 0.33, -0.01, 0.02, 0.023
+19690508, 0.34, -0.14, -0.21, 0.03, -0.22, 0.023
+19690509, 0.09, -0.22, 0.18, -0.29, 0.37, 0.023
+19690512, -0.19, -0.21, 0.07, -0.01, 0.33, 0.023
+19690513, 0.40, 0.00, -0.18, -0.09, 0.00, 0.023
+19690514, 0.68, -0.35, 0.09, 0.05, 0.02, 0.023
+19690515, -0.30, 0.09, 0.21, -0.14, 0.07, 0.023
+19690516, 0.02, -0.23, -0.17, 0.14, -0.13, 0.023
+19690519, -0.87, 0.22, 0.26, -0.08, 0.18, 0.023
+19690520, -0.84, 0.18, 0.22, 0.12, 0.04, 0.023
+19690521, 0.42, 0.06, -0.17, -0.17, 0.10, 0.023
+19690522, 0.19, -0.16, 0.31, -0.24, 0.04, 0.023
+19690523, -0.02, -0.09, -0.10, 0.35, -0.04, 0.023
+19690526, -0.20, 0.00, -0.05, 0.06, -0.01, 0.023
+19690527, -0.79, -0.03, 0.19, 0.26, 0.03, 0.023
+19690528, -0.26, 0.18, -0.32, -0.14, 0.02, 0.023
+19690529, 0.23, 0.10, 0.11, -0.23, 0.34, 0.023
+19690602, -0.54, 0.09, -0.03, 0.23, -0.32, 0.024
+19690603, -0.34, -0.27, 0.11, 0.00, 0.10, 0.024
+19690604, -0.05, -0.04, -0.05, 0.26, -0.15, 0.024
+19690605, 0.08, -0.13, -0.16, 0.24, -0.08, 0.024
+19690606, -0.69, -0.13, -0.19, 0.39, 0.20, 0.024
+19690609, -0.98, -0.17, -0.26, 0.25, 0.07, 0.024
+19690610, -0.79, -0.06, -0.06, 0.02, 0.04, 0.024
+19690611, -1.00, -0.38, 0.22, 0.02, 0.25, 0.024
+19690612, -1.42, -0.59, 0.29, 0.20, -0.11, 0.024
+19690613, 0.31, -0.27, -0.15, -0.17, -0.10, 0.024
+19690616, -0.40, -0.42, 0.06, 0.57, -0.10, 0.024
+19690617, -0.52, -0.71, -0.23, 0.37, 0.03, 0.024
+19690618, -0.22, -0.12, 0.16, 0.30, -0.08, 0.024
+19690619, -0.87, -0.88, 0.09, 0.23, 0.29, 0.024
+19690620, -0.74, -0.66, 0.53, 0.14, 0.12, 0.024
+19690623, -0.65, -0.97, -0.22, 0.18, -0.23, 0.024
+19690624, 1.09, -0.06, -0.53, 0.20, -0.32, 0.024
+19690625, -0.41, -0.19, 0.26, 0.47, 0.02, 0.024
+19690626, 0.17, -0.33, -0.62, 0.51, -0.82, 0.024
+19690627, 0.07, 0.03, -0.14, 0.04, -0.20, 0.024
+19690630, 0.46, 0.25, -0.17, 0.07, -0.20, 0.024
+19690701, 0.46, 0.36, -0.59, -0.41, -0.37, 0.025
+19690702, 0.86, 0.26, -0.46, 0.12, -0.43, 0.025
+19690703, 0.74, 0.38, -0.35, -0.08, -0.28, 0.025
+19690707, -0.68, -0.04, 0.55, 0.10, 0.72, 0.025
+19690708, -1.38, 0.13, 0.46, 0.27, 0.75, 0.025
+19690709, -0.80, -0.25, 0.10, -0.17, 0.25, 0.025
+19690710, -1.61, -0.39, 0.44, 0.18, 0.55, 0.025
+19690711, 0.29, -0.64, 0.05, 0.30, 0.01, 0.025
+19690714, -1.37, -0.24, 0.69, -0.25, 0.66, 0.025
+19690715, -0.43, -0.58, 0.13, 0.34, -0.03, 0.025
+19690716, 1.07, 0.09, -0.60, 0.03, -0.46, 0.025
+19690717, 0.53, -0.18, -0.07, 0.10, 0.21, 0.025
+19690718, -0.78, 0.25, 0.34, -0.09, 0.26, 0.025
+19690722, -1.57, 0.13, 0.63, 0.43, 0.61, 0.025
+19690723, -0.53, -0.69, -0.42, 0.18, -0.36, 0.025
+19690724, -0.42, -0.13, 0.38, -0.17, 0.17, 0.025
+19690725, -1.03, -0.29, 0.61, 0.08, 0.84, 0.025
+19690728, -2.26, -1.61, 1.47, 0.62, 0.77, 0.025
+19690729, -0.93, -0.79, 0.41, 0.05, 0.02, 0.025
+19690730, 0.52, 0.16, -1.09, -0.03, -0.93, 0.025
+19690731, 2.22, 0.49, -1.26, -0.16, -0.94, 0.025
+19690801, 1.97, 0.65, -0.43, -0.25, -0.66, 0.024
+19690804, -0.53, -0.04, 0.31, 0.04, 0.07, 0.024
+19690805, 0.42, -0.46, -0.41, 0.23, -0.55, 0.024
+19690806, 0.65, 0.25, -0.57, 0.31, -0.37, 0.024
+19690807, 0.09, -0.03, 0.03, 0.06, 0.06, 0.024
+19690808, -0.03, -0.08, 0.19, 0.14, 0.24, 0.024
+19690811, -0.59, 0.02, 0.12, 0.19, 0.10, 0.024
+19690812, -0.82, -0.20, 0.27, 0.29, 0.11, 0.024
+19690813, 0.03, -0.28, -0.51, 0.08, -0.59, 0.024
+19690814, 0.75, 0.32, -0.99, 0.17, -0.75, 0.024
+19690815, 0.81, -0.17, -0.38, 0.18, -0.18, 0.024
+19690818, 0.72, 0.38, -0.60, 0.06, -0.41, 0.024
+19690819, 0.54, 0.29, -0.43, 0.02, -0.20, 0.024
+19690820, -0.02, -0.05, 0.18, -0.05, -0.09, 0.024
+19690821, 0.25, 0.02, -0.27, 0.00, -0.23, 0.024
+19690822, 0.65, -0.02, -0.25, -0.01, -0.18, 0.024
+19690825, -0.93, 0.25, 0.62, 0.03, 0.60, 0.024
+19690826, -0.74, -0.15, 0.15, 0.08, -0.01, 0.024
+19690827, 0.27, 0.06, -0.39, 0.02, -0.45, 0.024
+19690828, 0.41, -0.23, -0.38, 0.16, -0.32, 0.024
+19690829, 0.74, 0.01, 0.00, -0.54, -0.12, 0.024
+19690902, -0.11, -0.07, 0.42, -0.25, 0.17, 0.030
+19690903, -0.71, -0.20, 0.41, 0.14, 0.65, 0.030
+19690904, -0.87, -0.01, -0.15, 0.27, 0.08, 0.030
+19690905, -0.65, -0.04, 0.01, 0.11, 0.12, 0.030
+19690908, -1.07, -0.14, 0.38, 0.14, 0.53, 0.030
+19690909, 0.74, -0.24, -0.46, 0.24, -0.52, 0.030
+19690910, 1.64, -0.17, -0.77, -0.23, -0.73, 0.030
+19690911, -0.70, 0.51, 0.13, 0.46, 0.36, 0.030
+19690912, 0.05, -0.12, -0.13, 0.00, 0.00, 0.030
+19690915, 0.62, 0.30, -0.67, 0.09, -0.47, 0.030
+19690916, 0.12, 0.21, -0.66, 0.53, -0.30, 0.030
+19690917, -0.31, 0.12, -0.44, 0.55, -0.07, 0.030
+19690918, 0.28, 0.21, -0.55, 0.49, -0.11, 0.030
+19690919, 0.35, 0.36, -0.94, 0.14, -0.59, 0.030
+19690922, 0.41, -0.09, -0.67, 0.34, -0.62, 0.030
+19690923, -0.01, 0.25, 0.10, 0.22, -0.13, 0.030
+19690924, -0.19, -0.06, 0.13, 0.16, 0.12, 0.030
+19690925, -0.75, 0.19, 0.66, -0.26, 0.86, 0.030
+19690926, -0.70, 0.16, 0.18, -0.02, 0.18, 0.030
+19690929, -0.73, 0.07, 0.09, 0.09, -0.06, 0.030
+19690930, -0.32, 0.12, -0.38, 0.28, -0.37, 0.030
+19691001, -0.63, 0.12, 0.23, -0.07, 0.15, 0.026
+19691002, 0.86, -0.04, -0.76, -0.02, -0.65, 0.026
+19691003, -0.08, -0.22, 0.18, 0.09, -0.01, 0.026
+19691006, 0.17, -0.04, -0.49, -0.07, -0.79, 0.026
+19691007, -0.23, 0.04, 0.06, 0.32, 0.20, 0.026
+19691008, -0.53, -0.08, 0.11, 0.28, 0.18, 0.026
+19691009, 0.33, -0.27, -0.49, 0.15, -0.32, 0.026
+19691010, 0.65, 0.29, -0.65, -0.10, -0.44, 0.026
+19691013, 1.25, 0.83, -0.72, -0.28, -0.67, 0.026
+19691014, 1.28, 0.15, 0.08, 0.18, 0.06, 0.026
+19691015, 0.04, 0.55, 0.20, -0.07, 0.48, 0.026
+19691016, 0.69, 0.26, -0.08, -0.16, 0.25, 0.026
+19691017, -0.09, 0.48, -0.12, 0.05, 0.14, 0.026
+19691020, 0.30, 0.46, 0.02, -0.01, -0.13, 0.026
+19691021, 0.79, 0.44, -0.22, -0.07, -0.14, 0.026
+19691022, 0.61, 0.13, 0.21, 0.05, 0.43, 0.026
+19691023, -0.33, 0.06, 0.08, -0.10, 0.02, 0.026
+19691024, 0.69, 0.00, -0.88, 0.10, -0.57, 0.026
+19691027, -0.10, 0.40, -0.12, -0.10, -0.37, 0.026
+19691028, -0.31, -0.13, 0.17, 0.01, 0.27, 0.026
+19691029, -0.90, 0.02, 0.52, -0.04, 0.53, 0.026
+19691030, 0.17, 0.14, -0.28, -0.20, -0.39, 0.026
+19691031, 0.34, 0.04, -0.03, 0.10, -0.14, 0.026
+19691103, -0.07, -0.23, 0.25, -0.01, 0.29, 0.027
+19691104, 0.07, 0.22, -0.49, -0.10, -0.38, 0.027
+19691105, 0.46, -0.05, -0.39, 0.12, 0.20, 0.027
+19691106, 0.14, -0.12, -0.18, 0.20, 0.07, 0.027
+19691107, 0.65, -0.18, -0.06, 0.14, 0.23, 0.027
+19691110, 0.06, -0.22, 0.05, 0.06, -0.06, 0.027
+19691111, -0.37, -0.03, 0.29, -0.05, 0.30, 0.027
+19691112, -0.17, 0.10, -0.16, -0.03, -0.01, 0.027
+19691113, -0.59, -0.38, 0.35, 0.37, 0.24, 0.027
+19691114, -0.43, -0.15, 0.13, -0.05, 0.25, 0.027
+19691117, -0.79, -0.27, 0.15, 0.29, -0.09, 0.027
+19691118, -0.09, -0.45, -0.07, 0.05, -0.04, 0.027
+19691119, -0.55, -0.27, 0.55, -0.11, 0.51, 0.027
+19691120, -1.12, -0.55, 0.37, 0.05, 0.49, 0.027
+19691121, -0.69, -0.17, 0.35, 0.18, 0.42, 0.027
+19691124, -1.08, -0.35, -0.10, 0.26, 0.08, 0.027
+19691125, -0.25, 0.12, -0.54, 0.04, -0.64, 0.027
+19691126, 0.36, 0.21, -0.95, 0.08, -0.82, 0.027
+19691128, 0.64, 0.32, -0.81, -0.08, -0.77, 0.027
+19691201, -0.76, -0.46, 0.23, 0.63, 0.13, 0.029
+19691202, -0.68, -0.07, -0.25, 0.42, 0.14, 0.029
+19691203, -1.23, -0.57, -0.02, 0.39, 0.21, 0.029
+19691204, 0.40, 0.03, -0.95, -0.06, -0.84, 0.029
+19691205, -0.38, -0.49, 0.44, 0.13, 0.57, 0.029
+19691208, -1.27, -0.39, 0.20, 0.49, 0.29, 0.029
+19691209, -0.20, -0.42, -0.48, 0.34, -0.29, 0.029
+19691210, -0.07, -0.10, -0.73, 0.29, -0.67, 0.029
+19691211, 0.07, -0.05, -0.24, 0.06, -0.01, 0.029
+19691212, 0.30, 0.04, -0.28, 0.17, -0.24, 0.029
+19691215, -0.29, 0.07, -0.13, -0.09, -0.25, 0.029
+19691216, -1.00, -0.53, -0.06, 0.04, 0.01, 0.029
+19691217, -0.54, -0.35, -0.07, 0.03, -0.06, 0.029
+19691218, 1.59, -0.18, -0.79, 0.17, -0.37, 0.029
+19691219, 0.82, 0.15, 0.01, -0.06, 0.01, 0.029
+19691222, -1.00, -0.31, 0.35, 0.38, 0.29, 0.029
+19691223, -0.53, -0.48, 0.29, -0.07, 0.50, 0.029
+19691224, 1.17, 0.44, -0.15, -0.63, -0.59, 0.029
+19691226, 0.81, 0.07, -0.04, -0.32, -0.58, 0.029
+19691229, -0.75, -0.33, -0.04, 0.18, 0.08, 0.029
+19691230, 0.39, -0.24, -0.16, -0.12, -0.16, 0.029
+19691231, 0.55, 0.40, -0.26, 0.12, -0.37, 0.029
+19700102, 1.18, 1.39, 0.97, -1.14, 0.43, 0.029
+19700105, 0.59, 0.75, 0.76, -0.55, 0.75, 0.029
+19700106, -0.74, 0.06, 0.28, -0.02, 0.31, 0.029
+19700107, -0.15, 0.39, -0.35, 0.26, -0.41, 0.029
+19700108, 0.04, 0.18, -0.18, -0.04, -0.29, 0.029
+19700109, -0.31, 0.22, 0.08, 0.08, 0.28, 0.029
+19700112, -0.80, -0.07, -0.04, 0.07, -0.02, 0.029
+19700113, 0.05, -0.22, -0.50, 0.23, -0.51, 0.029
+19700114, -0.25, -0.17, -0.28, 0.36, 0.24, 0.029
+19700115, -0.04, -0.11, -0.64, 0.41, -0.42, 0.029
+19700116, -0.82, -0.04, 0.70, -0.22, 0.80, 0.029
+19700119, -1.31, 0.53, 1.06, -0.79, 1.24, 0.029
+19700120, 0.17, 0.28, -0.39, -0.13, -0.52, 0.029
+19700121, 0.06, 0.08, 0.15, -0.04, 0.22, 0.029
+19700122, 0.11, 0.12, -0.11, 0.00, -0.22, 0.029
+19700123, -1.06, -0.13, 0.42, 0.37, 0.28, 0.029
+19700126, -1.13, -0.28, 0.42, -0.22, 0.69, 0.029
+19700127, -0.67, 0.18, -0.32, -0.14, 0.09, 0.029
+19700128, -0.99, 0.38, -0.14, 0.25, 0.05, 0.029
+19700129, -1.33, -0.10, 0.44, -0.26, 0.60, 0.029
+19700130, -0.88, -0.15, 0.93, -0.35, 0.55, 0.029
+19700202, 0.82, -0.64, -0.13, 0.15, 0.02, 0.032
+19700203, 1.26, -0.14, -0.30, -0.27, 0.01, 0.032
+19700204, -0.74, -0.30, 0.73, 0.04, 0.79, 0.032
+19700205, -0.41, -0.23, -0.06, 0.17, 0.18, 0.032
+19700206, 0.59, 0.18, -0.32, 0.06, -0.63, 0.032
+19700209, 0.82, -0.14, -0.22, 0.06, -0.25, 0.032
+19700210, -0.94, 0.33, 0.10, 0.12, 0.38, 0.032
+19700211, 0.90, -0.17, -0.83, 0.43, -0.71, 0.032
+19700212, -0.21, 0.29, 0.28, 0.20, 0.22, 0.032
+19700213, -0.18, -0.01, 0.63, -0.02, 0.71, 0.032
+19700216, -0.07, 0.12, 0.38, -0.18, 0.17, 0.032
+19700217, -0.20, -0.11, 0.19, 0.03, 0.01, 0.032
+19700218, 1.19, -0.47, -0.05, -0.21, -0.15, 0.032
+19700219, 0.28, -0.35, 0.53, -0.60, 0.13, 0.032
+19700220, 0.32, -0.59, 0.87, -0.85, 0.57, 0.032
+19700224, -0.03, -0.13, 0.47, -0.64, 0.72, 0.032
+19700225, 1.52, -0.16, 0.22, -0.58, -0.01, 0.032
+19700226, -0.53, 0.06, 0.64, -0.23, 0.18, 0.032
+19700227, 0.69, 0.16, 0.41, 0.01, 0.46, 0.032
+19700302, 0.13, -0.16, 0.70, 0.02, 0.79, 0.027
+19700303, 0.58, -0.39, 0.61, -0.06, 0.37, 0.027
+19700304, -0.25, 0.17, 0.61, 0.14, 0.95, 0.027
+19700305, -0.02, 0.14, 0.37, -0.08, 0.38, 0.027
+19700306, -0.69, 0.22, 0.26, 0.03, 0.44, 0.027
+19700309, -1.08, 0.00, 0.79, -0.21, 0.72, 0.027
+19700310, 0.14, -0.29, -0.33, 0.02, -0.44, 0.027
+19700311, -0.14, -0.15, 0.46, -0.07, 0.30, 0.027
+19700312, -0.51, -0.23, 0.39, -0.13, 0.12, 0.027
+19700313, -0.63, -0.26, 0.73, -0.07, 0.75, 0.027
+19700316, -1.15, -0.19, 0.36, -0.29, 0.55, 0.027
+19700317, 0.39, -0.17, -0.46, -0.05, -0.48, 0.027
+19700318, 0.26, -0.15, 0.14, -0.08, 0.17, 0.027
+19700319, -0.29, -0.35, 0.37, -0.02, 0.23, 0.027
+19700320, -0.52, -0.49, 0.66, -0.31, 0.73, 0.027
+19700323, -0.14, -0.17, -0.07, 0.30, -0.03, 0.027
+19700324, 1.01, -0.48, -0.44, 0.19, -0.34, 0.027
+19700325, 2.14, 0.18, -0.52, -0.30, -0.38, 0.027
+19700326, 0.10, 0.30, -0.10, 0.03, -0.12, 0.027
+19700330, -0.28, 0.09, -0.30, 0.04, -0.47, 0.027
+19700331, -0.05, -0.04, 0.11, 0.03, 0.16, 0.027
+19700401, 0.45, -0.08, 0.03, -0.34, -0.16, 0.023
+19700402, -0.39, 0.14, 0.11, -0.07, 0.45, 0.023
+19700403, -0.49, 0.04, 0.98, -0.40, 0.81, 0.023
+19700406, -0.83, -0.22, 1.16, -0.51, 1.20, 0.023
+19700407, -0.36, -0.14, 0.59, -0.07, 0.49, 0.023
+19700408, -0.19, -0.28, 0.09, -0.05, -0.18, 0.023
+19700409, -0.10, -0.63, 0.43, 0.33, 0.32, 0.023
+19700410, -0.44, -0.46, -0.29, 0.64, -0.26, 0.023
+19700413, -0.90, -0.80, 1.05, -0.14, 0.96, 0.023
+19700414, -0.86, -0.56, 0.34, -0.34, 0.28, 0.023
+19700415, -0.31, -0.20, 0.30, 0.09, 0.26, 0.023
+19700416, -1.14, -0.36, 0.70, 0.11, 0.76, 0.023
+19700417, -0.33, -0.29, 0.10, -0.19, -0.24, 0.023
+19700420, 0.22, -0.01, -0.55, 0.17, -0.42, 0.023
+19700421, -0.57, -0.34, 0.68, -0.09, 0.55, 0.023
+19700422, -1.48, -0.61, 1.06, -0.29, 0.79, 0.023
+19700423, -1.65, -0.72, 0.52, 0.08, 0.59, 0.023
+19700424, -0.51, -0.55, 0.18, 0.57, 0.29, 0.023
+19700427, -1.84, -0.93, 0.91, -0.08, 0.81, 0.023
+19700428, -1.47, -0.59, 0.60, -0.17, 0.57, 0.023
+19700429, 2.11, 0.20, -2.30, 0.12, -1.63, 0.023
+19700430, -0.40, 0.16, 0.63, -0.06, 0.45, 0.023
+19700501, -0.14, -0.01, 0.17, -0.09, 0.38, 0.025
+19700504, -2.60, -0.36, 1.79, -0.28, 1.71, 0.025
+19700505, -1.13, -0.54, 0.57, -0.48, 0.45, 0.025
+19700506, 1.20, 0.47, -0.95, 0.06, -0.67, 0.025
+19700507, 0.59, 0.02, -0.08, -0.23, -0.26, 0.025
+19700508, -0.52, -0.02, 0.29, -0.04, 0.07, 0.025
+19700511, -1.11, -0.03, 0.64, 0.24, 0.56, 0.025
+19700512, -0.93, -0.21, 0.54, -0.34, 0.38, 0.025
+19700513, -1.76, -0.48, 1.01, -0.11, 1.01, 0.025
+19700514, -1.53, -0.92, 0.63, -0.25, 0.23, 0.025
+19700515, 1.83, -0.35, -0.95, -0.28, 0.05, 0.025
+19700518, 0.13, 0.01, 0.18, 0.25, 0.02, 0.025
+19700519, -2.01, -0.11, 1.33, -0.48, 1.25, 0.025
+19700520, -2.66, -0.53, 1.69, -0.42, 1.65, 0.025
+19700521, -2.01, -0.90, 1.03, -0.26, 0.83, 0.025
+19700522, -0.15, -0.72, -0.65, 0.76, -0.25, 0.025
+19700525, -3.21, -1.59, 1.75, 0.53, 1.22, 0.025
+19700526, -1.32, -0.59, 0.58, -0.49, -0.04, 0.025
+19700527, 5.30, 1.27, -3.73, 0.15, -3.05, 0.025
+19700528, 2.63, 0.96, -1.20, 0.20, -0.63, 0.025
+19700529, 2.70, 0.08, -1.33, 0.18, -1.31, 0.025
+19700601, 1.83, 1.01, -1.72, 0.04, -1.66, 0.026
+19700602, 0.12, 0.60, -0.36, 0.02, -0.09, 0.026
+19700603, 1.11, 0.85, -0.92, 0.00, -0.53, 0.026
+19700604, -1.58, -0.20, 1.37, 0.19, 1.69, 0.026
+19700605, -1.70, -0.36, 0.34, 0.00, 0.06, 0.026
+19700608, 0.10, 0.05, 0.13, -0.38, 0.12, 0.026
+19700609, 0.01, -0.05, -0.45, 0.14, -0.67, 0.026
+19700610, -1.03, 0.00, 0.24, -0.28, 0.08, 0.026
+19700611, -1.42, -0.24, 1.03, -0.57, 1.07, 0.026
+19700612, -0.42, -0.33, -0.26, 0.19, 0.10, 0.026
+19700615, 0.30, 0.12, -0.54, 0.16, -0.29, 0.026
+19700616, 2.28, -0.46, -1.26, 0.58, -1.17, 0.026
+19700617, -0.27, -0.09, 0.58, -0.18, 0.68, 0.026
+19700618, 0.56, -0.37, -0.69, 0.62, -0.61, 0.026
+19700619, 0.66, -0.19, -0.03, -0.23, 0.03, 0.026
+19700622, -0.67, -0.18, 0.15, 0.23, 0.34, 0.026
+19700623, -2.49, 0.06, 1.20, -0.24, 1.25, 0.026
+19700624, -1.15, -0.86, 0.58, -0.42, 0.57, 0.026
+19700625, -0.05, -0.63, -0.03, 0.23, 0.02, 0.026
+19700626, -0.82, -0.18, 0.46, 0.12, 0.68, 0.026
+19700629, -0.87, -0.32, 0.30, 0.34, 0.38, 0.026
+19700630, -0.30, -0.49, 0.56, -0.27, 0.80, 0.026
+19700701, 0.33, -0.61, -0.26, 0.33, 0.27, 0.024
+19700702, -0.26, -0.53, 0.54, -0.08, 0.61, 0.024
+19700706, -1.58, -0.22, 0.81, 0.06, 0.96, 0.024
+19700707, -0.87, -0.34, 0.15, 0.27, 0.42, 0.024
+19700708, 2.38, -0.83, -1.29, 0.36, -1.29, 0.024
+19700709, 1.61, 0.22, -0.02, -0.21, -0.31, 0.024
+19700710, 0.71, 0.02, 0.14, 0.10, 0.51, 0.024
+19700713, -0.07, 0.29, 0.74, -0.55, 0.22, 0.024
+19700714, -0.15, -0.16, -0.25, 0.38, 0.23, 0.024
+19700715, 0.98, -0.32, -0.25, 0.09, -0.24, 0.024
+19700716, 1.33, -0.36, 0.12, -0.37, 0.34, 0.024
+19700717, 1.67, -0.03, 0.12, -0.55, -0.08, 0.024
+19700720, 0.13, 0.38, 0.44, -0.04, 0.25, 0.024
+19700721, -1.01, 0.01, 0.30, -0.07, 0.23, 0.024
+19700722, 0.12, 0.44, 0.10, -0.24, -0.38, 0.024
+19700723, 1.22, -0.48, -0.20, 0.00, -0.61, 0.024
+19700724, -0.23, 0.55, -0.17, 0.16, 0.34, 0.024
+19700727, -0.19, 0.34, 0.24, -0.10, 0.08, 0.024
+19700728, 0.26, 0.15, -0.37, 0.12, -0.29, 0.024
+19700729, 0.37, 0.52, -0.31, -0.02, -0.03, 0.024
+19700730, 0.06, 0.12, -0.20, 0.17, 0.06, 0.024
+19700731, -0.06, 0.19, 0.46, 0.14, 0.42, 0.024
+19700803, -1.22, 0.16, 0.47, -0.07, 0.35, 0.025
+19700804, 0.17, -0.21, -0.12, -0.14, 0.04, 0.025
+19700805, -0.08, -0.11, 0.19, -0.03, 0.23, 0.025
+19700806, -0.18, -0.39, 0.47, 0.11, 0.67, 0.025
+19700807, 0.26, -0.14, 0.42, -0.58, 0.60, 0.025
+19700810, -1.44, 0.09, 0.42, 0.30, 0.45, 0.025
+19700811, -0.57, -0.18, 0.32, -0.02, 0.21, 0.025
+19700812, -0.49, 0.10, 0.66, -0.50, 0.39, 0.025
+19700813, -0.90, 0.08, 0.76, -0.43, 0.31, 0.025
+19700814, 0.41, -0.28, 0.14, 0.27, 0.58, 0.025
+19700817, 0.17, -0.26, -0.52, 0.60, -0.43, 0.025
+19700818, 1.06, -0.55, -0.19, -0.21, -0.23, 0.025
+19700819, 0.90, -0.51, 0.39, -0.32, 0.05, 0.025
+19700820, 0.75, -0.74, 0.03, -0.08, -0.05, 0.025
+19700821, 2.09, -0.21, -0.16, 0.05, -0.33, 0.025
+19700824, 2.34, 0.55, -1.43, 1.10, -1.59, 0.025
+19700825, 0.38, 0.87, -0.83, 0.36, -0.84, 0.025
+19700826, 0.31, 1.05, -0.09, -0.40, -0.09, 0.025
+19700827, -0.12, 0.79, 0.01, 0.32, -0.09, 0.025
+19700828, 0.99, 0.65, -0.25, 0.30, -0.49, 0.025
+19700831, -0.35, 0.72, 0.27, -0.07, 0.07, 0.025
+19700901, -0.64, 0.03, 0.29, -0.25, 0.35, 0.025
+19700902, -0.02, 0.33, -0.40, -0.33, -0.61, 0.025
+19700903, 1.46, 0.17, -0.93, 0.30, -0.44, 0.025
+19700904, 1.07, 0.63, -0.01, -0.45, -0.83, 0.025
+19700908, 0.36, 0.68, -0.66, 0.04, -0.75, 0.025
+19700909, -0.30, 0.22, -0.16, 0.07, 0.06, 0.025
+19700910, -0.58, 0.39, 0.22, -0.02, 0.51, 0.025
+19700911, 0.35, 0.99, -0.32, 0.57, -0.73, 0.025
+19700914, -0.51, 0.13, 0.19, 0.12, 0.09, 0.025
+19700915, -0.98, -0.31, -0.11, 0.38, 0.20, 0.025
+19700916, 0.57, 0.36, -0.67, 0.00, -0.46, 0.025
+19700917, 0.80, 0.70, -0.72, 0.07, -0.63, 0.025
+19700918, 0.44, 0.62, 0.09, -0.24, -0.36, 0.025
+19700921, -0.84, -0.11, 0.33, 0.52, 0.36, 0.025
+19700922, -0.36, -0.09, -0.02, -0.09, 0.07, 0.025
+19700923, 1.35, 0.18, -0.63, -0.03, -0.87, 0.025
+19700924, 1.43, 1.38, -1.38, -0.06, -1.37, 0.025
+19700925, 0.17, 0.18, -0.01, 0.04, -0.01, 0.025
+19700928, -0.06, 0.69, -0.54, 0.16, -0.25, 0.025
+19700929, 0.58, 0.72, -0.04, -0.37, -0.24, 0.025
+19700930, -0.12, 0.05, 0.35, -0.18, 0.37, 0.025
+19701001, 0.12, -0.29, -0.11, 0.29, 0.08, 0.021
+19701002, 1.05, 0.33, -0.30, 0.02, -0.46, 0.021
+19701005, 1.44, -0.18, 0.01, 0.31, -0.28, 0.021
+19701006, 0.23, -0.78, 0.92, -0.16, 1.23, 0.021
+19701007, -0.03, 0.23, 0.07, 0.08, -0.06, 0.021
+19701008, -1.15, -0.31, 0.47, 0.39, 0.67, 0.021
+19701009, -0.97, 0.31, 0.09, -0.08, 0.12, 0.021
+19701012, -0.98, -0.01, 0.37, -0.16, 0.19, 0.021
+19701013, -0.26, 0.03, -0.35, 0.09, -0.40, 0.021
+19701014, 0.13, -0.19, -0.05, -0.09, 0.22, 0.021
+19701015, 0.41, -0.43, 0.25, -0.18, 0.24, 0.021
+19701016, -0.60, -0.67, 0.58, 0.11, 0.91, 0.021
+19701019, -1.41, -0.46, 0.63, 0.08, 0.40, 0.021
+19701020, 0.57, -0.44, -1.06, 0.51, -0.69, 0.021
+19701021, -0.08, -0.28, 0.13, -0.11, 0.11, 0.021
+19701022, -0.43, -0.30, 0.13, -0.02, 0.54, 0.021
+19701023, 0.49, 0.10, -0.52, -0.01, -0.37, 0.021
+19701026, -0.53, 0.09, -0.09, 0.18, 0.05, 0.021
+19701027, -0.30, -0.26, -0.14, 0.23, 0.11, 0.021
+19701028, 0.32, -0.43, -0.88, 0.34, -0.69, 0.021
+19701029, -0.18, -0.40, 0.26, 0.07, 0.36, 0.021
+19701030, -0.07, -0.32, -0.09, 0.05, 0.15, 0.021
+19701102, 0.32, -0.05, -0.18, 0.51, -0.22, 0.023
+19701103, 0.85, 0.22, 0.33, -0.29, 0.16, 0.023
+19701104, 0.18, -0.28, 0.20, 0.00, 0.91, 0.023
+19701105, -0.20, -0.17, 0.06, 0.13, 0.30, 0.023
+19701106, 0.09, -0.34, 0.24, 0.07, 0.23, 0.023
+19701109, 0.50, -0.16, -0.24, 0.20, -0.16, 0.023
+19701110, 0.15, -0.06, -0.08, 0.08, -0.08, 0.023
+19701111, 0.27, -0.04, 0.36, -0.09, 0.25, 0.023
+19701112, -1.11, -0.64, 0.42, 0.09, 0.46, 0.023
+19701113, -0.96, -0.25, 0.28, 0.05, 0.48, 0.023
+19701116, -0.17, -0.40, -0.21, 0.55, -0.23, 0.023
+19701117, 0.05, -0.31, 0.25, -0.04, 0.25, 0.023
+19701118, -0.77, -0.70, 0.32, 0.16, 0.43, 0.023
+19701119, 0.09, -0.48, -0.18, 0.20, 0.14, 0.023
+19701120, 0.98, -0.12, -0.33, 0.14, -0.21, 0.023
+19701123, 0.63, -0.33, 0.09, 0.17, 0.02, 0.023
+19701124, 0.58, -0.33, 0.26, -0.05, 0.26, 0.023
+19701125, 0.42, -0.04, 0.35, 0.05, -0.03, 0.023
+19701127, 0.98, -0.16, -0.36, 0.15, -0.56, 0.023
+19701130, 1.67, 0.75, -0.10, -0.39, -0.85, 0.023
+19701201, 0.29, -0.02, 0.19, -0.28, -0.07, 0.019
+19701202, 1.22, 0.03, -0.43, 0.35, -0.49, 0.019
+19701203, 0.45, 0.09, 0.49, 0.00, 0.55, 0.019
+19701204, 0.57, 0.07, 0.21, -0.15, 0.43, 0.019
+19701207, 0.58, 0.17, -0.25, 0.45, -0.31, 0.019
+19701208, -0.52, -0.15, 0.05, 0.05, -0.01, 0.019
+19701209, 0.01, -0.23, -0.03, 0.10, -0.05, 0.019
+19701210, 0.34, -0.13, -0.07, -0.22, 0.11, 0.019
+19701211, 0.37, 0.13, -0.15, 0.20, -0.14, 0.019
+19701214, -0.57, -0.47, 0.35, 0.03, 0.51, 0.019
+19701215, -0.18, -0.16, 0.13, 0.20, -0.05, 0.019
+19701216, 0.12, 0.21, 0.02, 0.14, -0.04, 0.019
+19701217, 0.31, 0.11, 0.02, -0.10, 0.24, 0.019
+19701218, 0.21, 0.29, -0.04, 0.31, -0.21, 0.019
+19701221, -0.29, 0.15, 0.04, 0.14, -0.16, 0.019
+19701222, 0.12, 0.21, 0.09, -0.09, -0.03, 0.019
+19701223, 0.15, 0.41, 0.09, -0.42, 0.03, 0.019
+19701224, 0.69, 0.96, -0.15, -0.46, -0.42, 0.019
+19701228, 0.53, 0.24, 0.05, 0.01, 0.14, 0.019
+19701229, 1.11, 0.52, 0.25, -0.42, 0.00, 0.019
+19701230, 0.18, 0.07, 0.08, 0.24, 0.12, 0.019
+19701231, -0.10, 0.27, -0.09, 0.13, -0.01, 0.019
+19710104, -0.99, 0.58, 0.69, -0.58, 0.44, 0.019
+19710105, 0.82, 0.68, 0.02, -0.38, -0.42, 0.019
+19710106, 0.74, 0.89, 0.49, -0.60, -0.05, 0.019
+19710107, 0.05, 0.15, 0.54, -0.10, 0.69, 0.019
+19710108, -0.13, 0.09, 0.41, -0.07, 0.08, 0.019
+19710111, -0.11, 0.45, 0.15, 0.00, -0.14, 0.019
+19710112, 0.98, 0.78, 0.38, 0.06, 0.07, 0.019
+19710113, -0.09, 0.43, -0.21, 0.39, -0.19, 0.019
+19710114, 0.29, 0.04, 0.15, -0.47, 0.02, 0.019
+19710115, 0.28, 0.42, 0.26, -0.20, 0.06, 0.019
+19710118, 0.35, 0.30, 0.25, -0.37, -0.18, 0.019
+19710119, 0.29, -0.07, -0.04, 0.12, 0.06, 0.019
+19710120, 0.08, 0.32, -0.05, 0.06, -0.05, 0.019
+19710121, 0.47, 0.44, -0.57, -0.08, -0.27, 0.019
+19710122, 0.67, 0.01, -0.30, -0.31, -0.01, 0.019
+19710125, 0.47, 0.42, -0.54, 0.37, -0.40, 0.019
+19710126, 0.28, 0.18, -0.66, 0.32, -0.45, 0.019
+19710127, -0.74, 0.01, 0.00, 0.22, -0.06, 0.019
+19710128, 0.37, 0.63, 0.21, -0.17, 0.20, 0.019
+19710129, 0.66, 0.24, 0.13, -0.22, 0.40, 0.019
+19710201, 0.67, 0.71, -0.20, -0.10, 0.08, 0.017
+19710202, 0.06, 0.10, -0.04, 0.40, -0.16, 0.017
+19710203, 0.30, 0.72, -0.38, -0.07, -0.52, 0.017
+19710204, 0.14, 0.16, -0.26, -0.27, -0.20, 0.017
+19710205, 0.45, 0.24, -0.03, 0.19, -0.27, 0.017
+19710208, 0.60, 0.85, 0.04, -0.22, -0.32, 0.017
+19710209, -0.04, -0.25, -0.10, 0.20, 0.21, 0.017
+19710210, -0.11, -0.18, -0.01, -0.03, 0.04, 0.017
+19710211, 0.52, 0.34, 0.48, -0.32, 0.06, 0.017
+19710212, 0.59, 0.53, -0.05, -0.13, -0.44, 0.017
+19710216, 0.24, 0.01, -0.10, -0.10, 0.09, 0.017
+19710217, -0.48, -0.11, 0.31, -0.31, 0.28, 0.017
+19710218, -0.68, -0.25, 0.21, 0.02, 0.36, 0.017
+19710219, -0.93, -0.52, 0.18, 0.34, 0.32, 0.017
+19710222, -1.06, -0.87, -0.30, 0.53, 0.03, 0.017
+19710223, 0.50, 0.52, -0.40, -0.15, -0.36, 0.017
+19710224, 0.74, 0.57, -0.30, 0.16, -0.41, 0.017
+19710225, 0.16, -0.24, 0.10, 0.07, 0.63, 0.017
+19710226, -0.25, -0.30, -0.43, 0.43, -0.18, 0.017
+19710301, 0.30, 0.22, -0.26, -0.09, -0.42, 0.013
+19710302, 0.05, 0.32, 0.16, -0.12, -0.05, 0.013
+19710303, 0.01, 0.27, -0.19, 0.02, -0.09, 0.013
+19710304, 1.05, 0.31, -0.43, 0.08, -0.27, 0.013
+19710305, 1.06, 0.22, -0.25, -0.06, -0.34, 0.013
+19710308, 0.48, 0.53, -0.38, 0.23, -0.10, 0.013
+19710309, 0.14, 0.41, -0.45, 0.04, -0.17, 0.013
+19710310, -0.12, 0.15, -0.42, 0.46, -0.41, 0.013
+19710311, -0.02, -0.42, 0.36, 0.09, 0.22, 0.013
+19710312, 0.16, -0.20, -0.12, 0.27, -0.26, 0.013
+19710315, 1.14, 0.18, -0.42, 0.11, -0.31, 0.013
+19710316, 0.46, -0.22, -0.16, 0.10, -0.08, 0.013
+19710317, 0.01, -0.04, -0.46, 0.19, -0.19, 0.013
+19710318, 0.11, 0.40, -0.06, 0.11, 0.03, 0.013
+19710319, -0.18, -0.01, -0.04, 0.42, -0.16, 0.013
+19710322, -0.40, -0.22, 0.11, 0.20, 0.28, 0.013
+19710323, -0.33, 0.16, -0.09, -0.25, 0.07, 0.013
+19710324, -0.61, 0.00, -0.02, 0.07, 0.20, 0.013
+19710325, 0.02, -0.03, -0.04, -0.05, -0.05, 0.013
+19710326, 0.38, 0.18, -0.21, 0.10, -0.03, 0.013
+19710329, 0.08, -0.28, -0.19, -0.17, 0.06, 0.013
+19710330, 0.21, -0.11, -0.10, -0.09, -0.19, 0.013
+19710331, 0.09, 0.20, -0.16, 0.22, -0.29, 0.013
+19710401, 0.06, -0.03, -0.23, 0.14, -0.03, 0.013
+19710402, 0.20, 0.07, -0.31, 0.30, -0.30, 0.013
+19710405, 0.17, -0.06, 0.12, -0.32, 0.37, 0.013
+19710406, 0.59, -0.23, -0.04, -0.11, -0.05, 0.013
+19710407, 0.43, 0.06, 0.38, -0.37, 0.23, 0.013
+19710408, 0.14, 0.14, 0.05, 0.01, 0.13, 0.013
+19710412, 0.67, -0.18, -0.03, 0.08, 0.09, 0.013
+19710413, 0.04, 0.05, 0.00, 0.02, 0.01, 0.013
+19710414, 0.35, 0.24, 0.39, -0.31, 0.27, 0.013
+19710415, 0.14, -0.14, 0.55, -0.52, 0.52, 0.013
+19710416, 0.00, -0.04, 0.40, -0.17, 0.10, 0.013
+19710419, 0.41, -0.32, 0.11, -0.26, 0.16, 0.013
+19710420, -0.49, -0.51, -0.03, 0.51, 0.09, 0.013
+19710421, -0.27, 0.01, -0.09, -0.08, -0.11, 0.013
+19710422, 0.29, 0.13, 0.15, -0.26, -0.04, 0.013
+19710423, 0.50, 0.11, -0.37, -0.05, -0.33, 0.013
+19710426, 0.00, 0.52, 0.11, -0.22, -0.30, 0.013
+19710427, 0.44, 0.14, -0.19, 0.21, -0.28, 0.013
+19710428, 0.34, 0.05, -0.26, -0.21, 0.14, 0.013
+19710429, -0.25, -0.48, -0.01, 0.04, 0.11, 0.013
+19710430, -0.65, 0.12, -0.02, 0.01, -0.08, 0.013
+19710503, -0.57, 0.21, -0.18, 0.08, -0.10, 0.015
+19710504, 0.55, 0.23, -0.03, 0.00, -0.27, 0.015
+19710505, -0.03, -0.14, -0.17, 0.05, 0.00, 0.015
+19710506, -0.58, -0.39, 0.00, 0.17, 0.43, 0.015
+19710507, -0.32, -0.14, -0.12, -0.15, 0.13, 0.015
+19710510, -0.49, -0.21, 0.21, 0.06, 0.00, 0.015
+19710511, 0.29, -0.02, 0.10, -0.13, 0.20, 0.015
+19710512, 0.23, -0.10, -0.13, -0.02, -0.08, 0.015
+19710513, -0.20, 0.04, -0.41, 0.34, 0.15, 0.015
+19710514, -0.42, 0.13, 0.09, -0.07, 0.12, 0.015
+19710517, -1.52, -0.42, 0.17, 0.41, 0.20, 0.015
+19710518, 0.05, -0.25, -0.18, 0.00, -0.04, 0.015
+19710519, 0.23, -0.15, 0.08, 0.17, 0.15, 0.015
+19710520, 0.25, 0.06, -0.20, 0.14, -0.12, 0.015
+19710521, -0.35, -0.01, -0.09, 0.31, -0.02, 0.015
+19710524, -0.83, -0.07, -0.28, 0.34, -0.11, 0.015
+19710525, -0.65, -0.12, -0.35, 0.10, 0.08, 0.015
+19710526, 0.15, -0.01, -0.12, -0.17, -0.32, 0.015
+19710527, -0.11, -0.04, 0.05, 0.07, 0.04, 0.015
+19710528, 0.27, 0.20, 0.04, -0.15, -0.17, 0.015
+19710601, 0.61, -0.08, -0.08, -0.09, -0.33, 0.017
+19710602, 0.84, 0.38, -0.24, 0.14, -0.30, 0.017
+19710603, 0.18, 0.42, -0.12, -0.11, -0.30, 0.017
+19710604, 0.25, 0.04, -0.18, 0.27, -0.22, 0.017
+19710607, -0.16, 0.09, -0.15, 0.20, -0.03, 0.017
+19710608, -0.79, -0.15, 0.28, 0.16, 0.31, 0.017
+19710609, -0.07, -0.26, -0.15, 0.08, 0.13, 0.017
+19710610, 0.29, -0.12, -0.21, 0.05, 0.08, 0.017
+19710611, 0.34, -0.35, -0.26, -0.14, -0.25, 0.017
+19710614, -0.81, -0.17, -0.10, -0.01, -0.24, 0.017
+19710615, 0.02, -0.47, -0.21, 0.13, -0.03, 0.017
+19710616, 0.16, -0.26, -0.46, 0.25, -0.10, 0.017
+19710617, -0.03, -0.30, -0.06, -0.02, 0.05, 0.017
+19710618, -1.54, -0.63, 0.08, 0.58, 0.15, 0.017
+19710621, -1.21, -0.50, 0.14, 0.29, -0.14, 0.017
+19710622, -0.30, -0.11, -0.01, -0.12, 0.04, 0.017
+19710623, 0.86, 0.33, -0.40, -0.05, -0.49, 0.017
+19710624, -0.17, 0.11, 0.20, 0.04, -0.10, 0.017
+19710625, -0.20, 0.14, 0.07, 0.06, 0.19, 0.017
+19710628, -0.26, 0.08, -0.14, 0.02, -0.26, 0.017
+19710629, 1.11, 0.24, 0.09, -0.23, -0.09, 0.017
+19710630, 0.92, 0.08, -0.10, 0.05, 0.13, 0.017
+19710701, 0.10, 0.11, -0.04, -0.04, -0.04, 0.019
+19710702, 0.04, 0.15, -0.18, 0.07, -0.14, 0.019
+19710706, 0.06, 0.27, -0.28, 0.07, -0.12, 0.019
+19710707, 0.35, 0.30, -0.09, -0.10, 0.30, 0.019
+19710708, 0.33, -0.22, -0.06, 0.15, 0.12, 0.019
+19710709, 0.34, 0.00, -0.14, 0.25, -0.09, 0.019
+19710712, 0.11, -0.10, 0.08, 0.36, 0.09, 0.019
+19710713, -1.29, 0.09, 0.20, -0.10, 0.22, 0.019
+19710714, -0.17, 0.11, -0.03, 0.02, 0.21, 0.019
+19710715, 0.03, 0.06, 0.00, -0.12, -0.12, 0.019
+19710716, -0.21, 0.12, 0.14, -0.13, 0.17, 0.019
+19710719, -0.24, -0.15, -0.01, 0.01, 0.03, 0.019
+19710720, 0.37, -0.27, 0.08, -0.27, 0.14, 0.019
+19710721, -0.08, -0.10, -0.15, 0.23, -0.10, 0.019
+19710722, -0.25, -0.29, 0.15, -0.06, 0.02, 0.019
+19710723, -0.17, -0.04, 0.02, -0.07, 0.43, 0.019
+19710726, -0.34, -0.06, 0.20, -0.03, 0.24, 0.019
+19710727, -0.99, -0.34, 0.23, -0.02, 0.29, 0.019
+19710728, -0.84, -0.34, -0.05, 0.35, -0.15, 0.019
+19710729, -1.27, -0.65, -0.02, -0.01, 0.04, 0.019
+19710730, -0.47, -0.20, 0.09, 0.00, 0.09, 0.019
+19710802, 0.49, 0.40, 0.75, -0.58, 0.37, 0.021
+19710803, -1.64, -0.59, 0.02, -0.02, -0.01, 0.021
+19710804, -0.59, -0.08, -0.08, 0.15, 0.01, 0.021
+19710805, 0.24, -0.07, -0.04, -0.18, 0.07, 0.021
+19710806, 0.26, -0.01, -0.21, 0.19, 0.15, 0.021
+19710809, -0.77, -0.16, -0.08, 0.09, -0.09, 0.021
+19710810, 0.00, -0.32, 0.05, 0.28, -0.15, 0.021
+19710811, 1.22, -0.09, -0.26, 0.18, -0.38, 0.021
+19710812, 1.41, 0.07, -0.38, 0.24, -0.04, 0.021
+19710813, -0.30, 0.12, 0.32, -0.06, 0.15, 0.021
+19710816, 3.62, 1.03, 1.19, -0.52, 0.00, 0.021
+19710817, 0.66, -0.31, 0.32, -0.02, 1.88, 0.021
+19710818, -1.34, 0.21, -0.27, 0.37, -0.12, 0.021
+19710819, -0.47, -0.21, 0.24, -0.02, 0.21, 0.021
+19710820, 0.17, -0.02, -0.03, 0.03, 0.05, 0.021
+19710823, 0.89, -0.58, 0.46, -0.17, 0.17, 0.021
+19710824, 0.92, -0.32, 0.51, -0.41, -0.13, 0.021
+19710825, 0.09, 0.14, 0.04, -0.03, 0.16, 0.021
+19710826, -0.12, 0.02, -0.07, 0.06, 0.17, 0.021
+19710827, 0.23, 0.15, 0.17, 0.06, -0.06, 0.021
+19710830, -0.92, 0.39, 0.15, -0.12, 0.10, 0.021
+19710831, -0.49, 0.11, -0.20, 0.15, 0.02, 0.021
+19710901, 0.04, 0.03, 0.15, -0.24, 0.16, 0.017
+19710902, 0.25, 0.06, 0.05, 0.02, -0.33, 0.017
+19710903, 1.39, 0.06, 0.11, -0.31, 0.15, 0.017
+19710907, 0.49, 0.28, 0.09, -0.13, -0.18, 0.017
+19710908, 0.20, 0.16, -0.42, 0.41, -0.07, 0.017
+19710909, -0.48, 0.14, -0.25, 0.07, -0.13, 0.017
+19710910, -0.35, 0.18, -0.23, 0.27, -0.01, 0.017
+19710913, -0.36, -0.12, -0.02, -0.04, 0.19, 0.017
+19710914, -0.76, 0.05, -0.10, 0.20, -0.25, 0.017
+19710915, 0.36, -0.21, -0.26, 0.28, -0.01, 0.017
+19710916, -0.18, 0.12, -0.22, 0.39, 0.35, 0.017
+19710917, 0.30, -0.21, -0.21, -0.25, -0.01, 0.017
+19710920, -0.32, -0.21, -0.25, 0.39, -0.18, 0.017
+19710921, -0.32, 0.10, -0.10, -0.04, -0.14, 0.017
+19710922, -0.89, -0.25, -0.05, 0.37, -0.32, 0.017
+19710923, -0.10, -0.11, -0.15, 0.35, 0.03, 0.017
+19710924, -0.18, 0.37, -0.15, 0.26, -0.20, 0.017
+19710927, -0.57, -0.14, -0.36, 0.29, -0.17, 0.017
+19710928, 0.19, -0.11, -0.02, 0.08, 0.01, 0.017
+19710929, 0.01, 0.14, -0.41, 0.26, -0.30, 0.017
+19710930, 0.46, -0.09, -0.13, -0.11, -0.11, 0.017
+19711001, 0.61, 0.13, -0.24, 0.10, 0.00, 0.017
+19711004, 0.26, 0.05, -0.02, 0.03, 0.19, 0.017
+19711005, -0.12, -0.02, -0.21, 0.15, -0.25, 0.017
+19711006, 0.73, -0.14, 0.25, -0.26, -0.01, 0.017
+19711007, 0.21, 0.09, 0.14, 0.12, 0.04, 0.017
+19711008, -0.62, 0.02, 0.16, 0.16, 0.03, 0.017
+19711011, -0.22, 0.16, 0.12, 0.17, -0.23, 0.017
+19711012, 0.35, -0.07, -0.02, 0.01, -0.16, 0.017
+19711013, -0.51, 0.21, -0.10, 0.25, -0.14, 0.017
+19711014, -0.92, -0.28, 0.14, 0.03, 0.13, 0.017
+19711015, -0.42, -0.16, -0.11, -0.06, -0.06, 0.017
+19711018, -0.51, -0.15, 0.06, 0.00, 0.32, 0.017
+19711019, -0.42, -0.40, -0.29, 0.25, 0.11, 0.017
+19711020, -1.38, -0.15, 0.08, 0.09, 0.25, 0.017
+19711021, -0.01, -0.01, -0.12, 0.07, -0.40, 0.017
+19711022, -0.05, 0.15, -0.19, 0.22, -0.25, 0.017
+19711025, -0.44, -0.02, -0.09, 0.13, -0.32, 0.017
+19711026, -0.52, -0.48, 0.11, 0.27, 0.35, 0.017
+19711027, -1.07, -0.62, -0.11, 0.20, 0.15, 0.017
+19711028, 0.12, -0.27, 0.15, -0.20, -0.36, 0.017
+19711029, 0.47, 0.21, -0.18, -0.17, -0.73, 0.017
+19711101, -1.48, -0.04, -0.12, 0.26, 0.24, 0.018
+19711102, 0.27, -0.47, -0.07, 0.13, 0.15, 0.018
+19711103, 1.70, -0.38, -0.17, 0.10, 0.11, 0.018
+19711104, 0.00, 0.25, -0.12, 0.17, 0.26, 0.018
+19711105, -0.28, -0.29, -0.09, 0.13, 0.02, 0.018
+19711108, -0.09, -0.03, -0.27, 0.16, -0.01, 0.018
+19711109, 0.07, -0.02, -0.23, 0.17, 0.10, 0.018
+19711110, -1.14, -0.02, -0.33, 0.66, -0.33, 0.018
+19711111, -1.38, -0.15, 0.33, -0.11, -0.05, 0.018
+19711112, -0.04, -0.21, -0.01, 0.01, -0.28, 0.018
+19711115, -0.36, 0.09, -0.05, 0.14, -0.04, 0.018
+19711116, 0.91, -0.42, -0.44, 0.31, -0.01, 0.018
+19711117, 0.07, -0.31, -0.05, 0.21, 0.04, 0.018
+19711118, -0.74, 0.02, 0.25, 0.05, 0.22, 0.018
+19711119, -0.61, -0.51, 0.19, -0.15, 0.12, 0.018
+19711122, -1.00, -0.62, -0.22, 0.42, -0.20, 0.018
+19711123, -0.80, -0.84, -0.14, 0.26, 0.19, 0.018
+19711124, 0.17, -0.03, 0.06, -0.07, -0.22, 0.018
+19711126, 1.81, -0.08, -0.14, -0.15, -0.18, 0.018
+19711129, 1.81, 0.78, 0.20, -0.26, -0.16, 0.018
+19711130, 0.74, 0.34, -0.25, 0.01, -0.32, 0.018
+19711201, 1.73, 0.42, -0.28, -0.02, -0.02, 0.017
+19711202, 0.29, -0.01, -0.19, 0.12, 0.31, 0.017
+19711203, 1.17, -0.02, -0.12, -0.11, -0.66, 0.017
+19711206, -0.46, 0.54, 0.55, -0.43, 0.00, 0.017
+19711207, 0.43, 0.09, -0.42, 0.37, -0.34, 0.017
+19711208, 0.14, 0.28, -0.23, 0.11, -0.06, 0.017
+19711209, 0.02, 0.15, -0.28, 0.12, -0.49, 0.017
+19711210, 0.81, 0.37, 0.09, -0.13, -0.53, 0.017
+19711213, 0.37, 0.38, 0.02, -0.14, 0.40, 0.017
+19711214, -0.40, -0.14, -0.13, 0.29, -0.02, 0.017
+19711215, 0.82, -0.04, 0.18, -0.14, -0.05, 0.017
+19711216, 1.10, -0.10, -0.13, 0.03, -0.17, 0.017
+19711217, 0.50, 0.09, -0.11, -0.15, -0.17, 0.017
+19711220, 1.22, -0.07, -0.08, 0.36, -0.35, 0.017
+19711221, 0.23, -0.17, -0.16, 0.19, -0.07, 0.017
+19711222, -0.59, 0.22, 0.24, -0.22, 0.61, 0.017
+19711223, -0.44, 0.07, 0.24, -0.01, 0.15, 0.017
+19711227, 0.14, -0.19, 0.11, -0.26, 0.17, 0.017
+19711228, 0.92, -0.34, 0.16, -0.28, -0.18, 0.017
+19711229, 0.32, 0.33, 0.29, -0.34, 0.24, 0.017
+19711230, -0.33, 0.28, 0.06, -0.02, -0.30, 0.017
+19711231, 0.40, 0.88, -0.29, 0.26, -0.18, 0.017
+19720103, -0.37, 0.71, 0.64, -0.67, 0.37, 0.014
+19720104, 0.39, 0.41, 0.35, -0.41, 0.07, 0.014
+19720105, 0.97, 0.46, 0.57, -0.56, 0.47, 0.014
+19720106, 0.44, 0.46, -0.13, 0.18, 0.24, 0.014
+19720107, -0.01, 0.24, 0.04, -0.30, 0.10, 0.014
+19720110, -0.04, 0.54, 0.23, -0.03, -0.07, 0.014
+19720111, 0.39, 0.52, 0.14, -0.24, 0.23, 0.014
+19720112, -0.07, -0.20, -0.17, 0.18, 0.28, 0.014
+19720113, -0.59, -0.02, -0.17, 0.15, -0.07, 0.014
+19720114, 0.40, 0.38, -0.13, 0.30, -0.29, 0.014
+19720117, 0.33, 0.31, 0.13, -0.14, -0.06, 0.014
+19720118, 0.38, 0.16, 0.15, -0.36, 0.39, 0.014
+19720119, -0.15, 0.11, -0.14, 0.02, -0.22, 0.014
+19720120, -0.08, -0.18, -0.25, 0.47, -0.30, 0.014
+19720121, -0.19, 0.32, -0.14, 0.28, -0.47, 0.014
+19720124, -1.09, 0.13, 0.26, 0.03, -0.10, 0.014
+19720125, 0.16, -0.07, -0.23, 0.19, -0.27, 0.014
+19720126, -0.16, 0.42, 0.11, -0.10, -0.37, 0.014
+19720127, 1.10, 0.46, 0.01, -0.18, -0.11, 0.014
+19720128, 0.73, 0.30, 0.35, -0.13, 0.19, 0.014
+19720131, -0.06, 0.57, 0.27, -0.03, 0.29, 0.014
+19720201, 0.14, 0.48, -0.38, 0.16, -0.38, 0.012
+19720202, 0.62, 0.48, -0.78, 0.55, -0.35, 0.012
+19720203, -0.02, -0.15, -0.65, 0.48, -0.15, 0.012
+19720204, 0.36, 0.01, 0.23, -0.05, 0.35, 0.012
+19720207, -0.35, 0.08, 0.39, 0.05, 0.02, 0.012
+19720208, 0.13, -0.08, -0.20, 0.21, -0.15, 0.012
+19720209, 0.72, 0.04, -0.14, 0.03, 0.21, 0.012
+19720210, 0.03, -0.13, 0.27, -0.03, 0.50, 0.012
+19720211, -0.40, 0.15, -0.14, 0.24, -0.16, 0.012
+19720214, -0.40, 0.06, 0.02, -0.05, 0.14, 0.012
+19720215, 0.45, 0.19, -0.07, -0.13, 0.02, 0.012
+19720216, 0.49, -0.04, -0.08, -0.15, -0.01, 0.012
+19720217, -0.04, 0.06, -0.15, 0.35, -0.22, 0.012
+19720218, -0.24, 0.10, -0.28, 0.18, -0.11, 0.012
+19720222, -0.01, 0.18, 0.10, -0.07, -0.34, 0.012
+19720223, 0.12, 0.04, -0.20, 0.10, -0.05, 0.012
+19720224, 0.15, -0.03, -0.20, -0.03, 0.23, 0.012
+19720225, 0.63, -0.21, -0.32, 0.13, -0.08, 0.012
+19720228, 0.06, -0.22, 0.26, -0.37, 0.40, 0.012
+19720229, 0.41, -0.07, -0.34, 0.00, -0.39, 0.012
+19720301, 0.80, -0.09, -0.59, 0.16, 0.19, 0.012
+19720302, 0.05, -0.02, -0.21, 0.15, -0.05, 0.012
+19720303, 0.58, 0.06, -0.35, 0.01, 0.01, 0.012
+19720306, 0.75, -0.18, 0.30, -0.35, 0.09, 0.012
+19720307, 0.12, -0.18, -0.05, 0.52, -0.33, 0.012
+19720308, 0.18, 0.58, -0.33, 0.19, -0.38, 0.012
+19720309, 0.02, 0.42, -0.21, 0.11, -0.18, 0.012
+19720310, -0.54, 0.15, 0.04, -0.21, 0.18, 0.012
+19720313, -0.95, 0.00, 0.51, -0.24, 0.28, 0.012
+19720314, 0.29, 0.01, 0.15, -0.20, 0.17, 0.012
+19720315, 0.07, -0.15, 0.03, 0.30, -0.16, 0.012
+19720316, -0.28, -0.18, -0.05, 0.12, -0.02, 0.012
+19720317, 0.27, -0.35, -0.18, 0.07, 0.21, 0.012
+19720320, -0.38, -0.50, -0.01, 0.51, 0.16, 0.012
+19720321, -0.94, -0.56, 0.00, 0.27, -0.04, 0.012
+19720322, 0.16, -0.04, 0.09, -0.17, -0.04, 0.012
+19720323, 0.95, 0.18, -0.16, -0.20, -0.20, 0.012
+19720324, -0.21, 0.01, -0.20, 0.40, -0.09, 0.012
+19720327, -0.21, -0.01, -0.15, 0.30, -0.15, 0.012
+19720328, -0.10, 0.11, -0.25, 0.14, -0.04, 0.012
+19720329, -0.59, 0.28, -0.28, 0.11, 0.12, 0.012
+19720330, 0.61, -0.05, 0.19, -0.44, 0.09, 0.012
+19720403, 0.23, -0.15, -0.11, -0.15, -0.27, 0.014
+19720404, 0.61, -0.11, 0.14, -0.07, -0.09, 0.014
+19720405, 0.82, 0.06, -0.31, 0.04, 0.00, 0.014
+19720406, 0.40, 0.11, -0.02, 0.01, -0.15, 0.014
+19720407, 0.26, 0.15, 0.05, 0.11, 0.16, 0.014
+19720410, -0.17, 0.42, 0.07, 0.07, -0.15, 0.014
+19720411, 0.36, 0.29, 0.09, -0.21, -0.07, 0.014
+19720412, 0.35, 0.19, -0.10, 0.02, -0.17, 0.014
+19720413, -0.27, -0.09, -0.14, 0.25, 0.08, 0.014
+19720414, 0.03, 0.26, -0.15, -0.12, -0.35, 0.014
+19720417, -0.26, -0.02, 0.27, -0.27, -0.11, 0.014
+19720418, 0.17, -0.13, 0.13, -0.11, 0.18, 0.014
+19720419, -0.63, -0.37, 0.50, -0.07, 0.35, 0.014
+19720420, -0.18, 0.14, 0.11, -0.25, 0.12, 0.014
+19720421, -0.16, 0.08, 0.19, -0.18, 0.11, 0.014
+19720424, -0.66, 0.15, -0.19, 0.08, -0.27, 0.014
+19720425, -0.99, -0.28, -0.26, 0.23, -0.13, 0.014
+19720426, -0.24, -0.12, 0.03, -0.15, -0.03, 0.014
+19720427, 0.10, -0.27, 0.04, 0.18, 0.12, 0.014
+19720428, 0.51, -0.11, -0.15, 0.00, -0.25, 0.014
+19720501, -0.91, -0.17, 0.17, 0.02, 0.10, 0.014
+19720502, -0.59, -0.16, -0.02, 0.26, -0.25, 0.014
+19720503, -0.23, -0.70, 0.15, 0.10, 0.17, 0.014
+19720504, 0.23, -0.43, -0.24, 0.05, 0.05, 0.014
+19720505, 0.36, -0.14, -0.31, 0.14, -0.03, 0.014
+19720508, -0.51, -0.39, 0.08, -0.13, 0.14, 0.014
+19720509, -1.45, -0.69, -0.11, 0.33, -0.05, 0.014
+19720510, 0.70, 0.19, -0.04, 0.03, -0.39, 0.014
+19720511, 0.41, 0.25, 0.01, -0.22, -0.29, 0.014
+19720512, 0.69, 0.25, 0.00, -0.22, 0.21, 0.014
+19720515, 0.50, 0.28, -0.36, 0.25, -0.16, 0.014
+19720516, -0.23, -0.01, 0.09, 0.06, -0.10, 0.014
+19720517, 0.20, -0.14, -0.18, 0.17, -0.04, 0.014
+19720518, 0.91, -0.14, -0.58, 0.41, -0.35, 0.014
+19720519, 0.92, -0.29, -0.24, 0.27, -0.10, 0.014
+19720522, 0.55, -0.33, -0.42, 0.47, -0.32, 0.014
+19720523, 0.03, -0.14, -0.49, 0.54, -0.69, 0.014
+19720524, 0.41, -0.12, -0.27, 0.31, -0.11, 0.014
+19720525, 0.21, -0.08, -0.31, -0.02, -0.01, 0.014
+19720526, 0.16, 0.20, -0.08, -0.36, 0.08, 0.014
+19720530, -0.34, -0.20, 0.33, -0.21, 0.38, 0.014
+19720531, -0.73, -0.19, 0.11, 0.04, -0.09, 0.014
+19720601, 0.22, 0.08, -0.08, -0.02, -0.16, 0.013
+19720602, 0.11, 0.23, -0.30, 0.17, 0.08, 0.013
+19720605, -0.80, 0.01, -0.05, 0.27, -0.07, 0.013
+19720606, -0.56, 0.08, -0.40, 0.29, -0.11, 0.013
+19720607, -0.51, -0.04, -0.11, -0.02, -0.08, 0.013
+19720608, -0.30, 0.00, 0.02, 0.23, 0.04, 0.013
+19720609, -0.46, -0.03, 0.09, 0.23, 0.11, 0.013
+19720612, 0.07, -0.14, -0.05, -0.17, 0.19, 0.013
+19720613, 0.43, -0.26, -0.20, -0.24, 0.01, 0.013
+19720614, 0.76, -0.02, -0.50, 0.27, 0.06, 0.013
+19720615, -0.07, -0.18, -0.22, 0.07, 0.29, 0.013
+19720616, -0.09, 0.12, 0.09, 0.08, -0.17, 0.013
+19720619, -0.16, 0.18, -0.05, -0.12, -0.03, 0.013
+19720620, 0.36, -0.21, -0.09, 0.15, 0.13, 0.013
+19720621, 0.15, -0.33, -0.33, 0.05, -0.15, 0.013
+19720622, -0.17, -0.13, 0.01, 0.13, -0.04, 0.013
+19720623, -0.42, 0.17, -0.08, 0.14, -0.13, 0.013
+19720626, -0.70, 0.13, 0.02, -0.06, -0.10, 0.013
+19720627, -0.12, -0.21, 0.07, 0.09, 0.09, 0.013
+19720628, -0.36, 0.07, -0.26, 0.30, -0.12, 0.013
+19720629, -0.20, -0.03, -0.24, 0.00, -0.15, 0.013
+19720630, 0.39, 0.18, 0.04, -0.08, -0.01, 0.013
+19720703, 0.34, 0.02, 0.11, -0.21, -0.15, 0.016
+19720705, 0.55, -0.11, -0.14, 0.27, -0.10, 0.016
+19720706, 0.76, -0.38, -0.35, 0.17, -0.34, 0.016
+19720707, -0.32, 0.15, -0.23, 0.10, -0.22, 0.016
+19720710, -0.55, -0.09, 0.19, -0.06, -0.17, 0.016
+19720711, -0.75, -0.04, 0.21, -0.12, 0.10, 0.016
+19720712, -0.53, -0.31, 0.46, 0.17, -0.01, 0.016
+19720713, -0.63, -0.17, 0.32, -0.13, 0.34, 0.016
+19720714, 0.47, -0.21, -0.09, -0.24, 0.17, 0.016
+19720717, -0.92, -0.03, 0.69, 0.00, 0.28, 0.016
+19720718, -0.09, -0.53, 0.30, 0.08, -0.04, 0.016
+19720719, 0.23, -0.05, -0.05, 0.04, 0.16, 0.016
+19720720, -0.34, -0.09, 0.28, 0.16, -0.06, 0.016
+19720721, 0.72, -0.08, -0.16, 0.03, 0.12, 0.016
+19720724, 1.08, 0.06, -0.52, 0.04, -0.28, 0.016
+19720725, -0.31, 0.07, 0.00, 0.21, 0.04, 0.016
+19720726, -0.10, -0.13, -0.19, 0.10, -0.28, 0.016
+19720727, -0.34, -0.36, 0.16, 0.28, 0.02, 0.016
+19720728, 0.03, -0.25, -0.04, 0.08, -0.08, 0.016
+19720731, -0.07, -0.33, -0.11, 0.05, -0.05, 0.016
+19720801, 0.93, -0.47, -0.54, 0.32, -0.14, 0.012
+19720802, 0.83, -0.39, -0.32, 0.11, 0.15, 0.012
+19720803, 0.74, -0.46, -0.23, 0.54, -0.14, 0.012
+19720804, 0.34, -0.12, -0.26, 0.09, -0.08, 0.012
+19720807, 0.11, -0.21, -0.03, -0.02, -0.01, 0.012
+19720808, 0.07, -0.28, -0.13, 0.02, -0.09, 0.012
+19720809, 0.12, 0.02, -0.05, 0.01, 0.11, 0.012
+19720810, 0.22, -0.02, 0.03, -0.12, 0.20, 0.012
+19720811, 0.82, -0.16, 0.06, -0.47, 0.20, 0.012
+19720814, 0.43, -0.21, 0.45, -0.24, 0.29, 0.012
+19720815, -0.43, 0.07, 0.67, -0.45, 0.15, 0.012
+19720816, -0.28, 0.00, 0.70, -0.26, 0.07, 0.012
+19720817, -0.22, 0.14, 0.70, -0.14, 0.08, 0.012
+19720818, 0.41, -0.07, 0.26, -0.24, 0.17, 0.012
+19720821, -0.08, -0.13, 0.81, -0.20, 0.26, 0.012
+19720822, 0.50, -0.53, 1.03, -0.51, 0.51, 0.012
+19720823, -0.15, 0.07, 0.41, -0.26, 0.10, 0.012
+19720824, -1.07, 0.17, 0.46, -0.06, 0.39, 0.012
+19720825, -0.27, -0.01, 0.17, 0.03, 0.10, 0.012
+19720828, -0.47, -0.04, 0.23, 0.07, 0.03, 0.012
+19720829, 0.13, -0.36, 0.09, -0.23, 0.21, 0.012
+19720830, 0.13, -0.24, 0.14, 0.03, 0.19, 0.012
+19720831, 0.44, -0.20, -0.02, -0.05, 0.13, 0.012
+19720901, 0.40, 0.11, -0.15, 0.19, -0.12, 0.017
+19720905, -0.29, 0.09, 0.06, 0.09, -0.05, 0.017
+19720906, -0.60, -0.06, 0.25, -0.04, 0.12, 0.017
+19720907, -0.34, -0.15, 0.35, 0.07, 0.12, 0.017
+19720908, -0.14, -0.15, 0.35, -0.20, 0.28, 0.017
+19720911, -0.69, -0.30, 0.30, 0.27, -0.16, 0.017
+19720912, -0.95, -0.10, 0.33, -0.06, 0.03, 0.017
+19720913, 0.33, -0.16, -0.15, 0.31, -0.17, 0.017
+19720914, 0.02, -0.05, -0.13, 0.29, -0.05, 0.017
+19720915, -0.10, -0.04, 0.05, -0.11, -0.03, 0.017
+19720918, -0.20, -0.04, 0.28, -0.06, -0.04, 0.017
+19720919, -0.06, -0.11, 0.20, 0.03, -0.07, 0.017
+19720920, -0.06, -0.24, -0.19, 0.18, -0.09, 0.017
+19720921, -0.19, -0.13, -0.10, 0.11, 0.03, 0.017
+19720922, 0.06, -0.09, 0.25, -0.13, -0.03, 0.017
+19720925, -0.46, -0.08, -0.02, 0.29, -0.28, 0.017
+19720926, 0.09, -0.19, -0.12, -0.04, -0.25, 0.017
+19720927, 1.38, -0.43, -0.65, 0.31, -0.07, 0.017
+19720928, 0.60, -0.25, -0.43, 0.25, -0.78, 0.017
+19720929, 0.11, 0.08, -0.03, -0.02, -0.43, 0.017
+19721002, -0.32, 0.05, 0.23, -0.11, 0.01, 0.018
+19721003, 0.07, -0.35, 0.10, 0.11, -0.12, 0.018
+19721004, -0.26, -0.47, 0.74, -0.01, 0.05, 0.018
+19721005, -1.11, -0.02, 0.64, -0.23, 0.13, 0.018
+19721006, 0.63, -0.25, -0.23, 0.08, 0.03, 0.018
+19721009, 0.22, 0.12, -0.08, -0.15, 0.12, 0.018
+19721010, 0.10, 0.07, -0.05, 0.12, 0.22, 0.018
+19721011, -0.46, -0.11, 0.13, 0.28, -0.30, 0.018
+19721012, -0.84, -0.11, 0.41, -0.01, 0.12, 0.018
+19721013, -0.68, 0.15, 0.18, -0.43, 0.27, 0.018
+19721016, -1.05, 0.24, 0.19, -0.13, -0.06, 0.018
+19721017, 0.60, -0.53, 0.28, -0.04, -0.01, 0.018
+19721018, 0.57, -0.31, -0.17, 0.04, 0.04, 0.018
+19721019, -0.12, -0.15, -0.13, 0.01, -0.11, 0.018
+19721020, 1.02, -0.40, -0.26, 0.17, -0.07, 0.018
+19721023, 0.95, -0.20, -0.19, 0.04, -0.11, 0.018
+19721024, 0.31, -0.25, -0.10, -0.12, -0.26, 0.018
+19721025, -0.04, -0.04, 0.12, 0.10, 0.01, 0.018
+19721026, 0.34, 0.09, -0.06, 0.02, -0.01, 0.018
+19721027, -0.29, 0.31, -0.16, 0.10, -0.11, 0.018
+19721030, -0.04, -0.10, -0.04, -0.09, 0.03, 0.018
+19721031, 0.94, -0.32, -0.26, 0.17, 0.08, 0.018
+19721101, 1.02, -0.33, -0.15, 0.14, 0.04, 0.019
+19721102, 0.47, -0.29, 0.11, 0.10, 0.19, 0.019
+19721103, 0.84, -0.12, 0.16, 0.15, -0.06, 0.019
+19721106, -0.17, 0.20, 0.54, -0.14, 0.32, 0.019
+19721108, -0.49, 0.03, 0.41, -0.11, 0.19, 0.019
+19721109, 0.06, -0.24, 0.63, -0.21, 0.28, 0.019
+19721110, 0.30, 0.15, 0.59, -0.26, 0.29, 0.019
+19721113, 0.09, -0.25, 0.43, -0.27, 0.10, 0.019
+19721114, 0.83, -0.60, 0.06, 0.41, -0.07, 0.019
+19721115, -0.34, 0.21, 0.01, 0.14, 0.12, 0.019
+19721116, 0.50, -0.26, 0.02, 0.11, -0.20, 0.019
+19721117, 0.31, 0.07, 0.31, -0.04, 0.18, 0.019
+19721120, 0.01, 0.10, 0.34, -0.24, -0.07, 0.019
+19721121, 0.46, -0.02, 0.26, -0.11, 0.43, 0.019
+19721122, 0.59, 0.02, 0.29, 0.04, 0.02, 0.019
+19721124, 0.27, -0.28, 0.83, -0.61, 0.44, 0.019
+19721127, -0.38, 0.01, 0.25, -0.21, 0.32, 0.019
+19721128, -0.19, 0.43, 0.25, -0.56, 0.32, 0.019
+19721129, 0.02, 0.15, -0.20, -0.10, 0.24, 0.019
+19721130, 0.26, 0.49, -0.48, -0.03, 0.18, 0.019
+19721201, 0.65, 0.31, -0.21, 0.03, -0.14, 0.020
+19721204, 0.31, 0.29, -0.26, 0.17, -0.26, 0.020
+19721205, -0.21, -0.04, -0.05, 0.35, -0.06, 0.020
+19721206, 0.32, 0.12, -0.13, 0.00, 0.22, 0.020
+19721207, 0.41, -0.16, -0.32, 0.33, -0.28, 0.020
+19721208, 0.19, -0.07, -0.70, 0.23, -0.07, 0.020
+19721211, 0.19, -0.27, -0.22, 0.01, -0.19, 0.020
+19721212, -0.41, -0.28, 0.19, -0.09, 0.13, 0.020
+19721213, -0.19, -0.46, 0.08, 0.13, 0.01, 0.020
+19721214, -0.33, -0.18, 0.10, 0.30, -0.41, 0.020
+19721215, 0.05, -0.07, -0.26, 0.12, -0.16, 0.020
+19721218, -1.08, -0.03, -0.04, 0.04, -0.05, 0.020
+19721219, -0.41, -0.06, -0.02, -0.02, -0.12, 0.020
+19721220, -0.36, -0.13, 0.04, 0.21, -0.36, 0.020
+19721221, -0.66, 0.14, 0.04, -0.07, 0.28, 0.020
+19721222, 0.54, -0.15, 0.06, 0.05, -0.09, 0.020
+19721226, 0.21, -0.40, 0.10, 0.06, 0.06, 0.020
+19721227, 0.40, -0.57, -0.19, 0.66, -0.46, 0.020
+19721229, 1.09, 0.21, -0.50, 0.09, -0.27, 0.020
+19730102, 0.87, 0.83, -0.02, -0.30, 0.38, 0.021
+19730103, 0.35, 0.19, 0.13, -0.39, 0.22, 0.021
+19730104, -0.23, 0.15, 0.15, 0.16, 0.02, 0.021
+19730105, 0.30, 0.01, -0.09, 0.19, -0.22, 0.021
+19730108, -0.03, -0.13, 0.31, -0.02, 0.35, 0.021
+19730109, -0.09, -0.18, 0.32, 0.01, 0.08, 0.021
+19730110, -0.26, -0.17, 0.61, -0.19, 0.21, 0.021
+19730111, 0.55, -0.47, 0.04, 0.07, 0.06, 0.021
+19730112, -0.85, -0.31, 0.08, 0.25, -0.11, 0.021
+19730115, -0.84, -0.28, 0.26, 0.16, 0.01, 0.021
+19730116, -0.36, -0.24, -0.02, -0.03, 0.34, 0.021
+19730117, 0.37, -0.27, 0.14, -0.22, 0.22, 0.021
+19730118, 0.13, -0.19, -0.08, 0.02, -0.19, 0.021
+19730119, -0.19, -0.18, -0.46, 0.34, -0.38, 0.021
+19730122, -0.53, -0.06, 0.09, 0.04, -0.11, 0.021
+19730123, -0.16, -0.33, -0.04, 0.43, -0.07, 0.021
+19730124, -1.39, -0.11, 0.13, 0.28, -0.34, 0.021
+19730126, -0.37, -0.53, 0.29, -0.39, -0.05, 0.021
+19730129, -0.51, -0.15, 0.23, 0.32, -0.08, 0.021
+19730130, -0.17, -0.29, 0.26, -0.04, 0.09, 0.021
+19730131, 0.12, -0.22, 0.45, -0.31, 0.56, 0.021
+19730201, -1.16, -0.11, 0.16, 0.05, -0.20, 0.022
+19730202, -0.41, -0.05, -0.08, 0.30, -0.27, 0.022
+19730205, -0.19, -0.28, -0.12, -0.11, -0.23, 0.022
+19730206, 0.19, -0.42, -0.17, 0.02, 0.05, 0.022
+19730207, -0.77, -0.02, -0.16, 0.00, -0.06, 0.022
+19730208, -0.44, -0.05, -0.44, 0.15, -0.33, 0.022
+19730209, 1.35, -0.24, -0.41, 0.12, 0.22, 0.022
+19730212, 1.07, -0.23, -0.23, -0.02, 0.20, 0.022
+19730213, 0.51, -0.38, -0.01, 0.59, 0.70, 0.022
+19730214, -1.41, 0.15, 0.43, -0.27, -0.14, 0.022
+19730215, -0.69, -0.12, 0.16, -0.08, -0.17, 0.022
+19730216, 0.36, -0.36, 0.18, -0.20, -0.27, 0.022
+19730220, 0.25, -0.46, 0.40, -0.34, 0.28, 0.022
+19730221, -0.74, -0.36, 0.55, -0.19, 0.19, 0.022
+19730222, -0.30, -0.34, 0.23, -0.16, -0.06, 0.022
+19730223, -1.08, -0.10, 0.54, -0.03, -0.07, 0.022
+19730226, -0.88, -0.44, 0.59, -0.20, 0.10, 0.022
+19730227, -1.15, -0.09, 0.65, -0.07, 0.41, 0.022
+19730228, 0.62, -0.41, -0.40, 0.00, -0.28, 0.022
+19730301, -0.70, 0.12, 0.46, -0.24, 0.27, 0.021
+19730302, 0.86, -0.87, -0.16, 0.23, -0.14, 0.021
+19730305, 0.37, -0.03, -0.46, 0.15, -0.41, 0.021
+19730306, 1.26, -0.30, -0.23, -0.01, 0.00, 0.021
+19730307, 0.37, 0.18, -0.38, 0.21, -0.30, 0.021
+19730308, -0.21, 0.17, 0.21, 0.21, 0.27, 0.021
+19730309, -0.36, 0.19, 0.07, -0.03, 0.13, 0.021
+19730312, -0.03, -0.12, 0.17, 0.10, -0.12, 0.021
+19730313, 0.42, -0.46, 0.19, 0.09, -0.19, 0.021
+19730314, 0.26, -0.49, 0.19, -0.08, -0.06, 0.021
+19730315, -0.71, 0.00, 0.41, 0.10, 0.09, 0.021
+19730316, -0.52, 0.14, 0.10, 0.11, 0.00, 0.021
+19730319, -1.23, 0.02, 0.41, -0.14, 0.00, 0.021
+19730320, -0.33, -0.32, 0.32, -0.24, 0.07, 0.021
+19730321, -1.29, 0.21, 1.05, -0.34, 0.39, 0.021
+19730322, -1.68, -0.28, 0.74, -0.58, 0.35, 0.021
+19730323, 0.00, -0.26, 0.19, -0.28, 0.03, 0.021
+19730326, 0.75, -0.27, -0.21, 0.07, -0.26, 0.021
+19730327, 1.43, -0.32, -0.51, -0.03, 0.29, 0.021
+19730328, 0.03, 0.08, -0.02, 0.06, 0.21, 0.021
+19730329, 0.98, -0.33, 0.08, -0.32, 0.20, 0.021
+19730330, -0.92, 0.63, 0.08, -0.05, -0.18, 0.021
+19730402, -1.20, 0.07, 0.64, 0.02, 0.34, 0.026
+19730403, -1.00, 0.05, 0.37, -0.09, -0.02, 0.026
+19730404, -0.63, 0.04, 0.34, -0.04, 0.31, 0.026
+19730405, -0.47, -0.40, 0.29, 0.01, 0.12, 0.026
+19730406, 0.70, -0.38, -0.24, 0.04, 0.04, 0.026
+19730409, 1.26, -0.89, 0.05, -0.18, 0.02, 0.026
+19730410, 1.11, -0.59, -0.03, -0.10, 0.10, 0.026
+19730411, 0.39, -0.25, 0.33, 0.05, -0.21, 0.026
+19730412, -0.09, 0.17, 0.37, -0.07, 0.40, 0.026
+19730413, -0.42, 0.27, 0.26, -0.18, 0.34, 0.026
+19730416, -0.56, 0.12, 0.22, -0.18, 0.59, 0.026
+19730417, -0.59, -0.12, 0.78, -0.05, 0.68, 0.026
+19730418, 0.34, -0.66, 0.07, -0.18, -0.08, 0.026
+19730419, 0.53, -0.16, 0.20, -0.18, 0.02, 0.026
+19730423, -0.58, -0.03, 0.02, -0.10, -0.10, 0.026
+19730424, -1.51, -0.02, 0.62, 0.17, 0.17, 0.026
+19730425, -1.56, -0.09, 1.04, -0.46, 0.13, 0.026
+19730426, 0.32, -0.35, 0.03, 0.06, -0.04, 0.026
+19730427, -1.54, 0.32, 0.49, -0.02, -0.03, 0.026
+19730430, -0.24, -0.33, 0.16, -0.25, 0.06, 0.026
+19730501, 0.02, -0.32, 0.02, -0.01, -0.28, 0.023
+19730502, 1.18, -0.46, -0.43, 0.48, -0.15, 0.023
+19730503, 1.46, -0.78, -0.12, 0.05, 0.05, 0.023
+19730504, 0.76, 0.07, -0.55, 0.05, -0.01, 0.023
+19730507, -0.43, 0.15, 0.16, 0.06, -0.27, 0.023
+19730508, 0.58, -0.22, -0.11, -0.01, 0.21, 0.023
+19730509, -0.51, 0.45, -0.34, -0.07, -0.01, 0.023
+19730510, -0.68, 0.20, 0.00, 0.29, -0.08, 0.023
+19730511, -1.17, 0.20, 0.25, -0.16, -0.20, 0.023
+19730514, -2.19, -0.06, 0.85, -0.21, 0.25, 0.023
+19730515, 0.42, -1.09, -0.02, -0.07, -0.05, 0.023
+19730516, -0.13, -0.34, 0.40, 0.10, 0.06, 0.023
+19730517, -0.89, -0.06, 0.30, 0.02, 0.24, 0.023
+19730518, -1.88, -0.98, 0.27, 0.29, -0.49, 0.023
+19730521, -1.49, -2.35, 0.13, 0.52, -0.52, 0.023
+19730522, 0.75, -0.59, -0.26, 0.36, -0.04, 0.023
+19730523, 0.40, -0.51, -0.08, -0.01, -0.15, 0.023
+19730524, 2.79, -1.09, -0.91, 0.31, -0.49, 0.023
+19730525, 0.94, 1.27, -0.41, -0.30, 0.35, 0.023
+19730529, -0.32, 0.52, -0.14, 0.01, 0.03, 0.023
+19730530, -1.53, -0.01, 0.64, 0.32, -0.08, 0.023
+19730531, -0.91, -0.32, 0.54, -0.02, -0.12, 0.023
+19730601, -0.95, -0.13, 0.68, -0.33, 0.44, 0.024
+19730604, -1.14, -0.36, 0.55, -0.19, -0.17, 0.024
+19730605, 1.36, -0.76, -0.70, 0.21, -0.29, 0.024
+19730606, -0.27, 0.03, -0.12, 0.44, -0.36, 0.024
+19730607, 1.30, -0.66, -0.26, 0.17, -0.32, 0.024
+19730608, 1.08, 0.03, -0.20, -0.18, 0.57, 0.024
+19730611, -0.31, 0.38, 0.38, -0.14, -0.16, 0.024
+19730612, 1.44, -0.67, -0.56, -0.17, 0.05, 0.024
+19730613, -0.49, 1.02, 0.06, -0.19, 0.63, 0.024
+19730614, -1.06, 0.36, 0.11, 0.13, -0.25, 0.024
+19730615, -1.26, 0.14, 0.71, 0.02, -0.25, 0.024
+19730618, -1.44, -0.09, 0.30, -0.17, -0.05, 0.024
+19730619, 0.24, -0.44, -0.27, 0.12, -0.20, 0.024
+19730620, 0.38, -0.25, -0.34, 0.01, 0.06, 0.024
+19730621, -1.14, 0.30, 0.49, 0.08, -0.43, 0.024
+19730622, 0.40, -0.45, 0.38, 0.15, 0.53, 0.024
+19730625, -1.43, -0.42, 1.10, -0.45, 0.38, 0.024
+19730626, 0.89, -0.65, -0.37, 0.11, 0.09, 0.024
+19730627, 0.30, -0.21, -0.11, -0.20, -0.03, 0.024
+19730628, 0.99, -0.22, -0.55, 0.21, -0.10, 0.024
+19730629, -0.34, 0.44, 0.11, 0.07, 0.15, 0.024
+19730702, -1.20, 0.63, 0.59, -0.25, 0.20, 0.030
+19730703, -0.92, 0.45, 0.91, -0.69, 0.66, 0.030
+19730705, -0.18, -0.07, 0.19, -0.12, 0.20, 0.030
+19730706, -0.43, 0.30, 0.36, -0.35, 0.17, 0.030
+19730709, 0.80, -0.51, -0.32, -0.17, -0.26, 0.030
+19730710, 1.38, 0.09, -0.63, 0.11, -0.43, 0.030
+19730711, 2.17, 0.22, -0.72, 0.07, -0.46, 0.030
+19730712, -0.06, 0.89, -0.43, 0.20, -0.80, 0.030
+19730713, -1.09, 1.01, 0.10, -0.37, -0.05, 0.030
+19730716, 1.50, -0.10, -1.14, 0.17, -0.64, 0.030
+19730717, 0.28, 0.72, -0.53, 0.07, -0.40, 0.030
+19730718, 0.79, 0.66, -0.51, 0.04, -0.24, 0.030
+19730719, 0.37, 0.66, -0.69, 0.37, -0.23, 0.030
+19730720, 0.66, 0.72, -0.60, 0.20, -0.17, 0.030
+19730723, 0.29, 0.55, -0.13, 0.07, -0.11, 0.030
+19730724, 0.55, -0.09, -0.55, -0.11, -0.08, 0.030
+19730725, 1.36, 0.16, -0.98, 0.36, -0.49, 0.030
+19730726, 0.11, 0.20, -0.28, 0.36, 0.04, 0.030
+19730727, -0.24, 0.05, 0.03, 0.12, 0.12, 0.030
+19730730, -0.33, -0.10, 0.26, 0.02, -0.05, 0.030
+19730731, -0.85, 0.19, 0.20, -0.20, -0.07, 0.030
+19730801, -1.31, -0.20, 0.41, -0.13, 0.02, 0.030
+19730802, -0.12, -0.14, -0.22, 0.10, -0.16, 0.030
+19730803, -0.10, 0.27, -0.20, 0.04, -0.18, 0.030
+19730806, 0.27, 0.10, -0.36, -0.01, -0.29, 0.030
+19730807, -0.17, 0.11, -0.25, 0.09, -0.03, 0.030
+19730808, -0.97, 0.05, 0.23, -0.01, 0.07, 0.030
+19730809, -0.03, -0.32, 0.11, -0.10, 0.22, 0.030
+19730810, -0.80, -0.12, 0.33, 0.09, 0.29, 0.030
+19730813, -1.08, -0.27, 0.26, -0.05, 0.15, 0.030
+19730814, -0.93, -0.13, 0.31, -0.39, 0.38, 0.030
+19730815, 0.24, -0.26, 0.00, -0.14, 0.03, 0.030
+19730816, -0.52, 0.39, 0.50, -0.21, 0.41, 0.030
+19730817, 0.02, -0.08, 0.31, -0.41, -0.06, 0.030
+19730820, -0.75, -0.10, 0.45, -0.06, 0.26, 0.030
+19730821, -0.78, -0.03, 0.01, -0.06, 0.10, 0.030
+19730822, -0.48, -0.25, 0.04, 0.21, 0.22, 0.030
+19730823, 1.28, -0.48, -0.52, 0.19, 0.04, 0.030
+19730824, -0.14, 0.03, 0.19, -0.27, -0.01, 0.030
+19730827, 0.68, -0.44, -0.54, 0.39, -0.21, 0.030
+19730828, 0.47, -0.34, 0.04, -0.12, 0.29, 0.030
+19730829, 0.89, -0.10, 0.00, -0.26, -0.39, 0.030
+19730830, 0.01, 0.36, 0.19, -0.02, 0.00, 0.030
+19730831, 0.50, 0.15, -0.17, -0.22, 0.01, 0.030
+19730904, 0.37, 0.03, 0.30, -0.49, 0.32, 0.036
+19730905, 0.19, 0.00, 0.06, -0.29, 0.14, 0.036
+19730906, 0.48, 0.00, 0.49, -0.35, 0.13, 0.036
+19730907, -0.18, 0.58, 0.12, 0.14, 0.22, 0.036
+19730910, -0.88, 0.57, 0.43, 0.04, 0.37, 0.036
+19730911, -0.58, 0.03, 0.19, -0.22, 0.04, 0.036
+19730912, -0.24, -0.02, 0.01, 0.32, -0.18, 0.036
+19730913, 0.29, -0.05, -0.65, 0.14, -0.46, 0.036
+19730914, 0.89, -0.08, -0.76, 0.34, -0.15, 0.036
+19730917, -0.04, 0.55, 0.22, -0.28, -0.26, 0.036
+19730918, -0.23, 0.21, 0.32, -0.51, 0.33, 0.036
+19730919, 1.93, -0.38, -0.72, 0.16, -0.07, 0.036
+19730920, 0.92, 0.25, -0.08, -0.21, -0.34, 0.036
+19730921, 0.51, 0.26, 0.55, -0.30, 0.29, 0.036
+19730924, 0.29, 0.52, 0.83, -0.31, 0.41, 0.036
+19730925, 0.50, 0.01, 0.33, 0.14, 0.27, 0.036
+19730926, 0.70, 0.29, 0.29, -0.14, 0.50, 0.036
+19730927, 0.23, 0.06, 0.05, -0.17, 0.21, 0.036
+19730928, -0.48, 0.48, 0.15, -0.21, -0.04, 0.036
+19731001, -0.16, 0.66, 0.70, -0.30, 0.56, 0.028
+19731002, 0.58, 0.73, -0.13, -0.03, 0.07, 0.028
+19731003, 0.08, 0.78, 0.62, -0.59, 0.55, 0.028
+19731004, -0.39, 0.19, 0.43, -0.24, 0.29, 0.028
+19731005, 1.19, -0.06, -0.26, 0.09, 0.00, 0.028
+19731008, 0.44, 0.20, -0.19, -0.68, 0.17, 0.028
+19731009, -0.10, -0.08, -0.08, -0.24, -0.02, 0.028
+19731010, -1.16, -0.61, -0.27, 0.50, 0.05, 0.028
+19731011, 1.65, 0.12, -0.54, 0.30, -0.32, 0.028
+19731012, 0.37, 0.15, -0.17, 0.00, -0.26, 0.028
+19731015, -1.17, 0.11, 0.12, -0.05, 0.18, 0.028
+19731016, -0.01, -0.39, -0.28, -0.03, -0.16, 0.028
+19731017, -0.29, -0.14, 0.13, -0.17, 0.32, 0.028
+19731018, -0.01, -0.33, 0.02, -0.10, 0.15, 0.028
+19731019, 0.20, 0.07, 0.28, -0.04, 0.12, 0.028
+19731022, -1.07, -0.29, 0.47, 0.16, -0.10, 0.028
+19731023, 0.35, -0.40, -0.11, 0.18, 0.37, 0.028
+19731024, 0.29, -0.30, 0.05, 0.00, 0.44, 0.028
+19731025, 0.15, -0.22, -0.02, -0.10, -0.26, 0.028
+19731026, 0.72, -0.29, 0.08, -0.14, 0.22, 0.028
+19731029, -0.26, -0.15, 0.27, -0.19, 0.02, 0.028
+19731030, -1.52, -0.04, 0.57, -0.26, 0.10, 0.028
+19731031, -0.88, 0.05, 0.05, -0.08, 0.09, 0.028
+19731101, -0.58, -0.11, -0.21, 0.07, 0.06, 0.026
+19731102, -0.56, -0.30, 0.11, -0.08, -0.03, 0.026
+19731105, -1.59, -0.28, 0.28, 0.08, 0.03, 0.026
+19731106, -0.72, -0.49, 0.31, 0.04, 0.15, 0.026
+19731107, 0.63, -0.81, 0.59, -0.43, 0.41, 0.026
+19731108, 1.08, -0.09, -0.37, 0.06, 0.03, 0.026
+19731109, -1.48, 0.05, 0.70, -0.45, 0.36, 0.026
+19731112, -0.97, -0.69, -0.08, -0.27, -0.19, 0.026
+19731113, -0.29, -0.93, -0.30, -0.04, -0.42, 0.026
+19731114, -1.87, -0.37, 0.40, -0.03, -0.05, 0.026
+19731115, -0.13, -0.68, 0.30, -0.30, -0.02, 0.026
+19731116, 1.13, -0.59, 0.18, 0.46, 0.52, 0.026
+19731119, -3.03, -0.14, 1.18, -0.57, 0.21, 0.026
+19731120, -2.26, -1.39, 0.13, 0.09, -0.26, 0.026
+19731121, 1.06, -0.77, -0.07, -0.55, 0.22, 0.026
+19731123, -0.14, 0.33, 0.64, -0.58, 0.36, 0.026
+19731126, -3.01, -1.20, 0.96, -0.08, 0.07, 0.026
+19731127, -0.94, -0.38, 0.05, 0.04, -0.09, 0.026
+19731128, 1.98, 0.06, -0.87, 0.18, 0.08, 0.026
+19731129, -0.35, 0.09, 0.13, -0.44, 0.25, 0.026
+19731130, -1.35, 0.16, 0.73, -0.45, 0.12, 0.026
+19731203, -2.06, -0.32, 0.18, -0.07, 0.00, 0.032
+19731204, -0.42, -0.47, -0.26, -0.12, -0.27, 0.032
+19731205, -1.74, -0.61, 0.16, -0.15, 0.36, 0.032
+19731206, 2.25, -1.09, -0.38, 0.20, -0.33, 0.032
+19731207, 2.19, 0.34, 0.72, -0.70, 0.70, 0.032
+19731210, 1.50, -0.39, -0.39, -0.07, -0.08, 0.032
+19731211, -1.81, 0.23, 0.80, 0.07, 0.28, 0.032
+19731212, -2.60, -0.04, 0.67, -0.58, 0.33, 0.032
+19731213, -1.48, -0.22, 0.89, -0.04, 0.48, 0.032
+19731214, 0.97, -0.57, 0.08, -0.25, 0.23, 0.032
+19731217, -0.66, -0.02, 0.59, -0.21, 0.57, 0.032
+19731218, 1.88, -1.04, -0.42, 0.23, -0.39, 0.032
+19731219, -0.02, -0.32, 0.18, -0.26, 0.08, 0.032
+19731220, -0.30, 0.12, 0.53, -0.67, 0.33, 0.032
+19731221, -0.96, 0.33, 0.87, -0.21, 0.03, 0.032
+19731224, -0.63, 0.47, 0.94, -0.82, 0.51, 0.032
+19731226, 2.71, -1.15, -0.85, 0.69, -0.49, 0.032
+19731227, 1.96, -0.48, -0.72, 0.35, 0.08, 0.032
+19731228, -0.11, 0.02, 0.17, 0.12, 0.04, 0.032
+19731231, 0.20, 0.57, 0.16, -0.28, -0.32, 0.032
+19740102, 0.26, 1.39, 1.20, -0.98, 0.57, 0.028
+19740103, 2.32, 1.59, 0.93, -1.11, 1.09, 0.028
+19740104, -0.56, 1.79, 1.54, -1.12, 1.17, 0.028
+19740107, -0.52, 1.47, 1.05, -0.91, 0.78, 0.028
+19740108, -1.77, 1.00, 0.84, -0.52, 0.51, 0.028
+19740109, -2.73, 0.71, 0.52, 0.01, 0.21, 0.028
+19740110, -1.07, 0.21, -0.18, 0.44, -0.14, 0.028
+19740111, 1.16, -0.23, 0.25, -0.10, 0.16, 0.028
+19740114, -0.14, 0.09, 0.54, -0.33, 0.21, 0.028
+19740115, 0.75, -0.39, -0.01, 0.14, 0.20, 0.028
+19740116, 1.43, -0.51, -0.22, 0.09, -0.24, 0.028
+19740117, 1.67, 0.03, -0.84, 0.77, -0.41, 0.028
+19740118, -1.55, 1.07, -0.04, 0.08, -0.46, 0.028
+19740121, -0.27, -0.27, -0.17, 0.32, 0.00, 0.028
+19740122, 0.98, -0.31, -0.20, 0.62, 0.02, 0.028
+19740123, 0.49, 0.37, -0.35, 0.09, -0.23, 0.028
+19740124, -0.25, 0.51, 0.32, -0.26, -0.03, 0.028
+19740125, -0.11, 0.49, -0.28, -0.15, -0.24, 0.028
+19740128, -0.50, 0.52, 0.15, 0.15, 0.48, 0.028
+19740129, -0.16, 0.00, 0.48, -0.08, 0.41, 0.028
+19740130, 1.01, -0.14, 0.00, 0.06, 0.17, 0.028
+19740131, -0.45, 0.44, 0.11, -0.04, 0.05, 0.028
+19740201, -1.23, 0.56, 0.23, -0.08, 0.05, 0.031
+19740204, -1.96, 0.05, 0.09, -0.16, 0.30, 0.031
+19740205, -0.40, -0.05, 0.48, -0.27, 0.35, 0.031
+19740206, 0.29, -0.16, 0.11, 0.07, 0.37, 0.031
+19740207, 0.12, 0.16, 0.45, -0.15, 0.09, 0.031
+19740208, -0.95, 0.40, 0.66, -0.29, 0.28, 0.031
+19740211, -1.76, 0.56, 0.81, -0.31, 0.41, 0.031
+19740212, 0.04, -0.48, 0.27, -0.10, 0.16, 0.031
+19740213, -0.04, -0.14, 0.15, -0.03, 0.31, 0.031
+19740214, -0.01, 0.27, 0.11, -0.25, -0.01, 0.031
+19740215, 1.30, -0.39, -0.39, 0.34, 0.09, 0.031
+19740219, -0.13, -0.07, 0.07, 0.13, -0.41, 0.031
+19740220, 1.24, -0.60, -0.27, 0.22, 0.12, 0.031
+19740221, 1.24, -0.51, -0.11, -0.31, 0.33, 0.031
+19740222, 0.82, -0.06, 0.40, -0.40, 0.43, 0.031
+19740225, -0.26, 0.29, 0.25, -0.20, 0.03, 0.031
+19740226, 0.98, -0.14, 0.02, -0.27, 0.17, 0.031
+19740227, 0.49, 0.29, -0.58, -0.05, -0.53, 0.031
+19740228, -0.14, 0.17, -0.28, 0.20, 0.02, 0.031
+19740301, -0.61, 0.73, 0.32, -0.04, 0.12, 0.026
+19740304, 0.01, 0.21, -0.05, 0.01, -0.07, 0.026
+19740305, 1.76, -0.44, -0.80, 0.90, -0.21, 0.026
+19740306, 0.56, 0.37, -0.70, 0.80, -0.17, 0.026
+19740307, -0.94, 0.72, 0.27, -0.15, -0.17, 0.026
+19740308, 0.75, -0.26, -0.31, 0.42, -0.17, 0.026
+19740311, 1.01, -0.34, -0.37, 0.50, 0.24, 0.026
+19740312, 0.18, -0.08, -0.08, 0.35, -0.34, 0.026
+19740313, 0.55, -0.09, -0.42, 0.21, -0.28, 0.026
+19740314, 0.04, 0.39, -0.22, 0.19, 0.00, 0.026
+19740315, -0.29, 0.39, -0.03, 0.16, -0.10, 0.026
+19740318, -1.29, 0.65, 0.44, -0.13, 0.06, 0.026
+19740319, -0.84, 0.09, 0.19, -0.28, 0.13, 0.026
+19740320, 0.26, -0.20, -0.25, 0.21, 0.13, 0.026
+19740321, -0.23, 0.03, 0.14, 0.22, 0.30, 0.026
+19740322, -0.11, -0.06, -0.06, 0.02, 0.24, 0.026
+19740325, 0.19, -0.42, -0.33, 0.35, -0.36, 0.026
+19740326, 0.21, -0.10, 0.32, 0.11, -0.11, 0.026
+19740327, -1.35, 0.44, 0.64, -0.31, 0.28, 0.026
+19740328, -1.85, 0.30, 0.48, -0.20, 0.32, 0.026
+19740329, -0.81, 0.32, 0.65, -0.37, 0.50, 0.026
+19740401, -0.79, 0.34, 0.34, -0.08, 0.31, 0.036
+19740402, 0.00, -0.06, 0.01, 0.08, 0.18, 0.036
+19740403, 0.81, -0.57, -0.28, 0.34, -0.05, 0.036
+19740404, -0.08, 0.00, 0.03, 0.29, -0.02, 0.036
+19740405, -1.40, 0.64, 0.38, 0.08, 0.28, 0.036
+19740408, -1.04, -0.05, 0.25, 0.08, 0.36, 0.036
+19740409, 0.49, -0.37, -0.02, 0.11, -0.04, 0.036
+19740410, -0.21, 0.07, 0.35, -0.19, 0.23, 0.036
+19740411, -0.27, 0.19, 0.22, -0.13, -0.05, 0.036
+19740415, -0.17, -0.01, 0.25, -0.20, 0.22, 0.036
+19740416, 1.56, -0.64, -0.29, 0.40, -0.26, 0.036
+19740417, 0.67, -0.17, -0.16, 0.52, -0.18, 0.036
+19740418, 0.35, -0.05, 0.04, 0.04, -0.12, 0.036
+19740419, -1.05, 0.39, 0.05, -0.06, 0.07, 0.036
+19740422, -0.41, -0.02, 0.09, -0.06, 0.01, 0.036
+19740423, -1.83, 0.08, 0.10, 0.69, 0.81, 0.036
+19740424, -1.73, 0.15, 0.31, 0.22, 0.17, 0.036
+19740425, -0.97, -0.31, 0.03, 0.23, -0.02, 0.036
+19740426, 0.57, -0.19, -0.09, 0.28, 0.12, 0.036
+19740429, -0.08, 0.12, -0.23, 0.01, -0.14, 0.036
+19740430, 0.26, -0.16, -0.32, 0.29, 0.04, 0.036
+19740501, 1.95, -0.96, -0.54, 0.23, 0.15, 0.034
+19740502, -0.10, 0.23, -0.12, -0.01, -0.27, 0.034
+19740503, -0.84, 0.29, 0.32, -0.04, 0.23, 0.034
+19740506, -0.16, -0.24, -0.13, 0.36, 0.06, 0.034
+19740507, 0.18, -0.34, -0.15, 0.51, -0.11, 0.034
+19740508, 0.01, -0.07, -0.34, 0.36, 0.07, 0.034
+19740509, 1.07, -0.80, -0.26, 0.50, 0.19, 0.034
+19740510, -1.63, 0.67, 0.36, -0.10, 0.52, 0.034
+19740513, -0.96, -0.20, 0.20, 0.12, 0.52, 0.034
+19740514, -0.03, -0.18, -0.21, 0.28, -0.12, 0.034
+19740515, -0.23, -0.15, -0.16, 0.23, -0.27, 0.034
+19740516, -0.66, 0.38, -0.01, -0.02, -0.37, 0.034
+19740517, -1.79, 0.28, 0.30, 0.20, 0.26, 0.034
+19740520, -0.48, -0.29, -0.23, 0.34, -0.17, 0.034
+19740521, -0.03, -0.64, -0.67, 0.81, -0.62, 0.034
+19740522, -1.00, -0.14, -0.18, 0.57, -0.28, 0.034
+19740523, 0.01, -0.84, -0.34, 0.63, -0.51, 0.034
+19740524, 1.52, -0.45, -0.33, 0.12, 0.06, 0.034
+19740528, -0.24, 0.05, 0.23, -0.03, 0.22, 0.034
+19740529, -1.62, 0.55, -0.02, 0.52, 0.23, 0.034
+19740530, 0.54, -0.68, 0.12, -0.36, 0.34, 0.034
+19740531, -0.14, 0.13, -0.01, 0.14, -0.15, 0.034
+19740603, 1.86, -0.79, -0.19, -0.04, 0.26, 0.030
+19740604, 1.22, 0.00, 0.06, -0.01, 0.01, 0.030
+19740605, 0.27, 0.20, 0.18, -0.23, -0.08, 0.030
+19740606, 1.70, -0.67, -0.68, 0.29, -0.57, 0.030
+19740607, 0.66, 0.29, 0.06, -0.29, 0.23, 0.030
+19740610, 0.55, -0.16, -0.30, 0.27, 0.28, 0.030
+19740611, -0.85, 0.40, -0.10, 0.09, 0.17, 0.030
+19740612, -0.38, -0.15, -0.19, 0.42, 0.09, 0.030
+19740613, 0.21, 0.13, -0.48, 0.19, -0.25, 0.030
+19740614, -1.03, 0.40, 0.28, -0.09, 0.08, 0.030
+19740617, -1.36, 0.45, 0.42, 0.04, 0.39, 0.030
+19740618, -0.69, 0.12, 0.05, 0.13, 0.11, 0.030
+19740619, -0.75, 0.14, 0.23, -0.09, 0.50, 0.030
+19740620, -0.83, 0.05, 0.17, 0.14, 0.34, 0.030
+19740621, -0.97, 0.12, 0.04, -0.01, -0.03, 0.030
+19740624, 0.07, -0.34, 0.06, -0.11, 0.25, 0.030
+19740625, 1.26, -0.79, -0.23, 0.05, -0.25, 0.030
+19740626, -1.57, 0.48, 0.91, -0.37, 0.65, 0.030
+19740627, -1.55, 0.13, 0.37, 0.23, 0.77, 0.030
+19740628, -0.58, -0.14, 0.00, 0.02, 0.14, 0.030
+19740701, -0.18, -0.37, 0.12, -0.29, -0.04, 0.032
+19740702, -2.13, 0.43, 0.71, 0.23, 0.79, 0.032
+19740703, -0.16, -0.48, 0.22, -0.04, 0.11, 0.032
+19740705, -0.57, 0.21, 0.25, -0.34, 0.37, 0.032
+19740708, -3.21, 0.18, 0.82, -0.02, 0.79, 0.032
+19740709, 0.24, -0.71, -0.29, 0.24, -0.01, 0.032
+19740710, -1.75, 0.61, 0.54, -0.37, 0.50, 0.032
+19740711, -0.14, -0.41, -0.33, 0.07, -0.10, 0.032
+19740712, 4.01, -1.15, -0.26, 0.33, -0.77, 0.032
+19740715, 0.79, 0.21, 0.17, 0.00, -0.43, 0.032
+19740716, -1.04, 0.54, 0.17, -0.50, 0.34, 0.032
+19740717, 1.08, -0.47, -0.14, -0.29, -0.08, 0.032
+19740718, 0.18, 0.63, 0.68, -0.26, 0.19, 0.032
+19740719, -0.11, 0.18, 0.16, -0.31, 0.27, 0.032
+19740722, 0.29, -0.08, -0.22, 0.36, -0.17, 0.032
+19740723, 1.03, -0.11, 0.32, -0.60, 0.30, 0.032
+19740724, 0.35, -0.12, 0.45, -0.34, 0.56, 0.032
+19740725, -1.20, 0.81, 0.61, -0.69, 0.94, 0.032
+19740726, -1.73, 1.04, 0.66, -0.12, 0.60, 0.032
+19740729, -1.80, 0.44, 0.24, 0.02, 0.11, 0.032
+19740730, -0.56, 0.04, -0.23, -0.19, 0.24, 0.032
+19740731, -1.51, 0.61, 0.72, -0.30, 0.29, 0.032
+19740801, -0.66, 0.07, 0.38, -0.08, 0.24, 0.027
+19740802, -0.25, -0.01, 0.23, -0.24, 0.43, 0.027
+19740805, 0.87, -0.50, -0.03, -0.18, -0.04, 0.027
+19740806, 1.55, -0.40, -0.68, 0.48, -0.36, 0.027
+19740807, 2.48, -0.88, -0.02, 0.38, -0.11, 0.027
+19740808, -1.21, 1.61, 0.53, -0.30, 0.42, 0.027
+19740809, -0.66, 0.74, 0.34, 0.03, 0.23, 0.027
+19740812, -1.17, 0.57, 0.31, -0.57, 0.43, 0.027
+19740813, -1.66, 0.41, 0.75, -0.26, 0.86, 0.027
+19740814, -2.19, 0.72, 0.34, -0.28, 0.80, 0.027
+19740815, -0.58, -0.15, 0.26, 0.19, -0.03, 0.027
+19740816, -0.85, 0.46, 0.59, -0.13, 0.27, 0.027
+19740819, -1.44, 0.05, 0.45, -0.23, 0.59, 0.027
+19740820, 0.39, -0.36, -0.04, 0.14, -0.09, 0.027
+19740821, -1.78, 0.69, 0.90, -0.67, 0.93, 0.027
+19740822, -1.11, -0.40, 0.38, 0.30, 0.33, 0.027
+19740823, -1.62, 0.41, 0.69, -0.09, 0.19, 0.027
+19740826, 0.70, -1.14, -0.97, 0.27, -0.63, 0.027
+19740827, -1.56, 0.45, -0.44, -0.08, 0.34, 0.027
+19740828, -0.33, -0.43, -0.70, 0.49, -0.77, 0.027
+19740829, -1.26, -0.35, -0.66, 0.64, -0.67, 0.027
+19740830, 2.79, -1.33, 0.06, -0.10, -0.67, 0.027
+19740903, -2.18, 0.79, 0.80, -0.35, 1.01, 0.040
+19740904, -2.69, 0.00, 0.61, -0.35, 0.54, 0.040
+19740905, 2.90, -2.03, -0.87, 0.54, -0.88, 0.040
+19740906, 0.75, 0.02, 0.56, -0.62, 0.44, 0.040
+19740909, -2.28, 0.62, 0.61, -0.17, 0.97, 0.040
+19740910, -0.79, -0.38, 0.37, 0.01, 0.31, 0.040
+19740911, -0.89, -0.09, -0.11, -0.20, 0.27, 0.040
+19740912, -2.56, 0.01, 0.76, -0.24, 0.98, 0.040
+19740913, -2.24, 0.40, 0.29, -0.47, 0.60, 0.040
+19740916, 1.40, -1.74, -0.95, 0.14, -0.74, 0.040
+19740917, 1.64, -0.33, 0.48, -0.16, -0.18, 0.040
+19740918, 0.36, -0.48, -0.37, 0.27, -0.05, 0.040
+19740919, 3.34, -0.81, -0.29, -0.42, 0.00, 0.040
+19740920, 0.31, 0.53, 0.33, -0.71, 0.07, 0.040
+19740923, -0.79, 0.79, 0.65, -0.81, 0.49, 0.040
+19740924, -1.84, 0.83, 0.62, -0.13, 0.65, 0.040
+19740925, -0.41, 0.85, 0.38, -0.38, 0.41, 0.040
+19740926, -1.64, 0.67, 0.63, -0.16, 0.53, 0.040
+19740927, -2.11, 1.15, 0.88, -0.56, 0.89, 0.040
+19740930, -2.37, 0.60, 0.53, 0.12, 0.03, 0.040
+19741001, -0.23, -0.42, -0.02, 0.18, -0.33, 0.022
+19741002, 0.06, 0.40, 0.16, -0.47, 0.48, 0.022
+19741003, -1.67, 0.79, 0.33, -0.22, 0.19, 0.022
+19741004, 0.07, -0.21, 0.29, -0.43, 0.47, 0.022
+19741007, 3.77, -1.82, -0.08, -0.24, -0.36, 0.022
+19741008, -0.12, 0.83, 0.01, -0.23, 0.01, 0.022
+19741009, 4.23, -2.37, -1.40, 0.74, -0.30, 0.022
+19741010, 2.96, -0.37, -1.20, 0.11, -0.81, 0.022
+19741011, 2.01, -0.46, -0.82, 0.66, -0.76, 0.022
+19741014, 2.28, -0.28, -0.76, 0.25, -0.98, 0.022
+19741015, -1.63, 0.81, -0.09, 0.36, 0.11, 0.022
+19741016, -1.42, 0.86, -0.09, -0.43, -0.06, 0.022
+19741017, 1.08, -0.40, -0.75, 0.09, 0.04, 0.022
+19741018, 1.38, -0.66, -0.92, -0.06, -0.07, 0.022
+19741021, 1.69, -1.06, -1.28, 0.09, -0.49, 0.022
+19741022, -0.30, 0.55, -0.28, -0.01, 0.39, 0.022
+19741023, -2.52, 1.31, 0.33, -0.46, 0.47, 0.022
+19741024, -1.20, -0.29, 0.10, -0.07, -0.27, 0.022
+19741025, -0.05, -0.05, 0.00, -0.39, 0.25, 0.022
+19741028, -0.09, -0.34, -0.35, 0.09, 0.22, 0.022
+19741029, 3.42, -2.39, -1.12, 0.73, -0.45, 0.022
+19741030, 1.94, -1.06, -1.00, 0.19, -0.45, 0.022
+19741031, -0.32, 0.29, -0.07, -0.50, 0.12, 0.022
+19741101, -0.03, 0.15, 0.06, -0.33, 0.24, 0.027
+19741104, -0.95, 0.20, -0.10, 0.09, 0.29, 0.027
+19741105, 2.56, -1.18, -1.44, 0.24, -1.04, 0.027
+19741106, -0.12, 0.13, 0.22, -0.31, 0.11, 0.027
+19741107, 0.74, -0.27, -0.14, -0.06, -0.11, 0.027
+19741108, -0.21, 0.36, 0.47, -0.59, 0.48, 0.027
+19741111, 0.32, 0.30, 0.45, -0.52, 0.43, 0.027
+19741112, -1.95, 0.62, 0.53, 0.15, 0.48, 0.027
+19741113, -0.49, -0.08, 0.01, -0.41, 0.41, 0.027
+19741114, -0.29, -0.18, 0.60, -0.55, 0.59, 0.027
+19741115, -1.44, 0.72, 0.50, -0.54, 0.51, 0.027
+19741118, -3.57, 0.80, 0.82, -0.23, 0.72, 0.027
+19741119, -1.65, -0.13, 0.29, -0.26, 0.21, 0.027
+19741120, -0.45, -0.25, 0.13, 0.03, 0.01, 0.027
+19741121, 0.49, -0.62, -0.87, 0.15, -0.57, 0.027
+19741122, 1.08, -0.62, -0.16, -0.23, 0.01, 0.027
+19741125, -0.10, -0.29, -0.54, 0.44, -0.05, 0.027
+19741126, 0.95, -0.66, -0.69, -0.38, -0.16, 0.027
+19741127, 0.60, -0.26, -0.15, -0.11, 0.37, 0.027
+19741129, 0.07, -0.24, -0.27, -0.12, 0.06, 0.027
+19741202, -2.51, 0.71, 0.58, -0.30, 0.68, 0.033
+19741203, -1.47, -0.05, 0.03, 0.19, 0.32, 0.033
+19741204, 0.20, -0.77, -0.06, -0.16, 0.44, 0.033
+19741205, -1.94, 0.31, 0.72, -0.20, 0.69, 0.033
+19741206, -1.75, 0.08, 0.03, -0.22, 0.27, 0.033
+19741209, 0.53, -1.60, -0.68, 0.76, -0.50, 0.033
+19741210, 2.27, -1.60, -0.53, 0.30, -0.25, 0.033
+19741211, 0.64, -0.52, 0.20, 0.06, -0.09, 0.033
+19741212, -0.41, -0.03, 0.12, 0.15, 0.33, 0.033
+19741213, -0.58, 0.06, 0.09, -0.22, 0.65, 0.033
+19741216, -0.92, 0.09, 0.38, -0.39, 0.79, 0.033
+19741217, 1.32, -1.50, -0.88, 0.68, -0.06, 0.033
+19741218, 0.46, -0.09, -0.05, -0.35, -0.07, 0.033
+19741219, -0.37, 0.13, 0.08, -0.40, 0.03, 0.033
+19741220, -1.15, 0.48, 0.46, -0.19, 0.71, 0.033
+19741223, -1.47, 0.23, 0.18, -0.15, 0.02, 0.033
+19741224, 1.30, -0.76, -0.18, 0.26, -0.34, 0.033
+19741226, 0.87, -0.19, -0.06, -0.04, -0.01, 0.033
+19741227, -0.42, 0.36, 0.01, -0.16, 0.25, 0.033
+19741230, -0.08, -0.43, -0.40, -0.22, 0.10, 0.033
+19741231, 2.18, 0.50, -0.06, -0.11, -0.46, 0.033
+19750102, 2.48, 0.54, 1.35, -0.82, 0.19, 0.026
+19750103, 0.80, 0.73, 1.43, -0.49, 0.28, 0.026
+19750106, 0.78, 0.95, 1.57, -0.83, 0.46, 0.026
+19750107, 0.00, 1.04, 0.69, -0.02, 0.33, 0.026
+19750108, -1.16, 1.21, 0.78, -0.29, 0.31, 0.026
+19750109, 1.60, -0.41, -0.04, 0.15, -0.38, 0.026
+19750110, 2.12, 0.58, 0.25, -0.05, 0.01, 0.026
+19750113, -0.35, 1.37, 0.99, 0.00, 0.35, 0.026
+19750114, -0.78, 0.82, 0.36, 0.08, 0.19, 0.026
+19750115, 0.68, -0.14, -0.54, -0.42, -0.16, 0.026
+19750116, 0.13, 0.69, -0.33, -0.18, 0.20, 0.026
+19750117, -1.24, 0.98, 0.29, -0.43, 0.22, 0.026
+19750120, 0.00, -0.25, 0.13, 0.23, 0.02, 0.026
+19750121, -0.43, 0.46, 0.88, -0.03, 0.31, 0.026
+19750122, 1.08, -0.48, -0.32, 0.59, -0.57, 0.026
+19750123, 0.51, 0.53, -0.10, -0.11, -0.28, 0.026
+19750124, 1.25, 0.16, 0.57, -0.30, -0.14, 0.026
+19750127, 3.35, -0.04, -0.32, 0.54, -0.76, 0.026
+19750128, 0.46, 0.57, -0.52, 1.04, -0.34, 0.026
+19750129, 1.55, 0.11, -0.27, 0.49, -0.59, 0.026
+19750130, -1.13, 1.07, 0.12, 0.09, -0.17, 0.026
+19750131, 0.98, 0.11, -0.01, 0.13, -0.34, 0.026
+19750203, 1.24, 0.41, 0.12, -0.09, 0.13, 0.023
+19750204, -0.32, 0.15, -1.03, 0.14, -0.15, 0.023
+19750205, 1.63, -0.48, -0.62, 0.45, -0.51, 0.023
+19750206, -0.13, 0.48, -0.08, -0.57, 0.11, 0.023
+19750207, -0.03, -0.15, -0.21, -0.20, 0.08, 0.023
+19750210, -0.30, 0.12, -0.26, -0.33, 0.25, 0.023
+19750211, 0.17, -0.29, -0.55, 0.20, -0.15, 0.023
+19750212, 1.57, -0.50, -0.50, 0.66, -0.61, 0.023
+19750213, 1.32, -0.24, -0.82, 0.38, -0.29, 0.023
+19750214, 0.51, -0.13, -0.50, 0.27, -0.35, 0.023
+19750218, -0.68, 0.24, 0.67, -0.33, 0.35, 0.023
+19750219, 0.47, -0.46, -0.31, 0.20, -0.25, 0.023
+19750220, 0.93, -0.45, -0.45, 0.05, -0.54, 0.023
+19750221, 0.44, 0.14, -0.12, 0.25, 0.07, 0.023
+19750224, -1.28, 0.64, 0.09, -0.01, -0.04, 0.023
+19750225, -2.25, 0.27, 0.16, -0.17, 0.45, 0.023
+19750226, 0.85, -0.32, -0.02, 0.25, -0.04, 0.023
+19750227, 0.50, 0.21, -0.48, 0.00, -0.61, 0.023
+19750228, 0.86, -0.32, 0.53, -0.03, 0.01, 0.023
+19750303, 1.71, -0.49, 0.30, 0.10, -0.25, 0.021
+19750304, 0.69, -0.18, 0.05, 0.45, -0.12, 0.021
+19750305, -0.75, 0.28, 0.39, 0.10, -0.34, 0.021
+19750306, 0.88, 0.04, 0.35, 0.35, -0.33, 0.021
+19750307, 0.75, 0.65, 0.17, 0.29, -0.12, 0.021
+19750310, 0.74, 0.55, 0.57, 0.22, -0.22, 0.021
+19750311, -0.53, 0.90, 0.63, -0.06, 0.30, 0.021
+19750312, -0.90, 0.25, 0.38, -0.11, 0.13, 0.021
+19750313, 0.26, 0.61, -0.69, 0.24, -0.36, 0.021
+19750314, 1.36, 0.62, -0.15, -0.15, -0.19, 0.021
+19750317, 1.36, 0.15, 0.46, 0.32, -0.17, 0.021
+19750318, -0.90, -0.26, 0.23, -0.20, 0.08, 0.021
+19750319, -0.89, 0.27, -0.13, -0.14, -0.13, 0.021
+19750320, -0.68, 0.64, -0.10, -0.03, -0.05, 0.021
+19750321, -0.21, -0.01, -0.02, -0.10, -0.01, 0.021
+19750324, -2.30, -0.13, 0.11, -0.20, 0.48, 0.021
+19750325, 0.58, -0.30, -0.49, 0.47, -0.34, 0.021
+19750326, 1.76, -0.27, 0.21, -0.27, -0.27, 0.021
+19750327, 0.34, 0.05, -0.03, -0.19, 0.19, 0.021
+19750331, -0.56, 0.40, 0.13, 0.04, 0.55, 0.021
+19750401, -0.81, 0.05, -0.32, -0.03, 0.07, 0.020
+19750402, -0.23, 0.24, -0.11, -0.18, 0.01, 0.020
+19750403, -1.03, 0.71, 0.21, -0.26, 0.14, 0.020
+19750404, -0.59, 0.28, 0.02, -0.12, 0.16, 0.020
+19750407, -0.68, -0.03, -0.05, 0.01, -0.15, 0.020
+19750408, 0.58, -0.65, -0.22, 0.47, 0.01, 0.020
+19750409, 2.00, -0.70, -0.51, 0.40, -0.64, 0.020
+19750410, 1.02, -0.45, 0.23, 0.03, -0.18, 0.020
+19750411, 0.58, 0.36, 0.03, 0.20, -0.13, 0.020
+19750414, 1.55, -0.30, -0.42, 0.39, -0.31, 0.020
+19750415, 0.66, -0.37, 0.12, 0.11, 0.02, 0.020
+19750416, 0.39, -0.10, -0.13, -0.10, -0.28, 0.020
+19750417, 0.73, -0.12, 0.14, -0.12, -0.28, 0.020
+19750418, -0.90, 0.90, 0.13, -0.39, -0.06, 0.020
+19750421, 1.08, 0.16, 0.19, 0.08, -0.06, 0.020
+19750422, -0.27, 0.07, 0.23, 0.23, 0.16, 0.020
+19750423, -1.04, 0.16, -0.16, -0.03, 0.18, 0.020
+19750424, -0.02, 0.17, 0.29, -0.19, 0.28, 0.020
+19750425, 0.70, 0.13, 0.07, 0.03, 0.11, 0.020
+19750428, -0.38, 0.11, 0.19, -0.18, 0.31, 0.020
+19750429, -0.77, -0.16, -0.32, 0.45, -0.18, 0.020
+19750430, 1.65, -1.08, -0.68, 0.53, -0.50, 0.020
+19750501, 0.85, -0.25, -0.53, 0.16, 0.12, 0.021
+19750502, 1.24, -0.64, -0.34, -0.17, -0.25, 0.021
+19750505, 0.96, -0.20, -0.26, 0.01, 0.09, 0.021
+19750506, -1.27, 0.54, -0.50, -0.28, -0.14, 0.021
+19750507, 0.47, 0.30, -0.52, -0.41, -0.23, 0.021
+19750508, 0.73, 0.25, 0.15, -0.32, 0.03, 0.021
+19750509, 1.15, 0.07, 0.20, 0.09, -0.11, 0.021
+19750512, 0.05, 0.20, -0.19, 0.72, -0.59, 0.021
+19750513, 0.81, -0.37, -0.09, 0.33, -0.18, 0.021
+19750514, 0.74, -0.26, 0.19, 0.05, 0.05, 0.021
+19750515, -0.76, 0.65, -0.16, -0.21, 0.21, 0.021
+19750516, -0.94, 0.64, -0.03, -0.17, 0.28, 0.021
+19750519, 0.08, 0.01, 0.11, 0.25, -0.11, 0.021
+19750520, -0.41, 0.40, -0.19, -0.27, -0.19, 0.021
+19750521, -1.13, 0.26, -0.30, -0.02, 0.03, 0.021
+19750522, 0.39, 0.21, -0.84, 0.17, -0.41, 0.021
+19750523, 1.29, -0.11, -0.29, 0.22, -0.27, 0.021
+19750527, -0.10, 0.34, 0.04, -0.19, 0.07, 0.021
+19750528, -0.66, 0.43, -0.24, -0.40, 0.63, 0.021
+19750529, 0.01, 0.29, 0.10, -0.13, 0.23, 0.021
+19750530, 1.62, 0.00, -0.06, -0.44, 0.28, 0.021
+19750602, 1.42, -0.24, 0.15, -0.24, 0.13, 0.019
+19750603, 0.33, -0.09, -0.16, -0.38, 0.18, 0.019
+19750604, -0.19, 0.62, -0.19, -0.14, 0.26, 0.019
+19750605, 0.11, 0.18, -0.06, -0.21, 0.11, 0.019
+19750606, -0.12, 0.13, -0.13, -0.62, 0.40, 0.019
+19750609, -1.24, 0.27, 0.52, -0.22, 0.11, 0.019
+19750610, -0.84, 0.02, -0.13, -0.06, 0.07, 0.019
+19750611, 0.12, -0.09, 0.15, 0.01, 0.17, 0.019
+19750612, -0.51, -0.07, 0.59, -0.10, 0.28, 0.019
+19750613, 0.49, -0.11, -0.10, -0.06, -0.11, 0.019
+19750616, 0.96, -0.63, 0.08, 0.15, -0.10, 0.019
+19750617, -0.84, 0.10, 0.21, -0.32, 0.10, 0.019
+19750618, -0.20, -0.08, 0.15, -0.14, 0.07, 0.019
+19750619, 1.78, -0.44, -0.13, -0.14, 0.00, 0.019
+19750620, 0.68, 0.17, 0.05, 0.01, -0.07, 0.019
+19750623, 1.04, 0.05, -0.17, 0.03, 0.09, 0.019
+19750624, 0.64, -0.03, -0.14, -0.06, -0.41, 0.019
+19750625, 0.42, 0.29, -0.04, 0.16, -0.22, 0.019
+19750626, 0.22, 0.14, 0.24, -0.07, 0.09, 0.019
+19750627, 0.02, 0.47, 0.19, -0.05, -0.04, 0.019
+19750630, 0.47, 0.56, 0.17, -0.03, -0.13, 0.019
+19750701, -0.41, 0.35, 0.30, -0.10, 0.02, 0.022
+19750702, -0.79, 0.18, -0.12, 0.46, -0.08, 0.022
+19750703, 0.35, 0.48, -0.10, 0.05, -0.18, 0.022
+19750707, -0.83, 0.36, 0.08, -0.09, 0.21, 0.022
+19750708, -0.18, -0.11, 0.38, 0.13, 0.26, 0.022
+19750709, 1.53, 0.14, 0.27, -0.17, 0.15, 0.022
+19750710, 0.06, 0.40, 0.69, -0.19, 0.30, 0.022
+19750711, -0.02, 0.54, 0.60, 0.08, 0.10, 0.022
+19750714, 0.55, 0.50, 0.17, 0.20, -0.02, 0.022
+19750715, 0.45, 0.42, 0.85, -0.18, 0.37, 0.022
+19750716, -0.99, 0.36, -0.04, -0.08, 0.24, 0.022
+19750717, -0.90, 0.62, 0.23, -0.08, 0.15, 0.022
+19750718, -0.34, 0.51, -0.03, 0.02, -0.04, 0.022
+19750721, -0.73, 0.38, -0.19, 0.01, -0.11, 0.022
+19750722, -1.14, -0.10, -0.29, 0.24, -0.06, 0.022
+19750723, -1.46, -0.25, -0.18, 0.08, 0.03, 0.022
+19750724, -0.35, -0.77, -0.51, 0.43, -0.04, 0.022
+19750725, -0.82, 0.29, 0.21, -0.10, -0.12, 0.022
+19750728, -0.74, -0.31, -0.37, -0.01, -0.24, 0.022
+19750729, -0.65, -0.28, -0.19, -0.09, 0.11, 0.022
+19750730, 0.70, -0.39, -0.01, -0.09, 0.22, 0.022
+19750731, -0.01, 0.26, 0.07, -0.08, 0.02, 0.022
+19750801, -0.98, 0.13, 0.24, 0.04, 0.09, 0.023
+19750804, -0.98, -0.04, -0.46, 0.03, 0.12, 0.023
+19750805, -1.13, -0.28, -0.33, 0.18, -0.36, 0.023
+19750806, -0.01, -0.44, -0.45, 0.30, -0.42, 0.023
+19750807, -0.05, -0.27, 0.26, 0.14, -0.06, 0.023
+19750808, -0.35, -0.33, 0.04, -0.06, -0.07, 0.023
+19750811, 0.47, -0.83, -0.83, 0.63, -0.17, 0.023
+19750812, 0.65, -0.03, 0.19, -0.08, -0.25, 0.023
+19750813, -1.22, 0.33, 0.53, -0.27, 0.29, 0.023
+19750814, -0.58, 0.04, -0.23, 0.30, -0.21, 0.023
+19750815, 0.74, -0.30, 0.10, 0.48, -0.06, 0.023
+19750818, -0.22, 0.13, 0.11, 0.15, -0.06, 0.023
+19750819, -1.57, 0.24, 0.47, -0.11, 0.19, 0.023
+19750820, -2.03, 0.16, -0.26, -0.40, -0.06, 0.023
+19750821, -0.12, -0.66, -0.38, -0.14, 0.08, 0.023
+19750822, 1.39, -0.50, -0.06, -0.03, 0.28, 0.023
+19750825, 0.95, -0.32, 0.02, 0.05, 0.12, 0.023
+19750826, -1.17, 0.49, -0.07, -0.12, 0.06, 0.023
+19750827, 0.48, -0.22, -0.32, 0.15, -0.15, 0.023
+19750828, 2.26, -0.62, 0.38, -0.12, -0.25, 0.023
+19750829, 0.72, 0.44, 0.20, -0.04, -0.06, 0.023
+19750902, -1.56, 0.54, 0.22, -0.31, 0.27, 0.025
+19750903, 0.46, -0.37, -0.23, 0.45, 0.06, 0.025
+19750904, 0.16, 0.05, 0.23, -0.13, -0.03, 0.025
+19750905, -0.64, 0.35, 0.16, 0.12, -0.04, 0.025
+19750908, 0.15, -0.17, 0.13, 0.01, -0.19, 0.025
+19750909, -1.36, 0.60, 0.55, -0.03, 0.08, 0.025
+19750910, -1.17, -0.12, -0.08, 0.17, -0.19, 0.025
+19750911, -0.39, 0.09, 0.00, 0.13, 0.05, 0.025
+19750912, -0.24, 0.28, 0.10, -0.01, -0.04, 0.025
+19750915, -0.55, 0.06, -0.13, 0.34, -0.09, 0.025
+19750916, -0.95, 0.04, -0.05, -0.10, -0.22, 0.025
+19750917, 0.19, -0.40, -0.16, 0.13, -0.04, 0.025
+19750918, 1.83, -1.03, 0.08, 0.31, 0.02, 0.025
+19750919, 2.22, -0.62, -0.20, -0.21, 0.12, 0.025
+19750922, -0.84, 0.51, 0.07, -0.14, 0.43, 0.025
+19750923, -0.15, -0.06, -0.34, 0.26, -0.24, 0.025
+19750924, 0.95, -0.17, 0.11, 0.24, -0.01, 0.025
+19750925, -0.18, 0.00, -0.38, 0.03, 0.25, 0.025
+19750926, 0.50, -0.43, -0.30, 0.01, 0.18, 0.025
+19750929, -1.24, 0.46, 0.53, -0.50, 0.35, 0.025
+19750930, -1.42, 0.26, -0.05, -0.17, -0.19, 0.025
+19751001, -1.16, 0.05, -0.07, -0.44, 0.37, 0.024
+19751002, 0.89, -0.82, -0.32, 0.34, -0.04, 0.024
+19751003, 2.37, -1.19, -0.32, 0.26, 0.03, 0.024
+19751006, 1.02, -0.48, -0.29, 0.39, -0.06, 0.024
+19751007, -0.15, -0.07, -0.34, 0.12, 0.03, 0.024
+19751008, 1.21, -0.58, -0.36, 0.12, 0.02, 0.024
+19751009, 0.45, -0.30, -0.03, -0.17, 0.07, 0.024
+19751010, -0.10, 0.10, 0.19, -0.13, -0.05, 0.024
+19751013, 1.34, -0.74, -0.05, 0.14, -0.06, 0.024
+19751014, -0.04, 0.29, -0.05, -0.15, -0.01, 0.024
+19751015, -0.07, -0.13, -0.02, -0.05, 0.34, 0.024
+19751016, 0.17, 0.05, 0.25, -0.14, 0.24, 0.024
+19751017, -0.60, 0.12, 0.05, 0.00, -0.12, 0.024
+19751020, 0.94, -0.76, 0.10, 0.05, 0.10, 0.024
+19751021, 0.78, -0.44, 0.41, -0.35, 0.40, 0.024
+19751022, 0.18, 0.04, -0.08, 0.00, -0.09, 0.024
+19751023, 0.48, -0.20, 0.52, 0.02, 0.43, 0.024
+19751024, -1.33, 0.95, 0.29, -0.42, 0.19, 0.024
+19751027, -0.11, -0.11, 0.25, -0.03, -0.01, 0.024
+19751028, 0.77, -0.25, -0.11, 0.14, 0.08, 0.024
+19751029, -1.35, 0.25, 0.05, -0.11, 0.05, 0.024
+19751030, -0.19, 0.04, -0.02, 0.00, 0.04, 0.024
+19751031, -0.26, 0.05, 0.26, 0.00, 0.20, 0.024
+19751103, -0.94, 0.45, -0.01, -0.30, 0.13, 0.022
+19751104, 0.41, -0.44, 0.02, 0.10, -0.12, 0.022
+19751105, 0.83, -0.21, 0.38, -0.13, 0.62, 0.022
+19751106, 0.43, -0.16, -0.03, 0.01, 0.49, 0.022
+19751107, -0.16, 0.18, 0.03, -0.26, 0.12, 0.022
+19751110, 0.00, -0.18, -0.30, 0.07, -0.50, 0.022
+19751111, 0.60, -0.20, 0.07, -0.02, 0.36, 0.022
+19751112, 1.47, -0.33, 0.11, 0.55, 0.09, 0.022
+19751113, -0.05, 0.22, 0.01, -0.05, 0.06, 0.022
+19751114, -0.12, 0.16, 0.18, 0.04, -0.10, 0.022
+19751117, 0.49, -0.39, 0.31, -0.17, -0.12, 0.022
+19751118, -0.52, 0.02, 0.36, -0.27, 0.44, 0.022
+19751119, -1.10, 0.31, 0.15, -0.09, -0.13, 0.022
+19751120, -0.41, 0.20, 0.22, 0.01, 0.31, 0.022
+19751121, -0.05, 0.06, 0.01, -0.10, 0.14, 0.022
+19751124, 0.28, -0.22, 0.08, 0.00, -0.16, 0.022
+19751125, 0.92, -0.53, -0.07, 0.20, -0.14, 0.022
+19751126, 0.30, 0.09, 0.10, -0.09, 0.04, 0.022
+19751128, 0.28, -0.11, 0.29, -0.08, 0.14, 0.022
+19751201, -0.59, 0.16, 0.14, 0.01, 0.01, 0.022
+19751202, -1.55, 0.23, -0.38, -0.04, -0.05, 0.022
+19751203, -2.07, 0.11, -0.34, 0.32, -0.25, 0.022
+19751204, 0.13, -0.49, -0.01, -0.06, 0.10, 0.022
+19751205, -1.08, 0.76, 0.55, -0.35, -0.27, 0.022
+19751208, 0.14, -0.57, -0.30, 0.10, -0.09, 0.022
+19751209, 0.09, -0.65, 0.01, 0.07, -0.08, 0.022
+19751210, 0.90, -0.45, -0.01, 0.21, -0.15, 0.022
+19751211, -0.25, 0.28, 0.16, -0.23, 0.39, 0.022
+19751212, -0.08, -0.06, 0.04, -0.19, 0.37, 0.022
+19751215, 0.19, -0.45, -0.16, 0.06, 0.02, 0.022
+19751216, 0.94, -0.41, -0.16, 0.22, -0.28, 0.022
+19751217, 0.29, 0.04, 0.06, 0.02, -0.20, 0.022
+19751218, 0.35, 0.15, 0.34, -0.16, -0.03, 0.022
+19751219, -0.65, 0.64, 0.19, -0.09, 0.06, 0.022
+19751222, -0.73, 0.18, -0.07, -0.01, -0.17, 0.022
+19751223, 0.58, -0.53, 0.31, 0.08, 0.66, 0.022
+19751224, 0.84, -0.02, 0.42, -0.01, -0.18, 0.022
+19751226, 0.90, -0.18, 0.34, -0.05, 0.29, 0.022
+19751229, -0.16, 0.11, -0.01, 0.37, -0.07, 0.022
+19751230, -0.38, 0.21, 0.08, 0.04, 0.11, 0.022
+19751231, 0.62, 0.94, 0.62, -0.43, 0.37, 0.022
+19760102, 0.79, 0.19, 1.22, -0.50, 0.34, 0.022
+19760105, 1.78, -0.07, 0.94, -0.58, 0.20, 0.022
+19760106, 1.20, 0.47, 0.27, -0.28, 0.15, 0.022
+19760107, 0.52, 0.00, -0.17, 0.16, -0.25, 0.022
+19760108, 0.68, -0.10, 0.18, -0.01, 0.29, 0.022
+19760109, 0.43, 0.40, 0.19, -0.11, 0.21, 0.022
+19760112, 1.30, -0.12, 0.46, -0.17, 0.30, 0.022
+19760113, -0.72, 0.29, -0.04, -0.01, -0.02, 0.022
+19760114, 1.58, 0.12, 0.76, 0.07, 0.22, 0.022
+19760115, -0.45, 0.54, 0.39, 0.01, 0.17, 0.022
+19760116, 0.44, 0.30, 0.31, -0.19, 0.32, 0.022
+19760119, 1.21, 0.08, 1.15, -0.42, 0.50, 0.022
+19760120, 0.49, 0.19, 0.24, -0.03, 0.05, 0.022
+19760121, -0.49, 0.68, 0.32, -0.33, -0.05, 0.022
+19760122, -0.19, 0.96, 0.11, -0.16, 0.06, 0.022
+19760123, 1.15, 0.37, 0.43, 0.23, -0.08, 0.022
+19760126, 0.41, 0.54, 0.23, 0.21, 0.07, 0.022
+19760127, -0.52, 0.61, 0.19, 0.21, -0.12, 0.022
+19760128, -0.46, -0.02, -0.21, 0.23, -0.09, 0.022
+19760129, 1.67, -0.02, 0.12, 0.05, 0.07, 0.022
+19760130, 0.73, 0.13, 0.29, 0.06, -0.17, 0.022
+19760202, 0.14, 0.33, 0.24, 0.06, 0.33, 0.018
+19760203, 0.42, 0.17, 0.40, 0.02, 0.21, 0.018
+19760204, 0.87, 0.68, 0.20, -0.03, -0.10, 0.018
+19760205, -1.31, 0.52, -0.19, -0.32, 0.13, 0.018
+19760206, -0.85, 0.32, -0.14, 0.00, -0.13, 0.018
+19760209, 0.27, 0.58, 0.95, -0.10, 0.35, 0.018
+19760210, 0.79, 0.08, 0.58, 0.13, 0.41, 0.018
+19760211, 0.43, 0.51, 0.23, 0.05, 0.02, 0.018
+19760212, -0.36, 0.84, 0.22, -0.12, 0.05, 0.018
+19760213, -0.41, 0.72, 0.10, -0.08, 0.09, 0.018
+19760217, -0.52, 0.85, 0.67, -0.50, 0.52, 0.018
+19760218, 0.79, 0.60, 0.66, -0.21, 0.26, 0.018
+19760219, 1.59, 0.38, 0.73, -0.18, 0.44, 0.018
+19760220, 0.67, 0.27, 0.22, -0.08, 0.06, 0.018
+19760223, -0.29, 0.33, 0.16, -0.36, 0.22, 0.018
+19760224, 0.49, 0.30, 0.78, -0.16, 0.47, 0.018
+19760225, -0.16, 0.05, 0.48, -0.29, 0.30, 0.018
+19760226, -1.48, 0.20, -0.59, -0.15, 0.07, 0.018
+19760227, -0.68, -0.21, -0.24, -0.05, -0.03, 0.018
+19760301, 0.32, -0.06, 0.47, -0.33, 0.18, 0.017
+19760302, 0.58, 0.43, 0.66, 0.00, 0.50, 0.017
+19760303, -0.56, 0.36, 0.16, 0.05, 0.19, 0.017
+19760304, -0.97, 0.22, -0.40, 0.08, -0.04, 0.017
+19760305, 0.12, -0.05, 0.29, -0.16, -0.02, 0.017
+19760308, 1.01, -0.06, 0.46, 0.22, 0.39, 0.017
+19760309, 0.27, -0.17, 0.04, -0.33, 0.04, 0.017
+19760310, 0.35, -0.19, 0.10, -0.25, 0.26, 0.017
+19760311, 0.83, -0.42, -0.34, 0.20, -0.01, 0.017
+19760312, -0.87, 0.04, -0.42, -0.25, -0.09, 0.017
+19760315, -1.12, -0.04, -0.39, 0.15, -0.12, 0.017
+19760316, 0.98, -0.51, 0.39, -0.03, 0.38, 0.017
+19760317, -0.03, 0.42, 0.19, -0.13, 0.13, 0.017
+19760318, -0.41, -0.09, -0.41, 0.07, -0.31, 0.017
+19760319, 0.09, -0.15, -0.20, -0.06, 0.07, 0.017
+19760322, 0.06, -0.11, -0.11, 0.13, 0.00, 0.017
+19760323, 1.30, -0.79, -0.25, 0.32, -0.45, 0.017
+19760324, 1.03, -0.28, -0.33, 0.11, -0.29, 0.017
+19760325, -0.55, 0.07, 0.02, -0.04, -0.41, 0.017
+19760326, 0.10, 0.25, 0.23, -0.23, 0.23, 0.017
+19760329, -0.40, 0.08, 0.05, -0.06, 0.07, 0.017
+19760330, -0.42, -0.15, -0.18, 0.03, 0.26, 0.017
+19760331, 0.62, -0.14, -0.02, 0.06, 0.13, 0.017
+19760401, -0.43, 0.43, -0.23, 0.15, -0.13, 0.020
+19760402, 0.03, 0.09, -0.27, 0.18, -0.02, 0.020
+19760405, 1.15, -0.25, 0.33, 0.15, -0.11, 0.020
+19760406, -0.09, 0.11, 0.24, -0.31, 0.13, 0.020
+19760407, -1.17, -0.03, -0.52, -0.06, 0.11, 0.020
+19760408, -0.98, -0.26, -0.48, 0.06, -0.28, 0.020
+19760409, -1.05, 0.00, -0.43, 0.19, -0.34, 0.020
+19760412, -0.19, -0.32, 0.17, -0.08, 0.01, 0.020
+19760413, 0.65, -0.69, -0.12, 0.15, 0.07, 0.020
+19760414, -0.61, 0.40, 0.04, -0.14, -0.11, 0.020
+19760415, 0.33, -0.13, 0.29, 0.02, -0.07, 0.020
+19760419, 0.67, 0.04, 0.31, 0.15, -0.19, 0.020
+19760420, 1.46, -0.03, 0.36, -0.04, -0.02, 0.020
+19760421, 0.36, 0.14, 0.20, 0.19, -0.16, 0.020
+19760422, -0.20, 0.33, 0.17, -0.02, 0.07, 0.020
+19760423, -0.66, 0.29, -0.16, -0.08, 0.04, 0.020
+19760426, 0.07, -0.08, 0.06, 0.03, 0.02, 0.020
+19760427, -0.52, -0.01, -0.27, 0.22, -0.25, 0.020
+19760428, 0.17, -0.29, -0.17, 0.12, -0.10, 0.020
+19760429, -0.03, 0.12, 0.25, -0.21, 0.13, 0.020
+19760430, -0.40, 0.29, 0.18, -0.21, 0.08, 0.020
+19760503, -0.83, -0.10, -0.36, 0.15, -0.18, 0.019
+19760504, 0.56, -0.34, 0.08, 0.18, -0.03, 0.019
+19760505, -0.45, 0.26, -0.21, 0.04, -0.03, 0.019
+19760506, 0.29, -0.21, -0.25, 0.21, 0.07, 0.019
+19760507, 0.76, -0.10, -0.03, 0.28, -0.15, 0.019
+19760510, 1.22, -0.38, 0.51, 0.28, -0.04, 0.019
+19760511, -0.10, 0.34, 0.30, 0.09, -0.26, 0.019
+19760512, -0.17, 0.15, -0.08, 0.12, 0.03, 0.019
+19760513, -0.56, 0.26, 0.18, -0.13, 0.10, 0.019
+19760514, -0.75, 0.21, 0.15, 0.04, 0.05, 0.019
+19760517, -0.28, -0.13, -0.19, 0.35, -0.10, 0.019
+19760518, 0.11, -0.18, 0.08, 0.04, 0.09, 0.019
+19760519, -0.05, -0.08, 0.21, 0.02, 0.24, 0.019
+19760520, 0.63, -0.19, -0.27, 0.50, -0.47, 0.019
+19760521, -0.54, 0.26, 0.11, -0.10, -0.08, 0.019
+19760524, -1.66, 0.07, -0.36, 0.02, 0.08, 0.019
+19760525, -0.09, -0.51, -0.73, 0.31, -0.42, 0.019
+19760526, -0.06, 0.06, -0.21, 0.13, 0.01, 0.019
+19760527, -0.11, -0.45, -0.42, -0.02, -0.21, 0.019
+19760528, 0.73, -0.08, 0.20, 0.01, -0.16, 0.019
+19760601, -0.28, -0.03, 0.17, -0.24, -0.09, 0.020
+19760602, 0.29, -0.20, -0.06, 0.17, -0.23, 0.020
+19760603, -0.05, -0.06, 0.09, 0.11, 0.01, 0.020
+19760604, -0.88, 0.11, -0.21, -0.15, -0.03, 0.020
+19760607, -0.52, -0.40, -0.23, 0.00, -0.25, 0.020
+19760608, 0.14, -0.23, -0.32, 0.01, -0.05, 0.020
+19760609, -0.06, 0.07, -0.06, 0.02, -0.13, 0.020
+19760610, 0.77, -0.22, -0.05, -0.01, -0.07, 0.020
+19760611, 1.17, -0.28, 0.13, 0.25, 0.12, 0.020
+19760614, 0.99, -0.13, 0.25, -0.18, 0.02, 0.020
+19760615, -0.42, 0.34, 0.10, -0.19, 0.15, 0.020
+19760616, 0.55, -0.13, 0.12, 0.08, 0.14, 0.020
+19760617, 1.43, -0.48, 0.13, 0.12, 0.46, 0.020
+19760618, 0.19, 0.15, 0.05, -0.06, -0.14, 0.020
+19760621, 0.39, -0.08, -0.14, 0.27, -0.08, 0.020
+19760622, -0.70, 0.22, -0.07, 0.02, 0.14, 0.020
+19760623, -0.22, -0.09, 0.02, 0.14, 0.03, 0.020
+19760624, 0.59, -0.02, 0.23, -0.16, 0.21, 0.020
+19760625, 0.01, 0.34, 0.11, -0.07, 0.10, 0.020
+19760628, -0.23, 0.18, 0.02, -0.23, 0.18, 0.020
+19760629, 0.38, -0.16, 0.14, -0.18, 0.12, 0.020
+19760630, 0.46, 0.01, 0.26, -0.33, 0.34, 0.020
+19760701, -0.67, 0.37, 0.10, -0.10, -0.22, 0.022
+19760702, 0.47, 0.05, -0.06, -0.02, -0.29, 0.022
+19760706, -0.46, 0.45, -0.05, 0.10, -0.07, 0.022
+19760707, 0.25, -0.03, 0.29, 0.00, 0.05, 0.022
+19760708, 0.15, 0.15, 0.19, -0.20, 0.24, 0.022
+19760709, 0.87, -0.09, 0.00, -0.12, -0.03, 0.022
+19760712, 0.76, -0.20, 0.09, -0.28, 0.19, 0.022
+19760713, -0.21, 0.10, 0.21, -0.05, 0.25, 0.022
+19760714, 0.25, 0.20, -0.06, -0.11, -0.03, 0.022
+19760715, -0.60, 0.51, -0.04, -0.01, -0.09, 0.022
+19760716, -0.48, 0.22, -0.19, -0.09, 0.04, 0.022
+19760719, -0.32, -0.12, 0.36, -0.25, 0.07, 0.022
+19760720, -0.63, -0.15, -0.12, 0.15, -0.16, 0.022
+19760721, 0.06, -0.04, 0.17, -0.12, 0.15, 0.022
+19760722, 0.12, 0.08, -0.35, 0.20, -0.18, 0.022
+19760723, 0.12, -0.04, 0.17, 0.04, 0.12, 0.022
+19760726, -0.08, -0.18, 0.13, 0.15, 0.07, 0.022
+19760727, -0.50, -0.04, 0.05, 0.09, 0.03, 0.022
+19760728, -0.40, -0.21, 0.21, -0.15, -0.05, 0.022
+19760729, -0.16, -0.08, 0.39, -0.30, 0.13, 0.022
+19760730, 0.40, -0.35, 0.19, -0.03, 0.04, 0.022
+19760802, -0.15, -0.06, 0.24, -0.05, 0.09, 0.019
+19760803, 0.89, -0.56, 0.15, -0.23, 0.19, 0.019
+19760804, 0.22, -0.03, 0.14, -0.08, 0.06, 0.019
+19760805, -0.43, 0.18, 0.05, -0.16, 0.04, 0.019
+19760806, -0.03, 0.00, 0.08, -0.06, -0.06, 0.019
+19760809, -0.24, -0.08, 0.01, 0.13, -0.02, 0.019
+19760810, 0.77, -0.42, 0.01, 0.05, 0.09, 0.019
+19760811, -0.25, 0.05, 0.09, 0.00, -0.24, 0.019
+19760812, 0.07, -0.19, -0.21, 0.05, -0.12, 0.019
+19760813, 0.05, 0.01, 0.09, -0.01, 0.07, 0.019
+19760816, 0.16, -0.12, 0.13, 0.08, 0.16, 0.019
+19760817, 0.30, -0.23, -0.14, -0.07, -0.20, 0.019
+19760818, -0.20, -0.05, 0.07, -0.01, -0.05, 0.019
+19760819, -1.17, -0.05, 0.10, 0.10, -0.15, 0.019
+19760820, -0.90, 0.25, -0.01, -0.01, -0.16, 0.019
+19760823, -0.43, -0.28, -0.15, 0.03, -0.32, 0.019
+19760824, -0.62, 0.27, -0.02, -0.01, -0.10, 0.019
+19760825, 0.75, -0.64, 0.02, -0.11, 0.17, 0.019
+19760826, -0.63, 0.43, 0.25, -0.04, 0.05, 0.019
+19760827, 0.09, -0.03, -0.10, -0.10, -0.21, 0.019
+19760830, 0.53, -0.36, -0.03, 0.11, 0.05, 0.019
+19760831, 0.69, -0.24, 0.04, -0.06, 0.04, 0.019
+19760901, 1.02, -0.23, -0.35, 0.15, -0.27, 0.021
+19760902, -0.04, 0.20, -0.15, 0.20, -0.09, 0.021
+19760903, 0.37, 0.00, 0.03, -0.21, 0.12, 0.021
+19760907, 0.61, -0.24, 0.07, 0.07, -0.08, 0.021
+19760908, -0.11, 0.21, -0.05, 0.17, -0.01, 0.021
+19760909, -0.44, 0.22, 0.01, -0.03, -0.31, 0.021
+19760910, 0.24, 0.05, -0.17, 0.06, -0.12, 0.021
+19760913, -0.29, 0.10, 0.05, 0.07, 0.03, 0.021
+19760914, -0.30, 0.06, -0.08, 0.08, -0.10, 0.021
+19760915, 0.20, -0.15, -0.21, 0.28, -0.31, 0.021
+19760916, 0.87, -0.39, -0.21, 0.17, -0.15, 0.021
+19760917, 0.87, -0.20, 0.18, -0.06, 0.17, 0.021
+19760920, 0.10, 0.02, 0.43, -0.16, 0.09, 0.021
+19760921, 1.23, -0.61, 0.29, -0.23, 0.39, 0.021
+19760922, -0.29, 0.46, 0.08, -0.09, 0.07, 0.021
+19760923, -0.46, 0.27, -0.11, 0.07, -0.19, 0.021
+19760924, -0.10, 0.21, -0.03, 0.02, -0.08, 0.021
+19760927, 0.36, -0.08, -0.01, 0.18, -0.10, 0.021
+19760928, -1.12, 0.23, -0.03, 0.10, -0.37, 0.021
+19760929, -0.52, 0.02, 0.05, -0.11, 0.17, 0.021
+19760930, -0.13, 0.02, -0.14, 0.22, 0.05, 0.021
+19761001, -0.92, 0.33, 0.18, -0.06, -0.16, 0.019
+19761004, -0.15, 0.03, 0.18, -0.01, 0.02, 0.019
+19761005, -0.73, -0.04, -0.01, 0.22, -0.13, 0.019
+19761006, -0.43, -0.29, -0.10, 0.26, -0.12, 0.019
+19761007, 0.58, -0.04, -0.31, 0.12, -0.32, 0.019
+19761008, -0.84, 0.44, 0.09, -0.05, -0.07, 0.019
+19761011, -0.93, -0.05, -0.41, 0.17, -0.44, 0.019
+19761012, -0.78, 0.08, 0.29, -0.49, -0.11, 0.019
+19761013, 1.10, -0.85, 0.01, -0.22, 0.41, 0.019
+19761014, -1.16, 0.63, 0.03, -0.16, 0.12, 0.019
+19761015, 0.10, 0.31, -0.03, 0.07, -0.05, 0.019
+19761018, 0.55, -0.20, 0.19, -0.08, 0.13, 0.019
+19761019, -0.05, 0.05, -0.05, 0.01, 0.23, 0.019
+19761020, 0.23, -0.02, 0.23, -0.19, 0.14, 0.019
+19761021, -0.82, 0.46, 0.26, -0.07, 0.19, 0.019
+19761022, -0.75, 0.22, 0.03, -0.14, 0.03, 0.019
+19761025, 0.09, -0.03, -0.11, 0.15, -0.14, 0.019
+19761026, 0.86, -0.40, -0.07, 0.14, 0.09, 0.019
+19761027, 0.56, -0.22, -0.26, 0.24, 0.06, 0.019
+19761028, -0.10, 0.10, -0.08, -0.12, -0.08, 0.019
+19761029, 1.19, -0.43, -0.19, -0.02, -0.16, 0.019
+19761101, 0.23, -0.01, 0.18, -0.13, 0.15, 0.020
+19761103, -1.16, 0.21, 0.34, -0.21, -0.05, 0.020
+19761104, 0.77, 0.39, 0.50, -0.81, 0.34, 0.020
+19761105, -1.20, 0.84, 0.41, -0.46, 0.38, 0.020
+19761108, -1.13, 0.33, -0.13, 0.00, 0.05, 0.020
+19761109, -0.34, -0.16, 0.19, -0.10, -0.10, 0.020
+19761110, -0.47, 0.35, -0.18, 0.14, -0.44, 0.020
+19761111, 0.71, -0.48, -0.22, 0.23, -0.15, 0.020
+19761112, -0.32, 0.30, 0.11, -0.09, -0.15, 0.020
+19761115, 0.51, -0.37, -0.21, 0.10, -0.09, 0.020
+19761116, 0.26, 0.17, -0.04, -0.02, -0.04, 0.020
+19761117, 0.63, -0.01, -0.09, 0.14, -0.25, 0.020
+19761118, 1.24, -0.26, 0.18, -0.01, -0.04, 0.020
+19761119, 0.14, 0.21, 0.30, -0.03, 0.22, 0.020
+19761122, 0.63, -0.22, 0.07, -0.07, 0.32, 0.020
+19761123, -0.41, 0.35, 0.16, -0.03, -0.02, 0.020
+19761124, 0.53, 0.19, -0.09, -0.05, 0.05, 0.020
+19761126, 0.70, 0.09, -0.35, 0.16, -0.08, 0.020
+19761129, -0.57, 0.45, 0.03, -0.01, 0.03, 0.020
+19761130, -0.32, 0.24, 0.38, -0.14, -0.04, 0.020
+19761201, 0.43, 0.07, 0.07, -0.16, 0.19, 0.018
+19761202, -0.29, 0.44, 0.42, -0.12, 0.28, 0.018
+19761203, 0.55, -0.09, 0.04, -0.04, 0.03, 0.018
+19761206, 0.78, 0.06, 0.27, -0.05, 0.42, 0.018
+19761207, 0.02, 0.30, 0.13, 0.01, 0.10, 0.018
+19761208, 0.53, 0.10, -0.20, 0.10, 0.22, 0.018
+19761209, 0.57, 0.31, 0.15, -0.24, 0.18, 0.018
+19761210, 0.22, 0.40, 0.21, -0.17, 0.17, 0.018
+19761213, 0.07, 0.33, 0.23, 0.00, 0.19, 0.018
+19761214, 0.40, -0.21, 0.40, -0.16, 0.09, 0.018
+19761215, 0.06, 0.11, 0.43, -0.16, 0.07, 0.018
+19761216, -0.28, 0.22, 0.42, 0.06, 0.02, 0.018
+19761217, -0.43, 0.38, 0.24, 0.08, 0.12, 0.018
+19761220, -0.55, 0.12, 0.07, 0.10, -0.09, 0.018
+19761221, 0.45, -0.26, -0.24, 0.10, -0.11, 0.018
+19761222, 0.46, 0.04, -0.04, 0.00, -0.06, 0.018
+19761223, 0.05, 0.07, -0.48, 0.28, -0.10, 0.018
+19761227, 1.07, -0.32, -0.20, 0.25, -0.10, 0.018
+19761228, 0.62, -0.06, -0.12, 0.08, 0.17, 0.018
+19761229, -0.32, 0.44, 0.09, -0.11, 0.15, 0.018
+19761230, 0.53, 0.27, 0.00, -0.21, 0.07, 0.018
+19761231, 0.59, 0.65, 0.17, -0.26, 0.13, 0.018
+19770103, -0.32, 0.67, 0.67, -0.15, 0.46, 0.017
+19770104, -0.98, 0.87, 0.26, 0.01, 0.22, 0.017
+19770105, -0.74, 0.43, 0.07, 0.24, 0.02, 0.017
+19770106, 0.18, 0.51, 0.26, -0.16, 0.14, 0.017
+19770107, 0.09, 0.56, 0.06, 0.04, -0.07, 0.017
+19770110, 0.12, 0.04, 0.21, 0.03, 0.45, 0.017
+19770111, -0.93, 0.13, 0.29, -0.08, 0.18, 0.017
+19770112, -0.68, 0.19, 0.18, -0.17, 0.03, 0.017
+19770113, 0.82, 0.19, -0.17, 0.00, -0.05, 0.017
+19770114, -0.02, 0.57, 0.19, 0.01, 0.07, 0.017
+19770117, -0.20, 0.33, 0.12, 0.03, -0.32, 0.017
+19770118, -0.29, 0.20, 0.25, -0.06, 0.25, 0.017
+19770119, 0.50, 0.34, 0.15, 0.11, 0.31, 0.017
+19770120, -0.74, 0.43, 0.48, -0.24, 0.29, 0.017
+19770121, 0.36, 0.14, 0.24, -0.10, 0.09, 0.017
+19770124, 0.01, 0.08, 0.48, -0.18, 0.24, 0.017
+19770125, -0.04, 0.30, 0.56, -0.20, 0.27, 0.017
+19770126, -0.65, 0.34, 0.38, 0.06, 0.11, 0.017
+19770127, -0.58, 0.17, 0.11, -0.17, -0.02, 0.017
+19770128, 0.03, -0.10, -0.24, 0.22, -0.34, 0.017
+19770131, 0.00, -0.45, -0.18, 0.23, -0.35, 0.017
+19770201, 0.50, 0.10, -0.12, 0.18, -0.27, 0.018
+19770202, -0.11, 0.34, 0.04, -0.02, -0.07, 0.018
+19770203, -0.39, 0.23, 0.09, 0.10, -0.15, 0.018
+19770204, 0.17, 0.33, 0.06, 0.04, 0.00, 0.018
+19770207, 0.06, 0.09, -0.13, -0.06, -0.02, 0.018
+19770208, -0.25, 0.25, -0.03, -0.16, 0.10, 0.018
+19770209, -0.85, 0.32, -0.07, -0.02, -0.05, 0.018
+19770210, 0.10, 0.14, -0.18, -0.18, -0.05, 0.018
+19770211, -0.53, 0.10, 0.04, -0.21, 0.27, 0.018
+19770214, 0.43, -0.40, -0.16, 0.13, -0.30, 0.018
+19770215, 0.28, -0.13, 0.29, -0.15, 0.16, 0.018
+19770216, 0.38, -0.20, 0.18, -0.09, 0.20, 0.018
+19770217, -0.52, 0.22, 0.18, -0.08, 0.12, 0.018
+19770218, -0.29, 0.18, 0.37, -0.14, -0.07, 0.018
+19770222, -0.03, -0.16, -0.12, 0.39, -0.18, 0.018
+19770223, -0.30, 0.12, -0.01, 0.03, -0.04, 0.018
+19770224, -0.62, -0.12, 0.15, 0.02, 0.10, 0.018
+19770225, -0.17, 0.09, -0.09, 0.01, -0.03, 0.018
+19770228, 0.20, -0.42, 0.05, 0.08, 0.10, 0.018
+19770301, 0.85, -0.21, -0.24, 0.21, -0.26, 0.016
+19770302, -0.22, 0.18, 0.09, 0.04, 0.15, 0.016
+19770303, 0.44, -0.24, 0.04, -0.06, -0.02, 0.016
+19770304, 0.35, 0.11, -0.09, 0.01, 0.03, 0.016
+19770307, 0.12, 0.06, 0.01, -0.11, -0.08, 0.016
+19770308, -0.34, 0.30, 0.06, 0.07, 0.01, 0.016
+19770309, -0.70, 0.23, 0.05, 0.06, -0.18, 0.016
+19770310, 0.48, -0.07, -0.22, 0.25, -0.08, 0.016
+19770311, 0.07, 0.16, 0.11, -0.06, -0.06, 0.016
+19770314, 0.63, -0.45, 0.10, 0.00, 0.05, 0.016
+19770315, 0.44, -0.29, 0.27, -0.05, 0.37, 0.016
+19770316, 0.19, -0.05, 0.04, -0.01, 0.03, 0.016
+19770317, -0.09, 0.10, 0.02, 0.05, 0.01, 0.016
+19770318, -0.22, 0.40, -0.02, -0.06, -0.07, 0.016
+19770321, -0.45, 0.23, -0.09, 0.02, -0.08, 0.016
+19770322, -0.22, 0.17, -0.01, 0.07, -0.28, 0.016
+19770323, -0.78, 0.40, 0.23, -0.29, -0.01, 0.016
+19770324, -0.46, 0.18, 0.08, -0.11, -0.01, 0.016
+19770325, -0.59, 0.42, -0.02, -0.07, 0.01, 0.016
+19770328, -0.15, -0.39, -0.01, 0.11, 0.08, 0.016
+19770329, 0.55, -0.28, 0.14, 0.02, 0.13, 0.016
+19770330, -1.10, 0.28, 0.40, -0.26, 0.03, 0.016
+19770331, -0.14, 0.02, 0.03, -0.16, 0.14, 0.016
+19770401, 0.75, -0.27, 0.02, 0.18, -0.03, 0.019
+19770404, -0.89, 0.27, 0.19, -0.04, -0.04, 0.019
+19770405, -0.28, -0.24, 0.04, 0.05, -0.19, 0.019
+19770406, -0.07, 0.11, 0.05, 0.06, 0.12, 0.019
+19770407, 0.32, -0.22, -0.10, -0.07, 0.01, 0.019
+19770411, 0.49, -0.32, -0.01, -0.01, -0.03, 0.019
+19770412, 1.20, -0.41, 0.46, -0.01, 0.27, 0.019
+19770413, 0.03, 0.18, 0.27, -0.15, -0.12, 0.019
+19770414, 0.84, -0.05, 0.14, 0.00, 0.19, 0.019
+19770415, 0.03, 0.12, 0.09, -0.16, 0.17, 0.019
+19770418, -0.40, 0.32, 0.18, -0.33, -0.06, 0.019
+19770419, -0.33, 0.42, 0.05, -0.07, -0.17, 0.019
+19770420, 0.34, 0.21, 0.36, -0.36, 0.18, 0.019
+19770421, -0.65, 0.30, 0.29, -0.12, 0.28, 0.019
+19770422, -1.20, 0.42, 0.48, -0.30, 0.24, 0.019
+19770425, -1.25, 0.06, 0.38, -0.26, 0.30, 0.019
+19770426, -0.05, -0.18, 0.20, 0.02, 0.12, 0.019
+19770427, 0.85, -0.18, 0.08, -0.15, -0.24, 0.019
+19770428, 0.21, -0.10, 0.13, -0.14, 0.00, 0.019
+19770429, 0.25, 0.12, 0.10, -0.15, 0.09, 0.019
+19770502, 0.53, -0.20, -0.14, 0.12, 0.08, 0.018
+19770503, 0.47, -0.05, 0.05, -0.12, -0.14, 0.018
+19770504, 0.57, -0.13, 0.13, 0.02, 0.10, 0.018
+19770505, 0.27, 0.07, -0.11, 0.08, 0.06, 0.018
+19770506, -0.41, 0.42, 0.19, -0.05, 0.12, 0.018
+19770509, -0.21, 0.09, 0.24, 0.09, 0.07, 0.018
+19770510, 0.30, -0.09, -0.10, -0.01, 0.11, 0.018
+19770511, -0.55, 0.40, 0.09, -0.18, 0.11, 0.018
+19770512, -0.03, 0.08, 0.08, -0.09, -0.10, 0.018
+19770513, 0.32, 0.14, 0.05, 0.04, 0.07, 0.018
+19770516, 0.40, -0.10, 0.05, -0.13, 0.18, 0.018
+19770517, 0.25, -0.10, -0.07, 0.08, -0.17, 0.018
+19770518, 0.48, -0.02, -0.11, -0.07, -0.15, 0.018
+19770519, -0.32, 0.33, 0.12, 0.11, 0.16, 0.018
+19770520, -0.37, 0.30, 0.11, 0.13, -0.05, 0.018
+19770523, -1.13, 0.18, 0.23, -0.23, 0.10, 0.018
+19770524, -0.47, -0.14, -0.19, 0.25, -0.22, 0.018
+19770525, -0.82, 0.17, 0.26, -0.08, 0.19, 0.018
+19770526, 0.16, -0.18, -0.17, 0.28, -0.06, 0.018
+19770527, -0.64, 0.44, 0.15, -0.14, -0.06, 0.018
+19770531, -0.24, -0.32, -0.03, 0.24, -0.25, 0.018
+19770601, 0.74, -0.32, -0.17, 0.03, 0.02, 0.018
+19770602, -0.14, 0.10, 0.31, -0.28, 0.15, 0.018
+19770603, 0.87, -0.27, -0.47, 0.09, -0.15, 0.018
+19770606, -0.39, 0.31, 0.09, 0.15, -0.08, 0.018
+19770607, 0.44, -0.25, 0.01, 0.05, 0.06, 0.018
+19770608, 0.51, -0.08, 0.12, -0.11, 0.13, 0.018
+19770609, -0.03, 0.35, -0.18, 0.15, -0.16, 0.018
+19770610, 0.29, 0.28, -0.01, -0.04, 0.13, 0.018
+19770613, 0.32, -0.14, -0.19, 0.29, -0.08, 0.018
+19770614, 0.99, -0.50, -0.21, 0.26, -0.13, 0.018
+19770615, -0.20, 0.28, 0.07, 0.09, -0.03, 0.018
+19770616, 0.29, 0.05, -0.25, 0.04, -0.10, 0.018
+19770617, 0.15, 0.25, -0.14, 0.04, -0.07, 0.018
+19770620, 0.43, -0.09, -0.05, 0.04, -0.12, 0.018
+19770621, 0.32, -0.16, 0.14, 0.02, -0.13, 0.018
+19770622, -0.20, 0.29, 0.15, -0.03, -0.02, 0.018
+19770623, 0.22, 0.42, 0.11, -0.06, -0.27, 0.018
+19770624, 0.56, 0.20, -0.09, 0.17, -0.13, 0.018
+19770627, -0.10, 0.31, -0.03, 0.11, -0.17, 0.018
+19770628, -0.72, 0.41, 0.15, -0.02, 0.10, 0.018
+19770629, -0.07, 0.20, 0.05, -0.14, 0.01, 0.018
+19770630, 0.35, 0.29, 0.07, -0.04, -0.05, 0.018
+19770701, -0.26, 0.55, 0.20, -0.07, 0.05, 0.022
+19770705, 0.01, 0.21, -0.11, 0.16, 0.05, 0.022
+19770706, -0.45, 0.30, 0.07, -0.02, -0.05, 0.022
+19770707, 0.31, 0.00, -0.18, 0.15, 0.12, 0.022
+19770708, -0.01, 0.44, 0.23, -0.14, 0.13, 0.022
+19770711, -0.26, 0.20, 0.25, -0.09, 0.00, 0.022
+19770712, -0.10, 0.14, 0.10, -0.03, 0.09, 0.022
+19770713, 0.16, 0.02, -0.17, 0.16, -0.21, 0.022
+19770715, 0.60, -0.11, -0.58, 0.23, -0.30, 0.022
+19770718, 0.62, -0.26, -0.25, 0.34, -0.11, 0.022
+19770719, 0.62, -0.22, -0.18, 0.09, 0.44, 0.022
+19770720, -0.03, -0.04, 0.07, 0.06, 0.20, 0.022
+19770721, -0.11, 0.20, 0.00, 0.09, -0.12, 0.022
+19770722, 0.07, 0.20, 0.05, -0.09, -0.08, 0.022
+19770725, -0.67, 0.42, -0.11, 0.04, -0.30, 0.022
+19770726, -0.53, 0.07, 0.07, -0.23, 0.18, 0.022
+19770727, -1.60, 0.06, 0.18, -0.06, -0.09, 0.022
+19770728, -0.05, -0.23, -0.27, 0.25, -0.10, 0.022
+19770729, -0.02, -0.17, -0.07, 0.02, 0.15, 0.022
+19770801, 0.35, -0.21, 0.00, 0.13, -0.12, 0.019
+19770802, -0.61, 0.14, -0.03, -0.08, -0.08, 0.019
+19770803, -0.22, -0.24, -0.08, 0.17, 0.11, 0.019
+19770804, 0.49, 0.02, -0.41, 0.05, 0.16, 0.019
+19770805, 0.01, 0.29, -0.17, -0.09, 0.02, 0.019
+19770808, -0.59, 0.13, 0.12, 0.06, 0.01, 0.019
+19770809, 0.07, -0.06, -0.23, -0.02, 0.21, 0.019
+19770810, 0.70, -0.29, -0.31, 0.10, 0.05, 0.019
+19770811, -0.54, 0.59, -0.22, -0.16, -0.23, 0.019
+19770812, -0.31, 0.12, -0.19, 0.11, 0.07, 0.019
+19770815, 0.21, -0.27, -0.32, 0.41, -0.29, 0.019
+19770816, -0.36, 0.32, -0.04, 0.01, 0.02, 0.019
+19770817, -0.05, -0.03, -0.44, 0.22, -0.26, 0.019
+19770818, 0.01, 0.08, -0.18, -0.02, 0.15, 0.019
+19770819, -0.23, 0.20, -0.47, 0.10, 0.06, 0.019
+19770822, 0.27, -0.12, -0.42, 0.42, -0.32, 0.019
+19770823, -0.15, 0.19, 0.31, -0.09, -0.02, 0.019
+19770824, -0.38, 0.27, 0.36, -0.16, 0.10, 0.019
+19770825, -0.91, 0.33, 0.28, -0.18, 0.25, 0.019
+19770826, -0.09, -0.15, -0.14, 0.04, -0.07, 0.019
+19770829, 0.80, -0.27, -0.40, 0.19, -0.15, 0.019
+19770830, -0.47, 0.16, 0.30, -0.26, -0.04, 0.019
+19770831, 0.24, -0.27, -0.18, 0.11, -0.34, 0.019
+19770901, 0.14, 0.40, 0.18, -0.03, 0.12, 0.021
+19770902, 0.63, -0.05, -0.09, -0.01, 0.10, 0.021
+19770906, 0.17, -0.16, -0.01, 0.05, -0.11, 0.021
+19770907, 0.26, 0.05, -0.17, 0.14, -0.09, 0.021
+19770908, -0.63, 0.49, 0.34, -0.28, 0.11, 0.021
+19770909, -0.85, 0.43, 0.13, -0.15, -0.02, 0.021
+19770912, -0.31, 0.06, -0.18, 0.22, -0.12, 0.021
+19770913, 0.00, -0.05, -0.24, 0.17, -0.10, 0.021
+19770914, 0.36, -0.15, -0.19, 0.10, 0.01, 0.021
+19770915, 0.31, 0.01, -0.02, 0.18, -0.02, 0.021
+19770916, -0.30, 0.36, 0.07, -0.15, 0.09, 0.021
+19770919, -0.59, 0.17, 0.30, 0.12, -0.14, 0.021
+19770920, 0.01, -0.02, -0.15, 0.22, -0.04, 0.021
+19770921, -0.75, 0.23, 0.30, -0.02, -0.09, 0.021
+19770922, -0.06, -0.09, -0.03, 0.22, -0.15, 0.021
+19770923, -0.02, 0.24, -0.06, -0.13, 0.01, 0.021
+19770926, 0.25, -0.19, -0.29, 0.43, -0.08, 0.021
+19770927, -0.14, 0.08, -0.12, 0.01, -0.03, 0.021
+19770928, 0.04, 0.08, -0.11, 0.05, -0.09, 0.021
+19770929, 0.52, -0.19, 0.08, -0.11, 0.02, 0.021
+19770930, 0.69, -0.09, -0.01, -0.07, 0.02, 0.021
+19771003, 0.28, 0.02, 0.10, 0.01, 0.05, 0.023
+19771004, -0.61, 0.41, 0.42, -0.08, -0.13, 0.023
+19771005, -0.36, 0.16, -0.02, -0.01, -0.06, 0.023
+19771006, 0.36, -0.05, 0.12, -0.07, 0.15, 0.023
+19771007, -0.01, 0.33, -0.06, -0.01, -0.20, 0.023
+19771010, -0.17, 0.18, 0.04, -0.08, -0.03, 0.023
+19771011, -0.77, 0.38, 0.30, 0.02, -0.09, 0.023
+19771012, -1.13, -0.27, 0.14, -0.18, 0.05, 0.023
+19771013, -0.69, -0.22, -0.19, 0.26, -0.08, 0.023
+19771014, 0.03, 0.01, 0.10, -0.18, 0.25, 0.023
+19771017, -0.11, -0.02, -0.15, 0.26, -0.42, 0.023
+19771018, -0.02, 0.22, 0.18, -0.07, 0.01, 0.023
+19771019, -1.05, 0.39, 0.47, -0.14, -0.12, 0.023
+19771020, 0.19, -0.29, -0.07, -0.06, 0.01, 0.023
+19771021, -0.23, 0.29, 0.08, 0.08, 0.05, 0.023
+19771024, -0.79, 0.15, 0.24, 0.18, -0.12, 0.023
+19771025, -0.83, -0.31, 0.07, 0.06, -0.17, 0.023
+19771026, 0.98, -0.60, -0.26, -0.08, 0.41, 0.023
+19771027, 0.36, 0.09, -0.05, 0.19, -0.08, 0.023
+19771028, 0.33, 0.18, -0.05, -0.06, -0.02, 0.023
+19771031, -0.19, 0.36, 0.20, -0.10, -0.11, 0.023
+19771101, -0.98, 0.25, 0.44, -0.23, 0.12, 0.024
+19771102, -0.60, 0.32, 0.00, -0.01, -0.11, 0.024
+19771103, 0.14, -0.07, -0.10, 0.06, 0.08, 0.024
+19771104, 0.94, 0.07, -0.07, 0.12, 0.03, 0.024
+19771107, 0.81, -0.04, -0.18, 0.12, 0.01, 0.024
+19771108, 0.19, 0.18, 0.17, -0.10, 0.01, 0.024
+19771109, 0.50, 0.11, -0.14, -0.04, 0.11, 0.024
+19771110, 1.91, -0.41, -0.55, 0.38, -0.10, 0.024
+19771111, 1.28, -0.39, -0.13, -0.08, 0.02, 0.024
+19771114, -0.50, 0.48, 0.27, -0.08, -0.01, 0.024
+19771115, 0.65, -0.03, -0.26, 0.24, 0.12, 0.024
+19771116, -0.33, 0.48, 0.10, -0.07, 0.11, 0.024
+19771117, -0.21, 0.72, 0.28, -0.13, 0.13, 0.024
+19771118, 0.25, 0.37, -0.04, 0.05, 0.00, 0.024
+19771121, -0.08, 0.18, -0.03, 0.01, -0.22, 0.024
+19771122, 0.86, -0.21, -0.13, 0.11, -0.08, 0.024
+19771123, 0.59, 0.20, -0.07, -0.02, 0.17, 0.024
+19771125, 0.32, 0.23, -0.02, -0.14, 0.09, 0.024
+19771128, -0.54, 0.33, 0.23, 0.07, 0.10, 0.024
+19771129, -1.41, 0.57, 0.38, -0.18, -0.08, 0.024
+19771130, 0.17, -0.01, 0.09, -0.12, 0.13, 0.024
+19771201, 0.05, 0.57, 0.08, 0.09, 0.08, 0.023
+19771202, 0.01, 0.38, 0.21, -0.22, 0.07, 0.023
+19771205, -0.36, 0.33, 0.07, 0.11, -0.09, 0.023
+19771206, -1.52, 0.16, 0.44, -0.15, -0.05, 0.023
+19771207, -0.14, 0.01, 0.01, 0.06, -0.18, 0.023
+19771208, 0.20, 0.04, -0.25, 0.14, 0.07, 0.023
+19771209, 0.69, -0.02, 0.01, 0.08, 0.09, 0.023
+19771212, 0.04, -0.01, -0.05, 0.18, 0.04, 0.023
+19771213, -0.05, -0.02, -0.05, 0.10, -0.01, 0.023
+19771214, 0.33, -0.01, -0.31, 0.05, 0.04, 0.023
+19771215, -0.40, 0.48, 0.01, -0.04, -0.11, 0.023
+19771216, -0.11, 0.22, 0.15, -0.11, 0.03, 0.023
+19771219, -0.71, -0.01, 0.37, -0.10, -0.24, 0.023
+19771220, -0.36, -0.32, -0.02, 0.00, 0.03, 0.023
+19771221, 0.58, -0.16, -0.45, 0.23, 0.08, 0.023
+19771222, 0.66, -0.16, -0.25, 0.05, 0.10, 0.023
+19771223, 0.88, -0.21, -0.21, 0.00, -0.09, 0.023
+19771227, -0.02, -0.17, 0.24, 0.09, -0.05, 0.023
+19771228, 0.02, 0.13, 0.10, 0.24, -0.13, 0.023
+19771229, 0.31, 0.01, -0.30, 0.23, -0.16, 0.023
+19771230, 0.18, 0.34, -0.17, -0.11, -0.17, 0.023
+19780103, -1.29, 0.46, 0.67, -0.62, 0.10, 0.023
+19780104, -0.41, -0.11, 0.08, -0.20, 0.11, 0.023
+19780105, -0.73, 0.41, 0.61, -0.59, 0.06, 0.023
+19780106, -1.24, -0.12, 0.54, -0.09, 0.14, 0.023
+19780109, -1.18, -0.27, 0.29, -0.14, 0.08, 0.023
+19780110, -0.64, -0.10, 0.14, -0.26, 0.28, 0.023
+19780111, -0.53, 0.05, 0.30, -0.09, 0.17, 0.023
+19780112, 0.19, 0.24, 0.00, 0.10, 0.10, 0.023
+19780113, -0.03, 0.38, 0.33, -0.12, 0.13, 0.023
+19780116, -0.35, -0.30, 0.09, -0.05, 0.11, 0.023
+19780117, 0.52, 0.08, -0.24, 0.06, 0.03, 0.023
+19780118, 0.68, 0.03, 0.21, -0.15, 0.12, 0.023
+19780119, -0.34, 0.70, 0.08, 0.04, -0.05, 0.023
+19780120, -0.21, 0.35, 0.04, -0.07, 0.08, 0.023
+19780123, -0.66, 0.32, 0.13, -0.04, 0.12, 0.023
+19780124, 0.02, 0.13, 0.06, 0.04, -0.13, 0.023
+19780125, 0.17, 0.20, 0.32, 0.00, 0.16, 0.023
+19780126, -0.77, 0.43, 0.45, -0.08, 0.02, 0.023
+19780127, -0.02, 0.02, 0.00, -0.02, 0.05, 0.023
+19780130, 0.75, -0.29, -0.32, 0.39, 0.01, 0.023
+19780131, -0.09, 0.19, -0.38, 0.19, -0.10, 0.023
+19780201, 0.78, 0.12, -0.37, 0.44, -0.18, 0.024
+19780202, 0.34, 0.14, 0.15, 0.01, 0.34, 0.024
+19780203, -0.30, 0.68, 0.02, -0.24, 0.02, 0.024
+19780206, 0.00, 0.10, 0.03, -0.04, 0.10, 0.024
+19780207, 0.75, -0.27, -0.23, 0.17, 0.13, 0.024
+19780208, 0.52, -0.13, 0.04, -0.03, 0.24, 0.024
+19780209, -0.36, 0.56, 0.24, -0.20, 0.12, 0.024
+19780210, -0.12, 0.40, -0.07, 0.05, -0.02, 0.024
+19780213, -0.27, 0.25, 0.04, 0.16, 0.12, 0.024
+19780214, -0.78, 0.32, 0.20, -0.11, 0.13, 0.024
+19780215, -0.26, 0.29, 0.05, -0.01, 0.09, 0.024
+19780216, -0.78, 0.34, 0.08, 0.03, -0.19, 0.024
+19780217, -0.11, 0.19, 0.22, -0.09, 0.00, 0.024
+19780221, -0.39, 0.17, 0.07, -0.06, 0.24, 0.024
+19780222, 0.06, 0.10, -0.01, 0.18, -0.11, 0.024
+19780223, 0.18, 0.04, -0.02, 0.07, -0.03, 0.024
+19780224, 0.84, -0.18, -0.19, 0.09, -0.07, 0.024
+19780227, -0.70, 0.37, 0.21, -0.06, -0.14, 0.024
+19780228, -0.79, 0.16, 0.30, 0.00, 0.25, 0.024
+19780301, 0.10, -0.09, -0.01, 0.06, 0.13, 0.024
+19780302, 0.21, 0.12, 0.17, -0.14, 0.36, 0.024
+19780303, 0.13, 0.02, 0.24, -0.09, 0.18, 0.024
+19780306, -0.54, 0.23, 0.23, -0.10, 0.06, 0.024
+19780307, 0.47, -0.12, -0.15, -0.02, 0.04, 0.024
+19780308, 0.49, -0.08, -0.15, -0.03, 0.03, 0.024
+19780309, 0.20, 0.35, -0.03, 0.14, -0.17, 0.024
+19780310, 1.04, -0.16, -0.34, 0.00, 0.10, 0.024
+19780313, 0.10, 0.06, 0.06, 0.24, 0.00, 0.024
+19780314, 0.40, -0.22, -0.03, 0.09, 0.09, 0.024
+19780315, -0.18, 0.40, 0.17, -0.06, 0.24, 0.024
+19780316, 0.43, 0.33, -0.06, -0.02, 0.09, 0.024
+19780317, 0.73, -0.03, -0.23, 0.13, 0.14, 0.024
+19780320, 0.58, -0.20, -0.19, -0.15, 0.10, 0.024
+19780321, -0.97, 0.68, 0.49, -0.10, -0.45, 0.024
+19780322, -0.26, 0.33, 0.12, -0.03, 0.07, 0.024
+19780323, -0.05, 0.41, 0.09, -0.17, 0.42, 0.024
+19780327, -0.43, 0.58, 0.25, 0.01, 0.09, 0.024
+19780328, 0.62, -0.03, -0.06, 0.01, 0.21, 0.024
+19780329, 0.20, 0.41, 0.10, -0.05, -0.05, 0.024
+19780330, -0.23, 0.35, 0.23, -0.04, -0.02, 0.024
+19780331, -0.23, 0.17, 0.27, -0.25, 0.15, 0.024
+19780403, -0.71, 0.17, 0.24, -0.14, -0.02, 0.027
+19780404, 0.38, 0.05, -0.09, 0.01, 0.00, 0.027
+19780405, 0.81, 0.06, -0.19, 0.21, -0.10, 0.027
+19780406, 0.24, 0.21, -0.08, -0.05, -0.08, 0.027
+19780407, 0.47, 0.14, -0.39, 0.11, -0.10, 0.027
+19780410, 0.31, -0.15, -0.05, -0.01, -0.02, 0.027
+19780411, -0.21, 0.19, 0.04, -0.01, -0.15, 0.027
+19780412, -0.03, 0.41, 0.24, -0.03, 0.10, 0.027
+19780413, 0.97, 0.10, -0.50, 0.33, 0.14, 0.027
+19780414, 1.86, -0.73, -0.59, 0.44, -0.44, 0.027
+19780417, 1.39, -1.20, -0.77, 0.81, -0.17, 0.027
+19780418, -1.03, 0.40, 0.28, -0.15, -0.11, 0.027
+19780419, 0.36, 0.03, -0.07, 0.13, 0.16, 0.027
+19780420, 0.72, 0.06, -0.26, 0.30, -0.29, 0.027
+19780421, -0.10, 0.51, 0.05, -0.08, -0.05, 0.027
+19780424, 1.24, -0.65, -0.38, 0.10, 0.08, 0.027
+19780425, 0.77, -0.50, -0.58, 0.40, -0.34, 0.027
+19780426, 0.17, 0.01, -0.04, -0.01, 0.04, 0.027
+19780427, -0.86, 0.64, 0.20, -0.01, -0.10, 0.027
+19780428, 0.87, -0.06, -0.36, 0.30, 0.18, 0.027
+19780501, 0.84, -0.14, -0.33, 0.43, -0.28, 0.023
+19780502, -0.26, 0.31, 0.23, -0.11, 0.12, 0.023
+19780503, -0.73, 0.81, 0.33, -0.33, 0.18, 0.023
+19780504, -0.05, 0.48, 0.05, 0.05, 0.05, 0.023
+19780505, 0.68, 0.30, -0.24, 0.25, 0.11, 0.023
+19780508, -0.26, 0.37, -0.02, 0.11, -0.07, 0.023
+19780509, -0.17, 0.23, -0.11, -0.01, -0.14, 0.023
+19780510, 0.09, 0.40, -0.07, -0.07, 0.25, 0.023
+19780511, 1.12, -0.25, -0.62, 0.18, 0.04, 0.023
+19780512, 0.83, 0.10, -0.46, 0.38, -0.14, 0.023
+19780515, 0.59, -0.20, -0.27, 0.21, -0.18, 0.023
+19780516, 0.67, -0.03, -0.24, 0.07, -0.15, 0.023
+19780517, 0.29, 0.34, 0.15, -0.13, 0.07, 0.023
+19780518, -0.75, 0.74, 0.43, -0.23, -0.07, 0.023
+19780519, -0.44, 0.49, 0.14, -0.26, 0.15, 0.023
+19780522, 0.83, -0.38, -0.25, -0.07, -0.04, 0.023
+19780523, -0.85, 0.24, 0.39, -0.19, 0.02, 0.023
+19780524, -0.98, 0.01, 0.40, -0.14, 0.06, 0.023
+19780525, -0.18, 0.31, -0.02, -0.16, 0.35, 0.023
+19780526, -0.16, 0.31, -0.11, 0.12, -0.07, 0.023
+19780530, 0.23, -0.03, -0.06, 0.09, -0.02, 0.023
+19780531, 0.40, -0.12, 0.06, 0.04, 0.06, 0.023
+19780601, 0.11, 0.00, -0.07, 0.13, -0.05, 0.024
+19780602, 0.74, -0.10, -0.25, 0.22, -0.11, 0.024
+19780605, 1.60, -0.68, -0.61, 0.32, -0.14, 0.024
+19780606, 0.43, 0.02, 0.12, 0.16, -0.27, 0.024
+19780607, -0.14, 0.34, 0.10, -0.22, 0.15, 0.024
+19780608, 0.21, 0.50, 0.14, -0.04, 0.00, 0.024
+19780609, -0.14, 0.67, -0.04, -0.16, 0.09, 0.024
+19780612, -0.28, 0.32, 0.12, -0.17, -0.09, 0.024
+19780613, 0.08, 0.11, -0.16, -0.12, 0.11, 0.024
+19780614, -0.06, 0.54, 0.00, -0.34, -0.03, 0.024
+19780615, -0.96, 0.43, 0.07, 0.01, -0.31, 0.024
+19780616, -0.85, 0.32, 0.24, -0.31, -0.02, 0.024
+19780619, -0.19, -0.46, 0.02, -0.07, 0.05, 0.024
+19780620, -0.95, 0.10, 0.45, -0.12, 0.12, 0.024
+19780621, -0.65, -0.53, 0.17, -0.05, 0.14, 0.024
+19780622, 0.21, -0.06, 0.12, -0.15, 0.18, 0.024
+19780623, -0.28, 0.51, 0.22, -0.36, 0.09, 0.024
+19780626, -1.27, -0.13, 0.38, -0.19, 0.23, 0.024
+19780627, 0.21, -0.66, -0.33, 0.23, -0.28, 0.024
+19780628, 0.37, -0.06, -0.04, -0.09, 0.25, 0.024
+19780629, 0.21, 0.25, -0.01, -0.17, 0.07, 0.024
+19780630, -0.07, 0.22, -0.02, 0.00, -0.15, 0.024
+19780703, -0.31, 0.32, 0.06, 0.00, -0.16, 0.028
+19780705, -0.87, -0.04, 0.03, 0.04, 0.15, 0.028
+19780706, -0.03, -0.40, -0.17, 0.07, -0.02, 0.028
+19780707, 0.57, -0.04, -0.07, 0.01, 0.17, 0.028
+19780710, 0.34, -0.20, -0.21, 0.17, -0.06, 0.028
+19780711, 0.60, -0.26, 0.08, 0.15, -0.04, 0.028
+19780712, 0.35, 0.02, -0.02, 0.08, -0.22, 0.028
+19780713, 0.02, 0.19, 0.13, 0.01, -0.05, 0.028
+19780714, 1.23, -0.33, -0.54, 0.52, -0.07, 0.028
+19780717, 0.23, 0.16, -0.08, 0.30, -0.16, 0.028
+19780718, -0.78, 0.48, 0.32, -0.36, 0.05, 0.028
+19780719, 1.10, -0.39, -0.09, 0.04, 0.02, 0.028
+19780720, 0.00, 0.54, -0.05, 0.00, -0.36, 0.028
+19780721, -0.32, 0.24, 0.23, -0.10, 0.12, 0.028
+19780724, -0.10, 0.05, -0.10, 0.14, 0.04, 0.028
+19780725, 0.68, -0.38, 0.01, -0.04, 0.05, 0.028
+19780726, 0.60, 0.07, -0.34, 0.24, -0.11, 0.028
+19780727, 0.52, 0.22, 0.08, -0.08, 0.01, 0.028
+19780728, 0.46, 0.06, 0.02, 0.10, 0.11, 0.028
+19780731, 0.71, -0.11, -0.24, 0.12, -0.11, 0.028
+19780801, 0.12, -0.02, -0.01, -0.15, 0.01, 0.024
+19780802, 2.13, -0.89, -0.62, 0.65, -0.09, 0.024
+19780803, 0.43, -0.30, 0.08, 0.00, -0.64, 0.024
+19780804, 0.43, -0.17, 0.09, 0.12, 0.19, 0.024
+19780807, -0.17, 0.60, -0.12, 0.16, -0.23, 0.024
+19780808, 0.48, 0.12, -0.33, 0.48, -0.16, 0.024
+19780809, 0.52, 0.44, -0.20, 0.09, -0.13, 0.024
+19780810, -0.59, 0.71, 0.30, -0.31, 0.08, 0.024
+19780811, 0.32, 0.25, 0.17, 0.24, 0.23, 0.024
+19780814, 0.09, 0.34, 0.16, -0.09, 0.24, 0.024
+19780815, -0.14, 0.10, 0.15, 0.00, 0.16, 0.024
+19780816, 0.72, 0.15, -0.42, 0.23, 0.09, 0.024
+19780817, 0.56, 0.38, -0.23, 0.11, -0.23, 0.024
+19780818, -0.23, 0.49, 0.17, -0.25, 0.10, 0.024
+19780821, -0.80, 0.11, 0.35, 0.10, 0.15, 0.024
+19780822, 0.29, 0.05, -0.17, 0.27, 0.12, 0.024
+19780823, 0.61, 0.22, -0.36, 0.46, -0.27, 0.024
+19780824, 0.27, 0.56, 0.17, -0.04, 0.01, 0.024
+19780825, 0.05, 0.47, -0.02, 0.00, 0.21, 0.024
+19780828, -0.72, 0.40, 0.23, -0.28, 0.23, 0.024
+19780829, -0.58, 0.26, 0.23, -0.40, 0.34, 0.024
+19780830, 0.15, 0.23, -0.18, -0.08, 0.10, 0.024
+19780831, -0.20, 0.16, 0.01, 0.13, -0.01, 0.024
+19780901, 0.40, -0.21, 0.06, 0.15, 0.42, 0.031
+19780905, 0.53, -0.47, -0.14, 0.30, 0.00, 0.031
+19780906, 0.84, 0.04, -0.17, 0.22, -0.13, 0.031
+19780907, 0.12, 0.45, 0.02, 0.08, -0.26, 0.031
+19780908, 1.25, -0.20, -0.17, 0.05, -0.07, 0.031
+19780911, 0.21, 0.42, 0.12, -0.05, -0.24, 0.031
+19780912, 0.07, 0.06, 0.00, 0.03, 0.31, 0.031
+19780913, -0.55, 0.53, 0.28, -0.31, -0.05, 0.031
+19780914, -1.06, 0.33, 0.41, -0.38, 0.02, 0.031
+19780915, -0.95, 0.12, 0.19, -0.27, 0.20, 0.031
+19780918, -1.07, -0.38, 0.27, -0.32, 0.11, 0.031
+19780919, -0.75, -0.53, 0.33, 0.00, 0.16, 0.031
+19780920, -0.94, -0.54, 0.40, -0.07, 0.16, 0.031
+19780921, -0.04, -0.44, 0.01, -0.12, 0.35, 0.031
+19780922, 0.03, 0.30, -0.05, 0.08, 0.10, 0.031
+19780925, -0.03, -0.07, 0.12, 0.05, 0.19, 0.031
+19780926, 0.69, 0.00, -0.09, -0.01, 0.05, 0.031
+19780927, -0.87, 0.26, 0.25, -0.17, 0.05, 0.031
+19780928, 0.21, -0.14, 0.04, 0.03, 0.15, 0.031
+19780929, 0.49, 0.10, -0.03, 0.03, 0.09, 0.031
+19781002, 0.32, -0.10, -0.04, 0.20, -0.17, 0.031
+19781003, -0.31, 0.01, 0.13, -0.34, -0.04, 0.031
+19781004, 0.38, -0.46, 0.04, -0.07, -0.01, 0.031
+19781005, 0.22, 0.19, 0.09, 0.09, -0.14, 0.031
+19781006, 0.23, 0.16, -0.06, 0.08, -0.06, 0.031
+19781009, 0.92, -0.37, -0.19, 0.28, -0.01, 0.031
+19781010, -0.14, 0.25, 0.05, 0.00, -0.19, 0.031
+19781011, 0.86, -0.70, -0.33, 0.21, 0.08, 0.031
+19781012, -0.47, 0.66, 0.07, -0.11, -0.26, 0.031
+19781013, -0.29, 0.20, 0.10, -0.10, 0.06, 0.031
+19781016, -1.82, 0.13, 0.36, -0.14, 0.07, 0.031
+19781017, -1.71, -1.33, 0.12, -0.08, 0.21, 0.031
+19781018, -0.99, -0.88, 0.08, -0.04, 0.11, 0.031
+19781019, -1.32, -0.41, 0.39, -0.19, 0.21, 0.031
+19781020, -1.79, -2.03, 0.08, 0.05, 0.44, 0.031
+19781023, -0.25, -1.46, -0.15, 0.27, 0.01, 0.031
+19781024, -0.58, 0.43, 0.34, -0.04, 0.12, 0.031
+19781025, -0.22, 0.24, 0.01, 0.02, 0.04, 0.031
+19781026, -1.73, -1.74, 0.63, -0.32, 0.77, 0.031
+19781027, -1.97, -1.62, -0.04, 0.23, 0.43, 0.031
+19781030, 0.00, -3.16, -0.76, 0.53, -0.36, 0.031
+19781031, -1.81, 0.23, 0.73, -0.32, -0.12, 0.031
+19781101, 4.12, 0.63, -1.70, 1.35, -1.22, 0.033
+19781102, -0.92, 1.22, 0.24, 0.01, 0.23, 0.033
+19781103, 0.56, 0.27, -0.13, 0.36, 0.63, 0.033
+19781106, -0.80, 0.77, 0.36, -0.51, -0.27, 0.033
+19781107, -1.58, -0.91, 0.53, -0.45, 0.16, 0.033
+19781108, 0.43, -0.45, -0.57, 0.43, 0.12, 0.033
+19781109, 0.14, 0.48, -0.01, -0.06, -0.01, 0.033
+19781110, 0.49, 0.43, -0.02, -0.27, 0.00, 0.033
+19781113, -1.67, -0.07, 0.44, -0.24, 0.09, 0.033
+19781114, -1.02, -1.33, 0.19, 0.04, 0.02, 0.033
+19781115, 0.29, 0.21, -0.26, -0.04, -0.27, 0.033
+19781116, 1.01, -0.45, -0.47, 0.38, -0.28, 0.033
+19781117, 0.95, 0.56, -0.33, 0.02, -0.25, 0.033
+19781120, 0.91, 0.19, -0.22, 0.30, -0.10, 0.033
+19781121, -0.13, 0.41, -0.03, 0.05, -0.02, 0.033
+19781122, 0.59, 0.34, -0.16, -0.03, 0.19, 0.033
+19781124, 0.47, 0.33, -0.22, 0.15, 0.13, 0.033
+19781127, 0.25, 0.01, -0.17, 0.19, -0.18, 0.033
+19781128, -0.80, 0.27, 0.36, -0.37, -0.06, 0.033
+19781129, -1.39, 0.14, 0.43, -0.38, 0.08, 0.033
+19781130, 0.90, -0.21, -0.42, 0.20, -0.18, 0.033
+19781201, 1.57, 0.08, -0.68, 0.52, -0.30, 0.039
+19781204, 0.01, 0.27, -0.07, 0.20, -0.23, 0.039
+19781205, 1.24, -0.17, -0.36, 0.39, -0.24, 0.039
+19781206, 0.17, 0.24, 0.16, -0.02, 0.02, 0.039
+19781207, -0.39, 0.38, -0.04, -0.06, -0.02, 0.039
+19781208, -0.43, 0.23, 0.42, -0.38, -0.04, 0.039
+19781211, 0.43, -0.18, -0.31, 0.20, -0.25, 0.039
+19781212, -0.52, 0.21, 0.30, -0.16, 0.26, 0.039
+19781213, -0.59, 0.15, 0.02, -0.08, 0.01, 0.039
+19781214, -0.03, -0.04, 0.02, -0.01, -0.21, 0.039
+19781215, -0.74, 0.01, 0.14, -0.18, 0.21, 0.039
+19781218, -2.23, -0.78, 0.60, -0.41, 0.31, 0.039
+19781219, 0.72, -0.37, -0.71, 0.73, -0.09, 0.039
+19781220, 0.41, 0.23, -0.31, 0.17, -0.29, 0.039
+19781221, 0.05, 0.32, -0.20, 0.13, -0.19, 0.039
+19781222, 1.66, -0.17, -0.61, 0.45, 0.05, 0.039
+19781226, 0.98, -0.40, -0.82, 0.92, -0.28, 0.039
+19781227, -0.84, 0.19, 0.32, -0.17, 0.08, 0.039
+19781228, -0.40, 0.06, -0.18, 0.00, -0.13, 0.039
+19781229, -0.13, 0.70, 0.10, -0.18, -0.12, 0.039
+19790102, 0.58, -0.13, 0.46, -0.43, 0.50, 0.035
+19790103, 1.12, 0.42, -0.06, 0.02, -0.17, 0.035
+19790104, 0.94, 0.44, 0.01, -0.14, 0.08, 0.035
+19790105, 0.65, 0.62, -0.03, -0.02, -0.21, 0.035
+19790108, -0.28, 0.08, 0.09, 0.03, -0.04, 0.035
+19790109, 0.51, 0.34, 0.02, -0.06, -0.05, 0.035
+19790110, -0.55, 0.34, 0.22, -0.22, 0.04, 0.035
+19790111, 0.42, -0.07, -0.39, -0.03, 0.02, 0.035
+19790112, 0.75, 0.33, -0.23, 0.13, -0.20, 0.035
+19790115, 0.65, -0.18, -0.12, 0.45, 0.18, 0.035
+19790116, -1.13, 0.29, 0.58, -0.38, 0.21, 0.035
+19790117, -0.08, -0.21, 0.23, -0.19, 0.14, 0.035
+19790118, 0.40, 0.50, 0.07, -0.45, 0.07, 0.035
+19790119, -0.02, 0.43, 0.24, -0.26, -0.08, 0.035
+19790122, 0.05, -0.12, -0.12, 0.14, 0.17, 0.035
+19790123, 0.63, -0.02, 0.16, -0.22, 0.05, 0.035
+19790124, -0.36, 0.08, 0.30, -0.21, 0.10, 0.035
+19790125, 0.93, -0.30, -0.01, 0.07, 0.14, 0.035
+19790126, 0.64, -0.06, 0.09, 0.02, 0.19, 0.035
+19790129, -0.24, 0.14, 0.18, -0.25, 0.16, 0.035
+19790130, -0.35, 0.23, 0.22, 0.02, 0.13, 0.035
+19790131, -1.13, 0.38, 0.22, -0.33, 0.02, 0.035
+19790201, 0.04, -0.18, -0.04, -0.02, 0.12, 0.038
+19790202, -0.33, 0.47, 0.07, -0.18, -0.21, 0.038
+19790205, -1.31, -0.08, 0.27, -0.29, 0.09, 0.038
+19790206, -0.04, -0.20, 0.20, -0.09, 0.20, 0.038
+19790207, -0.95, -0.31, 0.25, -0.18, 0.37, 0.038
+19790208, 0.52, 0.14, -0.12, 0.05, -0.06, 0.038
+19790209, 0.25, 0.30, 0.04, -0.03, 0.19, 0.038
+19790212, 0.25, -0.21, -0.26, 0.16, -0.02, 0.038
+19790213, 0.74, 0.17, -0.07, 0.05, -0.10, 0.038
+19790214, -0.14, 0.07, 0.24, -0.24, 0.09, 0.038
+19790215, -0.07, 0.26, -0.11, -0.14, -0.01, 0.038
+19790216, 0.03, 0.31, 0.09, -0.15, 0.00, 0.038
+19790220, 0.58, -0.26, -0.18, 0.24, 0.06, 0.038
+19790221, -0.28, 0.25, 0.23, -0.04, 0.17, 0.038
+19790222, -0.57, 0.32, 0.13, -0.22, 0.05, 0.038
+19790223, -0.57, 0.17, 0.15, -0.01, 0.01, 0.038
+19790226, -0.14, 0.05, -0.05, -0.02, 0.02, 0.038
+19790227, -1.70, -0.49, 0.48, -0.18, 0.08, 0.038
+19790228, 0.09, -0.23, -0.09, 0.09, 0.03, 0.038
+19790301, 0.67, -0.05, 0.02, -0.05, 0.11, 0.037
+19790302, 0.12, 0.34, 0.00, 0.06, 0.10, 0.037
+19790305, 1.10, -0.31, -0.06, 0.22, -0.02, 0.037
+19790306, -0.23, 0.14, 0.62, -0.05, 0.08, 0.037
+19790307, 0.64, 0.10, 0.15, 0.09, 0.13, 0.037
+19790308, 1.01, -0.07, -0.07, -0.06, 0.05, 0.037
+19790309, 0.03, 0.12, 0.07, 0.05, -0.08, 0.037
+19790312, 0.15, 0.12, -0.17, 0.04, 0.22, 0.037
+19790313, 0.23, 0.28, -0.11, 0.21, -0.02, 0.037
+19790314, -0.07, 0.16, -0.03, -0.08, 0.15, 0.037
+19790315, 0.17, 0.10, 0.17, -0.08, 0.13, 0.037
+19790316, 0.74, -0.02, -0.31, 0.22, 0.02, 0.037
+19790319, 0.35, -0.01, -0.04, -0.01, -0.10, 0.037
+19790320, -0.53, 0.26, 0.03, -0.04, 0.06, 0.037
+19790321, 0.66, -0.11, -0.37, 0.20, -0.14, 0.037
+19790322, 0.40, 0.14, -0.16, 0.08, -0.33, 0.037
+19790323, -0.02, 0.53, 0.08, -0.42, -0.23, 0.037
+19790326, -0.50, 0.16, 0.23, -0.01, 0.22, 0.037
+19790327, 1.30, -0.52, -0.43, 0.16, 0.03, 0.037
+19790328, -0.36, 0.39, 0.09, 0.07, 0.04, 0.037
+19790329, -0.03, 0.51, -0.28, -0.01, -0.19, 0.037
+19790330, -0.31, 0.64, -0.03, 0.01, 0.03, 0.037
+19790402, -0.68, 0.28, 0.15, 0.14, 0.11, 0.040
+19790403, 1.34, -0.29, -0.15, 0.25, -0.02, 0.040
+19790404, 0.30, 0.06, 0.12, 0.18, -0.14, 0.040
+19790405, 0.55, -0.04, -0.15, 0.17, 0.10, 0.040
+19790406, -0.06, 0.08, 0.08, -0.09, -0.18, 0.040
+19790409, -0.30, 0.17, 0.08, 0.00, 0.00, 0.040
+19790410, 0.45, 0.02, 0.17, 0.02, 0.04, 0.040
+19790411, -0.90, 0.36, 0.40, -0.35, 0.27, 0.040
+19790412, -0.24, 0.39, 0.30, -0.20, 0.15, 0.040
+19790416, -0.87, 0.02, 0.12, -0.11, -0.05, 0.040
+19790417, -0.08, -0.11, 0.02, 0.04, 0.11, 0.040
+19790418, 0.49, 0.31, -0.04, 0.15, -0.17, 0.040
+19790419, -0.38, 0.38, -0.05, 0.09, -0.05, 0.040
+19790420, 0.01, 0.18, -0.12, 0.13, -0.22, 0.040
+19790423, 0.30, -0.01, -0.22, 0.34, -0.15, 0.040
+19790424, 0.52, -0.04, -0.05, 0.22, -0.01, 0.040
+19790425, 0.33, 0.09, 0.00, 0.20, 0.19, 0.040
+19790426, -0.47, 0.39, 0.26, -0.02, 0.12, 0.040
+19790427, -0.25, 0.21, 0.14, -0.08, -0.04, 0.040
+19790430, -0.07, -0.11, -0.04, 0.01, 0.16, 0.040
+19790501, -0.02, 0.07, 0.09, 0.07, -0.08, 0.037
+19790502, 0.05, 0.15, -0.08, 0.21, 0.03, 0.037
+19790503, 0.02, 0.11, -0.19, 0.17, 0.02, 0.037
+19790504, -0.97, 0.20, 0.25, -0.05, 0.17, 0.037
+19790507, -1.82, -0.84, 0.33, -0.24, 0.22, 0.037
+19790508, -0.02, -0.71, -0.16, 0.11, -0.11, 0.037
+19790509, 0.33, 0.26, 0.21, -0.15, -0.07, 0.037
+19790510, -0.89, 0.15, 0.23, -0.16, -0.15, 0.037
+19790511, 0.12, 0.02, 0.02, 0.08, -0.13, 0.037
+19790514, -0.48, 0.16, 0.02, -0.17, 0.08, 0.037
+19790515, 0.07, -0.04, 0.22, -0.12, 0.05, 0.037
+19790516, 0.22, -0.20, 0.05, -0.21, 0.21, 0.037
+19790517, 1.47, -0.45, 0.08, 0.05, 0.36, 0.037
+19790518, 0.08, 0.36, 0.00, -0.12, -0.14, 0.037
+19790521, 0.30, 0.14, -0.16, 0.01, -0.15, 0.037
+19790522, 0.46, -0.04, -0.10, 0.10, -0.14, 0.037
+19790523, -0.39, 0.50, 0.04, -0.09, -0.33, 0.037
+19790524, 0.13, 0.16, 0.04, -0.26, -0.17, 0.037
+19790525, 0.29, 0.24, 0.03, -0.09, -0.09, 0.037
+19790529, -0.18, 0.01, 0.05, -0.04, -0.07, 0.037
+19790530, -0.94, -0.06, 0.21, -0.24, 0.05, 0.037
+19790531, 0.01, -0.05, 0.11, -0.22, 0.06, 0.037
+19790601, 0.10, 0.16, -0.12, 0.00, -0.09, 0.038
+19790604, 0.18, -0.07, 0.35, 0.14, 0.24, 0.038
+19790605, 1.18, -0.20, -0.37, 0.20, -0.13, 0.038
+19790606, 0.66, -0.12, -0.25, 0.34, -0.13, 0.038
+19790607, 0.57, -0.02, -0.03, -0.08, -0.10, 0.038
+19790608, -0.20, 0.38, 0.54, -0.25, -0.23, 0.038
+19790611, 0.26, 0.08, -0.03, 0.21, 0.23, 0.038
+19790612, 0.90, -0.12, 0.14, 0.11, -0.46, 0.038
+19790613, -0.35, 0.55, 0.56, -0.35, -0.35, 0.038
+19790614, -0.19, -0.01, 0.11, -0.37, 0.51, 0.038
+19790615, 0.05, 0.11, -0.14, -0.23, 0.06, 0.038
+19790618, -0.57, 0.15, 0.21, -0.21, 0.27, 0.038
+19790619, 0.02, -0.04, 0.27, 0.01, -0.19, 0.038
+19790620, 0.14, 0.35, 0.12, -0.07, -0.09, 0.038
+19790621, 0.39, 0.10, -0.17, 0.07, -0.05, 0.038
+19790622, 0.44, -0.14, -0.06, -0.14, 0.01, 0.038
+19790625, -0.52, -0.09, 0.14, -0.48, 0.31, 0.038
+19790626, -0.44, 0.06, 0.19, -0.31, 0.10, 0.038
+19790627, 0.56, -0.13, -0.09, 0.11, -0.54, 0.038
+19790628, 0.54, -0.07, 0.04, -0.04, 0.09, 0.038
+19790629, 0.02, -0.04, -0.02, -0.19, 0.06, 0.038
+19790702, -0.91, -0.05, 0.48, -0.26, 0.38, 0.036
+19790703, 0.14, 0.08, 0.28, -0.21, -0.05, 0.036
+19790705, 0.37, 0.16, 0.08, 0.00, 0.16, 0.036
+19790706, 1.04, -0.30, -0.26, 0.10, 0.13, 0.036
+19790709, 0.78, -0.43, 0.22, 0.03, 0.20, 0.036
+19790710, -0.31, 0.14, 0.10, -0.11, 0.16, 0.036
+19790711, -0.60, 0.43, 0.21, -0.33, -0.21, 0.036
+19790712, -0.76, 0.55, 0.35, -0.24, 0.06, 0.036
+19790713, -0.34, 0.10, 0.12, -0.32, 0.16, 0.036
+19790716, 0.41, -0.14, -0.02, 0.03, 0.09, 0.036
+19790717, -0.97, -0.06, 0.53, -0.35, 0.44, 0.036
+19790718, -0.29, -0.31, -0.13, 0.13, -0.01, 0.036
+19790719, -0.01, 0.53, 0.11, -0.23, -0.07, 0.036
+19790720, 0.25, 0.03, -0.21, 0.19, 0.03, 0.036
+19790723, -0.29, 0.09, -0.04, 0.05, -0.25, 0.036
+19790724, 0.31, -0.01, -0.01, 0.22, 0.14, 0.036
+19790725, 1.05, -0.29, -0.20, 0.55, -0.06, 0.036
+19790726, 0.11, 0.29, 0.02, 0.05, -0.35, 0.036
+19790727, 0.12, 0.35, 0.05, -0.05, 0.03, 0.036
+19790730, 0.13, 0.11, -0.11, 0.41, -0.32, 0.036
+19790731, 0.59, -0.09, 0.02, 0.16, -0.12, 0.036
+19790801, 0.35, 0.23, -0.18, 0.34, 0.05, 0.033
+19790802, 0.05, 0.32, -0.24, 0.18, -0.45, 0.033
+19790803, -0.08, 0.04, 0.16, -0.14, 0.08, 0.033
+19790806, 0.20, -0.17, -0.17, 0.26, 0.00, 0.033
+19790807, 1.17, -0.40, -0.50, 0.38, -0.34, 0.033
+19790808, 0.33, 0.08, -0.13, 0.06, -0.23, 0.033
+19790809, -0.29, 0.44, 0.09, -0.15, 0.03, 0.033
+19790810, 0.80, -0.09, -0.54, 0.37, -0.46, 0.033
+19790813, 0.86, -0.19, -0.23, 0.32, -0.45, 0.033
+19790814, 0.15, 0.18, 0.33, -0.10, 0.11, 0.033
+19790815, 0.69, 0.12, -0.16, 0.15, -0.21, 0.033
+19790816, -0.20, 0.06, -0.03, 0.03, 0.02, 0.033
+19790817, 0.24, -0.05, 0.15, 0.13, 0.12, 0.033
+19790820, 0.48, -0.12, -0.04, 0.14, 0.04, 0.033
+19790821, 0.02, 0.11, 0.00, -0.04, 0.10, 0.033
+19790822, 0.15, 0.25, 0.04, -0.15, 0.14, 0.033
+19790823, -0.28, 0.38, 0.14, -0.17, -0.11, 0.033
+19790824, 0.00, -0.07, 0.24, -0.10, 0.25, 0.033
+19790827, 0.53, -0.29, 0.10, 0.36, 0.08, 0.033
+19790828, -0.10, 0.16, -0.04, -0.11, 0.08, 0.033
+19790829, 0.01, 0.29, -0.11, -0.26, -0.06, 0.033
+19790830, -0.02, 0.26, -0.10, -0.03, -0.02, 0.033
+19790831, 0.31, 0.28, -0.22, 0.09, -0.12, 0.033
+19790904, -1.61, 0.16, 0.32, -0.27, 0.24, 0.043
+19790905, -1.25, -0.78, 0.20, -0.04, 0.31, 0.043
+19790906, 0.47, 0.27, -0.11, -0.01, 0.00, 0.043
+19790907, 0.76, -0.10, 0.22, -0.02, 0.30, 0.043
+19790910, 0.47, -0.05, 0.05, 0.07, 0.09, 0.043
+19790911, -0.68, 0.13, 0.05, -0.06, 0.02, 0.043
+19790912, 0.31, 0.09, -0.19, -0.02, -0.13, 0.043
+19790913, 0.03, 0.41, -0.49, 0.32, -0.49, 0.043
+19790914, 0.91, 0.02, -0.35, 0.52, -0.32, 0.043
+19790917, -0.11, -0.06, -0.18, 0.22, -0.04, 0.043
+19790918, -0.76, 0.00, 0.00, 0.01, 0.22, 0.043
+19790919, 0.21, -0.07, -0.05, 0.08, -0.04, 0.043
+19790920, 1.67, -1.22, -0.31, 0.90, 0.36, 0.043
+19790921, -0.05, 0.24, 0.04, -0.33, -0.26, 0.043
+19790924, -0.79, 0.26, -0.15, 0.09, -0.07, 0.043
+19790925, 0.01, -0.28, -0.16, 0.11, -0.23, 0.043
+19790926, 0.22, 0.14, 0.01, -0.09, 0.05, 0.043
+19790927, 0.10, 0.12, 0.02, -0.15, 0.20, 0.043
+19790928, -0.69, 0.49, 0.19, -0.27, 0.35, 0.043
+19791001, -0.58, 0.32, -0.18, -0.23, -0.08, 0.038
+19791002, 0.78, -0.22, -0.11, 0.24, -0.02, 0.038
+19791003, 0.13, 0.33, -0.20, -0.04, -0.18, 0.038
+19791004, 0.56, 0.05, 0.01, 0.06, -0.10, 0.038
+19791005, 0.85, -0.14, -0.02, 0.04, 0.19, 0.038
+19791008, -1.24, -0.07, -0.02, 0.12, 0.18, 0.038
+19791009, -3.44, -1.31, 0.01, 0.23, 0.28, 0.038
+19791010, -1.92, -2.72, -0.44, 0.55, 0.16, 0.038
+19791011, -0.02, 0.75, 0.01, -0.17, -0.15, 0.038
+19791012, -0.31, 0.74, 0.03, -0.50, -0.07, 0.038
+19791015, -1.23, -0.64, 0.04, 0.00, 0.18, 0.038
+19791016, -0.21, 0.00, 0.08, -0.02, 0.08, 0.038
+19791017, 0.30, 0.22, -0.13, -0.05, 0.02, 0.038
+19791018, 0.18, 0.01, -0.02, 0.10, 0.34, 0.038
+19791019, -2.09, -0.04, 0.36, -0.11, 0.34, 0.038
+19791022, -1.43, -1.64, -0.37, 0.49, -0.06, 0.038
+19791023, -0.37, -0.04, -0.26, 0.10, -0.48, 0.038
+19791024, 0.21, 0.16, -0.13, 0.11, -0.05, 0.038
+19791025, -0.34, 0.26, 0.19, -0.26, 0.00, 0.038
+19791026, 0.64, 0.28, -0.23, 0.13, -0.26, 0.038
+19791029, 0.16, 0.04, -0.10, 0.02, 0.02, 0.038
+19791030, 1.77, -0.54, -0.74, 0.62, -0.35, 0.038
+19791031, -0.62, 0.55, 0.17, -0.23, 0.16, 0.038
+19791101, 0.79, -0.15, -0.20, 0.20, 0.00, 0.047
+19791102, 0.17, 0.25, -0.15, -0.03, 0.09, 0.047
+19791105, -0.68, 0.08, -0.02, 0.04, 0.01, 0.047
+19791106, -0.61, 0.17, 0.08, -0.01, -0.01, 0.047
+19791107, -1.24, 0.05, 0.25, -0.03, 0.19, 0.047
+19791108, 0.53, -0.12, -0.37, 0.00, -0.35, 0.047
+19791109, 1.23, -0.07, -0.14, 0.00, -0.16, 0.047
+19791112, 1.71, -0.77, -0.30, 0.37, 0.20, 0.047
+19791113, -0.36, 0.34, 0.26, -0.32, 0.00, 0.047
+19791114, 0.37, 0.12, -0.25, 0.09, -0.42, 0.047
+19791115, 0.74, 0.16, -0.48, 0.36, -0.28, 0.047
+19791116, -0.18, 0.05, -0.05, -0.07, 0.08, 0.047
+19791119, 0.41, 0.00, -0.39, 0.06, 0.06, 0.047
+19791120, -0.48, 0.39, -0.21, -0.34, 0.23, 0.047
+19791121, 0.08, -0.28, -0.19, -0.10, -0.24, 0.047
+19791123, 0.76, 0.06, -0.31, 0.01, -0.24, 0.047
+19791126, 2.11, -0.28, -0.40, 0.33, -0.55, 0.047
+19791127, -0.19, 0.78, 0.29, -0.22, -0.14, 0.047
+19791128, 0.41, 0.42, -0.34, -0.06, -0.14, 0.047
+19791129, 0.07, 0.52, -0.19, -0.04, -0.12, 0.047
+19791130, -0.49, 0.52, 0.07, -0.16, 0.00, 0.047
+19791203, -0.30, 0.14, 0.19, -0.11, 0.14, 0.047
+19791204, 0.83, -0.23, -0.42, 0.32, -0.19, 0.047
+19791205, 0.50, 0.27, -0.37, 0.12, -0.42, 0.047
+19791206, 0.69, 0.26, -0.19, 0.24, -0.17, 0.047
+19791207, -0.35, 0.71, -0.08, -0.02, -0.35, 0.047
+19791210, 0.23, 0.13, -0.03, 0.04, -0.28, 0.047
+19791211, -0.22, 0.14, 0.06, -0.02, 0.22, 0.047
+19791212, 0.06, 0.53, -0.33, -0.25, -0.22, 0.047
+19791213, 0.14, 0.18, -0.48, -0.03, -0.03, 0.047
+19791214, 1.05, -0.25, -0.40, 0.45, -0.11, 0.047
+19791217, 0.44, 0.06, -0.24, -0.13, 0.13, 0.047
+19791218, -0.92, 0.36, 0.54, -0.17, 0.36, 0.047
+19791219, -0.14, 0.09, -0.06, -0.20, -0.04, 0.047
+19791220, 0.13, 0.35, -0.02, 0.18, -0.15, 0.047
+19791221, -0.61, 0.55, 0.02, -0.10, -0.14, 0.047
+19791224, 0.04, 0.03, 0.18, -0.08, 0.16, 0.047
+19791226, 0.09, 0.02, 0.03, -0.18, 0.11, 0.047
+19791227, 0.07, 0.13, -0.10, -0.17, -0.09, 0.047
+19791228, 0.03, 0.37, -0.10, -0.29, -0.03, 0.047
+19791231, 0.05, 0.30, -0.10, -0.24, 0.15, 0.047
+19800102, -2.05, 0.18, 1.07, -1.10, 0.75, 0.036
+19800103, -0.73, -0.88, 0.33, -0.27, 0.17, 0.036
+19800104, 1.32, 0.61, -0.38, -0.13, -0.59, 0.036
+19800107, 0.39, 0.27, 0.05, -0.45, 0.06, 0.036
+19800108, 1.92, -0.32, -0.70, 0.69, -0.36, 0.036
+19800109, 0.11, 0.63, 0.01, 0.20, -0.46, 0.036
+19800110, 0.85, 0.35, -0.02, 0.07, -0.08, 0.036
+19800111, 0.20, 0.27, 0.45, -0.51, 0.00, 0.036
+19800114, 0.34, 0.39, 0.66, -0.66, 0.81, 0.036
+19800115, 0.54, -0.10, -0.10, 0.12, 0.23, 0.036
+19800116, 0.04, 0.43, -0.10, 0.04, 0.15, 0.036
+19800117, -0.28, 0.49, 0.28, -0.18, 0.63, 0.036
+19800118, 0.22, 0.05, 0.09, -0.13, 0.07, 0.036
+19800121, 0.85, -0.15, 0.25, 0.06, 0.12, 0.036
+19800122, -0.59, -0.05, -0.04, 0.56, -0.14, 0.036
+19800123, 1.50, -0.67, -0.17, 0.21, 0.08, 0.036
+19800124, 0.25, 0.09, -0.09, 0.00, -0.03, 0.036
+19800125, -0.03, 0.30, -0.19, -0.05, -0.27, 0.036
+19800128, 1.00, -0.45, -0.29, 0.37, 0.05, 0.036
+19800129, -0.65, -0.01, 0.22, -0.30, 0.16, 0.036
+19800130, 0.94, -0.24, 0.17, -0.04, 0.42, 0.036
+19800131, -0.72, 0.57, 0.17, 0.02, 0.11, 0.036
+19800201, 0.66, -0.31, 0.11, 0.26, 0.25, 0.044
+19800204, -0.46, 0.37, 0.20, -0.23, 0.10, 0.044
+19800205, 0.21, -0.01, -0.07, 0.02, 0.15, 0.044
+19800206, 0.84, -0.61, 0.19, 0.09, 0.71, 0.044
+19800207, 0.43, -0.02, 0.45, -0.24, 0.43, 0.044
+19800208, 1.25, -0.65, 0.51, -0.60, 0.73, 0.044
+19800211, -0.72, 0.32, -0.19, 0.30, 0.06, 0.044
+19800212, 0.58, -0.44, -0.52, 0.38, -0.14, 0.044
+19800213, 0.27, -0.14, -0.26, 0.39, -0.34, 0.044
+19800214, -1.43, 0.48, 0.28, -0.10, -0.14, 0.044
+19800215, -0.92, 0.29, 0.01, -0.15, 0.11, 0.044
+19800219, -0.79, 0.05, -0.06, 0.36, -0.02, 0.044
+19800220, 1.41, -0.87, 0.08, 0.26, 0.62, 0.044
+19800221, -0.93, 0.41, -0.09, 0.09, 0.12, 0.044
+19800222, -0.40, -0.44, 0.16, 0.11, 0.22, 0.044
+19800225, -1.41, 0.28, -0.23, -0.01, 0.02, 0.044
+19800226, 0.56, -0.38, 0.14, 0.17, 0.26, 0.044
+19800227, -1.24, 0.78, 0.27, -0.57, -0.05, 0.044
+19800228, -0.03, -0.01, -0.26, -0.11, 0.13, 0.044
+19800229, 0.97, -0.69, -0.11, -0.27, -0.16, 0.044
+19800303, -0.94, 0.22, 0.02, -0.29, -0.04, 0.057
+19800304, -0.08, -1.11, 0.20, 0.30, 0.43, 0.057
+19800305, -1.59, -0.15, 0.42, 0.08, 0.25, 0.057
+19800306, -2.42, -0.39, -0.21, 0.30, -0.26, 0.057
+19800307, -1.73, -0.10, -0.35, -0.10, -0.64, 0.057
+19800310, -0.76, -1.48, 0.30, 0.53, 0.25, 0.057
+19800311, 1.21, -0.34, 0.01, 0.02, -0.15, 0.057
+19800312, -0.70, 0.60, -0.04, -0.44, -0.15, 0.057
+19800313, -1.02, 0.84, -0.45, 0.03, -0.29, 0.057
+19800314, -0.34, -0.23, -0.02, -0.25, -0.02, 0.057
+19800317, -3.20, -0.32, 0.00, 0.37, -0.09, 0.057
+19800318, 1.32, -2.08, 0.25, 0.12, 0.71, 0.057
+19800319, 0.36, 0.44, -0.01, -0.39, -0.11, 0.057
+19800320, -1.05, 0.89, -0.24, -0.14, -0.33, 0.057
+19800321, -0.77, 0.09, 0.26, -0.18, 0.42, 0.057
+19800324, -3.13, -0.45, 0.59, 0.04, -0.06, 0.057
+19800325, -0.55, -1.45, -0.43, 0.36, -0.34, 0.057
+19800326, -0.54, 0.22, -0.20, 0.22, -0.24, 0.057
+19800327, -1.85, -5.16, 0.32, 2.12, 0.42, 0.057
+19800328, 2.93, 1.99, -1.49, -0.80, -0.87, 0.057
+19800331, 1.46, 0.13, -0.16, -0.24, -0.14, 0.057
+19800401, 0.32, 0.86, -0.07, -0.26, -0.56, 0.059
+19800402, 0.84, 0.46, -0.31, -0.21, -0.46, 0.059
+19800403, -0.41, 0.37, 0.12, -0.39, 0.25, 0.059
+19800407, -2.07, -0.03, 0.51, -0.19, 0.01, 0.059
+19800408, 0.94, -0.51, -0.09, -0.27, -0.40, 0.059
+19800409, 1.81, -0.78, 0.22, 0.20, 0.58, 0.059
+19800410, 0.87, 0.44, 0.24, -0.79, -0.31, 0.059
+19800411, -0.11, 0.59, 0.41, -0.34, 0.18, 0.059
+19800414, -1.03, 0.16, 0.17, -0.01, 0.27, 0.059
+19800415, -0.23, -0.10, 0.12, 0.04, 0.19, 0.059
+19800416, -1.09, 0.37, 0.59, -0.41, 0.42, 0.059
+19800417, -0.55, -0.29, 0.21, -0.08, 0.19, 0.059
+19800418, -0.41, 0.26, 0.13, -0.22, 0.06, 0.059
+19800421, -0.89, -0.46, 0.39, 0.17, 0.42, 0.059
+19800422, 3.41, -0.76, -1.09, 0.52, -0.60, 0.059
+19800423, 0.35, 0.60, -0.05, -0.03, -0.07, 0.059
+19800424, 0.81, 0.30, -0.43, -0.35, -0.42, 0.059
+19800425, 0.47, -0.91, -0.24, 0.53, 0.33, 0.059
+19800428, 0.39, 0.11, 0.01, 0.12, -0.05, 0.059
+19800429, 0.30, 0.25, -0.03, -0.12, 0.02, 0.059
+19800430, 0.29, 0.01, 0.14, 0.01, 0.20, 0.059
+19800501, -0.66, 0.31, 0.30, 0.30, -0.04, 0.038
+19800502, 0.15, 0.11, 0.18, -0.35, 0.05, 0.038
+19800505, 0.76, -0.24, 0.24, -0.04, 0.01, 0.038
+19800506, 0.14, 0.47, -0.06, 0.04, -0.15, 0.038
+19800507, 0.87, 0.03, 0.64, -0.52, 0.24, 0.038
+19800508, -0.71, 0.65, 0.16, -0.17, 0.07, 0.038
+19800509, -1.18, 0.88, 0.16, -0.55, -0.11, 0.038
+19800512, -0.02, 0.01, -0.02, -0.14, -0.14, 0.038
+19800513, 1.19, -0.41, -0.24, 0.43, -0.01, 0.038
+19800514, 0.65, 0.36, -0.26, 0.13, -0.27, 0.038
+19800515, 0.20, 0.41, -0.38, 0.07, -0.55, 0.038
+19800516, 0.38, 0.17, -0.20, 0.32, 0.03, 0.038
+19800519, 0.24, 0.07, -0.12, 0.44, 0.21, 0.038
+19800520, -0.08, 0.15, -0.01, 0.14, -0.09, 0.038
+19800521, 0.06, -0.04, 0.11, -0.28, 0.16, 0.038
+19800522, 1.21, -0.41, -0.24, 0.16, -0.01, 0.038
+19800523, 1.45, -0.43, -0.09, 0.31, 0.09, 0.038
+19800527, 0.66, -0.21, 0.28, 0.10, 0.40, 0.038
+19800528, 0.61, -0.40, -0.02, 0.22, -0.04, 0.038
+19800529, -1.47, 0.80, -0.09, -0.28, -0.26, 0.038
+19800530, 0.70, -0.39, 0.02, -0.05, 0.01, 0.038
+19800602, -0.25, 0.27, 0.02, 0.08, -0.09, 0.029
+19800603, -0.21, 0.25, -0.05, 0.17, -0.01, 0.029
+19800604, 1.69, -0.78, -0.68, 0.60, -0.08, 0.029
+19800605, 0.21, 0.31, -0.02, -0.19, -0.01, 0.029
+19800606, 0.40, 0.06, -0.20, -0.08, -0.09, 0.029
+19800609, 0.37, -0.11, 0.19, 0.00, 0.24, 0.029
+19800610, 0.80, -0.41, -0.12, 0.33, 0.00, 0.029
+19800611, 1.08, -0.52, -0.22, 0.65, -0.22, 0.029
+19800612, -0.25, 0.16, -0.29, -0.12, -0.19, 0.029
+19800613, 0.29, 0.50, 0.04, -0.30, -0.59, 0.029
+19800616, 0.17, -0.12, 0.03, 0.07, 0.17, 0.029
+19800617, 0.03, 0.15, 0.16, -0.20, 0.04, 0.029
+19800618, 0.15, -0.26, 0.23, 0.08, 0.45, 0.029
+19800619, -1.27, 0.75, 0.16, -0.20, 0.06, 0.029
+19800620, -0.41, 0.32, 0.22, -0.37, -0.11, 0.029
+19800623, 0.39, -0.02, -0.10, 0.23, 0.04, 0.029
+19800624, 0.58, -0.13, -0.13, -0.18, -0.31, 0.029
+19800625, 1.21, -0.30, -0.09, 0.11, -0.11, 0.029
+19800626, -0.36, 0.34, 0.00, -0.09, 0.04, 0.029
+19800627, -0.12, 0.32, -0.17, -0.31, -0.09, 0.029
+19800630, -1.46, 0.59, 0.14, -0.33, -0.06, 0.029
+19800701, 0.55, -0.15, -0.69, 0.35, -0.26, 0.024
+19800702, 0.66, 0.08, -0.47, 0.15, 0.05, 0.024
+19800703, 1.39, -0.26, -0.52, 0.35, -0.30, 0.024
+19800707, 0.76, -0.09, -0.19, 0.34, -0.40, 0.024
+19800708, -0.30, 0.38, 0.06, -0.06, 0.39, 0.024
+19800709, 0.13, 0.23, -0.08, 0.17, -0.07, 0.024
+19800710, -0.75, 0.74, 0.14, -0.13, 0.01, 0.024
+19800711, 0.70, 0.05, -0.53, 0.61, -0.35, 0.024
+19800714, 1.72, -0.30, -0.97, 0.79, -0.58, 0.024
+19800715, -0.46, 0.62, 0.07, -0.10, 0.18, 0.024
+19800716, 0.21, 0.36, -0.12, 0.25, -0.28, 0.024
+19800717, 1.41, -0.26, -0.83, 0.63, -0.54, 0.024
+19800718, 0.33, 0.35, -0.17, 0.03, -0.11, 0.024
+19800721, 0.34, -0.04, -0.22, 0.24, -0.24, 0.024
+19800722, -0.26, 0.07, 0.20, -0.17, 0.12, 0.024
+19800723, -0.16, 0.25, -0.07, 0.16, 0.00, 0.024
+19800724, -0.11, 0.30, -0.22, 0.09, 0.01, 0.024
+19800725, -0.76, 0.42, 0.06, -0.25, 0.03, 0.024
+19800728, 0.43, -0.26, -0.40, 0.22, 0.02, 0.024
+19800729, 0.76, 0.04, -0.52, 0.05, -0.11, 0.024
+19800730, 0.08, 0.85, -0.52, 0.05, -0.05, 0.024
+19800731, -0.38, 0.19, 0.12, -0.08, 0.24, 0.024
+19800801, -0.18, 0.86, -0.32, 0.16, 0.13, 0.030
+19800804, -0.36, 0.10, 0.34, 0.12, 0.30, 0.030
+19800805, -0.02, 0.46, -0.17, 0.12, 0.00, 0.030
+19800806, 0.66, 0.00, -0.42, 0.30, -0.24, 0.030
+19800807, 1.45, -0.37, -0.77, 0.66, -0.12, 0.030
+19800808, 0.29, 0.13, -0.12, 0.17, -0.06, 0.030
+19800811, 0.91, -0.18, -0.24, 0.47, -0.40, 0.030
+19800812, -0.74, 0.32, 0.17, 0.05, 0.18, 0.030
+19800813, -0.28, 0.50, 0.08, -0.17, 0.21, 0.030
+19800814, 1.51, -0.17, -0.82, 0.38, -0.10, 0.030
+19800815, 0.40, 0.12, -0.23, 0.19, 0.14, 0.030
+19800818, -1.79, 0.13, 1.00, -0.31, 0.27, 0.030
+19800819, -0.61, 0.05, 0.07, -0.21, 0.30, 0.030
+19800820, 0.98, -0.06, -0.39, 0.10, -0.39, 0.030
+19800821, 1.47, 0.12, -0.74, 0.34, -0.57, 0.030
+19800822, 0.60, 0.26, -0.38, 0.25, -0.66, 0.030
+19800825, -0.50, 0.39, -0.20, 0.01, 0.02, 0.030
+19800826, -0.12, 0.42, -0.32, 0.11, -0.08, 0.030
+19800827, -0.93, 0.59, 0.28, -0.31, 0.07, 0.030
+19800828, -1.14, 0.18, 0.68, -0.20, 0.11, 0.030
+19800829, 0.26, 0.24, 0.00, -0.22, 0.21, 0.030
+19800902, 0.99, -0.21, -0.03, 0.08, -0.12, 0.036
+19800903, 1.92, -0.49, -0.41, 0.30, -0.54, 0.036
+19800904, -0.38, 0.60, 0.13, -0.08, -0.11, 0.036
+19800905, -0.31, 0.67, -0.19, -0.06, -0.04, 0.036
+19800908, -1.22, 0.63, 0.19, -0.41, -0.02, 0.036
+19800909, 0.54, -0.15, -0.32, 0.05, 0.18, 0.036
+19800910, 0.67, 0.31, -0.24, 0.02, -0.10, 0.036
+19800911, 0.68, 0.43, -0.96, 0.28, -0.32, 0.036
+19800912, 0.08, 0.61, -0.59, 0.03, -0.29, 0.036
+19800915, 0.09, 0.02, -0.40, 0.05, 0.29, 0.036
+19800916, 0.90, 0.01, -0.78, 0.34, -0.73, 0.036
+19800917, 1.50, -0.30, -1.08, 0.66, -0.63, 0.036
+19800918, -0.34, 0.15, 0.08, 0.06, -0.07, 0.036
+19800919, 0.57, 0.20, -0.45, 0.15, -0.24, 0.036
+19800922, 0.76, -0.68, -0.78, 0.41, -0.61, 0.036
+19800923, -0.68, -0.45, 0.27, 0.10, -0.04, 0.036
+19800924, 0.61, -0.68, -0.52, 0.37, -0.50, 0.036
+19800925, -1.17, 0.61, 0.25, -0.36, 0.40, 0.036
+19800926, -2.01, -0.02, 0.82, -0.17, 0.30, 0.036
+19800929, -2.42, -0.62, 1.08, -0.28, 0.73, 0.036
+19800930, 1.50, -0.10, -0.95, 0.51, -0.44, 0.036
+19801001, 1.31, -0.47, -1.56, 1.12, -1.28, 0.041
+19801002, 0.72, -0.10, -0.58, 0.35, -0.15, 0.041
+19801003, 1.11, 0.27, -0.59, 0.20, -0.15, 0.041
+19801006, 1.71, -0.21, -0.90, 0.42, -0.77, 0.041
+19801007, -0.50, 0.31, 0.05, -0.15, 0.17, 0.041
+19801008, 0.48, 0.20, -0.56, 0.24, -0.31, 0.041
+19801009, -0.37, 0.57, 0.05, -0.16, -0.17, 0.041
+19801010, -0.42, 0.49, 0.40, -0.04, 0.13, 0.041
+19801013, 1.13, -0.46, -0.45, 0.70, -0.36, 0.041
+19801014, 0.00, 0.18, -0.09, 0.02, 0.12, 0.041
+19801015, 1.10, -0.60, -0.55, 0.61, -0.21, 0.041
+19801016, -1.20, 0.43, 0.74, -0.27, 0.21, 0.041
+19801017, -0.52, 0.10, 0.08, -0.49, 0.41, 0.041
+19801020, 0.60, -0.48, 0.05, 0.26, -0.14, 0.041
+19801021, -0.63, 0.31, 0.10, -0.09, -0.09, 0.041
+19801022, 0.17, 0.43, -0.22, -0.24, -0.21, 0.041
+19801023, -1.79, 0.63, 0.90, -0.56, 0.56, 0.041
+19801024, 0.25, 0.00, 0.15, -0.18, 0.22, 0.041
+19801027, -1.41, 0.58, 0.44, -0.23, 0.41, 0.041
+19801028, -0.01, -0.20, -0.54, 0.40, -0.08, 0.041
+19801029, -0.14, 0.24, -0.23, 0.02, -0.10, 0.041
+19801030, -1.43, 0.47, 0.54, -0.26, 0.46, 0.041
+19801031, 0.97, -0.56, -0.20, 0.27, -0.14, 0.041
+19801103, 1.10, -0.57, -0.79, 0.62, -0.43, 0.053
+19801105, 1.69, -0.44, -1.42, 0.96, -0.67, 0.053
+19801106, -1.79, 0.36, 0.24, -0.03, 0.43, 0.053
+19801107, 0.12, -0.49, -0.10, 0.30, -0.10, 0.053
+19801110, 0.27, -0.21, -0.40, 0.13, -0.26, 0.053
+19801111, 1.20, -0.29, -0.23, -0.10, -0.60, 0.053
+19801112, 2.35, -0.97, -1.16, 0.64, -0.84, 0.053
+19801113, 1.47, -0.36, -0.88, 0.65, -0.51, 0.053
+19801114, 0.49, 0.10, -0.49, 0.40, -0.61, 0.053
+19801117, 0.39, -0.53, -0.47, 0.34, -0.25, 0.053
+19801118, 1.37, -0.66, -0.96, 0.55, -0.54, 0.053
+19801119, -0.37, 0.72, -0.58, 0.17, -0.26, 0.053
+19801120, 0.91, -0.31, -0.32, 0.09, -0.20, 0.053
+19801121, -0.87, 0.65, -0.05, -0.41, 0.32, 0.053
+19801124, -0.64, -0.22, 0.81, -0.21, 0.23, 0.053
+19801125, 0.76, -0.02, -0.19, -0.05, -0.62, 0.053
+19801126, 0.50, -0.04, -0.71, 0.10, 0.01, 0.053
+19801128, 0.27, 0.16, 0.06, -0.11, -0.20, 0.053
+19801201, -2.21, 0.93, 0.35, -0.02, 0.36, 0.059
+19801202, -0.30, -0.38, 0.24, -0.03, 0.37, 0.059
+19801203, -0.07, 0.53, -0.37, -0.41, 0.39, 0.059
+19801204, -0.12, 0.56, -0.20, -0.40, 0.12, 0.059
+19801205, -1.91, 0.60, 0.88, 0.02, 0.17, 0.059
+19801208, -2.71, -0.80, 1.68, 0.04, 0.43, 0.059
+19801209, -0.21, -0.61, 0.23, 0.13, -0.18, 0.059
+19801210, -1.60, 0.37, 0.84, -0.25, 0.28, 0.059
+19801211, -1.16, -1.58, 0.50, 0.26, 0.19, 0.059
+19801212, 1.38, -0.04, -1.08, -0.05, -0.59, 0.059
+19801215, 0.11, 0.20, -0.49, 0.35, -0.37, 0.059
+19801216, 0.71, -0.76, -0.47, 0.47, -0.28, 0.059
+19801217, 1.52, -0.73, -0.34, 0.11, -0.41, 0.059
+19801218, 0.41, 0.34, 1.27, -1.13, 0.27, 0.059
+19801219, 0.58, 0.21, 0.60, -0.52, 0.40, 0.059
+19801222, 1.28, -0.35, -0.04, -0.35, 0.37, 0.059
+19801223, -0.31, 0.42, 0.16, 0.06, 0.20, 0.059
+19801224, 0.35, -0.02, 0.19, -0.11, -0.20, 0.059
+19801226, 0.46, -0.08, -0.26, 0.00, -0.23, 0.059
+19801229, -1.06, 0.34, -0.24, 0.43, 0.10, 0.059
+19801230, 0.16, -0.04, -0.44, 0.33, -0.08, 0.059
+19801231, 0.35, 0.56, -0.33, -0.23, -0.08, 0.059
+19810102, 0.56, 0.35, 0.64, -0.52, 0.25, 0.049
+19810105, 0.95, -0.26, 0.94, -0.73, 0.97, 0.049
+19810106, 0.05, 0.17, 0.84, -0.42, 0.67, 0.049
+19810107, -2.65, -1.25, 1.80, -0.20, 0.74, 0.049
+19810108, -1.37, 0.78, 0.64, -0.19, 0.39, 0.049
+19810109, 0.37, 0.66, -0.35, 0.10, 0.09, 0.049
+19810112, 0.02, 0.42, 0.45, -0.16, 0.21, 0.049
+19810113, -0.33, 0.15, 0.05, 0.05, -0.09, 0.049
+19810114, 0.27, 0.21, -0.36, 0.10, -0.19, 0.049
+19810115, 0.50, -0.07, -0.47, 0.36, -0.28, 0.049
+19810116, 0.49, -0.01, -0.09, 0.13, -0.07, 0.049
+19810119, -0.25, 0.33, 0.17, -0.19, 0.00, 0.049
+19810120, -1.89, 0.68, 0.58, -0.28, 0.19, 0.049
+19810121, -0.36, 0.06, 0.32, -0.18, 0.14, 0.049
+19810122, -0.83, 0.41, 0.09, -0.12, 0.25, 0.049
+19810123, -0.05, 0.22, -0.19, -0.09, -0.27, 0.049
+19810126, -0.51, -0.10, 0.37, 0.08, 0.13, 0.049
+19810127, 1.01, -0.50, -0.31, 0.24, -0.25, 0.049
+19810128, -0.46, 0.48, 0.35, -0.55, 0.30, 0.049
+19810129, -0.08, 0.33, 0.45, -0.56, 0.46, 0.049
+19810130, -0.48, 0.45, 0.95, -0.51, 0.77, 0.049
+19810202, -2.25, -0.15, 1.79, -0.30, 1.08, 0.056
+19810203, 1.08, -1.01, -0.48, 0.35, -0.32, 0.056
+19810204, 0.21, 0.43, -0.14, 0.00, 0.03, 0.056
+19810205, 0.94, 0.11, -0.26, 0.11, -0.06, 0.056
+19810206, 0.77, 0.14, -0.44, 0.26, -0.41, 0.056
+19810209, -0.99, 0.67, 0.53, -0.32, 0.73, 0.056
+19810210, -0.14, 0.06, 0.13, -0.10, 0.27, 0.056
+19810211, -0.74, 0.38, 0.52, -0.20, 0.40, 0.056
+19810212, -0.66, 0.03, 0.56, 0.08, 0.40, 0.056
+19810213, -0.31, 0.05, -0.10, 0.23, 0.06, 0.056
+19810217, 0.43, -0.54, -0.04, 0.40, -0.13, 0.056
+19810218, 0.45, -0.32, -0.51, 0.04, -0.27, 0.056
+19810219, -1.47, 0.39, 0.55, -0.27, 0.22, 0.056
+19810220, -0.19, -0.09, 0.50, -0.19, 0.16, 0.056
+19810223, 0.53, -0.36, -0.13, 0.00, -0.07, 0.056
+19810224, 0.17, 0.21, -0.13, -0.29, 0.11, 0.056
+19810225, 0.70, -0.78, -0.23, 0.03, 0.26, 0.056
+19810226, 1.17, 0.05, -0.73, 0.13, 0.04, 0.056
+19810227, 0.95, 0.12, -0.53, 0.40, -0.45, 0.056
+19810302, 0.60, -0.04, -0.45, 0.02, -0.45, 0.055
+19810303, -0.92, 0.73, 0.56, -0.57, 0.08, 0.055
+19810304, 0.14, -0.03, 0.29, -0.21, 0.06, 0.055
+19810305, -0.51, 0.61, 0.19, -0.21, 0.23, 0.055
+19810306, -0.09, 0.44, 0.16, -0.62, 0.27, 0.055
+19810309, 0.72, -0.33, -0.53, 0.02, -0.05, 0.055
+19810310, -0.47, -0.04, 0.58, -0.12, 0.17, 0.055
+19810311, -0.32, 0.06, 0.37, -0.25, 0.04, 0.055
+19810312, 2.23, -1.09, -0.69, 0.06, -0.27, 0.055
+19810313, 0.03, 0.25, 0.50, -0.73, 0.00, 0.055
+19810316, 1.01, -0.32, -0.07, -0.16, 0.26, 0.055
+19810317, -0.45, 0.36, 0.74, -0.02, 0.16, 0.055
+19810318, 0.23, 0.25, 0.31, -0.21, 0.31, 0.055
+19810319, -0.50, 0.87, 0.59, -0.60, 0.48, 0.055
+19810320, 0.63, 0.34, -0.30, 0.16, -0.23, 0.055
+19810323, 1.02, -0.51, -1.01, 1.06, -0.67, 0.055
+19810324, -0.60, 0.45, -0.30, 0.36, -0.35, 0.055
+19810325, 1.54, -0.55, -0.45, 0.14, -0.42, 0.055
+19810326, -0.45, 0.56, 0.12, 0.02, -0.33, 0.055
+19810327, -1.01, 0.67, 0.10, -0.21, 0.14, 0.055
+19810330, -0.30, 0.22, -0.07, -0.03, 0.21, 0.055
+19810331, 1.05, -0.19, -0.10, -0.13, -0.22, 0.055
+19810401, 0.49, 0.21, 0.00, 0.10, 0.07, 0.051
+19810402, -0.08, 0.40, 0.18, -0.20, 0.21, 0.051
+19810403, -0.48, 0.64, 0.23, 0.01, -0.10, 0.051
+19810406, -1.11, 0.36, 0.17, 0.09, 0.02, 0.051
+19810407, -0.04, 0.39, 0.27, -0.03, 0.16, 0.051
+19810408, 0.32, 0.12, 0.22, 0.02, -0.08, 0.051
+19810409, 0.37, 0.28, 0.45, -0.17, 0.35, 0.051
+19810410, 0.03, 0.52, -0.14, -0.03, -0.01, 0.051
+19810413, -1.05, 0.51, 0.31, 0.26, 0.14, 0.051
+19810414, -0.56, 0.17, 0.74, 0.04, -0.04, 0.051
+19810415, 1.01, -0.19, -0.39, 0.24, -0.38, 0.051
+19810416, 0.44, 0.39, -0.42, 0.08, -0.22, 0.051
+19810420, 0.54, -0.01, -0.32, 0.54, -0.20, 0.051
+19810421, -0.95, 0.61, 0.36, 0.15, 0.49, 0.051
+19810422, -0.08, 0.19, 0.38, 0.00, 0.15, 0.051
+19810423, -0.03, 0.51, -0.01, -0.21, 0.29, 0.051
+19810424, 0.72, -0.21, -0.15, 0.25, 0.01, 0.051
+19810427, 0.20, -0.24, 0.04, -0.19, 0.16, 0.051
+19810428, -0.95, -0.25, 0.62, -0.05, 0.28, 0.051
+19810429, -0.94, 0.14, 0.21, -0.06, 0.15, 0.051
+19810430, 0.01, 0.20, -0.42, -0.12, 0.04, 0.051
+19810501, -0.17, -0.04, -0.30, 0.11, -0.18, 0.057
+19810504, -1.53, -0.33, 0.43, 0.03, 0.20, 0.057
+19810505, -0.41, -0.39, -0.35, 0.41, -0.50, 0.057
+19810506, 0.40, -0.04, -0.39, 0.43, -0.51, 0.057
+19810507, 0.70, -0.20, -0.34, 0.20, -0.14, 0.057
+19810508, 0.08, 0.36, 0.07, -0.06, -0.11, 0.057
+19810511, -1.42, 0.41, 0.73, -0.44, 0.33, 0.057
+19810512, 0.65, -0.56, 0.17, -0.06, 0.15, 0.057
+19810513, -0.04, 0.54, -0.17, -0.66, -0.03, 0.057
+19810514, 0.56, 0.10, 0.21, -0.19, -0.19, 0.057
+19810515, 0.61, -0.14, 0.22, -0.05, -0.14, 0.057
+19810518, 0.16, 0.04, -0.34, 0.27, -0.14, 0.057
+19810519, -0.32, 0.03, -0.01, 0.16, -0.05, 0.057
+19810520, 0.10, 0.40, -0.39, 0.14, -0.21, 0.057
+19810521, -0.11, 0.44, 0.12, -0.08, -0.09, 0.057
+19810522, -0.01, 0.38, -0.13, -0.07, -0.24, 0.057
+19810526, 0.88, -0.49, -0.39, 0.46, -0.37, 0.057
+19810527, 0.65, 0.27, -0.21, 0.29, -0.12, 0.057
+19810528, -0.17, 0.84, 0.29, -0.43, 0.32, 0.057
+19810529, -0.46, 0.70, 0.35, -0.02, 0.25, 0.057
+19810601, -0.23, 0.32, 0.37, 0.00, 0.44, 0.061
+19810602, -1.45, 0.23, 0.88, -0.11, 0.55, 0.061
+19810603, -0.03, -0.07, 0.13, -0.20, 0.17, 0.061
+19810604, 0.15, 0.06, -0.10, 0.01, -0.17, 0.061
+19810605, 0.85, -0.62, -0.30, 0.26, -0.18, 0.061
+19810608, -0.03, -0.15, 0.44, -0.03, 0.18, 0.061
+19810609, -0.34, -0.08, 0.31, 0.05, -0.06, 0.061
+19810610, 0.25, -0.14, 0.40, -0.34, 0.13, 0.061
+19810611, 1.01, -0.04, 0.10, -0.26, 0.05, 0.061
+19810612, -0.04, 0.41, 0.48, -0.37, 0.33, 0.061
+19810615, 0.06, 0.00, 1.11, -0.72, 0.65, 0.061
+19810616, -1.16, 0.10, 1.37, -0.50, 0.72, 0.061
+19810617, 0.68, -0.74, -0.23, 0.24, 0.03, 0.061
+19810618, -1.21, 0.54, 0.28, -0.11, 0.37, 0.061
+19810619, 0.38, -0.22, -0.35, 0.30, -0.25, 0.061
+19810622, -0.21, -0.07, 0.26, -0.09, -0.10, 0.061
+19810623, 0.93, -0.76, -0.16, 0.15, 0.13, 0.061
+19810624, -0.55, 0.46, 0.18, -0.05, -0.01, 0.061
+19810625, 0.10, -0.06, -0.08, 0.15, -0.21, 0.061
+19810626, -0.23, 0.25, -0.23, 0.21, -0.20, 0.061
+19810629, -0.68, -0.14, 0.35, -0.15, 0.15, 0.061
+19810630, -0.65, -0.24, 0.05, 0.10, 0.14, 0.061
+19810701, -0.98, 0.26, -0.02, -0.14, 0.00, 0.056
+19810702, -0.95, 0.03, 0.54, -0.13, 0.39, 0.056
+19810706, -1.12, -0.40, 0.82, 0.22, -0.20, 0.056
+19810707, 0.32, -0.75, -0.15, 0.44, -0.57, 0.056
+19810708, 0.09, -0.15, -0.01, 0.12, -0.37, 0.056
+19810709, 0.66, -0.16, -0.61, 0.31, -0.40, 0.056
+19810710, 0.10, 0.24, -0.12, -0.35, 0.08, 0.056
+19810713, 0.12, -0.15, 0.28, -0.02, -0.20, 0.056
+19810714, -0.12, -0.36, -0.35, 0.34, -0.33, 0.056
+19810715, 0.38, 0.13, -0.23, -0.04, -0.12, 0.056
+19810716, 0.14, 0.16, -0.28, 0.12, -0.12, 0.056
+19810717, 0.29, -0.02, -0.26, 0.00, -0.16, 0.056
+19810720, -1.59, 0.21, 0.31, 0.17, 0.09, 0.056
+19810721, -0.50, -0.58, -0.09, 0.33, -0.05, 0.056
+19810722, -0.88, 0.38, 0.31, -0.27, 0.17, 0.056
+19810723, 0.12, -0.29, -0.24, 0.26, -0.43, 0.056
+19810724, 0.80, -0.28, 0.01, -0.14, -0.10, 0.056
+19810727, 0.81, -0.33, -0.41, 0.29, -0.36, 0.056
+19810728, -0.51, 0.30, 0.28, -0.21, 0.19, 0.056
+19810729, -0.03, 0.05, 0.33, -0.20, -0.08, 0.056
+19810730, 0.57, -0.09, -0.44, -0.04, -0.23, 0.056
+19810731, 0.77, -0.19, -0.33, 0.00, -0.26, 0.056
+19810803, -0.34, -0.21, 0.12, 0.34, -0.05, 0.061
+19810804, 0.42, -0.52, -0.46, 0.56, -0.39, 0.061
+19810805, 1.05, -0.57, -0.26, 0.33, -0.38, 0.061
+19810806, 0.10, 0.20, 0.12, -0.17, -0.10, 0.061
+19810807, -0.45, 0.21, 0.24, -0.06, 0.02, 0.061
+19810810, 0.34, -0.67, 0.05, 0.30, -0.26, 0.061
+19810811, 0.84, -0.53, -0.10, -0.04, -0.43, 0.061
+19810812, -0.24, 0.32, 0.29, -0.02, 0.23, 0.061
+19810813, 0.06, 0.04, -0.27, 0.00, -0.34, 0.061
+19810814, -0.69, 0.52, 0.14, -0.17, 0.25, 0.061
+19810817, -1.02, -0.04, 0.61, 0.02, 0.19, 0.061
+19810818, -1.11, -0.19, 0.71, -0.29, 0.62, 0.061
+19810819, 0.19, -0.23, -0.27, 0.05, 0.03, 0.061
+19810820, 0.15, 0.14, -0.25, 0.04, -0.09, 0.061
+19810821, -1.03, 0.43, 0.88, -0.46, 0.46, 0.061
+19810824, -2.97, 0.07, 1.82, -0.36, 1.17, 0.061
+19810825, -0.53, -1.08, -0.15, 0.05, -0.35, 0.061
+19810826, -0.12, -0.03, 0.19, -0.17, 0.08, 0.061
+19810827, -1.08, 0.29, 0.81, -0.26, 0.46, 0.061
+19810828, 0.41, -0.14, -0.03, -0.01, -0.04, 0.061
+19810831, -1.15, 0.06, 0.87, 0.08, 0.44, 0.061
+19810901, 0.13, -0.52, -0.11, 0.14, -0.01, 0.059
+19810902, 0.26, 0.03, -0.14, -0.05, -0.13, 0.059
+19810903, -1.92, 0.25, 1.19, -0.27, 0.79, 0.059
+19810904, -1.04, -0.05, 0.42, -0.14, 0.46, 0.059
+19810908, -1.96, -0.78, 1.09, -0.05, 0.83, 0.059
+19810909, 0.25, -0.28, -0.21, 0.22, -0.10, 0.059
+19810910, 1.49, 0.02, -0.72, 0.17, -0.81, 0.059
+19810911, 1.15, -0.02, -0.25, 0.03, 0.01, 0.059
+19810914, -0.78, 0.64, -0.04, 0.00, 0.37, 0.059
+19810915, -0.59, 0.42, 0.42, -0.14, 0.31, 0.059
+19810916, -0.84, -0.23, 1.10, -0.02, 0.58, 0.059
+19810917, -1.49, 0.16, 1.30, -0.28, 0.61, 0.059
+19810918, -0.92, -0.27, 0.77, -0.31, 0.29, 0.059
+19810921, 0.54, -0.74, 0.25, 0.28, 0.03, 0.059
+19810922, -0.52, 0.19, 0.47, -0.19, 0.33, 0.059
+19810923, -1.22, -0.94, 0.90, 0.07, 0.38, 0.059
+19810924, -0.40, 0.32, 0.19, -0.05, 0.00, 0.059
+19810925, -2.40, -1.11, 1.74, -0.25, 0.73, 0.059
+19810928, 1.93, -1.83, -1.56, 1.05, -1.22, 0.059
+19810929, 0.85, 1.54, -1.27, 0.01, -0.48, 0.059
+19810930, 0.26, 0.52, -0.33, -0.17, -0.19, 0.059
+19811001, 0.66, -0.03, -0.83, 0.45, -0.53, 0.054
+19811002, 1.97, -0.15, -0.99, 0.46, -0.83, 0.054
+19811005, 0.31, 0.56, -0.22, 0.02, -0.27, 0.054
+19811006, -0.14, 0.30, -0.94, 0.36, -0.60, 0.054
+19811007, 1.55, -0.03, -0.82, 0.06, -0.27, 0.054
+19811008, 0.88, 0.40, -0.66, 0.03, -0.16, 0.054
+19811009, -0.51, 0.61, 0.88, -0.24, 0.81, 0.054
+19811012, -0.21, 0.31, 0.28, -0.02, 0.21, 0.054
+19811013, -0.22, 0.47, -0.10, 0.13, -0.06, 0.054
+19811014, -1.58, 0.41, 1.01, -0.14, 0.66, 0.054
+19811015, 0.55, -0.39, -0.17, 0.20, -0.42, 0.054
+19811016, -0.36, 0.35, 0.32, 0.05, 0.11, 0.054
+19811019, -0.21, -0.18, 0.27, 0.20, 0.25, 0.054
+19811020, 0.95, -0.40, -0.60, 0.29, -0.30, 0.054
+19811021, -0.12, 0.42, -0.47, 0.34, -0.36, 0.054
+19811022, -0.37, 0.11, -0.01, 0.29, -0.16, 0.054
+19811023, -0.80, 0.40, 0.09, 0.08, 0.02, 0.054
+19811026, -0.45, -0.09, -0.12, 0.47, -0.18, 0.054
+19811027, 0.94, -0.15, -0.50, 0.17, -0.17, 0.054
+19811028, 0.22, 0.25, -0.21, 0.08, -0.16, 0.054
+19811029, -0.38, 0.05, 0.03, 0.06, 0.01, 0.054
+19811030, 2.15, -1.17, -0.22, -0.22, -0.22, 0.054
+19811102, 1.89, -0.63, -1.36, 0.60, -0.93, 0.053
+19811103, 0.44, 0.15, -0.15, 0.05, -0.02, 0.053
+19811104, 0.13, 0.10, 0.09, -0.01, 0.13, 0.053
+19811105, -0.70, 0.60, 0.66, -0.22, 0.44, 0.053
+19811106, -0.51, 0.29, 0.48, -0.31, 0.25, 0.053
+19811109, 0.35, -0.54, 0.73, -0.07, 0.05, 0.053
+19811110, -0.40, 0.34, 0.62, -0.15, 0.34, 0.053
+19811111, 0.12, -0.21, 0.49, -0.44, 0.16, 0.053
+19811112, 0.21, 0.13, 0.52, -0.38, 0.28, 0.053
+19811113, -1.16, 0.65, 1.11, -0.40, 0.64, 0.053
+19811116, -1.31, -0.22, 1.08, 0.05, 0.51, 0.053
+19811117, 0.51, -0.68, 0.07, 0.20, -0.16, 0.053
+19811118, -0.45, 0.40, 0.41, -0.29, 0.45, 0.053
+19811119, 0.42, -0.48, -0.57, 0.52, -0.69, 0.053
+19811120, 0.87, -0.16, -0.51, 0.19, -0.33, 0.053
+19811123, -0.10, -0.01, -0.41, 0.35, -0.07, 0.053
+19811124, 1.21, -0.81, -0.16, 0.18, 0.05, 0.053
+19811125, 0.34, 0.13, -0.03, -0.18, 0.12, 0.053
+19811127, 0.70, -0.09, -0.39, -0.02, 0.07, 0.053
+19811130, 0.79, -0.38, -0.87, 0.48, -0.71, 0.053
+19811201, -0.23, 0.08, 0.09, -0.13, 0.59, 0.040
+19811202, -1.01, 0.64, 0.28, -0.13, 0.29, 0.040
+19811203, 0.31, -0.39, -0.18, 0.22, 0.07, 0.040
+19811204, 0.65, -0.20, -0.09, 0.07, 0.06, 0.040
+19811207, -0.78, 0.14, 0.41, 0.06, 0.17, 0.040
+19811208, -0.48, -0.38, 0.11, 0.03, 0.15, 0.040
+19811209, 0.46, -0.26, -0.50, -0.01, -0.30, 0.040
+19811210, 0.14, 0.15, -0.02, -0.12, 0.18, 0.040
+19811211, -0.57, 0.43, -0.03, 0.03, 0.02, 0.040
+19811214, -1.59, 0.19, 0.61, -0.01, 0.23, 0.040
+19811215, 0.04, 0.05, 0.02, -0.26, 0.12, 0.040
+19811216, -0.37, 0.38, -0.12, 0.05, -0.01, 0.040
+19811217, 0.40, -0.21, -0.65, 0.49, -0.19, 0.040
+19811218, 0.63, -0.11, -0.43, -0.01, -0.04, 0.040
+19811221, -0.47, 0.07, 0.37, 0.10, 0.05, 0.040
+19811222, -0.39, 0.09, 0.41, -0.01, 0.35, 0.040
+19811223, -0.40, 0.30, 0.21, -0.10, -0.01, 0.040
+19811224, 0.21, 0.00, -0.15, -0.19, 0.02, 0.040
+19811228, -0.27, -0.08, 0.27, 0.21, 0.09, 0.040
+19811229, -0.56, -0.04, 0.42, 0.00, 0.34, 0.040
+19811230, 0.34, -0.12, -0.12, 0.06, 0.13, 0.040
+19811231, 0.31, 0.44, -0.20, -0.16, 0.12, 0.040
+19820104, 0.16, -0.04, 0.59, -0.52, 0.36, 0.040
+19820105, -2.03, 0.68, 1.48, -0.65, 0.91, 0.040
+19820106, -0.81, -0.02, 0.73, -0.35, 0.51, 0.040
+19820107, -0.27, 0.26, 0.07, -0.29, 0.16, 0.040
+19820108, 0.46, -0.01, 0.08, -0.17, 0.03, 0.040
+19820111, -2.33, 0.43, 1.79, -0.20, 0.83, 0.040
+19820112, -0.55, -0.39, 0.12, -0.17, 0.14, 0.040
+19820113, -1.28, 0.40, 0.31, -0.12, 0.27, 0.040
+19820114, 0.48, -0.37, -0.39, 0.19, -0.41, 0.040
+19820115, 0.60, 0.06, -0.81, 0.13, -0.31, 0.040
+19820118, 0.58, -0.59, -0.52, 0.32, -0.39, 0.040
+19820119, -0.95, 0.53, 0.79, -0.36, 0.68, 0.040
+19820120, -0.61, 0.26, 0.56, -0.28, 0.47, 0.040
+19820121, 0.30, -0.28, 0.02, 0.15, 0.12, 0.040
+19820122, -0.38, 0.07, 0.64, -0.19, 0.27, 0.040
+19820125, -0.40, -0.97, 0.31, 0.00, 0.12, 0.040
+19820126, -0.17, -0.02, 0.09, 0.13, 0.04, 0.040
+19820127, 0.35, -0.44, -0.24, 0.20, -0.17, 0.040
+19820128, 2.53, -0.81, -1.75, 0.49, -1.17, 0.040
+19820129, 1.12, -0.02, -0.73, 0.23, -0.36, 0.040
+19820201, -1.79, 0.95, 0.80, -0.27, 0.80, 0.048
+19820202, 0.27, -0.04, -0.16, -0.18, 0.14, 0.048
+19820203, -0.93, 0.77, 0.55, -0.51, 0.74, 0.048
+19820204, -0.20, -0.05, 0.22, -0.11, 0.22, 0.048
+19820205, 0.76, -0.12, -0.09, -0.09, 0.07, 0.048
+19820208, -2.16, 0.30, 1.60, -0.28, 0.70, 0.048
+19820209, -0.94, -0.39, 0.94, -0.25, 0.68, 0.048
+19820210, 0.61, -0.47, -0.12, -0.07, -0.10, 0.048
+19820211, -0.14, -0.20, 0.44, 0.08, 0.33, 0.048
+19820212, -0.07, 0.18, -0.10, -0.01, 0.01, 0.048
+19820216, -0.46, -0.30, 0.11, 0.14, 0.18, 0.048
+19820217, -0.19, 0.42, -0.38, 0.08, -0.11, 0.048
+19820218, 0.06, -0.14, -0.43, -0.02, -0.02, 0.048
+19820219, -0.47, 0.02, 0.45, -0.22, 0.13, 0.048
+19820222, -1.25, 0.46, 1.63, -0.82, 0.75, 0.048
+19820223, -0.22, -0.67, 1.00, -0.52, 0.43, 0.048
+19820224, 1.40, -0.97, -0.27, -0.15, -0.50, 0.048
+19820225, -0.04, 0.61, -0.28, -0.16, 0.12, 0.048
+19820226, -0.16, 0.03, 0.43, -0.28, 0.22, 0.048
+19820301, 0.24, -0.07, 0.32, -0.40, 0.45, 0.042
+19820302, -0.38, 0.36, 1.13, -0.43, 0.69, 0.042
+19820303, -1.52, -0.02, 2.00, -0.89, 1.17, 0.042
+19820304, -1.08, -0.05, 1.44, -0.35, 0.42, 0.042
+19820305, -0.69, -0.52, 1.70, -0.49, 0.76, 0.042
+19820308, -1.61, -0.08, 2.10, -0.52, 0.90, 0.042
+19820309, 0.70, -1.39, -0.60, 0.28, -0.34, 0.042
+19820310, 0.50, 0.16, -0.49, 0.32, -0.52, 0.042
+19820311, -0.12, -0.04, 0.27, 0.03, 0.00, 0.042
+19820312, -0.80, 0.04, 0.57, -0.14, 0.21, 0.042
+19820315, 0.49, -0.67, -1.00, 0.56, -0.51, 0.042
+19820316, -0.06, 0.39, -0.26, 0.08, -0.01, 0.042
+19820317, -0.15, 0.16, -0.11, -0.14, 0.09, 0.042
+19820318, 1.12, -0.07, -0.97, 0.32, -0.77, 0.042
+19820319, 0.30, 0.43, -0.35, -0.02, -0.29, 0.042
+19820322, 1.88, -0.39, -1.66, 0.54, -0.66, 0.042
+19820323, 0.59, -0.01, -0.56, 0.27, -0.10, 0.042
+19820324, -0.45, 0.51, 0.19, -0.14, 0.46, 0.042
+19820325, 0.31, 0.37, -0.35, -0.02, 0.01, 0.042
+19820326, -0.89, 0.58, 0.34, -0.16, 0.38, 0.042
+19820329, 0.12, 0.03, -0.23, 0.02, -0.20, 0.042
+19820330, 0.01, 0.06, 0.01, 0.05, 0.05, 0.042
+19820331, -0.22, 0.19, 0.08, -0.05, 0.10, 0.042
+19820401, 1.37, -0.52, -1.02, 0.21, -0.28, 0.053
+19820402, 1.06, -0.35, -1.14, 0.68, -0.74, 0.053
+19820405, -0.31, 0.34, -0.15, 0.12, 0.09, 0.053
+19820406, 0.48, -0.22, -0.11, 0.24, -0.24, 0.053
+19820407, 0.15, 0.27, -0.24, 0.24, -0.30, 0.053
+19820408, 0.59, -0.11, -0.33, 0.22, 0.08, 0.053
+19820412, -0.22, 0.16, 0.17, -0.05, 0.30, 0.053
+19820413, -0.04, 0.16, 0.23, -0.21, 0.33, 0.053
+19820414, -0.17, 0.03, 0.25, 0.04, 0.07, 0.053
+19820415, 0.39, -0.03, -0.50, 0.37, -0.18, 0.053
+19820416, 0.45, -0.04, -0.31, 0.02, -0.30, 0.053
+19820419, -0.09, 0.21, 0.52, -0.20, 0.35, 0.053
+19820420, -0.94, 0.61, 0.68, -0.42, 0.64, 0.053
+19820421, 0.22, 0.00, 0.22, -0.23, 0.32, 0.053
+19820422, 1.01, -0.49, -0.57, 0.14, -0.68, 0.053
+19820423, 1.04, -0.39, -0.79, 0.48, -0.44, 0.053
+19820426, 0.42, -0.04, -0.48, 0.12, 0.11, 0.053
+19820427, -0.91, 0.43, 0.35, 0.01, 0.34, 0.053
+19820428, -0.61, 0.61, -0.05, 0.01, 0.11, 0.053
+19820429, -0.90, 0.49, 0.42, -0.34, 0.41, 0.053
+19820430, 0.17, -0.02, -0.18, -0.01, -0.09, 0.053
+19820503, 0.27, -0.32, 0.05, -0.07, -0.06, 0.053
+19820504, 0.59, -0.06, -0.19, 0.30, -0.32, 0.053
+19820505, 0.12, -0.20, 0.12, 0.24, -0.12, 0.053
+19820506, 0.83, -0.08, -0.13, 0.13, -0.25, 0.053
+19820507, 0.69, -0.29, -0.19, 0.25, -0.49, 0.053
+19820510, -0.75, 0.36, 0.11, 0.13, 0.11, 0.053
+19820511, 0.79, -0.34, -0.46, 0.23, -0.41, 0.053
+19820512, -0.31, 0.13, 0.24, -0.40, 0.30, 0.053
+19820513, -0.62, 0.47, 0.03, 0.07, 0.19, 0.053
+19820514, -0.13, 0.26, -0.06, 0.13, -0.03, 0.053
+19820517, -1.07, 0.31, 0.45, 0.07, 0.44, 0.053
+19820518, -0.82, 0.02, 0.32, -0.19, 0.23, 0.053
+19820519, -0.76, 0.20, 0.40, -0.03, 0.23, 0.053
+19820520, -0.44, -0.31, 0.32, 0.08, 0.03, 0.053
+19820521, 0.16, -0.34, 0.19, -0.17, 0.12, 0.053
+19820524, -0.08, -0.40, -0.18, 0.02, -0.20, 0.053
+19820525, -0.30, 0.15, 0.19, 0.16, 0.20, 0.053
+19820526, -1.26, 0.00, 0.60, -0.21, 0.43, 0.053
+19820527, -0.47, 0.05, -0.01, 0.20, -0.28, 0.053
+19820528, -0.38, 0.76, 0.01, 0.03, -0.09, 0.053
+19820601, -0.39, -0.24, -0.16, 0.12, -0.48, 0.043
+19820602, 0.31, -0.07, -0.05, -0.16, -0.42, 0.043
+19820603, -0.22, 0.01, 0.36, -0.10, 0.10, 0.043
+19820604, -1.52, 0.42, 0.81, -0.39, 0.62, 0.043
+19820607, -0.14, -0.49, 0.05, 0.10, -0.09, 0.043
+19820608, -0.44, 0.01, 0.23, 0.01, -0.03, 0.043
+19820609, -0.69, -0.27, 0.25, 0.24, 0.25, 0.043
+19820610, 0.37, -0.15, -0.31, 0.14, -0.09, 0.043
+19820611, 1.52, -0.21, -0.43, 0.11, -0.01, 0.043
+19820614, -1.14, 0.40, 0.72, -0.06, 0.44, 0.043
+19820615, -0.37, -0.09, 0.26, -0.03, 0.34, 0.043
+19820616, -0.56, 0.50, 0.30, -0.39, 0.59, 0.043
+19820617, -1.05, 0.15, 0.71, -0.33, 0.56, 0.043
+19820618, -0.55, -0.11, 0.19, -0.12, 0.02, 0.043
+19820621, -0.07, 0.17, -0.17, 0.30, 0.17, 0.043
+19820622, 0.76, -0.48, -0.73, 0.35, -0.17, 0.043
+19820623, 1.52, -0.58, -1.19, 0.40, -0.61, 0.043
+19820624, -0.19, 0.38, 0.21, -0.02, 0.49, 0.043
+19820625, -0.58, 0.31, 0.04, -0.04, 0.17, 0.043
+19820628, 0.74, -0.53, -0.61, 0.42, -0.24, 0.043
+19820629, 0.01, -0.26, 0.61, -0.21, 0.65, 0.043
+19820630, -0.39, 0.73, 0.69, -0.28, 0.27, 0.043
+19820701, -0.79, 0.33, 0.54, -0.17, 0.41, 0.050
+19820702, -0.75, 0.56, 0.45, -0.27, 0.21, 0.050
+19820706, -0.43, 0.04, 0.16, 0.21, 0.39, 0.050
+19820707, -0.21, -0.04, 0.13, -0.02, 0.15, 0.050
+19820708, 0.03, -0.69, -0.12, 0.13, -0.08, 0.050
+19820709, 1.08, -0.15, -0.38, -0.11, -0.01, 0.050
+19820712, 0.67, -0.05, 0.15, -0.26, 0.56, 0.050
+19820713, -0.12, 0.21, -0.31, 0.56, -0.11, 0.050
+19820714, 0.60, -0.75, -0.59, 1.15, -0.42, 0.050
+19820715, 0.04, 0.15, -0.14, 0.30, -0.10, 0.050
+19820716, 0.43, -0.27, -0.49, 0.09, -0.47, 0.050
+19820719, -0.25, 0.31, 0.24, -0.18, 0.17, 0.050
+19820720, 0.53, -0.29, -0.06, -0.18, 0.09, 0.050
+19820721, 0.00, 0.30, -0.22, -0.02, 0.06, 0.050
+19820722, 0.03, 0.24, -0.02, -0.25, 0.04, 0.050
+19820723, -0.33, 0.37, 0.17, 0.00, -0.18, 0.050
+19820726, -0.70, 0.26, 0.03, 0.15, -0.02, 0.050
+19820727, -0.80, 0.44, 0.07, -0.08, 0.23, 0.050
+19820728, -1.55, 0.17, 0.61, -0.06, 0.37, 0.050
+19820729, -0.16, -0.49, -0.24, 0.28, 0.05, 0.050
+19820730, -0.45, 0.34, 0.15, -0.21, 0.15, 0.050
+19820802, 1.56, -1.04, -0.01, -0.09, 0.02, 0.035
+19820803, -0.83, 0.63, 0.46, -0.51, 0.48, 0.035
+19820804, -1.46, 0.54, 0.86, -0.41, 0.56, 0.035
+19820805, -0.81, -0.04, 0.64, -0.18, 0.03, 0.035
+19820806, -1.20, 0.39, 0.91, -0.26, 0.31, 0.035
+19820809, -0.79, -0.94, 0.44, 0.14, 0.36, 0.035
+19820810, -0.17, -0.02, 0.21, -0.04, 0.32, 0.035
+19820811, -0.33, -0.20, 0.63, -0.15, 0.07, 0.035
+19820812, -0.30, -0.21, 0.64, -0.22, 0.19, 0.035
+19820813, 1.09, -1.28, 0.75, -0.30, 0.33, 0.035
+19820816, 0.41, 0.23, 0.48, -0.47, 0.26, 0.035
+19820817, 4.09, -2.36, 0.15, -0.53, 0.15, 0.035
+19820818, 0.12, 1.49, -0.40, -0.14, -0.19, 0.035
+19820819, 0.21, -0.41, 0.16, -0.36, 0.21, 0.035
+19820820, 3.08, -1.70, -0.44, -0.19, -0.37, 0.035
+19820823, 2.59, -1.02, -0.68, 0.29, -0.47, 0.035
+19820824, -0.25, 1.16, -0.62, 0.45, -0.33, 0.035
+19820825, 2.00, -0.20, -0.94, 0.33, -1.41, 0.035
+19820826, 1.07, 0.68, -1.13, 0.30, -0.27, 0.035
+19820827, -1.07, 0.92, -0.46, 0.33, -0.16, 0.035
+19820830, 0.36, -0.32, -0.41, 0.08, 0.09, 0.035
+19820831, 1.43, -0.42, -0.24, 0.26, -0.03, 0.035
+19820901, -0.88, 0.53, 0.53, -0.04, 0.53, 0.024
+19820902, 1.56, -0.38, -0.70, -0.09, -0.12, 0.024
+19820903, 1.80, -0.89, -0.60, 0.31, -0.67, 0.024
+19820907, -0.96, 0.69, 0.38, 0.05, 0.26, 0.024
+19820908, 0.67, -0.01, -0.36, 0.52, -0.40, 0.024
+19820909, 0.01, 0.59, 0.03, -0.08, -0.03, 0.024
+19820910, -0.73, 0.48, 0.29, 0.12, 0.01, 0.024
+19820913, 0.81, -0.73, -0.23, 0.26, -0.09, 0.024
+19820914, 0.81, -0.03, -0.28, 0.14, -0.20, 0.024
+19820915, 0.80, -0.27, -0.22, 0.23, 0.13, 0.024
+19820916, -0.15, 0.54, -0.21, 0.21, -0.06, 0.024
+19820917, -0.93, 0.59, 0.12, 0.00, 0.17, 0.024
+19820920, -0.11, -0.32, 0.13, 0.31, 0.06, 0.024
+19820921, 1.68, -0.67, -0.35, 0.07, -0.46, 0.024
+19820922, -0.46, 0.71, 0.47, -0.15, 0.20, 0.024
+19820923, -0.19, -0.09, -0.02, 0.23, 0.00, 0.024
+19820924, -0.28, 0.47, -0.19, 0.06, -0.25, 0.024
+19820927, 0.18, -0.23, 0.09, 0.10, 0.02, 0.024
+19820928, -0.20, 0.42, 0.15, 0.03, 0.22, 0.024
+19820929, -1.23, 0.51, 0.65, 0.03, 0.25, 0.024
+19820930, -0.85, 0.50, 0.52, -0.21, 0.30, 0.024
+19821001, 1.10, -0.64, 0.01, -0.29, 0.13, 0.028
+19821004, -0.29, -0.01, -0.02, 0.46, 0.11, 0.028
+19821005, 0.42, 0.06, -0.23, 0.27, -0.13, 0.028
+19821006, 2.92, -1.32, -0.97, 0.57, -0.23, 0.028
+19821007, 2.05, -0.48, -0.38, -0.03, -0.16, 0.028
+19821008, 1.74, -0.45, 0.26, -0.27, -0.36, 0.028
+19821011, 2.24, -0.61, 0.11, 0.11, 0.10, 0.028
+19821012, -0.10, 0.18, -0.12, 0.33, -0.30, 0.028
+19821013, 1.80, 0.17, -1.09, 0.34, -0.80, 0.028
+19821014, -1.28, 1.41, 0.23, -0.15, -0.06, 0.028
+19821015, -0.60, 0.68, 0.10, -0.26, 0.18, 0.028
+19821018, 2.03, -0.91, -0.65, 0.06, 0.11, 0.028
+19821019, -0.01, 0.17, 0.30, -0.03, 0.36, 0.028
+19821020, 1.87, -0.55, -0.55, 0.08, -0.09, 0.028
+19821021, 0.00, 0.68, -0.77, 0.12, -0.18, 0.028
+19821022, 0.04, 1.17, -0.18, -0.33, 0.10, 0.028
+19821025, -3.62, 1.47, 0.56, -0.28, 0.44, 0.028
+19821026, 0.55, -1.42, -0.11, 0.50, 0.13, 0.028
+19821027, 0.77, 0.82, -0.30, -0.22, -0.23, 0.028
+19821028, -1.02, 1.13, 0.30, -0.21, 0.05, 0.028
+19821029, 0.26, 0.06, 0.20, -0.57, 0.53, 0.028
+19821101, 1.15, -0.51, -0.32, 0.02, -0.14, 0.030
+19821102, 1.53, 0.05, -0.03, 0.08, 0.24, 0.030
+19821103, 3.56, -1.20, -0.55, 0.02, -0.32, 0.030
+19821104, -0.36, 0.99, -0.06, 0.13, -0.08, 0.030
+19821105, 0.48, 0.49, -0.04, -0.21, -0.29, 0.030
+19821108, -0.96, 1.05, -0.04, -0.03, -0.07, 0.030
+19821109, 1.64, 0.05, -0.47, -0.15, -0.32, 0.030
+19821110, -1.05, 1.05, -0.04, -0.16, 0.13, 0.030
+19821111, 0.44, -0.02, -0.26, -0.21, -0.11, 0.030
+19821112, -0.98, 1.50, 0.39, -0.70, 0.39, 0.030
+19821115, -1.75, 0.36, 0.83, -0.03, 0.33, 0.030
+19821116, -1.38, -0.50, 0.74, -0.01, 0.59, 0.030
+19821117, 1.67, -0.48, -0.47, 0.34, -0.08, 0.030
+19821118, 0.44, 0.33, -0.35, -0.16, 0.06, 0.030
+19821119, -0.67, 0.88, 0.04, -0.05, 0.19, 0.030
+19821122, -1.96, 0.72, 0.79, -0.38, 0.43, 0.030
+19821123, -0.80, 0.42, 0.01, 0.06, 0.07, 0.030
+19821124, 0.72, -0.09, -0.24, 0.33, -0.17, 0.030
+19821126, 0.71, 0.08, -0.55, -0.12, -0.17, 0.030
+19821129, -0.48, 0.30, -0.01, -0.14, 0.21, 0.030
+19821130, 2.81, -1.35, -1.33, 0.52, -0.72, 0.030
+19821201, 0.34, 0.94, -0.62, 0.43, 0.04, 0.031
+19821202, 0.01, 0.08, 0.01, 0.15, -0.08, 0.031
+19821203, -0.08, 0.15, 0.01, -0.05, 0.01, 0.031
+19821206, 1.80, -1.09, -0.97, 0.66, -0.28, 0.031
+19821207, 0.60, 0.26, -0.50, 0.43, -0.10, 0.031
+19821208, -0.44, 0.93, -0.05, 0.07, -0.29, 0.031
+19821209, -1.18, 0.28, 0.56, 0.31, 0.01, 0.031
+19821210, -0.59, -0.50, 0.37, 0.55, -0.32, 0.031
+19821213, 0.16, -0.53, 0.37, -0.20, 0.42, 0.031
+19821214, -1.58, 0.49, 1.44, -1.03, 0.99, 0.031
+19821215, -1.69, -0.54, 0.83, -0.30, 0.51, 0.031
+19821216, -0.14, -0.33, -0.31, 0.09, -0.18, 0.031
+19821217, 1.45, -0.29, -1.10, -0.02, -0.35, 0.031
+19821220, -0.81, 0.43, 0.22, 0.13, 0.26, 0.031
+19821221, 1.36, -0.96, -0.27, -0.10, 0.15, 0.031
+19821222, 0.24, 0.33, -0.36, -0.33, -0.10, 0.031
+19821223, 0.58, -0.09, 0.02, -0.15, -0.20, 0.031
+19821227, 1.43, -0.92, 0.12, -0.09, 0.06, 0.031
+19821228, -0.80, 0.50, 0.45, -0.18, 0.31, 0.031
+19821229, 0.30, -0.17, -0.12, 0.04, -0.15, 0.031
+19821230, -0.58, 0.49, 0.16, -0.14, 0.20, 0.031
+19821231, 0.31, 0.40, -0.39, -0.24, 0.06, 0.031
+19830103, -1.45, 0.81, 1.02, -0.19, 0.33, 0.033
+19830104, 1.67, -1.21, -0.18, 0.17, -0.38, 0.033
+19830105, 0.50, 0.32, 0.19, -0.22, -0.08, 0.033
+19830106, 2.28, -0.48, -0.50, -0.27, -0.34, 0.033
+19830107, 0.08, 0.71, 0.08, -0.16, 0.25, 0.033
+19830110, 1.12, 0.05, -0.53, -0.34, 0.12, 0.033
+19830111, -0.55, 0.57, 0.20, -0.28, 0.11, 0.033
+19830112, 0.62, 0.11, -0.07, -0.10, 0.03, 0.033
+19830113, -0.49, 0.45, 0.04, -0.12, -0.12, 0.033
+19830114, 0.61, 0.50, -0.12, -0.20, -0.03, 0.033
+19830117, 0.19, 0.57, -0.39, -0.09, -0.08, 0.033
+19830118, -0.14, 0.23, -0.16, 0.35, -0.02, 0.033
+19830119, -0.75, 0.08, 0.03, 0.08, -0.31, 0.033
+19830120, 0.47, -0.33, 0.07, 0.65, -0.53, 0.033
+19830121, -1.52, 0.50, 0.52, -0.14, 0.08, 0.033
+19830124, -2.75, -0.33, 0.86, 0.10, 0.83, 0.033
+19830125, 1.14, -0.35, -0.19, -0.41, 0.21, 0.033
+19830126, 0.05, 0.88, -0.47, -0.03, -0.26, 0.033
+19830127, 1.76, -0.38, -0.69, -0.18, -0.30, 0.033
+19830128, 0.22, 0.50, -0.23, 0.05, -0.06, 0.033
+19830131, 0.57, -0.08, -0.27, -0.11, 0.13, 0.033
+19830201, -1.15, 0.97, 0.64, -0.31, 0.41, 0.032
+19830202, 0.01, -0.04, 0.40, -0.23, 0.13, 0.032
+19830203, 0.72, -0.10, 0.27, 0.19, -0.23, 0.032
+19830204, 1.27, -0.27, -0.62, 0.21, -0.39, 0.032
+19830207, 0.51, 0.04, 0.33, -0.23, 0.30, 0.032
+19830208, -0.71, 0.54, 0.30, 0.01, 0.19, 0.032
+19830209, -0.36, 0.73, -0.09, 0.06, -0.28, 0.032
+19830210, 1.50, -0.33, -0.53, 0.06, -0.18, 0.032
+19830211, 0.15, 0.28, -0.40, -0.05, -0.08, 0.032
+19830214, 0.87, -0.15, -0.88, 0.49, -0.29, 0.032
+19830215, -0.20, 0.50, -0.40, 0.19, -0.03, 0.032
+19830216, -0.52, 0.57, 0.32, -0.21, 0.14, 0.032
+19830217, -0.06, -0.09, 0.08, -0.14, 0.25, 0.032
+19830218, 0.42, 0.24, -0.03, -0.16, 0.05, 0.032
+19830222, -1.33, 0.53, 0.68, -0.63, 0.54, 0.032
+19830223, 0.76, -0.45, -0.07, 0.21, -0.27, 0.032
+19830224, 1.64, -0.82, -0.44, 0.27, -0.13, 0.032
+19830225, 0.09, -0.08, 0.51, 0.04, 0.17, 0.032
+19830228, -0.99, 0.61, 0.44, -0.22, 0.62, 0.032
+19830301, 1.54, -1.16, 0.52, -0.29, 0.47, 0.027
+19830302, 0.86, -0.19, -0.13, 0.28, 0.34, 0.027
+19830303, 0.74, 0.05, 0.18, 0.05, 0.23, 0.027
+19830304, 0.18, 0.07, 0.39, -0.28, 0.41, 0.027
+19830307, 0.01, 0.33, 0.18, -0.10, 0.17, 0.027
+19830308, -1.35, 0.69, 0.72, -0.24, 0.29, 0.027
+19830309, 0.89, -0.21, -0.40, 0.15, -0.21, 0.027
+19830310, -0.50, 0.92, 0.12, -0.28, 0.01, 0.027
+19830311, -0.34, 0.20, 0.16, 0.06, -0.04, 0.027
+19830314, -0.43, -0.17, 0.37, 0.04, 0.09, 0.027
+19830315, 0.20, -0.45, 0.22, -0.15, 0.22, 0.027
+19830316, -0.76, 0.78, 0.48, -0.64, 0.61, 0.027
+19830317, -0.21, -0.18, 0.23, -0.24, 0.26, 0.027
+19830318, 0.21, 0.17, -0.23, -0.15, 0.23, 0.027
+19830321, 0.68, -0.33, -0.10, 0.34, -0.19, 0.027
+19830322, -0.20, 0.59, -0.06, -0.35, -0.02, 0.027
+19830323, 1.23, -0.43, -0.24, 0.09, 0.34, 0.027
+19830324, 0.39, 0.21, 0.10, -0.05, 0.36, 0.027
+19830325, -0.28, 0.42, -0.19, 0.08, 0.06, 0.027
+19830328, -0.58, 0.11, 0.11, 0.46, 0.04, 0.027
+19830329, -0.17, 0.05, -0.15, 0.22, -0.06, 0.027
+19830330, 0.96, -0.47, -0.34, 0.35, -0.35, 0.027
+19830331, -0.21, 0.36, 0.07, 0.54, -0.59, 0.027
+19830404, -0.07, -0.47, 0.31, 0.44, 0.02, 0.036
+19830405, -0.59, 0.62, 0.14, -0.09, 0.36, 0.036
+19830406, -0.67, -0.22, 0.68, -0.28, 0.27, 0.036
+19830407, 0.33, -0.24, 0.30, -0.14, -0.02, 0.036
+19830408, 0.58, -0.10, 0.07, 0.31, -0.08, 0.036
+19830411, 1.28, -0.43, -0.44, 0.16, -0.15, 0.036
+19830412, 0.44, 0.13, -0.14, 0.14, -0.21, 0.036
+19830413, 0.70, 0.24, -0.19, -0.13, 0.04, 0.036
+19830414, 0.83, 0.25, -0.24, -0.10, 0.44, 0.036
+19830415, 0.50, 0.22, -0.05, -0.40, -0.30, 0.036
+19830418, 0.60, 0.03, -0.02, -0.16, 0.37, 0.036
+19830419, -0.62, 0.38, 0.04, -0.04, 0.07, 0.036
+19830420, 1.12, -0.22, -0.21, -0.07, 0.22, 0.036
+19830421, -0.24, 0.53, 0.20, -0.21, 0.02, 0.036
+19830422, 0.22, 0.26, 0.01, -0.01, 0.20, 0.036
+19830425, -0.93, 0.26, 0.40, -0.03, 0.19, 0.036
+19830426, 1.48, -0.89, -0.02, 0.15, -0.13, 0.036
+19830427, -0.11, 0.24, -0.02, 0.04, -0.02, 0.036
+19830428, 0.87, -0.18, -0.05, 0.19, 0.22, 0.036
+19830429, 0.75, 0.05, -0.28, 0.06, -0.06, 0.036
+19830502, -1.25, 0.68, 0.29, 0.02, 0.21, 0.033
+19830503, 0.01, -0.14, 0.12, -0.10, -0.17, 0.033
+19830504, 0.83, 0.28, -0.13, -0.31, -0.28, 0.033
+19830505, 0.83, 0.48, -0.22, -0.64, 0.05, 0.033
+19830506, 1.15, 0.32, -0.28, -0.28, 0.15, 0.033
+19830509, 0.01, 0.52, -0.15, -0.19, 0.26, 0.033
+19830510, 0.22, 0.68, 0.07, -0.32, 0.17, 0.033
+19830511, -0.57, 0.24, 0.37, 0.26, -0.24, 0.033
+19830512, -0.36, 0.27, -0.07, 0.03, -0.20, 0.033
+19830513, 0.44, 0.42, -0.22, -0.24, -0.31, 0.033
+19830516, -0.98, -0.31, 0.07, 0.35, -0.13, 0.033
+19830517, 0.34, 0.25, -0.07, -0.13, 0.04, 0.033
+19830518, 0.01, 0.72, -0.40, -0.19, -0.28, 0.033
+19830519, -0.67, 0.22, -0.10, 0.15, -0.14, 0.033
+19830520, -0.02, 0.01, -0.13, -0.12, -0.08, 0.033
+19830523, 0.69, -0.72, -0.36, 0.21, -0.20, 0.033
+19830524, 1.24, 0.12, -0.21, -0.23, 0.00, 0.033
+19830525, 0.49, 0.26, -0.10, -0.02, -0.10, 0.033
+19830526, -0.22, 0.68, -0.05, -0.03, -0.14, 0.033
+19830527, -0.40, 0.75, 0.02, -0.02, -0.03, 0.033
+19830531, -1.20, 0.30, 0.27, 0.04, -0.04, 0.033
+19830601, 0.01, -0.27, -0.27, 0.24, 0.18, 0.030
+19830602, 0.78, 0.03, -0.44, 0.14, -0.10, 0.030
+19830603, 0.41, 0.55, -0.52, -0.27, 0.11, 0.030
+19830606, 0.32, 0.14, -0.38, 0.33, 0.00, 0.030
+19830607, -0.94, 0.86, -0.03, -0.02, 0.10, 0.030
+19830608, -0.84, 0.04, -0.19, 0.14, 0.08, 0.030
+19830609, 0.23, 0.03, -0.02, -0.06, 0.01, 0.030
+19830610, 0.65, 0.36, -0.04, 0.01, -0.02, 0.030
+19830613, 1.16, -0.15, -0.13, 0.15, -0.24, 0.030
+19830614, 0.41, 0.23, -0.17, 0.14, -0.12, 0.030
+19830615, 0.87, -0.12, -0.41, 0.41, -0.39, 0.030
+19830616, 1.05, -0.06, -0.41, 0.46, -0.21, 0.030
+19830617, -0.03, 0.12, -0.12, 0.53, -0.11, 0.030
+19830620, -0.13, 0.04, -0.04, 0.29, -0.07, 0.030
+19830621, 0.69, -0.32, -0.38, 0.32, -0.30, 0.030
+19830622, 0.24, 0.09, -0.23, -0.46, -0.22, 0.030
+19830623, -0.22, 0.12, -0.40, 0.38, -0.08, 0.030
+19830624, 0.16, 0.23, -0.31, -0.24, 0.11, 0.030
+19830627, -1.17, -0.15, 0.48, 0.33, 0.26, 0.030
+19830628, -1.85, -0.52, 0.81, 0.12, 0.40, 0.030
+19830629, 0.42, -0.38, -0.39, -0.18, -0.14, 0.030
+19830630, 0.83, 0.21, -0.20, -0.30, -0.05, 0.030
+19830701, 0.56, 0.24, -0.13, 0.04, -0.16, 0.037
+19830705, -1.34, 0.34, 0.82, 0.37, 0.09, 0.037
+19830706, 0.94, -0.15, 0.17, 0.10, 0.03, 0.037
+19830707, -0.43, 0.61, -0.08, -0.16, 0.06, 0.037
+19830708, -0.24, 0.09, 0.14, -0.01, 0.00, 0.037
+19830711, 0.45, -0.26, 0.05, 0.07, 0.09, 0.037
+19830712, -1.42, 0.39, 0.57, 0.23, -0.18, 0.037
+19830713, -0.25, -0.38, 0.76, -0.07, 0.21, 0.037
+19830714, 0.28, 0.01, 0.07, -0.05, 0.10, 0.037
+19830715, -1.01, 0.39, 0.51, -0.01, 0.07, 0.037
+19830718, -0.44, -0.52, 0.43, 0.18, 0.13, 0.037
+19830719, 0.45, -0.17, -0.02, -0.16, 0.11, 0.037
+19830720, 2.35, -1.08, -0.71, -0.28, -0.05, 0.037
+19830721, 0.08, 0.53, -0.55, -0.24, 0.02, 0.037
+19830722, -0.03, 0.45, -0.14, -0.07, 0.11, 0.037
+19830725, 0.30, -0.26, 0.10, -0.15, 0.34, 0.037
+19830726, 0.32, 0.08, 0.42, -0.27, 0.56, 0.037
+19830727, -1.57, 0.29, 1.49, 0.13, 0.76, 0.037
+19830728, -1.61, 0.51, 1.27, 0.24, 0.56, 0.037
+19830729, -1.45, -0.16, 0.50, 0.03, 0.06, 0.037
+19830801, -0.52, -0.73, 0.26, 0.15, 0.05, 0.033
+19830802, -0.05, -0.18, 0.03, 0.17, -0.13, 0.033
+19830803, 0.51, -0.72, 0.58, 0.06, 0.02, 0.033
+19830804, -1.20, 0.04, 0.57, 0.25, 0.22, 0.033
+19830805, 0.26, 0.01, -0.08, 0.07, -0.01, 0.033
+19830808, -1.54, 0.11, 0.88, 0.21, 0.36, 0.033
+19830809, 0.31, -1.05, 0.45, -0.06, -0.03, 0.033
+19830810, 0.79, -0.23, -0.15, 0.05, 0.16, 0.033
+19830811, 0.10, 0.23, -0.24, 0.14, -0.23, 0.033
+19830812, 0.55, -0.02, 0.02, -0.08, -0.02, 0.033
+19830815, 0.83, -0.21, -0.38, 0.21, -0.03, 0.033
+19830816, -0.35, -0.10, 0.71, 0.24, 0.26, 0.033
+19830817, 0.91, -0.57, 0.71, -0.21, 0.23, 0.033
+19830818, -0.78, 0.74, 0.25, 0.09, -0.09, 0.033
+19830819, 0.12, -0.17, 0.29, 0.13, 0.26, 0.033
+19830822, 0.04, -0.11, 0.69, -0.10, 0.43, 0.033
+19830823, -1.01, 0.29, 0.98, -0.11, 0.33, 0.033
+19830824, -0.91, 0.10, 0.56, -0.26, -0.01, 0.033
+19830825, -0.32, -0.30, 0.27, 0.15, -0.05, 0.033
+19830826, 0.65, -0.61, -0.27, -0.29, 0.15, 0.033
+19830829, -0.05, -0.42, -0.07, 0.00, -0.03, 0.033
+19830830, 0.19, -0.03, -0.02, -0.20, 0.14, 0.033
+19830831, 1.01, -0.45, -0.51, -0.10, -0.07, 0.033
+19830901, -0.01, 0.32, -0.17, -0.01, -0.25, 0.036
+19830902, 0.60, -0.01, -0.55, -0.21, -0.24, 0.036
+19830906, 1.48, -0.49, -0.31, -0.15, 0.09, 0.036
+19830907, 0.05, 0.24, 0.42, 0.04, 0.19, 0.036
+19830908, -0.01, 0.34, -0.05, -0.05, 0.11, 0.036
+19830909, -0.16, 0.41, 0.44, -0.14, 0.41, 0.036
+19830912, -0.85, 0.59, 0.34, -0.16, 0.02, 0.036
+19830913, -0.58, -0.13, 0.45, 0.13, 0.02, 0.036
+19830914, 0.24, -0.22, 0.02, 0.01, 0.14, 0.036
+19830915, -0.45, 0.22, 0.35, -0.02, -0.17, 0.036
+19830916, 0.85, -0.67, -0.41, 0.11, -0.14, 0.036
+19830919, 1.00, -0.06, -0.36, 0.15, -0.25, 0.036
+19830920, 0.72, -0.52, -0.03, 0.01, -0.01, 0.036
+19830921, -0.39, 0.24, 0.18, 0.05, 0.00, 0.036
+19830922, 0.71, -0.50, -0.30, 0.13, 0.21, 0.036
+19830923, -0.15, 0.02, 0.18, 0.08, 0.24, 0.036
+19830926, 0.14, -0.04, -0.19, 0.13, 0.05, 0.036
+19830927, -0.89, 0.08, 0.35, 0.46, -0.09, 0.036
+19830928, -0.27, -0.05, 0.05, 0.20, 0.12, 0.036
+19830929, -0.40, 0.26, 0.41, 0.20, 0.10, 0.036
+19830930, -0.68, 0.20, 0.19, 0.22, 0.02, 0.036
+19831003, -0.29, -0.42, 0.22, 0.13, 0.01, 0.036
+19831004, 0.26, -0.35, -0.17, -0.45, 0.09, 0.036
+19831005, 0.67, -0.56, -0.21, -0.22, -0.02, 0.036
+19831006, 1.26, -0.97, -0.35, -0.01, 0.34, 0.036
+19831007, 0.28, 0.00, -0.60, 0.04, -0.21, 0.036
+19831010, 0.72, -0.66, 0.37, 0.06, 0.56, 0.036
+19831011, -1.16, 0.79, 0.30, 0.25, 0.05, 0.036
+19831012, -0.62, -0.11, 0.83, 0.32, 0.47, 0.036
+19831013, -0.06, -0.38, 0.37, -0.06, 0.26, 0.036
+19831014, 0.01, -0.08, 0.31, -0.35, 0.29, 0.036
+19831017, 0.10, -0.26, 0.33, -0.27, 0.40, 0.036
+19831018, -1.58, 0.25, 1.67, 0.21, 0.75, 0.036
+19831019, -0.83, -0.52, 0.35, -0.09, 0.19, 0.036
+19831020, 0.18, -0.03, 0.04, -0.23, 0.06, 0.036
+19831021, -0.71, 0.27, 0.45, -0.12, 0.09, 0.036
+19831024, -0.15, -0.86, 0.22, 0.06, 0.02, 0.036
+19831025, 0.26, -0.20, -0.10, -0.06, -0.07, 0.036
+19831026, -0.56, 0.29, -0.03, 0.17, -0.33, 0.036
+19831027, -0.33, -0.05, 0.17, 0.04, -0.31, 0.036
+19831028, -0.79, 0.29, 0.37, -0.13, 0.24, 0.036
+19831031, -0.10, -0.44, 0.71, -0.12, 0.20, 0.036
+19831101, -0.03, -0.60, 0.06, 0.39, -0.08, 0.033
+19831102, 0.77, -0.33, -0.33, 0.07, 0.00, 0.033
+19831103, -0.60, 0.68, 0.04, -0.06, -0.09, 0.033
+19831104, -0.58, 0.19, 0.41, -0.11, 0.29, 0.033
+19831107, -0.40, -0.13, 0.31, -0.15, 0.30, 0.033
+19831108, -0.23, -0.14, 0.10, 0.15, 0.06, 0.033
+19831109, 1.06, -0.81, -0.07, -0.14, 0.06, 0.033
+19831110, 0.34, 0.25, -0.53, 0.24, -0.01, 0.033
+19831111, 1.20, -0.10, -0.88, 0.11, -0.39, 0.033
+19831114, 0.38, 0.43, -0.92, 0.04, -0.35, 0.033
+19831115, -0.55, 0.70, -0.09, -0.05, -0.09, 0.033
+19831116, 0.39, -0.15, 0.14, -0.03, -0.19, 0.033
+19831117, 0.06, 0.35, 0.08, -0.25, 0.19, 0.033
+19831118, -0.39, 0.61, -0.28, -0.27, -0.22, 0.033
+19831121, 0.51, -0.18, -0.14, 0.00, 0.01, 0.033
+19831122, 0.39, -0.07, 0.75, -0.23, 0.22, 0.033
+19831123, 0.02, 0.21, 0.52, 0.15, 0.36, 0.033
+19831125, 0.20, 0.08, 0.17, 0.04, 0.07, 0.033
+19831128, -0.36, 0.19, 0.20, 0.17, 0.19, 0.033
+19831129, 0.69, -0.17, -0.19, -0.28, 0.47, 0.033
+19831130, -0.69, 0.78, 0.03, -0.28, -0.18, 0.033
+19831201, 0.03, -0.02, 0.26, 0.08, 0.25, 0.034
+19831202, -0.65, 0.26, 0.42, 0.05, 0.35, 0.034
+19831205, 0.00, -0.31, 0.36, -0.10, 0.55, 0.034
+19831206, -0.21, 0.12, -0.09, -0.02, 0.01, 0.034
+19831207, 0.21, -0.16, -0.14, -0.06, -0.06, 0.034
+19831208, -0.48, 0.04, 0.50, 0.12, 0.09, 0.034
+19831209, 0.00, 0.02, 0.08, 0.20, 0.26, 0.034
+19831212, 0.12, -0.30, 0.06, 0.37, 0.03, 0.034
+19831213, -0.39, 0.17, 0.28, -0.02, 0.10, 0.034
+19831214, -0.97, 0.34, 0.45, 0.22, -0.02, 0.034
+19831215, -0.86, 0.52, 0.20, 0.21, -0.10, 0.034
+19831216, 0.30, -0.36, -0.41, -0.02, -0.05, 0.034
+19831219, -0.05, -0.24, -0.09, -0.06, 0.05, 0.034
+19831220, -0.25, -0.09, 0.10, -0.05, -0.16, 0.034
+19831221, 0.72, -0.56, -0.18, 0.00, 0.02, 0.034
+19831222, -0.19, 0.35, -0.25, 0.36, -0.02, 0.034
+19831223, -0.03, 0.05, -0.08, -0.05, -0.20, 0.034
+19831227, 0.64, -0.68, 0.03, 0.10, 0.20, 0.034
+19831228, 0.21, -0.42, 0.67, 0.44, 0.20, 0.034
+19831229, -0.16, 0.30, -0.21, -0.06, -0.09, 0.034
+19831230, 0.20, 0.48, -0.27, -0.17, -0.18, 0.034
+19840103, -0.47, 0.53, 0.10, -0.02, -0.10, 0.036
+19840104, 1.46, -0.64, -0.06, -0.37, -0.06, 0.036
+19840105, 1.26, -0.15, -0.38, -0.59, 0.04, 0.036
+19840106, 0.42, 0.47, 0.06, -0.44, 0.07, 0.036
+19840109, -0.22, 0.33, 0.47, 0.00, 0.11, 0.036
+19840110, -0.39, 0.47, 0.32, -0.01, 0.27, 0.036
+19840111, -0.11, 0.11, 0.23, -0.11, 0.28, 0.036
+19840112, -0.06, 0.26, 0.52, -0.08, 0.44, 0.036
+19840113, -0.37, 0.22, 0.48, -0.18, 0.01, 0.036
+19840116, -0.02, -0.02, -0.15, 0.48, 0.07, 0.036
+19840117, 0.29, -0.20, -0.01, -0.18, -0.07, 0.036
+19840118, -0.17, 0.26, 0.19, 0.12, 0.05, 0.036
+19840119, -0.34, 0.17, 0.34, -0.02, 0.09, 0.036
+19840120, -0.62, 0.17, 0.49, 0.13, 0.16, 0.036
+19840123, -0.93, -0.23, 1.06, 0.02, 0.23, 0.036
+19840124, 0.33, -0.59, 0.64, 0.18, 0.26, 0.036
+19840125, -0.60, 0.37, 0.66, 0.20, 0.29, 0.036
+19840126, -0.47, 0.02, 0.54, -0.27, 0.13, 0.036
+19840127, -0.23, -0.42, 0.72, 0.13, 0.34, 0.036
+19840130, -0.85, -0.46, 1.18, 0.13, 0.41, 0.036
+19840131, 0.11, -0.70, 0.18, -0.14, -0.02, 0.036
+19840201, -0.49, -0.11, 0.28, 0.25, 0.07, 0.036
+19840202, 0.30, -0.44, -0.17, -0.08, 0.01, 0.036
+19840203, -1.34, 0.69, 0.71, 0.00, 0.29, 0.036
+19840206, -1.67, -0.11, 1.07, 0.15, 0.08, 0.036
+19840207, 0.11, -1.03, -0.15, -0.09, -0.25, 0.036
+19840208, -1.73, 0.71, 0.82, 0.31, 0.01, 0.036
+19840209, -0.51, -0.80, 0.07, 0.07, 0.06, 0.036
+19840210, 0.51, -0.07, -0.69, 0.13, -0.09, 0.036
+19840213, -0.97, -0.23, 0.40, 0.19, -0.15, 0.036
+19840214, 0.94, -0.53, -0.32, -0.30, 0.26, 0.036
+19840215, -0.15, 0.33, 0.01, 0.33, -0.09, 0.036
+19840216, -0.21, -0.11, 0.26, 0.03, 0.30, 0.036
+19840217, -0.28, 0.27, 0.28, 0.40, 0.28, 0.036
+19840221, -0.76, 0.10, 0.31, 0.19, 0.24, 0.036
+19840222, -0.30, 0.09, 0.41, -0.04, 0.26, 0.036
+19840223, -0.23, -0.62, 0.37, -0.05, 0.28, 0.036
+19840224, 1.98, -0.72, -1.21, -0.17, -0.46, 0.036
+19840227, 1.17, -0.21, 0.19, -0.18, 0.39, 0.036
+19840228, -1.39, 0.88, 0.89, 0.00, 0.25, 0.036
+19840229, 0.21, 0.19, 0.03, -0.16, -0.14, 0.036
+19840301, 0.66, -0.26, 0.00, -0.04, -0.24, 0.033
+19840302, 0.67, 0.08, -0.23, -0.10, 0.13, 0.033
+19840305, -0.78, 0.41, 0.41, -0.20, 0.04, 0.033
+19840306, -1.00, 0.78, 0.07, -0.19, 0.03, 0.033
+19840307, -1.10, 0.12, 0.67, -0.14, 0.13, 0.033
+19840308, 0.31, -0.18, 0.17, -0.18, 0.04, 0.033
+19840309, -0.47, 0.23, 0.14, 0.03, -0.05, 0.033
+19840312, 0.99, -1.01, -0.51, -0.22, 0.16, 0.033
+19840313, 0.39, 0.29, -0.75, -0.07, -0.36, 0.033
+19840314, -0.06, 0.01, -0.30, 0.04, 0.07, 0.033
+19840315, 0.42, -0.03, -0.41, 0.12, 0.12, 0.033
+19840316, 1.04, -0.37, -0.16, 0.08, 0.27, 0.033
+19840319, -0.93, 0.20, 0.47, 0.06, 0.15, 0.033
+19840320, 0.53, -0.31, 0.10, 0.00, -0.22, 0.033
+19840321, -0.13, 0.37, 0.11, -0.33, 0.15, 0.033
+19840322, -1.03, 0.63, 0.34, 0.25, 0.21, 0.033
+19840323, -0.10, -0.20, 0.24, -0.17, 0.28, 0.033
+19840326, -0.08, -0.33, 0.51, -0.05, 0.10, 0.033
+19840327, 0.25, -0.43, 0.00, 0.24, 0.03, 0.033
+19840328, 1.37, -0.98, -0.45, -0.28, -0.01, 0.033
+19840329, -0.12, 0.37, 0.03, -0.08, -0.03, 0.033
+19840330, -0.15, 0.30, 0.00, 0.29, 0.06, 0.033
+19840402, -0.68, 0.35, 0.38, 0.15, 0.02, 0.041
+19840403, -0.34, 0.06, 0.44, 0.22, 0.20, 0.041
+19840404, -0.08, -0.16, 0.28, 0.11, 0.30, 0.041
+19840405, -1.53, 0.69, 0.51, 0.54, 0.15, 0.041
+19840406, -0.01, -0.78, 0.31, 0.17, 0.08, 0.041
+19840409, -0.07, -0.34, 0.20, 0.11, 0.31, 0.041
+19840410, 0.19, -0.23, 0.21, -0.13, 0.21, 0.041
+19840411, -0.59, 0.22, 0.55, 0.25, 0.03, 0.041
+19840412, 1.35, -1.20, -0.34, 0.03, 0.04, 0.041
+19840413, -0.07, 0.65, -0.50, 0.35, -0.24, 0.041
+19840416, 0.46, -0.55, -0.13, 0.00, 0.18, 0.041
+19840417, 0.45, 0.08, -0.15, -0.13, -0.13, 0.041
+19840418, -0.58, 0.56, -0.11, 0.14, -0.21, 0.041
+19840419, -0.01, 0.01, -0.05, 0.09, -0.18, 0.041
+19840423, -0.70, 0.26, 0.10, 0.14, 0.23, 0.041
+19840424, 0.53, -0.47, 0.01, 0.16, 0.36, 0.041
+19840425, 0.28, -0.11, -0.42, 0.43, 0.09, 0.041
+19840426, 0.97, -0.38, -0.13, 0.26, 0.00, 0.041
+19840427, -0.10, 0.34, 0.06, 0.18, -0.40, 0.041
+19840430, 0.06, -0.03, 0.03, 0.20, -0.28, 0.041
+19840501, 1.01, -0.44, -0.36, -0.03, -0.36, 0.035
+19840502, 0.37, 0.52, -0.64, -0.01, -0.42, 0.035
+19840503, -0.28, 0.63, -0.13, 0.14, 0.01, 0.035
+19840504, -1.03, 0.57, 0.67, 0.24, 0.25, 0.035
+19840507, 0.13, -0.16, -0.22, 0.04, -0.01, 0.035
+19840508, 0.63, -0.49, -0.02, 0.03, -0.06, 0.035
+19840509, -0.21, 0.02, 0.12, 0.39, -0.29, 0.035
+19840510, -0.11, 0.21, -0.06, -0.08, 0.04, 0.035
+19840511, -0.87, 0.15, 0.27, -0.01, 0.14, 0.035
+19840514, -0.64, 0.10, -0.07, 0.40, 0.04, 0.035
+19840515, 0.23, -0.43, 0.06, 0.27, -0.10, 0.035
+19840516, -0.08, 0.05, -0.06, 0.20, 0.05, 0.035
+19840517, -1.00, 0.22, 0.39, 0.26, -0.12, 0.035
+19840518, -0.62, 0.06, 0.45, 0.18, 0.29, 0.035
+19840521, -0.62, -0.03, 0.26, -0.01, -0.07, 0.035
+19840522, -0.71, -0.19, 0.03, 0.22, -0.04, 0.035
+19840523, -0.45, -0.04, 0.11, -0.09, 0.14, 0.035
+19840524, -1.38, -0.20, -0.02, 0.00, -0.14, 0.035
+19840525, 0.20, -0.43, 0.24, -0.02, 0.46, 0.035
+19840529, -0.86, 0.11, 0.44, 0.24, 0.21, 0.035
+19840530, -0.05, -0.30, -0.48, -0.10, -0.20, 0.035
+19840531, 0.27, 0.13, -0.79, 0.23, -0.39, 0.035
+19840601, 1.65, -0.62, -0.56, -0.22, 0.05, 0.036
+19840604, 0.84, 0.14, -0.79, 0.05, -0.45, 0.036
+19840605, -0.37, 0.34, -0.28, 0.17, -0.15, 0.036
+19840606, 0.65, -0.34, -0.16, 0.30, -0.24, 0.036
+19840607, 0.00, 0.35, -0.02, 0.26, -0.19, 0.036
+19840608, 0.13, 0.05, 0.01, 0.13, 0.08, 0.036
+19840611, -1.18, 0.61, 0.58, 0.53, 0.13, 0.036
+19840612, -0.47, 0.07, 0.21, 0.24, 0.07, 0.036
+19840613, -0.06, 0.12, -0.38, 0.13, -0.25, 0.036
+19840614, -1.02, 0.56, 0.11, -0.01, 0.03, 0.036
+19840615, -0.60, 0.30, -0.13, 0.17, -0.47, 0.036
+19840618, 1.38, -1.31, -0.23, -0.04, 0.04, 0.036
+19840619, 0.53, -0.13, -0.43, 0.27, -0.06, 0.036
+19840620, 1.07, -1.33, -0.24, 0.19, -0.14, 0.036
+19840621, -0.05, 0.38, -0.63, 0.06, -0.37, 0.036
+19840622, 0.06, 0.31, -0.36, 0.00, -0.11, 0.036
+19840625, -0.17, 0.23, -0.07, 0.30, -0.17, 0.036
+19840626, -0.77, 0.32, 0.16, 0.15, 0.45, 0.036
+19840627, -0.69, 0.16, 0.61, 0.11, 0.35, 0.036
+19840628, 0.64, -0.41, -0.17, 0.06, -0.03, 0.036
+19840629, 0.26, 0.19, 0.22, 0.15, -0.03, 0.036
+19840702, -0.16, -0.23, 0.36, 0.25, 0.00, 0.039
+19840703, 0.32, -0.07, -0.13, 0.17, -0.19, 0.039
+19840705, -0.52, 0.32, 0.23, 0.38, 0.19, 0.039
+19840706, -0.37, -0.02, 0.35, 0.18, 0.20, 0.039
+19840709, 0.53, -0.89, -0.04, 0.11, -0.09, 0.039
+19840710, -0.29, 0.41, -0.09, 0.30, -0.14, 0.039
+19840711, -1.34, 0.89, 0.30, 0.49, -0.35, 0.039
+19840712, -0.41, -0.13, 0.44, 0.19, 0.30, 0.039
+19840713, 0.42, -0.16, 0.37, 0.11, 0.11, 0.039
+19840716, 0.19, -0.65, 0.34, 0.46, 0.01, 0.039
+19840717, 0.37, -0.21, 0.15, 0.28, 0.31, 0.039
+19840718, -0.58, 0.11, 0.53, 0.03, 0.15, 0.039
+19840719, -0.70, 0.22, 0.26, 0.43, 0.33, 0.039
+19840720, -0.60, -0.08, 0.53, 0.12, 0.26, 0.039
+19840723, -0.65, -0.58, 0.41, 0.13, 0.09, 0.039
+19840724, -0.70, -0.05, 0.31, 0.11, -0.01, 0.039
+19840725, 0.44, -0.78, -0.47, 0.22, -0.49, 0.039
+19840726, 0.76, -0.47, -0.99, -0.06, -0.77, 0.039
+19840727, 0.79, -0.11, -1.26, -0.33, -1.07, 0.039
+19840730, -0.46, 0.25, -0.06, -0.05, -0.26, 0.039
+19840731, 0.25, -0.08, -0.99, 0.26, -0.85, 0.039
+19840801, 2.02, -0.77, -0.76, -0.19, -0.59, 0.036
+19840802, 2.43, -0.38, -1.57, -0.69, -0.89, 0.036
+19840803, 2.81, -0.15, -1.98, -0.31, -1.35, 0.036
+19840806, 0.38, 0.73, -0.69, 0.94, -0.76, 0.036
+19840807, 0.04, -0.11, -0.06, 0.49, 0.19, 0.036
+19840808, -0.53, 0.24, 1.12, 0.18, 0.67, 0.036
+19840809, 1.99, -1.10, -0.21, -0.18, -0.06, 0.036
+19840810, 0.21, 0.44, 0.17, -0.27, 0.11, 0.036
+19840813, -0.13, -0.20, 0.16, -0.02, 0.09, 0.036
+19840814, -0.52, 0.50, 0.46, 0.01, 0.28, 0.036
+19840815, -0.81, 0.48, 0.23, -0.13, 0.21, 0.036
+19840816, 0.52, -0.27, -0.01, -0.06, 0.10, 0.036
+19840817, 0.08, -0.04, 0.10, -0.30, 0.07, 0.036
+19840820, 0.29, -0.57, 0.32, -0.03, 0.43, 0.036
+19840821, 1.52, -0.61, -0.25, -0.10, -0.13, 0.036
+19840822, -0.32, 0.47, 0.58, -0.12, 0.09, 0.036
+19840823, 0.06, 0.09, -0.12, 0.12, -0.12, 0.036
+19840824, 0.17, 0.20, 0.03, -0.04, 0.06, 0.036
+19840827, -0.56, 0.17, 0.62, 0.21, 0.36, 0.036
+19840828, 0.48, -0.26, -0.10, -0.19, -0.05, 0.036
+19840829, -0.09, 0.29, 0.12, -0.18, 0.24, 0.036
+19840830, -0.29, 0.38, 0.04, 0.07, 0.13, 0.036
+19840831, 0.08, 0.14, 0.04, -0.01, 0.07, 0.036
+19840904, -0.90, 0.34, 0.43, 0.14, 0.31, 0.045
+19840905, -0.38, 0.10, 0.25, 0.17, 0.26, 0.045
+19840906, 0.69, -0.37, -0.04, 0.22, -0.01, 0.045
+19840907, -0.62, 0.51, 0.30, 0.00, 0.17, 0.045
+19840910, -0.12, -0.31, 0.16, 0.25, 0.06, 0.045
+19840911, 0.19, 0.18, -0.04, 0.13, -0.10, 0.045
+19840912, -0.03, -0.07, 0.53, 0.04, 0.33, 0.045
+19840913, 1.56, -1.10, -0.44, 0.25, -0.24, 0.045
+19840914, 0.60, 0.15, -0.15, 0.09, -0.36, 0.045
+19840917, 0.03, -0.17, 0.14, 0.03, 0.01, 0.045
+19840918, -0.60, 0.44, 0.66, -0.08, 0.29, 0.045
+19840919, -0.42, 0.27, 0.91, 0.13, 0.46, 0.045
+19840920, 0.25, -0.27, 0.40, -0.05, 0.10, 0.045
+19840921, -0.82, 0.95, 0.18, -0.37, 0.16, 0.045
+19840924, -0.34, -0.17, 0.47, 0.06, 0.37, 0.045
+19840925, 0.05, -0.51, 0.45, 0.35, 0.14, 0.045
+19840926, 0.26, -0.27, 0.36, 0.22, 0.14, 0.045
+19840927, 0.28, -0.19, 0.42, 0.02, 0.13, 0.045
+19840928, -0.45, 0.42, 0.33, -0.16, 0.29, 0.045
+19841001, -0.84, 0.09, 0.73, 0.15, 0.50, 0.043
+19841002, -0.70, 0.22, 0.52, 0.14, 0.30, 0.043
+19841003, -0.67, 0.16, 0.14, -0.07, -0.24, 0.043
+19841004, 0.16, -0.13, -0.05, -0.03, -0.01, 0.043
+19841005, -0.11, 0.32, 0.09, -0.18, 0.06, 0.043
+19841008, -0.40, 0.06, 0.25, -0.04, 0.13, 0.043
+19841009, -0.23, -0.05, 0.22, -0.02, 0.13, 0.043
+19841010, 0.14, -0.47, -0.13, 0.05, -0.24, 0.043
+19841011, 0.41, -0.03, 0.09, -0.14, 0.04, 0.043
+19841012, 0.79, -0.34, -0.15, 0.07, -0.21, 0.043
+19841015, 0.78, -0.53, -0.30, 0.09, -0.37, 0.043
+19841016, -0.42, 0.46, -0.14, 0.02, -0.21, 0.043
+19841017, -0.30, 0.33, -0.57, -0.11, -0.61, 0.043
+19841018, 1.93, -1.37, -0.98, 0.08, -1.07, 0.043
+19841019, 0.10, 0.45, -0.41, 0.07, -0.16, 0.043
+19841022, -0.37, 0.19, -0.17, -0.03, -0.34, 0.043
+19841023, -0.16, 0.05, 0.04, 0.37, 0.00, 0.043
+19841024, -0.01, -0.22, 0.12, 0.02, 0.14, 0.043
+19841025, -0.57, 0.13, 0.75, 0.35, 0.70, 0.043
+19841026, -0.66, 0.07, 0.56, 0.35, 0.55, 0.043
+19841029, -0.34, -0.11, -0.06, 0.02, -0.05, 0.043
+19841030, 1.01, -0.87, -0.09, -0.04, -0.15, 0.043
+19841031, -0.34, 0.17, 0.15, 0.06, -0.06, 0.043
+19841101, 0.68, -0.47, 0.25, 0.08, 0.18, 0.035
+19841102, 0.09, 0.11, 0.26, -0.12, 0.07, 0.035
+19841105, 0.63, -0.40, 0.32, -0.02, 0.33, 0.035
+19841106, 0.94, -0.45, -0.10, -0.18, -0.05, 0.035
+19841107, -0.67, 0.27, 0.42, -0.12, 0.26, 0.035
+19841108, -0.21, 0.10, -0.01, -0.14, 0.27, 0.035
+19841109, -0.45, 0.66, 0.26, -0.14, 0.23, 0.035
+19841112, -0.21, -0.08, -0.04, 0.10, 0.01, 0.035
+19841113, -0.76, 0.37, 0.25, 0.32, 0.14, 0.035
+19841114, -0.10, -0.18, 0.07, 0.43, 0.12, 0.035
+19841115, -0.13, -0.25, 0.36, 0.41, 0.00, 0.035
+19841116, -0.89, 0.41, 0.22, 0.14, 0.02, 0.035
+19841119, -0.73, -0.19, 0.29, 0.11, 0.24, 0.035
+19841120, 0.43, -0.64, 0.16, 0.00, -0.03, 0.035
+19841121, 0.20, -0.24, 0.29, -0.24, 0.17, 0.035
+19841123, 1.27, -0.55, -0.51, -0.04, -0.40, 0.035
+19841126, -0.62, 0.44, -0.01, 0.05, -0.41, 0.035
+19841127, 0.45, -0.52, 0.08, 0.06, -0.04, 0.035
+19841128, -0.70, 0.42, 0.45, -0.01, 0.15, 0.035
+19841129, -0.67, 0.22, 0.62, 0.15, 0.45, 0.035
+19841130, -0.27, -0.13, 0.35, 0.03, 0.33, 0.035
+19841203, -0.48, -0.03, 0.35, 0.33, 0.22, 0.032
+19841204, 0.18, -0.25, 0.09, 0.31, -0.08, 0.032
+19841205, -0.72, -0.12, 0.79, 0.10, 0.43, 0.032
+19841206, 0.25, -0.36, -0.23, 0.17, -0.30, 0.032
+19841207, -0.21, 0.16, 0.20, 0.03, 0.19, 0.032
+19841210, 0.24, -0.30, 0.01, 0.21, -0.24, 0.032
+19841211, 0.17, -0.11, -0.24, 0.02, -0.27, 0.032
+19841212, -0.22, 0.26, -0.13, 0.17, -0.22, 0.032
+19841213, -0.41, 0.33, 0.00, 0.09, 0.07, 0.032
+19841214, 0.47, -0.26, -0.27, 0.14, -0.25, 0.032
+19841217, 0.46, -0.63, 0.21, 0.41, 0.02, 0.032
+19841218, 2.40, -1.08, -1.16, -0.08, -0.82, 0.032
+19841219, -0.26, 0.86, -0.58, -0.17, -0.62, 0.032
+19841220, -0.43, 0.33, 0.57, 0.18, 0.22, 0.032
+19841221, -0.37, 0.17, 0.20, 0.15, 0.13, 0.032
+19841224, 0.67, -0.06, -0.07, -0.48, -0.14, 0.032
+19841226, -0.14, 0.11, 0.03, 0.01, -0.12, 0.032
+19841227, -0.44, 0.24, 0.30, -0.13, 0.20, 0.032
+19841228, 0.23, -0.09, -0.03, -0.09, -0.01, 0.032
+19841231, 0.46, 0.21, -0.03, -0.35, 0.23, 0.032
+19850102, -0.93, 0.76, 0.25, -0.09, 0.23, 0.029
+19850103, -0.33, 0.39, -0.03, -0.27, 0.09, 0.029
+19850104, -0.42, 0.36, -0.17, -0.14, -0.23, 0.029
+19850107, 0.25, -0.14, 0.14, 0.04, 0.39, 0.029
+19850108, -0.05, 0.21, 0.15, 0.19, 0.36, 0.029
+19850109, 0.63, -0.09, -0.17, 0.03, -0.30, 0.029
+19850110, 1.68, -0.69, -0.70, -0.03, -0.60, 0.029
+19850111, -0.05, 0.43, -0.31, -0.03, -0.35, 0.029
+19850114, 1.41, -0.23, -0.90, 0.08, -0.44, 0.029
+19850115, 0.27, 0.50, -0.19, -0.11, -0.06, 0.029
+19850116, 0.40, 0.39, -0.07, -0.19, 0.23, 0.029
+19850117, -0.12, 0.65, -0.18, -0.06, -0.10, 0.029
+19850118, 0.31, 0.25, 0.02, -0.04, -0.17, 0.029
+19850121, 1.96, -0.86, -0.92, 0.14, -0.23, 0.029
+19850122, 0.18, 0.21, -0.14, 0.27, -0.43, 0.029
+19850123, 0.99, -0.22, -0.71, -0.05, -0.33, 0.029
+19850124, -0.15, 0.53, -0.34, 0.12, -0.53, 0.029
+19850125, 0.40, 0.09, -0.33, -0.35, -0.52, 0.029
+19850128, 0.17, 0.43, -0.58, 0.05, -0.22, 0.029
+19850129, 0.82, -0.39, -0.26, 0.00, -0.22, 0.029
+19850130, 0.24, 0.41, -0.06, 0.03, -0.24, 0.029
+19850131, 0.04, 0.10, 0.48, -0.35, 0.40, 0.029
+19850201, -0.45, 0.28, 0.37, -0.06, 0.42, 0.030
+19850204, 0.97, -0.41, -0.47, 0.01, -0.21, 0.030
+19850205, 0.30, 0.41, -0.08, -0.26, -0.11, 0.030
+19850206, 0.08, 0.58, -0.22, -0.02, -0.17, 0.030
+19850207, 0.79, 0.04, -0.40, 0.08, -0.25, 0.030
+19850208, 0.24, 0.22, 0.16, 0.13, 0.35, 0.030
+19850211, -0.78, 0.57, 0.34, -0.12, 0.25, 0.030
+19850212, -0.05, 0.09, 0.41, 0.05, 0.39, 0.030
+19850213, 1.35, -0.68, -0.18, 0.14, 0.23, 0.030
+19850214, -0.31, 0.46, 0.06, 0.33, 0.06, 0.030
+19850215, -0.43, 0.25, 0.09, 0.04, -0.15, 0.030
+19850219, -0.14, -0.11, 0.10, 0.12, -0.03, 0.030
+19850220, 0.02, 0.20, -0.29, -0.25, -0.44, 0.030
+19850221, -0.55, 0.19, 0.21, 0.14, -0.06, 0.030
+19850222, -0.39, 0.00, 0.28, 0.10, 0.34, 0.030
+19850225, -0.25, -0.76, -0.12, 0.66, 0.46, 0.030
+19850226, 0.83, -0.59, -0.50, 0.10, -0.15, 0.030
+19850227, -0.19, 0.15, 0.12, 0.08, 0.32, 0.030
+19850228, 0.19, -0.06, -0.30, 0.19, -0.10, 0.030
+19850301, 1.04, -0.24, -0.34, 0.23, 0.14, 0.029
+19850304, -0.53, 0.45, 0.17, 0.33, 0.00, 0.029
+19850305, 0.05, -0.08, 0.28, 0.31, 0.36, 0.029
+19850306, -0.78, 0.49, 0.59, 0.23, 0.08, 0.029
+19850307, -0.58, 0.23, 0.68, -0.05, 0.57, 0.029
+19850308, -0.27, 0.06, 0.23, -0.05, 0.13, 0.029
+19850311, -0.22, -0.25, 0.15, 0.27, 0.07, 0.029
+19850312, 0.31, -0.52, 0.35, 0.21, 0.21, 0.029
+19850313, -0.86, 0.07, 0.82, 0.18, 0.40, 0.029
+19850314, -0.15, 0.07, 0.10, 0.14, 0.04, 0.029
+19850315, -0.45, 0.54, -0.07, -0.13, -0.29, 0.029
+19850318, -0.12, -0.48, 0.19, 0.13, 0.29, 0.029
+19850319, 1.21, -0.99, -0.75, -0.18, -0.19, 0.029
+19850320, -0.21, 0.00, 0.24, -0.08, 0.16, 0.029
+19850321, 0.14, -0.10, 0.11, -0.06, 0.18, 0.029
+19850322, -0.20, -0.06, 0.23, -0.10, 0.12, 0.029
+19850325, -0.57, -0.16, 0.82, 0.33, 0.66, 0.029
+19850326, 0.16, -0.28, 0.14, 0.09, -0.01, 0.029
+19850327, 0.57, -0.19, -0.17, -0.30, -0.16, 0.029
+19850328, 0.10, 0.12, 0.11, 0.01, 0.00, 0.029
+19850329, 0.56, -0.21, 0.20, -0.31, 0.16, 0.029
+19850401, 0.28, -0.20, 0.01, 0.08, -0.32, 0.034
+19850402, -0.36, 0.28, 0.25, 0.14, -0.04, 0.034
+19850403, -0.74, 0.25, 0.56, 0.18, 0.45, 0.034
+19850404, -0.09, -0.09, 0.12, 0.06, 0.24, 0.034
+19850408, -0.44, 0.31, 0.60, 0.21, 0.33, 0.034
+19850409, 0.04, -0.16, 0.18, 0.14, 0.08, 0.034
+19850410, 0.59, -0.14, -0.25, -0.03, -0.37, 0.034
+19850411, 0.42, -0.11, -0.07, 0.01, -0.08, 0.034
+19850412, 0.15, -0.10, 0.00, -0.08, -0.19, 0.034
+19850415, 0.20, -0.11, 0.12, 0.11, 0.02, 0.034
+19850416, 0.15, -0.06, -0.11, 0.30, -0.20, 0.034
+19850417, 0.21, 0.05, -0.01, 0.16, 0.11, 0.034
+19850418, -0.46, 0.38, 0.37, 0.23, 0.07, 0.034
+19850419, 0.09, -0.18, 0.16, 0.13, 0.36, 0.034
+19850422, -0.28, 0.02, 0.28, 0.16, 0.03, 0.034
+19850423, 0.54, -0.49, -0.06, -0.14, -0.23, 0.034
+19850424, 0.14, -0.17, 0.13, -0.14, -0.12, 0.034
+19850425, 0.49, -0.38, 0.23, -0.11, 0.15, 0.034
+19850426, -0.53, 0.49, 0.01, 0.05, -0.06, 0.034
+19850429, -0.82, 0.26, 0.80, 0.12, 0.54, 0.034
+19850430, -0.52, 0.03, 0.43, 0.01, -0.06, 0.034
+19850501, -0.67, 0.44, 0.55, 0.05, -0.01, 0.030
+19850502, 0.14, -0.50, 0.30, -0.37, 0.07, 0.030
+19850503, 0.58, -0.39, -0.21, -0.12, -0.33, 0.030
+19850506, 0.04, -0.04, 0.15, 0.17, 0.14, 0.030
+19850507, 0.40, -0.23, -0.20, 0.12, -0.19, 0.030
+19850508, -0.01, 0.11, -0.20, -0.07, -0.26, 0.030
+19850509, 0.74, -0.10, -0.33, -0.15, -0.24, 0.030
+19850510, 1.30, -0.24, -0.78, -0.12, -0.84, 0.030
+19850513, 0.14, -0.05, -0.23, 0.05, 0.03, 0.030
+19850514, -0.30, 0.20, 0.47, 0.01, 0.24, 0.030
+19850515, 0.29, -0.15, 0.02, 0.25, 0.19, 0.030
+19850516, 0.54, -0.25, 0.09, 0.09, -0.21, 0.030
+19850517, 0.91, -0.26, -0.36, 0.07, -0.42, 0.030
+19850520, 1.16, -0.47, -0.47, 0.24, -0.49, 0.030
+19850521, -0.06, -0.06, -0.07, 0.33, 0.18, 0.030
+19850522, -0.56, 0.18, -0.04, 0.04, 0.23, 0.030
+19850523, -0.47, 0.23, 0.21, 0.24, 0.18, 0.030
+19850524, 0.31, -0.16, -0.09, 0.09, 0.25, 0.030
+19850528, -0.16, -0.04, 0.29, -0.10, 0.08, 0.030
+19850529, -0.08, 0.11, -0.20, 0.12, -0.30, 0.030
+19850530, -0.02, -0.03, 0.21, 0.31, 0.28, 0.030
+19850531, 0.75, -0.55, 0.02, 0.00, 0.06, 0.030
+19850603, 0.05, 0.06, -0.17, 0.19, -0.29, 0.028
+19850604, 0.37, -0.24, -0.28, 0.34, -0.14, 0.028
+19850605, 0.13, 0.21, 0.01, 0.12, -0.03, 0.028
+19850606, 0.36, -0.38, -0.27, 0.33, -0.14, 0.028
+19850607, -0.61, 0.45, 0.22, -0.08, 0.19, 0.028
+19850610, -0.13, -0.28, 0.36, 0.22, 0.10, 0.028
+19850611, -0.22, 0.22, 0.39, 0.26, 0.11, 0.028
+19850612, -0.61, 0.42, 0.75, -0.11, 0.66, 0.028
+19850613, -1.11, 0.45, 0.67, 0.00, 0.32, 0.028
+19850614, 0.74, -0.57, 0.03, 0.12, -0.15, 0.028
+19850617, -0.26, 0.14, 0.13, 0.14, -0.12, 0.028
+19850618, 0.37, -0.25, 0.29, 0.05, 0.17, 0.028
+19850619, -0.21, 0.31, -0.04, -0.14, -0.27, 0.028
+19850620, -0.07, -0.09, 0.17, -0.13, 0.05, 0.028
+19850621, 1.06, -0.81, -0.04, 0.05, 0.00, 0.028
+19850624, 0.04, 0.18, -0.60, 0.09, -0.55, 0.028
+19850625, 0.35, 0.21, -0.58, -0.11, -0.51, 0.028
+19850626, 0.16, -0.02, -0.38, 0.09, -0.34, 0.028
+19850627, 0.59, -0.09, -0.30, 0.04, -0.15, 0.028
+19850628, 0.29, 0.22, 0.02, 0.19, 0.18, 0.028
+19850701, 0.27, -0.04, -0.13, 0.20, -0.20, 0.028
+19850702, -0.11, 0.32, 0.15, 0.18, 0.02, 0.028
+19850703, -0.20, 0.30, 0.15, 0.05, 0.10, 0.028
+19850705, 0.53, 0.14, 0.08, 0.04, 0.41, 0.028
+19850708, -0.33, 0.01, 0.28, -0.04, 0.13, 0.028
+19850709, -0.37, 0.21, 0.57, 0.06, 0.35, 0.028
+19850710, 0.59, -0.10, -0.14, -0.08, -0.22, 0.028
+19850711, 0.34, 0.27, -0.29, -0.01, -0.09, 0.028
+19850712, 0.21, 0.15, 0.02, -0.24, -0.08, 0.028
+19850715, -0.15, 0.35, 0.06, 0.00, -0.29, 0.028
+19850716, 0.98, -0.15, -0.55, -0.01, -0.49, 0.028
+19850717, 0.37, 0.17, -0.53, -0.03, -0.63, 0.028
+19850718, -0.57, 0.40, 0.00, -0.05, 0.08, 0.028
+19850719, 0.30, 0.33, 0.04, -0.15, 0.47, 0.028
+19850722, -0.45, 0.12, -0.54, 0.14, -0.15, 0.028
+19850723, -0.84, 0.68, -1.17, 0.22, -0.37, 0.028
+19850724, -0.62, 0.22, 0.29, 0.08, 0.56, 0.028
+19850725, 0.08, -0.04, 0.07, -0.26, -0.06, 0.028
+19850726, 0.11, -0.10, -0.05, -0.11, -0.01, 0.028
+19850729, -1.39, 0.38, 0.22, -0.13, 0.27, 0.028
+19850730, 0.05, -0.32, 0.29, 0.07, 0.14, 0.028
+19850731, 0.49, -0.28, -0.44, -0.18, 0.08, 0.028
+19850801, 0.69, -0.06, -0.42, -0.07, -0.18, 0.025
+19850802, -0.23, 0.43, 0.06, -0.16, -0.12, 0.025
+19850805, -0.53, -0.28, 0.02, 0.26, 0.17, 0.025
+19850806, -1.20, 0.27, 0.10, 0.06, 0.20, 0.025
+19850807, -0.29, -0.30, 0.45, 0.00, 0.50, 0.025
+19850808, 0.70, -0.41, 0.39, -0.26, 0.12, 0.025
+19850809, -0.23, 0.19, -0.12, -0.02, -0.23, 0.025
+19850812, -0.34, -0.13, 0.08, 0.03, 0.22, 0.025
+19850813, -0.19, -0.03, 0.37, 0.04, 0.27, 0.025
+19850814, 0.09, 0.05, 0.19, 0.04, 0.15, 0.025
+19850815, -0.06, 0.21, 0.37, -0.04, 0.20, 0.025
+19850816, -0.56, 0.02, -0.06, 0.03, -0.10, 0.025
+19850819, 0.11, -0.26, 0.32, 0.15, 0.16, 0.025
+19850820, 0.67, -0.50, -0.05, -0.03, 0.02, 0.025
+19850821, 0.48, -0.09, -0.09, -0.09, -0.04, 0.025
+19850822, -0.76, 0.47, 0.32, 0.08, -0.02, 0.025
+19850823, -0.12, 0.18, 0.15, 0.01, 0.20, 0.025
+19850826, 0.12, -0.23, -0.03, 0.06, -0.08, 0.025
+19850827, 0.33, -0.17, -0.22, -0.03, 0.07, 0.025
+19850828, 0.31, -0.17, 0.00, -0.17, -0.10, 0.025
+19850829, 0.07, 0.06, 0.16, 0.07, 0.08, 0.025
+19850830, -0.05, 0.37, 0.32, -0.05, 0.43, 0.025
+19850903, -0.43, -0.15, 0.08, 0.35, -0.17, 0.032
+19850904, -0.33, 0.00, 0.25, 0.12, 0.11, 0.032
+19850905, -0.04, -0.06, 0.05, 0.09, -0.04, 0.032
+19850906, 0.41, -0.16, -0.49, 0.05, -0.28, 0.032
+19850909, 0.07, -0.17, -0.15, 0.16, -0.02, 0.032
+19850910, -0.75, 0.10, 0.12, 0.15, 0.17, 0.032
+19850911, -1.03, 0.08, 0.27, 0.01, 0.29, 0.032
+19850912, -0.79, 0.05, -0.25, 0.11, 0.02, 0.032
+19850913, -0.60, -0.44, 0.18, 0.01, 0.15, 0.032
+19850916, -0.14, -0.35, 0.04, 0.05, -0.05, 0.032
+19850917, -0.93, -0.34, 0.59, -0.05, 0.36, 0.032
+19850918, 0.07, -0.27, 0.05, 0.13, -0.35, 0.032
+19850919, 0.91, 0.00, -0.26, -0.13, -0.15, 0.032
+19850920, -0.46, 0.69, -0.01, -0.20, -0.20, 0.032
+19850923, 0.91, -0.58, -0.35, 0.05, 0.11, 0.032
+19850924, -0.76, 0.36, 0.27, 0.11, 0.19, 0.032
+19850925, -1.01, 0.43, 0.42, 0.08, 0.40, 0.032
+19850926, 0.07, -0.72, 0.40, 0.13, 0.59, 0.032
+19850930, 0.26, -0.34, 0.16, 0.13, 0.36, 0.032
+19851001, 1.36, -0.88, 0.02, 0.32, -0.02, 0.028
+19851002, -0.39, 0.28, 0.69, -0.06, 0.59, 0.028
+19851003, 0.11, -0.14, 0.38, -0.10, 0.04, 0.028
+19851004, -0.53, 0.38, 0.46, -0.04, 0.25, 0.028
+19851007, -0.68, 0.13, 0.20, 0.19, 0.08, 0.028
+19851008, -0.13, -0.31, 0.40, 0.09, 0.39, 0.028
+19851009, 0.34, -0.08, -0.02, -0.03, 0.01, 0.028
+19851010, 0.24, 0.04, -0.16, -0.02, -0.19, 0.028
+19851011, 0.78, -0.17, -0.59, -0.08, -0.38, 0.028
+19851014, 1.01, -0.51, -0.61, -0.06, -0.61, 0.028
+19851015, -0.12, 0.25, -0.11, 0.17, -0.12, 0.028
+19851016, 0.84, -0.46, -0.34, 0.12, 0.06, 0.028
+19851017, 0.04, 0.35, -0.29, 0.00, -0.45, 0.028
+19851018, -0.23, 0.29, 0.02, -0.07, -0.08, 0.028
+19851021, -0.09, -0.23, 0.24, 0.40, 0.01, 0.028
+19851022, 0.51, -0.33, -0.25, -0.14, -0.33, 0.028
+19851023, 0.46, -0.20, 0.08, -0.19, -0.22, 0.028
+19851024, -0.20, 0.39, 0.08, -0.10, -0.13, 0.028
+19851025, -0.51, 0.24, 0.37, -0.10, 0.19, 0.028
+19851028, 0.07, -0.36, 0.33, 0.19, -0.07, 0.028
+19851029, 0.71, -0.26, -0.20, 0.14, -0.18, 0.028
+19851030, 0.42, -0.16, 0.01, -0.04, -0.18, 0.028
+19851031, -0.06, 0.16, 0.13, 0.18, 0.27, 0.028
+19851101, 0.73, -0.30, -0.21, 0.05, 0.05, 0.030
+19851104, -0.04, 0.08, 0.01, -0.07, -0.20, 0.030
+19851105, 0.58, -0.31, -0.39, -0.18, -0.27, 0.030
+19851106, 0.29, 0.08, -0.28, 0.01, -0.38, 0.030
+19851107, 0.02, 0.17, 0.02, -0.06, -0.05, 0.030
+19851108, 0.68, 0.11, 0.01, -0.24, 0.11, 0.030
+19851111, 1.52, -0.94, -0.27, 0.27, -0.22, 0.030
+19851112, 0.50, 0.25, -0.05, 0.18, -0.23, 0.030
+19851113, -0.46, 0.21, -0.12, 0.22, -0.17, 0.030
+19851114, 0.84, -0.36, 0.08, -0.11, 0.08, 0.030
+19851115, -0.32, 0.63, -0.12, -0.06, -0.32, 0.030
+19851118, 0.19, -0.38, -0.51, 0.19, -0.43, 0.030
+19851119, 0.05, 0.53, -0.02, 0.17, 0.08, 0.030
+19851120, 0.10, -0.21, -0.09, 0.03, 0.12, 0.030
+19851121, 1.08, -0.30, -0.13, 0.02, -0.31, 0.030
+19851122, 0.16, 0.41, 0.04, -0.21, -0.12, 0.030
+19851125, -0.55, 0.14, 0.12, 0.14, -0.05, 0.030
+19851126, 0.13, -0.06, -0.15, -0.03, 0.22, 0.030
+19851127, 0.81, -0.24, -0.64, -0.07, -0.21, 0.030
+19851129, -0.02, 0.43, -0.06, 0.00, 0.04, 0.030
+19851202, -0.75, 0.60, -0.01, -0.05, -0.06, 0.031
+19851203, 0.20, 0.03, -0.01, -0.03, 0.02, 0.031
+19851204, 1.49, -0.40, -0.58, 0.03, -0.12, 0.031
+19851205, -0.05, 0.38, -0.29, 0.01, -0.42, 0.031
+19851206, -0.52, -0.09, 0.09, -0.03, -0.14, 0.031
+19851209, 0.57, -0.52, -0.51, 0.25, -0.45, 0.031
+19851210, 0.10, -0.12, -0.47, 0.24, -1.03, 0.031
+19851211, 0.88, -0.48, -0.22, 0.17, -0.54, 0.031
+19851212, 0.23, 0.20, -0.16, 0.43, -0.02, 0.031
+19851213, 1.38, -0.45, -0.27, -0.03, 0.37, 0.031
+19851216, 0.77, -0.66, -0.14, 0.45, 0.25, 0.031
+19851217, -0.61, -0.01, 0.88, 0.05, 0.17, 0.031
+19851218, -0.44, 0.06, 0.46, 0.04, -0.03, 0.031
+19851219, 0.02, 0.07, -0.03, -0.12, 0.25, 0.031
+19851220, 0.38, 0.33, -0.07, 0.05, 0.21, 0.031
+19851223, -1.02, 0.64, -0.28, 0.14, 0.02, 0.031
+19851224, -0.56, 0.26, 0.19, -0.13, 0.03, 0.031
+19851226, 0.19, 0.04, 0.00, -0.17, 0.01, 0.031
+19851227, 0.87, -0.26, -0.10, -0.22, -0.26, 0.031
+19851230, 0.39, -0.27, -0.22, 0.22, -0.08, 0.031
+19851231, 0.31, 0.20, 0.29, -0.33, 0.12, 0.031
+19860102, -0.63, 0.87, 0.38, -0.41, 0.33, 0.025
+19860103, 0.56, -0.08, 0.21, -0.13, 0.27, 0.025
+19860106, -0.04, 0.04, 0.09, -0.22, -0.01, 0.025
+19860107, 1.38, -0.48, 0.05, -0.28, -0.01, 0.025
+19860108, -2.16, 1.44, 0.30, -0.09, 0.15, 0.025
+19860109, -1.17, -0.80, -0.14, 0.03, -0.19, 0.025
+19860110, -0.02, 0.20, 0.26, -0.30, 0.04, 0.025
+19860113, 0.28, -0.08, 0.28, -0.16, 0.22, 0.025
+19860114, 0.01, 0.41, -0.01, -0.06, 0.10, 0.025
+19860115, 0.79, -0.09, -0.21, -0.41, -0.54, 0.025
+19860116, 0.46, -0.02, -0.37, -0.12, -0.62, 0.025
+19860117, -0.17, 0.49, 0.19, -0.29, -0.14, 0.025
+19860120, -0.39, 0.18, 0.09, 0.06, 0.21, 0.025
+19860121, -0.67, 0.33, -0.17, -0.14, -0.45, 0.025
+19860122, -0.93, 0.45, 0.21, -0.15, 0.11, 0.025
+19860123, 0.24, -0.29, -0.23, 0.33, -0.25, 0.025
+19860124, 0.95, -0.24, -0.11, -0.12, -0.20, 0.025
+19860127, 0.45, -0.39, -0.15, -0.13, -0.46, 0.025
+19860128, 0.98, -0.57, 0.08, -0.06, -0.48, 0.025
+19860129, 0.24, -0.66, -0.29, 0.13, -0.39, 0.025
+19860130, -0.34, 0.64, 0.10, 0.33, 0.28, 0.025
+19860131, 0.92, -0.41, 0.01, 0.21, -0.05, 0.025
+19860203, 0.93, -0.55, -0.62, 0.42, -0.28, 0.028
+19860204, -0.25, 0.11, -0.30, 0.11, -0.43, 0.028
+19860205, 0.07, -0.03, -0.56, -0.09, -0.50, 0.028
+19860206, 0.26, 0.18, -0.10, 0.17, -0.08, 0.028
+19860207, 0.49, 0.07, -0.33, 0.07, -0.01, 0.028
+19860210, 0.66, -0.37, -0.13, 0.15, -0.23, 0.028
+19860211, 0.03, 0.18, -0.06, 0.35, -0.17, 0.028
+19860212, 0.14, 0.16, 0.29, -0.17, 0.14, 0.028
+19860213, 0.57, -0.24, 0.02, 0.11, 0.03, 0.028
+19860214, 0.89, -0.43, 0.12, -0.05, -0.09, 0.028
+19860218, 1.12, -0.51, -0.10, 0.12, -0.51, 0.028
+19860219, -0.92, 0.82, -0.06, 0.18, -0.23, 0.028
+19860220, 0.83, -0.54, -0.18, -0.16, 0.13, 0.028
+19860221, 1.00, -0.07, 0.16, -0.05, -0.05, 0.028
+19860224, -0.12, 0.04, 0.33, 0.05, 0.20, 0.028
+19860225, -0.23, 0.18, 0.35, 0.14, 0.59, 0.028
+19860226, 0.10, 0.05, 0.15, -0.13, 0.12, 0.028
+19860227, 1.14, -0.22, 0.17, -0.10, 0.03, 0.028
+19860228, 0.19, 0.37, -0.02, -0.04, 0.08, 0.028
+19860303, -0.39, 0.67, 0.00, 0.03, 0.18, 0.030
+19860304, -0.14, 0.74, 0.17, -0.15, -0.42, 0.030
+19860305, -0.20, -0.30, 0.09, 0.01, 0.53, 0.030
+19860306, 0.41, 0.21, 0.00, -0.11, 0.18, 0.030
+19860307, 0.14, 0.18, -0.23, 0.06, 0.18, 0.030
+19860310, 0.43, -0.06, -0.20, -0.02, -0.21, 0.030
+19860311, 1.86, -1.09, 0.03, 0.09, 0.12, 0.030
+19860312, 0.45, 0.09, 0.26, 0.06, 0.13, 0.030
+19860313, 0.20, -0.14, -0.33, 0.10, -0.16, 0.030
+19860314, 1.03, -0.83, -0.22, 0.12, 0.30, 0.030
+19860317, -0.75, 0.00, -0.32, 0.39, 0.03, 0.030
+19860318, 0.47, 0.04, -0.17, -0.08, 0.28, 0.030
+19860319, -0.17, 0.15, -0.09, 0.14, 0.23, 0.030
+19860320, 0.39, -0.13, -0.02, 0.12, 0.12, 0.030
+19860321, -0.83, 1.71, 0.67, -0.28, 0.40, 0.030
+19860324, 0.38, -1.25, -0.25, 0.48, -0.20, 0.030
+19860325, -0.25, -0.07, 0.25, 0.04, 0.11, 0.030
+19860326, 0.98, -0.62, 0.05, -0.26, 0.13, 0.030
+19860327, 0.71, -0.08, 0.05, -0.15, -0.25, 0.030
+19860331, 0.06, 0.21, -0.15, 0.27, -0.75, 0.030
+19860401, -1.21, 0.92, 0.34, 0.72, 0.13, 0.024
+19860402, 0.09, -0.26, -0.09, 0.14, -0.25, 0.024
+19860403, -1.01, 0.82, 0.01, -0.17, -0.28, 0.024
+19860404, -1.45, 0.81, 0.26, 0.06, 0.07, 0.024
+19860407, -0.32, -0.51, 0.13, 0.02, 0.17, 0.024
+19860408, 1.90, -0.86, -0.60, -0.21, -0.22, 0.024
+19860409, 0.21, 0.09, -0.23, -0.01, 0.33, 0.024
+19860410, 0.97, -0.36, -0.42, 0.13, -0.04, 0.024
+19860411, -0.08, 0.36, -0.13, -0.05, -0.23, 0.024
+19860414, 0.53, 0.03, -0.55, 0.08, -0.27, 0.024
+19860415, 0.14, -0.07, 0.13, 0.13, 0.23, 0.024
+19860416, 1.75, -0.56, -0.57, -0.15, 0.13, 0.024
+19860417, 0.33, 0.31, -0.26, 0.07, 0.30, 0.024
+19860418, -0.11, 0.44, -0.11, 0.44, -0.14, 0.024
+19860421, 0.76, -0.35, -0.28, 0.60, -0.02, 0.024
+19860422, -0.78, 0.74, 0.11, 0.36, -0.01, 0.024
+19860423, -0.42, 0.03, 0.03, 0.31, 0.33, 0.024
+19860424, 0.18, 0.28, -0.51, 0.02, -0.17, 0.024
+19860425, 0.00, 0.19, -0.42, 0.15, -0.37, 0.024
+19860428, 0.17, -0.24, -0.18, 0.21, -0.13, 0.024
+19860429, -0.97, 0.36, -0.09, 0.15, 0.24, 0.024
+19860430, -1.90, 0.67, 0.53, -0.04, 0.25, 0.024
+19860501, -0.20, -0.24, 0.27, 0.01, 0.14, 0.023
+19860502, -0.06, 0.18, 0.19, -0.18, 0.25, 0.023
+19860505, 1.11, -0.63, 0.11, -0.19, -0.09, 0.023
+19860506, -0.12, 0.20, 0.05, -0.12, -0.14, 0.023
+19860507, -0.42, 0.23, 0.25, 0.09, 0.26, 0.023
+19860508, 0.50, 0.14, 0.20, 0.13, 0.37, 0.023
+19860509, 0.30, 0.10, 0.05, -0.06, 0.05, 0.023
+19860512, -0.18, -0.15, 0.32, 0.12, 0.09, 0.023
+19860513, -0.40, 0.14, -0.16, 0.39, 0.13, 0.023
+19860514, 0.38, -0.27, -0.40, 0.41, 0.09, 0.023
+19860515, -1.09, 0.72, 0.29, -0.10, 0.14, 0.023
+19860516, -0.56, 0.51, 0.10, 0.23, -0.06, 0.023
+19860519, 0.06, -0.41, 0.08, 0.05, 0.08, 0.023
+19860520, 1.01, -0.90, -0.49, 0.00, 0.07, 0.023
+19860521, -0.16, 0.32, 0.10, 0.13, 0.10, 0.023
+19860522, 1.61, -0.92, -0.21, -0.10, 0.16, 0.023
+19860523, 0.55, 0.03, -0.06, 0.01, -0.20, 0.023
+19860527, 1.27, -0.44, -0.33, 0.28, -0.11, 0.023
+19860528, 0.69, -0.19, -0.51, 0.40, -0.40, 0.023
+19860529, 0.40, -0.18, -0.11, 0.54, -0.01, 0.023
+19860530, -0.13, 0.47, 0.16, -0.06, 0.17, 0.023
+19860602, -0.75, 0.58, 0.06, 0.44, -0.20, 0.025
+19860603, 0.10, 0.05, -0.21, 0.22, 0.20, 0.025
+19860604, -0.49, 0.51, -0.21, -0.41, 0.12, 0.025
+19860605, 0.43, -0.44, 0.08, 0.12, 0.21, 0.025
+19860606, 0.01, 0.12, -0.03, 0.26, 0.21, 0.025
+19860609, -2.00, 0.72, 0.35, 0.21, -0.09, 0.025
+19860610, -0.23, 0.02, -0.11, 0.42, -0.09, 0.025
+19860611, 0.61, -0.17, -0.22, 0.17, -0.10, 0.025
+19860612, 0.17, 0.05, 0.05, -0.15, -0.01, 0.025
+19860613, 1.45, -0.83, -0.17, -0.34, 0.17, 0.025
+19860616, 0.02, -0.28, 0.68, 0.24, 0.29, 0.025
+19860617, -0.57, 0.17, 0.33, 0.33, 0.32, 0.025
+19860618, 0.04, -0.43, 0.29, 0.05, 0.21, 0.025
+19860619, -0.17, 0.43, -0.01, -0.04, 0.05, 0.025
+19860620, 0.76, -1.39, -0.21, 0.44, -0.09, 0.025
+19860623, -0.54, 0.63, 0.13, 0.20, 0.07, 0.025
+19860624, 0.77, -0.27, 0.00, 0.09, -0.20, 0.025
+19860625, 0.70, -0.41, 0.06, -0.10, -0.39, 0.025
+19860626, -0.05, 0.23, 0.11, -0.05, 0.14, 0.025
+19860627, 0.29, -0.23, 0.31, -0.06, 0.15, 0.025
+19860630, 0.52, 0.06, 0.03, -0.19, -0.14, 0.025
+19860701, 0.47, -0.01, -0.58, 0.43, -0.29, 0.024
+19860702, 0.33, -0.18, -0.23, -0.05, -0.51, 0.024
+19860703, -0.21, 0.24, 0.17, -0.14, -0.03, 0.024
+19860707, -2.90, 0.44, 1.64, -0.05, 0.75, 0.024
+19860708, -1.52, -1.16, 1.00, -0.09, 0.82, 0.024
+19860709, 0.64, 0.00, -0.24, -0.26, -0.27, 0.024
+19860710, 0.00, -0.16, 0.34, -0.05, -0.06, 0.024
+19860711, -0.12, 0.27, 0.53, -0.31, 0.08, 0.024
+19860714, -1.65, -0.10, 1.52, -0.40, 0.66, 0.024
+19860715, -1.68, 0.02, 1.12, -0.01, 0.35, 0.024
+19860716, 0.38, -0.15, -0.06, 0.14, -0.10, 0.024
+19860717, 0.45, -0.17, -0.46, 0.25, -0.64, 0.024
+19860718, 0.05, -0.17, -0.22, 0.41, -0.34, 0.024
+19860721, -0.17, -0.28, 0.38, 0.22, -0.23, 0.024
+19860722, 0.75, -0.77, 0.10, -0.14, -0.02, 0.024
+19860723, 0.12, -0.10, -0.12, -0.37, 0.09, 0.024
+19860724, -0.29, -0.15, -0.08, 0.07, -0.26, 0.024
+19860725, 0.76, -0.69, -0.15, 0.11, 0.09, 0.024
+19860728, -1.62, 0.44, 0.19, 0.15, -0.14, 0.024
+19860729, -0.68, -0.20, 0.37, -0.24, 0.35, 0.024
+19860730, 0.48, -0.98, -0.06, -0.16, 0.21, 0.024
+19860731, -0.12, 0.05, -0.17, -0.07, 0.08, 0.024
+19860801, -0.43, 0.31, 0.45, -0.02, 0.12, 0.022
+19860804, 0.11, -1.25, 0.63, 0.43, 0.77, 0.022
+19860805, 0.26, -0.05, 0.68, 0.20, 0.78, 0.022
+19860806, -0.15, -0.30, 0.28, -0.38, -0.03, 0.022
+19860807, 0.24, -0.03, 0.05, -0.40, -0.35, 0.022
+19860808, 0.02, 0.03, -0.08, -0.40, 0.09, 0.022
+19860811, 1.49, -0.75, -0.48, -0.21, -0.11, 0.022
+19860812, 1.08, -0.35, -0.51, 0.13, -0.37, 0.022
+19860813, 0.92, -0.19, 0.13, 0.28, -0.13, 0.022
+19860814, 0.35, 0.21, -0.26, -0.12, -0.10, 0.022
+19860815, 0.23, 0.03, 0.39, -0.13, 0.58, 0.022
+19860818, 0.04, -0.19, 0.22, 0.37, -0.14, 0.022
+19860819, -0.26, 0.10, 0.42, -0.15, -0.18, 0.022
+19860820, 1.08, -0.80, 0.61, -0.25, 0.56, 0.022
+19860821, -0.04, -0.01, 0.24, -0.02, -0.15, 0.022
+19860822, 0.13, -0.18, 0.03, -0.40, 0.25, 0.022
+19860825, -0.80, 0.20, 0.24, 0.25, 0.04, 0.022
+19860826, 1.53, -1.35, 0.19, -0.01, 0.50, 0.022
+19860827, 0.16, -0.03, 0.36, -0.14, 0.48, 0.022
+19860828, -0.09, 0.28, -0.15, -0.52, 0.21, 0.022
+19860829, 0.04, 0.14, -0.11, -0.17, 0.20, 0.022
+19860902, -1.41, 0.83, 0.76, -0.04, 0.53, 0.021
+19860903, 0.26, -0.65, 0.11, 0.07, 0.69, 0.021
+19860904, 1.26, -0.40, 0.16, -0.16, 0.81, 0.021
+19860905, -1.25, 0.78, -0.15, 0.14, 0.16, 0.021
+19860908, -1.12, 0.18, -0.15, 0.21, 0.11, 0.021
+19860909, -0.29, -0.19, 0.17, 0.00, -0.07, 0.021
+19860910, -0.46, -0.17, 0.26, 0.04, 0.26, 0.021
+19860911, -4.42, 1.09, 0.84, -0.05, 0.19, 0.021
+19860912, -1.85, 0.36, 0.43, -0.20, 0.38, 0.021
+19860915, 0.26, -0.74, 0.27, -0.12, 0.38, 0.021
+19860916, -0.18, -0.43, 0.23, -0.15, 0.03, 0.021
+19860917, 0.31, 0.21, 0.06, -0.34, 0.03, 0.021
+19860918, 0.15, -0.16, -0.30, 0.16, 0.05, 0.021
+19860919, -0.07, 0.30, 0.16, -0.23, 0.38, 0.021
+19860922, 1.05, -0.25, -0.45, 0.09, -0.36, 0.021
+19860923, 0.45, 0.22, 0.10, 0.28, -0.16, 0.021
+19860924, 0.39, -0.02, 0.03, 0.32, -0.20, 0.021
+19860925, -1.53, 0.79, 0.46, -0.11, 0.28, 0.021
+19860926, 0.04, 0.12, 0.27, -0.04, 0.28, 0.021
+19860929, -0.99, 0.18, 0.33, 0.15, 0.08, 0.021
+19860930, 0.65, -0.02, -0.15, -0.16, -0.01, 0.021
+19861001, 0.83, -0.42, -0.13, -0.25, 0.05, 0.020
+19861002, 0.12, 0.04, -0.18, 0.23, -0.11, 0.020
+19861003, -0.09, -0.12, 0.20, -0.14, 0.52, 0.020
+19861006, 0.34, -0.45, -0.30, 0.07, -0.31, 0.020
+19861007, -0.18, -0.07, 0.56, -0.01, 0.66, 0.020
+19861008, 0.77, -0.63, -0.16, 0.17, 0.15, 0.020
+19861009, -0.26, 0.24, -0.01, 0.00, 0.00, 0.020
+19861010, -0.10, 0.14, -0.25, -0.08, -0.06, 0.020
+19861013, 0.13, -0.12, 0.06, -0.23, 0.10, 0.020
+19861014, -0.20, 0.08, -0.43, -0.11, -0.51, 0.020
+19861015, 1.21, -0.56, -0.48, -0.04, -0.02, 0.020
+19861016, 0.27, -0.17, 0.01, 0.39, 0.01, 0.020
+19861017, -0.28, 0.25, -0.03, -0.04, -0.17, 0.020
+19861020, -0.98, 0.43, 0.17, 0.07, 0.20, 0.020
+19861021, -0.05, 0.17, 0.12, -0.18, -0.01, 0.020
+19861022, 0.14, -0.13, -0.13, -0.15, 0.06, 0.020
+19861023, 1.08, -0.58, -0.38, -0.02, -0.15, 0.020
+19861024, -0.26, 0.33, -0.07, 0.05, -0.06, 0.020
+19861027, 0.21, -0.26, -0.14, 0.05, -0.08, 0.020
+19861028, 0.20, -0.07, -0.10, -0.25, -0.03, 0.020
+19861029, 0.61, -0.26, -0.09, -0.25, -0.30, 0.020
+19861030, 1.01, -0.46, 0.13, 0.53, 0.25, 0.020
+19861031, 0.05, 0.34, 0.31, 0.33, 0.64, 0.020
+19861103, 0.60, -0.66, -0.10, 0.08, -0.14, 0.021
+19861104, 0.21, 0.07, 0.01, 0.11, 0.08, 0.021
+19861105, 0.21, 0.08, 0.30, 0.00, 0.42, 0.021
+19861106, -0.24, 0.05, 0.15, 0.08, -0.11, 0.021
+19861107, -0.02, 0.20, -0.01, 0.10, 0.32, 0.021
+19861110, 0.06, 0.06, 0.10, -0.03, 0.19, 0.021
+19861111, 0.32, -0.20, -0.08, -0.06, 0.22, 0.021
+19861112, -0.20, 0.12, 0.15, 0.06, -0.02, 0.021
+19861113, -1.28, 0.68, 0.52, -0.13, 0.42, 0.021
+19861114, 0.43, -0.28, -0.11, 0.22, 0.10, 0.021
+19861117, -0.57, 0.05, -0.08, 0.25, -0.21, 0.021
+19861118, -2.26, 1.01, 0.27, 0.31, -0.22, 0.021
+19861119, -0.05, -1.02, 0.10, 0.07, -0.08, 0.021
+19861120, 1.58, -0.80, -0.14, -0.41, 0.11, 0.021
+19861121, 1.29, -0.94, -0.21, 0.04, -0.01, 0.021
+19861124, 0.55, -0.44, -0.26, 0.22, -0.42, 0.021
+19861125, 0.26, -0.01, -0.46, 0.14, -0.05, 0.021
+19861126, 0.15, -0.15, -0.40, 0.13, -0.16, 0.021
+19861128, 0.19, 0.26, 0.23, -0.13, 0.23, 0.021
+19861201, -0.16, -0.50, -0.08, -0.04, -0.11, 0.022
+19861202, 1.71, -0.87, -0.37, 0.12, -0.04, 0.022
+19861203, 0.10, 0.01, -0.34, -0.01, -0.55, 0.022
+19861204, -0.18, 0.30, -0.14, -0.09, -0.13, 0.022
+19861205, -0.68, 0.39, 0.09, 0.08, 0.00, 0.022
+19861208, -0.11, -0.21, 0.04, 0.25, -0.16, 0.022
+19861209, -0.68, 0.23, 0.22, 0.15, -0.02, 0.022
+19861210, 0.51, -0.49, 0.01, 0.22, 0.02, 0.022
+19861211, -0.95, 0.44, 0.05, 0.17, -0.25, 0.022
+19861212, -0.45, -0.07, 0.63, 0.35, 0.36, 0.022
+19861215, 0.08, -0.71, 0.42, 0.06, 0.26, 0.022
+19861216, 0.60, -0.43, -0.12, 0.05, -0.12, 0.022
+19861217, -0.82, 0.39, -0.04, 0.10, 0.04, 0.022
+19861218, -0.36, 0.14, 0.02, -0.06, -0.09, 0.022
+19861219, 0.83, -0.10, -0.08, 0.06, 0.29, 0.022
+19861222, -0.35, -0.21, 0.42, -0.23, 0.49, 0.022
+19861223, -0.99, 0.11, 0.01, 0.03, 0.13, 0.022
+19861224, 0.32, 0.18, -0.05, -0.05, 0.06, 0.022
+19861226, 0.11, 0.10, -0.15, -0.01, -0.10, 0.022
+19861229, -0.90, 0.14, 0.10, 0.00, -0.07, 0.022
+19861230, -0.54, 0.22, -0.13, -0.02, 0.03, 0.022
+19861231, -0.37, 1.02, -0.18, -0.23, -0.07, 0.022
+19870102, 1.79, -0.24, -0.01, -0.15, 0.20, 0.020
+19870105, 2.45, -0.06, -0.33, -0.25, -0.24, 0.020
+19870106, 0.43, 0.40, -0.61, 0.00, -0.74, 0.020
+19870107, 1.13, 0.26, -0.62, -0.17, -0.35, 0.020
+19870108, 0.82, 0.30, -0.33, -0.06, 0.15, 0.020
+19870109, 0.58, 0.20, 0.17, 0.08, -0.02, 0.020
+19870112, 0.70, 0.45, 0.24, 0.10, 0.54, 0.020
+19870113, -0.09, 0.29, 0.12, -0.19, 0.24, 0.020
+19870114, 0.94, -0.12, -0.47, -0.13, -0.02, 0.020
+19870115, 0.89, -0.03, -0.52, 0.07, -0.25, 0.020
+19870116, -0.02, -0.84, 0.08, 0.28, 0.04, 0.020
+19870119, 0.98, -0.48, -0.80, 0.07, -0.32, 0.020
+19870120, -0.09, -0.03, 0.42, 0.06, 0.03, 0.020
+19870121, -0.51, -0.33, 0.01, 0.16, 0.09, 0.020
+19870122, 1.85, -1.20, -0.69, 0.25, -0.54, 0.020
+19870123, -1.14, 0.66, 0.21, -0.11, -0.11, 0.020
+19870126, -0.38, -0.43, 0.38, 0.05, 0.25, 0.020
+19870127, 1.30, -0.60, -0.60, 0.13, -0.35, 0.020
+19870128, 0.56, -0.24, -0.22, -0.04, -0.14, 0.020
+19870129, -0.36, 0.37, 0.36, 0.13, 0.27, 0.020
+19870130, -0.02, 0.22, 0.29, -0.07, 0.24, 0.020
+19870202, 0.97, 0.29, -0.37, 0.05, -0.36, 0.023
+19870203, -0.03, 0.72, -0.32, -0.28, 0.11, 0.023
+19870204, 1.22, 0.06, -0.04, 0.09, 0.74, 0.023
+19870205, 0.68, 0.13, -0.16, -0.02, -0.19, 0.023
+19870206, -0.21, 0.57, -0.09, -0.21, 0.13, 0.023
+19870209, -0.62, 0.31, -0.13, -0.02, 0.01, 0.023
+19870210, -0.99, 0.61, -0.01, 0.16, -0.01, 0.023
+19870211, 0.86, 0.17, -0.91, -0.27, -0.19, 0.023
+19870212, -0.46, 0.79, -0.47, -0.07, -0.26, 0.023
+19870213, 1.25, -0.60, -0.83, 0.05, -0.15, 0.023
+19870217, 1.68, -0.65, -1.10, 0.22, -0.87, 0.023
+19870218, -0.02, -0.27, 0.22, 0.01, -0.27, 0.023
+19870219, 0.12, -0.21, 0.27, -0.40, -0.32, 0.023
+19870220, -0.02, 0.00, 0.19, -0.09, -0.09, 0.023
+19870223, -0.86, 0.30, -0.11, 0.18, -0.25, 0.023
+19870224, 0.20, 0.22, -0.51, -0.24, -0.17, 0.023
+19870225, 0.44, 0.08, -0.89, -0.24, -0.37, 0.023
+19870226, -0.22, 0.53, -0.38, 0.03, -0.07, 0.023
+19870227, 0.37, 0.15, -0.12, 0.22, -0.08, 0.023
+19870302, -0.22, 0.25, 0.29, 0.05, -0.28, 0.021
+19870303, 0.21, -0.31, 0.30, 0.27, 0.55, 0.021
+19870304, 1.25, -0.68, -0.21, -0.11, -0.01, 0.021
+19870305, 0.59, -0.21, -0.38, -0.05, -0.05, 0.021
+19870306, -0.02, 0.15, 0.32, 0.01, 0.37, 0.021
+19870309, -0.67, 0.34, 0.19, 0.25, 0.17, 0.021
+19870310, 0.79, -0.27, -0.50, 0.42, -0.35, 0.021
+19870311, -0.08, 0.59, -0.16, 0.15, 0.04, 0.021
+19870312, 0.29, 0.19, 0.00, 0.08, 0.36, 0.021
+19870313, -0.38, 0.39, 0.38, -0.09, 0.47, 0.021
+19870316, -0.60, 0.15, 0.18, 0.15, 0.41, 0.021
+19870317, 1.17, -0.63, -0.28, 0.03, 0.52, 0.021
+19870318, 0.06, -0.03, 0.36, 0.09, 0.49, 0.021
+19870319, 0.43, -0.12, -0.20, -0.27, -0.27, 0.021
+19870320, 1.06, -0.43, -0.11, -0.03, 0.26, 0.021
+19870323, 0.65, -1.00, 0.01, 0.08, 0.09, 0.021
+19870324, 0.11, -0.21, 0.17, 0.12, 0.20, 0.021
+19870325, -0.25, 0.27, 0.13, 0.14, -0.19, 0.021
+19870326, 0.17, 0.22, 0.29, 0.25, 0.45, 0.021
+19870327, -1.32, 1.14, 0.28, -0.25, 0.32, 0.021
+19870330, -2.27, 0.35, 0.73, 0.05, 0.36, 0.021
+19870331, 0.69, 0.03, -0.21, 0.02, -0.04, 0.021
+19870401, 0.08, -0.68, -0.09, 0.17, 0.38, 0.021
+19870402, 0.40, 0.31, -0.15, -0.41, 0.53, 0.021
+19870403, 1.92, -0.82, -0.69, 0.00, 0.09, 0.021
+19870406, 0.40, -0.26, -0.15, 0.19, -0.29, 0.021
+19870407, -1.41, 0.93, 0.42, 0.04, 0.17, 0.021
+19870408, 0.07, -0.03, -0.21, -0.02, -0.20, 0.021
+19870409, -1.33, 0.70, -0.24, -0.15, -0.01, 0.021
+19870410, -0.27, 0.01, -0.16, -0.07, 0.14, 0.021
+19870413, -2.06, 0.92, 0.13, 0.46, 0.00, 0.021
+19870414, -2.48, -0.35, -0.12, 0.05, 0.15, 0.021
+19870415, 1.59, -1.08, 0.04, 0.23, -0.05, 0.021
+19870416, 0.94, -0.19, 0.48, -0.25, 0.33, 0.021
+19870420, -0.31, -0.05, 0.16, -0.44, 0.08, 0.021
+19870421, 1.75, -1.98, -0.37, 0.12, -0.28, 0.021
+19870422, -1.43, 1.54, -0.15, 0.01, 0.27, 0.021
+19870423, -0.21, 0.00, 0.19, 0.00, 0.20, 0.021
+19870424, -1.63, 0.75, 0.28, -0.08, 0.38, 0.021
+19870427, -0.20, -0.92, 0.23, -0.33, -0.28, 0.021
+19870428, 0.45, 0.10, -0.08, -0.28, 0.03, 0.021
+19870429, 0.66, -0.21, 0.04, 0.13, -0.09, 0.021
+19870430, 1.12, -0.35, 0.08, 0.14, -0.29, 0.021
+19870501, -0.13, 0.07, 0.21, 0.09, -0.02, 0.019
+19870504, 0.32, -0.42, -0.05, 0.11, 0.26, 0.019
+19870505, 1.77, -0.92, -0.37, 0.04, -0.12, 0.019
+19870506, 0.03, -0.05, 0.65, -0.16, 0.71, 0.019
+19870507, -0.16, 0.40, 0.51, 0.04, 0.68, 0.019
+19870508, -0.32, 0.49, 0.13, 0.13, 0.19, 0.019
+19870511, -0.45, 0.64, 0.41, 0.23, 0.50, 0.019
+19870512, 0.25, -0.54, -0.25, 0.03, -0.26, 0.019
+19870513, 0.21, 0.03, -0.53, 0.20, 0.06, 0.019
+19870514, 0.04, 0.12, -0.17, 0.10, 0.06, 0.019
+19870515, -1.96, 1.07, 0.25, -0.20, 0.41, 0.019
+19870518, -0.65, -0.67, 0.37, -0.08, 0.42, 0.019
+19870519, -2.05, 1.05, 0.05, -0.16, -0.13, 0.019
+19870520, -0.55, -0.15, -0.33, -0.10, -0.29, 0.019
+19870521, 0.67, -0.19, -0.27, -0.01, -0.32, 0.019
+19870522, 0.42, -0.60, 0.11, -0.09, -0.06, 0.019
+19870526, 2.18, -1.43, -0.37, -0.03, -0.47, 0.019
+19870527, 0.07, 0.30, -0.20, 0.37, -0.38, 0.019
+19870528, 0.56, -0.46, -0.45, 0.00, -0.13, 0.019
+19870529, -0.04, 0.60, 0.35, 0.04, 0.19, 0.019
+19870601, -0.04, -0.06, 0.28, 0.34, -0.17, 0.022
+19870602, -0.46, 0.31, 0.00, 0.04, 0.32, 0.022
+19870603, 1.35, -0.98, -0.20, 0.26, -0.14, 0.022
+19870604, 0.50, -0.25, -0.07, -0.05, 0.02, 0.022
+19870605, -0.30, 0.52, 0.07, -0.09, -0.02, 0.022
+19870608, 0.88, -0.64, 0.07, -0.26, 0.03, 0.022
+19870609, 0.20, 0.00, -0.40, 0.04, -0.22, 0.022
+19870610, 0.13, -0.03, 0.07, -0.02, 0.34, 0.022
+19870611, 0.34, -0.29, 0.01, 0.00, 0.15, 0.022
+19870612, 0.86, -0.50, -0.03, 0.12, -0.02, 0.022
+19870615, 0.41, -0.54, 0.10, 0.45, -0.44, 0.022
+19870616, 0.46, -0.27, -0.20, 0.54, -0.08, 0.022
+19870617, 0.07, 0.12, -0.12, -0.11, 0.31, 0.022
+19870618, 0.19, -0.22, 0.18, -0.28, 0.16, 0.022
+19870619, 0.27, 0.06, 0.14, 0.24, 0.02, 0.022
+19870622, 0.63, -0.65, -0.35, 0.32, -0.33, 0.022
+19870623, -0.32, 0.03, 0.08, 0.00, 0.03, 0.022
+19870624, -0.44, 0.41, -0.01, 0.07, 0.15, 0.022
+19870625, 0.55, -0.43, 0.29, -0.11, 0.02, 0.022
+19870626, -0.46, 0.27, 0.12, 0.02, -0.04, 0.022
+19870629, 0.05, -0.07, 0.47, 0.25, 0.40, 0.022
+19870630, -1.04, 0.97, 0.52, -0.12, 0.31, 0.022
+19870701, -0.24, 0.13, 0.15, -0.31, 0.29, 0.021
+19870702, 0.63, -0.37, -0.10, 0.17, 0.04, 0.021
+19870706, -0.21, 0.00, 0.25, -0.11, 0.43, 0.021
+19870707, 0.58, -0.29, 0.71, -0.36, 0.64, 0.021
+19870708, 0.24, 0.08, 0.07, -0.02, 0.35, 0.021
+19870709, -0.13, 0.37, 0.11, 0.06, 0.28, 0.021
+19870710, 0.20, -0.17, 0.12, -0.05, 0.10, 0.021
+19870713, -0.18, 0.20, 0.22, -0.21, 0.00, 0.021
+19870714, 0.91, -0.30, -0.28, 0.09, -0.50, 0.021
+19870715, -0.06, 0.24, 0.08, -0.32, 0.34, 0.021
+19870716, 0.56, -0.17, 0.07, -0.02, 0.48, 0.021
+19870717, 0.46, -0.10, 0.16, 0.03, 0.12, 0.021
+19870720, -0.83, 0.45, 0.24, -0.14, 0.21, 0.021
+19870721, -0.80, 0.34, -0.02, 0.09, -0.08, 0.021
+19870722, -0.10, -0.11, -0.08, 0.09, -0.49, 0.021
+19870723, -0.28, -0.12, -0.08, 0.10, -0.16, 0.021
+19870724, 0.37, -0.07, -0.29, 0.08, -0.05, 0.021
+19870727, 0.38, -0.40, -0.20, 0.22, -0.25, 0.021
+19870728, 0.47, -0.25, -0.11, 0.00, 0.14, 0.021
+19870729, 0.89, -0.47, -0.28, 0.12, -0.12, 0.021
+19870730, 0.71, -0.18, -0.22, 0.01, -0.28, 0.021
+19870731, 0.20, 0.12, 0.15, 0.00, 0.00, 0.021
+19870803, -0.38, 0.06, 0.60, -0.20, 0.95, 0.022
+19870804, -0.31, 0.12, 0.21, 0.01, -0.19, 0.022
+19870805, 0.71, -0.12, -0.44, 0.36, -0.50, 0.022
+19870806, 1.09, -0.31, -0.86, 0.20, -0.57, 0.022
+19870807, 0.39, 0.12, -0.24, 0.21, -0.32, 0.022
+19870810, 1.32, -1.04, -0.05, 0.12, -0.04, 0.022
+19870811, 1.35, -1.06, -0.13, 0.43, -0.28, 0.022
+19870812, -0.22, 0.01, 0.28, 0.20, -0.37, 0.022
+19870813, 0.61, -0.31, 0.03, 0.23, -0.39, 0.022
+19870814, -0.09, 0.18, 0.65, 0.12, -0.16, 0.022
+19870817, 0.09, -0.24, -0.19, 0.39, -0.34, 0.022
+19870818, -1.40, 0.47, 0.13, 0.10, 0.14, 0.022
+19870819, 0.11, 0.18, -0.07, -0.11, 0.08, 0.022
+19870820, 1.39, -0.51, -0.27, 0.12, -0.13, 0.022
+19870821, 0.30, 0.05, -0.41, -0.03, -0.05, 0.022
+19870824, -0.59, 0.38, 0.05, 0.02, -0.09, 0.022
+19870825, 0.81, -0.61, -0.34, 0.34, 0.11, 0.022
+19870826, -0.47, 0.39, 0.11, 0.07, 0.29, 0.022
+19870827, -0.82, 0.67, 0.06, -0.24, 0.04, 0.022
+19870828, -1.10, 0.80, -0.14, -0.19, -0.16, 0.022
+19870831, 0.71, -0.20, 0.11, -0.16, 0.46, 0.022
+19870901, -1.59, 1.01, -0.08, -0.06, -0.08, 0.021
+19870902, -0.67, -0.09, -0.06, 0.01, 0.16, 0.021
+19870903, -0.45, 0.36, 0.01, 0.03, 0.22, 0.021
+19870904, -0.91, 0.62, 0.19, -0.21, 0.29, 0.021
+19870908, -1.27, -1.05, 0.11, -0.27, -0.03, 0.021
+19870909, 0.21, 0.23, 0.00, 0.07, -0.25, 0.021
+19870910, 0.92, -0.10, -0.80, -0.10, -0.05, 0.021
+19870911, 1.34, -0.42, -0.47, 0.18, -0.08, 0.021
+19870914, 0.21, -0.31, 0.12, 0.14, -0.40, 0.021
+19870915, -1.34, 0.75, 0.39, -0.25, 0.48, 0.021
+19870916, -0.77, 0.62, 0.15, -0.20, -0.23, 0.021
+19870917, -0.04, -0.15, 0.13, -0.06, -0.05, 0.021
+19870918, -0.10, 0.16, -0.09, -0.19, 0.15, 0.021
+19870921, -1.28, 0.45, 0.83, -0.41, 0.71, 0.021
+19870922, 2.16, -2.36, -0.03, 0.49, 0.52, 0.021
+19870923, 0.58, 0.05, -0.28, 0.10, -0.14, 0.021
+19870924, -0.25, 0.44, -0.22, -0.18, -0.10, 0.021
+19870925, 0.11, -0.07, 0.03, -0.02, 0.25, 0.021
+19870928, 0.72, -0.53, 0.04, 0.33, 0.38, 0.021
+19870929, -0.31, 0.03, 0.29, -0.26, 0.29, 0.021
+19870930, 0.18, 0.68, -0.06, -0.02, -0.13, 0.021
+19871001, 1.43, -1.13, -0.02, 0.24, -0.03, 0.027
+19871002, 0.30, 0.04, -0.36, -0.24, -0.23, 0.027
+19871005, 0.05, 0.26, -0.23, -0.18, -0.12, 0.027
+19871006, -2.24, 1.05, 0.60, -0.25, 0.11, 0.027
+19871007, -0.38, -0.37, -0.15, 0.28, 0.19, 0.027
+19871008, -1.34, 0.32, 0.35, -0.17, 0.18, 0.027
+19871009, -0.82, 0.30, 0.29, -0.23, 0.37, 0.027
+19871012, -0.74, -0.53, 0.28, 0.12, 0.33, 0.027
+19871013, 1.29, -1.37, 0.19, 0.19, -0.02, 0.027
+19871014, -2.44, 1.09, 0.57, -0.40, 0.22, 0.027
+19871015, -2.26, 0.94, 0.50, -0.34, 0.50, 0.027
+19871016, -4.87, 0.70, 0.76, -0.08, 0.20, 0.027
+19871019, -17.44, 6.08, 1.20, 0.60, -0.21, 0.027
+19871020, 0.72, -11.17, 2.62, 2.40, 2.37, 0.027
+19871021, 8.57, -1.32, -1.95, -0.01, -1.24, 0.027
+19871022, -3.97, -0.48, 1.45, 0.12, 1.14, 0.027
+19871023, -0.61, -1.98, 1.15, -0.02, 0.81, 0.027
+19871026, -8.31, -0.62, 2.56, 0.79, 0.78, 0.027
+19871027, 1.56, -3.57, -0.35, 0.31, 0.04, 0.027
+19871028, -0.19, -2.23, -0.96, 0.53, -0.27, 0.027
+19871029, 4.73, -0.69, -2.71, -0.02, -1.76, 0.027
+19871030, 3.61, 3.13, -0.96, -0.82, -0.35, 0.027
+19871102, 1.26, 0.20, 0.02, -0.48, 0.30, 0.017
+19871103, -1.87, -0.10, 0.96, 0.08, 0.49, 0.017
+19871104, -0.60, 0.30, 0.51, -0.11, 0.03, 0.017
+19871105, 2.11, -0.72, -0.25, 0.29, -0.60, 0.017
+19871106, -1.12, 1.65, 0.29, -0.13, 0.06, 0.017
+19871109, -2.48, 1.17, 0.90, -0.35, -0.03, 0.017
+19871110, -1.74, 0.06, 0.67, -0.34, 0.20, 0.017
+19871111, 1.00, -0.51, -0.42, 0.07, -0.25, 0.017
+19871112, 2.40, -0.86, -1.04, 0.19, -0.17, 0.017
+19871113, -0.80, 0.84, 0.09, -0.38, -0.31, 0.017
+19871116, 0.28, -0.39, 0.14, 0.21, -0.11, 0.017
+19871117, -1.47, -0.09, 0.58, 0.01, 0.31, 0.017
+19871118, 0.87, -0.57, -0.12, -0.15, 0.15, 0.017
+19871119, -1.98, 0.94, 0.14, 0.10, -0.42, 0.017
+19871120, 0.53, -1.12, 0.12, 0.09, 0.27, 0.017
+19871123, 0.32, -0.36, -0.08, -0.32, 0.07, 0.017
+19871124, 1.30, -0.40, -0.39, -0.21, 0.13, 0.017
+19871125, -0.60, 1.09, -0.18, -0.46, -0.25, 0.017
+19871127, -1.20, 0.98, 0.47, -0.30, 0.52, 0.017
+19871130, -3.99, 0.75, 0.87, 0.11, 0.28, 0.017
+19871201, 0.51, -0.86, 0.48, 0.26, 0.28, 0.018
+19871202, 0.39, -0.66, 0.03, 0.10, 0.08, 0.018
+19871203, -3.06, 1.39, 0.93, -0.08, 0.40, 0.018
+19871204, -1.02, -1.05, 0.33, 0.38, 0.21, 0.018
+19871207, 1.63, -1.84, -0.69, 0.41, 0.15, 0.018
+19871208, 2.28, -1.73, -0.14, -0.15, 0.58, 0.018
+19871209, 1.66, -0.29, -1.32, 0.34, -0.36, 0.018
+19871210, -1.67, 1.42, -0.66, -0.02, -0.48, 0.018
+19871211, 0.54, -0.07, 0.25, -0.11, 0.53, 0.018
+19871214, 2.71, -0.53, -1.35, 0.20, -0.75, 0.018
+19871215, 0.41, 1.24, -0.80, 0.51, -0.84, 0.018
+19871216, 2.02, -0.07, -0.67, 0.20, -0.44, 0.018
+19871217, -1.41, 1.76, -0.28, 0.16, -0.56, 0.018
+19871218, 2.21, -0.11, -0.19, 0.16, -0.21, 0.018
+19871221, 0.35, 0.02, -0.05, 0.35, -0.62, 0.018
+19871222, -0.05, -0.48, 0.12, 0.09, 0.08, 0.018
+19871223, 1.20, -0.13, -0.05, -0.20, 0.03, 0.018
+19871224, -0.16, 0.78, -0.19, -0.14, -0.03, 0.018
+19871228, -2.37, 0.39, 0.59, -0.07, 0.19, 0.018
+19871229, -0.36, -0.02, 0.04, 0.10, 0.20, 0.018
+19871230, 1.20, -0.32, -0.66, 0.49, -0.42, 0.018
+19871231, -0.19, 1.07, -0.04, -0.07, -0.25, 0.018
+19880104, 3.34, -0.88, -0.01, -0.30, 0.10, 0.015
+19880105, 1.22, 0.73, -0.48, -0.20, -0.05, 0.015
+19880106, 0.27, 0.39, 0.11, -0.06, 0.07, 0.015
+19880107, 0.74, -0.05, 0.29, -0.15, 0.33, 0.015
+19880108, -5.66, 2.93, 1.56, -0.30, 0.73, 0.015
+19880111, 0.90, -2.10, -0.37, 0.46, -0.13, 0.015
+19880112, -0.88, -0.15, 0.54, 0.04, 0.31, 0.015
+19880113, 0.19, -0.10, 0.36, -0.48, -0.17, 0.015
+19880114, 0.08, 0.31, 0.04, -0.44, -0.04, 0.015
+19880115, 2.31, -0.96, -0.45, 0.32, -0.25, 0.015
+19880118, 0.03, 0.24, 0.46, 0.08, 0.00, 0.015
+19880119, -0.70, 0.87, 0.57, -0.09, -0.06, 0.015
+19880120, -2.42, 0.61, 1.03, -0.28, 0.51, 0.015
+19880121, 0.17, -0.15, -0.10, -0.02, -0.10, 0.015
+19880122, 1.21, -0.32, 0.31, -0.23, 0.18, 0.015
+19880125, 1.93, -1.58, 0.07, 0.17, 0.20, 0.015
+19880126, -0.75, 0.63, 0.45, 0.12, -0.15, 0.015
+19880127, -0.05, 0.22, 0.31, 0.04, 0.23, 0.015
+19880128, 1.30, -0.69, 0.03, 0.27, 0.05, 0.015
+19880129, 1.24, -0.74, -0.05, 0.01, 0.17, 0.015
+19880201, -0.30, 0.82, 0.17, 0.27, -0.31, 0.023
+19880202, 0.19, -0.08, 0.25, 0.11, 0.27, 0.023
+19880203, -1.11, 0.82, 0.92, -0.06, 0.28, 0.023
+19880204, 0.00, -0.10, 0.14, -0.19, 0.11, 0.023
+19880205, -0.21, 0.56, 0.01, -0.15, 0.08, 0.023
+19880208, -0.68, 0.38, -0.16, 0.23, 0.37, 0.023
+19880209, 0.83, -0.73, -0.18, 0.20, 0.14, 0.023
+19880210, 1.72, -0.50, -0.51, 0.23, -0.29, 0.023
+19880211, -0.13, 0.74, -0.12, 0.04, -0.26, 0.023
+19880212, 0.55, 0.07, -0.32, 0.18, -0.13, 0.023
+19880216, 0.74, -0.44, -0.12, 0.06, 0.03, 0.023
+19880217, -0.17, 0.44, -0.10, 0.05, 0.24, 0.023
+19880218, -0.35, 0.67, -0.15, -0.03, 0.13, 0.023
+19880219, 1.13, -0.83, -0.02, 0.11, 0.19, 0.023
+19880222, 1.29, -0.36, -0.43, 0.03, -0.16, 0.023
+19880223, -0.06, 0.37, -0.13, 0.22, -0.12, 0.023
+19880224, 0.01, 0.62, -0.34, -0.03, -0.33, 0.023
+19880225, -0.73, 1.30, 0.20, -0.17, -0.32, 0.023
+19880226, 0.22, -0.09, -0.21, 0.24, 0.09, 0.023
+19880229, 1.79, -0.56, -0.42, 0.12, 0.02, 0.023
+19880301, -0.15, 0.27, -0.05, 0.19, -0.14, 0.019
+19880302, 0.43, 0.29, -0.24, -0.08, -0.11, 0.019
+19880303, 0.06, 0.26, -0.27, -0.04, -0.34, 0.019
+19880304, -0.13, 0.54, 0.07, -0.08, 0.26, 0.019
+19880307, 0.13, 0.53, -0.23, 0.04, 0.14, 0.019
+19880308, 0.69, 0.26, -0.20, -0.16, -0.26, 0.019
+19880309, 0.06, 0.95, -0.40, -0.19, -0.11, 0.019
+19880310, -1.66, 0.97, 0.33, -0.07, 0.68, 0.019
+19880311, 0.17, -0.33, 0.70, -0.14, 0.48, 0.019
+19880314, 0.42, -0.15, -0.33, 0.21, 0.04, 0.019
+19880315, -0.05, 0.14, 0.11, 0.24, 0.32, 0.019
+19880316, 0.81, -0.23, 0.10, 0.29, -0.19, 0.019
+19880317, 0.87, -0.45, -0.34, 0.13, 0.06, 0.019
+19880318, -0.01, 0.05, 0.34, -0.22, 0.14, 0.019
+19880321, -0.78, 0.29, 0.18, -0.21, 0.36, 0.019
+19880322, 0.06, 0.20, -0.20, 0.02, -0.08, 0.019
+19880323, 0.14, 0.38, 0.37, 0.05, 0.25, 0.019
+19880324, -1.80, 0.80, 0.22, 0.19, -0.14, 0.019
+19880325, -1.49, 0.82, 0.15, -0.07, -0.02, 0.019
+19880328, -0.40, -0.46, 0.12, -0.05, 0.06, 0.019
+19880329, 0.72, 0.03, -0.22, -0.06, -0.08, 0.019
+19880330, -0.64, 0.33, 0.47, 0.02, 0.34, 0.019
+19880331, 0.35, 0.67, 0.10, -0.20, 0.22, 0.019
+19880404, -0.93, 0.04, 0.31, 0.04, 0.08, 0.023
+19880405, 0.68, -0.49, -0.05, 0.17, 0.04, 0.023
+19880406, 2.20, -1.47, -0.04, 0.00, 0.20, 0.023
+19880407, 0.28, 0.23, 0.08, -0.01, 0.33, 0.023
+19880408, 1.09, -0.30, 0.06, 0.03, -0.15, 0.023
+19880411, 0.28, 0.13, 0.11, -0.15, 0.09, 0.023
+19880412, 0.45, -0.12, 0.12, -0.04, 0.04, 0.023
+19880413, -0.03, 0.04, 0.08, -0.03, 0.12, 0.023
+19880414, -3.76, 1.61, 0.44, 0.12, 0.17, 0.023
+19880415, -0.17, -0.31, -0.01, 0.00, 0.32, 0.023
+19880418, -0.14, 0.79, 0.25, -0.27, 0.21, 0.023
+19880419, -0.28, 0.74, -0.06, -0.03, -0.24, 0.023
+19880420, -0.70, 0.08, 0.03, -0.02, 0.21, 0.023
+19880421, -0.04, -0.23, 0.17, 0.15, 0.06, 0.023
+19880422, 1.09, -1.07, 0.24, -0.20, 0.42, 0.023
+19880425, 0.71, -0.46, 0.25, -0.02, 0.11, 0.023
+19880426, 0.60, -0.07, -0.20, -0.11, -0.19, 0.023
+19880427, 0.01, 0.36, -0.07, 0.12, 0.03, 0.023
+19880428, -0.39, 0.56, 0.01, 0.03, 0.03, 0.023
+19880429, -0.25, 0.91, -0.12, 0.06, 0.05, 0.023
+19880502, 0.02, -0.09, -0.31, 0.27, -0.25, 0.024
+19880503, 0.51, -0.21, 0.02, -0.03, -0.25, 0.024
+19880504, -0.75, 0.78, 0.12, -0.11, 0.06, 0.024
+19880505, -0.54, 0.29, 0.33, -0.08, 0.11, 0.024
+19880506, -0.38, 0.34, 0.52, -0.07, 0.38, 0.024
+19880509, -0.43, -0.29, 0.35, -0.10, 0.33, 0.024
+19880510, 0.24, -0.49, 0.32, 0.09, 0.35, 0.024
+19880511, -1.56, -0.01, 0.40, -0.01, 0.15, 0.024
+19880512, 0.25, -0.05, 0.15, -0.08, -0.06, 0.024
+19880513, 0.93, -0.29, 0.01, 0.16, -0.15, 0.024
+19880516, 0.59, -0.55, -0.04, -0.11, -0.11, 0.024
+19880517, -0.92, 0.70, 0.21, -0.13, -0.10, 0.024
+19880518, -1.49, 0.21, 0.47, -0.11, 0.37, 0.024
+19880519, 0.25, -0.68, -0.11, 0.15, 0.00, 0.024
+19880520, 0.11, 0.04, -0.05, -0.12, -0.03, 0.024
+19880523, -0.75, 0.17, 0.15, -0.21, -0.03, 0.024
+19880524, 0.86, -0.65, -0.19, -0.03, -0.05, 0.024
+19880525, 0.20, 0.00, 0.02, 0.11, -0.09, 0.024
+19880526, 0.33, 0.03, 0.08, -0.18, -0.05, 0.024
+19880527, -0.36, 0.17, 0.16, -0.23, -0.06, 0.024
+19880531, 2.70, -2.07, -0.21, 0.07, -0.17, 0.024
+19880601, 1.66, -0.68, -0.36, 0.40, -0.34, 0.022
+19880602, -0.40, 0.48, 0.02, -0.25, -0.10, 0.022
+19880603, 0.44, -0.03, 0.14, -0.11, 0.10, 0.022
+19880606, 0.27, 0.18, -0.28, 0.09, -0.40, 0.022
+19880607, -0.51, 0.47, -0.07, -0.04, 0.02, 0.022
+19880608, 1.97, -1.06, -0.17, -0.07, -0.03, 0.022
+19880609, -0.18, 0.76, -0.04, -0.01, -0.31, 0.022
+19880610, 0.30, 0.13, 0.13, -0.04, -0.17, 0.022
+19880613, 0.08, 0.13, -0.16, 0.21, -0.17, 0.022
+19880614, 0.87, -0.58, -0.02, 0.31, -0.22, 0.022
+19880615, 0.09, 0.07, 0.13, 0.09, -0.03, 0.022
+19880616, -1.31, 1.03, 0.31, -0.24, 0.23, 0.022
+19880617, 0.14, -0.37, 0.16, 0.02, 0.16, 0.022
+19880620, -0.51, 0.45, 0.15, -0.14, -0.10, 0.022
+19880621, 0.81, -0.63, -0.02, 0.02, 0.00, 0.022
+19880622, 1.25, -0.64, -0.12, 0.26, -0.26, 0.022
+19880623, -0.14, 0.43, -0.01, 0.16, -0.18, 0.022
+19880624, -0.21, 0.47, 0.07, -0.12, -0.30, 0.022
+19880627, -1.34, 1.17, 0.09, 0.18, -0.24, 0.022
+19880628, 0.93, -0.55, -0.28, 0.28, -0.01, 0.022
+19880629, -0.36, 0.48, -0.18, 0.16, -0.14, 0.022
+19880630, 0.86, 0.27, -0.54, 0.19, -0.66, 0.022
+19880701, -0.39, 0.44, 0.10, -0.22, 0.08, 0.025
+19880705, 1.09, -1.07, -0.01, -0.10, 0.18, 0.025
+19880706, -1.11, 1.12, 0.14, -0.04, -0.01, 0.025
+19880707, -0.06, 0.16, -0.02, -0.07, -0.15, 0.025
+19880708, -0.50, 0.36, 0.34, -0.08, -0.12, 0.025
+19880711, 0.11, -0.11, 0.05, -0.07, 0.17, 0.025
+19880712, -0.78, 0.58, 0.05, 0.20, 0.13, 0.025
+19880713, 0.30, -0.45, 0.11, -0.07, 0.09, 0.025
+19880714, 0.28, -0.03, 0.00, -0.02, -0.09, 0.025
+19880715, 0.44, -0.32, -0.01, -0.02, 0.01, 0.025
+19880718, -0.42, 0.44, 0.11, 0.01, 0.11, 0.025
+19880719, -0.76, 0.33, 0.45, -0.04, 0.24, 0.025
+19880720, 0.41, -0.23, 0.18, -0.02, 0.27, 0.025
+19880721, -1.05, 0.61, 0.30, 0.07, 0.14, 0.025
+19880722, -1.04, 0.50, 0.31, -0.19, 0.12, 0.025
+19880725, 0.28, -0.41, 0.01, 0.05, -0.03, 0.025
+19880726, 0.14, -0.24, 0.05, 0.00, 0.14, 0.025
+19880727, -0.85, 0.40, 0.48, -0.18, 0.20, 0.025
+19880728, 0.97, -1.00, -0.14, 0.19, 0.00, 0.025
+19880729, 1.75, -1.32, -0.24, 0.01, -0.01, 0.025
+19880801, 0.19, 0.12, 0.04, -0.05, -0.22, 0.026
+19880802, -0.01, -0.04, 0.25, -0.10, -0.06, 0.026
+19880803, 0.30, -0.26, -0.15, 0.02, 0.09, 0.026
+19880804, -0.21, 0.22, 0.22, -0.09, 0.17, 0.026
+19880805, -0.32, 0.09, 0.23, -0.02, 0.21, 0.026
+19880808, -0.33, 0.23, 0.14, 0.03, -0.09, 0.026
+19880809, -1.12, 0.39, 0.17, -0.06, 0.09, 0.026
+19880810, -1.66, 0.31, 0.42, -0.09, 0.38, 0.026
+19880811, 0.21, -0.47, -0.10, 0.04, -0.25, 0.026
+19880812, -0.10, 0.22, 0.06, -0.07, 0.04, 0.026
+19880815, -1.28, 0.25, 0.48, -0.13, 0.39, 0.026
+19880816, 0.59, -0.56, -0.37, 0.13, -0.04, 0.026
+19880817, 0.10, -0.20, 0.11, -0.10, 0.04, 0.026
+19880818, 0.13, 0.00, -0.11, 0.09, -0.22, 0.026
+19880819, -0.17, 0.29, 0.04, -0.23, 0.34, 0.026
+19880822, -1.12, 0.17, 0.61, -0.22, 0.40, 0.026
+19880823, -0.03, -0.16, 0.03, 0.03, 0.12, 0.026
+19880824, 1.25, -0.69, -0.30, 0.11, -0.20, 0.026
+19880825, -0.63, 0.17, 0.14, -0.07, 0.19, 0.026
+19880826, 0.15, -0.09, -0.03, -0.10, 0.02, 0.026
+19880829, 0.89, -0.66, -0.39, 0.28, -0.10, 0.026
+19880830, 0.10, -0.01, 0.23, -0.06, 0.21, 0.026
+19880831, -0.23, 0.65, 0.33, -0.10, 0.25, 0.026
+19880901, -1.10, 0.30, 0.42, -0.02, 0.28, 0.029
+19880902, 1.88, -1.31, -0.26, 0.10, -0.23, 0.029
+19880906, 0.37, -0.20, -0.31, 0.15, -0.22, 0.029
+19880907, 0.11, 0.12, -0.14, 0.28, -0.08, 0.029
+19880908, 0.12, 0.33, -0.21, 0.06, -0.13, 0.029
+19880909, 0.37, -0.08, -0.39, 0.08, -0.51, 0.029
+19880912, -0.10, 0.20, -0.17, 0.28, -0.19, 0.029
+19880913, 0.23, -0.16, 0.14, 0.03, 0.20, 0.029
+19880914, 0.56, -0.29, -0.09, 0.16, 0.15, 0.029
+19880915, -0.35, 0.33, 0.29, 0.00, 0.36, 0.029
+19880916, 0.69, -0.61, -0.01, -0.07, 0.00, 0.029
+19880919, -0.47, 0.37, 0.30, -0.14, 0.10, 0.029
+19880920, 0.27, -0.18, -0.01, 0.12, 0.24, 0.029
+19880921, 0.17, -0.18, -0.39, 0.29, -0.23, 0.029
+19880922, -0.35, 0.19, -0.03, 0.15, -0.13, 0.029
+19880923, 0.19, -0.08, 0.03, -0.12, -0.03, 0.029
+19880926, -0.34, -0.11, 0.39, 0.05, 0.10, 0.029
+19880927, -0.24, 0.04, 0.06, 0.07, 0.07, 0.029
+19880928, 0.27, -0.18, -0.19, 0.16, 0.05, 0.029
+19880929, 1.08, -0.43, -0.30, -0.02, -0.18, 0.029
+19880930, -0.08, 0.63, 0.21, 0.06, -0.09, 0.029
+19881003, -0.32, -0.60, 0.03, 0.16, -0.15, 0.029
+19881004, -0.19, 0.30, -0.18, 0.20, -0.16, 0.029
+19881005, 0.37, -0.21, 0.17, -0.18, -0.05, 0.029
+19881006, 0.15, -0.01, 0.14, 0.02, 0.05, 0.029
+19881007, 1.58, -1.51, 0.07, 0.25, 0.20, 0.029
+19881010, 0.07, 0.05, 0.05, 0.03, 0.08, 0.029
+19881011, -0.13, 0.00, 0.00, 0.14, 0.00, 0.029
+19881012, -1.25, 0.89, 0.52, -0.21, 0.34, 0.029
+19881013, 0.30, -0.42, 0.07, -0.17, -0.18, 0.029
+19881014, 0.10, 0.07, -0.17, 0.17, -0.09, 0.029
+19881017, 0.19, -0.18, 0.09, -0.21, 0.11, 0.029
+19881018, 0.80, -0.60, -0.13, 0.19, -0.28, 0.029
+19881019, -0.69, 0.58, 0.03, 0.14, -0.09, 0.029
+19881020, 1.67, -1.42, -0.69, 0.49, 0.35, 0.029
+19881021, 0.17, -0.24, 0.39, -0.24, 0.20, 0.029
+19881024, -0.32, 0.15, 0.09, 0.38, 0.10, 0.029
+19881025, -0.05, -0.13, 0.38, 0.01, 0.09, 0.029
+19881026, -0.34, 0.14, 0.22, -0.18, 0.18, 0.029
+19881027, -1.33, 0.32, 0.59, -0.02, 0.01, 0.029
+19881028, 0.33, -0.10, 0.08, 0.09, 0.10, 0.029
+19881031, 0.09, -0.05, -0.03, 0.39, 0.18, 0.029
+19881101, 0.05, -0.17, 0.15, -0.07, 0.32, 0.027
+19881102, -0.04, -0.15, 0.18, -0.11, 0.27, 0.027
+19881103, 0.08, 0.06, 0.27, -0.33, 0.04, 0.027
+19881104, -0.77, 0.30, 0.05, -0.05, 0.16, 0.027
+19881107, -0.90, -0.15, 0.21, 0.02, 0.21, 0.027
+19881108, 0.38, 0.01, -0.21, 0.00, -0.21, 0.027
+19881109, -0.54, 0.23, 0.01, -0.11, 0.04, 0.027
+19881110, 0.08, 0.07, 0.12, -0.09, 0.11, 0.027
+19881111, -1.82, 0.92, 0.27, -0.14, 0.25, 0.027
+19881114, -0.20, -0.40, 0.14, 0.02, 0.19, 0.027
+19881115, 0.16, -0.16, 0.01, 0.08, 0.02, 0.027
+19881116, -1.56, 0.42, 0.49, -0.22, 0.19, 0.027
+19881117, 0.10, -0.49, -0.20, -0.10, -0.08, 0.027
+19881118, 0.58, -0.54, -0.14, 0.14, -0.13, 0.027
+19881121, -0.22, -0.37, 0.38, 0.22, 0.30, 0.027
+19881122, 0.27, -0.44, 0.23, -0.01, 0.13, 0.027
+19881123, 0.63, -0.28, -0.21, 0.12, 0.01, 0.027
+19881125, -0.57, 0.44, 0.41, -0.11, 0.40, 0.027
+19881128, 0.36, -0.46, -0.11, -0.03, 0.04, 0.027
+19881129, 0.80, -0.45, -0.49, 0.28, -0.31, 0.027
+19881130, 0.91, -0.08, -0.32, 0.12, -0.31, 0.027
+19881201, -0.19, 0.51, -0.13, -0.11, -0.33, 0.030
+19881202, -0.20, 0.34, -0.40, -0.14, -0.29, 0.030
+19881205, 0.87, -0.36, -0.18, 0.27, -0.40, 0.030
+19881206, 0.83, -0.57, 0.04, 0.27, 0.01, 0.030
+19881207, 0.13, -0.10, 0.17, -0.11, 0.21, 0.030
+19881208, -0.48, 0.34, 0.08, 0.19, 0.36, 0.030
+19881209, 0.12, -0.07, 0.06, 0.10, 0.13, 0.030
+19881212, -0.18, -0.13, 0.33, 0.01, 0.16, 0.030
+19881213, -0.17, -0.09, 0.11, 0.06, 0.20, 0.030
+19881214, -0.33, 0.38, -0.02, 0.02, 0.12, 0.030
+19881215, -0.31, 0.31, -0.14, -0.06, -0.02, 0.030
+19881216, 0.60, 0.21, -0.36, 0.02, -0.05, 0.030
+19881219, 0.69, -0.64, -0.30, 0.36, -0.15, 0.030
+19881220, -0.32, 0.31, -0.11, 0.18, -0.20, 0.030
+19881221, -0.10, -0.07, -0.10, 0.04, 0.10, 0.030
+19881222, -0.10, 0.28, 0.07, -0.28, -0.02, 0.030
+19881223, 0.38, -0.16, -0.20, -0.23, -0.18, 0.030
+19881227, -0.30, 0.11, 0.00, 0.10, 0.08, 0.030
+19881228, 0.11, 0.04, -0.03, 0.07, 0.10, 0.030
+19881229, 0.67, -0.17, -0.26, 0.04, -0.13, 0.030
+19881230, -0.23, 1.37, -0.29, -0.09, -0.04, 0.030
+19890103, -0.82, 0.57, 0.29, -0.08, 0.14, 0.026
+19890104, 1.30, -0.39, -0.05, -0.13, -0.29, 0.026
+19890105, 0.21, 0.06, 0.28, -0.33, 0.30, 0.026
+19890106, 0.29, 0.28, 0.39, -0.35, 0.27, 0.026
+19890109, 0.12, -0.15, 0.31, -0.26, 0.13, 0.026
+19890110, -0.21, 0.00, 0.12, 0.06, 0.01, 0.026
+19890111, 0.43, -0.38, 0.03, 0.08, -0.19, 0.026
+19890112, 0.36, -0.09, -0.05, -0.04, 0.07, 0.026
+19890113, 0.14, -0.05, 0.06, -0.07, 0.15, 0.026
+19890116, 0.12, -0.10, 0.16, -0.02, 0.12, 0.026
+19890117, -0.21, 0.02, 0.22, -0.18, 0.43, 0.026
+19890118, 0.87, -0.27, 0.00, -0.12, -0.08, 0.026
+19890119, 0.14, 0.16, -0.19, -0.24, -0.11, 0.026
+19890120, -0.06, 0.16, 0.02, -0.14, 0.04, 0.026
+19890123, -0.60, 0.31, 0.13, 0.02, -0.10, 0.026
+19890124, 1.04, -0.90, -0.17, 0.12, 0.13, 0.026
+19890125, 0.26, 0.01, -0.07, 0.08, -0.14, 0.026
+19890126, 0.80, -0.31, -0.52, 0.13, -0.21, 0.026
+19890127, 0.64, -0.55, 0.02, 0.07, 0.10, 0.026
+19890130, 0.33, -0.18, -0.30, 0.17, -0.47, 0.026
+19890131, 0.77, -0.28, -0.18, 0.26, -0.13, 0.026
+19890201, -0.01, 0.45, -0.43, 0.06, -0.21, 0.032
+19890202, 0.00, 0.37, -0.12, -0.21, -0.07, 0.032
+19890203, 0.10, 0.32, -0.34, 0.10, -0.03, 0.032
+19890206, -0.17, 0.11, 0.34, -0.04, 0.28, 0.032
+19890207, 1.04, -0.43, 0.18, -0.04, -0.24, 0.032
+19890208, -0.21, 0.32, 0.20, 0.11, 0.14, 0.032
+19890209, -0.70, 0.49, 0.14, 0.04, 0.15, 0.032
+19890210, -1.27, 0.49, 0.35, -0.08, 0.52, 0.032
+19890213, 0.04, -0.39, 0.16, 0.05, 0.00, 0.032
+19890214, -0.10, 0.38, -0.23, 0.02, 0.14, 0.032
+19890215, 0.74, -0.33, -0.11, 0.01, -0.08, 0.032
+19890216, 0.21, 0.14, 0.14, -0.31, 0.16, 0.032
+19890217, 0.55, -0.22, -0.12, -0.10, -0.03, 0.032
+19890221, -0.23, 0.07, 0.10, -0.10, 0.18, 0.032
+19890222, -1.47, 0.68, 0.18, -0.14, 0.28, 0.032
+19890223, 0.26, -0.27, 0.03, -0.22, 0.25, 0.032
+19890224, -1.37, 0.78, 0.13, 0.00, 0.34, 0.032
+19890227, 0.07, -0.29, 0.11, -0.01, 0.01, 0.032
+19890228, 0.31, -0.02, 0.12, 0.05, 0.17, 0.032
+19890301, -0.37, 0.48, 0.14, 0.00, 0.09, 0.030
+19890302, 0.84, -0.23, -0.20, 0.01, -0.30, 0.030
+19890303, 0.36, 0.09, 0.04, -0.05, -0.02, 0.030
+19890306, 0.99, -0.49, -0.03, -0.15, -0.04, 0.030
+19890307, -0.17, 0.44, 0.10, 0.04, 0.04, 0.030
+19890308, 0.07, 0.16, -0.09, 0.11, -0.05, 0.030
+19890309, -0.10, 0.03, 0.02, 0.02, 0.11, 0.030
+19890310, -0.25, 0.37, -0.03, 0.18, 0.07, 0.030
+19890313, 0.61, -0.51, -0.08, 0.21, -0.04, 0.030
+19890314, -0.07, -0.09, 0.01, -0.04, 0.09, 0.030
+19890315, 0.39, 0.00, -0.03, 0.03, 0.39, 0.030
+19890316, 0.79, -0.32, -0.14, -0.05, -0.01, 0.030
+19890317, -2.08, 0.49, 0.58, -0.31, 0.41, 0.030
+19890320, -0.97, 0.04, 0.27, 0.13, 0.19, 0.030
+19890321, 0.45, 0.13, -0.14, -0.11, -0.10, 0.030
+19890322, -0.28, 0.26, 0.08, 0.09, 0.17, 0.030
+19890323, -0.39, 0.52, 0.03, -0.04, -0.18, 0.030
+19890327, 0.36, -0.47, 0.12, -0.10, 0.19, 0.030
+19890328, 0.35, 0.17, -0.15, -0.01, -0.12, 0.030
+19890329, 0.23, -0.15, -0.13, 0.07, 0.05, 0.030
+19890330, 0.06, -0.05, -0.06, 0.01, -0.13, 0.030
+19890331, 0.76, -0.18, 0.11, -0.02, -0.07, 0.030
+19890403, 0.45, -0.25, -0.13, 0.10, -0.03, 0.034
+19890404, -0.25, 0.10, -0.05, 0.15, 0.10, 0.034
+19890405, 0.27, -0.06, 0.16, -0.27, 0.09, 0.034
+19890406, -0.26, 0.25, -0.01, 0.03, 0.07, 0.034
+19890407, 0.55, -0.11, -0.30, -0.02, -0.45, 0.034
+19890410, -0.01, 0.10, -0.14, 0.02, -0.22, 0.034
+19890411, 0.40, 0.01, -0.06, -0.18, -0.22, 0.034
+19890412, 0.19, 0.27, -0.19, -0.02, -0.14, 0.034
+19890413, -0.75, 0.34, -0.01, 0.19, -0.13, 0.034
+19890414, 1.32, -0.71, -0.15, -0.06, -0.34, 0.034
+19890417, 0.07, -0.24, 0.06, 0.01, 0.12, 0.034
+19890418, 1.13, -0.78, -0.06, 0.35, -0.10, 0.034
+19890419, 0.35, -0.20, -0.05, 0.19, -0.06, 0.034
+19890420, -0.21, 0.29, 0.05, 0.00, 0.29, 0.034
+19890421, 0.72, -0.42, -0.06, 0.09, -0.04, 0.034
+19890424, -0.16, 0.19, 0.06, -0.15, 0.18, 0.034
+19890425, -0.45, 0.57, -0.34, 0.29, -0.03, 0.034
+19890426, 0.10, 0.06, -0.03, -0.08, 0.03, 0.034
+19890427, 0.71, -0.29, -0.09, 0.01, 0.33, 0.034
+19890428, 0.05, 0.19, -0.03, 0.07, 0.11, 0.034
+19890501, -0.15, 0.06, -0.10, -0.16, -0.02, 0.036
+19890502, -0.21, 0.44, 0.03, 0.00, 0.15, 0.036
+19890503, 0.00, 0.24, -0.28, 0.32, -0.16, 0.036
+19890504, -0.06, 0.28, -0.22, 0.09, -0.28, 0.036
+19890505, 0.01, 0.22, 0.11, -0.02, 0.02, 0.036
+19890508, -0.49, 0.07, 0.07, -0.09, 0.27, 0.036
+19890509, -0.20, 0.27, -0.07, 0.32, 0.07, 0.036
+19890510, 0.15, -0.03, -0.26, 0.22, -0.27, 0.036
+19890511, 0.30, -0.11, -0.25, -0.09, -0.08, 0.036
+19890512, 1.82, -1.33, -0.34, 0.02, -0.44, 0.036
+19890515, 0.66, -0.65, 0.01, 0.08, -0.10, 0.036
+19890516, -0.19, 0.04, 0.36, 0.02, 0.18, 0.036
+19890517, 0.62, -0.08, -0.30, 0.10, -0.18, 0.036
+19890518, 0.19, 0.25, -0.16, 0.03, -0.05, 0.036
+19890519, 0.78, -0.51, 0.01, 0.10, 0.00, 0.036
+19890522, 0.25, -0.45, 0.22, 0.04, 0.21, 0.036
+19890523, -0.92, 0.66, 0.31, -0.21, 0.18, 0.036
+19890524, 0.19, -0.01, 0.02, -0.01, 0.34, 0.036
+19890525, 0.08, 0.25, -0.18, -0.02, -0.05, 0.036
+19890526, 0.67, -0.20, -0.11, -0.14, 0.04, 0.036
+19890530, -0.61, 0.37, 0.28, -0.13, 0.01, 0.036
+19890531, 0.40, 0.14, 0.03, -0.01, 0.04, 0.036
+19890601, 0.45, 0.00, 0.05, -0.05, -0.04, 0.032
+19890602, 0.97, -0.47, -0.17, 0.07, 0.03, 0.032
+19890605, -0.87, 0.47, 0.35, 0.07, -0.10, 0.032
+19890606, 0.44, -0.50, 0.00, -0.09, 0.01, 0.032
+19890607, 0.81, -0.34, -0.24, 0.10, -0.03, 0.032
+19890608, 0.00, 0.23, -0.06, 0.10, -0.10, 0.032
+19890609, -0.02, -0.04, 0.09, 0.13, -0.05, 0.032
+19890612, -0.12, 0.08, 0.18, -0.05, 0.12, 0.032
+19890613, -0.67, 0.24, 0.50, -0.12, 0.36, 0.032
+19890614, -0.10, -0.07, 0.27, -0.18, 0.29, 0.032
+19890615, -1.06, 0.45, 0.08, -0.10, 0.14, 0.032
+19890616, 0.25, -0.02, -0.13, 0.03, -0.05, 0.032
+19890619, 0.08, -0.40, -0.09, -0.01, 0.13, 0.032
+19890620, -0.20, 0.00, 0.16, 0.19, 0.05, 0.032
+19890621, -0.21, -0.03, 0.04, 0.10, 0.36, 0.032
+19890622, 0.39, -0.30, -0.14, 0.00, -0.11, 0.032
+19890623, 1.41, -0.97, -0.38, 0.22, 0.02, 0.032
+19890626, -0.29, 0.13, 0.24, 0.13, -0.11, 0.032
+19890627, 0.50, -0.13, 0.04, 0.12, 0.10, 0.032
+19890628, -0.70, 0.13, 0.31, -0.26, 0.14, 0.032
+19890629, -1.83, 0.29, 0.68, -0.05, 0.56, 0.032
+19890630, -0.53, 0.16, 0.38, -0.10, -0.20, 0.032
+19890703, 0.33, -0.26, -0.11, 0.25, -0.03, 0.035
+19890705, 0.31, -0.21, -0.04, 0.02, 0.27, 0.035
+19890706, 0.36, 0.41, 0.00, 0.07, -0.07, 0.035
+19890707, 0.91, -0.50, -0.32, -0.19, 0.05, 0.035
+19890710, 0.52, -0.27, 0.06, 0.08, -0.05, 0.035
+19890711, 0.48, -0.32, -0.09, 0.08, -0.07, 0.035
+19890712, 0.30, 0.12, 0.01, 0.18, 0.10, 0.035
+19890713, 0.06, 0.13, -0.07, 0.02, -0.11, 0.035
+19890714, 0.37, -0.44, 0.18, 0.05, 0.01, 0.035
+19890717, 0.19, 0.07, -0.34, 0.14, -0.20, 0.035
+19890718, -0.31, 0.17, -0.02, -0.06, 0.14, 0.035
+19890719, 1.09, -0.46, -0.63, 0.23, -0.29, 0.035
+19890720, -0.58, 0.38, 0.04, 0.04, 0.12, 0.035
+19890721, 0.42, -0.51, -0.24, 0.04, -0.23, 0.035
+19890724, -0.59, 0.13, -0.03, 0.02, 0.01, 0.035
+19890725, 0.02, -0.10, -0.02, 0.20, -0.12, 0.035
+19890726, 1.00, -0.69, -0.46, 0.49, -0.07, 0.035
+19890727, 1.01, -0.58, -0.60, 0.17, 0.06, 0.035
+19890728, 0.10, -0.10, -0.03, -0.14, -0.03, 0.035
+19890731, 0.94, -0.79, 0.08, 0.24, -0.04, 0.035
+19890801, -0.50, 0.29, 0.44, -0.06, -0.13, 0.032
+19890802, 0.18, -0.10, 0.07, 0.06, -0.14, 0.032
+19890803, 0.23, 0.34, -0.06, 0.28, -0.41, 0.032
+19890804, -0.22, 0.30, 0.20, 0.00, -0.06, 0.032
+19890807, 1.27, -0.74, -0.02, 0.07, -0.01, 0.032
+19890808, 0.08, 0.01, 0.00, -0.02, -0.09, 0.032
+19890809, -0.47, 0.62, 0.04, 0.29, 0.05, 0.032
+19890810, 0.36, -0.03, 0.16, 0.15, -0.12, 0.032
+19890811, -0.80, 0.59, 0.08, -0.08, 0.03, 0.032
+19890814, -0.50, -0.01, 0.00, 0.12, 0.21, 0.032
+19890815, 0.33, -0.32, 0.15, -0.13, 0.17, 0.032
+19890816, 0.19, -0.19, -0.02, 0.17, 0.09, 0.032
+19890817, -0.27, 0.10, -0.21, 0.07, -0.15, 0.032
+19890818, 0.31, -0.21, -0.05, -0.23, 0.05, 0.032
+19890821, -1.28, 0.64, 0.20, -0.32, 0.16, 0.032
+19890822, 0.01, -0.12, -0.45, 0.27, -0.10, 0.032
+19890823, 0.88, -0.33, -0.18, -0.16, -0.09, 0.032
+19890824, 1.68, -1.01, -0.22, 0.05, -0.11, 0.032
+19890825, -0.16, 0.29, 0.08, 0.13, -0.07, 0.032
+19890828, 0.30, -0.34, -0.01, -0.15, 0.11, 0.032
+19890829, -0.50, 0.43, 0.16, -0.04, -0.06, 0.032
+19890830, 0.24, 0.05, 0.17, -0.01, -0.08, 0.032
+19890831, 0.13, 0.13, 0.20, -0.11, 0.20, 0.032
+19890901, 0.59, -0.34, -0.02, 0.05, 0.05, 0.033
+19890905, -0.22, 0.24, -0.05, 0.13, -0.14, 0.033
+19890906, -0.85, 0.48, 0.18, 0.10, 0.00, 0.033
+19890907, -0.18, 0.33, 0.27, -0.26, 0.31, 0.033
+19890908, 0.09, 0.33, -0.02, -0.06, 0.01, 0.033
+19890911, -0.29, -0.21, 0.14, 0.18, 0.01, 0.033
+19890912, 0.33, -0.06, -0.14, -0.18, 0.25, 0.033
+19890913, -0.77, 0.67, 0.15, -0.21, 0.14, 0.033
+19890914, -0.74, 0.11, -0.21, 0.12, 0.05, 0.033
+19890915, 0.19, -0.77, 0.05, 0.14, -0.10, 0.033
+19890918, 0.34, -0.48, -0.16, 0.24, 0.17, 0.033
+19890919, 0.06, -0.06, -0.13, -0.01, 0.07, 0.033
+19890920, -0.09, -0.05, 0.02, -0.13, 0.16, 0.033
+19890921, -0.11, 0.17, -0.15, 0.13, -0.02, 0.033
+19890922, 0.26, -0.11, 0.02, 0.21, 0.27, 0.033
+19890925, -0.71, 0.32, -0.03, 0.00, -0.05, 0.033
+19890926, 0.12, 0.23, -0.22, 0.17, -0.23, 0.033
+19890927, 0.11, -0.24, -0.52, 0.41, -0.40, 0.033
+19890928, 0.88, -0.30, -0.54, 0.44, -0.18, 0.033
+19890929, 0.26, 0.15, 0.03, -0.05, 0.27, 0.033
+19891002, 0.45, -0.17, 0.04, -0.12, -0.28, 0.031
+19891003, 0.95, -0.66, -0.29, 0.19, -0.15, 0.031
+19891004, 0.53, -0.44, -0.12, 0.15, -0.06, 0.031
+19891005, 0.06, 0.12, 0.13, 0.01, -0.22, 0.031
+19891006, 0.47, -0.23, -0.23, 0.00, 0.08, 0.031
+19891009, 0.20, -0.02, -0.18, 0.23, -0.33, 0.031
+19891010, -0.20, -0.12, -0.11, 0.00, 0.12, 0.031
+19891011, -0.60, 0.15, 0.09, -0.10, 0.21, 0.031
+19891012, -0.41, 0.23, -0.12, -0.11, 0.20, 0.031
+19891013, -5.52, 2.05, 0.97, -0.31, 0.15, 0.031
+19891016, 1.64, -3.53, -0.63, 0.71, -0.07, 0.031
+19891017, -0.43, 0.26, -0.26, 0.03, -0.36, 0.031
+19891018, 0.25, 0.35, -0.37, -0.12, 0.03, 0.031
+19891019, 1.52, -0.19, -0.65, -0.28, -0.07, 0.031
+19891020, -0.05, -0.02, 0.10, -0.09, 0.15, 0.031
+19891023, -0.67, 0.00, -0.05, 0.17, -0.12, 0.031
+19891024, -0.56, -0.83, -0.15, 0.25, 0.06, 0.031
+19891025, -0.26, 0.53, 0.17, -0.37, 0.29, 0.031
+19891026, -1.14, 0.29, 0.19, -0.20, 0.20, 0.031
+19891027, -0.99, -0.16, 0.42, -0.19, 0.33, 0.031
+19891030, -0.06, -0.39, 0.02, 0.10, -0.13, 0.031
+19891031, 1.34, -0.78, -0.19, 0.09, -0.03, 0.031
+19891101, 0.29, -0.10, 0.24, 0.04, -0.03, 0.033
+19891102, -0.66, 0.32, 0.30, -0.28, 0.34, 0.033
+19891103, -0.20, 0.27, 0.04, -0.15, 0.25, 0.033
+19891106, -1.36, 0.41, -0.01, 0.04, 0.23, 0.033
+19891107, 0.49, -0.51, 0.03, 0.32, 0.09, 0.033
+19891108, 0.97, -0.12, -0.70, 0.43, -0.36, 0.033
+19891109, -0.34, 0.35, -0.07, -0.10, -0.19, 0.033
+19891110, 0.59, -0.28, -0.39, 0.10, -0.16, 0.033
+19891113, 0.15, -0.22, -0.08, -0.05, 0.18, 0.033
+19891114, -0.47, 0.16, 0.28, -0.27, 0.16, 0.033
+19891115, 0.58, -0.41, -0.12, -0.21, -0.04, 0.033
+19891116, 0.02, -0.08, -0.08, 0.00, 0.04, 0.033
+19891117, 0.28, 0.02, -0.30, -0.15, -0.08, 0.033
+19891120, -0.64, 0.01, -0.08, -0.04, 0.01, 0.033
+19891121, -0.08, -0.24, -0.02, 0.04, 0.17, 0.033
+19891122, 0.53, -0.29, -0.22, 0.01, 0.07, 0.033
+19891124, 0.54, -0.23, -0.16, 0.08, 0.05, 0.033
+19891127, 0.37, -0.23, 0.23, 0.06, 0.22, 0.033
+19891128, 0.08, 0.14, 0.14, -0.25, 0.18, 0.033
+19891129, -0.56, 0.22, 0.05, -0.20, 0.17, 0.033
+19891130, 0.44, -0.52, -0.21, -0.28, 0.14, 0.033
+19891201, 1.06, -0.91, 0.01, 0.21, 0.11, 0.030
+19891204, 0.26, -0.27, 0.06, 0.16, 0.06, 0.030
+19891205, -0.38, 0.25, 0.16, -0.07, -0.08, 0.030
+19891206, -0.31, 0.40, 0.21, -0.31, 0.18, 0.030
+19891207, -0.25, 0.02, -0.27, -0.11, -0.04, 0.030
+19891208, 0.16, -0.11, 0.20, -0.06, 0.20, 0.030
+19891211, -0.14, -0.34, 0.05, 0.00, 0.45, 0.030
+19891212, 0.59, -0.81, 0.31, -0.18, 0.59, 0.030
+19891213, 0.25, -0.13, 0.14, -0.31, 0.20, 0.030
+19891214, -0.54, -0.20, 0.16, -0.21, 0.27, 0.030
+19891215, -0.39, -0.16, -0.27, -0.04, 0.37, 0.030
+19891218, -1.74, 0.13, 0.31, -0.04, 0.46, 0.030
+19891219, -0.44, -0.27, -0.06, 0.18, 0.09, 0.030
+19891220, 0.09, 0.05, 0.31, 0.08, -0.12, 0.030
+19891221, 0.53, 0.02, -0.06, 0.06, -0.37, 0.030
+19891222, 0.80, 0.00, -0.33, 0.28, -0.07, 0.030
+19891226, -0.09, 0.21, 0.06, 0.01, -0.22, 0.030
+19891227, 0.50, -0.20, -0.14, 0.15, -0.19, 0.030
+19891228, 0.46, -0.31, -0.32, 0.32, -0.30, 0.030
+19891229, 0.77, 0.33, -0.28, -0.20, -0.26, 0.030
+19900102, 1.44, -0.67, -0.06, 0.18, -0.45, 0.026
+19900103, -0.06, 0.72, -0.31, 0.16, -0.46, 0.026
+19900104, -0.71, 0.45, -0.25, -0.05, -0.02, 0.026
+19900105, -0.85, 0.73, -0.23, -0.01, -0.10, 0.026
+19900108, 0.30, -0.40, -0.24, 0.05, 0.31, 0.026
+19900109, -1.01, 0.87, 0.09, -0.10, 0.14, 0.026
+19900110, -0.76, -0.07, 0.32, -0.27, 0.40, 0.026
+19900111, 0.23, -0.19, 0.09, 0.03, 0.20, 0.026
+19900112, -2.33, 0.27, 0.39, -0.35, 0.25, 0.026
+19900115, -0.95, 0.02, 0.46, -0.27, 0.16, 0.026
+19900116, 0.92, -0.72, -0.41, 0.46, -0.31, 0.026
+19900117, -0.76, 0.94, -0.27, -0.09, 0.02, 0.026
+19900118, 0.05, -0.62, -0.04, 0.09, 0.15, 0.026
+19900119, 0.31, 0.08, 0.04, -0.54, 0.06, 0.026
+19900122, -2.31, 0.79, 0.50, -0.14, 0.14, 0.026
+19900123, -0.07, -0.45, 0.05, 0.03, 0.36, 0.026
+19900124, -0.44, -1.10, -0.36, 0.17, -0.04, 0.026
+19900125, -1.07, 1.02, 0.31, -0.35, 0.27, 0.026
+19900126, -0.36, -0.54, 0.45, -0.03, 0.00, 0.026
+19900129, -0.34, -0.72, 0.02, 0.14, 0.34, 0.026
+19900130, -0.90, -0.70, 0.59, -0.26, 0.12, 0.026
+19900131, 1.67, -1.22, -0.16, -0.08, -0.06, 0.026
+19900201, 0.08, 0.56, -0.03, -0.22, -0.03, 0.030
+19900202, 0.73, 0.29, -0.55, -0.12, 0.11, 0.030
+19900205, 0.38, 0.22, -0.28, 0.02, -0.21, 0.030
+19900206, -0.54, 0.56, 0.13, -0.19, -0.06, 0.030
+19900207, 1.07, -0.39, -0.27, -0.04, -0.24, 0.030
+19900208, -0.09, 0.29, -0.07, 0.04, 0.09, 0.030
+19900209, 0.24, -0.01, 0.08, -0.09, -0.22, 0.030
+19900212, -0.94, 0.53, 0.19, 0.00, 0.15, 0.030
+19900213, 0.14, -0.48, 0.14, 0.09, 0.12, 0.030
+19900214, 0.20, -0.08, 0.10, 0.04, 0.11, 0.030
+19900215, 0.78, -0.34, -0.05, 0.34, 0.04, 0.030
+19900216, -0.50, 0.54, 0.20, -0.18, 0.10, 0.030
+19900220, -1.35, 0.49, 0.35, -0.15, 0.06, 0.030
+19900221, -0.21, -0.42, 0.48, -0.08, 0.15, 0.030
+19900222, -0.36, 0.83, 0.00, 0.14, -0.37, 0.030
+19900223, -0.55, -0.18, 0.49, 0.17, 0.00, 0.030
+19900226, 1.00, -1.28, -0.12, 0.31, -0.06, 0.030
+19900227, 0.54, -0.15, -0.08, -0.04, -0.07, 0.030
+19900228, 0.53, 0.15, -0.12, -0.21, -0.26, 0.030
+19900301, 0.26, -0.03, -0.09, 0.10, -0.30, 0.029
+19900302, 0.80, -0.03, -0.26, 0.22, -0.22, 0.029
+19900305, -0.37, 0.56, -0.14, 0.21, -0.01, 0.029
+19900306, 1.07, -0.44, -0.40, 0.28, 0.13, 0.029
+19900307, -0.22, 0.55, -0.26, 0.03, -0.15, 0.029
+19900308, 0.84, -0.12, -0.52, 0.30, -0.14, 0.029
+19900309, -0.53, 0.47, 0.03, -0.22, -0.08, 0.029
+19900312, 0.15, -0.15, -0.04, 0.37, -0.24, 0.029
+19900313, -0.69, 0.50, 0.27, -0.01, -0.10, 0.029
+19900314, 0.23, 0.17, -0.35, 0.00, 0.00, 0.029
+19900315, 0.25, 0.05, -0.17, 0.07, -0.10, 0.029
+19900316, 0.90, -0.40, -0.60, 0.15, -0.13, 0.029
+19900319, 0.38, -0.25, -0.74, 0.46, -0.23, 0.029
+19900320, -0.55, 0.36, 0.20, 0.09, -0.14, 0.029
+19900321, -0.45, 0.42, -0.03, -0.13, 0.09, 0.029
+19900322, -1.22, 0.33, 0.37, 0.04, 0.29, 0.029
+19900323, 0.44, 0.08, -0.37, 0.16, -0.11, 0.029
+19900326, 0.17, 0.08, -0.12, 0.34, -0.23, 0.029
+19900327, 0.80, -0.72, -0.31, 0.38, 0.08, 0.029
+19900328, 0.09, -0.32, 0.55, -0.39, 0.38, 0.029
+19900329, -0.35, 0.14, 0.12, -0.10, 0.23, 0.029
+19900330, -0.18, 0.34, 0.02, -0.26, 0.01, 0.029
+19900402, -0.42, -0.41, -0.06, 0.36, 0.03, 0.034
+19900403, 1.25, -0.68, -0.50, 0.14, -0.27, 0.034
+19900404, -0.64, 0.21, 0.07, 0.05, -0.13, 0.034
+19900405, -0.15, 0.19, -0.41, -0.10, 0.16, 0.034
+19900406, -0.29, -0.05, -0.23, 0.14, 0.02, 0.034
+19900409, 0.21, -0.73, -0.23, 0.38, -0.15, 0.034
+19900410, 0.17, 0.06, -0.24, 0.30, -0.26, 0.034
+19900411, 0.01, 0.14, -0.30, 0.16, -0.52, 0.034
+19900412, 0.69, -0.37, -0.35, 0.16, -0.25, 0.034
+19900416, 0.08, -0.06, -0.07, -0.04, -0.28, 0.034
+19900417, -0.08, -0.08, 0.03, 0.09, 0.01, 0.034
+19900418, -1.07, 0.47, 0.20, -0.04, -0.25, 0.034
+19900419, -0.75, 0.39, 0.32, -0.17, 0.25, 0.034
+19900420, -0.89, 0.32, -0.23, 0.11, 0.09, 0.034
+19900423, -1.17, 0.05, 0.24, 0.23, 0.17, 0.034
+19900424, -0.28, 0.20, -0.02, -0.01, 0.16, 0.034
+19900425, 0.45, -0.28, -0.19, 0.02, 0.13, 0.034
+19900426, 0.15, -0.02, -0.36, 0.22, 0.04, 0.034
+19900427, -1.08, 0.51, 0.32, -0.32, 0.23, 0.034
+19900430, 0.45, -0.31, -0.65, 0.12, -0.19, 0.034
+19900501, 0.42, -0.23, -0.08, -0.05, -0.13, 0.031
+19900502, 0.55, -0.34, -0.13, -0.06, -0.37, 0.031
+19900503, 0.31, 0.00, 0.06, -0.14, 0.07, 0.031
+19900504, 0.75, -0.35, -0.13, 0.03, -0.24, 0.031
+19900507, 0.56, -0.31, -0.15, 0.15, -0.22, 0.031
+19900508, 0.37, -0.42, 0.12, 0.14, 0.00, 0.031
+19900509, 0.11, -0.18, 0.14, -0.23, 0.11, 0.031
+19900510, 0.39, -0.09, -0.07, -0.05, 0.12, 0.031
+19900511, 2.01, -1.19, -0.09, -0.02, 0.21, 0.031
+19900514, 0.79, -0.35, -0.15, 0.44, -0.05, 0.031
+19900515, -0.08, 0.04, -0.06, 0.22, -0.15, 0.031
+19900516, -0.11, 0.15, 0.03, 0.00, 0.08, 0.031
+19900517, 0.19, 0.47, -0.28, 0.05, -0.12, 0.031
+19900518, 0.09, 0.23, -0.51, 0.06, -0.08, 0.031
+19900521, 0.94, -0.17, -0.68, 0.29, -0.40, 0.031
+19900522, 0.15, 0.20, -0.56, 0.37, -0.26, 0.031
+19900523, 0.22, 0.17, -0.57, 0.41, -0.28, 0.031
+19900524, -0.08, 0.29, -0.32, -0.11, -0.01, 0.031
+19900525, -0.94, 0.59, 0.55, -0.26, 0.10, 0.031
+19900529, 1.35, -0.95, -0.38, 0.27, 0.05, 0.031
+19900530, 0.07, 0.11, -0.04, 0.02, 0.23, 0.031
+19900531, 0.07, 0.04, -0.19, 0.01, -0.10, 0.031
+19900601, 0.53, -0.08, 0.10, 0.05, -0.27, 0.030
+19900604, 1.11, -0.61, 0.26, -0.13, -0.01, 0.030
+19900605, -0.17, 0.07, 0.34, 0.03, 0.13, 0.030
+19900606, -0.36, 0.29, 0.18, -0.26, -0.07, 0.030
+19900607, -0.47, 0.37, 0.02, -0.07, -0.01, 0.030
+19900608, -1.10, 0.63, 0.16, -0.23, 0.15, 0.030
+19900611, 0.67, -0.52, -0.03, -0.19, -0.11, 0.030
+19900612, 1.10, -0.62, -0.67, 0.36, -0.26, 0.030
+19900613, -0.26, 0.75, -0.49, -0.22, -0.12, 0.030
+19900614, -0.53, 0.31, -0.16, -0.23, 0.09, 0.030
+19900615, -0.10, 0.27, -0.32, 0.01, 0.05, 0.030
+19900618, -1.47, 0.20, 0.29, -0.16, 0.19, 0.030
+19900619, 0.29, -0.44, -0.06, 0.24, -0.19, 0.030
+19900620, 0.06, -0.10, -0.12, 0.21, 0.14, 0.030
+19900621, 0.26, -0.25, -0.47, 0.02, 0.11, 0.030
+19900622, -1.07, 1.06, 0.01, -0.09, -0.05, 0.030
+19900625, -0.86, 0.31, -0.07, -0.10, -0.08, 0.030
+19900626, -0.15, -0.05, -0.05, 0.00, 0.29, 0.030
+19900627, 0.65, -0.56, -0.14, 0.07, -0.27, 0.030
+19900628, 0.66, 0.02, -0.73, 0.10, -0.10, 0.030
+19900629, 0.17, 0.32, 0.00, -0.37, 0.00, 0.030
+19900702, 0.30, -0.39, -0.12, 0.41, -0.12, 0.032
+19900703, 0.13, -0.18, -0.34, 0.49, -0.21, 0.032
+19900705, -1.04, 0.45, 0.02, -0.10, 0.10, 0.032
+19900706, 0.61, -0.39, -0.25, 0.30, -0.13, 0.032
+19900709, 0.22, -0.32, -0.15, 0.25, -0.40, 0.032
+19900710, -0.67, 0.43, -0.25, 0.16, -0.24, 0.032
+19900711, 1.04, -0.45, -0.55, 0.17, -0.05, 0.032
+19900712, 1.02, -0.54, -0.54, -0.03, 0.53, 0.032
+19900713, 0.42, -0.16, -0.11, 0.03, -0.18, 0.032
+19900716, 0.37, -0.34, -0.45, 0.11, -0.18, 0.032
+19900717, -0.45, -0.25, 0.49, -0.15, 0.36, 0.032
+19900718, -0.92, 0.30, 0.43, -0.24, 0.16, 0.032
+19900719, 0.12, -0.65, 0.06, 0.02, 0.51, 0.032
+19900720, -0.87, 0.62, -0.03, -0.11, 0.31, 0.032
+19900723, -1.89, -0.47, 0.77, -0.34, 0.76, 0.032
+19900724, 0.00, -0.02, 0.13, -0.30, 0.88, 0.032
+19900725, 0.35, 0.10, -0.15, -0.04, -0.22, 0.032
+19900726, -0.25, 0.40, -0.03, -0.25, -0.40, 0.032
+19900727, -0.68, 0.03, 0.49, -0.26, 0.59, 0.032
+19900730, 0.26, -1.13, 0.31, -0.06, 0.44, 0.032
+19900731, 0.07, -0.40, 0.23, -0.29, 0.62, 0.032
+19900801, -0.20, -0.32, -0.09, -0.04, 0.37, 0.028
+19900802, -1.22, -0.18, 0.46, -1.01, 1.43, 0.028
+19900803, -1.84, -0.74, 0.64, -0.21, 0.36, 0.028
+19900806, -3.32, -0.22, 1.37, -1.07, 1.81, 0.028
+19900807, 0.17, -0.06, -0.81, 0.39, -0.46, 0.028
+19900808, 1.11, 0.02, -0.73, 0.79, -1.10, 0.028
+19900809, 0.63, 0.31, -0.96, 0.47, -0.59, 0.028
+19900810, -1.19, 0.18, 0.58, -0.79, 0.84, 0.028
+19900813, 0.71, -1.06, -0.31, 0.34, -0.06, 0.028
+19900814, 0.21, 0.19, -0.20, -0.24, -0.04, 0.028
+19900815, 0.25, -0.16, -0.39, 0.20, -0.32, 0.028
+19900816, -2.18, 0.42, 0.70, -0.61, 0.83, 0.028
+19900817, -1.55, -0.35, 0.80, -0.27, 0.98, 0.028
+19900820, -0.11, -0.92, 0.52, -0.11, 0.63, 0.028
+19900821, -2.00, -0.40, 0.75, -0.24, 0.34, 0.028
+19900822, -1.58, 0.29, 0.90, -0.32, 0.32, 0.028
+19900823, -3.24, -1.03, 1.58, -0.03, 0.31, 0.028
+19900824, 1.46, -0.38, -1.69, 0.98, -1.54, 0.028
+19900827, 3.20, 0.08, -1.85, 1.35, -1.60, 0.028
+19900828, 0.07, 0.47, -0.08, 0.24, 0.03, 0.028
+19900829, 0.74, -0.50, 0.23, 0.05, 0.24, 0.028
+19900830, -1.39, 0.92, 0.33, -0.34, 0.30, 0.028
+19900831, 0.95, -0.80, -0.21, 0.09, 0.08, 0.028
+19900904, 0.09, -0.36, -0.27, 0.05, -0.01, 0.031
+19900905, 0.35, 0.17, -0.17, -0.23, 0.73, 0.031
+19900906, -1.06, 0.40, 0.62, -0.87, 0.60, 0.031
+19900907, 0.79, -0.45, -0.16, 0.00, 0.03, 0.031
+19900910, -0.38, 0.58, 0.02, 0.20, -0.27, 0.031
+19900911, -0.19, -0.12, 0.05, -0.07, 0.15, 0.031
+19900912, 0.29, -0.39, -0.10, -0.07, 0.39, 0.031
+19900913, -1.11, 0.32, 0.23, -0.20, 0.37, 0.031
+19900914, -0.61, -0.09, -0.18, -0.06, 0.28, 0.031
+19900917, 0.18, -0.63, -0.14, -0.17, 0.39, 0.031
+19900918, 0.07, -0.60, -0.13, 0.28, 0.31, 0.031
+19900919, -0.57, 0.49, 0.47, -0.08, 0.44, 0.031
+19900920, -1.61, 0.19, 0.68, -0.40, 0.61, 0.031
+19900921, -0.20, -0.64, 0.14, -0.19, 0.58, 0.031
+19900924, -2.19, -0.33, 0.61, -0.22, 0.71, 0.031
+19900925, 1.03, -0.86, -0.78, 0.72, -0.61, 0.031
+19900926, -1.07, -0.33, 0.23, 0.14, -0.01, 0.031
+19900927, -1.51, -0.36, 0.76, 0.08, 0.30, 0.031
+19900928, 1.50, -1.06, -1.16, 0.92, -1.08, 0.031
+19901001, 2.74, -1.48, -1.23, 1.37, -1.57, 0.030
+19901002, 0.20, 0.50, 0.17, 0.26, -0.31, 0.030
+19901003, -1.16, 0.36, 0.31, -0.18, 0.81, 0.030
+19901004, 0.19, -0.61, 0.36, -0.31, 0.25, 0.030
+19901005, -0.46, -0.23, 0.33, 0.24, 0.31, 0.030
+19901008, 0.53, -0.50, 0.03, 0.22, 0.19, 0.030
+19901009, -2.54, 0.56, 0.78, -0.53, 0.75, 0.030
+19901010, -1.60, 0.22, 0.50, 0.22, -0.09, 0.030
+19901011, -1.76, -0.43, 0.85, 0.20, 0.21, 0.030
+19901012, 1.28, -0.96, -0.46, 0.32, -0.63, 0.030
+19901015, 0.91, -0.93, -0.18, 0.44, -0.12, 0.030
+19901016, -1.40, 0.47, 0.48, -0.39, 0.51, 0.030
+19901017, -0.02, -0.14, -0.43, -0.07, -0.13, 0.030
+19901018, 2.20, -0.75, -1.40, 1.10, -1.49, 0.030
+19901019, 1.77, -1.15, -0.48, 0.16, -0.15, 0.030
+19901022, 0.78, -0.95, -0.30, 0.65, -0.50, 0.030
+19901023, -0.52, 0.90, -0.17, -0.04, -0.41, 0.030
+19901024, -0.03, -0.04, 0.04, -0.24, 0.21, 0.030
+19901025, -0.66, 0.59, 0.15, -0.04, 0.54, 0.030
+19901026, -1.68, 0.52, 0.03, -0.02, 0.38, 0.030
+19901029, -0.96, 0.02, 0.37, -0.07, 0.28, 0.030
+19901030, 0.46, -1.23, -0.12, -0.05, 0.05, 0.030
+19901031, 0.02, -0.07, 0.41, -0.21, 0.25, 0.030
+19901101, 0.79, -0.72, 0.16, -0.21, 0.28, 0.027
+19901102, 1.55, -0.61, -0.32, -0.19, -0.32, 0.027
+19901105, 0.96, -0.21, -0.50, 0.42, -0.72, 0.027
+19901106, -0.71, 0.74, 0.23, -0.27, -0.11, 0.027
+19901107, -1.59, 0.88, 0.38, -0.13, 0.09, 0.027
+19901108, 0.44, -0.70, -0.17, 0.16, -0.08, 0.027
+19901109, 1.81, -0.99, -0.24, -0.01, -0.59, 0.027
+19901112, 1.92, -0.37, -0.69, 0.39, -1.31, 0.027
+19901113, -0.34, 0.65, -0.04, 0.19, -0.53, 0.027
+19901114, 0.82, 0.13, -0.18, 0.27, -0.53, 0.027
+19901115, -0.91, 0.64, 0.00, 0.24, 0.06, 0.027
+19901116, -0.05, -0.09, 0.36, -0.44, 0.07, 0.027
+19901119, 0.58, -0.30, -0.37, 0.32, -0.35, 0.027
+19901120, -1.09, 0.53, 0.01, -0.05, 0.08, 0.027
+19901121, 0.07, -0.19, -0.18, 0.24, 0.07, 0.027
+19901123, -0.25, 0.45, -0.11, 0.25, -0.19, 0.027
+19901126, 0.29, -0.49, 0.19, -0.09, 0.21, 0.027
+19901127, 0.68, 0.39, -0.79, 0.01, -0.24, 0.027
+19901128, 0.04, 0.36, 0.04, -0.28, 0.11, 0.027
+19901129, -0.39, 0.45, -0.30, -0.06, -0.27, 0.027
+19901130, 1.61, -0.67, -0.45, 0.03, -0.22, 0.027
+19901203, 0.68, -0.20, -0.23, 0.58, -0.58, 0.030
+19901204, 0.72, -0.24, 0.18, 0.31, -0.32, 0.030
+19901205, 1.18, 0.46, 0.20, 0.36, -0.50, 0.030
+19901206, -0.22, 0.62, -0.13, 0.46, -0.45, 0.030
+19901207, -0.39, 0.30, -0.09, 0.02, 0.30, 0.030
+19901210, 0.22, -0.45, -0.05, 0.30, -0.21, 0.030
+19901211, -0.61, -0.05, 0.23, -0.26, 0.17, 0.030
+19901212, 0.93, -0.47, -0.51, 0.27, -0.44, 0.030
+19901213, -0.11, 0.52, -0.42, 0.26, 0.24, 0.030
+19901214, -0.78, 0.16, 0.03, -0.27, 0.09, 0.030
+19901217, -0.40, -0.46, 0.06, 0.05, 0.39, 0.030
+19901218, 1.18, -0.66, 0.08, 0.07, -0.52, 0.030
+19901219, 0.07, 0.30, 0.15, 0.05, -0.04, 0.030
+19901220, 0.06, 0.03, -0.19, -0.05, -0.30, 0.030
+19901221, 0.30, -0.31, -0.10, 0.16, -0.38, 0.030
+19901224, -0.40, 0.08, 0.00, 0.00, 0.25, 0.030
+19901226, 0.24, -0.13, -0.09, 0.04, 0.29, 0.030
+19901227, -0.63, 0.50, 0.08, 0.13, 0.07, 0.030
+19901228, -0.02, -0.12, -0.14, 0.09, -0.03, 0.030
+19901231, 0.43, 0.72, -0.54, 0.20, 0.01, 0.030
+19910102, -0.95, 0.56, 0.78, -0.54, 0.07, 0.023
+19910103, -1.25, 0.35, 1.13, -0.37, 0.14, 0.023
+19910104, -0.24, 0.11, 0.40, -0.42, -0.12, 0.023
+19910107, -1.72, 0.33, 0.24, -0.25, 0.57, 0.023
+19910108, -0.29, -0.33, -0.03, 0.05, 0.15, 0.023
+19910109, -0.95, 0.47, 0.03, -0.05, -0.01, 0.023
+19910110, 0.94, -0.44, -0.50, 0.52, -0.58, 0.023
+19910111, 0.10, -0.10, -0.12, 0.25, -0.30, 0.023
+19910114, -1.01, -0.79, 0.16, -0.26, 0.27, 0.023
+19910115, 0.32, -0.40, -0.34, 0.16, -0.25, 0.023
+19910116, 1.00, 0.08, -0.95, 0.45, -0.84, 0.023
+19910117, 3.41, -0.90, -0.78, 1.18, -1.13, 0.023
+19910118, 0.93, -1.19, 0.04, 0.12, -0.16, 0.023
+19910121, -0.08, 0.52, -0.17, 0.06, -0.36, 0.023
+19910122, -0.65, 1.12, 0.27, -0.17, 0.38, 0.023
+19910123, 0.59, 0.59, -0.21, -0.10, -0.01, 0.023
+19910124, 1.45, 0.32, -0.49, 0.24, -0.55, 0.023
+19910125, 0.40, 0.75, -0.20, -0.10, 0.03, 0.023
+19910128, 0.14, 0.79, -0.12, 0.00, -0.10, 0.023
+19910129, 0.10, 0.76, -0.08, -0.04, -0.45, 0.023
+19910130, 1.52, 0.37, -0.43, 0.74, -0.66, 0.023
+19910131, 0.95, 0.63, -0.42, 0.11, -0.08, 0.023
+19910201, -0.03, 1.07, 0.32, -0.20, -0.05, 0.025
+19910204, 1.59, 0.52, 0.20, -0.03, -0.25, 0.025
+19910205, 1.05, 0.29, -0.33, 0.30, -0.32, 0.025
+19910206, 1.77, -0.57, -0.72, -0.36, 0.28, 0.025
+19910207, -0.44, -0.36, 0.60, -0.20, 0.66, 0.025
+19910208, 0.63, -0.35, -0.03, 0.11, 0.10, 0.025
+19910211, 2.37, -0.62, -0.01, 0.34, -0.38, 0.025
+19910212, -0.59, 0.70, 0.14, 0.02, -0.02, 0.025
+19910213, 0.89, 0.18, -0.10, 0.10, -0.09, 0.025
+19910214, -1.20, 0.94, 0.20, -0.06, -0.11, 0.025
+19910215, 1.20, -0.14, -0.20, 0.42, -0.48, 0.025
+19910219, 0.13, -0.05, -0.48, 0.28, -0.52, 0.025
+19910220, -1.06, 0.29, 0.17, -0.46, 0.48, 0.025
+19910221, -0.03, 0.53, -0.11, -0.07, -0.07, 0.025
+19910222, 0.23, 0.29, -0.67, -0.18, -0.36, 0.025
+19910225, 0.40, 0.27, -0.46, 0.47, -0.05, 0.025
+19910226, -1.08, 0.21, 0.32, -0.30, 0.48, 0.025
+19910227, 1.17, -0.51, -0.19, -0.07, 0.25, 0.025
+19910228, 0.02, 0.93, 0.87, -0.31, 0.22, 0.025
+19910301, 0.86, -0.15, -0.18, 0.11, -0.32, 0.022
+19910304, 0.03, 1.37, -0.04, -0.17, -0.17, 0.022
+19910305, 1.91, 0.13, -0.80, 0.31, -0.57, 0.022
+19910306, -0.14, 0.28, 0.07, 0.14, 0.38, 0.022
+19910307, 0.00, 0.25, -0.35, -0.15, 0.07, 0.022
+19910308, -0.23, 0.44, -0.16, -0.15, 0.44, 0.022
+19910311, -0.59, -0.23, 0.45, -0.02, -0.09, 0.022
+19910312, -0.87, -0.18, 1.03, -0.27, 0.36, 0.022
+19910313, 1.10, -0.51, -0.45, 0.01, -0.29, 0.022
+19910314, -0.16, 0.43, -0.01, 0.40, -0.03, 0.022
+19910315, -0.19, -0.48, -0.12, -0.20, 0.10, 0.022
+19910318, -0.27, 0.21, -0.04, -0.13, -0.05, 0.022
+19910319, -1.29, 0.40, 0.14, -0.57, 0.41, 0.022
+19910320, 0.36, 0.52, -0.48, -0.03, -0.05, 0.022
+19910321, -0.26, 0.54, 0.06, -0.27, 0.24, 0.022
+19910322, 0.16, -0.14, 0.26, -0.09, 0.33, 0.022
+19910325, 0.67, -0.21, 0.17, -0.28, 0.06, 0.022
+19910326, 1.67, -0.54, -0.35, 0.64, -1.05, 0.022
+19910327, -0.01, 0.77, -0.42, 0.34, -0.55, 0.022
+19910328, -0.09, 0.75, -0.01, 0.00, -0.16, 0.022
+19910401, -0.85, 0.65, -0.14, 0.02, -0.13, 0.024
+19910402, 1.98, -0.71, -0.72, 0.57, -0.31, 0.024
+19910403, 0.09, 0.74, -0.05, -0.15, -0.41, 0.024
+19910404, 0.29, 0.09, -0.21, -0.39, -0.15, 0.024
+19910405, -0.97, 0.77, 0.30, -0.08, 0.41, 0.024
+19910408, 0.59, -0.64, -0.12, 0.05, 0.22, 0.024
+19910409, -1.08, 0.78, 0.30, -0.02, 0.11, 0.024
+19910410, -0.20, 0.02, 0.25, 0.09, 0.18, 0.024
+19910411, 1.17, -0.31, 0.01, -0.19, 0.01, 0.024
+19910412, 0.60, -0.07, -0.21, -0.11, 0.10, 0.024
+19910415, 0.17, -0.27, 0.12, 0.35, 0.06, 0.024
+19910416, 1.44, -0.67, -0.36, 0.36, -0.04, 0.024
+19910417, 0.78, 0.08, -0.06, 0.28, 0.05, 0.024
+19910418, -0.51, 0.00, 0.82, -0.11, -0.12, 0.024
+19910419, -1.04, 0.48, 0.63, -0.43, 0.41, 0.024
+19910422, -0.98, -0.49, -0.19, -0.10, 0.11, 0.024
+19910423, 0.13, -0.05, 0.14, 0.06, 0.05, 0.024
+19910424, 0.27, 0.06, 0.10, -0.12, -0.24, 0.024
+19910425, -0.79, 0.67, -0.18, 0.24, 0.00, 0.024
+19910426, -0.14, -0.19, 0.21, 0.28, -0.08, 0.024
+19910429, -1.31, 0.35, 0.33, -0.08, 0.29, 0.024
+19910430, 0.18, -1.03, 0.44, 0.11, 0.15, 0.024
+19910501, 1.21, -0.49, 0.05, 0.14, -0.22, 0.021
+19910502, 0.13, 0.55, -0.40, -0.08, -0.19, 0.021
+19910503, 0.09, 0.19, -0.11, 0.06, 0.14, 0.021
+19910506, -0.18, 0.00, -0.05, -0.13, -0.12, 0.021
+19910507, -0.54, 0.68, -0.05, -0.22, 0.00, 0.021
+19910508, 0.21, 0.03, 0.07, -0.08, 0.05, 0.021
+19910509, 1.16, -0.41, -0.48, 0.52, -0.22, 0.021
+19910510, -1.66, 0.90, 0.26, 0.06, 0.09, 0.021
+19910513, 0.17, -0.23, -0.20, 0.28, -0.31, 0.021
+19910514, -1.24, 0.40, 0.11, 0.18, -0.07, 0.021
+19910515, -1.05, -0.71, 0.88, -0.17, 0.48, 0.021
+19910516, 0.94, -0.31, -0.24, -0.05, -0.26, 0.021
+19910517, -0.03, -0.16, 0.06, 0.07, -0.12, 0.021
+19910520, -0.04, -0.17, -0.07, 0.22, -0.24, 0.021
+19910521, 0.74, -0.12, -0.39, 0.40, -0.22, 0.021
+19910522, 0.25, -0.09, -0.04, 0.32, -0.28, 0.021
+19910523, -0.14, 0.51, -0.16, -0.01, -0.42, 0.021
+19910524, 0.63, -0.21, 0.03, -0.08, 0.00, 0.021
+19910528, 1.04, -0.55, -0.17, 0.13, -0.26, 0.021
+19910529, 0.26, 0.24, 0.44, 0.25, 0.00, 0.021
+19910530, 1.01, 0.01, -0.29, 0.31, -0.10, 0.021
+19910531, 0.69, 0.07, 0.21, -0.08, -0.11, 0.021
+19910603, -0.29, 0.43, 0.42, -0.14, 0.10, 0.021
+19910604, -0.05, 0.10, -0.10, 0.18, -0.15, 0.021
+19910605, -0.56, 0.69, 0.40, 0.04, -0.14, 0.021
+19910606, -0.38, 0.21, 0.45, -0.21, 0.57, 0.021
+19910607, -0.95, 0.41, 0.11, 0.07, 0.14, 0.021
+19910610, -0.26, -0.06, 0.04, -0.15, -0.21, 0.021
+19910611, 0.44, -0.48, -0.02, 0.38, 0.07, 0.021
+19910612, -1.11, 0.05, 0.03, 0.47, -0.05, 0.021
+19910613, 0.21, -0.10, -0.06, 0.04, 0.00, 0.021
+19910614, 1.06, -0.50, -0.25, 0.55, -0.12, 0.021
+19910617, -0.41, 0.28, 0.20, 0.10, -0.16, 0.021
+19910618, -0.40, 0.15, 0.18, 0.15, 0.00, 0.021
+19910619, -0.97, 0.03, 0.01, 0.30, -0.21, 0.021
+19910620, 0.01, -0.11, -0.09, 0.01, 0.21, 0.021
+19910621, 0.43, -0.51, 0.06, 0.11, 0.08, 0.021
+19910624, -1.73, 0.03, 0.36, -0.12, 0.17, 0.021
+19910625, -0.22, -0.38, 0.01, -0.01, 0.11, 0.021
+19910626, 0.11, -0.46, -0.04, 0.11, -0.17, 0.021
+19910627, 0.70, -0.43, -0.39, -0.06, 0.38, 0.021
+19910628, -0.64, 0.80, -0.02, 0.03, 0.02, 0.021
+19910701, 1.62, -1.10, -0.35, 0.38, -0.52, 0.022
+19910702, -0.12, -0.01, -0.08, 0.37, -0.13, 0.022
+19910703, -0.98, 0.26, -0.09, 0.05, 0.11, 0.022
+19910705, 0.17, -0.17, -0.11, 0.08, 0.02, 0.022
+19910708, 0.82, -0.55, -0.21, 0.31, -0.49, 0.022
+19910709, -0.13, 0.69, -0.11, 0.17, -0.19, 0.022
+19910710, 0.01, 0.54, -0.16, -0.01, 0.07, 0.022
+19910711, 0.30, -0.02, -0.24, 0.17, -0.02, 0.022
+19910712, 0.75, -0.27, 0.00, 0.04, -0.19, 0.022
+19910715, 0.60, 0.00, 0.22, 0.22, -0.13, 0.022
+19910716, -0.21, 0.16, 0.51, -0.20, 0.39, 0.022
+19910717, -0.05, 0.19, -0.03, -0.19, 0.22, 0.022
+19910718, 0.90, -0.23, 0.02, 0.00, -0.03, 0.022
+19910719, -0.24, 0.50, 0.09, -0.10, 0.07, 0.022
+19910722, -0.37, 0.11, 0.12, -0.17, -0.10, 0.022
+19910723, -0.91, 0.13, 0.24, -0.09, 0.37, 0.022
+19910724, -0.31, -0.19, 0.14, 0.21, 0.10, 0.022
+19910725, 0.55, -0.44, 0.05, -0.02, -0.23, 0.022
+19910726, 0.06, -0.04, -0.04, 0.00, 0.14, 0.022
+19910729, 0.47, -0.55, -0.31, 0.17, -0.30, 0.022
+19910730, 0.86, -0.30, -0.47, 0.19, -0.25, 0.022
+19910731, 0.39, 0.33, -0.43, -0.03, -0.31, 0.022
+19910801, -0.12, 0.23, -0.16, -0.01, -0.38, 0.021
+19910802, 0.09, 0.11, -0.05, -0.08, -0.09, 0.021
+19910805, -0.53, 0.22, 0.20, -0.01, 0.04, 0.021
+19910806, 1.22, -0.90, 0.04, 0.50, 0.07, 0.021
+19910807, 0.09, 0.09, -0.07, -0.03, -0.11, 0.021
+19910808, -0.16, 0.20, -0.02, -0.10, 0.13, 0.021
+19910809, -0.43, 0.57, -0.14, 0.10, 0.16, 0.021
+19910812, 0.20, -0.22, 0.58, 0.19, 0.12, 0.021
+19910813, 0.42, -0.01, 0.68, 0.03, 0.21, 0.021
+19910814, 0.21, 0.22, -0.16, 0.23, -0.30, 0.021
+19910815, -0.16, 0.14, -0.43, 0.12, -0.05, 0.021
+19910816, -0.85, 0.47, -0.03, -0.21, 0.40, 0.021
+19910819, -2.38, -0.59, -0.19, 0.10, 0.02, 0.021
+19910820, 0.72, 0.18, -0.10, 0.14, -0.05, 0.021
+19910821, 2.76, -0.33, -0.34, 0.33, -0.68, 0.021
+19910822, 0.20, 0.26, -0.11, 0.04, 0.13, 0.021
+19910823, 0.62, -0.14, 0.26, -0.18, -0.01, 0.021
+19910826, -0.06, 0.21, -0.01, -0.33, 0.17, 0.021
+19910827, -0.12, 0.26, -0.47, -0.02, -0.16, 0.021
+19910828, 0.85, -0.21, 0.01, 0.01, 0.01, 0.021
+19910829, -0.02, 0.21, -0.05, 0.00, -0.23, 0.021
+19910830, -0.15, 0.45, -0.16, 0.05, 0.10, 0.021
+19910903, -0.80, 0.08, 0.12, -0.19, 0.19, 0.023
+19910904, -0.57, 0.15, -0.04, -0.14, -0.06, 0.023
+19910905, -0.27, 0.22, -0.05, -0.39, 0.25, 0.023
+19910906, -0.03, 0.11, 0.12, -0.08, 0.13, 0.023
+19910909, -0.13, 0.18, -0.11, -0.08, -0.07, 0.023
+19910910, -1.04, -0.09, 0.10, -0.05, 0.12, 0.023
+19910911, 0.18, 0.11, -0.19, 0.06, -0.28, 0.023
+19910912, 0.65, 0.01, -0.55, 0.26, -0.61, 0.023
+19910913, -0.92, 0.68, 0.17, -0.23, 0.32, 0.023
+19910916, 0.42, -0.59, -0.23, -0.06, 0.18, 0.023
+19910917, -0.05, -0.02, -0.12, 0.10, -0.13, 0.023
+19910918, 0.37, -0.03, -0.16, -0.02, -0.06, 0.023
+19910919, 0.32, 0.39, -0.25, -0.08, -0.12, 0.023
+19910920, 0.23, 0.36, -0.28, -0.28, 0.11, 0.023
+19910923, -0.47, 0.12, -0.07, 0.12, -0.23, 0.023
+19910924, 0.44, -0.36, 0.02, -0.19, -0.06, 0.023
+19910925, -0.17, 0.07, -0.02, -0.10, 0.10, 0.023
+19910926, -0.03, 0.14, 0.42, -0.32, 0.04, 0.023
+19910927, -0.21, -0.09, 0.09, -0.04, 0.31, 0.023
+19910930, 0.53, 0.06, -0.04, -0.09, -0.08, 0.023
+19911001, 0.27, -0.12, -0.61, 0.23, -0.27, 0.018
+19911002, -0.29, 0.04, 0.15, -0.25, 0.15, 0.018
+19911003, -0.94, 0.09, 0.39, -0.16, 0.23, 0.018
+19911004, -0.61, 0.48, 0.11, -0.11, 0.07, 0.018
+19911007, -0.60, -0.31, 0.18, 0.25, -0.06, 0.018
+19911008, 0.26, -0.07, -0.06, 0.15, -0.07, 0.018
+19911009, -0.89, 0.55, -0.30, 0.07, -0.09, 0.018
+19911010, 0.73, -0.69, 0.07, 0.29, 0.07, 0.018
+19911011, 0.24, 0.08, 0.19, -0.17, -0.05, 0.018
+19911014, 1.21, -0.45, -0.24, 0.11, -0.30, 0.018
+19911015, 1.23, -0.12, -0.09, -0.09, -0.23, 0.018
+19911016, 0.64, 0.69, -0.10, -0.31, -0.17, 0.018
+19911017, -0.29, 0.15, -0.02, -0.26, 0.17, 0.018
+19911018, 0.18, 0.18, 0.16, -0.27, 0.03, 0.018
+19911021, -0.60, 0.42, -0.04, -0.10, -0.10, 0.018
+19911022, -0.43, 0.52, -0.17, -0.37, 0.03, 0.018
+19911023, -0.05, -0.13, -0.27, -0.01, 0.14, 0.018
+19911024, -0.81, -0.30, 0.38, -0.06, 0.47, 0.018
+19911025, -0.30, -0.22, 0.35, -0.12, 0.11, 0.018
+19911028, 1.18, -0.79, -0.30, 0.05, -0.11, 0.018
+19911029, 0.57, 0.03, 0.04, 0.06, -0.07, 0.018
+19911030, 0.52, 0.20, 0.23, -0.45, -0.18, 0.018
+19911031, 0.09, 0.69, -0.44, -0.16, -0.04, 0.018
+19911101, -0.31, 0.15, -0.29, 0.14, 0.49, 0.020
+19911104, -0.34, -0.12, 0.02, 0.23, 0.04, 0.020
+19911105, -0.26, 0.31, 0.01, -0.20, -0.13, 0.020
+19911106, 0.28, -0.17, 0.28, -0.06, -0.01, 0.020
+19911107, 0.92, -0.21, -0.20, -0.02, -0.18, 0.020
+19911108, 0.01, 0.37, -0.19, -0.21, 0.04, 0.020
+19911111, 0.15, 0.24, -0.67, 0.05, -0.21, 0.020
+19911112, 0.87, -0.19, -0.23, 0.05, -0.07, 0.020
+19911113, 0.12, -0.19, 0.09, 0.47, 0.02, 0.020
+19911114, -0.11, -0.06, -0.08, 0.21, -0.16, 0.020
+19911115, -3.55, 0.25, 1.06, 0.22, 0.88, 0.020
+19911118, 0.50, -0.57, -0.89, 0.39, -0.41, 0.020
+19911119, -1.60, -0.74, 0.32, 0.18, 0.17, 0.020
+19911120, -0.13, 0.48, -0.08, -0.28, -0.02, 0.020
+19911121, 0.43, -0.13, -0.38, -0.17, 0.22, 0.020
+19911122, -0.95, 0.32, -0.29, 0.42, -0.31, 0.020
+19911125, -0.33, -0.41, 0.08, -0.21, -0.22, 0.020
+19911126, 0.50, -0.93, 0.09, 0.10, 0.04, 0.020
+19911127, -0.22, 0.11, -0.33, -0.16, 0.14, 0.020
+19911129, -0.18, 0.61, -0.38, -0.05, -0.21, 0.020
+19911202, 1.38, -1.31, -0.61, 0.59, -0.52, 0.018
+19911203, 0.07, 0.35, -0.49, 0.22, -0.55, 0.018
+19911204, -0.12, 0.35, -0.58, 0.25, 0.00, 0.018
+19911205, -0.55, 0.24, -0.49, -0.11, -0.10, 0.018
+19911206, 0.37, -0.07, -0.37, 0.04, 0.17, 0.018
+19911209, -0.23, -0.16, -0.36, 0.52, -0.32, 0.018
+19911210, -0.12, -0.36, -0.26, 0.47, -0.39, 0.018
+19911211, -0.19, -0.42, 0.12, 0.27, -0.06, 0.018
+19911212, 0.92, -0.33, 0.12, 0.03, 0.13, 0.018
+19911213, 0.72, 0.25, 0.05, 0.01, 0.10, 0.018
+19911216, 0.16, 0.62, -0.82, 0.25, -0.39, 0.018
+19911217, -0.50, 0.10, -0.82, 0.23, -0.52, 0.018
+19911218, 0.11, -0.21, -0.34, 0.33, -0.09, 0.018
+19911219, -0.40, -0.22, -0.01, 0.25, 0.20, 0.018
+19911220, 0.99, -1.22, 0.61, 0.01, 0.29, 0.018
+19911223, 2.28, -1.29, 0.74, 0.11, -0.07, 0.018
+19911224, 0.81, 0.18, 0.57, 0.01, 0.07, 0.018
+19911226, 1.44, 0.18, -0.03, 0.19, -0.17, 0.018
+19911227, 0.58, 0.53, -0.40, 0.20, -0.29, 0.018
+19911230, 2.04, 0.09, -0.37, -0.34, -0.48, 0.018
+19911231, 0.63, 0.50, 0.12, -0.29, 0.13, 0.018
+19920102, -0.10, 0.06, 0.52, -0.18, 0.24, 0.015
+19920103, 0.55, 0.62, 0.15, -0.23, 0.05, 0.015
+19920106, -0.01, 1.11, -0.01, -0.44, -0.16, 0.015
+19920107, 0.06, 0.72, -0.09, -0.12, -0.01, 0.015
+19920108, 0.38, 0.88, -0.69, 0.06, 0.00, 0.015
+19920109, 0.23, 1.18, -0.68, 0.34, -0.19, 0.015
+19920110, -0.63, 0.09, 0.48, -0.19, 0.29, 0.015
+19920113, -0.14, 0.56, -0.04, -0.19, 0.11, 0.015
+19920114, 1.32, -0.02, 0.28, 0.09, 0.29, 0.015
+19920115, 0.31, 0.49, 1.58, -0.27, 0.67, 0.015
+19920116, -0.62, 0.64, 1.92, -0.06, 0.59, 0.015
+19920117, 0.07, 0.43, -0.22, 0.28, -0.06, 0.015
+19920120, -0.66, 0.21, 0.50, -0.43, 0.60, 0.015
+19920121, -1.15, -0.67, 0.35, 0.05, 0.62, 0.015
+19920122, 1.39, -0.03, -0.82, 0.33, -0.47, 0.015
+19920123, -0.43, 0.89, 0.05, -0.23, 0.04, 0.015
+19920124, 0.14, 0.29, -0.07, 0.39, -0.16, 0.015
+19920127, -0.15, 0.03, 1.07, -0.34, 0.45, 0.015
+19920128, 0.00, -0.06, 0.66, 0.00, 0.37, 0.015
+19920129, -1.02, 0.44, -0.12, -0.04, -0.06, 0.015
+19920130, 0.43, 0.26, -0.33, -0.14, -0.43, 0.015
+19920131, -0.51, 0.79, -0.12, 0.11, 0.18, 0.015
+19920203, 0.25, 0.09, 0.35, 0.15, -0.08, 0.015
+19920204, 1.01, 0.04, -0.03, 0.49, -0.04, 0.015
+19920205, 0.24, 0.53, 0.04, 0.28, -0.20, 0.015
+19920206, 0.04, 0.30, 0.61, -0.16, 0.21, 0.015
+19920207, -0.59, 0.44, 0.23, 0.03, 0.30, 0.015
+19920210, 0.46, -0.38, 0.73, 0.12, 0.17, 0.015
+19920211, 0.02, 0.05, 0.46, 0.03, 0.26, 0.015
+19920212, 0.89, 0.15, -0.10, -0.33, -0.50, 0.015
+19920213, -0.83, 0.36, 0.51, 0.01, 0.33, 0.015
+19920214, -0.23, 0.17, 0.87, -0.04, 0.49, 0.015
+19920218, -1.20, 0.22, 1.82, -0.62, 0.81, 0.015
+19920219, -0.01, -0.98, 0.94, 0.14, 0.18, 0.015
+19920220, 1.28, -0.05, -0.14, 0.07, -0.04, 0.015
+19920221, -0.52, 0.39, 0.05, 0.02, -0.04, 0.015
+19920224, -0.05, -0.60, 0.16, 0.25, 0.15, 0.015
+19920225, -0.44, -0.28, -0.41, 0.14, 0.08, 0.015
+19920226, 1.19, 0.05, -0.42, -0.05, -0.29, 0.015
+19920227, -0.13, 0.56, 0.21, -0.06, -0.16, 0.015
+19920228, -0.27, 0.24, 0.28, -0.36, 0.37, 0.015
+19920302, 0.09, 0.24, 0.30, -0.24, 0.08, 0.015
+19920303, 0.03, 0.10, 0.45, -0.26, 0.22, 0.015
+19920304, -0.74, 0.46, 0.29, -0.11, 0.13, 0.015
+19920305, -0.88, -0.41, 0.02, 0.05, -0.01, 0.015
+19920306, -0.56, -0.11, -0.22, 0.01, 0.04, 0.015
+19920309, 0.15, -0.30, 0.22, 0.03, 0.18, 0.015
+19920310, 0.55, 0.15, -0.11, -0.10, -0.16, 0.015
+19920311, -0.73, 0.05, 0.13, 0.16, 0.22, 0.015
+19920312, -0.13, -0.30, -0.14, 0.00, -0.38, 0.015
+19920313, 0.44, -0.12, 0.02, 0.00, 0.01, 0.015
+19920316, 0.04, -0.37, 0.18, 0.21, 0.14, 0.015
+19920317, 0.74, -0.21, 0.02, 0.11, -0.08, 0.015
+19920318, -0.02, 0.59, 0.79, -0.44, 0.32, 0.015
+19920319, 0.17, -0.04, 0.64, -0.19, 0.22, 0.015
+19920320, 0.18, -0.27, 0.31, 0.05, 0.22, 0.015
+19920323, -0.29, 0.01, -0.14, 0.18, -0.14, 0.015
+19920324, -0.28, -0.13, -0.03, 0.27, 0.00, 0.015
+19920325, -0.14, 0.28, 0.05, -0.06, 0.08, 0.015
+19920326, -0.11, -0.34, 0.29, 0.13, 0.32, 0.015
+19920327, -1.09, -0.03, 0.10, 0.16, 0.10, 0.015
+19920330, -0.21, -0.36, 0.39, -0.09, 0.32, 0.015
+19920331, 0.12, 0.22, 0.10, 0.06, 0.13, 0.015
+19920401, 0.02, -0.58, -0.24, 0.37, -0.29, 0.015
+19920402, -1.00, 0.06, 0.16, 0.12, 0.13, 0.015
+19920403, 0.00, -0.67, -0.39, 0.46, -0.32, 0.015
+19920406, 0.91, -0.58, -0.01, 0.02, -0.14, 0.015
+19920407, -1.83, -0.16, 0.84, -0.09, 0.37, 0.015
+19920408, -1.08, -0.50, 0.19, 0.32, -0.51, 0.015
+19920409, 1.63, 0.11, -0.68, 0.04, -0.08, 0.015
+19920410, 0.73, -0.19, 0.21, 0.04, 0.24, 0.015
+19920413, 0.45, -0.36, -0.17, 0.48, 0.00, 0.015
+19920414, 1.39, -0.55, 0.53, 0.19, 0.27, 0.015
+19920415, 0.82, -0.50, 0.34, 0.24, 0.08, 0.015
+19920416, -0.31, -0.69, 1.37, -0.32, 0.45, 0.015
+19920420, -1.52, -0.37, 1.18, -0.02, 0.44, 0.015
+19920421, -0.13, -0.31, 0.58, 0.12, 0.37, 0.015
+19920422, -0.01, 0.04, 0.61, -0.17, 0.48, 0.015
+19920423, 0.22, -0.42, 0.43, -0.12, 0.45, 0.015
+19920424, -0.51, 0.53, -0.05, -0.07, 0.23, 0.015
+19920427, -0.22, -0.56, -0.16, 0.18, 0.03, 0.015
+19920428, -0.09, -0.87, 0.44, -0.04, 0.35, 0.015
+19920429, 0.80, 0.22, -0.15, -0.02, -0.28, 0.015
+19920430, 0.88, 0.56, -0.72, -0.01, 0.01, 0.015
+19920501, -0.45, 0.59, -0.08, -0.07, -0.01, 0.014
+19920504, 1.02, -0.41, -0.36, 0.17, -0.34, 0.014
+19920505, 0.16, 0.17, 0.03, -0.15, -0.01, 0.014
+19920506, 0.04, 0.29, 0.18, -0.27, -0.16, 0.014
+19920507, -0.19, 0.09, 0.22, 0.22, 0.00, 0.014
+19920508, -0.03, -0.17, 0.27, -0.28, 0.33, 0.014
+19920511, 0.51, -0.17, -0.09, 0.14, -0.02, 0.014
+19920512, -0.50, 0.15, 0.57, -0.14, 0.10, 0.014
+19920513, -0.04, -0.14, 0.59, -0.15, 0.27, 0.014
+19920514, -0.81, -0.08, 0.21, 0.01, 0.30, 0.014
+19920515, -0.59, 0.33, -0.11, -0.24, -0.17, 0.014
+19920518, 0.50, -0.43, -0.11, -0.10, -0.13, 0.014
+19920519, 0.72, -0.69, 0.02, 0.07, -0.11, 0.014
+19920520, -0.06, 0.24, 0.05, 0.03, 0.13, 0.014
+19920521, -0.63, 0.48, 0.18, -0.32, 0.22, 0.014
+19920522, 0.27, 0.06, -0.01, -0.12, -0.06, 0.014
+19920526, -0.70, -0.03, -0.05, -0.17, 0.50, 0.014
+19920527, 0.22, -0.13, 0.13, 0.10, -0.24, 0.014
+19920528, 0.88, -0.59, -0.50, 0.43, -0.20, 0.014
+19920529, 0.01, 0.66, 0.05, -0.10, 0.02, 0.014
+19920601, 0.45, -0.16, 0.01, 0.29, -0.13, 0.015
+19920602, -0.62, 0.94, 0.39, -0.31, 0.08, 0.015
+19920603, 0.14, -0.07, 0.30, -0.16, 0.18, 0.015
+19920604, -0.34, 0.26, 0.71, -0.19, 0.08, 0.015
+19920605, -0.08, -0.22, 0.21, 0.00, 0.25, 0.015
+19920608, -0.17, -0.31, 0.56, 0.05, 0.18, 0.015
+19920609, -0.86, -0.29, 0.59, -0.32, 0.54, 0.015
+19920610, -0.71, -0.05, 0.40, -0.12, 0.15, 0.015
+19920611, 0.20, -0.82, -0.06, -0.23, -0.02, 0.015
+19920612, 0.25, 0.08, -0.12, 0.32, -0.06, 0.015
+19920615, -0.02, -0.42, 0.23, 0.03, 0.19, 0.015
+19920616, -0.49, -0.19, 0.60, -0.29, 0.39, 0.015
+19920617, -1.55, -0.37, 0.10, 0.22, 0.25, 0.015
+19920618, -0.43, -0.53, 0.03, -0.09, -0.19, 0.015
+19920619, 0.65, -0.21, -0.28, 0.16, -0.07, 0.015
+19920622, -0.27, -0.79, -0.37, 0.31, -0.31, 0.015
+19920623, 0.29, 0.05, -0.08, 0.03, -0.18, 0.015
+19920624, -0.13, -0.21, 0.44, -0.13, 0.17, 0.015
+19920625, -0.17, 0.02, 0.14, 0.10, 0.05, 0.015
+19920626, 0.05, -0.06, 0.18, 0.01, -0.02, 0.015
+19920629, 1.34, -0.28, -0.48, 0.19, -0.42, 0.015
+19920630, 0.14, 0.84, 0.07, 0.08, -0.04, 0.015
+19920701, 1.05, -0.36, -0.52, 0.41, -0.19, 0.014
+19920702, -0.30, -0.18, 0.51, 0.62, 0.02, 0.014
+19920706, 0.38, -0.65, -0.31, 0.22, -0.14, 0.014
+19920707, -1.04, 0.35, 1.02, -0.23, 0.27, 0.014
+19920708, 0.15, -0.55, 0.00, 0.16, -0.24, 0.014
+19920709, 0.96, -0.03, -0.14, -0.05, -0.04, 0.014
+19920710, 0.19, 0.42, -0.15, -0.03, -0.19, 0.014
+19920713, 0.16, 0.13, -0.11, -0.11, -0.14, 0.014
+19920714, 0.62, 0.03, -0.09, -0.20, 0.03, 0.014
+19920715, -0.12, 0.41, -0.32, -0.08, -0.33, 0.014
+19920716, 0.08, 0.03, -0.55, -0.06, -0.11, 0.014
+19920717, -0.52, 0.00, 0.14, 0.20, 0.16, 0.014
+19920720, -0.48, -0.33, 0.35, 0.13, -0.01, 0.014
+19920721, 0.16, 0.25, -0.41, 0.22, -0.01, 0.014
+19920722, -0.68, 0.22, 0.28, 0.41, 0.14, 0.014
+19920723, 0.24, -0.07, 0.05, -0.17, -0.08, 0.014
+19920724, -0.05, 0.04, 0.20, -0.07, 0.22, 0.014
+19920727, 0.04, 0.07, -0.08, 0.24, -0.20, 0.014
+19920728, 1.31, -0.55, -0.12, -0.17, -0.10, 0.014
+19920729, 1.05, -0.29, -0.34, 0.17, 0.08, 0.014
+19920730, 0.38, 0.08, 0.23, -0.22, 0.19, 0.014
+19920731, 0.16, 0.40, -0.18, 0.12, -0.03, 0.014
+19920803, 0.24, 0.09, -0.37, 0.40, -0.15, 0.012
+19920804, -0.11, 0.19, -0.12, 0.29, -0.14, 0.012
+19920805, -0.52, 0.14, 0.09, 0.30, 0.24, 0.012
+19920806, -0.35, 0.02, -0.23, 0.38, -0.04, 0.012
+19920807, -0.25, 0.20, -0.16, -0.06, -0.22, 0.012
+19920810, 0.01, -0.36, 0.15, 0.06, 0.14, 0.012
+19920811, -0.14, -0.01, 0.14, 0.20, -0.12, 0.012
+19920812, -0.31, 0.19, -0.08, 0.30, -0.20, 0.012
+19920813, 0.04, -0.10, -0.14, 0.19, -0.17, 0.012
+19920814, 0.49, -0.16, 0.06, 0.07, -0.06, 0.012
+19920817, 0.19, -0.15, -0.06, 0.31, -0.15, 0.012
+19920818, 0.08, -0.21, -0.06, 0.15, -0.01, 0.012
+19920819, -0.66, 0.17, -0.11, 0.04, -0.12, 0.012
+19920820, -0.05, -0.21, -0.06, 0.33, -0.26, 0.012
+19920821, -0.75, 0.27, 0.16, 0.19, -0.05, 0.012
+19920824, -1.16, -0.09, -0.24, 0.38, -0.10, 0.012
+19920825, 0.05, -0.42, -0.07, 0.25, -0.06, 0.012
+19920826, 0.49, -0.23, -0.22, 0.18, -0.11, 0.012
+19920827, 0.22, 0.38, -0.04, 0.06, -0.13, 0.012
+19920828, 0.23, -0.10, 0.08, -0.02, 0.16, 0.012
+19920831, -0.13, -0.02, 0.22, -0.09, -0.08, 0.012
+19920901, 0.45, -0.18, -0.40, 0.36, -0.22, 0.012
+19920902, 0.52, 0.20, -0.19, 0.04, -0.06, 0.012
+19920903, 0.11, 0.42, -0.47, 0.08, -0.22, 0.012
+19920904, -0.21, 0.05, -0.13, 0.28, -0.22, 0.012
+19920908, -0.59, 0.12, -0.24, 0.19, 0.00, 0.012
+19920909, 0.41, -0.21, -0.28, -0.13, -0.21, 0.012
+19920910, 0.83, -0.11, -0.17, 0.08, -0.30, 0.012
+19920911, 0.04, 0.32, -0.56, 0.20, -0.18, 0.012
+19920914, 1.39, -0.49, -0.37, 0.16, -0.36, 0.012
+19920915, -1.12, 0.50, 0.25, 0.22, 0.05, 0.012
+19920916, -0.08, -0.12, 0.10, 0.17, 0.18, 0.012
+19920917, 0.02, 0.00, -0.18, 0.16, -0.01, 0.012
+19920918, 0.52, -0.29, 0.27, -0.25, 0.25, 0.012
+19920921, -0.11, -0.07, 0.25, 0.14, 0.16, 0.012
+19920922, -1.04, 0.58, 0.32, 0.00, 0.44, 0.012
+19920923, -0.03, -0.03, -0.02, 0.23, -0.04, 0.012
+19920924, 0.36, 0.00, 0.04, -0.40, -0.16, 0.012
+19920925, -1.06, -0.07, 1.03, -0.18, 0.51, 0.012
+19920928, 0.30, -0.60, 0.32, 0.10, 0.30, 0.012
+19920929, 0.10, -0.09, 0.12, 0.01, -0.09, 0.012
+19920930, 0.38, 0.52, 0.10, 0.04, -0.35, 0.012
+19921001, -0.44, -0.38, 0.18, 0.13, 0.05, 0.010
+19921002, -1.28, 0.41, 0.30, 0.04, 0.21, 0.010
+19921005, -0.82, -0.86, 0.19, 0.21, -0.26, 0.010
+19921006, 0.16, 0.49, -0.19, 0.14, -0.05, 0.010
+19921007, -0.55, 0.71, -0.32, 0.25, -0.06, 0.010
+19921008, 0.81, -0.10, -0.59, 0.25, -0.46, 0.010
+19921009, -1.05, 0.62, 0.18, 0.36, 0.06, 0.010
+19921012, 0.94, -0.63, 0.18, -0.09, -0.02, 0.010
+19921013, 0.48, -0.07, -0.26, 0.16, -0.28, 0.010
+19921014, 0.02, 0.21, -0.17, 0.11, -0.14, 0.010
+19921015, 0.09, 0.14, -0.29, 0.01, -0.32, 0.010
+19921016, 0.45, -0.06, -0.31, 0.13, -0.03, 0.010
+19921019, 0.92, 0.24, -0.92, 0.17, -0.57, 0.010
+19921020, 0.16, 0.31, 0.22, -0.44, 0.27, 0.010
+19921021, 0.17, 0.30, -0.02, 0.09, 0.11, 0.010
+19921022, -0.17, -0.02, 0.11, -0.10, 0.07, 0.010
+19921023, -0.13, 0.40, 0.25, -0.29, 0.13, 0.010
+19921026, 0.82, -0.64, 0.35, -0.21, 0.19, 0.010
+19921027, 0.03, -0.02, -0.17, 0.15, 0.16, 0.010
+19921028, 0.48, 0.09, -0.27, 0.10, 0.13, 0.010
+19921029, 0.28, 0.07, -0.47, 0.09, -0.08, 0.010
+19921030, -0.32, 0.77, -0.06, 0.00, 0.09, 0.010
+19921102, 0.79, -0.35, -0.10, -0.10, -0.27, 0.012
+19921103, -0.50, 0.47, 0.25, -0.28, 0.10, 0.012
+19921104, -0.47, 0.44, 0.25, -0.16, -0.08, 0.012
+19921105, 0.44, 0.25, -0.36, -0.23, -0.20, 0.012
+19921106, 0.03, 0.46, -0.32, -0.04, -0.36, 0.012
+19921109, 0.35, 0.47, -0.59, -0.25, -0.40, 0.012
+19921110, 0.17, 0.59, -0.58, 0.15, -0.48, 0.012
+19921111, 0.86, 0.41, -0.77, 0.23, -0.59, 0.012
+19921112, 0.08, -0.18, 0.17, -0.03, 0.13, 0.012
+19921113, 0.00, 0.44, 0.02, -0.14, -0.07, 0.012
+19921116, -0.33, 0.22, 0.01, 0.06, -0.18, 0.012
+19921117, -0.40, -0.15, 0.53, 0.02, 0.36, 0.012
+19921118, 0.81, 0.01, -0.42, 0.44, -0.17, 0.012
+19921119, 0.23, 0.20, -0.33, 0.21, -0.28, 0.012
+19921120, 0.68, -0.12, -0.09, -0.05, -0.16, 0.012
+19921123, -0.28, 0.25, 0.21, -0.04, 0.08, 0.012
+19921124, 0.60, -0.01, -0.17, 0.10, -0.01, 0.012
+19921125, 0.41, 0.06, 0.33, -0.34, 0.20, 0.012
+19921127, 0.24, 0.00, 0.05, -0.09, 0.31, 0.012
+19921130, 0.34, 0.21, 0.51, -0.24, 0.26, 0.012
+19921201, -0.06, 0.12, 0.06, -0.05, 0.21, 0.013
+19921202, -0.21, 0.39, 0.20, -0.50, 0.02, 0.013
+19921203, 0.06, 0.29, 0.00, -0.10, 0.04, 0.013
+19921204, 0.51, 0.08, -0.16, 0.00, -0.02, 0.013
+19921207, 0.64, -0.07, -0.27, -0.05, 0.10, 0.013
+19921208, 0.32, -0.13, 0.16, 0.16, -0.10, 0.013
+19921209, -0.29, -0.12, 0.21, 0.13, 0.05, 0.013
+19921210, -0.32, -0.36, 0.33, -0.13, 0.19, 0.013
+19921211, -0.17, 0.09, 0.17, 0.10, 0.28, 0.013
+19921214, -0.17, 0.01, 0.19, -0.15, 0.14, 0.013
+19921215, -0.18, -0.41, 0.25, 0.29, 0.05, 0.013
+19921216, -0.37, -0.34, 0.46, -0.13, 0.19, 0.013
+19921217, 0.88, -0.06, -0.50, 0.45, -0.35, 0.013
+19921218, 1.10, -0.60, -0.17, -0.08, -0.03, 0.013
+19921221, -0.08, -0.06, 0.12, 0.33, -0.28, 0.013
+19921222, -0.06, -0.05, 0.59, -0.07, 0.14, 0.013
+19921223, -0.14, 0.37, 0.46, 0.00, 0.08, 0.013
+19921224, 0.19, 0.27, -0.01, -0.09, -0.01, 0.013
+19921228, -0.06, -0.25, 0.09, -0.04, 0.07, 0.013
+19921229, -0.05, 0.44, 0.13, -0.02, -0.20, 0.013
+19921230, 0.20, 0.44, 0.10, -0.21, 0.12, 0.013
+19921231, -0.18, 1.56, 0.00, -0.29, -0.02, 0.013
+19930104, -0.30, -0.36, 0.55, -0.62, 0.51, 0.012
+19930105, -0.19, 0.39, 0.25, -0.12, 0.37, 0.012
+19930106, 0.14, 0.45, 0.49, -0.52, 0.31, 0.012
+19930107, -0.77, 0.62, 0.17, -0.20, -0.04, 0.012
+19930108, -0.40, -0.02, -0.19, -0.19, 0.04, 0.012
+19930111, 0.41, 0.07, 0.30, -0.10, -0.20, 0.012
+19930112, 0.00, -0.26, 0.19, 0.11, 0.06, 0.012
+19930113, 0.50, 0.02, -0.11, 0.34, -0.15, 0.012
+19930114, 0.73, 0.31, -0.17, 0.31, -0.34, 0.012
+19930115, 0.36, 0.18, 0.33, -0.23, 0.22, 0.012
+19930118, 0.01, 0.00, 0.94, 0.03, 0.55, 0.012
+19930119, -0.27, 0.27, 1.32, -0.20, 0.61, 0.012
+19930120, -0.27, 0.62, 0.14, -0.01, 0.02, 0.012
+19930121, 0.43, -0.16, -0.05, -0.24, -0.34, 0.012
+19930122, 0.25, 0.25, 0.29, -0.20, 0.11, 0.012
+19930125, 0.74, -0.02, 0.14, -0.37, 0.31, 0.012
+19930126, 0.02, 0.40, 0.25, 0.30, 0.51, 0.012
+19930127, -0.54, -0.59, 0.65, 0.10, 0.18, 0.012
+19930128, -0.02, -0.32, 0.14, -0.11, 0.17, 0.012
+19930129, 0.11, 0.26, 0.09, 0.14, -0.14, 0.012
+19930201, 0.84, -0.55, 0.22, -0.01, 0.10, 0.012
+19930202, 0.14, 0.15, 0.27, -0.09, 0.35, 0.012
+19930203, 0.95, -0.06, 0.25, 0.01, 0.02, 0.012
+19930204, 0.55, -0.41, 0.70, -0.27, 0.56, 0.012
+19930205, -0.33, -0.57, 0.70, -0.23, 0.97, 0.012
+19930208, -0.21, 0.05, 0.39, -0.20, 0.39, 0.012
+19930209, -0.66, -0.07, 0.16, 0.22, 0.03, 0.012
+19930210, 0.20, -0.20, 0.01, -0.12, -0.15, 0.012
+19930211, 0.30, 0.14, 0.30, -0.39, 0.22, 0.012
+19930212, -0.61, 0.16, 0.36, -0.11, 0.29, 0.012
+19930216, -2.71, -0.77, 0.85, 0.07, 0.50, 0.012
+19930217, -0.43, -0.77, 0.60, -0.30, 0.46, 0.012
+19930218, -0.17, 0.79, 0.00, 0.32, -0.32, 0.012
+19930219, 0.41, -0.04, 1.47, -0.47, 0.83, 0.012
+19930222, -0.16, -1.26, 2.10, 0.13, 1.13, 0.012
+19930223, -0.07, -0.15, -0.47, 0.40, -0.06, 0.012
+19930224, 1.43, -0.55, -1.12, 0.24, -0.79, 0.012
+19930225, 0.42, 0.19, 0.03, 0.15, -0.38, 0.012
+19930226, 0.29, 0.50, -0.40, 0.21, -0.13, 0.012
+19930301, -0.14, 0.22, 0.04, -0.01, -0.05, 0.011
+19930302, 1.18, -0.59, -0.41, 0.25, -0.19, 0.011
+19930303, 0.49, 0.24, -0.03, 0.04, -0.26, 0.011
+19930304, -0.41, 0.36, 0.33, -0.21, 0.07, 0.011
+19930305, -0.17, 0.47, -0.01, -0.21, 0.14, 0.011
+19930308, 1.56, -1.00, -0.20, 0.17, 0.08, 0.011
+19930309, 0.09, 0.15, 0.41, -0.25, 0.16, 0.011
+19930310, 0.49, 0.02, -0.27, 0.42, -0.05, 0.011
+19930311, -0.36, 0.71, -0.12, 0.23, -0.26, 0.011
+19930312, -0.73, 0.42, -0.16, 0.32, -0.15, 0.011
+19930315, 0.31, 0.02, -0.12, 0.02, 0.11, 0.011
+19930316, -0.05, -0.11, 0.37, -0.12, 0.24, 0.011
+19930317, -0.73, 0.08, 0.62, -0.41, 0.31, 0.011
+19930318, 0.65, -0.74, 0.41, -0.46, 0.20, 0.011
+19930319, -0.49, -0.11, 0.71, -0.43, 0.57, 0.011
+19930322, -0.42, -0.54, 0.68, -0.12, 0.32, 0.011
+19930323, -0.06, -0.12, 0.11, 0.04, 0.07, 0.011
+19930324, -0.16, -0.07, -0.06, 0.19, 0.05, 0.011
+19930325, 0.66, -0.07, -0.24, 0.00, 0.01, 0.011
+19930326, -0.38, 0.59, 0.21, -0.20, 0.00, 0.011
+19930329, 0.45, -0.38, -0.17, 0.06, -0.09, 0.011
+19930330, 0.39, -0.15, -0.63, 0.31, -0.32, 0.011
+19930331, 0.15, 0.60, -0.30, 0.08, -0.07, 0.011
+19930401, -0.37, 0.12, 0.31, -0.03, 0.15, 0.011
+19930402, -2.01, 0.28, 0.79, -0.26, 0.31, 0.011
+19930405, 0.12, -0.63, 0.42, -0.45, 0.43, 0.011
+19930406, -0.43, -0.47, 1.07, -0.75, 0.42, 0.011
+19930407, 0.31, -0.19, 0.32, -0.18, -0.15, 0.011
+19930408, -0.22, 0.01, 0.76, -0.20, 0.25, 0.011
+19930412, 1.28, -0.92, -0.10, 0.33, -0.28, 0.011
+19930413, 0.33, 0.10, 0.56, -0.02, 0.50, 0.011
+19930414, -0.06, 0.05, 0.48, -0.44, 0.19, 0.011
+19930415, -0.16, -0.16, 0.37, -0.09, 0.13, 0.011
+19930416, -0.01, -0.35, 0.90, -0.63, 0.90, 0.011
+19930419, -0.37, -0.01, -0.42, 0.08, -0.09, 0.011
+19930420, -0.52, 0.17, -0.69, 0.19, -0.51, 0.011
+19930421, -0.17, 0.61, -0.81, -0.24, -0.57, 0.011
+19930422, -0.74, 0.98, -0.28, -0.29, -0.28, 0.011
+19930423, -0.59, 0.15, -0.21, -0.45, -0.01, 0.011
+19930426, -1.03, -0.37, -0.17, -0.08, 0.62, 0.011
+19930427, 0.91, -0.85, -0.63, 0.29, -0.63, 0.011
+19930428, 0.14, 0.18, 0.18, -0.41, 0.12, 0.011
+19930429, 0.19, 0.09, -0.07, -0.03, 0.07, 0.011
+19930430, 0.38, 0.33, -0.06, -0.12, -0.03, 0.011
+19930503, 0.56, -0.14, -0.54, 0.05, -0.31, 0.011
+19930504, 0.58, 0.67, -0.41, 0.35, -0.38, 0.011
+19930505, 0.31, 0.54, -0.68, -0.12, -0.31, 0.011
+19930506, -0.31, 0.37, -0.06, -0.09, 0.14, 0.011
+19930507, -0.14, 0.21, -0.27, 0.11, -0.03, 0.011
+19930510, 0.20, -0.09, -0.01, -0.05, -0.13, 0.011
+19930511, 0.33, -0.14, 0.37, -0.04, 0.04, 0.011
+19930512, 0.00, -0.05, 0.43, -0.38, 0.50, 0.011
+19930513, -1.15, 0.59, 0.08, -0.40, 0.62, 0.011
+19930514, -0.03, 0.25, -1.12, 0.17, -0.50, 0.011
+19930517, 0.14, -0.17, -0.55, 0.20, -0.05, 0.011
+19930518, 0.06, 0.16, -0.45, 0.34, -0.26, 0.011
+19930519, 1.46, -0.88, -0.79, 0.53, -0.40, 0.011
+19930520, 0.68, -0.19, -0.32, 0.15, -0.53, 0.011
+19930521, -0.81, 0.82, 0.13, -0.35, 0.50, 0.011
+19930524, 0.29, -0.35, 0.14, -0.08, 0.11, 0.011
+19930525, 0.26, -0.03, 0.14, 0.06, -0.12, 0.011
+19930526, 1.00, -0.29, 0.12, 0.09, -0.03, 0.011
+19930527, -0.16, 0.35, 0.45, -0.56, 0.31, 0.011
+19930528, -0.40, 0.16, 0.01, 0.01, -0.33, 0.011
+19930601, 0.75, -0.49, 0.18, -0.48, 0.26, 0.012
+19930602, 0.05, 0.29, 0.05, -0.26, 0.07, 0.012
+19930603, -0.21, 0.31, 0.45, -0.57, 0.19, 0.012
+19930604, -0.58, 0.32, 0.23, -0.71, 0.57, 0.012
+19930607, -0.69, 0.00, 0.26, -0.54, 0.48, 0.012
+19930608, -0.76, -0.15, 0.11, 0.35, -0.25, 0.012
+19930609, 0.27, -0.11, 0.10, 0.17, 0.15, 0.012
+19930610, -0.14, -0.18, -0.14, 0.21, -0.15, 0.012
+19930611, 0.39, -0.07, -0.32, 0.67, -0.44, 0.012
+19930614, 0.13, -0.01, -0.09, 0.19, -0.24, 0.012
+19930615, -0.16, 0.51, 0.22, -0.19, -0.13, 0.012
+19930616, 0.16, -0.30, -0.05, 0.16, 0.11, 0.012
+19930617, 0.22, -0.22, 0.32, -0.22, 0.27, 0.012
+19930618, -0.93, 0.51, 0.67, -0.56, 0.43, 0.012
+19930621, 0.37, -0.74, 0.41, -0.06, 0.04, 0.012
+19930622, -0.10, -0.13, 0.61, 0.03, 0.20, 0.012
+19930623, -0.44, 0.29, -0.02, 0.06, -0.26, 0.012
+19930624, 0.69, -0.47, -0.07, 0.45, -0.06, 0.012
+19930625, 0.35, 0.29, -0.37, 0.35, -0.13, 0.012
+19930628, 1.06, -0.38, 0.11, 0.13, -0.16, 0.012
+19930629, -0.22, 0.44, -0.30, 0.06, -0.03, 0.012
+19930630, 0.13, 0.40, 0.24, -0.29, 0.17, 0.012
+19930701, -0.22, 0.53, 0.48, -0.36, 0.29, 0.011
+19930702, -0.48, 0.65, -0.23, -0.06, -0.21, 0.011
+19930706, -0.79, 0.55, 0.61, -0.18, 0.32, 0.011
+19930707, 0.13, -0.55, 0.44, -0.17, 0.32, 0.011
+19930708, 1.03, -0.69, -0.11, 0.04, -0.11, 0.011
+19930709, 0.05, 0.32, 0.04, -0.18, -0.01, 0.011
+19930712, 0.16, 0.13, -0.15, 0.17, 0.02, 0.011
+19930713, -0.06, 0.30, -0.17, -0.18, -0.25, 0.011
+19930714, 0.43, 0.13, -0.10, -0.25, -0.12, 0.011
+19930715, -0.19, 0.10, 0.40, -0.09, 0.28, 0.011
+19930716, -0.72, 0.24, 0.89, -0.42, 0.33, 0.011
+19930719, -0.13, -0.50, 0.50, 0.09, 0.56, 0.011
+19930720, 0.26, -0.31, -0.28, -0.08, -0.12, 0.011
+19930721, -0.10, 0.00, 0.34, -0.10, 0.05, 0.011
+19930722, -0.57, 0.06, 0.29, -0.11, 0.14, 0.011
+19930723, 0.47, -0.29, -0.42, -0.03, -0.14, 0.011
+19930726, 0.54, -0.09, 0.04, 0.10, 0.18, 0.011
+19930727, -0.24, 0.03, 0.08, 0.32, 0.23, 0.011
+19930728, -0.07, 0.38, 0.01, -0.06, 0.01, 0.011
+19930729, 0.54, -0.48, 0.07, -0.16, 0.12, 0.011
+19930730, -0.38, 0.36, 0.47, -0.43, 0.11, 0.011
+19930802, 0.40, -0.21, 0.01, -0.18, -0.20, 0.011
+19930803, -0.02, 0.24, -0.06, -0.22, -0.16, 0.011
+19930804, -0.01, 0.22, -0.02, -0.09, -0.26, 0.011
+19930805, -0.07, -0.04, -0.34, 0.10, -0.32, 0.011
+19930806, 0.15, 0.12, -0.29, -0.18, 0.10, 0.011
+19930809, 0.46, -0.43, 0.09, -0.11, 0.18, 0.011
+19930810, -0.16, 0.29, 0.46, -0.34, 0.30, 0.011
+19930811, 0.15, 0.00, 0.26, 0.14, 0.25, 0.011
+19930812, -0.29, 0.10, 0.24, -0.04, -0.08, 0.011
+19930813, 0.17, -0.07, -0.13, -0.02, -0.09, 0.011
+19930816, 0.51, -0.38, -0.07, -0.39, -0.04, 0.011
+19930817, 0.31, 0.07, -0.58, 0.44, -0.40, 0.011
+19930818, 0.57, 0.08, -0.79, 0.55, -0.32, 0.011
+19930819, 0.01, -0.06, 0.04, -0.28, 0.13, 0.011
+19930820, 0.00, 0.31, 0.05, 0.02, 0.08, 0.011
+19930823, -0.15, 0.07, 0.16, -0.17, 0.18, 0.011
+19930824, 0.88, -0.31, -0.04, -0.12, 0.17, 0.011
+19930825, 0.04, -0.02, 0.62, -0.41, 0.53, 0.011
+19930826, 0.07, -0.27, 0.39, 0.05, 0.27, 0.011
+19930827, -0.07, 0.28, -0.28, 0.14, -0.14, 0.011
+19930830, 0.29, -0.02, -0.15, -0.03, -0.05, 0.011
+19930831, 0.44, 0.24, 0.01, 0.03, -0.11, 0.011
+19930901, 0.03, 0.26, -0.10, 0.05, -0.15, 0.012
+19930902, -0.21, 0.63, -0.43, 0.01, -0.25, 0.012
+19930903, 0.06, 0.21, 0.11, -0.08, 0.11, 0.012
+19930907, -0.76, -0.27, 0.57, -0.01, 0.27, 0.012
+19930908, -0.66, -0.73, 0.44, 0.31, 0.20, 0.012
+19930909, 0.37, 0.23, -0.19, -0.08, -0.13, 0.012
+19930910, 0.87, 0.00, -0.25, -0.03, -0.16, 0.012
+19930913, 0.01, -0.09, 0.49, -0.07, 0.38, 0.012
+19930914, -0.57, -0.18, 0.12, 0.21, 0.12, 0.012
+19930915, 0.34, -0.03, -0.19, 0.09, -0.15, 0.012
+19930916, -0.26, 0.49, -0.01, -0.18, -0.30, 0.012
+19930917, -0.09, 0.29, 0.23, 0.00, -0.14, 0.012
+19930920, -0.58, 0.58, 0.15, -0.21, -0.08, 0.012
+19930921, -0.61, -0.38, -0.18, 0.35, 0.02, 0.012
+19930922, 0.84, 0.24, -0.54, 0.02, -0.51, 0.012
+19930923, 0.47, 0.19, -0.83, 0.17, -0.53, 0.012
+19930924, 0.07, 0.24, -0.04, 0.01, 0.21, 0.012
+19930927, 0.79, -0.26, -0.34, 0.10, -0.14, 0.012
+19930928, 0.06, 0.23, 0.30, -0.02, 0.12, 0.012
+19930929, -0.19, 0.51, 0.13, 0.01, 0.64, 0.012
+19930930, -0.10, 0.89, 0.10, 0.12, 0.34, 0.012
+19931001, 0.33, -0.40, 0.35, -0.22, 0.49, 0.011
+19931004, 0.05, 0.17, 0.05, -0.01, -0.07, 0.011
+19931005, -0.06, -0.09, 0.01, 0.09, -0.02, 0.011
+19931006, -0.05, 0.50, -0.12, -0.06, 0.07, 0.011
+19931007, -0.31, 0.24, -0.07, -0.03, 0.04, 0.011
+19931008, 0.15, -0.08, -0.11, 0.19, -0.13, 0.011
+19931011, 0.19, 0.24, -0.51, -0.07, -0.14, 0.011
+19931012, 0.23, 0.37, -0.48, 0.10, -0.16, 0.011
+19931013, 0.20, 0.40, -0.48, 0.42, -0.12, 0.011
+19931014, 0.89, -0.43, -0.63, 0.08, -0.14, 0.011
+19931015, 0.46, 0.05, -0.50, 0.13, -0.16, 0.011
+19931018, -0.32, 0.16, -0.24, -0.42, 0.02, 0.011
+19931019, -0.79, -0.56, 1.03, -0.07, 0.49, 0.011
+19931020, -0.13, -0.22, 0.25, 0.07, 0.25, 0.011
+19931021, -0.06, 0.09, -0.14, 0.05, -0.06, 0.011
+19931022, -0.25, 0.53, 0.19, -0.47, 0.07, 0.011
+19931025, 0.03, -0.12, -0.06, 0.41, 0.22, 0.011
+19931026, -0.16, -0.13, 0.15, 0.01, 0.15, 0.011
+19931027, 0.25, 0.26, -0.09, -0.26, -0.22, 0.011
+19931028, 0.53, -0.18, 0.09, -0.26, 0.18, 0.011
+19931029, 0.24, 0.79, -0.21, 0.23, -0.14, 0.011
+19931101, 0.28, -0.19, -0.23, -0.07, -0.20, 0.012
+19931102, -0.09, 0.45, -0.26, 0.20, 0.17, 0.012
+19931103, -1.26, 0.34, -0.58, 0.48, 0.03, 0.012
+19931104, -1.35, -0.16, 0.27, -0.33, 0.40, 0.012
+19931105, 0.45, -0.61, -0.32, 0.33, -0.24, 0.012
+19931108, 0.27, 0.22, -0.11, -0.26, -0.35, 0.012
+19931109, 0.18, 0.37, -0.37, 0.25, -0.43, 0.012
+19931110, 0.65, -0.17, -0.24, -0.02, -0.49, 0.012
+19931111, -0.08, 0.37, -0.06, 0.17, -0.07, 0.012
+19931112, 0.46, -0.29, 0.16, -0.16, 0.12, 0.012
+19931115, -0.42, -0.12, 0.20, 0.06, 0.00, 0.012
+19931116, 0.38, -0.90, 0.05, 0.48, -0.19, 0.012
+19931117, -0.55, -0.19, 0.51, -0.29, 0.58, 0.012
+19931118, -0.40, -0.31, 0.42, -0.14, 0.03, 0.012
+19931119, -0.30, -0.01, 0.04, 0.16, 0.07, 0.012
+19931122, -1.09, -0.67, 0.68, 0.35, 0.48, 0.012
+19931123, 0.54, -0.13, -0.13, -0.10, -0.18, 0.012
+19931124, 0.49, 0.10, 0.03, -0.23, -0.19, 0.012
+19931126, 0.25, -0.03, -0.08, 0.15, -0.58, 0.012
+19931129, -0.19, 0.11, 0.16, 0.33, -0.33, 0.012
+19931130, -0.08, 0.35, -0.39, 0.19, 0.30, 0.012
+19931201, 0.32, 0.56, -0.10, -0.15, -0.44, 0.010
+19931202, 0.23, -0.14, -0.07, 0.00, -0.17, 0.010
+19931203, 0.40, -0.01, -0.17, -0.01, -0.05, 0.010
+19931206, 0.29, -0.25, 0.03, 0.35, -0.12, 0.010
+19931207, 0.03, -0.07, 0.14, 0.07, 0.02, 0.010
+19931208, -0.06, 0.19, 0.21, -0.16, -0.07, 0.010
+19931209, -0.44, 0.13, 0.37, -0.19, 0.28, 0.010
+19931210, -0.07, -0.20, 0.32, -0.12, 0.43, 0.010
+19931213, 0.19, -0.53, 0.19, 0.31, 0.19, 0.010
+19931214, -0.61, -0.28, 0.20, 0.23, 0.07, 0.010
+19931215, -0.21, 0.15, -0.25, 0.13, -0.25, 0.010
+19931216, 0.24, 0.03, -0.10, 0.31, -0.20, 0.010
+19931217, 0.64, 0.00, 0.20, -0.07, 0.15, 0.010
+19931220, -0.08, -0.06, 0.08, 0.02, 0.06, 0.010
+19931221, -0.25, -0.39, 0.31, 0.21, 0.20, 0.010
+19931222, 0.29, -0.40, 0.13, -0.10, 0.03, 0.010
+19931223, 0.14, 0.23, -0.33, -0.04, 0.04, 0.010
+19931227, 0.58, -0.33, -0.02, 0.11, 0.06, 0.010
+19931228, 0.23, 0.18, 0.07, -0.06, -0.31, 0.010
+19931229, 0.11, 0.76, -0.20, -0.06, 0.00, 0.010
+19931230, -0.25, 0.44, -0.25, 0.15, -0.05, 0.010
+19931231, -0.09, 1.33, -0.25, -0.23, -0.13, 0.010
+19940103, -0.45, -0.21, 0.41, -0.26, 0.60, 0.012
+19940104, 0.24, -0.07, 0.25, -0.56, 0.36, 0.012
+19940105, 0.21, 0.22, -0.12, -0.21, 0.00, 0.012
+19940106, -0.07, 0.24, -0.14, -0.02, 0.01, 0.012
+19940107, 0.48, -0.12, 0.15, 0.31, -0.02, 0.012
+19940110, 0.88, -0.78, 0.05, 0.01, 0.01, 0.012
+19940111, -0.16, 0.10, -0.03, -0.04, -0.07, 0.012
+19940112, 0.04, 0.14, -0.14, 0.13, -0.12, 0.012
+19940113, -0.17, 0.34, 0.21, -0.19, 0.18, 0.012
+19940114, 0.47, -0.21, -0.01, 0.02, -0.15, 0.012
+19940117, -0.25, 0.39, 0.10, -0.35, 0.13, 0.012
+19940118, 0.10, -0.01, 0.09, -0.19, 0.01, 0.012
+19940119, -0.08, 0.20, 0.03, 0.02, 0.09, 0.012
+19940120, 0.21, 0.13, -0.15, -0.26, -0.04, 0.012
+19940121, -0.05, 0.23, 0.09, -0.33, 0.06, 0.012
+19940124, -0.47, 0.18, 0.38, -0.06, 0.31, 0.012
+19940125, -0.26, -0.11, -0.03, 0.18, -0.12, 0.012
+19940126, 0.41, -0.11, -0.09, 0.24, -0.23, 0.012
+19940127, 0.78, -0.62, 0.35, -0.24, -0.01, 0.012
+19940128, 0.42, 0.03, 0.08, 0.02, -0.02, 0.012
+19940131, 0.57, -0.11, 0.55, -0.45, 0.37, 0.012
+19940201, -0.28, 0.34, -0.15, 0.12, -0.03, 0.011
+19940202, 0.43, -0.04, 0.00, 0.03, 0.07, 0.011
+19940203, -0.21, 0.16, 0.10, 0.02, -0.01, 0.011
+19940204, -2.32, 0.15, 0.27, 0.29, 0.26, 0.011
+19940207, 0.33, -0.41, 0.06, 0.07, 0.09, 0.011
+19940208, 0.05, 0.68, 0.18, -0.39, -0.20, 0.011
+19940209, 0.44, 0.32, -0.11, 0.06, -0.13, 0.011
+19940210, -0.67, 0.41, -0.29, 0.42, -0.03, 0.011
+19940211, 0.03, -0.45, -0.28, 0.36, 0.11, 0.011
+19940214, 0.11, 0.00, -0.16, 0.10, -0.27, 0.011
+19940215, 0.47, 0.01, -0.34, 0.12, -0.17, 0.011
+19940216, 0.06, 0.62, -0.15, 0.05, -0.11, 0.011
+19940217, -0.46, 0.21, -0.14, 0.24, -0.02, 0.011
+19940218, -0.48, 0.21, -0.04, 0.18, 0.12, 0.011
+19940222, 0.63, -0.49, -0.04, 0.13, -0.24, 0.011
+19940223, -0.14, 0.11, -0.30, 0.17, -0.07, 0.011
+19940224, -1.25, 0.25, 0.25, 0.25, 0.02, 0.011
+19940225, 0.36, -0.07, -0.18, 0.27, -0.17, 0.011
+19940228, 0.38, 0.68, -0.19, 0.01, -0.28, 0.011
+19940301, -0.52, -0.03, 0.10, 0.05, 0.05, 0.012
+19940302, -0.13, -0.68, 0.21, -0.24, 0.32, 0.012
+19940303, -0.24, 0.36, -0.10, -0.28, 0.02, 0.012
+19940304, 0.46, 0.10, 0.00, -0.26, -0.27, 0.012
+19940307, 0.56, 0.21, -0.16, 0.18, -0.19, 0.012
+19940308, -0.23, 0.21, 0.21, 0.20, 0.16, 0.012
+19940309, 0.16, -0.07, -0.10, 0.17, -0.04, 0.012
+19940310, -0.62, 0.31, 0.05, -0.14, 0.10, 0.012
+19940311, 0.44, -0.41, 0.32, -0.19, 0.47, 0.012
+19940314, 0.29, 0.01, 0.00, 0.02, -0.03, 0.012
+19940315, 0.03, 0.23, 0.05, -0.14, -0.09, 0.012
+19940316, 0.56, 0.08, 0.09, -0.11, 0.05, 0.012
+19940317, 0.30, 0.01, -0.51, 0.23, -0.02, 0.012
+19940318, 0.05, 0.45, -0.20, -0.10, 0.06, 0.012
+19940321, -0.50, -0.20, 0.21, 0.31, 0.23, 0.012
+19940322, 0.04, 0.11, 0.44, -0.13, 0.21, 0.012
+19940323, 0.03, 0.20, 0.30, -0.03, -0.02, 0.012
+19940324, -0.98, -0.17, 0.02, 0.53, 0.05, 0.012
+19940325, -0.62, 0.59, -0.15, 0.00, 0.05, 0.012
+19940328, -0.47, -1.14, 0.48, 0.22, -0.11, 0.012
+19940329, -1.80, -0.29, 0.47, 0.13, 0.33, 0.012
+19940330, -1.53, -0.27, 0.02, 0.28, 0.20, 0.012
+19940331, -0.13, -0.66, -0.36, 0.11, -0.18, 0.012
+19940404, -1.58, -0.20, 0.32, -0.10, 0.15, 0.014
+19940405, 2.37, 0.45, -0.55, -0.37, -0.66, 0.014
+19940406, 0.03, 0.17, 0.25, -0.15, -0.04, 0.014
+19940407, 0.60, -0.03, 0.00, -0.11, -0.12, 0.014
+19940408, -0.81, 0.43, -0.09, 0.44, -0.07, 0.014
+19940411, 0.33, -0.50, 0.27, 0.03, 0.12, 0.014
+19940412, -0.54, -0.22, 0.61, 0.24, 0.43, 0.014
+19940413, -0.61, -0.74, 0.37, 0.29, 0.20, 0.014
+19940414, 0.04, 0.01, 0.53, -0.28, 0.54, 0.014
+19940415, 0.03, -0.09, 0.10, -0.19, 0.19, 0.014
+19940418, -0.82, 0.08, 0.39, 0.23, 0.17, 0.014
+19940419, -0.26, -0.87, -0.01, 0.81, 0.37, 0.014
+19940420, -0.42, -1.11, 0.59, 0.39, 0.37, 0.014
+19940421, 1.47, -0.45, -0.58, 0.34, -0.81, 0.014
+19940422, -0.05, 0.72, -0.44, -0.22, 0.17, 0.014
+19940425, 1.00, -0.10, 0.03, -0.31, 0.08, 0.014
+19940426, 0.05, 0.64, -0.11, -0.11, -0.13, 0.014
+19940428, -0.55, 0.85, -0.28, -0.01, -0.18, 0.014
+19940429, 0.47, -0.05, 0.23, 0.04, 0.29, 0.014
+19940502, 0.50, -0.01, -0.38, 0.30, -0.36, 0.015
+19940503, -0.01, 0.15, 0.08, 0.03, 0.05, 0.015
+19940504, -0.15, 0.26, -0.37, 0.08, -0.34, 0.015
+19940505, -0.10, 0.01, -0.15, -0.32, 0.25, 0.015
+19940506, -0.91, -0.01, 0.22, -0.15, 0.70, 0.015
+19940509, -1.24, 0.13, -0.03, 0.37, 0.21, 0.015
+19940510, 0.59, -0.58, -0.10, 0.29, -0.01, 0.015
+19940511, -1.06, -0.07, 0.03, -0.06, 0.30, 0.015
+19940512, 0.38, -0.15, -0.11, 0.15, 0.15, 0.015
+19940513, 0.04, -0.33, 0.33, 0.14, -0.12, 0.015
+19940516, -0.16, -0.50, 0.26, 0.09, 0.31, 0.015
+19940517, 0.81, -1.15, 0.60, 0.08, -0.13, 0.015
+19940518, 1.14, -0.16, -0.28, 0.01, -0.34, 0.015
+19940519, 0.61, 0.07, -0.24, -0.22, -0.06, 0.015
+19940520, -0.24, 0.11, 0.21, -0.36, 0.42, 0.015
+19940523, -0.33, 0.13, -0.08, 0.12, 0.00, 0.015
+19940524, 0.40, -0.27, -0.18, 0.16, -0.26, 0.015
+19940525, 0.27, -0.35, 0.31, 0.08, 0.20, 0.015
+19940526, 0.23, 0.13, 0.09, 0.35, -0.03, 0.015
+19940527, 0.08, 0.13, -0.03, -0.08, -0.08, 0.015
+19940531, -0.16, 0.02, -0.07, -0.15, -0.24, 0.015
+19940601, 0.27, -0.07, 0.24, -0.22, -0.19, 0.014
+19940602, 0.15, 0.71, -0.39, 0.33, -0.23, 0.014
+19940603, 0.47, -0.33, -0.48, 0.51, -0.17, 0.014
+19940606, 0.00, 0.26, 0.28, 0.16, 0.08, 0.014
+19940607, -0.25, -0.12, -0.08, 0.28, 0.05, 0.014
+19940608, -0.45, -0.28, 0.70, -0.04, 0.53, 0.014
+19940609, 0.02, -0.29, 0.09, 0.00, 0.25, 0.014
+19940610, 0.25, 0.24, 0.13, -0.15, 0.14, 0.014
+19940613, 0.06, -0.21, 0.50, -0.18, -0.03, 0.014
+19940614, 0.57, -0.40, 0.28, -0.05, 0.12, 0.014
+19940615, -0.31, 0.37, 0.15, -0.20, -0.04, 0.014
+19940616, 0.22, -0.11, -0.17, 0.06, 0.23, 0.014
+19940617, -0.70, 0.27, 0.14, -0.06, 0.07, 0.014
+19940620, -0.93, -0.47, 0.11, 0.31, 0.21, 0.014
+19940621, -0.95, -0.27, 0.14, 0.27, 0.40, 0.014
+19940622, 0.34, 0.13, 0.10, -0.01, 0.18, 0.014
+19940623, -0.89, -0.21, 0.46, 0.17, 0.40, 0.014
+19940624, -1.41, 0.14, 0.06, -0.02, -0.12, 0.014
+19940627, 0.89, -0.72, -0.26, -0.05, -0.38, 0.014
+19940628, -0.24, -0.12, -0.32, 0.32, -0.29, 0.014
+19940629, 0.36, 0.05, -0.19, 0.06, -0.05, 0.014
+19940630, -0.51, 0.85, 0.27, -0.30, 0.45, 0.014
+19940701, 0.42, -0.26, 0.16, 0.03, -0.34, 0.014
+19940705, -0.04, -0.19, -0.09, -0.01, 0.17, 0.014
+19940706, -0.03, -0.15, 0.31, -0.14, 0.18, 0.014
+19940707, 0.49, -0.19, 0.15, 0.05, -0.25, 0.014
+19940708, 0.17, -0.25, -0.27, -0.12, -0.24, 0.014
+19940711, -0.30, 0.22, -0.03, -0.12, 0.17, 0.014
+19940712, 0.07, 0.16, -0.04, -0.03, -0.09, 0.014
+19940713, 0.37, 0.16, -0.18, 0.06, -0.33, 0.014
+19940714, 0.98, -0.17, -0.12, -0.29, 0.06, 0.014
+19940715, 0.08, 0.02, 0.22, -0.22, 0.44, 0.014
+19940718, 0.19, -0.31, 0.04, -0.05, -0.25, 0.014
+19940719, -0.27, 0.17, 0.02, -0.34, 0.36, 0.014
+19940720, -0.54, -0.02, 0.21, 0.03, 0.29, 0.014
+19940721, 0.19, -0.19, 0.27, -0.01, 0.00, 0.014
+19940722, 0.05, -0.15, 0.11, -0.12, -0.07, 0.014
+19940725, 0.17, -0.24, 0.00, 0.20, -0.02, 0.014
+19940726, -0.17, 0.07, 0.20, 0.11, 0.14, 0.014
+19940727, -0.25, -0.16, 0.12, -0.05, 0.40, 0.014
+19940728, 0.24, -0.32, 0.03, 0.10, 0.10, 0.014
+19940729, 0.95, 0.01, -0.44, 0.05, -0.65, 0.014
+19940801, 0.53, -0.35, 0.20, 0.02, 0.16, 0.016
+19940802, 0.10, 0.09, 0.09, -0.09, 0.05, 0.016
+19940803, 0.01, 0.08, 0.32, -0.13, -0.03, 0.016
+19940804, -0.52, 0.30, -0.01, 0.22, 0.23, 0.016
+19940805, -0.32, 0.11, -0.08, 0.23, 0.05, 0.016
+19940808, 0.20, -0.09, 0.06, 0.16, 0.07, 0.016
+19940809, 0.09, 0.03, -0.05, -0.06, -0.19, 0.016
+19940810, 0.55, 0.07, -0.78, 0.28, -0.35, 0.016
+19940811, -0.26, 0.23, -0.25, 0.18, -0.16, 0.016
+19940812, 0.55, -0.22, -0.30, -0.10, -0.03, 0.016
+19940815, -0.02, 0.30, 0.06, 0.03, -0.12, 0.016
+19940816, 0.60, -0.49, -0.26, 0.47, -0.45, 0.016
+19940817, 0.17, 0.37, -0.50, 0.23, -0.42, 0.016
+19940818, -0.35, 0.45, -0.28, 0.05, 0.12, 0.016
+19940819, 0.12, 0.11, -0.07, -0.06, -0.08, 0.016
+19940822, -0.20, 0.30, -0.34, 0.15, -0.22, 0.016
+19940823, 0.54, 0.11, -0.36, -0.12, -0.20, 0.016
+19940824, 0.71, -0.40, 0.00, -0.22, 0.21, 0.016
+19940825, -0.07, 0.27, -0.07, -0.23, -0.06, 0.016
+19940826, 1.08, -0.60, -0.29, 0.03, -0.41, 0.016
+19940829, 0.17, 0.02, -0.03, -0.02, 0.30, 0.016
+19940830, 0.35, -0.04, 0.19, -0.17, -0.02, 0.016
+19940831, -0.10, 0.61, 0.05, 0.02, 0.23, 0.016
+19940901, -0.49, 0.10, 0.09, 0.07, 0.34, 0.017
+19940902, -0.32, 0.51, -0.01, 0.00, -0.05, 0.017
+19940906, 0.03, -0.25, 0.12, -0.09, 0.25, 0.017
+19940907, -0.02, 0.37, -0.21, -0.18, -0.15, 0.017
+19940908, 0.46, 0.04, -0.36, 0.01, -0.12, 0.017
+19940909, -0.93, 0.60, 0.08, 0.00, 0.14, 0.017
+19940912, -0.44, 0.14, 0.00, 0.16, 0.10, 0.017
+19940913, 0.30, 0.23, -0.36, 0.16, -0.22, 0.017
+19940914, 0.26, -0.04, 0.09, -0.14, 0.01, 0.017
+19940915, 1.14, -0.36, -0.49, 0.14, -0.06, 0.017
+19940916, -0.52, 0.62, 0.10, -0.12, -0.20, 0.017
+19940919, -0.13, -0.09, -0.18, 0.02, 0.03, 0.017
+19940920, -1.44, 0.54, 0.27, 0.04, 0.26, 0.017
+19940921, -0.55, -0.19, 0.03, 0.11, -0.01, 0.017
+19940922, -0.10, 0.08, -0.17, -0.13, 0.15, 0.017
+19940923, -0.33, 0.09, -0.14, -0.08, 0.22, 0.017
+19940926, 0.20, -0.43, -0.12, 0.31, 0.12, 0.017
+19940927, 0.16, -0.16, -0.16, 0.30, 0.09, 0.017
+19940928, 0.59, -0.07, -0.23, -0.17, 0.21, 0.017
+19940929, -0.37, 0.27, -0.09, 0.08, -0.03, 0.017
+19940930, 0.21, 0.66, -0.25, 0.10, -0.15, 0.017
+19941003, -0.27, -0.28, -0.14, -0.24, 0.04, 0.018
+19941004, -1.47, 0.18, 0.41, -0.07, 0.36, 0.018
+19941005, -0.38, -0.45, -0.06, 0.31, -0.26, 0.018
+19941006, -0.23, 0.41, -0.16, -0.04, 0.25, 0.018
+19941007, 0.60, -0.29, -0.10, -0.09, 0.15, 0.018
+19941010, 0.75, -0.16, -0.29, -0.08, -0.27, 0.018
+19941011, 1.28, -0.63, -0.68, 0.28, -0.42, 0.018
+19941012, -0.01, 0.22, 0.00, 0.02, -0.19, 0.018
+19941013, 0.35, -0.24, 0.03, 0.11, 0.19, 0.018
+19941014, 0.17, -0.38, 0.31, -0.03, 0.22, 0.018
+19941017, -0.07, 0.08, -0.09, 0.16, -0.05, 0.018
+19941018, -0.20, -0.20, 0.09, -0.05, 0.14, 0.018
+19941019, 0.49, -0.14, -0.10, -0.05, -0.20, 0.018
+19941020, -0.67, 0.30, -0.09, 0.11, -0.23, 0.018
+19941021, -0.41, 0.14, -0.14, -0.08, 0.14, 0.018
+19941024, -0.77, 0.38, -0.22, 0.14, -0.14, 0.018
+19941025, -0.03, -0.47, 0.33, 0.15, 0.36, 0.018
+19941026, 0.27, -0.19, -0.41, 0.13, -0.21, 0.018
+19941027, 0.63, -0.15, -0.34, -0.10, -0.10, 0.018
+19941028, 1.52, -0.72, -0.18, -0.16, -0.27, 0.018
+19941031, -0.18, 0.30, 0.06, 0.14, -0.17, 0.018
+19941101, -0.77, 0.28, -0.39, 0.34, -0.50, 0.018
+19941102, -0.24, 0.43, -0.12, -0.23, -0.18, 0.018
+19941103, 0.25, -0.11, 0.29, -0.04, 0.14, 0.018
+19941104, -0.93, 0.64, -0.11, -0.10, -0.03, 0.018
+19941107, -0.04, -0.45, -0.03, 0.28, 0.01, 0.018
+19941108, 0.50, -0.32, -0.23, 0.28, -0.20, 0.018
+19941109, -0.09, -0.13, -0.11, 0.27, 0.00, 0.018
+19941110, -0.26, -0.08, -0.01, 0.09, -0.17, 0.018
+19941111, -0.42, 0.07, -0.21, 0.04, 0.11, 0.018
+19941114, 0.67, -0.47, -0.38, 0.21, -0.39, 0.018
+19941115, -0.11, 0.22, 0.13, -0.18, 0.10, 0.018
+19941116, 0.02, -0.11, -0.24, 0.00, 0.04, 0.018
+19941117, -0.46, 0.11, -0.26, 0.05, 0.19, 0.018
+19941118, -0.44, 0.18, -0.41, 0.04, -0.12, 0.018
+19941121, -0.75, 0.09, 0.00, 0.18, 0.17, 0.018
+19941122, -1.84, 0.14, 0.29, 0.27, 0.36, 0.018
+19941123, -0.15, -0.83, 0.91, -0.14, -0.07, 0.018
+19941125, 0.62, -0.03, -0.09, -0.20, -0.14, 0.018
+19941128, 0.35, -0.26, -0.36, 0.05, -0.13, 0.018
+19941129, 0.25, 0.16, -0.15, -0.13, -0.16, 0.018
+19941130, -0.21, 0.56, 0.52, -0.22, 0.49, 0.018
+19941201, -1.04, 0.11, 0.06, 0.05, 0.25, 0.021
+19941202, 0.71, -0.50, 0.06, -0.02, -0.05, 0.021
+19941205, 0.08, -0.12, 0.15, -0.19, -0.31, 0.021
+19941206, -0.17, -0.32, 0.31, 0.12, 0.29, 0.021
+19941207, -0.54, -0.33, 0.22, -0.19, 0.16, 0.021
+19941208, -1.43, -0.31, 0.24, 0.10, 0.83, 0.021
+19941209, 0.16, -0.67, 0.12, 0.33, 0.00, 0.021
+19941212, 0.39, -0.48, -0.17, 0.10, -0.07, 0.021
+19941213, 0.22, -0.20, 0.12, 0.27, -0.44, 0.021
+19941214, 1.02, -0.32, -0.19, -0.06, -0.20, 0.021
+19941215, 0.33, 0.76, 0.01, -0.38, -0.02, 0.021
+19941216, 0.46, -0.64, -0.09, -0.16, 0.20, 0.021
+19941219, -0.22, -0.04, 0.38, 0.11, 0.18, 0.021
+19941220, -0.07, 0.22, 0.01, -0.06, -0.07, 0.021
+19941221, 0.62, 0.40, -0.30, -0.01, -0.18, 0.021
+19941222, -0.04, 0.27, -0.42, 0.00, 0.00, 0.021
+19941223, 0.22, 0.23, 0.01, 0.02, 0.06, 0.021
+19941227, 0.46, -0.03, -0.16, 0.21, -0.23, 0.021
+19941228, -0.41, 0.11, -0.14, 0.05, -0.04, 0.021
+19941229, 0.28, 0.25, -0.11, 0.22, -0.66, 0.021
+19941230, -0.14, 1.60, 0.38, -0.13, 0.58, 0.021
+19950103, -0.26, -0.86, 0.85, -0.34, 0.61, 0.020
+19950104, 0.33, -0.18, 0.65, 0.21, 0.12, 0.020
+19950105, -0.05, 0.06, 0.03, -0.23, -0.03, 0.020
+19950106, 0.18, 0.01, 0.30, -0.38, -0.07, 0.020
+19950109, 0.08, 0.02, 0.09, -0.40, -0.39, 0.020
+19950110, 0.20, 0.02, -0.26, -0.33, -0.37, 0.020
+19950111, -0.09, -0.18, -0.19, 0.07, -0.13, 0.020
+19950112, 0.01, 0.02, 0.11, -0.27, -0.15, 0.020
+19950113, 0.87, -0.32, 0.37, 0.07, -0.03, 0.020
+19950116, 0.80, -0.39, -0.09, -0.01, -0.37, 0.020
+19950117, 0.22, 0.36, -0.46, 0.18, -0.01, 0.020
+19950118, -0.15, -0.01, -0.08, -0.13, 0.24, 0.020
+19950119, -0.57, 0.12, -0.19, 0.34, 0.16, 0.020
+19950120, -0.51, 0.21, -0.20, 0.31, 0.22, 0.020
+19950123, 0.00, -0.65, 0.24, 0.30, 0.10, 0.020
+19950124, 0.16, 0.29, -0.21, -0.07, -0.23, 0.020
+19950125, 0.20, -0.29, 0.27, 0.19, 0.22, 0.020
+19950126, 0.04, -0.24, -0.16, 0.16, 0.01, 0.020
+19950127, 0.39, -0.25, -0.09, 0.48, -0.36, 0.020
+19950130, -0.45, -0.28, -0.13, 0.41, -0.27, 0.020
+19950131, 0.39, -0.23, 0.04, 0.04, -0.03, 0.020
+19950201, 0.15, -0.04, 0.18, -0.41, -0.23, 0.021
+19950202, 0.44, 0.04, -0.24, 0.30, -0.18, 0.021
+19950203, 1.22, -0.60, 0.32, -0.27, -0.32, 0.021
+19950206, 0.61, 0.03, -0.46, 0.30, -0.22, 0.021
+19950207, -0.07, 0.18, 0.25, -0.20, 0.34, 0.021
+19950208, 0.13, 0.18, -0.19, -0.11, -0.38, 0.021
+19950209, -0.09, 0.39, -0.12, -0.10, -0.19, 0.021
+19950210, 0.23, 0.20, -0.16, 0.39, 0.07, 0.021
+19950213, 0.02, 0.02, 0.10, 0.12, 0.32, 0.021
+19950214, 0.09, -0.23, 0.38, 0.00, 0.06, 0.021
+19950215, 0.48, 0.23, 0.09, -0.12, -0.03, 0.021
+19950216, -0.05, -0.51, -0.14, 0.01, -0.05, 0.021
+19950217, -0.58, 0.12, 0.24, -0.20, 0.31, 0.021
+19950221, -0.05, -0.27, 0.39, -0.08, 0.33, 0.021
+19950222, 0.40, -0.34, 0.03, 0.24, -0.21, 0.021
+19950223, 0.45, -0.14, 0.23, 0.17, -0.14, 0.021
+19950224, 0.16, 0.14, 0.19, 0.26, 0.04, 0.021
+19950227, -0.82, 0.00, 0.10, 0.01, 0.24, 0.021
+19950228, 0.82, 0.13, -0.21, 0.29, -0.13, 0.021
+19950301, -0.31, 0.21, -0.40, 0.12, -0.34, 0.020
+19950302, -0.14, 0.16, -0.33, 0.21, -0.16, 0.020
+19950303, 0.14, 0.12, -0.16, -0.15, 0.04, 0.020
+19950306, -0.13, -0.22, -0.31, 0.19, 0.15, 0.020
+19950307, -0.75, 0.14, -0.15, 0.29, 0.06, 0.020
+19950308, 0.21, 0.02, 0.01, -0.18, 0.02, 0.020
+19950309, 0.05, -0.08, 0.01, -0.01, 0.08, 0.020
+19950310, 1.12, -0.71, -0.30, 0.13, -0.14, 0.020
+19950313, 0.09, -0.05, -0.02, -0.26, 0.01, 0.020
+19950314, 0.56, -0.14, -0.40, 0.41, -0.26, 0.020
+19950315, -0.17, 0.18, 0.23, 0.07, -0.09, 0.020
+19950316, 0.56, -0.32, 0.01, -0.13, 0.04, 0.020
+19950317, -0.07, -0.13, -0.35, 0.15, 0.04, 0.020
+19950320, 0.10, 0.14, -0.26, 0.15, -0.16, 0.020
+19950321, -0.24, -0.03, -0.10, 0.09, -0.11, 0.020
+19950322, 0.04, -0.24, 0.05, -0.13, 0.25, 0.020
+19950323, 0.08, 0.08, 0.11, -0.03, 0.11, 0.020
+19950324, 0.93, -0.52, 0.01, -0.19, -0.10, 0.020
+19950327, 0.48, -0.15, 0.07, -0.26, -0.09, 0.020
+19950328, 0.15, 0.14, -0.25, 0.31, -0.32, 0.020
+19950329, -0.17, -0.05, 0.63, -0.37, 0.45, 0.020
+19950330, -0.08, 0.11, 0.80, -0.65, 0.47, 0.020
+19950331, -0.27, 0.63, 0.04, -0.07, 0.19, 0.020
+19950403, 0.14, -0.12, 0.09, 0.43, -0.24, 0.023
+19950404, 0.47, -0.49, 0.28, 0.01, 0.60, 0.023
+19950405, 0.09, -0.01, 0.30, -0.10, 0.02, 0.023
+19950406, 0.05, -0.03, 0.61, -0.11, 0.18, 0.023
+19950407, -0.04, -0.37, 0.15, 0.04, 0.00, 0.023
+19950410, 0.25, 0.31, -0.21, 0.05, -0.45, 0.023
+19950411, -0.17, 0.46, -0.02, 0.06, 0.11, 0.023
+19950412, 0.33, -0.21, 0.16, -0.02, 0.15, 0.023
+19950413, 0.34, 0.17, -0.15, -0.14, -0.22, 0.023
+19950417, -0.53, 0.44, 0.45, 0.05, 0.12, 0.023
+19950418, -0.34, -0.04, 0.09, 0.26, 0.28, 0.023
+19950419, -0.30, -0.60, 0.61, -0.26, 0.59, 0.023
+19950420, 0.16, -0.02, 0.29, -0.31, 0.50, 0.023
+19950421, 0.51, -0.10, 0.08, 0.07, -0.09, 0.023
+19950424, 0.72, -0.33, -0.02, 0.12, -0.12, 0.023
+19950425, -0.09, 0.22, 0.13, -0.11, 0.00, 0.023
+19950426, 0.14, 0.25, -0.36, 0.04, -0.25, 0.023
+19950427, 0.20, 0.11, -0.08, -0.07, -0.14, 0.023
+19950428, 0.16, 0.01, -0.20, 0.01, -0.09, 0.023
+19950501, -0.13, 0.04, 0.13, -0.18, 0.47, 0.024
+19950502, 0.08, -0.04, -0.11, 0.05, 0.18, 0.024
+19950503, 0.94, -0.70, -0.33, 0.23, -0.38, 0.024
+19950504, -0.10, -0.46, 0.27, 0.10, 0.12, 0.024
+19950505, -0.10, -0.05, 0.26, 0.19, 0.05, 0.024
+19950508, 0.64, -0.27, 0.22, -0.27, -0.21, 0.024
+19950509, 0.05, -0.30, 0.37, -0.19, -0.21, 0.024
+19950510, 0.15, 0.15, 0.33, -0.05, -0.04, 0.024
+19950511, 0.23, 0.22, -0.49, 0.00, -0.28, 0.024
+19950512, 0.23, 0.03, 0.24, -0.46, -0.11, 0.024
+19950515, 0.42, -0.18, 0.46, -0.13, 0.02, 0.024
+19950516, 0.12, 0.28, -0.06, 0.10, 0.22, 0.024
+19950517, -0.21, 0.46, -0.14, -0.04, -0.22, 0.024
+19950518, -1.30, 0.77, 0.17, 0.00, 0.03, 0.024
+19950519, -0.08, 0.03, -0.18, 0.36, 0.11, 0.024
+19950522, 0.76, -0.37, 0.16, -0.13, -0.14, 0.024
+19950523, 0.85, -0.44, 0.07, 0.15, -0.29, 0.024
+19950524, -0.05, -0.09, 0.02, -0.24, -0.01, 0.024
+19950525, -0.04, -0.06, -0.08, 0.47, -0.01, 0.024
+19950526, -0.82, 0.43, 0.23, -0.13, 0.04, 0.024
+19950530, -0.22, -0.34, 0.43, 0.18, 0.63, 0.024
+19950531, 1.46, -1.19, -0.29, 0.43, 0.06, 0.024
+19950601, 0.15, 0.24, 0.37, -0.02, -0.20, 0.021
+19950602, 0.00, 0.22, 0.21, -0.14, -0.73, 0.021
+19950605, 0.61, 0.06, -0.10, 0.02, -0.40, 0.021
+19950606, -0.03, 0.20, -0.16, -0.21, 0.16, 0.021
+19950607, -0.34, 0.52, -0.45, 0.13, -0.12, 0.021
+19950608, -0.08, 0.57, -0.41, -0.25, -0.18, 0.021
+19950609, -0.73, 0.59, -0.27, 0.05, 0.11, 0.021
+19950612, 0.50, -0.02, -0.33, -0.03, -0.06, 0.021
+19950613, 0.92, -0.41, 0.01, -0.04, -0.16, 0.021
+19950614, 0.07, 0.16, -0.26, 0.20, -0.03, 0.021
+19950615, 0.22, 0.37, -0.24, 0.07, -0.07, 0.021
+19950616, 0.43, -0.16, -0.45, 0.18, -0.06, 0.021
+19950619, 0.92, -0.51, -0.21, 0.01, -0.70, 0.021
+19950620, 0.04, 0.06, 0.47, 0.10, -0.41, 0.021
+19950621, -0.04, 0.27, 0.04, 0.23, -0.32, 0.021
+19950622, 1.15, -0.70, -0.46, 0.03, -0.42, 0.021
+19950623, -0.29, 0.21, -0.08, -0.22, 0.23, 0.021
+19950626, -1.00, 0.12, 0.53, 0.02, 0.50, 0.021
+19950627, -0.39, 0.09, 0.20, -0.32, 0.65, 0.021
+19950628, 0.32, -0.42, 0.14, 0.14, 0.20, 0.021
+19950629, -0.03, 0.51, -0.40, -0.11, -0.23, 0.021
+19950630, 0.28, 0.83, -0.33, -0.22, -0.08, 0.021
+19950703, 0.33, -0.34, -0.14, 0.11, 0.18, 0.023
+19950705, 0.19, 0.14, 0.27, -0.34, -0.22, 0.023
+19950706, 1.12, -0.68, 0.10, 0.15, -0.13, 0.023
+19950707, 0.59, 0.34, 0.13, -0.08, -0.34, 0.023
+19950710, 0.17, 0.40, 0.34, 0.41, -0.18, 0.023
+19950711, -0.34, 0.60, -0.27, 0.29, 0.08, 0.023
+19950712, 1.10, -0.18, -0.58, 0.15, -0.75, 0.023
+19950713, 0.07, 0.30, -0.20, 0.01, -0.35, 0.023
+19950714, -0.15, 0.31, -0.38, -0.06, -0.20, 0.023
+19950717, 0.40, 0.06, -0.67, 0.25, -0.16, 0.023
+19950718, -0.81, 0.09, 0.64, 0.05, 0.55, 0.023
+19950719, -1.65, -0.62, 0.85, 0.28, 1.01, 0.023
+19950720, 0.59, 0.26, -0.26, -0.07, 0.27, 0.023
+19950721, 0.06, 0.39, -0.57, -0.10, -0.11, 0.023
+19950724, 0.69, 0.20, -0.50, 0.06, -0.43, 0.023
+19950725, 0.76, -0.37, -0.03, -0.25, -0.41, 0.023
+19950726, 0.23, 0.21, -0.37, -0.03, -0.25, 0.023
+19950727, 0.71, 0.07, -0.26, -0.06, -0.28, 0.023
+19950728, -0.28, 0.52, 0.22, -0.37, 0.10, 0.023
+19950731, -0.10, 0.29, 0.06, -0.01, -0.04, 0.023
+19950801, -0.51, 0.11, 0.20, -0.23, 0.60, 0.020
+19950802, -0.21, -0.01, 0.83, -0.41, 0.57, 0.020
+19950803, -0.11, -0.15, 0.43, 0.05, 0.16, 0.020
+19950804, 0.15, 0.25, -0.15, 0.08, -0.14, 0.020
+19950807, 0.24, 0.08, 0.12, -0.19, 0.10, 0.020
+19950808, 0.05, -0.10, -0.06, 0.17, -0.01, 0.020
+19950809, 0.01, 0.39, -0.48, 0.00, -0.28, 0.020
+19950810, -0.27, 0.25, 0.09, -0.02, 0.13, 0.020
+19950811, -0.34, 0.33, -0.07, 0.04, -0.16, 0.020
+19950814, 0.74, -0.42, -0.50, 0.03, -0.15, 0.020
+19950815, -0.10, 0.23, 0.03, -0.14, 0.03, 0.020
+19950816, 0.45, 0.09, -0.03, -0.46, -0.37, 0.020
+19950817, 0.00, 0.45, 0.02, -0.17, 0.07, 0.020
+19950818, 0.07, 0.28, 0.00, -0.12, 0.10, 0.020
+19950821, -0.22, 0.62, 0.38, -0.07, 0.49, 0.020
+19950822, 0.18, -0.47, -0.15, 0.08, -0.35, 0.020
+19950823, -0.27, 0.40, -0.15, -0.01, -0.09, 0.020
+19950824, -0.07, -0.15, 0.30, 0.18, 0.30, 0.020
+19950825, 0.40, -0.29, 0.30, -0.32, 0.35, 0.020
+19950828, -0.30, -0.05, 1.12, 0.22, 0.55, 0.020
+19950829, 0.02, -0.74, 0.61, 0.31, 0.06, 0.020
+19950830, 0.33, 0.35, -0.07, -0.11, -0.42, 0.020
+19950831, 0.32, 0.34, -0.13, -0.21, 0.02, 0.020
+19950901, 0.27, -0.09, 0.45, -0.27, 0.24, 0.022
+19950905, 0.96, -0.47, -0.26, 0.16, -0.82, 0.022
+19950906, 0.36, 0.35, -0.40, -0.13, -0.09, 0.022
+19950907, 0.08, 0.45, -0.31, -0.14, -0.02, 0.022
+19950908, 0.51, 0.22, -0.07, -0.21, -0.13, 0.022
+19950911, 0.24, -0.09, -0.36, -0.10, -0.24, 0.022
+19950912, 0.25, -0.06, -0.21, -0.16, 0.51, 0.022
+19950913, 0.40, -0.20, -0.33, 0.38, -0.07, 0.022
+19950914, 0.59, -0.47, 0.24, 0.19, 0.19, 0.022
+19950915, -0.18, -0.41, 0.81, 0.22, 0.74, 0.022
+19950918, -0.14, -0.22, -0.55, 0.07, -0.23, 0.022
+19950919, 0.30, -0.17, -0.36, 0.12, -0.64, 0.022
+19950920, 0.44, -0.08, -0.15, 0.06, -0.32, 0.022
+19950921, -0.62, 0.36, -0.32, 0.09, -0.04, 0.022
+19950922, -0.32, -0.07, -0.34, 0.37, 0.15, 0.022
+19950925, -0.19, -0.35, 0.30, 0.24, 0.39, 0.022
+19950926, -0.12, -0.26, 0.16, 0.28, 0.31, 0.022
+19950927, -0.31, -0.93, 0.84, 0.53, 0.25, 0.022
+19950928, 0.89, -0.19, -0.12, -0.51, -0.38, 0.022
+19950929, -0.11, 0.86, 0.25, 0.06, 0.55, 0.022
+19951002, -0.63, -0.47, 0.57, 0.12, 0.55, 0.021
+19951003, -0.17, -0.90, 0.31, 0.43, 0.12, 0.021
+19951004, -0.46, -0.59, 0.58, 0.80, 0.70, 0.021
+19951005, 0.29, -0.34, -0.16, -0.26, -0.43, 0.021
+19951006, 0.00, 0.22, 0.14, 0.10, 0.05, 0.021
+19951009, -1.07, -0.65, 1.02, 0.56, 0.81, 0.021
+19951010, -0.25, -0.68, 0.39, -0.02, 0.34, 0.021
+19951011, 0.62, 0.44, -0.34, -0.29, -0.51, 0.021
+19951012, 0.80, 0.03, -0.25, -0.08, -0.70, 0.021
+19951013, 0.33, 0.29, -0.23, -0.16, -0.04, 0.021
+19951016, -0.20, 0.22, 0.08, 0.11, -0.09, 0.021
+19951017, 0.60, -0.56, -0.58, 0.16, -0.52, 0.021
+19951018, 0.22, 0.17, -0.48, 0.15, -0.30, 0.021
+19951019, 0.31, -0.53, -0.55, 0.16, 0.31, 0.021
+19951020, -0.57, 0.50, 0.14, 0.19, 0.55, 0.021
+19951023, -0.38, -0.29, -0.06, 0.11, -0.36, 0.021
+19951024, 0.11, -0.12, -0.55, 0.10, -0.06, 0.021
+19951025, -0.85, -0.19, -0.05, 0.04, 0.27, 0.021
+19951026, -0.95, -0.10, -0.10, 0.50, -0.27, 0.021
+19951027, 0.41, -0.67, 0.22, -0.17, -0.28, 0.021
+19951030, 0.64, -0.27, -0.59, -0.30, -0.30, 0.021
+19951031, -0.27, 0.35, -0.29, -0.07, 0.06, 0.021
+19951101, 0.51, -0.25, 0.19, -0.15, -0.18, 0.020
+19951102, 1.03, -0.15, -0.13, -0.22, -0.40, 0.020
+19951103, 0.31, 0.30, -0.23, -0.25, -0.10, 0.020
+19951106, -0.29, 0.30, 0.15, -0.22, 0.15, 0.020
+19951107, -0.50, 0.03, 0.43, 0.13, 0.47, 0.020
+19951108, 0.72, -0.44, -0.15, 0.22, 0.17, 0.020
+19951109, 0.45, 0.11, -0.49, 0.07, -0.72, 0.020
+19951110, -0.12, 0.30, -0.10, -0.02, -0.01, 0.020
+19951113, -0.15, -0.11, -0.02, 0.00, 0.36, 0.020
+19951114, -0.66, -0.01, 0.40, 0.25, 0.67, 0.020
+19951115, 0.55, -0.57, -0.27, 0.40, -0.02, 0.020
+19951116, 0.59, -0.25, 0.14, -0.16, 0.37, 0.020
+19951117, 0.38, -0.13, 0.20, -0.20, 0.36, 0.020
+19951120, -0.58, 0.20, 0.56, 0.09, 0.44, 0.020
+19951121, 0.21, -0.88, 0.54, 0.29, 0.24, 0.020
+19951122, -0.24, 0.11, 0.66, -0.34, 0.27, 0.020
+19951124, 0.33, -0.10, -0.19, -0.15, -0.30, 0.020
+19951127, 0.17, -0.07, 0.18, -0.29, 0.17, 0.020
+19951128, 0.79, -0.38, -0.77, 0.29, -0.52, 0.020
+19951129, 0.41, 0.15, -0.08, -0.13, -0.01, 0.020
+19951130, -0.03, 0.72, -0.16, -0.33, -0.34, 0.020
+19951201, 0.13, 0.25, 0.28, -0.10, 0.59, 0.024
+19951204, 1.04, -0.49, -0.09, 0.04, -0.14, 0.024
+19951205, 0.43, -0.32, -0.11, -0.05, 0.18, 0.024
+19951206, 0.18, -0.42, 0.32, 0.40, 0.40, 0.024
+19951207, -0.70, 0.25, -0.22, -0.03, -0.02, 0.024
+19951208, 0.20, 0.09, -0.27, 0.26, -0.33, 0.024
+19951211, 0.24, -0.25, -0.22, 0.04, 0.33, 0.024
+19951212, -0.26, 0.02, -0.06, -0.03, 0.20, 0.024
+19951213, 0.43, -0.08, -0.06, -0.05, 0.18, 0.024
+19951214, -0.83, 0.80, 0.44, 0.04, 0.69, 0.024
+19951215, -0.29, -0.38, 0.49, -0.29, 0.33, 0.024
+19951218, -1.76, -0.38, 1.01, 0.67, 0.55, 0.024
+19951219, 0.99, -0.47, -0.31, -0.59, -0.63, 0.024
+19951220, -0.57, 1.55, 0.26, -0.60, 0.13, 0.024
+19951221, 0.70, -0.10, -0.34, -0.63, 0.06, 0.024
+19951222, 0.32, 0.19, -0.12, -0.34, 0.08, 0.024
+19951226, 0.30, -0.13, -0.20, 0.05, 0.15, 0.024
+19951227, 0.14, 0.21, 0.00, -0.05, 0.10, 0.024
+19951228, -0.06, 0.00, 0.28, 0.10, 0.04, 0.024
+19951229, 0.41, 0.29, -0.26, -0.25, 0.07, 0.024
+19960102, 0.59, -0.40, -0.16, -0.01, -0.01, 0.019
+19960103, -0.08, -0.22, 0.66, 0.01, 0.72, 0.019
+19960104, -0.82, -0.37, 0.25, 0.22, 0.52, 0.019
+19960105, -0.15, 0.70, -0.17, -0.08, 0.26, 0.019
+19960108, 0.24, -0.23, -0.06, -0.19, 0.23, 0.019
+19960109, -1.67, 0.18, 1.17, -0.10, 1.41, 0.019
+19960110, -1.62, 0.26, 0.07, 0.09, -0.43, 0.019
+19960111, 0.87, -0.04, -0.63, -0.27, -0.53, 0.019
+19960112, -0.13, -0.05, 0.23, 0.19, 0.03, 0.019
+19960115, -0.58, -0.38, 0.70, -0.02, 0.79, 0.019
+19960116, 1.02, -1.34, 0.05, 0.47, 0.10, 0.019
+19960117, -0.09, 0.28, 0.27, -0.29, 0.11, 0.019
+19960118, 0.37, 0.13, -0.67, -0.22, 0.02, 0.019
+19960119, 0.57, -0.24, -0.49, 0.18, -0.29, 0.019
+19960122, 0.41, 0.13, -0.30, -0.40, -0.33, 0.019
+19960123, -0.02, 0.38, -0.18, 0.14, -0.20, 0.019
+19960124, 1.05, -0.49, -0.40, 0.10, -0.21, 0.019
+19960125, -0.40, 0.51, 0.31, -0.09, 0.32, 0.019
+19960126, 0.63, -0.40, -0.44, 0.12, -0.05, 0.019
+19960129, 0.37, -0.21, 0.28, -0.15, 0.11, 0.019
+19960130, 0.91, -0.41, -0.08, 0.00, -0.24, 0.019
+19960131, 0.83, -0.37, -0.17, -0.25, -0.12, 0.019
+19960201, 0.43, 0.12, -0.43, 0.03, -0.39, 0.020
+19960202, -0.28, 0.40, -0.43, -0.12, -0.14, 0.020
+19960205, 0.74, -0.56, -0.38, 0.45, -0.42, 0.020
+19960206, 0.68, -0.39, -0.06, -0.09, 0.14, 0.020
+19960207, 0.36, -0.61, 0.17, 0.57, 0.15, 0.020
+19960208, 0.80, -0.46, -0.43, 0.03, -0.24, 0.020
+19960209, 0.08, 0.16, 0.00, 0.09, 0.07, 0.020
+19960212, 0.54, -0.54, 0.19, -0.07, 0.09, 0.020
+19960213, -0.20, -0.30, 0.58, 0.07, 0.29, 0.020
+19960214, -0.46, 0.85, -0.02, -0.28, -0.22, 0.020
+19960215, -0.31, 0.42, -0.18, -0.33, -0.11, 0.020
+19960216, -0.39, 0.75, 0.04, -0.07, -0.14, 0.020
+19960220, -1.05, 0.23, -0.16, 0.00, -0.09, 0.020
+19960221, 1.05, -0.33, -0.57, 0.16, -0.38, 0.020
+19960222, 1.57, -0.57, -0.54, -0.01, -0.44, 0.020
+19960223, 0.08, 0.13, -0.06, -0.15, -0.27, 0.020
+19960226, -1.05, 1.01, 0.34, 0.05, 0.04, 0.020
+19960227, -0.44, 0.34, 0.28, 0.08, 0.26, 0.020
+19960228, -0.19, 0.43, 0.27, -0.11, -0.18, 0.020
+19960229, -0.60, 0.65, -0.03, 0.06, 0.22, 0.020
+19960301, 0.25, -0.48, 0.74, 0.17, 0.54, 0.019
+19960304, 0.92, -0.54, -0.04, 0.14, 0.06, 0.019
+19960305, 0.68, -0.40, -0.48, 0.37, -0.35, 0.019
+19960306, -0.38, 0.44, 0.29, -0.35, 0.36, 0.019
+19960307, 0.18, -0.14, -0.12, -0.01, -0.35, 0.019
+19960308, -2.91, 0.58, 0.08, 0.22, -0.27, 0.019
+19960311, 0.92, -0.16, -0.64, -0.25, 0.33, 0.019
+19960312, -0.49, 0.26, 0.09, 0.01, -0.07, 0.019
+19960313, 0.42, 0.27, -0.04, -0.42, -0.31, 0.019
+19960314, 0.41, 0.20, 0.02, -0.25, -0.07, 0.019
+19960315, 0.17, -0.08, -0.45, 0.44, -0.49, 0.019
+19960318, 1.47, -0.66, -0.04, 0.32, 0.08, 0.019
+19960319, -0.15, 0.23, 0.42, 0.02, 0.16, 0.019
+19960320, -0.28, 0.31, 0.35, 0.45, -0.17, 0.019
+19960321, -0.09, 0.33, 0.01, -0.05, 0.11, 0.019
+19960322, 0.20, 0.01, -0.08, -0.03, -0.06, 0.019
+19960325, -0.30, -0.32, 0.99, 0.33, 0.21, 0.019
+19960326, 0.28, -0.30, -0.01, 0.31, 0.00, 0.019
+19960327, -0.34, 0.64, -0.02, -0.21, -0.12, 0.019
+19960328, 0.04, 0.12, 0.08, 0.16, -0.15, 0.019
+19960329, -0.21, 1.17, -0.13, -0.09, -0.39, 0.019
+19960401, 1.04, -0.70, -0.04, 0.66, 0.09, 0.022
+19960402, 0.21, 0.16, -0.14, 0.04, 0.10, 0.022
+19960403, 0.13, 0.26, -0.16, 0.06, 0.00, 0.022
+19960404, 0.04, 0.20, 0.01, -0.42, 0.20, 0.022
+19960408, -1.67, 0.55, -0.31, -0.09, -0.08, 0.022
+19960409, -0.13, 0.59, 0.18, -0.19, -0.05, 0.022
+19960410, -1.19, 0.91, -0.32, 0.01, -0.17, 0.022
+19960411, -0.54, 0.26, -0.22, 0.15, 0.34, 0.022
+19960412, 0.83, -0.44, 0.13, 0.07, -0.08, 0.022
+19960415, 0.81, -0.05, -0.30, 0.15, -0.32, 0.022
+19960416, 0.49, 0.11, -0.69, -0.02, -0.29, 0.022
+19960417, -0.49, 0.46, 0.36, 0.30, -0.05, 0.022
+19960418, 0.47, 0.41, -0.46, 0.02, -0.35, 0.022
+19960419, 0.22, 0.17, -0.32, 0.02, 0.02, 0.022
+19960422, 0.57, 0.18, -0.59, -0.19, -0.32, 0.022
+19960423, 0.60, 0.07, -0.14, -0.45, -0.11, 0.022
+19960424, -0.01, 0.41, -0.41, 0.12, -0.56, 0.022
+19960425, 0.45, 0.14, -0.33, -0.02, -0.22, 0.022
+19960426, 0.15, 0.40, 0.00, -0.16, -0.13, 0.022
+19960429, 0.09, 0.18, -0.16, 0.16, -0.06, 0.022
+19960430, 0.03, 0.16, 0.13, -0.02, -0.05, 0.022
+19960501, 0.22, 0.49, -0.04, -0.24, 0.16, 0.019
+19960502, -1.61, 0.63, 0.17, 0.09, 0.35, 0.019
+19960503, -0.11, 0.57, -0.16, -0.28, -0.16, 0.019
+19960506, -0.16, 0.31, -0.19, -0.26, -0.03, 0.019
+19960507, -0.41, 0.04, 0.16, 0.21, -0.07, 0.019
+19960508, 0.61, -0.96, 0.25, 0.63, 0.10, 0.019
+19960509, 0.25, 0.57, -0.17, -0.17, 0.32, 0.019
+19960510, 1.09, -0.14, -0.26, -0.07, -0.31, 0.019
+19960513, 1.31, -0.47, -0.67, 0.20, -0.57, 0.019
+19960514, 0.72, 0.15, -0.06, -0.14, -0.31, 0.019
+19960515, -0.02, 0.24, -0.07, 0.09, -0.01, 0.019
+19960516, 0.05, 0.27, -0.39, 0.13, -0.26, 0.019
+19960517, 0.55, 0.07, 0.27, 0.06, 0.30, 0.019
+19960520, 0.59, 0.12, -0.22, -0.22, 0.37, 0.019
+19960521, -0.07, 0.15, 0.21, -0.09, 0.18, 0.019
+19960522, 0.62, -0.17, 0.49, -0.17, 0.60, 0.019
+19960523, -0.26, 0.35, -0.10, 0.10, -0.10, 0.019
+19960524, 0.24, -0.02, -0.49, 0.34, -0.21, 0.019
+19960528, -0.89, 0.09, 0.19, 0.27, -0.26, 0.019
+19960529, -0.68, 0.05, 0.52, 0.18, 0.28, 0.019
+19960530, 0.51, -0.10, -0.28, -0.30, -0.20, 0.019
+19960531, -0.18, 0.81, -0.38, 0.02, -0.46, 0.019
+19960603, -0.25, 0.09, 0.09, 0.20, -0.13, 0.020
+19960604, 0.68, -0.52, 0.05, -0.02, 0.12, 0.020
+19960605, 0.72, -0.51, -0.11, 0.41, -0.12, 0.020
+19960606, -0.77, 0.18, 0.40, 0.44, 0.48, 0.020
+19960607, -0.21, -0.51, -0.58, 0.23, -0.08, 0.020
+19960610, -0.12, 0.39, 0.11, 0.04, 0.17, 0.020
+19960611, -0.12, 0.08, 0.06, -0.04, -0.25, 0.020
+19960612, -0.08, 0.29, 0.10, 0.18, 0.07, 0.020
+19960613, -0.29, -0.36, 0.24, 0.40, 0.14, 0.020
+19960614, -0.45, -0.12, 0.44, 0.21, 0.19, 0.020
+19960617, -0.21, -0.25, 0.28, 0.13, 0.18, 0.020
+19960618, -0.78, -0.90, 0.80, 0.45, 0.19, 0.020
+19960619, -0.12, -0.50, 0.02, -0.12, 0.19, 0.020
+19960620, -0.32, -0.75, -0.03, 0.38, 0.34, 0.020
+19960621, 0.58, -0.26, -0.48, -0.03, -0.06, 0.020
+19960624, 0.33, 0.20, -0.17, 0.15, -0.33, 0.020
+19960625, -0.25, -0.43, 0.15, 0.42, 0.10, 0.020
+19960626, -0.82, -0.73, 0.61, 0.24, 0.21, 0.020
+19960627, 0.60, -0.09, -0.15, -0.12, -0.26, 0.020
+19960628, 0.73, 1.20, -0.25, -0.05, -0.06, 0.020
+19960701, 0.75, -0.36, -0.01, -0.11, -0.36, 0.020
+19960702, -0.29, 0.17, 0.25, -0.03, 0.23, 0.020
+19960703, -0.35, -0.17, 0.20, 0.21, 0.60, 0.020
+19960705, -2.05, 0.77, 0.37, 0.11, 0.27, 0.020
+19960708, -0.86, -0.12, 0.32, 0.20, 0.17, 0.020
+19960709, 0.32, -0.45, 0.11, -0.04, 0.14, 0.020
+19960710, -0.21, -1.06, 0.85, 0.34, 0.76, 0.020
+19960711, -1.87, -0.90, 1.49, 0.71, 1.27, 0.020
+19960712, 0.00, -0.31, 0.25, -0.06, 0.23, 0.020
+19960715, -2.69, -0.29, 1.94, 0.50, 0.96, 0.020
+19960716, -0.53, -1.23, 0.14, 0.33, -0.16, 0.020
+19960717, 1.42, 1.50, -1.48, -0.75, -1.85, 0.020
+19960718, 1.60, -0.01, -1.18, -0.19, -0.57, 0.020
+19960719, -0.79, 0.52, 0.27, 0.38, 0.56, 0.020
+19960722, -0.95, -0.36, 0.82, 0.53, 0.51, 0.020
+19960723, -1.46, -0.66, 1.51, 0.32, 1.21, 0.020
+19960724, -0.26, -1.50, -0.03, 0.33, -0.15, 0.020
+19960725, 0.92, 0.45, -0.76, -0.15, -0.74, 0.020
+19960726, 0.90, 0.12, -0.73, -0.10, -0.74, 0.020
+19960729, -0.79, 0.32, 0.67, -0.04, 0.61, 0.020
+19960730, 0.48, -0.43, 0.09, 0.48, -0.39, 0.020
+19960731, 0.73, 0.10, -0.42, 0.04, 0.10, 0.020
+19960801, 1.57, -0.69, -0.38, 0.03, -0.45, 0.019
+19960802, 1.85, -0.48, -0.87, -0.09, -0.99, 0.019
+19960805, -0.29, 0.33, 0.23, 0.11, 0.14, 0.019
+19960806, 0.31, -0.16, -0.41, 0.13, -0.41, 0.019
+19960807, 0.39, 0.39, -0.47, 0.07, -0.65, 0.019
+19960808, -0.17, 0.10, 0.25, -0.31, 0.17, 0.019
+19960809, -0.28, 0.21, 0.38, -0.02, -0.51, 0.019
+19960812, 0.54, -0.59, -0.07, 0.23, 0.17, 0.019
+19960813, -0.79, 0.34, 0.25, 0.26, 0.36, 0.019
+19960814, 0.39, -0.07, 0.01, -0.25, -0.26, 0.019
+19960815, 0.08, 0.17, 0.22, -0.06, 0.00, 0.019
+19960816, 0.41, -0.07, 0.35, 0.00, 0.32, 0.019
+19960819, 0.07, -0.16, 0.25, -0.10, 0.26, 0.019
+19960820, -0.16, 0.13, 0.50, 0.02, 0.28, 0.019
+19960821, -0.09, 0.00, 0.08, -0.07, -0.08, 0.019
+19960822, 0.86, -0.06, -0.52, -0.01, -0.51, 0.019
+19960823, -0.36, 0.58, -0.11, 0.09, 0.08, 0.019
+19960826, -0.37, 0.30, 0.06, -0.07, -0.27, 0.019
+19960827, 0.41, 0.26, -0.48, 0.11, -0.11, 0.019
+19960828, 0.00, 0.58, -0.20, -0.23, -0.28, 0.019
+19960829, -0.95, 0.69, 0.25, 0.09, 0.18, 0.019
+19960830, -0.63, 0.64, 0.21, -0.24, 0.15, 0.019
+19960903, 0.15, -0.39, -0.02, 0.19, 0.21, 0.022
+19960904, 0.15, 0.24, 0.19, 0.02, -0.07, 0.022
+19960905, -0.98, 0.20, 0.53, -0.20, 0.70, 0.022
+19960906, 0.99, -0.22, -0.54, -0.02, -0.09, 0.022
+19960909, 0.98, -0.61, -0.19, -0.06, 0.03, 0.022
+19960910, 0.04, 0.09, -0.16, 0.37, -0.03, 0.022
+19960911, 0.42, -0.35, 0.02, -0.21, 0.12, 0.022
+19960912, 0.62, -0.08, -0.36, 0.14, -0.63, 0.022
+19960913, 1.29, -0.62, -0.69, 0.30, -0.70, 0.022
+19960916, 0.48, -0.27, -0.04, 0.21, -0.27, 0.022
+19960917, -0.12, 0.13, -0.32, 0.20, -0.50, 0.022
+19960918, -0.18, 0.15, -0.12, 0.15, -0.05, 0.022
+19960919, 0.18, -0.27, -0.54, 0.25, -0.35, 0.022
+19960920, 0.50, -0.13, -0.08, -0.08, -0.15, 0.022
+19960923, -0.20, -0.12, 0.16, 0.13, 0.30, 0.022
+19960924, -0.03, 0.28, -0.23, 0.04, -0.31, 0.022
+19960925, 0.15, 0.32, -0.31, 0.10, -0.22, 0.022
+19960926, 0.20, 0.20, -0.55, -0.09, -0.30, 0.022
+19960927, 0.06, 0.10, 0.02, -0.03, -0.07, 0.022
+19960930, 0.19, 0.05, 0.21, 0.08, 0.32, 0.022
+19961001, 0.02, -0.54, 0.75, 0.03, 0.49, 0.018
+19961002, 0.73, -0.06, -0.09, 0.08, -0.03, 0.018
+19961003, -0.17, -0.01, 0.08, -0.06, 0.08, 0.018
+19961004, 1.10, -0.74, -0.19, 0.07, 0.09, 0.018
+19961007, 0.18, -0.35, 0.16, 0.13, -0.14, 0.018
+19961008, -0.44, 0.05, 0.36, 0.12, 0.35, 0.018
+19961009, -0.51, 0.35, 0.16, 0.31, -0.33, 0.018
+19961010, -0.23, 0.40, 0.07, 0.03, -0.04, 0.018
+19961011, 0.70, -0.37, -0.15, 0.38, -0.12, 0.018
+19961014, 0.44, -0.18, -0.13, 0.10, -0.12, 0.018
+19961015, -0.17, 0.11, 0.15, 0.12, -0.14, 0.018
+19961016, 0.09, -0.35, 0.13, 0.01, 0.69, 0.018
+19961017, 0.24, -0.39, 0.42, -0.13, 0.60, 0.018
+19961018, 0.35, -0.43, 0.20, 0.02, -0.03, 0.018
+19961021, -0.28, -0.37, 0.78, -0.05, 0.65, 0.018
+19961022, -0.67, -0.43, 0.64, 0.14, 0.45, 0.018
+19961023, -0.01, -0.14, 0.09, 0.01, -0.24, 0.018
+19961024, -0.48, 0.65, 0.17, -0.12, -0.08, 0.018
+19961025, -0.21, 0.17, 0.45, -0.33, 0.25, 0.018
+19961028, -0.62, -0.35, 0.60, 0.22, 0.44, 0.018
+19961029, 0.25, -0.97, 0.73, 0.31, 0.70, 0.018
+19961030, -0.03, -0.04, 0.12, -0.15, -0.16, 0.018
+19961031, 0.63, 0.10, -0.43, 0.14, -0.44, 0.018
+19961101, -0.18, -0.23, 0.05, 0.15, -0.11, 0.020
+19961104, 0.27, -0.37, 0.46, 0.40, 0.20, 0.020
+19961105, 0.86, -0.98, -0.11, 0.40, -0.36, 0.020
+19961106, 1.39, -0.66, -0.65, 0.38, -0.17, 0.020
+19961107, 0.41, 0.12, -0.48, -0.04, -0.31, 0.020
+19961108, 0.34, -0.32, -0.10, -0.21, -0.07, 0.020
+19961111, 0.17, 0.10, -0.04, 0.10, -0.16, 0.020
+19961112, -0.23, 0.22, 0.47, 0.05, 0.30, 0.020
+19961113, 0.18, -0.12, -0.22, -0.06, -0.03, 0.020
+19961114, 0.60, -0.32, -0.01, 0.14, -0.03, 0.020
+19961115, 0.06, -0.34, 0.30, 0.02, 0.53, 0.020
+19961118, -0.17, -0.18, 0.82, 0.02, 0.32, 0.020
+19961119, 0.54, -0.46, 0.37, 0.45, 0.13, 0.020
+19961120, 0.20, -0.13, 0.26, -0.01, -0.16, 0.020
+19961121, -0.20, 0.06, 0.20, 0.05, 0.27, 0.020
+19961122, 0.74, -0.08, -0.20, -0.08, -0.52, 0.020
+19961125, 0.99, -0.50, 0.10, 0.13, 0.23, 0.020
+19961126, -0.19, -0.09, 0.07, 0.11, -0.14, 0.020
+19961127, 0.02, 0.40, -0.07, 0.00, -0.42, 0.020
+19961129, 0.27, 0.25, -0.11, -0.15, -0.12, 0.020
+19961202, 0.06, 0.12, -0.10, -0.04, -0.10, 0.022
+19961203, -0.74, 1.46, 0.09, -0.37, -0.21, 0.022
+19961204, -0.33, 0.38, -0.03, 0.03, 0.14, 0.022
+19961205, -0.07, 0.36, -0.13, -0.54, 0.01, 0.022
+19961206, -0.74, -0.26, 0.14, 0.23, 0.00, 0.022
+19961209, 1.38, 0.01, -0.55, 0.30, -0.48, 0.022
+19961210, -0.29, 0.55, 0.54, 0.09, 0.36, 0.022
+19961211, -0.91, 0.00, -0.05, 0.29, -0.13, 0.022
+19961212, -1.29, 1.20, -0.08, -0.02, 0.03, 0.022
+19961213, -0.30, -0.45, 0.44, -0.11, 0.45, 0.022
+19961216, -1.12, 0.18, 0.66, -0.18, 0.89, 0.022
+19961217, 0.47, -0.77, 0.28, 0.38, -0.02, 0.022
+19961218, 0.83, 0.01, -0.58, -0.06, -0.48, 0.022
+19961219, 1.56, -1.04, -0.28, 0.35, 0.37, 0.022
+19961220, 0.29, -0.19, 0.53, 0.14, 0.34, 0.022
+19961223, -0.36, -0.13, 0.26, 0.12, 0.39, 0.022
+19961224, 0.48, -0.41, -0.19, 0.22, 0.03, 0.022
+19961226, 0.57, -0.29, -0.07, -0.03, -0.21, 0.022
+19961227, 0.17, 0.18, -0.12, 0.20, 0.47, 0.022
+19961230, -0.26, 0.22, 0.34, 0.01, 0.08, 0.022
+19961231, -1.02, 2.02, -0.24, -0.48, -0.48, 0.022
+19970102, -0.75, 0.09, 0.14, 0.01, 0.50, 0.020
+19970103, 1.39, -0.37, -0.78, 0.08, -0.59, 0.020
+19970106, 0.02, 0.18, 0.05, -0.07, 0.05, 0.020
+19970107, 0.72, -0.08, -0.52, 0.05, -0.15, 0.020
+19970108, -0.44, 0.62, 0.53, -0.10, 0.05, 0.020
+19970109, 0.72, -0.46, -0.15, -0.24, 0.25, 0.020
+19970110, 0.50, -0.24, -0.37, 0.10, -0.16, 0.020
+19970113, -0.07, 0.13, 0.27, 0.27, 0.14, 0.020
+19970114, 1.11, -0.79, 0.04, 0.35, -0.32, 0.020
+19970115, -0.23, 0.11, 0.47, -0.03, 0.58, 0.020
+19970116, 0.25, -0.27, -0.33, 0.07, 0.03, 0.020
+19970117, 0.72, -0.31, -0.26, 0.28, -0.06, 0.020
+19970120, 0.26, 0.21, -0.41, 0.22, -0.58, 0.020
+19970121, 0.59, -0.53, -0.21, -0.13, -0.27, 0.020
+19970122, 0.44, -0.36, -0.07, -0.07, -0.32, 0.020
+19970123, -0.85, 0.96, 0.37, -0.17, 0.16, 0.020
+19970124, -0.97, 0.35, 0.29, -0.23, 0.29, 0.020
+19970127, -0.72, 0.11, 0.34, -0.21, 0.34, 0.020
+19970128, 0.01, 0.35, -0.22, 0.30, -0.09, 0.020
+19970129, 0.68, -0.74, -0.03, 0.18, 0.34, 0.020
+19970130, 1.21, -0.71, -0.42, 0.65, -0.10, 0.020
+19970131, 0.31, -0.04, -0.34, -0.03, -0.39, 0.020
+19970203, -0.02, 0.11, 0.38, 0.22, 0.33, 0.020
+19970204, 0.12, -0.51, 0.28, 0.17, 0.30, 0.020
+19970205, -1.28, 0.54, 0.77, -0.51, 0.54, 0.020
+19970206, 0.24, -0.26, -0.09, -0.10, -0.02, 0.020
+19970207, 0.96, -0.77, -0.03, 0.23, -0.39, 0.020
+19970210, -0.65, -0.03, 0.80, -0.17, 0.68, 0.020
+19970211, 0.32, -0.88, 0.45, 0.05, 0.66, 0.020
+19970212, 1.52, -0.89, -0.67, 0.23, -0.47, 0.020
+19970213, 1.02, -0.47, 0.16, 0.24, -0.28, 0.020
+19970214, -0.22, 0.36, 0.32, -0.22, -0.08, 0.020
+19970218, 0.71, -0.43, 0.27, 0.48, 0.53, 0.020
+19970219, -0.32, 0.38, 0.31, -0.10, -0.27, 0.020
+19970220, -1.17, 0.46, 0.42, -0.04, 0.52, 0.020
+19970221, -0.26, -0.02, 0.64, -0.13, 0.63, 0.020
+19970224, 0.85, -0.78, 0.03, 0.55, 0.04, 0.020
+19970225, 0.25, -0.16, 0.16, -0.05, -0.21, 0.020
+19970226, -0.75, 0.11, 0.11, 0.06, -0.07, 0.020
+19970227, -1.27, 0.62, 0.76, -0.08, 0.75, 0.020
+19970228, -0.49, 0.02, 0.15, -0.11, 0.24, 0.020
+19970303, 0.39, -0.45, 0.13, 0.30, -0.06, 0.021
+19970304, -0.29, 0.63, 0.23, -0.42, -0.35, 0.021
+19970305, 1.17, -0.58, -0.50, 0.17, -0.16, 0.021
+19970306, -0.31, 0.15, 0.47, -0.15, 0.41, 0.021
+19970307, 0.67, -0.48, 0.24, -0.14, 0.27, 0.021
+19970310, 0.85, -0.46, 0.03, 0.19, 0.13, 0.021
+19970311, -0.24, 0.31, 0.27, -0.14, -0.03, 0.021
+19970312, -0.79, -0.04, 0.77, -0.16, -0.15, 0.021
+19970313, -1.66, 0.56, 0.01, 0.05, -0.34, 0.021
+19970314, 0.31, -0.41, -0.11, -0.14, 0.16, 0.021
+19970317, -0.11, -0.83, 0.62, 0.33, 0.63, 0.021
+19970318, -0.77, 0.17, 0.16, -0.10, 0.22, 0.021
+19970319, -0.65, -0.60, 0.80, -0.02, 0.45, 0.021
+19970320, -0.20, 0.46, -0.19, -0.13, -0.71, 0.021
+19970321, 0.09, -0.30, 0.22, -0.21, 0.18, 0.021
+19970324, 0.47, -1.34, 0.68, 0.44, 0.86, 0.021
+19970325, -0.08, 0.31, -0.32, -0.03, -0.15, 0.021
+19970326, 0.23, 0.34, -0.83, 0.23, -0.51, 0.021
+19970327, -1.90, 1.21, 0.26, -0.04, -0.03, 0.021
+19970331, -2.26, 0.77, 1.05, 0.29, 0.91, 0.021
+19970401, 0.17, -0.83, 0.34, 0.31, 0.08, 0.020
+19970402, -1.17, 0.40, 0.11, 0.24, 0.11, 0.020
+19970403, -0.02, -0.37, -0.36, 0.50, -0.89, 0.020
+19970404, 1.15, 0.15, -1.43, 0.27, -1.18, 0.020
+19970407, 0.77, 0.29, -0.21, -0.29, -0.19, 0.020
+19970408, 0.43, -0.28, 0.18, 0.21, -0.26, 0.020
+19970409, -0.58, 0.95, 0.33, 0.07, 0.27, 0.020
+19970410, -0.42, 0.03, 0.36, -0.32, 0.49, 0.020
+19970411, -2.48, 0.92, 0.45, -0.32, 0.43, 0.020
+19970414, 0.55, -0.72, -0.31, 0.34, -0.17, 0.020
+19970415, 1.19, -0.98, 0.24, 0.38, 0.49, 0.020
+19970416, 0.81, -1.03, 0.22, 0.52, 0.90, 0.020
+19970417, -0.11, 0.17, 0.31, -0.09, -0.49, 0.020
+19970418, 0.42, -0.18, -0.09, 0.13, 0.39, 0.020
+19970421, -0.99, -0.08, 0.45, 0.22, 0.41, 0.020
+19970422, 1.40, -1.55, -0.05, 0.90, 0.33, 0.020
+19970423, -0.03, -0.16, -0.19, -0.29, -0.72, 0.020
+19970424, -0.22, 0.38, -0.08, -0.11, -0.06, 0.020
+19970425, -0.95, 0.20, 0.39, -0.12, 0.67, 0.020
+19970428, 0.81, -1.03, 0.20, 0.53, -0.32, 0.020
+19970429, 2.41, -1.50, -0.39, 0.26, -0.48, 0.020
+19970430, 0.93, -0.54, -0.45, -0.07, -0.72, 0.020
+19970501, -0.10, 1.02, -0.26, -0.18, -0.61, 0.023
+19970502, 1.93, 0.51, -0.85, 0.30, -0.70, 0.023
+19970505, 2.16, 0.05, -1.61, 0.40, -0.36, 0.023
+19970506, -0.31, 0.17, 0.63, -0.41, 0.24, 0.023
+19970507, -1.18, 1.10, -0.03, -0.16, -0.23, 0.023
+19970508, 0.41, -0.55, -0.07, -0.02, 0.01, 0.023
+19970509, 0.51, 0.01, 0.12, 0.11, -0.04, 0.023
+19970512, 1.29, -0.78, -0.19, 0.04, 0.07, 0.023
+19970513, -0.45, 0.40, 0.00, -0.17, 0.31, 0.023
+19970514, 0.35, -0.15, 0.44, -0.14, 0.08, 0.023
+19970515, 0.58, -0.18, -0.85, 0.34, -0.57, 0.023
+19970516, -1.13, 1.08, 0.46, -0.54, 0.45, 0.023
+19970519, 0.27, -0.03, -0.18, 0.07, 0.08, 0.023
+19970520, 0.91, -0.57, -0.19, 0.36, -0.78, 0.023
+19970521, -0.13, 0.69, -0.69, -0.19, -0.10, 0.023
+19970522, -0.27, 0.63, 0.45, -0.11, 0.04, 0.023
+19970523, 1.26, -0.15, -0.49, 0.08, -0.25, 0.023
+19970527, 0.30, 0.14, -0.89, 0.20, -0.64, 0.023
+19970528, -0.11, 0.52, -0.02, -0.18, -0.15, 0.023
+19970529, -0.28, 0.48, 0.14, -0.38, 0.32, 0.023
+19970530, 0.55, -0.16, 0.51, -0.27, 0.19, 0.023
+19970602, -0.05, 0.89, -0.24, -0.19, -0.23, 0.018
+19970603, -0.16, 0.08, 0.91, -0.16, 0.84, 0.018
+19970604, -0.44, 0.46, 0.40, -0.35, 0.13, 0.018
+19970605, 0.42, 0.08, 0.04, -0.12, -0.26, 0.018
+19970606, 1.41, -0.83, -0.39, 0.47, -0.14, 0.018
+19970609, 0.48, -0.34, 0.07, -0.40, -0.32, 0.018
+19970610, 0.14, -0.48, 0.59, -0.34, 0.54, 0.018
+19970611, 0.41, -0.32, 0.25, 0.14, 0.23, 0.018
+19970612, 1.29, -1.00, 0.10, 0.18, 0.50, 0.018
+19970613, 0.98, -0.42, -0.39, 0.73, 0.35, 0.018
+19970616, 0.04, -0.03, -0.12, 0.21, -0.39, 0.018
+19970617, 0.12, 0.17, -0.19, 0.33, -0.50, 0.018
+19970618, -0.38, 0.30, 0.65, -0.23, 0.05, 0.018
+19970619, 0.95, -0.11, -0.41, 0.09, -0.17, 0.018
+19970620, -0.04, -0.34, -0.07, 0.01, -0.21, 0.018
+19970623, -1.84, 1.39, 0.32, -0.12, -0.32, 0.018
+19970624, 1.61, -0.91, -0.21, 0.44, 0.18, 0.018
+19970625, -0.71, 0.46, 0.35, -0.05, 0.01, 0.018
+19970626, -0.50, 0.39, 0.12, 0.09, 0.10, 0.018
+19970627, 0.42, 0.27, 0.04, 0.14, 0.27, 0.018
+19970630, -0.10, 1.45, -0.71, 0.16, -0.12, 0.018
+19970701, 0.55, -0.94, 0.50, -0.23, 0.35, 0.019
+19970702, 1.17, -1.16, -0.15, 0.32, -0.36, 0.019
+19970703, 1.20, -0.83, -0.25, 0.39, 0.08, 0.019
+19970707, -0.35, 0.40, 0.04, 0.05, -0.36, 0.019
+19970708, 0.69, -0.36, -0.24, -0.01, -0.25, 0.019
+19970709, -0.95, 0.84, 0.15, -0.26, -0.28, 0.019
+19970710, 0.57, -0.08, 0.22, 0.03, -0.18, 0.019
+19970711, 0.44, 0.35, -0.41, -0.25, -0.35, 0.019
+19970714, 0.24, 0.20, -0.41, 0.21, -0.68, 0.019
+19970715, 0.75, 0.07, -0.66, 0.23, -0.54, 0.019
+19970716, 1.14, -0.38, -0.55, -0.18, -1.01, 0.019
+19970717, -0.55, 0.19, 0.33, 0.12, 0.56, 0.019
+19970718, -1.41, 1.00, 0.52, -0.15, 0.43, 0.019
+19970721, -0.41, -0.07, 0.10, 0.19, 0.25, 0.019
+19970722, 1.98, -1.44, -0.49, 0.35, -0.25, 0.019
+19970723, 0.29, -0.07, 0.42, -0.33, -0.28, 0.019
+19970724, 0.31, -0.17, -0.01, -0.23, 0.13, 0.019
+19970725, -0.11, 0.24, 0.08, -0.07, 0.12, 0.019
+19970728, -0.23, 0.24, 0.68, -0.16, 0.23, 0.019
+19970729, 0.53, -0.40, 0.50, -0.05, 0.05, 0.019
+19970730, 1.09, -0.42, 0.09, -0.22, 0.20, 0.019
+19970731, 0.18, 0.10, 0.25, 0.04, -0.28, 0.019
+19970801, -0.57, 0.58, 0.26, 0.01, 0.04, 0.020
+19970804, 0.30, 0.04, -0.13, 0.03, -0.13, 0.020
+19970805, 0.34, 0.49, -0.54, 0.10, -0.48, 0.020
+19970806, 0.74, -0.16, 0.06, 0.14, 0.05, 0.020
+19970807, -0.77, 0.85, 0.37, -0.10, 0.04, 0.020
+19970808, -1.81, 0.63, 0.11, -0.18, 0.12, 0.020
+19970811, 0.16, -0.48, 0.47, 0.21, 0.55, 0.020
+19970812, -0.93, 0.72, 0.59, -0.33, 0.34, 0.020
+19970813, -0.26, 0.30, 0.04, -0.16, -0.46, 0.020
+19970814, 0.26, -0.09, -0.20, 0.28, 0.06, 0.020
+19970815, -2.06, 1.43, 0.54, -0.41, 0.17, 0.020
+19970818, 0.81, -0.88, -0.33, 0.43, -0.04, 0.020
+19970819, 1.38, -0.28, -0.43, -0.12, -0.43, 0.020
+19970820, 1.36, -0.17, -0.53, 0.20, -0.44, 0.020
+19970821, -1.23, 0.93, 0.34, -0.17, 0.24, 0.020
+19970822, -0.28, -0.08, 0.16, 0.06, 0.32, 0.020
+19970825, -0.12, 0.75, 0.27, -0.46, -0.11, 0.020
+19970826, -0.60, 0.75, 0.31, -0.37, 0.20, 0.020
+19970827, 0.18, 0.62, -0.17, 0.02, 0.16, 0.020
+19970828, -0.81, 1.03, 0.39, -0.22, 0.08, 0.020
+19970829, -0.21, 0.59, -0.17, 0.12, -0.33, 0.020
+19970902, 2.44, -1.38, -0.59, 0.40, -0.28, 0.021
+19970903, 0.18, -0.13, 0.46, -0.37, -0.10, 0.021
+19970904, 0.28, 0.06, -0.03, 0.17, -0.24, 0.021
+19970905, 0.02, 0.74, 0.05, -0.44, -0.25, 0.021
+19970908, 0.32, 0.31, 0.16, -0.24, -0.14, 0.021
+19970909, 0.27, 0.25, 0.23, -0.06, 0.09, 0.021
+19970910, -1.22, 1.27, 0.65, -0.50, 0.13, 0.021
+19970911, -0.63, 0.62, -0.10, 0.02, 0.13, 0.021
+19970912, 1.19, -0.40, -0.27, 0.01, -0.15, 0.021
+19970915, -0.31, 0.44, 0.39, -0.09, 0.28, 0.021
+19970916, 2.25, -1.55, -0.33, 0.17, -0.55, 0.021
+19970917, -0.08, 0.25, 0.31, -0.39, -0.29, 0.021
+19970918, 0.35, -0.24, 0.04, 0.01, 0.00, 0.021
+19970919, 0.30, 0.00, -0.60, 0.20, -0.34, 0.021
+19970922, 0.49, -0.01, -0.54, 0.21, 0.33, 0.021
+19970923, -0.28, 0.59, -0.23, 0.27, -0.19, 0.021
+19970924, -0.62, 0.63, 0.34, -0.30, 0.13, 0.021
+19970925, -0.61, 0.60, 0.10, -0.27, 0.24, 0.021
+19970926, 0.64, -0.40, -0.10, 0.24, 0.38, 0.021
+19970929, 0.73, -0.33, -0.27, 0.12, -0.04, 0.021
+19970930, -0.43, 0.98, 0.32, -0.41, 0.01, 0.021
+19971001, 0.62, -0.54, 0.19, 0.02, 0.27, 0.018
+19971002, 0.55, -0.02, 0.11, 0.00, -0.14, 0.018
+19971003, 0.48, 0.03, -0.22, 0.06, -0.35, 0.018
+19971006, 0.68, -0.19, -0.12, 0.21, 0.19, 0.018
+19971007, 0.89, -0.39, -0.72, 0.16, -0.16, 0.018
+19971008, -0.61, 0.72, -0.27, -0.29, -0.33, 0.018
+19971009, -0.20, 0.46, 0.32, -0.41, -0.33, 0.018
+19971010, -0.28, 0.55, 0.19, -0.20, 0.13, 0.018
+19971013, 0.10, 0.07, 0.35, -0.13, 0.13, 0.018
+19971014, 0.03, -0.31, 0.16, 0.10, 0.24, 0.018
+19971015, -0.33, 0.06, 0.09, -0.23, -0.03, 0.018
+19971016, -1.05, -0.14, 0.57, 0.04, 0.28, 0.018
+19971017, -1.31, -0.46, 0.38, 0.30, 0.44, 0.018
+19971020, 1.10, -0.22, -0.46, -0.14, -0.09, 0.018
+19971021, 1.65, -0.72, -0.31, 0.17, 0.06, 0.018
+19971022, -0.30, 0.29, 0.11, -0.08, 0.22, 0.018
+19971023, -1.85, -0.08, 0.46, 0.17, 0.47, 0.018
+19971024, -0.81, 0.52, 0.66, 0.33, 0.51, 0.018
+19971027, -6.58, 0.47, 1.85, 0.85, 1.08, 0.018
+19971028, 4.10, -2.16, -2.20, 0.25, -1.21, 0.018
+19971029, 0.07, 1.08, 0.81, -0.70, 0.23, 0.018
+19971030, -1.61, 0.32, 0.33, 0.21, 0.45, 0.018
+19971031, 1.17, 0.00, -0.53, 0.36, -0.26, 0.018
+19971103, 2.31, -0.84, -0.27, 0.21, -0.30, 0.021
+19971104, 0.23, -0.08, -0.10, 0.04, -0.29, 0.021
+19971105, 0.34, 0.23, -0.33, -0.20, -0.17, 0.021
+19971106, -0.51, 0.09, 0.39, 0.03, 0.44, 0.021
+19971107, -1.28, -0.34, 0.12, 0.47, 0.23, 0.021
+19971110, -0.53, 0.55, 0.68, -0.17, 0.52, 0.021
+19971111, 0.05, -0.38, 0.04, 0.74, 0.41, 0.021
+19971112, -1.96, -0.25, 0.81, 0.09, 0.63, 0.021
+19971113, 0.84, -1.01, -0.58, 0.44, -0.28, 0.021
+19971114, 1.21, -0.32, -0.91, -0.02, -0.53, 0.021
+19971117, 1.84, -0.45, -0.33, -0.11, -0.67, 0.021
+19971118, -0.80, 0.05, 0.61, -0.01, 0.63, 0.021
+19971119, 0.45, -0.60, -0.25, 0.39, 0.18, 0.021
+19971120, 1.37, -0.65, -0.29, 0.19, -0.28, 0.021
+19971121, 0.25, -0.42, 0.12, 0.51, 0.43, 0.021
+19971124, -1.68, 0.07, 0.84, 0.17, 0.59, 0.021
+19971125, 0.35, -0.68, 0.19, 0.44, 0.37, 0.021
+19971126, 0.18, 0.07, 0.17, -0.15, -0.30, 0.021
+19971128, 0.36, -0.05, -0.07, 0.00, -0.04, 0.021
+19971201, 1.79, -1.16, -0.01, 0.13, 0.13, 0.022
+19971202, -0.33, -0.19, 0.77, -0.04, 0.27, 0.022
+19971203, 0.53, -0.31, -0.48, 0.52, 0.08, 0.022
+19971204, -0.20, 0.32, 0.11, -0.04, 0.08, 0.022
+19971205, 0.97, -0.46, -0.21, -0.16, -0.30, 0.022
+19971208, 0.04, 0.78, -0.12, 0.04, -0.48, 0.022
+19971209, -0.74, -0.12, 0.72, 0.24, 0.41, 0.022
+19971210, -0.79, -0.50, 0.84, 0.46, 0.65, 0.022
+19971211, -1.58, -0.33, 0.82, 0.10, 0.88, 0.022
+19971212, -0.30, -0.24, 0.62, 0.01, 0.48, 0.022
+19971215, 0.67, -1.38, 0.62, 0.37, 0.28, 0.022
+19971216, 0.60, 0.31, -0.56, 0.09, -0.31, 0.022
+19971217, -0.15, 0.28, 0.45, -0.27, -0.13, 0.022
+19971218, -1.08, -0.24, 0.28, -0.08, 0.64, 0.022
+19971219, -0.68, 0.46, -0.43, -0.06, -0.13, 0.022
+19971222, 0.57, -0.29, 0.13, 0.30, 0.26, 0.022
+19971223, -1.22, 1.14, 0.76, -0.11, 0.36, 0.022
+19971224, -0.58, 0.44, 0.22, -0.24, 0.19, 0.022
+19971226, 0.33, -0.30, -0.02, -0.01, 0.02, 0.022
+19971229, 1.60, -0.85, -0.50, 0.28, -0.46, 0.022
+19971230, 1.76, -0.22, -0.49, 0.06, -0.56, 0.022
+19971231, 0.21, 0.87, -0.23, -0.41, -0.49, 0.022
+19980102, 0.22, -0.13, -0.46, 0.14, -0.14, 0.021
+19980105, 0.22, 0.06, -0.31, 0.04, -0.01, 0.021
+19980106, -1.04, 0.24, 0.23, -0.35, 0.14, 0.021
+19980107, -0.38, -0.39, -0.10, -0.08, 0.33, 0.021
+19980108, -0.82, 0.21, -0.25, 0.04, 0.29, 0.021
+19980109, -2.98, 0.26, 0.71, 0.09, 0.66, 0.021
+19980112, 0.74, -1.62, 0.10, 0.80, 0.53, 0.021
+19980113, 1.50, 0.09, -0.64, -0.32, -0.74, 0.021
+19980114, 0.61, 0.08, 0.23, 0.15, 0.11, 0.021
+19980115, -0.60, 0.64, 0.25, -0.11, -0.01, 0.021
+19980116, 1.08, -0.01, -0.26, 0.23, -0.21, 0.021
+19980120, 1.63, -0.53, -0.91, -0.21, -0.35, 0.021
+19980121, -0.66, 0.26, 0.18, -0.52, -0.31, 0.021
+19980122, -0.80, 0.10, 0.52, 0.03, 0.14, 0.021
+19980123, -0.56, 0.27, -0.30, -0.23, -0.09, 0.021
+19980126, -0.25, -0.61, 0.59, 0.22, 0.43, 0.021
+19980127, 0.97, -0.67, -0.27, 0.36, -0.35, 0.021
+19980128, 1.01, 0.23, -0.51, 0.00, -0.84, 0.021
+19980129, 0.78, -0.20, -0.38, 0.18, -0.43, 0.021
+19980130, -0.40, 0.27, 0.16, -0.10, 0.01, 0.021
+19980202, 1.93, -1.24, -0.67, 0.35, -0.55, 0.021
+19980203, 0.53, 0.20, 0.03, -0.28, -0.36, 0.021
+19980204, 0.22, 0.63, -0.36, -0.14, -0.79, 0.021
+19980205, -0.15, 0.67, 0.12, 0.02, 0.26, 0.021
+19980206, 0.75, -0.47, 0.07, -0.05, -0.06, 0.021
+19980209, -0.09, 0.46, 0.31, -0.22, 0.02, 0.021
+19980210, 0.81, -0.01, -0.17, -0.07, -0.33, 0.021
+19980211, 0.16, 0.00, 0.33, -0.26, 0.11, 0.021
+19980212, 0.36, -0.30, 0.01, -0.11, 0.10, 0.021
+19980213, -0.25, 0.67, 0.02, -0.16, -0.07, 0.021
+19980217, 0.15, -0.32, 0.50, 0.27, 0.12, 0.021
+19980218, 0.80, -0.56, -0.38, 0.21, -0.24, 0.021
+19980219, -0.23, 0.28, -0.11, -0.19, -0.34, 0.021
+19980220, 0.38, -0.36, 0.06, -0.06, 0.06, 0.021
+19980223, 0.44, 0.00, -0.44, 0.07, -0.39, 0.021
+19980224, -0.74, 0.44, 0.65, -0.04, 0.31, 0.021
+19980225, 1.14, -0.33, -0.24, 0.09, -0.33, 0.021
+19980226, 0.56, 0.01, -0.09, -0.18, 0.01, 0.021
+19980227, 0.05, 0.14, 0.23, 0.03, 0.19, 0.021
+19980302, -0.16, 0.16, 0.60, -0.24, 0.33, 0.018
+19980303, 0.34, -0.23, 0.48, 0.10, 0.20, 0.018
+19980304, -0.42, 0.35, 0.39, -0.59, -0.22, 0.018
+19980305, -1.03, -0.08, 0.56, -0.08, 0.63, 0.018
+19980306, 1.85, -0.41, -0.67, 0.20, -0.34, 0.018
+19980309, -0.32, -0.15, 0.40, -0.19, 0.78, 0.018
+19980310, 1.07, -0.46, -0.27, 0.17, -0.12, 0.018
+19980311, 0.50, 0.00, -0.11, -0.12, 0.07, 0.018
+19980312, 0.13, 0.07, -0.34, -0.09, -0.19, 0.018
+19980313, -0.08, 0.29, 0.26, -0.35, -0.24, 0.018
+19980316, 0.88, -0.31, 0.15, 0.07, 0.00, 0.018
+19980317, 0.10, -0.34, 0.72, -0.12, 0.53, 0.018
+19980318, 0.48, -0.19, -0.09, 0.04, -0.25, 0.018
+19980319, 0.40, 0.03, -0.13, -0.21, -0.24, 0.018
+19980320, 0.57, -0.62, 0.14, 0.12, 0.23, 0.018
+19980323, -0.33, 0.25, -0.13, -0.28, -0.27, 0.018
+19980324, 0.85, -0.26, -0.15, 0.32, -0.18, 0.018
+19980325, -0.25, 0.36, -0.18, -0.10, -0.32, 0.018
+19980326, -0.06, 0.26, -0.25, 0.03, -0.30, 0.018
+19980327, -0.40, 0.42, -0.02, -0.03, -0.27, 0.018
+19980330, -0.22, 0.19, -0.24, 0.29, 0.09, 0.018
+19980331, 0.77, 0.07, -0.22, 0.07, -0.38, 0.018
+19980401, 0.60, 0.19, -0.58, -0.25, -0.22, 0.020
+19980402, 0.83, -0.70, 0.06, -0.31, 0.20, 0.020
+19980403, 0.19, -0.20, 0.05, -0.24, -0.34, 0.020
+19980406, -0.31, -0.43, 0.92, 0.18, 0.39, 0.020
+19980407, -1.05, -0.48, 0.60, 0.17, 0.74, 0.020
+19980408, -0.49, 0.70, 0.11, -0.64, -0.25, 0.020
+19980409, 0.81, 0.18, 0.07, -0.09, -0.08, 0.020
+19980413, -0.03, -0.06, 0.72, 0.32, -0.18, 0.020
+19980414, 0.67, 0.20, 0.27, -0.49, -0.29, 0.020
+19980415, 0.37, 0.08, 0.11, -0.45, -0.23, 0.020
+19980416, -0.88, 0.47, -0.03, -0.37, 0.00, 0.020
+19980417, 1.12, -0.61, -0.57, 0.17, 0.16, 0.020
+19980420, 0.17, 0.44, -0.73, 0.08, -0.23, 0.020
+19980421, 0.24, 0.44, -0.17, -0.38, -0.37, 0.020
+19980422, 0.29, -0.31, 0.02, 0.40, -0.19, 0.020
+19980423, -1.13, -0.06, 0.42, 0.08, 0.88, 0.020
+19980424, -0.98, 0.18, -0.02, 0.08, -0.02, 0.020
+19980427, -2.14, -0.31, 0.45, 0.15, 0.33, 0.020
+19980428, 0.15, 0.68, -0.37, -0.37, -0.26, 0.020
+19980429, 0.89, -0.06, -0.27, -0.22, -0.44, 0.020
+19980430, 1.47, -0.31, -0.45, 0.06, 0.13, 0.020
+19980501, 0.60, -0.46, 0.25, -0.03, -0.09, 0.020
+19980504, 0.15, 0.09, -0.19, 0.04, 0.28, 0.020
+19980505, -0.59, -0.04, 0.16, -0.13, 0.19, 0.020
+19980506, -0.83, 0.38, 0.56, -0.15, -0.07, 0.020
+19980507, -0.83, 0.21, 0.58, -0.28, 0.18, 0.020
+19980508, 1.07, -0.52, -0.54, 0.18, -0.41, 0.020
+19980511, -0.25, -0.30, 0.53, 0.07, 0.67, 0.020
+19980512, 0.53, -0.80, -0.05, 0.22, -0.08, 0.020
+19980513, 0.27, -0.08, 0.11, -0.15, -0.01, 0.020
+19980514, -0.18, -0.19, 0.29, 0.06, 0.06, 0.020
+19980515, -0.78, 0.11, 0.49, -0.11, 0.17, 0.020
+19980518, -0.44, -0.62, 0.13, 0.32, 0.56, 0.020
+19980519, 0.38, 0.28, -0.53, 0.31, -0.44, 0.020
+19980520, 0.47, -1.05, 0.44, 0.56, 0.57, 0.020
+19980521, -0.36, 0.03, 0.56, -0.29, 0.09, 0.020
+19980522, -0.55, -0.24, 0.52, 0.13, 0.42, 0.020
+19980526, -1.50, -0.40, 0.99, 0.25, 0.43, 0.020
+19980527, -0.37, -0.95, -0.52, 0.29, 0.01, 0.020
+19980528, 0.56, 0.64, 0.03, -0.03, -0.11, 0.020
+19980529, -0.42, 0.68, 0.47, -0.20, 0.14, 0.020
+19980601, -0.33, -1.07, 1.08, 0.61, 0.97, 0.019
+19980602, 0.18, -0.56, 0.26, -0.05, -0.46, 0.019
+19980603, -0.78, 0.67, 0.50, -0.37, 0.41, 0.019
+19980604, 0.99, -0.52, -0.72, -0.06, -0.45, 0.019
+19980605, 1.45, -1.05, -0.57, 0.19, 0.16, 0.019
+19980608, 0.27, 0.00, -0.04, -0.31, -0.16, 0.019
+19980609, 0.25, -0.07, -0.48, -0.20, -0.19, 0.019
+19980610, -0.70, -0.48, 0.56, 0.07, 0.38, 0.019
+19980611, -1.46, 0.14, 0.22, 0.11, 0.05, 0.019
+19980612, 0.09, -0.71, -0.46, 0.20, 0.03, 0.019
+19980615, -1.93, 0.24, 0.49, 0.52, 0.17, 0.019
+19980616, 0.99, 0.01, -0.91, -0.33, -1.00, 0.019
+19980617, 1.63, -0.45, -0.24, 0.14, -0.33, 0.019
+19980618, -0.14, -0.54, -0.32, 0.10, 0.01, 0.019
+19980619, -0.42, 0.24, 0.10, -0.18, -0.27, 0.019
+19980622, 0.33, 0.30, -0.09, -0.16, -0.41, 0.019
+19980623, 1.36, -0.28, -1.12, -0.20, -0.98, 0.019
+19980624, 1.13, -0.32, -0.59, -0.29, -0.72, 0.019
+19980625, -0.31, 0.08, 0.29, 0.06, 0.24, 0.019
+19980626, 0.30, -0.20, 0.20, 0.18, 0.11, 0.019
+19980629, 0.55, 0.09, -0.32, -0.12, -0.39, 0.019
+19980630, -0.20, 0.90, -0.14, -0.45, -0.17, 0.019
+19980701, 1.12, -0.70, -0.03, -0.08, -0.04, 0.018
+19980702, -0.20, -0.11, 0.31, -0.10, 0.43, 0.018
+19980706, 0.85, -0.71, 0.17, -0.20, -0.37, 0.018
+19980707, -0.17, -0.15, 0.07, 0.06, -0.16, 0.018
+19980708, 0.90, -0.75, -0.53, 0.45, -0.63, 0.018
+19980709, -0.51, 0.71, -0.07, 0.02, -0.21, 0.018
+19980710, 0.31, -0.43, -0.56, 0.37, -0.16, 0.018
+19980713, 0.10, -0.05, -0.31, 0.17, -0.65, 0.018
+19980714, 0.83, -0.65, -0.15, 0.21, 0.53, 0.018
+19980715, -0.08, 0.74, -0.62, -0.03, -0.67, 0.018
+19980716, 0.65, -0.37, -0.41, 0.17, 0.01, 0.018
+19980717, 0.20, -0.31, -0.36, -0.16, -0.12, 0.018
+19980720, -0.13, 0.00, -0.46, -0.10, -0.17, 0.018
+19980721, -1.59, 0.45, 0.87, -0.11, 0.69, 0.018
+19980722, -0.28, -0.87, 0.17, 0.28, 0.39, 0.018
+19980723, -2.05, 0.26, 0.49, 0.15, 0.54, 0.018
+19980724, -0.15, -0.37, -0.47, 0.58, 0.42, 0.018
+19980727, 0.20, -1.59, 0.00, 0.45, 0.10, 0.018
+19980728, -1.50, 0.31, 0.50, 0.00, 0.37, 0.018
+19980729, -0.46, 0.11, 0.28, -0.03, 0.74, 0.018
+19980730, 1.45, -0.93, -0.35, 0.02, -0.71, 0.018
+19980731, -1.87, -0.20, 0.42, -0.23, 0.24, 0.018
+19980803, -0.87, -0.77, 0.66, 0.20, 0.41, 0.020
+19980804, -3.55, 0.74, 0.90, 0.00, 0.67, 0.020
+19980805, 0.47, -1.28, -0.22, 0.55, 0.42, 0.020
+19980806, 1.07, 0.81, -0.53, -0.21, -1.28, 0.020
+19980807, 0.39, 1.61, -0.30, -0.85, -0.19, 0.020
+19980810, -0.59, -0.17, -0.02, -0.22, 0.13, 0.020
+19980811, -1.66, -0.93, 0.11, 0.60, 0.86, 0.020
+19980812, 1.54, 0.06, 0.04, -0.14, -0.34, 0.020
+19980813, -0.87, -0.18, 0.35, 0.08, 0.31, 0.020
+19980814, -0.96, 0.71, 0.16, 0.27, 0.07, 0.020
+19980817, 1.51, -1.58, -0.72, 0.65, -0.42, 0.020
+19980818, 1.61, -0.36, -0.45, -0.23, -0.67, 0.020
+19980819, -0.46, -0.75, 0.46, -0.36, 0.41, 0.020
+19980820, -0.67, -0.23, -0.09, 0.19, 0.32, 0.020
+19980821, -1.16, -0.32, 0.06, 0.55, 0.75, 0.020
+19980824, 0.38, -1.12, 0.23, 0.27, 0.42, 0.020
+19980825, 0.21, -1.20, -0.27, 0.24, -0.21, 0.020
+19980826, -1.09, -1.35, -0.09, 0.64, 0.64, 0.020
+19980827, -3.92, 0.18, 0.26, 0.32, 1.07, 0.020
+19980828, -1.70, -0.34, 1.05, 0.81, 1.15, 0.020
+19980831, -6.71, 0.44, 2.43, 0.80, 2.25, 0.020
+19980901, 3.56, -0.98, -1.79, 0.01, -0.78, 0.022
+19980902, -0.02, 1.24, -0.15, -1.00, -0.88, 0.022
+19980903, -1.09, -0.54, -0.21, 0.39, 0.67, 0.022
+19980904, -0.78, 0.97, 0.02, 0.14, 0.56, 0.022
+19980908, 4.92, -1.30, -1.89, -0.19, -1.57, 0.022
+19980909, -1.77, -0.42, 1.17, 0.16, 0.63, 0.022
+19980910, -2.52, 0.25, 0.69, -0.08, 0.57, 0.022
+19980911, 2.67, -0.49, -1.26, 0.70, -1.33, 0.022
+19980914, 2.04, -1.15, 0.03, -0.31, -0.54, 0.022
+19980915, 0.72, -1.06, 0.77, -0.08, -0.03, 0.022
+19980916, 0.84, -0.34, -0.23, -0.64, -0.34, 0.022
+19980917, -2.35, 1.20, 0.60, -0.22, 0.43, 0.022
+19980918, 0.41, 1.38, -0.32, 0.22, 0.06, 0.022
+19980921, 0.19, -0.66, -0.32, -0.24, -0.02, 0.022
+19980922, 0.70, 0.47, -0.61, -0.13, -0.47, 0.022
+19980923, 3.24, -1.59, -0.82, -0.25, -1.11, 0.022
+19980924, -2.05, 0.93, 0.61, -0.05, 0.58, 0.022
+19980925, 0.08, -0.57, 0.17, -0.22, -0.40, 0.022
+19980928, 0.34, -0.37, 0.29, 0.06, 0.42, 0.022
+19980929, -0.11, -0.41, -0.26, 0.38, 0.45, 0.022
+19980930, -2.58, 2.37, 0.18, -0.08, 0.14, 0.022
+19981001, -3.29, -0.16, 1.34, 0.72, 2.19, 0.015
+19981002, 1.40, -1.66, 0.12, -0.43, 0.94, 0.015
+19981005, -1.91, -1.54, 0.91, 0.56, 2.53, 0.015
+19981006, -0.55, -0.67, -0.06, -0.07, 1.04, 0.015
+19981007, -1.80, -1.39, 0.91, 0.88, 2.03, 0.015
+19981008, -1.69, -2.38, 0.16, 1.08, 0.34, 0.015
+19981009, 2.64, -0.65, -1.34, -1.02, -2.52, 0.015
+19981012, 1.65, 0.60, -1.69, -0.65, -1.21, 0.015
+19981013, -0.63, -0.81, 0.85, 0.47, 0.49, 0.015
+19981014, 1.34, -0.28, -0.20, -0.21, -0.42, 0.015
+19981015, 4.06, -1.36, -0.97, -0.12, -1.61, 0.015
+19981016, 1.02, 0.98, -0.42, 0.14, -0.21, 0.015
+19981019, 0.83, 1.58, -0.24, -0.46, -1.29, 0.015
+19981020, 0.27, 1.46, 0.38, -0.38, 0.18, 0.015
+19981021, 0.59, 0.49, -0.59, 0.63, -0.21, 0.015
+19981022, 0.87, 1.17, -0.83, 0.42, -1.10, 0.015
+19981023, -0.60, 1.21, -0.57, -0.08, 0.12, 0.015
+19981026, 0.41, 1.05, -0.56, 0.12, -0.81, 0.015
+19981027, -0.53, 0.66, 0.32, -0.08, -0.29, 0.015
+19981028, 0.24, 0.01, -0.18, -0.02, -0.35, 0.015
+19981029, 1.60, -0.88, -0.53, -0.39, 0.39, 0.015
+19981030, 1.22, -0.50, 0.70, -0.65, -0.43, 0.015
+19981102, 1.40, 0.68, -0.47, -0.19, -0.37, 0.015
+19981103, -0.10, 0.46, 0.11, 0.00, 0.53, 0.015
+19981104, 0.88, 0.38, 0.16, -0.21, -0.99, 0.015
+19981105, 1.28, -0.10, -0.36, 0.12, 0.26, 0.015
+19981106, 0.68, 0.45, -0.62, -0.22, -0.15, 0.015
+19981109, -0.83, 0.53, -0.43, -0.28, -0.58, 0.015
+19981110, -0.15, -0.14, 0.01, 0.20, -0.01, 0.015
+19981111, -0.69, 0.11, 0.11, 0.15, 0.11, 0.015
+19981112, -0.27, -0.09, 0.29, -0.46, 0.74, 0.015
+19981113, 0.53, -1.19, 0.61, -0.20, 0.40, 0.015
+19981116, 0.75, -0.62, -0.27, 0.12, -0.55, 0.015
+19981117, 0.32, -0.76, 0.09, 0.07, -1.01, 0.015
+19981118, 0.51, -0.12, -0.54, -0.55, 0.11, 0.015
+19981119, 0.66, 0.02, -0.39, 0.05, 0.02, 0.015
+19981120, 0.78, -0.54, -0.47, 0.35, -0.01, 0.015
+19981123, 2.02, -1.23, -0.89, -0.06, -0.79, 0.015
+19981124, -0.43, 0.11, 0.47, -0.09, 0.18, 0.015
+19981125, 0.39, 0.55, -0.40, -0.25, 0.01, 0.015
+19981127, 0.54, 0.67, -0.67, -0.77, -0.18, 0.015
+19981130, -2.31, 1.37, 0.73, 0.96, 1.14, 0.015
+19981201, 0.86, -0.80, 0.03, 0.55, -1.01, 0.017
+19981202, -0.21, -0.05, -0.29, 0.48, 0.28, 0.017
+19981203, -1.62, 0.87, 0.50, 0.29, 0.48, 0.017
+19981204, 2.00, -1.25, -0.58, 0.07, -0.71, 0.017
+19981207, 0.89, -0.37, -0.57, 0.03, -0.73, 0.017
+19981208, -0.44, 0.38, -0.27, -0.15, -0.13, 0.017
+19981209, 0.09, 0.06, -0.31, 0.17, 0.00, 0.017
+19981210, -1.55, 0.42, 0.53, 0.12, 0.25, 0.017
+19981211, -0.05, -0.34, -0.33, 0.23, 0.01, 0.017
+19981214, -2.12, 0.16, 0.63, -0.12, 1.08, 0.017
+19981215, 1.67, -1.35, -0.78, -0.09, -0.83, 0.017
+19981216, -0.08, -0.01, 0.37, -0.59, -0.08, 0.017
+19981217, 1.51, -0.86, -0.03, 0.18, -0.50, 0.017
+19981218, 0.68, 0.36, -0.76, 0.09, -0.82, 0.017
+19981221, 1.35, -0.60, -0.73, -0.61, -1.13, 0.017
+19981222, 0.00, -0.29, -0.42, -0.09, 0.82, 0.017
+19981223, 1.93, -0.73, -0.88, 0.03, -0.29, 0.017
+19981224, -0.07, 0.29, -0.02, -0.42, -0.11, 0.017
+19981228, 0.16, 0.36, -0.66, -0.52, -0.16, 0.017
+19981229, 1.14, -0.41, -0.28, 0.47, 0.43, 0.017
+19981230, -0.50, 0.86, 0.44, 0.18, 0.15, 0.017
+19981231, 0.43, 1.86, 0.05, -0.91, -0.25, 0.017
+19990104, -0.19, 0.15, 0.45, -0.37, -0.44, 0.019
+19990105, 1.10, -0.91, 0.12, -0.30, -0.38, 0.019
+19990106, 2.10, -0.74, -0.40, -0.46, -1.12, 0.019
+19990107, -0.07, 0.36, -0.23, -0.66, -0.90, 0.019
+19990108, 0.45, 0.16, 0.38, -0.80, -0.40, 0.019
+19990111, -0.52, 0.97, -0.07, -1.61, -0.83, 0.019
+19990112, -1.85, 0.80, 0.09, 0.44, 0.77, 0.019
+19990113, -0.54, -0.09, -0.22, 0.73, 0.35, 0.019
+19990114, -1.66, 1.06, -0.01, -0.23, -0.05, 0.019
+19990115, 2.28, -0.82, -0.41, -0.04, -0.78, 0.019
+19990119, 0.80, -0.02, -0.67, -0.10, -1.26, 0.019
+19990120, 0.24, 0.15, -0.67, 0.81, -0.54, 0.019
+19990121, -1.82, 0.53, 0.73, 0.49, 0.67, 0.019
+19990122, -0.66, 0.32, 0.15, -0.56, 0.08, 0.019
+19990125, 0.67, -0.84, -0.24, -0.33, 0.04, 0.019
+19990126, 1.39, -0.60, -1.13, 0.42, -0.73, 0.019
+19990127, -0.74, -0.14, -0.57, -0.34, 0.22, 0.019
+19990128, 1.63, -1.25, -0.69, -0.13, -0.80, 0.019
+19990129, 0.95, 0.10, -0.61, 0.43, -0.60, 0.019
+19990201, -0.39, -0.02, -0.27, -0.32, -0.40, 0.019
+19990202, -0.89, -0.16, -0.18, 0.07, 0.75, 0.019
+19990203, 0.90, -0.34, -0.72, -0.57, -0.31, 0.019
+19990204, -1.92, 0.63, 1.06, -0.19, 1.71, 0.019
+19990205, -0.92, -0.42, 0.79, -0.12, 0.68, 0.019
+19990208, 0.23, -0.60, 0.13, 0.39, -0.37, 0.019
+19990209, -2.25, 0.43, 1.40, 0.68, 1.26, 0.019
+19990210, 0.27, -1.32, -0.45, 0.74, 0.08, 0.019
+19990211, 2.49, -0.90, -1.60, -1.04, -1.66, 0.019
+19990212, -1.90, 0.23, 0.51, -0.12, 1.32, 0.019
+19990216, 0.65, -1.26, -0.16, -0.16, 0.13, 0.019
+19990217, -1.45, -0.40, 1.11, 0.38, 1.05, 0.019
+19990218, 0.92, -0.97, 0.67, -0.23, 0.55, 0.019
+19990219, 0.25, 0.08, -0.50, -0.32, -0.41, 0.019
+19990222, 2.41, -1.35, -0.57, 0.08, -0.71, 0.019
+19990223, 0.09, 0.19, -0.57, -0.54, -0.84, 0.019
+19990224, -1.31, 0.48, 0.23, 0.02, 0.35, 0.019
+19990225, -0.69, 0.10, 0.05, -0.03, 0.37, 0.019
+19990226, -0.49, 0.17, 0.46, -0.40, 0.60, 0.019
+19990301, -0.01, 0.24, 0.07, -0.32, -0.32, 0.018
+19990302, -0.69, 0.33, 0.48, -0.49, 0.68, 0.018
+19990303, 0.01, -0.72, 0.11, 0.27, 0.19, 0.018
+19990304, 1.34, -1.01, -0.31, 0.19, 0.12, 0.018
+19990305, 2.04, -1.27, -0.47, 0.40, -0.24, 0.018
+19990308, 0.66, -0.39, -0.94, -0.65, -0.93, 0.018
+19990309, -0.23, 0.08, -0.24, -0.11, -0.31, 0.018
+19990310, 0.52, 0.02, -0.31, -0.60, 0.09, 0.018
+19990311, 0.73, -0.76, 0.04, -0.04, 0.12, 0.018
+19990312, -0.32, -0.29, 0.72, -0.11, 0.51, 0.018
+19990315, 0.94, -0.56, -0.33, -0.53, -0.47, 0.018
+19990316, -0.15, -0.27, -0.30, 0.21, -0.29, 0.018
+19990317, -0.55, 0.18, 0.37, -0.87, -0.03, 0.018
+19990318, 1.27, -1.16, -0.20, -0.10, -0.40, 0.018
+19990319, -1.32, 0.44, 0.81, -0.30, 0.38, 0.018
+19990322, -0.33, -0.44, 0.33, -0.69, 0.93, 0.018
+19990323, -2.64, 0.62, 0.88, 0.73, 0.97, 0.018
+19990324, 0.51, -0.55, -0.26, 0.23, -0.62, 0.018
+19990325, 1.78, 0.18, -1.02, -0.66, -0.79, 0.018
+19990326, -0.50, 0.83, -0.33, -0.24, -0.07, 0.018
+19990329, 1.98, -0.55, -1.75, 0.19, -0.67, 0.018
+19990330, -0.63, 0.44, -0.24, -0.14, 0.05, 0.018
+19990331, -0.86, 0.28, 0.22, -0.48, -0.32, 0.018
+19990401, 0.54, -0.29, -0.02, -0.50, -0.25, 0.018
+19990405, 1.87, -1.23, -0.56, -0.97, -0.58, 0.018
+19990406, -0.26, -0.05, 0.13, -0.23, -0.19, 0.018
+19990407, 0.42, -0.67, -0.22, 0.74, -0.33, 0.018
+19990408, 1.27, -0.51, -0.77, 0.01, -0.34, 0.018
+19990409, 0.43, 1.20, -0.48, -0.34, -0.28, 0.018
+19990412, 0.87, 0.52, -0.19, -0.89, 0.66, 0.018
+19990413, -0.34, 2.02, -0.18, -0.92, -0.03, 0.018
+19990414, -1.43, 1.11, 1.99, 0.77, 1.13, 0.018
+19990415, -0.39, 0.02, 0.85, 0.74, 0.15, 0.018
+19990416, -0.23, 1.12, 1.04, -0.06, 0.67, 0.018
+19990419, -2.48, -0.24, 3.78, 2.28, 2.31, 0.018
+19990420, 1.38, -0.45, -1.98, -1.01, -1.46, 0.018
+19990421, 2.53, 0.06, -1.93, -1.18, -0.92, 0.018
+19990422, 1.35, -0.86, -0.89, -0.49, -0.62, 0.018
+19990423, 0.11, 0.58, 0.16, -0.37, -0.67, 0.018
+19990426, 0.44, 0.57, -1.24, -1.05, -0.35, 0.018
+19990427, 0.09, 0.12, 0.59, 0.73, 0.58, 0.018
+19990428, -0.88, 0.29, 1.59, 0.74, 0.96, 0.018
+19990429, -0.45, 0.57, 0.86, 0.07, 0.43, 0.018
+19990430, -0.47, 0.49, -0.40, -0.50, -0.15, 0.018
+19990503, 1.10, -1.02, 0.59, 0.85, 0.69, 0.017
+19990504, -1.49, 0.96, 0.44, 0.58, 1.22, 0.017
+19990505, 1.03, -0.94, -0.16, -0.58, -0.48, 0.017
+19990506, -1.15, 1.08, 1.01, 0.54, 1.15, 0.017
+19990507, 0.89, -0.44, -0.10, -0.10, -0.50, 0.017
+19990510, -0.03, 1.16, 0.15, -0.89, -0.25, 0.017
+19990511, 1.19, -0.23, -0.88, -0.53, -0.23, 0.017
+19990512, 0.65, 0.05, -0.52, 0.05, -0.69, 0.017
+19990513, 0.23, 0.25, 0.13, 0.66, 0.84, 0.017
+19990514, -2.14, 0.81, 0.52, -0.15, 0.79, 0.017
+19990517, 0.15, -0.43, -0.74, -0.25, -0.37, 0.017
+19990518, -0.40, 0.54, 0.41, -0.07, -0.25, 0.017
+19990519, 0.82, -0.12, -0.20, -0.32, -0.12, 0.017
+19990520, -0.36, 1.10, 0.41, 0.41, 0.72, 0.017
+19990521, -0.57, 0.94, 0.70, 0.25, 0.53, 0.017
+19990524, -1.93, 0.21, 1.03, 0.58, 0.56, 0.017
+19990525, -1.81, 0.10, 1.05, 0.40, 1.02, 0.017
+19990526, 1.41, -1.42, -0.66, -0.07, -0.56, 0.017
+19990527, -1.43, 1.17, -0.03, 0.18, -0.13, 0.017
+19990528, 1.53, -0.17, -0.66, -0.47, -0.62, 0.017
+19990601, -0.80, 0.58, 0.82, 0.65, 1.01, 0.018
+19990602, 0.13, -0.47, -0.44, -0.11, -0.08, 0.018
+19990603, 0.12, -0.19, 0.33, 0.27, 0.28, 0.018
+19990604, 2.03, -0.71, -1.62, -0.42, -0.55, 0.018
+19990607, 0.71, 0.22, -0.06, -0.63, -0.60, 0.018
+19990608, -1.23, 0.75, 0.42, 0.14, 0.10, 0.018
+19990609, 0.16, 0.47, -0.62, -0.32, -0.65, 0.018
+19990610, -1.20, 0.64, 0.57, 0.06, 0.22, 0.018
+19990611, -0.80, 0.11, 0.33, 0.57, 0.22, 0.018
+19990614, -0.49, -1.04, 1.02, 1.22, 1.13, 0.018
+19990615, 0.52, -0.47, -0.02, -0.03, -0.14, 0.018
+19990616, 2.26, -0.86, -1.06, -0.85, -1.54, 0.018
+19990617, 0.72, -0.12, -0.74, -0.28, -0.41, 0.018
+19990618, 0.22, 0.35, -0.13, -0.38, -0.15, 0.018
+19990621, 0.63, 0.60, -0.72, -0.15, -1.29, 0.018
+19990622, -0.93, 0.72, 0.30, 0.59, 0.64, 0.018
+19990623, -0.14, 0.12, -0.22, -0.23, -0.05, 0.018
+19990624, -1.31, 0.74, 0.59, 0.16, 0.52, 0.018
+19990625, -0.06, 0.19, -0.06, 0.30, 0.11, 0.018
+19990628, 1.23, 0.05, -0.24, -0.29, -0.73, 0.018
+19990629, 1.49, -0.25, -0.93, 0.26, -0.39, 0.018
+19990630, 1.60, 0.82, -1.48, 0.47, -1.02, 0.018
+19990701, 0.55, -0.90, -0.20, -0.24, 0.51, 0.018
+19990702, 0.73, -0.05, -0.48, -0.07, -0.25, 0.018
+19990706, -0.08, 0.22, 0.14, -0.51, -0.18, 0.018
+19990707, 0.22, -0.68, -0.19, 0.41, 0.53, 0.018
+19990708, 0.03, 0.43, -0.54, -0.81, -0.23, 0.018
+19990709, 0.54, 0.40, -0.43, -0.01, -0.27, 0.018
+19990712, -0.24, 0.66, 0.19, 0.24, 0.27, 0.018
+19990713, -0.39, 0.25, -0.02, -0.09, 0.12, 0.018
+19990714, 0.46, 0.33, -0.65, -0.33, -0.18, 0.018
+19990715, 0.83, 0.24, -0.64, 0.66, -0.37, 0.018
+19990716, 0.48, -0.43, -0.07, 0.61, -0.30, 0.018
+19990719, -0.82, 0.22, 0.62, 0.15, 0.47, 0.018
+19990720, -2.22, 0.41, 1.07, -0.03, 0.85, 0.018
+19990721, 0.27, -0.05, -0.55, -0.25, 0.13, 0.018
+19990722, -1.33, 0.47, 0.94, 0.50, 0.72, 0.018
+19990723, -0.32, -0.32, 0.02, -0.17, 0.01, 0.018
+19990726, -1.02, -0.34, 0.82, 0.73, 0.70, 0.018
+19990727, 1.12, -0.51, -0.74, 0.17, -0.25, 0.018
+19990728, 0.15, 0.03, -0.44, -0.32, -0.07, 0.018
+19990729, -1.75, 0.80, 0.48, 0.12, 0.77, 0.018
+19990730, -0.72, 1.44, -0.19, -0.27, 0.11, 0.018
+19990802, -0.27, -0.31, 0.52, 0.39, 0.54, 0.018
+19990803, -0.79, -0.73, 0.50, 0.56, 0.82, 0.018
+19990804, -1.45, -0.27, 1.25, 0.23, 0.66, 0.018
+19990805, 0.63, -0.96, -0.45, -0.56, -0.07, 0.018
+19990806, -1.00, 0.84, 0.14, -0.03, 0.33, 0.018
+19990809, -0.41, -0.15, 0.85, 0.55, 0.38, 0.018
+19990810, -1.16, 0.30, 0.05, -0.13, 0.00, 0.018
+19990811, 1.63, -0.64, -0.23, -0.34, -0.71, 0.018
+19990812, -0.14, 0.37, 0.11, -0.24, 0.26, 0.018
+19990813, 2.21, -1.15, -0.97, 0.12, -1.13, 0.018
+19990816, 0.26, -0.17, -0.53, -0.07, 0.10, 0.018
+19990817, 0.97, -0.62, -0.29, -0.21, -0.31, 0.018
+19990818, -0.75, 0.35, -0.21, -0.19, -0.03, 0.018
+19990819, -0.78, 0.79, 0.68, -0.10, 0.76, 0.018
+19990820, 0.89, -0.47, -0.44, -0.12, 0.00, 0.018
+19990823, 1.76, -1.13, -0.88, 0.15, -0.78, 0.018
+19990824, 0.18, -0.15, -0.37, -0.01, -0.70, 0.018
+19990825, 1.21, -0.71, -1.49, 0.06, -0.18, 0.018
+19990826, -1.18, 0.99, 0.27, -0.13, 0.23, 0.018
+19990827, -0.99, 0.58, 0.39, -0.18, 0.04, 0.018
+19990830, -1.78, 0.96, -0.08, 0.40, 0.44, 0.018
+19990831, -0.17, 0.20, -0.13, -0.69, -0.35, 0.018
+19990901, 0.76, -0.15, -0.12, 0.20, 0.29, 0.018
+19990902, -0.86, 0.33, 0.11, 0.14, 0.18, 0.018
+19990903, 2.84, -1.29, -1.23, -0.23, -0.53, 0.018
+19990907, -0.34, 0.93, -0.05, -0.47, 0.13, 0.018
+19990908, -0.55, 0.22, 0.31, -0.19, 0.57, 0.018
+19990909, 0.31, 0.04, 0.05, -0.72, -0.26, 0.018
+19990910, 0.44, 0.42, -0.48, -0.57, -0.80, 0.018
+19990913, -0.64, 0.33, 0.32, 0.34, 0.19, 0.018
+19990914, -0.52, 0.12, -0.26, -0.27, -0.13, 0.018
+19990915, -1.28, 0.95, 0.80, 0.27, -0.08, 0.018
+19990916, -0.20, -1.03, 0.04, 0.18, 0.28, 0.018
+19990917, 1.22, -0.39, -0.80, -0.11, -0.48, 0.018
+19990920, 0.00, -0.08, -0.61, 0.27, -0.52, 0.018
+19990921, -1.93, 0.65, 0.08, 0.07, 0.13, 0.018
+19990922, 0.29, -0.09, -0.74, -0.48, -0.18, 0.018
+19990923, -2.35, 0.78, 0.84, -0.12, 0.63, 0.018
+19990924, -0.19, -0.58, -0.33, 0.60, -0.24, 0.018
+19990927, 0.42, 0.56, -0.37, 0.14, 0.36, 0.018
+19990928, -0.23, -0.28, -0.83, 0.51, -0.41, 0.018
+19990929, -0.80, 0.90, 0.56, -0.60, 0.12, 0.018
+19990930, 0.92, 0.29, -0.88, 0.45, -0.45, 0.018
+19991001, -0.16, -0.29, -0.26, 0.20, 0.31, 0.018
+19991004, 1.66, -1.25, -0.26, 0.57, -0.22, 0.018
+19991005, -0.09, -0.16, -0.21, 0.06, -0.25, 0.018
+19991006, 1.82, -1.37, -0.58, -0.66, 0.03, 0.018
+19991007, -0.47, 0.19, -0.14, -0.71, -0.06, 0.018
+19991008, 1.09, -0.97, -0.45, 0.35, -0.27, 0.018
+19991011, 0.21, 0.28, -0.11, -0.65, -0.23, 0.018
+19991012, -1.72, 0.61, 0.55, 0.01, -0.07, 0.018
+19991013, -2.04, 0.65, 1.04, -0.11, 0.87, 0.018
+19991014, -0.02, -0.13, 0.00, -0.33, 0.38, 0.018
+19991015, -2.65, 1.66, 0.28, -0.03, 0.51, 0.018
+19991018, 0.09, -1.51, 0.16, 0.84, 0.76, 0.018
+19991019, 0.76, -0.31, -0.82, 0.02, -0.38, 0.018
+19991020, 1.86, -0.93, -1.31, -0.21, -1.05, 0.018
+19991021, -0.16, 0.13, -0.22, -0.38, -0.06, 0.018
+19991022, 1.31, -0.68, 0.55, -0.26, 0.09, 0.018
+19991025, -0.43, 0.39, 0.05, -0.31, -0.18, 0.018
+19991026, -0.85, 0.84, -0.05, -0.07, -0.51, 0.018
+19991027, 0.89, -0.92, 0.13, 0.62, 0.05, 0.018
+19991028, 3.32, -2.30, -0.82, -0.11, -0.41, 0.018
+19991029, 1.73, -1.05, -0.36, -0.44, -0.47, 0.018
+19991101, -0.38, 1.18, -0.49, -0.01, -0.28, 0.017
+19991102, -0.33, 0.49, 0.45, -0.22, -0.17, 0.017
+19991103, 0.69, 0.93, -0.70, -0.37, -0.43, 0.017
+19991104, 0.66, -0.29, -0.55, -0.36, -0.05, 0.017
+19991105, 0.79, -0.38, -0.36, -0.68, -0.37, 0.017
+19991108, 0.59, 0.20, -0.66, -1.00, 0.29, 0.017
+19991109, -0.78, 1.21, 0.13, -0.31, 0.04, 0.017
+19991110, 0.53, 0.20, -0.59, -0.68, 0.09, 0.017
+19991111, 0.37, -0.17, -0.68, 0.05, -0.05, 0.017
+19991112, 1.10, -0.78, 0.11, -0.23, -0.18, 0.017
+19991115, 0.03, 0.83, 0.47, -0.20, -0.14, 0.017
+19991116, 1.84, -1.00, -0.69, -0.31, -0.47, 0.017
+19991117, -0.63, 0.95, 0.00, -0.14, 0.09, 0.017
+19991118, 1.13, 0.33, -1.44, -0.30, -0.91, 0.017
+19991119, -0.11, 0.19, -0.50, 0.42, -0.36, 0.017
+19991122, 0.02, 0.15, -0.92, 0.20, -0.26, 0.017
+19991123, -1.29, 0.14, 0.30, 0.63, -0.05, 0.017
+19991124, 0.87, -0.39, -0.89, -0.43, -0.14, 0.017
+19991126, 0.23, 0.81, -0.20, -0.46, 0.15, 0.017
+19991129, -0.60, 0.54, -0.14, 0.21, 0.71, 0.017
+19991130, -1.28, 0.42, 1.28, 0.51, 0.90, 0.017
+19991201, 0.49, -0.33, -0.29, 0.14, -0.34, 0.020
+19991202, 1.15, 0.25, -1.01, -0.91, -0.57, 0.020
+19991203, 1.59, -1.00, -0.52, -0.19, -0.34, 0.020
+19991206, -0.42, 0.72, -0.55, -0.95, -0.41, 0.020
+19991207, -0.43, 0.81, -1.16, -1.42, -0.24, 0.020
+19991208, -0.08, 1.03, -0.45, -0.48, 0.05, 0.020
+19991209, 0.30, -0.49, -0.56, -0.67, -0.35, 0.020
+19991210, 0.51, 0.41, -0.69, -0.19, -0.76, 0.020
+19991213, 0.05, 0.91, -0.65, -0.74, -0.40, 0.020
+19991214, -1.33, -0.20, 1.27, 1.07, 0.90, 0.020
+19991215, 0.54, -1.02, 0.13, 0.82, -0.48, 0.020
+19991216, 0.61, 0.27, -0.73, -0.96, -0.82, 0.020
+19991217, 0.27, -0.03, -0.23, -0.58, -0.29, 0.020
+19991220, -0.08, 0.54, -0.68, 0.03, -0.15, 0.020
+19991221, 1.44, 0.01, -0.77, -1.09, -0.52, 0.020
+19991222, 0.33, 0.00, -0.19, -0.12, 0.04, 0.020
+19991223, 1.30, -0.52, -0.33, 0.05, -0.10, 0.020
+19991227, -0.21, 0.62, -0.73, 0.33, 0.01, 0.020
+19991228, 0.21, 0.41, 0.15, -0.29, 0.45, 0.020
+19991229, 0.64, 1.00, -0.10, -0.90, -0.62, 0.020
+19991230, 0.08, 0.07, -0.10, 0.41, -0.22, 0.020
+19991231, 0.52, 1.46, 0.29, -0.57, 0.13, 0.020
+20000103, -0.71, -0.16, -0.85, -1.40, -0.77, 0.021
+20000104, -4.06, 0.33, 2.21, 0.32, 1.46, 0.021
+20000105, -0.09, 0.31, 0.14, 0.36, 1.01, 0.021
+20000106, -0.73, -0.12, 1.38, 0.54, 1.19, 0.021
+20000107, 3.21, -0.97, -1.24, -0.79, -0.95, 0.021
+20000110, 1.76, 0.53, -1.51, -1.87, -0.07, 0.021
+20000111, -1.71, 0.34, 0.93, 0.83, 1.18, 0.021
+20000112, -0.69, -0.22, 0.91, 0.34, 0.91, 0.021
+20000113, 1.59, 0.57, -1.31, -1.74, -1.03, 0.021
+20000114, 1.15, 0.15, -0.19, -0.29, -0.61, 0.021
+20000118, -0.26, 2.32, -0.47, -1.46, -0.08, 0.021
+20000119, 0.44, 0.71, -0.51, -1.03, 0.50, 0.021
+20000120, -0.37, 1.71, -1.15, -1.03, -0.49, 0.021
+20000121, 0.23, 1.18, -0.46, -1.27, 0.34, 0.021
+20000124, -2.59, 1.41, 0.83, 0.60, 0.96, 0.021
+20000125, 0.49, -0.64, -0.46, -0.62, -0.62, 0.021
+20000126, -0.44, 0.28, 0.30, 0.28, 0.94, 0.021
+20000127, -0.44, -0.40, -0.09, 0.18, -0.05, 0.021
+20000128, -2.82, 0.23, 1.36, 1.04, 0.33, 0.021
+20000131, 1.50, -3.37, -0.37, 0.80, 0.48, 0.021
+20000201, 1.29, -0.13, 0.15, -0.48, -1.07, 0.022
+20000202, 0.16, 1.34, -0.54, -1.06, 0.11, 0.022
+20000203, 1.49, 0.97, -1.37, -0.94, -0.65, 0.022
+20000204, -0.05, 1.14, -0.58, -0.34, -0.09, 0.022
+20000207, 0.35, 1.23, -1.24, -0.98, -0.09, 0.022
+20000208, 1.23, 0.11, -1.79, -1.54, -0.90, 0.022
+20000209, -1.83, 1.83, -0.08, -0.36, 0.43, 0.022
+20000210, 0.57, 0.94, -1.15, -1.77, -0.41, 0.022
+20000211, -1.74, 1.35, 0.61, -0.62, 0.45, 0.022
+20000214, 0.24, 0.69, 0.18, 0.04, -0.54, 0.022
+20000215, 0.70, -0.78, 0.01, -0.01, 0.92, 0.022
+20000216, -0.58, 1.79, -0.33, -2.01, 0.74, 0.022
+20000217, 0.46, 1.69, -1.13, -2.31, -0.11, 0.022
+20000218, -2.69, 1.27, 0.59, -0.46, 0.35, 0.022
+20000222, 0.11, -0.99, 0.36, 0.38, 0.25, 0.022
+20000223, 1.24, 0.30, -1.63, -1.00, -1.11, 0.022
+20000224, 0.01, 0.74, -0.36, -0.67, -1.12, 0.022
+20000225, -1.04, 1.78, 0.16, -0.91, 0.22, 0.022
+20000228, 0.76, -0.20, -0.11, 0.20, 0.61, 0.022
+20000229, 1.96, 1.62, -0.68, -1.78, 0.74, 0.022
+20000301, 1.39, 0.91, -0.61, -1.31, -0.08, 0.020
+20000302, -0.09, 0.11, 0.28, 0.92, 0.56, 0.020
+20000303, 2.30, -0.22, -0.96, -1.01, -0.56, 0.020
+20000306, -0.77, 1.69, 0.25, -1.29, 0.48, 0.020
+20000307, -2.20, 0.89, 0.38, -0.54, -0.04, 0.020
+20000308, 0.69, -0.66, -0.26, 0.29, -1.49, 0.020
+20000309, 2.45, -0.71, -0.56, 0.59, -1.23, 0.020
+20000310, -0.43, 0.31, 0.26, 0.32, 0.01, 0.020
+20000313, -1.48, -0.77, 1.10, 1.47, 0.05, 0.020
+20000314, -2.33, -0.90, 1.23, 2.30, -0.30, 0.020
+20000315, 0.83, -4.31, 1.50, 3.21, 1.40, 0.020
+20000316, 4.25, -3.34, 0.36, 0.98, -0.31, 0.020
+20000317, 0.62, 0.26, -0.69, -0.08, -0.38, 0.020
+20000320, -1.71, -2.44, 2.11, 3.05, 0.58, 0.020
+20000321, 1.95, -2.50, -0.39, 0.30, -1.21, 0.020
+20000322, 1.31, 2.22, -1.29, -2.05, -0.62, 0.020
+20000323, 1.48, -0.81, 0.38, 0.96, -0.07, 0.020
+20000324, 0.11, -0.36, -0.04, 0.11, -0.21, 0.020
+20000327, -0.39, 0.21, -0.42, -0.20, 0.37, 0.020
+20000328, -1.34, -0.96, 0.92, 0.78, 0.00, 0.020
+20000329, -1.00, -2.14, 1.90, 2.68, 0.87, 0.020
+20000330, -1.76, -1.44, 1.67, 1.57, 0.67, 0.020
+20000331, 1.19, 0.32, 0.01, -1.61, 0.03, 0.020
+20000403, -1.67, -3.42, 2.16, 4.40, 2.18, 0.024
+20000404, -1.20, -1.92, 0.26, 1.71, 0.51, 0.024
+20000405, 0.01, 1.55, -0.74, -1.08, 0.14, 0.024
+20000406, 1.47, 1.41, -0.43, -1.65, 0.82, 0.024
+20000407, 1.42, 1.26, -0.68, -0.95, -1.24, 0.024
+20000410, -1.95, -2.65, 2.18, 3.27, 1.10, 0.024
+20000411, -1.01, -1.83, 2.18, 2.05, 1.18, 0.024
+20000412, -2.97, -1.92, 2.85, 1.97, 1.44, 0.024
+20000413, -1.80, 0.05, 0.95, 0.35, 0.77, 0.024
+20000414, -6.72, -1.12, 2.07, 2.91, 0.80, 0.024
+20000417, 2.94, -2.50, -1.56, 0.12, -2.03, 0.024
+20000418, 3.84, 2.82, -2.40, -2.88, -0.89, 0.024
+20000419, -0.80, 1.67, 0.11, -0.49, 1.00, 0.024
+20000420, 0.09, -0.90, 1.04, 0.67, 0.45, 0.024
+20000424, -1.01, -1.98, 1.14, 2.25, 1.39, 0.024
+20000425, 3.74, 0.19, -1.06, -2.02, -1.19, 0.024
+20000426, -1.23, 0.58, 1.33, 0.15, 0.60, 0.024
+20000427, 0.76, 1.09, -0.77, -1.59, -1.21, 0.024
+20000428, 0.07, 2.26, 0.01, -1.98, -0.33, 0.024
+20000501, 1.40, 1.25, -1.21, -0.87, -0.52, 0.023
+20000502, -2.07, -0.54, 1.93, 1.38, 0.78, 0.023
+20000503, -2.09, 0.29, -0.46, 0.67, 0.34, 0.023
+20000504, 0.00, 0.97, -0.08, -1.08, 0.27, 0.023
+20000505, 1.48, 0.53, -0.67, -0.23, -0.23, 0.023
+20000508, -0.98, -1.21, 1.47, 0.97, 0.84, 0.023
+20000509, -1.19, -0.63, 0.90, 1.58, 0.01, 0.023
+20000510, -2.70, -0.80, 0.87, 1.38, 1.04, 0.023
+20000511, 2.08, 0.33, -0.23, -0.96, -1.14, 0.023
+20000512, 0.81, -0.55, 0.51, 0.05, -0.05, 0.023
+20000515, 2.13, -0.91, -0.79, -0.29, -0.45, 0.023
+20000516, 1.30, 0.01, -0.63, -1.21, -0.55, 0.023
+20000517, -1.38, 0.43, 0.73, 0.29, 0.36, 0.023
+20000518, -1.09, -0.80, 1.06, 0.87, 0.93, 0.023
+20000519, -2.39, -0.02, 0.88, 0.81, 0.55, 0.023
+20000522, -0.73, -1.17, -0.31, 0.68, -0.16, 0.023
+20000523, -2.38, -0.35, 1.39, 2.10, 0.92, 0.023
+20000524, 1.55, -1.67, -1.27, 0.56, -1.06, 0.023
+20000525, -1.29, 0.35, 0.11, 0.09, -0.09, 0.023
+20000526, -0.18, 0.19, -0.05, 0.05, -0.08, 0.023
+20000530, 3.82, 0.13, -2.25, -2.24, -1.46, 0.023
+20000531, -0.22, 0.23, 0.54, -0.18, 0.54, 0.023
+20000601, 2.50, 0.44, -1.64, -1.93, -0.85, 0.018
+20000602, 2.91, 1.18, -2.45, -2.72, -1.60, 0.018
+20000605, -0.37, 1.22, -0.56, -1.09, 0.46, 0.018
+20000606, -0.87, 0.78, 0.18, -0.06, 0.85, 0.018
+20000607, 1.16, 0.02, -0.76, -0.59, -0.77, 0.018
+20000608, -0.60, 0.61, 0.17, -0.30, -0.12, 0.018
+20000609, 0.04, 1.63, -0.07, -1.14, 0.31, 0.018
+20000612, -1.19, -0.60, 1.28, 0.87, 0.87, 0.018
+20000613, 1.45, -0.58, -0.99, 0.28, -0.85, 0.018
+20000614, -0.16, -0.25, 0.35, 1.17, 0.02, 0.018
+20000615, 0.50, -0.22, -1.23, -0.10, -0.38, 0.018
+20000616, -0.74, 1.04, -0.19, -0.68, -0.04, 0.018
+20000619, 1.66, -0.24, -1.27, -0.67, -0.28, 0.018
+20000620, -0.25, 0.67, -0.51, -1.44, -0.18, 0.018
+20000621, 0.36, 0.42, -0.49, -0.63, -0.05, 0.018
+20000622, -1.88, 0.15, 0.43, 1.09, 0.16, 0.018
+20000623, -0.99, 0.13, 1.05, 0.59, 0.86, 0.018
+20000626, 0.92, 1.12, -1.36, 0.62, -0.93, 0.018
+20000627, -0.55, -0.33, 0.77, 0.81, -0.19, 0.018
+20000628, 0.77, 1.61, -1.20, -0.74, -0.29, 0.018
+20000629, -0.67, 0.19, 0.62, 0.61, 1.18, 0.018
+20000630, 0.74, 0.94, -1.56, -0.20, -1.46, 0.018
+20000703, 0.91, -0.27, 0.83, -0.07, 0.27, 0.024
+20000705, -1.60, 0.53, 1.85, 0.57, 1.32, 0.024
+20000706, 0.87, -0.05, -0.15, -0.28, -0.88, 0.024
+20000707, 1.46, -0.91, -0.81, 0.13, -0.45, 0.024
+20000710, -0.13, 0.36, 0.59, 0.76, 0.61, 0.024
+20000711, 0.12, -0.20, 0.10, 0.53, 1.07, 0.024
+20000712, 1.31, 0.25, -0.64, -1.40, -1.31, 0.024
+20000713, 0.51, 0.02, -0.57, -1.84, -1.37, 0.024
+20000714, 0.94, -0.63, -0.41, -0.77, -1.05, 0.024
+20000717, 0.10, 0.73, -1.32, -0.20, -0.21, 0.024
+20000718, -1.35, 0.43, 1.19, 0.76, 0.92, 0.024
+20000719, -1.19, -0.13, 1.25, 1.01, 0.95, 0.024
+20000720, 1.33, -0.39, -0.80, -0.60, -0.85, 0.024
+20000721, -1.30, -0.32, 1.10, 1.11, 1.02, 0.024
+20000724, -1.44, -0.22, 0.87, 1.82, 0.80, 0.024
+20000725, 0.51, -0.71, 0.23, -0.23, -0.76, 0.024
+20000726, -1.33, 1.06, 0.94, 0.29, 0.33, 0.024
+20000727, -0.90, -1.26, 2.48, 2.48, 1.71, 0.024
+20000728, -2.33, 0.07, 1.72, 1.99, 1.62, 0.024
+20000731, 1.03, 0.59, -0.45, -0.27, -0.97, 0.024
+20000801, 0.16, -0.93, 1.54, 0.96, 1.99, 0.022
+20000802, 0.02, 0.12, 0.21, 0.79, 0.63, 0.022
+20000803, 1.11, -1.26, -0.01, 0.14, -1.17, 0.022
+20000804, 0.89, -0.46, 0.23, -0.67, 0.01, 0.022
+20000807, 1.16, -0.08, -0.73, -0.43, -0.62, 0.022
+20000808, 0.10, -0.39, 1.08, 0.56, 0.41, 0.022
+20000809, -0.60, 0.46, 0.06, -0.16, -0.05, 0.022
+20000810, -1.03, -0.11, 1.18, 1.15, 0.98, 0.022
+20000811, 0.86, 0.25, 0.26, 0.36, 0.50, 0.022
+20000814, 1.24, -0.38, -0.40, -0.37, -0.02, 0.022
+20000815, -0.46, -0.05, 0.05, -0.24, -0.17, 0.022
+20000816, -0.18, 0.63, -0.20, -0.56, -0.31, 0.022
+20000817, 1.12, -0.59, -0.60, -0.74, -0.44, 0.022
+20000818, -0.28, 0.09, 0.03, -0.35, -0.04, 0.022
+20000821, 0.40, -0.19, -0.49, 0.16, -0.13, 0.022
+20000822, -0.01, 0.10, 0.09, -0.20, -0.03, 0.022
+20000823, 0.55, -0.25, -1.02, -0.43, -0.33, 0.022
+20000824, 0.34, 0.43, -0.47, -0.72, 0.18, 0.022
+20000825, -0.04, 0.59, -0.46, -0.24, 0.23, 0.022
+20000828, 0.49, -0.24, -0.11, -0.18, -0.39, 0.022
+20000829, -0.03, 0.64, -0.24, -0.30, -0.34, 0.022
+20000830, -0.11, 0.59, -0.01, -1.02, -0.12, 0.022
+20000831, 1.19, 0.01, -0.65, -0.38, -0.25, 0.022
+20000901, 0.38, 0.14, -0.35, -0.56, -0.13, 0.025
+20000905, -0.97, 0.32, 1.33, 0.38, 0.55, 0.025
+20000906, -1.23, 0.47, 2.01, 1.09, 0.96, 0.025
+20000907, 0.80, 0.34, -0.72, 0.02, -0.33, 0.025
+20000908, -0.83, -0.33, 0.90, 1.21, 1.25, 0.025
+20000911, -0.45, -0.30, 1.43, 0.85, 0.85, 0.025
+20000912, -0.50, 0.41, -0.08, 0.61, 0.68, 0.025
+20000913, 0.29, -0.29, -0.15, -0.80, -0.33, 0.025
+20000914, 0.01, 0.89, -0.37, -1.13, -0.60, 0.025
+20000915, -1.23, 0.06, 0.98, -0.17, 0.96, 0.025
+20000918, -1.80, -0.44, 0.55, 1.33, 0.51, 0.025
+20000919, 1.24, -0.30, -1.53, -1.00, -1.53, 0.025
+20000920, -0.39, 0.29, -0.59, 0.36, -0.41, 0.025
+20000921, -0.54, -0.58, 1.08, 1.44, 1.24, 0.025
+20000922, 0.40, -0.60, -0.15, -0.97, 0.99, 0.025
+20000925, -0.56, -0.18, 0.45, 0.07, 0.28, 0.025
+20000926, -0.96, -0.27, 1.12, 0.48, 0.52, 0.025
+20000927, -0.21, -0.58, 0.33, 0.59, 0.72, 0.025
+20000928, 2.32, 0.00, -1.21, -0.75, -0.93, 0.025
+20000929, -1.26, 1.15, 1.25, -0.01, 1.34, 0.025
+20001002, -0.70, -1.11, 1.47, 1.80, 0.65, 0.025
+20001003, -1.29, 0.20, 1.05, 1.56, 0.93, 0.025
+20001004, 0.64, -0.27, -0.64, -0.59, -1.35, 0.025
+20001005, -0.23, -0.32, 0.08, 1.36, 1.17, 0.025
+20001006, -2.17, 0.06, 1.57, 1.45, 0.86, 0.025
+20001009, -0.39, -0.43, 0.51, -0.68, -0.07, 0.025
+20001010, -1.44, 0.14, 0.69, 0.67, 1.35, 0.025
+20001011, -1.77, 0.22, 0.85, 1.62, 0.92, 0.025
+20001012, -2.83, 0.81, 1.21, 1.78, 0.84, 0.025
+20001013, 3.88, -1.06, -2.36, -1.84, -2.59, 0.025
+20001016, 0.24, -0.27, -0.47, -0.64, 1.10, 0.025
+20001017, -1.95, 0.16, 0.59, 1.66, 0.94, 0.025
+20001018, -0.84, -0.09, 0.60, 0.76, 0.43, 0.025
+20001019, 3.66, -0.84, -2.13, -1.69, -2.98, 0.025
+20001020, 0.92, 0.38, -1.01, -1.69, -1.53, 0.025
+20001023, 0.03, 0.46, -0.67, -0.97, 0.53, 0.025
+20001024, -0.12, -0.33, 1.16, 1.32, 0.96, 0.025
+20001025, -2.52, 0.27, 1.88, 2.61, 2.07, 0.025
+20001026, 0.00, 0.71, -0.33, 0.45, -0.16, 0.025
+20001027, 0.91, -0.92, 1.25, 0.67, 0.12, 0.025
+20001030, 0.74, -0.84, 1.82, 2.01, 1.57, 0.025
+20001031, 2.75, 0.03, -1.65, -2.11, -1.39, 0.025
+20001101, -0.48, -0.07, 0.49, -0.17, 0.17, 0.024
+20001102, 1.05, 0.96, -1.28, -1.23, -0.62, 0.024
+20001103, -0.03, 0.74, -1.21, -0.53, -0.42, 0.024
+20001106, 0.13, -0.77, 0.53, 0.34, 0.90, 0.024
+20001107, -0.08, 0.32, -0.33, -0.23, -0.25, 0.024
+20001108, -1.97, 0.78, 2.16, 1.90, 2.24, 0.024
+20001109, -0.96, -0.15, 0.80, 1.81, 0.46, 0.024
+20001110, -2.69, 0.05, 2.31, 1.05, 2.12, 0.024
+20001113, -1.39, 0.39, 1.71, 1.82, -0.28, 0.024
+20001114, 2.66, -0.72, -1.84, -1.71, -1.76, 0.024
+20001115, 0.60, -0.02, 0.07, -0.02, 0.17, 0.024
+20001116, -1.67, -0.14, 1.62, 1.47, 1.21, 0.024
+20001117, -0.52, 0.80, 0.44, 1.07, 0.49, 0.024
+20001120, -2.46, 0.13, 1.38, 2.38, 1.28, 0.024
+20001121, -0.05, -0.73, 0.72, 1.57, 0.71, 0.024
+20001122, -2.12, 0.14, 1.96, 1.41, 0.86, 0.024
+20001124, 2.08, 0.31, -2.02, -2.44, -1.42, 0.024
+20001127, 0.30, -0.34, -0.64, 1.05, 0.22, 0.024
+20001128, -1.67, -0.54, 2.51, 2.45, 1.57, 0.024
+20001129, 0.18, -1.37, 1.05, 1.87, 0.56, 0.024
+20001130, -2.03, -0.23, 1.49, 0.71, 0.98, 0.024
+20001201, 0.51, 1.43, -0.68, -2.02, -0.43, 0.025
+20001204, 0.35, -1.63, 0.93, 1.17, 0.53, 0.025
+20001205, 4.55, -0.81, -2.87, -2.63, -3.38, 0.025
+20001206, -1.78, 0.29, 1.09, -0.17, 0.96, 0.025
+20001207, -0.59, 0.08, 0.43, 0.63, 0.77, 0.025
+20001208, 2.79, 0.17, -1.42, -2.92, -0.90, 0.025
+20001211, 1.15, 0.02, -0.95, -1.37, -1.01, 0.025
+20001212, -1.07, -0.34, 0.54, 0.82, 0.52, 0.025
+20001213, -1.14, 0.07, 1.12, 1.24, 1.05, 0.025
+20001214, -1.80, 0.23, 1.04, 1.11, 1.21, 0.025
+20001215, -1.96, 0.74, 1.63, -0.24, 0.71, 0.025
+20001218, 0.60, -0.19, 1.31, 1.91, 1.57, 0.025
+20001219, -1.63, 0.27, 2.11, 1.37, 1.77, 0.025
+20001220, -3.59, -0.09, 3.03, 3.09, 2.41, 0.025
+20001221, 0.54, 0.11, 0.32, 1.39, -0.42, 0.025
+20001222, 3.06, 0.06, -2.10, -2.39, -2.11, 0.025
+20001226, 0.55, -0.21, 0.75, 0.74, 0.75, 0.025
+20001227, 1.36, 0.79, -0.31, -0.34, -0.20, 0.025
+20001228, 0.88, 1.89, -0.68, -0.61, 0.28, 0.025
+20001229, -1.23, 0.20, 1.43, 0.52, 1.22, 0.025
+20010102, -3.52, 0.35, 1.96, 1.63, 1.61, 0.026
+20010103, 5.39, -0.67, -4.12, -2.41, -5.94, 0.026
+20010104, -1.30, 0.85, 0.24, 0.43, -0.80, 0.026
+20010105, -2.98, 0.76, 2.18, 1.95, 2.31, 0.026
+20010108, -0.36, -0.37, 0.95, 0.93, 0.67, 0.026
+20010109, 0.51, 0.22, -0.23, -0.90, -0.51, 0.026
+20010110, 1.44, 0.50, -1.30, -1.86, -1.00, 0.026
+20010111, 1.39, 0.82, -2.84, -2.08, -1.97, 0.026
+20010112, -0.40, 1.22, -0.56, -1.27, -0.09, 0.026
+20010116, 0.68, 1.29, -0.22, 0.21, 0.49, 0.026
+20010117, 0.37, -0.20, -0.83, -1.03, -1.22, 0.026
+20010118, 1.16, -0.56, -1.38, -0.53, -1.14, 0.026
+20010119, -0.55, -0.18, -0.27, -0.06, -0.58, 0.026
+20010122, -0.01, 0.07, 1.10, 0.27, 0.90, 0.026
+20010123, 1.57, 0.27, -0.43, -1.04, -0.47, 0.026
+20010124, 0.34, -0.40, -0.35, -0.82, -0.65, 0.026
+20010125, -0.81, -0.01, 1.59, 1.73, 1.72, 0.026
+20010126, -0.11, 0.22, -0.22, 0.00, -0.21, 0.026
+20010129, 0.90, 0.63, -0.31, -0.76, -0.79, 0.026
+20010130, 0.63, 0.04, -0.20, -0.21, 0.02, 0.026
+20010131, -0.72, 0.43, 0.28, 1.16, 0.73, 0.026
+20010201, 0.39, -0.16, 0.82, 0.91, 0.07, 0.020
+20010202, -1.90, 0.39, 2.21, 1.30, 1.63, 0.020
+20010205, 0.17, -0.31, 1.04, 0.49, 0.31, 0.020
+20010206, 0.04, 0.86, -0.49, 0.15, 0.05, 0.020
+20010207, -0.86, 1.13, 1.17, 1.31, 1.13, 0.020
+20010208, -0.67, -0.04, 0.79, 0.12, 0.54, 0.020
+20010209, -1.42, 0.27, 1.18, 0.80, 1.36, 0.020
+20010212, 1.10, 0.18, 0.05, 0.63, 0.34, 0.020
+20010213, -0.90, 0.52, 1.01, 0.33, 0.56, 0.020
+20010214, -0.04, 0.15, -0.41, -0.39, -0.91, 0.020
+20010215, 0.93, 0.04, -0.86, -0.19, -0.88, 0.020
+20010216, -1.93, 0.00, 1.87, 1.34, 1.81, 0.020
+20010220, -1.93, 0.59, 1.40, 1.38, 1.62, 0.020
+20010221, -1.84, 0.19, 0.92, 0.16, 0.52, 0.020
+20010222, -0.48, -0.87, 0.59, 0.59, 0.05, 0.020
+20010223, -0.38, 0.15, -0.35, -0.17, -0.23, 0.020
+20010226, 1.91, -0.13, 0.02, -0.53, -0.22, 0.020
+20010227, -1.17, -0.63, 1.64, 1.19, 1.47, 0.020
+20010228, -1.48, 0.60, 0.81, 0.27, 1.08, 0.020
+20010301, 0.02, -0.42, -0.07, -0.13, -0.55, 0.019
+20010302, -0.53, 0.93, 1.15, -0.05, 1.47, 0.019
+20010305, 0.54, -0.75, 0.18, -0.44, 0.15, 0.019
+20010306, 1.06, -0.03, -1.03, -0.62, -1.44, 0.019
+20010307, 0.58, 0.15, 0.65, 0.12, 0.24, 0.019
+20010308, -0.14, -0.43, 0.99, 0.94, 1.10, 0.019
+20010309, -2.50, 0.84, 2.01, 0.52, 1.93, 0.019
+20010312, -4.34, 1.16, 2.38, 0.94, 1.51, 0.019
+20010313, 1.61, -0.69, -1.48, -0.33, -1.98, 0.019
+20010314, -2.50, 0.72, 0.10, -0.12, 0.15, 0.019
+20010315, 0.34, -0.40, 0.30, 0.13, 0.22, 0.019
+20010316, -2.11, -0.03, 1.27, 0.84, 0.15, 0.019
+20010319, 1.86, -0.40, -1.15, -0.28, -0.46, 0.019
+20010320, -2.40, 1.06, 1.33, 0.29, 1.01, 0.019
+20010321, -1.88, 0.05, 0.67, 0.30, -0.25, 0.019
+20010322, -0.43, -0.28, -1.40, -0.09, -1.71, 0.019
+20010323, 2.08, 0.02, -1.22, 0.26, 0.03, 0.019
+20010326, 1.09, -0.63, 0.61, -0.12, 0.49, 0.019
+20010327, 2.40, -0.91, -1.54, 0.33, -1.10, 0.019
+20010328, -2.58, 0.57, 1.87, 1.11, 1.84, 0.019
+20010329, -0.53, 0.21, 1.51, 0.43, 0.87, 0.019
+20010330, 1.19, 1.59, -0.60, -0.58, 0.26, 0.019
+20010402, -1.60, -1.17, 1.48, 1.62, 0.36, 0.020
+20010403, -3.69, 0.62, 2.03, 1.54, 1.47, 0.020
+20010404, -0.39, -0.01, 0.82, 0.66, 1.05, 0.020
+20010405, 4.68, -0.71, -3.28, -1.68, -2.40, 0.020
+20010406, -2.07, 0.43, 0.21, 0.35, 0.68, 0.020
+20010409, 0.87, 0.28, -0.13, -0.35, 0.01, 0.020
+20010410, 2.87, -0.79, -1.36, -1.56, -1.65, 0.020
+20010411, -0.10, -0.36, -0.65, -0.85, -1.07, 0.020
+20010412, 1.57, -0.23, -1.32, -0.85, -0.44, 0.020
+20010416, -0.47, -0.11, 0.66, 0.38, 0.90, 0.020
+20010417, 1.10, 0.04, -0.22, 0.03, 0.08, 0.020
+20010418, 3.92, -2.04, -2.52, -0.68, -3.29, 0.020
+20010419, 1.48, -0.25, -1.37, -0.87, -1.85, 0.020
+20010420, -0.87, 0.10, 0.16, -0.23, -0.13, 0.020
+20010423, -1.72, 0.81, 1.21, 0.87, 1.62, 0.020
+20010424, -1.15, 1.46, 1.00, 0.26, 0.60, 0.020
+20010425, 1.68, 0.43, -0.90, -0.17, -0.15, 0.020
+20010426, 0.45, 0.42, 0.26, -0.10, 0.74, 0.020
+20010427, 1.47, -0.21, -0.44, 0.04, -0.26, 0.020
+20010430, 0.03, 0.54, -0.51, -1.31, -0.38, 0.020
+20010501, 1.37, -0.22, -0.72, -0.24, -0.81, 0.015
+20010502, 0.33, 0.31, -0.94, 0.00, -1.15, 0.015
+20010503, -1.58, 0.58, 0.91, 0.76, 1.04, 0.015
+20010504, 1.45, -0.24, 0.01, -0.31, -0.30, 0.015
+20010507, -0.34, 0.03, 0.23, 0.53, 0.21, 0.015
+20010508, -0.09, 0.63, 0.17, -0.15, -0.22, 0.015
+20010509, -0.49, 0.28, 0.46, -0.16, 0.77, 0.015
+20010510, -0.10, 0.29, 0.59, 0.24, 0.37, 0.015
+20010511, -0.74, 0.26, 0.76, -0.23, 0.44, 0.015
+20010514, 0.11, -0.10, 0.67, 0.80, 0.68, 0.015
+20010515, 0.06, 0.56, 0.18, 0.09, 0.13, 0.015
+20010516, 2.78, -1.50, -1.15, -0.01, -0.68, 0.015
+20010517, 0.52, 0.70, -0.41, -0.85, 0.17, 0.015
+20010518, 0.22, 0.20, 0.00, -0.66, -0.03, 0.015
+20010521, 1.87, -0.27, -1.41, -0.95, -1.01, 0.015
+20010522, -0.15, 0.47, 0.24, 0.04, -0.24, 0.015
+20010523, -1.71, 0.22, 0.72, 0.68, 0.61, 0.015
+20010524, 0.41, 0.33, -0.44, -0.43, -0.51, 0.015
+20010525, -1.04, 0.89, 0.33, -0.17, 0.55, 0.015
+20010529, -1.06, 0.05, 1.22, 1.00, 1.34, 0.015
+20010530, -1.74, 0.24, 1.72, 1.14, 1.13, 0.015
+20010531, 0.73, -0.31, -0.17, -0.87, -0.42, 0.015
+20010601, 0.54, 0.47, -0.31, 0.01, -0.02, 0.013
+20010604, 0.49, 0.65, -0.19, 0.11, 0.15, 0.013
+20010605, 1.45, 0.04, -1.18, -0.53, -0.67, 0.013
+20010606, -0.97, 0.17, 0.13, -0.12, -0.09, 0.013
+20010607, 0.54, -0.10, -1.11, -0.10, -0.96, 0.013
+20010608, -0.99, 0.42, 0.65, 0.34, 0.45, 0.013
+20010611, -0.98, 0.37, 0.74, 0.60, 0.12, 0.013
+20010612, 0.02, -0.08, 0.08, 0.33, 0.05, 0.013
+20010613, -1.06, 0.83, 0.73, 0.28, 0.72, 0.013
+20010614, -1.96, 0.23, 0.78, 1.19, 0.87, 0.013
+20010615, -0.46, 0.17, 0.39, 0.00, 0.52, 0.013
+20010618, -0.63, -0.55, 1.08, 1.23, 0.51, 0.013
+20010619, 0.21, -0.57, 0.03, 0.56, -0.34, 0.013
+20010620, 1.07, 0.10, -0.55, -0.05, -0.43, 0.013
+20010621, 0.98, -0.36, -0.12, 0.29, -0.69, 0.013
+20010622, -1.00, -0.33, -0.01, -0.42, -0.01, 0.013
+20010625, -0.54, 0.30, -0.34, -0.17, -0.76, 0.013
+20010626, -0.04, 1.38, -0.17, -0.18, 0.14, 0.013
+20010627, -0.22, 0.96, -0.05, -0.17, -0.28, 0.013
+20010628, 1.31, -0.06, -0.86, 0.35, -0.76, 0.013
+20010629, 0.35, 2.61, -0.88, -1.52, -0.45, 0.013
+20010702, 0.56, -3.17, 1.31, 0.97, 0.59, 0.014
+20010703, -0.21, -0.05, 0.13, 0.27, 0.34, 0.014
+20010705, -1.24, 0.49, 0.47, 1.28, 0.95, 0.014
+20010706, -2.29, 0.55, 0.95, 0.41, 1.05, 0.014
+20010709, 0.59, -0.19, 0.77, -0.41, -0.32, 0.014
+20010710, -1.49, -0.09, 2.15, 0.76, 0.65, 0.014
+20010711, -0.18, -0.48, 0.28, 0.42, 0.64, 0.014
+20010712, 2.44, 0.08, -0.86, -0.54, -1.97, 0.014
+20010713, 0.54, 0.03, -0.49, 0.24, 0.02, 0.014
+20010716, -1.16, 0.09, 1.19, 1.10, 0.71, 0.014
+20010717, 1.05, 0.32, -0.74, 0.47, -0.23, 0.014
+20010718, -0.69, -0.56, 0.58, 1.56, 0.93, 0.014
+20010719, 0.51, 0.45, -0.71, 0.13, -0.35, 0.014
+20010720, -0.33, 0.66, -0.16, 0.43, 0.14, 0.014
+20010723, -1.55, 0.68, 0.34, 0.10, 0.57, 0.014
+20010724, -1.70, 0.07, 0.15, 1.13, 0.46, 0.014
+20010725, 1.37, -0.99, -0.09, -0.01, -0.29, 0.014
+20010726, 1.19, -0.18, 0.08, -1.44, -0.89, 0.014
+20010727, 0.26, -0.34, 0.06, -0.38, -0.28, 0.014
+20010730, -0.12, 0.09, 0.18, 0.47, 0.15, 0.014
+20010731, 0.50, -0.53, 0.13, 0.26, 0.21, 0.014
+20010801, 0.48, 0.27, -0.08, -0.80, -1.00, 0.013
+20010802, 0.33, -0.31, 0.06, 0.12, -0.35, 0.013
+20010803, -0.49, 0.14, 0.10, 0.12, 0.66, 0.013
+20010806, -1.16, -0.11, 0.81, 0.02, 0.58, 0.013
+20010807, 0.21, -0.33, 0.18, 0.73, 0.43, 0.013
+20010808, -1.72, 0.27, 0.78, 1.05, 1.15, 0.013
+20010809, -0.06, 0.32, -0.52, 0.34, 0.08, 0.013
+20010810, 0.44, -0.34, 0.11, 0.62, 0.44, 0.013
+20010813, 0.23, 0.15, -0.14, -0.44, -0.19, 0.013
+20010814, -0.30, 0.69, 0.45, 0.46, 0.68, 0.013
+20010815, -0.75, 0.58, 0.15, 1.35, 1.11, 0.013
+20010816, 0.21, 0.13, 0.25, 0.21, 0.16, 0.013
+20010817, -1.63, 0.52, 0.36, 0.43, 1.08, 0.013
+20010820, 0.71, -0.19, -0.57, 0.34, -0.03, 0.013
+20010821, -1.22, -0.09, 0.78, 0.25, 1.33, 0.013
+20010822, 0.71, 0.19, -0.68, -0.17, -0.21, 0.013
+20010823, -0.31, -0.37, -0.10, -0.02, 0.19, 0.013
+20010824, 1.84, -0.38, -0.82, -0.94, -1.42, 0.013
+20010827, -0.42, 0.19, -0.47, -0.29, -0.29, 0.013
+20010828, -1.46, 0.43, 0.88, 0.26, 0.73, 0.013
+20010829, -0.98, 0.84, 0.09, -0.02, 0.54, 0.013
+20010830, -1.60, 0.45, 0.63, 0.67, 1.21, 0.013
+20010831, 0.42, -0.23, 0.29, -0.20, -0.22, 0.013
+20010904, -0.12, -0.20, 0.65, 1.02, 0.42, 0.018
+20010905, -0.32, -0.61, 0.54, 1.36, 1.02, 0.018
+20010906, -2.13, 0.31, 0.44, 0.51, 0.93, 0.018
+20010907, -1.83, 0.17, -0.52, -0.03, 0.25, 0.018
+20010910, 0.37, -1.30, -0.49, 0.30, -0.33, 0.018
+20010917, -5.03, -0.04, -0.80, 1.02, 0.99, 0.018
+20010918, -0.82, -1.13, 1.20, 0.45, 0.39, 0.018
+20010919, -1.67, -0.80, 0.00, -0.05, -0.44, 0.018
+20010920, -3.05, -0.90, -0.10, -0.44, -0.13, 0.018
+20010921, -1.96, -0.33, -0.58, 0.38, 0.25, 0.018
+20010924, 3.82, -0.13, -0.29, -0.58, -0.95, 0.018
+20010925, 0.74, -0.41, 0.75, 0.41, 0.28, 0.018
+20010926, -0.67, -0.81, 0.24, 1.41, 1.04, 0.018
+20010927, 1.10, -0.82, 0.40, 0.61, 0.65, 0.018
+20010928, 2.25, 0.68, 0.52, -0.83, -0.70, 0.018
+20011001, -0.45, -1.15, -0.18, 0.87, -0.01, 0.010
+20011002, 1.17, -0.25, -0.28, -0.12, -0.27, 0.010
+20011003, 2.28, 0.28, -1.10, -1.79, -1.87, 0.010
+20011004, -0.12, 1.30, -0.75, -0.58, -0.79, 0.010
+20011005, 0.04, -0.14, -1.22, 0.32, -0.19, 0.010
+20011008, -0.80, 0.31, 0.39, -0.43, -0.17, 0.010
+20011009, -0.51, -0.36, 0.02, 0.08, 0.30, 0.010
+20011010, 2.35, 0.33, -0.56, -0.32, -0.88, 0.010
+20011011, 1.73, 0.20, -0.38, -1.80, -1.77, 0.010
+20011012, -0.57, 0.22, -0.40, -0.81, -0.32, 0.010
+20011015, -0.09, 0.47, -0.25, 0.26, 0.22, 0.010
+20011016, 0.78, 0.35, -0.69, -0.17, -0.10, 0.010
+20011017, -2.02, 0.29, 0.16, 1.59, 0.77, 0.010
+20011018, -0.73, 0.11, -0.19, 0.08, 0.18, 0.010
+20011019, 0.54, 0.48, -0.75, 0.19, 0.28, 0.010
+20011022, 1.51, -0.43, -0.47, -0.38, -0.32, 0.010
+20011023, -0.51, 0.02, -0.16, 0.29, -0.25, 0.010
+20011024, 0.08, 0.17, -1.11, -0.42, -0.40, 0.010
+20011025, 1.42, 0.34, -1.34, -0.63, -0.71, 0.010
+20011026, 0.41, 0.41, 0.10, 0.42, 0.44, 0.010
+20011029, -2.33, 0.56, 0.81, 0.45, 1.11, 0.010
+20011030, -1.76, 0.43, 0.67, 0.61, 0.75, 0.010
+20011031, 0.18, 1.30, -0.25, -0.46, -0.60, 0.010
+20011101, 2.10, -0.76, -0.72, 0.27, -0.23, 0.008
+20011102, 0.18, -0.64, 0.48, 0.33, 0.14, 0.008
+20011105, 1.42, -0.70, -0.32, -0.96, -0.92, 0.008
+20011106, 1.44, -0.54, -0.04, -0.29, -0.22, 0.008
+20011107, -0.23, 0.05, -0.35, 0.04, -0.52, 0.008
+20011108, 0.07, -0.29, 0.49, 0.21, -0.30, 0.008
+20011109, 0.07, -0.06, -0.13, 0.27, 0.08, 0.008
+20011112, -0.07, 0.58, -0.43, -0.43, -0.21, 0.008
+20011113, 1.86, -0.37, -0.01, -0.71, -0.88, 0.008
+20011114, 0.34, 0.53, 0.54, -0.30, -0.07, 0.008
+20011115, 0.00, -0.85, 1.37, -0.19, 0.43, 0.008
+20011116, -0.25, 0.60, 0.49, -0.66, 0.10, 0.008
+20011119, 1.15, 0.09, -0.34, -0.98, -0.83, 0.008
+20011120, -0.80, 0.22, 0.14, 1.37, 1.27, 0.008
+20011121, -0.48, 0.32, -0.29, 0.10, 0.21, 0.008
+20011123, 1.17, 0.06, 0.00, -0.23, -0.16, 0.008
+20011126, 0.72, -0.17, -0.16, -0.61, -0.59, 0.008
+20011127, -0.55, 0.55, 0.23, -0.72, -0.09, 0.008
+20011128, -1.78, 0.35, 1.02, 0.74, 1.24, 0.008
+20011129, 1.15, 0.85, -0.48, -0.57, -0.38, 0.008
+20011130, -0.14, -0.19, 0.28, -0.24, 0.32, 0.008
+20011203, -0.86, 0.04, 0.32, 0.56, 0.52, 0.007
+20011204, 1.44, 0.54, -0.40, -1.00, -0.87, 0.007
+20011205, 2.31, -0.08, -0.62, -0.99, -1.53, 0.007
+20011206, -0.12, 0.57, 0.78, -0.57, -0.14, 0.007
+20011207, -0.74, 0.80, 0.03, 0.82, 0.36, 0.007
+20011210, -1.52, 0.49, -0.36, 0.53, 0.51, 0.007
+20011211, -0.20, 0.28, -0.13, -0.60, -0.24, 0.007
+20011212, 0.04, 0.16, -0.04, -0.05, -0.23, 0.007
+20011213, -1.51, 0.43, 0.23, 1.11, 0.95, 0.007
+20011214, 0.31, 0.32, 0.50, 0.34, 0.60, 0.007
+20011217, 1.05, 0.37, 0.10, -0.19, -0.38, 0.007
+20011218, 0.84, 0.33, -0.72, 0.12, -0.22, 0.007
+20011219, 0.43, -0.81, -0.36, 0.92, 0.00, 0.007
+20011220, -0.93, -0.75, 1.26, 1.12, 1.02, 0.007
+20011221, 0.57, 1.33, 0.12, -0.44, 0.06, 0.007
+20011224, 0.02, 0.34, 0.06, 0.02, 0.03, 0.007
+20011226, 0.50, 0.44, -0.28, -0.37, -0.28, 0.007
+20011227, 0.69, -0.02, -0.37, -0.16, -0.55, 0.007
+20011228, 0.41, -0.24, 0.12, -0.71, -0.55, 0.007
+20011231, -1.04, 0.38, 0.79, -0.26, 0.59, 0.007
+20020102, 0.42, -0.71, 0.13, -0.24, -0.41, 0.007
+20020103, 0.99, 0.78, -0.53, -0.33, -0.81, 0.007
+20020104, 0.70, 0.22, 0.31, -0.06, -0.21, 0.007
+20020107, -0.70, -0.24, 0.87, -0.08, 0.17, 0.007
+20020108, -0.23, 1.20, 0.24, -0.27, -0.03, 0.007
+20020109, -0.45, 0.10, -0.15, 0.27, 0.08, 0.007
+20020110, 0.08, -0.08, 0.26, 0.12, -0.11, 0.007
+20020111, -0.86, -0.09, 0.29, 0.15, 0.51, 0.007
+20020114, -0.85, -0.62, -0.05, 0.81, 0.27, 0.007
+20020115, 0.67, -0.42, 0.20, 0.41, 0.22, 0.007
+20020116, -1.62, 0.23, 0.59, 0.91, 1.06, 0.007
+20020117, 1.06, 0.18, -0.63, 0.03, -0.12, 0.007
+20020118, -1.08, -0.39, 0.88, 0.67, 0.69, 0.007
+20020122, -0.81, -0.22, 0.08, 1.18, 1.13, 0.007
+20020123, 0.92, 0.63, -0.16, -0.33, -0.56, 0.007
+20020124, 0.40, -0.21, 0.31, -0.71, -0.11, 0.007
+20020125, 0.09, -0.17, 0.38, 0.44, 0.43, 0.007
+20020128, 0.05, 0.22, 0.62, 0.08, 0.01, 0.007
+20020129, -2.54, 1.25, 0.22, 0.04, 0.39, 0.007
+20020130, 1.05, 0.06, -0.75, 0.91, -0.16, 0.007
+20020131, 1.35, -0.52, 0.21, 0.35, 0.32, 0.007
+20020201, -0.71, 0.24, -0.31, 0.15, 0.15, 0.007
+20020204, -2.37, 0.58, 0.16, 1.42, 1.04, 0.007
+20020205, -0.35, 0.10, -0.43, 0.92, 0.35, 0.007
+20020206, -0.78, -0.59, -0.10, 0.85, 0.17, 0.007
+20020207, -0.41, -0.68, 0.99, 0.31, 0.69, 0.007
+20020208, 1.59, -0.14, 0.32, -1.21, -0.66, 0.007
+20020211, 1.33, -0.39, -0.48, 0.10, -0.45, 0.007
+20020212, -0.28, 0.59, -0.49, -0.08, 0.02, 0.007
+20020213, 0.99, -0.04, -0.12, 0.09, -0.09, 0.007
+20020214, -0.24, -0.68, -0.16, 0.61, 0.44, 0.007
+20020215, -1.12, 0.90, 0.15, 0.83, 1.00, 0.007
+20020219, -1.94, 0.30, 0.52, 1.19, 0.82, 0.007
+20020220, 1.33, -0.15, 0.39, 0.36, -0.05, 0.007
+20020221, -1.52, -0.20, 0.70, 0.85, 1.22, 0.007
+20020222, 0.75, 0.39, 0.00, 0.24, 0.55, 0.007
+20020225, 1.66, -1.17, 0.43, 0.10, -0.78, 0.007
+20020226, 0.11, 0.36, 0.11, -0.20, 0.04, 0.007
+20020227, 0.08, 0.22, 0.43, 0.72, 0.47, 0.007
+20020228, -0.31, -0.20, 0.53, 0.55, 0.28, 0.007
+20020301, 2.22, -0.60, -0.40, -0.43, -0.91, 0.007
+20020304, 1.98, -0.33, -0.28, -1.04, -1.10, 0.007
+20020305, -0.54, 0.55, -0.02, -0.57, -0.26, 0.007
+20020306, 1.39, 0.01, 0.30, -0.43, 0.06, 0.007
+20020307, -0.42, 0.63, 0.14, 0.18, -0.06, 0.007
+20020308, 0.72, 0.27, -0.12, -0.90, -0.59, 0.007
+20020311, 0.29, 0.14, -0.04, -0.27, -0.18, 0.007
+20020312, -0.28, 0.27, -0.13, 1.07, 0.74, 0.007
+20020313, -0.91, 0.43, 0.03, 0.37, 0.62, 0.007
+20020314, -0.05, 0.45, -0.06, -0.06, 0.31, 0.007
+20020315, 1.06, -0.95, 0.31, 0.19, 0.01, 0.007
+20020318, 0.09, 0.62, 0.05, -0.46, -0.13, 0.007
+20020319, 0.34, 0.06, -0.14, 0.53, 0.34, 0.007
+20020320, -1.50, 0.61, 0.65, 0.63, 0.85, 0.007
+20020321, 0.31, 0.92, -0.33, -1.15, -0.33, 0.007
+20020322, -0.42, -0.11, 0.27, 0.22, 0.34, 0.007
+20020325, -1.45, 0.53, -0.02, 0.58, 0.54, 0.007
+20020326, 0.60, 0.42, -0.13, 0.79, 0.38, 0.007
+20020327, 0.55, 0.16, 0.64, 0.16, 0.26, 0.007
+20020328, 0.29, -0.09, 0.31, -0.80, -0.36, 0.007
+20020401, -0.12, -0.21, -0.11, -0.40, -0.31, 0.007
+20020402, -0.92, 0.39, 0.19, 1.29, 0.85, 0.007
+20020403, -0.98, 0.34, 0.42, 0.13, 0.18, 0.007
+20020404, 0.12, 0.08, 0.52, 0.36, 0.22, 0.007
+20020405, -0.26, 0.04, 0.83, 0.47, 0.47, 0.007
+20020408, 0.35, 0.51, 0.14, 0.04, 0.15, 0.007
+20020409, -0.60, 0.64, 0.69, 0.85, 0.98, 0.007
+20020410, 1.15, 0.50, -0.29, 0.41, 0.25, 0.007
+20020411, -2.22, 0.92, 0.79, 0.29, 1.07, 0.007
+20020412, 0.84, 1.07, 0.12, -0.88, -0.38, 0.007
+20020415, -0.67, 0.41, -0.08, -0.19, -0.19, 0.007
+20020416, 2.26, -0.40, 0.59, -0.80, -0.95, 0.007
+20020417, -0.24, -0.36, 0.30, -0.39, 0.02, 0.007
+20020418, -0.14, 0.37, -0.61, 0.32, 0.25, 0.007
+20020419, 0.07, -0.14, 0.23, 0.54, 0.35, 0.007
+20020422, -1.50, 0.60, -0.53, 0.69, 0.35, 0.007
+20020423, -0.52, 0.42, 0.46, 0.64, 0.31, 0.007
+20020424, -0.66, 0.05, 0.47, -0.18, 0.37, 0.007
+20020425, -0.11, 0.14, 0.00, 0.50, 0.32, 0.007
+20020426, -1.41, 0.08, 0.28, 0.98, 0.91, 0.007
+20020429, -0.88, 0.71, -0.58, 0.69, 0.22, 0.007
+20020430, 1.20, 0.59, 0.11, -0.81, 0.01, 0.007
+20020501, 0.74, -0.81, 0.70, 0.63, 0.27, 0.007
+20020502, -0.21, 0.68, 0.30, 1.09, 0.93, 0.007
+20020503, -0.96, 0.81, 0.73, 0.11, 0.89, 0.007
+20020506, -1.84, 0.11, 0.91, 0.61, 0.72, 0.007
+20020507, -0.36, -0.60, 0.81, 0.44, 0.42, 0.007
+20020508, 3.57, -1.53, -1.99, -2.02, -2.64, 0.007
+20020509, -1.43, -0.14, 0.70, 0.59, 0.71, 0.007
+20020510, -1.64, 0.04, 0.51, 0.39, 0.78, 0.007
+20020513, 1.75, -0.56, -1.02, 0.03, -0.90, 0.007
+20020514, 2.20, 0.18, -1.16, -0.69, -1.43, 0.007
+20020515, -0.40, 0.48, 0.60, -0.41, -0.04, 0.007
+20020516, 0.35, -1.04, -0.78, 0.56, -0.24, 0.007
+20020517, 0.69, -0.34, -0.44, 0.08, -0.17, 0.007
+20020520, -1.28, 0.11, 1.04, 0.08, 0.42, 0.007
+20020521, -1.16, -0.25, 0.26, 0.18, 0.38, 0.007
+20020522, 0.37, -0.70, -0.13, 0.34, 0.11, 0.007
+20020523, 1.05, 0.04, -0.07, -0.26, -0.07, 0.007
+20020524, -1.17, -0.19, 0.66, 0.08, 0.48, 0.007
+20020528, -0.75, 0.59, -0.41, -0.26, -0.12, 0.007
+20020529, -0.67, -0.16, 0.22, 0.51, 0.77, 0.007
+20020530, -0.24, 0.13, -0.06, -0.48, 0.47, 0.007
+20020531, 0.19, -0.07, 0.22, 0.58, 0.57, 0.007
+20020603, -2.43, -0.44, 1.30, 0.18, 0.91, 0.006
+20020604, -0.11, -0.12, -0.71, -0.28, -0.70, 0.006
+20020605, 0.83, -0.41, -0.31, 0.69, 0.22, 0.006
+20020606, -1.91, -0.09, 0.98, 0.31, 0.42, 0.006
+20020607, 0.08, 0.80, -0.10, -0.01, 0.43, 0.006
+20020610, 0.21, -0.36, -0.29, 0.42, 0.00, 0.006
+20020611, -1.70, 0.61, 0.43, 0.50, 0.61, 0.006
+20020612, 0.54, -0.40, -1.34, 0.71, -0.39, 0.006
+20020613, -1.10, -0.24, 0.42, -0.13, 0.39, 0.006
+20020614, -0.07, 0.62, -0.70, 0.06, -0.20, 0.006
+20020617, 2.77, -0.34, -0.94, -0.11, -0.58, 0.006
+20020618, 0.05, -0.23, 0.59, 0.20, 0.19, 0.006
+20020619, -1.63, 0.06, 0.50, 0.72, 1.05, 0.006
+20020620, -1.37, 1.13, -0.13, 0.79, 0.91, 0.006
+20020621, -1.53, 1.58, 1.37, -0.48, 0.75, 0.006
+20020624, 0.18, -0.29, -0.52, 0.07, -0.73, 0.006
+20020625, -1.69, 0.59, 0.06, 0.41, 0.18, 0.006
+20020626, -0.27, 0.73, -1.09, 1.11, 0.07, 0.006
+20020627, 1.68, 0.07, -1.18, -0.07, -0.55, 0.006
+20020628, 0.12, 0.60, 1.83, -1.36, -0.38, 0.006
+20020701, -2.32, -0.43, 0.36, 1.81, 0.35, 0.007
+20020702, -2.27, -0.95, 0.02, 1.54, 0.19, 0.007
+20020703, 0.41, -1.38, -0.16, -0.96, 0.13, 0.007
+20020705, 3.55, -0.98, -0.73, -0.97, 0.29, 0.007
+20020708, -1.21, -0.14, 0.33, 1.13, -0.15, 0.007
+20020709, -2.36, 1.39, 1.00, -0.12, 0.41, 0.007
+20020710, -3.03, 1.14, -0.19, 0.16, 0.01, 0.007
+20020711, 0.56, -1.42, -0.50, -1.09, 0.43, 0.007
+20020712, -0.55, -0.10, -0.53, -0.84, -0.35, 0.007
+20020715, -0.45, -0.74, -0.45, -0.65, 0.67, 0.007
+20020716, -1.50, 1.21, -0.91, -0.96, -0.39, 0.007
+20020717, 0.63, -0.02, -0.31, -0.36, -0.14, 0.007
+20020718, -2.70, -0.31, 0.98, 0.28, 0.44, 0.007
+20020719, -3.38, 1.04, 0.10, -0.50, -0.53, 0.007
+20020722, -3.18, 1.44, 0.42, -0.29, -0.08, 0.007
+20020723, -2.86, -0.73, -1.59, 2.25, -0.08, 0.007
+20020724, 5.43, -1.93, -1.66, 1.31, -0.38, 0.007
+20020725, -0.52, 0.47, -0.08, 3.05, -0.57, 0.007
+20020726, 1.49, -0.59, 0.23, 0.61, -0.75, 0.007
+20020729, 5.39, -1.03, -0.13, -1.19, -0.23, 0.007
+20020730, 0.42, -0.57, -0.02, -1.06, -0.29, 0.007
+20020731, 0.65, -2.59, 0.04, 1.29, 0.28, 0.007
+20020801, -2.68, 1.83, 1.03, 0.44, -0.34, 0.006
+20020802, -2.36, -0.53, -0.68, 0.73, 0.05, 0.006
+20020805, -3.34, 1.09, 0.51, 1.31, -0.11, 0.006
+20020806, 3.03, 0.18, -0.51, -1.00, -0.01, 0.006
+20020807, 1.81, -1.19, -0.40, 0.00, -0.12, 0.006
+20020808, 3.05, -1.57, -0.53, -0.27, 0.13, 0.006
+20020809, 0.30, -0.58, 0.05, 0.62, -0.57, 0.006
+20020812, -0.43, 0.46, -0.15, 0.28, -0.48, 0.006
+20020813, -2.15, -0.31, 0.54, 0.58, -0.10, 0.006
+20020814, 3.76, -0.99, -0.91, -0.24, 0.41, 0.006
+20020815, 1.17, -1.08, 0.62, 0.02, -0.53, 0.006
+20020816, 0.06, 1.19, -0.14, -1.11, 0.44, 0.006
+20020819, 2.17, -0.88, -0.05, -0.32, 0.34, 0.006
+20020820, -1.30, 0.54, 0.83, -0.26, -0.34, 0.006
+20020821, 1.36, 0.61, 0.35, -1.37, 0.30, 0.006
+20020822, 1.32, -0.50, -0.32, -0.38, -0.21, 0.006
+20020823, -2.25, 0.28, -0.01, 0.94, -0.52, 0.006
+20020826, 0.83, 0.74, 0.40, -0.23, 0.69, 0.006
+20020827, -1.55, -0.93, 0.94, 0.81, -0.09, 0.006
+20020828, -1.79, -0.19, 0.27, 0.82, -0.41, 0.006
+20020829, 0.21, 0.75, -0.44, -1.15, -0.02, 0.006
+20020830, -0.28, -0.33, 0.88, 0.75, -0.05, 0.006
+20020903, -3.95, 1.16, 0.62, 0.54, -0.10, 0.007
+20020904, 1.83, 0.62, -0.13, -0.40, 0.30, 0.007
+20020905, -1.62, -0.48, 0.09, 1.00, -0.35, 0.007
+20020906, 1.82, 0.53, 0.14, -1.13, 0.14, 0.007
+20020909, 0.92, -0.67, -0.52, 0.27, -0.49, 0.007
+20020910, 0.66, -0.15, -0.24, -0.51, 0.32, 0.007
+20020911, -0.03, -0.17, 0.28, -0.32, 0.26, 0.007
+20020912, -2.37, 0.87, 0.35, 0.22, -0.18, 0.007
+20020913, 0.38, 0.48, 0.04, 0.24, -0.14, 0.007
+20020916, 0.02, -0.78, -0.30, 1.07, -0.49, 0.007
+20020917, -1.91, 0.26, 0.60, -0.24, -0.23, 0.007
+20020918, -0.45, -0.33, 0.20, 0.34, -0.57, 0.007
+20020919, -2.96, 0.24, 0.33, 0.65, -0.10, 0.007
+20020920, 0.19, 0.00, 0.27, -0.20, 0.40, 0.007
+20020923, -1.48, -0.77, 0.09, 1.41, -0.42, 0.007
+20020924, -1.54, 0.91, -0.62, -0.35, -0.17, 0.007
+20020925, 2.44, -0.18, -1.11, -0.74, 0.20, 0.007
+20020926, 1.74, -0.45, 1.02, 1.22, -0.09, 0.007
+20020927, -2.98, 0.71, 0.64, -0.43, -0.25, 0.007
+20020930, -1.28, 1.51, -0.40, 0.77, -0.51, 0.007
+20021001, 3.56, -2.21, -0.50, 0.06, 0.67, 0.006
+20021002, -2.31, 0.58, 0.34, 0.55, -0.27, 0.006
+20021003, -1.14, 0.50, -0.16, 0.63, 0.42, 0.006
+20021004, -2.25, 0.07, -0.20, 0.47, -0.09, 0.006
+20021007, -2.00, -0.56, -0.36, 0.63, 0.07, 0.006
+20021008, 1.54, -0.74, -1.81, 1.44, -1.25, 0.006
+20021009, -2.77, -0.44, -1.05, 0.19, -0.16, 0.006
+20021010, 3.41, -1.64, 0.28, -1.29, 0.52, 0.006
+20021011, 3.74, -1.54, -0.30, -0.72, 0.36, 0.006
+20021014, 0.77, 0.03, -1.19, 0.48, -0.44, 0.006
+20021015, 4.57, -1.06, 0.22, -1.42, 0.13, 0.006
+20021016, -2.42, 0.21, 0.20, 0.66, -0.99, 0.006
+20021017, 2.40, 0.82, -0.61, -0.70, 0.50, 0.006
+20021018, 0.49, -0.21, -0.48, 0.04, -0.23, 0.006
+20021021, 1.65, -0.62, 0.56, -0.80, 0.69, 0.006
+20021022, -1.11, -0.43, 0.63, -0.29, -0.04, 0.006
+20021023, 0.76, 0.80, 0.20, -1.01, 0.45, 0.006
+20021024, -1.44, 0.73, 0.28, -0.80, 0.24, 0.006
+20021025, 1.69, -0.08, -0.48, -0.79, 0.22, 0.006
+20021028, -0.83, 0.03, -0.26, -0.10, 0.25, 0.006
+20021029, -0.87, 0.95, -0.18, 0.65, -0.52, 0.006
+20021030, 1.03, 0.37, -0.61, -0.60, 0.58, 0.006
+20021031, -0.41, 0.32, 0.36, -0.67, -0.12, 0.006
+20021101, 1.73, 0.71, -0.53, -0.86, 0.78, 0.006
+20021104, 0.79, 0.25, -0.54, -1.75, 0.15, 0.006
+20021105, 0.63, -0.94, 0.26, -0.01, -0.05, 0.006
+20021106, 0.98, 0.61, 0.41, -1.15, 0.47, 0.006
+20021107, -2.22, 0.28, -0.30, 1.05, -0.53, 0.006
+20021108, -0.92, -0.13, 0.28, 0.29, -0.09, 0.006
+20021111, -2.09, -0.32, 0.48, 1.11, -0.69, 0.006
+20021112, 0.83, 0.48, -0.25, -1.52, 0.55, 0.006
+20021113, 0.02, 0.40, -0.30, -0.49, 0.18, 0.006
+20021114, 2.43, 0.04, -0.90, -0.58, 0.56, 0.006
+20021115, 0.61, -0.73, -0.11, -0.18, 0.10, 0.006
+20021118, -1.00, 0.27, -0.17, -0.37, 0.36, 0.006
+20021119, -0.48, -0.24, 0.27, 0.60, 0.14, 0.006
+20021120, 1.93, 0.37, -0.94, -0.87, 0.35, 0.006
+20021121, 2.16, -0.17, 0.06, -1.91, 0.70, 0.006
+20021122, -0.22, 0.79, 0.24, -0.33, 0.16, 0.006
+20021125, 0.36, 0.87, 0.06, -1.01, 0.81, 0.006
+20021126, -2.03, 0.66, 0.58, 0.68, 0.26, 0.006
+20021127, 2.78, 0.02, -0.14, -0.93, 0.51, 0.006
+20021129, -0.32, -0.52, 0.53, -0.41, 0.14, 0.006
+20021202, -0.10, 0.67, -0.12, 0.07, 0.05, 0.005
+20021203, -1.54, 0.08, -0.72, 2.02, -0.61, 0.005
+20021204, -0.38, -0.36, 0.50, 1.43, -0.86, 0.005
+20021205, -1.11, 0.29, 0.70, -0.01, 0.00, 0.005
+20021206, 0.61, -0.10, -0.10, 0.24, 0.10, 0.005
+20021209, -2.26, -0.20, 0.30, 1.86, -0.88, 0.005
+20021210, 1.44, 0.27, -0.13, -0.79, 0.36, 0.005
+20021211, 0.10, -0.17, 0.31, -0.40, 0.22, 0.005
+20021212, -0.27, 0.61, 0.30, -0.13, 0.04, 0.005
+20021213, -1.37, -0.37, 0.41, 1.07, -0.16, 0.005
+20021216, 2.21, -0.61, -0.34, -0.36, 0.25, 0.005
+20021217, -0.76, -0.15, 0.43, -0.69, 0.20, 0.005
+20021218, -1.34, -0.38, 0.07, 0.92, -0.58, 0.005
+20021219, -0.70, 0.54, 0.38, 0.47, 0.36, 0.005
+20021220, 1.23, -0.44, -0.40, 0.36, -0.03, 0.005
+20021223, 0.24, 0.39, -0.06, -0.68, 0.14, 0.005
+20021224, -0.52, 0.20, 0.05, 0.19, -0.10, 0.005
+20021226, -0.19, 0.45, 0.09, -0.01, 0.19, 0.005
+20021227, -1.53, 0.39, 0.01, 0.27, -0.01, 0.005
+20021230, 0.34, -0.80, 0.06, 0.94, -0.51, 0.005
+20021231, 0.12, 0.17, 0.57, -0.50, 0.16, 0.005
+20030102, 3.14, -0.91, -0.31, -0.58, 0.50, 0.005
+20030103, -0.11, -0.41, 0.04, -0.28, 0.13, 0.005
+20030106, 2.13, -0.66, -0.41, -0.54, 0.77, 0.005
+20030107, -0.63, 0.11, -0.17, -0.96, 0.21, 0.005
+20030108, -1.34, 0.22, 0.43, 0.34, -0.54, 0.005
+20030109, 1.89, -0.16, -0.48, -0.80, 0.30, 0.005
+20030110, 0.04, 0.08, 0.18, -1.05, 0.22, 0.005
+20030113, -0.12, 0.15, 0.19, -0.14, -0.13, 0.005
+20030114, 0.55, -0.01, -0.17, -0.52, 0.36, 0.005
+20030115, -1.32, 0.79, 0.56, 0.14, -0.25, 0.005
+20030116, -0.34, 0.28, 0.18, 0.75, -0.15, 0.005
+20030117, -1.40, -0.21, 0.70, 0.99, -0.62, 0.005
+20030121, -1.53, 0.34, -0.36, 0.02, -0.07, 0.005
+20030122, -0.94, 0.38, -0.50, 0.19, 0.00, 0.005
+20030123, 0.99, -0.11, -0.65, -1.07, -0.05, 0.005
+20030124, -2.78, 0.65, 0.57, 0.68, -0.22, 0.005
+20030127, -1.65, 0.03, -0.13, 0.60, -0.21, 0.005
+20030128, 1.26, 0.01, -0.44, -0.23, 0.43, 0.005
+20030129, 0.63, -0.26, -0.14, -0.11, 0.12, 0.005
+20030130, -2.13, 0.58, -0.36, 0.83, -0.13, 0.005
+20030131, 1.28, -0.19, 0.23, 1.02, 0.25, 0.005
+20030203, 0.37, -0.79, -0.07, 0.48, 0.01, 0.005
+20030204, -1.34, 1.00, -0.19, 0.92, 0.15, 0.005
+20030205, -0.49, 0.13, 0.05, -0.29, 0.07, 0.005
+20030206, -0.64, 0.06, 0.13, 0.29, -0.06, 0.005
+20030207, -1.06, -0.48, -0.24, 0.11, 0.07, 0.005
+20030210, 0.69, 0.00, 0.07, -0.21, 0.38, 0.005
+20030211, -0.71, 0.29, -0.31, -0.30, 0.08, 0.005
+20030212, -1.25, 0.10, 0.10, 0.15, -0.16, 0.005
+20030213, -0.26, -0.16, -0.25, 0.34, 0.11, 0.005
+20030214, 1.90, -0.86, -0.65, -0.08, -0.06, 0.005
+20030218, 1.97, -0.46, -0.13, -1.03, 0.12, 0.005
+20030219, -0.70, -0.30, 0.03, 0.09, -0.16, 0.005
+20030220, -0.83, 0.84, -0.15, -0.26, -0.07, 0.005
+20030221, 1.31, -0.09, -0.07, 0.26, -0.44, 0.005
+20030224, -1.78, 0.29, -0.11, 0.37, -0.29, 0.005
+20030225, 0.70, 0.07, -0.19, 0.49, -0.17, 0.005
+20030226, -1.22, 0.34, 0.45, 0.29, -0.28, 0.005
+20030227, 1.15, -0.28, -0.14, -0.17, -0.12, 0.005
+20030228, 0.41, -0.66, 0.22, -0.45, 0.25, 0.005
+20030303, -0.67, 0.25, 0.42, 0.15, 0.04, 0.005
+20030304, -1.44, 0.79, -0.53, 0.37, -0.01, 0.005
+20030305, 0.78, -0.95, -0.02, 0.19, 0.04, 0.005
+20030306, -0.84, 0.19, 0.03, 0.20, -0.34, 0.005
+20030307, 0.76, -0.68, -0.16, 0.27, -0.55, 0.005
+20030310, -2.36, 0.77, 0.10, 0.01, -0.04, 0.005
+20030311, -0.81, 0.65, -0.70, 0.49, 0.35, 0.005
+20030312, 0.32, -0.54, -0.41, 0.34, 0.21, 0.005
+20030313, 3.39, -1.00, -0.61, -1.47, 0.11, 0.005
+20030314, 0.13, -0.41, 0.14, 0.06, -0.21, 0.005
+20030317, 3.41, -0.83, -0.25, -1.05, 0.44, 0.005
+20030318, 0.44, 0.41, -0.65, -0.34, 0.01, 0.005
+20030319, 0.72, -0.51, -0.23, 0.80, -0.49, 0.005
+20030320, 0.28, 0.20, 0.37, -0.35, 0.23, 0.005
+20030321, 2.19, -0.78, -0.05, 0.38, -0.01, 0.005
+20030324, -3.36, 1.25, 0.18, 0.74, -0.12, 0.005
+20030325, 1.21, -0.02, -0.03, -0.32, -0.07, 0.005
+20030326, -0.55, -0.24, -0.28, -0.02, 0.20, 0.005
+20030327, -0.09, 0.68, -0.01, 0.27, -0.28, 0.005
+20030328, -0.48, 0.38, 0.22, 0.42, 0.01, 0.005
+20030331, -1.65, 0.81, 0.42, 0.54, -0.21, 0.005
+20030401, 1.12, -0.21, 0.24, 0.11, -0.16, 0.005
+20030402, 2.60, -0.59, -0.86, -1.23, 0.09, 0.005
+20030403, -0.49, 0.33, 0.02, -0.44, 0.06, 0.005
+20030404, 0.15, -0.65, 0.39, 0.41, -0.01, 0.005
+20030407, 0.18, 0.52, 0.57, -0.45, 0.27, 0.005
+20030408, -0.24, -0.23, 0.09, 0.35, -0.58, 0.005
+20030409, -1.28, 0.64, 0.77, 0.07, 0.00, 0.005
+20030410, 0.52, -0.31, -0.25, 0.31, 0.09, 0.005
+20030411, -0.32, 0.02, -0.05, -0.26, 0.10, 0.005
+20030414, 1.88, -0.43, 0.00, -0.30, 0.27, 0.005
+20030415, 0.62, 0.03, -0.39, 0.05, -0.22, 0.005
+20030416, -1.11, 0.52, 0.18, -0.80, 0.65, 0.005
+20030417, 1.52, -0.03, -0.03, -0.73, 0.15, 0.005
+20030421, -0.11, 0.47, 0.12, -0.48, -0.01, 0.005
+20030422, 2.07, -0.77, 0.23, -0.49, 0.02, 0.005
+20030423, 0.89, -0.01, 0.31, -0.43, 0.14, 0.005
+20030424, -0.81, 0.51, -0.23, 0.30, -0.19, 0.005
+20030425, -1.30, 0.62, -0.11, 0.58, -0.14, 0.005
+20030428, 1.76, -0.12, -0.11, -0.33, 0.33, 0.005
+20030429, 0.34, -0.19, -0.20, -0.36, 0.03, 0.005
+20030430, 0.03, 0.78, 0.25, -0.12, 0.08, 0.005
+20030501, -0.03, 0.25, -0.26, -0.42, -0.05, 0.004
+20030502, 1.56, 0.46, -0.49, -0.58, 0.12, 0.004
+20030505, -0.19, 0.80, -0.38, -0.66, 0.19, 0.004
+20030506, 0.80, -0.20, 0.04, -0.17, -0.05, 0.004
+20030507, -0.46, 0.09, 0.58, 0.47, -0.26, 0.004
+20030508, -0.99, 0.48, 0.14, 0.51, -0.06, 0.004
+20030509, 1.39, -0.01, -0.22, -0.57, 0.45, 0.004
+20030512, 1.25, -0.13, -0.10, -0.86, 0.26, 0.004
+20030513, -0.23, 0.57, 0.30, -0.19, 0.10, 0.004
+20030514, -0.23, 0.34, 0.01, -0.47, 0.15, 0.004
+20030515, 0.74, -0.13, -0.14, -0.59, 0.43, 0.004
+20030516, -0.31, -1.28, 1.01, -0.57, 0.28, 0.004
+20030519, -2.30, 0.72, 0.04, 0.44, 0.00, 0.004
+20030520, -0.12, 0.08, -0.11, 0.28, 0.13, 0.004
+20030521, 0.41, -0.07, 0.31, 0.17, 0.24, 0.004
+20030522, 0.96, -0.06, -0.07, -0.76, 0.13, 0.004
+20030523, 0.26, 0.42, 0.40, -0.53, 0.23, 0.004
+20030527, 1.95, 0.26, -1.05, -1.05, 0.43, 0.004
+20030528, 0.22, 0.56, -0.41, -0.21, 0.13, 0.004
+20030529, -0.26, 0.95, 0.07, -0.51, 0.35, 0.004
+20030530, 1.53, 0.30, 0.10, -0.06, -0.20, 0.004
+20030602, 0.39, -0.17, 0.75, -0.04, -0.19, 0.005
+20030603, 0.39, -0.09, -0.57, 0.15, 0.02, 0.005
+20030604, 1.56, 0.10, -0.04, -0.83, 0.41, 0.005
+20030605, 0.55, 0.87, -0.74, -0.73, -0.10, 0.005
+20030606, -0.33, -0.21, -0.30, 0.35, 0.05, 0.005
+20030609, -1.31, -0.32, 0.18, 0.98, -0.18, 0.005
+20030610, 0.95, 0.40, 0.10, -0.07, -0.19, 0.005
+20030611, 1.29, -0.25, 0.38, -0.14, -0.24, 0.005
+20030612, 0.18, 0.15, 0.34, -0.52, 0.45, 0.005
+20030613, -1.02, -0.21, 0.12, 0.60, -0.30, 0.005
+20030616, 2.15, -0.49, -0.48, -0.02, -0.25, 0.005
+20030617, 0.13, 0.15, -0.12, -0.26, -0.27, 0.005
+20030618, -0.15, 0.23, -0.23, -0.34, 0.36, 0.005
+20030619, -1.49, 0.04, 0.74, 0.54, 0.24, 0.005
+20030620, 0.05, -0.16, 0.10, 0.27, -0.17, 0.005
+20030623, -1.52, -0.61, 0.23, 1.09, -0.16, 0.005
+20030624, 0.19, 0.13, 0.13, 0.50, -0.10, 0.005
+20030625, -0.60, 1.16, -0.08, -0.38, -0.04, 0.005
+20030626, 1.12, 0.34, -0.51, -0.63, 0.20, 0.005
+20030627, -0.84, 0.65, 0.19, 0.05, -0.01, 0.005
+20030630, -0.17, -0.05, 0.43, -0.15, 0.12, 0.005
+20030701, 0.73, -0.42, -0.15, 0.07, -0.04, 0.003
+20030702, 1.28, 0.89, 0.05, -0.98, 0.57, 0.003
+20030703, -0.72, 0.26, -0.08, 0.02, -0.23, 0.003
+20030707, 1.91, -0.14, 0.27, -1.18, 0.73, 0.003
+20030708, 0.51, 1.31, -0.04, -0.50, 0.20, 0.003
+20030709, -0.34, 0.97, 0.26, -1.06, 0.77, 0.003
+20030710, -1.33, -0.07, -0.22, 0.58, -0.41, 0.003
+20030711, 0.92, 0.11, -0.06, -0.25, 0.04, 0.003
+20030714, 0.73, 0.24, 0.13, -0.76, 0.10, 0.003
+20030715, -0.41, 0.02, -0.04, -0.16, -0.01, 0.003
+20030716, -0.64, 0.17, -0.27, 0.53, -0.26, 0.003
+20030717, -1.45, -1.22, -0.40, 1.16, -0.88, 0.003
+20030718, 1.08, -0.15, 0.02, -0.02, 0.45, 0.003
+20030721, -1.42, 0.03, -0.38, 0.23, -0.24, 0.003
+20030722, 0.97, 0.31, 0.34, -0.75, 0.83, 0.003
+20030723, 0.18, 0.48, -1.00, 0.11, -0.50, 0.003
+20030724, -0.65, 0.41, 0.38, -0.17, -0.14, 0.003
+20030725, 1.51, -0.72, -0.24, -0.20, -0.06, 0.003
+20030728, -0.02, 0.99, 0.36, -0.75, 0.58, 0.003
+20030729, -0.57, 0.57, 0.02, 0.02, 0.07, 0.003
+20030730, -0.18, 0.16, -0.61, 0.80, -0.61, 0.003
+20030731, 0.32, 0.25, 0.40, -0.73, 0.71, 0.003
+20030801, -1.06, -0.52, -0.06, -0.09, 0.19, 0.003
+20030804, 0.11, -0.70, -0.31, 0.46, -0.32, 0.003
+20030805, -1.71, 0.42, 0.02, 0.56, -0.39, 0.003
+20030806, 0.02, -0.86, 0.46, 0.83, -0.70, 0.003
+20030807, 0.57, -0.55, -0.47, 0.61, -0.47, 0.003
+20030808, 0.33, -0.33, 0.15, 0.41, -0.24, 0.003
+20030811, 0.43, 0.67, -0.03, -0.53, 0.23, 0.003
+20030812, 1.09, 0.50, 0.05, -0.58, 0.33, 0.003
+20030813, -0.50, 0.69, 0.06, -0.35, 0.21, 0.003
+20030814, 0.62, 0.11, 0.44, -0.50, 0.52, 0.003
+20030815, 0.10, 0.14, -0.14, 0.09, -0.13, 0.003
+20030818, 1.03, 0.73, 0.09, -0.97, 0.53, 0.003
+20030819, 0.43, 1.04, 0.61, -0.63, 0.42, 0.003
+20030820, -0.14, 0.36, 0.06, 0.09, 0.45, 0.003
+20030821, 0.47, 0.58, 0.42, -0.80, 0.62, 0.003
+20030822, -1.06, -0.66, 0.12, -0.28, 0.11, 0.003
+20030825, -0.04, -0.15, -0.31, 0.41, -0.37, 0.003
+20030826, 0.29, 0.18, 0.18, -0.05, 0.13, 0.003
+20030827, 0.17, 0.79, 0.06, -0.56, 0.50, 0.003
+20030828, 0.70, 0.28, 0.22, -0.28, 0.20, 0.003
+20030829, 0.53, -0.25, 0.33, -0.29, 0.34, 0.003
+20030902, 1.40, 0.48, 0.02, 0.18, 0.08, 0.004
+20030903, 0.42, 0.30, 0.14, -0.08, -0.05, 0.004
+20030904, 0.22, 0.31, -0.17, -0.71, 0.40, 0.004
+20030905, -0.62, -0.08, 0.20, -0.15, 0.47, 0.004
+20030908, 1.07, 0.49, -0.12, -0.65, 0.47, 0.004
+20030909, -0.79, 0.26, -0.22, -0.19, 0.17, 0.004
+20030910, -1.37, -0.62, -0.60, 1.21, -1.02, 0.004
+20030911, 0.62, 0.57, 0.03, -0.13, 0.14, 0.004
+20030912, 0.23, 0.13, 0.16, 0.03, 0.17, 0.004
+20030915, -0.35, 0.23, -0.08, 0.40, -0.28, 0.004
+20030916, 1.40, 0.05, 0.06, -0.85, 0.31, 0.004
+20030917, -0.26, 0.22, 0.18, -0.19, 0.23, 0.004
+20030918, 1.25, -0.52, 0.25, -0.22, 0.21, 0.004
+20030919, -0.23, 0.46, 0.02, 0.02, 0.32, 0.004
+20030922, -1.30, 0.18, 0.14, 0.34, 0.04, 0.004
+20030923, 0.65, 0.50, -0.10, -0.43, 0.06, 0.004
+20030924, -1.88, -0.04, 0.08, 1.27, -0.59, 0.004
+20030925, -0.81, -1.65, -0.21, 0.62, -0.53, 0.004
+20030926, -0.84, -1.21, 0.04, 0.75, -0.26, 0.004
+20030929, 0.98, 0.41, 0.02, -0.52, 0.24, 0.004
+20030930, -0.96, 0.06, 0.14, 0.51, -0.19, 0.004
+20031001, 2.16, 0.38, 0.09, 0.30, -0.54, 0.003
+20031002, 0.31, 0.19, 0.07, -0.44, 0.20, 0.003
+20031003, 1.02, 0.61, -0.01, -0.83, 0.41, 0.003
+20031006, 0.49, 0.38, 0.36, -0.44, 0.37, 0.003
+20031007, 0.51, 0.30, 0.10, -0.25, 0.34, 0.003
+20031008, -0.48, -0.30, 0.19, -0.05, 0.19, 0.003
+20031009, 0.55, 0.32, 0.38, -0.34, 0.15, 0.003
+20031010, -0.08, -0.33, 0.41, -0.16, 0.24, 0.003
+20031013, 0.81, 0.84, 0.09, -0.14, 0.16, 0.003
+20031014, 0.44, 0.46, 0.16, -0.32, 0.00, 0.003
+20031015, -0.36, -0.32, -0.05, 0.10, 0.11, 0.003
+20031016, 0.35, 0.08, 0.04, -0.18, 0.10, 0.003
+20031017, -1.11, -0.44, 0.05, 0.92, -0.23, 0.003
+20031020, 0.41, -0.18, -0.25, 0.22, -0.41, 0.003
+20031021, 0.24, 0.49, -0.31, -0.72, 0.30, 0.003
+20031022, -1.52, -0.60, -0.02, 0.74, -0.23, 0.003
+20031023, 0.22, -0.70, -0.22, 1.13, -0.50, 0.003
+20031024, -0.45, -0.34, -0.01, 0.21, 0.00, 0.003
+20031027, 0.40, 1.12, 0.30, -0.38, 0.36, 0.003
+20031028, 1.59, 0.40, -0.22, -0.95, 0.09, 0.003
+20031029, 0.28, 0.83, 0.32, -0.18, 0.27, 0.003
+20031030, -0.11, -0.12, 0.27, -0.06, 0.42, 0.003
+20031031, 0.28, -0.53, -0.09, 0.26, -0.32, 0.003
+20031103, 0.93, 0.69, 0.41, -0.61, 0.32, 0.004
+20031104, -0.45, 0.72, 0.41, -0.37, 0.50, 0.004
+20031105, -0.04, 0.18, -0.09, 0.02, 0.26, 0.004
+20031106, 0.58, 0.08, 0.10, -0.40, 0.34, 0.004
+20031107, -0.33, 0.41, 0.30, 0.01, 0.39, 0.004
+20031110, -0.74, -0.88, -0.02, 0.96, -0.50, 0.004
+20031111, -0.21, -0.64, -0.10, 0.48, -0.35, 0.004
+20031112, 1.33, 0.89, -0.21, -0.51, 0.46, 0.004
+20031113, 0.03, 0.21, -0.21, 0.39, -0.32, 0.004
+20031114, -0.83, -0.60, -0.07, 1.08, -0.30, 0.004
+20031117, -0.72, -0.62, -0.19, 0.36, -0.40, 0.004
+20031118, -0.87, 0.13, 0.09, 0.53, -0.29, 0.004
+20031119, 0.76, 0.00, -0.02, -0.19, -0.04, 0.004
+20031120, -0.77, 0.26, 0.03, 0.14, -0.01, 0.004
+20031121, 0.21, 0.22, 0.59, -0.40, 0.37, 0.004
+20031124, 1.71, 0.66, -0.03, -0.71, 0.31, 0.004
+20031125, 0.31, 0.38, 0.60, -0.05, 0.27, 0.004
+20031126, 0.40, -0.06, 0.41, -0.43, 0.42, 0.004
+20031128, 0.11, 0.20, -0.17, -0.29, 0.24, 0.004
+20031201, 1.11, 0.35, -0.12, -0.06, 0.13, 0.004
+20031202, -0.27, 0.18, 0.13, 0.13, 0.11, 0.004
+20031203, -0.34, -1.11, 0.42, 0.31, 0.13, 0.004
+20031204, 0.26, -0.46, -0.23, 0.16, -0.26, 0.004
+20031205, -0.79, -0.05, -0.07, 0.45, -0.25, 0.004
+20031208, 0.65, -0.10, 0.36, 0.23, -0.21, 0.004
+20031209, -0.95, -0.49, 0.19, 0.60, -0.49, 0.004
+20031210, -0.29, -1.03, -0.24, 0.00, -0.23, 0.004
+20031211, 1.34, 1.20, 0.15, -0.71, 0.45, 0.004
+20031212, 0.31, 0.55, 0.30, -0.38, 0.21, 0.004
+20031215, -0.73, -1.32, 0.15, 0.49, -0.09, 0.004
+20031216, 0.50, -0.29, 0.02, 0.43, -0.14, 0.004
+20031217, 0.15, 0.00, -0.10, 0.39, -0.11, 0.004
+20031218, 1.24, 0.23, 0.22, -0.84, 0.58, 0.004
+20031219, -0.04, -0.06, 0.40, -0.15, 0.09, 0.004
+20031222, 0.36, -0.01, 0.46, -0.12, 0.35, 0.004
+20031223, 0.36, 0.62, -0.06, -0.28, 0.23, 0.004
+20031224, -0.18, -0.25, 0.12, -0.20, 0.04, 0.004
+20031226, 0.19, 0.35, 0.06, 0.02, 0.08, 0.004
+20031229, 1.29, 0.32, -0.04, -0.32, 0.10, 0.004
+20031230, 0.05, 0.25, 0.15, -0.10, 0.09, 0.004
+20031231, 0.01, -1.41, 0.02, -0.09, 0.16, 0.004
+20040102, -0.17, 0.81, 0.42, -0.55, 0.61, 0.003
+20040105, 1.20, 0.28, 0.01, -0.73, 0.81, 0.003
+20040106, 0.20, 0.05, 0.18, -0.40, 0.54, 0.003
+20040107, 0.34, 0.51, -0.06, -0.54, 0.22, 0.003
+20040108, 0.45, 0.34, 0.63, -0.93, 0.94, 0.003
+20040109, -0.72, 0.02, 0.20, -0.50, 0.16, 0.003
+20040112, 0.57, 0.81, 0.08, -0.86, 0.80, 0.003
+20040113, -0.51, 0.28, 0.10, 0.25, -0.03, 0.003
+20040114, 0.80, 0.03, 0.41, 0.02, 0.19, 0.003
+20040115, 0.15, -0.06, -0.28, -0.02, 0.13, 0.003
+20040116, 0.72, -0.03, 0.56, -1.37, 0.67, 0.003
+20040120, 0.15, 1.25, 0.58, -0.42, 0.49, 0.003
+20040121, 0.64, -0.82, 0.46, 0.90, -0.71, 0.003
+20040122, -0.32, -0.56, 0.05, 0.49, -0.67, 0.003
+20040123, -0.14, 0.90, -0.27, 0.23, -0.16, 0.003
+20040126, 1.12, -0.23, -0.33, -0.33, 0.16, 0.003
+20040127, -0.96, 0.08, 0.04, 0.79, -0.21, 0.003
+20040128, -1.44, -0.44, -0.44, 0.38, 0.02, 0.003
+20040129, 0.25, -1.04, -0.85, 0.73, -0.92, 0.003
+20040130, -0.15, 0.28, 0.37, -0.56, 0.19, 0.003
+20040202, 0.27, -0.33, -0.26, 0.21, -0.24, 0.003
+20040203, 0.00, -0.14, -0.16, 0.28, -0.18, 0.003
+20040204, -0.97, -1.48, -0.52, 1.55, -1.14, 0.003
+20040205, 0.23, 0.45, 0.25, -0.16, 0.14, 0.003
+20040206, 1.39, 1.02, 0.35, -0.94, 0.88, 0.003
+20040209, -0.10, 0.41, 0.21, -0.14, 0.20, 0.003
+20040210, 0.56, 0.61, 0.14, -0.27, 0.15, 0.003
+20040211, 1.04, -0.37, 0.18, -0.01, -0.05, 0.003
+20040212, -0.46, -0.12, -0.15, 0.43, -0.09, 0.003
+20040213, -0.57, -0.65, -0.18, 0.45, -0.41, 0.003
+20040217, 0.98, 0.47, 0.55, -0.49, 0.11, 0.003
+20040218, -0.39, -0.06, 0.04, -0.05, -0.10, 0.003
+20040219, -0.54, -0.93, -0.07, 0.71, -0.30, 0.003
+20040220, -0.30, -0.16, -0.36, 0.51, -0.35, 0.003
+20040223, -0.51, -1.16, -0.11, 0.84, -0.67, 0.003
+20040224, -0.14, 0.32, -0.27, 0.22, -0.26, 0.003
+20040225, 0.54, 0.51, 0.15, -0.62, 0.37, 0.003
+20040226, 0.29, 0.48, 0.34, -0.41, 0.34, 0.003
+20040227, 0.11, 0.28, 0.36, 0.10, 0.34, 0.003
+20040301, 1.02, 0.52, 0.26, 0.02, 0.35, 0.004
+20040302, -0.59, -0.03, 0.18, 0.14, -0.02, 0.004
+20040303, 0.14, -0.12, -0.20, 0.34, -0.41, 0.004
+20040304, 0.44, 0.74, 0.21, -0.81, 0.43, 0.004
+20040305, 0.24, -0.05, -0.21, 0.50, -0.20, 0.004
+20040308, -0.84, -0.24, 0.23, 0.73, -0.42, 0.004
+20040309, -0.66, -0.42, -0.34, 0.55, -0.57, 0.004
+20040310, -1.50, -0.26, -0.46, 0.53, -0.76, 0.004
+20040311, -1.42, 0.34, -0.13, -0.07, -0.02, 0.004
+20040312, 1.34, 0.99, 0.21, -0.84, 0.60, 0.004
+20040315, -1.56, -1.02, -0.24, 1.02, -0.73, 0.004
+20040316, 0.43, -0.62, -0.12, 0.32, -0.26, 0.004
+20040317, 1.22, 0.70, 0.45, -0.88, 0.84, 0.004
+20040318, -0.20, -0.48, 0.13, 0.07, -0.19, 0.004
+20040319, -1.00, 0.39, 0.26, 0.14, -0.07, 0.004
+20040322, -1.42, -0.61, -0.20, 0.69, -0.65, 0.004
+20040323, -0.09, 0.40, 0.04, 0.45, -0.20, 0.004
+20040324, -0.27, -0.17, -0.14, -0.22, 0.10, 0.004
+20040325, 1.68, 0.59, -0.29, -1.09, 0.72, 0.004
+20040326, 0.00, 0.35, 0.39, -0.18, 0.19, 0.004
+20040329, 1.34, 0.53, -0.21, -0.21, 0.21, 0.004
+20040330, 0.47, 0.48, 0.23, -0.18, 0.09, 0.004
+20040331, 0.00, 0.21, 0.18, 0.39, 0.02, 0.004
+20040401, 0.64, 0.21, 0.00, -0.46, 0.14, 0.004
+20040402, 0.90, 0.61, 0.08, -1.13, 0.81, 0.004
+20040405, 0.79, 0.04, -0.30, -0.50, -0.02, 0.004
+20040406, -0.28, -0.64, 0.21, 0.74, -0.46, 0.004
+20040407, -0.50, 0.89, -0.18, 0.13, -0.08, 0.004
+20040408, -0.14, -0.36, 0.11, -0.70, 0.24, 0.004
+20040412, 0.50, 0.20, -0.29, -0.05, -0.01, 0.004
+20040413, -1.50, -0.65, -0.39, 0.44, -0.31, 0.004
+20040414, -0.21, -0.42, -0.44, -0.16, 0.14, 0.004
+20040415, -0.04, -0.26, -0.38, 1.13, -0.69, 0.004
+20040416, 0.46, 0.05, 0.17, 0.74, -0.56, 0.004
+20040419, 0.22, 0.43, -0.35, -0.52, 0.30, 0.004
+20040420, -1.48, -0.19, 0.13, 0.65, -0.16, 0.004
+20040421, 0.60, 0.46, 0.08, -0.10, 0.23, 0.004
+20040422, 1.44, 0.14, 0.05, 0.01, -0.03, 0.004
+20040423, -0.01, -0.37, -0.08, -0.43, 0.10, 0.004
+20040426, -0.33, -0.07, -0.26, -0.03, 0.38, 0.004
+20040427, 0.13, 0.05, -0.06, 0.59, -0.75, 0.004
+20040428, -1.46, -0.85, -0.13, 0.73, -0.34, 0.004
+20040429, -0.86, -0.77, -0.65, 0.96, -1.00, 0.004
+20040430, -0.66, -0.71, 0.00, 1.25, -0.75, 0.004
+20040503, 0.85, 0.01, -0.40, 0.36, -0.10, 0.003
+20040504, 0.21, 0.43, 0.16, -0.39, 0.30, 0.003
+20040505, 0.27, -0.17, -0.25, 0.05, 0.16, 0.003
+20040506, -0.80, -0.39, -0.21, 0.34, -0.21, 0.003
+20040507, -1.48, -0.81, -0.55, -0.36, 0.03, 0.003
+20040510, -1.29, -0.64, -0.47, 0.50, -0.51, 0.003
+20040511, 0.95, 0.83, 0.15, -0.99, 0.55, 0.003
+20040512, 0.12, -0.14, -0.01, 0.16, -0.18, 0.003
+20040513, -0.08, -0.28, 0.02, -0.12, 0.12, 0.003
+20040514, -0.17, -0.51, -0.03, 0.93, -0.52, 0.003
+20040517, -1.13, -0.39, -0.35, 0.60, -0.64, 0.003
+20040518, 0.76, 0.33, 0.35, -0.36, 0.28, 0.003
+20040519, -0.19, 0.03, 0.47, -0.70, 0.48, 0.003
+20040520, 0.02, -0.10, 0.12, 0.23, -0.35, 0.003
+20040521, 0.44, 0.42, -0.01, -0.11, 0.00, 0.003
+20040524, 0.29, 0.75, 0.57, -0.36, 0.07, 0.003
+20040525, 1.66, 0.58, 0.05, -0.36, 0.20, 0.003
+20040526, 0.29, 0.12, 0.02, -0.39, 0.10, 0.003
+20040527, 0.51, -0.35, -0.09, 0.13, 0.07, 0.003
+20040528, 0.02, -0.05, 0.09, -0.13, 0.11, 0.003
+20040601, 0.14, 0.67, -0.03, -0.02, -0.07, 0.004
+20040602, 0.31, -0.20, -0.15, 0.31, -0.15, 0.004
+20040603, -0.90, -0.87, -0.06, 0.62, -0.66, 0.004
+20040604, 0.57, 0.32, 0.05, -0.45, 0.45, 0.004
+20040607, 1.57, 0.23, 0.33, -0.15, 0.03, 0.004
+20040608, 0.08, -0.19, -0.05, 0.20, -0.01, 0.004
+20040609, -1.04, -0.41, 0.03, 0.87, -0.40, 0.004
+20040610, 0.36, -0.23, 0.39, 0.18, -0.04, 0.004
+20040614, -1.05, -0.66, -0.55, 0.50, -0.35, 0.004
+20040615, 0.71, 1.05, 0.22, -0.27, 0.38, 0.004
+20040616, 0.14, 0.22, 0.06, 0.01, -0.22, 0.004
+20040617, -0.14, 0.09, 0.12, 0.62, -0.36, 0.004
+20040618, 0.19, -0.16, 0.22, -0.06, 0.12, 0.004
+20040621, -0.42, 0.14, 0.16, 0.48, -0.14, 0.004
+20040622, 0.38, 0.15, 0.05, -0.33, 0.43, 0.004
+20040623, 0.90, 0.47, 0.20, -0.58, 0.41, 0.004
+20040624, -0.23, 0.08, 0.15, 0.03, -0.31, 0.004
+20040625, -0.23, 1.24, 0.08, -0.70, 0.32, 0.004
+20040628, -0.25, -0.05, -0.15, 0.46, -0.40, 0.004
+20040629, 0.31, 0.52, -0.04, -0.33, 0.41, 0.004
+20040630, 0.48, 0.13, 0.30, -0.37, 0.20, 0.004
+20040701, -1.06, -0.40, 0.56, 0.69, -0.70, 0.005
+20040702, -0.28, 0.26, 0.37, 0.33, -0.15, 0.005
+20040706, -0.94, -0.71, 1.03, 1.34, -0.57, 0.005
+20040707, 0.15, -0.33, 0.24, 0.16, 0.12, 0.005
+20040708, -0.96, -0.90, 0.27, 0.61, -0.02, 0.005
+20040709, 0.31, 0.16, -0.13, -0.15, 0.21, 0.005
+20040712, 0.04, -0.39, 0.39, 0.63, -0.30, 0.005
+20040713, 0.09, 0.05, 0.14, 0.10, -0.12, 0.005
+20040714, -0.33, -0.26, 0.50, 0.25, -0.28, 0.005
+20040715, -0.32, 0.65, 0.06, -0.05, 0.20, 0.005
+20040716, -0.56, -0.59, 0.65, 0.81, -0.15, 0.005
+20040719, -0.12, -0.16, 0.59, 0.45, 0.16, 0.005
+20040720, 0.83, 0.78, -0.80, -0.60, 0.27, 0.005
+20040721, -1.49, -1.07, 0.75, 1.11, -0.56, 0.005
+20040722, 0.14, -0.56, -0.54, -0.34, -0.03, 0.005
+20040723, -1.03, -0.30, 0.83, 0.58, -0.01, 0.005
+20040726, -0.39, -0.67, 0.26, 0.63, -0.13, 0.005
+20040727, 1.10, 0.91, -0.50, -0.63, 0.06, 0.005
+20040728, -0.09, -0.58, 0.37, 0.36, -0.17, 0.005
+20040729, 0.66, 0.88, -0.49, -0.61, 0.18, 0.005
+20040730, 0.14, 0.16, -0.32, -0.40, 0.26, 0.005
+20040802, 0.36, -0.38, 0.28, 0.32, 0.08, 0.005
+20040803, -0.75, -0.72, 0.81, 0.73, -0.27, 0.005
+20040804, -0.20, -0.02, 0.02, 0.25, 0.46, 0.005
+20040805, -1.63, -0.21, 0.48, -0.13, 0.02, 0.005
+20040806, -1.59, -0.77, 0.73, 0.77, -0.38, 0.005
+20040809, 0.02, -0.35, 0.01, 0.37, -0.05, 0.005
+20040810, 1.39, 0.67, -0.37, -0.61, 0.22, 0.005
+20040811, -0.29, -0.25, 0.14, 0.88, -0.96, 0.005
+20040812, -1.18, -0.45, 0.27, 0.72, -0.33, 0.005
+20040813, 0.10, -0.03, 0.04, 0.22, 0.09, 0.005
+20040816, 1.40, 0.38, 0.04, -0.70, 0.13, 0.005
+20040817, 0.30, 0.01, -0.60, -0.52, 0.17, 0.005
+20040818, 1.34, 0.69, -0.78, -0.81, -0.03, 0.005
+20040819, -0.38, -0.25, 0.24, -0.05, -0.03, 0.005
+20040820, 0.79, 0.91, -0.30, -0.44, 0.01, 0.005
+20040823, -0.32, -0.43, -0.31, -0.13, 0.15, 0.005
+20040824, 0.03, 0.18, 0.15, 0.11, -0.09, 0.005
+20040825, 0.84, 0.08, -0.51, -0.57, -0.04, 0.005
+20040826, -0.05, -0.44, 0.39, 0.40, -0.21, 0.005
+20040827, 0.33, 0.45, -0.22, -0.12, -0.03, 0.005
+20040830, -0.86, -0.34, 0.37, 0.49, -0.10, 0.005
+20040831, 0.48, 0.08, 0.15, 0.06, -0.17, 0.005
+20040901, 0.30, 0.54, -0.40, 0.04, -0.09, 0.005
+20040902, 1.09, 0.23, -0.16, -0.05, -0.16, 0.005
+20040903, -0.45, -0.13, 0.42, 0.81, -0.32, 0.005
+20040907, 0.73, 0.38, 0.03, -0.06, -0.07, 0.005
+20040908, -0.48, -0.40, 0.01, -0.09, -0.17, 0.005
+20040909, 0.34, 1.16, -0.37, -0.60, 0.47, 0.005
+20040910, 0.53, 0.06, -0.65, -0.59, 0.24, 0.005
+20040913, 0.30, 0.39, -0.48, -0.43, -0.10, 0.005
+20040914, 0.19, -0.47, -0.17, -0.06, -0.15, 0.005
+20040915, -0.67, 0.25, 0.32, 0.51, -0.46, 0.005
+20040916, 0.36, 0.51, 0.35, -0.27, 0.24, 0.005
+20040917, 0.35, -0.54, -0.01, -0.13, -0.07, 0.005
+20040920, -0.51, 0.14, 0.07, -0.35, 0.12, 0.005
+20040921, 0.66, 0.39, -0.08, 0.07, -0.16, 0.005
+20040922, -1.37, -0.43, 0.55, 0.09, 0.03, 0.005
+20040923, -0.37, 0.35, -0.08, -0.40, 0.27, 0.005
+20040924, 0.14, -0.08, 0.36, 0.58, -0.37, 0.005
+20040927, -0.71, -0.57, 0.36, 0.48, -0.29, 0.005
+20040928, 0.63, 0.65, -0.23, 0.12, -0.25, 0.005
+20040929, 0.50, 0.56, -0.66, -0.29, -0.07, 0.005
+20040930, 0.06, 0.24, 0.52, -0.74, -0.40, 0.005
+20041001, 1.48, 0.45, -0.14, -0.67, 0.44, 0.005
+20041004, 0.38, 0.34, -0.16, -0.35, 0.38, 0.005
+20041005, -0.11, -0.14, 0.09, 0.39, 0.03, 0.005
+20041006, 0.69, 0.16, 0.14, -0.07, -0.09, 0.005
+20041007, -1.05, -0.52, 0.30, 0.34, 0.08, 0.005
+20041008, -0.80, -0.36, 0.62, 0.62, -0.17, 0.005
+20041011, 0.23, 0.16, -0.45, -0.07, -0.21, 0.005
+20041012, -0.23, -0.02, 0.27, 0.15, -0.12, 0.005
+20041013, -0.75, -0.43, -0.37, -0.23, -0.01, 0.005
+20041014, -0.92, 0.10, -0.34, 0.54, -0.03, 0.005
+20041015, 0.45, 0.27, 0.05, 0.41, 0.10, 0.005
+20041018, 0.51, -0.09, -0.79, -0.23, -0.20, 0.005
+20041019, -0.92, 0.09, -0.53, 0.25, 0.26, 0.005
+20041020, 0.11, 0.53, -0.13, 0.06, -0.22, 0.005
+20041021, 0.37, 0.60, -0.06, -0.96, 0.49, 0.005
+20041022, -1.00, -0.43, 0.64, 0.39, -0.24, 0.005
+20041025, -0.03, 0.76, 0.50, 0.01, 0.03, 0.005
+20041026, 1.36, -0.52, 0.65, 0.16, -0.37, 0.005
+20041027, 1.39, 0.18, -1.13, -0.68, -0.06, 0.005
+20041028, 0.13, -0.39, -0.06, -0.18, 0.26, 0.005
+20041029, 0.18, -0.48, 0.24, 0.00, 0.03, 0.005
+20041101, 0.06, 0.40, 0.05, -0.03, -0.21, 0.007
+20041102, -0.01, -0.16, -0.01, -0.18, -0.13, 0.007
+20041103, 1.17, 0.47, -0.05, 0.30, -0.25, 0.007
+20041104, 1.51, -0.52, 0.28, 0.71, 0.07, 0.007
+20041105, 0.44, 0.20, -0.32, -0.12, 0.19, 0.007
+20041108, -0.13, -0.27, 0.03, -0.27, 0.10, 0.007
+20041109, 0.05, 0.70, -0.03, -0.22, -0.02, 0.007
+20041110, -0.01, 0.57, 0.28, 0.35, -0.28, 0.007
+20041111, 0.90, 0.10, -0.22, -0.20, 0.09, 0.007
+20041112, 0.86, -0.02, -0.09, 0.37, 0.00, 0.007
+20041115, 0.07, 0.24, -0.26, -0.56, 0.03, 0.007
+20041116, -0.66, -0.21, 0.30, -0.31, 0.21, 0.007
+20041117, 0.64, 0.26, -0.10, -0.55, 0.31, 0.007
+20041118, 0.05, -0.25, 0.05, -0.23, 0.10, 0.007
+20041119, -1.11, -0.08, 0.74, 0.30, -0.14, 0.007
+20041122, 0.60, 0.54, 0.36, 0.04, 0.15, 0.007
+20041123, 0.06, 0.38, 0.35, 0.11, -0.31, 0.007
+20041124, 0.47, 0.29, 0.13, -0.28, 0.05, 0.007
+20041126, 0.12, 0.20, 0.30, -0.18, 0.12, 0.007
+20041129, -0.21, 0.81, -0.15, -0.26, -0.14, 0.007
+20041130, -0.37, 0.23, 0.11, 0.25, -0.16, 0.007
+20041201, 1.48, -0.03, -0.75, -0.34, -0.08, 0.007
+20041202, -0.07, 0.00, -0.57, -0.37, 0.20, 0.007
+20041203, 0.04, -0.17, 0.11, -0.25, 0.24, 0.007
+20041206, -0.13, -0.40, -0.07, -0.30, 0.22, 0.007
+20041207, -1.16, -0.89, 0.36, 0.18, -0.05, 0.007
+20041208, 0.46, 0.41, -0.41, 0.54, -0.59, 0.007
+20041209, 0.44, -0.76, 0.14, 0.10, -0.09, 0.007
+20041210, -0.01, 0.50, 0.19, -0.10, 0.11, 0.007
+20041213, 0.86, 0.03, -0.04, -0.13, -0.15, 0.007
+20041214, 0.45, 0.51, -0.20, -0.07, 0.04, 0.007
+20041215, 0.33, 0.42, 0.47, -0.37, 0.18, 0.007
+20041216, -0.28, -0.48, 0.34, 0.20, 0.22, 0.007
+20041217, -0.55, 0.56, 0.45, -0.09, 0.20, 0.007
+20041220, -0.13, -0.56, 0.39, 0.28, 0.12, 0.007
+20041221, 0.92, 0.28, -0.05, -0.02, 0.08, 0.007
+20041222, 0.39, 0.00, -0.15, 0.00, -0.10, 0.007
+20041223, 0.09, 0.19, -0.21, -0.01, -0.15, 0.007
+20041227, -0.45, -0.26, 0.01, -0.36, 0.21, 0.007
+20041228, 0.83, 0.78, -0.16, 0.07, -0.29, 0.007
+20041229, 0.01, -0.06, -0.03, -0.02, -0.06, 0.007
+20041230, 0.04, -0.01, -0.11, -0.11, 0.09, 0.007
+20041231, -0.14, -0.01, 0.20, -0.07, 0.11, 0.007
+20050103, -0.97, -0.65, -0.04, 0.37, -0.02, 0.008
+20050104, -1.30, -0.50, 0.44, 0.90, -0.49, 0.008
+20050105, -0.51, -1.13, 0.00, 0.09, -0.14, 0.008
+20050106, 0.34, -0.03, 0.13, 0.46, -0.13, 0.008
+20050107, -0.22, -0.82, -0.02, -0.17, -0.02, 0.008
+20050110, 0.42, 0.30, 0.04, 0.05, -0.23, 0.008
+20050111, -0.68, -0.30, 0.30, 0.93, -0.18, 0.008
+20050112, 0.38, -0.09, -0.16, -0.22, 0.13, 0.008
+20050113, -0.77, 0.25, 0.38, 0.05, 0.04, 0.008
+20050114, 0.66, 0.51, 0.07, -0.25, 0.16, 0.008
+20050118, 0.97, 0.16, -0.18, -0.06, -0.10, 0.008
+20050119, -0.97, -0.05, 0.48, 0.47, -0.32, 0.008
+20050120, -0.77, -0.11, -0.05, 0.38, 0.30, 0.008
+20050121, -0.56, 0.34, 0.25, -0.15, -0.10, 0.008
+20050124, -0.49, -0.69, 0.61, 0.58, -0.11, 0.008
+20050125, 0.34, 0.12, -0.37, 0.12, -0.14, 0.008
+20050126, 0.62, 0.94, -0.21, -0.35, -0.01, 0.008
+20050127, 0.08, 0.12, 0.04, -0.03, 0.12, 0.008
+20050128, -0.30, -0.23, 0.18, 0.27, -0.03, 0.008
+20050131, 0.97, 0.85, 0.16, -0.24, -0.11, 0.008
+20050201, 0.69, -0.01, 0.20, 0.55, -0.15, 0.009
+20050202, 0.36, 0.28, 0.17, 0.08, 0.15, 0.009
+20050203, -0.27, -0.08, 0.39, 0.11, -0.02, 0.009
+20050204, 1.12, 0.08, -0.56, -0.28, -0.02, 0.009
+20050207, -0.11, 0.10, -0.03, -0.14, 0.14, 0.009
+20050208, 0.08, 0.22, -0.17, -0.15, 0.08, 0.009
+20050209, -1.00, -1.10, 0.73, 0.13, -0.25, 0.009
+20050210, 0.35, -0.30, 0.05, 0.17, -0.39, 0.009
+20050211, 0.77, 0.40, -0.31, -0.49, 0.28, 0.009
+20050214, 0.09, -0.03, 0.14, 0.06, 0.11, 0.009
+20050215, 0.28, -0.38, -0.01, -0.13, 0.18, 0.009
+20050216, 0.07, 0.50, 0.40, -0.07, -0.14, 0.009
+20050217, -0.79, -0.31, 0.21, 0.09, 0.04, 0.009
+20050218, 0.01, -0.14, -0.05, 0.15, 0.11, 0.009
+20050222, -1.47, -0.33, -0.12, -0.02, -0.03, 0.009
+20050223, 0.53, -0.12, 0.25, 0.18, -0.10, 0.009
+20050224, 0.83, 0.25, -0.23, 0.24, -0.19, 0.009
+20050225, 0.97, 0.47, 0.38, 0.21, -0.15, 0.009
+20050228, -0.61, 0.24, 0.04, 0.40, 0.18, 0.009
+20050301, 0.58, 0.06, 0.02, -0.16, 0.42, 0.010
+20050302, -0.01, -0.15, 0.05, 0.32, -0.06, 0.010
+20050303, -0.01, 0.15, 0.55, 0.41, -0.03, 0.010
+20050304, 0.89, 0.03, 0.32, 0.35, -0.20, 0.010
+20050307, 0.27, -0.43, 0.01, -0.29, 0.10, 0.010
+20050308, -0.54, -0.37, -0.06, 0.26, -0.17, 0.010
+20050309, -0.96, 0.02, -0.07, -0.19, 0.57, 0.010
+20050310, 0.01, -0.83, -0.22, 0.05, 0.10, 0.010
+20050311, -0.55, 0.62, 0.52, 0.13, 0.04, 0.010
+20050314, 0.61, -0.25, 0.11, -0.49, 0.09, 0.010
+20050315, -0.67, 0.20, 0.27, 0.00, 0.04, 0.010
+20050316, -0.84, 0.23, 0.12, 0.11, -0.10, 0.010
+20050317, 0.19, 0.10, 0.52, -0.21, 0.15, 0.010
+20050318, -0.13, -0.30, -0.04, 0.31, -0.18, 0.010
+20050321, -0.38, 0.25, -0.20, -0.43, 0.09, 0.010
+20050322, -0.92, 0.62, -0.11, 0.00, 0.14, 0.010
+20050323, -0.12, -1.00, -0.50, -0.04, -0.07, 0.010
+20050324, 0.01, 0.47, -0.08, -0.10, 0.10, 0.010
+20050328, 0.15, -0.20, -0.03, 0.34, -0.11, 0.010
+20050329, -0.86, -0.88, 0.07, 0.20, -0.01, 0.010
+20050330, 1.35, 0.14, -0.21, -0.13, 0.03, 0.010
+20050331, 0.00, 0.07, 0.64, 0.03, 0.25, 0.010
+20050401, -0.64, 0.10, 0.42, 0.32, -0.07, 0.010
+20050404, 0.29, 0.00, 0.19, 0.00, -0.33, 0.010
+20050405, 0.40, -0.21, -0.25, 0.31, -0.06, 0.010
+20050406, 0.22, -0.04, 0.03, -0.04, -0.04, 0.010
+20050407, 0.57, -0.10, -0.17, -0.48, 0.31, 0.010
+20050408, -0.88, -0.49, 0.04, -0.06, 0.10, 0.010
+20050411, -0.09, -0.58, 0.02, 0.29, -0.08, 0.010
+20050412, 0.56, 0.20, -0.09, 0.13, -0.04, 0.010
+20050413, -1.22, -0.39, -0.17, 0.35, 0.01, 0.010
+20050414, -1.10, -0.63, -0.26, 0.21, -0.22, 0.010
+20050415, -1.59, -0.26, -0.38, -0.10, -0.36, 0.010
+20050418, 0.29, 0.40, 0.23, 0.35, -0.26, 0.010
+20050419, 0.75, 0.84, 0.13, -0.49, 0.05, 0.010
+20050420, -1.35, -0.28, 0.05, -0.36, 0.15, 0.010
+20050421, 1.87, 0.29, -0.56, -0.30, 0.08, 0.010
+20050422, -0.83, -0.73, 0.43, 0.56, 0.06, 0.010
+20050425, 0.93, 0.11, 0.01, 0.01, -0.12, 0.010
+20050426, -0.88, -0.54, -0.13, -0.05, -0.15, 0.010
+20050427, 0.30, -0.51, -0.24, 0.42, -0.02, 0.010
+20050428, -1.20, -0.93, 0.37, 0.10, 0.26, 0.010
+20050429, 1.04, -0.39, -0.02, -0.18, -0.17, 0.010
+20050502, 0.52, 0.54, 0.06, 0.34, -0.39, 0.011
+20050503, -0.04, -0.10, -0.31, -0.15, 0.08, 0.011
+20050504, 1.28, 0.34, 0.41, -0.65, 0.03, 0.011
+20050505, -0.19, 0.31, -0.39, 0.26, -0.23, 0.011
+20050506, -0.03, 0.29, 0.16, -0.35, 0.21, 0.011
+20050509, 0.61, 0.36, -0.04, 0.04, 0.01, 0.011
+20050510, -1.03, -0.22, 0.02, -0.14, 0.35, 0.011
+20050511, 0.39, -0.39, -0.13, 0.24, -0.19, 0.011
+20050512, -1.02, -0.32, -0.75, -0.33, 0.26, 0.011
+20050513, -0.50, -0.24, -0.67, -0.27, 0.01, 0.011
+20050516, 1.03, 0.48, -0.17, 0.38, -0.18, 0.011
+20050517, 0.66, -0.14, 0.29, 0.21, -0.14, 0.011
+20050518, 1.15, 0.96, -0.26, 0.04, 0.07, 0.011
+20050519, 0.47, -0.06, -0.08, -0.14, 0.05, 0.011
+20050520, -0.13, -0.09, 0.25, -0.31, 0.30, 0.011
+20050523, 0.43, 0.20, -0.02, 0.04, -0.20, 0.011
+20050524, 0.05, -0.03, 0.00, -0.24, 0.09, 0.011
+20050525, -0.44, -0.55, 0.19, 0.23, 0.02, 0.011
+20050526, 0.74, 0.66, 0.08, -0.34, 0.03, 0.011
+20050527, 0.18, 0.16, 0.31, 0.03, -0.15, 0.011
+20050531, -0.49, 0.47, 0.28, -0.16, 0.16, 0.011
+20050601, 0.90, 0.19, 0.00, 0.14, -0.12, 0.010
+20050602, 0.24, 0.10, -0.24, 0.02, 0.15, 0.010
+20050603, -0.67, -0.12, 0.48, 0.21, 0.15, 0.010
+20050606, 0.14, 0.32, 0.13, 0.32, -0.18, 0.010
+20050607, -0.03, 0.18, 0.09, 0.33, 0.00, 0.010
+20050608, -0.28, -0.35, 0.36, -0.09, 0.32, 0.010
+20050609, 0.58, 0.31, -0.12, -0.35, -0.33, 0.010
+20050610, -0.21, 0.18, 0.54, -0.12, 0.10, 0.010
+20050613, 0.28, 0.16, 0.17, 0.04, -0.01, 0.010
+20050614, 0.31, 0.54, 0.39, 0.23, -0.08, 0.010
+20050615, 0.22, 0.27, 0.21, 0.13, 0.07, 0.010
+20050616, 0.46, 0.62, -0.29, -0.22, -0.21, 0.010
+20050617, 0.36, -0.52, 0.20, -0.06, -0.02, 0.010
+20050620, -0.07, -0.29, 0.09, 0.07, -0.06, 0.010
+20050621, -0.18, 0.09, -0.05, -0.29, 0.09, 0.010
+20050622, 0.05, 0.32, -0.09, 0.13, 0.03, 0.010
+20050623, -1.07, -0.38, 0.13, -0.03, -0.10, 0.010
+20050624, -0.72, 0.05, 0.12, 0.00, -0.39, 0.010
+20050627, -0.07, -0.03, 0.55, 0.51, -0.32, 0.010
+20050628, 1.05, 1.03, -0.51, -0.02, 0.15, 0.010
+20050629, -0.07, 0.34, 0.12, 0.09, 0.08, 0.010
+20050630, -0.63, 0.22, 0.27, -0.05, 0.14, 0.010
+20050701, 0.32, 0.18, 0.30, 0.38, -0.10, 0.012
+20050705, 0.92, 0.61, -0.19, 0.25, -0.31, 0.012
+20050706, -0.73, 0.10, 0.07, -0.28, 0.05, 0.012
+20050707, 0.26, -0.10, -0.24, 0.10, -0.12, 0.012
+20050708, 1.21, 0.70, -0.55, -0.27, -0.04, 0.012
+20050711, 0.69, 0.73, -0.13, -0.10, -0.04, 0.012
+20050712, 0.20, -0.28, -0.04, 0.03, -0.08, 0.012
+20050713, 0.02, -0.42, 0.07, -0.12, 0.10, 0.012
+20050714, 0.14, -0.76, -0.44, -0.50, -0.01, 0.012
+20050715, 0.12, -0.03, -0.03, -0.12, 0.05, 0.012
+20050718, -0.55, -0.18, 0.10, -0.12, 0.23, 0.012
+20050719, 0.75, 0.81, -0.11, -0.14, -0.13, 0.012
+20050720, 0.54, 0.80, -0.26, 0.07, -0.07, 0.012
+20050721, -0.74, -0.61, 0.15, -0.32, -0.29, 0.012
+20050722, 0.57, 1.00, 0.54, 0.46, -0.10, 0.012
+20050725, -0.47, -0.48, 0.13, -0.02, -0.03, 0.012
+20050726, 0.21, 0.27, 0.22, -0.37, 0.33, 0.012
+20050727, 0.43, -0.37, -0.04, 0.00, -0.09, 0.012
+20050728, 0.67, 0.52, -0.18, 0.14, -0.25, 0.012
+20050729, -0.66, 0.27, 0.12, -0.19, -0.03, 0.012
+20050801, 0.15, 0.28, -0.12, -0.10, -0.16, 0.013
+20050802, 0.70, 0.00, 0.11, -0.27, 0.04, 0.013
+20050803, -0.02, -0.67, -0.04, -0.32, 0.03, 0.013
+20050804, -0.82, -0.78, 0.35, -0.09, 0.05, 0.013
+20050805, -0.81, -0.34, -0.02, -0.23, 0.20, 0.013
+20050808, -0.32, 0.04, 0.25, 0.43, 0.08, 0.013
+20050809, 0.55, -0.56, -0.07, -0.32, -0.02, 0.013
+20050810, -0.13, 0.12, 0.16, 0.30, -0.19, 0.013
+20050811, 0.71, 0.16, -0.08, -0.25, -0.15, 0.013
+20050812, -0.57, -0.33, 0.11, 0.08, -0.01, 0.013
+20050815, 0.30, 0.44, -0.14, -0.22, -0.02, 0.013
+20050816, -1.22, -0.46, 0.17, -0.26, 0.02, 0.013
+20050817, 0.05, -0.09, -0.06, -0.63, 0.32, 0.013
+20050818, -0.15, -0.37, 0.05, 0.08, -0.03, 0.013
+20050819, 0.07, 0.15, 0.17, 0.18, 0.09, 0.013
+20050822, 0.19, 0.49, 0.15, -0.04, 0.12, 0.013
+20050823, -0.31, -0.04, 0.01, -0.34, 0.13, 0.013
+20050824, -0.56, 0.49, 0.13, 0.03, 0.02, 0.013
+20050825, 0.21, 0.11, 0.20, -0.20, 0.06, 0.013
+20050826, -0.66, -0.61, -0.09, -0.24, 0.12, 0.013
+20050829, 0.65, 0.36, -0.22, 0.09, -0.02, 0.013
+20050830, -0.31, 0.01, 0.34, -0.12, 0.15, 0.013
+20050831, 1.10, 0.75, -0.06, 0.23, -0.35, 0.013
+20050901, 0.13, 0.11, 0.24, 0.40, -0.13, 0.014
+20050902, -0.36, -0.34, -0.01, -0.09, 0.04, 0.014
+20050906, 1.22, 0.26, -0.49, 0.18, -0.11, 0.014
+20050907, 0.30, 0.12, -0.14, 0.05, 0.02, 0.014
+20050908, -0.40, -0.13, -0.05, -0.15, 0.13, 0.014
+20050909, 0.73, -0.06, 0.14, 0.16, -0.13, 0.014
+20050912, 0.00, 0.46, -0.34, -0.21, -0.14, 0.014
+20050913, -0.76, -0.25, 0.13, -0.42, -0.01, 0.014
+20050914, -0.44, -0.59, 0.42, 0.25, 0.11, 0.014
+20050915, -0.02, -0.21, 0.30, 0.17, 0.04, 0.014
+20050916, 0.72, 0.21, -0.10, 0.19, -0.03, 0.014
+20050919, -0.55, -0.08, 0.22, 0.31, -0.21, 0.014
+20050920, -0.78, -0.15, 0.04, -0.40, 0.06, 0.014
+20050921, -1.03, -0.44, 0.30, 0.63, -0.14, 0.014
+20050922, 0.30, -0.09, -0.24, 0.61, -0.19, 0.014
+20050923, 0.15, 0.51, 0.19, -0.47, 0.06, 0.014
+20050926, 0.12, 0.58, 0.07, 0.04, -0.20, 0.014
+20050927, -0.02, -0.09, -0.09, -0.08, -0.17, 0.014
+20050928, 0.06, -0.55, 0.27, -0.08, 0.13, 0.014
+20050929, 0.92, 0.22, 0.04, -0.23, -0.02, 0.014
+20050930, 0.20, 0.24, -0.17, -0.40, 0.25, 0.014
+20051003, 0.00, 0.47, 0.01, -0.10, -0.06, 0.013
+20051004, -0.97, 0.14, -0.18, -0.47, 0.18, 0.013
+20051005, -1.63, -1.10, -0.25, -0.19, -0.17, 0.013
+20051006, -0.57, -0.42, 0.10, 0.10, -0.09, 0.013
+20051007, 0.42, 0.39, 0.25, 0.22, -0.12, 0.013
+20051010, -0.73, -0.11, -0.22, -0.06, -0.12, 0.013
+20051011, -0.33, -0.88, 0.14, 0.84, -0.19, 0.013
+20051012, -0.79, -0.61, 0.10, -0.03, 0.01, 0.013
+20051013, -0.09, 0.31, -0.55, -0.79, -0.09, 0.013
+20051014, 0.92, 0.51, -0.10, -0.07, -0.16, 0.013
+20051017, 0.29, -0.27, 0.12, 0.20, -0.16, 0.013
+20051018, -1.03, -0.14, -0.13, -0.49, 0.25, 0.013
+20051019, 1.45, 0.41, -0.19, -0.01, -0.42, 0.013
+20051020, -1.44, -0.09, -0.37, -0.32, 0.00, 0.013
+20051021, 0.32, 0.43, 0.24, 0.20, -0.31, 0.013
+20051024, 1.70, 0.25, 0.29, 0.08, -0.09, 0.013
+20051025, -0.30, -0.22, 0.09, 0.51, -0.21, 0.013
+20051026, -0.46, -0.19, 0.18, -0.28, 0.09, 0.013
+20051027, -1.24, -1.01, 0.42, -0.18, 0.33, 0.013
+20051028, 1.55, -0.03, 0.27, 0.53, 0.08, 0.013
+20051031, 0.96, 0.80, 0.03, -0.21, -0.06, 0.013
+20051101, -0.27, -0.16, 0.39, -0.09, -0.35, 0.015
+20051102, 1.15, 0.86, 0.00, -0.03, -0.07, 0.015
+20051103, 0.43, -0.12, -0.19, -0.05, -0.29, 0.015
+20051104, 0.01, -0.04, -0.28, -0.25, 0.05, 0.015
+20051107, 0.25, 0.22, -0.06, -0.15, 0.03, 0.015
+20051108, -0.37, -0.32, -0.04, 0.07, -0.04, 0.015
+20051109, 0.15, 0.25, -0.02, -0.04, 0.07, 0.015
+20051110, 0.80, -0.16, -0.60, -0.08, -0.29, 0.015
+20051111, 0.27, -0.01, -0.12, 0.11, -0.21, 0.015
+20051114, -0.10, -0.32, 0.05, -0.07, 0.07, 0.015
+20051115, -0.49, -0.72, -0.17, -0.06, -0.11, 0.015
+20051116, 0.11, -0.36, 0.01, 0.19, -0.25, 0.015
+20051117, 1.06, 0.67, -0.09, -0.39, 0.04, 0.015
+20051118, 0.43, 0.32, -0.16, -0.02, 0.14, 0.015
+20051121, 0.60, 0.40, -0.35, 0.19, -0.28, 0.015
+20051122, 0.48, -0.01, -0.01, 0.32, -0.03, 0.015
+20051123, 0.31, -0.30, 0.22, -0.06, 0.10, 0.015
+20051125, 0.18, -0.12, -0.08, 0.14, 0.01, 0.015
+20051128, -1.01, -0.73, 0.22, -0.18, 0.15, 0.015
+20051129, 0.01, 0.31, 0.28, 0.14, 0.08, 0.015
+20051130, -0.43, 1.11, -0.16, -0.27, 0.02, 0.015
+20051201, 1.27, 0.54, 0.13, -0.04, 0.13, 0.015
+20051202, 0.05, 0.08, -0.14, 0.15, -0.01, 0.015
+20051205, -0.30, -0.17, 0.08, 0.29, -0.18, 0.015
+20051206, 0.12, 0.05, 0.06, -0.01, -0.16, 0.015
+20051207, -0.49, -0.12, 0.06, -0.14, 0.09, 0.015
+20051208, -0.03, 0.29, 0.07, -0.01, -0.02, 0.015
+20051209, 0.27, 0.20, 0.05, -0.22, 0.21, 0.015
+20051212, 0.10, 0.09, -0.05, 0.14, 0.06, 0.015
+20051213, 0.44, -0.54, -0.21, 0.37, -0.23, 0.015
+20051214, 0.34, -0.18, 0.08, 0.62, -0.05, 0.015
+20051215, -0.23, -0.59, -0.37, -0.11, 0.08, 0.015
+20051216, -0.29, 0.02, -0.04, -0.19, 0.02, 0.015
+20051219, -0.73, -0.76, 0.29, 0.11, -0.10, 0.015
+20051220, -0.02, 0.01, 0.02, 0.12, -0.02, 0.015
+20051221, 0.33, 0.68, -0.35, -0.08, -0.06, 0.015
+20051222, 0.45, 0.09, -0.02, -0.43, 0.14, 0.015
+20051223, 0.08, 0.27, 0.00, -0.07, 0.10, 0.015
+20051227, -1.00, -0.44, 0.17, -0.23, 0.13, 0.015
+20051228, 0.19, 0.39, 0.13, 0.09, -0.09, 0.015
+20051229, -0.27, 0.00, 0.21, -0.15, 0.07, 0.015
+20051230, -0.50, -0.16, 0.26, -0.08, 0.08, 0.015
+20060103, 1.50, -0.14, 0.13, 0.24, -0.32, 0.017
+20060104, 0.46, 0.30, 0.02, -0.47, 0.30, 0.017
+20060105, 0.03, 0.24, -0.15, -0.48, 0.17, 0.017
+20060106, 0.92, 0.09, -0.23, 0.01, 0.14, 0.017
+20060109, 0.45, 0.52, -0.10, 0.03, -0.07, 0.017
+20060110, 0.05, 0.59, 0.02, -0.20, -0.13, 0.017
+20060111, 0.28, -0.29, -0.11, -0.41, 0.13, 0.017
+20060112, -0.65, 0.08, -0.03, -0.10, 0.06, 0.017
+20060113, 0.17, 0.16, 0.06, 0.04, -0.04, 0.017
+20060117, -0.40, -0.24, 0.22, 0.39, -0.27, 0.017
+20060118, -0.35, 0.40, 0.30, -0.35, 0.21, 0.017
+20060119, 0.63, 0.95, -0.08, 0.01, 0.14, 0.017
+20060120, -1.80, 0.49, 0.51, 0.30, 0.27, 0.017
+20060123, 0.18, 0.27, 0.43, 0.31, -0.20, 0.017
+20060124, 0.44, 1.02, 0.16, -0.11, -0.04, 0.017
+20060125, -0.22, -0.04, -0.12, -0.11, -0.11, 0.017
+20060126, 0.79, 0.87, 0.04, 0.02, -0.02, 0.017
+20060127, 0.67, -0.20, -0.17, 0.02, -0.34, 0.017
+20060130, 0.10, -0.18, 0.21, 0.05, -0.03, 0.017
+20060131, -0.21, 0.59, -0.03, -0.05, -0.35, 0.017
+20060201, 0.14, 0.08, 0.05, -0.47, 0.39, 0.018
+20060202, -0.88, -0.24, -0.07, 0.21, 0.03, 0.018
+20060203, -0.51, 0.25, 0.01, -0.07, -0.02, 0.018
+20060206, 0.10, 0.39, 0.51, 0.30, 0.00, 0.018
+20060207, -0.92, -0.55, -0.23, -0.40, 0.43, 0.018
+20060208, 0.77, -0.32, -0.09, -0.16, 0.39, 0.018
+20060209, -0.19, -0.22, -0.27, -0.15, 0.37, 0.018
+20060210, 0.15, -0.38, -0.05, 0.04, 0.06, 0.018
+20060213, -0.47, -0.47, 0.14, 0.06, 0.17, 0.018
+20060214, 1.01, 0.22, -0.10, -0.16, -0.01, 0.018
+20060215, 0.41, 0.36, -0.47, 0.01, -0.07, 0.018
+20060216, 0.75, 0.11, 0.22, 0.17, 0.06, 0.018
+20060217, -0.16, 0.02, 0.36, 0.06, 0.17, 0.018
+20060221, -0.38, -0.13, 0.14, 0.51, -0.25, 0.018
+20060222, 0.73, 0.00, -0.03, -0.34, -0.15, 0.018
+20060223, -0.29, 0.18, -0.22, 0.03, 0.07, 0.018
+20060224, 0.19, 0.37, 0.16, -0.04, -0.03, 0.018
+20060227, 0.40, 0.11, -0.36, -0.35, 0.30, 0.018
+20060228, -1.10, -0.20, 0.07, 0.02, 0.11, 0.018
+20060301, 0.90, 0.60, -0.04, -0.38, 0.39, 0.016
+20060302, -0.16, -0.02, 0.06, 0.04, 0.02, 0.016
+20060303, -0.15, -0.02, 0.07, 0.08, 0.03, 0.016
+20060306, -0.75, -0.27, -0.14, -0.15, -0.06, 0.016
+20060307, -0.40, -1.08, 0.05, -0.02, -0.20, 0.016
+20060308, 0.14, -0.08, 0.06, 0.02, -0.03, 0.016
+20060309, -0.51, 0.03, 0.29, 0.02, 0.14, 0.016
+20060310, 0.69, 0.40, 0.03, 0.20, 0.06, 0.016
+20060313, 0.24, 0.03, 0.10, 0.06, -0.09, 0.016
+20060314, 1.00, 0.03, -0.03, 0.18, -0.21, 0.016
+20060315, 0.48, 0.38, 0.15, -0.22, 0.33, 0.016
+20060316, 0.11, -0.10, 0.32, 0.17, 0.03, 0.016
+20060317, 0.18, 0.06, -0.32, -0.10, -0.04, 0.016
+20060320, -0.07, 0.10, -0.33, -0.29, -0.13, 0.016
+20060321, -0.69, -0.49, -0.10, 0.34, -0.17, 0.016
+20060322, 0.62, 0.50, 0.12, 0.32, -0.15, 0.016
+20060323, -0.18, 0.59, 0.00, 0.27, -0.02, 0.016
+20060324, 0.22, 0.67, 0.20, -0.15, -0.13, 0.016
+20060327, -0.07, 0.17, 0.25, 0.07, -0.06, 0.016
+20060328, -0.61, 0.28, -0.08, 0.18, -0.13, 0.016
+20060329, 0.87, 0.82, 0.14, -0.20, 0.19, 0.016
+20060330, -0.16, 0.09, -0.16, -0.30, -0.21, 0.016
+20060331, -0.23, 0.71, -0.05, -0.19, -0.07, 0.016
+20060403, 0.07, -0.84, 0.68, 0.17, 0.23, 0.019
+20060404, 0.54, -0.21, 0.13, 0.19, -0.30, 0.019
+20060405, 0.42, 0.03, 0.25, -0.07, 0.08, 0.019
+20060406, -0.15, 0.17, 0.01, -0.18, -0.14, 0.019
+20060407, -1.02, -0.14, -0.17, 0.02, 0.06, 0.019
+20060410, -0.02, -0.34, 0.05, 0.62, -0.14, 0.019
+20060411, -0.83, -0.66, 0.02, 0.24, -0.08, 0.019
+20060412, 0.19, 0.57, -0.03, -0.27, 0.15, 0.019
+20060413, 0.12, 0.37, -0.14, -0.23, 0.22, 0.019
+20060417, -0.28, 0.11, 0.30, 0.59, -0.22, 0.019
+20060418, 1.71, 0.71, 0.07, 0.04, 0.03, 0.019
+20060419, 0.33, 0.90, 0.07, -0.07, -0.36, 0.019
+20060420, 0.01, -0.52, 0.05, -0.04, 0.32, 0.019
+20060421, -0.10, -0.14, 0.30, 0.29, -0.21, 0.019
+20060424, -0.30, -0.46, 0.13, -0.32, -0.10, 0.019
+20060425, -0.44, 0.40, 0.00, -0.02, 0.19, 0.019
+20060426, 0.20, -0.13, 0.28, -0.26, 0.05, 0.019
+20060427, 0.24, -0.93, 0.00, -0.18, 0.16, 0.019
+20060428, 0.05, 0.36, 0.52, 0.66, -0.14, 0.019
+20060501, -0.41, 0.01, 0.47, -0.05, 0.15, 0.020
+20060502, 0.54, 0.26, 0.57, 0.29, 0.19, 0.020
+20060503, -0.31, 0.39, 0.08, -0.11, 0.18, 0.020
+20060504, 0.37, 0.52, -0.24, -0.16, 0.10, 0.020
+20060505, 1.04, -0.27, -0.02, 0.04, -0.09, 0.020
+20060508, -0.05, 0.04, 0.09, 0.02, 0.19, 0.020
+20060509, -0.01, -0.14, 0.20, 0.06, -0.07, 0.020
+20060510, -0.20, -0.50, 0.54, 0.09, -0.24, 0.020
+20060511, -1.35, -1.03, 0.23, 0.37, 0.10, 0.020
+20060512, -1.26, -0.79, -0.08, -0.15, 0.31, 0.020
+20060515, 0.04, -0.96, -0.29, 0.38, -0.06, 0.020
+20060516, -0.12, 0.12, 0.35, 0.11, -0.29, 0.020
+20060517, -1.66, 0.09, 0.16, -0.13, 0.15, 0.020
+20060518, -0.69, -0.33, 0.13, 0.05, 0.24, 0.020
+20060519, 0.38, 0.12, 0.01, -0.04, 0.38, 0.020
+20060522, -0.55, -0.74, 0.25, 0.03, 0.04, 0.020
+20060523, -0.44, 0.07, -0.02, 0.21, -0.26, 0.020
+20060524, 0.03, -0.13, -0.15, -0.08, 0.04, 0.020
+20060525, 1.22, 0.69, 0.01, 0.11, -0.06, 0.020
+20060526, 0.60, -0.12, -0.08, -0.16, 0.03, 0.020
+20060530, -1.65, -0.80, 0.13, -0.14, 0.17, 0.020
+20060531, 0.94, 0.42, 0.38, 0.21, 0.22, 0.020
+20060601, 1.29, 0.75, -0.17, -0.27, 0.15, 0.018
+20060602, 0.16, -0.01, 0.22, 0.09, -0.12, 0.018
+20060605, -1.94, -1.18, 0.20, -0.15, 0.18, 0.018
+20060606, -0.28, -0.16, -0.09, 0.45, 0.06, 0.018
+20060607, -0.57, 0.00, -0.19, -0.35, -0.01, 0.018
+20060608, 0.01, -0.25, 0.04, 0.41, -0.16, 0.018
+20060609, -0.44, -0.23, -0.05, 0.15, 0.13, 0.018
+20060612, -1.48, -1.25, 0.27, 0.36, -0.01, 0.018
+20060613, -1.15, -0.46, -0.41, 0.29, 0.01, 0.018
+20060614, 0.46, 0.10, -0.22, 0.04, 0.24, 0.018
+20060615, 2.33, 1.11, 0.27, -0.44, 0.03, 0.018
+20060616, -0.43, -0.72, 0.01, 0.20, 0.07, 0.018
+20060619, -1.01, -0.79, 0.15, -0.33, 0.18, 0.018
+20060620, -0.07, -0.37, 0.07, 0.03, 0.01, 0.018
+20060621, 1.11, 0.74, -0.17, 0.02, -0.12, 0.018
+20060622, -0.52, 0.23, 0.16, 0.36, -0.28, 0.018
+20060623, 0.03, 0.31, 0.22, 0.16, -0.33, 0.018
+20060626, 0.50, 0.58, 0.19, 0.02, -0.10, 0.018
+20060627, -1.00, -0.68, 0.28, 0.36, -0.17, 0.018
+20060628, 0.47, -0.35, 0.15, 0.22, -0.07, 0.018
+20060629, 2.29, 1.43, -0.25, 0.00, -0.05, 0.018
+20060630, -0.02, 1.17, 0.14, -0.25, 0.22, 0.018
+20060703, 0.72, -0.03, -0.24, 0.30, -0.05, 0.020
+20060705, -0.88, -0.52, 0.38, 0.15, 0.03, 0.020
+20060706, 0.23, -0.11, 0.03, 0.12, 0.25, 0.020
+20060707, -0.80, -0.78, 0.72, 0.05, 0.23, 0.020
+20060710, 0.04, -0.21, 0.51, 0.46, 0.20, 0.020
+20060711, 0.37, 0.29, -0.16, -0.17, -0.24, 0.020
+20060712, -1.21, -0.60, 0.35, -0.08, 0.07, 0.020
+20060713, -1.43, -0.57, 0.07, 0.21, 0.01, 0.020
+20060714, -0.60, -0.29, 0.15, 0.48, -0.11, 0.020
+20060717, -0.22, -0.50, 0.08, -0.27, 0.37, 0.020
+20060718, 0.17, 0.16, 0.30, 0.07, 0.11, 0.020
+20060719, 1.98, 0.96, -0.27, 0.22, -0.07, 0.020
+20060720, -1.11, -1.56, 0.60, -0.20, 0.21, 0.020
+20060721, -0.89, -0.80, 0.33, 0.58, 0.43, 0.020
+20060724, 1.75, 0.84, -0.49, 0.22, -0.34, 0.020
+20060725, 0.69, 0.21, 0.01, -0.21, -0.27, 0.020
+20060726, -0.13, -0.28, 0.48, -0.12, 0.23, 0.020
+20060727, -0.58, -0.71, 0.36, -0.23, 0.01, 0.020
+20060728, 1.31, 0.64, -0.15, 0.01, 0.12, 0.020
+20060731, -0.09, 0.27, -0.09, -0.02, -0.22, 0.020
+20060801, -0.60, -0.89, 0.34, 0.22, -0.11, 0.018
+20060802, 0.64, 0.27, -0.25, -0.15, -0.10, 0.018
+20060803, 0.27, 0.79, -0.46, 0.38, 0.05, 0.018
+20060804, -0.13, -0.45, 0.16, 0.07, 0.00, 0.018
+20060807, -0.35, -0.30, 0.10, 0.32, -0.17, 0.018
+20060808, -0.42, -0.76, 0.10, 0.09, -0.07, 0.018
+20060809, -0.52, -0.47, -0.01, -0.13, 0.61, 0.018
+20060810, 0.49, 0.28, -0.39, -0.01, 0.23, 0.018
+20060811, -0.49, -0.55, 0.19, -0.01, 0.01, 0.018
+20060814, 0.12, 0.16, -0.31, -0.24, 0.64, 0.018
+20060815, 1.46, 0.71, -0.41, -0.38, -0.11, 0.018
+20060816, 0.90, 0.54, -0.51, -0.25, -0.09, 0.018
+20060817, 0.18, 0.31, -0.18, -0.51, 0.18, 0.018
+20060818, 0.30, -0.17, -0.12, 0.14, -0.06, 0.018
+20060821, -0.48, -0.46, 0.15, 0.07, 0.15, 0.018
+20060822, 0.07, 0.27, 0.06, -0.06, -0.03, 0.018
+20060823, -0.55, -0.74, 0.15, -0.26, 0.40, 0.018
+20060824, 0.16, -0.20, 0.08, -0.11, 0.01, 0.018
+20060825, -0.07, 0.19, -0.09, -0.05, 0.02, 0.018
+20060828, 0.58, 0.37, -0.12, -0.14, 0.19, 0.018
+20060829, 0.33, 0.86, -0.12, -0.36, 0.32, 0.018
+20060830, 0.13, 0.67, -0.28, -0.37, 0.08, 0.018
+20060831, 0.03, 0.06, 0.23, 0.01, -0.05, 0.018
+20060901, 0.49, -0.26, -0.04, 0.23, -0.05, 0.020
+20060905, 0.21, 0.53, 0.02, 0.04, -0.49, 0.020
+20060906, -1.13, -0.97, 0.46, 0.07, 0.52, 0.020
+20060907, -0.50, -0.18, 0.21, 0.06, -0.06, 0.020
+20060908, 0.32, -0.11, -0.12, -0.16, 0.41, 0.020
+20060911, -0.03, -0.20, -0.08, -0.14, 0.53, 0.020
+20060912, 1.18, 1.10, -0.32, -0.06, -0.14, 0.020
+20060913, 0.45, 0.45, -0.08, 0.20, -0.25, 0.020
+20060914, -0.16, -0.25, 0.08, -0.14, 0.19, 0.020
+20060915, 0.21, -0.02, -0.28, 0.22, -0.20, 0.020
+20060918, 0.04, -0.02, -0.30, 0.29, -0.20, 0.020
+20060919, -0.29, -0.21, 0.19, 0.14, 0.24, 0.020
+20060920, 0.60, 0.50, 0.01, -0.32, 0.31, 0.020
+20060921, -0.59, -0.34, 0.07, 0.34, -0.29, 0.020
+20060922, -0.41, -0.81, 0.51, 0.09, 0.09, 0.020
+20060925, 0.86, 0.15, 0.09, -0.21, 0.20, 0.020
+20060926, 0.71, -0.36, -0.18, 0.41, -0.18, 0.020
+20060927, 0.08, 0.39, -0.27, 0.20, 0.05, 0.020
+20060928, 0.15, -0.12, -0.19, -0.02, -0.14, 0.020
+20060929, -0.33, -0.61, 0.25, -0.36, -0.04, 0.020
+20061002, -0.43, -0.55, 0.19, -0.12, 0.35, 0.018
+20061003, 0.13, -0.36, 0.46, -0.33, 0.46, 0.018
+20061004, 1.28, 0.70, -0.52, 0.11, -0.10, 0.018
+20061005, 0.43, 0.92, -0.37, 0.04, -0.24, 0.018
+20061006, -0.31, -0.06, -0.09, -0.08, 0.08, 0.018
+20061009, 0.20, 0.44, 0.11, -0.11, -0.03, 0.018
+20061010, 0.21, 0.03, 0.00, 0.31, -0.31, 0.018
+20061011, -0.30, -0.28, 0.23, -0.25, 0.23, 0.018
+20061012, 1.07, 0.94, -0.19, 0.02, -0.24, 0.018
+20061013, 0.22, 0.48, -0.06, -0.06, -0.18, 0.018
+20061016, 0.34, 0.62, -0.32, 0.18, -0.22, 0.018
+20061017, -0.44, -0.18, 0.42, -0.13, 0.36, 0.018
+20061018, 0.08, -0.33, 0.03, 0.11, 0.21, 0.018
+20061019, 0.10, 0.45, -0.09, -0.01, -0.24, 0.018
+20061020, -0.02, -0.72, 0.04, 0.11, 0.18, 0.018
+20061023, 0.56, -0.47, -0.19, 0.06, -0.10, 0.018
+20061024, 0.01, -0.15, 0.22, 0.38, -0.51, 0.018
+20061025, 0.32, 0.24, -0.08, 0.23, -0.11, 0.018
+20061026, 0.63, 0.43, 0.20, -0.40, 0.10, 0.018
+20061027, -0.88, -0.32, 0.12, -0.03, 0.29, 0.018
+20061030, 0.07, 0.39, -0.01, -0.22, 0.38, 0.018
+20061031, -0.07, -0.35, -0.11, -0.04, -0.15, 0.018
+20061101, -0.87, -0.94, 0.27, 0.30, 0.51, 0.020
+20061102, -0.05, -0.22, 0.06, -0.13, -0.17, 0.020
+20061103, -0.12, 0.56, -0.14, -0.02, -0.15, 0.020
+20061106, 1.16, 0.23, -0.12, -0.06, -0.03, 0.020
+20061107, 0.23, 0.02, -0.30, -0.31, 0.09, 0.020
+20061108, 0.29, 0.35, 0.34, -0.14, 0.00, 0.020
+20061109, -0.58, -0.39, 0.33, 0.23, 0.10, 0.020
+20061110, 0.26, 0.66, -0.02, -0.20, -0.08, 0.020
+20061113, 0.27, 0.14, 0.03, -0.30, 0.01, 0.020
+20061114, 0.71, 0.87, -0.23, 0.16, -0.15, 0.020
+20061115, 0.35, 0.54, -0.41, 0.09, -0.11, 0.020
+20061116, 0.16, -0.33, 0.11, -0.26, 0.52, 0.020
+20061117, 0.03, -0.35, -0.12, 0.14, -0.08, 0.020
+20061120, -0.06, 0.23, 0.05, 0.05, -0.05, 0.020
+20061121, 0.14, 0.02, -0.08, 0.16, -0.50, 0.020
+20061122, 0.28, -0.15, -0.25, -0.07, -0.01, 0.020
+20061124, -0.32, 0.26, 0.09, -0.02, -0.11, 0.020
+20061127, -1.53, -0.95, 0.32, 0.26, 0.06, 0.020
+20061128, 0.30, -0.01, -0.04, 0.28, -0.17, 0.020
+20061129, 0.95, 0.19, -0.04, 0.21, -0.40, 0.020
+20061130, 0.11, 0.12, 0.21, -0.29, -0.14, 0.020
+20061201, -0.30, -0.30, 0.11, 0.10, -0.03, 0.020
+20061204, 0.99, 0.83, -0.16, 0.02, 0.00, 0.020
+20061205, 0.41, -0.16, 0.24, -0.03, -0.12, 0.020
+20061206, -0.10, -0.06, 0.23, -0.13, -0.06, 0.020
+20061207, -0.41, 0.01, 0.08, -0.03, 0.21, 0.020
+20061208, 0.14, -0.16, 0.01, -0.17, 0.20, 0.020
+20061211, 0.18, -0.24, 0.65, -0.14, 0.04, 0.020
+20061212, -0.20, -0.47, 0.45, -0.10, 0.20, 0.020
+20061213, 0.09, -0.03, 0.17, 0.23, -0.02, 0.020
+20061214, 0.80, -0.13, -0.12, 0.20, 0.29, 0.020
+20061215, 0.07, -0.32, 0.40, -0.36, 0.31, 0.020
+20061218, -0.46, -0.95, 0.17, -0.31, 0.42, 0.020
+20061219, 0.16, -0.12, 0.04, 0.11, 0.05, 0.020
+20061220, -0.12, 0.56, 0.08, -0.17, 0.22, 0.020
+20061221, -0.38, 0.04, 0.35, -0.09, 0.16, 0.020
+20061222, -0.48, 0.30, 0.08, -0.07, 0.11, 0.020
+20061226, 0.44, 0.37, 0.37, 0.03, 0.25, 0.020
+20061227, 0.74, 0.52, -0.05, 0.21, -0.08, 0.020
+20061228, -0.18, -0.17, -0.01, 0.09, -0.10, 0.020
+20061229, -0.51, -0.29, -0.02, -0.14, -0.07, 0.020
+20070103, -0.04, 0.00, 0.14, -0.10, 0.85, 0.022
+20070104, 0.16, 0.13, -0.52, -0.24, 0.04, 0.022
+20070105, -0.73, -0.93, -0.33, 0.12, -0.19, 0.022
+20070108, 0.24, -0.05, 0.08, 0.04, 0.02, 0.022
+20070109, 0.00, 0.21, -0.20, 0.15, 0.25, 0.022
+20070110, 0.23, -0.14, -0.17, -0.45, -0.05, 0.022
+20070111, 0.74, 0.46, -0.29, -0.02, 0.32, 0.022
+20070112, 0.50, 0.22, -0.28, 0.18, -0.14, 0.022
+20070116, 0.00, -0.30, 0.06, -0.22, 0.21, 0.022
+20070117, -0.14, -0.17, -0.05, 0.27, -0.21, 0.022
+20070118, -0.48, -0.94, 0.53, 0.36, 0.44, 0.022
+20070119, 0.33, 0.44, 0.07, 0.09, -0.40, 0.022
+20070122, -0.55, -0.38, 0.34, 0.09, 0.19, 0.022
+20070123, 0.37, 0.65, 0.07, 0.29, -0.41, 0.022
+20070124, 0.84, 0.18, -0.05, -0.16, -0.40, 0.022
+20070125, -1.15, -0.07, -0.10, -0.19, 0.05, 0.022
+20070126, -0.06, 0.57, 0.10, 0.12, -0.06, 0.022
+20070129, 0.02, 0.60, 0.23, -0.14, 0.15, 0.022
+20070130, 0.52, 0.04, 0.22, -0.19, -0.26, 0.022
+20070131, 0.64, -0.41, 0.03, 0.17, -0.15, 0.022
+20070201, 0.59, 0.36, -0.24, 0.19, -0.12, 0.020
+20070202, 0.15, 0.12, 0.27, 0.00, -0.11, 0.020
+20070205, -0.12, -0.25, 0.13, -0.14, 0.03, 0.020
+20070206, 0.10, 0.29, 0.19, -0.14, -0.04, 0.020
+20070207, 0.21, 0.38, -0.01, -0.41, 0.11, 0.020
+20070208, -0.10, 0.21, -0.22, -0.13, -0.19, 0.020
+20070209, -0.76, -0.29, 0.15, 0.03, 0.19, 0.020
+20070212, -0.35, 0.22, 0.09, 0.04, 0.22, 0.020
+20070213, 0.72, -0.08, 0.33, 0.03, -0.06, 0.020
+20070214, 0.73, -0.52, -0.17, -0.07, -0.06, 0.020
+20070215, 0.11, 0.09, -0.37, 0.10, -0.05, 0.020
+20070216, 0.00, 0.33, 0.07, -0.14, -0.39, 0.020
+20070220, 0.42, 0.60, -0.18, -0.06, -0.12, 0.020
+20070221, -0.09, 0.31, -0.21, 0.19, -0.05, 0.020
+20070222, -0.06, 0.36, -0.12, -0.04, -0.18, 0.020
+20070223, -0.31, 0.13, -0.26, 0.07, -0.07, 0.020
+20070226, -0.19, -0.13, 0.09, 0.17, 0.04, 0.020
+20070227, -3.43, -0.17, 0.02, 0.03, 0.21, 0.020
+20070228, 0.47, -0.50, 0.35, -0.17, -0.12, 0.020
+20070301, -0.25, -0.04, 0.19, 0.19, 0.07, 0.019
+20070302, -1.24, -0.64, 0.23, -0.18, 0.00, 0.019
+20070305, -1.11, -0.76, -0.28, -0.03, 0.38, 0.019
+20070306, 1.58, 0.68, 0.00, 0.12, -0.18, 0.019
+20070307, -0.21, -0.03, -0.02, 0.23, -0.18, 0.019
+20070308, 0.68, -0.07, 0.11, 0.03, -0.03, 0.019
+20070309, 0.09, 0.30, 0.14, -0.02, 0.06, 0.019
+20070312, 0.28, 0.24, -0.12, -0.25, 0.20, 0.019
+20070313, -2.03, -0.32, -0.12, -0.24, 0.05, 0.019
+20070314, 0.57, 0.09, -0.09, 0.37, -0.32, 0.019
+20070315, 0.44, 0.49, 0.13, 0.06, -0.03, 0.019
+20070316, -0.42, -0.14, -0.17, -0.14, -0.02, 0.019
+20070319, 1.08, -0.09, 0.02, 0.07, -0.04, 0.019
+20070320, 0.67, 0.08, 0.14, 0.14, -0.11, 0.019
+20070321, 1.64, -0.13, -0.10, 0.07, -0.22, 0.019
+20070322, -0.02, 0.19, -0.31, 0.16, -0.35, 0.019
+20070323, 0.08, 0.13, 0.04, -0.03, -0.06, 0.019
+20070326, 0.06, -0.07, -0.08, -0.04, -0.06, 0.019
+20070327, -0.61, -0.17, -0.02, -0.13, -0.19, 0.019
+20070328, -0.74, 0.20, -0.04, -0.06, 0.23, 0.019
+20070329, 0.29, -0.13, 0.17, 0.32, 0.03, 0.019
+20070330, -0.07, 0.27, -0.05, -0.36, 0.20, 0.019
+20070402, 0.22, 0.05, -0.11, 0.06, 0.01, 0.022
+20070403, 0.93, 0.01, -0.12, -0.15, -0.08, 0.022
+20070404, 0.09, -0.18, -0.25, 0.06, 0.22, 0.022
+20070405, 0.31, 0.01, -0.08, -0.17, 0.12, 0.022
+20070409, 0.05, -0.20, 0.07, 0.01, 0.16, 0.022
+20070410, 0.22, 0.09, 0.02, 0.02, -0.13, 0.022
+20070411, -0.64, -0.07, 0.12, -0.12, 0.01, 0.022
+20070412, 0.61, 0.25, -0.19, -0.02, 0.03, 0.022
+20070413, 0.34, 0.23, -0.08, -0.07, 0.18, 0.022
+20070416, 1.06, 0.32, 0.11, 0.28, -0.19, 0.022
+20070417, 0.09, -0.48, -0.12, 0.06, 0.01, 0.022
+20070418, 0.00, -0.61, 0.44, -0.12, 0.08, 0.022
+20070419, -0.23, -0.37, 0.03, 0.16, 0.43, 0.022
+20070420, 0.89, 0.21, 0.04, 0.31, -0.15, 0.022
+20070423, -0.24, 0.05, -0.29, -0.23, -0.17, 0.022
+20070424, -0.10, -0.07, -0.24, -0.04, 0.22, 0.022
+20070425, 0.91, -0.31, 0.17, 0.38, 0.04, 0.022
+20070426, -0.02, 0.31, -0.34, 0.19, -0.19, 0.022
+20070427, -0.13, -0.33, -0.31, 0.25, 0.27, 0.022
+20070430, -0.93, -0.85, 0.02, 0.15, 0.11, 0.022
+20070501, 0.22, -0.12, 0.03, 0.29, 0.28, 0.018
+20070502, 0.79, 0.65, 0.02, -0.06, -0.03, 0.018
+20070503, 0.37, -0.30, 0.32, 0.14, -0.07, 0.018
+20070504, 0.25, 0.19, -0.02, -0.11, -0.09, 0.018
+20070507, 0.18, -0.33, 0.32, -0.10, 0.29, 0.018
+20070508, -0.13, -0.04, -0.11, 0.17, 0.00, 0.018
+20070509, 0.35, 0.09, -0.02, 0.18, -0.37, 0.018
+20070510, -1.42, -0.50, 0.29, 0.01, 0.03, 0.018
+20070511, 0.95, 0.18, 0.06, -0.13, -0.31, 0.018
+20070514, -0.28, -0.56, 0.07, 0.09, 0.04, 0.018
+20070515, -0.27, -0.72, 0.28, 0.12, 0.25, 0.018
+20070516, 0.82, -0.18, 0.05, 0.12, 0.09, 0.018
+20070517, -0.10, -0.32, 0.03, 0.16, -0.41, 0.018
+20070518, 0.66, 0.36, -0.49, 0.08, -0.10, 0.018
+20070521, 0.31, 0.94, -0.28, -0.03, -0.24, 0.018
+20070522, 0.08, 0.67, -0.04, -0.18, -0.23, 0.018
+20070523, -0.18, -0.18, -0.12, 0.12, 0.06, 0.018
+20070524, -1.07, -0.44, -0.05, 0.05, 0.11, 0.018
+20070525, 0.55, 0.22, -0.07, 0.04, 0.03, 0.018
+20070529, 0.24, 0.59, 0.01, 0.04, 0.00, 0.018
+20070530, 0.77, -0.22, -0.01, 0.07, -0.37, 0.018
+20070531, 0.13, 0.33, -0.30, 0.02, -0.22, 0.018
+20070601, 0.44, 0.35, -0.05, 0.24, -0.14, 0.019
+20070604, 0.18, 0.05, 0.00, 0.03, -0.39, 0.019
+20070605, -0.55, -0.13, -0.22, 0.06, -0.05, 0.019
+20070606, -0.92, 0.06, 0.05, -0.20, -0.16, 0.019
+20070607, -1.75, -0.03, 0.06, -0.10, -0.04, 0.019
+20070608, 1.07, -0.07, 0.03, -0.02, 0.20, 0.019
+20070611, 0.08, -0.24, 0.10, 0.01, -0.02, 0.019
+20070612, -1.06, -0.16, -0.18, 0.13, 0.06, 0.019
+20070613, 1.37, -0.19, -0.10, 0.09, 0.13, 0.019
+20070614, 0.50, 0.11, -0.07, 0.01, 0.03, 0.019
+20070615, 0.69, 0.52, -0.07, 0.14, 0.22, 0.019
+20070618, -0.13, 0.02, -0.11, 0.06, -0.19, 0.019
+20070619, 0.14, 0.03, 0.15, -0.18, 0.31, 0.019
+20070620, -1.29, 0.05, -0.18, -0.02, 0.19, 0.019
+20070621, 0.56, -0.18, 0.01, 0.05, -0.08, 0.019
+20070622, -1.25, 0.59, -0.01, -0.15, -0.18, 0.019
+20070625, -0.39, -0.43, -0.11, 0.13, 0.11, 0.019
+20070626, -0.35, 0.15, -0.31, 0.07, 0.31, 0.019
+20070627, 0.92, 0.48, -0.39, 0.21, -0.20, 0.019
+20070628, 0.03, 0.13, 0.15, 0.00, 0.07, 0.019
+20070629, -0.19, -0.33, 0.11, 0.00, -0.09, 0.019
+20070702, 1.06, -0.01, 0.11, 0.02, 0.17, 0.019
+20070703, 0.36, -0.05, -0.10, 0.29, -0.17, 0.019
+20070705, 0.07, 0.14, -0.60, 0.23, -0.09, 0.019
+20070706, 0.40, -0.08, -0.08, 0.12, -0.22, 0.019
+20070709, 0.10, 0.07, -0.06, -0.03, -0.10, 0.019
+20070710, -1.43, -0.20, -0.38, 0.14, 0.01, 0.019
+20070711, 0.55, -0.25, -0.10, 0.15, -0.10, 0.019
+20070712, 1.78, -0.18, -0.31, 0.26, -0.15, 0.019
+20070713, 0.28, -0.27, 0.08, 0.03, -0.09, 0.019
+20070716, -0.31, -0.51, -0.24, -0.04, 0.19, 0.019
+20070717, 0.02, 0.10, -0.23, -0.22, 0.27, 0.019
+20070718, -0.25, -0.20, -0.19, 0.25, -0.12, 0.019
+20070719, 0.44, 0.26, -0.48, -0.08, 0.19, 0.019
+20070720, -1.25, -0.33, -0.19, -0.08, -0.13, 0.019
+20070723, 0.36, -0.49, -0.42, -0.10, 0.14, 0.019
+20070724, -2.04, -0.61, -0.22, -0.28, 0.05, 0.019
+20070725, 0.30, -0.41, 0.08, -0.04, -0.02, 0.019
+20070726, -2.36, -0.04, -0.23, -0.05, -0.50, 0.019
+20070727, -1.51, -0.05, 0.14, 0.04, -0.34, 0.019
+20070730, 0.93, -0.24, -0.07, 0.04, -0.27, 0.019
+20070731, -1.19, 0.34, -0.02, -0.05, 0.18, 0.019
+20070801, 0.51, -0.51, -0.25, 0.27, 0.20, 0.018
+20070802, 0.55, 0.13, -0.36, -0.38, -0.10, 0.018
+20070803, -2.66, -0.76, -0.72, -0.37, -0.09, 0.018
+20070806, 2.07, -1.10, -0.41, 0.49, -0.21, 0.018
+20070807, 0.65, 0.31, -0.67, 0.04, -0.78, 0.018
+20070808, 1.47, 1.07, -0.73, -0.53, -0.83, 0.018
+20070809, -2.74, 1.46, -0.61, -0.85, -0.68, 0.018
+20070810, 0.03, 0.22, 1.35, 0.56, 1.00, 0.018
+20070813, -0.06, -1.09, 0.32, -0.02, 0.34, 0.018
+20070814, -1.83, -0.13, -0.19, 0.02, 0.43, 0.018
+20070815, -1.46, 0.00, -0.04, -0.06, 0.13, 0.018
+20070816, 0.31, 1.37, 1.16, -0.16, 0.28, 0.018
+20070817, 2.36, -0.35, 0.38, -0.08, -0.24, 0.018
+20070820, 0.00, 0.17, -0.31, 0.06, 0.05, 0.018
+20070821, 0.15, -0.05, 0.08, -0.24, 0.08, 0.018
+20070822, 1.20, 0.05, -0.01, 0.01, 0.05, 0.018
+20070823, -0.23, -0.98, 0.16, -0.16, 0.00, 0.018
+20070824, 1.21, 0.12, -0.22, 0.34, -0.04, 0.018
+20070827, -0.85, -0.15, -0.14, 0.05, 0.09, 0.018
+20070828, -2.33, -0.15, -0.41, 0.07, -0.07, 0.018
+20070829, 2.13, 0.12, 0.01, 0.04, 0.05, 0.018
+20070830, -0.43, -0.06, -0.48, -0.11, -0.14, 0.018
+20070831, 1.12, 0.05, -0.08, 0.14, -0.08, 0.018
+20070904, 1.03, -0.18, 0.04, -0.29, -0.39, 0.017
+20070905, -1.05, -0.03, -0.32, 0.05, -0.29, 0.017
+20070906, 0.42, -0.03, -0.19, -0.17, 0.12, 0.017
+20070907, -1.70, -0.30, 0.19, 0.00, -0.11, 0.017
+20070910, -0.27, -0.57, -0.22, -0.15, -0.17, 0.017
+20070911, 1.35, 0.04, -0.34, -0.02, -0.27, 0.017
+20070912, -0.03, -0.43, -0.20, 0.16, -0.31, 0.017
+20070913, 0.69, -0.59, 0.30, 0.09, -0.35, 0.017
+20070914, 0.10, 0.36, -0.06, 0.23, -0.19, 0.017
+20070917, -0.60, -0.43, 0.04, 0.03, 0.05, 0.017
+20070918, 2.88, 0.68, 0.37, 0.31, -0.16, 0.017
+20070919, 0.59, 0.58, 0.24, -0.13, 0.07, 0.017
+20070920, -0.65, -0.19, -0.31, -0.10, -0.25, 0.017
+20070921, 0.43, -0.21, -0.24, -0.02, -0.24, 0.017
+20070924, -0.56, -0.46, -0.63, -0.16, -0.17, 0.017
+20070925, -0.03, -0.34, -0.38, -0.26, -0.20, 0.017
+20070926, 0.60, 0.17, -0.07, -0.06, 0.00, 0.017
+20070927, 0.43, 0.21, -0.03, 0.09, -0.20, 0.017
+20070928, -0.37, -0.61, 0.03, -0.18, -0.05, 0.017
+20071001, 1.37, 0.80, 0.07, -0.17, 0.25, 0.014
+20071002, 0.11, 0.69, 0.18, -0.11, -0.21, 0.014
+20071003, -0.48, -0.20, -0.17, 0.07, 0.07, 0.014
+20071004, 0.18, 0.02, 0.05, -0.05, 0.03, 0.014
+20071005, 1.10, 0.67, -0.07, -0.14, -0.16, 0.014
+20071008, -0.27, -0.21, -0.29, -0.24, -0.12, 0.014
+20071009, 0.78, -0.21, -0.15, 0.07, -0.08, 0.014
+20071010, -0.13, 0.00, -0.40, -0.03, -0.43, 0.014
+20071011, -0.58, -0.62, 0.60, -0.07, -0.08, 0.014
+20071012, 0.51, 0.06, -0.31, -0.47, -0.16, 0.014
+20071015, -0.89, -0.38, -0.22, 0.25, 0.02, 0.014
+20071016, -0.67, -0.05, -0.28, 0.15, 0.20, 0.014
+20071017, 0.22, -0.16, -0.26, -0.44, -0.06, 0.014
+20071018, -0.10, 0.07, -0.38, 0.13, -0.17, 0.014
+20071019, -2.45, -0.50, 0.02, -0.18, 0.11, 0.014
+20071022, 0.47, 0.87, 0.05, 0.09, 0.22, 0.014
+20071023, 0.85, 0.05, -0.54, -0.10, -0.40, 0.014
+20071024, -0.33, -0.47, -0.20, 0.48, 0.17, 0.014
+20071025, -0.19, -0.35, -0.03, 0.86, 0.46, 0.014
+20071026, 1.38, 0.29, 0.37, -0.20, 0.21, 0.014
+20071029, 0.40, -0.30, -0.58, 0.13, -0.43, 0.014
+20071030, -0.64, -0.03, 0.13, -0.43, 0.49, 0.014
+20071031, 1.23, 0.04, -0.12, 0.07, -0.05, 0.014
+20071101, -2.66, -1.00, -0.43, -0.17, 0.09, 0.016
+20071102, 0.08, 0.19, -0.90, 0.28, -0.04, 0.016
+20071105, -0.59, -0.34, -0.11, -0.10, 0.10, 0.016
+20071106, 1.19, 0.09, -0.17, 0.44, -0.44, 0.016
+20071107, -2.77, -0.14, -0.46, 0.11, -0.12, 0.016
+20071108, -0.05, 0.65, 1.17, 0.14, 0.56, 0.016
+20071109, -1.46, 0.33, 0.86, 0.17, 0.05, 0.016
+20071112, -1.08, 0.43, 0.28, 0.48, 0.78, 0.016
+20071113, 2.81, -0.44, 0.05, 0.07, -0.71, 0.016
+20071114, -0.63, -0.21, -0.18, 0.06, -0.30, 0.016
+20071115, -1.25, -0.10, -0.06, -0.29, 0.14, 0.016
+20071116, 0.41, -0.67, -0.63, 0.05, -0.47, 0.016
+20071119, -1.81, -0.37, -0.37, 0.52, 0.31, 0.016
+20071120, 0.31, -0.50, -0.10, 0.75, -0.28, 0.016
+20071121, -1.54, 0.37, 0.09, 0.15, 0.12, 0.016
+20071123, 1.59, 0.25, 0.19, 0.15, -0.05, 0.016
+20071126, -2.09, -0.15, -0.65, -0.08, -0.42, 0.016
+20071127, 1.31, -0.63, -0.20, -0.28, 0.22, 0.016
+20071128, 2.90, 0.34, -0.19, -0.22, -0.02, 0.016
+20071129, 0.01, -0.50, -0.31, -0.18, -0.18, 0.016
+20071130, 0.70, -0.50, 0.86, -0.06, 0.27, 0.016
+20071203, -0.60, -0.49, 0.10, -0.08, -0.27, 0.014
+20071204, -0.61, -0.17, -0.15, 0.14, 0.04, 0.014
+20071205, 1.47, 0.04, -0.04, 0.07, -0.03, 0.014
+20071206, 1.55, 0.97, 0.27, -0.03, 0.04, 0.014
+20071207, -0.07, 0.01, -0.05, 0.16, -0.08, 0.014
+20071210, 0.71, -0.11, 0.24, 0.33, -0.20, 0.014
+20071211, -2.50, -0.36, -0.07, -0.18, -0.30, 0.014
+20071212, 0.48, 0.08, -0.20, 0.24, -0.30, 0.014
+20071213, 0.06, -0.36, -0.31, 0.06, 0.64, 0.014
+20071214, -1.36, -0.51, -0.26, -0.07, -0.08, 0.014
+20071217, -1.59, -0.22, 0.31, 0.54, 0.47, 0.014
+20071218, 0.65, 1.12, -0.01, 0.26, 0.22, 0.014
+20071219, -0.10, 0.30, -0.42, 0.16, -0.19, 0.014
+20071220, 0.64, 0.74, -0.39, -0.31, -0.10, 0.014
+20071221, 1.64, 0.41, -0.02, -0.04, -0.19, 0.014
+20071224, 0.80, 0.13, 0.21, 0.07, -0.08, 0.014
+20071226, 0.10, 0.24, -0.04, -0.32, -0.26, 0.014
+20071227, -1.49, -1.21, 0.04, -0.14, -0.21, 0.014
+20071228, 0.12, -0.34, -0.14, 0.14, -0.29, 0.014
+20071231, -0.65, 0.04, 0.42, -0.29, 0.10, 0.014
+20080102, -1.46, -0.11, -0.10, 0.19, -0.35, 0.010
+20080103, -0.14, -1.07, -0.37, -0.12, -0.32, 0.010
+20080104, -2.56, -0.51, 0.13, 0.08, 0.10, 0.010
+20080107, 0.16, 0.10, 0.13, 0.36, 1.04, 0.010
+20080108, -1.81, -0.59, -0.86, 0.10, -0.06, 0.010
+20080109, 1.10, -0.39, -0.63, 0.76, 0.10, 0.010
+20080110, 0.89, -0.06, 0.57, -0.69, -0.01, 0.010
+20080111, -1.42, -0.75, 0.25, -0.09, -0.07, 0.010
+20080114, 1.02, -0.01, -0.19, 0.20, -0.18, 0.010
+20080115, -2.39, 0.38, -0.12, -0.07, 0.55, 0.010
+20080116, -0.51, 0.86, 1.20, -0.49, 0.48, 0.010
+20080117, -2.80, 0.22, -0.11, -0.53, 0.26, 0.010
+20080118, -0.56, -0.37, -0.87, 0.63, -0.51, 0.010
+20080122, -0.98, 0.55, 1.19, 0.31, -0.21, 0.010
+20080123, 2.04, 0.99, 1.65, 0.90, 1.19, 0.010
+20080124, 1.02, -0.98, -0.53, 0.23, -0.21, 0.010
+20080125, -1.39, 0.86, 0.25, -0.25, -0.03, 0.010
+20080128, 1.71, 0.20, 0.99, 0.10, 0.33, 0.010
+20080129, 0.69, -0.29, 0.99, -0.17, 0.05, 0.010
+20080130, -0.59, -0.39, -0.10, 0.25, 0.11, 0.010
+20080131, 1.66, 0.87, 0.46, 0.42, 0.11, 0.010
+20080201, 1.48, 0.70, 0.06, -0.77, -0.45, 0.007
+20080204, -0.99, 0.05, -0.18, -0.47, -0.10, 0.007
+20080205, -3.01, 0.33, 0.03, 0.06, 0.29, 0.007
+20080206, -0.85, -0.40, 0.51, -0.20, 0.35, 0.007
+20080207, 0.82, 0.44, 0.04, 0.45, -0.31, 0.007
+20080208, -0.30, -0.15, -0.33, -0.05, -0.24, 0.007
+20080211, 0.58, -0.24, -0.59, 0.33, -0.25, 0.007
+20080212, 0.61, -0.11, -0.06, -0.06, 0.44, 0.007
+20080213, 1.46, 0.73, 0.03, -0.32, -0.40, 0.007
+20080214, -1.35, -0.79, 0.14, -0.04, -0.04, 0.007
+20080215, -0.02, -0.75, 0.33, -0.08, 0.18, 0.007
+20080219, -0.06, 0.24, -0.36, 0.60, -0.30, 0.007
+20080220, 0.83, 0.29, -0.01, 1.05, 0.16, 0.007
+20080221, -1.28, -0.40, -0.19, -0.20, 0.04, 0.007
+20080222, 0.61, -0.81, 0.63, 0.19, -0.05, 0.007
+20080225, 1.46, 0.50, -0.06, 0.24, -0.10, 0.007
+20080226, 0.72, 0.46, -0.09, 0.37, 0.20, 0.007
+20080227, -0.11, -0.05, -0.24, -0.15, -0.13, 0.007
+20080228, -0.93, -0.44, -0.48, 0.20, -0.60, 0.007
+20080229, -2.64, -0.03, -0.16, -0.33, 0.13, 0.007
+20080303, -0.04, -0.21, -0.34, 0.82, 0.29, 0.009
+20080304, -0.36, -0.11, -0.05, -0.05, 0.43, 0.009
+20080305, 0.56, -0.19, -0.36, 0.22, -0.08, 0.009
+20080306, -2.26, -0.50, -0.23, 0.01, 0.32, 0.009
+20080307, -0.88, 0.26, 0.58, 0.06, 0.43, 0.009
+20080310, -1.72, -0.66, 0.50, 0.62, 0.74, 0.009
+20080311, 3.57, 0.38, 0.23, 0.23, -0.32, 0.009
+20080312, -0.77, 0.07, -0.82, -0.26, -0.20, 0.009
+20080313, 0.65, 1.31, -0.21, 0.44, -0.37, 0.009
+20080314, -2.07, -0.29, -0.26, 0.13, 0.17, 0.009
+20080317, -1.21, -0.83, 0.51, -0.11, 1.05, 0.009
+20080318, 4.09, 0.18, -0.25, 0.32, -0.69, 0.009
+20080319, -2.37, -0.08, 0.19, -0.85, 0.54, 0.009
+20080320, 2.30, -0.01, 0.74, 0.20, -0.27, 0.009
+20080324, 1.71, 1.12, -0.60, -0.32, -0.94, 0.009
+20080325, 0.38, 0.39, -0.17, -0.07, 0.02, 0.009
+20080326, -0.82, 0.59, -0.49, 0.38, -0.55, 0.009
+20080327, -1.13, -0.21, 0.02, -0.53, 0.29, 0.009
+20080328, -0.82, -0.48, 0.26, -0.05, -0.26, 0.009
+20080331, 0.57, 0.11, 0.59, -0.06, -0.23, 0.009
+20080401, 3.37, -0.62, 0.05, 0.00, -0.23, 0.008
+20080402, -0.09, 0.50, -0.14, 0.17, -0.32, 0.008
+20080403, 0.14, -0.08, -0.06, -0.27, 0.12, 0.008
+20080404, 0.16, -0.01, -0.46, -0.03, 0.00, 0.008
+20080407, 0.14, -0.38, 0.49, -0.12, 0.04, 0.008
+20080408, -0.34, 0.35, -0.05, 0.26, -0.37, 0.008
+20080409, -0.96, -0.87, -0.22, 0.15, -0.09, 0.008
+20080410, 0.53, 0.60, -0.55, -0.07, 0.11, 0.008
+20080411, -2.02, -0.55, 0.54, 0.29, 0.12, 0.008
+20080414, -0.38, 0.12, -0.32, 0.60, -0.12, 0.008
+20080415, 0.46, 0.33, 0.27, 0.43, 0.01, 0.008
+20080416, 2.27, 0.56, 0.15, 0.06, 0.01, 0.008
+20080417, -0.10, -0.79, 0.34, -0.03, -0.01, 0.008
+20080418, 1.67, 0.12, -0.65, 0.35, -0.36, 0.008
+20080421, -0.17, -0.16, -0.55, 0.18, -0.47, 0.008
+20080422, -0.97, -1.05, 0.29, 0.14, -0.39, 0.008
+20080423, 0.26, 0.12, -1.16, -0.09, 0.24, 0.008
+20080424, 0.66, 0.58, 0.37, -0.41, 0.42, 0.008
+20080425, 0.68, -0.02, 0.18, 0.31, -0.56, 0.008
+20080428, -0.03, 0.60, 0.19, -0.03, -0.17, 0.008
+20080429, -0.36, -0.40, 0.33, -0.47, -0.23, 0.008
+20080430, -0.30, -0.07, 0.09, -0.16, -0.27, 0.008
+20080501, 1.66, 0.07, 0.22, -0.88, 0.49, 0.008
+20080502, 0.20, -0.71, 0.02, 0.20, -0.24, 0.008
+20080505, -0.41, 0.35, -0.13, 0.78, 0.00, 0.008
+20080506, 0.75, 0.02, 0.29, 0.10, -0.19, 0.008
+20080507, -1.66, 0.01, -0.18, 0.37, 0.39, 0.008
+20080508, 0.37, 0.07, -0.16, -0.15, -0.09, 0.008
+20080509, -0.54, 0.65, -0.25, 0.19, -0.04, 0.008
+20080512, 1.10, 0.67, -0.34, 0.06, 0.39, 0.008
+20080513, 0.09, 0.62, -0.04, 0.20, -0.10, 0.008
+20080514, 0.38, -0.45, 0.17, -0.22, 0.32, 0.008
+20080515, 1.02, -0.10, -0.30, 0.09, 0.15, 0.008
+20080516, 0.10, -0.36, 0.02, 0.29, -0.48, 0.008
+20080519, -0.02, -0.23, 0.24, 0.16, -0.20, 0.008
+20080520, -0.80, 0.56, -0.17, 0.43, -0.32, 0.008
+20080521, -1.56, 0.47, 0.17, 0.09, 0.42, 0.008
+20080522, 0.38, 0.26, -0.04, -0.42, 0.26, 0.008
+20080523, -1.24, 0.08, -0.37, -0.16, -0.14, 0.008
+20080527, 0.72, 0.58, -0.22, -0.24, 0.15, 0.008
+20080528, 0.49, 0.03, -0.06, 0.22, -0.20, 0.008
+20080529, 0.61, 0.29, -0.25, -0.53, 0.10, 0.008
+20080530, 0.29, 0.28, 0.00, 0.11, -0.52, 0.008
+20080602, -0.98, 0.17, 0.24, 0.45, -0.06, 0.008
+20080603, -0.46, 0.23, 0.02, -0.29, 0.14, 0.008
+20080604, 0.02, 0.52, -0.74, -0.29, 0.26, 0.008
+20080605, 1.95, 0.42, -0.09, 0.64, -0.56, 0.008
+20080606, -2.90, 0.14, -0.03, 0.15, -0.46, 0.008
+20080609, -0.03, -0.55, -0.22, 0.92, 0.00, 0.008
+20080610, -0.31, 0.00, -0.22, 0.08, 0.44, 0.008
+20080611, -1.66, -0.17, -0.15, 0.39, -0.18, 0.008
+20080612, 0.31, -0.01, -0.06, -0.23, 0.56, 0.008
+20080613, 1.55, 0.31, -0.35, 0.08, -0.13, 0.008
+20080616, 0.15, 0.87, -0.18, 0.08, -0.40, 0.008
+20080617, -0.55, 0.12, -0.25, 0.41, -0.38, 0.008
+20080618, -0.96, 0.25, 0.26, 0.33, 0.09, 0.008
+20080619, 0.34, 0.44, -0.58, -0.04, 0.45, 0.008
+20080620, -1.79, 0.36, 0.07, 0.33, 0.00, 0.008
+20080623, -0.16, -0.59, -0.31, 1.00, -0.24, 0.008
+20080624, -0.54, -1.20, 0.28, -0.28, 0.30, 0.008
+20080625, 0.64, 0.29, -0.43, -0.42, 0.18, 0.008
+20080626, -2.83, 0.56, 0.13, 0.29, -0.10, 0.008
+20080627, -0.37, 0.22, -0.42, 0.52, -0.34, 0.008
+20080630, -0.07, -1.12, 0.32, 0.52, -0.04, 0.008
+20080701, 0.29, -0.39, 0.28, 0.26, -0.46, 0.007
+20080702, -2.00, -0.85, 0.12, -0.11, 0.22, 0.007
+20080703, -0.15, -0.68, -0.17, 0.40, 0.23, 0.007
+20080707, -0.81, -0.16, -1.12, 0.18, 0.23, 0.007
+20080708, 1.84, 1.38, 2.35, -1.06, 0.26, 0.007
+20080709, -2.06, -0.33, -1.32, 0.37, 0.11, 0.007
+20080710, 0.65, -0.14, -1.23, 0.65, -0.40, 0.007
+20080711, -0.88, 1.27, -1.11, -0.05, 0.08, 0.007
+20080714, -0.93, -0.54, -2.43, 0.72, -0.19, 0.007
+20080715, -0.96, 0.87, -1.17, 0.27, 0.56, 0.007
+20080716, 2.52, 0.94, 4.76, -1.11, -0.02, 0.007
+20080717, 1.13, 0.67, 4.14, -1.15, 0.41, 0.007
+20080718, -0.08, -0.51, 1.12, 0.04, 0.03, 0.007
+20080721, 0.16, 0.27, -0.56, -0.06, -0.48, 0.007
+20080722, 1.37, 1.49, 3.21, -0.75, 0.08, 0.007
+20080723, 0.32, 0.24, 1.61, -0.41, 0.51, 0.007
+20080724, -2.31, 0.10, -2.88, 1.00, -0.10, 0.007
+20080725, 0.47, 0.67, -1.01, 0.26, -0.36, 0.007
+20080728, -1.76, -0.18, -1.39, 0.82, 0.06, 0.007
+20080729, 2.27, 0.24, 3.18, -0.65, 0.23, 0.007
+20080730, 1.58, -1.26, -0.09, 0.25, -0.31, 0.007
+20080731, -1.16, 0.62, 0.37, -1.00, 0.42, 0.007
+20080801, -0.47, 0.78, 0.85, -0.22, -0.42, 0.006
+20080804, -1.09, -0.24, 0.48, 0.00, 0.94, 0.006
+20080805, 2.65, -0.37, 1.65, -0.25, 0.23, 0.006
+20080806, 0.50, 0.33, -1.15, 0.15, -0.84, 0.006
+20080807, -1.73, 0.33, -1.74, 1.00, 0.07, 0.006
+20080808, 2.28, 0.78, 1.38, 0.25, 0.92, 0.006
+20080811, 0.83, 1.53, 1.19, -0.24, 0.31, 0.006
+20080812, -1.05, 0.51, -1.94, 0.61, 0.07, 0.006
+20080813, -0.15, 0.42, -2.02, 0.36, -0.60, 0.006
+20080814, 0.63, 0.28, 1.30, -0.57, -0.02, 0.006
+20080815, 0.38, -0.28, 1.07, -0.23, 0.46, 0.006
+20080818, -1.45, 0.08, -0.89, 0.52, 0.16, 0.006
+20080819, -1.00, -0.74, -1.24, 0.61, -0.32, 0.006
+20080820, 0.54, -0.51, -0.06, 0.35, -0.67, 0.006
+20080821, 0.12, -0.93, -0.45, 0.32, 0.02, 0.006
+20080822, 1.14, 0.59, 1.03, -0.18, 0.45, 0.006
+20080825, -1.92, -0.26, -0.53, 0.10, -0.02, 0.006
+20080826, 0.33, -0.09, 0.15, 0.30, -0.23, 0.006
+20080827, 0.88, 0.35, 0.30, -0.02, -0.12, 0.006
+20080828, 1.51, 0.42, 1.81, -0.93, 0.19, 0.006
+20080829, -1.25, 0.30, 0.62, -0.22, 0.16, 0.006
+20080902, -0.44, 0.63, 2.02, -0.02, 0.87, 0.007
+20080903, -0.23, 0.80, 1.66, -0.10, 0.41, 0.007
+20080904, -2.90, 0.04, -0.47, 0.64, 0.34, 0.007
+20080905, 0.42, -0.55, 1.58, -0.67, 0.05, 0.007
+20080908, 1.76, -0.06, 2.20, 0.19, 0.95, 0.007
+20080909, -3.41, 0.41, -0.70, 0.74, 1.06, 0.007
+20080910, 0.70, 0.33, -0.77, 0.67, -0.38, 0.007
+20080911, 1.22, -0.90, 0.19, 0.78, -0.03, 0.007
+20080912, 0.29, -0.16, -0.20, 0.66, -0.14, 0.007
+20080915, -4.45, 0.89, -2.25, 1.05, 1.22, 0.007
+20080916, 1.65, 0.79, 1.96, -0.28, -0.98, 0.007
+20080917, -4.60, 0.24, -2.13, 0.85, 0.15, 0.007
+20080918, 4.41, 1.89, 4.84, -2.57, -0.33, 0.007
+20080919, 4.27, -1.12, 3.63, -2.62, -1.57, 0.007
+20080922, -3.94, -0.14, -3.39, 1.56, -0.07, 0.007
+20080923, -1.55, 0.02, 0.14, -0.09, 0.28, 0.007
+20080924, -0.32, -1.28, -0.76, 0.14, 0.20, 0.007
+20080925, 1.70, -1.02, 0.64, 0.33, 0.04, 0.007
+20080926, 0.11, -0.57, 0.93, 0.49, -0.26, 0.007
+20080929, -8.26, 2.61, -3.69, 1.30, 1.00, 0.007
+20080930, 4.88, -2.83, 2.88, -0.31, -1.08, 0.007
+20081001, -0.47, -0.58, 2.77, -1.23, 0.13, 0.004
+20081002, -4.20, -0.55, 0.62, 0.08, 1.03, 0.004
+20081003, -1.47, -1.24, -1.23, 0.35, 0.94, 0.004
+20081006, -3.95, 0.00, 0.43, 0.44, 0.62, 0.004
+20081007, -5.76, 0.37, -3.43, 1.11, 0.56, 0.004
+20081008, -1.27, -0.60, -2.20, 0.89, -0.42, 0.004
+20081009, -7.36, -0.65, -2.54, 0.04, 0.02, 0.004
+20081010, -0.95, 4.49, 3.05, -0.80, -0.82, 0.004
+20081013, 11.35, -2.88, -2.33, 0.39, -0.58, 0.004
+20081014, -0.86, -2.07, 4.43, -1.55, 0.24, 0.004
+20081015, -8.78, 0.12, 0.82, -0.21, 0.49, 0.004
+20081016, 4.32, 1.89, -1.63, 1.28, -0.39, 0.004
+20081017, -0.41, -1.11, -0.79, -0.70, 0.13, 0.004
+20081020, 4.55, -1.22, -0.85, 0.36, 0.31, 0.004
+20081021, -2.95, 0.19, 0.55, 0.35, -0.10, 0.004
+20081022, -5.76, 0.74, 0.14, -0.62, 0.03, 0.004
+20081023, 0.29, -3.27, -0.89, 1.95, 0.94, 0.004
+20081024, -3.28, -0.21, -0.36, 0.43, 0.39, 0.004
+20081027, -3.36, -0.83, 0.35, 1.22, 0.65, 0.004
+20081028, 9.77, -3.41, 0.30, 1.05, -0.16, 0.004
+20081029, -0.47, 2.49, -1.38, -0.18, -0.90, 0.004
+20081030, 2.99, 1.81, -0.63, -0.15, -1.05, 0.004
+20081031, 1.88, 2.70, 1.98, -0.40, -0.37, 0.004
+20081103, -0.05, 0.23, 0.57, -0.79, 0.45, 0.001
+20081104, 3.57, -2.55, 0.20, -0.57, -0.75, 0.001
+20081105, -5.05, -0.06, -1.46, 0.52, 0.13, 0.001
+20081106, -4.83, 1.49, -0.42, 0.46, 1.23, 0.001
+20081107, 2.62, -1.20, -0.78, 0.58, -0.12, 0.001
+20081110, -1.32, -0.99, -2.05, 1.03, 0.18, 0.001
+20081111, -2.25, 0.09, 0.01, 0.35, 0.43, 0.001
+20081112, -5.14, -0.65, -1.09, 1.10, 0.06, 0.001
+20081113, 6.79, 0.77, -0.10, 0.62, 0.46, 0.001
+20081114, -4.27, -2.28, 0.02, -0.05, -0.01, 0.001
+20081117, -2.43, 1.50, -1.63, 0.97, 0.17, 0.001
+20081118, 0.70, -1.48, -0.73, 0.88, 0.42, 0.001
+20081119, -6.29, -0.69, -3.09, 1.43, 0.23, 0.001
+20081120, -6.60, 1.00, -2.51, 1.20, 1.22, 0.001
+20081121, 6.11, -1.55, -2.03, 1.08, 1.11, 0.001
+20081124, 6.27, -0.06, 4.67, -0.87, -1.74, 0.001
+20081125, 0.94, 0.48, 2.29, -0.86, -0.07, 0.001
+20081126, 3.88, 1.83, 0.24, -0.64, -0.61, 0.001
+20081128, 1.06, -0.24, 1.90, -1.26, 0.07, 0.001
+20081201, -8.95, -1.54, -3.53, 1.18, 0.58, 0.000
+20081202, 3.97, 1.11, 2.54, -1.01, 0.49, 0.000
+20081203, 2.63, -0.04, 1.47, 0.01, -0.02, 0.000
+20081204, -2.90, 0.21, 1.25, -0.12, 0.58, 0.000
+20081205, 3.75, 0.45, 1.79, -0.99, -0.46, 0.000
+20081208, 3.80, -0.05, 0.17, -0.04, -1.35, 0.000
+20081209, -2.23, -0.85, -1.23, -0.46, -0.50, 0.000
+20081210, 1.20, 0.98, -0.99, 0.79, -0.39, 0.000
+20081211, -2.93, -1.69, -2.24, 0.43, 0.11, 0.000
+20081212, 0.96, 2.35, 0.59, -0.60, 0.02, 0.000
+20081215, -1.54, -1.57, -1.24, 0.72, -0.03, 0.000
+20081216, 5.15, 0.37, 2.43, -0.96, -0.11, 0.000
+20081217, -0.62, 1.63, -0.52, 0.13, -0.31, 0.000
+20081218, -1.83, 0.77, -0.36, -0.07, -0.13, 0.000
+20081219, 0.35, 0.75, -0.03, 0.20, -0.18, 0.000
+20081222, -1.87, -0.24, -0.76, 0.20, 0.62, 0.000
+20081223, -0.89, -0.32, -0.89, 0.24, -0.31, 0.000
+20081224, 0.51, -0.13, 0.60, 0.19, -0.06, 0.000
+20081226, 0.63, 0.61, 0.07, 0.01, 0.20, 0.000
+20081229, -0.56, -1.47, -0.04, 0.50, -0.10, 0.000
+20081230, 2.47, 0.84, 0.99, 0.07, 0.05, 0.000
+20081231, 1.70, 1.66, 0.76, -0.73, -0.11, 0.000
+20090102, 3.11, -1.40, -0.35, -0.37, -0.15, 0.000
+20090105, -0.28, 0.33, -1.12, -0.44, -0.55, 0.000
+20090106, 0.87, 1.12, 0.88, -0.67, -0.12, 0.000
+20090107, -2.96, -0.01, -1.15, 0.31, 0.11, 0.000
+20090108, 0.47, 0.65, 0.39, -0.44, 0.66, 0.000
+20090109, -2.21, -1.61, -1.12, 0.51, 0.12, 0.000
+20090112, -2.28, -0.10, -1.83, 0.54, 0.49, 0.000
+20090113, 0.28, 0.40, 0.20, -0.52, -0.35, 0.000
+20090114, -3.38, -0.71, -1.25, 0.46, 0.27, 0.000
+20090115, 0.39, 1.73, -2.25, 0.51, 0.46, 0.000
+20090116, 0.74, 0.13, -1.04, 0.27, 0.42, 0.000
+20090120, -5.34, -0.87, -3.95, 0.85, 1.27, 0.000
+20090121, 4.21, -0.22, 2.56, -0.54, -1.36, 0.000
+20090122, -1.62, -1.21, -1.61, 0.50, -0.79, 0.000
+20090123, 0.44, -0.29, 0.84, -0.46, -0.56, 0.000
+20090126, 0.54, 0.75, -0.60, 0.46, -0.26, 0.000
+20090127, 1.08, -0.19, 0.33, -0.63, -0.14, 0.000
+20090128, 3.32, 0.06, 2.66, -0.55, -0.72, 0.000
+20090129, -3.23, -0.65, -2.30, 0.20, 0.01, 0.000
+20090130, -2.16, 0.10, -1.18, 0.05, -0.33, 0.000
+20090202, 0.06, 1.17, -0.53, -0.11, 0.25, 0.001
+20090203, 1.46, -0.62, -2.35, 0.82, 0.49, 0.001
+20090204, -0.60, -0.31, -0.42, -0.29, -0.60, 0.001
+20090205, 1.61, 0.01, -0.23, 0.02, -0.21, 0.001
+20090206, 2.79, 0.47, 2.21, -0.19, -0.28, 0.001
+20090209, 0.03, -0.72, 0.21, 0.09, -0.41, 0.001
+20090210, -4.62, 0.40, -2.79, 0.51, -0.10, 0.001
+20090211, 0.75, -0.43, 1.25, -0.60, -0.04, 0.001
+20090212, 0.30, 0.21, -0.60, 0.17, -0.50, 0.001
+20090213, -0.85, 0.63, -1.45, -0.25, -0.24, 0.001
+20090217, -4.36, 0.47, -2.33, 0.52, 0.48, 0.001
+20090218, -0.33, -1.06, -0.72, 0.55, -0.29, 0.001
+20090219, -1.15, -0.34, -2.00, 0.77, -0.27, 0.001
+20090220, -1.16, -0.24, -1.00, 0.53, 0.32, 0.001
+20090223, -3.43, -0.25, 0.86, -0.06, 0.55, 0.001
+20090224, 4.00, -0.33, 2.95, -1.26, -0.32, 0.001
+20090225, -1.15, -1.36, 0.17, 0.09, -0.06, 0.001
+20090226, -1.53, -0.16, 1.32, 0.04, -0.25, 0.001
+20090227, -2.01, 1.28, -2.15, 0.29, 0.35, 0.001
+20090302, -4.75, -0.47, -0.30, 0.32, 0.92, 0.001
+20090303, -0.71, -1.08, -2.43, -0.14, -0.83, 0.001
+20090304, 2.42, 0.18, -0.99, -0.59, -0.10, 0.001
+20090305, -4.21, -1.13, -3.02, 0.59, 0.07, 0.001
+20090306, 0.20, 0.21, -0.64, -0.13, -0.11, 0.001
+20090309, -1.09, -0.87, 0.33, 0.07, -0.63, 0.001
+20090310, 6.35, -0.02, 4.20, -2.03, -0.08, 0.001
+20090311, 0.30, -0.37, 0.57, -0.01, -0.52, 0.001
+20090312, 4.16, 1.85, 2.61, -0.65, 0.01, 0.001
+20090313, 0.73, 0.18, 0.55, -0.15, 0.05, 0.001
+20090316, -0.55, -0.84, 0.42, 0.78, -0.11, 0.001
+20090317, 3.20, 0.97, 1.44, -0.40, 0.04, 0.001
+20090318, 2.18, 0.99, 3.99, -0.95, 0.29, 0.001
+20090319, -1.03, 0.41, -2.53, 0.60, -0.49, 0.001
+20090320, -1.95, -0.72, -0.80, 0.36, 0.17, 0.001
+20090323, 6.89, 0.39, 4.09, -0.87, -0.18, 0.001
+20090324, -1.93, -1.52, -1.55, 0.32, -0.25, 0.001
+20090325, 0.94, 1.34, 1.30, -0.33, -0.29, 0.001
+20090326, 2.68, 1.86, 0.01, -0.23, 0.16, 0.001
+20090327, -2.06, -1.33, 0.28, -0.40, 0.47, 0.001
+20090330, -3.47, 0.97, -3.86, 1.38, -0.10, 0.001
+20090331, 1.29, -0.08, 1.53, -0.18, -0.37, 0.001
+20090401, 1.65, -0.20, 1.48, -0.03, 0.51, 0.001
+20090402, 3.07, 1.95, 0.50, -0.12, -0.27, 0.001
+20090403, 1.02, 0.08, 0.87, -0.15, -0.61, 0.001
+20090406, -0.93, -0.81, -0.48, 0.25, 0.12, 0.001
+20090407, -2.42, -0.79, -0.20, 0.37, 0.43, 0.001
+20090408, 1.28, 1.03, 0.09, -0.04, 0.17, 0.001
+20090409, 3.91, 1.51, 4.37, -0.23, -0.66, 0.001
+20090413, 0.26, -0.47, 2.28, -0.93, -0.27, 0.001
+20090414, -2.02, -0.60, -2.85, 0.30, -0.02, 0.001
+20090415, 1.12, 0.33, 2.33, -0.34, 0.41, 0.001
+20090416, 1.69, 1.24, 0.12, -0.05, 0.47, 0.001
+20090417, 0.55, 0.99, 0.25, 0.48, 0.12, 0.001
+20090420, -4.32, -0.86, -4.24, 0.55, 0.35, 0.001
+20090421, 2.19, 1.43, 3.09, -0.27, -0.36, 0.001
+20090422, -0.61, 1.34, -1.10, 0.69, -0.15, 0.001
+20090423, 0.66, -1.60, 0.21, 0.62, -0.35, 0.001
+20090424, 1.77, 0.84, 0.20, -0.21, 0.37, 0.001
+20090427, -0.95, -0.67, -1.71, -0.07, -0.12, 0.001
+20090428, -0.20, 0.93, 0.08, 0.25, -0.14, 0.001
+20090429, 2.41, 1.08, 1.18, -0.98, -0.08, 0.001
+20090430, -0.04, -0.50, -0.64, 0.00, 0.11, 0.001
+20090501, 0.45, -0.59, -0.25, 0.09, -0.02, 0.000
+20090504, 3.36, 0.28, 2.95, -0.42, -0.44, 0.000
+20090505, -0.27, 0.00, -0.16, -0.36, -0.38, 0.000
+20090506, 1.45, -1.40, 2.66, 0.10, -0.25, 0.000
+20090507, -1.42, -0.76, -0.81, 0.78, -0.14, 0.000
+20090508, 2.48, 0.81, 2.77, -0.43, -0.41, 0.000
+20090511, -2.01, 0.59, -2.46, -0.13, 0.07, 0.000
+20090512, -0.31, -1.20, -1.64, 0.40, 0.53, 0.000
+20090513, -2.91, -1.84, -1.49, 0.34, 0.51, 0.000
+20090514, 1.11, 0.71, 0.97, -0.36, -0.35, 0.000
+20090515, -1.02, 0.35, -1.12, 0.12, -0.08, 0.000
+20090518, 3.13, 0.76, 1.95, -0.21, -0.33, 0.000
+20090519, -0.04, -0.03, -1.21, -0.08, 0.08, 0.000
+20090520, -0.48, -0.26, -1.10, 0.00, -0.08, 0.000
+20090521, -1.68, -0.04, 0.35, -0.30, -0.24, 0.000
+20090522, -0.15, -0.52, -0.58, -0.32, 0.36, 0.000
+20090526, 2.78, 1.71, 0.63, 0.15, 0.00, 0.000
+20090527, -1.80, 0.03, -1.30, -0.17, -0.41, 0.000
+20090528, 1.35, -1.19, 0.45, -0.10, -0.34, 0.000
+20090529, 1.38, 0.50, -0.21, -0.06, -0.19, 0.000
+20090601, 2.72, 1.37, -0.71, 0.53, -0.19, 0.000
+20090602, 0.29, 0.78, -0.18, -0.10, -0.03, 0.000
+20090603, -1.39, 0.63, -0.84, 0.27, 0.34, 0.000
+20090604, 1.18, 0.45, 1.09, -0.61, -0.56, 0.000
+20090605, -0.19, 0.02, -0.56, 0.19, -0.20, 0.000
+20090608, -0.20, -0.78, 0.61, -0.08, 0.08, 0.000
+20090609, 0.49, 0.24, -0.28, -0.59, -0.33, 0.000
+20090610, -0.35, -0.36, -0.48, 0.18, -0.03, 0.000
+20090611, 0.63, -0.17, 0.26, -0.66, -0.03, 0.000
+20090612, 0.03, -0.13, 0.01, 0.10, 0.25, 0.000
+20090615, -2.38, -0.43, -0.33, 0.12, 0.22, 0.000
+20090616, -1.33, -0.20, -0.28, -0.17, 0.12, 0.000
+20090617, -0.08, 0.72, -0.98, 0.20, 0.27, 0.000
+20090618, 0.74, -0.41, 0.41, 0.33, -0.19, 0.000
+20090619, 0.35, 0.39, 0.11, -0.27, -0.29, 0.000
+20090622, -3.08, -0.65, -0.73, 0.22, 0.74, 0.000
+20090623, 0.08, -1.00, 0.14, -0.23, -0.04, 0.000
+20090624, 0.78, 0.23, -0.15, -0.35, -0.12, 0.000
+20090625, 2.19, 0.82, 0.05, 0.38, -0.01, 0.000
+20090626, 0.04, 1.56, 0.13, -0.61, -0.42, 0.000
+20090629, 0.82, -1.01, 0.36, 0.04, 0.43, 0.000
+20090630, -0.74, 0.28, -0.19, 0.11, -0.19, 0.000
+20090701, 0.54, 1.39, 0.21, 0.48, 0.56, 0.001
+20090702, -2.89, -0.78, -1.03, 0.04, -0.25, 0.001
+20090706, -0.03, -1.02, -0.97, -0.14, -0.10, 0.001
+20090707, -1.93, 0.02, -0.16, -0.23, -0.08, 0.001
+20090708, -0.20, -0.69, -1.11, 1.07, -0.61, 0.001
+20090709, 0.35, -0.38, 1.25, -0.40, 0.10, 0.001
+20090710, -0.35, 0.85, -0.51, 0.35, 0.03, 0.001
+20090713, 2.43, -0.38, 1.81, -1.15, -0.09, 0.001
+20090714, 0.59, 0.36, 0.63, 0.34, 0.43, 0.001
+20090715, 2.98, 0.66, 1.41, -0.30, 0.48, 0.001
+20090716, 0.94, 0.41, -0.12, 0.60, -0.05, 0.001
+20090717, -0.05, -0.33, -0.04, 0.47, 0.33, 0.001
+20090720, 1.19, 0.42, 0.37, 0.43, 0.72, 0.001
+20090721, 0.31, -0.64, -0.81, 0.54, -0.13, 0.001
+20090722, 0.08, 0.64, 0.34, -0.33, 0.26, 0.001
+20090723, 2.37, 0.71, 1.11, -0.28, 0.45, 0.001
+20090724, 0.38, 0.30, 0.14, -0.35, 0.37, 0.001
+20090727, 0.30, 0.20, 0.98, -0.74, 0.46, 0.001
+20090728, -0.20, 0.28, -0.34, -0.49, -0.05, 0.001
+20090729, -0.46, -0.19, -0.83, -0.05, 0.09, 0.001
+20090730, 1.24, 0.50, 1.45, -0.16, -0.15, 0.001
+20090731, 0.05, -0.02, 1.28, -0.30, 0.18, 0.001
+20090803, 1.63, 0.28, 1.68, 0.09, 0.05, 0.001
+20090804, 0.32, 0.51, 0.82, -0.61, 0.56, 0.001
+20090805, -0.30, -0.87, 1.71, -1.43, 0.13, 0.001
+20090806, -0.62, -0.94, 0.05, 0.12, 0.31, 0.001
+20090807, 1.44, 1.10, 1.18, -0.16, 0.18, 0.001
+20090810, -0.32, 0.57, 0.27, 0.12, -0.01, 0.001
+20090811, -1.25, -0.26, -1.14, 0.89, 0.15, 0.001
+20090812, 1.21, 0.51, 0.55, -0.46, 0.15, 0.001
+20090813, 0.73, -0.16, 1.10, -0.75, -0.07, 0.001
+20090814, -0.97, -1.19, -0.28, -0.07, -0.14, 0.001
+20090817, -2.46, -0.30, -1.69, 0.53, -0.10, 0.001
+20090818, 1.11, 0.57, 1.30, -0.29, 0.26, 0.001
+20090819, 0.72, 0.35, -0.39, 0.25, 0.25, 0.001
+20090820, 1.00, 0.05, 0.84, -0.13, 0.08, 0.001
+20090821, 1.83, 0.43, 0.69, -0.27, -0.01, 0.001
+20090824, -0.09, 0.07, -0.28, 0.48, 0.09, 0.001
+20090825, 0.27, 0.24, 0.65, -0.37, 0.65, 0.001
+20090826, -0.01, 0.11, 0.11, -0.24, 0.25, 0.001
+20090827, 0.21, -0.10, 0.53, -0.02, 0.23, 0.001
+20090828, -0.19, -0.37, 0.55, -0.33, 0.31, 0.001
+20090831, -0.86, -0.54, -0.63, -0.27, -0.18, 0.001
+20090901, -2.15, -0.15, -2.03, 1.05, -0.46, 0.000
+20090902, -0.28, 0.01, -0.70, 0.25, 0.18, 0.000
+20090903, 0.93, 0.21, 1.09, -0.43, 0.14, 0.000
+20090904, 1.31, 0.27, 0.27, 0.17, 0.20, 0.000
+20090908, 0.88, 0.18, 0.10, 0.23, -0.01, 0.000
+20090909, 0.90, 0.91, 0.67, -0.16, 0.16, 0.000
+20090910, 1.08, 0.58, 0.92, -0.27, 0.18, 0.000
+20090911, -0.10, 0.06, -0.10, 0.37, 0.06, 0.000
+20090914, 0.65, 0.24, 0.64, -0.28, 0.34, 0.000
+20090915, 0.44, 0.61, 0.60, -0.09, -0.02, 0.000
+20090916, 1.55, 0.52, 1.30, -0.56, -0.16, 0.000
+20090917, -0.30, -0.05, -0.34, 0.07, -0.15, 0.000
+20090918, 0.23, 0.14, -0.19, 0.19, 0.12, 0.000
+20090921, -0.27, -0.16, -0.67, -0.04, 0.05, 0.000
+20090922, 0.66, 0.09, 1.50, -0.38, 0.12, 0.000
+20090923, -1.00, 0.01, -0.89, 0.13, -0.15, 0.000
+20090924, -1.07, -0.82, -1.34, 0.48, -0.35, 0.000
+20090925, -0.64, 0.11, -0.51, 0.22, 0.02, 0.000
+20090928, 1.79, 0.52, 1.04, -0.36, 0.29, 0.000
+20090929, -0.12, 0.00, 0.36, 0.36, 0.01, 0.000
+20090930, -0.40, -0.61, -0.63, 0.34, -0.20, 0.000
+20091001, -2.63, -0.76, -1.37, 0.70, -0.25, 0.000
+20091002, -0.49, -0.31, -0.14, -0.15, 0.02, 0.000
+20091005, 1.54, 0.37, 1.83, -0.34, 0.37, 0.000
+20091006, 1.42, 0.51, 0.24, 0.12, -0.16, 0.000
+20091007, 0.28, -0.29, 0.56, -0.30, -0.11, 0.000
+20091008, 0.82, 0.34, 0.34, 0.93, -0.01, 0.000
+20091009, 0.59, 0.56, -0.22, -0.06, 0.07, 0.000
+20091012, 0.36, -0.48, 0.33, 0.09, 0.22, 0.000
+20091013, -0.22, 0.05, -0.18, -0.01, -0.01, 0.000
+20091014, 1.73, 0.17, 1.12, -0.56, 0.26, 0.000
+20091015, 0.35, -0.28, -0.44, 0.82, -0.27, 0.000
+20091016, -0.82, -0.16, -1.27, 0.80, -0.39, 0.000
+20091019, 0.92, 0.04, 0.03, 0.48, 0.07, 0.000
+20091020, -0.69, -0.71, -0.48, 0.36, -0.41, 0.000
+20091021, -0.90, -0.18, -0.54, 0.69, -0.09, 0.000
+20091022, 1.05, 0.09, 0.66, -0.49, 0.35, 0.000
+20091023, -1.23, -0.90, -1.02, 0.40, -1.02, 0.000
+20091026, -1.20, -0.17, -1.35, 0.81, -0.06, 0.000
+20091027, -0.51, -0.69, -0.61, 0.11, 0.08, 0.000
+20091028, -2.16, -1.72, -1.39, -0.01, -0.33, 0.000
+20091029, 2.20, 0.05, 1.64, -0.58, 0.26, 0.000
+20091030, -2.80, -0.34, -1.87, 0.54, -0.27, 0.000
+20091102, 0.54, -0.76, -0.32, 0.39, -0.07, 0.000
+20091103, 0.45, 1.14, 0.75, -0.20, 0.23, 0.000
+20091104, 0.03, -1.18, -0.51, 0.29, -0.22, 0.000
+20091105, 2.07, 1.22, 0.63, 0.04, 0.37, 0.000
+20091106, 0.24, -0.32, -0.45, -0.09, 0.00, 0.000
+20091109, 2.17, -0.27, 1.35, -0.05, 0.29, 0.000
+20091110, -0.05, -0.78, -0.08, 0.68, 0.01, 0.000
+20091111, 0.52, 0.30, 0.31, -0.55, 0.28, 0.000
+20091112, -1.12, -1.01, -0.76, 0.14, -0.09, 0.000
+20091113, 0.61, 0.33, -0.04, 0.23, 0.06, 0.000
+20091116, 1.54, 1.29, 0.20, 0.25, 0.37, 0.000
+20091117, 0.14, -0.25, -0.04, -0.11, -0.18, 0.000
+20091118, -0.13, -0.42, 0.44, -0.36, 0.05, 0.000
+20091119, -1.39, -0.89, -0.60, 0.03, -0.10, 0.000
+20091120, -0.33, 0.12, -0.47, 0.06, -0.17, 0.000
+20091123, 1.30, 0.40, -0.09, 0.04, -0.27, 0.000
+20091124, -0.09, -0.22, -0.43, 0.14, 0.02, 0.000
+20091125, 0.47, -0.42, 0.12, 0.24, -0.04, 0.000
+20091127, -1.74, -0.65, -0.78, 0.32, -0.12, 0.000
+20091130, 0.28, -0.29, 0.74, -0.77, -0.26, 0.000
+20091201, 1.28, 0.55, -0.28, 0.30, 0.14, 0.000
+20091202, 0.18, 0.99, -0.30, 0.05, 0.17, 0.000
+20091203, -0.86, -0.26, -0.33, 0.37, 0.08, 0.000
+20091204, 0.70, 1.66, 0.74, -0.33, 0.43, 0.000
+20091207, -0.15, 0.52, -0.26, 0.41, 0.26, 0.000
+20091208, -0.97, 0.02, -0.14, -0.12, -0.02, 0.000
+20091209, 0.32, -0.19, 0.01, -0.06, -0.07, 0.000
+20091210, 0.50, -0.92, -0.10, 0.55, -0.25, 0.000
+20091211, 0.43, 0.42, 0.46, 0.10, 0.23, 0.000
+20091214, 0.80, 0.72, 0.34, -0.15, -0.60, 0.000
+20091215, -0.48, 0.21, -0.59, 0.51, -0.33, 0.000
+20091216, 0.19, 0.53, 0.73, -0.45, 0.06, 0.000
+20091217, -1.18, 0.15, -0.32, 0.39, -0.31, 0.000
+20091218, 0.68, 0.23, 0.24, -0.65, -0.55, 0.000
+20091221, 1.03, 0.27, 0.32, 0.07, 0.21, 0.000
+20091222, 0.43, 0.55, -0.11, -0.12, 0.40, 0.000
+20091223, 0.36, 0.88, -0.39, 0.43, -0.15, 0.000
+20091224, 0.51, -0.07, 0.20, -0.14, -0.04, 0.000
+20091228, 0.08, -0.18, -0.28, 0.12, -0.17, 0.000
+20091229, -0.09, 0.07, -0.08, -0.04, 0.00, 0.000
+20091230, 0.00, -0.08, -0.09, -0.20, 0.19, 0.000
+20091231, -0.99, -0.16, 0.33, -0.46, 0.15, 0.000
+20100104, 1.69, 0.75, 1.11, -0.24, 0.21, 0.000
+20100105, 0.31, -0.38, 1.21, -0.10, 0.18, 0.000
+20100106, 0.13, -0.16, 0.51, -0.02, 0.20, 0.000
+20100107, 0.40, 0.23, 0.94, -0.65, 0.23, 0.000
+20100108, 0.33, 0.34, 0.01, 0.27, -0.38, 0.000
+20100111, 0.13, -0.15, -0.21, 0.08, 0.58, 0.000
+20100112, -1.00, -0.36, -1.31, 0.48, -0.05, 0.000
+20100113, 0.85, 0.32, 0.34, -0.34, 0.10, 0.000
+20100114, 0.24, 0.24, 0.05, -0.25, -0.02, 0.000
+20100115, -1.12, -0.21, -0.39, 0.61, -0.13, 0.000
+20100119, 1.26, 0.39, -0.16, -0.17, 0.02, 0.000
+20100120, -0.98, -0.54, 0.25, -0.58, -0.15, 0.000
+20100121, -1.74, 0.13, -1.14, 0.00, -0.45, 0.000
+20100122, -2.14, 0.47, -0.81, 0.48, 0.04, 0.000
+20100125, 0.37, -0.19, 0.33, 0.08, 0.11, 0.000
+20100126, -0.45, -0.22, -0.46, 0.40, -0.06, 0.000
+20100127, 0.53, 0.22, 0.16, -0.92, -0.04, 0.000
+20100128, -1.18, -0.53, 0.47, -0.24, 0.05, 0.000
+20100129, -0.97, -0.07, -0.45, -0.20, 0.20, 0.000
+20100201, 1.39, -0.14, 0.91, -0.16, 0.69, 0.000
+20100202, 1.21, -0.32, 0.66, 0.20, 0.69, 0.000
+20100203, -0.49, 0.06, -0.39, 0.25, -0.14, 0.000
+20100204, -3.14, -0.34, -1.19, 0.39, -0.03, 0.000
+20100205, 0.29, -0.08, -0.07, -0.60, -0.16, 0.000
+20100208, -0.79, -0.05, -0.35, 0.14, 0.17, 0.000
+20100209, 1.33, 0.36, 0.59, 0.28, 0.41, 0.000
+20100210, -0.17, 0.29, 0.29, -0.55, -0.03, 0.000
+20100211, 1.13, 0.66, 0.07, 0.10, -0.17, 0.000
+20100212, -0.07, 0.96, 0.15, -0.16, 0.28, 0.000
+20100216, 1.75, -0.13, 1.02, 0.00, 0.09, 0.000
+20100217, 0.49, 0.17, 0.12, 0.25, -0.05, 0.000
+20100218, 0.62, 0.11, 0.00, 0.29, -0.12, 0.000
+20100219, 0.28, 0.08, 0.48, -0.24, -0.02, 0.000
+20100222, -0.05, 0.04, 0.57, -0.64, -0.13, 0.000
+20100223, -1.24, 0.13, -0.94, 0.26, -0.01, 0.000
+20100224, 0.94, -0.26, 0.53, -0.22, 0.02, 0.000
+20100225, -0.13, 0.28, 0.28, 0.10, -0.03, 0.000
+20100226, 0.13, -0.43, 0.39, 0.04, -0.06, 0.000
+20100301, 1.20, 1.19, 0.07, 0.06, 0.53, 0.000
+20100302, 0.32, 0.64, 0.19, -0.18, -0.07, 0.000
+20100303, 0.09, 0.15, 0.09, 0.11, 0.29, 0.000
+20100304, 0.37, 0.14, 0.23, -0.02, 0.25, 0.000
+20100305, 1.43, 0.51, 0.61, -0.14, 0.26, 0.000
+20100308, 0.02, 0.12, 0.26, -0.20, 0.10, 0.000
+20100309, 0.21, 0.25, -0.10, 0.01, 0.03, 0.000
+20100310, 0.53, 0.15, 0.68, -0.47, 0.31, 0.000
+20100311, 0.43, -0.07, -0.11, -0.24, 0.12, 0.000
+20100312, -0.02, 0.00, -0.28, 0.49, -0.07, 0.000
+20100315, -0.02, -0.35, -0.48, 0.17, -0.06, 0.000
+20100316, 0.78, -0.07, 0.59, -0.13, 0.17, 0.000
+20100317, 0.57, 0.06, 0.36, -0.12, 0.06, 0.000
+20100318, -0.10, -0.27, -0.57, 0.02, 0.08, 0.000
+20100319, -0.62, -0.65, -0.63, 0.00, -0.49, 0.000
+20100322, 0.67, 0.85, 0.01, 0.18, 0.09, 0.000
+20100323, 0.80, 0.39, 0.36, -0.08, 0.11, 0.000
+20100324, -0.60, -0.52, 0.82, -0.39, 0.05, 0.000
+20100325, -0.26, -0.51, -0.28, -0.08, -0.04, 0.000
+20100326, 0.06, -0.06, 0.31, 0.00, 0.12, 0.000
+20100329, 0.59, -0.01, 0.19, 0.28, 0.10, 0.000
+20100330, 0.04, 0.23, -0.45, 0.35, -0.22, 0.000
+20100331, -0.36, -0.44, 0.16, -0.24, -0.09, 0.000
+20100401, 0.75, 0.10, 0.79, 0.11, 0.37, 0.001
+20100405, 0.95, 1.13, 0.92, -0.25, 0.32, 0.001
+20100406, 0.19, 0.33, 0.46, -0.28, -0.13, 0.001
+20100407, -0.48, 0.22, 0.24, -0.08, 0.19, 0.001
+20100408, 0.31, -0.24, 0.39, -0.14, 0.22, 0.001
+20100409, 0.66, -0.13, 0.17, 0.39, 0.20, 0.001
+20100412, 0.23, 0.32, 0.07, -0.03, 0.23, 0.001
+20100413, 0.07, 0.11, -0.05, 0.14, 0.05, 0.001
+20100414, 1.24, 1.03, 1.41, -1.03, 0.53, 0.001
+20100415, 0.11, 0.54, -0.04, 0.27, -0.18, 0.001
+20100416, -1.53, 0.49, -1.83, 1.09, -0.24, 0.001
+20100419, 0.28, -0.88, -0.08, -0.10, 0.22, 0.001
+20100420, 0.88, 0.75, 0.56, -0.20, -0.05, 0.001
+20100421, -0.06, 0.70, 0.20, 0.48, -0.17, 0.001
+20100422, 0.37, 0.85, 0.49, -0.04, 0.09, 0.001
+20100423, 0.70, 0.39, 0.58, -0.06, 0.14, 0.001
+20100426, -0.43, 0.35, -0.32, 0.71, 0.29, 0.001
+20100427, -2.34, -0.03, -1.41, 0.50, -0.66, 0.001
+20100428, 0.56, -0.61, 0.73, -0.61, 0.33, 0.001
+20100429, 1.34, 0.59, 0.45, -0.22, 0.47, 0.001
+20100430, -1.72, -1.07, -0.92, 0.37, -0.55, 0.001
+20100503, 1.36, 0.77, 0.61, -0.16, 0.36, 0.001
+20100504, -2.50, -0.64, -0.90, 0.22, -0.20, 0.001
+20100505, -0.75, -0.83, -0.62, -0.05, -0.48, 0.001
+20100506, -3.27, -0.36, -0.90, 0.85, -0.31, 0.001
+20100507, -1.75, -1.37, -0.48, 0.15, -0.15, 0.001
+20100510, 4.47, 1.05, 1.16, -0.47, 0.16, 0.001
+20100511, -0.17, 1.13, -0.15, -0.08, 0.04, 0.001
+20100512, 1.63, 1.45, 0.19, 0.07, 0.21, 0.001
+20100513, -1.12, 0.32, -0.31, 0.13, -0.17, 0.001
+20100514, -1.92, -0.35, -0.77, 0.37, -0.27, 0.001
+20100517, 0.11, 0.01, -0.56, 0.15, 0.16, 0.001
+20100518, -1.41, -0.31, -0.96, 0.61, -0.29, 0.001
+20100519, -0.63, -0.90, 0.03, -0.26, 0.15, 0.001
+20100520, -3.99, -1.04, -1.15, 0.50, -0.30, 0.001
+20100521, 1.44, -0.21, 1.59, -0.74, 0.10, 0.001
+20100524, -1.19, 0.22, -0.92, 0.68, -0.10, 0.001
+20100525, -0.03, -0.41, 0.54, -0.49, 0.16, 0.001
+20100526, -0.35, 0.92, 0.38, -0.22, 0.14, 0.001
+20100527, 3.45, 0.84, 1.61, -0.36, 0.72, 0.001
+20100528, -1.18, 0.01, -0.64, 0.29, 0.00, 0.001
+20100601, -1.89, -1.32, -1.57, 0.01, -0.29, 0.001
+20100602, 2.63, 0.29, 0.43, -0.28, 0.02, 0.001
+20100603, 0.54, 0.64, -0.29, 0.28, -0.25, 0.001
+20100604, -3.62, -1.28, -0.70, 0.10, -0.25, 0.001
+20100607, -1.52, -1.16, -1.06, 0.49, -0.66, 0.001
+20100608, 0.90, -1.42, 0.17, -0.26, 0.22, 0.001
+20100609, -0.46, 0.74, -0.18, 0.48, 0.24, 0.001
+20100610, 2.95, 0.48, 0.90, 0.15, 0.37, 0.001
+20100611, 0.62, 0.92, 0.06, -0.12, 0.06, 0.001
+20100614, -0.06, 0.64, 0.01, 0.24, 0.25, 0.001
+20100615, 2.36, 0.21, 0.91, -0.23, 0.09, 0.001
+20100616, -0.11, -0.26, -0.32, 0.01, -0.32, 0.001
+20100617, 0.08, -0.22, -0.45, -0.26, -0.04, 0.001
+20100618, 0.13, 0.01, 0.24, -0.21, -0.14, 0.001
+20100621, -0.47, -0.55, 0.00, 0.15, 0.11, 0.001
+20100622, -1.63, -0.47, -0.75, -0.28, -0.30, 0.001
+20100623, -0.29, -0.01, 0.23, -0.19, 0.02, 0.001
+20100624, -1.65, -0.03, -0.89, -0.08, -0.20, 0.001
+20100625, 0.48, 1.22, 1.03, -1.18, -0.25, 0.001
+20100628, -0.23, -0.10, -0.71, 0.33, 0.03, 0.001
+20100629, -3.23, -0.78, -1.27, 0.48, -0.22, 0.001
+20100630, -0.98, 0.00, -0.36, 0.02, -0.02, 0.001
+20100701, -0.40, -0.37, -0.43, 0.48, 0.16, 0.001
+20100702, -0.50, -0.32, -0.43, 0.14, -0.36, 0.001
+20100706, 0.33, -1.95, 0.08, 0.02, -0.46, 0.001
+20100707, 3.17, 0.03, 0.45, -0.77, 0.91, 0.001
+20100708, 1.00, 0.55, 0.00, 0.06, 0.11, 0.001
+20100709, 0.81, 0.67, 0.58, -0.63, 0.49, 0.001
+20100712, -0.11, -1.17, 0.05, 0.30, -0.14, 0.001
+20100713, 1.76, 1.61, 0.65, -0.67, 0.94, 0.001
+20100714, -0.04, -0.20, -0.76, 0.51, -0.31, 0.001
+20100715, 0.02, -0.86, -0.10, 0.33, -0.07, 0.001
+20100716, -2.94, -0.61, -0.96, 0.98, -0.69, 0.001
+20100719, 0.54, -0.20, -0.19, 0.04, 0.21, 0.001
+20100720, 1.23, 0.60, 0.14, -0.07, 0.50, 0.001
+20100721, -1.30, -0.38, -0.41, 0.30, -0.05, 0.001
+20100722, 2.37, 1.24, 0.54, -0.76, 0.74, 0.001
+20100723, 1.05, 1.40, -0.23, -0.28, 0.48, 0.001
+20100726, 1.23, 0.89, 0.12, -0.51, 0.25, 0.001
+20100727, -0.23, -0.30, 0.35, 0.44, -0.34, 0.001
+20100728, -0.82, -0.86, -0.03, 0.38, -0.26, 0.001
+20100729, -0.36, 0.41, 0.66, -0.21, -0.11, 0.001
+20100730, 0.06, 0.06, -0.22, -0.05, 0.04, 0.001
+20100802, 2.08, -0.54, 0.15, -0.34, 0.37, 0.001
+20100803, -0.55, -0.37, -0.50, 0.19, -0.61, 0.001
+20100804, 0.74, 0.36, -0.09, -0.30, 0.20, 0.001
+20100805, -0.22, -0.84, 0.13, 0.04, 0.14, 0.001
+20100806, -0.36, -0.20, -0.35, 0.09, -0.25, 0.001
+20100809, 0.62, 0.61, 0.05, -0.15, 0.02, 0.001
+20100810, -0.79, -1.25, -0.21, 0.36, -0.26, 0.001
+20100811, -2.91, -1.07, -0.65, 1.06, -0.57, 0.001
+20100812, -0.50, 0.02, -0.04, 0.55, -0.18, 0.001
+20100813, -0.47, -0.78, 0.24, -0.16, -0.03, 0.001
+20100816, 0.10, 0.88, -0.20, -0.07, 0.08, 0.001
+20100817, 1.31, 0.50, -0.19, -0.28, 0.17, 0.001
+20100818, 0.21, 0.08, 0.07, 0.06, 0.34, 0.001
+20100819, -1.74, -0.86, -0.41, 0.38, -0.42, 0.001
+20100820, -0.28, 0.23, -0.23, -0.13, -0.18, 0.001
+20100823, -0.50, -0.90, -0.44, 0.27, -0.41, 0.001
+20100824, -1.48, 0.16, 0.14, 0.20, -0.13, 0.001
+20100825, 0.45, 1.01, 0.00, -0.19, 0.01, 0.001
+20100826, -0.76, -0.09, -0.26, 0.13, -0.16, 0.001
+20100827, 1.82, 0.93, 0.36, -0.94, 0.22, 0.001
+20100830, -1.54, -0.83, -0.40, 0.36, -0.33, 0.001
+20100831, 0.01, -0.19, 0.77, -0.45, 0.26, 0.001
+20100901, 3.05, 0.69, 0.47, -0.34, 0.42, 0.001
+20100902, 0.97, 0.23, -0.31, -0.10, 0.52, 0.001
+20100903, 1.35, 0.36, 0.20, -0.27, 0.19, 0.001
+20100907, -1.23, -0.86, -0.74, 0.48, -0.52, 0.001
+20100908, 0.65, 0.05, 0.17, -0.35, 0.00, 0.001
+20100909, 0.44, -0.40, 0.55, 0.03, 0.02, 0.001
+20100910, 0.45, -0.08, -0.13, 0.17, -0.01, 0.001
+20100913, 1.30, 1.15, 0.20, -0.37, 0.31, 0.001
+20100914, -0.06, -0.29, -0.53, 0.24, -0.13, 0.001
+20100915, 0.36, 0.11, -0.23, 0.21, -0.29, 0.001
+20100916, -0.07, -0.54, -0.69, 0.22, -0.24, 0.001
+20100917, 0.15, 0.55, -0.59, 0.19, -0.23, 0.001
+20100920, 1.60, 1.13, 0.22, -0.25, 0.34, 0.001
+20100921, -0.31, -0.31, -0.32, 0.08, -0.28, 0.001
+20100922, -0.52, -0.57, -0.53, 0.61, -0.19, 0.001
+20100923, -0.78, -0.16, -0.68, 0.25, -0.17, 0.001
+20100924, 2.19, 0.96, 0.48, -0.72, 0.52, 0.001
+20100927, -0.46, 0.19, -0.45, 0.18, -0.08, 0.001
+20100928, 0.58, 0.53, 0.10, -0.23, 0.23, 0.001
+20100929, -0.17, 0.64, -0.25, -0.11, 0.05, 0.001
+20100930, -0.26, 0.10, 0.30, -0.12, -0.01, 0.001
+20101001, 0.43, 0.03, 0.21, 0.06, 0.28, 0.001
+20101004, -0.88, -0.73, -0.07, 0.04, 0.03, 0.001
+20101005, 2.11, 0.77, 0.14, -0.23, 0.12, 0.001
+20101006, -0.10, -0.39, 0.47, 0.19, 0.19, 0.001
+20101007, -0.16, 0.06, -0.29, -0.01, 0.02, 0.001
+20101008, 0.74, 0.86, -0.13, -0.34, 0.40, 0.001
+20101011, 0.04, 0.04, -0.22, 0.35, 0.01, 0.001
+20101012, 0.39, 0.00, 0.19, -0.16, 0.03, 0.001
+20101013, 0.78, 0.83, -0.36, -0.06, -0.06, 0.001
+20101014, -0.38, 0.29, -0.41, 0.25, -0.18, 0.001
+20101015, 0.18, -0.17, -1.28, 0.58, -0.64, 0.001
+20101018, 0.69, 0.13, 0.85, -0.22, 0.18, 0.001
+20101019, -1.67, -0.72, 0.26, 0.25, -0.16, 0.001
+20101020, 1.06, 0.10, 0.09, 0.15, 0.30, 0.001
+20101021, 0.11, -0.56, -0.51, 0.47, -0.20, 0.001
+20101022, 0.29, 0.44, -0.44, -0.21, -0.25, 0.001
+20101025, 0.31, 0.43, -0.52, -0.08, -0.04, 0.001
+20101026, 0.02, -0.01, -0.18, 0.32, -0.14, 0.001
+20101027, -0.24, -0.25, -0.22, -0.40, -0.11, 0.001
+20101028, 0.08, -0.59, -0.07, 0.15, -0.19, 0.001
+20101029, 0.07, 0.30, -0.11, 0.12, 0.16, 0.001
+20101101, -0.01, -0.67, -0.20, 0.26, 0.01, 0.001
+20101102, 0.90, 1.26, -0.17, 0.10, 0.09, 0.001
+20101103, 0.38, -0.05, 0.17, -0.15, 0.14, 0.001
+20101104, 1.94, 0.49, 1.04, -0.83, 0.87, 0.001
+20101105, 0.41, -0.04, 0.68, -0.35, 0.49, 0.001
+20101108, -0.12, 0.43, -0.48, 0.25, -0.14, 0.001
+20101109, -0.78, -0.46, -0.49, 0.73, -0.21, 0.001
+20101110, 0.53, 0.66, 0.55, -0.42, 0.38, 0.001
+20101111, -0.35, -0.04, -0.08, 0.16, 0.20, 0.001
+20101112, -1.29, -0.47, -0.07, 0.19, -0.05, 0.001
+20101115, -0.09, 0.23, 0.32, -0.02, 0.16, 0.001
+20101116, -1.58, -0.34, -0.15, 0.35, -0.14, 0.001
+20101117, 0.07, 0.30, -0.29, 0.17, 0.24, 0.001
+20101118, 1.57, 0.31, -0.30, -0.28, -0.07, 0.001
+20101119, 0.31, 0.16, -0.18, -0.13, 0.13, 0.001
+20101122, -0.02, 0.51, -0.94, 0.13, -0.31, 0.001
+20101123, -1.38, 0.50, -0.28, 0.39, -0.38, 0.001
+20101124, 1.59, 0.62, 0.03, -0.37, 0.22, 0.001
+20101126, -0.67, 0.28, -0.35, 0.21, -0.09, 0.001
+20101129, -0.13, 0.06, 0.42, -0.15, 0.12, 0.001
+20101130, -0.59, -0.20, -0.02, 0.00, 0.05, 0.001
+20101201, 2.12, -0.11, 0.01, -0.43, 0.40, 0.001
+20101202, 1.23, -0.26, 0.66, -0.47, 0.73, 0.001
+20101203, 0.35, 0.37, 0.05, -0.11, 0.25, 0.001
+20101206, -0.03, 0.74, -0.06, -0.13, 0.16, 0.001
+20101207, 0.10, 0.37, 0.00, -0.01, -0.09, 0.001
+20101208, 0.32, -0.45, 0.62, -0.31, 0.19, 0.001
+20101209, 0.42, 0.05, 0.65, -0.39, 0.51, 0.001
+20101210, 0.67, 0.45, 0.24, -0.23, 0.17, 0.001
+20101213, -0.08, -0.57, 0.08, -0.18, -0.07, 0.001
+20101214, 0.09, -0.05, -0.11, 0.38, -0.08, 0.001
+20101215, -0.49, 0.13, -0.55, 0.20, -0.10, 0.001
+20101216, 0.70, 0.42, -0.11, -0.24, 0.03, 0.001
+20101217, 0.15, 0.16, -0.14, -0.33, 0.24, 0.001
+20101220, 0.23, 0.05, 0.34, -0.29, 0.18, 0.001
+20101221, 0.68, 0.39, 0.74, -0.57, 0.29, 0.001
+20101222, 0.29, -0.33, 0.82, -0.21, 0.21, 0.001
+20101223, -0.16, 0.04, -0.32, 0.18, -0.17, 0.001
+20101227, 0.08, 0.26, 0.44, -0.36, 0.16, 0.001
+20101228, 0.00, -0.43, 0.18, -0.03, -0.13, 0.001
+20101229, 0.17, 0.10, -0.16, 0.06, -0.07, 0.001
+20101230, -0.11, 0.13, -0.03, 0.19, 0.05, 0.001
+20101231, -0.10, -0.61, 0.23, -0.14, 0.13, 0.001
+20110103, 1.18, 0.57, 0.79, -0.45, 0.14, 0.000
+20110104, -0.26, -1.33, 0.11, -0.01, 0.01, 0.000
+20110105, 0.59, 0.61, 0.14, -0.44, 0.02, 0.000
+20110106, -0.15, -0.13, -0.33, -0.10, -0.12, 0.000
+20110107, -0.21, -0.24, -0.30, 0.18, -0.16, 0.000
+20110110, -0.02, 0.50, -0.16, -0.41, 0.07, 0.000
+20110111, 0.39, 0.10, 0.22, -0.33, 0.08, 0.000
+20110112, 0.87, -0.05, 0.25, -0.40, 0.32, 0.000
+20110113, -0.17, 0.12, -0.39, 0.50, 0.09, 0.000
+20110114, 0.69, 0.04, 0.49, -0.64, 0.13, 0.000
+20110118, 0.18, -0.02, -0.41, 0.31, -0.14, 0.000
+20110119, -1.24, -1.33, -0.54, 0.99, -0.46, 0.000
+20110120, -0.30, -0.95, 0.76, 0.57, 0.37, 0.000
+20110121, 0.11, -0.85, 0.56, -0.15, 0.33, 0.000
+20110124, 0.65, 0.20, -0.23, -0.20, 0.34, 0.000
+20110125, 0.02, 0.00, 0.10, 0.32, -0.09, 0.000
+20110126, 0.60, 1.33, -0.22, -0.33, 0.10, 0.000
+20110127, 0.26, -0.04, 0.29, -0.07, 0.00, 0.000
+20110128, -1.88, -0.82, -0.03, 0.07, -0.37, 0.000
+20110131, 0.71, 0.00, -0.27, -0.33, 0.06, 0.000
+20110201, 1.75, 0.56, 0.53, -0.37, 0.18, 0.001
+20110202, -0.26, -0.13, -0.39, -0.10, -0.06, 0.001
+20110203, 0.26, -0.01, -0.10, 0.15, 0.30, 0.001
+20110204, 0.29, -0.01, -0.57, -0.19, -0.01, 0.001
+20110207, 0.70, 0.30, 0.59, -0.32, 0.24, 0.001
+20110208, 0.48, 0.23, 0.00, 0.11, 0.09, 0.001
+20110209, -0.31, -0.19, -0.09, 0.39, -0.16, 0.001
+20110210, 0.12, 0.33, -0.30, -0.18, 0.12, 0.001
+20110211, 0.67, 0.40, 0.51, -0.34, 0.38, 0.001
+20110214, 0.30, 0.23, -0.15, -0.16, -0.07, 0.001
+20110215, -0.38, -0.30, 0.30, 0.21, -0.13, 0.001
+20110216, 0.68, 0.40, 0.26, -0.12, 0.29, 0.001
+20110217, 0.37, 0.36, 0.21, -0.46, 0.29, 0.001
+20110218, 0.12, -0.12, -0.03, 0.17, 0.06, 0.001
+20110222, -2.19, -0.49, -0.35, 0.77, -0.55, 0.001
+20110223, -0.78, -1.10, 0.40, -0.11, -0.22, 0.001
+20110224, 0.04, 0.64, -0.32, -0.25, -0.16, 0.001
+20110225, 1.22, 0.98, 0.22, -0.76, 0.48, 0.001
+20110228, 0.42, -0.40, 0.26, -0.20, -0.20, 0.001
+20110301, -1.58, -0.28, -0.06, 0.44, -0.49, 0.000
+20110302, 0.28, 0.28, -0.23, -0.10, 0.19, 0.000
+20110303, 1.76, 0.47, -0.04, -0.36, 0.13, 0.000
+20110304, -0.67, 0.27, -0.53, 0.15, -0.21, 0.000
+20110307, -0.96, -0.63, 0.12, 0.39, -0.26, 0.000
+20110308, 0.97, 0.53, 0.67, -0.03, 0.30, 0.000
+20110309, -0.17, -0.20, 0.33, 0.57, -0.24, 0.000
+20110310, -1.93, -0.72, -0.31, 0.75, -0.57, 0.000
+20110311, 0.69, -0.35, 0.14, -0.40, 0.22, 0.000
+20110314, -0.59, 0.07, -0.40, 0.13, -0.02, 0.000
+20110315, -1.05, 0.27, -0.14, 0.36, 0.00, 0.000
+20110316, -1.77, 0.64, -0.07, -0.05, 0.20, 0.000
+20110317, 1.12, -0.75, 0.58, -0.29, 0.12, 0.000
+20110318, 0.49, 0.59, 0.22, 0.04, 0.34, 0.000
+20110321, 1.58, 0.85, -0.26, -0.40, 0.00, 0.000
+20110322, -0.34, -0.08, -0.05, 0.11, -0.20, 0.000
+20110323, 0.31, 0.12, -0.40, 0.03, 0.11, 0.000
+20110324, 0.96, -0.20, -0.42, -0.24, 0.36, 0.000
+20110325, 0.41, 0.48, -0.04, 0.12, 0.05, 0.000
+20110328, -0.35, 0.09, -0.18, 0.37, -0.16, 0.000
+20110329, 0.74, 0.23, -0.19, -0.21, 0.15, 0.000
+20110330, 0.79, 0.45, 0.07, 0.00, 0.10, 0.000
+20110331, -0.11, 0.56, -0.30, 0.13, -0.08, 0.000
+20110401, 0.52, -0.08, 0.24, 0.12, 0.07, 0.000
+20110404, 0.09, 0.23, -0.11, 0.15, -0.07, 0.000
+20110405, 0.08, 0.47, -0.20, 0.09, 0.29, 0.000
+20110406, 0.21, -0.16, 0.60, -0.11, 0.21, 0.000
+20110407, -0.20, -0.22, -0.16, 0.21, -0.13, 0.000
+20110408, -0.47, -0.53, -0.27, 0.05, -0.21, 0.000
+20110411, -0.39, -0.63, -0.11, 0.45, -0.24, 0.000
+20110412, -0.84, -0.65, 0.03, 0.55, -0.19, 0.000
+20110413, 0.11, 0.09, -0.69, -0.09, -0.14, 0.000
+20110414, 0.00, 0.34, -0.35, -0.07, -0.18, 0.000
+20110415, 0.44, 0.53, -0.06, -0.03, 0.29, 0.000
+20110418, -1.15, -0.41, -0.34, 0.31, -0.30, 0.000
+20110419, 0.50, -0.35, -0.15, 0.01, 0.24, 0.000
+20110420, 1.45, 0.51, -0.61, -0.37, 0.09, 0.000
+20110421, 0.56, 0.31, -0.06, -0.07, 0.07, 0.000
+20110425, -0.16, -0.05, -0.03, 0.06, -0.29, 0.000
+20110426, 0.89, 0.08, -0.03, -0.21, 0.42, 0.000
+20110427, 0.66, -0.06, -0.23, 0.22, -0.31, 0.000
+20110428, 0.32, -0.09, 0.12, -0.01, -0.24, 0.000
+20110429, 0.29, 0.20, -0.05, -0.25, -0.15, 0.000
+20110502, -0.28, -0.89, -0.14, 0.42, -0.32, 0.000
+20110503, -0.50, -0.93, 0.44, 0.53, -0.04, 0.000
+20110504, -0.74, -0.56, -0.15, 0.55, -0.29, 0.000
+20110505, -0.82, 0.48, -0.33, 0.31, 0.22, 0.000
+20110506, 0.46, 0.07, -0.17, -0.27, -0.11, 0.000
+20110509, 0.55, 0.66, -0.43, -0.06, -0.05, 0.000
+20110510, 0.86, 0.67, 0.24, 0.02, -0.05, 0.000
+20110511, -1.09, -0.64, -0.44, 0.73, -0.42, 0.000
+20110512, 0.52, 0.31, -0.44, 0.09, -0.07, 0.000
+20110513, -0.88, -0.48, -0.32, 0.26, -0.21, 0.000
+20110516, -0.76, -0.96, 0.45, 0.17, 0.05, 0.000
+20110517, -0.11, -0.40, 0.11, 0.08, -0.29, 0.000
+20110518, 1.02, 0.64, -0.30, -0.32, 0.25, 0.000
+20110519, 0.22, 0.00, -0.12, 0.19, -0.08, 0.000
+20110520, -0.73, 0.04, -0.21, -0.19, -0.03, 0.000
+20110523, -1.29, -0.53, 0.01, 0.35, -0.31, 0.000
+20110524, -0.14, -0.28, 0.00, 0.07, -0.01, 0.000
+20110525, 0.45, 0.98, -0.36, -0.46, 0.17, 0.000
+20110526, 0.52, 0.67, -0.15, -0.08, 0.01, 0.000
+20110527, 0.49, 0.20, 0.23, -0.16, 0.12, 0.000
+20110531, 1.04, 0.37, -0.06, -0.18, -0.04, 0.000
+20110601, -2.33, -0.73, -0.25, 0.62, -0.69, 0.000
+20110602, -0.10, -0.01, 0.14, -0.42, -0.07, 0.000
+20110603, -1.10, -0.50, 0.18, 0.18, -0.06, 0.000
+20110606, -1.18, -0.37, -0.32, 0.53, -0.21, 0.000
+20110607, -0.04, 0.31, -0.12, -0.10, -0.06, 0.000
+20110608, -0.54, -0.67, 0.04, 0.53, -0.36, 0.000
+20110609, 0.75, 0.00, 0.02, 0.04, 0.15, 0.000
+20110610, -1.37, -0.18, 0.44, -0.05, -0.10, 0.000
+20110613, 0.01, -0.43, 0.36, 0.37, -0.46, 0.000
+20110614, 1.36, 0.97, -0.40, 0.12, 0.32, 0.000
+20110615, -1.72, -0.02, -0.15, 0.37, -0.28, 0.000
+20110616, 0.12, 0.01, 0.43, 0.39, -0.13, 0.000
+20110617, 0.25, -0.37, 0.65, 0.01, 0.18, 0.000
+20110620, 0.58, 0.36, -0.08, 0.13, -0.04, 0.000
+20110621, 1.52, 0.94, -0.39, -0.31, 0.16, 0.000
+20110622, -0.62, -0.10, 0.07, -0.06, 0.12, 0.000
+20110623, -0.14, 0.59, -0.83, 0.23, -0.07, 0.000
+20110624, -1.10, 0.50, 0.13, 0.09, -0.26, 0.000
+20110627, 0.89, 0.09, -0.05, 0.22, -0.30, 0.000
+20110628, 1.36, 0.40, -0.52, -0.17, -0.03, 0.000
+20110629, 0.77, -0.62, 0.66, -0.38, 0.39, 0.000
+20110630, 0.99, 0.09, -0.25, 0.04, 0.31, 0.000
+20110701, 1.45, -0.01, 0.14, 0.03, 0.14, 0.000
+20110705, -0.08, 0.17, -0.84, 0.41, -0.52, 0.000
+20110706, 0.18, 0.35, -0.56, 0.24, 0.01, 0.000
+20110707, 1.10, 0.48, 0.09, -0.17, -0.31, 0.000
+20110708, -0.67, -0.02, -0.42, 0.32, -0.13, 0.000
+20110711, -1.91, -0.18, -0.23, 0.71, 0.08, 0.000
+20110712, -0.45, 0.05, 0.45, 0.09, 0.24, 0.000
+20110713, 0.45, 0.54, -0.12, -0.19, -0.18, 0.000
+20110714, -0.82, -0.79, 0.13, 0.21, 0.18, 0.000
+20110715, 0.58, 0.06, -0.53, 0.13, -0.65, 0.000
+20110718, -0.94, -0.59, -0.38, 0.57, -0.37, 0.000
+20110719, 1.72, 0.54, -0.67, 0.19, -0.31, 0.000
+20110720, -0.10, -0.21, 0.72, -0.08, 0.44, 0.000
+20110721, 1.29, -0.30, 1.06, -0.43, 0.30, 0.000
+20110722, 0.10, -0.14, -0.75, -0.06, -0.63, 0.000
+20110725, -0.68, -0.54, 0.09, 0.25, -0.14, 0.000
+20110726, -0.47, -0.34, 0.14, 0.05, -0.17, 0.000
+20110727, -2.16, -0.73, 0.43, 0.57, 0.36, 0.000
+20110728, -0.31, 0.12, -0.12, -0.14, -0.37, 0.000
+20110729, -0.56, 0.22, 0.12, -0.22, 0.27, 0.000
+20110801, -0.40, -0.13, 0.21, 0.03, -0.07, 0.000
+20110802, -2.68, -0.49, 0.15, 0.17, -0.21, 0.000
+20110803, 0.58, 0.24, -0.33, 0.20, -0.23, 0.000
+20110804, -5.04, -0.81, 0.33, 0.87, 0.06, 0.000
+20110805, -0.36, -1.19, -0.46, 1.05, 0.18, 0.000
+20110808, -6.97, -1.57, -1.55, 1.67, -0.34, 0.000
+20110809, 4.97, 0.97, 0.64, -1.65, -0.04, 0.000
+20110810, -4.30, -0.60, -1.49, 1.42, -0.44, 0.000
+20110811, 4.72, 0.35, 0.59, -0.77, -0.13, 0.000
+20110812, 0.54, -0.29, -1.48, 0.55, -0.28, 0.000
+20110815, 2.25, 0.46, 0.98, -1.09, 0.24, 0.000
+20110816, -1.07, -0.80, -0.10, 0.60, 0.39, 0.000
+20110817, -0.01, -0.27, 0.70, -0.08, 0.46, 0.000
+20110818, -4.65, -1.00, 0.59, 0.83, 0.50, 0.000
+20110819, -1.55, 0.12, -0.37, 0.18, 0.11, 0.000
+20110822, -0.03, -0.01, -0.81, 0.57, -0.05, 0.000
+20110823, 3.60, 1.15, -0.82, -0.14, -0.64, 0.000
+20110824, 1.35, -0.05, 0.95, -0.45, 0.55, 0.000
+20110825, -1.67, -0.90, 0.54, -0.09, 0.04, 0.000
+20110826, 1.74, 0.85, -1.07, 0.14, -0.56, 0.000
+20110829, 3.11, 1.54, 0.82, -1.18, 0.34, 0.000
+20110830, 0.32, 0.24, -0.78, 0.23, -0.09, 0.000
+20110831, 0.42, -0.71, 0.26, -0.13, -0.06, 0.000
+20110901, -1.33, -1.11, -0.76, 0.56, -0.18, 0.000
+20110902, -2.64, -0.85, -0.66, 0.58, -0.07, 0.000
+20110906, -0.71, 0.38, -0.63, 0.23, -0.15, 0.000
+20110907, 3.06, 0.94, 0.92, -1.18, 0.11, 0.000
+20110908, -1.18, -0.82, -0.55, 0.35, -0.19, 0.000
+20110909, -2.65, -0.20, 0.04, 0.21, 0.04, 0.000
+20110912, 0.68, -0.01, 0.30, -0.37, -0.15, 0.000
+20110913, 1.12, 0.73, -0.40, -0.14, -0.09, 0.000
+20110914, 1.45, 0.41, -0.40, 0.00, -0.20, 0.000
+20110915, 1.64, -0.51, 0.54, -0.32, 0.06, 0.000
+20110916, 0.47, -0.39, -0.35, 0.22, -0.14, 0.000
+20110919, -0.99, -0.57, -1.23, 1.05, -0.29, 0.000
+20110920, -0.45, -1.43, 0.25, 0.23, 0.26, 0.000
+20110921, -2.92, -0.50, -1.22, 0.43, -0.33, 0.000
+20110922, -3.29, 0.14, 0.48, 0.54, 0.56, 0.000
+20110923, 0.74, 0.69, -0.01, -0.19, 0.13, 0.000
+20110926, 2.28, -0.55, 1.23, -0.58, 0.06, 0.000
+20110927, 1.22, 1.03, -0.56, -0.09, -0.18, 0.000
+20110928, -2.29, -1.69, -0.17, 0.72, 0.01, 0.000
+20110929, 0.77, 0.66, 2.03, -0.83, 0.78, 0.000
+20110930, -2.50, -0.21, -0.09, 0.34, 0.17, 0.000
+20111003, -3.18, -1.99, -0.63, 1.10, 0.07, 0.000
+20111004, 2.68, 3.62, 0.37, -0.79, -0.20, 0.000
+20111005, 1.92, -0.26, -0.45, -0.53, -0.39, 0.000
+20111006, 1.94, 0.28, 0.51, -0.39, 0.15, 0.000
+20111007, -0.98, -1.34, -1.35, 1.32, 0.02, 0.000
+20111010, 3.44, 0.56, 0.59, -0.46, -0.22, 0.000
+20111011, 0.15, 0.65, -0.17, 0.01, -0.21, 0.000
+20111012, 1.07, 0.56, 0.90, -0.67, 0.21, 0.000
+20111013, -0.21, 0.15, -1.22, 0.31, -0.31, 0.000
+20111014, 1.72, 0.15, -0.36, 0.00, -0.59, 0.000
+20111017, -2.06, -1.32, -0.46, 0.62, -0.03, 0.000
+20111018, 2.11, 0.72, 1.51, -1.36, 0.37, 0.000
+20111019, -1.38, -0.74, 0.37, 0.32, 0.53, 0.000
+20111020, 0.43, -0.23, 0.70, -0.26, 0.20, 0.000
+20111021, 1.92, 0.17, 0.01, -0.22, 0.04, 0.000
+20111024, 1.59, 1.74, -0.38, -0.39, -0.54, 0.000
+20111025, -2.13, -0.87, -0.34, 0.69, 0.05, 0.000
+20111026, 1.12, 0.76, 0.78, -0.63, 0.35, 0.000
+20111027, 3.54, 1.47, 0.83, -1.54, -0.12, 0.000
+20111028, -0.01, -0.53, -0.47, -0.14, -0.26, 0.000
+20111031, -2.50, 0.00, -0.79, 0.98, 0.16, 0.000
+20111101, -2.86, -0.59, -1.07, 0.92, 0.01, 0.000
+20111102, 1.72, 0.83, 0.99, -0.50, -0.05, 0.000
+20111103, 1.97, 0.60, -0.13, -0.13, -0.12, 0.000
+20111104, -0.53, -0.01, -0.59, 0.13, -0.01, 0.000
+20111107, 0.48, -0.68, 0.39, 0.23, 0.40, 0.000
+20111108, 1.21, 0.02, 0.47, -0.18, -0.14, 0.000
+20111109, -3.78, -0.85, -0.64, 0.94, 0.31, 0.000
+20111110, 0.83, 0.08, 0.58, 0.10, 0.51, 0.000
+20111111, 1.98, 0.52, -0.22, -0.05, -0.18, 0.000
+20111114, -0.92, -0.51, -0.80, 0.42, -0.23, 0.000
+20111115, 0.56, 0.86, -0.26, 0.13, -0.16, 0.000
+20111116, -1.64, -0.18, -0.18, 0.10, 0.06, 0.000
+20111117, -1.65, 0.18, 0.21, 0.24, 0.43, 0.000
+20111118, -0.07, 0.12, 0.91, 0.05, 0.64, 0.000
+20111121, -1.87, -0.54, -0.07, 0.09, -0.05, 0.000
+20111122, -0.44, -0.32, -0.56, 0.15, -0.23, 0.000
+20111123, -2.29, -0.72, -0.28, 0.62, 0.17, 0.000
+20111125, -0.34, -0.99, 0.47, -0.25, 0.36, 0.000
+20111128, 3.10, 1.58, -0.70, -0.58, -0.56, 0.000
+20111129, 0.18, -0.51, 0.17, 0.28, 0.35, 0.000
+20111130, 4.44, 1.10, 1.08, -1.09, -0.06, 0.000
+20111201, -0.22, -0.54, -0.64, 0.33, -0.19, 0.000
+20111202, 0.05, 0.53, 0.64, -0.35, 0.27, 0.000
+20111205, 1.09, 0.30, 0.30, -0.63, -0.41, 0.000
+20111206, 0.04, -0.08, 0.08, 0.07, 0.22, 0.000
+20111207, 0.16, -0.23, 0.74, 0.05, 0.41, 0.000
+20111208, -2.23, -0.79, -0.99, 0.92, 0.02, 0.000
+20111209, 1.83, 1.33, 0.06, -0.32, -0.23, 0.000
+20111212, -1.48, 0.03, -0.43, 0.63, 0.29, 0.000
+20111213, -1.05, -1.03, 0.12, 0.20, 0.11, 0.000
+20111214, -1.21, -0.28, 0.92, -0.18, 0.76, 0.000
+20111215, 0.40, 0.68, 0.13, 0.26, 0.55, 0.000
+20111216, 0.45, 0.28, -0.11, 0.14, -0.14, 0.000
+20111219, -1.31, -0.49, -0.69, 0.70, -0.08, 0.000
+20111220, 3.10, 0.83, 0.30, -0.70, -0.17, 0.000
+20111221, 0.20, 0.02, 1.31, -0.23, 0.94, 0.000
+20111222, 0.83, -0.18, 0.69, -0.79, -0.08, 0.000
+20111223, 0.84, -0.54, -0.16, 0.28, -0.01, 0.000
+20111227, 0.04, 0.45, -0.52, 0.41, -0.24, 0.000
+20111228, -1.34, -0.73, -0.03, 0.18, 0.24, 0.000
+20111229, 1.10, 0.23, 0.24, -0.19, 0.08, 0.000
+20111230, -0.40, -0.08, -0.14, -0.06, 0.02, 0.000
+20120103, 1.50, -0.10, 0.86, -0.67, -0.22, 0.000
+20120104, 0.00, -0.63, 0.08, 0.27, -0.06, 0.000
+20120105, 0.39, 0.19, 0.13, -0.36, 0.05, 0.000
+20120106, -0.19, -0.04, -0.25, -0.05, -0.03, 0.000
+20120109, 0.28, 0.26, -0.06, -0.19, 0.24, 0.000
+20120110, 0.97, 0.40, 0.39, -0.78, -0.03, 0.000
+20120111, 0.13, 0.16, 0.36, -0.77, 0.22, 0.000
+20120112, 0.31, 0.29, 0.00, -0.24, 0.07, 0.000
+20120113, -0.52, -0.24, -0.44, 0.64, 0.11, 0.000
+20120117, 0.36, -0.13, -0.73, 0.57, -0.32, 0.000
+20120118, 1.22, 0.57, 0.15, -0.61, -0.17, 0.000
+20120119, 0.51, -0.15, -0.22, -0.11, -0.24, 0.000
+20120120, 0.03, 0.27, 0.65, 0.02, 0.10, 0.000
+20120123, 0.02, -0.21, 0.13, 0.34, -0.38, 0.000
+20120124, 0.00, 0.74, -0.40, -0.39, -0.23, 0.000
+20120125, 0.91, 0.07, -0.73, 0.32, -0.22, 0.000
+20120126, -0.59, 0.22, -0.55, 0.20, -0.04, 0.000
+20120127, 0.01, 0.84, -0.10, -0.35, -0.17, 0.000
+20120130, -0.31, -0.46, -0.29, 0.47, 0.05, 0.000
+20120131, -0.05, -0.05, 0.01, -0.05, -0.11, 0.000
+20120201, 1.10, 1.11, 0.35, -0.51, 0.30, 0.000
+20120202, 0.17, 0.38, -0.05, -0.45, -0.01, 0.000
+20120203, 1.58, 0.63, 0.32, -0.64, -0.25, 0.000
+20120206, -0.05, -0.29, -0.19, -0.04, -0.23, 0.000
+20120207, 0.16, -0.27, -0.09, 0.21, 0.00, 0.000
+20120208, 0.25, -0.10, 0.42, -0.15, 0.01, 0.000
+20120209, 0.15, -0.38, -0.38, 0.21, 0.01, 0.000
+20120210, -0.75, -0.59, -0.10, 0.29, 0.16, 0.000
+20120213, 0.75, 0.58, -0.05, -0.18, 0.01, 0.000
+20120214, -0.09, -0.41, -0.41, 0.56, -0.21, 0.000
+20120215, -0.50, -0.22, 0.10, -0.11, 0.03, 0.000
+20120216, 1.27, 0.71, 0.28, -0.18, -0.16, 0.000
+20120217, 0.16, -0.24, 0.50, 0.06, 0.31, 0.000
+20120221, -0.05, -0.61, 0.35, 0.14, -0.34, 0.000
+20120222, -0.39, -0.38, -0.65, 0.47, -0.15, 0.000
+20120223, 0.56, 0.89, -0.07, -0.40, 0.26, 0.000
+20120224, 0.15, -0.47, -0.65, 0.18, -0.20, 0.000
+20120227, 0.14, -0.15, 0.37, 0.04, 0.10, 0.000
+20120228, 0.28, -0.62, -0.15, 0.16, -0.03, 0.000
+20120229, -0.55, -1.07, 0.20, 0.19, 0.32, 0.000
+20120301, 0.64, -0.17, 0.02, -0.01, -0.08, 0.000
+20120302, -0.46, -1.26, 0.00, 0.11, 0.34, 0.000
+20120305, -0.40, 0.45, 0.27, 0.14, 0.40, 0.000
+20120306, -1.62, -0.35, -0.32, 0.50, -0.19, 0.000
+20120307, 0.80, 0.31, 0.22, -0.32, 0.07, 0.000
+20120308, 1.07, 0.38, -0.30, -0.13, 0.05, 0.000
+20120309, 0.49, 0.90, 0.15, -0.22, 0.00, 0.000
+20120312, -0.07, -0.21, -0.03, 0.28, 0.09, 0.000
+20120313, 1.86, 0.15, 0.89, -0.64, -0.09, 0.000
+20120314, -0.23, -0.62, -0.21, 0.44, 0.16, 0.000
+20120315, 0.67, 0.30, 0.51, -0.55, 0.15, 0.000
+20120316, 0.06, -0.27, 0.38, -0.46, -0.17, 0.000
+20120319, 0.41, 0.50, -0.10, -0.14, -0.36, 0.000
+20120320, -0.39, -0.63, 0.31, 0.04, 0.12, 0.000
+20120321, -0.10, 0.29, -0.40, 0.14, 0.08, 0.000
+20120322, -0.74, -0.15, -0.42, 0.55, -0.02, 0.000
+20120323, 0.39, 0.61, 0.31, -0.33, -0.18, 0.000
+20120326, 1.45, 0.48, -0.24, 0.13, -0.16, 0.000
+20120327, -0.30, -0.38, -0.31, 0.07, -0.11, 0.000
+20120328, -0.51, 0.00, 0.42, -0.22, 0.39, 0.000
+20120329, -0.16, -0.04, -0.23, 0.19, 0.13, 0.000
+20120330, 0.28, -0.69, -0.04, -0.01, 0.16, 0.000
+20120402, 0.77, 0.35, 0.03, 0.15, -0.34, 0.000
+20120403, -0.34, -0.33, -0.32, 0.16, 0.20, 0.000
+20120404, -1.11, -0.60, 0.05, 0.27, 0.36, 0.000
+20120405, -0.03, -0.11, -0.47, 0.23, -0.19, 0.000
+20120409, -1.21, -0.44, -0.05, 0.52, 0.17, 0.000
+20120410, -1.85, -0.44, 0.09, 0.23, 0.08, 0.000
+20120411, 0.85, 0.80, 0.28, -0.28, 0.15, 0.000
+20120412, 1.44, 0.08, 0.29, -0.48, -0.19, 0.000
+20120413, -1.25, -0.20, -0.76, 0.64, 0.10, 0.000
+20120416, -0.09, 0.19, 0.86, -0.21, 0.46, 0.000
+20120417, 1.55, 0.04, -0.24, -0.10, -0.35, 0.000
+20120418, -0.43, -0.46, -0.41, 0.37, -0.11, 0.000
+20120419, -0.57, -0.06, 0.30, -0.31, 0.29, 0.000
+20120420, 0.11, 0.52, -0.09, 0.31, 0.64, 0.000
+20120423, -0.95, -0.51, 0.16, 0.07, -0.04, 0.000
+20120424, 0.29, 0.27, 0.98, -0.63, 0.69, 0.000
+20120425, 1.44, 0.37, -1.05, 0.35, -0.76, 0.000
+20120426, 0.75, -0.04, -0.02, -0.18, -0.25, 0.000
+20120427, 0.35, 0.70, -0.18, 0.09, -0.16, 0.000
+20120430, -0.49, -0.62, 0.09, -0.10, -0.15, 0.000
+20120501, 0.48, -0.78, 0.39, -0.04, 0.02, 0.000
+20120502, -0.15, 0.64, -0.59, 0.38, 0.29, 0.000
+20120503, -0.92, -0.63, 0.12, 0.41, 0.33, 0.000
+20120504, -1.62, -0.19, 0.13, 0.20, 0.17, 0.000
+20120507, 0.04, 0.13, 0.50, -0.38, 0.30, 0.000
+20120508, -0.41, 0.35, 0.36, 0.10, 0.27, 0.000
+20120509, -0.62, 0.15, -0.25, 0.08, -0.11, 0.000
+20120510, 0.29, 0.09, 0.56, -0.08, 0.53, 0.000
+20120511, -0.29, 0.11, -0.94, -0.03, -0.07, 0.000
+20120514, -1.14, -0.14, -0.12, 0.08, 0.09, 0.000
+20120515, -0.52, 0.51, -0.20, 0.39, 0.03, 0.000
+20120516, -0.44, -0.18, -0.43, 0.67, 0.25, 0.000
+20120517, -1.64, -0.52, 0.43, 0.07, -0.05, 0.000
+20120518, -0.80, -0.20, 0.16, 0.12, 0.39, 0.000
+20120521, 1.69, 0.57, -1.18, -0.21, -0.65, 0.000
+20120522, 0.00, -0.82, 0.28, -0.06, 0.01, 0.000
+20120523, 0.26, 0.49, -0.27, 0.00, -0.10, 0.000
+20120524, 0.16, 0.03, 0.21, 0.33, 0.56, 0.000
+20120525, -0.16, 0.24, -0.10, 0.17, 0.14, 0.000
+20120529, 1.14, 0.19, -0.02, -0.31, -0.06, 0.000
+20120530, -1.47, -0.31, -0.26, 0.58, -0.03, 0.000
+20120531, -0.23, 0.18, 0.57, -0.14, 0.22, 0.000
+20120601, -2.60, -0.58, 0.21, 0.15, 0.07, 0.000
+20120604, -0.05, 0.08, -0.55, 0.31, -0.41, 0.000
+20120605, 0.68, 0.29, 0.06, -0.57, -0.07, 0.000
+20120606, 2.32, 0.13, 0.21, -0.36, -0.15, 0.000
+20120607, -0.10, -0.46, 0.13, 0.04, 0.25, 0.000
+20120608, 0.85, 0.23, 0.02, -0.11, 0.11, 0.000
+20120611, -1.40, -0.84, -0.05, 0.41, 0.32, 0.000
+20120612, 1.16, 0.14, 0.08, -0.32, -0.02, 0.000
+20120613, -0.77, -0.45, 0.35, 0.14, 0.08, 0.000
+20120614, 1.04, 0.22, 0.37, -0.08, 0.37, 0.000
+20120615, 1.07, 0.10, -0.06, -0.20, -0.45, 0.000
+20120618, 0.21, 0.09, -0.85, 0.18, -0.18, 0.000
+20120619, 1.09, 0.69, 0.16, -0.36, -0.32, 0.000
+20120620, -0.14, -0.09, 0.15, 0.03, -0.04, 0.000
+20120621, -2.26, -0.10, 0.13, 0.00, 0.66, 0.000
+20120622, 0.79, 0.64, 0.08, -0.30, -0.11, 0.000
+20120625, -1.62, 0.08, -0.14, 0.45, 0.21, 0.000
+20120626, 0.52, -0.10, -0.06, -0.08, 0.05, 0.000
+20120627, 0.92, 0.40, 0.48, -0.54, 0.00, 0.000
+20120628, -0.24, 0.18, 0.44, 0.20, 0.51, 0.000
+20120629, 2.55, 0.33, -0.71, -0.25, -0.62, 0.000
+20120702, 0.33, 0.69, -0.04, -0.27, 0.21, 0.000
+20120703, 0.76, 0.73, 0.07, 0.15, -0.61, 0.000
+20120705, -0.36, 0.45, -0.87, 0.58, -0.27, 0.000
+20120706, -0.99, -0.40, 0.36, 0.07, 0.68, 0.000
+20120709, -0.23, -0.25, -0.24, 0.23, 0.00, 0.000
+20120710, -0.84, -0.39, 0.31, -0.04, 0.31, 0.000
+20120711, -0.08, -0.27, 0.74, -0.16, 0.08, 0.000
+20120712, -0.50, 0.15, -0.81, -0.13, 0.07, 0.000
+20120713, 1.62, -0.28, 0.57, -0.15, 0.04, 0.000
+20120716, -0.31, -0.44, -0.25, 0.01, 0.01, 0.000
+20120717, 0.67, -0.51, 0.24, -0.07, 0.17, 0.000
+20120718, 0.71, 0.23, -0.79, 0.47, -0.70, 0.000
+20120719, 0.27, -0.46, -0.97, 0.51, -0.86, 0.000
+20120720, -1.06, -0.36, 0.07, -0.02, 0.34, 0.000
+20120723, -1.02, -0.66, 0.20, 0.09, 0.37, 0.000
+20120724, -0.99, -0.57, 0.26, -0.28, 0.10, 0.000
+20120725, -0.01, 0.24, -0.05, -0.45, 0.06, 0.000
+20120726, 1.53, -0.75, 0.39, 0.14, 0.23, 0.000
+20120727, 1.96, 0.57, 0.08, -0.15, -0.37, 0.000
+20120730, -0.13, -0.39, 0.26, 0.21, 0.28, 0.000
+20120731, -0.47, 0.02, 0.25, 0.43, -0.05, 0.000
+20120801, -0.50, -1.56, 0.29, 0.08, 0.17, 0.000
+20120802, -0.69, 0.14, -0.41, -0.08, 0.09, 0.000
+20120803, 1.99, 0.63, 0.57, -0.32, -0.20, 0.000
+20120806, 0.34, 0.55, 0.07, -0.30, -0.20, 0.000
+20120807, 0.64, 0.41, 0.07, 0.10, -0.50, 0.000
+20120808, 0.09, -0.20, 0.57, 0.18, 0.42, 0.000
+20120809, 0.12, 0.35, 0.11, -0.24, -0.40, 0.000
+20120810, 0.17, -0.34, -0.02, 0.13, 0.06, 0.000
+20120813, -0.14, -0.17, 0.00, -0.06, 0.06, 0.000
+20120814, -0.03, -0.43, -0.05, 0.28, 0.25, 0.000
+20120815, 0.27, 0.72, -0.07, -0.08, -0.10, 0.000
+20120816, 0.75, 0.48, -0.17, 0.03, -0.21, 0.000
+20120817, 0.27, 0.59, 0.11, 0.03, -0.12, 0.000
+20120820, -0.06, -0.44, 0.59, -0.23, 0.15, 0.000
+20120821, -0.31, 0.17, 0.40, -0.07, -0.07, 0.000
+20120822, 0.00, -0.51, -0.35, -0.21, -0.32, 0.000
+20120823, -0.78, -0.06, -0.36, -0.18, 0.12, 0.000
+20120824, 0.61, -0.30, -0.03, -0.13, 0.18, 0.000
+20120827, -0.06, 0.12, -0.12, 0.03, -0.16, 0.000
+20120828, 0.01, 0.57, -0.09, -0.02, -0.01, 0.000
+20120829, 0.15, 0.27, 0.12, -0.17, 0.13, 0.000
+20120830, -0.80, -0.44, 0.00, 0.00, 0.25, 0.000
+20120831, 0.52, -0.06, 0.00, -0.06, -0.33, 0.000
+20120904, 0.08, 0.92, -0.17, -0.28, 0.12, 0.000
+20120905, -0.05, -0.04, 0.32, -0.14, 0.04, 0.000
+20120906, 2.07, -0.02, 0.34, -0.08, 0.07, 0.000
+20120907, 0.45, 0.12, 0.78, 0.08, 0.04, 0.000
+20120910, -0.57, 0.29, -0.06, 0.11, 0.38, 0.000
+20120911, 0.28, 0.09, 0.54, -0.07, 0.17, 0.000
+20120912, 0.27, 0.12, 0.31, -0.41, 0.02, 0.000
+20120913, 1.56, -0.31, 0.56, -0.33, 0.00, 0.000
+20120914, 0.54, 0.60, 0.48, -0.01, -0.40, 0.000
+20120917, -0.42, -0.30, -0.79, 0.22, -0.19, 0.000
+20120918, -0.15, -0.05, -0.24, -0.07, 0.05, 0.000
+20120919, 0.18, -0.14, 0.05, -0.15, 0.29, 0.000
+20120920, -0.13, -0.44, -0.17, 0.00, 0.13, 0.000
+20120921, 0.04, 0.45, -0.04, -0.19, 0.15, 0.000
+20120924, -0.26, -0.15, 0.33, -0.07, 0.46, 0.000
+20120925, -1.11, -0.39, -0.36, -0.01, 0.39, 0.000
+20120926, -0.57, -0.04, 0.03, 0.13, 0.13, 0.000
+20120927, 0.99, 0.23, -0.15, -0.07, -0.35, 0.000
+20120928, -0.46, -0.30, -0.25, -0.01, 0.03, 0.000
+20121001, 0.26, 0.10, 0.24, -0.03, 0.19, 0.000
+20121002, 0.10, -0.16, 0.27, -0.19, 0.04, 0.000
+20121003, 0.36, -0.68, -0.02, -0.35, 0.37, 0.000
+20121004, 0.76, -0.06, 0.77, -0.14, 0.21, 0.000
+20121005, -0.03, -0.19, 0.22, -0.10, 0.61, 0.000
+20121008, -0.36, -0.17, 0.21, 0.02, 0.11, 0.000
+20121009, -1.05, -0.26, 0.35, 0.08, 0.03, 0.000
+20121010, -0.58, 0.37, 0.26, -0.34, 0.25, 0.000
+20121011, 0.11, 0.42, 0.68, -0.16, 0.07, 0.000
+20121012, -0.34, -0.41, -0.90, 0.53, -0.20, 0.000
+20121015, 0.79, -0.19, 0.16, -0.22, 0.24, 0.000
+20121016, 1.00, -0.26, -0.24, 0.22, -0.62, 0.000
+20121017, 0.49, 0.26, 1.13, -0.65, 0.36, 0.000
+20121018, -0.31, -0.50, 0.26, -0.09, 0.40, 0.000
+20121019, -1.68, -0.35, 0.46, -0.14, 0.44, 0.000
+20121022, 0.01, -0.06, 0.18, 0.12, -0.16, 0.000
+20121023, -1.29, 0.91, -0.51, -0.06, 0.00, 0.000
+20121024, -0.28, -0.18, 0.43, -0.37, 0.13, 0.000
+20121025, 0.27, 0.20, -0.09, 0.08, -0.09, 0.000
+20121026, -0.07, -0.18, -0.40, 0.36, -0.21, 0.000
+20121031, 0.14, 0.59, 0.37, 0.01, 0.14, 0.000
+20121101, 1.19, 0.20, 0.21, 0.29, 0.03, 0.000
+20121102, -1.04, -0.49, 0.26, 0.27, 0.46, 0.000
+20121105, 0.28, 0.34, -0.22, -0.07, -0.25, 0.000
+20121106, 0.80, 0.03, 0.54, 0.25, 0.16, 0.000
+20121107, -2.31, -0.23, -1.45, 0.20, 0.05, 0.000
+20121108, -1.24, -0.26, 0.41, -0.32, 0.40, 0.000
+20121109, 0.15, 0.01, -0.14, 0.08, -0.06, 0.000
+20121112, 0.00, -0.18, 0.06, 0.06, -0.03, 0.000
+20121113, -0.40, -0.22, -0.30, 0.06, 0.26, 0.000
+20121114, -1.40, -0.38, -0.25, 0.14, -0.27, 0.000
+20121115, -0.24, -0.33, 0.17, 0.09, 0.10, 0.000
+20121116, 0.58, 0.04, 0.03, -0.40, 0.25, 0.000
+20121119, 1.98, 0.26, -0.01, 0.48, -0.20, 0.000
+20121120, 0.11, -0.05, 0.14, -0.30, 0.16, 0.000
+20121121, 0.31, 0.35, -0.06, 0.01, 0.08, 0.000
+20121123, 1.28, -0.15, 0.07, 0.14, -0.03, 0.000
+20121126, -0.14, 0.49, -0.17, -0.08, -0.30, 0.000
+20121127, -0.43, 0.40, -0.22, 0.00, 0.04, 0.000
+20121128, 0.83, 0.00, -0.28, 0.25, -0.15, 0.000
+20121129, 0.54, 0.68, -0.02, -0.22, -0.19, 0.000
+20121130, 0.02, -0.14, 0.27, -0.20, 0.32, 0.000
+20121203, -0.46, 0.28, 0.21, -0.01, 0.02, 0.001
+20121204, -0.16, 0.35, -0.06, -0.02, 0.07, 0.001
+20121205, 0.17, -0.56, 0.99, -0.55, 0.64, 0.001
+20121206, 0.31, -0.19, -0.15, 0.15, -0.18, 0.001
+20121207, 0.27, -0.34, 0.34, -0.09, 0.42, 0.001
+20121210, 0.11, 0.42, 0.02, -0.16, -0.01, 0.001
+20121211, 0.68, 0.41, -0.06, -0.29, -0.28, 0.001
+20121212, -0.02, -0.62, 0.54, -0.28, 0.16, 0.001
+20121213, -0.57, 0.05, 0.06, 0.04, 0.21, 0.001
+20121214, -0.34, 0.32, 0.25, -0.20, 0.35, 0.001
+20121217, 1.16, 0.00, 0.59, -0.36, 0.06, 0.001
+20121218, 1.20, 0.40, 0.08, 0.15, -0.60, 0.001
+20121219, -0.60, 0.60, 0.24, -0.04, -0.24, 0.001
+20121220, 0.53, -0.14, 0.72, -0.44, 0.24, 0.001
+20121221, -0.88, 0.41, -0.33, 0.20, -0.13, 0.001
+20121224, -0.24, -0.22, 0.00, -0.11, 0.16, 0.001
+20121226, -0.54, -0.11, 0.34, -0.14, 0.15, 0.001
+20121227, -0.11, -0.02, -0.17, 0.18, -0.03, 0.001
+20121228, -1.00, 0.46, 0.00, -0.10, 0.13, 0.001
+20121231, 1.71, 0.40, -0.07, 0.15, -0.28, 0.001
+20130102, 2.62, 0.12, 0.35, -0.63, -0.04, 0.000
+20130103, -0.14, 0.13, 0.04, 0.17, 0.23, 0.000
+20130104, 0.55, 0.19, 0.43, -0.37, 0.26, 0.000
+20130107, -0.31, -0.08, -0.36, -0.10, -0.12, 0.000
+20130108, -0.27, 0.03, -0.07, -0.18, 0.09, 0.000
+20130109, 0.34, 0.24, -0.41, -0.02, -0.15, 0.000
+20130110, 0.66, -0.59, 0.51, -0.17, 0.03, 0.000
+20130111, 0.02, 0.05, -0.45, 0.26, -0.22, 0.000
+20130114, -0.06, 0.03, -0.08, -0.09, 0.37, 0.000
+20130115, 0.19, 0.28, 0.00, -0.08, 0.07, 0.000
+20130116, -0.04, -0.23, 0.23, -0.02, -0.03, 0.000
+20130117, 0.61, 0.39, -0.09, 0.18, -0.01, 0.000
+20130118, 0.29, 0.03, -0.11, 0.17, 0.27, 0.000
+20130122, 0.48, 0.21, 0.46, -0.19, 0.11, 0.000
+20130123, 0.10, -0.34, -0.13, -0.15, -0.16, 0.000
+20130124, 0.09, 0.35, 0.05, 0.09, 0.53, 0.000
+20130125, 0.59, -0.04, -0.28, 0.02, -0.17, 0.000
+20130128, -0.14, 0.35, 0.12, -0.03, -0.05, 0.000
+20130129, 0.36, -0.44, 0.35, -0.10, 0.30, 0.000
+20130130, -0.38, -0.88, 0.12, -0.09, -0.01, 0.000
+20130131, -0.08, 0.71, 0.19, -0.26, 0.10, 0.000
+20130201, 0.99, 0.08, 0.26, -0.27, -0.05, 0.000
+20130204, -1.19, -0.10, -0.15, -0.02, 0.02, 0.000
+20130205, 1.07, -0.06, 0.18, 0.00, -0.10, 0.000
+20130206, 0.15, 0.30, 0.12, -0.16, 0.04, 0.000
+20130207, -0.15, -0.09, 0.02, 0.17, -0.04, 0.000
+20130208, 0.58, 0.03, -0.21, 0.14, -0.45, 0.000
+20130211, -0.08, -0.03, 0.39, -0.18, 0.28, 0.000
+20130212, 0.16, 0.27, 0.72, -0.54, 0.45, 0.000
+20130213, 0.14, 0.08, -0.01, -0.01, -0.04, 0.000
+20130214, 0.11, 0.31, 0.10, -0.31, -0.20, 0.000
+20130215, -0.11, 0.01, -0.10, -0.04, 0.13, 0.000
+20130219, 0.74, 0.25, 0.17, -0.08, 0.35, 0.000
+20130220, -1.36, -0.61, -0.63, 0.24, 0.12, 0.000
+20130221, -0.66, -0.31, -0.06, 0.05, 0.26, 0.000
+20130222, 0.94, 0.17, -0.06, -0.11, -0.13, 0.000
+20130225, -1.82, -0.26, -0.72, 0.60, -0.39, 0.000
+20130226, 0.58, -0.19, 0.02, -0.01, 0.22, 0.000
+20130227, 1.29, -0.32, 0.16, -0.21, 0.03, 0.000
+20130228, -0.05, 0.11, -0.16, 0.04, -0.01, 0.000
+20130301, 0.22, 0.11, -0.33, -0.12, 0.00, 0.000
+20130304, 0.47, -0.41, 0.11, -0.40, 0.44, 0.000
+20130305, 1.00, 0.20, -0.18, 0.06, 0.00, 0.000
+20130306, 0.18, 0.14, 0.47, -0.27, 0.13, 0.000
+20130307, 0.27, 0.26, 0.41, -0.08, -0.06, 0.000
+20130308, 0.52, 0.41, -0.15, 0.04, 0.01, 0.000
+20130311, 0.30, -0.29, 0.23, 0.02, 0.02, 0.000
+20130312, -0.22, 0.04, -0.14, 0.27, 0.08, 0.000
+20130313, 0.20, 0.23, 0.08, 0.10, 0.26, 0.000
+20130314, 0.58, 0.40, 0.40, -0.03, -0.01, 0.000
+20130315, -0.19, 0.12, 0.43, 0.18, 0.01, 0.000
+20130318, -0.50, 0.09, -0.23, 0.34, -0.03, 0.000
+20130319, -0.24, -0.05, 0.03, 0.14, 0.36, 0.000
+20130320, 0.76, 0.21, 0.00, -0.27, 0.22, 0.000
+20130321, -0.85, 0.12, -0.28, 0.00, 0.08, 0.000
+20130322, 0.62, -0.52, -0.30, 0.11, -0.15, 0.000
+20130325, -0.29, 0.30, 0.02, 0.06, -0.03, 0.000
+20130326, 0.76, -0.39, -0.22, 0.06, -0.04, 0.000
+20130327, -0.02, 0.11, -0.31, 0.10, -0.10, 0.000
+20130328, 0.39, -0.31, -0.30, -0.16, 0.09, 0.000
+20130401, -0.57, -0.91, 0.02, 0.13, 0.26, 0.000
+20130402, 0.33, -0.90, -0.32, -0.06, 0.04, 0.000
+20130403, -1.16, -0.42, -0.20, 0.51, -0.11, 0.000
+20130404, 0.42, 0.24, 0.25, -0.09, 0.28, 0.000
+20130405, -0.41, 0.09, 0.35, -0.13, 0.24, 0.000
+20130408, 0.70, 0.12, 0.29, -0.32, 0.11, 0.000
+20130409, 0.31, -0.41, 0.19, -0.02, -0.39, 0.000
+20130410, 1.28, 0.63, -0.10, -0.02, -0.07, 0.000
+20130411, 0.35, -0.17, -0.15, 0.12, 0.48, 0.000
+20130412, -0.28, -0.18, -0.46, -0.04, 0.07, 0.000
+20130415, -2.48, -1.50, -0.28, -0.01, -0.04, 0.000
+20130416, 1.47, 0.16, 0.07, -0.31, -0.06, 0.000
+20130417, -1.46, -0.35, -0.54, 0.14, 0.28, 0.000
+20130418, -0.71, 0.18, 0.02, 0.41, 0.10, 0.000
+20130419, 0.97, 0.03, 0.12, -0.42, 0.19, 0.000
+20130422, 0.45, -0.18, -0.14, 0.26, -0.29, 0.000
+20130423, 1.11, 0.52, 0.63, -0.49, 0.25, 0.000
+20130424, 0.06, 0.51, 1.22, 0.00, -0.26, 0.000
+20130425, 0.49, 0.23, 0.01, -0.06, -0.08, 0.000
+20130426, -0.20, -0.35, -0.22, 0.09, 0.09, 0.000
+20130429, 0.67, 0.11, -0.08, 0.24, -0.32, 0.000
+20130430, 0.29, 0.35, -0.05, 0.18, -0.28, 0.000
+20130501, -1.08, -1.47, -0.27, -0.09, -0.10, 0.000
+20130502, 1.04, 0.55, 0.13, -0.42, -0.25, 0.000
+20130503, 1.12, 0.62, 0.16, -0.12, -0.28, 0.000
+20130506, 0.23, 0.28, 0.84, -0.48, 0.06, 0.000
+20130507, 0.54, 0.19, 0.14, 0.21, 0.30, 0.000
+20130508, 0.44, -0.18, 0.14, -0.03, -0.15, 0.000
+20130509, -0.31, 0.07, -0.30, 0.04, -0.17, 0.000
+20130510, 0.54, 0.40, -0.20, -0.31, -0.01, 0.000
+20130513, -0.02, -0.26, -0.06, -0.40, 0.07, 0.000
+20130514, 1.10, 0.17, 0.31, -0.22, 0.16, 0.000
+20130515, 0.51, -0.11, 0.27, -0.05, 0.31, 0.000
+20130516, -0.50, 0.16, -0.28, 0.12, -0.35, 0.000
+20130517, 1.04, 0.09, 0.38, 0.10, -0.17, 0.000
+20130520, -0.06, 0.42, 0.49, 0.25, -0.21, 0.000
+20130521, 0.16, -0.07, -0.08, 0.18, 0.21, 0.000
+20130522, -0.92, -0.73, -0.17, 0.20, 0.34, 0.000
+20130523, -0.19, 0.48, -0.10, 0.01, 0.09, 0.000
+20130524, -0.06, 0.15, 0.05, -0.05, 0.01, 0.000
+20130528, 0.77, 0.68, 0.22, -0.12, -0.18, 0.000
+20130529, -0.70, -0.25, 0.59, -0.24, -0.29, 0.000
+20130530, 0.50, 0.37, 0.48, -0.44, 0.00, 0.000
+20130531, -1.31, 0.47, -0.24, 0.17, -0.13, 0.000
+20130603, 0.48, 0.16, -0.11, 0.23, -0.05, 0.000
+20130604, -0.55, -0.26, -0.16, 0.35, -0.03, 0.000
+20130605, -1.38, 0.02, -0.26, 0.10, -0.15, 0.000
+20130606, 0.89, 0.18, 0.26, -0.51, 0.36, 0.000
+20130607, 1.30, -0.44, 0.07, -0.24, -0.07, 0.000
+20130610, 0.07, 0.66, 0.22, -0.22, -0.10, 0.000
+20130611, -1.04, -0.04, -0.58, 0.35, 0.03, 0.000
+20130612, -0.82, 0.04, 0.03, 0.13, 0.15, 0.000
+20130613, 1.47, 0.14, 0.31, -0.17, 0.28, 0.000
+20130614, -0.59, -0.28, -0.56, 0.19, -0.03, 0.000
+20130617, 0.74, -0.09, 0.02, -0.23, -0.38, 0.000
+20130618, 0.80, 0.36, -0.06, -0.01, 0.04, 0.000
+20130619, -1.28, 0.21, 0.12, -0.02, -0.29, 0.000
+20130620, -2.45, 0.01, 0.34, 0.05, -0.11, 0.000
+20130621, 0.13, 0.19, -0.08, -0.20, 0.11, 0.000
+20130624, -1.19, 0.01, -0.66, 0.23, -0.14, 0.000
+20130625, 0.96, 0.07, 0.85, -0.28, 0.29, 0.000
+20130626, 0.92, -0.72, -0.13, 0.00, 0.19, 0.000
+20130627, 0.77, 0.86, 0.36, -0.43, 0.24, 0.000
+20130628, -0.33, 0.30, -0.14, 0.19, -0.31, 0.000
+20130701, 0.71, 0.73, -0.13, -0.34, 0.01, 0.000
+20130702, -0.10, 0.02, 0.08, 0.09, -0.09, 0.000
+20130703, 0.11, 0.17, -0.21, 0.18, -0.06, 0.000
+20130705, 1.11, 0.42, 0.45, -0.32, 0.14, 0.000
+20130708, 0.53, -0.15, 0.05, 0.15, 0.10, 0.000
+20130709, 0.74, 0.05, 0.26, -0.01, 0.03, 0.000
+20130710, 0.06, 0.29, -0.41, -0.07, -0.10, 0.000
+20130711, 1.32, -0.19, -0.63, -0.14, -0.17, 0.000
+20130712, 0.33, -0.03, 0.20, -0.67, 0.05, 0.000
+20130715, 0.20, 0.55, 0.34, -0.02, 0.08, 0.000
+20130716, -0.41, 0.03, 0.08, 0.13, 0.27, 0.000
+20130717, 0.30, -0.04, 0.18, -0.45, 0.04, 0.000
+20130718, 0.54, 0.14, 0.96, -0.19, 0.21, 0.000
+20130719, 0.09, -0.10, 0.28, -0.33, 0.47, 0.000
+20130722, 0.22, 0.11, 0.29, -0.13, 0.09, 0.000
+20130723, -0.15, 0.10, 0.28, -0.02, 0.29, 0.000
+20130724, -0.39, -0.28, -0.25, 0.66, -0.08, 0.000
+20130725, 0.42, 0.48, -0.35, -0.47, -0.27, 0.000
+20130726, 0.02, -0.65, -0.22, 0.15, -0.19, 0.000
+20130729, -0.37, -0.33, -0.28, 0.30, -0.16, 0.000
+20130730, 0.12, 0.16, -0.52, 0.13, -0.09, 0.000
+20130731, 0.09, 0.20, 0.09, 0.01, -0.06, 0.000
+20130801, 1.40, 0.08, 0.05, -0.20, -0.17, 0.000
+20130802, 0.20, -0.24, -0.33, -0.01, -0.06, 0.000
+20130805, -0.07, 0.49, -0.17, -0.05, -0.08, 0.000
+20130806, -0.68, -0.35, -0.09, 0.34, -0.05, 0.000
+20130807, -0.42, -0.35, 0.02, 0.29, 0.05, 0.000
+20130808, 0.47, -0.01, -0.01, -0.04, 0.15, 0.000
+20130809, -0.29, 0.13, -0.19, 0.15, -0.18, 0.000
+20130812, -0.02, 0.55, -0.22, 0.16, -0.08, 0.000
+20130813, 0.20, -0.28, -0.05, 0.08, -0.11, 0.000
+20130814, -0.50, 0.15, 0.29, -0.05, 0.02, 0.000
+20130815, -1.47, -0.37, 0.30, -0.05, 0.03, 0.000
+20130816, -0.26, 0.05, 0.10, -0.14, -0.13, 0.000
+20130819, -0.62, -0.26, -0.75, 0.62, -0.33, 0.000
+20130820, 0.53, 0.86, 0.13, -0.33, 0.09, 0.000
+20130821, -0.59, -0.07, -0.46, -0.08, -0.31, 0.000
+20130822, 0.93, 0.50, 0.05, -0.33, -0.19, 0.000
+20130823, 0.38, -0.27, -0.14, 0.09, -0.25, 0.000
+20130826, -0.29, 0.46, -0.50, -0.11, -0.25, 0.000
+20130827, -1.75, -0.74, -0.32, 0.66, 0.04, 0.000
+20130828, 0.30, 0.11, 0.07, -0.01, -0.09, 0.000
+20130829, 0.34, 0.73, -0.41, -0.39, -0.25, 0.000
+20130830, -0.47, -1.14, -0.21, 0.01, -0.09, 0.000
+20130903, 0.46, 0.06, 0.09, -0.48, -0.23, 0.000
+20130904, 0.83, -0.01, -0.15, -0.12, 0.09, 0.000
+20130905, 0.19, 0.21, 0.37, -0.20, -0.08, 0.000
+20130906, 0.01, 0.00, 0.00, -0.18, -0.10, 0.000
+20130909, 1.09, 0.42, -0.21, -0.19, -0.14, 0.000
+20130910, 0.80, 0.06, 0.21, -0.16, 0.04, 0.000
+20130911, 0.28, -0.23, 0.01, 0.22, 0.15, 0.000
+20130912, -0.32, -0.29, -0.34, 0.13, -0.15, 0.000
+20130913, 0.29, 0.27, -0.01, 0.16, 0.24, 0.000
+20130916, 0.49, -0.39, 0.40, -0.02, 0.39, 0.000
+20130917, 0.54, 0.41, -0.14, -0.34, -0.22, 0.000
+20130918, 1.10, -0.24, -0.45, -0.03, -0.18, 0.000
+20130919, -0.13, 0.09, -0.60, 0.10, -0.29, 0.000
+20130920, -0.63, 0.51, 0.18, -0.08, -0.17, 0.000
+20130923, -0.45, 0.42, -0.37, 0.62, -0.23, 0.000
+20130924, -0.12, 0.49, 0.01, -0.15, 0.00, 0.000
+20130925, -0.23, 0.11, 0.58, -0.41, 0.03, 0.000
+20130926, 0.42, 0.15, -0.73, 0.15, -0.32, 0.000
+20130927, -0.39, -0.01, -0.06, 0.07, -0.12, 0.000
+20130930, -0.49, 0.51, 0.06, 0.16, 0.04, 0.000
+20131001, 0.90, 0.37, -0.13, -0.14, -0.22, 0.000
+20131002, -0.10, -0.33, -0.09, -0.10, -0.08, 0.000
+20131003, -0.88, -0.17, 0.20, 0.05, 0.22, 0.000
+20131004, 0.74, 0.00, 0.09, -0.27, -0.14, 0.000
+20131007, -0.95, -0.29, 0.00, 0.11, 0.19, 0.000
+20131008, -1.35, -0.41, 0.76, 0.62, 0.54, 0.000
+20131009, -0.05, -0.35, 0.62, 0.44, 0.34, 0.000
+20131010, 2.23, 0.19, -0.02, -0.34, -0.28, 0.000
+20131011, 0.71, 0.76, -0.01, 0.12, -0.10, 0.000
+20131014, 0.44, 0.21, -0.11, 0.07, -0.15, 0.000
+20131015, -0.73, -0.18, 0.01, 0.30, -0.14, 0.000
+20131016, 1.37, -0.30, 0.14, -0.54, -0.10, 0.000
+20131017, 0.70, 0.12, 0.04, -0.17, 0.07, 0.000
+20131018, 0.73, 0.27, -0.05, -0.08, -0.49, 0.000
+20131021, -0.02, -0.13, 0.06, 0.30, 0.02, 0.000
+20131022, 0.50, -0.28, 0.10, 0.24, 0.35, 0.000
+20131023, -0.51, 0.15, -0.33, 0.55, 0.21, 0.000
+20131024, 0.42, 0.34, -0.32, -0.03, -0.16, 0.000
+20131025, 0.33, -0.33, 0.13, 0.16, 0.04, 0.000
+20131028, 0.09, -0.07, 0.01, 0.37, 0.17, 0.000
+20131029, 0.54, -0.14, -0.12, 0.08, 0.28, 0.000
+20131030, -0.61, -0.75, 0.50, 0.46, 0.06, 0.000
+20131031, -0.34, -0.11, -0.43, 0.34, 0.15, 0.000
+20131101, 0.20, -0.65, 0.22, 0.17, 0.29, 0.000
+20131104, 0.47, 0.75, -0.03, 0.08, -0.04, 0.000
+20131105, -0.23, -0.01, -0.25, 0.23, -0.10, 0.000
+20131106, 0.27, -0.81, 0.39, 0.27, 0.18, 0.000
+20131107, -1.46, -0.33, 0.19, 0.13, 0.32, 0.000
+20131108, 1.45, 0.59, 0.42, -0.51, -0.07, 0.000
+20131111, 0.12, 0.05, -0.13, 0.00, -0.03, 0.000
+20131112, -0.19, 0.33, -0.71, 0.54, 0.13, 0.000
+20131113, 0.90, 0.06, -0.13, -0.38, -0.21, 0.000
+20131114, 0.43, -0.57, 0.31, -0.08, 0.03, 0.000
+20131115, 0.43, 0.06, -0.27, 0.03, -0.05, 0.000
+20131118, -0.50, -0.38, 0.46, 0.42, 0.29, 0.000
+20131119, -0.27, -0.29, 0.26, 0.04, 0.00, 0.000
+20131120, -0.33, 0.26, 0.02, 0.02, -0.03, 0.000
+20131121, 0.97, 0.81, -0.06, -0.44, -0.30, 0.000
+20131122, 0.50, -0.09, 0.12, -0.09, -0.04, 0.000
+20131125, -0.11, 0.16, 0.14, 0.00, 0.25, 0.000
+20131126, 0.18, 0.80, -0.48, -0.34, -0.39, 0.000
+20131127, 0.30, 0.33, -0.06, 0.07, 0.01, 0.000
+20131129, -0.02, 0.26, -0.17, 0.00, -0.18, 0.000
+20131202, -0.31, -0.93, 0.15, -0.03, 0.02, 0.000
+20131203, -0.34, -0.13, -0.10, 0.16, -0.03, 0.000
+20131204, -0.07, -0.21, 0.26, -0.36, -0.15, 0.000
+20131205, -0.35, 0.60, -0.64, 0.04, -0.44, 0.000
+20131206, 1.02, -0.28, 0.20, -0.02, 0.46, 0.000
+20131209, 0.17, -0.41, 0.00, -0.03, 0.04, 0.000
+20131210, -0.34, -0.53, 0.20, -0.04, -0.05, 0.000
+20131211, -1.16, -0.35, 0.05, 0.55, 0.11, 0.000
+20131212, -0.23, 0.38, 0.25, -0.31, -0.06, 0.000
+20131213, 0.10, 0.22, -0.01, -0.30, 0.19, 0.000
+20131216, 0.67, 0.57, -0.14, 0.16, -0.04, 0.000
+20131217, -0.26, 0.14, -0.16, -0.15, -0.14, 0.000
+20131218, 1.55, -0.42, 0.04, -0.03, 0.31, 0.000
+20131219, -0.10, -0.50, 0.16, -0.07, 0.10, 0.000
+20131220, 0.69, 1.25, -0.30, -0.21, -0.41, 0.000
+20131223, 0.62, 0.48, -0.05, -0.21, -0.15, 0.000
+20131224, 0.34, 0.11, 0.11, -0.04, 0.16, 0.000
+20131226, 0.44, -0.34, -0.31, 0.20, 0.07, 0.000
+20131227, -0.05, -0.02, 0.23, 0.08, 0.24, 0.000
+20131230, 0.00, 0.03, -0.30, 0.14, 0.08, 0.000
+20131231, 0.44, -0.16, 0.04, -0.04, -0.21, 0.000
+20140102, -0.88, -0.24, 0.12, -0.33, 0.11, 0.000
+20140103, 0.03, 0.41, 0.05, -0.32, 0.14, 0.000
+20140106, -0.34, -0.54, 0.26, -0.34, 0.06, 0.000
+20140107, 0.68, 0.33, -0.41, -0.06, -0.29, 0.000
+20140108, 0.04, 0.01, -0.11, -0.53, -0.04, 0.000
+20140109, 0.02, 0.16, -0.38, -0.52, -0.41, 0.000
+20140110, 0.27, 0.45, -0.78, -0.30, -0.31, 0.000
+20140113, -1.32, -0.10, 0.11, -0.10, 0.47, 0.000
+20140114, 1.15, 0.13, -0.39, -0.05, -0.35, 0.000
+20140115, 0.53, 0.22, 0.21, -0.39, -0.01, 0.000
+20140116, -0.07, 0.24, -0.68, -0.01, -0.27, 0.000
+20140117, -0.39, 0.02, 0.04, -0.20, 0.02, 0.000
+20140121, 0.30, 0.43, -0.01, -0.21, -0.35, 0.000
+20140122, 0.15, 0.28, 0.21, -0.20, -0.17, 0.000
+20140123, -0.86, 0.09, -0.51, 0.18, -0.08, 0.000
+20140124, -2.19, -0.39, 0.22, 0.27, 0.06, 0.000
+20140127, -0.65, -0.81, 0.46, 0.39, 0.40, 0.000
+20140128, 0.73, 0.18, -0.03, -0.82, 0.16, 0.000
+20140129, -1.07, -0.34, 0.26, 0.14, 0.15, 0.000
+20140130, 1.22, 0.22, -0.42, -0.90, -0.54, 0.000
+20140131, -0.66, -0.10, -0.39, 0.19, -0.19, 0.000
+20140203, -2.48, -0.87, 0.31, 0.20, 0.04, 0.000
+20140204, 0.77, -0.07, -0.10, -0.14, 0.22, 0.000
+20140205, -0.23, -0.57, 0.18, 0.15, 0.22, 0.000
+20140206, 1.21, -0.43, 0.23, 0.07, -0.07, 0.000
+20140207, 1.33, -0.22, -0.67, -0.47, -0.51, 0.000
+20140210, 0.16, 0.07, -0.44, -0.24, -0.18, 0.000
+20140211, 1.09, -0.19, 0.24, -0.02, 0.10, 0.000
+20140212, 0.11, 0.24, -0.09, 0.14, 0.01, 0.000
+20140213, 0.72, 0.68, -0.10, -0.21, -0.34, 0.000
+20140214, 0.42, -0.32, 0.37, 0.35, 0.38, 0.000
+20140218, 0.27, 0.95, -0.25, -0.35, -0.27, 0.000
+20140219, -0.74, -0.31, -0.40, 0.34, 0.03, 0.000
+20140220, 0.70, 0.50, -0.14, -0.06, -0.17, 0.000
+20140221, -0.09, 0.36, -0.04, 0.01, -0.06, 0.000
+20140224, 0.65, 0.20, 0.26, -0.15, -0.01, 0.000
+20140225, -0.10, 0.05, -0.61, -0.05, 0.08, 0.000
+20140226, 0.12, 0.65, -0.09, -0.02, 0.03, 0.000
+20140227, 0.54, 0.11, 0.02, -0.28, -0.02, 0.000
+20140228, 0.15, -0.66, 0.84, 0.45, 0.09, 0.000
+20140303, -0.70, 0.08, 0.15, 0.02, 0.13, 0.000
+20140304, 1.67, 1.08, -0.12, -0.43, -0.14, 0.000
+20140305, 0.01, -0.22, 0.28, -0.56, -0.15, 0.000
+20140306, 0.16, -0.24, 0.76, 0.32, 0.35, 0.000
+20140307, 0.04, -0.01, 0.51, 0.15, 0.32, 0.000
+20140310, -0.09, -0.08, 0.06, 0.05, -0.13, 0.000
+20140311, -0.62, -0.55, -0.19, 0.49, -0.04, 0.000
+20140312, 0.13, 0.29, -0.17, -0.08, -0.42, 0.000
+20140313, -1.21, -0.06, 0.27, 0.15, 0.04, 0.000
+20140314, -0.16, 0.68, -0.05, 0.17, 0.07, 0.000
+20140317, 0.90, -0.35, -0.01, 0.15, 0.03, 0.000
+20140318, 0.82, 0.69, -0.42, -0.32, -0.27, 0.000
+20140319, -0.59, -0.12, 0.61, -0.35, 0.03, 0.000
+20140320, 0.52, -0.36, 0.99, -0.12, 0.32, 0.000
+20140321, -0.37, -0.17, 0.88, 0.48, 0.46, 0.000
+20140324, -0.64, -0.79, 0.96, 0.61, 0.36, 0.000
+20140325, 0.30, -0.33, 0.13, 0.26, 0.14, 0.000
+20140326, -0.89, -1.12, 0.30, 0.69, 0.46, 0.000
+20140327, -0.19, -0.13, -0.25, 0.06, 0.02, 0.000
+20140328, 0.41, -0.37, 0.52, 0.57, 0.31, 0.000
+20140331, 0.97, 0.98, -0.17, -0.20, 0.02, 0.000
+20140401, 0.87, 0.66, -0.40, -0.12, -0.27, 0.000
+20140402, 0.29, 0.04, 0.12, 0.09, 0.04, 0.000
+20140403, -0.31, -0.78, 0.78, 0.52, 0.40, 0.000
+20140404, -1.47, -1.03, 0.74, 0.63, 0.47, 0.000
+20140407, -1.26, -0.35, -0.02, 0.24, 0.06, 0.000
+20140408, 0.50, 0.28, -0.23, -0.01, -0.12, 0.000
+20140409, 1.20, 0.24, -0.93, -0.42, -0.53, 0.000
+20140410, -2.24, -0.62, 0.86, 0.81, 0.76, 0.000
+20140411, -1.07, -0.40, 0.29, 0.44, 0.04, 0.000
+20140414, 0.70, -0.48, 0.20, 0.34, -0.17, 0.000
+20140415, 0.59, -0.36, 0.17, -0.09, -0.15, 0.000
+20140416, 1.13, -0.01, -0.45, -0.06, -0.10, 0.000
+20140417, 0.23, 0.31, 0.24, -0.18, 0.17, 0.000
+20140421, 0.36, 0.17, -0.43, 0.05, -0.07, 0.000
+20140422, 0.58, 0.69, -0.37, -0.70, -0.08, 0.000
+20140423, -0.31, -0.54, 0.89, 0.22, 0.24, 0.000
+20140424, 0.08, -0.42, -0.18, 0.23, -0.20, 0.000
+20140425, -1.05, -0.88, 0.60, 0.80, 0.66, 0.000
+20140428, 0.11, -0.66, -0.54, 1.15, 0.02, 0.000
+20140429, 0.56, -0.25, -0.22, -0.56, -0.19, 0.000
+20140430, 0.35, 0.22, -0.04, 0.09, 0.05, 0.000
+20140501, 0.04, -0.16, -0.17, -0.48, -0.20, 0.000
+20140502, -0.07, 0.27, 0.34, 0.34, 0.16, 0.000
+20140505, 0.13, -0.38, -0.52, 0.13, -0.27, 0.000
+20140506, -1.03, -0.49, 0.16, 0.83, 0.13, 0.000
+20140507, 0.45, -0.75, 1.17, 0.02, 0.56, 0.000
+20140508, -0.26, -0.96, 0.38, 0.12, 0.26, 0.000
+20140509, 0.25, 0.63, -0.37, -0.10, -0.07, 0.000
+20140512, 1.20, 1.36, -0.29, -0.45, -0.32, 0.000
+20140513, -0.05, -1.04, 0.18, -0.03, 0.00, 0.000
+20140514, -0.60, -1.12, -0.43, 0.16, -0.22, 0.000
+20140515, -0.90, 0.33, -0.27, 0.20, -0.06, 0.000
+20140516, 0.36, 0.22, -0.40, 0.23, -0.16, 0.000
+20140519, 0.50, 0.64, 0.00, -0.31, -0.07, 0.000
+20140520, -0.78, -0.78, 0.23, 0.14, -0.11, 0.000
+20140521, 0.81, -0.27, 0.04, 0.01, -0.15, 0.000
+20140522, 0.36, 0.61, -0.27, -0.53, -0.22, 0.000
+20140523, 0.49, 0.60, -0.23, -0.09, -0.04, 0.000
+20140527, 0.69, 0.67, -0.19, -0.52, -0.29, 0.000
+20140528, -0.11, -0.28, 0.27, 0.07, 0.14, 0.000
+20140529, 0.54, -0.22, -0.12, -0.03, -0.22, 0.000
+20140530, 0.06, -0.64, 0.28, 0.34, 0.09, 0.000
+20140602, 0.06, -0.65, 0.41, 0.16, 0.18, 0.000
+20140603, -0.05, -0.24, 0.18, 0.09, -0.16, 0.000
+20140604, 0.28, 0.23, -0.09, -0.22, -0.18, 0.000
+20140605, 0.77, 1.28, -0.18, -0.17, -0.10, 0.000
+20140606, 0.54, 0.49, 0.00, -0.15, -0.09, 0.000
+20140609, 0.22, 1.00, -0.30, -0.36, -0.05, 0.000
+20140610, -0.03, -0.19, -0.04, -0.35, 0.08, 0.000
+20140611, -0.34, -0.17, -0.29, -0.13, -0.16, 0.000
+20140612, -0.68, 0.11, 0.16, -0.24, -0.03, 0.000
+20140613, 0.31, -0.06, -0.19, 0.08, -0.12, 0.000
+20140616, 0.13, 0.41, -0.67, -0.08, -0.30, 0.000
+20140617, 0.34, 0.57, 0.46, -0.51, 0.06, 0.000
+20140618, 0.75, -0.25, -0.09, 0.06, -0.19, 0.000
+20140619, 0.12, -0.15, -0.06, 0.15, -0.09, 0.000
+20140620, 0.18, 0.21, 0.04, 0.02, 0.01, 0.000
+20140623, -0.01, -0.22, 0.08, -0.06, -0.17, 0.000
+20140624, -0.72, -0.37, -0.20, 0.00, 0.03, 0.000
+20140625, 0.53, 0.34, 0.06, -0.15, -0.22, 0.000
+20140626, -0.11, -0.08, 0.05, 0.10, -0.06, 0.000
+20140627, 0.26, 0.47, -0.23, 0.11, -0.13, 0.000
+20140630, 0.07, 0.26, 0.19, -0.26, -0.15, 0.000
+20140701, 0.74, 0.43, -0.37, 0.09, -0.12, 0.000
+20140702, -0.03, -0.46, -0.21, 0.07, 0.22, 0.000
+20140703, 0.59, 0.21, 0.08, 0.03, 0.22, 0.000
+20140707, -0.62, -1.20, 0.38, 0.74, 0.28, 0.000
+20140708, -0.82, -0.56, 0.71, 0.82, 0.46, 0.000
+20140709, 0.46, -0.40, -0.12, -0.03, -0.10, 0.000
+20140710, -0.49, -0.59, 0.02, 0.06, 0.08, 0.000
+20140711, 0.12, -0.31, -0.39, -0.38, -0.16, 0.000
+20140714, 0.46, -0.01, -0.13, 0.01, -0.16, 0.000
+20140715, -0.32, -0.82, 0.98, 0.21, 0.37, 0.000
+20140716, 0.32, -0.58, 0.32, 0.19, 0.19, 0.000
+20140717, -1.21, -0.35, 0.18, 0.40, 0.18, 0.000
+20140718, 1.12, 0.44, -0.47, -0.25, -0.33, 0.000
+20140721, -0.25, -0.23, 0.05, -0.34, -0.30, 0.000
+20140722, 0.53, 0.27, -0.32, 0.21, -0.18, 0.000
+20140723, 0.19, 0.10, -0.74, -0.23, 0.02, 0.000
+20140724, 0.05, -0.28, 0.04, -0.20, -0.04, 0.000
+20140725, -0.53, -0.36, 0.17, -0.04, 0.06, 0.000
+20140728, -0.08, -0.45, 0.28, 0.04, 0.00, 0.000
+20140729, -0.33, 0.63, -0.67, -0.18, -0.14, 0.000
+20140730, 0.12, 0.35, -0.29, -0.64, -0.33, 0.000
+20140731, -2.03, -0.16, 0.47, 0.36, 0.29, 0.000
+20140801, -0.32, -0.25, -0.06, 0.09, 0.14, 0.000
+20140804, 0.74, 0.04, -0.22, -0.10, -0.43, 0.000
+20140805, -0.84, 0.71, -0.19, -0.14, 0.02, 0.000
+20140806, 0.02, 0.39, 0.18, -0.03, 0.26, 0.000
+20140807, -0.52, -0.06, -0.14, -0.01, -0.03, 0.000
+20140808, 1.13, -0.14, -0.18, 0.36, 0.15, 0.000
+20140811, 0.40, 0.56, -0.29, -0.17, -0.28, 0.000
+20140812, -0.23, -0.57, 0.25, 0.05, 0.02, 0.000
+20140813, 0.69, -0.14, -0.24, -0.38, -0.21, 0.000
+20140814, 0.44, -0.26, 0.04, -0.21, 0.00, 0.000
+20140815, 0.00, -0.15, -0.15, 0.18, -0.22, 0.000
+20140818, 0.93, 0.59, -0.20, 0.03, 0.02, 0.000
+20140819, 0.49, -0.12, -0.11, 0.26, -0.13, 0.000
+20140820, 0.19, -0.64, 0.27, 0.00, 0.28, 0.000
+20140821, 0.28, -0.07, 0.82, -0.10, 0.25, 0.000
+20140822, -0.10, 0.27, -0.39, -0.05, -0.19, 0.000
+20140825, 0.50, -0.21, 0.04, -0.03, -0.08, 0.000
+20140826, 0.19, 0.67, -0.33, -0.36, -0.18, 0.000
+20140827, 0.00, -0.22, 0.15, 0.12, 0.10, 0.000
+20140828, -0.19, -0.39, 0.10, 0.20, 0.01, 0.000
+20140829, 0.39, 0.28, 0.09, -0.31, -0.16, 0.000
+20140902, 0.06, 0.42, -0.09, -0.08, -0.24, 0.000
+20140903, -0.14, -0.49, 0.23, 0.03, 0.42, 0.000
+20140904, -0.17, -0.16, -0.15, 0.16, 0.01, 0.000
+20140905, 0.45, -0.27, -0.06, 0.13, 0.00, 0.000
+20140908, -0.22, 0.47, -0.44, -0.38, -0.25, 0.000
+20140909, -0.72, -0.42, -0.02, 0.27, 0.14, 0.000
+20140910, 0.45, 0.15, -0.40, -0.27, -0.19, 0.000
+20140911, 0.19, 0.49, 0.20, -0.25, 0.01, 0.000
+20140912, -0.55, -0.19, 0.14, -0.09, 0.13, 0.000
+20140915, -0.28, -0.93, 0.66, 0.46, 0.71, 0.000
+20140916, 0.70, -0.39, -0.13, 0.16, -0.18, 0.000
+20140917, 0.17, 0.08, -0.20, -0.25, -0.19, 0.000
+20140918, 0.50, 0.00, 0.03, -0.12, -0.04, 0.000
+20140919, -0.18, -0.96, 0.05, 0.19, -0.04, 0.000
+20140922, -0.97, -0.54, 0.13, 0.43, 0.21, 0.000
+20140923, -0.62, -0.32, -0.05, -0.02, -0.26, 0.000
+20140924, 0.81, 0.04, -0.92, 0.09, -0.44, 0.000
+20140925, -1.62, 0.13, 0.15, 0.30, 0.27, 0.000
+20140926, 0.85, -0.07, -0.27, 0.08, -0.48, 0.000
+20140929, -0.22, 0.19, -0.44, 0.16, -0.27, 0.000
+20140930, -0.40, -1.01, 0.14, 0.04, -0.01, 0.000
+20141001, -1.39, -0.14, 0.33, 0.20, -0.05, 0.000
+20141002, 0.15, 0.97, -0.38, -0.32, -0.30, 0.000
+20141003, 1.08, -0.39, -0.41, -0.10, -0.12, 0.000
+20141006, -0.26, -0.77, 0.39, 0.32, 0.17, 0.000
+20141007, -1.56, -0.12, 0.12, 0.27, 0.05, 0.000
+20141008, 1.70, -0.01, -0.06, -0.01, -0.07, 0.000
+20141009, -2.17, -0.47, -0.40, 0.40, -0.13, 0.000
+20141010, -1.30, -0.07, 0.56, 0.73, 0.38, 0.000
+20141013, -1.59, 1.31, 0.50, -0.32, 0.22, 0.000
+20141014, 0.28, 0.82, -0.12, 0.02, 0.08, 0.000
+20141015, -0.53, 1.65, -1.31, -0.49, -0.60, 0.000
+20141016, 0.23, 1.08, 0.17, -0.43, 0.12, 0.000
+20141017, 1.14, -1.56, -0.10, 0.01, 0.28, 0.000
+20141020, 0.94, 0.13, -0.33, 0.08, -0.34, 0.000
+20141021, 1.98, -0.41, 0.03, 0.07, -0.14, 0.000
+20141022, -0.85, -0.55, 0.22, 0.11, 0.20, 0.000
+20141023, 1.29, 0.44, -0.46, -0.31, -0.05, 0.000
+20141024, 0.66, -0.50, -0.11, -0.34, 0.11, 0.000
+20141027, -0.17, 0.07, -0.26, 0.13, -0.02, 0.000
+20141028, 1.37, 1.56, -0.02, -0.38, -0.19, 0.000
+20141029, -0.18, 0.04, 0.43, 0.24, 0.29, 0.000
+20141030, 0.60, 0.21, -0.47, -0.44, 0.08, 0.000
+20141031, 1.23, 0.32, 0.19, 0.18, -0.01, 0.000
+20141103, -0.01, -0.30, -0.06, 0.03, 0.13, 0.000
+20141104, -0.35, -0.05, -0.11, 0.11, 0.04, 0.000
+20141105, 0.48, -0.41, 0.86, 0.30, 0.78, 0.000
+20141106, 0.49, 0.05, -0.48, 0.13, -0.28, 0.000
+20141107, 0.09, 0.03, 0.44, -0.20, 0.04, 0.000
+20141110, 0.33, 0.15, -0.50, -0.27, -0.42, 0.000
+20141111, 0.10, 0.00, -0.29, 0.12, -0.26, 0.000
+20141112, 0.07, 0.71, -0.29, 0.19, 0.07, 0.000
+20141113, -0.03, -0.91, -0.33, 0.55, 0.02, 0.000
+20141114, 0.06, -0.13, 0.14, 0.02, -0.12, 0.000
+20141117, -0.05, -0.94, 0.28, 0.00, 0.25, 0.000
+20141118, 0.51, -0.01, -0.36, -0.15, -0.02, 0.000
+20141119, -0.21, -0.87, -0.06, 0.37, 0.10, 0.000
+20141120, 0.31, 0.87, -0.03, -0.05, -0.03, 0.000
+20141121, 0.48, -0.37, -0.08, -0.08, 0.04, 0.000
+20141124, 0.40, 0.90, -0.58, -0.21, -0.08, 0.000
+20141125, -0.08, 0.05, -0.04, 0.09, 0.16, 0.000
+20141126, 0.30, 0.03, -0.45, -0.19, -0.20, 0.000
+20141128, -0.35, -1.02, -1.02, 0.63, -0.04, 0.000
+20141201, -0.90, -0.87, 0.61, 0.13, 0.52, 0.000
+20141202, 0.65, 0.46, 0.05, -0.47, 0.03, 0.000
+20141203, 0.46, 0.46, 0.30, -0.16, 0.04, 0.000
+20141204, -0.17, -0.35, 0.09, 0.07, -0.18, 0.000
+20141205, 0.25, 0.57, 0.25, -0.63, 0.15, 0.000
+20141208, -0.82, -0.57, 0.27, 0.00, 0.09, 0.000
+20141209, 0.13, 1.68, -0.29, -0.45, -0.34, 0.000
+20141210, -1.72, -0.62, -0.10, 0.12, 0.16, 0.000
+20141211, 0.49, -0.06, -0.20, 0.20, 0.02, 0.000
+20141212, -1.55, 0.45, -0.58, 0.21, -0.29, 0.000
+20141215, -0.68, -0.24, 0.11, 0.67, 0.16, 0.000
+20141216, -0.80, 0.70, 0.59, -0.12, 0.45, 0.000
+20141217, 2.15, 0.90, -0.10, -0.43, -0.41, 0.000
+20141218, 2.36, -0.91, -0.21, -0.42, -0.23, 0.000
+20141219, 0.43, -0.22, 0.19, -0.48, 0.00, 0.000
+20141222, 0.37, 0.19, -0.04, 0.18, 0.07, 0.000
+20141223, 0.21, -0.12, 1.05, 0.59, 0.62, 0.000
+20141224, 0.07, 0.34, -0.17, -0.12, -0.07, 0.000
+20141226, 0.39, 0.34, -0.32, -0.08, -0.18, 0.000
+20141229, 0.13, 0.21, 0.56, 0.18, 0.18, 0.000
+20141230, -0.48, 0.07, 0.34, -0.07, 0.30, 0.000
+20141231, -0.93, 0.47, -0.39, -0.13, -0.22, 0.000
+20150102, -0.11, -0.56, 0.09, -0.25, 0.10, 0.000
+20150105, -1.84, 0.25, -0.63, 0.16, -0.12, 0.000
+20150106, -1.04, -0.78, -0.26, 0.53, 0.04, 0.000
+20150107, 1.19, 0.15, -0.65, 0.23, -0.14, 0.000
+20150108, 1.81, -0.10, -0.28, 0.10, -0.20, 0.000
+20150109, -0.85, -0.02, -0.50, -0.11, -0.18, 0.000
+20150112, -0.79, 0.34, -0.37, 0.15, 0.20, 0.000
+20150113, -0.19, 0.26, 0.03, 0.46, 0.03, 0.000
+20150114, -0.60, 0.27, -0.49, 0.19, -0.14, 0.000
+20150115, -1.08, -0.94, 0.64, 0.67, 0.60, 0.000
+20150116, 1.36, 0.50, -0.15, -0.29, -0.10, 0.000
+20150120, 0.11, -0.75, -0.55, 0.00, -0.53, 0.000
+20150121, 0.42, -0.92, 0.55, 0.19, -0.01, 0.000
+20150122, 1.58, 0.45, 0.41, 0.05, -0.11, 0.000
+20150123, -0.47, 0.44, -0.82, -0.04, -0.58, 0.000
+20150126, 0.43, 0.57, -0.05, -0.44, -0.09, 0.000
+20150127, -1.21, 0.75, 0.23, -0.39, 0.51, 0.000
+20150128, -1.39, -0.18, -0.76, 0.55, -0.19, 0.000
+20150129, 0.98, 0.20, -0.01, 0.08, -0.35, 0.000
+20150130, -1.30, -0.82, 0.03, -0.12, -0.44, 0.000
+20150202, 1.25, -0.39, 0.99, 0.04, 0.18, 0.000
+20150203, 1.49, 0.25, 0.51, 0.09, 0.44, 0.000
+20150204, -0.35, -0.10, -0.21, 0.29, -0.14, 0.000
+20150205, 1.10, 0.44, -0.16, -0.49, -0.20, 0.000
+20150206, -0.20, 0.07, 0.38, -0.19, -0.09, 0.000
+20150209, -0.46, -0.37, 0.10, 0.00, 0.00, 0.000
+20150210, 1.04, -0.37, -0.70, 0.10, -0.44, 0.000
+20150211, 0.03, -0.17, -0.32, 0.09, -0.07, 0.000
+20150212, 1.00, 0.19, -0.10, -0.15, -0.16, 0.000
+20150213, 0.47, 0.16, -0.29, -0.30, -0.22, 0.000
+20150217, 0.17, -0.02, -0.01, -0.18, -0.16, 0.000
+20150218, 0.03, 0.24, -0.81, 0.29, -0.17, 0.000
+20150219, -0.01, 0.21, -0.36, -0.04, -0.39, 0.000
+20150220, 0.61, -0.44, -0.27, -0.07, -0.11, 0.000
+20150223, -0.08, 0.04, -0.37, 0.38, -0.21, 0.000
+20150224, 0.32, -0.01, 0.68, -0.22, 0.35, 0.000
+20150225, 0.02, 0.19, -0.51, -0.55, -0.22, 0.000
+20150226, -0.08, 0.52, -0.49, -0.18, -0.35, 0.000
+20150227, -0.36, -0.22, 0.22, 0.04, 0.32, 0.000
+20150302, 0.62, 0.20, -0.43, 0.05, 0.07, 0.000
+20150303, -0.43, -0.30, 0.30, -0.07, 0.00, 0.000
+20150304, -0.41, 0.10, -0.40, -0.04, -0.26, 0.000
+20150305, 0.15, 0.21, -0.43, -0.52, -0.14, 0.000
+20150306, -1.29, 0.29, 0.43, -0.12, 0.01, 0.000
+20150309, 0.37, 0.09, -0.02, 0.26, -0.03, 0.000
+20150310, -1.63, 0.42, -0.46, 0.08, -0.14, 0.000
+20150311, -0.04, 0.62, 0.52, -0.47, -0.03, 0.000
+20150312, 1.28, 0.40, 0.50, -0.06, 0.23, 0.000
+20150313, -0.57, 0.19, -0.04, -0.11, -0.13, 0.000
+20150316, 1.23, -0.78, -0.42, -0.09, -0.15, 0.000
+20150317, -0.20, 0.52, -0.03, -0.01, -0.31, 0.000
+20150318, 1.08, -0.49, 0.00, 0.16, -0.02, 0.000
+20150319, -0.36, 0.79, -1.11, 0.11, -0.42, 0.000
+20150320, 0.81, -0.10, 0.54, 0.46, 0.25, 0.000
+20150323, -0.19, 0.20, 0.24, 0.18, 0.31, 0.000
+20150324, -0.51, 0.52, -0.29, 0.10, -0.20, 0.000
+20150325, -1.56, -0.89, 1.04, 0.34, 0.53, 0.000
+20150326, -0.22, 0.10, -0.06, 0.07, -0.22, 0.000
+20150327, 0.32, 0.43, -0.70, -0.15, -0.14, 0.000
+20150330, 1.24, 0.06, -0.04, -0.26, 0.01, 0.000
+20150331, -0.75, 0.45, 0.38, 0.17, 0.26, 0.000
+20150401, -0.38, 0.34, 0.43, -0.17, 0.25, 0.000
+20150402, 0.35, -0.11, 0.30, -0.12, 0.25, 0.000
+20150406, 0.61, -0.28, -0.15, 0.22, -0.22, 0.000
+20150407, -0.22, -0.19, -0.16, -0.18, -0.23, 0.000
+20150408, 0.37, 0.47, -0.72, -0.07, -0.28, 0.000
+20150409, 0.41, -0.71, -0.06, -0.27, 0.15, 0.000
+20150410, 0.49, -0.16, -0.28, -0.48, 0.20, 0.000
+20150413, -0.38, 0.55, 0.23, -0.14, -0.13, 0.000
+20150414, 0.11, -0.13, 0.19, 0.09, 0.09, 0.000
+20150415, 0.57, 0.27, 0.32, -0.19, -0.07, 0.000
+20150416, -0.08, -0.10, -0.20, -0.23, -0.21, 0.000
+20150417, -1.23, -0.43, 0.23, 0.13, 0.10, 0.000
+20150420, 0.95, 0.14, -0.27, 0.46, -0.32, 0.000
+20150421, -0.10, 0.13, -0.76, 0.11, -0.25, 0.000
+20150422, 0.46, -0.40, 0.16, -0.05, -0.02, 0.000
+20150423, 0.29, 0.30, -0.22, -0.05, -0.19, 0.000
+20150424, 0.17, -0.55, -0.28, 0.79, -0.52, 0.000
+20150427, -0.54, -0.68, 0.56, 0.50, -0.03, 0.000
+20150428, 0.27, 0.26, 1.02, 0.07, 0.45, 0.000
+20150429, -0.38, -0.72, 0.74, -0.77, -0.01, 0.000
+20150430, -1.11, -1.03, 0.77, 0.20, 0.47, 0.000
+20150501, 1.01, -0.31, -0.63, 0.30, -0.18, 0.000
+20150504, 0.32, 0.09, 0.24, -0.17, 0.03, 0.000
+20150505, -1.19, -0.14, 0.51, -0.01, 0.30, 0.000
+20150506, -0.31, 0.60, -0.14, -0.25, 0.11, 0.000
+20150507, 0.39, -0.01, -0.39, -0.22, -0.02, 0.000
+20150508, 1.21, -0.56, -0.12, -0.31, -0.23, 0.000
+20150511, -0.39, 0.66, -0.03, -0.05, 0.01, 0.000
+20150512, -0.27, 0.00, 0.07, -0.15, -0.01, 0.000
+20150513, 0.01, 0.00, 0.02, -0.07, 0.03, 0.000
+20150514, 1.01, -0.16, -0.35, 0.13, -0.44, 0.000
+20150515, 0.05, -0.22, -0.20, 0.22, 0.26, 0.000
+20150518, 0.44, 0.73, -0.09, -0.17, -0.28, 0.000
+20150519, -0.09, -0.07, 0.23, -0.09, -0.04, 0.000
+20150520, -0.05, 0.19, -0.13, -0.13, 0.07, 0.000
+20150521, 0.23, -0.30, -0.02, 0.07, -0.15, 0.000
+20150522, -0.22, -0.13, -0.14, -0.13, -0.07, 0.000
+20150526, -1.01, -0.03, -0.01, -0.12, 0.16, 0.000
+20150527, 0.93, 0.29, -0.35, -0.03, -0.33, 0.000
+20150528, -0.12, 0.11, 0.13, -0.23, 0.09, 0.000
+20150529, -0.58, 0.05, 0.06, -0.27, -0.02, 0.000
+20150601, 0.17, -0.06, -0.22, 0.22, -0.37, 0.000
+20150602, -0.02, 0.32, 0.33, -0.20, 0.17, 0.000
+20150603, 0.39, 0.86, -0.24, -0.12, -0.04, 0.000
+20150604, -0.88, -0.08, -0.01, 0.19, -0.03, 0.000
+20150605, 0.06, 0.83, 0.05, -0.53, -0.38, 0.000
+20150608, -0.66, 0.06, 0.03, 0.05, 0.05, 0.000
+20150609, 0.02, -0.28, 0.35, 0.13, 0.10, 0.000
+20150610, 1.20, 0.16, 0.19, -0.02, 0.02, 0.000
+20150611, 0.21, -0.09, -0.11, 0.16, 0.00, 0.000
+20150612, -0.63, 0.34, 0.14, 0.06, 0.10, 0.000
+20150615, -0.45, 0.15, -0.13, -0.20, -0.25, 0.000
+20150616, 0.57, 0.10, 0.00, 0.14, -0.07, 0.000
+20150617, 0.16, -0.31, -0.63, 0.15, -0.09, 0.000
+20150618, 0.99, 0.16, -0.43, -0.13, -0.15, 0.000
+20150619, -0.43, 0.51, -0.20, 0.07, -0.05, 0.000
+20150622, 0.63, 0.09, -0.06, -0.16, -0.24, 0.000
+20150623, 0.12, 0.24, 0.27, -0.08, 0.00, 0.000
+20150624, -0.79, -0.14, 0.13, 0.18, -0.01, 0.000
+20150625, -0.25, 0.34, -0.20, 0.18, -0.08, 0.000
+20150626, -0.06, -0.19, 0.45, 0.32, 0.35, 0.000
+20150629, -2.15, -0.41, 0.19, 0.30, 0.10, 0.000
+20150630, 0.34, 0.29, -0.67, -0.31, -0.63, 0.000
+20150701, 0.60, -0.75, -0.07, 0.19, 0.08, 0.000
+20150702, -0.11, -0.61, -0.05, -0.07, 0.01, 0.000
+20150706, -0.37, 0.08, -0.55, -0.21, -0.22, 0.000
+20150707, 0.53, -0.48, -0.25, 0.42, -0.02, 0.000
+20150708, -1.68, -0.04, 0.07, 0.13, 0.12, 0.000
+20150709, 0.29, 0.18, -0.02, -0.29, -0.24, 0.000
+20150710, 1.24, 0.18, -0.55, -0.20, -0.07, 0.000
+20150713, 1.14, -0.12, -0.42, 0.10, -0.31, 0.000
+20150714, 0.47, 0.11, 0.13, -0.33, -0.36, 0.000
+20150715, -0.19, -0.80, -0.08, -0.25, -0.30, 0.000
+20150716, 0.78, -0.25, -0.62, -0.25, -0.65, 0.000
+20150717, 0.05, -0.68, -0.64, -0.26, -0.93, 0.000
+20150720, -0.01, -0.80, -0.57, 0.34, -0.30, 0.000
+20150721, -0.47, 0.06, 0.29, -0.22, -0.07, 0.000
+20150722, -0.18, 0.27, 0.19, -0.35, 0.11, 0.000
+20150723, -0.60, -0.39, -0.34, -0.05, -0.03, 0.000
+20150724, -1.08, -0.66, -0.02, 0.00, -0.01, 0.000
+20150727, -0.74, -0.25, 0.08, 0.08, 0.38, 0.000
+20150728, 1.23, -0.33, -0.12, 0.06, 0.14, 0.000
+20150729, 0.74, -0.22, 0.52, 0.89, 0.30, 0.000
+20150730, 0.12, 0.19, -0.26, 0.10, -0.13, 0.000
+20150731, -0.15, 0.73, -0.98, 0.24, -0.06, 0.000
+20150803, -0.35, -0.32, -0.16, 0.07, 0.04, 0.000
+20150804, -0.14, 0.04, -0.19, -0.03, 0.19, 0.000
+20150805, 0.36, -0.07, -0.45, 0.01, -0.06, 0.000
+20150806, -0.88, -0.37, 1.99, 0.23, 0.74, 0.000
+20150807, -0.36, -0.40, -0.35, 0.32, 0.18, 0.000
+20150810, 1.32, 0.19, 0.69, 0.22, 0.04, 0.000
+20150811, -0.98, -0.06, 0.43, 0.10, 0.08, 0.000
+20150812, 0.07, -0.19, -0.28, -0.11, -0.16, 0.000
+20150813, -0.14, -0.40, 0.02, 0.13, -0.09, 0.000
+20150814, 0.43, 0.13, 0.43, -0.09, 0.06, 0.000
+20150817, 0.60, 0.35, -0.88, -0.21, -0.42, 0.000
+20150818, -0.35, -0.61, 0.35, 0.36, 0.10, 0.000
+20150819, -0.85, -0.20, -0.22, -0.13, -0.03, 0.000
+20150820, -2.24, -0.21, 0.60, 0.60, 0.67, 0.000
+20150821, -2.95, 1.80, 0.15, -0.72, 0.84, 0.000
+20150824, -3.90, 0.27, -0.43, 0.41, 0.12, 0.000
+20150825, -1.17, 0.57, -0.61, -0.27, -0.64, 0.000
+20150826, 3.68, -1.43, -0.38, 0.19, -0.67, 0.000
+20150827, 2.40, -0.61, 0.60, -0.28, -0.24, 0.000
+20150828, 0.23, 0.98, 0.08, -0.16, 0.08, 0.000
+20150831, -0.74, 0.90, 1.41, 0.11, 0.50, 0.000
+20150901, -2.91, 0.26, -0.50, -0.03, 0.09, 0.000
+20150902, 1.81, -0.31, -0.93, 0.21, -0.69, 0.000
+20150903, 0.17, -0.18, 0.73, 0.35, 0.78, 0.000
+20150904, -1.39, 0.82, -0.58, -0.07, -0.45, 0.000
+20150908, 2.52, -0.41, -0.56, -0.06, -0.29, 0.000
+20150909, -1.34, 0.17, 0.12, 0.18, 0.01, 0.000
+20150910, 0.49, -0.20, -0.31, -0.24, -0.69, 0.000
+20150911, 0.44, -0.28, -0.70, -0.05, -0.29, 0.000
+20150914, -0.41, 0.03, 0.01, -0.04, -0.07, 0.000
+20150915, 1.22, -0.15, 0.25, 0.00, 0.09, 0.000
+20150916, 0.84, 0.06, 0.44, 0.33, 0.22, 0.000
+20150917, -0.17, 0.76, -1.49, -0.28, -0.53, 0.000
+20150918, -1.62, 0.27, -0.96, -0.42, -0.54, 0.000
+20150921, 0.36, -0.83, 1.20, 0.46, 0.22, 0.000
+20150922, -1.29, -0.29, 0.14, 0.29, 0.08, 0.000
+20150923, -0.27, -0.21, -0.14, -0.16, -0.27, 0.000
+20150924, -0.36, 0.25, 0.56, -0.05, 0.03, 0.000
+20150925, -0.22, -1.43, 1.87, 0.54, 0.70, 0.000
+20150928, -2.63, -0.18, 1.17, 0.63, 0.72, 0.000
+20150929, -0.07, -0.59, 0.72, 0.72, 0.65, 0.000
+20150930, 1.88, -0.49, -0.48, -0.41, -0.34, 0.000
+20151001, 0.13, -0.52, -0.04, -0.15, -0.21, 0.000
+20151002, 1.48, 0.28, -0.84, -0.10, -0.03, 0.000
+20151005, 1.93, 0.74, 0.77, 0.14, 0.64, 0.000
+20151006, -0.43, -0.09, 1.73, 0.35, 0.58, 0.000
+20151007, 0.94, 0.68, -0.24, -0.23, -0.01, 0.000
+20151008, 0.84, 0.35, 0.76, 0.54, 0.74, 0.000
+20151009, 0.12, 0.10, -1.08, 0.16, -0.16, 0.000
+20151012, 0.06, -0.43, -0.07, 0.12, -0.09, 0.000
+20151013, -0.74, -0.66, 0.69, 0.29, 0.21, 0.000
+20151014, -0.60, -0.27, -0.03, -0.48, 0.36, 0.000
+20151015, 1.56, 0.60, -0.15, -1.10, -0.51, 0.000
+20151016, 0.36, -0.55, -0.35, 0.00, 0.02, 0.000
+20151019, 0.00, 0.09, -0.71, 0.13, -0.34, 0.000
+20151020, -0.15, 0.16, 1.21, 0.48, 0.27, 0.000
+20151021, -0.74, -0.89, -0.18, 0.46, 0.23, 0.000
+20151022, 1.50, -0.76, 0.47, 0.06, 0.57, 0.000
+20151023, 1.09, -0.08, -0.59, 0.19, -0.85, 0.000
+20151026, -0.20, -0.46, -0.71, 0.20, -0.16, 0.000
+20151027, -0.42, -1.06, -0.88, -0.42, -0.51, 0.000
+20151028, 1.43, 1.50, 0.63, -0.68, -0.25, 0.000
+20151029, -0.20, -0.89, 0.10, 0.41, -0.20, 0.000
+20151030, -0.41, 0.21, -0.55, 0.35, 0.08, 0.000
+20151102, 1.25, 0.90, -0.01, -0.49, -0.05, 0.000
+20151103, 0.32, 0.46, 0.22, 0.03, -0.10, 0.000
+20151104, -0.26, 0.18, -0.33, -0.60, -0.69, 0.000
+20151105, -0.08, 0.05, 0.47, 0.04, 0.14, 0.000
+20151106, 0.14, 0.85, 0.28, -0.54, -0.20, 0.000
+20151109, -0.95, -0.26, -0.04, -0.65, -0.01, 0.000
+20151110, 0.13, 0.01, 0.26, -0.11, 0.20, 0.000
+20151111, -0.43, -0.57, -0.18, -0.13, 0.06, 0.000
+20151112, -1.45, -0.56, -0.45, 0.17, -0.27, 0.000
+20151113, -1.06, 0.32, 0.39, -0.62, 0.42, 0.000
+20151116, 1.39, -0.53, 0.46, 0.18, -0.14, 0.000
+20151117, -0.11, -0.24, -0.66, 0.02, -0.17, 0.000
+20151118, 1.61, -0.02, -0.09, -0.10, -0.40, 0.000
+20151119, -0.13, -0.28, -0.11, 0.17, 0.14, 0.000
+20151120, 0.35, 0.40, -0.41, 0.29, 0.01, 0.000
+20151123, -0.01, 0.61, -0.35, 0.12, -0.18, 0.000
+20151124, 0.21, 0.75, 0.26, 0.24, 0.10, 0.000
+20151125, 0.09, 0.84, -0.56, -0.09, -0.10, 0.000
+20151127, 0.09, 0.19, -0.29, -0.18, 0.07, 0.000
+20151130, -0.47, 0.20, 0.69, -0.23, 0.09, 0.000
+20151201, 0.97, -0.64, 0.24, -0.09, -0.14, 0.000
+20151202, -1.01, 0.19, -0.70, 0.02, -0.15, 0.000
+20151203, -1.50, -0.21, 0.42, 0.34, 0.17, 0.000
+20151204, 1.87, -1.06, -0.52, 0.12, -0.33, 0.000
+20151207, -0.84, -0.87, -0.66, 0.69, 0.18, 0.000
+20151208, -0.59, 0.27, -1.23, -0.15, -0.78, 0.000
+20151209, -0.83, -0.21, 0.42, 0.47, 0.63, 0.000
+20151210, 0.30, 0.09, -0.22, 0.11, -0.19, 0.000
+20151211, -2.03, -0.20, -0.06, 0.18, 0.35, 0.000
+20151214, 0.29, -1.12, -0.20, 0.14, -0.33, 0.000
+20151215, 1.10, 0.20, 0.77, -0.83, 0.13, 0.000
+20151216, 1.47, 0.01, -0.64, -0.11, -0.17, 0.000
+20151217, -1.46, 0.31, -0.31, -0.22, -0.05, 0.000
+20151218, -1.70, 0.70, -0.39, -0.29, 0.19, 0.000
+20151221, 0.74, -0.18, -0.06, -0.14, 0.04, 0.000
+20151222, 0.89, 0.02, 0.51, 0.20, 0.51, 0.000
+20151223, 1.30, 0.23, 0.58, -0.01, 0.13, 0.000
+20151224, -0.11, 0.27, -0.03, -0.21, 0.08, 0.000
+20151228, -0.29, -0.54, -0.38, 0.08, -0.07, 0.000
+20151229, 1.05, 0.03, -0.31, 0.03, -0.33, 0.000
+20151230, -0.74, -0.17, -0.14, 0.04, 0.15, 0.000
+20151231, -0.92, -0.21, 0.24, -0.12, 0.10, 0.000
+20160104, -1.59, -0.73, 0.53, 0.35, 0.42, 0.000
+20160105, 0.12, -0.25, 0.01, 0.03, 0.36, 0.000
+20160106, -1.35, -0.21, 0.00, 0.15, 0.05, 0.000
+20160107, -2.44, -0.27, 0.08, 0.48, 0.43, 0.000
+20160108, -1.11, -0.52, -0.03, 0.21, 0.04, 0.000
+20160111, -0.06, -0.62, 0.34, 0.65, 0.44, 0.000
+20160112, 0.71, -0.46, -0.78, -0.03, -0.31, 0.000
+20160113, -2.67, -0.56, 0.78, 0.37, 0.69, 0.000
+20160114, 1.65, -0.07, -0.40, -0.62, -0.48, 0.000
+20160115, -2.14, 0.41, -0.21, 0.32, 0.33, 0.000
+20160119, -0.20, -1.38, -0.07, 0.30, 0.26, 0.000
+20160120, -0.94, 1.69, -1.24, 0.18, -0.56, 0.000
+20160121, 0.45, -0.46, 0.01, 0.47, 0.60, 0.000
+20160122, 2.08, 0.13, -0.19, -0.46, -0.76, 0.000
+20160125, -1.71, -0.51, -0.99, 0.30, -0.01, 0.000
+20160126, 1.52, 0.58, 1.22, 0.58, 0.72, 0.000
+20160127, -1.11, -0.37, 1.71, -0.24, 1.07, 0.000
+20160128, 0.49, -0.58, 1.25, -0.25, -0.50, 0.000
+20160129, 2.57, 0.58, 0.37, 0.00, 0.46, 0.000
+20160201, -0.04, -0.32, -0.96, 0.08, -0.40, 0.001
+20160202, -2.00, -0.13, -0.35, 0.29, 0.41, 0.001
+20160203, 0.46, -0.21, 0.45, 0.42, 0.37, 0.001
+20160204, 0.27, 0.37, 0.33, 0.20, 0.09, 0.001
+20160205, -2.06, -0.72, 1.75, 1.07, 1.45, 0.001
+20160208, -1.51, 0.11, 0.89, 1.63, 0.97, 0.001
+20160209, -0.10, -0.55, -0.28, -0.06, 0.03, 0.001
+20160210, 0.01, -0.22, -0.55, -0.29, -0.79, 0.001
+20160211, -1.17, 0.28, -1.48, 0.32, -0.39, 0.001
+20160212, 1.98, -0.29, 1.14, -0.38, 0.30, 0.001
+20160216, 1.78, 0.54, -0.56, 0.03, -0.27, 0.001
+20160217, 1.75, -0.15, -0.64, -0.38, -0.49, 0.001
+20160218, -0.51, 0.00, 0.23, 0.33, 0.53, 0.001
+20160219, 0.06, 0.29, -0.63, -0.64, -0.41, 0.001
+20160222, 1.43, -0.18, 0.24, 0.25, -0.21, 0.001
+20160223, -1.22, 0.38, -0.52, 0.77, 0.51, 0.001
+20160224, 0.53, 0.64, -0.33, 0.01, 0.12, 0.001
+20160225, 1.10, -0.45, 0.22, -0.10, -0.24, 0.001
+20160226, -0.01, 0.87, 0.26, -0.53, -0.01, 0.001
+20160229, -0.69, 0.71, 0.26, 0.13, 0.42, 0.001
+20160301, 2.34, -0.64, 0.30, -0.50, -0.55, 0.001
+20160302, 0.54, 0.59, 0.70, -0.70, -0.09, 0.001
+20160303, 0.51, 0.57, 0.65, 0.31, 0.36, 0.001
+20160304, 0.37, 0.33, 0.29, 0.10, 0.03, 0.001
+20160307, 0.21, 1.33, 0.55, -0.39, 0.43, 0.001
+20160308, -1.27, -1.26, -0.49, 0.62, 0.15, 0.001
+20160309, 0.50, 0.11, 0.38, 0.18, 0.12, 0.001
+20160310, -0.11, -0.74, 0.63, 0.31, 0.18, 0.001
+20160311, 1.69, 0.29, 0.19, -0.40, -0.32, 0.001
+20160314, -0.12, -0.13, -0.87, 0.00, -0.24, 0.001
+20160315, -0.36, -1.42, 0.66, 0.46, 0.07, 0.001
+20160316, 0.63, 0.10, -0.04, 0.56, -0.04, 0.001
+20160317, 0.72, 0.97, 0.58, 0.16, 0.67, 0.001
+20160318, 0.54, 0.41, -0.19, -0.26, 0.19, 0.001
+20160321, 0.10, -0.27, -0.31, -0.08, -0.35, 0.001
+20160322, -0.05, -0.09, -0.44, -0.30, -0.26, 0.001
+20160323, -0.86, -1.20, -0.09, 0.61, 0.01, 0.001
+20160324, 0.00, 0.42, -0.05, 0.05, -0.01, 0.001
+20160328, 0.04, -0.04, 0.14, -0.04, 0.25, 0.001
+20160329, 1.07, 1.64, -1.18, 0.18, -0.57, 0.001
+20160330, 0.41, -0.27, 0.15, -0.06, 0.00, 0.001
+20160331, -0.11, 0.41, -0.48, -0.12, -0.11, 0.001
+20160401, 0.64, -0.34, -0.62, -0.37, -0.14, 0.000
+20160404, -0.41, -0.33, -0.74, -0.25, -0.23, 0.000
+20160405, -0.94, -0.18, -0.36, 0.06, 0.18, 0.000
+20160406, 1.14, 0.06, -0.82, -0.47, -0.64, 0.000
+20160407, -1.23, -0.09, -0.35, -0.01, 0.21, 0.000
+20160408, 0.29, 0.12, 0.69, 0.36, 0.28, 0.000
+20160411, -0.28, 0.00, 0.95, 0.00, 0.29, 0.000
+20160412, 0.99, 0.01, 0.85, 0.04, -0.15, 0.000
+20160413, 1.23, 0.95, 0.35, -0.46, -0.35, 0.000
+20160414, 0.03, -0.26, 0.18, -0.36, -0.12, 0.000
+20160415, -0.04, 0.31, -0.32, 0.22, 0.17, 0.000
+20160418, 0.65, 0.13, -0.19, -0.16, -0.05, 0.000
+20160419, 0.29, -0.17, 1.49, -0.24, 0.37, 0.000
+20160420, 0.15, 0.00, 0.54, -0.31, -0.12, 0.000
+20160421, -0.47, -0.01, -0.60, -0.60, -0.34, 0.000
+20160422, 0.12, 1.03, 0.49, -0.09, 0.96, 0.000
+20160425, -0.24, -0.65, -0.18, 0.07, -0.15, 0.000
+20160426, 0.29, 0.82, 0.78, 0.33, 0.61, 0.000
+20160427, 0.21, 0.23, 0.68, -0.19, 0.79, 0.000
+20160428, -0.96, -0.20, 0.05, -0.48, 0.55, 0.000
+20160429, -0.50, -0.20, 0.38, 0.06, -0.20, 0.000
+20160502, 0.78, -0.04, -0.36, 0.00, -0.09, 0.001
+20160503, -1.05, -0.73, -0.50, 0.54, 0.03, 0.001
+20160504, -0.66, -0.16, 0.06, 0.45, 0.29, 0.001
+20160505, -0.08, -0.53, 0.08, 0.11, 0.03, 0.001
+20160506, 0.38, 0.07, 0.24, 0.17, 0.25, 0.001
+20160509, 0.05, 0.19, -1.49, 0.10, -0.50, 0.001
+20160510, 1.26, -0.38, 0.48, -0.11, 0.05, 0.001
+20160511, -0.89, -0.34, 0.78, -0.44, 0.00, 0.001
+20160512, -0.11, -0.59, 0.14, 0.38, 0.12, 0.001
+20160513, -0.82, 0.28, -0.66, -0.56, -0.17, 0.001
+20160516, 0.99, 0.21, -0.24, -0.05, -0.32, 0.001
+20160517, -0.95, -0.68, 0.61, -0.12, -0.10, 0.001
+20160518, 0.10, 0.14, 0.83, -1.34, -0.65, 0.001
+20160519, -0.33, -0.31, -0.30, 0.39, -0.01, 0.001
+20160520, 0.75, 0.84, -0.30, -0.39, -0.38, 0.001
+20160523, -0.18, 0.25, -0.32, -0.21, 0.08, 0.001
+20160524, 1.43, 0.61, -0.34, -0.10, -0.40, 0.001
+20160525, 0.72, -0.13, 0.57, 0.21, -0.11, 0.001
+20160526, -0.04, -0.16, -0.51, 0.17, -0.22, 0.001
+20160527, 0.49, 0.35, -0.22, -0.06, -0.09, 0.001
+20160531, -0.01, 0.45, -0.36, -0.17, -0.33, 0.001
+20160601, 0.20, 0.64, -0.24, -0.26, 0.08, 0.001
+20160602, 0.35, 0.24, -0.59, -0.24, -0.06, 0.001
+20160603, -0.38, -0.18, -0.10, 0.53, 0.15, 0.001
+20160606, 0.60, 0.71, 0.32, -0.19, -0.12, 0.001
+20160607, 0.12, 0.23, 0.10, 0.34, 0.22, 0.001
+20160608, 0.37, 0.43, -0.11, 0.05, -0.10, 0.001
+20160609, -0.27, -0.43, -0.21, 0.31, 0.13, 0.001
+20160610, -1.05, -0.38, -0.17, 0.16, 0.60, 0.001
+20160613, -0.84, -0.37, 0.10, -0.24, -0.04, 0.001
+20160614, -0.19, 0.14, -0.71, 0.27, 0.04, 0.001
+20160615, -0.11, 0.26, -0.06, -0.05, 0.05, 0.001
+20160616, 0.24, -0.31, -0.40, 0.28, 0.35, 0.001
+20160617, -0.30, 0.07, 0.94, 0.40, 0.62, 0.001
+20160620, 0.71, 0.59, -0.01, -0.16, 0.12, 0.001
+20160621, 0.21, -0.61, 0.50, -0.20, 0.00, 0.001
+20160622, -0.20, -0.30, 0.08, 0.05, 0.00, 0.001
+20160623, 1.45, 0.54, 0.43, -0.55, -0.21, 0.001
+20160624, -3.70, 0.02, -1.13, 0.93, 0.11, 0.001
+20160627, -2.07, -1.05, -0.66, 0.52, 0.44, 0.001
+20160628, 1.76, -0.38, 0.14, -0.62, -0.59, 0.001
+20160629, 1.80, 0.31, -0.07, -0.11, -0.25, 0.001
+20160630, 1.42, 0.38, 0.45, -0.13, 0.38, 0.001
+20160701, 0.24, 0.48, -0.40, -0.14, 0.23, 0.001
+20160705, -0.85, -0.82, -1.37, 0.57, -0.69, 0.001
+20160706, 0.62, 0.17, -0.12, -0.11, -0.15, 0.001
+20160707, 0.02, 0.34, -0.20, 0.21, -0.29, 0.001
+20160708, 1.60, 0.94, 0.36, 0.06, 0.27, 0.001
+20160711, 0.43, 0.68, 0.26, 0.30, -0.08, 0.001
+20160712, 0.75, 0.73, 1.00, -0.63, 0.64, 0.001
+20160713, -0.05, -0.46, 0.51, 0.55, 0.00, 0.001
+20160714, 0.51, -0.42, 0.45, -0.04, 0.00, 0.001
+20160715, -0.05, 0.29, 0.01, -0.30, 0.00, 0.001
+20160718, 0.25, 0.01, -0.12, 0.09, -0.24, 0.001
+20160719, -0.22, -0.62, 0.04, 0.47, -0.23, 0.001
+20160720, 0.48, 0.39, -0.88, -0.03, -0.36, 0.001
+20160721, -0.38, -0.08, -0.01, -0.01, 0.03, 0.001
+20160722, 0.48, 0.28, -0.08, 0.41, -0.25, 0.001
+20160725, -0.27, -0.01, -0.24, 0.52, -0.39, 0.001
+20160726, 0.13, 0.61, 0.53, -0.44, 0.74, 0.001
+20160727, -0.14, 0.52, -0.42, -0.13, -0.56, 0.001
+20160728, 0.18, -0.45, -0.35, -0.05, -0.14, 0.001
+20160729, 0.17, -0.03, 0.04, 0.00, 0.31, 0.001
+20160801, -0.16, 0.07, -0.86, 0.69, -0.73, 0.001
+20160802, -0.70, -0.63, 0.17, -0.54, 0.16, 0.001
+20160803, 0.45, 0.57, 0.84, -0.71, 0.16, 0.001
+20160804, 0.05, 0.06, -0.34, 0.15, 0.07, 0.001
+20160805, 0.93, 0.57, 0.88, -0.49, -0.35, 0.001
+20160808, -0.06, 0.10, 0.58, 0.00, 0.44, 0.001
+20160809, 0.05, -0.06, -0.32, -0.12, -0.22, 0.001
+20160810, -0.29, -0.45, -0.12, 0.71, 0.00, 0.001
+20160811, 0.54, 0.15, 0.04, -0.30, 0.16, 0.001
+20160812, -0.06, 0.12, -0.18, -0.19, -0.28, 0.001
+20160815, 0.39, 0.80, 0.40, -0.27, 0.36, 0.001
+20160816, -0.57, -0.19, 0.62, -0.10, 0.31, 0.001
+20160817, 0.12, -0.50, 0.25, 0.08, 0.07, 0.001
+20160818, 0.32, 0.47, 0.37, -0.53, 0.34, 0.001
+20160819, -0.11, 0.10, -0.12, 0.29, -0.15, 0.001
+20160822, -0.02, 0.22, -0.41, 0.02, -0.36, 0.001
+20160823, 0.27, 0.55, -0.01, 0.04, 0.06, 0.001
+20160824, -0.56, -0.44, 0.40, 0.38, -0.07, 0.001
+20160825, -0.08, 0.22, 0.48, -0.18, 0.28, 0.001
+20160826, -0.15, 0.12, -0.13, -0.36, -0.19, 0.001
+20160829, 0.53, 0.01, 0.35, -0.10, 0.21, 0.001
+20160830, -0.14, 0.21, 0.31, -0.05, -0.30, 0.001
+20160831, -0.24, -0.34, 0.13, 0.27, -0.36, 0.001
+20160901, 0.03, 0.06, -0.49, 0.15, -0.13, 0.001
+20160902, 0.53, 0.42, 0.36, -0.16, 0.18, 0.001
+20160906, 0.26, 0.00, -0.53, -0.71, -0.03, 0.001
+20160907, 0.09, 0.60, 0.03, -0.10, -0.24, 0.001
+20160908, -0.18, 0.02, 0.57, -0.90, 0.41, 0.001
+20160909, -2.47, -0.55, 0.31, 0.09, -0.43, 0.001
+20160912, 1.44, -0.04, -0.46, -0.08, -0.19, 0.001
+20160913, -1.48, -0.32, -0.47, 0.64, -0.77, 0.001
+20160914, -0.08, 0.06, -0.82, 0.14, -0.49, 0.001
+20160915, 1.07, 0.30, -0.33, 0.07, -0.21, 0.001
+20160916, -0.36, 0.30, -0.45, 0.18, -0.20, 0.001
+20160919, 0.05, 0.49, 0.17, -0.04, 0.35, 0.001
+20160920, -0.02, -0.31, -0.51, -0.44, -0.11, 0.001
+20160921, 1.12, 0.20, 0.33, -0.38, 0.51, 0.001
+20160922, 0.70, 0.80, -0.06, 0.04, 0.13, 0.001
+20160923, -0.60, -0.06, -0.20, 0.51, -0.49, 0.001
+20160926, -0.88, -0.29, -0.35, -0.19, 0.19, 0.001
+20160927, 0.64, -0.13, -0.53, 0.04, -0.40, 0.001
+20160928, 0.56, 0.21, 1.10, -1.20, 1.13, 0.001
+20160929, -0.98, -0.40, 0.54, 0.25, 0.67, 0.001
+20160930, 0.88, 0.42, 0.35, -0.21, 0.10, 0.001
+20161003, -0.26, -0.04, -0.13, -0.02, 0.14, 0.001
+20161004, -0.46, 0.05, 0.09, 0.17, -0.31, 0.001
+20161005, 0.58, 0.40, 0.78, -0.46, 0.45, 0.001
+20161006, -0.06, -0.23, 0.36, 0.43, 0.23, 0.001
+20161007, -0.38, -0.53, 0.16, -0.21, -0.37, 0.001
+20161010, 0.52, 0.56, 0.01, -0.63, -0.22, 0.001
+20161011, -1.30, -0.57, 0.48, 0.35, 0.09, 0.001
+20161012, 0.06, -0.19, 0.37, 0.73, 0.15, 0.001
+20161013, -0.42, -0.73, -0.62, 0.28, -0.13, 0.001
+20161014, 0.01, -0.34, 0.56, 0.12, 0.10, 0.001
+20161017, -0.29, -0.03, 0.15, 0.09, 0.14, 0.001
+20161018, 0.60, -0.16, 0.02, -0.33, -0.29, 0.001
+20161019, 0.25, 0.12, 0.92, -0.14, 0.46, 0.001
+20161020, -0.16, -0.04, -0.11, -0.48, -0.04, 0.001
+20161021, 0.02, -0.19, -0.32, 0.19, -0.18, 0.001
+20161024, 0.54, 0.06, -0.17, 0.60, -0.49, 0.001
+20161025, -0.46, -0.60, 0.23, 0.05, -0.01, 0.001
+20161026, -0.23, -0.74, 0.74, 0.09, 0.54, 0.001
+20161027, -0.33, -0.94, 0.62, -0.10, -0.04, 0.001
+20161028, -0.29, -0.12, 0.10, -0.04, 0.32, 0.001
+20161031, 0.02, 0.08, 0.13, 0.60, -0.32, 0.001
+20161101, -0.68, -0.36, 0.17, -0.53, -0.07, 0.001
+20161102, -0.73, -0.58, 0.36, 0.95, 0.15, 0.001
+20161103, -0.40, -0.38, 1.02, 0.13, 0.79, 0.001
+20161104, -0.12, 0.83, -0.43, -0.09, -0.07, 0.001
+20161107, 2.23, 0.17, -0.16, -0.27, -0.17, 0.001
+20161108, 0.40, -0.11, -0.20, -0.05, 0.30, 0.001
+20161109, 1.46, 2.07, 1.01, -0.72, 0.75, 0.001
+20161110, 0.32, 1.45, 1.82, -0.13, 0.40, 0.001
+20161111, 0.18, 2.52, -0.03, 0.16, -0.33, 0.001
+20161114, 0.21, 0.87, 1.42, -0.12, 0.36, 0.001
+20161115, 0.80, -0.56, 0.13, -0.64, 0.18, 0.001
+20161116, -0.12, 0.23, -0.56, 0.84, -0.17, 0.001
+20161117, 0.56, 0.17, -0.12, 0.26, -0.47, 0.001
+20161118, -0.16, 0.56, 0.38, -0.21, 0.09, 0.001
+20161121, 0.77, -0.27, 0.08, -0.14, 0.30, 0.001
+20161122, 0.31, 0.62, 0.58, 0.82, 0.32, 0.001
+20161123, 0.16, 0.56, 0.17, -0.31, 0.16, 0.001
+20161125, 0.40, -0.07, -0.24, 0.23, -0.15, 0.001
+20161128, -0.64, -0.77, 0.07, 0.65, -0.35, 0.001
+20161129, 0.11, -0.38, -0.06, 0.54, -0.48, 0.001
+20161130, -0.25, -0.19, 2.25, -1.62, 1.97, 0.001
+20161201, -0.36, -0.40, 2.05, 0.29, 0.63, 0.001
+20161202, 0.00, 0.00, -0.31, -0.10, 0.07, 0.001
+20161205, 0.75, 1.11, 0.28, -0.25, -0.17, 0.001
+20161206, 0.48, 0.65, 0.23, -0.15, -0.11, 0.001
+20161207, 1.26, -0.50, 0.53, 0.88, -0.01, 0.001
+20161208, 0.36, 1.24, 0.58, -0.25, -0.09, 0.001
+20161209, 0.46, -0.35, 0.13, -0.07, -0.05, 0.001
+20161212, -0.30, -0.96, -0.10, -0.01, 0.04, 0.001
+20161213, 0.60, -0.57, -0.29, 0.00, -0.17, 0.001
+20161214, -0.82, -0.37, -0.28, 0.53, -0.51, 0.001
+20161215, 0.46, 0.44, 0.28, 0.03, 0.05, 0.001
+20161216, -0.22, -0.03, -0.42, -0.27, 0.00, 0.001
+20161219, 0.22, 0.34, 0.08, 0.29, 0.02, 0.001
+20161220, 0.44, 0.50, 0.68, 0.12, 0.09, 0.001
+20161221, -0.24, -0.35, 0.24, 0.12, 0.06, 0.001
+20161222, -0.30, -0.77, 0.24, -0.24, 0.07, 0.001
+20161223, 0.19, 0.53, -0.51, -0.36, -0.14, 0.001
+20161227, 0.27, 0.23, 0.13, 0.16, 0.03, 0.001
+20161228, -0.87, -0.30, 0.09, 0.14, -0.16, 0.001
+20161229, -0.04, 0.09, -0.31, 0.25, 0.04, 0.001
+20161230, -0.52, -0.05, 0.20, -0.14, 0.05, 0.001
+20170103, 0.83, -0.09, 0.08, -0.26, 0.26, 0.002
+20170104, 0.79, 0.97, -0.15, -0.40, -0.02, 0.002
+20170105, -0.21, -1.00, -0.80, -0.16, -0.08, 0.002
+20170106, 0.29, -0.71, -0.31, -0.29, -0.29, 0.002
+20170109, -0.37, -0.31, -1.04, 0.20, -0.52, 0.002
+20170110, 0.16, 1.02, 0.57, -0.03, 0.08, 0.002
+20170111, 0.31, -0.23, 0.53, 0.16, 0.27, 0.002
+20170112, -0.30, -0.64, -0.88, 0.05, -0.28, 0.002
+20170113, 0.29, 0.62, -0.08, -0.27, -0.14, 0.002
+20170117, -0.49, -0.98, -0.60, 0.44, 0.40, 0.002
+20170118, 0.24, 0.21, 0.23, 0.01, -0.09, 0.002
+20170119, -0.38, -0.54, -0.03, -0.04, -0.03, 0.002
+20170120, 0.33, 0.07, 0.18, 0.12, -0.01, 0.002
+20170123, -0.29, -0.06, -0.31, 0.44, -0.37, 0.002
+20170124, 0.83, 0.78, 0.81, -0.14, 0.52, 0.002
+20170125, 0.84, 0.20, 0.36, -0.15, -0.14, 0.002
+20170126, -0.10, -0.58, 0.38, -0.09, -0.16, 0.002
+20170127, -0.12, -0.03, -0.67, 0.10, 0.07, 0.002
+20170130, -0.68, -0.72, -0.42, 0.65, -0.15, 0.002
+20170131, 0.00, 0.83, -0.55, -0.40, -0.22, 0.002
+20170201, 0.04, -0.05, 0.03, 0.26, -0.25, 0.002
+20170202, -0.02, -0.33, -0.31, -0.36, 0.20, 0.002
+20170203, 0.82, 0.65, 0.64, -0.49, 0.36, 0.002
+20170206, -0.27, -0.61, -0.20, 0.04, -0.21, 0.002
+20170207, -0.01, -0.38, -0.52, 0.45, -0.24, 0.002
+20170208, 0.06, -0.28, -0.53, 0.34, -0.10, 0.002
+20170209, 0.72, 0.72, 0.03, -0.27, 0.05, 0.002
+20170210, 0.38, 0.39, 0.12, -0.02, 0.15, 0.002
+20170213, 0.49, -0.27, 0.33, 0.06, 0.05, 0.002
+20170214, 0.45, -0.16, 0.33, -0.41, -0.07, 0.002
+20170215, 0.54, 0.13, -0.44, 0.21, -0.08, 0.002
+20170216, -0.16, -0.21, -0.04, 0.37, -0.22, 0.002
+20170217, 0.20, -0.06, -0.57, 0.09, -0.39, 0.002
+20170221, 0.60, 0.04, 0.13, 0.32, 0.34, 0.002
+20170222, -0.15, -0.37, 0.12, 0.55, -0.34, 0.002
+20170223, -0.11, -0.72, 0.25, -0.29, -0.45, 0.002
+20170224, 0.15, -0.08, -0.92, 0.36, -0.21, 0.002
+20170227, 0.22, 0.84, -0.35, -0.38, -0.11, 0.002
+20170228, -0.42, -1.35, 0.19, -0.03, -0.17, 0.002
+20170301, 1.47, 0.53, 0.72, -0.41, 0.52, 0.001
+20170302, -0.70, -0.56, -0.89, 0.57, -0.46, 0.001
+20170303, 0.09, -0.18, 0.14, -0.02, -0.08, 0.001
+20170306, -0.38, -0.41, -0.10, -0.06, 0.00, 0.001
+20170307, -0.36, -0.35, -0.05, 0.12, -0.25, 0.001
+20170308, -0.19, -0.17, -0.82, 0.52, -0.73, 0.001
+20170309, 0.04, -0.51, -0.27, -0.60, -0.17, 0.001
+20170310, 0.34, 0.05, -0.39, 0.27, 0.02, 0.001
+20170313, 0.13, 0.33, -0.02, -0.11, 0.05, 0.001
+20170314, -0.36, -0.22, 0.03, 0.52, -0.24, 0.001
+20170315, 0.86, 0.72, -0.40, -0.17, 0.55, 0.001
+20170316, -0.06, 0.43, 0.24, -0.07, -0.38, 0.001
+20170317, -0.08, 0.56, -0.26, 0.19, -0.03, 0.001
+20170320, -0.25, -0.16, -0.75, -0.19, -0.04, 0.001
+20170321, -1.48, -1.41, -0.69, 0.76, 0.29, 0.001
+20170322, 0.16, -0.34, -0.54, 0.18, -0.13, 0.001
+20170323, -0.03, 0.74, 0.46, -0.01, 0.19, 0.001
+20170324, -0.05, 0.11, -0.24, -0.28, -0.33, 0.001
+20170327, -0.05, 0.47, -0.52, -0.24, -0.28, 0.001
+20170328, 0.72, -0.06, 0.71, 0.01, 0.39, 0.001
+20170329, 0.18, 0.32, -0.06, -0.34, 0.13, 0.001
+20170330, 0.36, 0.40, 0.93, -0.11, -0.13, 0.001
+20170331, -0.16, 0.55, -0.30, 0.10, 0.07, 0.001
+20170403, -0.28, -1.14, -0.11, -0.17, -0.08, 0.003
+20170404, 0.05, -0.24, 0.31, -0.12, 0.16, 0.003
+20170405, -0.44, -0.83, -0.31, 0.40, -0.09, 0.003
+20170406, 0.32, 0.75, 0.49, -0.13, 0.37, 0.003
+20170407, -0.08, 0.08, -0.26, 0.03, -0.02, 0.003
+20170410, 0.08, 0.14, 0.10, 0.17, 0.47, 0.003
+20170411, -0.05, 0.80, 0.25, 0.20, 0.19, 0.003
+20170412, -0.49, -0.94, -0.53, -0.09, -0.55, 0.003
+20170413, -0.75, -0.33, -0.80, 0.03, -0.36, 0.003
+20170417, 0.89, 0.28, 0.22, 0.09, -0.15, 0.003
+20170418, -0.25, 0.30, -0.16, 0.34, 0.11, 0.003
+20170419, -0.08, 0.56, -0.38, 0.45, -0.84, 0.003
+20170420, 0.83, 0.58, 0.27, 0.30, -0.18, 0.003
+20170421, -0.28, 0.05, -0.14, 0.35, -0.21, 0.003
+20170424, 1.18, 0.27, 0.52, -0.01, 0.15, 0.003
+20170425, 0.66, 0.39, -0.05, -0.39, 0.29, 0.003
+20170426, 0.04, 0.75, 0.33, 0.23, 0.01, 0.003
+20170427, 0.05, -0.21, -0.96, 0.23, -0.59, 0.003
+20170428, -0.30, -0.75, -0.59, 0.02, -0.21, 0.003
+20170501, 0.21, 0.25, -0.13, -0.16, -0.51, 0.003
+20170502, 0.03, -0.46, -0.21, 0.43, -0.34, 0.003
+20170503, -0.19, -0.52, 0.19, -0.03, 0.12, 0.003
+20170504, 0.02, -0.11, -0.36, 0.47, -0.72, 0.003
+20170505, 0.46, 0.08, 0.04, -0.28, 0.63, 0.003
+20170508, -0.04, -0.23, 0.28, 0.01, 0.02, 0.003
+20170509, -0.05, 0.39, -0.79, 0.37, -0.36, 0.003
+20170510, 0.21, 0.25, 0.02, -0.33, 0.35, 0.003
+20170511, -0.26, -0.40, -0.14, -0.33, -0.02, 0.003
+20170512, -0.18, -0.38, -0.61, -0.27, -0.32, 0.003
+20170515, 0.53, 0.26, 0.19, -0.33, 0.03, 0.003
+20170516, -0.03, 0.10, -0.09, -0.22, -0.14, 0.003
+20170517, -1.97, -0.98, -0.54, 0.51, 0.29, 0.003
+20170518, 0.40, -0.01, -0.40, -0.32, -0.61, 0.003
+20170519, 0.70, -0.33, 0.40, -0.09, 0.76, 0.003
+20170522, 0.56, 0.25, -0.31, 0.03, -0.33, 0.003
+20170523, 0.18, -0.02, 0.60, -0.24, 0.08, 0.003
+20170524, 0.24, -0.21, -0.49, 0.18, -0.30, 0.003
+20170525, 0.42, -0.35, -0.77, 0.67, -0.63, 0.003
+20170526, 0.06, -0.02, 0.10, 0.19, 0.15, 0.003
+20170530, -0.19, -0.54, -0.32, 0.67, -0.02, 0.003
+20170531, -0.02, -0.04, -0.56, 0.33, -0.08, 0.003
+20170601, 0.95, 1.00, 0.04, -0.22, 0.04, 0.003
+20170602, 0.35, 0.41, -0.80, 0.29, -0.49, 0.003
+20170605, -0.17, -0.46, 0.00, -0.19, 0.02, 0.003
+20170606, -0.28, 0.10, -0.07, -0.57, 0.36, 0.003
+20170607, 0.15, -0.13, 0.02, 0.56, -0.68, 0.003
+20170608, 0.18, 1.20, 0.92, -0.67, -0.03, 0.003
+20170609, -0.12, 0.28, 2.39, -0.21, 1.13, 0.003
+20170612, -0.11, -0.19, 0.35, 0.01, 0.61, 0.003
+20170613, 0.55, 0.06, -0.14, -0.28, -0.09, 0.003
+20170614, -0.17, -0.54, -0.56, 0.18, -0.52, 0.003
+20170615, -0.30, -0.31, -0.12, 0.04, -0.07, 0.003
+20170616, -0.03, -0.25, -0.17, -0.55, 0.14, 0.003
+20170619, 0.86, 0.10, -0.76, 0.00, -0.09, 0.003
+20170620, -0.73, -0.43, -0.50, -0.19, -0.25, 0.003
+20170621, -0.07, -0.22, -1.69, -0.13, -1.15, 0.003
+20170622, 0.02, 0.47, -0.42, -0.11, -0.05, 0.003
+20170623, 0.24, 0.74, -0.50, -0.40, 0.04, 0.003
+20170626, 0.04, 0.07, 0.69, 0.25, 0.19, 0.003
+20170627, -0.85, -0.22, 1.33, 0.35, 0.34, 0.003
+20170628, 1.02, 0.80, 0.22, -0.14, -0.08, 0.003
+20170629, -0.83, 0.08, 1.37, -0.23, 0.36, 0.003
+20170630, 0.14, -0.10, -0.24, 0.21, 0.29, 0.003
+20170703, 0.24, 0.44, 1.23, -0.57, 0.65, 0.004
+20170705, 0.12, -0.70, -0.60, 0.18, -0.68, 0.004
+20170706, -0.95, -0.45, 0.10, 0.23, -0.03, 0.004
+20170707, 0.70, 0.40, -0.42, 0.23, -0.52, 0.004
+20170710, 0.05, -0.43, -0.11, -0.10, -0.11, 0.004
+20170711, 0.00, 0.31, -0.53, -0.32, 0.15, 0.004
+20170712, 0.72, 0.06, -0.55, 0.12, -0.23, 0.004
+20170713, 0.17, -0.01, 0.37, 0.02, 0.20, 0.004
+20170714, 0.42, -0.22, -0.51, 0.20, 0.03, 0.004
+20170717, 0.00, 0.22, 0.13, 0.16, 0.07, 0.004
+20170718, 0.04, -0.37, -0.36, -0.09, -0.41, 0.004
+20170719, 0.59, 0.47, 0.04, -0.26, 0.12, 0.004
+20170720, -0.01, 0.04, -0.01, 0.09, -0.23, 0.004
+20170721, -0.08, -0.43, -0.28, 0.07, -0.28, 0.004
+20170724, -0.03, 0.12, -0.21, -0.22, -0.38, 0.004
+20170725, 0.38, 0.42, 0.99, -0.19, 0.70, 0.004
+20170726, -0.06, -0.46, -0.69, -0.17, 0.04, 0.004
+20170727, -0.14, -0.63, 0.47, 0.30, 0.42, 0.004
+20170728, -0.17, -0.07, 0.23, -0.21, 0.18, 0.004
+20170731, -0.11, -0.25, 0.47, -0.04, 0.15, 0.004
+20170801, 0.24, -0.19, 0.18, 0.22, -0.48, 0.004
+20170802, -0.08, -1.15, 0.15, 0.07, -0.35, 0.004
+20170803, -0.21, -0.35, -0.28, 0.30, -0.27, 0.004
+20170804, 0.25, 0.34, 0.34, -0.16, 0.02, 0.004
+20170807, 0.16, -0.10, -0.60, 0.29, -0.37, 0.004
+20170808, -0.24, -0.09, 0.22, -0.30, -0.14, 0.004
+20170809, -0.14, -0.79, -0.09, 0.13, 0.04, 0.004
+20170810, -1.49, -0.31, 0.26, 0.27, 0.13, 0.004
+20170811, 0.20, 0.18, -0.89, 0.38, -0.11, 0.004
+20170814, 1.03, 0.29, 0.08, 0.01, -0.45, 0.004
+20170815, -0.11, -0.86, -0.03, -0.16, -0.25, 0.004
+20170816, 0.18, -0.14, -0.45, 0.33, -0.13, 0.004
+20170817, -1.59, -0.16, -0.15, -0.04, 0.13, 0.004
+20170818, -0.15, 0.14, 0.20, -0.30, 0.00, 0.004
+20170821, 0.06, -0.29, -0.21, 0.19, -0.09, 0.004
+20170822, 1.06, -0.01, -0.27, -0.21, 0.11, 0.004
+20170823, -0.32, 0.13, 0.39, -0.51, 0.09, 0.004
+20170824, -0.14, 0.58, 0.18, -0.51, 0.09, 0.004
+20170825, 0.18, 0.17, 0.60, 0.14, 0.26, 0.004
+20170828, 0.08, 0.32, -0.72, 0.21, -0.19, 0.004
+20170829, 0.10, 0.10, -0.40, 0.04, 0.10, 0.004
+20170830, 0.53, 0.01, -0.32, 0.10, -0.45, 0.004
+20170831, 0.62, 0.40, -0.43, -0.29, -0.10, 0.004
+20170901, 0.27, 0.43, 0.45, -0.09, 0.35, 0.005
+20170905, -0.81, -0.01, -0.95, -0.07, 0.54, 0.005
+20170906, 0.28, -0.02, 0.14, -0.32, 0.09, 0.005
+20170907, -0.07, 0.03, -0.94, 0.01, 0.08, 0.005
+20170908, -0.16, 0.12, 0.37, 0.25, -0.14, 0.005
+20170911, 1.08, -0.09, 0.65, -0.38, -0.11, 0.005
+20170912, 0.43, 0.34, 0.70, 0.10, 0.18, 0.005
+20170913, 0.11, 0.31, 0.35, -0.33, 0.09, 0.005
+20170914, -0.12, -0.06, -0.04, -0.36, 0.23, 0.005
+20170915, 0.19, 0.24, 0.13, 0.28, 0.00, 0.005
+20170918, 0.24, 0.40, 0.22, -0.49, 0.21, 0.005
+20170919, 0.15, -0.21, 0.34, 0.01, 0.07, 0.005
+20170920, 0.16, 0.29, 0.50, -0.19, 0.30, 0.005
+20170921, -0.28, 0.16, 0.36, -0.03, -0.08, 0.005
+20170922, 0.12, 0.43, 0.13, 0.36, 0.28, 0.005
+20170925, -0.25, 0.34, 0.64, -0.25, 0.65, 0.005
+20170926, 0.05, 0.45, 0.11, 0.60, -0.12, 0.005
+20170927, 0.63, 1.42, 0.12, -0.25, -0.53, 0.005
+20170928, 0.13, 0.16, -0.08, -0.10, -0.19, 0.005
+20170929, 0.35, -0.11, -0.28, -0.06, -0.35, 0.005
+20171002, 0.50, 0.87, 0.19, -0.19, 0.26, 0.004
+20171003, 0.26, -0.03, -0.03, -0.03, -0.10, 0.004
+20171004, 0.05, -0.35, -0.42, -0.10, 0.00, 0.004
+20171005, 0.55, -0.31, 0.31, -0.29, -0.17, 0.004
+20171006, -0.08, -0.09, -0.27, 0.17, -0.36, 0.004
+20171009, -0.22, -0.30, -0.04, 0.09, -0.18, 0.004
+20171010, 0.24, 0.01, 0.43, 0.10, 0.08, 0.004
+20171011, 0.16, -0.25, -0.26, -0.08, -0.07, 0.004
+20171012, -0.18, -0.10, -0.50, 0.17, 0.11, 0.004
+20171013, 0.04, -0.27, 0.11, 0.18, 0.00, 0.004
+20171016, 0.17, -0.27, 0.37, 0.02, -0.08, 0.004
+20171017, 0.01, -0.34, -0.27, 0.32, -0.17, 0.004
+20171018, 0.14, 0.35, 0.22, 0.34, -0.14, 0.004
+20171019, 0.02, -0.34, 0.20, 0.11, 0.05, 0.004
+20171020, 0.57, 0.01, 0.28, 0.09, 0.04, 0.004
+20171023, -0.45, -0.38, 0.17, 0.26, -0.25, 0.004
+20171024, 0.20, -0.11, 0.45, -0.01, -0.15, 0.004
+20171025, -0.51, 0.02, 0.09, 0.26, -0.42, 0.004
+20171026, 0.20, 0.05, 0.24, 0.10, -0.16, 0.004
+20171027, 0.82, -0.06, -1.10, 0.14, -1.33, 0.004
+20171030, -0.46, -0.76, -0.06, -0.59, -0.43, 0.004
+20171031, 0.23, 0.76, -0.21, -0.11, 0.22, 0.004
+20171101, 0.05, -0.79, 0.13, -0.09, -0.07, 0.004
+20171102, 0.06, -0.02, 0.48, -0.23, 0.34, 0.004
+20171103, 0.31, -0.52, -0.70, -0.16, -0.17, 0.004
+20171106, 0.06, 0.16, 0.22, -0.61, 0.03, 0.004
+20171107, -0.20, -1.41, -0.39, 0.42, -0.02, 0.004
+20171108, 0.12, -0.03, -0.61, 0.59, -0.01, 0.004
+20171109, -0.41, 0.00, 0.21, -0.02, 0.09, 0.004
+20171110, 0.01, 0.05, -0.37, 0.21, 0.15, 0.004
+20171113, 0.09, -0.30, 0.03, 0.09, -0.74, 0.004
+20171114, -0.22, -0.08, -0.01, 0.97, -0.40, 0.004
+20171115, -0.52, 0.04, 0.22, -0.09, 0.15, 0.004
+20171116, 1.01, 0.78, -0.52, 0.55, 0.33, 0.004
+20171117, -0.14, 0.73, 0.32, -0.16, 0.35, 0.004
+20171120, 0.21, 0.61, 0.01, 0.26, -0.01, 0.004
+20171121, 0.67, 0.36, -0.37, 0.04, -0.62, 0.004
+20171122, -0.05, 0.09, -0.04, -0.28, 0.16, 0.004
+20171124, 0.21, 0.01, -0.45, 0.01, -0.09, 0.004
+20171127, -0.06, -0.31, -0.02, 0.59, -0.10, 0.004
+20171128, 1.06, 0.56, 0.89, 0.33, 0.03, 0.004
+20171129, 0.02, 0.28, 1.48, 0.84, 0.60, 0.004
+20171130, 0.82, -0.61, -0.51, -0.24, 0.02, 0.004
+20171201, -0.22, -0.33, 0.40, -0.40, 0.33, 0.004
+20171204, -0.10, -0.14, 1.24, 1.02, 0.57, 0.004
+20171205, -0.43, -0.45, -0.26, 0.19, -0.11, 0.004
+20171206, -0.09, -0.52, -0.55, 0.41, -0.50, 0.004
+20171207, 0.42, 0.28, -0.18, -0.29, 0.07, 0.004
+20171208, 0.51, -0.42, -0.11, -0.09, 0.08, 0.004
+20171211, 0.26, -0.41, -0.14, -0.07, 0.07, 0.004
+20171212, 0.07, -0.47, 0.52, 0.03, 0.10, 0.004
+20171213, 0.02, 0.62, -0.87, 0.26, -0.07, 0.004
+20171214, -0.47, -0.75, -0.23, -0.15, -0.12, 0.004
+20171215, 0.92, 0.68, 0.02, 0.38, -0.51, 0.004
+20171218, 0.67, 0.82, 0.24, 0.26, 0.16, 0.004
+20171219, -0.30, -0.34, -0.25, 0.25, 0.38, 0.004
+20171220, 0.01, 0.37, 0.07, -0.19, 0.26, 0.004
+20171221, 0.24, 0.32, 0.63, -0.72, 0.32, 0.004
+20171222, -0.07, -0.21, -0.22, -0.11, 0.20, 0.004
+20171226, -0.07, 0.31, -0.05, -0.17, 0.57, 0.004
+20171227, 0.05, -0.16, -0.17, 0.07, -0.12, 0.004
+20171228, 0.22, 0.09, 0.04, -0.14, -0.20, 0.004
+20171229, -0.57, -0.30, 0.00, 0.16, 0.15, 0.004
+20180102, 0.85, 0.31, -0.25, -0.45, 0.22, 0.005
+20180103, 0.59, -0.47, -0.23, -0.75, -0.08, 0.005
+20180104, 0.42, -0.22, 0.25, -0.05, 0.30, 0.005
+20180105, 0.66, -0.35, -0.28, 0.40, -0.36, 0.005
+20180108, 0.19, -0.20, 0.07, -0.08, 0.04, 0.005
+20180109, 0.15, -0.37, -0.01, -0.14, -0.06, 0.005
+20180110, -0.07, 0.14, 0.55, -0.37, 0.00, 0.005
+20180111, 0.87, 1.13, 0.31, -0.12, 0.47, 0.005
+20180112, 0.66, -0.32, 0.15, -0.11, 0.15, 0.005
+20180116, -0.49, -1.00, -0.04, 0.43, -0.33, 0.005
+20180117, 0.95, -0.06, -0.14, -0.05, -0.02, 0.005
+20180118, -0.18, -0.44, -0.25, 0.30, -0.29, 0.005
+20180119, 0.57, 0.94, -0.08, 0.12, 0.14, 0.005
+20180122, 0.77, -0.34, -0.16, -0.54, 0.19, 0.005
+20180123, 0.22, 0.07, -0.35, -0.30, -0.25, 0.005
+20180124, -0.13, -0.70, 0.39, 0.02, 0.14, 0.005
+20180125, 0.07, 0.13, -0.51, 0.11, -0.17, 0.005
+20180126, 1.11, -0.64, -0.48, 0.38, -0.18, 0.005
+20180129, -0.62, -0.02, -0.27, 0.17, -0.29, 0.005
+20180130, -1.06, 0.11, -0.17, 0.36, -0.33, 0.005
+20180131, -0.07, -0.65, 0.04, 0.22, -0.09, 0.005
+20180201, 0.03, 0.15, 0.51, -0.58, 0.03, 0.006
+20180202, -2.13, -0.01, -0.19, 0.65, -0.44, 0.006
+20180205, -4.03, 0.64, -0.54, 0.22, -0.16, 0.006
+20180206, 1.67, -0.46, -0.24, 0.08, -0.19, 0.006
+20180207, -0.37, 0.55, 0.32, 0.31, 0.32, 0.006
+20180208, -3.68, 0.81, 0.48, 0.37, 0.09, 0.006
+20180209, 1.36, -0.56, 0.08, 0.16, -0.47, 0.006
+20180212, 1.36, -0.44, -0.26, -0.23, -0.20, 0.006
+20180213, 0.31, 0.09, -0.23, 0.18, -0.03, 0.006
+20180214, 1.52, 0.30, 0.44, -0.67, -0.07, 0.006
+20180215, 1.21, -0.16, -0.66, 0.15, -0.29, 0.006
+20180216, 0.03, 0.35, 0.12, 0.01, 0.09, 0.006
+20180220, -0.62, -0.27, -0.28, -0.22, -0.52, 0.006
+20180221, -0.43, 0.81, 0.17, 0.12, -0.28, 0.006
+20180222, 0.01, -0.05, -0.37, 0.07, 0.45, 0.006
+20180223, 1.54, -0.36, -0.15, -0.13, -0.10, 0.006
+20180226, 1.12, -0.46, -0.08, -0.16, -0.23, 0.006
+20180227, -1.25, -0.20, 0.05, -0.06, -0.05, 0.006
+20180228, -1.10, -0.42, -0.31, 0.25, -0.27, 0.006
+20180301, -1.18, 0.95, 0.01, -0.28, 0.05, 0.006
+20180302, 0.70, 1.10, -0.51, -0.43, -0.39, 0.006
+20180305, 1.06, -0.41, 0.25, -0.57, 0.09, 0.006
+20180306, 0.36, 0.68, 0.10, 0.25, -0.02, 0.006
+20180307, 0.05, 0.78, -0.49, -0.11, -0.43, 0.006
+20180308, 0.37, -0.57, -0.34, -0.01, -0.18, 0.006
+20180309, 1.70, -0.19, 0.23, -0.23, -0.04, 0.006
+20180312, -0.09, 0.43, -0.07, -0.33, -0.23, 0.006
+20180313, -0.67, 0.09, 0.05, 0.43, 0.05, 0.006
+20180314, -0.53, 0.16, -0.58, -0.13, -0.42, 0.006
+20180315, -0.18, -0.41, 0.30, 0.06, -0.15, 0.006
+20180316, 0.25, 0.46, 0.24, 0.06, 0.32, 0.006
+20180319, -1.38, 0.39, 0.45, 0.35, 0.11, 0.006
+20180320, 0.15, -0.12, -0.36, -0.05, -0.11, 0.006
+20180321, -0.06, 0.69, 0.46, -1.11, 0.79, 0.006
+20180322, -2.54, 0.38, -0.43, 0.22, 0.04, 0.006
+20180323, -2.09, 0.09, -0.18, 0.05, 0.73, 0.006
+20180326, 2.67, -0.64, 0.02, 0.03, -0.60, 0.006
+20180327, -1.87, -0.25, 0.46, 0.74, 0.55, 0.006
+20180328, -0.35, 0.18, 0.64, 0.71, 0.07, 0.006
+20180329, 1.41, -0.27, -0.24, -0.31, -0.18, 0.006
+20180402, -2.29, -0.07, 0.40, 0.09, -0.09, 0.007
+20180403, 1.24, -0.04, 0.19, 0.26, 0.12, 0.007
+20180404, 1.17, 0.33, -0.30, 0.09, -0.14, 0.007
+20180405, 0.75, 0.06, 0.50, 0.11, 0.25, 0.007
+20180406, -2.19, 0.38, -0.06, 0.11, 0.04, 0.007
+20180409, 0.30, -0.24, -0.50, -0.74, -0.31, 0.007
+20180410, 1.77, 0.33, -0.11, -0.90, 0.37, 0.007
+20180411, -0.49, 0.79, -0.29, -0.63, 0.27, 0.007
+20180412, 0.84, -0.16, 0.19, -0.20, 0.00, 0.007
+20180413, -0.37, -0.11, -0.25, -0.14, 0.14, 0.007
+20180416, 0.82, 0.14, -0.05, 0.83, 0.03, 0.007
+20180417, 1.09, 0.02, -1.22, -0.24, -0.46, 0.007
+20180418, 0.13, 0.24, 0.01, -0.23, 0.42, 0.007
+20180419, -0.49, -0.29, 1.01, -0.50, 0.10, 0.007
+20180420, -0.81, 0.11, 0.62, -0.59, 0.28, 0.007
+20180423, -0.05, -0.07, 0.20, 0.31, 0.07, 0.007
+20180424, -1.30, 0.61, 1.05, 0.08, 0.23, 0.007
+20180425, 0.10, -0.28, 0.02, 0.40, 0.16, 0.007
+20180426, 0.96, -0.53, -0.89, -0.49, -0.48, 0.007
+20180427, 0.01, -0.28, 0.10, 0.53, 0.09, 0.007
+20180430, -0.80, -0.05, -0.06, -0.45, -0.02, 0.007
+20180501, 0.24, 0.26, -0.58, 0.02, -0.97, 0.006
+20180502, -0.63, 1.24, -0.25, -0.01, -0.03, 0.006
+20180503, -0.25, -0.58, -0.17, -0.01, -0.10, 0.006
+20180504, 1.30, -0.03, -0.25, -0.36, 0.06, 0.006
+20180507, 0.42, 0.39, -0.36, -0.53, -0.32, 0.006
+20180508, 0.07, 0.49, 0.28, -0.30, 0.14, 0.006
+20180509, 0.89, -0.23, 0.20, -0.90, -0.01, 0.006
+20180510, 0.84, -0.37, -0.06, 0.26, -0.33, 0.006
+20180511, 0.19, 0.11, -0.36, 0.21, 0.13, 0.006
+20180514, 0.05, -0.28, 0.08, -0.19, 0.51, 0.006
+20180515, -0.55, 0.70, 0.44, -0.09, 0.43, 0.006
+20180516, 0.49, 0.68, -0.23, 0.36, 0.10, 0.006
+20180517, 0.02, 0.87, 0.25, -0.34, 0.30, 0.006
+20180518, -0.23, 0.46, -0.55, 0.07, -0.20, 0.006
+20180521, 0.72, -0.20, 0.42, 0.17, 0.07, 0.006
+20180522, -0.42, -0.66, 0.60, -0.27, -0.39, 0.006
+20180523, 0.29, -0.06, -0.72, -0.03, -0.37, 0.006
+20180524, -0.16, 0.32, -0.31, 0.48, 0.09, 0.006
+20180525, -0.21, 0.22, -0.39, 0.63, -0.52, 0.006
+20180529, -1.03, 1.10, -1.01, 0.15, -0.03, 0.006
+20180530, 1.31, 0.04, 0.37, -0.73, 0.20, 0.006
+20180531, -0.70, 0.05, -0.45, -0.52, -0.16, 0.006
+20180601, 1.06, -0.20, -0.17, -0.02, -0.17, 0.006
+20180604, 0.48, 0.16, -0.49, 1.06, -0.29, 0.006
+20180605, 0.16, 0.79, -0.40, 0.19, 0.12, 0.006
+20180606, 0.86, -0.28, 0.19, 0.03, 0.15, 0.006
+20180607, -0.14, -0.25, 0.93, 0.13, 0.59, 0.006
+20180608, 0.31, 0.04, -0.38, 0.23, -0.19, 0.006
+20180611, 0.12, 0.16, -0.16, 0.24, 0.24, 0.006
+20180612, 0.23, 0.20, -0.62, 0.10, -0.17, 0.006
+20180613, -0.33, 0.05, -0.21, -0.53, -0.16, 0.006
+20180614, 0.27, 0.21, -1.01, 0.02, -0.59, 0.006
+20180615, -0.08, 0.11, -0.25, 0.67, -0.14, 0.006
+20180618, -0.09, 0.77, 0.03, -0.43, 0.04, 0.006
+20180619, -0.38, 0.51, -0.18, -0.26, -0.37, 0.006
+20180620, 0.23, 0.66, -0.51, -0.13, 0.08, 0.006
+20180621, -0.73, -0.56, 0.33, 0.46, 0.13, 0.006
+20180622, 0.11, -0.05, 0.44, -0.55, 0.86, 0.006
+20180625, -1.48, -0.49, 0.58, 0.59, 0.14, 0.006
+20180626, 0.27, 0.51, -0.18, -0.53, 0.10, 0.006
+20180627, -1.02, -1.00, 0.40, -0.14, 0.52, 0.006
+20180628, 0.58, -0.19, -0.52, -0.20, -0.56, 0.006
+20180629, 0.07, -0.24, -0.25, -0.22, 0.01, 0.006
+20180702, 0.36, 0.43, -0.32, -0.05, -0.56, 0.008
+20180703, -0.44, 0.74, 0.08, -0.32, 0.46, 0.008
+20180705, 0.87, 0.39, -0.40, 0.35, -0.17, 0.008
+20180706, 0.87, 0.00, -0.37, -0.23, -0.12, 0.008
+20180709, 0.93, -0.28, 0.77, 0.00, -0.19, 0.008
+20180710, 0.21, -0.84, -0.08, 0.10, 0.27, 0.008
+20180711, -0.69, -0.05, -0.52, -0.09, -0.32, 0.008
+20180712, 0.86, -0.41, -1.09, -0.02, -0.49, 0.008
+20180713, 0.08, -0.18, -0.28, 0.35, 0.19, 0.008
+20180716, -0.16, -0.61, 0.85, -0.20, -0.16, 0.008
+20180717, 0.48, 0.15, -0.69, 0.12, -0.23, 0.008
+20180718, 0.27, -0.14, 0.61, -0.16, -0.14, 0.008
+20180719, -0.34, 0.93, -0.37, 0.22, 0.05, 0.008
+20180720, -0.10, -0.15, 0.07, 0.10, -0.24, 0.008
+20180723, 0.15, -0.17, 0.36, -0.20, -0.19, 0.008
+20180724, 0.22, -1.33, 0.52, 0.46, 0.11, 0.008
+20180725, 0.83, -0.57, -1.22, 0.06, -0.31, 0.008
+20180726, -0.20, 0.76, 0.61, -0.02, 0.61, 0.008
+20180727, -0.82, -1.21, 1.17, 0.48, 0.51, 0.008
+20180730, -0.70, -0.02, 1.66, 0.26, 1.02, 0.008
+20180731, 0.51, 0.69, -0.96, 0.31, 0.27, 0.008
+20180801, -0.13, 0.01, -0.29, -0.18, -0.74, 0.007
+20180802, 0.67, 0.20, -0.75, -0.02, -0.56, 0.007
+20180803, 0.31, -0.92, 0.56, 0.62, 0.37, 0.007
+20180806, 0.46, 0.23, -0.33, -0.30, -0.22, 0.007
+20180807, 0.29, -0.04, -0.15, -0.33, -0.11, 0.007
+20180808, -0.04, -0.12, 0.22, -0.06, -0.06, 0.007
+20180809, -0.05, 0.34, -0.32, 0.06, -0.26, 0.007
+20180810, -0.60, 0.34, -0.23, -0.27, 0.25, 0.007
+20180813, -0.46, -0.22, -0.30, 0.31, -0.01, 0.007
+20180814, 0.69, 0.30, 0.23, 0.35, 0.19, 0.007
+20180815, -0.91, -0.53, -0.11, 0.66, -0.11, 0.007
+20180816, 0.86, -0.05, 0.27, -0.08, 0.40, 0.007
+20180817, 0.30, 0.12, 0.04, 0.20, 0.16, 0.007
+20180820, 0.25, 0.15, 0.18, 0.09, 0.15, 0.007
+20180821, 0.33, 0.91, 0.14, -0.21, -0.22, 0.007
+20180822, 0.05, 0.31, -0.47, -0.50, -0.29, 0.007
+20180823, -0.19, -0.10, -0.32, 0.00, -0.17, 0.007
+20180824, 0.62, -0.10, -0.52, -0.32, -0.19, 0.007
+20180827, 0.74, -0.62, -0.12, -0.20, -0.35, 0.007
+20180828, -0.01, -0.12, -0.29, 0.13, -0.05, 0.007
+20180829, 0.56, -0.13, -0.59, -0.15, -0.29, 0.007
+20180830, -0.41, 0.23, -0.43, -0.25, -0.12, 0.007
+20180831, 0.08, 0.45, -0.44, 0.18, -0.14, 0.007
+20180904, -0.11, -0.32, -0.08, -0.02, -0.16, 0.008
+20180905, -0.41, -0.04, 0.70, 0.45, 0.57, 0.008
+20180906, -0.44, -0.39, -0.12, 0.42, 0.33, 0.008
+20180907, -0.18, 0.07, -0.21, 0.02, 0.02, 0.008
+20180910, 0.23, 0.07, -0.33, 0.03, -0.25, 0.008
+20180911, 0.37, -0.33, -0.21, -0.11, -0.38, 0.008
+20180912, 0.03, -0.13, -0.06, 0.02, 0.54, 0.008
+20180913, 0.45, -0.49, -0.36, 0.07, -0.03, 0.008
+20180914, 0.12, 0.31, 0.25, -0.12, -0.03, 0.008
+20180917, -0.71, -0.35, 0.92, 0.29, 0.74, 0.008
+20180918, 0.57, 0.03, -0.54, -0.24, -0.23, 0.008
+20180919, 0.06, -0.49, 1.17, -0.48, -0.03, 0.008
+20180920, 0.77, 0.28, -0.19, 0.03, -0.07, 0.008
+20180921, -0.13, -0.43, 0.39, 0.22, 0.66, 0.008
+20180924, -0.31, -0.07, -0.88, -0.43, -0.29, 0.008
+20180925, -0.05, 0.21, -0.44, -0.33, -0.07, 0.008
+20180926, -0.40, -0.48, -0.58, 0.51, 0.10, 0.008
+20180927, 0.27, -0.34, -0.57, 0.11, -0.34, 0.008
+20180928, -0.03, 0.35, -0.20, 0.13, 0.19, 0.008
+20181001, 0.16, -1.62, 0.38, -0.17, 0.06, 0.008
+20181002, -0.21, -0.95, 0.67, 0.11, 0.36, 0.008
+20181003, 0.20, 0.91, 0.43, -0.36, -0.21, 0.008
+20181004, -0.93, -0.82, 1.55, 0.11, 0.76, 0.008
+20181005, -0.64, -0.39, 0.41, -0.39, 0.41, 0.008
+20181008, -0.17, -0.23, 1.20, 0.49, 0.63, 0.008
+20181009, -0.18, -0.38, 0.16, -0.48, 0.20, 0.008
+20181010, -3.33, 0.40, 1.16, 0.22, 0.78, 0.008
+20181011, -1.96, 0.35, -0.89, 0.42, -0.57, 0.008
+20181012, 1.38, -1.11, -1.70, 0.08, -0.48, 0.008
+20181015, -0.48, 0.99, 0.47, 0.38, 0.50, 0.008
+20181016, 2.24, 0.56, -1.46, -0.19, -0.68, 0.008
+20181017, -0.08, -0.60, 0.18, -0.25, 0.14, 0.008
+20181018, -1.54, -0.54, 0.53, -0.40, 0.35, 0.008
+20181019, -0.25, -1.25, 0.79, 0.39, 0.55, 0.008
+20181022, -0.38, 0.33, -1.19, 1.08, -0.19, 0.008
+20181023, -0.62, -0.21, -0.33, 0.14, -0.11, 0.008
+20181024, -3.33, -0.81, 0.64, 0.30, 1.25, 0.008
+20181025, 1.93, 0.32, -0.73, -0.16, -1.08, 0.008
+20181026, -1.65, 0.57, 0.37, -0.35, 0.52, 0.008
+20181029, -0.77, -0.09, 1.64, -0.06, 0.98, 0.008
+20181030, 1.66, 0.44, 0.10, 0.36, 0.37, 0.008
+20181031, 1.22, -0.72, -0.69, -0.33, -0.94, 0.008
+20181101, 1.29, 1.19, -1.11, -0.20, -0.51, 0.008
+20181102, -0.53, 0.85, 0.65, -0.43, 0.23, 0.008
+20181105, 0.40, -0.88, 1.56, -0.52, 0.77, 0.008
+20181106, 0.58, -0.16, 0.04, 0.29, 0.18, 0.008
+20181107, 2.11, -0.52, -0.98, -0.42, -0.81, 0.008
+20181108, -0.28, -0.14, 0.23, 0.42, 0.30, 0.008
+20181109, -1.04, -0.84, 0.38, 0.58, 0.72, 0.008
+20181112, -2.06, 0.07, 0.98, 0.50, 0.89, 0.008
+20181113, -0.13, -0.08, 0.08, 0.20, -0.31, 0.008
+20181114, -0.77, 0.02, -0.20, 0.56, 0.13, 0.008
+20181115, 1.18, 0.32, -0.56, -0.80, -0.69, 0.008
+20181116, 0.15, -0.03, -0.01, -0.78, 0.18, 0.008
+20181119, -1.88, -0.35, 2.34, 0.13, 1.24, 0.008
+20181120, -1.85, 0.00, -0.63, -0.32, -0.28, 0.008
+20181121, 0.51, 0.96, -0.29, -0.35, 0.00, 0.008
+20181123, -0.55, 0.74, -0.58, 0.31, -0.05, 0.008
+20181126, 1.62, -0.71, -0.18, -0.46, -0.74, 0.008
+20181127, 0.11, -1.05, 0.29, 0.60, 0.10, 0.008
+20181128, 2.42, 0.32, -1.27, 0.12, -0.94, 0.008
+20181129, -0.22, -0.21, -0.17, -0.41, 0.03, 0.008
+20181130, 0.78, -0.38, -0.38, 0.25, -0.24, 0.008
+20181203, 1.13, -0.12, -0.70, -0.30, -0.58, 0.010
+20181204, -3.45, -1.04, -0.10, -0.16, 0.91, 0.010
+20181206, -0.16, -0.07, -1.00, 0.14, -0.30, 0.010
+20181207, -2.36, 0.27, 1.29, -0.49, 0.61, 0.010
+20181210, 0.10, -0.42, -1.57, 0.34, -0.30, 0.010
+20181211, -0.08, -0.16, -0.35, 0.14, -0.07, 0.010
+20181212, 0.68, 0.49, -0.14, -0.23, -0.12, 0.010
+20181213, -0.26, -1.54, -0.17, 0.18, 0.03, 0.010
+20181214, -1.89, 0.07, 0.60, -0.24, 0.60, 0.010
+20181217, -2.13, -0.13, 0.99, 0.28, 0.22, 0.010
+20181218, -0.03, -0.07, -0.55, 0.91, -0.47, 0.010
+20181219, -1.58, -0.61, 0.18, -0.38, 0.42, 0.010
+20181220, -1.62, -0.11, 0.77, 0.57, -0.06, 0.010
+20181221, -2.17, -0.54, 0.84, 0.10, 0.66, 0.010
+20181224, -2.55, 0.91, -0.46, -0.37, -0.36, 0.010
+20181226, 5.06, -0.16, -1.06, -0.18, -1.07, 0.010
+20181227, 0.78, -0.71, -0.09, -0.12, 0.10, 0.010
+20181228, -0.03, 0.74, 0.24, -0.34, -0.07, 0.010
+20181231, 0.90, -0.13, -0.47, -0.08, -0.12, 0.010
+20190102, 0.23, 0.72, 1.16, -0.13, 0.26, 0.010
+20190103, -2.45, 0.52, 1.23, -0.25, 0.91, 0.010
+20190104, 3.55, 0.38, -0.74, -0.10, -0.58, 0.010
+20190107, 0.94, 0.83, -0.67, -0.69, -0.41, 0.010
+20190108, 1.01, 0.43, -0.53, 0.35, -0.09, 0.010
+20190109, 0.56, 0.52, -0.04, 0.09, -0.18, 0.010
+20190110, 0.42, -0.02, -0.41, -0.06, -0.04, 0.010
+20190111, -0.01, 0.20, 0.29, 0.24, 0.25, 0.010
+20190114, -0.60, -0.46, 0.88, 0.19, 0.00, 0.010
+20190115, 1.06, -0.13, -0.89, -0.29, -0.57, 0.010
+20190116, 0.28, 0.28, 0.83, -0.11, -0.24, 0.010
+20190117, 0.75, 0.08, -0.19, 0.08, -0.01, 0.010
+20190118, 1.29, -0.27, 0.11, 0.18, -0.25, 0.010
+20190122, -1.53, -0.36, 0.31, 0.23, 0.33, 0.010
+20190123, 0.15, -0.42, -0.13, 0.36, 0.28, 0.010
+20190124, 0.23, 0.48, -0.10, -0.09, -0.20, 0.010
+20190125, 0.90, 0.41, -0.36, -0.37, -0.56, 0.010
+20190128, -0.80, -0.08, 0.66, 0.28, 0.18, 0.010
+20190129, -0.19, 0.02, 0.17, 0.02, 0.49, 0.010
+20190130, 1.51, -0.31, -1.07, -0.19, -0.88, 0.010
+20190131, 0.92, -0.04, -1.08, -0.36, -0.02, 0.010
+20190201, 0.14, -0.16, 0.34, -0.75, 0.30, 0.010
+20190204, 0.72, 0.43, -0.58, 0.21, -0.21, 0.010
+20190205, 0.43, -0.13, -0.57, 0.60, -0.34, 0.010
+20190206, -0.22, -0.02, 0.01, -0.06, 0.06, 0.010
+20190207, -0.93, -0.14, 0.41, 0.55, 0.30, 0.010
+20190208, 0.09, -0.08, -0.67, -0.33, -0.11, 0.010
+20190211, 0.14, 0.66, 0.20, -0.08, -0.02, 0.010
+20190212, 1.36, 0.04, -0.24, -0.08, -0.24, 0.010
+20190213, 0.28, 0.07, 0.05, 0.11, 0.20, 0.010
+20190214, -0.21, 0.52, -0.56, 0.38, -0.16, 0.010
+20190215, 1.13, 0.37, 0.53, -0.21, 0.02, 0.010
+20190219, 0.19, 0.30, 0.32, 0.00, 0.22, 0.010
+20190220, 0.19, 0.30, 0.59, 0.02, -0.25, 0.010
+20190221, -0.37, -0.04, -0.25, 0.58, 0.10, 0.010
+20190222, 0.65, 0.38, -1.37, 0.31, -0.62, 0.010
+20190225, 0.15, -0.24, -0.20, -0.77, -0.51, 0.010
+20190226, -0.16, -0.68, -0.30, 0.07, -0.15, 0.010
+20190227, 0.09, 0.16, -0.15, -0.65, -0.11, 0.010
+20190228, -0.31, -0.02, -0.27, 0.31, 0.14, 0.010
+20190301, 0.72, 0.26, -0.48, -0.35, -0.19, 0.009
+20190304, -0.52, -0.40, 0.34, 0.11, -0.08, 0.009
+20190305, -0.17, -0.32, -0.22, 0.28, -0.03, 0.009
+20190306, -0.84, -1.24, 0.09, 0.54, 0.12, 0.009
+20190307, -0.82, -0.05, -0.27, -0.36, 0.14, 0.009
+20190308, -0.22, 0.06, -0.13, -0.09, -0.29, 0.009
+20190311, 1.49, 0.26, -0.49, -0.28, -0.46, 0.009
+20190312, 0.25, -0.30, -0.04, -0.43, 0.01, 0.009
+20190313, 0.68, -0.32, 0.01, -0.17, 0.16, 0.009
+20190314, -0.10, -0.36, 0.23, -0.15, -0.12, 0.009
+20190315, 0.48, -0.25, -0.28, -0.04, -0.21, 0.009
+20190318, 0.46, 0.22, 0.35, -0.09, -0.09, 0.009
+20190319, -0.09, -0.46, -0.88, 0.03, -0.08, 0.009
+20190320, -0.39, -0.23, -0.99, -0.16, -0.27, 0.009
+20190321, 1.11, 0.16, -1.12, 0.36, -0.34, 0.009
+20190322, -2.17, -1.59, 0.07, 0.54, 0.58, 0.009
+20190325, -0.05, 0.60, -0.30, 0.21, 0.04, 0.009
+20190326, 0.76, 0.23, 0.42, 0.03, 0.19, 0.009
+20190327, -0.50, 0.16, 0.52, 0.75, 0.10, 0.009
+20190328, 0.40, 0.37, -0.09, -0.14, -0.08, 0.009
+20190329, 0.66, -0.28, -0.84, 0.24, -0.16, 0.009
+20190401, 1.19, -0.20, 0.96, -0.09, -0.29, 0.010
+20190402, -0.05, -0.18, -0.41, -0.39, -0.49, 0.010
+20190403, 0.27, 0.22, -0.37, 0.14, -0.40, 0.010
+20190404, 0.19, 0.36, 0.96, 0.62, 0.27, 0.010
+20190405, 0.52, 0.48, -0.02, -0.28, 0.11, 0.010
+20190408, 0.08, -0.31, 0.13, 0.28, -0.03, 0.010
+20190409, -0.65, -0.61, -0.07, 0.15, -0.03, 0.010
+20190410, 0.48, 0.93, -0.06, 0.09, -0.13, 0.010
+20190411, 0.00, -0.28, 0.43, 0.03, 0.13, 0.010
+20190412, 0.65, -0.36, 0.69, 0.52, -0.23, 0.010
+20190415, -0.09, -0.26, -0.58, 0.35, 0.08, 0.010
+20190416, 0.13, 0.24, 0.64, -0.13, -0.14, 0.010
+20190417, -0.32, -0.53, 0.78, 1.11, -0.26, 0.010
+20190418, 0.11, -0.27, -0.46, 0.17, -0.19, 0.010
+20190422, 0.11, -0.47, -0.56, -0.54, -0.18, 0.010
+20190423, 0.97, 0.65, -0.58, -0.06, -0.44, 0.010
+20190424, -0.23, 0.33, -0.22, 0.64, 0.06, 0.010
+20190425, -0.14, -0.78, -0.26, -0.62, -0.31, 0.010
+20190426, 0.53, 0.49, 0.05, -0.03, -0.19, 0.010
+20190429, 0.18, 0.18, 0.61, -0.36, -0.17, 0.010
+20190430, -0.04, -0.67, 0.25, 0.09, 0.70, 0.010
+20190501, -0.83, -0.08, -0.06, 0.37, -0.03, 0.009
+20190502, -0.16, 0.48, -0.48, 0.07, 0.06, 0.009
+20190503, 1.13, 0.94, -0.27, 0.01, -0.36, 0.009
+20190506, -0.39, 0.59, -0.46, 0.02, 0.05, 0.009
+20190507, -1.69, -0.28, 0.54, 0.00, 0.31, 0.009
+20190508, -0.21, -0.20, -0.31, -0.02, 0.17, 0.009
+20190509, -0.28, 0.07, 0.10, -0.37, 0.01, 0.009
+20190510, 0.35, -0.32, 0.11, -0.14, 0.26, 0.009
+20190513, -2.67, -0.67, 0.36, 0.23, 0.82, 0.009
+20190514, 0.93, 0.34, -0.03, -0.53, -0.02, 0.009
+20190515, 0.58, -0.09, -0.94, 0.13, -0.27, 0.009
+20190516, 0.91, -0.44, -0.24, -0.14, -0.23, 0.009
+20190517, -0.73, -0.76, 0.36, 0.08, 0.31, 0.009
+20190520, -0.65, -0.09, 0.79, 0.08, 0.44, 0.009
+20190521, 0.90, 0.42, -0.34, -0.15, -0.16, 0.009
+20190522, -0.40, -0.62, -0.63, -0.14, 0.19, 0.009
+20190523, -1.37, -0.73, -0.23, 0.31, 0.23, 0.009
+20190524, 0.23, 0.51, 0.29, -0.48, -0.03, 0.009
+20190528, -0.78, 0.20, -0.60, -0.02, -0.27, 0.009
+20190529, -0.71, -0.22, 0.44, -0.19, 0.03, 0.009
+20190530, 0.14, -0.39, -0.77, 0.33, -0.05, 0.009
+20190531, -1.37, -0.20, -0.21, 0.02, 0.39, 0.009
+20190603, -0.40, 0.59, 1.46, 0.27, 1.45, 0.009
+20190604, 2.33, 0.49, -0.16, 0.29, -0.47, 0.009
+20190605, 0.70, -1.08, -0.92, 0.10, -0.23, 0.009
+20190606, 0.55, -1.08, 0.00, 0.03, -0.07, 0.009
+20190607, 1.04, -0.16, -1.15, 0.39, -0.65, 0.009
+20190610, 0.53, 0.02, -0.07, 0.42, -0.36, 0.009
+20190611, -0.12, -0.21, 0.59, 0.44, 0.19, 0.009
+20190612, -0.20, 0.28, -0.90, 0.09, 0.09, 0.009
+20190613, 0.52, 0.69, -0.01, -0.12, -0.05, 0.009
+20190614, -0.27, -0.71, 0.30, 0.24, 0.15, 0.009
+20190617, 0.15, 0.48, -1.09, -0.65, -0.44, 0.009
+20190618, 1.04, 0.20, 0.20, -0.29, -0.19, 0.009
+20190619, 0.32, 0.02, -0.60, -0.19, 0.14, 0.009
+20190620, 0.89, -0.39, -0.23, -0.13, -0.09, 0.009
+20190621, -0.21, -0.45, -0.07, -0.12, 0.03, 0.009
+20190624, -0.34, -0.91, 0.15, 0.60, -0.02, 0.009
+20190625, -0.98, 0.42, 0.74, -0.09, 0.62, 0.009
+20190626, -0.06, 0.00, 0.22, 0.37, -0.39, 0.009
+20190627, 0.60, 1.43, -0.09, -0.31, -0.24, 0.009
+20190628, 0.68, 0.77, 0.60, -0.47, 0.12, 0.009
+20190701, 0.75, -0.59, -0.17, -0.14, 0.02, 0.009
+20190702, 0.14, -0.97, -0.80, -0.01, 0.04, 0.009
+20190703, 0.78, -0.15, -0.31, -0.33, -0.06, 0.009
+20190705, -0.10, 0.33, 0.91, 0.10, -0.06, 0.009
+20190708, -0.58, -0.43, 0.03, 0.03, -0.25, 0.009
+20190709, 0.18, -0.25, -0.52, -0.65, -0.26, 0.009
+20190710, 0.40, -0.27, -0.41, 0.10, -0.04, 0.009
+20190711, 0.19, -0.78, 0.04, -0.23, -0.54, 0.009
+20190712, 0.53, 0.33, 0.43, 0.58, -0.07, 0.009
+20190715, -0.04, -0.51, -1.00, 0.15, 0.25, 0.009
+20190716, -0.32, 0.39, 0.14, 0.49, -0.03, 0.009
+20190717, -0.64, -0.27, -0.65, -0.48, -0.23, 0.009
+20190718, 0.35, -0.29, -0.02, -0.31, 0.39, 0.009
+20190719, -0.56, 0.29, 0.88, 0.36, 0.16, 0.009
+20190722, 0.25, -0.54, -0.49, -0.20, 0.00, 0.009
+20190723, 0.65, -0.04, 0.80, 0.66, 0.34, 0.009
+20190724, 0.66, 0.93, 0.81, -0.08, -0.07, 0.009
+20190725, -0.63, -0.70, -0.21, 0.22, 0.13, 0.009
+20190726, 0.82, 0.33, -0.19, -0.62, -0.32, 0.009
+20190729, -0.32, -0.32, -0.46, 0.35, 0.41, 0.009
+20190730, -0.17, 1.38, 0.84, -0.23, 0.08, 0.009
+20190731, -1.09, 0.25, 0.55, 0.14, 0.47, 0.009
+20190801, -1.04, -0.80, -1.95, -0.41, -0.21, 0.007
+20190802, -0.87, -0.26, 0.04, 0.12, 0.21, 0.007
+20190805, -3.07, 0.04, -0.03, -0.11, 0.27, 0.007
+20190806, 1.29, -0.57, -0.57, -0.31, -0.23, 0.007
+20190807, 0.07, -0.11, -0.91, 0.20, -0.17, 0.007
+20190808, 1.97, 0.00, -0.29, 0.20, -0.36, 0.007
+20190809, -0.78, -0.48, -0.35, -0.53, -0.06, 0.007
+20190812, -1.32, 0.20, -0.29, 0.08, 0.22, 0.007
+20190813, 1.47, -0.34, -0.53, 0.33, -0.02, 0.007
+20190814, -2.95, 0.02, -0.54, -0.38, 0.00, 0.007
+20190815, 0.16, -0.70, -0.56, -0.11, -0.48, 0.007
+20190816, 1.55, 0.66, 0.65, 0.19, -0.05, 0.007
+20190819, 1.14, 0.02, 0.28, 0.42, 0.05, 0.007
+20190820, -0.75, 0.18, -0.52, 0.10, -0.23, 0.007
+20190821, 0.85, -0.03, -0.33, -0.04, -0.05, 0.007
+20190822, -0.10, -0.36, 0.52, 0.21, 0.27, 0.007
+20190823, -2.66, -0.61, -0.21, -0.67, -0.28, 0.007
+20190826, 1.08, -0.04, -0.20, 0.18, -0.13, 0.007
+20190827, -0.46, -1.00, -0.68, 0.25, 0.09, 0.007
+20190828, 0.68, 0.64, 0.64, 0.41, 0.19, 0.007
+20190829, 1.35, 0.41, 0.33, 0.18, -0.12, 0.007
+20190830, 0.03, -0.25, 0.25, 0.11, 0.11, 0.007
+20190903, -0.86, -0.93, 0.07, -0.18, 0.46, 0.009
+20190904, 1.08, -0.15, 0.42, 0.25, -0.04, 0.009
+20190905, 1.42, 0.55, 0.71, 0.50, -0.02, 0.009
+20190906, -0.02, -0.34, 0.06, 0.18, 0.42, 0.009
+20190909, 0.07, 1.35, 3.11, 0.86, 0.44, 0.009
+20190910, 0.17, 1.37, 1.24, -0.10, 0.60, 0.009
+20190911, 0.88, 1.37, -0.03, -0.19, 0.33, 0.009
+20190912, 0.22, -0.39, -0.21, -0.23, -0.12, 0.009
+20190913, -0.01, 0.17, 0.77, -0.07, -0.09, 0.009
+20190916, -0.23, 0.91, 0.52, -0.30, 0.03, 0.009
+20190917, 0.17, -0.80, -1.24, -0.20, -0.35, 0.009
+20190918, -0.05, -0.75, 0.04, -0.10, 0.10, 0.009
+20190919, -0.05, -0.48, -0.45, 0.06, -0.12, 0.009
+20190920, -0.48, 0.31, 0.14, -0.56, 0.03, 0.009
+20190923, -0.02, -0.12, 0.52, 0.25, 0.31, 0.009
+20190924, -1.01, -0.75, -0.01, 0.20, 0.50, 0.009
+20190925, 0.69, 0.41, 0.54, 0.42, 0.05, 0.009
+20190926, -0.41, -0.98, 0.11, 0.33, 0.34, 0.009
+20190927, -0.62, -0.18, 0.91, 0.24, 0.60, 0.009
+20190930, 0.50, -0.24, -0.49, 0.65, 0.00, 0.009
+20191001, -1.31, -0.66, -0.62, 0.11, -0.17, 0.007
+20191002, -1.73, 0.74, -0.39, -0.49, -0.24, 0.007
+20191003, 0.80, -0.38, -0.91, -0.21, -0.22, 0.007
+20191004, 1.39, -0.52, -0.08, 0.00, 0.06, 0.007
+20191007, -0.41, 0.13, -0.05, -0.09, -0.31, 0.007
+20191008, -1.61, -0.16, -0.11, 0.42, 0.09, 0.007
+20191009, 0.92, -0.56, -0.12, 0.12, -0.15, 0.007
+20191010, 0.59, -0.25, 0.29, 0.14, -0.08, 0.007
+20191011, 1.23, 0.60, 0.21, 0.43, 0.22, 0.007
+20191014, -0.18, -0.34, -0.06, -0.21, -0.12, 0.007
+20191015, 1.03, 0.26, -0.23, -0.22, -0.71, 0.007
+20191016, -0.24, 0.47, 0.22, 0.38, 0.25, 0.007
+20191017, 0.37, 0.79, -0.28, 0.14, -0.09, 0.007
+20191018, -0.49, -0.14, 0.88, -0.01, 0.41, 0.007
+20191021, 0.71, 0.32, 0.35, 0.04, 0.03, 0.007
+20191022, -0.34, 0.50, 0.91, 0.44, 0.35, 0.007
+20191023, 0.26, -0.11, 0.23, -0.05, 0.07, 0.007
+20191024, 0.25, -0.52, -0.91, -0.12, -0.62, 0.007
+20191025, 0.50, 0.40, 0.13, 0.35, -0.01, 0.007
+20191028, 0.62, 0.26, -0.23, -0.06, 0.00, 0.007
+20191029, -0.13, 0.40, 0.42, 0.03, 0.11, 0.007
+20191030, 0.27, -0.66, -1.20, -0.51, 0.03, 0.007
+20191031, -0.38, -0.33, -0.42, -0.22, 0.14, 0.007
+20191101, 1.08, 0.61, 0.84, -0.22, 0.11, 0.006
+20191104, 0.40, 0.34, 1.43, 0.61, 0.11, 0.006
+20191105, -0.03, 0.39, 0.51, 0.00, -0.01, 0.006
+20191106, -0.05, -0.79, 0.16, -0.15, 0.28, 0.006
+20191107, 0.38, 0.03, 0.56, 0.19, -0.11, 0.006
+20191108, 0.31, 0.02, -0.36, -0.11, 0.06, 0.006
+20191111, -0.19, -0.09, -0.21, -0.09, -0.05, 0.006
+20191112, 0.16, -0.18, -0.14, -0.13, -0.18, 0.006
+20191113, 0.01, -0.41, -0.81, -0.26, -0.02, 0.006
+20191114, 0.07, -0.16, -0.26, 0.11, -0.36, 0.006
+20191115, 0.74, -0.25, -0.34, 0.01, 0.03, 0.006
+20191118, 0.02, -0.37, -0.52, -0.06, -0.32, 0.006
+20191119, 0.02, 0.36, -0.99, -0.86, -0.24, 0.006
+20191120, -0.33, -0.14, -0.42, -0.60, -0.32, 0.006
+20191121, -0.14, -0.29, 0.13, 0.08, -0.10, 0.006
+20191122, 0.24, 0.15, 0.24, 0.16, 0.05, 0.006
+20191125, 0.92, 1.25, -0.39, 0.12, 0.04, 0.006
+20191126, 0.19, -0.09, -0.82, 0.23, -0.15, 0.006
+20191127, 0.44, 0.21, -0.05, 0.01, -0.02, 0.006
+20191129, -0.42, -0.12, -0.32, -0.48, 0.02, 0.006
+20191202, -0.87, -0.12, 0.51, 0.15, 0.18, 0.007
+20191203, -0.66, 0.41, -0.83, -0.51, -0.53, 0.007
+20191204, 0.60, 0.21, 0.27, 0.17, 0.04, 0.007
+20191205, 0.13, -0.15, 0.47, 0.28, 0.36, 0.007
+20191206, 0.91, 0.38, 0.43, 0.34, 0.25, 0.007
+20191209, -0.33, 0.30, 0.14, -0.14, -0.25, 0.007
+20191210, -0.08, 0.28, -0.09, -0.20, 0.08, 0.007
+20191211, 0.28, -0.10, 0.08, 0.33, 0.13, 0.007
+20191212, 0.90, 0.15, 1.18, 0.12, 0.23, 0.007
+20191213, -0.03, -0.49, -0.53, -0.29, -0.21, 0.007
+20191216, 0.74, 0.00, -0.07, -0.33, 0.15, 0.007
+20191217, 0.10, 0.49, 0.70, 0.14, -0.05, 0.007
+20191218, -0.05, 0.27, 0.09, 0.28, -0.02, 0.007
+20191219, 0.43, -0.13, -0.44, -0.22, -0.03, 0.007
+20191220, 0.48, -0.27, -0.30, 0.03, -0.06, 0.007
+20191223, 0.10, 0.16, -0.29, -0.13, 0.31, 0.007
+20191224, 0.01, 0.36, -0.03, -0.28, 0.03, 0.007
+20191226, 0.49, -0.56, 0.00, 0.22, -0.20, 0.007
+20191227, -0.09, -0.54, -0.08, 0.24, 0.15, 0.007
+20191230, -0.57, 0.28, 0.57, 0.15, 0.45, 0.007
+20191231, 0.28, 0.02, 0.12, -0.11, 0.20, 0.007
+20200102, 0.86, -0.95, -0.37, 0.17, -0.22, 0.006
+20200103, -0.67, 0.28, 0.01, -0.18, -0.15, 0.006
+20200106, 0.36, -0.22, -0.51, -0.18, -0.32, 0.006
+20200107, -0.19, -0.03, -0.20, -0.10, -0.31, 0.006
+20200108, 0.47, -0.17, -0.64, -0.16, -0.12, 0.006
+20200109, 0.65, -0.71, -0.49, -0.14, 0.06, 0.006
+20200110, -0.34, -0.25, -0.36, 0.05, -0.08, 0.006
+20200113, 0.73, -0.08, -0.12, 0.31, 0.28, 0.006
+20200114, -0.06, 0.47, -0.13, -0.28, -0.07, 0.006
+20200115, 0.16, 0.26, -0.84, -0.07, -0.23, 0.006
+20200116, 0.88, 0.50, -0.12, 0.03, -0.08, 0.006
+20200117, 0.28, -0.62, -0.12, 0.26, 0.02, 0.006
+20200121, -0.32, -0.67, -0.63, -0.09, -0.33, 0.006
+20200122, 0.08, -0.25, 0.00, -0.24, 0.00, 0.006
+20200123, 0.08, -0.07, -0.15, 0.26, -0.04, 0.006
+20200124, -0.97, -0.48, -0.35, 0.17, -0.04, 0.006
+20200127, -1.56, 0.26, -0.45, -0.58, 0.05, 0.006
+20200128, 1.02, -0.15, -0.43, 0.17, -0.10, 0.006
+20200129, -0.10, -0.45, -0.97, 0.24, 0.19, 0.006
+20200130, 0.34, -0.63, 0.64, -0.37, -0.12, 0.006
+20200131, -1.74, -0.53, -0.34, -0.55, -0.69, 0.006
+20200203, 0.84, 0.36, -0.69, -0.74, -0.35, 0.006
+20200204, 1.57, -0.13, -0.68, 0.32, -0.15, 0.006
+20200205, 0.97, 0.73, 1.52, 0.98, 0.65, 0.006
+20200206, 0.27, -0.60, -0.85, -0.07, -0.36, 0.006
+20200207, -0.55, -0.82, -0.06, -0.19, -0.52, 0.006
+20200210, 0.73, -0.18, -0.91, -0.14, -0.41, 0.006
+20200211, 0.28, 0.34, 1.07, 0.31, 0.23, 0.006
+20200212, 0.66, 0.16, -0.33, 0.24, 0.00, 0.006
+20200213, -0.09, 0.13, -0.04, -0.15, -0.41, 0.006
+20200214, 0.15, -0.57, -0.71, -0.25, -0.27, 0.006
+20200218, -0.19, -0.02, -0.70, -0.49, -0.67, 0.006
+20200219, 0.60, 0.22, -0.06, 0.11, -0.33, 0.006
+20200220, -0.35, 0.59, 0.66, 0.07, -0.15, 0.006
+20200221, -1.12, -0.03, 0.05, -0.18, 0.36, 0.006
+20200224, -3.38, 0.15, -0.01, -0.36, 0.23, 0.006
+20200225, -3.09, -0.34, -0.74, -0.62, 0.02, 0.006
+20200226, -0.52, -0.79, -1.24, -0.53, -0.11, 0.006
+20200227, -4.22, 0.69, 0.09, -0.35, -0.09, 0.006
+20200228, -0.78, 0.06, -0.79, 0.32, -0.40, 0.006
+20200302, 4.31, -1.96, -0.42, -0.55, 0.55, 0.006
+20200303, -2.79, 0.64, -0.64, -0.51, 0.23, 0.006
+20200304, 4.02, -1.20, -1.10, 0.13, 0.24, 0.006
+20200305, -3.38, -0.18, -1.37, -0.91, 0.15, 0.006
+20200306, -1.78, -0.21, -1.39, 0.76, 0.37, 0.006
+20200309, -7.79, -1.41, -4.73, 0.12, 0.48, 0.006
+20200310, 4.74, -2.37, 0.75, 0.46, 0.06, 0.006
+20200311, -5.05, -1.05, -0.89, 0.06, 0.10, 0.006
+20200312, -9.63, -1.14, -1.24, -0.31, -0.26, 0.006
+20200313, 8.96, -2.01, 3.07, 1.23, 0.80, 0.006
+20200316, -12.00, -0.89, -0.88, 0.58, 1.19, 0.006
+20200317, 5.87, 0.36, -0.97, -0.49, -0.07, 0.006
+20200318, -5.56, -4.61, -4.68, 0.25, 0.21, 0.006
+20200319, 1.31, 5.72, 0.99, -1.65, -1.57, 0.006
+20200320, -4.15, 0.30, -0.86, -0.74, -1.20, 0.006
+20200323, -2.56, 1.63, -3.50, 0.29, -1.22, 0.006
+20200324, 9.34, -0.16, 2.44, 0.44, 0.22, 0.006
+20200325, 1.18, -0.12, 1.89, -0.12, 0.13, 0.006
+20200326, 6.02, -0.45, 1.23, -0.57, 0.04, 0.006
+20200327, -3.47, -1.06, -0.70, -1.12, 0.82, 0.006
+20200330, 3.16, -0.80, -2.20, -0.19, 0.17, 0.006
+20200331, -1.44, 1.51, -0.48, 0.41, -0.14, 0.006
+20200401, -4.51, -2.04, -1.49, 0.15, 0.29, 0.000
+20200402, 2.09, -0.93, -0.27, -0.11, 0.95, 0.000
+20200403, -1.64, -1.37, -1.17, -0.19, 0.40, 0.000
+20200406, 7.06, 1.14, 0.30, 1.27, -0.77, 0.000
+20200407, -0.11, 0.16, 2.15, 0.87, -0.33, 0.000
+20200408, 3.40, 0.89, 1.34, 0.42, -0.21, 0.000
+20200409, 1.60, 2.45, 3.19, -0.90, -0.09, 0.000
+20200413, -0.92, -1.39, -2.44, -0.55, -0.09, 0.000
+20200414, 3.02, -0.70, -3.15, 0.19, -0.36, 0.000
+20200415, -2.15, -1.94, -2.49, -0.34, -0.33, 0.000
+20200416, 0.62, -0.85, -3.01, -0.34, -0.28, 0.000
+20200417, 2.72, 1.54, 2.71, -0.19, 0.02, 0.000
+20200420, -1.56, 0.38, -0.92, -1.75, -0.56, 0.000
+20200421, -3.08, 0.97, 0.06, 0.24, 0.35, 0.000
+20200422, 2.31, -0.89, -1.64, 0.15, 0.07, 0.000
+20200423, 0.13, 1.30, 0.56, 0.58, -0.34, 0.000
+20200424, 1.44, 0.29, -0.07, -0.14, 0.17, 0.000
+20200427, 1.73, 2.19, 2.75, -0.10, 0.20, 0.000
+20200428, -0.45, 1.65, 2.85, 1.35, 0.73, 0.000
+20200429, 2.92, 2.27, 2.07, 1.23, -0.83, 0.000
+20200430, -1.18, -2.06, -1.64, 0.71, -0.09, 0.000
+20200501, -2.91, -0.90, -1.02, -0.39, 0.36, 0.000
+20200504, 0.53, -0.16, -1.40, -0.79, -0.44, 0.000
+20200505, 0.95, -0.26, -1.97, -0.55, -0.51, 0.000
+20200506, -0.52, 0.11, -2.77, 0.12, -0.64, 0.000
+20200507, 1.33, 0.16, 0.41, -0.17, -0.69, 0.000
+20200508, 1.90, 1.93, 2.49, 0.86, 0.39, 0.000
+20200511, 0.07, -0.25, -3.72, -0.82, -0.06, 0.000
+20200512, -2.06, -1.16, -1.35, -0.68, -0.06, 0.000
+20200513, -1.89, -1.47, -2.18, -0.06, -0.26, 0.000
+20200514, 1.14, -1.06, 0.95, 0.57, 0.10, 0.000
+20200515, 0.57, 1.32, -1.23, 0.01, -0.80, 0.000
+20200518, 3.24, 2.64, 4.61, 1.67, 0.36, 0.000
+20200519, -1.01, -0.80, -1.42, 0.49, -0.68, 0.000
+20200520, 1.80, 1.21, 1.28, -0.29, -0.33, 0.000
+20200521, -0.70, 0.76, 0.45, 0.10, 0.00, 0.000
+20200522, 0.27, 0.25, -0.86, -0.58, -0.38, 0.000
+20200526, 1.23, 1.23, 4.62, 1.06, 0.62, 0.000
+20200527, 1.54, 1.42, 3.67, 0.75, 0.40, 0.000
+20200528, -0.41, -2.02, -2.41, -0.17, 0.08, 0.000
+20200529, 0.60, -0.79, -2.00, -0.30, -0.46, 0.000
+20200601, 0.52, 0.26, 0.49, -0.04, -0.24, 0.000
+20200602, 0.81, 0.11, 0.46, 0.12, 0.23, 0.000
+20200603, 1.41, 0.74, 2.67, 0.74, 0.24, 0.000
+20200604, -0.34, 0.50, 3.02, 1.00, 0.63, 0.000
+20200605, 2.50, 1.15, 2.70, 0.71, 0.06, 0.000
+20200608, 1.39, 0.68, 2.18, -0.45, 0.58, 0.000
+20200609, -0.85, -0.86, -1.98, -0.08, -0.52, 0.000
+20200610, -0.57, -1.79, -4.19, -0.35, -0.35, 0.000
+20200611, -5.91, -1.50, -3.09, -0.24, -0.26, 0.000
+20200612, 1.29, 0.83, 1.95, 0.19, 0.02, 0.000
+20200615, 1.09, 1.40, -0.40, -0.77, -0.27, 0.000
+20200616, 1.86, 0.64, 0.47, 0.68, 0.22, 0.000
+20200617, -0.40, -1.35, -2.00, -0.53, -0.27, 0.000
+20200618, 0.19, 0.02, -0.53, -0.37, -0.24, 0.000
+20200619, -0.45, -0.16, -0.65, -0.78, -0.29, 0.000
+20200622, 0.71, 0.46, -1.42, -0.40, -0.40, 0.000
+20200623, 0.42, 0.19, -0.55, 0.58, -0.11, 0.000
+20200624, -2.61, -0.75, -1.32, -0.09, 0.35, 0.000
+20200625, 1.12, 0.35, 0.50, -0.85, 0.14, 0.000
+20200626, -2.44, -0.15, -1.42, 0.01, 0.70, 0.000
+20200629, 1.51, 1.47, 1.81, 1.48, 0.38, 0.000
+20200630, 1.58, -0.02, -0.02, -0.39, -0.27, 0.000
+20200701, 0.41, -1.67, -2.54, -0.44, -1.24, 0.000
+20200702, 0.50, 0.01, -0.09, 0.37, 0.19, 0.000
+20200706, 1.65, -0.64, 0.33, 0.21, -0.04, 0.000
+20200707, -1.03, -0.99, -1.51, -1.00, -0.02, 0.000
+20200708, 0.91, 0.07, -0.47, -0.43, -0.34, 0.000
+20200709, -0.53, -1.55, -2.58, -0.28, -0.59, 0.000
+20200710, 1.11, 0.62, 3.05, 0.75, 0.18, 0.000
+20200713, -1.20, -0.31, 2.00, 1.17, 1.19, 0.000
+20200714, 1.35, 0.33, -0.33, -0.03, 0.45, 0.000
+20200715, 1.14, 2.70, 1.29, 0.15, 0.12, 0.000
+20200716, -0.37, -0.16, 0.81, 0.30, 0.34, 0.000
+20200717, 0.30, -0.16, -1.40, -1.07, 0.00, 0.000
+20200720, 1.01, -1.11, -2.38, -0.81, -1.31, 0.000
+20200721, 0.16, 1.46, 3.24, 0.53, 0.91, 0.000
+20200722, 0.49, -0.61, -0.34, 0.50, 0.03, 0.000
+20200723, -1.20, 1.21, 1.96, -0.16, 0.21, 0.000
+20200724, -0.75, -0.78, 0.47, 0.29, 0.06, 0.000
+20200727, 0.88, 0.29, -1.93, -0.22, 0.07, 0.000
+20200728, -0.81, -0.45, 1.01, 0.29, 0.12, 0.000
+20200729, 1.35, 0.66, 0.84, 0.19, 0.15, 0.000
+20200730, -0.29, 0.01, -1.81, -0.46, -0.17, 0.000
+20200731, 0.61, -1.77, -0.65, 0.76, 0.73, 0.000
diff --git a/Data/F-F_Research_Data_Factors.CSV b/Data/F-F_Research_Data_Factors.CSV
new file mode 100644
index 0000000..c1069e4
--- /dev/null
+++ b/Data/F-F_Research_Data_Factors.CSV
@@ -0,0 +1,1231 @@
+This file was created by CMPT_ME_BEME_RETS using the 202007 CRSP database.
+The 1-month TBill return is from Ibbotson and Associates, Inc.
+
+,Mkt-RF,SMB,HML,RF
+192607, 2.96, -2.30, -2.87, 0.22
+192608, 2.64, -1.40, 4.19, 0.25
+192609, 0.36, -1.32, 0.01, 0.23
+192610, -3.24, 0.04, 0.51, 0.32
+192611, 2.53, -0.20, -0.35, 0.31
+192612, 2.62, -0.04, -0.02, 0.28
+192701, -0.06, -0.56, 4.83, 0.25
+192702, 4.18, -0.10, 3.17, 0.26
+192703, 0.13, -1.60, -2.67, 0.30
+192704, 0.46, 0.43, 0.60, 0.25
+192705, 5.44, 1.41, 4.93, 0.30
+192706, -2.34, 0.47, -1.53, 0.26
+192707, 7.26, -3.23, -1.16, 0.30
+192708, 1.97, -0.72, -3.69, 0.28
+192709, 4.76, -3.57, -0.71, 0.21
+192710, -4.31, 2.13, -4.33, 0.25
+192711, 6.58, 2.76, -0.31, 0.21
+192712, 2.09, 0.93, -1.06, 0.22
+192801, -0.68, 4.25, -0.72, 0.25
+192802, -1.70, -2.03, -0.69, 0.33
+192803, 8.81, -0.26, -1.20, 0.29
+192804, 4.23, 3.82, 3.67, 0.22
+192805, 1.52, 2.98, -3.46, 0.32
+192806, -4.85, -3.50, -0.06, 0.31
+192807, 0.62, -1.35, -0.47, 0.32
+192808, 6.68, -2.07, -2.11, 0.32
+192809, 2.88, 2.33, 0.99, 0.27
+192810, 1.33, 2.27, -2.26, 0.41
+192811, 11.81, -1.81, 2.80, 0.38
+192812, 0.36, -0.85, -0.60, 0.06
+192901, 4.66, -3.54, -1.21, 0.34
+192902, -0.34, -0.39, 1.68, 0.36
+192903, -0.89, -4.74, 1.61, 0.34
+192904, 1.43, -1.00, 0.60, 0.36
+192905, -6.39, -5.35, -1.40, 0.44
+192906, 9.70, -2.17, -2.76, 0.52
+192907, 4.46, -3.88, 2.66, 0.33
+192908, 8.18, -9.52, 0.06, 0.40
+192909, -5.47, 1.17, -0.63, 0.35
+192910, -20.12, -4.08, 7.85, 0.46
+192911, -12.74, -1.90, 5.33, 0.37
+192912, 1.33, -4.33, -0.59, 0.37
+193001, 5.61, 3.54, -1.01, 0.14
+193002, 2.50, 0.13, 0.39, 0.30
+193003, 7.10, 3.43, 0.15, 0.35
+193004, -2.06, -0.20, -0.84, 0.21
+193005, -1.66, -2.04, -0.63, 0.26
+193006, -16.27, -3.24, 2.00, 0.27
+193007, 4.12, -0.37, -1.56, 0.20
+193008, 0.30, -2.22, -0.78, 0.09
+193009, -12.75, -2.22, -5.27, 0.22
+193010, -8.78, -0.10, -1.35, 0.09
+193011, -3.04, 2.21, -3.53, 0.13
+193012, -7.83, -4.67, -5.40, 0.14
+193101, 6.24, 3.77, 7.16, 0.15
+193102, 10.88, 3.38, 1.61, 0.04
+193103, -6.43, 3.07, -3.66, 0.13
+193104, -9.98, -4.62, -3.94, 0.08
+193105, -13.24, 5.17, -6.58, 0.09
+193106, 13.90, -5.38, 11.31, 0.08
+193107, -6.62, 1.43, -2.10, 0.06
+193108, 0.41, -1.97, -1.49, 0.03
+193109, -29.13, 0.56, -6.75, 0.03
+193110, 8.04, -1.87, 1.70, 0.10
+193111, -9.08, 4.30, -5.05, 0.17
+193112, -13.53, -0.56, -8.86, 0.12
+193201, -1.58, 3.94, 9.04, 0.23
+193202, 5.46, -2.77, -1.45, 0.23
+193203, -11.21, 2.27, -2.32, 0.16
+193204, -17.96, 1.44, 1.42, 0.11
+193205, -20.51, 3.91, -2.99, 0.06
+193206, -0.70, 0.34, 5.30, 0.02
+193207, 33.84, -4.44, 35.46, 0.03
+193208, 37.06, 14.29, 33.03, 0.03
+193209, -2.94, -2.44, -6.82, 0.03
+193210, -13.17, -2.76, -10.05, 0.02
+193211, -5.88, 2.08, -13.28, 0.02
+193212, 4.40, -8.27, -8.17, 0.01
+193301, 1.25, 0.69, 6.23, 0.01
+193302, -15.24, -2.75, -2.73, -0.03
+193303, 3.29, 3.90, 7.38, 0.04
+193304, 38.85, 4.56, 17.43, 0.10
+193305, 21.43, 36.70, 19.03, 0.04
+193306, 13.11, 8.56, -2.05, 0.02
+193307, -9.63, -1.01, 3.27, 0.02
+193308, 12.05, -5.45, 2.96, 0.03
+193309, -10.65, -0.32, -11.77, 0.02
+193310, -8.36, -0.08, -8.46, 0.01
+193311, 9.97, -6.48, 2.33, 0.02
+193312, 1.83, 0.66, -1.53, 0.02
+193401, 12.60, 12.53, 15.54, 0.05
+193402, -2.50, 5.19, 2.12, 0.02
+193403, 0.09, 2.51, -2.73, 0.02
+193404, -1.79, 2.80, -3.75, 0.01
+193405, -7.25, -0.26, -5.91, 0.01
+193406, 2.64, -2.14, -2.92, 0.01
+193407, -10.96, -6.92, -10.64, 0.01
+193408, 5.58, 5.39, 0.45, 0.01
+193409, -0.23, -1.50, -1.22, 0.01
+193410, -1.66, 1.25, -5.11, 0.01
+193411, 8.33, 6.50, -2.24, 0.01
+193412, 0.36, 3.06, -3.20, 0.01
+193501, -3.45, 1.10, -1.86, 0.01
+193502, -1.94, 0.41, -7.27, 0.02
+193503, -3.68, -3.57, -5.10, 0.01
+193504, 9.06, -1.51, 4.35, 0.01
+193505, 3.47, -3.38, 2.56, 0.01
+193506, 5.93, -2.51, -1.65, 0.01
+193507, 7.51, 1.47, 6.86, 0.01
+193508, 2.65, 6.28, 5.70, 0.01
+193509, 2.63, 1.57, -4.05, 0.01
+193510, 7.03, 2.64, -2.33, 0.01
+193511, 4.88, 4.28, 11.91, 0.02
+193512, 4.56, 0.23, 1.07, 0.01
+193601, 6.89, 5.14, 10.51, 0.01
+193602, 2.49, 1.14, 5.04, 0.01
+193603, 0.99, 0.65, -1.66, 0.02
+193604, -8.14, -6.04, -2.08, 0.02
+193605, 5.19, 0.83, 2.63, 0.02
+193606, 2.40, -3.26, -1.20, 0.03
+193607, 6.67, 1.14, 2.56, 0.01
+193608, 0.99, 0.72, 3.99, 0.02
+193609, 0.98, 3.07, 0.88, 0.01
+193610, 7.12, -2.39, 2.52, 0.02
+193611, 3.27, 9.01, -0.92, 0.01
+193612, 0.21, 3.61, 3.96, 0.00
+193701, 3.35, 4.31, 2.61, 0.01
+193702, 1.09, 1.23, 5.05, 0.02
+193703, -0.27, -1.78, 6.39, 0.01
+193704, -7.36, -3.77, -3.61, 0.03
+193705, -0.83, -0.66, -3.49, 0.06
+193706, -4.21, -3.65, -3.21, 0.03
+193707, 8.91, 0.85, 0.82, 0.03
+193708, -4.86, 0.42, -2.25, 0.02
+193709, -13.61, -6.89, -4.57, 0.04
+193710, -9.61, 0.45, -1.62, 0.02
+193711, -8.31, -3.65, 0.20, 0.02
+193712, -4.24, -7.76, -0.39, 0.00
+193801, 0.49, 4.97, -1.60, 0.00
+193802, 5.84, 0.35, -2.02, 0.00
+193803, -23.82, -4.24, -3.52, -0.01
+193804, 14.51, 6.37, 0.18, 0.01
+193805, -3.83, -2.47, -0.28, 0.00
+193806, 23.87, 4.05, 0.30, 0.00
+193807, 7.34, 6.66, 2.18, -0.01
+193808, -2.67, -2.44, -4.72, 0.00
+193809, 0.81, -2.72, -1.62, 0.02
+193810, 7.80, 5.83, 5.01, 0.01
+193811, -1.72, -2.56, -1.23, -0.06
+193812, 4.19, -1.80, 0.50, 0.00
+193901, -5.96, -1.56, -3.92, -0.01
+193902, 3.51, 0.63, 2.95, 0.01
+193903, -11.99, -4.76, -8.29, -0.01
+193904, -0.18, 1.66, -0.30, 0.00
+193905, 6.80, 2.81, 0.47, 0.01
+193906, -5.31, -1.02, -5.41, 0.01
+193907, 10.24, 4.32, -0.03, 0.00
+193908, -6.68, -4.61, -2.42, -0.01
+193909, 16.88, 20.23, 22.22, 0.01
+193910, -0.53, -0.01, -4.89, 0.00
+193911, -3.62, -5.07, -6.46, 0.00
+193912, 3.03, 0.79, -4.06, 0.00
+194001, -2.41, 0.24, -0.77, 0.00
+194002, 1.44, 2.51, -0.32, 0.00
+194003, 2.05, 1.25, -1.27, 0.00
+194004, 0.22, 3.92, -0.13, 0.00
+194005, -21.95, -6.66, -3.69, -0.02
+194006, 6.67, -2.13, 4.63, 0.00
+194007, 3.16, 1.01, -0.74, 0.01
+194008, 2.19, -0.11, 0.56, -0.01
+194009, 2.39, 3.22, -1.13, 0.00
+194010, 3.02, 0.28, 4.64, 0.00
+194011, -1.61, 1.94, 0.12, 0.00
+194012, 0.69, -2.15, -0.89, 0.00
+194101, -4.17, 1.00, 3.83, -0.01
+194102, -1.43, -1.57, 0.89, -0.01
+194103, 0.84, 0.10, 3.04, 0.01
+194104, -5.46, -1.69, 3.41, -0.01
+194105, 1.39, -0.66, 0.60, 0.00
+194106, 5.83, 1.32, 0.59, 0.00
+194107, 5.87, 5.70, 7.25, 0.03
+194108, -0.17, -0.41, -1.10, 0.01
+194109, -0.87, -0.99, -0.28, 0.01
+194110, -5.25, -2.02, 1.63, 0.00
+194111, -1.92, -1.21, -0.64, 0.00
+194112, -4.87, -2.98, -5.94, 0.01
+194201, 0.79, 7.52, 10.10, 0.02
+194202, -2.46, 1.72, -1.13, 0.01
+194203, -6.58, 1.78, -0.62, 0.01
+194204, -4.37, -0.60, 2.09, 0.01
+194205, 5.94, -3.05, -2.65, 0.03
+194206, 2.69, -1.22, 0.54, 0.02
+194207, 3.51, -0.16, 2.40, 0.03
+194208, 1.80, -0.09, 1.33, 0.03
+194209, 2.61, 0.66, 2.39, 0.03
+194210, 6.82, 1.82, 6.47, 0.03
+194211, 0.15, -1.54, -4.24, 0.03
+194212, 5.12, -2.49, 0.56, 0.03
+194301, 7.13, 8.78, 8.23, 0.03
+194302, 6.15, 4.84, 6.51, 0.03
+194303, 6.01, 5.03, 5.48, 0.03
+194304, 0.81, 2.06, 5.86, 0.03
+194305, 5.74, 4.41, 3.28, 0.03
+194306, 1.82, -1.06, -0.74, 0.03
+194307, -4.77, -2.41, -2.27, 0.03
+194308, 1.30, -0.62, -0.47, 0.03
+194309, 2.40, 1.28, 1.43, 0.03
+194310, -1.15, 0.58, 1.65, 0.03
+194311, -5.91, -1.64, -4.04, 0.03
+194312, 6.36, 3.34, 3.22, 0.03
+194401, 1.74, 2.56, 2.17, 0.03
+194402, 0.37, -0.10, 0.83, 0.03
+194403, 2.46, 1.71, 3.43, 0.02
+194404, -1.69, -1.35, -1.13, 0.03
+194405, 5.07, 1.67, 1.02, 0.03
+194406, 5.49, 4.04, 1.82, 0.03
+194407, -1.49, 0.55, -0.43, 0.03
+194408, 1.57, 2.41, -1.63, 0.03
+194409, 0.01, 0.47, -1.21, 0.02
+194410, 0.16, -0.14, -0.34, 0.03
+194411, 1.71, 0.37, 2.31, 0.03
+194412, 4.03, 2.24, 5.91, 0.02
+194501, 2.01, 2.44, 0.71, 0.03
+194502, 6.23, 1.56, 4.40, 0.02
+194503, -3.89, -1.61, -1.78, 0.02
+194504, 7.80, 0.32, 3.21, 0.03
+194505, 1.73, 1.51, 0.35, 0.03
+194506, 0.39, 3.10, 4.32, 0.02
+194507, -2.17, -1.46, -2.71, 0.03
+194508, 6.20, 1.61, -4.40, 0.03
+194509, 4.77, 1.71, 0.48, 0.03
+194510, 3.89, 2.46, 2.25, 0.03
+194511, 5.39, 4.16, 4.34, 0.02
+194512, 1.20, 2.12, -2.32, 0.03
+194601, 6.24, 4.02, 2.21, 0.03
+194602, -5.83, -0.73, -1.27, 0.03
+194603, 5.87, 0.31, -0.36, 0.03
+194604, 4.23, 2.37, 0.45, 0.03
+194605, 3.93, 1.46, 1.09, 0.03
+194606, -3.89, -1.53, -0.59, 0.03
+194607, -2.69, -2.06, 0.04, 0.03
+194608, -6.44, -1.78, 0.60, 0.03
+194609, -10.17, -4.41, -1.96, 0.03
+194610, -1.44, 0.09, 3.44, 0.03
+194611, -0.01, -0.40, 1.52, 0.03
+194612, 4.96, 0.06, -1.38, 0.03
+194701, 1.25, 2.18, -0.73, 0.03
+194702, -1.08, 0.68, 0.14, 0.03
+194703, -1.67, -1.61, 0.61, 0.03
+194704, -4.80, -3.97, 0.85, 0.03
+194705, -0.97, -3.26, 0.34, 0.03
+194706, 5.29, -0.31, -0.60, 0.03
+194707, 4.14, 1.43, 2.82, 0.03
+194708, -1.74, 0.30, 0.16, 0.03
+194709, -0.54, 1.64, 1.36, 0.06
+194710, 2.47, 0.51, 0.08, 0.06
+194711, -1.97, -1.74, 1.06, 0.06
+194712, 3.00, -2.48, 3.69, 0.08
+194801, -3.93, 2.49, 1.38, 0.07
+194802, -4.38, -1.71, 0.07, 0.07
+194803, 8.07, 0.13, 4.49, 0.09
+194804, 3.65, -1.66, 4.10, 0.08
+194805, 7.30, 0.93, -1.23, 0.08
+194806, -0.10, -1.86, 2.75, 0.09
+194807, -5.09, -0.32, 0.07, 0.08
+194808, 0.25, -1.10, 0.27, 0.09
+194809, -2.97, -1.23, -1.79, 0.04
+194810, 5.96, -1.50, 0.56, 0.04
+194811, -9.30, -0.62, -4.14, 0.04
+194812, 3.26, -2.80, -1.94, 0.04
+194901, 0.23, 1.81, 1.17, 0.10
+194902, -2.93, -1.89, -0.91, 0.09
+194903, 4.04, 2.48, 1.34, 0.10
+194904, -1.87, -0.89, -1.18, 0.09
+194905, -2.94, -0.77, -2.42, 0.10
+194906, 0.10, -0.88, -1.76, 0.10
+194907, 5.54, 0.57, 0.38, 0.09
+194908, 2.60, 0.13, -0.57, 0.09
+194909, 3.09, 1.05, 0.23, 0.09
+194910, 3.14, 1.03, -0.49, 0.09
+194911, 1.82, -0.93, -0.91, 0.08
+194912, 5.13, 2.07, 1.75, 0.09
+195001, 1.70, 3.36, 0.14, 0.09
+195002, 1.48, 0.04, -0.81, 0.09
+195003, 1.26, -1.41, -2.77, 0.10
+195004, 3.94, 1.99, 1.34, 0.09
+195005, 4.31, -2.12, 0.46, 0.10
+195006, -5.94, -2.38, -0.78, 0.10
+195007, 1.36, 0.51, 13.66, 0.10
+195008, 4.85, 0.73, -1.41, 0.10
+195009, 4.81, 0.57, -1.11, 0.10
+195010, -0.18, -0.58, 1.44, 0.12
+195011, 2.76, -0.84, 3.17, 0.11
+195012, 5.54, 1.49, 7.23, 0.11
+195101, 5.70, 1.73, 3.72, 0.13
+195102, 1.41, 0.09, -2.83, 0.10
+195103, -2.15, -0.64, -4.22, 0.11
+195104, 4.86, -1.49, 3.28, 0.13
+195105, -2.34, -0.01, -1.33, 0.12
+195106, -2.62, -1.95, -3.96, 0.12
+195107, 6.94, -1.99, 2.01, 0.13
+195108, 4.27, 0.99, -0.16, 0.13
+195109, 0.70, 1.90, 0.61, 0.12
+195110, -2.53, -0.22, 0.25, 0.16
+195111, 0.57, -0.29, -0.05, 0.11
+195112, 3.33, -2.25, -1.56, 0.12
+195201, 1.45, -0.61, 1.54, 0.15
+195202, -2.62, 0.79, -0.61, 0.12
+195203, 4.44, -2.99, 2.16, 0.11
+195204, -4.97, 0.48, -0.10, 0.12
+195205, 3.20, -1.01, 0.08, 0.13
+195206, 3.83, -1.61, 1.23, 0.15
+195207, 0.91, -0.40, -0.35, 0.15
+195208, -0.76, 1.18, 0.03, 0.15
+195209, -2.03, 1.15, -1.51, 0.16
+195210, -0.66, -1.06, -0.45, 0.14
+195211, 5.94, -0.71, 0.95, 0.10
+195212, 2.93, -1.48, 0.18, 0.16
+195301, -0.34, 3.58, 1.32, 0.16
+195302, -0.27, 2.15, -0.08, 0.14
+195303, -1.43, -0.19, -0.80, 0.18
+195304, -2.83, 0.28, 1.53, 0.16
+195305, 0.52, -0.07, 0.23, 0.17
+195306, -1.89, -1.86, -0.47, 0.18
+195307, 2.40, -1.05, -0.24, 0.15
+195308, -4.52, 0.36, -3.54, 0.17
+195309, 0.20, -0.85, -2.42, 0.16
+195310, 4.60, -1.37, -0.19, 0.13
+195311, 2.83, -1.29, -0.17, 0.08
+195312, 0.03, -0.84, -2.84, 0.13
+195401, 5.13, 0.46, 3.51, 0.11
+195402, 1.67, -0.17, -0.28, 0.07
+195403, 3.65, -0.49, -1.46, 0.08
+195404, 4.27, -3.48, -0.37, 0.09
+195405, 3.09, 0.39, 2.46, 0.05
+195406, 1.07, 0.41, -0.03, 0.06
+195407, 4.99, 1.07, 4.11, 0.05
+195408, -2.34, 2.66, -1.36, 0.05
+195409, 6.39, -2.54, 0.66, 0.09
+195410, -1.67, 0.59, 0.72, 0.07
+195411, 9.38, -2.62, 4.36, 0.06
+195412, 5.48, 2.14, 5.71, 0.08
+195501, 0.60, 0.25, 2.18, 0.08
+195502, 3.02, 1.54, 0.62, 0.09
+195503, -0.16, -0.66, 1.95, 0.10
+195504, 3.11, -1.79, 0.81, 0.10
+195505, 0.93, -0.29, -0.86, 0.14
+195506, 6.55, -4.65, 1.92, 0.10
+195507, 1.90, -1.36, 0.63, 0.10
+195508, 0.21, -0.38, 0.58, 0.16
+195509, -0.36, 0.30, -1.06, 0.16
+195510, -2.68, 1.50, -0.03, 0.18
+195511, 7.03, -2.46, 0.50, 0.17
+195512, 1.49, 2.08, -2.24, 0.18
+195601, -3.03, 0.44, 1.12, 0.22
+195602, 3.77, -1.04, -0.53, 0.19
+195603, 6.64, -2.42, -0.14, 0.15
+195604, 0.28, 0.07, -0.18, 0.19
+195605, -5.20, 1.50, -1.33, 0.23
+195606, 3.48, -1.46, -1.32, 0.20
+195607, 4.84, -1.68, -0.01, 0.22
+195608, -3.18, 1.90, -0.71, 0.17
+195609, -5.14, 1.56, 1.79, 0.18
+195610, 0.52, -0.09, -0.06, 0.25
+195611, 0.36, -0.22, 1.78, 0.20
+195612, 3.16, -0.03, -2.10, 0.24
+195701, -3.58, 3.40, 2.78, 0.27
+195702, -2.06, -0.72, -0.73, 0.24
+195703, 2.13, 0.27, -0.47, 0.23
+195704, 4.26, -1.60, -1.51, 0.25
+195705, 3.45, -1.07, -2.05, 0.26
+195706, -0.74, 0.55, 0.01, 0.24
+195707, 0.66, -0.76, 0.38, 0.30
+195708, -5.11, 0.06, -0.45, 0.25
+195709, -5.98, 0.08, 0.88, 0.26
+195710, -4.32, -2.52, -1.83, 0.29
+195711, 2.30, 0.40, -2.90, 0.28
+195712, -3.91, -0.93, -1.71, 0.24
+195801, 4.66, 4.36, 4.23, 0.28
+195802, -1.52, 0.70, 0.28, 0.12
+195803, 3.27, 0.63, -0.92, 0.09
+195804, 3.09, -0.59, 1.46, 0.08
+195805, 2.31, 2.24, -0.35, 0.11
+195806, 2.93, -0.24, 0.50, 0.03
+195807, 4.39, 0.47, 3.12, 0.07
+195808, 1.91, 1.19, 0.29, 0.04
+195809, 4.66, 0.15, 2.96, 0.19
+195810, 2.53, 1.13, -1.18, 0.18
+195811, 3.01, 2.06, -1.29, 0.11
+195812, 5.15, -2.07, -0.05, 0.22
+195901, 0.71, 3.02, 2.98, 0.21
+195902, 0.95, 1.49, 1.05, 0.19
+195903, 0.28, 1.48, -0.35, 0.22
+195904, 3.66, -0.58, -1.22, 0.20
+195905, 1.73, -2.15, 1.87, 0.22
+195906, -0.25, 0.68, 1.33, 0.25
+195907, 3.17, -0.32, 0.26, 0.25
+195908, -1.39, -0.78, 0.44, 0.19
+195909, -4.80, -0.09, 0.57, 0.31
+195910, 1.28, 1.43, -2.05, 0.30
+195911, 1.60, 1.24, -3.27, 0.26
+195912, 2.45, -0.60, -0.03, 0.34
+196001, -6.98, 2.09, 2.73, 0.33
+196002, 1.17, 0.51, -1.99, 0.29
+196003, -1.63, -0.51, -2.85, 0.35
+196004, -1.71, 0.31, -2.23, 0.19
+196005, 3.12, 1.21, -3.76, 0.27
+196006, 2.08, -0.22, -0.34, 0.24
+196007, -2.37, -0.51, 2.01, 0.13
+196008, 3.01, 0.88, -0.17, 0.17
+196009, -5.99, -1.10, 1.55, 0.16
+196010, -0.71, -4.00, 2.66, 0.22
+196011, 4.69, 0.39, -2.52, 0.13
+196012, 4.71, -1.58, -0.76, 0.16
+196101, 6.20, 0.66, 3.70, 0.19
+196102, 3.57, 3.98, -0.74, 0.14
+196103, 2.89, 3.31, -0.83, 0.20
+196104, 0.29, 0.07, 2.10, 0.17
+196105, 2.40, 2.00, 0.40, 0.18
+196106, -3.08, -2.45, -0.21, 0.20
+196107, 2.83, -1.88, -0.11, 0.18
+196108, 2.57, -1.75, -0.28, 0.14
+196109, -2.15, -1.05, -0.58, 0.17
+196110, 2.57, -1.61, 0.12, 0.19
+196111, 4.45, 1.24, -1.19, 0.15
+196112, -0.18, -0.83, 1.83, 0.19
+196201, -3.87, 1.78, 5.09, 0.24
+196202, 1.81, -1.16, 0.85, 0.20
+196203, -0.68, 0.53, -1.43, 0.20
+196204, -6.59, -0.68, 0.03, 0.22
+196205, -8.65, -3.33, 2.78, 0.24
+196206, -8.47, -0.57, 2.54, 0.20
+196207, 6.28, 1.49, -3.44, 0.27
+196208, 2.13, 1.23, -1.19, 0.23
+196209, -5.22, -2.43, 1.23, 0.21
+196210, -0.05, -3.97, 1.29, 0.25
+196211, 10.87, 2.61, 1.01, 0.20
+196212, 1.01, -3.80, 0.33, 0.23
+196301, 4.93, 3.06, 2.26, 0.25
+196302, -2.38, 0.50, 2.21, 0.23
+196303, 3.08, -2.62, 2.10, 0.23
+196304, 4.51, -1.31, 1.01, 0.25
+196305, 1.76, 1.12, 2.50, 0.24
+196306, -2.00, -0.25, 0.70, 0.23
+196307, -0.39, -0.56, -0.83, 0.27
+196308, 5.07, -0.94, 1.67, 0.25
+196309, -1.57, -0.30, 0.18, 0.27
+196310, 2.53, -0.54, -0.10, 0.29
+196311, -0.85, -1.13, 1.71, 0.27
+196312, 1.83, -1.97, -0.12, 0.29
+196401, 2.24, -0.19, 1.59, 0.30
+196402, 1.54, 0.10, 2.83, 0.26
+196403, 1.41, 0.99, 3.32, 0.31
+196404, 0.10, -1.37, -0.55, 0.29
+196405, 1.42, -0.90, 1.98, 0.26
+196406, 1.27, -0.26, 0.68, 0.30
+196407, 1.74, 0.28, 0.68, 0.30
+196408, -1.44, 0.09, 0.09, 0.28
+196409, 2.69, -0.51, 1.65, 0.28
+196410, 0.59, 0.43, 1.14, 0.29
+196411, 0.00, 0.61, -1.98, 0.29
+196412, 0.03, -0.26, -2.55, 0.31
+196501, 3.54, 2.70, 0.18, 0.28
+196502, 0.44, 3.48, 0.22, 0.30
+196503, -1.34, 1.79, 1.09, 0.36
+196504, 3.11, 1.20, 0.71, 0.31
+196505, -0.77, 0.04, -1.63, 0.31
+196506, -5.51, -4.35, 0.55, 0.35
+196507, 1.43, 0.87, 2.18, 0.31
+196508, 2.73, 2.81, -0.96, 0.33
+196509, 2.86, 0.61, -0.10, 0.31
+196510, 2.60, 2.48, 1.52, 0.31
+196511, -0.03, 4.68, 0.21, 0.35
+196512, 1.01, 2.08, 1.95, 0.33
+196601, 0.72, 3.89, 3.49, 0.38
+196602, -1.21, 4.54, 0.27, 0.35
+196603, -2.51, 0.94, -2.07, 0.38
+196604, 2.14, 3.45, -0.54, 0.34
+196605, -5.66, -4.70, -1.55, 0.41
+196606, -1.44, 1.02, 0.50, 0.38
+196607, -1.63, -0.44, 0.96, 0.35
+196608, -7.91, -3.23, 0.47, 0.41
+196609, -1.06, -1.07, 0.53, 0.40
+196610, 3.86, -6.64, 2.87, 0.45
+196611, 1.40, 4.22, -4.46, 0.40
+196612, 0.13, 1.86, -1.22, 0.40
+196701, 8.15, 8.32, 2.22, 0.43
+196702, 0.78, 3.34, -2.17, 0.36
+196703, 3.99, 1.63, 0.31, 0.39
+196704, 3.89, 0.62, -2.64, 0.32
+196705, -4.33, 1.98, 0.80, 0.33
+196706, 2.41, 5.96, 0.96, 0.27
+196707, 4.58, 3.08, 2.65, 0.31
+196708, -0.89, 0.47, 1.46, 0.31
+196709, 3.11, 3.10, -2.47, 0.32
+196710, -3.09, 1.42, -3.39, 0.39
+196711, 0.37, 0.20, -1.71, 0.36
+196712, 3.05, 5.73, -0.39, 0.33
+196801, -4.06, 3.91, 4.75, 0.40
+196802, -3.75, -2.95, 1.17, 0.39
+196803, 0.20, -1.28, -0.59, 0.38
+196804, 9.05, 5.73, -1.03, 0.43
+196805, 2.28, 6.43, 0.84, 0.45
+196806, 0.69, -0.17, 0.67, 0.43
+196807, -2.72, -1.30, 5.48, 0.48
+196808, 1.34, 2.34, 1.00, 0.42
+196809, 4.03, 2.76, 0.23, 0.43
+196810, 0.42, -0.47, 2.89, 0.44
+196811, 5.43, 2.35, -0.90, 0.42
+196812, -3.94, 3.44, 0.02, 0.43
+196901, -1.25, -0.78, 1.69, 0.53
+196902, -5.84, -3.89, 0.91, 0.46
+196903, 2.64, -0.25, -0.46, 0.46
+196904, 1.46, -0.88, 0.03, 0.53
+196905, -0.10, -0.27, 0.73, 0.48
+196906, -7.18, -5.39, -1.09, 0.51
+196907, -7.00, -3.21, 1.42, 0.53
+196908, 4.68, 0.94, -3.87, 0.50
+196909, -2.98, 1.20, -3.19, 0.62
+196910, 5.06, 3.81, -3.19, 0.60
+196911, -3.79, -2.53, -1.12, 0.52
+196912, -2.63, -3.67, -3.02, 0.64
+197001, -8.10, 2.90, 3.04, 0.60
+197002, 5.13, -2.40, 4.04, 0.62
+197003, -1.06, -2.32, 4.25, 0.57
+197004, -11.00, -6.11, 6.40, 0.50
+197005, -6.92, -4.52, 3.60, 0.53
+197006, -5.79, -2.16, 0.87, 0.58
+197007, 6.93, -0.54, 0.96, 0.52
+197008, 4.49, 1.52, 1.03, 0.53
+197009, 4.18, 8.62, -5.58, 0.54
+197010, -2.28, -4.28, 0.27, 0.46
+197011, 4.60, -4.07, 1.63, 0.46
+197012, 5.72, 2.97, 1.01, 0.42
+197101, 4.84, 7.37, 1.38, 0.38
+197102, 1.41, 1.88, -1.29, 0.33
+197103, 4.13, 2.54, -4.04, 0.30
+197104, 3.15, -0.49, 0.72, 0.28
+197105, -3.98, -1.10, -1.38, 0.29
+197106, -0.10, -1.42, -2.06, 0.37
+197107, -4.50, -1.50, 0.17, 0.40
+197108, 3.79, -0.16, 2.67, 0.47
+197109, -0.85, 0.41, -2.96, 0.37
+197110, -4.42, -1.80, -0.43, 0.37
+197111, -0.46, -2.85, -1.70, 0.37
+197112, 8.71, 3.32, -0.35, 0.37
+197201, 2.49, 6.12, 1.99, 0.29
+197202, 2.87, 1.37, -2.76, 0.25
+197203, 0.63, -0.27, -1.73, 0.27
+197204, 0.29, 0.01, 0.23, 0.29
+197205, 1.25, -2.79, -2.69, 0.30
+197206, -2.43, 0.33, -2.51, 0.29
+197207, -0.80, -2.89, 0.78, 0.31
+197208, 3.26, -4.09, 4.69, 0.29
+197209, -1.14, -2.67, 0.47, 0.34
+197210, 0.52, -2.74, 1.37, 0.40
+197211, 4.60, -1.11, 4.76, 0.37
+197212, 0.62, -1.86, -2.27, 0.37
+197301, -3.29, -3.48, 2.68, 0.44
+197302, -4.85, -3.99, 1.70, 0.41
+197303, -1.30, -2.82, 2.78, 0.46
+197304, -5.68, -3.99, 5.69, 0.52
+197305, -2.94, -6.12, 0.21, 0.51
+197306, -1.56, -2.95, 1.44, 0.51
+197307, 5.05, 7.92, -5.35, 0.64
+197308, -3.82, -2.02, 1.13, 0.70
+197309, 4.75, 2.94, 2.19, 0.68
+197310, -0.83, -0.23, 1.75, 0.65
+197311, -12.75, -7.71, 4.09, 0.56
+197312, 0.61, -5.29, 4.10, 0.64
+197401, -0.17, 9.76, 5.98, 0.63
+197402, -0.47, 0.04, 2.56, 0.58
+197403, -2.81, 2.51, -0.11, 0.56
+197404, -5.29, -0.70, 1.03, 0.75
+197405, -4.68, -3.00, -2.07, 0.75
+197406, -2.83, -0.20, 0.77, 0.60
+197407, -8.05, 0.92, 5.14, 0.70
+197408, -9.35, -0.68, 2.50, 0.60
+197409, -11.77, 0.27, 5.49, 0.81
+197410, 16.10, -3.51, -9.99, 0.51
+197411, -4.51, -1.17, -0.16, 0.54
+197412, -3.45, -4.84, 0.00, 0.70
+197501, 13.66, 11.01, 8.44, 0.58
+197502, 5.56, 0.16, -4.56, 0.43
+197503, 2.66, 3.75, 2.49, 0.41
+197504, 4.23, -0.54, -1.11, 0.44
+197505, 5.19, 3.83, -4.02, 0.44
+197506, 4.83, 0.76, 1.32, 0.41
+197507, -6.59, 2.69, 1.70, 0.48
+197508, -2.85, -3.20, -0.90, 0.48
+197509, -4.26, -0.13, 0.34, 0.53
+197510, 5.31, -4.02, 0.30, 0.56
+197511, 2.64, -1.19, 1.99, 0.41
+197512, -1.60, -0.76, 1.75, 0.48
+197601, 12.16, 4.80, 8.58, 0.47
+197602, 0.32, 7.03, 5.78, 0.34
+197603, 2.32, -1.17, -0.04, 0.40
+197604, -1.49, -0.03, -0.06, 0.42
+197605, -1.34, -1.24, -1.32, 0.37
+197606, 4.05, -1.35, 0.68, 0.43
+197607, -1.07, 0.30, 1.74, 0.47
+197608, -0.56, -2.01, 0.79, 0.42
+197609, 2.07, 0.00, -0.29, 0.44
+197610, -2.42, 0.25, -0.12, 0.41
+197611, 0.36, 2.32, 1.52, 0.40
+197612, 5.65, 3.00, 2.21, 0.40
+197701, -4.05, 4.78, 4.26, 0.36
+197702, -1.94, 1.08, 0.50, 0.35
+197703, -1.37, 0.99, 1.02, 0.38
+197704, 0.15, -0.10, 3.47, 0.38
+197705, -1.45, 1.18, 0.84, 0.37
+197706, 4.71, 2.13, -0.64, 0.40
+197707, -1.69, 2.12, -0.59, 0.42
+197708, -1.75, 1.52, -2.79, 0.44
+197709, -0.27, 1.45, -0.49, 0.43
+197710, -4.38, 1.27, 1.72, 0.49
+197711, 4.00, 3.72, 0.31, 0.50
+197712, 0.27, 1.35, -0.37, 0.49
+197801, -6.01, 2.22, 3.31, 0.49
+197802, -1.38, 3.59, 0.76, 0.46
+197803, 2.85, 3.48, 1.20, 0.53
+197804, 7.88, 0.40, -3.54, 0.54
+197805, 1.76, 4.56, -0.62, 0.51
+197806, -1.69, 1.69, 0.59, 0.54
+197807, 5.11, 0.26, -1.11, 0.56
+197808, 3.75, 5.06, -0.46, 0.56
+197809, -1.43, -0.39, 1.87, 0.62
+197810, -11.91, -9.88, 1.36, 0.68
+197811, 2.71, 3.01, -2.22, 0.70
+197812, 0.88, 1.24, -2.19, 0.78
+197901, 4.23, 3.66, 2.27, 0.77
+197902, -3.56, 0.45, 1.20, 0.73
+197903, 5.68, 3.19, -0.67, 0.81
+197904, -0.06, 2.18, 1.05, 0.80
+197905, -2.21, 0.16, 1.32, 0.82
+197906, 3.85, 1.17, 1.48, 0.81
+197907, 0.82, 1.26, 1.70, 0.77
+197908, 5.53, 2.08, -1.55, 0.77
+197909, -0.82, -0.25, -0.87, 0.83
+197910, -8.10, -3.34, -1.86, 0.87
+197911, 5.21, 2.74, -3.25, 0.99
+197912, 1.79, 4.17, -1.98, 0.95
+198001, 5.51, 1.65, 1.80, 0.80
+198002, -1.22, -1.82, 0.62, 0.89
+198003, -12.90, -6.64, -1.06, 1.21
+198004, 3.97, 0.97, 1.06, 1.26
+198005, 5.26, 2.16, 0.39, 0.81
+198006, 3.06, 1.67, -0.89, 0.61
+198007, 6.49, 4.25, -6.30, 0.53
+198008, 1.80, 3.92, -2.64, 0.64
+198009, 2.19, 0.89, -4.79, 0.75
+198010, 1.06, 2.47, -2.74, 0.95
+198011, 9.59, -3.45, -8.35, 0.96
+198012, -4.52, -0.28, 2.68, 1.31
+198101, -5.04, 3.00, 6.84, 1.04
+198102, 0.57, -0.31, 0.97, 1.07
+198103, 3.56, 3.58, 0.67, 1.21
+198104, -2.11, 4.42, 2.26, 1.08
+198105, 0.11, 2.00, -0.43, 1.15
+198106, -2.36, -0.85, 5.13, 1.35
+198107, -1.54, -2.18, -0.66, 1.24
+198108, -7.04, -1.95, 4.84, 1.28
+198109, -7.17, -2.66, 5.20, 1.24
+198110, 4.92, 2.13, -4.21, 1.21
+198111, 3.36, -0.96, 1.90, 1.07
+198112, -3.65, 1.17, 0.74, 0.87
+198201, -3.24, -1.29, 3.17, 0.80
+198202, -5.86, 0.49, 6.10, 0.92
+198203, -1.87, -0.19, 3.78, 0.98
+198204, 3.27, 1.51, -2.78, 1.13
+198205, -3.99, 0.47, 1.81, 1.06
+198206, -3.09, -0.40, 1.54, 0.96
+198207, -3.19, 0.84, 0.15, 1.05
+198208, 11.14, -4.11, 1.16, 0.76
+198209, 1.29, 2.88, 0.34, 0.51
+198210, 11.30, 2.35, -3.68, 0.59
+198211, 4.67, 4.77, -1.96, 0.63
+198212, 0.55, -0.18, 0.01, 0.67
+198301, 3.60, 2.70, -0.86, 0.69
+198302, 2.59, 3.23, 0.67, 0.62
+198303, 2.82, 1.77, 2.07, 0.63
+198304, 6.67, 0.53, 0.60, 0.71
+198305, 0.52, 6.16, -1.40, 0.69
+198306, 3.07, 0.91, -3.87, 0.67
+198307, -4.07, 1.46, 5.62, 0.74
+198308, -0.50, -4.30, 5.55, 0.76
+198309, 0.91, 0.56, 1.09, 0.76
+198310, -3.44, -3.60, 5.06, 0.76
+198311, 2.16, 2.04, -0.62, 0.70
+198312, -1.78, -0.29, 1.67, 0.73
+198401, -1.92, -0.43, 7.63, 0.76
+198402, -4.82, -1.71, 3.36, 0.71
+198403, 0.63, 0.07, 0.48, 0.73
+198404, -0.51, -1.20, 1.29, 0.81
+198405, -5.97, 0.03, 0.26, 0.78
+198406, 1.82, -0.32, -2.60, 0.75
+198407, -2.74, -2.21, 0.49, 0.82
+198408, 10.28, -0.25, -1.85, 0.83
+198409, -0.80, 0.20, 5.32, 0.86
+198410, -0.84, -1.20, 0.51, 1.00
+198411, -1.76, -0.62, 4.08, 0.73
+198412, 1.84, -0.60, -0.17, 0.64
+198501, 7.99, 3.27, -5.43, 0.65
+198502, 1.22, 0.76, -0.12, 0.58
+198503, -0.84, -1.15, 4.10, 0.62
+198504, -0.96, 0.14, 3.73, 0.72
+198505, 5.09, -2.25, -0.86, 0.66
+198506, 1.27, 0.46, 0.40, 0.55
+198507, -0.74, 2.85, -1.63, 0.62
+198508, -1.02, -0.34, 2.28, 0.55
+198509, -4.54, -1.58, 1.32, 0.60
+198510, 4.02, -1.57, 0.78, 0.65
+198511, 6.48, 0.23, -2.87, 0.61
+198512, 3.88, -0.49, -1.53, 0.65
+198601, 0.65, 1.22, 0.53, 0.56
+198602, 7.13, -0.65, -0.94, 0.53
+198603, 4.88, -0.52, -0.44, 0.60
+198604, -1.31, 2.84, -2.85, 0.52
+198605, 4.62, -1.32, -0.11, 0.49
+198606, 1.03, -0.91, 1.40, 0.52
+198607, -6.45, -3.38, 4.78, 0.52
+198608, 6.07, -4.17, 3.52, 0.46
+198609, -8.60, 2.28, 3.19, 0.45
+198610, 4.66, -2.48, -1.32, 0.46
+198611, 1.17, -1.92, -0.06, 0.39
+198612, -3.27, 0.08, 0.37, 0.49
+198701, 12.47, -1.81, -3.18, 0.42
+198702, 4.39, 3.49, -5.99, 0.43
+198703, 1.64, 0.37, 1.66, 0.47
+198704, -2.11, -1.69, -0.33, 0.44
+198705, 0.11, -0.53, 0.13, 0.38
+198706, 3.94, -2.18, 1.07, 0.48
+198707, 3.85, -0.67, 0.66, 0.46
+198708, 3.52, -0.72, -0.90, 0.47
+198709, -2.59, 0.52, 0.28, 0.45
+198710, -23.24, -8.43, 4.23, 0.60
+198711, -7.77, 2.77, 3.14, 0.35
+198712, 6.81, 0.13, -4.49, 0.39
+198801, 4.21, -0.77, 5.08, 0.29
+198802, 4.75, 3.36, -1.65, 0.46
+198803, -2.27, 6.16, 0.74, 0.44
+198804, 0.56, 0.96, 1.69, 0.46
+198805, -0.29, -2.64, 2.30, 0.51
+198806, 4.79, 2.16, -1.07, 0.49
+198807, -1.25, -0.21, 2.27, 0.51
+198808, -3.31, 0.04, 2.03, 0.59
+198809, 3.30, -1.25, -0.68, 0.62
+198810, 1.15, -2.90, 1.71, 0.61
+198811, -2.29, -1.74, 1.24, 0.57
+198812, 1.49, 1.95, -1.55, 0.63
+198901, 6.10, -2.14, 0.51, 0.55
+198902, -2.25, 2.76, 0.87, 0.61
+198903, 1.57, 0.74, 0.46, 0.67
+198904, 4.33, -0.59, -1.45, 0.67
+198905, 3.35, -0.04, -0.82, 0.79
+198906, -1.35, -1.01, 2.19, 0.71
+198907, 7.20, -4.02, -2.84, 0.70
+198908, 1.44, 0.50, 0.72, 0.74
+198909, -0.76, 0.28, -1.34, 0.65
+198910, -3.67, -3.30, -1.03, 0.68
+198911, 1.03, -1.24, -1.12, 0.69
+198912, 1.16, -2.41, 0.28, 0.61
+199001, -7.85, -1.29, 0.87, 0.57
+199002, 1.11, 1.03, 0.61, 0.57
+199003, 1.83, 1.52, -2.90, 0.64
+199004, -3.36, -0.50, -2.55, 0.69
+199005, 8.42, -2.57, -3.74, 0.68
+199006, -1.09, 1.43, -1.94, 0.63
+199007, -1.90, -3.21, -0.01, 0.68
+199008, -10.15, -3.58, 1.58, 0.66
+199009, -6.12, -3.67, 0.73, 0.60
+199010, -1.92, -5.50, 0.22, 0.68
+199011, 6.35, 0.33, -3.16, 0.57
+199012, 2.46, 0.79, -1.54, 0.60
+199101, 4.69, 3.79, -1.84, 0.52
+199102, 7.19, 3.96, -0.54, 0.48
+199103, 2.65, 3.89, -1.23, 0.44
+199104, -0.28, 0.50, 1.42, 0.53
+199105, 3.65, -0.34, -0.57, 0.47
+199106, -4.94, 0.07, 1.21, 0.42
+199107, 4.24, -0.93, -1.25, 0.49
+199108, 2.32, 1.59, -0.78, 0.46
+199109, -1.59, 1.63, -1.00, 0.46
+199110, 1.29, 0.90, -0.43, 0.42
+199111, -4.19, -0.48, -1.93, 0.39
+199112, 10.84, -2.24, -4.03, 0.38
+199201, -0.59, 8.47, 4.51, 0.34
+199202, 1.09, 0.88, 6.37, 0.28
+199203, -2.66, -1.03, 3.65, 0.34
+199204, 1.07, -6.12, 4.31, 0.32
+199205, 0.30, 0.39, 1.28, 0.28
+199206, -2.34, -3.09, 3.40, 0.32
+199207, 3.77, -0.44, -0.53, 0.31
+199208, -2.38, -0.12, -1.03, 0.26
+199209, 1.19, 0.56, -0.21, 0.26
+199210, 1.02, 2.05, -2.10, 0.23
+199211, 4.13, 3.70, -1.48, 0.23
+199212, 1.53, 1.64, 2.52, 0.28
+199301, 0.93, 2.03, 5.87, 0.23
+199302, 0.12, -3.43, 6.42, 0.22
+199303, 2.30, 0.23, 1.22, 0.25
+199304, -3.05, -0.70, 2.61, 0.24
+199305, 2.89, 1.96, -3.41, 0.22
+199306, 0.31, -0.31, 2.62, 0.25
+199307, -0.34, 0.93, 3.25, 0.24
+199308, 3.71, 0.31, -0.45, 0.25
+199309, -0.12, 3.11, -0.44, 0.26
+199310, 1.41, 1.46, -1.54, 0.22
+199311, -1.89, -1.42, -0.27, 0.25
+199312, 1.65, 1.23, 0.56, 0.23
+199401, 2.87, 0.14, 2.10, 0.25
+199402, -2.55, 2.74, -1.46, 0.21
+199403, -4.78, -0.98, 1.29, 0.27
+199404, 0.68, -0.92, 1.67, 0.27
+199405, 0.58, -2.01, 0.20, 0.31
+199406, -3.03, -0.45, 1.69, 0.31
+199407, 2.82, -1.72, 0.62, 0.28
+199408, 4.01, 1.34, -2.80, 0.37
+199409, -2.31, 2.83, -1.91, 0.37
+199410, 1.34, -2.35, -1.74, 0.38
+199411, -4.04, 0.26, -0.94, 0.37
+199412, 0.86, 0.04, 0.54, 0.44
+199501, 1.80, -2.64, 0.81, 0.42
+199502, 3.63, -0.67, 1.09, 0.40
+199503, 2.19, -0.69, -1.09, 0.46
+199504, 2.11, -0.63, 2.27, 0.44
+199505, 2.90, -2.21, 1.72, 0.54
+199506, 2.72, 2.93, -2.28, 0.47
+199507, 3.72, 2.09, -1.67, 0.45
+199508, 0.55, 1.59, 2.71, 0.47
+199509, 3.35, -2.11, -0.75, 0.43
+199510, -1.52, -3.75, -0.73, 0.47
+199511, 3.96, -1.16, 0.94, 0.42
+199512, 1.03, 0.58, 0.87, 0.49
+199601, 2.26, -2.62, 0.31, 0.43
+199602, 1.33, 1.89, -1.42, 0.39
+199603, 0.73, 1.31, 1.01, 0.39
+199604, 2.06, 4.91, -3.91, 0.46
+199605, 2.36, 3.05, -1.20, 0.42
+199606, -1.14, -3.58, 1.56, 0.40
+199607, -5.97, -3.83, 4.45, 0.45
+199608, 2.77, 2.30, -0.46, 0.41
+199609, 5.01, -0.88, -3.15, 0.44
+199610, 0.86, -4.44, 5.13, 0.42
+199611, 6.25, -3.89, 1.17, 0.41
+199612, -1.70, 3.19, 0.88, 0.46
+199701, 4.98, -1.84, -1.64, 0.45
+199702, -0.49, -2.91, 5.20, 0.39
+199703, -5.02, -0.38, 3.81, 0.43
+199704, 4.04, -5.65, -0.06, 0.43
+199705, 6.74, 4.90, -3.89, 0.49
+199706, 4.10, 1.32, 1.23, 0.37
+199707, 7.33, -2.80, 0.82, 0.43
+199708, -4.15, 7.31, 1.38, 0.41
+199709, 5.35, 2.61, 0.01, 0.44
+199710, -3.80, -0.68, 1.95, 0.42
+199711, 2.98, -4.95, 0.78, 0.39
+199712, 1.32, -2.35, 3.45, 0.48
+199801, 0.15, -1.16, -1.45, 0.43
+199802, 7.04, 0.01, -0.13, 0.39
+199803, 4.76, -0.93, 1.05, 0.39
+199804, 0.73, 0.21, 0.73, 0.43
+199805, -3.07, -3.75, 4.16, 0.40
+199806, 3.18, -3.16, -2.33, 0.41
+199807, -2.46, -5.12, -0.96, 0.40
+199808, -16.08, -5.31, 3.40, 0.43
+199809, 6.15, -0.14, -3.31, 0.46
+199810, 7.13, -3.29, -2.21, 0.32
+199811, 6.10, 1.07, -3.15, 0.31
+199812, 6.16, -0.35, -4.46, 0.38
+199901, 3.50, 0.37, -4.03, 0.35
+199902, -4.08, -5.67, 1.40, 0.35
+199903, 3.45, -3.92, -2.65, 0.43
+199904, 4.33, 4.00, 2.53, 0.37
+199905, -2.46, 3.42, 2.40, 0.34
+199906, 4.77, 3.05, -3.60, 0.40
+199907, -3.49, 2.67, -0.76, 0.38
+199908, -1.38, -1.27, -1.31, 0.39
+199909, -2.79, 3.34, -3.39, 0.39
+199910, 6.12, -6.95, -2.89, 0.39
+199911, 3.37, 7.37, -6.51, 0.36
+199912, 7.72, 7.12, -8.73, 0.44
+200001, -4.74, 4.95, -0.28, 0.41
+200002, 2.45, 21.70, -9.93, 0.43
+200003, 5.20, -16.87, 7.37, 0.47
+200004, -6.40, -7.72, 8.61, 0.46
+200005, -4.42, -5.11, 2.57, 0.50
+200006, 4.64, 13.85, -9.86, 0.40
+200007, -2.51, -2.76, 8.06, 0.48
+200008, 7.03, -1.15, -0.66, 0.50
+200009, -5.45, -1.32, 6.13, 0.51
+200010, -2.76, -3.81, 5.64, 0.56
+200011, -10.72, -2.77, 11.26, 0.51
+200012, 1.19, 0.96, 7.38, 0.50
+200101, 3.13, 6.54, -4.86, 0.54
+200102, -10.05, -0.72, 12.87, 0.38
+200103, -7.26, 0.35, 6.46, 0.42
+200104, 7.94, 0.54, -4.72, 0.39
+200105, 0.72, 2.58, 3.17, 0.32
+200106, -1.94, 6.03, -1.03, 0.28
+200107, -2.13, -4.35, 5.57, 0.30
+200108, -6.46, 2.50, 2.50, 0.31
+200109, -9.25, -6.12, 1.60, 0.28
+200110, 2.46, 7.63, -8.10, 0.22
+200111, 7.54, -0.41, 2.01, 0.17
+200112, 1.61, 4.57, 1.10, 0.15
+200201, -1.44, 1.19, 3.33, 0.14
+200202, -2.29, -1.10, 2.50, 0.13
+200203, 4.24, 4.23, 1.10, 0.13
+200204, -5.20, 5.94, 3.93, 0.15
+200205, -1.38, -3.21, 1.68, 0.14
+200206, -7.21, 4.27, 0.12, 0.13
+200207, -8.18, -5.30, -3.44, 0.15
+200208, 0.50, -2.44, 2.53, 0.14
+200209, -10.35, 2.57, 1.32, 0.14
+200210, 7.84, -2.90, -5.45, 0.14
+200211, 5.96, 2.84, -1.12, 0.12
+200212, -5.76, 0.01, 2.23, 0.11
+200301, -2.57, 1.38, -0.94, 0.10
+200302, -1.88, -0.34, -1.45, 0.09
+200303, 1.09, 0.89, -2.07, 0.10
+200304, 8.22, 0.56, 1.03, 0.10
+200305, 6.05, 4.69, -0.29, 0.09
+200306, 1.42, 1.67, 0.69, 0.10
+200307, 2.35, 5.24, -1.14, 0.07
+200308, 2.34, 2.60, 2.03, 0.07
+200309, -1.24, 0.80, 0.01, 0.08
+200310, 6.08, 2.68, 1.77, 0.07
+200311, 1.35, 2.02, 1.85, 0.07
+200312, 4.29, -3.00, 2.41, 0.08
+200401, 2.15, 2.80, 1.97, 0.07
+200402, 1.40, -1.43, 0.50, 0.06
+200403, -1.32, 1.75, 0.22, 0.09
+200404, -1.83, -2.06, -2.62, 0.08
+200405, 1.17, -0.21, -0.39, 0.06
+200406, 1.86, 2.26, 1.39, 0.08
+200407, -4.06, -3.81, 4.11, 0.10
+200408, 0.08, -1.62, 1.03, 0.11
+200409, 1.60, 3.03, -0.25, 0.11
+200410, 1.43, 0.31, -0.63, 0.11
+200411, 4.54, 3.90, 1.79, 0.15
+200412, 3.43, 0.11, -0.08, 0.16
+200501, -2.76, -1.51, 1.96, 0.16
+200502, 1.89, -0.50, 1.65, 0.16
+200503, -1.97, -1.37, 1.61, 0.21
+200504, -2.61, -3.98, -0.35, 0.21
+200505, 3.65, 2.88, -0.81, 0.24
+200506, 0.57, 2.62, 2.63, 0.23
+200507, 3.92, 2.93, -0.52, 0.24
+200508, -1.22, -0.92, 1.27, 0.30
+200509, 0.49, -0.58, 0.77, 0.29
+200510, -2.02, -1.21, 0.22, 0.27
+200511, 3.61, 0.90, -1.19, 0.31
+200512, -0.25, -0.46, 0.44, 0.32
+200601, 3.04, 5.42, 1.13, 0.35
+200602, -0.30, -0.37, -0.25, 0.34
+200603, 1.46, 3.54, 0.60, 0.37
+200604, 0.73, -1.34, 2.61, 0.36
+200605, -3.57, -3.05, 2.54, 0.43
+200606, -0.35, -0.35, 0.87, 0.40
+200607, -0.78, -4.07, 2.94, 0.40
+200608, 2.03, 0.91, -1.71, 0.42
+200609, 1.84, -1.37, 0.04, 0.41
+200610, 3.23, 1.73, -0.03, 0.41
+200611, 1.71, 0.86, 0.07, 0.42
+200612, 0.87, -1.10, 3.16, 0.40
+200701, 1.40, 0.10, -0.11, 0.44
+200702, -1.96, 1.32, -0.09, 0.38
+200703, 0.68, -0.05, -0.22, 0.43
+200704, 3.49, -2.06, -1.15, 0.44
+200705, 3.24, 0.02, -0.04, 0.41
+200706, -1.96, 0.77, -1.12, 0.40
+200707, -3.73, -2.51, -3.33, 0.40
+200708, 0.92, -0.13, -2.24, 0.42
+200709, 3.22, -2.29, -1.86, 0.32
+200710, 1.80, 0.22, -2.59, 0.32
+200711, -4.83, -2.62, -1.18, 0.34
+200712, -0.87, 0.20, -0.51, 0.27
+200801, -6.36, -0.90, 3.65, 0.21
+200802, -3.09, -0.24, -0.94, 0.13
+200803, -0.93, 0.95, -0.14, 0.17
+200804, 4.60, -1.64, -0.95, 0.18
+200805, 1.86, 3.22, -1.38, 0.18
+200806, -8.44, 1.28, -2.41, 0.17
+200807, -0.77, 2.41, 5.93, 0.15
+200808, 1.53, 3.61, 1.55, 0.13
+200809, -9.24, -1.17, 6.32, 0.15
+200810, -17.23, -2.33, -2.88, 0.08
+200811, -7.86, -2.96, -6.03, 0.03
+200812, 1.74, 3.63, -0.28, 0.00
+200901, -8.12, 0.13, -11.23, 0.00
+200902, -10.10, 0.22, -7.30, 0.01
+200903, 8.95, -0.12, 3.64, 0.02
+200904, 10.19, 4.76, 5.53, 0.01
+200905, 5.21, -2.34, -0.21, 0.00
+200906, 0.43, 2.59, -2.66, 0.01
+200907, 7.72, 2.09, 5.31, 0.01
+200908, 3.33, -0.90, 7.76, 0.01
+200909, 4.08, 2.45, 0.91, 0.01
+200910, -2.59, -4.22, -4.17, 0.00
+200911, 5.56, -2.50, -0.19, 0.00
+200912, 2.75, 6.10, -0.01, 0.01
+201001, -3.36, 0.38, 0.31, 0.00
+201002, 3.40, 1.21, 3.13, 0.00
+201003, 6.31, 1.43, 2.13, 0.01
+201004, 2.00, 4.97, 2.82, 0.01
+201005, -7.89, 0.05, -2.39, 0.01
+201006, -5.56, -1.97, -4.48, 0.01
+201007, 6.93, 0.17, -0.26, 0.01
+201008, -4.77, -3.00, -1.96, 0.01
+201009, 9.54, 3.92, -3.13, 0.01
+201010, 3.88, 1.13, -2.61, 0.01
+201011, 0.60, 3.71, -0.90, 0.01
+201012, 6.82, 0.68, 3.81, 0.01
+201101, 1.99, -2.47, 0.81, 0.01
+201102, 3.49, 1.53, 1.09, 0.01
+201103, 0.45, 2.60, -1.58, 0.01
+201104, 2.90, -0.34, -2.52, 0.00
+201105, -1.27, -0.70, -2.07, 0.00
+201106, -1.75, -0.16, -0.31, 0.00
+201107, -2.36, -1.35, -1.21, 0.00
+201108, -5.99, -3.05, -2.45, 0.01
+201109, -7.59, -3.52, -1.39, 0.00
+201110, 11.35, 3.42, -0.18, 0.00
+201111, -0.28, -0.17, -0.34, 0.00
+201112, 0.74, -0.70, 1.78, 0.00
+201201, 5.05, 2.15, -1.14, 0.00
+201202, 4.42, -1.74, 0.09, 0.00
+201203, 3.11, -0.62, 0.91, 0.00
+201204, -0.85, -0.52, -0.49, 0.00
+201205, -6.19, 0.00, -0.58, 0.01
+201206, 3.89, 0.76, 0.44, 0.00
+201207, 0.79, -2.61, -0.26, 0.00
+201208, 2.55, 0.40, 1.28, 0.01
+201209, 2.73, 0.49, 1.52, 0.01
+201210, -1.76, -1.15, 3.79, 0.01
+201211, 0.78, 0.59, -0.98, 0.01
+201212, 1.18, 1.48, 3.58, 0.01
+201301, 5.57, 0.38, 0.91, 0.00
+201302, 1.29, -0.45, 0.01, 0.00
+201303, 4.03, 0.81, -0.28, 0.00
+201304, 1.55, -2.43, 0.59, 0.00
+201305, 2.80, 1.66, 2.56, 0.00
+201306, -1.20, 1.17, -0.17, 0.00
+201307, 5.65, 1.85, 0.55, 0.00
+201308, -2.71, 0.30, -2.76, 0.00
+201309, 3.77, 2.92, -1.20, 0.00
+201310, 4.18, -1.49, 1.10, 0.00
+201311, 3.12, 1.25, 0.27, 0.00
+201312, 2.81, -0.51, -0.30, 0.00
+201401, -3.32, 0.86, -2.10, 0.00
+201402, 4.65, 0.31, -0.46, 0.00
+201403, 0.43, -1.88, 5.06, 0.00
+201404, -0.19, -4.26, 1.07, 0.00
+201405, 2.06, -1.84, -0.19, 0.00
+201406, 2.61, 3.07, -0.76, 0.00
+201407, -2.04, -4.24, 0.01, 0.00
+201408, 4.24, 0.35, -0.58, 0.00
+201409, -1.97, -3.83, -1.23, 0.00
+201410, 2.52, 4.21, -1.68, 0.00
+201411, 2.55, -2.08, -2.99, 0.00
+201412, -0.06, 2.54, 2.06, 0.00
+201501, -3.11, -0.58, -3.47, 0.00
+201502, 6.13, 0.51, -1.83, 0.00
+201503, -1.12, 3.03, -0.46, 0.00
+201504, 0.59, -2.97, 1.85, 0.00
+201505, 1.36, 0.91, -1.36, 0.00
+201506, -1.53, 2.81, -0.79, 0.00
+201507, 1.54, -4.15, -4.14, 0.00
+201508, -6.04, 0.50, 2.66, 0.00
+201509, -3.08, -2.65, 0.53, 0.00
+201510, 7.75, -1.97, -0.06, 0.00
+201511, 0.56, 3.66, -0.50, 0.00
+201512, -2.17, -2.83, -2.60, 0.01
+201601, -5.77, -3.35, 2.08, 0.01
+201602, -0.07, 0.80, -0.49, 0.02
+201603, 6.96, 0.86, 1.15, 0.02
+201604, 0.92, 0.69, 3.26, 0.01
+201605, 1.78, -0.28, -1.82, 0.01
+201606, -0.05, 0.65, -1.46, 0.02
+201607, 3.95, 2.63, -1.09, 0.02
+201608, 0.50, 1.17, 3.37, 0.02
+201609, 0.25, 2.04, -1.47, 0.02
+201610, -2.02, -4.40, 4.14, 0.02
+201611, 4.86, 5.46, 8.32, 0.01
+201612, 1.81, 0.12, 3.60, 0.03
+201701, 1.94, -1.02, -2.77, 0.04
+201702, 3.57, -2.04, -1.82, 0.04
+201703, 0.17, 1.19, -3.17, 0.03
+201704, 1.09, 0.71, -1.87, 0.05
+201705, 1.06, -2.56, -3.81, 0.06
+201706, 0.78, 2.16, 1.35, 0.06
+201707, 1.87, -1.38, -0.26, 0.07
+201708, 0.16, -1.61, -2.22, 0.09
+201709, 2.51, 4.52, 3.02, 0.09
+201710, 2.25, -1.83, -0.08, 0.09
+201711, 3.12, -0.67, -0.04, 0.08
+201712, 1.06, -1.28, 0.11, 0.09
+201801, 5.58, -2.92, -1.55, 0.11
+201802, -3.65, 0.28, -1.09, 0.11
+201803, -2.35, 3.88, 0.00, 0.12
+201804, 0.29, 1.13, 0.56, 0.14
+201805, 2.65, 5.35, -3.21, 0.14
+201806, 0.48, 1.23, -2.40, 0.14
+201807, 3.19, -2.20, 0.47, 0.16
+201808, 3.44, 1.14, -4.13, 0.16
+201809, 0.06, -2.37, -1.32, 0.15
+201810, -7.68, -4.78, 3.47, 0.19
+201811, 1.69, -0.81, 0.27, 0.18
+201812, -9.55, -2.63, -1.49, 0.19
+201901, 8.41, 3.00, -0.60, 0.21
+201902, 3.40, 2.07, -2.83, 0.18
+201903, 1.10, -3.16, -4.04, 0.19
+201904, 3.96, -1.70, 1.96, 0.21
+201905, -6.94, -1.23, -2.35, 0.21
+201906, 6.93, 0.33, -1.08, 0.18
+201907, 1.19, -2.05, 0.17, 0.19
+201908, -2.58, -2.42, -5.05, 0.16
+201909, 1.43, -0.96, 6.81, 0.18
+201910, 2.06, 0.26, -2.04, 0.15
+201911, 3.87, 0.87, -1.80, 0.12
+201912, 2.77, 0.68, 1.93, 0.14
+202001, -0.11, -3.10, -6.37, 0.13
+202002, -8.13, 0.98, -4.05, 0.12
+202003, -13.39, -5.15, -14.17, 0.12
+202004, 13.65, 2.76, -1.18, 0.00
+202005, 5.58, 2.46, -4.92, 0.01
+202006, 2.45, 2.68, -2.19, 0.01
+202007, 5.77, -2.31, -1.27, 0.01
+
+ Annual Factors: January-December
+,Mkt-RF,SMB,HML,RF
+ 1927, 29.47, -2.46, -3.75, 3.12
+ 1928, 35.39, 4.41, -5.83, 3.56
+ 1929, -19.54, -30.78, 11.96, 4.75
+ 1930, -31.23, -5.19, -12.29, 2.41
+ 1931, -45.11, 3.51, -14.32, 1.07
+ 1932, -9.39, 4.91, 10.49, 0.96
+ 1933, 57.05, 48.86, 28.15, 0.30
+ 1934, 3.02, 25.43, -27.38, 0.16
+ 1935, 44.96, 9.99, 9.78, 0.17
+ 1936, 32.07, 17.89, 35.86, 0.18
+ 1937, -34.96, -14.00, -3.97, 0.31
+ 1938, 28.48, 9.35, -12.18, -0.02
+ 1939, 2.70, 5.85, -19.17, 0.02
+ 1940, -7.14, 0.79, -0.82, 0.00
+ 1941, -10.53, -4.04, 11.13, 0.06
+ 1942, 16.20, 5.05, 19.87, 0.27
+ 1943, 27.96, 33.35, 38.97, 0.35
+ 1944, 20.97, 17.98, 15.61, 0.33
+ 1945, 38.38, 25.56, 11.40, 0.33
+ 1946, -6.73, -3.79, 2.98, 0.35
+ 1947, 2.95, -7.08, 9.76, 0.50
+ 1948, 1.07, -9.14, 3.52, 0.81
+ 1949, 19.12, 3.93, -4.55, 1.10
+ 1950, 28.82, 0.93, 27.01, 1.20
+ 1951, 19.22, -4.93, -5.93, 1.49
+ 1952, 11.80, -6.66, 3.34, 1.66
+ 1953, -1.05, -1.16, -7.71, 1.82
+ 1954, 49.35, -2.18, 26.21, 0.86
+ 1955, 23.75, -6.71, 5.77, 1.57
+ 1956, 5.90, -1.17, -1.60, 2.46
+ 1957, -13.16, -2.72, -6.39, 3.14
+ 1958, 43.45, 14.81, 13.16, 1.54
+ 1959, 9.76, 5.43, 1.86, 2.95
+ 1960, -1.46, -2.76, -4.87, 2.66
+ 1961, 24.81, 1.49, 5.19, 2.13
+ 1962, -12.90, -8.25, 8.80, 2.73
+ 1963, 17.84, -5.88, 15.66, 3.12
+ 1964, 12.54, -0.99, 9.86, 3.54
+ 1965, 10.52, 21.80, 7.36, 3.93
+ 1966, -13.51, 2.59, -0.68, 4.76
+ 1967, 24.49, 50.69, -8.58, 4.21
+ 1968, 8.79, 24.50, 18.49, 5.21
+ 1969, -17.54, -13.98, -9.81, 6.58
+ 1970, -6.49, -11.79, 22.34, 6.52
+ 1971, 11.78, 5.62, -11.29, 4.39
+ 1972, 13.05, -11.95, 1.75, 3.84
+ 1973, -26.19, -23.44, 18.08, 6.93
+ 1974, -35.75, -0.60, 9.67, 8.00
+ 1975, 32.44, 15.28, 9.49, 5.80
+ 1976, 21.91, 14.69, 24.50, 5.08
+ 1977, -8.26, 22.95, 7.51, 5.12
+ 1978, 1.03, 14.38, 0.37, 7.18
+ 1979, 13.09, 21.12, -2.12, 10.38
+ 1980, 22.13, 5.57, -25.06, 11.24
+ 1981, -18.13, 7.23, 25.01, 14.71
+ 1982, 10.66, 8.89, 13.59, 10.54
+ 1983, 13.74, 13.67, 20.85, 8.80
+ 1984, -6.05, -8.31, 19.63, 9.85
+ 1985, 24.91, 0.12, 1.35, 7.72
+ 1986, 10.12, -9.60, 9.58, 6.16
+ 1987, -3.87, -11.00, -1.64, 5.47
+ 1988, 11.55, 5.90, 14.77, 6.35
+ 1989, 20.49, -12.72, -4.29, 8.37
+ 1990, -13.95, -14.18, -9.72, 7.81
+ 1991, 29.18, 16.13, -14.41, 5.60
+ 1992, 6.23, 7.58, 24.28, 3.51
+ 1993, 8.21, 5.80, 18.91, 2.90
+ 1994, -4.10, -1.06, -0.69, 3.90
+ 1995, 31.22, -9.09, 5.30, 5.60
+ 1996, 15.96, -3.71, 6.16, 5.21
+ 1997, 25.96, -6.76, 17.46, 5.26
+ 1998, 19.46, -26.02, -8.89, 4.86
+ 1999, 20.57, 14.85, -31.77, 4.68
+ 2000, -17.60, -1.51, 39.69, 5.89
+ 2001, -15.20, 18.09, 19.52, 3.83
+ 2002, -22.76, 4.72, 7.47, 1.65
+ 2003, 30.75, 26.18, 5.40, 1.02
+ 2004, 10.72, 4.85, 8.08, 1.20
+ 2005, 3.09, -1.93, 8.33, 2.98
+ 2006, 10.60, 0.24, 14.11, 4.80
+ 2007, 1.04, -7.14, -14.65, 4.66
+ 2008, -38.34, 3.18, 0.82, 1.60
+ 2009, 28.26, 9.39, -9.17, 0.10
+ 2010, 17.37, 13.77, -5.31, 0.12
+ 2011, 0.44, -6.04, -8.35, 0.04
+ 2012, 16.28, -1.28, 9.68, 0.06
+ 2013, 35.20, 7.18, 1.33, 0.02
+ 2014, 11.70, -8.11, -1.74, 0.02
+ 2015, 0.07, -4.03, -9.65, 0.02
+ 2016, 13.30, 6.65, 23.02, 0.20
+ 2017, 21.50, -4.68, -13.98, 0.80
+ 2018, -6.93, -3.40, -9.16, 1.81
+ 2019, 28.28, -6.09, -11.67, 2.14
+
+Copyright 2020 Kenneth R. French
diff --git a/Data/F-F_Research_Data_Factors_daily.CSV b/Data/F-F_Research_Data_Factors_daily.CSV
new file mode 100644
index 0000000..f502001
--- /dev/null
+++ b/Data/F-F_Research_Data_Factors_daily.CSV
@@ -0,0 +1,24797 @@
+This file was created by CMPT_ME_BEME_RETS_DAILY using the 202007 CRSP database.
+The Tbill return is the simple daily rate that, over the number of trading days
+in the month, compounds to 1-month TBill rate from Ibbotson and Associates Inc.
+
+,Mkt-RF,SMB,HML,RF
+19260701, 0.10, -0.24, -0.28, 0.009
+19260702, 0.45, -0.32, -0.08, 0.009
+19260706, 0.17, 0.27, -0.35, 0.009
+19260707, 0.09, -0.59, 0.03, 0.009
+19260708, 0.21, -0.36, 0.15, 0.009
+19260709, -0.71, 0.44, 0.56, 0.009
+19260710, 0.62, -0.50, -0.15, 0.009
+19260712, 0.04, 0.03, 0.54, 0.009
+19260713, 0.48, -0.26, -0.23, 0.009
+19260714, 0.04, 0.09, -0.48, 0.009
+19260715, -0.43, 0.54, -0.30, 0.009
+19260716, 0.53, 0.01, -0.57, 0.009
+19260717, 0.34, 0.43, -0.63, 0.009
+19260719, -0.01, 0.01, -0.49, 0.009
+19260720, -0.57, -0.23, 0.16, 0.009
+19260721, -0.60, 0.21, 0.31, 0.009
+19260722, -0.73, -0.30, -0.17, 0.009
+19260723, -0.02, 0.08, 0.06, 0.009
+19260724, -0.14, 0.44, -0.06, 0.009
+19260726, 0.53, -0.38, -0.25, 0.009
+19260727, 0.43, -0.45, 0.26, 0.009
+19260728, 1.09, 0.04, -0.28, 0.009
+19260729, 0.36, -0.61, -1.01, 0.009
+19260730, 0.14, -0.47, 0.55, 0.009
+19260731, 0.46, -0.12, -0.17, 0.009
+19260802, 0.84, -0.22, -0.03, 0.010
+19260803, 0.47, -0.27, -0.60, 0.010
+19260804, -0.36, 0.16, 0.25, 0.010
+19260805, -0.09, 0.01, 0.73, 0.010
+19260806, 0.68, 0.08, 0.16, 0.010
+19260807, 0.46, 0.08, -0.24, 0.010
+19260809, 0.21, -0.04, -0.26, 0.010
+19260810, -1.40, 0.34, 0.21, 0.010
+19260811, -0.57, 0.21, 0.34, 0.010
+19260812, 0.84, -0.77, 0.42, 0.010
+19260813, 0.58, -0.85, 0.25, 0.010
+19260814, 0.69, 0.15, -0.36, 0.010
+19260816, 0.07, 0.23, 0.70, 0.010
+19260817, -0.95, 0.34, 0.16, 0.010
+19260818, 0.26, 0.08, 0.04, 0.010
+19260819, -0.60, 0.12, 0.10, 0.010
+19260820, -0.20, -0.36, 0.42, 0.010
+19260821, 0.32, -0.06, 0.49, 0.010
+19260823, 0.49, -0.48, 0.62, 0.010
+19260824, -0.84, 0.50, -0.09, 0.010
+19260825, -0.32, -0.43, 0.28, 0.010
+19260826, 0.53, 0.09, 0.50, 0.010
+19260827, 0.35, 0.13, -0.39, 0.010
+19260828, 0.34, 0.15, -0.06, 0.010
+19260830, 0.30, 0.00, 0.42, 0.010
+19260831, 0.58, -0.52, -0.04, 0.010
+19260901, 0.55, 0.52, -0.08, 0.009
+19260902, -0.06, -0.07, 0.21, 0.009
+19260903, 0.50, -0.30, 0.03, 0.009
+19260907, 0.59, -0.25, -0.24, 0.009
+19260908, -0.51, -0.10, 0.08, 0.009
+19260909, -0.07, 0.16, 0.26, 0.009
+19260910, -0.83, 0.09, -0.13, 0.009
+19260911, -0.44, 0.32, 0.13, 0.009
+19260913, -0.03, -0.11, 0.50, 0.009
+19260914, 0.90, -0.62, 0.09, 0.009
+19260915, -0.21, 0.40, -0.19, 0.009
+19260916, -0.18, -0.33, 0.10, 0.009
+19260917, -1.01, -0.16, -0.28, 0.009
+19260918, 0.70, -0.28, -0.11, 0.009
+19260920, -0.64, 0.03, -0.01, 0.009
+19260921, 0.30, -0.42, 0.19, 0.009
+19260922, -0.13, 0.05, -0.01, 0.009
+19260923, 0.26, -0.16, 0.06, 0.009
+19260924, 0.62, -0.19, -0.03, 0.009
+19260925, 0.21, 0.02, -0.56, 0.009
+19260927, -0.12, 0.14, 0.39, 0.009
+19260928, 0.00, -0.02, -0.35, 0.009
+19260929, -0.30, 0.22, -0.19, 0.009
+19260930, 0.30, -0.22, 0.06, 0.009
+19261001, 0.73, -0.27, -0.23, 0.013
+19261002, -0.10, -0.02, -0.08, 0.013
+19261004, -1.40, -0.10, -0.10, 0.013
+19261005, -1.10, 0.44, -0.72, 0.013
+19261006, -0.56, -0.69, -0.28, 0.013
+19261007, -0.77, 0.32, 0.30, 0.013
+19261008, 0.59, -0.36, 0.58, 0.013
+19261009, -0.96, 0.44, -0.05, 0.013
+19261011, -0.69, -0.08, -0.16, 0.013
+19261013, 0.69, -0.31, -0.04, 0.013
+19261014, 0.97, -0.47, 1.08, 0.013
+19261015, -1.83, 0.13, -0.29, 0.013
+19261016, -0.73, -0.34, 0.42, 0.013
+19261018, 0.70, -0.16, 0.46, 0.013
+19261019, -1.06, 0.40, -0.54, 0.013
+19261020, -0.25, -0.59, -1.17, 0.013
+19261021, 1.53, -0.12, 0.55, 0.013
+19261022, -0.40, 0.44, 0.20, 0.013
+19261023, 0.54, 0.50, 0.19, 0.013
+19261025, -0.10, 0.35, -0.03, 0.013
+19261026, 0.32, 0.02, 0.30, 0.013
+19261027, 1.00, -0.47, 0.19, 0.013
+19261028, -0.08, 0.69, 0.20, 0.013
+19261029, -0.06, 0.01, -0.33, 0.013
+19261030, -0.25, 0.20, 0.25, 0.013
+19261101, 0.46, -0.11, -0.43, 0.013
+19261103, 0.20, -0.24, -0.28, 0.013
+19261104, 0.59, -0.15, 0.69, 0.013
+19261105, 0.07, -0.09, 0.23, 0.013
+19261106, 0.16, -0.29, 0.05, 0.013
+19261108, 0.52, -0.07, 0.08, 0.013
+19261109, 0.13, 0.29, -0.49, 0.013
+19261110, -0.60, 0.15, 0.09, 0.013
+19261111, 0.67, 0.03, 0.09, 0.013
+19261112, 0.24, -0.03, -0.37, 0.013
+19261113, -0.24, 0.12, -0.16, 0.013
+19261115, 0.37, 0.28, -0.25, 0.013
+19261116, 0.15, -0.31, -0.06, 0.013
+19261117, -0.35, -0.35, 0.46, 0.013
+19261118, -0.48, 0.17, 0.20, 0.013
+19261119, -0.64, 0.56, 0.07, 0.013
+19261120, 0.40, 0.01, 0.12, 0.013
+19261122, 0.57, 0.16, -0.20, 0.013
+19261123, 0.33, 0.02, 0.20, 0.013
+19261124, 0.08, -0.22, 0.20, 0.013
+19261126, 0.20, -0.02, 0.03, 0.013
+19261127, -0.15, -0.04, -0.28, 0.013
+19261129, -0.37, -0.13, 0.06, 0.013
+19261130, 0.26, 0.03, -0.50, 0.013
+19261201, 0.36, 0.05, -0.34, 0.011
+19261202, 0.51, -0.01, 0.10, 0.011
+19261203, 0.32, -0.05, 0.06, 0.011
+19261204, -0.17, 0.20, 0.10, 0.011
+19261206, 0.04, 0.32, -0.37, 0.011
+19261207, -0.04, 0.34, -0.51, 0.011
+19261208, -0.08, 0.21, 0.25, 0.011
+19261209, 0.45, -0.15, 0.44, 0.011
+19261210, 0.35, -0.17, 0.50, 0.011
+19261211, 0.09, -0.10, -0.50, 0.011
+19261213, 0.42, 0.64, 0.00, 0.011
+19261214, 0.10, -0.09, 0.14, 0.011
+19261215, 0.17, -0.22, 0.22, 0.011
+19261216, -0.63, -0.20, 0.05, 0.011
+19261217, 0.91, -0.75, 0.68, 0.011
+19261218, 0.42, -0.22, 0.20, 0.011
+19261220, -0.31, 0.08, -0.13, 0.011
+19261221, -0.03, -0.38, -0.19, 0.011
+19261222, 0.02, -0.19, -0.53, 0.011
+19261223, 0.28, 0.01, -0.47, 0.011
+19261224, 0.31, 0.21, 0.26, 0.011
+19261227, -0.22, -0.14, -0.40, 0.011
+19261228, -1.07, -0.07, -0.16, 0.011
+19261229, 0.44, -0.16, -0.06, 0.011
+19261230, -0.35, 0.44, 0.10, 0.011
+19261231, 0.33, 0.30, 0.67, 0.011
+19270103, -0.79, 0.19, 0.09, 0.010
+19270104, 0.31, 0.15, -0.67, 0.010
+19270105, 0.14, 0.43, -0.31, 0.010
+19270106, -0.17, 0.00, 0.07, 0.010
+19270107, 0.30, -0.25, 0.44, 0.010
+19270108, 0.39, -0.18, 0.27, 0.010
+19270110, 0.14, 0.02, 0.16, 0.010
+19270111, -0.28, -0.36, 0.87, 0.010
+19270112, 0.07, -0.06, 0.02, 0.010
+19270113, -0.04, 0.20, -0.30, 0.010
+19270114, 0.05, -0.85, 0.92, 0.010
+19270115, 0.13, 0.10, 0.83, 0.010
+19270117, -0.04, -0.18, 0.77, 0.010
+19270118, -0.06, -0.22, 0.01, 0.010
+19270119, 0.61, -0.01, -0.77, 0.010
+19270120, -0.17, -0.30, 0.13, 0.010
+19270121, -0.01, 0.60, 1.29, 0.010
+19270122, -0.36, 0.26, 0.34, 0.010
+19270124, -0.48, 0.47, 1.44, 0.010
+19270125, -1.07, -0.47, -1.29, 0.010
+19270126, 0.19, 0.12, 0.48, 0.010
+19270127, -0.35, 0.00, -0.42, 0.010
+19270128, 0.16, 0.16, 0.76, 0.010
+19270129, 0.73, -0.41, -0.29, 0.010
+19270131, 0.61, 0.12, -0.04, 0.010
+19270201, -0.01, 0.53, 1.11, 0.012
+19270202, 0.70, -0.21, 0.10, 0.012
+19270203, 0.17, 0.21, -0.07, 0.012
+19270204, 0.37, 0.12, 1.38, 0.012
+19270205, -0.18, 0.31, 0.45, 0.012
+19270207, -0.13, 0.64, 0.47, 0.012
+19270208, 0.10, 0.19, 1.03, 0.012
+19270209, 0.04, -0.88, -0.57, 0.012
+19270210, 0.08, 0.28, -0.69, 0.012
+19270211, 0.31, -0.44, -0.63, 0.012
+19270214, 0.49, -0.14, -0.29, 0.012
+19270215, 0.10, -0.27, -0.16, 0.012
+19270216, -0.02, 0.01, 1.55, 0.012
+19270217, 0.24, 0.07, 0.86, 0.012
+19270218, 0.32, -0.73, -0.12, 0.012
+19270219, 0.01, 0.38, -0.48, 0.012
+19270221, -0.17, 0.19, -0.90, 0.012
+19270223, 0.72, -0.33, -0.13, 0.012
+19270224, 0.14, 0.35, 0.09, 0.012
+19270225, 0.21, 0.24, -0.33, 0.012
+19270226, 0.07, -0.19, -0.05, 0.012
+19270228, 0.55, -0.38, 0.24, 0.012
+19270301, -0.40, -0.03, -0.55, 0.011
+19270302, -1.14, -0.14, -0.33, 0.011
+19270303, 1.02, -0.05, 0.05, 0.011
+19270304, -0.45, 0.22, -0.16, 0.011
+19270305, -0.24, 0.60, -0.46, 0.011
+19270307, -0.37, -0.10, -0.58, 0.011
+19270308, 0.12, -0.53, -0.34, 0.011
+19270309, 0.49, 0.17, 0.34, 0.011
+19270310, 0.46, 0.10, 0.46, 0.011
+19270311, 0.17, -0.25, 0.24, 0.011
+19270312, -0.04, -0.06, -0.19, 0.011
+19270314, 0.18, 0.04, -0.78, 0.011
+19270315, -0.81, -0.10, -0.44, 0.011
+19270316, 1.02, -0.50, -0.06, 0.011
+19270317, 0.42, -0.31, -0.41, 0.011
+19270318, -0.79, 0.11, -0.42, 0.011
+19270319, 0.04, 0.01, -0.21, 0.011
+19270321, 0.17, -0.54, 0.05, 0.011
+19270322, -1.06, 0.17, -0.54, 0.011
+19270323, 0.19, 0.01, 0.51, 0.011
+19270324, 0.68, -0.04, 0.06, 0.011
+19270325, 0.16, 0.45, -0.33, 0.011
+19270326, 0.34, 0.14, 0.18, 0.011
+19270328, 0.52, -0.24, 0.07, 0.011
+19270329, -0.23, -0.09, -0.41, 0.011
+19270330, -0.62, 0.11, 1.25, 0.011
+19270331, 0.30, -0.85, 0.55, 0.011
+19270401, -0.05, -0.19, -0.31, 0.010
+19270402, -0.08, 0.19, 0.02, 0.010
+19270404, 0.53, -0.21, 1.12, 0.010
+19270405, 0.59, -0.30, 0.01, 0.010
+19270406, 0.11, -0.10, -0.04, 0.010
+19270407, 0.24, -0.35, 0.33, 0.010
+19270408, 0.31, 0.35, -0.05, 0.010
+19270409, 0.03, -0.13, 0.29, 0.010
+19270411, 0.19, 0.00, -0.15, 0.010
+19270412, -0.29, 0.57, -0.12, 0.010
+19270413, 0.21, 0.13, -1.14, 0.010
+19270414, 0.09, 0.37, -0.20, 0.010
+19270416, 0.18, 0.55, 0.18, 0.010
+19270418, -0.03, -0.17, 0.75, 0.010
+19270419, 0.18, -0.08, 0.32, 0.010
+19270420, 0.27, -0.37, 0.94, 0.010
+19270421, 0.36, -0.25, -0.76, 0.010
+19270422, 0.07, -0.34, 0.04, 0.010
+19270423, -0.37, 0.24, 0.00, 0.010
+19270425, -1.56, 0.08, 0.10, 0.010
+19270426, 0.58, 0.04, -0.43, 0.010
+19270427, -0.38, 0.07, 0.20, 0.010
+19270428, -1.11, 0.19, -0.35, 0.010
+19270429, 0.48, 0.00, -0.18, 0.010
+19270430, -0.01, 0.21, -0.07, 0.010
+19270502, 0.27, 0.22, 0.48, 0.012
+19270503, 0.74, 0.02, -0.64, 0.012
+19270504, 0.78, -0.16, 0.15, 0.012
+19270505, 0.30, 0.30, -0.28, 0.012
+19270506, 0.28, -0.13, 0.87, 0.012
+19270507, 0.28, 0.26, -0.45, 0.012
+19270509, 0.20, 0.08, 0.39, 0.012
+19270510, -0.07, -0.12, 0.13, 0.012
+19270511, -0.14, -0.03, 0.04, 0.012
+19270512, -0.11, -0.33, 0.37, 0.012
+19270513, 0.49, -0.11, -0.24, 0.012
+19270514, 0.02, 0.29, 0.04, 0.012
+19270516, -0.72, 0.54, -0.20, 0.012
+19270517, 0.47, 0.08, 0.21, 0.012
+19270518, 0.51, -0.60, 0.08, 0.012
+19270519, 0.19, -0.41, -0.15, 0.012
+19270520, 0.43, -0.53, 0.32, 0.012
+19270521, 0.22, 0.16, 0.12, 0.012
+19270523, 0.15, 0.48, 0.76, 0.012
+19270524, -0.14, 0.27, 0.82, 0.012
+19270525, 0.16, 0.69, 0.47, 0.012
+19270526, 0.11, -0.08, 0.56, 0.012
+19270527, 0.44, 0.36, -0.03, 0.012
+19270528, 0.12, 0.69, 0.42, 0.012
+19270531, 0.25, -0.63, 0.41, 0.012
+19270601, 0.32, -0.07, 0.24, 0.010
+19270602, 0.08, -0.09, 0.26, 0.010
+19270603, -0.88, 0.19, -0.66, 0.010
+19270604, 0.43, 0.12, 0.20, 0.010
+19270606, 0.51, 0.19, 1.20, 0.010
+19270607, -0.29, 0.57, -0.22, 0.010
+19270608, 0.28, -0.14, 0.44, 0.010
+19270609, 0.02, 0.17, -0.74, 0.010
+19270610, -0.38, 0.14, -0.37, 0.010
+19270611, -0.11, -0.28, -0.21, 0.010
+19270614, -1.51, 0.02, -0.68, 0.010
+19270615, 0.88, 0.10, 0.23, 0.010
+19270616, 0.62, -0.36, -0.19, 0.010
+19270617, 0.16, 0.63, 1.02, 0.010
+19270618, -0.12, 0.17, 0.58, 0.010
+19270620, -0.18, 0.45, -0.59, 0.010
+19270621, -0.35, -0.31, 0.45, 0.010
+19270622, -0.01, 0.02, -0.58, 0.010
+19270623, -0.86, -0.47, -0.78, 0.010
+19270624, 0.13, -0.05, 0.30, 0.010
+19270625, -0.10, -0.09, 0.09, 0.010
+19270627, -1.22, -0.55, -0.64, 0.010
+19270628, 0.26, -0.03, -0.17, 0.010
+19270629, 0.03, 0.12, -0.50, 0.010
+19270630, -0.09, -0.06, -0.18, 0.010
+19270701, 0.65, 0.03, -0.11, 0.012
+19270702, 0.55, 0.27, 0.17, 0.012
+19270705, 0.84, -0.41, 0.14, 0.012
+19270706, 0.60, 0.23, -0.07, 0.012
+19270707, -0.25, 0.14, -0.03, 0.012
+19270708, -0.18, -0.41, 0.13, 0.012
+19270709, 0.17, 0.19, -0.10, 0.012
+19270711, 0.40, -0.50, 0.28, 0.012
+19270712, 0.33, -0.42, 0.53, 0.012
+19270713, 0.27, 0.20, -0.16, 0.012
+19270714, 0.42, -0.05, -0.79, 0.012
+19270715, 0.26, 0.00, -0.35, 0.012
+19270716, 0.16, 0.12, 0.18, 0.012
+19270718, 0.18, -0.15, 0.04, 0.012
+19270719, 0.26, -0.17, 0.40, 0.012
+19270720, 0.44, 0.12, -0.75, 0.012
+19270721, -0.04, 0.12, -0.52, 0.012
+19270722, -0.05, -0.08, -0.26, 0.012
+19270723, 0.17, 0.17, 0.16, 0.012
+19270725, 0.41, -0.37, 0.07, 0.012
+19270726, 0.25, -0.25, -0.21, 0.012
+19270727, 0.07, -0.53, -0.04, 0.012
+19270728, 0.14, -0.25, -0.24, 0.012
+19270729, 0.47, -0.27, 0.23, 0.012
+19270730, 0.47, -0.78, 0.24, 0.012
+19270801, 0.54, -0.23, 0.10, 0.010
+19270802, 0.62, -0.40, -0.29, 0.010
+19270803, -0.65, 0.44, -0.46, 0.010
+19270804, 0.93, -0.31, 0.12, 0.010
+19270805, -0.59, 0.30, -0.39, 0.010
+19270806, -0.11, 0.10, -0.36, 0.010
+19270808, -1.08, 0.63, -0.55, 0.010
+19270809, 0.94, -0.14, 0.44, 0.010
+19270810, 0.24, -0.11, -0.25, 0.010
+19270811, -1.02, -0.39, -0.19, 0.010
+19270812, -1.57, -0.40, -0.94, 0.010
+19270813, 0.89, -0.24, 0.14, 0.010
+19270815, 1.26, -0.03, 0.88, 0.010
+19270816, 0.62, 0.03, 0.09, 0.010
+19270817, 0.31, 0.50, -0.13, 0.010
+19270818, 0.03, -0.25, 0.04, 0.010
+19270819, 0.15, 0.22, -0.31, 0.010
+19270820, 0.35, 0.03, -0.34, 0.010
+19270822, 0.35, -0.18, 0.14, 0.010
+19270823, 0.05, -0.02, 0.11, 0.010
+19270824, 0.20, 0.04, -0.26, 0.010
+19270825, 0.02, -0.16, -0.77, 0.010
+19270826, 0.22, -0.27, -0.06, 0.010
+19270827, -0.11, 0.31, -0.13, 0.010
+19270829, -0.03, 0.02, 0.33, 0.010
+19270830, -0.03, -0.29, -0.72, 0.010
+19270831, -0.49, 0.05, 0.17, 0.010
+19270901, 0.80, -0.12, -0.37, 0.008
+19270902, 0.58, 0.03, 0.20, 0.008
+19270903, 0.50, -0.14, -0.32, 0.008
+19270906, 0.91, -0.65, 0.26, 0.008
+19270907, 0.45, -0.35, 0.24, 0.008
+19270908, 0.01, -0.10, 0.17, 0.008
+19270909, -0.63, -0.01, -0.58, 0.008
+19270910, 0.43, -0.07, 0.22, 0.008
+19270912, -0.36, 0.40, -0.34, 0.008
+19270913, 1.29, -0.77, -0.21, 0.008
+19270914, 0.31, -0.19, -0.22, 0.008
+19270915, 0.24, -0.18, -0.02, 0.008
+19270916, 0.08, -0.35, 0.10, 0.008
+19270917, -0.29, 0.23, -0.21, 0.008
+19270919, -0.32, -0.32, -0.04, 0.008
+19270920, 0.55, 0.09, 0.40, 0.008
+19270921, -0.15, 0.21, -0.02, 0.008
+19270922, -1.16, 0.09, -0.44, 0.008
+19270923, 0.52, -0.06, 0.12, 0.008
+19270924, 0.65, -0.33, -0.17, 0.008
+19270926, -0.91, 0.12, 0.03, 0.008
+19270927, 0.22, -0.50, 0.05, 0.008
+19270928, -0.38, -0.05, 0.46, 0.008
+19270929, 0.17, -0.10, -0.01, 0.008
+19270930, 1.25, -0.32, 0.04, 0.008
+19271001, 0.49, -0.06, 0.24, 0.010
+19271003, 0.26, -0.22, 0.55, 0.010
+19271004, -0.40, 0.32, -1.30, 0.010
+19271005, -0.29, 0.01, -0.17, 0.010
+19271006, 0.24, -0.07, 0.56, 0.010
+19271007, -0.74, 0.50, -0.74, 0.010
+19271008, -0.32, -0.12, 0.20, 0.010
+19271010, -0.51, -0.29, -0.39, 0.010
+19271011, 0.04, 0.25, -0.08, 0.010
+19271013, 0.69, 0.02, -0.89, 0.010
+19271014, -0.01, 0.65, 0.04, 0.010
+19271015, 0.02, 0.40, 0.10, 0.010
+19271017, -1.26, 0.03, -0.28, 0.010
+19271018, 0.34, -0.55, -0.09, 0.010
+19271019, -0.81, 0.20, 0.44, 0.010
+19271020, -1.02, -0.10, 0.25, 0.010
+19271021, -0.76, 0.82, -0.80, 0.010
+19271022, -0.69, 0.00, 0.29, 0.010
+19271024, 0.37, -0.10, -0.43, 0.010
+19271025, 1.60, -0.19, -0.75, 0.010
+19271026, 0.05, 0.68, 0.08, 0.010
+19271027, -0.41, 0.35, -0.16, 0.010
+19271028, -1.45, 0.21, -0.98, 0.010
+19271029, -0.50, -0.56, 0.02, 0.010
+19271031, 0.76, -0.06, -0.32, 0.010
+19271101, -0.01, 0.10, 0.15, 0.009
+19271102, 1.00, -0.52, -0.18, 0.009
+19271103, 1.12, -0.38, 0.29, 0.009
+19271104, -0.03, 0.22, 0.10, 0.009
+19271105, 0.55, 0.03, -0.02, 0.009
+19271107, 0.69, 0.35, -0.29, 0.009
+19271109, -0.78, 0.37, -0.43, 0.009
+19271110, 0.24, 0.01, -0.40, 0.009
+19271111, 0.87, -0.34, -0.31, 0.009
+19271112, 0.34, 0.16, -0.17, 0.009
+19271114, 0.51, 0.34, 0.08, 0.009
+19271115, 0.11, -0.15, 0.70, 0.009
+19271116, -0.04, 0.41, 0.12, 0.009
+19271117, 0.16, 0.31, -0.06, 0.009
+19271118, 0.61, 0.13, -0.07, 0.009
+19271119, 0.27, 0.40, -0.01, 0.009
+19271121, -0.52, 0.13, 0.41, 0.009
+19271122, 0.37, -0.11, -0.14, 0.009
+19271123, 0.28, 0.18, 0.08, 0.009
+19271125, 0.24, 0.14, 0.44, 0.009
+19271126, -0.01, 0.54, -0.02, 0.009
+19271128, -0.76, 0.14, 0.06, 0.009
+19271129, 0.65, 0.35, -0.22, 0.009
+19271130, 0.48, -0.14, -0.24, 0.009
+19271201, -0.48, -0.22, 0.05, 0.009
+19271202, 0.26, -0.57, 0.96, 0.009
+19271203, 0.36, -0.24, 0.22, 0.009
+19271205, -0.40, 0.35, 0.14, 0.009
+19271206, -0.03, 0.32, -0.24, 0.009
+19271207, -0.50, -0.12, -0.52, 0.009
+19271208, -0.86, 0.27, -0.15, 0.009
+19271209, 1.13, 0.00, -0.05, 0.009
+19271210, 0.06, 0.48, -0.20, 0.009
+19271212, 0.58, 0.79, -0.58, 0.009
+19271213, 0.38, -0.27, -0.32, 0.009
+19271214, -0.37, 0.04, -0.03, 0.009
+19271215, 0.52, 0.20, 0.21, 0.009
+19271216, 0.66, -0.26, -0.38, 0.009
+19271217, 0.05, -0.15, 0.65, 0.009
+19271219, 0.32, 0.20, -0.33, 0.009
+19271220, 0.01, -0.27, 0.21, 0.009
+19271221, -0.07, -0.09, 0.25, 0.009
+19271222, -0.06, -0.49, 0.20, 0.009
+19271223, 0.20, -0.32, 0.09, 0.009
+19271224, 0.14, -0.02, 0.41, 0.009
+19271227, 0.01, 0.24, -0.28, 0.009
+19271228, -0.57, 0.25, -0.20, 0.009
+19271229, 0.15, -0.10, -1.09, 0.009
+19271230, 0.43, 0.71, -0.03, 0.009
+19271231, 0.32, 0.19, 0.00, 0.009
+19280103, 0.45, 0.84, -0.13, 0.010
+19280104, -0.14, 0.50, -0.02, 0.010
+19280105, -0.73, -0.10, 0.26, 0.010
+19280106, 0.62, 0.54, 0.05, 0.010
+19280107, 0.11, -0.01, 0.29, 0.010
+19280109, -0.89, 0.12, -0.04, 0.010
+19280110, -0.83, -0.47, 0.11, 0.010
+19280111, 0.12, 0.35, 0.33, 0.010
+19280112, 0.50, 0.20, -0.11, 0.010
+19280113, 0.61, 0.26, 0.14, 0.010
+19280114, -0.67, 0.04, -0.03, 0.010
+19280116, -0.89, -0.50, -0.37, 0.010
+19280117, 0.17, 0.31, 0.42, 0.010
+19280118, -0.31, -0.32, -0.16, 0.010
+19280119, 0.57, 0.24, -0.12, 0.010
+19280120, 0.57, 0.13, -0.05, 0.010
+19280121, 0.21, 0.42, -0.39, 0.010
+19280123, 0.61, 0.18, -0.10, 0.010
+19280124, 0.27, 0.46, -0.33, 0.010
+19280125, -1.04, -0.29, -0.37, 0.010
+19280126, 0.52, 0.76, -0.19, 0.010
+19280127, 0.27, -0.09, -0.13, 0.010
+19280128, -0.50, 0.46, 0.16, 0.010
+19280130, -0.42, -0.39, -0.29, 0.010
+19280131, 0.32, 0.59, 0.34, 0.010
+19280201, -0.25, 0.55, -0.68, 0.014
+19280202, 0.44, 0.13, 0.19, 0.014
+19280203, -1.14, -0.47, -0.43, 0.014
+19280204, 0.05, -0.44, 0.16, 0.014
+19280206, 0.20, 0.32, 0.07, 0.014
+19280207, -0.28, -0.24, -0.70, 0.014
+19280208, 0.08, -0.04, -0.17, 0.014
+19280209, 0.46, -0.10, -0.14, 0.014
+19280210, -0.09, -0.47, -0.15, 0.014
+19280211, -0.02, 0.11, 0.52, 0.014
+19280214, -0.38, 0.56, -0.40, 0.014
+19280215, -0.28, -0.52, -0.05, 0.014
+19280216, -0.32, -0.62, 0.07, 0.014
+19280217, -1.66, -0.69, -0.57, 0.014
+19280218, -0.47, -0.61, 0.14, 0.014
+19280220, -0.16, 0.17, 0.29, 0.014
+19280221, 1.06, 0.41, 0.23, 0.014
+19280223, 0.23, 0.06, -0.10, 0.014
+19280224, 0.34, -0.31, 0.46, 0.014
+19280225, 0.11, -0.16, 0.73, 0.014
+19280227, -0.49, 0.06, -0.28, 0.014
+19280228, 0.35, 0.03, 0.38, 0.014
+19280229, 0.57, 0.25, -0.22, 0.014
+19280301, 0.25, -0.11, -0.15, 0.011
+19280302, 0.07, 0.01, -0.67, 0.011
+19280303, 0.49, 0.01, -0.64, 0.011
+19280305, 0.66, -0.10, 0.12, 0.011
+19280306, 0.39, 0.27, -0.18, 0.011
+19280307, -0.43, 0.20, -0.06, 0.011
+19280308, 0.42, -0.02, 0.55, 0.011
+19280309, 1.23, -0.58, -0.36, 0.011
+19280310, -0.27, -0.37, -0.09, 0.011
+19280312, 0.41, -0.16, -0.07, 0.011
+19280313, -0.30, 0.03, -0.02, 0.011
+19280314, 0.13, 0.00, 0.45, 0.011
+19280315, 0.72, -0.43, 0.23, 0.011
+19280316, 0.93, -0.58, 0.23, 0.011
+19280317, 0.19, 0.02, 0.47, 0.011
+19280319, 0.14, 1.20, -0.74, 0.011
+19280320, 0.42, 0.37, -0.19, 0.011
+19280321, 0.86, 0.14, 0.50, 0.011
+19280322, -0.36, -0.30, -0.37, 0.011
+19280323, 0.75, -0.40, -0.65, 0.011
+19280324, 0.07, -0.45, -0.06, 0.011
+19280326, 0.95, 0.10, -0.28, 0.011
+19280327, -0.33, -0.24, 1.08, 0.011
+19280328, 0.03, 0.45, 0.05, 0.011
+19280329, 0.19, 0.27, 0.40, 0.011
+19280330, 1.49, -0.06, -0.72, 0.011
+19280331, -0.57, 0.45, 0.13, 0.011
+19280402, -0.87, 0.71, 0.52, 0.010
+19280403, 0.60, 0.27, -0.40, 0.010
+19280404, -0.07, 0.42, 0.13, 0.010
+19280405, 1.13, -0.25, 0.25, 0.010
+19280409, 0.34, 0.98, 0.13, 0.010
+19280410, -0.73, 0.32, -0.20, 0.010
+19280411, 1.41, 0.02, 0.96, 0.010
+19280412, -0.25, 0.53, -0.42, 0.010
+19280413, 1.40, 0.03, -0.51, 0.010
+19280414, -0.44, 0.10, -0.19, 0.010
+19280416, 0.52, -0.31, 0.25, 0.010
+19280417, -0.68, 0.16, -0.29, 0.010
+19280418, 0.02, 0.18, -0.11, 0.010
+19280419, 0.58, 0.63, 0.61, 0.010
+19280420, -1.33, 0.03, 0.13, 0.010
+19280423, -0.73, -0.06, 0.39, 0.010
+19280424, 0.36, 0.05, -0.03, 0.010
+19280425, 0.73, -0.07, 1.48, 0.010
+19280426, 0.63, 0.14, 0.60, 0.010
+19280427, 1.04, -0.13, 0.47, 0.010
+19280428, 0.50, -0.27, 0.09, 0.010
+19280430, 0.06, 0.25, -0.56, 0.010
+19280501, 0.26, 0.19, 0.45, 0.015
+19280502, 0.08, 0.43, -0.31, 0.015
+19280503, 0.39, 0.20, -0.68, 0.015
+19280504, 1.18, -0.67, -0.25, 0.015
+19280507, 0.69, 0.34, -0.26, 0.015
+19280508, -0.56, -0.12, -0.32, 0.015
+19280509, 0.04, -0.29, 0.63, 0.015
+19280510, -0.17, 0.39, -0.39, 0.015
+19280511, 0.77, 0.56, -0.56, 0.015
+19280514, 0.49, 0.57, 0.07, 0.015
+19280515, -0.04, 0.80, -0.58, 0.015
+19280516, -1.52, -0.15, -0.45, 0.015
+19280517, 0.47, -0.29, -0.67, 0.015
+19280518, -0.72, 0.14, 1.18, 0.015
+19280521, -1.16, 0.60, -0.17, 0.015
+19280522, -1.41, -0.50, -0.55, 0.015
+19280523, 1.72, -0.11, -0.27, 0.015
+19280524, 0.51, 0.62, 0.30, 0.015
+19280525, 0.20, 0.32, -0.03, 0.015
+19280528, -1.47, -0.45, -0.30, 0.015
+19280529, 0.88, -0.33, -0.08, 0.015
+19280531, 0.94, 0.52, 0.18, 0.015
+19280601, 0.31, -0.05, -0.32, 0.012
+19280602, 0.64, 0.33, -0.06, 0.012
+19280604, -1.85, 0.05, -0.20, 0.012
+19280605, 0.21, 0.36, -0.10, 0.012
+19280606, -0.84, 0.40, 0.11, 0.012
+19280607, -0.52, -0.76, -0.79, 0.012
+19280608, -1.38, -0.17, -0.76, 0.012
+19280609, -1.30, -0.24, -0.27, 0.012
+19280611, -2.31, -1.14, -0.37, 0.012
+19280612, -2.33, -3.27, 0.16, 0.012
+19280613, 3.14, 0.37, 0.68, 0.012
+19280614, 0.95, 1.51, 0.94, 0.012
+19280615, -1.24, -0.19, 0.52, 0.012
+19280616, -0.03, -0.58, -0.01, 0.012
+19280618, -2.01, 0.07, -0.16, 0.012
+19280619, -0.62, -1.27, -0.17, 0.012
+19280620, 1.38, 0.08, 0.42, 0.012
+19280621, 0.15, 0.49, 0.50, 0.012
+19280622, -0.03, 0.16, 0.42, 0.012
+19280623, -0.65, 0.13, -0.25, 0.012
+19280625, 0.09, -0.67, 0.51, 0.012
+19280626, 1.00, -0.16, -0.01, 0.012
+19280627, 1.01, 0.58, -0.22, 0.012
+19280628, 0.82, 0.24, -0.24, 0.012
+19280629, 0.49, -0.10, 0.32, 0.012
+19280630, 0.12, 0.08, -0.28, 0.012
+19280702, -1.20, -0.03, -0.28, 0.013
+19280703, 1.61, -0.29, 0.13, 0.013
+19280705, 0.94, -0.03, 0.04, 0.013
+19280706, -0.32, 0.18, 0.33, 0.013
+19280707, 0.26, 0.04, 0.39, 0.013
+19280709, 0.01, 0.06, -0.46, 0.013
+19280710, -0.27, 0.10, -0.75, 0.013
+19280711, -2.33, 0.16, -0.16, 0.013
+19280712, -0.64, -0.63, 0.66, 0.013
+19280713, 0.70, -0.12, -0.09, 0.013
+19280714, -0.04, 0.28, 0.33, 0.013
+19280716, -1.23, -0.13, -0.04, 0.013
+19280717, 0.45, -0.33, -0.47, 0.013
+19280718, 0.89, -0.11, -0.46, 0.013
+19280719, -0.16, 0.34, 0.60, 0.013
+19280720, 0.11, -0.06, 0.11, 0.013
+19280721, -0.24, 0.17, 0.19, 0.013
+19280723, 0.62, -0.24, -0.36, 0.013
+19280724, 0.04, 0.16, 0.61, 0.013
+19280725, 0.43, -0.09, -0.34, 0.013
+19280726, 0.22, -0.15, 0.29, 0.013
+19280727, 0.78, -0.35, -0.79, 0.013
+19280728, 0.25, -0.18, 0.03, 0.013
+19280730, -0.13, -0.11, 0.08, 0.013
+19280731, -0.11, -0.03, -0.11, 0.013
+19280801, 0.26, -0.08, 0.01, 0.012
+19280802, -0.45, 0.11, -0.01, 0.012
+19280803, 0.22, -0.05, 0.19, 0.012
+19280804, 0.22, 0.16, 0.18, 0.012
+19280806, 0.73, -0.24, -0.32, 0.012
+19280807, -0.35, 0.11, 0.51, 0.012
+19280808, -1.12, 0.15, 0.03, 0.012
+19280809, 0.12, -0.02, -0.31, 0.012
+19280810, -0.20, 0.06, -0.04, 0.012
+19280811, 0.12, 0.08, -0.14, 0.012
+19280813, -0.05, 0.05, 0.23, 0.012
+19280814, -0.66, 0.54, 0.04, 0.012
+19280815, 1.38, -0.67, -0.31, 0.012
+19280816, 0.79, -0.22, 0.23, 0.012
+19280817, 0.29, -0.31, -0.47, 0.012
+19280818, 0.28, 0.02, 0.52, 0.012
+19280820, 0.23, 0.08, -0.07, 0.012
+19280821, 0.98, -0.40, -0.47, 0.012
+19280822, 0.14, 0.00, -0.61, 0.012
+19280823, 0.00, 0.03, 0.03, 0.012
+19280824, 1.38, -0.37, -0.17, 0.012
+19280825, 0.28, -0.11, -0.06, 0.012
+19280827, -0.29, 0.14, -0.63, 0.012
+19280828, 0.58, -0.39, -0.23, 0.012
+19280829, 0.24, 0.03, 0.09, 0.012
+19280830, 0.27, 0.02, 0.10, 0.012
+19280831, 1.15, -0.67, -0.27, 0.012
+19280901, 0.25, 0.15, 0.07, 0.011
+19280904, 0.41, -0.04, -0.10, 0.011
+19280905, 0.41, 0.01, -0.09, 0.011
+19280906, -0.40, 0.17, 0.51, 0.011
+19280907, 0.65, 0.35, -0.20, 0.011
+19280908, -0.30, 0.19, 0.04, 0.011
+19280910, -0.37, 0.23, -0.02, 0.011
+19280911, 0.63, -0.19, 0.22, 0.011
+19280912, 0.34, -0.06, 0.19, 0.011
+19280913, -0.10, 0.07, -0.31, 0.011
+19280914, 0.13, 0.13, 0.43, 0.011
+19280915, 0.58, -0.30, 0.74, 0.011
+19280917, 0.54, 0.72, 0.12, 0.011
+19280918, -0.68, 0.62, -0.68, 0.011
+19280919, -0.07, 0.15, 0.46, 0.011
+19280920, 0.15, 0.54, -0.12, 0.011
+19280921, 0.67, -0.46, 0.17, 0.011
+19280922, -0.24, 0.19, 0.69, 0.011
+19280924, 0.63, -0.43, -0.08, 0.011
+19280925, -0.07, 0.23, 0.12, 0.011
+19280926, -0.15, 0.20, -0.54, 0.011
+19280927, -1.22, -0.15, -0.01, 0.011
+19280928, 0.01, -0.11, -0.46, 0.011
+19280929, 1.03, 0.01, -0.20, 0.011
+19281001, -0.11, 0.85, -0.31, 0.016
+19281002, -0.44, 0.10, -0.05, 0.016
+19281003, -0.28, 0.56, 0.16, 0.016
+19281004, 0.25, 0.17, 0.30, 0.016
+19281005, -0.29, 0.45, -0.05, 0.016
+19281006, -0.05, 0.00, 0.20, 0.016
+19281008, -0.33, -0.14, -0.28, 0.016
+19281009, 0.12, 0.10, -1.05, 0.016
+19281010, 0.92, -0.03, -0.06, 0.016
+19281011, 0.31, 0.50, -0.85, 0.016
+19281013, 0.55, 0.41, -0.47, 0.016
+19281015, 0.38, -0.45, 0.15, 0.016
+19281016, 0.30, -0.19, 0.56, 0.016
+19281017, 0.30, 0.81, 0.23, 0.016
+19281018, 0.29, -0.30, -0.37, 0.016
+19281019, 0.45, -0.20, -0.55, 0.016
+19281020, -0.44, 0.23, -0.02, 0.016
+19281022, -0.12, 0.29, -0.61, 0.016
+19281023, 0.66, -0.09, 0.39, 0.016
+19281024, 0.22, 0.10, 0.58, 0.016
+19281025, -0.26, -0.05, 0.25, 0.016
+19281026, -1.14, -0.39, -0.05, 0.016
+19281027, 0.86, 0.17, -0.07, 0.016
+19281029, 0.69, -0.05, 0.56, 0.016
+19281030, -1.05, -0.32, -0.17, 0.016
+19281031, -0.49, -0.31, -0.56, 0.016
+19281101, 1.29, -0.24, -0.25, 0.017
+19281102, -0.10, -0.21, 0.30, 0.017
+19281103, 0.04, -0.03, -0.32, 0.017
+19281105, 1.13, -0.29, 0.22, 0.017
+19281107, 1.19, 0.01, 0.86, 0.017
+19281108, -0.25, 0.01, -0.13, 0.017
+19281109, 0.72, -0.38, 0.46, 0.017
+19281110, 0.78, -0.01, 0.48, 0.017
+19281112, 0.34, -0.46, 0.00, 0.017
+19281113, 0.07, 0.18, -0.16, 0.017
+19281114, 0.14, 0.32, -0.30, 0.017
+19281115, 0.36, -0.01, -0.65, 0.017
+19281116, 1.77, -0.77, 0.24, 0.017
+19281117, 0.10, -0.02, -0.09, 0.017
+19281119, 0.17, -0.56, 1.03, 0.017
+19281120, 1.11, -0.64, 0.97, 0.017
+19281121, -1.51, 0.47, -0.25, 0.017
+19281122, 1.39, -0.43, 0.72, 0.017
+19281123, 0.26, 0.44, -0.31, 0.017
+19281126, 0.46, 0.07, 0.67, 0.017
+19281127, 0.28, 0.89, -0.19, 0.017
+19281128, 1.10, 0.38, -0.35, 0.017
+19281130, 0.39, -0.41, -0.45, 0.017
+19281201, -0.60, 0.05, 0.66, 0.002
+19281203, -0.70, 0.37, -0.42, 0.002
+19281204, 0.23, 0.50, -0.43, 0.002
+19281205, -0.70, 0.83, -0.37, 0.002
+19281206, -3.54, 0.01, -1.35, 0.002
+19281207, -2.35, -0.50, 0.85, 0.002
+19281208, -1.89, -0.60, 0.01, 0.002
+19281210, 1.63, -1.33, 0.71, 0.002
+19281211, 2.30, 1.35, 0.37, 0.002
+19281212, -0.78, -0.19, 0.21, 0.002
+19281213, -0.34, 0.44, 0.19, 0.002
+19281214, 0.19, -0.04, -0.15, 0.002
+19281215, -0.35, 0.19, 0.10, 0.002
+19281217, -0.37, -0.31, -0.52, 0.002
+19281218, 1.07, -0.08, -0.16, 0.002
+19281219, 1.20, -0.38, 0.35, 0.002
+19281220, 0.37, -0.02, -0.19, 0.002
+19281221, 1.07, -0.32, -0.17, 0.002
+19281222, 0.12, 0.31, -0.30, 0.002
+19281224, 0.87, 0.19, -0.88, 0.002
+19281226, -0.31, 0.02, 0.25, 0.002
+19281227, 0.66, -0.78, 0.00, 0.002
+19281228, 1.34, -0.53, 0.18, 0.002
+19281229, 0.20, 0.30, 0.17, 0.002
+19281231, 1.36, -0.33, 0.57, 0.002
+19290102, 1.48, 0.44, -0.19, 0.013
+19290103, 0.10, 0.11, -0.34, 0.013
+19290104, -0.03, -0.44, 0.65, 0.013
+19290105, -0.88, 0.44, -0.23, 0.013
+19290107, -1.30, -0.37, 0.26, 0.013
+19290108, -0.23, 0.20, 0.24, 0.013
+19290109, 1.20, 0.08, 0.12, 0.013
+19290110, 0.27, 0.31, -0.21, 0.013
+19290111, -0.04, 0.21, 0.00, 0.013
+19290112, -0.28, 0.04, 0.13, 0.013
+19290114, 0.25, 0.18, 0.29, 0.013
+19290115, -0.98, -0.10, -0.08, 0.013
+19290116, 0.91, -0.16, 0.39, 0.013
+19290117, 0.71, -0.36, 0.05, 0.013
+19290118, 0.04, 0.24, 0.11, 0.013
+19290119, 0.19, -0.26, 0.32, 0.013
+19290121, 0.16, -0.18, 0.00, 0.013
+19290122, 0.59, -0.48, -0.26, 0.013
+19290123, 0.53, -0.76, -0.56, 0.013
+19290124, -0.83, 0.15, -0.67, 0.013
+19290125, 1.18, -0.61, -1.32, 0.013
+19290126, 0.34, -0.19, -0.08, 0.013
+19290128, -0.27, 0.13, 0.03, 0.013
+19290129, -0.27, -0.21, -0.31, 0.013
+19290130, 0.34, -0.74, -0.32, 0.013
+19290131, 1.36, -0.90, 0.87, 0.013
+19290201, 0.56, -0.34, 0.76, 0.018
+19290202, 0.01, 0.31, 0.74, 0.018
+19290204, -0.44, 0.71, 0.10, 0.018
+19290205, 0.22, 0.18, -0.21, 0.018
+19290206, -0.82, -0.23, -0.69, 0.018
+19290207, -2.97, -0.02, 0.40, 0.018
+19290208, -0.96, -0.57, 0.64, 0.018
+19290211, 2.18, -0.81, 0.71, 0.018
+19290213, 0.10, 0.42, -0.93, 0.018
+19290214, -0.63, -0.44, 0.51, 0.018
+19290215, -1.62, 0.59, -0.58, 0.018
+19290216, -1.40, -0.52, 0.35, 0.018
+19290218, 1.12, -0.38, 0.35, 0.018
+19290219, 0.20, 0.95, -0.33, 0.018
+19290220, 0.84, 0.32, -0.15, 0.018
+19290221, 0.73, -0.45, 0.07, 0.018
+19290225, 0.28, 0.49, -0.23, 0.018
+19290226, 0.36, 0.16, -0.29, 0.018
+19290227, 1.06, -0.31, 0.59, 0.018
+19290228, 1.01, -0.38, -0.14, 0.018
+19290301, 1.01, -0.10, 0.39, 0.014
+19290302, -0.27, -0.19, 0.63, 0.014
+19290304, -0.89, -0.05, 0.39, 0.014
+19290305, -0.68, -0.55, 0.53, 0.014
+19290306, -1.57, -0.42, -0.28, 0.014
+19290307, 0.76, -0.59, 0.37, 0.014
+19290308, 0.58, 0.00, 0.03, 0.014
+19290309, -0.01, 0.40, -0.25, 0.014
+19290311, -1.30, 0.36, -0.27, 0.014
+19290312, 0.25, -0.45, 0.07, 0.014
+19290313, 0.98, -0.30, 0.18, 0.014
+19290314, 1.55, -0.17, -0.36, 0.014
+19290315, 1.07, -0.30, -0.05, 0.014
+19290316, 0.27, 0.07, 0.04, 0.014
+19290318, -0.43, -0.02, 0.10, 0.014
+19290319, 0.02, -0.57, 0.57, 0.014
+19290320, 0.02, -0.49, 0.55, 0.014
+19290321, -0.43, 0.27, -0.62, 0.014
+19290322, -1.15, 0.12, -0.76, 0.014
+19290323, -0.98, 0.09, -0.34, 0.014
+19290325, -3.14, -0.64, -0.28, 0.014
+19290326, -1.16, -2.67, 0.05, 0.014
+19290327, 3.28, 0.70, 0.34, 0.014
+19290328, 1.63, 0.62, 0.55, 0.014
+19290401, -2.26, -0.33, 0.00, 0.014
+19290402, 1.19, 0.21, 0.36, 0.014
+19290403, -1.08, 0.41, 0.06, 0.014
+19290404, 1.20, -0.44, 0.19, 0.014
+19290405, -0.75, 0.75, -0.75, 0.014
+19290406, 0.12, -0.51, 0.65, 0.014
+19290408, -0.95, 0.27, -0.66, 0.014
+19290409, -0.87, -0.77, -0.36, 0.014
+19290410, 0.49, -0.20, 0.06, 0.014
+19290411, 1.02, -0.45, 0.55, 0.014
+19290412, 0.63, 0.55, -0.59, 0.014
+19290413, -0.02, 0.21, 0.21, 0.014
+19290415, -0.58, 0.64, -0.20, 0.014
+19290416, 0.05, -0.03, -0.25, 0.014
+19290417, 1.02, -0.46, 0.11, 0.014
+19290418, 0.38, 0.48, -0.81, 0.014
+19290419, -0.03, 0.09, -0.20, 0.014
+19290420, 0.19, -0.11, -0.41, 0.014
+19290422, 0.83, -0.38, 0.06, 0.014
+19290423, 0.44, 0.25, -0.12, 0.014
+19290424, -0.24, 0.03, 0.36, 0.014
+19290425, -0.60, 0.08, 0.20, 0.014
+19290426, -0.08, -0.16, -0.37, 0.014
+19290427, 0.55, 0.16, 0.47, 0.014
+19290429, -0.53, 0.07, 0.58, 0.014
+19290430, 1.65, -1.27, 1.41, 0.014
+19290501, 0.11, 0.28, -0.23, 0.017
+19290502, 0.14, 0.05, -0.29, 0.017
+19290503, 0.75, -0.07, -0.61, 0.017
+19290504, 0.31, -0.44, 0.15, 0.017
+19290506, -0.52, -0.13, -0.30, 0.017
+19290507, -0.68, 0.10, -0.02, 0.017
+19290508, 0.10, -0.06, -0.06, 0.017
+19290509, -0.55, -0.04, 0.02, 0.017
+19290510, 1.18, -0.23, 0.12, 0.017
+19290511, -0.34, 0.28, 0.17, 0.017
+19290513, -2.13, -0.37, -0.22, 0.017
+19290514, 0.89, -0.48, -0.65, 0.017
+19290515, -0.32, 0.05, 0.07, 0.017
+19290516, 0.07, -0.43, -0.38, 0.017
+19290517, 0.51, 0.16, -0.07, 0.017
+19290518, -0.18, -0.10, -0.12, 0.017
+19290520, -1.97, 0.42, 0.80, 0.017
+19290521, 0.05, -1.29, -0.36, 0.017
+19290522, -3.17, 1.02, -0.67, 0.017
+19290523, 1.54, -1.33, -0.18, 0.017
+19290524, -0.47, 0.61, -0.02, 0.017
+19290525, -0.37, -0.50, -0.07, 0.017
+19290527, -3.20, -0.64, -0.12, 0.017
+19290528, 1.12, -1.20, 0.22, 0.017
+19290529, 0.10, -0.22, 0.94, 0.017
+19290531, 0.57, -1.20, 0.42, 0.017
+19290601, 0.61, 0.28, 0.10, 0.021
+19290603, 1.27, -0.13, 0.63, 0.021
+19290604, 1.40, 0.38, -0.79, 0.021
+19290605, -0.31, 0.29, -0.64, 0.021
+19290606, 0.27, -0.19, 0.39, 0.021
+19290607, -0.45, 0.00, -0.42, 0.021
+19290608, -0.36, -0.15, 0.95, 0.021
+19290610, -0.54, 0.14, 0.32, 0.021
+19290611, 0.40, -0.20, -0.43, 0.021
+19290612, 0.03, 0.25, -0.34, 0.021
+19290613, 1.24, -0.51, -0.03, 0.021
+19290614, 0.31, 0.33, 0.29, 0.021
+19290615, 0.29, -0.19, 0.76, 0.021
+19290617, 1.22, -0.70, -0.58, 0.021
+19290618, 0.17, -0.04, 0.01, 0.021
+19290619, -0.65, 0.38, -0.50, 0.021
+19290620, 0.43, -0.18, -0.32, 0.021
+19290621, 0.67, -0.39, 0.44, 0.021
+19290622, 0.31, 0.05, 0.64, 0.021
+19290624, -0.21, 0.23, -0.73, 0.021
+19290625, 0.77, -0.40, -0.92, 0.021
+19290626, 0.56, -0.02, 0.02, 0.021
+19290627, 0.04, -0.05, -0.50, 0.021
+19290628, 0.94, -0.93, -0.85, 0.021
+19290629, 0.86, -0.32, -0.08, 0.021
+19290701, 0.37, -0.23, 0.31, 0.013
+19290702, 1.11, -0.94, 0.24, 0.013
+19290703, 0.33, 0.19, -0.38, 0.013
+19290705, 0.47, 0.21, -0.45, 0.013
+19290706, 0.16, -0.13, -0.09, 0.013
+19290708, 0.04, 0.64, 0.96, 0.013
+19290709, 0.11, 0.28, 0.00, 0.013
+19290710, -0.30, 0.03, -0.19, 0.013
+19290711, 0.25, -0.22, -0.39, 0.013
+19290712, 0.92, -0.78, 0.23, 0.013
+19290713, 0.40, -0.49, 1.16, 0.013
+19290715, -0.46, -0.31, 1.01, 0.013
+19290716, 0.48, -0.26, 0.08, 0.013
+19290717, 0.27, 0.06, -0.25, 0.013
+19290718, -0.12, -0.13, -0.04, 0.013
+19290719, 0.33, -0.57, 0.78, 0.013
+19290720, 0.15, -0.09, 0.18, 0.013
+19290722, -1.11, 0.17, -0.28, 0.013
+19290723, 1.03, -0.83, 0.19, 0.013
+19290724, -0.49, -0.27, 0.13, 0.013
+19290725, 0.51, -0.56, -0.73, 0.013
+19290726, -0.40, 0.00, 0.12, 0.013
+19290727, -0.44, 0.45, -0.45, 0.013
+19290729, -1.16, 0.25, 0.43, 0.013
+19290730, 0.89, -0.05, -0.01, 0.013
+19290731, 1.08, -0.21, 0.01, 0.013
+19290801, 0.81, -0.66, -0.17, 0.015
+19290802, 0.93, -1.16, -0.05, 0.015
+19290803, 0.51, -0.52, -0.63, 0.015
+19290805, -0.61, -0.50, 0.79, 0.015
+19290806, -0.47, 0.22, 0.02, 0.015
+19290807, -1.02, 0.14, 0.38, 0.015
+19290808, 0.90, -0.75, 0.08, 0.015
+19290809, -3.61, 0.26, 0.40, 0.015
+19290810, 1.59, -0.78, 0.48, 0.015
+19290812, 1.47, -0.23, 0.17, 0.015
+19290813, 0.70, -0.57, -0.22, 0.015
+19290814, 0.14, -0.52, -0.12, 0.015
+19290815, 0.29, -0.05, 0.18, 0.015
+19290816, 1.80, -0.38, -0.35, 0.015
+19290817, 0.25, 0.15, 0.87, 0.015
+19290819, 0.50, -0.69, -0.64, 0.015
+19290820, 0.30, -0.01, 0.14, 0.015
+19290821, -0.37, -0.02, -0.12, 0.015
+19290822, 0.85, -0.54, -0.54, 0.015
+19290823, 0.94, -1.24, -0.39, 0.015
+19290824, 0.22, -0.59, 0.14, 0.015
+19290826, -0.05, -0.18, 0.33, 0.015
+19290827, -0.08, 0.02, 0.01, 0.015
+19290828, -0.03, -0.12, 0.15, 0.015
+19290829, 0.84, -0.10, 0.08, 0.015
+19290830, 1.09, -0.55, -0.76, 0.015
+19290903, 0.36, -0.29, -0.53, 0.015
+19290904, -0.53, 0.10, -0.77, 0.015
+19290905, -1.91, 0.75, 0.23, 0.015
+19290906, 2.06, -1.21, -0.22, 0.015
+19290907, 0.32, -0.25, 0.23, 0.015
+19290909, -0.59, 0.10, -0.14, 0.015
+19290910, -1.72, 1.36, -0.01, 0.015
+19290911, 1.19, -1.14, 0.29, 0.015
+19290912, -1.00, 1.15, -0.05, 0.015
+19290913, 0.25, 0.12, -0.22, 0.015
+19290914, 0.22, -0.04, 0.06, 0.015
+19290916, 1.03, -0.48, -0.14, 0.015
+19290917, -0.63, 0.90, -0.27, 0.015
+19290918, 0.44, -0.96, 0.51, 0.015
+19290919, 0.01, -0.01, -0.29, 0.015
+19290920, -0.87, 0.52, -0.09, 0.015
+19290921, -0.08, 0.20, -0.13, 0.015
+19290923, -0.28, -0.17, 0.09, 0.015
+19290924, -1.53, 0.51, 0.22, 0.015
+19290925, -0.16, -0.56, 0.03, 0.015
+19290926, 0.95, 0.08, -0.50, 0.015
+19290927, -2.42, 0.62, 0.47, 0.015
+19290928, 0.30, -0.64, 0.41, 0.015
+19290930, -0.81, 0.73, 0.07, 0.015
+19291001, -0.68, -0.52, -0.11, 0.018
+19291002, 0.75, -0.07, -0.14, 0.018
+19291003, -3.67, 1.28, 0.92, 0.018
+19291004, -1.21, -1.76, 0.18, 0.018
+19291005, 3.89, -0.55, -1.09, 0.018
+19291007, 1.75, 0.17, 0.55, 0.018
+19291008, -0.01, 0.37, 0.06, 0.018
+19291009, -0.20, -0.26, 0.27, 0.018
+19291010, 1.40, -0.60, -0.50, 0.018
+19291011, -0.16, 0.46, 0.23, 0.018
+19291014, -0.51, 0.27, -0.34, 0.018
+19291015, -0.68, 0.32, 0.16, 0.018
+19291016, -3.06, 1.09, 0.91, 0.018
+19291017, 1.03, -1.67, 0.00, 0.018
+19291018, -2.32, 1.31, 1.09, 0.018
+19291019, -2.80, 0.28, 0.92, 0.018
+19291021, -1.35, -1.06, 0.31, 0.018
+19291022, 1.97, -0.39, -0.38, 0.018
+19291023, -5.65, 0.68, 0.58, 0.018
+19291024, -3.84, -3.78, 1.45, 0.018
+19291025, 1.50, 0.10, 0.21, 0.018
+19291026, -0.35, 1.17, 0.74, 0.018
+19291028, -11.29, 1.26, 3.96, 0.018
+19291029, -12.01, 0.26, 2.12, 0.018
+19291030, 12.16, -7.25, -2.10, 0.018
+19291031, 6.10, 2.51, -1.80, 0.018
+19291104, -4.29, 1.96, 1.65, 0.022
+19291106, -9.75, 1.59, 2.40, 0.022
+19291107, 2.18, -4.68, -0.40, 0.022
+19291108, 0.01, 2.63, 0.30, 0.022
+19291111, -5.60, 1.52, 1.90, 0.022
+19291112, -6.00, -1.13, 0.45, 0.022
+19291113, -5.58, -1.90, 1.18, 0.022
+19291114, 7.85, -2.84, -1.76, 0.022
+19291115, 6.23, 1.38, -2.63, 0.022
+19291118, -1.17, 2.28, 0.20, 0.022
+19291119, 2.59, -1.59, 0.02, 0.022
+19291120, 2.45, -0.36, 0.24, 0.022
+19291121, 2.14, -1.13, -0.87, 0.022
+19291122, -0.46, 0.62, 1.03, 0.022
+19291125, -1.11, 0.44, 0.93, 0.022
+19291126, -2.29, 0.88, 0.93, 0.022
+19291127, 0.98, -1.06, -0.52, 0.022
+19291202, 0.04, -0.26, -0.23, 0.015
+19291203, 2.78, -0.50, -0.82, 0.015
+19291204, 1.83, 0.04, 0.32, 0.015
+19291205, -0.42, 0.91, -0.23, 0.015
+19291206, 2.01, -1.12, -0.59, 0.015
+19291207, 1.08, -0.14, -0.37, 0.015
+19291209, -0.93, 0.68, -0.03, 0.015
+19291210, 0.35, -1.04, -0.30, 0.015
+19291211, -0.50, 0.46, -0.05, 0.015
+19291212, -4.95, 1.25, 1.03, 0.015
+19291213, 1.92, -1.73, 0.35, 0.015
+19291214, 1.21, 0.24, 0.58, 0.015
+19291216, -2.37, 1.24, 0.88, 0.015
+19291217, 0.62, -0.69, -0.33, 0.015
+19291218, -0.56, 0.15, 0.52, 0.015
+19291219, -2.41, -0.30, 0.00, 0.015
+19291220, -3.25, -1.36, 1.30, 0.015
+19291221, 1.59, -0.44, -0.49, 0.015
+19291223, -1.37, -0.31, -0.13, 0.015
+19291224, 0.45, -0.02, -0.29, 0.015
+19291226, 2.09, -0.59, -0.59, 0.015
+19291227, -0.23, -0.58, -0.07, 0.015
+19291228, -0.75, -0.01, 0.76, 0.015
+19291230, 0.75, -1.02, -1.31, 0.015
+19291231, 2.68, 0.96, -0.33, 0.015
+19300102, -0.95, 1.83, -0.68, 0.005
+19300103, 0.63, -0.49, 0.63, 0.005
+19300104, 0.71, 0.32, -0.22, 0.005
+19300106, 0.02, 0.37, -0.38, 0.005
+19300107, -0.69, 0.78, 0.44, 0.005
+19300108, -0.12, 0.27, 0.60, 0.005
+19300109, 1.25, -0.08, -0.43, 0.005
+19300110, -0.22, 0.28, 0.24, 0.005
+19300111, -0.49, 0.39, 0.39, 0.005
+19300113, 0.30, -0.30, -0.09, 0.005
+19300114, 0.18, -0.16, 0.49, 0.005
+19300115, 0.20, -0.39, -0.26, 0.005
+19300116, -0.59, -0.06, 1.26, 0.005
+19300117, -0.78, -0.16, -0.14, 0.005
+19300118, 0.23, -0.41, -0.13, 0.005
+19300120, 0.25, 0.41, -0.51, 0.005
+19300121, 0.58, -0.26, 0.17, 0.005
+19300122, 0.11, 0.61, 0.08, 0.005
+19300123, 0.94, -0.21, -0.13, 0.005
+19300124, 0.69, 0.28, -0.58, 0.005
+19300125, 0.75, 0.07, 0.58, 0.005
+19300127, 0.33, -0.20, -0.40, 0.005
+19300128, -0.54, 0.57, 0.03, 0.005
+19300129, 1.01, -0.14, -0.10, 0.005
+19300130, 0.25, -0.03, -0.46, 0.005
+19300131, 1.39, 0.01, -1.51, 0.005
+19300201, 0.79, -0.29, -0.64, 0.013
+19300203, -0.61, 0.44, 0.26, 0.013
+19300204, 0.78, -0.27, -0.27, 0.013
+19300205, 1.03, -0.30, 0.15, 0.013
+19300206, -0.81, 0.27, 0.41, 0.013
+19300207, -0.26, 0.03, 0.61, 0.013
+19300208, 0.82, -0.51, -0.01, 0.013
+19300210, -0.07, 0.15, 0.20, 0.013
+19300211, 0.55, 0.07, 0.14, 0.013
+19300213, 0.16, 0.12, -0.09, 0.013
+19300214, 0.06, 0.18, 0.95, 0.013
+19300215, -0.80, 0.46, -0.23, 0.013
+19300217, 0.59, -0.21, -0.78, 0.013
+19300218, 0.21, 0.36, 0.15, 0.013
+19300219, -0.72, 0.27, -0.17, 0.013
+19300220, -1.90, 0.25, 0.48, 0.013
+19300221, 1.14, -0.91, 0.20, 0.013
+19300224, -0.89, 0.22, -0.30, 0.013
+19300225, 0.01, -0.08, -0.32, 0.013
+19300226, 1.61, -0.56, -0.20, 0.013
+19300227, 0.25, 0.45, 0.07, 0.013
+19300228, 0.55, 0.00, -0.22, 0.013
+19300301, 0.62, 0.37, -0.64, 0.013
+19300303, -0.10, 0.78, -0.18, 0.013
+19300304, 0.50, -0.34, -0.07, 0.013
+19300305, -0.70, 0.06, 0.36, 0.013
+19300306, 0.79, -0.10, -0.60, 0.013
+19300307, 0.09, 0.56, -0.10, 0.013
+19300308, 0.12, 0.30, -0.11, 0.013
+19300310, 0.45, -0.08, -0.39, 0.013
+19300311, 0.18, -0.30, 0.04, 0.013
+19300312, -0.81, 0.38, 1.10, 0.013
+19300313, 0.41, 0.19, -0.31, 0.013
+19300314, -0.68, 0.55, 0.69, 0.013
+19300315, -0.49, 0.65, 0.37, 0.013
+19300317, 1.30, -0.22, 0.02, 0.013
+19300318, 0.97, -0.21, 0.65, 0.013
+19300319, 0.30, 0.23, -0.12, 0.013
+19300320, 0.54, -0.55, -0.24, 0.013
+19300321, 0.54, 0.12, -0.07, 0.013
+19300322, -0.88, 0.64, 0.26, 0.013
+19300324, 0.95, 0.64, -0.03, 0.013
+19300325, 0.03, -0.05, 0.09, 0.013
+19300326, 0.99, -0.68, -0.45, 0.013
+19300327, -0.17, 0.24, -0.52, 0.013
+19300328, 0.87, -0.31, 0.73, 0.013
+19300329, 0.83, 0.03, -0.42, 0.013
+19300331, 0.28, 0.26, 0.05, 0.013
+19300401, 0.76, -0.06, -0.29, 0.009
+19300402, -0.97, 0.60, -0.74, 0.009
+19300403, 0.27, -0.38, -0.17, 0.009
+19300404, 1.05, -0.23, -0.04, 0.009
+19300405, 0.50, -0.27, -0.75, 0.009
+19300407, -0.03, 0.32, 0.43, 0.009
+19300408, -0.64, -0.39, 0.19, 0.009
+19300409, 1.29, -0.45, -1.12, 0.009
+19300410, 0.06, 0.43, -0.40, 0.009
+19300411, -0.37, 0.06, 0.54, 0.009
+19300412, 0.00, 0.12, -0.41, 0.009
+19300414, -0.24, 0.74, 0.18, 0.009
+19300415, -0.02, 0.11, -0.47, 0.009
+19300416, -0.73, 0.12, -0.46, 0.009
+19300417, 0.50, -0.09, -0.25, 0.009
+19300421, -1.50, 0.52, 0.31, 0.009
+19300422, 0.46, -0.68, 0.63, 0.009
+19300423, 0.39, 0.12, 0.74, 0.009
+19300424, -0.85, 0.29, 0.65, 0.009
+19300425, -0.20, -0.23, -0.06, 0.009
+19300426, 0.03, -0.62, 0.19, 0.009
+19300428, -2.10, 0.12, 0.04, 0.009
+19300429, -0.46, -0.90, -0.17, 0.009
+19300430, 0.78, 0.56, 0.52, 0.009
+19300501, -1.95, 0.90, -0.31, 0.010
+19300502, -2.46, -0.52, 0.59, 0.010
+19300503, -3.19, -0.86, 1.99, 0.010
+19300505, -0.19, -2.40, -0.14, 0.010
+19300506, 3.14, 1.45, -1.59, 0.010
+19300507, -0.91, 0.59, 0.39, 0.010
+19300508, 0.22, -0.44, -0.57, 0.010
+19300509, 0.98, -0.43, -0.02, 0.010
+19300510, 1.38, 0.16, -0.94, 0.010
+19300512, -0.01, 0.29, -0.20, 0.010
+19300513, 1.04, -0.44, 0.25, 0.010
+19300514, 0.57, 0.38, 0.18, 0.010
+19300515, -1.26, 0.35, 0.82, 0.010
+19300516, 0.51, 0.01, 0.03, 0.010
+19300517, 0.03, -0.03, 0.40, 0.010
+19300519, -1.84, 0.29, 0.13, 0.010
+19300520, 0.13, -0.58, 0.57, 0.010
+19300521, -0.35, -0.31, -0.47, 0.010
+19300522, 0.16, 0.03, 0.16, 0.010
+19300523, 0.99, 0.19, -1.10, 0.010
+19300524, 0.57, -0.51, 0.10, 0.010
+19300526, 0.12, 0.01, -0.04, 0.010
+19300527, 0.09, -0.10, -0.50, 0.010
+19300528, 0.34, -0.19, -0.39, 0.010
+19300529, 0.49, 0.11, -0.12, 0.010
+19300602, -0.17, 0.29, 0.37, 0.011
+19300603, -0.82, -0.02, 0.41, 0.011
+19300604, 0.29, -0.38, -0.05, 0.011
+19300605, -1.41, 0.17, 0.42, 0.011
+19300606, -1.47, 0.02, 0.36, 0.011
+19300607, -1.81, -0.26, 0.57, 0.011
+19300609, -2.97, -0.57, -0.56, 0.011
+19300610, 2.18, -1.56, 0.15, 0.011
+19300611, -3.20, 0.04, 0.69, 0.011
+19300612, -0.50, -0.41, -0.63, 0.011
+19300613, 0.70, -0.20, 0.75, 0.011
+19300614, -1.77, 1.18, -0.14, 0.011
+19300616, -5.38, -0.86, 0.85, 0.011
+19300617, -0.19, -1.62, 0.63, 0.011
+19300618, -3.42, -1.68, 1.09, 0.011
+19300619, 4.27, -0.29, -1.01, 0.011
+19300620, -1.75, 1.54, -0.71, 0.011
+19300621, -2.61, 0.08, 1.69, 0.011
+19300623, 1.30, -0.95, -0.93, 0.011
+19300624, -2.60, 2.28, -0.04, 0.011
+19300625, 0.13, -1.94, -0.87, 0.011
+19300626, 2.20, 0.37, 0.31, 0.011
+19300627, -0.87, 0.58, 0.13, 0.011
+19300628, 0.33, 0.08, -0.60, 0.011
+19300630, 2.50, 0.13, -0.66, 0.011
+19300701, -0.69, 1.10, 0.87, 0.008
+19300702, 0.87, -0.72, -0.02, 0.008
+19300703, -0.94, 0.58, 0.36, 0.008
+19300707, -1.72, 0.31, -0.33, 0.008
+19300708, 0.37, -1.67, 0.13, 0.008
+19300709, 1.34, 0.53, -0.13, 0.008
+19300710, 2.15, -1.46, 0.48, 0.008
+19300711, -0.90, 1.02, -0.34, 0.008
+19300712, 1.55, -1.04, -0.23, 0.008
+19300714, 1.91, 0.17, 0.07, 0.008
+19300715, 0.45, 0.96, 0.62, 0.008
+19300716, 0.69, -0.64, 0.33, 0.008
+19300717, 0.59, 0.77, -0.30, 0.008
+19300718, 0.71, 0.36, -0.73, 0.008
+19300719, -0.81, 0.48, 0.47, 0.008
+19300721, -2.56, -0.35, 0.54, 0.008
+19300722, 1.46, -0.67, -0.77, 0.008
+19300723, 1.40, 0.52, -0.71, 0.008
+19300724, -0.99, 0.15, -0.31, 0.008
+19300725, 0.49, -0.70, -0.48, 0.008
+19300726, 0.91, -0.28, 0.00, 0.008
+19300728, 0.34, 0.19, -0.47, 0.008
+19300729, -0.77, 0.19, -0.16, 0.008
+19300730, -2.30, 0.27, 0.23, 0.008
+19300731, 0.53, -0.43, -0.66, 0.008
+19300801, -0.46, 0.15, 0.21, 0.004
+19300802, 0.45, 0.11, 0.10, 0.004
+19300804, 1.31, -0.76, -0.54, 0.004
+19300805, -0.12, 0.09, 0.14, 0.004
+19300806, -1.37, 0.54, 0.02, 0.004
+19300807, -0.73, 0.10, -0.37, 0.004
+19300808, -3.77, 0.63, 0.35, 0.004
+19300809, -0.17, -0.46, -0.58, 0.004
+19300811, 0.84, -0.56, -0.02, 0.004
+19300812, -2.26, 0.75, 0.63, 0.004
+19300813, 0.87, -1.39, 0.00, 0.004
+19300814, 0.40, 0.38, -0.30, 0.004
+19300815, 2.15, -1.57, 0.46, 0.004
+19300816, 0.01, 0.80, 0.46, 0.004
+19300818, -0.38, 0.21, -0.72, 0.004
+19300819, 0.79, -0.15, -0.19, 0.004
+19300820, 0.52, -0.37, -0.25, 0.004
+19300821, -0.61, 0.46, -0.45, 0.004
+19300822, 0.12, 0.00, 0.10, 0.004
+19300823, 0.52, -0.06, -0.24, 0.004
+19300825, -0.78, 0.27, -0.06, 0.004
+19300826, 1.16, -1.28, 0.46, 0.004
+19300827, 0.54, 0.23, -0.20, 0.004
+19300828, -0.11, -0.02, 0.15, 0.004
+19300829, 1.38, -0.41, 0.19, 0.004
+19300902, 0.05, 0.26, 0.19, 0.009
+19300903, -0.95, 0.10, 0.00, 0.009
+19300904, -0.57, -0.22, 0.02, 0.009
+19300905, 1.31, 0.32, 0.39, 0.009
+19300906, 1.18, -0.63, 0.23, 0.009
+19300908, 0.11, 0.58, -0.37, 0.009
+19300909, 0.41, 0.34, -0.80, 0.009
+19300910, 0.38, 0.38, -0.16, 0.009
+19300911, -0.97, 0.25, 1.05, 0.009
+19300912, -0.41, 0.35, -0.53, 0.009
+19300913, -0.13, -0.41, -0.03, 0.009
+19300915, -1.22, 0.26, -0.02, 0.009
+19300916, 0.17, -0.89, -0.43, 0.009
+19300917, 0.25, 0.25, -0.14, 0.009
+19300918, -1.11, 0.22, -0.02, 0.009
+19300919, -1.61, -0.35, -0.36, 0.009
+19300920, 0.25, -0.03, 0.10, 0.009
+19300922, -2.52, 0.23, -0.11, 0.009
+19300923, 0.89, -1.22, -0.94, 0.009
+19300924, -1.47, -0.10, -0.64, 0.009
+19300925, -2.00, -0.14, 0.22, 0.009
+19300926, -1.50, -0.17, -0.92, 0.009
+19300927, -0.65, -0.56, -0.22, 0.009
+19300929, -2.02, 0.23, -0.98, 0.009
+19300930, -1.54, -1.67, -1.68, 0.009
+19301001, 3.78, -0.51, 1.60, 0.003
+19301002, -1.03, 1.15, -0.56, 0.003
+19301003, 1.31, -0.40, 0.43, 0.003
+19301004, -0.87, 1.07, -0.40, 0.003
+19301006, -2.90, 0.56, -0.45, 0.003
+19301007, -0.21, -1.85, -0.28, 0.003
+19301008, -0.97, 0.61, 0.81, 0.003
+19301009, -3.89, 0.62, -0.13, 0.003
+19301010, 1.89, -3.58, -1.14, 0.003
+19301011, -2.09, 3.09, 1.38, 0.003
+19301014, 0.93, -1.89, -1.20, 0.003
+19301015, 1.76, 0.42, 0.61, 0.003
+19301016, -1.42, 0.64, 0.17, 0.003
+19301017, -3.62, 0.79, -0.60, 0.003
+19301018, -1.14, -0.91, -1.41, 0.003
+19301020, 2.84, -1.54, 0.71, 0.003
+19301021, -2.39, 1.47, -0.96, 0.003
+19301022, -0.84, -0.96, 0.18, 0.003
+19301023, 0.94, 0.27, 0.09, 0.003
+19301024, 2.81, -0.74, -0.56, 0.003
+19301025, -0.16, 1.12, 0.52, 0.003
+19301027, 0.47, -0.31, -1.11, 0.003
+19301028, 0.62, -0.15, 0.64, 0.003
+19301029, -1.31, 0.83, -0.38, 0.003
+19301030, -1.14, -0.55, 1.02, 0.003
+19301031, -1.98, 0.49, 0.01, 0.003
+19301101, 0.27, -0.61, -0.74, 0.006
+19301103, 0.29, 0.07, -0.17, 0.006
+19301105, -2.62, 1.21, -0.29, 0.006
+19301106, -0.04, -0.67, -0.59, 0.006
+19301107, -3.26, 0.41, -1.12, 0.006
+19301108, -1.19, 0.46, -0.19, 0.006
+19301110, -1.96, -0.38, -0.66, 0.006
+19301111, 0.95, -0.54, -0.67, 0.006
+19301112, 1.64, -0.44, -1.64, 0.006
+19301113, 2.40, 1.14, 0.08, 0.006
+19301114, 2.43, -0.75, 0.08, 0.006
+19301115, 1.01, 1.43, 0.62, 0.006
+19301117, -2.81, 0.91, 0.85, 0.006
+19301118, 0.69, -0.81, 0.17, 0.006
+19301119, 1.93, -0.53, 0.18, 0.006
+19301120, -0.17, 1.10, 1.03, 0.006
+19301121, 1.29, -1.24, 1.30, 0.006
+19301122, -0.94, 1.12, -0.56, 0.006
+19301124, 0.16, 0.08, -0.14, 0.006
+19301125, -1.08, 0.66, -0.05, 0.006
+19301126, -1.39, -0.19, -0.96, 0.006
+19301128, -1.22, 0.49, -0.74, 0.006
+19301129, 0.96, -0.50, 0.45, 0.006
+19301201, 1.20, -1.18, -0.48, 0.005
+19301202, 0.77, 0.61, 0.03, 0.005
+19301203, -1.26, 0.71, -0.76, 0.005
+19301204, -1.61, -0.69, -0.06, 0.005
+19301205, 0.08, -0.59, -0.41, 0.005
+19301206, -1.06, 1.07, -0.26, 0.005
+19301208, -1.43, -0.06, -1.05, 0.005
+19301209, -0.13, -0.55, -0.92, 0.005
+19301210, -1.72, -0.60, -0.60, 0.005
+19301211, -0.97, -0.53, -0.67, 0.005
+19301212, -1.08, 0.46, 0.87, 0.005
+19301213, -2.52, -0.25, -0.83, 0.005
+19301215, -0.54, -0.80, -0.59, 0.005
+19301216, -3.19, -0.56, -2.23, 0.005
+19301217, 3.83, -2.86, 1.22, 0.005
+19301218, 1.18, 1.29, 0.47, 0.005
+19301219, 1.33, -0.51, 0.93, 0.005
+19301220, 0.11, 0.65, 0.75, 0.005
+19301222, -3.08, 1.72, -0.73, 0.005
+19301223, 0.32, -2.21, -0.51, 0.005
+19301224, 1.20, 0.26, -0.43, 0.005
+19301226, -1.82, 1.25, -1.74, 0.005
+19301227, -0.74, -0.36, -0.79, 0.005
+19301229, -0.26, -1.97, -0.41, 0.005
+19301230, 2.00, -1.04, 0.43, 0.005
+19301231, 1.64, 1.43, 2.51, 0.005
+19310102, 3.49, 0.07, 0.63, 0.006
+19310103, 1.82, -0.26, 2.96, 0.006
+19310105, -0.80, 0.28, 1.07, 0.006
+19310106, 1.51, -0.26, 0.95, 0.006
+19310107, 0.05, 1.07, 1.03, 0.006
+19310108, 0.65, 0.63, 1.13, 0.006
+19310109, -0.53, 1.50, 1.38, 0.006
+19310110, 0.42, -0.79, 0.43, 0.006
+19310112, -1.71, 0.93, -1.15, 0.006
+19310113, -1.10, -0.54, -0.73, 0.006
+19310114, 0.66, 0.52, 0.52, 0.006
+19310115, -1.98, 0.65, -0.06, 0.006
+19310116, 1.17, -0.89, -0.30, 0.006
+19310117, -0.43, 0.61, 0.41, 0.006
+19310119, -0.60, 0.21, -1.24, 0.006
+19310120, 1.93, -1.16, 0.19, 0.006
+19310121, 0.05, 0.35, 0.21, 0.006
+19310122, 1.70, -0.93, 0.96, 0.006
+19310123, 1.77, 0.40, -0.29, 0.006
+19310124, -0.76, 0.31, 0.35, 0.006
+19310126, 0.71, -0.72, -0.23, 0.006
+19310127, -0.44, 0.78, 0.54, 0.006
+19310128, -1.93, 0.99, -0.47, 0.006
+19310129, 1.06, -0.90, -0.87, 0.006
+19310130, 0.24, 0.27, 0.57, 0.006
+19310131, -0.60, 0.21, -0.41, 0.006
+19310202, 0.30, -0.06, 0.05, 0.002
+19310203, 0.39, 0.09, -0.45, 0.002
+19310204, 0.46, -0.21, 0.34, 0.002
+19310205, -0.57, 0.29, -0.50, 0.002
+19310206, 0.31, 0.95, -0.27, 0.002
+19310207, 1.31, -0.52, 0.10, 0.002
+19310209, 2.44, 0.24, 0.43, 0.002
+19310210, 1.45, -0.33, 0.70, 0.002
+19310211, 0.56, 0.18, -0.92, 0.002
+19310213, -0.23, 0.33, 0.45, 0.002
+19310214, -0.16, 0.10, -0.51, 0.002
+19310216, 1.24, 0.18, 0.20, 0.002
+19310217, -1.46, 0.64, 0.22, 0.002
+19310218, 0.71, 0.36, -0.22, 0.002
+19310219, 1.15, 0.70, -0.24, 0.002
+19310220, 1.43, 0.00, -0.30, 0.002
+19310221, 1.27, -0.19, 0.68, 0.002
+19310224, 1.22, -0.58, -0.43, 0.002
+19310225, -1.00, 0.26, 0.31, 0.002
+19310226, 0.82, -0.29, 1.40, 0.002
+19310227, -0.53, 0.83, 0.71, 0.002
+19310228, -0.61, 0.05, -0.45, 0.002
+19310302, -1.91, 1.51, -1.79, 0.005
+19310303, -0.27, -0.50, 0.13, 0.005
+19310304, -1.01, 0.08, 0.29, 0.005
+19310305, 1.63, -0.64, -0.03, 0.005
+19310306, -1.73, 1.05, -0.30, 0.005
+19310307, 1.60, -1.34, 0.32, 0.005
+19310309, 0.53, 0.78, -1.23, 0.005
+19310310, -0.09, 0.17, 0.73, 0.005
+19310311, -1.14, 0.29, -0.11, 0.005
+19310312, -0.54, 0.14, -0.45, 0.005
+19310313, -0.55, -0.65, -0.16, 0.005
+19310314, 1.21, -0.13, 0.03, 0.005
+19310316, 1.19, -0.41, 0.47, 0.005
+19310317, -0.97, 0.82, -0.55, 0.005
+19310318, 1.08, -0.27, 0.00, 0.005
+19310319, 1.04, 0.95, -0.32, 0.005
+19310320, 0.25, -0.04, -0.28, 0.005
+19310321, -0.74, 0.39, 0.74, 0.005
+19310323, -0.54, 0.04, 0.13, 0.005
+19310324, 0.79, -1.14, -0.08, 0.005
+19310325, -0.45, 0.38, 0.12, 0.005
+19310326, -1.23, 0.90, -0.45, 0.005
+19310327, -1.68, 0.46, -0.10, 0.005
+19310328, -1.95, 0.03, -0.48, 0.005
+19310330, -1.10, -0.25, 0.11, 0.005
+19310331, 0.19, 0.40, -0.45, 0.005
+19310401, -1.02, 0.16, -1.21, 0.003
+19310402, -0.97, -0.07, 0.73, 0.003
+19310404, 1.78, -0.52, 0.00, 0.003
+19310406, -0.81, 0.47, 0.42, 0.003
+19310407, -1.22, -0.03, -1.00, 0.003
+19310408, 1.05, -1.30, 0.63, 0.003
+19310409, -0.33, 1.29, -1.40, 0.003
+19310410, 0.15, -0.05, 0.59, 0.003
+19310411, 0.07, -0.01, 0.18, 0.003
+19310413, 1.12, -0.55, -0.59, 0.003
+19310414, -1.00, 0.69, -0.26, 0.003
+19310415, -1.84, 0.03, -0.64, 0.003
+19310416, -1.03, -0.17, -0.21, 0.003
+19310417, -1.53, -0.51, 0.74, 0.003
+19310418, 0.73, -0.49, -0.04, 0.003
+19310420, 0.33, 0.06, -0.45, 0.003
+19310421, -2.33, 0.80, -0.44, 0.003
+19310422, -1.95, -0.25, 0.49, 0.003
+19310423, 0.03, -1.05, -1.75, 0.003
+19310424, -0.17, 0.18, -0.43, 0.003
+19310425, -1.81, 0.75, -1.35, 0.003
+19310427, -1.43, -1.84, -1.19, 0.003
+19310428, -0.74, -0.65, 0.03, 0.003
+19310429, -1.90, -0.27, 0.29, 0.003
+19310430, 4.63, -1.70, 1.99, 0.003
+19310501, -2.28, 3.20, -1.17, 0.003
+19310502, 0.79, -1.40, 0.16, 0.003
+19310504, 1.73, -0.55, -0.33, 0.003
+19310505, -1.00, 0.00, 0.50, 0.003
+19310506, 0.43, 0.10, -0.59, 0.003
+19310507, -0.24, -0.03, -1.14, 0.003
+19310508, 2.73, -0.91, 0.03, 0.003
+19310509, -1.18, 1.83, -0.16, 0.003
+19310511, -0.06, -0.54, 0.46, 0.003
+19310512, -0.97, 0.79, -0.12, 0.003
+19310513, -0.30, 0.67, -0.87, 0.003
+19310514, -2.20, 1.36, -0.63, 0.003
+19310515, -1.14, -0.43, -0.84, 0.003
+19310516, -0.52, 0.75, -0.23, 0.003
+19310518, -3.25, 1.98, -1.84, 0.003
+19310519, -0.37, -1.91, -0.04, 0.003
+19310520, -0.53, 0.37, 0.91, 0.003
+19310521, 0.91, -2.19, 0.50, 0.003
+19310522, 0.39, -0.29, 0.78, 0.003
+19310523, -0.98, 1.36, 0.14, 0.003
+19310525, -2.92, 1.33, -0.85, 0.003
+19310526, -0.22, -0.60, -0.61, 0.003
+19310527, -1.34, 0.49, 0.01, 0.003
+19310528, 0.57, -0.68, -1.24, 0.003
+19310529, -2.04, 0.96, 0.00, 0.003
+19310601, -4.37, 0.94, -0.89, 0.003
+19310602, -1.36, -0.84, -0.28, 0.003
+19310603, 6.37, -4.53, 1.41, 0.003
+19310604, 3.49, 0.84, 3.22, 0.003
+19310605, -0.44, 1.06, 0.80, 0.003
+19310606, -2.26, 1.68, -0.09, 0.003
+19310608, 2.93, -2.52, 0.56, 0.003
+19310609, -1.32, 1.09, 0.21, 0.003
+19310610, 2.13, -2.95, -0.08, 0.003
+19310611, 0.48, -1.39, 2.39, 0.003
+19310612, 0.38, -0.18, 1.41, 0.003
+19310613, -0.14, 0.87, 0.51, 0.003
+19310615, -0.57, 1.18, -1.02, 0.003
+19310616, 0.13, -0.47, 0.61, 0.003
+19310617, -0.92, 0.36, -0.60, 0.003
+19310618, -1.66, 1.65, -1.05, 0.003
+19310619, -0.29, 0.03, 0.66, 0.003
+19310620, 5.07, -3.34, 0.82, 0.003
+19310622, 3.98, -0.81, 0.00, 0.003
+19310623, -0.94, 2.09, -0.09, 0.003
+19310624, 4.15, -0.93, 3.54, 0.003
+19310625, -0.51, 1.74, -1.54, 0.003
+19310626, 2.54, -1.82, 2.05, 0.003
+19310627, 0.99, -0.39, -0.09, 0.003
+19310629, -2.21, 0.86, -1.00, 0.003
+19310630, -1.63, 0.80, -0.74, 0.003
+19310701, 1.19, -1.37, 0.50, 0.002
+19310702, -0.59, 0.16, -0.21, 0.002
+19310703, 1.97, -0.24, 0.36, 0.002
+19310706, -1.01, 0.71, -0.43, 0.002
+19310707, -3.67, 1.79, -1.90, 0.002
+19310708, -0.91, -0.03, -0.83, 0.002
+19310709, 0.87, -0.75, 0.41, 0.002
+19310710, 1.05, -0.56, 1.14, 0.002
+19310711, -1.53, 1.62, -0.80, 0.002
+19310713, -1.06, -0.50, -1.13, 0.002
+19310714, -0.71, 0.46, -0.73, 0.002
+19310715, -2.13, 0.31, -1.70, 0.002
+19310716, 2.03, -0.40, 0.93, 0.002
+19310717, 1.04, -0.47, 1.94, 0.002
+19310718, 0.05, -0.48, 0.02, 0.002
+19310720, 1.18, -0.87, 1.38, 0.002
+19310721, 1.02, -0.92, 1.76, 0.002
+19310722, -2.05, 1.58, -0.89, 0.002
+19310723, -0.16, 0.30, -0.55, 0.002
+19310724, -1.68, 0.74, -1.14, 0.002
+19310725, -0.39, 0.56, 0.57, 0.002
+19310727, 0.54, -0.81, -0.58, 0.002
+19310728, 0.92, -1.24, 1.24, 0.002
+19310729, -2.71, 1.88, -1.04, 0.002
+19310730, 0.51, -0.45, 0.25, 0.002
+19310731, -0.37, 0.36, -0.54, 0.002
+19310801, 0.63, -0.34, 0.12, 0.001
+19310803, 0.50, -0.91, 0.13, 0.001
+19310804, -0.67, 0.25, -1.26, 0.001
+19310805, -1.43, 1.06, -0.67, 0.001
+19310806, -0.54, 0.03, -0.71, 0.001
+19310807, 0.23, -0.12, -0.62, 0.001
+19310808, 0.08, 0.50, -0.15, 0.001
+19310810, -0.40, -0.30, -0.71, 0.001
+19310811, 3.05, -1.37, -0.09, 0.001
+19310812, -1.18, 1.00, 0.80, 0.001
+19310813, 1.37, -1.20, 0.06, 0.001
+19310814, 1.81, -1.05, 0.99, 0.001
+19310815, 0.99, -0.42, 0.58, 0.001
+19310817, -2.26, 1.38, -0.34, 0.001
+19310818, 0.30, -1.03, 1.57, 0.001
+19310819, 0.26, -0.32, 1.36, 0.001
+19310820, 0.19, 0.34, -0.96, 0.001
+19310821, -2.49, 1.31, -0.18, 0.001
+19310822, -0.12, -0.26, -0.31, 0.001
+19310824, -0.49, -0.29, -0.46, 0.001
+19310825, -0.32, 0.55, -1.17, 0.001
+19310826, 1.50, -1.56, 0.98, 0.001
+19310827, -0.51, 0.46, -0.21, 0.001
+19310828, 0.77, -0.49, 0.00, 0.001
+19310829, 0.65, -0.52, 0.44, 0.001
+19310831, -1.36, 1.04, -0.81, 0.001
+19310901, 0.34, 0.28, -0.95, 0.001
+19310902, -1.70, 1.06, -1.50, 0.001
+19310903, -2.13, 0.70, -1.68, 0.001
+19310904, -0.57, 0.73, -0.52, 0.001
+19310908, -2.93, 1.23, -1.90, 0.001
+19310909, -0.80, -0.79, -0.55, 0.001
+19310910, -1.06, -0.14, 0.32, 0.001
+19310911, 0.51, -1.07, -0.57, 0.001
+19310912, -2.05, 2.23, 1.03, 0.001
+19310914, -2.61, -0.13, -3.93, 0.001
+19310915, -1.29, -0.68, -0.10, 0.001
+19310916, -0.97, -0.08, 0.74, 0.001
+19310917, 1.36, -1.95, 0.12, 0.001
+19310918, -4.47, 2.93, -2.02, 0.001
+19310919, -3.38, -0.15, -1.65, 0.001
+19310921, -1.58, -3.66, 1.12, 0.001
+19310922, -0.96, -1.19, 0.30, 0.001
+19310923, 6.49, -4.40, 7.50, 0.001
+19310924, -6.80, 5.57, -1.86, 0.001
+19310925, 1.60, -4.00, -1.12, 0.001
+19310926, -1.16, 3.51, 0.60, 0.001
+19310928, -2.10, -0.74, -0.71, 0.001
+19310929, -4.08, 0.13, -0.16, 0.001
+19310930, -3.11, -0.83, -1.12, 0.001
+19311001, -1.78, -2.29, -1.00, 0.004
+19311002, 1.40, 0.36, -0.38, 0.004
+19311003, -2.86, 3.34, 0.33, 0.004
+19311005, -5.84, 1.37, -3.52, 0.004
+19311006, 11.16, -6.05, 1.36, 0.004
+19311007, -0.88, 3.58, 1.46, 0.004
+19311008, 7.91, -3.97, 3.11, 0.004
+19311009, -0.04, 1.60, 2.20, 0.004
+19311010, 0.73, 0.24, 0.12, 0.004
+19311013, -4.81, 3.22, -1.48, 0.004
+19311014, -2.19, 0.39, -1.39, 0.004
+19311015, 1.87, -1.09, 1.60, 0.004
+19311016, 3.03, -3.21, 0.26, 0.004
+19311017, 0.07, 0.66, 0.31, 0.004
+19311019, 0.74, -0.21, 0.45, 0.004
+19311020, 4.25, -1.87, 1.43, 0.004
+19311021, -0.89, 2.86, -2.41, 0.004
+19311022, -3.24, 0.46, -0.21, 0.004
+19311023, 3.10, -2.02, -1.32, 0.004
+19311024, 0.74, 0.71, 1.20, 0.004
+19311026, -2.58, 2.09, -0.28, 0.004
+19311027, -1.89, 0.69, -1.18, 0.004
+19311028, -2.70, 1.63, 0.04, 0.004
+19311029, 0.22, -0.87, 0.02, 0.004
+19311030, 2.73, -2.49, 1.65, 0.004
+19311031, 1.12, -0.64, 1.54, 0.004
+19311102, -0.21, 0.92, 0.82, 0.007
+19311104, 2.61, -0.79, -0.53, 0.007
+19311105, -0.26, 0.85, 0.05, 0.007
+19311106, 2.74, -0.19, -0.66, 0.007
+19311107, 2.53, -0.77, 2.39, 0.007
+19311109, 1.23, -0.03, 1.51, 0.007
+19311110, -1.90, 0.07, -0.47, 0.007
+19311111, -1.30, 0.30, 0.62, 0.007
+19311112, -0.26, 1.20, -0.24, 0.007
+19311113, -3.00, 2.19, -2.23, 0.007
+19311114, -1.19, 0.49, -1.67, 0.007
+19311116, -1.23, 0.29, -0.61, 0.007
+19311117, 1.20, -0.87, -1.05, 0.007
+19311118, -3.03, 2.14, -0.01, 0.007
+19311119, -0.48, -2.07, 0.52, 0.007
+19311120, -2.97, 1.58, -1.35, 0.007
+19311121, -0.55, 0.70, 0.81, 0.007
+19311123, -0.94, 0.01, -0.80, 0.007
+19311124, 1.55, -1.27, 0.30, 0.007
+19311125, -3.17, 1.80, -0.85, 0.007
+19311127, -2.49, 0.71, -1.43, 0.007
+19311128, -1.30, 0.90, -0.36, 0.007
+19311130, 3.36, -3.47, -0.27, 0.007
+19311201, -0.91, -0.15, -0.39, 0.005
+19311202, -3.11, 2.24, -1.08, 0.005
+19311203, 1.48, -3.05, -0.90, 0.005
+19311204, -1.97, 0.77, 0.01, 0.005
+19311205, 3.06, -2.65, 1.25, 0.005
+19311207, -0.19, 0.66, -1.77, 0.005
+19311208, -3.00, 1.76, -0.21, 0.005
+19311209, -2.59, 0.27, -1.30, 0.005
+19311210, -2.06, -0.79, -2.01, 0.005
+19311211, -2.76, 1.12, -0.31, 0.005
+19311212, -1.13, -0.47, -0.90, 0.005
+19311214, -2.31, 0.49, -2.09, 0.005
+19311215, 0.97, -3.00, -1.02, 0.005
+19311216, -2.11, 2.64, 0.11, 0.005
+19311217, -3.16, 0.56, -3.95, 0.005
+19311218, 7.97, -6.23, 4.75, 0.005
+19311219, 0.75, 4.00, 1.48, 0.005
+19311221, -2.62, -0.30, 2.08, 0.005
+19311222, 1.39, -1.58, -2.93, 0.005
+19311223, -3.48, 2.82, -2.15, 0.005
+19311224, 0.02, 0.90, -0.88, 0.005
+19311228, -2.67, -0.75, -1.56, 0.005
+19311229, 2.09, -2.30, -0.13, 0.005
+19311230, 1.65, -1.93, -0.22, 0.005
+19311231, 0.99, 3.46, 3.92, 0.005
+19320102, -3.47, 3.73, 2.13, 0.009
+19320104, -2.99, 1.08, -0.76, 0.009
+19320105, -0.37, -1.04, 0.34, 0.009
+19320106, 6.44, -4.30, 2.95, 0.009
+19320107, 1.99, -0.82, 4.38, 0.009
+19320108, 3.80, -2.24, 1.66, 0.009
+19320109, -1.55, 2.78, 0.20, 0.009
+19320111, 1.11, -2.03, 2.92, 0.009
+19320112, -0.90, 0.30, -0.30, 0.009
+19320113, 4.52, -2.02, 0.57, 0.009
+19320114, 1.10, 0.72, 0.19, 0.009
+19320115, -0.09, 0.79, -0.63, 0.009
+19320116, -1.59, 1.12, -0.17, 0.009
+19320118, -2.36, 1.71, -0.73, 0.009
+19320119, -0.36, -0.38, 0.11, 0.009
+19320120, 1.66, -2.35, 1.93, 0.009
+19320121, -0.06, 0.90, -0.81, 0.009
+19320122, -3.75, 2.47, -0.09, 0.009
+19320123, -0.79, -0.56, -1.47, 0.009
+19320125, 0.39, -0.03, 0.61, 0.009
+19320126, 0.91, -0.11, -1.19, 0.009
+19320127, -1.67, -0.70, -0.31, 0.009
+19320128, -1.24, 1.71, 0.40, 0.009
+19320129, -1.22, 0.95, -1.15, 0.009
+19320130, -0.32, 1.99, -0.91, 0.009
+19320201, 3.73, -4.29, 2.23, 0.010
+19320202, -1.73, 1.89, -1.01, 0.010
+19320203, 0.01, -0.99, -0.43, 0.010
+19320204, -0.73, 1.30, -1.46, 0.010
+19320205, -2.67, 1.96, -0.23, 0.010
+19320206, -0.86, 0.29, 1.12, 0.010
+19320208, -0.92, 1.16, -2.00, 0.010
+19320209, -1.22, 0.28, 0.81, 0.010
+19320210, -0.30, -0.48, 0.86, 0.010
+19320211, 7.38, -5.33, 1.03, 0.010
+19320213, 8.23, -4.49, 0.35, 0.010
+19320215, -2.79, 2.39, 0.73, 0.010
+19320216, 3.84, -2.65, -0.61, 0.010
+19320217, -3.47, 3.89, -0.53, 0.010
+19320218, 2.29, -2.14, -1.17, 0.010
+19320219, 0.16, 0.70, 0.40, 0.010
+19320220, -2.20, 1.39, -0.77, 0.010
+19320223, -3.20, 1.11, 0.08, 0.010
+19320224, 2.04, -1.42, -0.40, 0.010
+19320225, -0.68, 1.01, -0.88, 0.010
+19320226, -0.04, -0.28, 0.17, 0.010
+19320227, -0.29, 0.41, 0.55, 0.010
+19320229, -0.26, 0.79, -0.06, 0.010
+19320301, 0.39, -1.08, 0.40, 0.006
+19320302, 3.92, -2.58, 0.17, 0.006
+19320303, -0.17, 1.02, -0.07, 0.006
+19320304, 0.12, -0.17, -0.14, 0.006
+19320305, 2.49, -0.50, 0.68, 0.006
+19320307, -1.26, 0.45, 1.44, 0.006
+19320308, 1.58, -1.18, 0.70, 0.006
+19320309, -1.45, 0.89, -0.12, 0.006
+19320310, -0.80, 0.36, -1.09, 0.006
+19320311, -2.22, 1.03, 0.00, 0.006
+19320312, 0.71, -0.09, 0.22, 0.006
+19320314, -3.16, 2.01, -0.80, 0.006
+19320315, -0.32, 0.74, -0.96, 0.006
+19320316, -2.00, 0.85, -1.19, 0.006
+19320317, 1.83, -3.25, 0.62, 0.006
+19320318, -2.45, 2.17, 1.06, 0.006
+19320319, -0.70, 0.22, -1.03, 0.006
+19320321, 1.28, -1.49, -0.82, 0.006
+19320322, -0.64, 0.59, -0.14, 0.006
+19320323, -1.46, 0.53, 0.33, 0.006
+19320324, -0.92, 0.31, 0.55, 0.006
+19320326, -2.67, 1.91, -0.57, 0.006
+19320328, -0.80, -0.08, -0.81, 0.006
+19320329, 0.34, -1.10, 0.24, 0.006
+19320330, 1.66, -2.63, 1.05, 0.006
+19320331, -4.76, 3.03, -2.01, 0.006
+19320401, -1.43, 1.37, -1.96, 0.004
+19320402, -1.03, 0.71, -0.53, 0.004
+19320404, -0.88, -0.88, -2.10, 0.004
+19320405, -3.69, 2.50, -1.56, 0.004
+19320406, -2.37, -0.22, 0.14, 0.004
+19320407, -0.80, -0.26, 0.65, 0.004
+19320408, -3.94, 1.00, 0.00, 0.004
+19320409, 1.82, -1.23, 0.63, 0.004
+19320411, -3.26, 0.51, 1.75, 0.004
+19320412, -0.36, -0.83, -1.08, 0.004
+19320413, -1.24, 0.85, 0.48, 0.004
+19320414, 3.22, -4.82, 1.09, 0.004
+19320415, 2.84, -0.97, 1.65, 0.004
+19320416, -1.10, 2.71, 0.17, 0.004
+19320418, -2.79, 0.46, 0.88, 0.004
+19320419, -1.25, 0.29, -0.44, 0.004
+19320420, -0.27, -2.14, 1.33, 0.004
+19320421, 2.96, -1.12, -0.22, 0.004
+19320422, -3.77, 4.04, -1.01, 0.004
+19320423, 0.89, -2.24, 1.60, 0.004
+19320425, 0.12, -0.54, 0.38, 0.004
+19320426, 1.34, -0.90, 1.18, 0.004
+19320427, 2.15, -0.92, 0.31, 0.004
+19320428, -3.41, 2.80, -2.11, 0.004
+19320429, -2.96, 0.71, 0.61, 0.004
+19320430, 0.06, -0.25, -0.32, 0.004
+19320502, -1.31, 0.42, -1.37, 0.002
+19320503, -1.22, 0.90, -0.97, 0.002
+19320504, 0.75, -1.86, 0.07, 0.002
+19320505, -0.71, 0.40, 1.86, 0.002
+19320506, 6.16, -4.87, 0.33, 0.002
+19320507, -0.96, 2.24, 1.22, 0.002
+19320509, -1.15, 0.85, -0.19, 0.002
+19320510, 0.98, -1.60, -0.51, 0.002
+19320511, -0.15, 0.88, 0.47, 0.002
+19320512, -2.91, 2.38, -1.63, 0.002
+19320513, -3.05, 1.03, 0.79, 0.002
+19320514, -1.35, 1.90, -1.45, 0.002
+19320516, 1.64, -2.63, -0.27, 0.002
+19320517, 0.01, 0.50, -0.42, 0.002
+19320518, -1.90, 1.04, 0.65, 0.002
+19320519, 0.13, -1.69, -0.09, 0.002
+19320520, 0.00, 0.92, -0.06, 0.002
+19320521, 0.08, -1.32, -0.85, 0.002
+19320523, -0.75, 0.69, -0.11, 0.002
+19320524, -3.45, 1.55, -0.67, 0.002
+19320525, -2.98, -0.88, -2.45, 0.002
+19320526, 0.72, -3.02, 0.02, 0.002
+19320527, -4.19, 3.78, -0.61, 0.002
+19320528, 0.20, -1.30, 1.10, 0.002
+19320531, -6.82, 4.47, 0.36, 0.002
+19320601, -1.18, -1.20, 1.82, 0.001
+19320602, 4.21, -3.57, -0.25, 0.001
+19320603, 4.14, -2.00, 1.96, 0.001
+19320604, 6.41, -4.00, 0.97, 0.001
+19320606, -2.14, 1.47, 0.87, 0.001
+19320607, -3.64, 4.27, -0.83, 0.001
+19320608, -4.78, 3.05, 0.79, 0.001
+19320609, -0.30, -0.82, -2.67, 0.001
+19320610, 6.32, -5.67, 2.08, 0.001
+19320611, -0.50, 3.40, -1.24, 0.001
+19320613, -0.93, 0.09, 0.49, 0.001
+19320614, 1.96, -1.73, 1.15, 0.001
+19320615, 3.25, -2.34, -0.31, 0.001
+19320616, 0.36, 0.24, 3.67, 0.001
+19320617, -4.70, 2.90, 0.07, 0.001
+19320618, 0.28, 0.70, -0.70, 0.001
+19320620, 0.47, -1.01, -0.43, 0.001
+19320621, -2.08, 1.02, -0.65, 0.001
+19320622, -0.27, 0.74, -0.80, 0.001
+19320623, 0.95, 0.18, 0.75, 0.001
+19320624, -3.55, 3.51, -1.10, 0.001
+19320625, -0.26, 0.61, -0.75, 0.001
+19320627, -2.90, 1.08, 1.62, 0.001
+19320628, 0.11, -0.24, -1.28, 0.001
+19320629, 0.68, 0.23, -1.16, 0.001
+19320630, -1.38, -1.44, 1.66, 0.001
+19320701, 2.65, -0.28, 0.02, 0.001
+19320705, -0.99, 0.24, 2.51, 0.001
+19320706, 1.86, -1.00, -1.46, 0.001
+19320707, -2.93, 2.77, 2.22, 0.001
+19320708, -1.24, 0.85, 0.38, 0.001
+19320709, 0.94, -0.27, -0.09, 0.001
+19320711, 2.58, -2.09, 2.19, 0.001
+19320712, 0.27, -0.94, 0.19, 0.001
+19320713, 4.14, -1.27, 1.16, 0.001
+19320714, -1.83, 1.41, 0.25, 0.001
+19320715, 4.24, -3.00, 2.36, 0.001
+19320716, 0.14, 1.45, 0.60, 0.001
+19320718, -2.60, 2.36, -0.93, 0.001
+19320719, -0.42, -0.03, -0.94, 0.001
+19320720, 3.01, -2.24, 2.77, 0.001
+19320721, 2.47, -1.59, 3.67, 0.001
+19320722, 2.84, -0.96, 2.77, 0.001
+19320723, 0.21, 1.53, -0.37, 0.001
+19320725, 4.40, -2.86, 5.68, 0.001
+19320726, -0.97, 2.05, 0.97, 0.001
+19320727, 4.34, -2.19, 0.45, 0.001
+19320728, 3.35, 2.51, -0.71, 0.001
+19320729, 2.72, -1.52, 1.45, 0.001
+19320730, 0.74, 1.90, -0.33, 0.001
+19320801, -0.35, 1.64, 0.21, 0.001
+19320802, -2.53, 2.29, -1.81, 0.001
+19320803, 7.89, -6.15, 1.75, 0.001
+19320804, 1.69, 1.15, -0.45, 0.001
+19320805, 3.70, -2.48, 0.50, 0.001
+19320806, 5.91, -3.40, 2.93, 0.001
+19320808, 2.94, 2.78, 2.77, 0.001
+19320809, 0.07, 1.55, 1.99, 0.001
+19320810, 4.11, 0.49, 4.19, 0.001
+19320811, -1.38, 2.65, -0.44, 0.001
+19320812, -6.31, 3.19, 0.37, 0.001
+19320813, -1.06, -1.43, -1.88, 0.001
+19320815, 6.01, -2.34, 2.39, 0.001
+19320816, 3.43, -0.34, 2.69, 0.001
+19320817, -2.02, 0.65, -3.55, 0.001
+19320818, 1.00, -1.83, 1.21, 0.001
+19320819, -0.95, 1.77, 1.05, 0.001
+19320820, 0.26, 1.49, -0.90, 0.001
+19320822, 5.76, -0.93, 3.48, 0.001
+19320823, 2.11, 0.98, 0.74, 0.001
+19320824, 2.24, -0.25, 2.38, 0.001
+19320825, -0.44, 3.33, 2.09, 0.001
+19320826, 1.30, -0.04, 0.33, 0.001
+19320827, 1.90, 1.88, 1.28, 0.001
+19320829, 0.28, 1.52, 0.29, 0.001
+19320830, -1.34, 2.44, 0.19, 0.001
+19320831, -0.91, -2.11, -0.90, 0.001
+19320901, 0.39, 1.06, 0.75, 0.001
+19320902, 4.56, -0.01, 0.48, 0.001
+19320903, 2.31, -0.13, 0.09, 0.001
+19320906, -2.08, 1.22, 0.12, 0.001
+19320907, 3.94, -1.80, 0.28, 0.001
+19320908, -2.86, 3.51, -0.70, 0.001
+19320909, -2.15, -0.66, -1.49, 0.001
+19320910, 0.07, -1.92, 0.37, 0.001
+19320912, -6.40, 0.64, -3.57, 0.001
+19320913, -4.09, -1.17, -4.66, 0.001
+19320914, -5.14, 2.71, -2.67, 0.001
+19320915, 4.02, -4.60, 1.50, 0.001
+19320916, -0.69, 2.36, 1.96, 0.001
+19320917, -0.89, -0.32, -0.30, 0.001
+19320919, -1.57, 0.47, -0.50, 0.001
+19320920, 2.90, -2.49, 0.17, 0.001
+19320921, 10.96, -1.26, 5.21, 0.001
+19320922, -2.52, 2.53, -0.75, 0.001
+19320923, 1.34, -1.52, -0.53, 0.001
+19320924, 1.33, 0.18, 0.00, 0.001
+19320926, -4.93, 1.84, -1.29, 0.001
+19320927, 0.71, -1.05, 0.68, 0.001
+19320928, 2.36, -1.94, -0.16, 0.001
+19320929, -2.66, 1.44, -1.70, 0.001
+19320930, -0.19, -2.70, 1.25, 0.001
+19321001, 0.70, 0.24, 0.49, 0.001
+19321003, -1.35, 0.11, -1.89, 0.001
+19321004, 0.11, -0.34, -0.89, 0.001
+19321005, -7.33, 2.29, -2.21, 0.001
+19321006, 0.05, -1.95, -1.84, 0.001
+19321007, -5.04, 1.21, -3.95, 0.001
+19321008, -2.95, 1.10, -3.10, 0.001
+19321010, -5.52, 1.54, -3.58, 0.001
+19321011, 6.87, -3.90, 2.96, 0.001
+19321013, -2.49, 1.50, 0.68, 0.001
+19321014, 6.46, -3.35, 2.89, 0.001
+19321015, 0.77, 0.91, 1.04, 0.001
+19321017, -2.52, 0.31, -0.86, 0.001
+19321018, 1.57, -1.55, -0.02, 0.001
+19321019, 3.57, -2.37, 0.49, 0.001
+19321020, -1.76, 1.01, 0.87, 0.001
+19321021, -5.47, 2.31, -2.32, 0.001
+19321022, -0.13, -0.34, 1.35, 0.001
+19321024, 0.43, -1.22, -1.78, 0.001
+19321025, -0.86, -0.19, 0.14, 0.001
+19321026, 1.38, -2.35, 1.68, 0.001
+19321027, 0.98, 0.00, 0.13, 0.001
+19321028, 1.61, -0.99, 1.13, 0.001
+19321029, -1.14, 2.06, -2.50, 0.001
+19321031, -0.72, -0.60, 0.28, 0.001
+19321101, -3.63, 1.78, -1.53, 0.001
+19321102, -3.15, 0.65, -1.74, 0.001
+19321103, -0.63, -0.78, -2.95, 0.001
+19321104, 5.42, -2.40, 0.52, 0.001
+19321105, 1.17, 0.33, 1.39, 0.001
+19321107, 3.53, -0.51, 1.52, 0.001
+19321109, -3.75, 3.63, -2.08, 0.001
+19321110, 6.47, -4.45, 2.26, 0.001
+19321111, 3.66, -0.10, 0.98, 0.001
+19321112, 0.04, 2.09, -0.13, 0.001
+19321114, -2.81, 0.56, -1.23, 0.001
+19321115, -0.17, -1.91, -0.78, 0.001
+19321116, -2.90, 3.05, -2.16, 0.001
+19321117, -0.74, 0.01, -2.49, 0.001
+19321118, -0.10, 0.10, 0.38, 0.001
+19321119, 1.43, -0.96, -0.19, 0.001
+19321121, -0.54, -0.42, -0.05, 0.001
+19321122, -0.30, 0.12, -0.67, 0.001
+19321123, -4.08, 1.03, -1.19, 0.001
+19321125, -1.20, -0.55, 0.08, 0.001
+19321126, 0.48, 0.06, 1.25, 0.001
+19321128, -0.38, -0.27, -1.42, 0.001
+19321129, -0.37, -0.03, -0.98, 0.001
+19321130, -2.68, 0.42, -2.48, 0.001
+19321201, 2.36, -1.13, 0.20, 0.000
+19321202, -3.14, 1.80, -1.81, 0.000
+19321203, -0.28, -0.77, -2.00, 0.000
+19321205, 0.91, -0.49, -0.33, 0.000
+19321206, 4.39, -4.51, 1.09, 0.000
+19321207, 0.50, 0.58, 0.62, 0.000
+19321208, -0.05, 0.23, -0.92, 0.000
+19321209, 2.23, -1.76, 0.20, 0.000
+19321210, -0.55, -0.23, -0.04, 0.000
+19321212, 0.52, -1.08, 1.81, 0.000
+19321213, -1.28, 0.64, -2.53, 0.000
+19321214, 1.72, -2.27, 0.55, 0.000
+19321215, -0.57, 1.71, -2.76, 0.000
+19321216, -0.65, 0.21, -1.19, 0.000
+19321217, -0.04, 0.11, -0.06, 0.000
+19321219, -0.33, -0.96, -1.65, 0.000
+19321220, -1.99, 0.06, -1.02, 0.000
+19321221, -0.40, -0.66, -1.15, 0.000
+19321222, -3.36, 1.93, -2.28, 0.000
+19321223, -0.19, -1.57, -0.42, 0.000
+19321224, 1.28, 0.15, 1.54, 0.000
+19321227, -0.65, -1.48, -1.21, 0.000
+19321228, 0.06, 0.40, -0.35, 0.000
+19321229, 1.52, -2.62, -1.30, 0.000
+19321230, 2.72, 0.03, 6.78, 0.000
+19321231, -0.04, 3.37, 1.07, 0.000
+19330103, -0.72, 1.73, -1.08, 0.000
+19330104, 4.33, -1.92, 3.60, 0.000
+19330105, -0.28, 2.47, 0.91, 0.000
+19330106, 1.42, -0.89, 2.39, 0.000
+19330109, -1.05, 0.64, -0.47, 0.000
+19330110, 2.57, -1.73, 2.52, 0.000
+19330111, -0.21, 1.51, 0.86, 0.000
+19330112, -0.99, 0.07, -0.44, 0.000
+19330113, -0.16, -0.82, -2.24, 0.000
+19330114, -0.23, -0.22, 0.21, 0.000
+19330116, -2.24, 2.00, -1.17, 0.000
+19330117, 0.15, -1.18, -0.70, 0.000
+19330118, -1.67, 1.36, -0.07, 0.000
+19330119, 0.54, -1.31, 0.61, 0.000
+19330120, 1.21, -1.07, 0.56, 0.000
+19330121, 0.45, -0.40, 0.54, 0.000
+19330123, -0.87, 0.76, -1.22, 0.000
+19330124, -0.43, 0.90, -0.07, 0.000
+19330125, 1.43, -2.14, 0.89, 0.000
+19330126, -0.51, 1.15, -0.95, 0.000
+19330127, -0.20, -1.06, 1.25, 0.000
+19330128, -0.81, 1.64, -1.00, 0.000
+19330130, -0.06, -1.41, 0.88, 0.000
+19330131, -0.21, 0.49, 0.73, 0.000
+19330201, -2.91, 1.14, 0.21, -0.001
+19330202, -1.73, -0.92, -0.40, -0.001
+19330203, -0.06, 0.32, 0.99, -0.001
+19330204, -0.98, 0.54, -0.45, -0.001
+19330206, 0.04, -0.70, 0.60, -0.001
+19330207, 0.94, -0.54, -0.08, -0.001
+19330208, 1.08, -0.48, 0.10, -0.001
+19330209, 2.04, -0.35, 2.09, -0.001
+19330210, -1.03, 0.42, -0.10, -0.001
+19330211, 0.34, -1.04, 0.93, -0.001
+19330214, -4.69, -0.47, -1.92, -0.001
+19330215, -0.10, 0.52, -0.22, -0.001
+19330216, -2.03, 0.34, -0.65, -0.001
+19330217, 1.49, -2.00, 1.26, -0.001
+19330218, -0.32, 2.25, -0.32, -0.001
+19330220, -2.70, 1.08, -1.44, -0.001
+19330221, -0.62, 0.15, -0.69, -0.001
+19330223, -4.01, 1.06, -1.52, -0.001
+19330224, 2.98, -3.11, 0.34, -0.001
+19330225, -4.73, 2.63, -1.80, -0.001
+19330227, -1.32, -2.56, -0.23, -0.001
+19330228, 2.16, -1.96, 0.51, -0.001
+19330301, 1.58, -0.56, 1.75, 0.002
+19330302, -1.80, 0.97, -1.09, 0.002
+19330303, 3.07, -1.68, 2.14, 0.002
+19330315, 15.76, 1.43, 8.17, 0.002
+19330316, 1.47, 3.38, 3.34, 0.002
+19330317, -3.48, 0.05, -0.96, 0.002
+19330318, -0.26, -0.07, -0.70, 0.002
+19330320, -1.37, 0.00, 0.95, 0.002
+19330321, -4.41, 1.62, -3.91, 0.002
+19330322, -1.21, -0.95, 0.05, 0.002
+19330323, 1.70, -1.58, 2.97, 0.002
+19330324, -0.38, 0.20, -0.35, 0.002
+19330325, -0.57, 0.16, -0.87, 0.002
+19330327, -2.02, -0.30, 0.44, 0.002
+19330328, 1.62, -2.22, 0.38, 0.002
+19330329, -1.85, 1.70, -0.71, 0.002
+19330330, -0.48, -0.87, -1.64, 0.002
+19330331, -2.73, 2.40, -1.48, 0.002
+19330401, 0.50, -0.74, -0.13, 0.004
+19330403, -0.09, -0.70, -0.68, 0.004
+19330404, 0.33, 0.09, -0.20, 0.004
+19330405, 1.00, 2.58, -2.74, 0.004
+19330406, 1.84, -1.19, 3.10, 0.004
+19330407, 0.97, 0.03, 0.60, 0.004
+19330408, 1.34, -1.42, 2.06, 0.004
+19330410, 4.85, -0.25, 0.07, 0.004
+19330411, -0.74, 1.56, -0.36, 0.004
+19330412, -1.49, -0.24, -2.10, 0.004
+19330413, 3.54, -1.47, 0.68, 0.004
+19330415, -0.25, 2.28, 0.55, 0.004
+19330417, -2.01, 1.82, -2.33, 0.004
+19330418, 1.90, 0.11, 2.50, 0.004
+19330419, 7.00, -1.61, 6.68, 0.004
+19330420, 8.22, -0.40, 1.55, 0.004
+19330421, -3.57, 0.60, 3.53, 0.004
+19330422, 3.63, -3.21, 1.28, 0.004
+19330424, 2.41, 3.08, 0.15, 0.004
+19330425, -2.24, 2.05, -2.94, 0.004
+19330426, 0.47, -0.47, 2.89, 0.004
+19330427, -0.79, 0.74, -1.19, 0.004
+19330428, 1.26, -0.84, -2.28, 0.004
+19330429, 5.96, 0.51, 2.69, 0.004
+19330501, 1.41, 1.77, 0.64, 0.002
+19330502, 0.04, 0.92, 1.47, 0.002
+19330503, -0.21, 1.82, -0.03, 0.002
+19330504, 3.08, -0.30, 3.09, 0.002
+19330505, 1.07, 2.82, -1.51, 0.002
+19330506, -2.78, 0.85, -0.96, 0.002
+19330508, -1.47, 0.70, -0.78, 0.002
+19330509, 0.61, 0.07, -3.24, 0.002
+19330510, 4.83, 0.01, 2.34, 0.002
+19330511, 3.17, 1.56, 1.87, 0.002
+19330512, 0.22, -0.50, 2.13, 0.002
+19330513, -1.80, 1.60, 0.36, 0.002
+19330515, -1.00, 2.59, -0.80, 0.002
+19330516, 1.94, 3.14, -1.77, 0.002
+19330517, 1.41, 1.86, 1.31, 0.002
+19330518, -0.38, 1.21, 1.56, 0.002
+19330519, -0.52, 0.51, 2.43, 0.002
+19330520, -1.70, -0.29, -0.94, 0.002
+19330522, -0.20, -0.71, -1.10, 0.002
+19330523, 3.57, 1.68, 0.44, 0.002
+19330524, 2.07, 1.47, 0.23, 0.002
+19330525, -0.54, 1.27, -1.23, 0.002
+19330526, 2.89, 1.42, -0.75, 0.002
+19330527, 3.64, -0.27, 2.02, 0.002
+19330529, 1.67, 0.60, 3.29, 0.002
+19330531, -0.99, -0.05, 3.63, 0.002
+19330601, 1.34, 1.25, 1.88, 0.001
+19330602, 3.87, 0.63, 0.66, 0.001
+19330603, -2.50, 1.90, -1.35, 0.001
+19330605, 1.98, 0.53, 0.71, 0.001
+19330606, -0.30, 0.98, -0.91, 0.001
+19330607, 1.63, 1.22, 1.09, 0.001
+19330608, 0.41, 0.93, -1.41, 0.001
+19330609, 1.04, -0.91, -0.66, 0.001
+19330610, 0.75, 0.28, -1.32, 0.001
+19330612, 3.50, -2.31, 3.44, 0.001
+19330613, -2.48, 0.87, -1.00, 0.001
+19330614, -1.49, -1.81, -2.03, 0.001
+19330615, -6.30, 0.67, -2.27, 0.001
+19330616, 0.20, -3.70, -1.26, 0.001
+19330617, 1.66, 1.97, 3.49, 0.001
+19330619, 7.26, 2.39, 4.99, 0.001
+19330620, -1.36, 0.80, -1.06, 0.001
+19330621, 0.85, -0.49, 0.76, 0.001
+19330622, -3.54, -0.21, -1.88, 0.001
+19330623, 2.94, 0.30, -1.25, 0.001
+19330624, 0.46, 1.11, -0.11, 0.001
+19330626, 2.63, -0.45, 1.83, 0.001
+19330627, 1.01, 0.72, -0.72, 0.001
+19330628, -1.14, 1.00, -2.95, 0.001
+19330629, -0.95, 0.42, -0.33, 0.001
+19330630, 1.61, -0.44, 1.62, 0.001
+19330701, 2.42, 0.27, 2.64, 0.001
+19330703, 3.53, -1.73, 3.40, 0.001
+19330705, -0.49, -0.75, 1.79, 0.001
+19330706, 2.55, -0.03, 3.05, 0.001
+19330707, 0.50, -0.51, 1.45, 0.001
+19330708, -0.16, 1.16, -0.47, 0.001
+19330710, -0.77, 0.16, -0.21, 0.001
+19330711, -0.98, 1.57, -1.00, 0.001
+19330712, 1.18, -1.03, 0.86, 0.001
+19330713, 1.38, 0.48, 0.28, 0.001
+19330714, -1.22, 0.85, -0.54, 0.001
+19330715, 0.59, -0.64, 0.11, 0.001
+19330717, 1.96, 1.31, 0.51, 0.001
+19330718, 0.38, 0.34, 0.70, 0.001
+19330719, -4.80, -0.58, -1.33, 0.001
+19330720, -8.49, 0.67, -3.28, 0.001
+19330721, -9.21, -3.08, -4.58, 0.001
+19330722, 0.25, -3.37, -1.59, 0.001
+19330724, 8.02, 1.18, 6.01, 0.001
+19330725, -1.34, 3.30, 0.80, 0.001
+19330726, 2.26, -0.61, 0.25, 0.001
+19330727, 0.80, 0.15, 1.38, 0.001
+19330728, -2.05, 1.46, -0.74, 0.001
+19330731, -4.70, -1.21, -3.48, 0.001
+19330801, 2.89, -1.12, 2.48, 0.001
+19330802, 2.35, -0.23, 1.11, 0.001
+19330803, -0.86, 1.52, -0.97, 0.001
+19330804, -2.09, 0.58, -0.53, 0.001
+19330807, -0.58, -0.76, -1.08, 0.001
+19330808, 2.93, -1.83, 0.72, 0.001
+19330809, 3.98, -0.08, 2.20, 0.001
+19330810, -1.19, 1.17, -0.70, 0.001
+19330811, -0.24, -0.65, -0.26, 0.001
+19330814, -1.21, -0.03, -1.13, 0.001
+19330815, 0.04, 0.66, 0.02, 0.001
+19330816, -2.55, -0.24, -1.52, 0.001
+19330817, 5.36, -1.95, 1.70, 0.001
+19330818, -1.47, 1.66, -1.18, 0.001
+19330821, 1.85, -0.78, 1.24, 0.001
+19330822, 1.40, -0.89, 0.57, 0.001
+19330823, -1.03, 0.79, -0.01, 0.001
+19330824, 0.63, -1.55, 0.33, 0.001
+19330825, 3.44, -1.68, 2.16, 0.001
+19330828, -0.16, 0.54, -0.56, 0.001
+19330829, -0.78, -0.89, -0.31, 0.001
+19330830, -0.85, 0.38, 0.06, 0.001
+19330831, -0.02, 0.46, -1.21, 0.001
+19330901, 1.29, -0.36, -0.11, 0.001
+19330905, -3.13, 1.55, -1.08, 0.001
+19330906, -0.15, -0.75, -1.94, 0.001
+19330907, -1.09, 0.93, -0.09, 0.001
+19330908, -0.03, -0.91, -0.45, 0.001
+19330909, -0.06, 0.55, -0.50, 0.001
+19330911, 4.00, -1.79, 2.19, 0.001
+19330912, -0.40, 1.16, -0.63, 0.001
+19330913, 0.42, -0.30, 0.15, 0.001
+19330914, 0.40, 0.14, 0.42, 0.001
+19330915, -2.68, 1.13, -2.36, 0.001
+19330916, 2.44, -1.70, 1.69, 0.001
+19330918, -0.89, 1.12, -0.64, 0.001
+19330919, 0.15, -1.58, 0.56, 0.001
+19330920, -2.76, 1.72, -2.45, 0.001
+19330921, -6.13, 0.28, -5.44, 0.001
+19330922, 1.97, -2.28, 0.72, 0.001
+19330923, 1.50, 0.77, 1.55, 0.001
+19330925, -1.98, 0.25, -1.59, 0.001
+19330926, -0.87, 1.01, 0.60, 0.001
+19330927, -4.16, 1.03, -2.95, 0.001
+19330928, 1.27, -2.54, 0.11, 0.001
+19330929, -0.50, 1.31, 0.42, 0.001
+19330930, 0.76, -1.78, -0.86, 0.001
+19331002, -1.79, 2.46, -0.74, 0.000
+19331003, 0.37, -1.35, 0.03, 0.000
+19331004, 5.70, -1.90, 3.87, 0.000
+19331005, -0.90, 1.04, -0.97, 0.000
+19331006, -1.02, 0.23, -1.41, 0.000
+19331007, 0.67, -0.42, 0.35, 0.000
+19331009, 1.65, -0.96, 1.29, 0.000
+19331010, -0.84, 1.15, -0.97, 0.000
+19331011, -0.08, 0.50, -1.25, 0.000
+19331013, -3.38, 1.38, -2.23, 0.000
+19331014, -0.06, -0.61, -0.83, 0.000
+19331016, -5.99, 1.88, -4.16, 0.000
+19331017, 2.61, -3.85, 0.30, 0.000
+19331018, -4.30, 1.87, -2.46, 0.000
+19331019, -4.58, 0.75, -5.98, 0.000
+19331020, 2.50, -3.17, 3.06, 0.000
+19331021, -3.03, 1.96, -1.97, 0.000
+19331023, 5.01, -0.27, 5.03, 0.000
+19331024, 3.69, -2.72, 3.98, 0.000
+19331025, 2.75, 0.92, 2.18, 0.000
+19331026, -2.01, 1.02, -1.27, 0.000
+19331027, 1.26, -1.20, 0.45, 0.000
+19331028, -1.29, 1.21, -0.97, 0.000
+19331030, -3.60, 1.42, -2.55, 0.000
+19331031, -0.96, -2.08, -0.13, 0.000
+19331101, 1.17, -1.33, 0.52, 0.001
+19331102, 1.56, -0.55, 0.87, 0.001
+19331103, 3.13, -1.59, 1.90, 0.001
+19331104, -0.17, 0.66, 1.16, 0.001
+19331106, -0.80, 0.45, -1.00, 0.001
+19331108, 3.53, -1.81, 1.50, 0.001
+19331109, 0.75, 2.12, 0.64, 0.001
+19331110, -1.34, -0.57, -1.49, 0.001
+19331111, 1.05, -1.06, 1.17, 0.001
+19331113, -0.16, 1.10, -0.08, 0.001
+19331114, -0.78, 0.27, 0.04, 0.001
+19331115, -0.86, -0.31, -2.70, 0.001
+19331116, 4.41, -2.62, 2.63, 0.001
+19331117, -0.95, 1.36, -1.22, 0.001
+19331118, 0.08, 0.33, -0.24, 0.001
+19331120, 2.63, -2.06, 0.99, 0.001
+19331121, -1.05, 1.01, 0.43, 0.001
+19331122, -0.60, -0.73, -0.89, 0.001
+19331123, -1.64, 0.18, -0.60, 0.001
+19331124, 1.16, 0.43, 0.87, 0.001
+19331125, 0.28, -0.22, -0.47, 0.001
+19331127, -3.22, 1.08, -2.14, 0.001
+19331128, -0.08, -0.90, -0.60, 0.001
+19331129, 1.79, -1.41, 1.34, 0.001
+19331201, 0.40, 0.10, -0.35, 0.001
+19331202, 0.01, -0.10, -0.26, 0.001
+19331204, -0.20, 0.13, -0.56, 0.001
+19331205, 2.85, -0.47, 1.83, 0.001
+19331206, -0.55, 0.36, 0.90, 0.001
+19331207, 0.74, 0.04, 0.49, 0.001
+19331208, -0.94, 0.62, -1.08, 0.001
+19331209, 1.91, -0.88, 2.25, 0.001
+19331211, 0.31, 0.64, 0.92, 0.001
+19331212, -0.42, 0.64, -1.05, 0.001
+19331213, -0.99, -0.22, -0.81, 0.001
+19331214, 0.29, 0.53, 0.19, 0.001
+19331215, -1.38, 0.28, -1.30, 0.001
+19331216, -1.72, 1.27, -2.02, 0.001
+19331218, -1.31, -1.78, 0.39, 0.001
+19331219, -0.28, -0.64, -1.19, 0.001
+19331220, -1.77, -0.87, -1.43, 0.001
+19331221, -0.05, -0.04, -0.66, 0.001
+19331222, 2.72, -0.69, 3.31, 0.001
+19331223, -0.35, 0.59, -0.99, 0.001
+19331226, -2.29, -0.43, -1.62, 0.001
+19331227, 0.75, -1.51, -0.72, 0.001
+19331228, 3.46, 1.58, 1.73, 0.001
+19331229, -0.30, 0.88, 0.36, 0.001
+19331230, 1.16, 0.42, 0.21, 0.001
+19340102, 0.13, 0.61, 1.16, 0.002
+19340103, -1.21, 0.55, 0.04, 0.002
+19340104, -0.33, -0.62, -0.16, 0.002
+19340105, -1.13, 1.31, -1.61, 0.002
+19340106, -0.30, 0.15, 0.24, 0.002
+19340108, -0.04, -0.56, -0.68, 0.002
+19340109, 1.15, -0.33, 1.47, 0.002
+19340110, 2.65, -0.49, 0.75, 0.002
+19340111, 0.56, 0.48, 0.47, 0.002
+19340112, -0.73, 2.12, 0.54, 0.002
+19340113, -0.08, -0.66, 0.44, 0.002
+19340115, 5.49, -0.79, 4.88, 0.002
+19340116, 0.52, 1.22, 1.04, 0.002
+19340117, -0.04, 0.85, 0.78, 0.002
+19340118, -0.13, -0.01, 0.59, 0.002
+19340119, 2.68, 0.74, 2.59, 0.002
+19340120, 0.21, 0.93, 0.67, 0.002
+19340122, -0.30, 0.63, -0.66, 0.002
+19340123, 1.38, 0.65, 0.52, 0.002
+19340124, 0.66, 0.44, 0.83, 0.002
+19340125, -0.23, 0.56, -1.11, 0.002
+19340126, -0.42, 0.56, 0.23, 0.002
+19340127, -0.18, -0.02, -0.21, 0.002
+19340129, 1.77, 0.59, 1.59, 0.002
+19340130, 1.38, 0.70, 1.21, 0.002
+19340131, -1.25, 0.89, -1.97, 0.002
+19340201, 2.34, -0.19, 2.28, 0.001
+19340202, -0.10, -0.40, 1.09, 0.001
+19340203, 1.23, -0.01, 1.53, 0.001
+19340205, 1.82, 0.50, 0.63, 0.001
+19340206, -0.09, 0.96, -0.26, 0.001
+19340207, -2.92, 0.00, -1.97, 0.001
+19340208, 0.57, 0.12, 1.13, 0.001
+19340209, -2.58, 0.72, -1.08, 0.001
+19340210, -0.56, -1.39, -0.82, 0.001
+19340213, 0.71, 0.72, 1.58, 0.001
+19340214, 0.84, 0.12, 0.50, 0.001
+19340215, 1.96, 1.14, 2.68, 0.001
+19340216, 0.32, 1.57, 0.06, 0.001
+19340217, 0.31, -0.24, 0.72, 0.001
+19340219, -1.58, 0.69, -0.89, 0.001
+19340220, 0.41, 0.32, 0.00, 0.001
+19340221, 0.35, 0.55, 0.31, 0.001
+19340223, -2.55, -0.16, -2.11, 0.001
+19340224, -1.49, -0.24, -1.67, 0.001
+19340226, -2.01, -0.80, -2.25, 0.001
+19340227, 0.79, 0.12, 1.04, 0.001
+19340228, -0.04, 1.15, -0.08, 0.001
+19340301, -0.25, -0.38, -0.29, 0.001
+19340302, 3.04, -0.03, 2.20, 0.001
+19340303, -0.10, 0.53, -0.15, 0.001
+19340305, -0.41, 0.40, -0.43, 0.001
+19340306, -0.95, 0.50, -0.31, 0.001
+19340307, -2.49, -0.01, -1.48, 0.001
+19340308, 1.57, -0.06, 0.20, 0.001
+19340309, -0.29, 0.80, 0.13, 0.001
+19340310, 0.10, 0.00, 0.01, 0.001
+19340312, 1.70, -0.39, 0.36, 0.001
+19340313, 0.17, 0.53, 0.30, 0.001
+19340314, 0.01, 0.52, -0.15, 0.001
+19340315, -1.45, 0.29, -1.74, 0.001
+19340316, 0.29, 0.38, -0.30, 0.001
+19340317, -0.92, 0.51, -0.40, 0.001
+19340319, -2.31, -0.48, -1.54, 0.001
+19340320, 1.49, -0.72, 0.33, 0.001
+19340321, -1.63, 0.35, -0.54, 0.001
+19340322, 1.64, -0.71, 0.37, 0.001
+19340323, -0.61, 0.89, -0.40, 0.001
+19340324, 1.47, -0.53, 0.26, 0.001
+19340326, 0.01, 0.12, 0.25, 0.001
+19340327, -2.77, -0.80, -1.72, 0.001
+19340328, 0.26, 0.72, 0.71, 0.001
+19340329, 1.54, -0.02, 1.15, 0.001
+19340331, 1.27, 0.00, 0.96, 0.001
+19340402, 0.27, 1.07, 0.15, 0.000
+19340403, 0.90, -0.20, 0.68, 0.000
+19340404, 0.43, 0.96, -0.13, 0.000
+19340405, 0.18, -0.14, -0.89, 0.000
+19340406, 0.29, -1.01, 0.37, 0.000
+19340407, -0.12, -0.05, 0.47, 0.000
+19340409, -0.36, 0.21, 0.26, 0.000
+19340410, 1.31, -0.31, 0.64, 0.000
+19340411, 0.06, 0.10, -0.10, 0.000
+19340412, -0.24, -0.11, -0.20, 0.000
+19340413, -0.26, 0.42, -0.59, 0.000
+19340414, -0.11, -0.03, 0.03, 0.000
+19340416, -1.57, -0.15, -1.65, 0.000
+19340417, 0.99, -0.13, -0.05, 0.000
+19340418, 1.47, 0.85, 0.20, 0.000
+19340419, 0.09, -0.06, 0.14, 0.000
+19340420, 1.29, 0.31, 0.73, 0.000
+19340421, -0.31, 1.03, -0.30, 0.000
+19340423, -0.43, 0.09, 0.04, 0.000
+19340424, -0.72, 0.01, 0.04, 0.000
+19340425, -0.47, 0.17, 0.01, 0.000
+19340426, -1.35, 0.12, -0.51, 0.000
+19340427, 0.14, -0.28, -0.05, 0.000
+19340428, -0.83, 0.31, -0.89, 0.000
+19340430, -2.35, -0.32, -2.15, 0.000
+19340501, -0.19, -0.79, 0.19, 0.000
+19340502, -1.98, 0.53, -0.67, 0.000
+19340503, 0.20, -0.31, -0.45, 0.000
+19340504, 0.28, 1.09, 1.02, 0.000
+19340505, -1.59, -0.22, -0.85, 0.000
+19340507, -3.47, -0.66, -3.72, 0.000
+19340508, 2.14, -1.50, 2.85, 0.000
+19340509, -1.30, 0.94, -0.71, 0.000
+19340510, -2.18, -0.35, -1.94, 0.000
+19340511, -0.98, 1.04, -0.58, 0.000
+19340512, -1.45, -0.91, -1.88, 0.000
+19340514, 0.24, -1.55, -0.06, 0.000
+19340515, 2.02, 0.57, 0.88, 0.000
+19340516, -0.36, 1.09, 0.56, 0.000
+19340517, 4.09, -0.88, 2.97, 0.000
+19340518, -0.96, 1.20, -0.41, 0.000
+19340519, -0.13, -0.05, 0.16, 0.000
+19340521, 0.27, 0.18, -0.65, 0.000
+19340522, -1.78, 0.49, -1.35, 0.000
+19340523, -1.12, -0.18, -0.34, 0.000
+19340524, 0.40, -0.31, 0.66, 0.000
+19340525, 1.03, 0.08, -0.07, 0.000
+19340526, 0.68, -0.09, -0.39, 0.000
+19340528, 0.70, -0.55, 0.94, 0.000
+19340529, -0.43, 0.22, -0.97, 0.000
+19340531, -1.40, 0.61, -1.11, 0.000
+19340601, -2.10, 0.47, -0.99, 0.000
+19340602, -0.34, -0.50, -0.09, 0.000
+19340604, 1.44, -0.70, 0.68, 0.000
+19340605, 2.14, -0.57, 1.36, 0.000
+19340606, 0.31, 0.17, 0.39, 0.000
+19340607, -0.20, 0.00, -1.24, 0.000
+19340608, 4.22, -1.47, 3.06, 0.000
+19340609, 0.56, 0.50, 1.02, 0.000
+19340611, -1.17, 0.02, -1.56, 0.000
+19340612, 1.23, -0.34, 1.04, 0.000
+19340613, 0.08, -0.20, -0.79, 0.000
+19340614, -1.61, 0.91, -0.91, 0.000
+19340615, 1.71, -1.74, 0.20, 0.000
+19340616, 1.42, -0.50, 1.05, 0.000
+19340618, -0.02, 0.16, -0.62, 0.000
+19340619, -1.57, 0.87, -1.07, 0.000
+19340620, -0.98, 0.33, -0.70, 0.000
+19340621, -0.80, 0.36, 0.01, 0.000
+19340622, -2.02, -0.29, -1.12, 0.000
+19340623, 0.70, 0.03, -0.22, 0.000
+19340625, -0.87, 0.58, -1.33, 0.000
+19340626, 1.83, -1.73, 0.18, 0.000
+19340627, -0.06, 0.67, 0.27, 0.000
+19340628, 0.52, -0.65, 0.21, 0.000
+19340629, -1.60, 1.12, -0.77, 0.000
+19340630, 0.07, 0.18, -0.45, 0.000
+19340702, -1.21, -0.18, -1.05, 0.000
+19340703, -0.12, -0.45, -0.08, 0.000
+19340705, 1.55, -1.04, 0.69, 0.000
+19340706, 0.76, -0.13, 0.28, 0.000
+19340707, -0.12, 0.26, -0.40, 0.000
+19340709, -0.07, 0.21, -0.62, 0.000
+19340710, 0.83, -0.49, 0.67, 0.000
+19340711, 0.43, 0.09, -0.27, 0.000
+19340712, -0.75, 0.90, -1.94, 0.000
+19340713, 0.01, -0.21, -0.06, 0.000
+19340714, 0.14, 0.72, -0.73, 0.000
+19340716, -2.03, -0.06, -1.33, 0.000
+19340717, -0.41, -1.50, 0.25, 0.000
+19340718, 1.39, -0.27, -0.23, 0.000
+19340719, -0.98, 0.23, 0.11, 0.000
+19340720, -2.59, -0.65, -1.83, 0.000
+19340721, -0.44, -1.57, -0.77, 0.000
+19340723, -3.39, -1.86, -2.65, 0.000
+19340724, -1.07, -0.70, -1.97, 0.000
+19340725, 0.63, -1.80, 1.44, 0.000
+19340726, -7.13, -1.79, -3.18, 0.000
+19340727, 2.29, -1.67, 1.42, 0.000
+19340728, 1.50, 3.73, 1.05, 0.000
+19340730, -0.53, -0.09, -0.26, 0.000
+19340731, 0.18, 0.25, -0.73, 0.000
+19340801, 3.02, 1.62, 0.46, 0.000
+19340802, 0.46, 0.68, 0.74, 0.000
+19340803, -0.96, 1.32, -0.93, 0.000
+19340804, -1.83, 0.75, -0.90, 0.000
+19340806, -0.46, -0.79, -0.01, 0.000
+19340807, -0.31, 0.67, -1.14, 0.000
+19340808, 1.75, -0.29, 1.28, 0.000
+19340809, 3.00, -0.31, 0.32, 0.000
+19340810, -1.65, 1.65, -0.53, 0.000
+19340811, -0.05, -0.52, -0.35, 0.000
+19340813, 2.44, -0.82, 1.31, 0.000
+19340814, -0.83, 1.05, -1.25, 0.000
+19340815, -0.14, 0.40, 0.06, 0.000
+19340816, 0.74, -0.17, 0.17, 0.000
+19340817, -0.74, 0.17, -0.18, 0.000
+19340818, -0.27, 0.11, 0.32, 0.000
+19340820, -0.41, 0.34, -1.19, 0.000
+19340821, 2.21, -1.72, 2.15, 0.000
+19340822, 2.25, 0.70, 1.07, 0.000
+19340823, -0.49, 0.38, 0.53, 0.000
+19340824, 1.51, -1.15, 1.16, 0.000
+19340825, 0.24, 0.44, 0.88, 0.000
+19340827, -1.42, 1.27, -0.56, 0.000
+19340828, -0.46, -0.38, -1.15, 0.000
+19340829, -0.60, 1.03, -0.43, 0.000
+19340830, -1.22, -0.72, -0.74, 0.000
+19340831, -0.03, -0.65, -0.27, 0.000
+19340901, 0.02, 0.36, 0.03, 0.000
+19340904, -0.65, -0.40, -0.33, 0.000
+19340905, 1.41, -0.71, 1.20, 0.000
+19340906, -1.40, 1.44, -0.94, 0.000
+19340907, -1.13, -0.78, -0.69, 0.000
+19340908, -0.18, 0.21, -0.05, 0.000
+19340910, -2.17, 0.93, -1.04, 0.000
+19340911, -0.05, -1.73, 0.84, 0.000
+19340912, 0.42, 0.19, -0.63, 0.000
+19340913, -0.26, -0.31, -0.30, 0.000
+19340914, -2.62, 0.23, -0.89, 0.000
+19340915, 0.39, -1.05, 0.22, 0.000
+19340917, -0.62, -0.41, -0.59, 0.000
+19340918, 0.69, 0.17, 0.00, 0.000
+19340919, 2.57, -0.77, 1.21, 0.000
+19340920, 0.01, 0.93, 0.65, 0.000
+19340921, 1.92, 0.07, 0.09, 0.000
+19340922, 0.24, 0.40, 0.16, 0.000
+19340924, -0.76, 0.30, -0.41, 0.000
+19340925, 2.47, -1.70, 1.19, 0.000
+19340926, -0.32, 1.47, -1.10, 0.000
+19340927, 0.94, -0.03, 0.30, 0.000
+19340928, -1.00, 0.57, 0.03, 0.000
+19340929, 0.04, -1.00, 0.06, 0.000
+19341001, -2.55, 0.98, -1.61, 0.000
+19341002, 0.49, -0.25, 0.46, 0.000
+19341003, -0.19, 0.50, 0.23, 0.000
+19341004, -0.24, -1.05, -0.38, 0.000
+19341005, 1.87, 0.98, -0.07, 0.000
+19341006, -0.21, 0.26, 0.18, 0.000
+19341008, -0.59, 0.20, -0.87, 0.000
+19341009, -0.84, 0.43, -0.74, 0.000
+19341010, 2.29, -0.58, 1.31, 0.000
+19341011, 1.56, 0.59, 0.95, 0.000
+19341013, -1.01, 0.63, -0.58, 0.000
+19341015, -0.70, 0.48, -0.73, 0.000
+19341016, 0.72, -0.28, 0.28, 0.000
+19341017, 0.22, -0.27, -0.79, 0.000
+19341018, -0.20, 0.00, -0.19, 0.000
+19341019, -0.54, -0.62, 0.62, 0.000
+19341020, 0.23, 0.32, -0.13, 0.000
+19341022, -0.20, 0.40, -0.83, 0.000
+19341023, -0.40, -0.53, -0.35, 0.000
+19341024, 1.58, -1.98, 2.91, 0.000
+19341025, -1.78, 1.91, -1.81, 0.000
+19341026, -1.47, -0.19, -1.51, 0.000
+19341027, 0.08, -0.35, 0.05, 0.000
+19341029, -0.47, -0.03, -0.57, 0.000
+19341030, 0.42, -0.71, -0.16, 0.000
+19341031, 0.40, -0.11, -0.49, 0.000
+19341101, -0.38, -0.21, -0.82, 0.000
+19341102, 1.16, 0.94, -0.59, 0.000
+19341103, 0.77, 0.90, 0.00, 0.000
+19341105, 0.83, 0.53, -0.16, 0.000
+19341107, 1.52, -0.81, 1.82, 0.000
+19341108, -0.39, 1.14, -0.48, 0.000
+19341109, 1.70, 0.09, -0.21, 0.000
+19341110, 0.34, 0.99, 0.55, 0.000
+19341113, -0.48, 0.73, -1.23, 0.000
+19341114, -0.06, 0.03, 0.16, 0.000
+19341115, 0.47, 1.61, -0.21, 0.000
+19341116, -0.84, 0.17, -2.00, 0.000
+19341117, -0.47, 0.86, 0.04, 0.000
+19341119, 0.18, 0.65, -0.11, 0.000
+19341120, 0.07, -1.02, -1.14, 0.000
+19341121, -0.09, 0.44, -0.75, 0.000
+19341122, 0.36, -0.13, 0.20, 0.000
+19341123, 1.32, 0.03, 0.75, 0.000
+19341124, 1.03, 0.17, 0.73, 0.000
+19341126, 0.91, -0.83, 1.62, 0.000
+19341127, -0.66, 0.54, 0.23, 0.000
+19341128, 0.89, -1.28, -0.36, 0.000
+19341130, -0.07, 0.36, 0.14, 0.000
+19341201, -0.07, 0.28, -0.20, 0.000
+19341203, -0.88, 0.28, -0.24, 0.000
+19341204, 0.86, -0.74, 0.72, 0.000
+19341205, 0.91, 0.94, -0.02, 0.000
+19341206, -0.02, 1.12, -0.54, 0.000
+19341207, -0.74, 0.07, 0.03, 0.000
+19341208, -0.53, -0.22, -0.36, 0.000
+19341210, -0.10, 0.11, -0.65, 0.000
+19341211, -1.77, -0.44, 0.17, 0.000
+19341212, 0.02, 0.08, -0.50, 0.000
+19341213, -0.40, 0.36, 0.25, 0.000
+19341214, -0.16, 0.74, -0.48, 0.000
+19341215, 0.17, -0.46, 0.53, 0.000
+19341217, 0.27, -0.44, 0.24, 0.000
+19341218, -0.02, 0.50, -0.65, 0.000
+19341219, -1.39, 0.41, -0.46, 0.000
+19341220, -0.18, -1.01, -0.08, 0.000
+19341221, 0.09, -0.29, -0.47, 0.000
+19341222, -0.03, 0.58, -1.28, 0.000
+19341224, 0.73, -0.22, -0.04, 0.000
+19341226, -0.60, 0.18, -0.43, 0.000
+19341227, -0.10, -0.04, -0.57, 0.000
+19341228, 3.37, 0.23, 1.68, 0.000
+19341229, 0.46, 0.85, 0.71, 0.000
+19341231, 0.64, 0.35, -0.44, 0.000
+19350102, 0.26, 0.48, -0.33, 0.001
+19350103, 0.58, 1.14, 0.61, 0.001
+19350104, -0.49, -0.03, 0.50, 0.001
+19350105, 0.66, 0.13, 0.84, 0.001
+19350107, 0.33, 0.11, 1.06, 0.001
+19350108, -0.91, 0.41, 0.35, 0.001
+19350109, -0.24, -0.52, -0.44, 0.001
+19350110, -0.10, 0.02, -0.47, 0.001
+19350111, -2.10, -0.67, -1.15, 0.001
+19350112, -0.92, 0.28, -0.45, 0.001
+19350114, 0.31, 0.35, -0.16, 0.001
+19350115, -2.22, -0.70, -1.29, 0.001
+19350116, 1.38, -0.40, 0.03, 0.001
+19350117, 0.51, 0.89, 0.23, 0.001
+19350118, 0.55, 0.72, 0.07, 0.001
+19350119, 0.55, -0.12, 1.31, 0.001
+19350121, 0.23, 0.28, -0.51, 0.001
+19350122, -0.67, -0.14, -0.55, 0.001
+19350123, 0.05, -0.21, -0.24, 0.001
+19350124, -0.44, 0.00, 0.17, 0.001
+19350125, 0.40, 0.18, -0.37, 0.001
+19350126, -0.25, 0.29, -0.44, 0.001
+19350128, -1.36, -0.82, -0.78, 0.001
+19350129, -0.77, -0.33, -0.61, 0.001
+19350130, 0.47, -0.15, 0.48, 0.001
+19350131, 0.78, -0.08, 0.46, 0.001
+19350201, -0.32, 0.56, -0.43, 0.001
+19350202, 0.27, -0.73, 0.29, 0.001
+19350204, -0.83, 0.79, -0.87, 0.001
+19350205, -0.96, -0.65, -1.07, 0.001
+19350206, -1.08, -0.33, -0.61, 0.001
+19350207, 0.94, -0.65, 0.96, 0.001
+19350208, 1.64, 0.73, -0.27, 0.001
+19350209, 0.41, 0.68, 0.87, 0.001
+19350211, -0.41, 0.04, -0.86, 0.001
+19350213, 0.12, -0.01, -0.31, 0.001
+19350214, 0.04, 0.18, 0.00, 0.001
+19350215, 0.65, 0.63, -0.53, 0.001
+19350216, -0.18, 0.07, -0.86, 0.001
+19350218, 2.90, -1.31, 2.91, 0.001
+19350219, -1.31, 1.47, -1.04, 0.001
+19350220, -1.28, 0.39, -1.01, 0.001
+19350221, -0.02, -0.38, -0.73, 0.001
+19350223, -1.50, 0.75, -1.96, 0.001
+19350225, -0.16, -0.64, -0.55, 0.001
+19350226, -0.94, -0.99, -2.42, 0.001
+19350227, 0.28, -1.42, 1.25, 0.001
+19350228, -0.13, 1.38, -0.27, 0.001
+19350301, 0.49, -0.08, 0.50, 0.000
+19350302, 0.20, 0.55, -0.47, 0.000
+19350304, -0.55, 0.20, -0.87, 0.000
+19350305, -2.52, 0.21, -1.87, 0.000
+19350306, -0.65, -1.21, -0.62, 0.000
+19350307, 1.07, -0.61, 0.29, 0.000
+19350308, -0.14, 0.63, -0.34, 0.000
+19350309, -0.62, 0.55, 0.48, 0.000
+19350311, -1.64, -0.60, -1.74, 0.000
+19350312, -1.78, -0.63, -1.47, 0.000
+19350313, 0.08, -1.98, 0.28, 0.000
+19350314, -1.18, -0.43, -1.05, 0.000
+19350315, 1.70, -0.70, -0.42, 0.000
+19350316, -0.16, 1.25, 0.76, 0.000
+19350318, -1.03, 0.16, -0.84, 0.000
+19350319, 1.35, -0.12, 0.56, 0.000
+19350320, -0.04, 0.67, -0.55, 0.000
+19350321, 1.70, -1.12, 1.78, 0.000
+19350322, 1.14, -0.51, 1.83, 0.000
+19350323, -0.72, 1.44, -0.67, 0.000
+19350325, -0.40, -0.26, -0.51, 0.000
+19350326, -0.83, 0.49, -0.82, 0.000
+19350327, 0.77, -1.26, 1.22, 0.000
+19350328, -0.11, 0.27, -1.01, 0.000
+19350329, 0.07, -0.58, -0.28, 0.000
+19350330, 0.21, -0.01, 0.81, 0.000
+19350401, 0.63, -0.71, 1.49, 0.001
+19350402, -0.36, 0.65, -1.18, 0.001
+19350403, -0.45, -0.44, -0.39, 0.001
+19350404, 1.14, -1.76, 2.27, 0.001
+19350405, 2.06, -0.71, 1.71, 0.001
+19350406, 0.53, 0.33, 1.19, 0.001
+19350408, -0.24, 1.25, -1.07, 0.001
+19350409, 1.68, -0.70, 1.57, 0.001
+19350410, -0.18, 1.75, -1.09, 0.001
+19350411, -0.62, 0.13, -0.71, 0.001
+19350412, 0.97, -1.47, 1.65, 0.001
+19350413, 1.09, 0.03, 0.76, 0.001
+19350415, 0.61, 0.66, -1.04, 0.001
+19350416, 0.21, 0.19, -0.31, 0.001
+19350417, -1.17, 0.64, -0.73, 0.001
+19350418, 1.28, -0.68, -0.09, 0.001
+19350420, 1.98, 0.03, 0.45, 0.001
+19350422, 0.50, 0.81, 0.07, 0.001
+19350423, 0.24, -0.99, 0.62, 0.001
+19350424, -0.75, 0.39, 0.06, 0.001
+19350425, 1.23, -0.99, 0.24, 0.001
+19350426, -0.35, -0.08, 0.16, 0.001
+19350427, -0.71, -0.37, -0.44, 0.001
+19350429, 0.41, -0.06, -0.64, 0.001
+19350430, -0.95, 0.42, -0.36, 0.001
+19350501, -0.37, 0.25, 0.52, 0.001
+19350502, 0.35, -0.36, 0.05, 0.001
+19350503, 1.32, -0.63, -0.06, 0.001
+19350504, 0.73, -0.52, -0.02, 0.001
+19350506, -0.64, 0.41, -0.06, 0.001
+19350507, -0.48, 0.34, -1.91, 0.001
+19350508, 2.48, -1.07, 0.83, 0.001
+19350509, 0.88, 0.34, 0.95, 0.001
+19350510, 0.50, -0.58, 0.22, 0.001
+19350511, 0.40, -0.78, 0.86, 0.001
+19350513, 0.01, 0.40, 0.44, 0.001
+19350514, 0.00, 0.50, -0.44, 0.001
+19350515, 0.49, -0.49, 0.13, 0.001
+19350516, 1.84, 0.62, 1.43, 0.001
+19350517, -0.33, -0.33, 0.23, 0.001
+19350518, -1.05, 0.69, -0.45, 0.001
+19350520, 0.07, 0.00, -0.35, 0.001
+19350521, 0.79, 0.09, -0.29, 0.001
+19350522, 0.56, -0.93, -0.01, 0.001
+19350523, 0.32, 0.68, 0.33, 0.001
+19350524, -0.28, -0.26, 0.89, 0.001
+19350525, -0.42, -0.89, 1.30, 0.001
+19350527, 0.61, -0.79, 0.56, 0.001
+19350528, -2.12, -0.39, -1.02, 0.001
+19350529, -1.33, -0.54, -0.21, 0.001
+19350531, -0.87, 0.15, -0.11, 0.001
+19350601, -0.76, -1.19, -0.03, 0.000
+19350603, 1.40, -0.17, -0.38, 0.000
+19350604, 2.25, -0.82, 0.63, 0.000
+19350605, 0.35, 0.41, -0.41, 0.000
+19350606, -0.58, -0.10, -0.58, 0.000
+19350607, 0.48, -0.62, 0.31, 0.000
+19350608, 0.75, -0.02, 0.21, 0.000
+19350610, 0.46, 0.43, -1.10, 0.000
+19350611, 1.18, -0.58, 1.36, 0.000
+19350612, -0.67, 1.60, -0.60, 0.000
+19350613, 0.47, -0.46, -0.22, 0.000
+19350614, 0.98, -0.39, 0.46, 0.000
+19350615, 0.42, -0.32, 0.75, 0.000
+19350617, -0.26, 0.28, -0.79, 0.000
+19350618, 0.29, -0.10, 0.73, 0.000
+19350619, -0.59, -0.19, -0.62, 0.000
+19350620, -0.75, -0.14, -0.48, 0.000
+19350621, 1.94, -0.29, 0.49, 0.000
+19350622, 1.03, -0.39, 0.00, 0.000
+19350624, -0.47, 0.32, -0.53, 0.000
+19350625, -1.31, 0.14, -0.24, 0.000
+19350626, -1.08, 0.43, -0.32, 0.000
+19350627, -0.29, -0.18, -0.47, 0.000
+19350628, 0.79, -0.36, 0.44, 0.000
+19350629, -0.16, 0.24, 0.08, 0.000
+19350701, 0.45, -0.30, 0.26, 0.001
+19350702, 0.06, -0.18, -0.93, 0.001
+19350703, 0.48, -0.44, 0.61, 0.001
+19350705, 1.01, -0.35, 0.58, 0.001
+19350706, 0.18, 0.46, -0.41, 0.001
+19350708, 1.02, 0.04, -0.61, 0.001
+19350709, -0.19, 0.15, 0.74, 0.001
+19350710, 0.58, 0.07, 0.12, 0.001
+19350711, -1.00, 0.69, -1.09, 0.001
+19350712, 0.69, -0.14, 0.09, 0.001
+19350713, -0.04, 0.36, 0.16, 0.001
+19350715, -0.16, 0.15, 2.04, 0.001
+19350716, 0.10, -0.42, -1.31, 0.001
+19350717, 0.74, 0.50, -0.19, 0.001
+19350718, 0.07, 0.59, 0.04, 0.001
+19350719, -0.82, 0.69, -0.74, 0.001
+19350720, 0.23, -0.24, 0.24, 0.001
+19350722, 1.36, -0.61, 1.42, 0.001
+19350723, 0.02, 0.12, 0.71, 0.001
+19350724, 0.47, -0.01, 0.14, 0.001
+19350725, -0.81, 0.48, -0.25, 0.001
+19350726, 0.55, -0.09, 0.59, 0.001
+19350727, 0.92, -0.31, 1.18, 0.001
+19350729, 1.08, -0.20, 2.40, 0.001
+19350730, -0.57, 0.70, -0.89, 0.001
+19350731, 0.94, -0.34, 1.40, 0.001
+19350801, -0.29, 0.90, -0.03, 0.000
+19350802, -0.60, -0.01, -0.03, 0.000
+19350803, 1.28, -0.93, 1.60, 0.000
+19350805, 0.63, 0.92, 0.91, 0.000
+19350806, -0.17, 0.69, 0.53, 0.000
+19350807, -0.27, -0.29, -0.69, 0.000
+19350808, 0.33, 0.56, -0.20, 0.000
+19350809, 1.80, -0.67, 1.55, 0.000
+19350810, 0.82, -0.11, 1.01, 0.000
+19350812, 0.21, 0.14, 2.62, 0.000
+19350813, 0.60, 0.38, 2.21, 0.000
+19350814, 0.21, 0.52, -0.42, 0.000
+19350815, -0.65, 0.99, -1.29, 0.000
+19350816, 0.80, -0.35, 1.94, 0.000
+19350817, 0.39, 0.40, 1.44, 0.000
+19350819, -1.87, 0.96, -2.29, 0.000
+19350820, -0.02, -0.92, 0.80, 0.000
+19350821, 0.76, 1.37, 0.41, 0.000
+19350822, 0.48, -0.16, 0.58, 0.000
+19350823, -0.01, 1.30, -0.79, 0.000
+19350824, -1.78, -0.60, -2.57, 0.000
+19350826, 1.06, -0.25, 0.66, 0.000
+19350827, -2.40, 0.08, -3.21, 0.000
+19350828, -0.22, -0.32, 0.10, 0.000
+19350829, 0.47, 0.93, 0.71, 0.000
+19350830, 0.29, -0.21, 0.39, 0.000
+19350831, 0.79, 0.38, 0.02, 0.000
+19350903, -0.75, -0.17, -0.41, 0.001
+19350904, 1.12, -0.77, 0.21, 0.001
+19350905, 1.06, 0.71, 1.90, 0.001
+19350906, 1.08, -0.05, 0.47, 0.001
+19350907, 0.71, -0.25, 0.42, 0.001
+19350909, 0.18, -0.11, -0.81, 0.001
+19350910, 0.58, 0.28, -1.12, 0.001
+19350911, 0.44, 0.17, 0.31, 0.001
+19350912, -0.84, -0.05, -0.26, 0.001
+19350913, 0.08, 0.17, 0.32, 0.001
+19350914, -0.16, -0.18, -0.38, 0.001
+19350916, -0.42, -0.31, -0.17, 0.001
+19350917, 0.28, -0.07, -0.35, 0.001
+19350918, 0.72, 0.44, 0.47, 0.001
+19350919, -1.64, 0.06, -0.56, 0.001
+19350920, -2.40, 0.20, -1.65, 0.001
+19350921, 0.21, -0.11, 0.07, 0.001
+19350923, 0.76, 0.18, 0.79, 0.001
+19350924, 1.03, 0.45, 0.23, 0.001
+19350925, 0.39, 0.14, 0.00, 0.001
+19350926, 0.05, -0.07, -0.73, 0.001
+19350927, -0.09, 0.60, -0.42, 0.001
+19350928, 0.13, 0.64, -0.85, 0.001
+19350930, 0.17, -0.33, -1.31, 0.001
+19351001, -0.92, 0.21, -0.60, 0.000
+19351002, -3.05, -0.96, -2.12, 0.000
+19351003, 1.19, 0.10, -0.26, 0.000
+19351004, 0.76, 1.21, 0.77, 0.000
+19351005, 0.71, 0.32, 0.63, 0.000
+19351007, 0.62, -0.32, 1.23, 0.000
+19351008, -0.49, 0.25, -1.03, 0.000
+19351009, 0.29, -0.09, 0.17, 0.000
+19351010, 1.86, 0.98, 0.44, 0.000
+19351011, 0.27, -0.38, -0.27, 0.000
+19351014, 1.06, -0.48, -0.56, 0.000
+19351015, 0.70, -0.39, 0.75, 0.000
+19351016, -0.25, 0.25, -1.33, 0.000
+19351017, -0.35, 0.43, -0.70, 0.000
+19351018, -0.25, 0.57, -0.80, 0.000
+19351019, 1.40, -0.06, -0.33, 0.000
+19351021, 1.19, 0.65, -0.88, 0.000
+19351022, 0.15, -0.78, 2.52, 0.000
+19351023, 0.75, 0.02, -0.21, 0.000
+19351024, 0.19, 0.09, -0.86, 0.000
+19351025, 0.90, 0.89, 0.10, 0.000
+19351026, 0.70, 0.11, 0.23, 0.000
+19351028, -0.45, -0.01, 0.58, 0.000
+19351029, -0.15, -0.18, 0.43, 0.000
+19351030, -0.69, -0.33, -0.30, 0.000
+19351031, 0.78, 0.36, 0.44, 0.000
+19351101, 1.02, 0.67, 0.19, 0.001
+19351102, 0.02, 0.06, 0.27, 0.001
+19351104, 0.28, -0.18, 0.50, 0.001
+19351106, 1.62, -0.66, 0.37, 0.001
+19351107, -0.30, -0.11, -0.55, 0.001
+19351108, 0.60, -0.23, 0.47, 0.001
+19351109, 0.01, -0.13, -0.47, 0.001
+19351112, -0.99, -0.35, -1.01, 0.001
+19351113, 1.20, 0.09, 2.00, 0.001
+19351114, 1.57, 0.02, 1.97, 0.001
+19351115, 0.45, 0.44, 0.16, 0.001
+19351116, 0.63, 0.18, 0.68, 0.001
+19351118, -0.38, 0.71, 0.19, 0.001
+19351119, 1.26, 0.21, 0.70, 0.001
+19351120, -0.91, -0.41, -0.08, 0.001
+19351121, 1.07, 0.98, 2.17, 0.001
+19351122, -1.69, 0.12, -0.82, 0.001
+19351123, 1.64, 1.28, 2.25, 0.001
+19351125, -0.83, 0.79, 0.25, 0.001
+19351126, -1.41, -0.38, 0.00, 0.001
+19351127, 0.89, 0.53, 2.23, 0.001
+19351129, -0.93, 0.16, -0.46, 0.001
+19351130, 0.01, 0.22, 0.19, 0.001
+19351202, -1.24, 0.39, 0.40, 0.001
+19351203, 2.14, -0.62, 1.07, 0.001
+19351204, 0.97, 0.15, 1.94, 0.001
+19351205, 0.05, 0.32, -0.30, 0.001
+19351206, -0.05, 0.05, -0.25, 0.001
+19351207, 0.84, -0.21, 0.81, 0.001
+19351209, 0.29, -0.15, 0.12, 0.001
+19351210, -1.20, 0.07, -1.37, 0.001
+19351211, 0.34, 0.47, -0.13, 0.001
+19351212, -0.93, -0.06, -0.91, 0.001
+19351213, -0.95, 0.04, -0.98, 0.001
+19351214, 0.28, 0.21, 0.09, 0.001
+19351216, -0.87, -0.19, -0.75, 0.001
+19351217, 0.76, -0.19, 0.00, 0.001
+19351218, -0.07, 0.15, 0.37, 0.001
+19351219, -0.55, 0.33, -1.41, 0.001
+19351220, 0.48, -0.93, 0.08, 0.001
+19351221, 0.58, 0.57, 0.43, 0.001
+19351223, 0.24, -0.42, -0.10, 0.001
+19351224, 0.63, -0.68, 0.78, 0.001
+19351226, 0.38, 0.54, 0.22, 0.001
+19351227, -0.09, 0.07, -1.05, 0.001
+19351228, -0.54, -0.68, 0.07, 0.001
+19351230, 1.87, 0.34, 1.17, 0.001
+19351231, 1.21, 0.52, 0.77, 0.001
+19360102, 0.32, 1.37, 0.19, 0.001
+19360103, 0.89, 0.32, 1.45, 0.001
+19360104, -0.28, 0.39, 0.50, 0.001
+19360106, -0.59, -0.51, -0.61, 0.001
+19360107, 1.37, -0.27, 2.13, 0.001
+19360108, 0.78, -0.07, -0.08, 0.001
+19360109, -0.36, 0.51, -0.53, 0.001
+19360110, 0.89, 1.90, 0.49, 0.001
+19360111, -0.21, 0.50, 0.13, 0.001
+19360113, 0.28, -0.73, 1.61, 0.001
+19360114, 0.51, 0.46, 0.55, 0.001
+19360115, -0.55, 0.25, -0.26, 0.001
+19360116, 0.36, 0.74, 1.23, 0.001
+19360117, -0.12, 0.48, -0.84, 0.001
+19360118, -0.77, -0.45, -0.99, 0.001
+19360120, -0.59, 0.11, -0.91, 0.001
+19360121, -0.47, -0.52, -0.28, 0.001
+19360122, 2.00, 0.53, 2.37, 0.001
+19360123, 0.95, 0.02, 1.79, 0.001
+19360124, -0.16, 0.05, -0.91, 0.001
+19360125, 0.36, -0.83, 0.14, 0.001
+19360127, 0.51, 0.34, 0.80, 0.001
+19360128, 0.08, -0.10, 0.27, 0.001
+19360129, 0.75, 0.21, 0.16, 0.001
+19360130, -0.49, 0.06, 0.68, 0.001
+19360131, 1.29, 0.16, 1.03, 0.001
+19360201, -0.18, -0.19, -0.45, 0.001
+19360203, 0.95, -0.10, 0.62, 0.001
+19360204, 0.38, 0.46, -0.11, 0.001
+19360205, -0.20, 0.13, 0.29, 0.001
+19360206, 0.38, 0.57, 0.19, 0.001
+19360207, -0.13, 0.00, 0.37, 0.001
+19360208, 0.11, 0.20, -0.03, 0.001
+19360210, 0.61, -0.28, 1.18, 0.001
+19360211, 0.91, -1.15, 1.42, 0.001
+19360213, 0.47, -0.80, 0.22, 0.001
+19360214, -0.21, 0.20, -0.27, 0.001
+19360215, 0.39, -0.05, 0.68, 0.001
+19360217, -1.15, -0.56, -0.55, 0.001
+19360218, 0.94, 0.98, 1.08, 0.001
+19360219, -0.35, 0.18, -1.25, 0.001
+19360220, 1.17, -0.37, 1.64, 0.001
+19360221, -0.09, 0.60, -0.16, 0.001
+19360224, -0.76, 0.27, -0.20, 0.001
+19360225, -1.83, -0.15, -0.80, 0.001
+19360226, -0.39, 0.50, -0.44, 0.001
+19360227, 2.19, 0.01, 2.33, 0.001
+19360228, -0.28, 0.19, -0.51, 0.001
+19360229, -0.39, 0.27, -0.46, 0.001
+19360302, 0.92, 0.00, 0.92, 0.001
+19360303, 1.30, 0.20, -0.80, 0.001
+19360304, 0.14, -0.03, 0.44, 0.001
+19360305, 0.34, 0.21, 0.01, 0.001
+19360306, 0.36, 0.10, -0.78, 0.001
+19360307, -0.65, 0.33, -0.57, 0.001
+19360309, -2.62, 0.00, -1.53, 0.001
+19360310, 0.99, -0.65, 0.81, 0.001
+19360311, 1.12, 1.33, -0.46, 0.001
+19360312, -2.44, -0.60, -1.16, 0.001
+19360313, -1.89, -1.00, -0.34, 0.001
+19360314, 2.47, 0.77, 1.23, 0.001
+19360316, -0.28, -0.10, 0.62, 0.001
+19360317, 1.73, -0.03, 0.63, 0.001
+19360318, -0.33, -0.22, -0.54, 0.001
+19360319, 0.82, -0.07, -0.48, 0.001
+19360320, -0.25, -0.03, -0.15, 0.001
+19360321, -0.49, 0.55, -0.30, 0.001
+19360323, 0.68, 0.19, 0.76, 0.001
+19360324, -0.49, -0.15, -0.34, 0.001
+19360325, 0.71, -0.06, -0.46, 0.001
+19360326, -0.29, -0.45, 0.83, 0.001
+19360327, -1.34, -0.72, 0.20, 0.001
+19360328, 0.09, 0.72, -0.04, 0.001
+19360330, -0.08, 0.43, -0.08, 0.001
+19360331, 0.59, 0.03, -0.05, 0.001
+19360401, 1.42, -0.06, 0.74, 0.001
+19360402, 0.88, -0.70, 1.03, 0.001
+19360403, -0.26, 0.15, -0.70, 0.001
+19360404, 0.75, -0.64, 0.89, 0.001
+19360406, 0.43, -0.58, 0.86, 0.001
+19360407, -0.42, -0.99, -0.58, 0.001
+19360408, -0.04, -0.80, 0.79, 0.001
+19360409, -0.37, -0.65, 0.72, 0.001
+19360411, 0.29, 0.25, 0.48, 0.001
+19360413, -0.19, 0.22, 0.66, 0.001
+19360414, -1.74, -0.35, -0.98, 0.001
+19360415, 0.82, 0.33, -0.19, 0.001
+19360416, -0.40, -0.56, 0.43, 0.001
+19360417, -0.56, -0.04, -0.83, 0.001
+19360418, -0.85, -0.66, -0.16, 0.001
+19360420, -2.17, -0.65, -1.18, 0.001
+19360421, -0.22, -0.49, -0.59, 0.001
+19360422, 1.35, 0.61, 1.12, 0.001
+19360423, -2.70, -0.32, -1.39, 0.001
+19360424, 0.06, 0.00, -0.40, 0.001
+19360425, 0.61, 0.34, -0.17, 0.001
+19360427, -3.69, -1.54, -2.57, 0.001
+19360428, -0.21, 0.44, 1.02, 0.001
+19360429, -2.40, 0.89, -2.39, 0.001
+19360430, 1.37, -0.89, 1.41, 0.001
+19360501, 0.74, 1.05, -0.42, 0.001
+19360502, -0.43, 0.07, 0.00, 0.001
+19360504, 0.26, 0.14, -0.05, 0.001
+19360505, 1.22, 0.39, 0.32, 0.001
+19360506, 1.16, -0.33, 1.26, 0.001
+19360507, -1.75, 0.13, -0.89, 0.001
+19360508, -0.07, 0.07, -0.90, 0.001
+19360509, 0.64, 0.01, 0.37, 0.001
+19360511, -0.80, 0.27, -0.81, 0.001
+19360512, -0.04, -0.29, -0.03, 0.001
+19360513, 0.86, -0.45, 0.77, 0.001
+19360514, 2.40, 0.45, 1.02, 0.001
+19360515, 0.08, 0.14, -0.09, 0.001
+19360516, -0.02, -0.27, 0.32, 0.001
+19360518, -0.40, 0.17, -0.65, 0.001
+19360519, -2.18, -0.41, -1.13, 0.001
+19360520, 0.68, -0.28, -0.10, 0.001
+19360521, -0.21, 0.23, 0.36, 0.001
+19360522, 0.81, -0.27, 0.86, 0.001
+19360523, 0.77, 0.15, 0.71, 0.001
+19360525, 0.12, -0.51, 0.00, 0.001
+19360526, 1.26, -0.10, 0.88, 0.001
+19360527, 0.01, 0.39, 0.86, 0.001
+19360528, -0.54, 0.09, -0.95, 0.001
+19360529, 0.64, -0.08, 0.88, 0.001
+19360601, -0.04, -0.15, -0.21, 0.001
+19360602, -0.19, -0.39, -0.24, 0.001
+19360603, -0.20, 0.36, -0.77, 0.001
+19360604, -1.21, 0.18, -0.47, 0.001
+19360605, -0.11, -0.48, -0.38, 0.001
+19360606, 0.45, -0.05, 0.75, 0.001
+19360608, 0.91, -0.16, 0.17, 0.001
+19360609, 0.91, -0.21, 0.44, 0.001
+19360610, 0.45, 0.05, 0.16, 0.001
+19360611, 1.14, -0.63, 0.18, 0.001
+19360612, -0.90, 0.42, -0.33, 0.001
+19360613, 0.58, -0.79, 0.11, 0.001
+19360615, 0.07, 0.35, -0.48, 0.001
+19360616, 0.98, -0.84, 1.23, 0.001
+19360617, -0.18, 0.33, -0.02, 0.001
+19360618, 0.26, -0.44, 0.20, 0.001
+19360619, -0.60, 0.11, -1.03, 0.001
+19360620, 0.35, -0.18, 0.12, 0.001
+19360622, 0.94, -0.16, 0.64, 0.001
+19360623, -0.35, -0.10, -0.26, 0.001
+19360624, 0.78, 0.13, 0.31, 0.001
+19360625, -0.86, -0.04, -0.49, 0.001
+19360626, -0.41, -0.09, -0.10, 0.001
+19360627, 0.11, -0.22, 0.09, 0.001
+19360629, -0.34, 0.09, -0.64, 0.001
+19360630, -0.11, -0.40, 0.02, 0.001
+19360701, 0.26, -0.67, -0.10, 0.001
+19360702, -0.15, -0.18, -0.04, 0.001
+19360703, 0.69, 0.06, -0.13, 0.001
+19360706, -0.49, 0.27, -0.47, 0.001
+19360707, -0.81, -0.15, -0.19, 0.001
+19360708, 0.60, -0.26, 0.66, 0.001
+19360709, 1.17, 0.34, 0.33, 0.001
+19360710, 1.73, -0.07, 0.77, 0.001
+19360711, 0.53, 0.58, 0.29, 0.001
+19360713, 0.27, 0.25, 0.24, 0.001
+19360714, 1.05, 0.04, 0.20, 0.001
+19360715, -0.03, -0.21, 0.80, 0.001
+19360716, 0.08, 0.31, -0.03, 0.001
+19360717, 0.31, 0.00, -0.12, 0.001
+19360718, 0.54, -0.10, 0.22, 0.001
+19360720, 0.36, -0.30, 0.09, 0.001
+19360721, 0.50, 0.09, -0.44, 0.001
+19360722, -0.43, -0.23, -0.14, 0.001
+19360723, 0.33, 0.64, 0.75, 0.001
+19360724, -0.21, 0.49, 0.27, 0.001
+19360725, 0.62, -0.20, -0.17, 0.001
+19360727, 0.77, -0.66, 0.62, 0.001
+19360728, -0.09, -0.33, -0.08, 0.001
+19360729, -0.70, 0.61, -0.39, 0.001
+19360730, 0.41, 0.27, -0.26, 0.001
+19360731, -0.76, 0.58, -0.11, 0.001
+19360801, 0.03, -0.12, 0.13, 0.001
+19360803, 0.23, -0.19, -0.58, 0.001
+19360804, -0.01, -0.12, -0.08, 0.001
+19360805, -0.46, 0.28, -0.06, 0.001
+19360806, 0.36, 0.11, 0.25, 0.001
+19360807, 1.17, 0.03, 0.88, 0.001
+19360808, 0.70, -0.55, 0.75, 0.001
+19360810, -0.21, -0.53, 0.10, 0.001
+19360811, -0.56, 0.22, -0.50, 0.001
+19360812, 0.46, 0.02, 0.90, 0.001
+19360813, -0.30, 0.30, 0.48, 0.001
+19360814, -1.12, 0.29, -0.05, 0.001
+19360815, 0.15, 0.07, 0.08, 0.001
+19360817, -0.58, 0.45, -0.38, 0.001
+19360818, 0.22, -0.11, -0.12, 0.001
+19360819, 0.48, 0.20, 0.77, 0.001
+19360820, -0.50, 0.57, -0.80, 0.001
+19360821, -2.67, -0.09, -1.14, 0.001
+19360822, 0.87, -0.09, 0.76, 0.001
+19360824, 0.76, -0.43, 0.42, 0.001
+19360825, 0.35, 0.31, 0.11, 0.001
+19360826, -0.64, -0.08, -0.20, 0.001
+19360827, 1.68, -0.31, 0.89, 0.001
+19360828, 0.35, -0.03, 0.82, 0.001
+19360829, 0.16, 0.35, 1.08, 0.001
+19360831, 0.18, 0.10, -0.56, 0.001
+19360901, -0.17, 0.31, 0.42, 0.000
+19360902, 0.35, 0.38, 0.10, 0.000
+19360903, -0.21, 0.28, -0.24, 0.000
+19360904, 0.61, 0.05, 0.40, 0.000
+19360905, 0.57, 0.32, 0.39, 0.000
+19360908, 0.89, -0.63, 0.48, 0.000
+19360909, -0.51, 0.56, -0.34, 0.000
+19360910, 0.08, 0.40, -0.08, 0.000
+19360911, -0.12, -0.03, -0.04, 0.000
+19360912, -0.27, 0.16, -0.18, 0.000
+19360914, -0.55, 0.07, -0.44, 0.000
+19360915, -0.21, -0.15, 0.21, 0.000
+19360916, -0.98, 0.50, -0.37, 0.000
+19360917, 0.70, -0.43, 0.22, 0.000
+19360918, 0.90, 0.39, 0.45, 0.000
+19360919, 0.64, 0.07, 0.65, 0.000
+19360921, 0.16, 0.32, -0.28, 0.000
+19360922, 0.22, -0.23, -0.24, 0.000
+19360923, -0.31, -0.05, -0.55, 0.000
+19360924, 0.06, -0.20, 0.38, 0.000
+19360925, -1.44, -0.05, -0.30, 0.000
+19360926, 0.93, 0.32, 0.53, 0.000
+19360928, 0.32, 0.33, -0.01, 0.000
+19360929, -0.18, 0.16, -0.36, 0.000
+19360930, -0.44, 0.19, 0.12, 0.000
+19361001, 0.13, 0.55, -0.16, 0.001
+19361002, 1.75, 0.24, 1.27, 0.001
+19361003, 0.93, -0.18, 0.37, 0.001
+19361005, 0.12, 0.06, 0.12, 0.001
+19361006, 0.67, -0.29, -0.22, 0.001
+19361007, 0.29, -0.76, 0.38, 0.001
+19361008, 0.49, -0.11, 0.44, 0.001
+19361009, 0.38, 0.46, -0.43, 0.001
+19361010, 0.51, 0.02, -0.05, 0.001
+19361013, -0.16, -0.60, 0.34, 0.001
+19361014, -0.27, 0.02, -0.12, 0.001
+19361015, -0.11, 0.16, 0.40, 0.001
+19361016, 1.00, 0.24, 0.62, 0.001
+19361017, 0.45, 0.20, -0.04, 0.001
+19361019, 0.13, -0.27, 0.04, 0.001
+19361020, -0.13, -0.87, -0.33, 0.001
+19361021, 0.36, 0.00, 0.43, 0.001
+19361022, -0.68, -0.21, -0.61, 0.001
+19361023, 0.36, 0.14, -0.42, 0.001
+19361024, 0.11, 0.14, 0.04, 0.001
+19361026, -2.26, -0.03, -0.49, 0.001
+19361027, 1.45, -0.05, 0.30, 0.001
+19361028, 0.15, 0.20, -0.03, 0.001
+19361029, 1.20, -0.47, 0.71, 0.001
+19361030, 0.15, -0.58, 0.01, 0.001
+19361031, 0.04, -0.20, -0.14, 0.001
+19361102, -0.30, 0.04, 0.21, 0.000
+19361104, 1.66, 1.07, -0.43, 0.000
+19361105, 1.11, 0.38, 0.10, 0.000
+19361106, -0.54, 1.04, -0.71, 0.000
+19361107, 1.26, 0.13, 0.26, 0.000
+19361109, 0.40, 0.87, 0.15, 0.000
+19361110, -0.24, 0.50, -0.23, 0.000
+19361112, -0.83, 0.44, -1.66, 0.000
+19361113, -0.81, 0.31, -1.04, 0.000
+19361114, -0.45, 0.88, -0.04, 0.000
+19361116, 1.38, 0.16, 0.85, 0.000
+19361117, 1.36, 0.59, 0.67, 0.000
+19361118, -0.39, -0.08, -0.33, 0.000
+19361119, -0.71, 0.06, -0.47, 0.000
+19361120, -0.90, -0.26, -0.35, 0.000
+19361121, 0.75, 0.20, 0.54, 0.000
+19361123, -2.08, -0.14, -0.46, 0.000
+19361124, 1.55, 0.09, 0.37, 0.000
+19361125, -0.21, 0.64, 0.22, 0.000
+19361127, 1.54, 0.54, 1.60, 0.000
+19361128, 0.20, 0.55, -0.01, 0.000
+19361130, -0.37, 0.44, -0.15, 0.000
+19361201, -0.60, 0.65, -0.51, 0.000
+19361202, -0.88, 0.17, 0.30, 0.000
+19361203, 0.51, -0.13, 0.63, 0.000
+19361204, 0.06, -0.27, -0.43, 0.000
+19361205, 0.13, 0.42, 0.08, 0.000
+19361207, -0.66, 0.35, -0.27, 0.000
+19361208, 0.16, 0.20, 0.47, 0.000
+19361209, 0.41, 0.30, 0.89, 0.000
+19361210, 0.77, 0.60, 0.77, 0.000
+19361211, -0.24, 1.05, -0.31, 0.000
+19361212, 0.13, 0.15, 0.44, 0.000
+19361214, 0.77, -0.26, 0.34, 0.000
+19361215, -0.10, -0.30, 0.09, 0.000
+19361216, -0.19, -0.52, -0.16, 0.000
+19361217, -0.45, 0.43, -0.18, 0.000
+19361218, -0.96, -0.49, -0.14, 0.000
+19361219, -0.92, -0.43, -0.15, 0.000
+19361221, -1.17, 0.77, -0.12, 0.000
+19361222, 1.13, 0.10, 0.56, 0.000
+19361223, 1.01, 0.31, -0.26, 0.000
+19361224, 0.29, 0.35, 0.23, 0.000
+19361228, -0.67, -0.61, 0.38, 0.000
+19361229, 0.22, -0.44, 0.84, 0.000
+19361230, 1.82, 0.33, 0.65, 0.000
+19361231, -0.29, 0.71, -0.38, 0.000
+19370102, -0.83, 0.19, -0.06, 0.000
+19370104, -0.49, 0.20, 0.49, 0.000
+19370105, 0.78, 0.03, 0.41, 0.000
+19370106, 0.15, -0.11, 0.26, 0.000
+19370107, 1.82, 0.40, 0.50, 0.000
+19370108, 0.38, 0.69, 0.56, 0.000
+19370109, -0.05, 0.54, 0.14, 0.000
+19370111, 0.49, 0.39, 0.98, 0.000
+19370112, 0.02, -0.04, -0.25, 0.000
+19370113, 0.17, 0.31, 0.25, 0.000
+19370114, 0.10, 0.43, -1.14, 0.000
+19370115, 0.30, 0.30, 0.27, 0.000
+19370116, 0.64, 0.41, 0.13, 0.000
+19370118, -0.37, -0.05, -0.28, 0.000
+19370119, -0.73, -0.37, -0.23, 0.000
+19370120, 1.06, 0.60, 0.73, 0.000
+19370121, 0.59, 0.05, 0.09, 0.000
+19370122, -0.48, 0.44, 0.35, 0.000
+19370123, 0.23, -0.10, -0.15, 0.000
+19370125, -0.64, -0.30, -1.02, 0.000
+19370126, -1.39, -0.62, -0.53, 0.000
+19370127, 0.60, 0.49, 0.24, 0.000
+19370128, 0.03, 0.23, 0.24, 0.000
+19370129, 0.57, 0.10, 0.34, 0.000
+19370130, 0.41, 0.04, 0.34, 0.000
+19370201, 0.27, 0.14, 0.08, 0.001
+19370202, 0.68, -0.59, 0.31, 0.001
+19370203, 0.59, -0.04, 1.13, 0.001
+19370204, 0.09, 0.21, -0.30, 0.001
+19370205, -1.37, -0.38, -0.50, 0.001
+19370206, 0.87, 0.86, 0.84, 0.001
+19370208, 0.48, 0.54, 0.65, 0.001
+19370209, -0.32, 0.04, -0.57, 0.001
+19370210, 0.72, -0.02, 1.19, 0.001
+19370211, 0.45, -0.70, -0.40, 0.001
+19370213, -0.17, 0.37, -0.51, 0.001
+19370215, -0.71, 0.23, -0.35, 0.001
+19370216, 0.10, -0.11, 0.47, 0.001
+19370217, -0.13, 0.08, 0.57, 0.001
+19370218, 0.29, -0.09, 0.66, 0.001
+19370219, 0.50, -0.19, 1.03, 0.001
+19370220, -0.13, -0.09, 0.50, 0.001
+19370223, -1.79, -0.34, -0.62, 0.001
+19370224, 0.31, 0.33, 0.10, 0.001
+19370225, -0.15, 0.65, -0.15, 0.001
+19370226, 0.27, 0.21, 0.25, 0.001
+19370227, 0.31, -0.27, 0.08, 0.001
+19370301, 0.16, 0.02, 0.55, 0.001
+19370302, 0.95, -0.11, 0.21, 0.001
+19370303, 1.11, -0.63, 1.56, 0.001
+19370304, -0.60, -0.17, -0.31, 0.001
+19370305, 0.91, -0.26, 1.21, 0.001
+19370306, 0.33, -0.06, 0.67, 0.001
+19370308, -0.42, -0.14, 0.35, 0.001
+19370309, 0.12, -0.36, 0.34, 0.001
+19370310, 0.54, -0.11, 0.54, 0.001
+19370311, -1.00, -0.36, -0.45, 0.001
+19370312, -0.35, 0.59, 0.35, 0.001
+19370313, -0.14, 0.38, -0.19, 0.001
+19370315, -0.61, 1.51, 1.61, 0.001
+19370316, 0.43, 0.33, 1.10, 0.001
+19370317, -0.36, -0.01, 1.56, 0.001
+19370318, -1.91, -0.42, -1.23, 0.001
+19370319, -0.06, 0.33, -0.01, 0.001
+19370320, -0.20, 0.01, 0.11, 0.001
+19370322, -2.66, -0.65, -1.75, 0.001
+19370323, 1.30, -0.05, 1.41, 0.001
+19370324, 0.89, 0.17, 0.17, 0.001
+19370325, -0.07, 0.19, -0.42, 0.001
+19370327, 0.35, 0.05, 0.53, 0.001
+19370329, -0.44, 0.17, 0.00, 0.001
+19370330, 1.34, -0.82, 1.24, 0.001
+19370331, 0.21, 0.20, -0.43, 0.001
+19370401, -0.88, -0.01, -0.66, 0.001
+19370402, -1.20, -0.70, -0.93, 0.001
+19370403, 0.39, 0.26, 0.45, 0.001
+19370405, 0.40, -0.10, 0.10, 0.001
+19370406, -0.65, 0.11, -0.52, 0.001
+19370407, -2.97, -0.70, -1.14, 0.001
+19370408, 0.23, -0.32, 0.39, 0.001
+19370409, 0.41, 0.53, -0.01, 0.001
+19370410, -0.13, 0.47, -0.19, 0.001
+19370412, 0.50, -0.44, 0.33, 0.001
+19370413, 1.11, 0.63, 0.05, 0.001
+19370414, 0.15, 0.11, 0.05, 0.001
+19370415, -0.35, -0.09, 0.04, 0.001
+19370416, -0.43, -0.26, -0.29, 0.001
+19370417, -0.27, 0.40, -0.63, 0.001
+19370419, 0.41, -0.39, 0.57, 0.001
+19370420, 0.28, -0.20, 0.21, 0.001
+19370421, 1.07, -0.55, -0.44, 0.001
+19370422, -1.18, 0.32, -0.28, 0.001
+19370423, -1.49, 0.09, -0.03, 0.001
+19370424, -0.88, -0.72, -0.12, 0.001
+19370426, -3.18, -1.04, -1.47, 0.001
+19370427, 1.28, -0.81, 0.42, 0.001
+19370428, -2.91, -1.48, -1.20, 0.001
+19370429, 0.30, 0.51, -0.32, 0.001
+19370430, 2.62, 0.39, 1.90, 0.001
+19370501, 0.18, 0.62, -0.22, 0.003
+19370503, 0.27, -0.20, -0.21, 0.003
+19370504, 1.26, -0.13, -0.08, 0.003
+19370505, -0.74, 0.20, -0.10, 0.003
+19370506, 0.48, -0.65, 1.06, 0.003
+19370507, -0.14, 0.70, 0.00, 0.003
+19370508, -0.26, 0.00, -0.41, 0.003
+19370510, -1.83, 0.21, -1.20, 0.003
+19370511, -0.09, -0.29, -0.29, 0.003
+19370512, -0.29, -0.04, 0.12, 0.003
+19370513, -2.97, -1.89, -1.11, 0.003
+19370514, 0.97, 0.10, 0.47, 0.003
+19370515, 0.26, 0.16, 0.03, 0.003
+19370517, -1.14, 0.37, -0.74, 0.003
+19370518, 1.01, -0.66, 0.71, 0.003
+19370519, -0.05, 0.51, -0.58, 0.003
+19370520, 2.17, 0.01, 0.41, 0.003
+19370521, 0.27, 0.33, -0.44, 0.003
+19370522, 1.02, -0.01, 0.65, 0.003
+19370524, 0.03, -0.13, -0.03, 0.003
+19370525, -1.08, 0.42, -0.98, 0.003
+19370526, -0.20, -0.09, -0.06, 0.003
+19370527, 0.05, -0.17, -0.40, 0.003
+19370528, 0.12, -0.03, -0.01, 0.003
+19370601, -1.35, -1.10, 0.04, 0.001
+19370602, 0.64, -0.22, 0.09, 0.001
+19370603, 0.14, -0.31, -0.44, 0.001
+19370604, 1.02, 0.44, 0.12, 0.001
+19370605, 0.15, 0.15, 0.08, 0.001
+19370607, -0.50, 0.00, -0.36, 0.001
+19370608, 0.33, -0.10, 0.30, 0.001
+19370609, -0.55, 0.35, 0.06, 0.001
+19370610, -0.39, -0.23, -0.02, 0.001
+19370611, -1.29, -0.28, -0.47, 0.001
+19370612, -0.80, -0.31, -0.24, 0.001
+19370614, -2.42, -0.74, -0.93, 0.001
+19370615, 1.01, 0.26, -0.09, 0.001
+19370616, -0.93, -0.31, -0.36, 0.001
+19370617, 0.89, -1.18, -0.20, 0.001
+19370618, 0.75, 0.32, 0.12, 0.001
+19370619, -0.18, 0.22, -0.20, 0.001
+19370621, -0.72, -0.06, -0.74, 0.001
+19370622, -0.18, 0.53, -0.67, 0.001
+19370623, 0.64, -0.33, 0.51, 0.001
+19370624, 0.43, -0.12, 0.28, 0.001
+19370625, -0.47, 0.12, -0.26, 0.001
+19370626, -0.90, 0.14, -0.55, 0.001
+19370628, -1.52, -0.65, -0.29, 0.001
+19370629, 0.22, -0.18, 0.35, 0.001
+19370630, 1.75, -0.42, 0.73, 0.001
+19370701, 0.64, 0.34, 0.28, 0.001
+19370702, 1.18, 0.45, 0.73, 0.001
+19370706, 2.96, 0.26, 1.04, 0.001
+19370707, 0.87, 1.33, 0.18, 0.001
+19370708, 0.23, 0.38, 0.98, 0.001
+19370709, -0.20, 0.41, -0.01, 0.001
+19370710, -0.26, 0.14, -0.26, 0.001
+19370712, 1.32, 0.02, 0.41, 0.001
+19370713, -0.49, -0.19, -0.45, 0.001
+19370714, 0.14, -0.32, -0.71, 0.001
+19370715, 0.42, -0.56, -0.08, 0.001
+19370716, -0.25, -0.20, -0.27, 0.001
+19370717, 0.09, -0.04, -0.14, 0.001
+19370719, 1.27, -0.37, 0.08, 0.001
+19370720, 0.91, -0.58, 0.70, 0.001
+19370721, -0.57, 0.45, -0.75, 0.001
+19370722, 0.31, 0.14, 0.19, 0.001
+19370723, 0.22, -0.17, -0.48, 0.001
+19370724, 0.65, -0.56, 0.29, 0.001
+19370726, -0.18, 0.42, -0.04, 0.001
+19370727, -0.20, -0.10, -0.19, 0.001
+19370728, -1.20, 0.26, -0.39, 0.001
+19370729, -0.27, 0.00, -0.23, 0.001
+19370730, 0.27, -0.87, -0.40, 0.001
+19370731, 0.79, 0.16, 0.37, 0.001
+19370802, 0.18, 0.26, 0.23, 0.001
+19370803, -0.55, 0.33, -0.49, 0.001
+19370804, 0.40, -0.10, 0.91, 0.001
+19370805, -0.41, 0.37, -0.07, 0.001
+19370806, -0.34, -0.10, -0.58, 0.001
+19370807, 0.68, -0.40, 0.35, 0.001
+19370809, 0.31, 0.04, 0.08, 0.001
+19370810, -0.18, -0.20, -0.29, 0.001
+19370811, -0.05, -0.06, -0.57, 0.001
+19370812, 0.49, -0.42, 0.58, 0.001
+19370813, 0.80, -0.01, -0.32, 0.001
+19370814, 0.27, 0.26, -0.07, 0.001
+19370816, -0.64, 0.21, -0.68, 0.001
+19370817, -0.34, 0.19, -0.16, 0.001
+19370818, -0.82, 0.48, -0.15, 0.001
+19370819, -1.21, -0.24, -0.05, 0.001
+19370820, -1.09, -0.13, -0.35, 0.001
+19370821, 0.48, 0.08, 0.44, 0.001
+19370823, -0.78, 0.57, -0.15, 0.001
+19370824, 0.61, -0.69, 0.19, 0.001
+19370825, -0.46, 0.14, -0.56, 0.001
+19370826, -1.73, -0.05, -0.34, 0.001
+19370827, -1.42, -0.20, 0.18, 0.001
+19370828, 0.25, 0.18, -0.14, 0.001
+19370830, 0.83, -0.72, 0.25, 0.001
+19370831, -0.23, 0.66, -0.59, 0.001
+19370901, -2.35, 0.10, -0.67, 0.001
+19370902, -1.25, -0.44, 0.05, 0.001
+19370903, 0.61, -0.22, 0.47, 0.001
+19370904, 0.44, -0.42, 0.15, 0.001
+19370907, -5.49, -1.70, -1.78, 0.001
+19370908, -0.98, -2.76, -0.84, 0.001
+19370909, 2.16, -0.19, 1.35, 0.001
+19370910, -4.98, -0.97, -1.01, 0.001
+19370911, 0.94, -1.69, 0.28, 0.001
+19370913, -1.51, -1.12, -0.60, 0.001
+19370914, 3.56, 2.03, 0.66, 0.001
+19370915, 0.12, 1.57, -0.09, 0.001
+19370916, 1.53, -0.53, 1.04, 0.001
+19370917, -1.90, 0.46, -1.56, 0.001
+19370918, -2.66, 0.96, -0.04, 0.001
+19370920, -0.98, -1.37, -0.22, 0.001
+19370921, 0.75, -0.24, -0.12, 0.001
+19370922, 0.31, -0.05, 0.41, 0.001
+19370923, -2.11, 0.30, -0.92, 0.001
+19370924, -4.41, -1.94, -0.41, 0.001
+19370925, -0.89, -2.09, -0.71, 0.001
+19370927, 3.34, -1.45, 1.08, 0.001
+19370928, 1.42, 1.95, -0.57, 0.001
+19370929, 0.42, 0.29, -1.24, 0.001
+19370930, 0.07, 1.59, 0.30, 0.001
+19371001, -0.36, 0.11, -0.06, 0.001
+19371002, 0.39, 0.19, 0.62, 0.001
+19371004, -1.01, 0.56, -0.93, 0.001
+19371005, -5.24, -0.57, 0.44, 0.001
+19371006, 2.01, -1.95, -0.56, 0.001
+19371007, -0.20, 1.90, -0.78, 0.001
+19371008, -2.20, 0.05, -0.69, 0.001
+19371009, -0.05, -1.01, -0.04, 0.001
+19371011, -3.87, -0.69, -2.40, 0.001
+19371013, -0.91, -3.73, 0.26, 0.001
+19371014, -1.47, -0.01, -0.55, 0.001
+19371015, -1.43, -2.08, 0.41, 0.001
+19371016, -0.02, -1.99, 0.32, 0.001
+19371018, -8.20, -0.63, 0.28, 0.001
+19371019, 0.47, -7.04, -2.43, 0.001
+19371020, 8.67, 8.21, 3.10, 0.001
+19371021, 2.66, 4.60, 2.56, 0.001
+19371022, -2.17, 2.16, -0.21, 0.001
+19371023, -4.32, -0.02, -2.18, 0.001
+19371025, 5.26, -0.04, -0.50, 0.001
+19371026, -1.29, 1.44, -0.30, 0.001
+19371027, -0.30, -0.72, 0.26, 0.001
+19371028, 2.50, 2.10, 1.27, 0.001
+19371029, 2.59, 0.94, 1.11, 0.001
+19371030, -0.01, 0.51, 0.21, 0.001
+19371101, -1.96, 0.12, -0.13, 0.001
+19371103, -4.18, -0.32, -1.57, 0.001
+19371104, -0.78, -0.29, 0.23, 0.001
+19371105, 0.20, 0.57, -0.03, 0.001
+19371106, -2.55, -0.18, -0.59, 0.001
+19371108, -0.44, -1.38, 0.50, 0.001
+19371109, 1.64, -0.02, 1.45, 0.001
+19371110, 5.00, -0.93, 0.60, 0.001
+19371112, 0.23, 1.45, -0.31, 0.001
+19371113, 0.12, -0.30, 0.42, 0.001
+19371115, -2.42, 0.79, -0.41, 0.001
+19371116, -0.88, -1.29, 0.30, 0.001
+19371117, -0.47, 0.59, -0.51, 0.001
+19371118, -1.83, -0.37, -0.46, 0.001
+19371119, -5.15, -1.05, -0.10, 0.001
+19371120, 1.98, -1.31, 0.72, 0.001
+19371122, -4.08, 1.98, -0.24, 0.001
+19371123, 0.57, -2.20, 0.83, 0.001
+19371124, -1.70, 1.13, -0.90, 0.001
+19371126, 3.96, -1.15, 1.67, 0.001
+19371127, 4.60, 0.09, -0.28, 0.001
+19371129, -1.41, 0.10, -0.83, 0.001
+19371130, 1.65, -0.19, 0.21, 0.001
+19371201, -1.13, -0.37, -1.18, 0.000
+19371202, 1.62, -1.61, 0.98, 0.000
+19371203, 1.64, 0.50, -0.03, 0.000
+19371204, 0.16, 0.05, -0.27, 0.000
+19371206, -1.40, 0.10, -0.80, 0.000
+19371207, 1.15, -1.28, 0.02, 0.000
+19371208, 1.02, 0.44, 0.97, 0.000
+19371209, -1.43, 0.27, -0.54, 0.000
+19371210, -0.93, -0.16, -0.11, 0.000
+19371211, 0.02, -0.28, 0.46, 0.000
+19371213, -2.74, 0.50, -0.63, 0.000
+19371214, 0.26, -0.93, 0.19, 0.000
+19371215, 0.58, -0.82, 0.19, 0.000
+19371216, 1.20, -0.92, -0.09, 0.000
+19371217, -0.56, -0.50, -0.29, 0.000
+19371218, 1.10, -0.98, 0.57, 0.000
+19371220, 1.39, -0.61, 0.38, 0.000
+19371221, 0.31, -0.74, 0.04, 0.000
+19371222, -1.26, 0.18, -0.60, 0.000
+19371223, -0.72, -1.02, -0.23, 0.000
+19371224, -0.26, 0.26, 0.21, 0.000
+19371227, -2.88, -0.65, -0.27, 0.000
+19371228, -3.28, -0.75, -0.03, 0.000
+19371229, 0.53, -2.09, 0.29, 0.000
+19371230, 1.70, 1.78, 0.18, 0.000
+19371231, -0.24, 1.03, 0.34, 0.000
+19380103, 0.17, 2.08, -0.15, 0.000
+19380104, 3.19, -1.28, -0.04, 0.000
+19380105, -0.06, 1.91, -0.69, 0.000
+19380106, 3.83, 0.05, 0.31, 0.000
+19380107, -0.47, 1.89, 0.20, 0.000
+19380108, 2.26, 0.63, 0.50, 0.000
+19380110, 1.88, 1.63, 0.06, 0.000
+19380111, 0.70, 0.52, -0.19, 0.000
+19380112, -0.66, 0.97, 0.04, 0.000
+19380113, -1.13, -0.12, -0.32, 0.000
+19380114, 0.04, -0.71, 0.03, 0.000
+19380115, 1.71, -0.02, 0.08, 0.000
+19380117, -1.79, 0.36, -0.77, 0.000
+19380118, -0.83, -0.22, -0.41, 0.000
+19380119, -1.09, -0.66, -0.40, 0.000
+19380120, 1.49, -0.07, 0.37, 0.000
+19380121, -1.37, 0.66, -0.24, 0.000
+19380122, -0.55, -0.29, -0.44, 0.000
+19380124, -0.16, -0.06, 0.97, 0.000
+19380125, -1.17, -0.12, -0.67, 0.000
+19380126, -3.60, -1.37, 0.17, 0.000
+19380127, -1.42, -0.13, -0.61, 0.000
+19380128, -1.11, -0.37, -0.11, 0.000
+19380129, -0.14, 1.02, 0.30, 0.000
+19380131, 1.06, -1.34, 0.64, 0.000
+19380201, 1.57, -0.06, 0.15, 0.000
+19380202, -1.10, 0.86, -0.68, 0.000
+19380203, -3.76, -0.20, 0.73, 0.000
+19380204, 1.63, -1.11, -0.57, 0.000
+19380205, 1.73, 0.63, 0.28, 0.000
+19380207, -1.16, 1.30, -0.43, 0.000
+19380208, 3.11, -1.70, 0.34, 0.000
+19380209, -0.16, 0.84, -0.34, 0.000
+19380210, 0.67, -0.09, 0.00, 0.000
+19380211, -0.38, -0.26, 0.17, 0.000
+19380214, 0.80, -0.69, 0.03, 0.000
+19380215, -0.76, 0.98, -0.79, 0.000
+19380216, -0.32, 0.09, 0.12, 0.000
+19380217, 2.36, -0.26, -0.10, 0.000
+19380218, -1.10, 0.59, -0.30, 0.000
+19380219, 1.14, -0.88, -0.36, 0.000
+19380221, 1.47, -0.57, 0.36, 0.000
+19380223, 2.44, -0.26, 0.43, 0.000
+19380224, -1.05, 0.41, -0.37, 0.000
+19380225, 0.56, 0.33, 0.35, 0.000
+19380226, -0.40, -0.14, -0.35, 0.000
+19380228, -1.31, 0.43, -0.49, 0.000
+19380301, 0.79, -0.62, 0.08, 0.000
+19380302, -0.82, 0.43, -0.64, 0.000
+19380303, -0.78, 0.09, -0.17, 0.000
+19380304, -0.71, 0.30, -0.70, 0.000
+19380305, -0.25, -0.46, 0.26, 0.000
+19380307, -1.73, 0.47, -0.47, 0.000
+19380308, -0.52, -1.23, -0.14, 0.000
+19380309, 0.02, 0.27, -0.14, 0.000
+19380310, -0.91, 0.56, -0.46, 0.000
+19380311, -1.72, 0.01, -0.09, 0.000
+19380312, 0.26, -0.87, 0.07, 0.000
+19380314, 1.28, -0.25, -0.26, 0.000
+19380315, 2.46, -0.11, -0.49, 0.000
+19380316, -3.63, 0.62, -0.45, 0.000
+19380317, -0.80, -0.22, -0.11, 0.000
+19380318, -3.36, -1.54, -0.63, 0.000
+19380319, 1.94, -0.57, 0.38, 0.000
+19380321, -0.11, 0.70, -0.12, 0.000
+19380322, -2.69, -0.40, -0.12, 0.000
+19380323, -2.29, -1.76, -0.34, 0.000
+19380324, 0.31, -0.29, 0.42, 0.000
+19380325, -5.11, -0.42, -0.81, 0.000
+19380326, -2.01, -0.87, -0.41, 0.000
+19380328, 0.77, -0.45, 0.43, 0.000
+19380329, -5.11, 1.12, -1.40, 0.000
+19380330, -0.72, 0.02, 1.47, 0.000
+19380331, -1.22, -0.19, 0.49, 0.000
+19380401, 4.16, 0.11, 1.20, 0.000
+19380402, 3.78, 1.42, -0.33, 0.000
+19380404, 0.65, 1.25, 0.67, 0.000
+19380405, 1.91, -0.35, 0.24, 0.000
+19380406, -1.62, 0.76, -0.82, 0.000
+19380407, -0.61, 0.43, -0.14, 0.000
+19380408, 4.12, -0.82, -0.52, 0.000
+19380409, 5.73, 0.20, 0.55, 0.000
+19380411, -2.41, 1.26, 0.40, 0.000
+19380412, 0.41, -1.62, 0.28, 0.000
+19380413, 0.43, 0.92, -1.13, 0.000
+19380414, 1.23, -0.12, -0.35, 0.000
+19380416, 3.74, 0.64, 0.24, 0.000
+19380418, -1.70, 0.64, -0.67, 0.000
+19380419, -2.33, 0.53, -0.20, 0.000
+19380420, -0.50, -0.71, 0.26, 0.000
+19380421, 0.55, 0.32, -0.13, 0.000
+19380422, 2.65, -0.39, 0.53, 0.000
+19380423, -0.62, 0.73, -0.07, 0.000
+19380425, -1.46, 0.08, 0.04, 0.000
+19380426, -1.65, 0.48, 0.36, 0.000
+19380427, 0.72, -0.51, 0.17, 0.000
+19380428, -2.50, 0.30, -0.28, 0.000
+19380429, -0.31, -1.21, -0.25, 0.000
+19380430, -0.16, 0.93, 0.52, 0.000
+19380502, -1.24, -0.18, 0.09, 0.000
+19380503, 2.20, -1.04, -0.23, 0.000
+19380504, 1.21, -0.58, 0.54, 0.000
+19380505, -0.02, 0.06, -0.50, 0.000
+19380506, 3.58, -2.36, 1.49, 0.000
+19380507, 0.12, 1.06, -0.39, 0.000
+19380509, 1.48, -0.65, 0.02, 0.000
+19380510, -1.10, 1.59, -0.12, 0.000
+19380511, 0.50, -0.11, 0.35, 0.000
+19380512, -0.56, -0.09, -0.07, 0.000
+19380513, -1.16, 0.52, -0.26, 0.000
+19380514, -0.03, 0.13, -0.01, 0.000
+19380516, -1.36, 0.73, -0.78, 0.000
+19380517, 0.38, -1.06, -0.09, 0.000
+19380518, 0.41, 0.16, -0.24, 0.000
+19380519, -1.52, 0.35, -0.82, 0.000
+19380520, -0.45, -0.30, 0.50, 0.000
+19380521, -1.19, 0.48, -0.70, 0.000
+19380523, 0.40, -0.89, 0.54, 0.000
+19380524, -1.20, 0.56, -0.52, 0.000
+19380525, -1.50, 0.20, 0.42, 0.000
+19380526, -2.47, -0.27, -0.51, 0.000
+19380527, -0.21, -0.97, 1.12, 0.000
+19380528, 1.18, 0.24, -0.06, 0.000
+19380531, -1.15, -0.29, 0.08, 0.000
+19380601, 2.44, -0.61, -0.02, 0.000
+19380602, -0.05, 0.56, 0.18, 0.000
+19380603, -0.97, 0.27, -0.29, 0.000
+19380604, 1.94, -0.72, -0.35, 0.000
+19380606, 0.79, -0.12, -0.25, 0.000
+19380607, -0.33, 1.01, -0.60, 0.000
+19380608, 0.31, -0.89, -0.44, 0.000
+19380609, 2.01, -0.54, 0.44, 0.000
+19380610, -0.87, 0.51, -0.58, 0.000
+19380611, -0.31, 0.04, 0.75, 0.000
+19380613, -1.81, 1.29, -0.44, 0.000
+19380614, 0.72, -1.06, -0.15, 0.000
+19380615, 0.42, 0.77, -1.24, 0.000
+19380616, 0.77, -0.66, 0.27, 0.000
+19380617, -0.65, 0.08, 0.32, 0.000
+19380618, 0.07, 0.14, -0.24, 0.000
+19380620, 4.69, -1.43, 0.70, 0.000
+19380621, 2.38, 0.76, 0.36, 0.000
+19380622, 2.77, 0.57, 0.08, 0.000
+19380623, 2.78, 1.08, 0.76, 0.000
+19380624, 1.03, 0.19, -0.51, 0.000
+19380625, 1.91, -0.49, 0.80, 0.000
+19380627, -0.63, 1.89, -0.58, 0.000
+19380628, -0.28, -0.64, -0.19, 0.000
+19380629, 4.27, -0.20, 0.61, 0.000
+19380630, -1.48, 1.25, 1.04, 0.000
+19380701, 2.53, -0.92, 1.45, 0.000
+19380702, 1.72, 0.83, 0.97, 0.000
+19380705, -1.45, 0.23, -0.27, 0.000
+19380706, 1.38, 0.74, 0.05, 0.000
+19380707, -0.08, 1.49, 1.30, 0.000
+19380708, -1.34, 0.38, -0.45, 0.000
+19380709, 0.41, -0.43, -0.16, 0.000
+19380711, -1.53, 0.48, -1.13, 0.000
+19380712, 2.34, -0.26, 0.92, 0.000
+19380713, -0.04, 2.00, -0.14, 0.000
+19380714, -1.12, -0.45, -0.47, 0.000
+19380715, 1.19, -0.76, 0.51, 0.000
+19380716, 0.88, 0.61, 0.29, 0.000
+19380718, 1.72, 0.62, 0.18, 0.000
+19380719, 2.22, -0.29, 0.65, 0.000
+19380720, -0.66, 0.25, 0.58, 0.000
+19380721, -0.09, 0.35, 0.55, 0.000
+19380722, 0.23, 0.84, 0.30, 0.000
+19380723, 1.37, 0.00, 0.32, 0.000
+19380725, 0.51, 0.82, -1.31, 0.000
+19380726, -0.98, 0.20, -0.66, 0.000
+19380727, -2.98, -1.60, -1.16, 0.000
+19380728, 1.59, 0.24, 0.08, 0.000
+19380729, -0.80, 1.02, -0.41, 0.000
+19380730, 0.32, -0.27, 0.30, 0.000
+19380801, -0.75, -0.72, -0.30, 0.000
+19380802, 0.71, 0.17, 0.30, 0.000
+19380803, -0.73, -0.01, -1.24, 0.000
+19380804, 0.51, -0.66, -0.40, 0.000
+19380805, 1.94, 0.00, 0.97, 0.000
+19380806, 1.06, 0.59, 0.36, 0.000
+19380808, -0.73, -0.31, -0.32, 0.000
+19380809, -0.66, -0.76, -0.10, 0.000
+19380810, -0.80, 0.21, -0.55, 0.000
+19380811, -2.27, -0.53, -0.72, 0.000
+19380812, -1.90, -1.32, -1.43, 0.000
+19380813, -0.44, -0.28, 0.27, 0.000
+19380815, 0.56, 0.46, -0.04, 0.000
+19380816, 1.18, -0.17, 0.17, 0.000
+19380817, 0.16, 0.27, -0.37, 0.000
+19380818, -0.23, -0.22, -0.32, 0.000
+19380819, 1.37, -0.28, 0.59, 0.000
+19380820, 0.14, 0.24, 0.27, 0.000
+19380822, -0.44, 0.10, -0.44, 0.000
+19380823, 2.13, 0.37, 0.20, 0.000
+19380824, 0.18, 1.18, 0.00, 0.000
+19380825, 0.48, -0.30, 0.53, 0.000
+19380826, -0.73, 0.47, -0.21, 0.000
+19380827, -0.99, -0.31, -0.45, 0.000
+19380829, -3.54, -0.73, -1.22, 0.000
+19380830, 1.15, -0.12, 0.37, 0.000
+19380831, 0.11, 0.18, -0.73, 0.000
+19380901, -0.91, -0.62, -0.66, 0.001
+19380902, 2.03, -0.51, 0.59, 0.001
+19380903, 0.90, 0.67, 0.14, 0.001
+19380906, -1.00, -0.21, -0.15, 0.001
+19380907, 1.26, 0.12, 0.41, 0.001
+19380908, -0.70, 0.33, -0.61, 0.001
+19380909, -1.91, -0.62, -0.43, 0.001
+19380910, -1.06, -0.13, -0.11, 0.001
+19380912, 1.05, -0.90, -0.04, 0.001
+19380913, -4.54, 0.85, -3.06, 0.001
+19380914, -2.06, -4.96, -1.42, 0.001
+19380915, 3.47, 0.67, 1.45, 0.001
+19380916, -1.87, 0.06, -0.72, 0.001
+19380917, -2.24, -0.82, -1.17, 0.001
+19380919, 2.71, 1.82, 1.46, 0.001
+19380920, 3.49, 0.77, 1.04, 0.001
+19380921, 0.53, 0.57, 1.17, 0.001
+19380922, -1.47, 0.05, -0.63, 0.001
+19380923, -2.83, -0.93, -1.04, 0.001
+19380924, -0.67, -1.33, 0.23, 0.001
+19380926, -2.68, 0.13, -1.22, 0.001
+19380927, -0.13, 0.49, -0.43, 0.001
+19380928, 3.86, 0.23, 1.70, 0.001
+19380929, 3.49, 0.67, 1.33, 0.001
+19380930, 2.75, 1.34, 1.32, 0.001
+19381001, 1.66, 0.35, 1.32, 0.000
+19381003, 0.81, 1.41, -0.74, 0.000
+19381004, 0.01, 0.31, -0.52, 0.000
+19381005, 2.82, 0.33, 2.40, 0.000
+19381006, -0.26, 0.71, -0.13, 0.000
+19381007, 0.04, -0.26, 0.58, 0.000
+19381008, 1.01, 0.27, 1.33, 0.000
+19381010, -0.22, 0.68, -0.56, 0.000
+19381011, -0.58, -0.07, -0.07, 0.000
+19381013, 2.41, -0.15, 0.82, 0.000
+19381014, -0.55, -0.04, -0.47, 0.000
+19381015, 0.83, -0.40, 0.22, 0.000
+19381017, -1.17, -0.03, -0.58, 0.000
+19381018, 0.97, 0.48, 0.52, 0.000
+19381019, -1.18, 0.67, -0.01, 0.000
+19381020, 1.22, -1.13, 0.64, 0.000
+19381021, 0.23, 1.04, 0.01, 0.000
+19381022, 1.07, -0.01, 0.68, 0.000
+19381024, 0.19, 0.27, -0.20, 0.000
+19381025, 0.10, 0.44, 0.35, 0.000
+19381026, -0.94, 0.16, -0.23, 0.000
+19381027, 0.25, -0.55, 0.29, 0.000
+19381028, -1.00, -0.06, 0.06, 0.000
+19381029, -0.33, 0.25, -0.44, 0.000
+19381031, 0.26, 0.53, -0.55, 0.000
+19381101, -0.26, 0.57, 0.32, -0.003
+19381102, 0.17, -0.56, 0.16, -0.003
+19381103, 0.25, -0.30, 1.24, -0.003
+19381104, -0.20, 0.17, -0.58, -0.003
+19381105, 0.29, -0.01, 0.04, -0.003
+19381107, 1.57, 0.57, 0.08, -0.003
+19381109, 2.42, -0.63, 0.91, -0.003
+19381110, -0.37, 0.28, -0.43, -0.003
+19381112, 0.49, 0.16, 0.91, -0.003
+19381114, -1.73, 1.01, -1.04, -0.003
+19381115, -0.53, -0.57, 0.01, -0.003
+19381116, -2.25, -0.43, -1.01, -0.003
+19381117, 0.87, -0.26, 0.28, -0.003
+19381118, -1.82, -0.80, -0.89, -0.003
+19381119, 0.26, 0.15, 0.42, -0.003
+19381121, -0.07, -0.16, -0.60, -0.003
+19381122, -0.59, 0.29, -0.88, -0.003
+19381123, 0.35, -0.34, 0.68, -0.003
+19381125, 0.23, 0.07, 0.17, -0.003
+19381126, -1.32, -0.15, -1.06, -0.003
+19381128, -1.66, -1.13, -1.15, -0.003
+19381129, 0.32, 0.21, 0.00, -0.003
+19381130, 1.98, -0.78, 1.37, -0.003
+19381201, -0.34, 0.72, -0.25, 0.000
+19381202, -0.95, -0.31, -1.29, 0.000
+19381203, -0.02, 0.10, -0.47, 0.000
+19381205, -0.39, -0.43, -0.49, 0.000
+19381206, 0.63, -0.03, 0.66, 0.000
+19381207, 0.26, 0.26, -0.44, 0.000
+19381208, -0.92, -0.57, -1.00, 0.000
+19381209, -0.54, -0.20, -0.95, 0.000
+19381210, 0.65, -0.42, 0.37, 0.000
+19381212, 0.42, -0.09, -0.25, 0.000
+19381213, 0.75, -0.76, 0.53, 0.000
+19381214, 2.00, 0.07, 0.64, 0.000
+19381215, 0.28, 0.48, 0.14, 0.000
+19381216, -0.47, -0.54, -0.90, 0.000
+19381217, -0.33, -0.35, -0.40, 0.000
+19381219, -0.58, 0.04, -0.15, 0.000
+19381220, -0.29, -0.82, -0.52, 0.000
+19381221, -0.79, -0.44, -0.22, 0.000
+19381222, 0.55, -0.76, 0.75, 0.000
+19381223, 0.83, 0.23, 1.11, 0.000
+19381224, 0.41, -0.02, 1.11, 0.000
+19381227, -0.93, -0.34, -0.79, 0.000
+19381228, 0.76, -0.32, 0.37, 0.000
+19381229, 2.31, 1.15, 2.25, 0.000
+19381230, 0.53, 0.92, 0.26, 0.000
+19381231, 0.41, 0.83, 0.58, 0.000
+19390103, -0.70, 0.54, -0.41, 0.000
+19390104, 0.93, 0.77, 1.23, 0.000
+19390105, -1.06, -0.05, -1.25, 0.000
+19390106, 0.06, -0.14, 0.53, 0.000
+19390107, -0.99, 0.11, -0.31, 0.000
+19390109, -0.91, -0.27, -0.74, 0.000
+19390110, 0.18, 0.43, -0.10, 0.000
+19390111, -1.67, -0.38, -0.91, 0.000
+19390112, -0.77, -1.03, -0.37, 0.000
+19390113, -0.57, 0.45, -0.47, 0.000
+19390114, 1.99, -0.30, 1.72, 0.000
+19390116, -0.07, 0.31, 0.04, 0.000
+19390117, 0.53, -0.22, 0.07, 0.000
+19390118, 0.03, 0.29, 0.10, 0.000
+19390119, 0.75, -0.15, 0.44, 0.000
+19390120, -0.15, 0.22, -0.29, 0.000
+19390121, -1.95, -0.05, -1.42, 0.000
+19390123, -4.02, -0.67, -2.17, 0.000
+19390124, -0.04, -1.66, 0.50, 0.000
+19390125, -0.22, 0.89, -0.44, 0.000
+19390126, -2.74, -0.60, -1.68, 0.000
+19390127, 2.08, -1.28, 0.71, 0.000
+19390128, -0.26, 0.17, -0.41, 0.000
+19390130, 2.38, -0.66, 1.07, 0.000
+19390131, 1.34, 1.69, 0.74, 0.000
+19390201, -1.00, 0.52, 0.15, 0.000
+19390202, 1.84, -0.87, 0.64, 0.000
+19390203, -0.59, 0.72, -0.47, 0.000
+19390204, 0.78, 0.31, 0.25, 0.000
+19390206, 0.34, -0.07, -0.46, 0.000
+19390207, -0.93, -0.38, -0.57, 0.000
+19390208, 0.95, -0.38, 0.85, 0.000
+19390209, -1.04, 0.39, -0.61, 0.000
+19390210, 0.08, -0.62, -0.21, 0.000
+19390211, 0.64, 0.13, 0.23, 0.000
+19390214, -0.31, 0.00, -0.67, 0.000
+19390215, 0.21, -0.26, 0.22, 0.000
+19390216, 0.96, 0.35, 0.46, 0.000
+19390217, -0.55, 0.35, -0.81, 0.000
+19390218, 0.67, -0.25, 0.87, 0.000
+19390220, -2.24, 0.08, -0.59, 0.000
+19390221, 0.15, -0.37, 0.17, 0.000
+19390223, 0.28, 0.18, 0.23, 0.000
+19390224, 2.07, 0.35, 1.22, 0.000
+19390225, 0.76, 0.48, 0.47, 0.000
+19390227, -0.06, -0.05, 0.29, 0.000
+19390228, 0.55, -0.02, 1.27, 0.000
+19390301, -0.08, -0.31, -0.14, 0.000
+19390302, -0.01, -0.06, -0.22, 0.000
+19390303, 1.25, -0.29, 0.47, 0.000
+19390304, 0.21, 0.62, -0.17, 0.000
+19390306, -0.69, 0.03, -1.15, 0.000
+19390307, 0.45, -0.11, 0.05, 0.000
+19390308, 1.61, -0.10, 1.12, 0.000
+19390309, -0.06, 0.65, -0.60, 0.000
+19390310, 0.64, 0.22, -0.62, 0.000
+19390311, -0.37, 0.02, -0.97, 0.000
+19390313, -0.68, -0.11, -0.48, 0.000
+19390314, 0.36, -0.28, 0.11, 0.000
+19390315, -2.34, -0.05, -1.11, 0.000
+19390316, 0.06, 0.17, 0.28, 0.000
+19390317, -2.85, -0.86, -1.61, 0.000
+19390318, -1.70, -0.34, -0.57, 0.000
+19390320, -0.55, 0.12, -0.09, 0.000
+19390321, 1.58, 0.03, 0.51, 0.000
+19390322, -2.94, -1.11, -1.26, 0.000
+19390323, 1.08, 0.36, 0.94, 0.000
+19390324, 1.37, 0.50, 0.99, 0.000
+19390325, -0.30, 0.18, -0.65, 0.000
+19390327, -0.16, 0.00, -0.59, 0.000
+19390328, -1.35, -0.69, -0.41, 0.000
+19390329, 0.57, 0.05, 0.54, 0.000
+19390330, -2.86, -0.16, -1.65, 0.000
+19390331, -4.71, -3.72, -2.17, 0.000
+19390401, 1.80, -0.56, 2.24, 0.000
+19390403, 0.08, 1.02, -0.14, 0.000
+19390404, -2.02, -0.43, -0.90, 0.000
+19390405, 0.78, 0.89, 0.00, 0.000
+19390406, -3.28, -1.31, -1.14, 0.000
+19390408, -4.13, -1.47, -2.19, 0.000
+19390410, 1.74, -0.08, 1.58, 0.000
+19390411, -0.19, 0.52, 1.01, 0.000
+19390412, 2.81, 1.86, 0.73, 0.000
+19390413, 1.11, 0.67, -0.59, 0.000
+19390414, -1.20, -0.69, -0.84, 0.000
+19390415, 3.07, 0.34, 2.16, 0.000
+19390417, -1.81, -0.45, -1.32, 0.000
+19390418, -1.15, 0.66, -0.54, 0.000
+19390419, 1.12, -0.04, -0.18, 0.000
+19390420, 1.18, 0.24, 0.85, 0.000
+19390421, 0.28, 0.67, -0.28, 0.000
+19390422, -0.05, -0.07, -0.30, 0.000
+19390424, -0.88, 0.05, -0.75, 0.000
+19390425, 0.06, -0.10, 0.87, 0.000
+19390426, 0.64, -0.35, -0.25, 0.000
+19390427, 0.90, -0.14, 0.14, 0.000
+19390428, -0.78, 0.48, -0.19, 0.000
+19390429, 0.02, 0.25, 0.19, 0.000
+19390501, -0.37, 0.54, -0.08, 0.000
+19390502, 1.12, 0.15, 0.29, 0.000
+19390503, 2.04, 0.31, 0.64, 0.000
+19390504, -0.11, 0.49, -0.25, 0.000
+19390505, -0.32, -0.12, -0.52, 0.000
+19390506, 0.25, 0.22, 0.38, 0.000
+19390508, -0.25, -0.14, -0.11, 0.000
+19390509, 1.65, -0.14, 0.81, 0.000
+19390510, -0.57, 0.94, -0.58, 0.000
+19390511, 0.03, -0.30, -0.32, 0.000
+19390512, -0.49, 0.22, 0.04, 0.000
+19390513, 0.17, -0.09, -0.48, 0.000
+19390515, 0.18, -0.10, -0.20, 0.000
+19390516, -2.16, 0.10, -0.97, 0.000
+19390517, -0.69, -0.31, -0.32, 0.000
+19390518, 0.25, 0.02, -0.42, 0.000
+19390519, 0.79, 0.01, 0.36, 0.000
+19390520, 0.66, -0.06, 0.65, 0.000
+19390522, 0.81, -0.79, 0.02, 0.000
+19390523, -0.40, 0.76, -0.63, 0.000
+19390524, 2.39, -0.25, 1.29, 0.000
+19390525, 0.29, 0.68, -0.19, 0.000
+19390526, 0.40, -0.03, 0.06, 0.000
+19390527, 0.52, 0.10, 1.14, 0.000
+19390529, 0.72, 0.06, 0.05, 0.000
+19390531, -0.24, 0.29, -0.04, 0.000
+19390601, -1.32, -0.25, -0.85, 0.000
+19390602, 0.48, 0.10, -0.26, 0.000
+19390603, 0.23, 0.35, 0.00, 0.000
+19390605, -0.04, -0.12, -0.11, 0.000
+19390606, 1.08, -0.26, 0.49, 0.000
+19390607, 0.27, 0.23, -0.78, 0.000
+19390608, -0.19, 0.05, -0.10, 0.000
+19390609, 1.15, 0.12, -0.22, 0.000
+19390610, -0.04, 0.18, -0.15, 0.000
+19390612, -0.85, -0.08, -0.50, 0.000
+19390613, -0.58, -0.68, -0.07, 0.000
+19390614, -0.49, 0.15, -0.47, 0.000
+19390615, -1.92, 0.58, -0.86, 0.000
+19390616, 0.04, 0.00, -0.22, 0.000
+19390617, 0.53, 0.10, 0.31, 0.000
+19390619, 0.72, -0.25, -0.05, 0.000
+19390620, 0.84, -0.13, 0.29, 0.000
+19390621, 0.03, 0.37, -0.23, 0.000
+19390622, -0.39, 0.10, -0.59, 0.000
+19390623, 0.23, 0.24, 0.40, 0.000
+19390624, -0.11, 0.42, 0.20, 0.000
+19390626, -1.77, -0.48, -0.82, 0.000
+19390627, 0.24, -0.48, 0.49, 0.000
+19390628, -1.62, 0.16, -0.91, 0.000
+19390629, -2.36, -0.61, -0.91, 0.000
+19390630, 0.43, -0.85, 0.18, 0.000
+19390701, 0.96, -0.02, 0.38, 0.000
+19390703, 0.37, 0.34, 0.10, 0.000
+19390705, 1.42, -0.68, 0.05, 0.000
+19390706, 0.21, 0.31, -0.14, 0.000
+19390707, -0.30, 0.04, -0.02, 0.000
+19390708, -0.01, -0.01, -0.29, 0.000
+19390710, 0.33, -0.25, -0.25, 0.000
+19390711, 0.97, -0.13, 0.71, 0.000
+19390712, 1.74, 0.70, -0.47, 0.000
+19390713, 0.69, 1.40, -0.23, 0.000
+19390714, -0.49, -0.18, -0.19, 0.000
+19390715, 0.23, -0.33, 0.21, 0.000
+19390717, 3.57, 0.68, 0.48, 0.000
+19390718, 0.73, 1.57, 0.24, 0.000
+19390719, -0.95, 0.37, -0.64, 0.000
+19390720, -1.08, -0.30, -0.09, 0.000
+19390721, 1.71, 0.40, 0.73, 0.000
+19390722, 1.07, 0.03, 0.69, 0.000
+19390724, -0.63, 0.39, -0.07, 0.000
+19390725, -0.41, 0.24, -0.14, 0.000
+19390726, 0.57, -0.87, -0.30, 0.000
+19390727, 0.15, 0.21, 0.60, 0.000
+19390728, -0.30, 0.47, -0.96, 0.000
+19390729, -0.24, -0.45, -0.02, 0.000
+19390731, -0.43, -0.03, -0.27, 0.000
+19390801, 0.06, -0.37, -0.02, 0.000
+19390802, 0.86, 0.01, 0.45, 0.000
+19390803, -0.18, 0.59, 0.03, 0.000
+19390804, -1.75, -1.05, -0.45, 0.000
+19390805, 0.45, 0.21, 0.15, 0.000
+19390807, -1.00, -0.42, -0.38, 0.000
+19390808, 0.22, 0.01, 0.07, 0.000
+19390809, -0.69, -0.37, -0.15, 0.000
+19390810, -1.68, -0.36, -0.75, 0.000
+19390811, 0.03, 0.05, 0.11, 0.000
+19390812, 0.89, 0.07, 0.62, 0.000
+19390814, 0.89, 0.24, -0.60, 0.000
+19390815, 0.93, 0.15, -0.12, 0.000
+19390816, -2.11, -1.08, -0.04, 0.000
+19390817, -0.26, -0.43, 0.10, 0.000
+19390818, -1.80, -0.77, -0.41, 0.000
+19390819, -0.37, 0.02, 0.05, 0.000
+19390821, -2.04, -1.66, -0.15, 0.000
+19390822, 1.55, 0.54, -0.58, 0.000
+19390823, -2.69, -0.92, 0.23, 0.000
+19390824, -0.51, -1.61, -0.17, 0.000
+19390825, 1.98, 0.39, -0.14, 0.000
+19390826, 2.18, 0.87, 0.59, 0.000
+19390828, -1.76, 0.32, -1.10, 0.000
+19390829, 2.14, 0.83, 0.44, 0.000
+19390830, -0.48, 0.40, 0.06, 0.000
+19390831, -1.50, -0.51, -0.43, 0.000
+19390901, 0.44, -0.02, 0.38, 0.000
+19390902, 2.14, 4.52, 0.85, 0.000
+19390905, 8.79, 8.07, 8.43, 0.000
+19390906, -0.62, -0.71, 0.79, 0.000
+19390907, 0.29, 0.38, -0.46, 0.000
+19390908, 1.97, 0.97, 1.73, 0.000
+19390909, 0.41, 1.17, 0.39, 0.000
+19390911, 2.27, 2.36, 1.85, 0.000
+19390912, 0.62, -1.02, 1.43, 0.000
+19390913, -0.78, 0.57, 0.01, 0.000
+19390914, 0.21, 0.22, -0.68, 0.000
+19390915, -0.09, -0.32, -0.06, 0.000
+19390916, -1.10, -0.79, -0.08, 0.000
+19390918, -3.11, -1.28, -2.39, 0.000
+19390919, 3.35, 1.53, 1.75, 0.000
+19390920, 0.10, 0.69, 0.65, 0.000
+19390921, 0.82, 0.53, 0.88, 0.000
+19390922, -0.46, 0.10, 0.35, 0.000
+19390923, 0.42, -0.15, 0.15, 0.000
+19390925, -0.09, 0.64, 0.38, 0.000
+19390926, 0.89, -0.17, 1.80, 0.000
+19390927, -0.03, -0.06, 0.39, 0.000
+19390928, -1.35, -0.28, -0.37, 0.000
+19390929, -0.83, -1.25, -1.06, 0.000
+19390930, 1.94, 1.27, 1.14, 0.000
+19391002, -0.88, -0.22, -0.21, 0.000
+19391003, -0.96, -0.66, -1.32, 0.000
+19391004, -0.04, -0.91, -0.25, 0.000
+19391005, 0.35, 0.81, -0.46, 0.000
+19391006, -0.09, 0.27, 0.53, 0.000
+19391007, -0.82, -0.96, -0.68, 0.000
+19391009, 0.20, -0.30, -0.68, 0.000
+19391010, 0.46, 0.80, 0.17, 0.000
+19391011, 0.50, -0.60, 0.31, 0.000
+19391013, -0.50, 0.47, -0.47, 0.000
+19391014, -0.20, -0.53, 0.16, 0.000
+19391016, 0.23, -0.12, -0.37, 0.000
+19391017, 2.61, 1.88, 1.16, 0.000
+19391018, -0.40, 0.16, -0.52, 0.000
+19391019, -0.06, -0.09, -0.71, 0.000
+19391020, -0.41, -0.51, -0.31, 0.000
+19391021, 0.67, 0.30, 0.06, 0.000
+19391023, -0.19, 0.10, -0.08, 0.000
+19391024, 0.29, 0.35, -0.82, 0.000
+19391025, 1.06, 0.91, 0.63, 0.000
+19391026, -0.66, 0.05, -0.27, 0.000
+19391027, -0.38, -0.56, 0.03, 0.000
+19391028, -0.25, 0.31, -0.43, 0.000
+19391030, -0.13, -0.26, -0.11, 0.000
+19391031, -0.88, -0.60, -0.28, 0.000
+19391101, -0.08, -0.55, -0.26, 0.000
+19391102, 0.11, 0.46, -0.46, 0.000
+19391103, 0.86, 0.64, -0.13, 0.000
+19391104, -0.16, 1.47, -0.46, 0.000
+19391106, -0.60, -0.85, -0.50, 0.000
+19391108, -0.71, -0.86, -0.43, 0.000
+19391109, -1.12, -1.08, -0.41, 0.000
+19391110, 0.28, -0.16, -0.84, 0.000
+19391113, 0.02, 0.27, -0.14, 0.000
+19391114, 0.61, -0.41, 0.41, 0.000
+19391115, -0.21, 0.05, -0.36, 0.000
+19391116, 1.10, 0.04, 0.07, 0.000
+19391117, -0.29, 0.00, 0.12, 0.000
+19391118, 0.34, -0.35, -0.44, 0.000
+19391120, 0.05, -0.03, 0.06, 0.000
+19391121, -0.63, -0.28, -0.46, 0.000
+19391122, -0.13, -0.38, -0.60, 0.000
+19391124, -1.11, -0.57, -0.39, 0.000
+19391125, 0.04, -0.53, -0.04, 0.000
+19391127, 0.08, 0.13, -0.80, 0.000
+19391128, -0.16, -0.24, -0.23, 0.000
+19391129, -1.08, -0.67, -0.56, 0.000
+19391130, -0.90, -1.47, -0.21, 0.000
+19391201, 0.73, 0.67, 0.03, 0.000
+19391202, 0.11, 0.62, 0.03, 0.000
+19391204, -0.11, -0.29, -0.68, 0.000
+19391205, 0.10, -0.21, -0.23, 0.000
+19391206, 1.41, 0.84, -0.01, 0.000
+19391207, 0.29, 0.74, -0.44, 0.000
+19391208, -0.65, -0.20, -0.10, 0.000
+19391209, -0.06, 0.17, -0.37, 0.000
+19391211, -0.83, -0.43, -0.83, 0.000
+19391212, -0.23, -0.58, -0.22, 0.000
+19391213, 1.32, 0.61, 1.17, 0.000
+19391214, -0.07, 0.14, -0.99, 0.000
+19391215, 0.09, -0.48, -0.35, 0.000
+19391216, -0.07, -0.10, 0.41, 0.000
+19391218, -0.17, 0.09, -0.43, 0.000
+19391219, -0.26, -0.26, -1.04, 0.000
+19391220, 0.31, -0.37, -0.01, 0.000
+19391221, 0.03, 0.05, -0.38, 0.000
+19391222, 0.34, -0.60, 0.15, 0.000
+19391223, 0.10, 0.26, 0.15, 0.000
+19391226, -0.39, -0.22, -0.85, 0.000
+19391227, -0.63, -0.71, -0.01, 0.000
+19391228, 0.87, 0.74, 0.85, 0.000
+19391229, 0.58, 0.18, -0.24, 0.000
+19391230, 0.22, 0.24, 0.47, 0.000
+19400102, 1.07, 0.99, 0.80, 0.000
+19400103, 1.15, 0.87, 1.07, 0.000
+19400104, -0.28, 0.18, -0.15, 0.000
+19400105, -0.52, -0.13, -0.46, 0.000
+19400106, -0.08, 0.30, 0.19, 0.000
+19400108, 0.11, 0.25, -0.06, 0.000
+19400109, -0.87, -0.40, -0.66, 0.000
+19400110, 0.15, 0.19, 0.47, 0.000
+19400111, -1.34, -0.81, -0.09, 0.000
+19400112, -1.62, -0.74, -0.32, 0.000
+19400113, -0.36, -0.20, -0.28, 0.000
+19400115, -0.39, -0.70, 0.27, 0.000
+19400116, 0.65, 0.28, -0.20, 0.000
+19400117, 0.21, 0.18, -0.03, 0.000
+19400118, -0.24, -0.44, -0.37, 0.000
+19400119, 0.21, -0.20, -0.70, 0.000
+19400120, -0.08, 0.12, 0.36, 0.000
+19400122, -0.30, -0.07, -0.13, 0.000
+19400123, 0.19, -0.12, -0.54, 0.000
+19400124, 1.17, 0.29, 0.48, 0.000
+19400125, -0.42, 0.71, -0.22, 0.000
+19400126, 0.01, 0.29, -0.78, 0.000
+19400127, -0.10, 0.15, 0.83, 0.000
+19400129, -0.09, -0.05, -0.02, 0.000
+19400130, -0.41, -0.34, 0.00, 0.000
+19400131, -0.22, -0.28, -0.19, 0.000
+19400201, -0.05, 0.13, 0.03, 0.000
+19400202, 0.15, 0.49, -0.43, 0.000
+19400203, 0.24, -0.10, 0.12, 0.000
+19400205, -0.38, -0.05, -0.10, 0.000
+19400206, 0.64, -0.18, 0.23, 0.000
+19400207, 0.44, 0.06, -0.13, 0.000
+19400208, 1.13, 0.84, 0.82, 0.000
+19400209, 0.25, 0.61, 0.09, 0.000
+19400210, -0.18, -0.62, -0.22, 0.000
+19400213, -0.10, -0.18, -0.56, 0.000
+19400214, -0.14, -0.07, -0.24, 0.000
+19400215, 0.11, 0.53, -0.18, 0.000
+19400216, 0.04, 0.31, 0.39, 0.000
+19400217, 0.29, 0.56, 0.35, 0.000
+19400219, -0.16, -0.04, 0.00, 0.000
+19400220, 0.32, -0.14, -0.24, 0.000
+19400221, -0.08, 0.75, 0.15, 0.000
+19400223, -0.48, -0.10, -0.15, 0.000
+19400224, -0.49, -0.31, -0.37, 0.000
+19400226, -0.06, -0.59, -0.06, 0.000
+19400227, -0.15, -0.12, 0.44, 0.000
+19400228, 0.13, 0.39, -0.43, 0.000
+19400229, -0.02, 0.29, 0.21, 0.000
+19400301, -0.30, -0.10, -0.08, 0.000
+19400302, 0.01, 0.13, -0.06, 0.000
+19400304, 0.23, -0.03, 0.08, 0.000
+19400305, 0.36, 0.31, -0.28, 0.000
+19400306, 0.70, 0.63, 0.22, 0.000
+19400307, 0.26, 0.24, -0.42, 0.000
+19400308, -0.19, 0.27, -0.26, 0.000
+19400309, 0.03, -0.24, 0.26, 0.000
+19400311, 0.16, 0.00, -0.16, 0.000
+19400312, 0.03, -0.51, 0.21, 0.000
+19400313, -0.14, -0.23, -0.30, 0.000
+19400314, -0.07, -0.09, -0.55, 0.000
+19400315, -1.19, -0.82, 0.01, 0.000
+19400316, -0.48, -0.93, 0.02, 0.000
+19400318, -0.06, -0.15, -0.32, 0.000
+19400319, 0.68, 0.53, -0.18, 0.000
+19400320, 0.58, 1.17, 0.02, 0.000
+19400321, -0.03, 0.33, 0.11, 0.000
+19400323, -0.01, 0.31, -0.08, 0.000
+19400325, -0.20, -0.60, -0.09, 0.000
+19400326, -0.22, -0.03, -0.08, 0.000
+19400327, 1.27, 1.11, 0.25, 0.000
+19400328, -0.15, 0.30, -0.23, 0.000
+19400329, 0.37, -0.67, 0.14, 0.000
+19400330, 0.44, 0.38, 0.52, 0.000
+19400401, -0.16, 0.13, -0.35, 0.000
+19400402, 0.25, -0.06, -0.03, 0.000
+19400403, 1.36, 0.83, 1.36, 0.000
+19400404, 0.71, 0.22, 0.83, 0.000
+19400405, -0.28, -0.08, 0.04, 0.000
+19400406, 0.60, 0.19, 0.32, 0.000
+19400408, 0.11, 0.36, 0.15, 0.000
+19400409, -0.75, 0.70, -0.70, 0.000
+19400410, -0.60, -0.30, 0.16, 0.000
+19400411, 0.24, 0.23, 0.23, 0.000
+19400412, -0.62, -0.01, -0.64, 0.000
+19400413, 0.18, 0.25, -0.59, 0.000
+19400415, 0.09, 1.03, 0.02, 0.000
+19400416, -1.20, -0.78, -0.34, 0.000
+19400417, 0.26, 0.61, 0.01, 0.000
+19400418, -0.74, -0.29, 0.23, 0.000
+19400419, -0.10, -0.14, -0.37, 0.000
+19400420, 0.63, 1.02, 0.34, 0.000
+19400422, 0.24, 0.25, 0.03, 0.000
+19400423, 0.52, 0.39, -0.03, 0.000
+19400424, -0.33, -0.11, -0.03, 0.000
+19400425, 0.08, 0.14, 0.10, 0.000
+19400426, -0.69, -0.81, -0.25, 0.000
+19400427, 0.14, 0.41, -0.30, 0.000
+19400429, 0.23, 0.19, 0.10, 0.000
+19400430, 0.10, -0.42, -0.34, 0.000
+19400501, -1.05, -0.56, -0.51, -0.001
+19400502, 0.47, 0.44, 0.16, -0.001
+19400503, 0.10, 0.05, -0.38, -0.001
+19400504, -0.18, -0.33, 0.30, -0.001
+19400506, -0.11, -0.17, -0.16, -0.001
+19400507, 0.14, -0.18, -0.08, -0.001
+19400508, 0.09, -0.05, 0.26, -0.001
+19400509, 0.23, 0.04, 0.44, -0.001
+19400510, -2.55, -1.17, -0.54, -0.001
+19400511, 0.11, 0.14, 0.18, -0.001
+19400513, -5.58, -3.97, -1.37, -0.001
+19400514, -7.21, -3.36, -0.28, -0.001
+19400515, 0.46, -1.87, -3.21, -0.001
+19400516, 1.49, 3.76, 0.47, -0.001
+19400517, -4.40, -1.62, 0.03, -0.001
+19400518, -1.94, -0.40, -2.19, -0.001
+19400520, 0.48, 1.79, 1.22, -0.001
+19400521, -6.99, -5.14, -1.03, -0.001
+19400522, 0.17, 2.05, 0.00, -0.001
+19400523, 0.32, -0.34, 1.30, -0.001
+19400524, -0.20, 0.87, 0.70, -0.001
+19400525, 1.17, 1.45, 0.21, -0.001
+19400527, 1.72, 1.35, 0.45, -0.001
+19400528, -2.40, -2.08, -0.58, -0.001
+19400529, 1.35, 1.60, 1.07, -0.001
+19400531, 0.42, 0.50, -1.12, -0.001
+19400601, -0.29, 0.03, 0.25, 0.000
+19400603, -1.06, -0.06, 0.42, 0.000
+19400604, 0.96, 0.11, -0.04, 0.000
+19400605, -1.67, -0.91, -0.41, 0.000
+19400606, 1.10, 0.16, -0.45, 0.000
+19400607, 1.06, 0.40, 1.06, 0.000
+19400608, -0.17, 0.02, -0.35, 0.000
+19400610, -2.94, -0.97, 1.09, 0.000
+19400611, 3.80, 1.17, -1.30, 0.000
+19400612, 4.81, 1.33, 1.66, 0.000
+19400613, -1.63, -0.34, -1.12, 0.000
+19400614, 1.87, 0.54, 0.27, 0.000
+19400615, 0.84, 0.06, 0.70, 0.000
+19400617, -0.66, -1.77, -0.98, 0.000
+19400618, 0.58, 1.00, 1.34, 0.000
+19400619, 0.35, -0.79, -0.33, 0.000
+19400620, -0.70, 0.10, 0.47, 0.000
+19400621, 0.02, -0.03, 0.24, 0.000
+19400622, 0.44, -0.31, 0.52, 0.000
+19400624, 0.82, -0.70, 0.16, 0.000
+19400625, -2.36, -0.39, 0.44, 0.000
+19400626, -0.66, -1.09, -0.10, 0.000
+19400627, 1.06, 0.24, 0.75, 0.000
+19400628, 1.29, 0.63, 0.46, 0.000
+19400629, -0.07, -0.06, -0.28, 0.000
+19400701, -0.59, 0.20, 0.09, 0.000
+19400702, -0.15, 0.17, -0.24, 0.000
+19400703, 0.20, 0.06, -0.03, 0.000
+19400705, 0.48, 0.27, -0.12, 0.000
+19400706, 0.22, -0.36, 0.83, 0.000
+19400708, -0.20, -0.12, -0.47, 0.000
+19400709, -0.17, -0.24, 0.52, 0.000
+19400710, 0.05, -0.01, 0.03, 0.000
+19400711, 0.07, 0.22, -0.01, 0.000
+19400712, -0.08, 0.06, -0.47, 0.000
+19400713, 0.06, 0.06, 0.19, 0.000
+19400715, 0.33, 0.13, -0.25, 0.000
+19400716, 0.99, 0.35, 0.10, 0.000
+19400717, -0.22, 0.32, -0.65, 0.000
+19400718, 0.13, -0.31, -0.22, 0.000
+19400719, -0.64, 0.43, 0.01, 0.000
+19400720, -0.21, 0.07, -0.14, 0.000
+19400722, -0.05, -0.17, 0.30, 0.000
+19400723, 0.07, -0.42, 0.04, 0.000
+19400724, -0.44, 0.07, 0.01, 0.000
+19400725, 0.06, -0.21, -0.14, 0.000
+19400726, 0.37, -0.08, 0.14, 0.000
+19400727, 0.19, 0.24, -0.15, 0.000
+19400729, 0.53, -0.59, 0.18, 0.000
+19400730, 2.20, 0.18, 0.39, 0.000
+19400731, -0.05, 0.66, -0.63, 0.000
+19400801, -0.10, 0.16, -0.51, 0.000
+19400802, 0.02, -0.06, -0.10, 0.000
+19400803, 0.08, 0.08, 0.23, 0.000
+19400805, -0.12, -0.21, -0.44, 0.000
+19400806, -0.75, 0.00, 0.25, 0.000
+19400807, -0.16, -0.26, 0.03, 0.000
+19400808, 0.13, -0.02, -0.46, 0.000
+19400809, 0.64, -0.25, 0.26, 0.000
+19400810, 0.58, -0.13, 0.00, 0.000
+19400812, 0.20, -0.67, 0.02, 0.000
+19400813, -3.16, 0.40, -0.70, 0.000
+19400814, -0.37, -0.01, 0.12, 0.000
+19400815, 0.60, 0.23, -0.17, 0.000
+19400816, -1.41, -0.03, 0.23, 0.000
+19400817, 0.71, -0.15, 0.15, 0.000
+19400819, 0.02, -0.01, -0.17, 0.000
+19400820, 0.97, -0.67, 0.29, 0.000
+19400821, 1.37, 0.15, -0.27, 0.000
+19400822, 0.83, 0.41, 0.04, 0.000
+19400823, -1.07, 0.07, -0.46, 0.000
+19400824, 0.19, -0.11, 0.17, 0.000
+19400826, 0.06, -0.12, -0.13, 0.000
+19400827, -0.12, 0.00, 0.27, 0.000
+19400828, 1.21, 0.10, 0.76, 0.000
+19400829, -0.18, -0.06, -0.19, 0.000
+19400830, 1.60, 0.33, 0.79, 0.000
+19400831, 0.56, 0.68, 0.61, 0.000
+19400903, 0.32, 0.55, 0.20, 0.000
+19400904, 1.65, -0.31, 0.19, 0.000
+19400905, 1.70, 1.14, 0.95, 0.000
+19400906, -0.41, 0.28, -0.67, 0.000
+19400907, -0.16, -0.01, 0.18, 0.000
+19400909, -2.36, -0.97, -0.75, 0.000
+19400910, -0.10, 0.20, -0.49, 0.000
+19400911, -0.53, 0.40, -0.18, 0.000
+19400912, -1.12, -0.12, -0.86, 0.000
+19400913, 0.09, -0.20, 0.34, 0.000
+19400914, 0.56, -0.05, 0.35, 0.000
+19400916, 0.65, 0.06, 0.13, 0.000
+19400917, 0.77, -0.28, 0.06, 0.000
+19400918, 0.67, 0.23, -0.04, 0.000
+19400919, -0.07, 0.20, 0.05, 0.000
+19400920, 0.00, -0.01, -0.39, 0.000
+19400921, 0.61, 0.60, 0.62, 0.000
+19400923, 1.95, 0.80, 0.86, 0.000
+19400924, -0.25, 0.24, -0.59, 0.000
+19400925, -0.15, 0.01, -0.12, 0.000
+19400926, -0.54, -0.17, -0.59, 0.000
+19400927, -1.57, -0.10, -1.53, 0.000
+19400928, 0.63, 0.33, 0.54, 0.000
+19400930, 0.15, 0.34, 0.79, 0.000
+19401001, 1.23, 0.26, 0.47, 0.000
+19401002, 0.42, 0.30, 1.24, 0.000
+19401003, 0.11, 0.40, -0.38, 0.000
+19401004, -0.63, -0.42, -0.24, 0.000
+19401005, 0.09, -0.01, 0.16, 0.000
+19401007, -0.45, 0.21, 0.06, 0.000
+19401008, -1.39, -0.37, -0.64, 0.000
+19401009, -0.54, -0.23, 0.05, 0.000
+19401010, -0.05, 0.35, 0.24, 0.000
+19401011, 0.52, -0.15, -0.01, 0.000
+19401014, -0.28, 0.76, 0.06, 0.000
+19401015, 0.45, -1.30, -0.06, 0.000
+19401016, 0.53, 0.76, 0.01, 0.000
+19401017, 0.50, -0.23, 0.42, 0.000
+19401018, 0.04, 0.10, 0.79, 0.000
+19401019, -0.11, 0.23, -0.15, 0.000
+19401021, -0.53, 0.28, 0.16, 0.000
+19401022, 0.45, -0.34, 0.42, 0.000
+19401023, 0.61, 0.29, 0.35, 0.000
+19401024, -0.54, -0.08, 0.02, 0.000
+19401025, -0.04, -0.17, 0.48, 0.000
+19401026, 0.81, -0.12, 0.05, 0.000
+19401028, -0.28, -0.23, -0.18, 0.000
+19401029, 0.25, 0.06, 0.09, 0.000
+19401030, 0.64, -0.41, 0.34, 0.000
+19401031, 1.24, 0.40, 0.77, 0.000
+19401101, 0.10, 0.39, -0.13, 0.000
+19401102, 0.34, -0.58, 0.28, 0.000
+19401104, 0.28, -0.16, -0.16, 0.000
+19401106, -2.85, 0.85, -1.84, 0.000
+19401107, 4.78, 1.40, 3.09, 0.000
+19401108, -0.58, 0.46, 0.03, 0.000
+19401109, 1.37, 0.71, 0.61, 0.000
+19401112, -0.45, -0.20, 0.21, 0.000
+19401113, -0.41, -0.05, 0.20, 0.000
+19401114, 0.48, -0.08, 0.79, 0.000
+19401115, -1.00, -0.03, -0.50, 0.000
+19401116, -0.74, -0.34, -0.32, 0.000
+19401118, -0.03, 0.19, -0.11, 0.000
+19401119, -0.08, -0.19, -0.13, 0.000
+19401120, -1.78, -0.16, -1.03, 0.000
+19401122, 0.17, 0.18, 0.82, 0.000
+19401123, -0.02, -0.04, 0.24, 0.000
+19401125, -0.01, -0.07, 0.03, 0.000
+19401126, -0.28, 0.12, -0.48, 0.000
+19401127, -1.62, -0.41, -1.48, 0.000
+19401128, 0.23, 0.24, 0.71, 0.000
+19401129, 0.12, -0.44, 0.12, 0.000
+19401130, 0.56, 0.24, -0.45, 0.000
+19401202, -0.04, 0.27, -0.22, 0.000
+19401203, -0.28, -0.19, -0.53, 0.000
+19401204, 0.02, -0.12, -0.62, 0.000
+19401205, -0.29, -0.36, 0.10, 0.000
+19401206, 0.24, -0.20, -0.03, 0.000
+19401207, 0.73, 0.32, 0.03, 0.000
+19401209, 0.13, 0.04, -0.31, 0.000
+19401210, -0.06, -0.22, -0.20, 0.000
+19401211, 0.29, 0.21, 0.36, 0.000
+19401212, 0.26, -0.23, 0.16, 0.000
+19401213, 0.21, 0.06, 0.92, 0.000
+19401214, 0.01, -0.30, -0.27, 0.000
+19401216, -0.79, -0.27, -0.58, 0.000
+19401217, -0.42, -0.36, -0.23, 0.000
+19401218, -0.70, -0.14, -0.41, 0.000
+19401219, -0.36, -0.42, 0.06, 0.000
+19401220, 0.06, 0.08, -0.18, 0.000
+19401221, 0.10, 0.05, 0.29, 0.000
+19401223, -0.38, 0.45, -0.29, 0.000
+19401224, 0.42, -0.71, 0.41, 0.000
+19401226, -0.10, 0.26, -0.40, 0.000
+19401227, 0.37, -0.65, 0.37, 0.000
+19401228, 0.36, -0.02, -0.04, 0.000
+19401230, 0.62, 0.07, 0.23, 0.000
+19401231, 0.30, 0.19, 0.47, 0.000
+19410102, -0.34, 0.89, 0.35, 0.000
+19410103, 1.25, -0.47, 0.88, 0.000
+19410104, 0.24, 0.86, 0.30, 0.000
+19410106, 0.31, 0.75, 0.02, 0.000
+19410107, -0.14, -0.16, -0.30, 0.000
+19410108, 0.28, 0.00, 1.21, 0.000
+19410109, 0.49, -0.24, 1.78, 0.000
+19410110, 0.21, 0.61, -0.09, 0.000
+19410111, -0.20, 0.10, -0.27, 0.000
+19410113, -0.12, 0.08, 0.09, 0.000
+19410114, -0.46, -0.38, 0.00, 0.000
+19410115, -0.57, 0.45, -0.25, 0.000
+19410116, -1.26, -0.07, -0.65, 0.000
+19410117, -0.16, -0.68, 0.52, 0.000
+19410118, 0.02, 0.48, 0.04, 0.000
+19410120, -0.27, 0.50, -0.41, 0.000
+19410121, -0.79, -0.51, 0.56, 0.000
+19410122, 0.47, -0.18, 0.86, 0.000
+19410123, -0.01, 0.29, 0.07, 0.000
+19410124, 0.19, -0.15, 0.00, 0.000
+19410125, 0.25, -0.15, 0.12, 0.000
+19410127, 0.02, 0.17, 0.24, 0.000
+19410128, -0.45, -0.01, -0.20, 0.000
+19410129, -1.73, -0.04, -0.76, 0.000
+19410130, -1.53, -0.95, -0.89, 0.000
+19410131, 0.06, -0.13, 0.81, 0.000
+19410201, -0.57, -0.19, -0.68, 0.000
+19410203, -0.55, -0.26, -0.51, 0.000
+19410204, -0.10, -0.13, 1.07, 0.000
+19410205, 1.46, 0.12, 0.95, 0.000
+19410206, 0.38, 0.23, -0.12, 0.000
+19410207, -0.16, -0.11, -0.16, 0.000
+19410208, 0.20, 0.16, -0.31, 0.000
+19410210, -0.21, 0.22, 0.39, 0.000
+19410211, -1.11, 0.18, -0.97, 0.000
+19410213, -1.38, -1.29, 0.08, 0.000
+19410214, -2.71, -0.65, -0.58, 0.000
+19410215, 0.45, -0.28, 0.26, 0.000
+19410217, 0.52, 0.43, 0.33, 0.000
+19410218, -0.30, -0.15, -0.11, 0.000
+19410219, -1.00, -0.66, -0.40, 0.000
+19410220, 1.63, 0.53, 0.71, 0.000
+19410221, 0.50, -0.03, 0.24, 0.000
+19410224, 0.85, -0.34, 0.06, 0.000
+19410225, 0.63, 0.08, -0.52, 0.000
+19410226, 0.06, 0.61, 0.28, 0.000
+19410227, -0.34, -0.29, 0.35, 0.000
+19410228, 0.38, 0.29, 0.64, 0.000
+19410301, -0.22, 0.53, -0.32, 0.000
+19410303, -0.83, -0.27, -0.55, 0.000
+19410304, 0.39, -0.38, 0.67, 0.000
+19410305, -0.34, 0.76, 0.05, 0.000
+19410306, 1.34, -0.55, 0.43, 0.000
+19410307, -0.23, 0.64, -0.41, 0.000
+19410308, 0.04, -0.21, 0.47, 0.000
+19410310, 1.65, 0.60, 0.24, 0.000
+19410311, -0.42, 0.45, -0.34, 0.000
+19410312, -0.10, -0.20, -0.09, 0.000
+19410313, -0.38, 0.16, -0.17, 0.000
+19410314, 0.10, -0.13, 0.18, 0.000
+19410315, 0.59, 0.25, 0.63, 0.000
+19410317, 0.01, -0.04, 0.14, 0.000
+19410318, 0.18, -0.07, 0.23, 0.000
+19410319, -0.21, 0.25, 0.01, 0.000
+19410320, -0.01, -0.43, 0.38, 0.000
+19410321, -0.76, -0.01, -0.63, 0.000
+19410322, -0.45, -0.12, -0.05, 0.000
+19410324, 0.32, -0.59, 0.66, 0.000
+19410325, 0.22, -0.33, 0.32, 0.000
+19410326, -0.18, 0.10, 0.28, 0.000
+19410327, 0.61, -0.31, 0.35, 0.000
+19410328, -0.59, 0.46, -0.66, 0.000
+19410329, -0.08, -0.23, 0.60, 0.000
+19410331, 0.24, -0.25, 0.60, 0.000
+19410401, 0.18, 0.02, 0.37, 0.000
+19410402, 0.22, -0.21, -0.02, 0.000
+19410403, 1.37, -0.07, 2.03, 0.000
+19410404, -0.03, 0.43, -0.02, 0.000
+19410405, -0.31, 0.03, -0.34, 0.000
+19410407, -0.47, -0.36, -0.19, 0.000
+19410408, -1.96, -0.43, -1.78, 0.000
+19410409, -1.10, -0.25, -0.13, 0.000
+19410410, -0.16, 0.12, -0.12, 0.000
+19410412, -0.94, -0.15, 0.24, 0.000
+19410414, 0.21, -0.21, 0.50, 0.000
+19410415, -0.33, 0.25, -0.47, 0.000
+19410416, 0.05, -0.60, 0.45, 0.000
+19410417, -0.17, 0.28, 0.10, 0.000
+19410418, -1.37, -0.13, -0.61, 0.000
+19410419, -0.28, -0.46, 0.38, 0.000
+19410421, -0.24, -0.61, 0.47, 0.000
+19410422, -0.25, 0.16, 0.06, 0.000
+19410423, 0.61, -0.57, 1.04, 0.000
+19410424, 0.72, 0.45, 0.84, 0.000
+19410425, -0.62, 0.04, -0.15, 0.000
+19410426, -0.02, 0.27, 0.36, 0.000
+19410428, 0.15, -0.12, 0.22, 0.000
+19410429, 0.31, 0.02, 0.87, 0.000
+19410430, -1.09, 0.34, -0.39, 0.000
+19410501, -0.10, -0.12, -0.07, 0.000
+19410502, 0.43, -0.07, 0.87, 0.000
+19410503, 0.22, -0.18, 0.76, 0.000
+19410505, -0.05, -0.05, 0.33, 0.000
+19410506, 1.49, 0.19, 1.35, 0.000
+19410507, -0.34, 0.35, -0.89, 0.000
+19410508, -0.05, -0.56, 0.25, 0.000
+19410509, 0.11, 0.25, -0.06, 0.000
+19410510, 0.98, -0.26, 1.11, 0.000
+19410512, -0.26, -0.09, -0.42, 0.000
+19410513, -0.06, -0.19, -0.54, 0.000
+19410514, -0.24, -0.14, -0.67, 0.000
+19410515, -1.24, 0.75, -1.04, 0.000
+19410516, 0.21, -1.02, 0.25, 0.000
+19410517, 0.28, 0.06, 0.44, 0.000
+19410519, 0.05, -0.21, -0.25, 0.000
+19410520, 1.20, -0.85, 0.42, 0.000
+19410521, 0.22, 0.54, -0.06, 0.000
+19410522, -0.96, 0.13, -0.33, 0.000
+19410523, 0.02, -0.21, 0.23, 0.000
+19410524, 0.09, 0.00, 0.01, 0.000
+19410526, -0.94, 0.39, -0.33, 0.000
+19410527, 0.41, -0.18, -0.23, 0.000
+19410528, 0.11, 0.02, 0.08, 0.000
+19410529, 0.09, 0.16, -0.01, 0.000
+19410531, -0.29, 0.62, -0.52, 0.000
+19410602, 0.33, -0.27, -0.14, 0.000
+19410603, 0.95, -0.64, 0.38, 0.000
+19410604, 0.35, 0.04, 0.15, 0.000
+19410605, 0.49, 0.42, -0.20, 0.000
+19410606, -0.16, -0.18, -0.11, 0.000
+19410607, 0.61, 0.13, -0.12, 0.000
+19410609, 0.86, 0.08, -0.29, 0.000
+19410610, 1.43, 0.50, 0.16, 0.000
+19410611, 0.09, 0.45, -0.23, 0.000
+19410612, 0.53, -0.21, 0.31, 0.000
+19410613, -0.26, 0.21, -0.40, 0.000
+19410614, -0.16, 0.40, 0.20, 0.000
+19410616, -0.19, 0.17, -0.32, 0.000
+19410617, 0.64, 0.08, -0.14, 0.000
+19410618, 0.29, 0.16, 0.07, 0.000
+19410619, -0.19, -0.17, 0.14, 0.000
+19410620, -0.87, 0.36, -0.18, 0.000
+19410621, 0.18, -0.11, 0.22, 0.000
+19410623, 1.29, 0.18, 0.33, 0.000
+19410624, -0.46, -0.23, 0.40, 0.000
+19410625, 0.19, -0.26, 0.28, 0.000
+19410626, 0.48, 0.04, 0.30, 0.000
+19410627, -0.37, -0.06, -0.04, 0.000
+19410628, -0.06, 0.05, -0.21, 0.000
+19410630, -0.28, 0.12, 0.03, 0.000
+19410701, -0.23, -0.07, -0.23, 0.001
+19410702, 0.70, -0.63, 0.22, 0.001
+19410703, 0.44, -0.22, 0.84, 0.001
+19410705, 0.19, 0.42, 0.27, 0.001
+19410707, 1.40, 0.17, 0.37, 0.001
+19410708, 1.52, 1.06, 0.41, 0.001
+19410709, 0.03, 0.90, -0.66, 0.001
+19410710, 0.06, 0.16, 0.32, 0.001
+19410711, 0.13, 0.38, 0.38, 0.001
+19410712, 0.04, 0.12, -0.08, 0.001
+19410714, 0.17, -0.18, 1.00, 0.001
+19410715, 0.20, 0.25, -0.02, 0.001
+19410716, -0.41, -0.24, -0.35, 0.001
+19410717, -0.61, 0.22, -0.41, 0.001
+19410718, 0.25, -0.23, -0.26, 0.001
+19410719, 0.34, 0.20, 0.05, 0.001
+19410721, 1.34, 0.08, 1.96, 0.001
+19410722, -0.01, 0.09, 0.37, 0.001
+19410723, -0.13, 0.23, 0.22, 0.001
+19410724, -0.27, 0.53, 0.13, 0.001
+19410725, -0.16, 0.41, -0.04, 0.001
+19410726, 0.48, 0.34, 0.93, 0.001
+19410728, 0.83, 0.95, 1.01, 0.001
+19410729, -0.32, -0.15, -0.42, 0.001
+19410730, -0.19, 0.02, 0.61, 0.001
+19410731, -0.07, 0.38, -0.01, 0.001
+19410801, -0.27, -0.10, 0.53, 0.000
+19410802, -0.05, 0.53, -0.84, 0.000
+19410804, 0.15, -0.37, 0.22, 0.000
+19410805, -0.10, -0.46, -0.24, 0.000
+19410806, -0.01, 0.19, -0.35, 0.000
+19410807, 0.02, -0.11, -0.05, 0.000
+19410808, -0.65, 0.10, -0.34, 0.000
+19410809, -0.70, -0.27, -0.51, 0.000
+19410811, -0.38, -0.87, -0.54, 0.000
+19410812, -0.13, 0.03, 0.38, 0.000
+19410813, -0.09, 0.33, -0.27, 0.000
+19410814, 0.20, -0.17, 1.08, 0.000
+19410815, -0.76, 0.10, -0.47, 0.000
+19410816, 0.21, -0.36, 0.34, 0.000
+19410818, 0.40, 0.34, 0.08, 0.000
+19410819, 0.04, 0.05, -0.09, 0.000
+19410820, 0.45, -0.12, 0.62, 0.000
+19410821, 0.01, 0.31, 0.11, 0.000
+19410822, -0.04, -0.04, -0.47, 0.000
+19410823, 0.06, 0.02, 0.00, 0.000
+19410825, 0.08, -0.19, -0.17, 0.000
+19410826, 0.57, 0.29, -0.15, 0.000
+19410827, 0.19, -0.13, 0.23, 0.000
+19410828, 0.33, 0.19, -0.41, 0.000
+19410829, 0.07, 0.15, 0.03, 0.000
+19410830, 0.24, 0.17, 0.20, 0.000
+19410902, 0.30, -0.22, -0.27, 0.000
+19410903, -0.34, -0.04, -0.03, 0.000
+19410904, -0.12, 0.04, -0.40, 0.000
+19410905, -0.12, 0.35, 0.15, 0.000
+19410906, 0.10, 0.13, -0.12, 0.000
+19410908, 0.18, 0.17, 0.17, 0.000
+19410909, -0.28, -0.28, -0.33, 0.000
+19410910, -0.58, 0.22, -0.17, 0.000
+19410911, 0.60, -0.26, 1.24, 0.000
+19410912, 0.12, 0.21, 0.01, 0.000
+19410913, 0.11, 0.04, -0.02, 0.000
+19410915, 0.05, 0.04, 0.01, 0.000
+19410916, 0.22, -0.03, 0.06, 0.000
+19410917, 1.36, -0.02, 0.05, 0.000
+19410918, -0.39, 0.45, 0.19, 0.000
+19410919, -0.82, -0.15, -0.99, 0.000
+19410920, -0.35, 0.04, -0.52, 0.000
+19410922, 0.22, -0.52, 0.42, 0.000
+19410923, 0.32, -0.35, 0.13, 0.000
+19410924, -0.48, 0.26, -0.57, 0.000
+19410925, -1.49, -1.43, -0.49, 0.000
+19410926, -0.38, -0.09, 0.33, 0.000
+19410927, 0.35, 0.16, 0.58, 0.000
+19410929, 0.08, 0.21, 0.20, 0.000
+19410930, 0.50, 0.09, 0.14, 0.000
+19411001, -0.01, -0.09, -0.14, 0.000
+19411002, -0.26, 0.34, 0.30, 0.000
+19411003, -0.16, -0.30, 0.38, 0.000
+19411004, 0.15, -0.14, 0.26, 0.000
+19411006, -0.17, 0.04, -0.17, 0.000
+19411007, -1.10, -0.37, -0.46, 0.000
+19411008, -0.05, -0.15, -0.04, 0.000
+19411009, -1.26, -0.53, -0.84, 0.000
+19411010, -0.01, -0.03, 0.41, 0.000
+19411011, 0.08, 0.14, 0.79, 0.000
+19411014, -0.46, -0.30, -0.56, 0.000
+19411015, -0.52, 0.02, 0.02, 0.000
+19411016, -1.67, -0.72, -0.77, 0.000
+19411017, 0.33, -0.51, 0.26, 0.000
+19411018, 0.95, 0.49, 0.81, 0.000
+19411020, 0.06, -0.07, 0.23, 0.000
+19411021, 0.76, -0.03, 0.25, 0.000
+19411022, -0.44, 0.28, -0.38, 0.000
+19411023, 0.33, -0.36, 0.97, 0.000
+19411024, 0.53, 0.33, 0.09, 0.000
+19411025, -0.29, 0.43, -0.37, 0.000
+19411027, -0.88, -0.26, -0.19, 0.000
+19411028, 0.03, 0.09, 0.52, 0.000
+19411029, -0.24, -0.24, 0.13, 0.000
+19411030, -0.10, 0.13, 0.61, 0.000
+19411031, -0.95, -0.27, -0.31, 0.000
+19411101, 0.31, 0.09, 0.37, 0.000
+19411103, 0.47, -0.59, 0.26, 0.000
+19411105, 0.70, -0.36, 0.62, 0.000
+19411106, -0.76, -0.08, -0.36, 0.000
+19411107, -0.19, 0.52, -0.45, 0.000
+19411108, 0.08, -0.17, 0.03, 0.000
+19411110, -0.59, 0.07, -0.83, 0.000
+19411112, -1.67, -0.31, -0.66, 0.000
+19411113, 0.08, -0.73, 0.44, 0.000
+19411114, 0.78, -0.24, 0.07, 0.000
+19411115, 0.14, 0.29, 0.42, 0.000
+19411117, -0.21, -0.23, -0.20, 0.000
+19411118, -0.13, -0.11, 0.03, 0.000
+19411119, 0.46, 0.10, 0.21, 0.000
+19411121, 0.56, 0.22, 0.81, 0.000
+19411122, 0.16, 0.05, -0.27, 0.000
+19411124, 0.19, 0.03, 0.24, 0.000
+19411125, -0.52, -0.27, -0.42, 0.000
+19411126, -0.77, 0.17, -0.72, 0.000
+19411127, -0.23, 0.16, -0.17, 0.000
+19411128, -0.58, -0.12, -0.26, 0.000
+19411129, -0.23, 0.38, 0.29, 0.000
+19411201, -0.35, -0.14, 0.13, 0.000
+19411202, 1.53, -0.79, 0.27, 0.000
+19411203, 0.81, -0.55, -0.29, 0.000
+19411204, 0.29, 0.32, 0.12, 0.000
+19411205, -0.37, -0.13, -0.37, 0.000
+19411206, 0.58, -0.06, -0.29, 0.000
+19411208, -4.15, -1.80, -2.84, 0.000
+19411209, -3.49, -2.30, -3.78, 0.000
+19411210, -0.70, -0.11, -0.09, 0.000
+19411211, 1.95, 1.53, 1.63, 0.000
+19411212, -0.36, 1.13, -0.68, 0.000
+19411213, 0.30, 0.31, -0.23, 0.000
+19411215, 0.51, -0.35, 0.52, 0.000
+19411216, -0.07, -0.13, 0.86, 0.000
+19411217, -1.81, -0.38, -0.52, 0.000
+19411218, -0.83, -0.60, 0.73, 0.000
+19411219, -0.02, 0.42, 0.77, 0.000
+19411220, -0.19, 0.12, -0.15, 0.000
+19411222, -0.95, 0.38, -0.52, 0.000
+19411223, -0.41, -0.09, 0.10, 0.000
+19411224, 0.29, 0.22, -0.15, 0.000
+19411226, -0.44, -0.24, -0.29, 0.000
+19411227, 0.44, 0.16, 0.31, 0.000
+19411229, -0.48, -0.89, -0.88, 0.000
+19411230, 3.65, -0.27, 0.81, 0.000
+19411231, -0.47, 1.45, -1.20, 0.000
+19420102, 1.87, 1.89, 2.52, 0.001
+19420103, 1.19, 1.57, 1.10, 0.001
+19420105, 1.00, 0.31, -0.54, 0.001
+19420106, -0.40, 0.37, -1.01, 0.001
+19420107, -0.66, 0.35, 0.94, 0.001
+19420108, -1.36, 1.05, 0.54, 0.001
+19420109, -0.24, 0.95, 1.13, 0.001
+19420110, -0.47, 0.14, -0.01, 0.001
+19420112, 0.42, 0.08, 0.62, 0.001
+19420113, 1.71, -0.60, 0.46, 0.001
+19420114, 0.24, 0.31, 0.00, 0.001
+19420115, -0.13, 0.06, 0.11, 0.001
+19420116, -0.90, 0.44, -0.01, 0.001
+19420117, -0.32, -0.07, 0.58, 0.001
+19420119, 0.27, 0.00, 0.96, 0.001
+19420120, -0.11, 0.14, 0.91, 0.001
+19420121, -1.30, -0.37, -0.58, 0.001
+19420122, 0.01, 0.04, 0.02, 0.001
+19420123, 0.16, 0.02, 0.66, 0.001
+19420124, 0.34, 0.07, 0.60, 0.001
+19420126, 0.98, 0.04, 0.93, 0.001
+19420127, 0.12, 0.42, -0.21, 0.001
+19420128, -0.46, -0.03, -0.05, 0.001
+19420129, -0.11, 0.02, 0.22, 0.001
+19420130, -0.55, 0.22, 0.05, 0.001
+19420131, -0.45, -0.22, -0.31, 0.001
+19420202, 0.33, -0.16, -0.10, 0.001
+19420203, 0.31, -0.27, 0.05, 0.001
+19420204, 0.63, 0.20, 0.61, 0.001
+19420205, -0.17, 0.40, 0.39, 0.001
+19420206, -0.83, 0.44, -0.28, 0.001
+19420207, 0.02, -0.10, 0.11, 0.001
+19420209, -1.11, 0.02, -0.85, 0.001
+19420210, -1.42, -0.68, -1.33, 0.001
+19420211, -0.21, -0.07, 0.30, 0.001
+19420213, 0.09, 0.44, -0.07, 0.001
+19420214, 0.52, -0.04, 0.51, 0.001
+19420216, -0.23, 0.04, 0.20, 0.001
+19420217, -1.64, 0.54, -0.65, 0.001
+19420218, -0.02, 0.07, 0.07, 0.001
+19420219, 0.28, 0.17, 0.27, 0.001
+19420220, -0.27, 0.46, 0.17, 0.001
+19420221, 0.23, 0.08, -0.22, 0.001
+19420224, 0.26, 0.11, 0.14, 0.001
+19420225, -0.55, 0.33, 0.02, 0.001
+19420226, 0.44, -0.27, 0.07, 0.001
+19420227, 0.78, -0.18, -0.18, 0.001
+19420228, 0.15, 0.23, -0.29, 0.001
+19420302, -0.97, 0.33, -0.43, 0.000
+19420303, 1.17, -0.81, 0.02, 0.000
+19420304, -0.89, 0.48, -0.09, 0.000
+19420305, -1.50, 0.36, -0.59, 0.000
+19420306, -2.50, 0.45, -0.46, 0.000
+19420307, 0.53, -0.25, 0.79, 0.000
+19420309, -0.12, 0.18, -0.09, 0.000
+19420310, -0.75, 0.38, -0.11, 0.000
+19420311, -1.65, 0.70, -0.54, 0.000
+19420312, -0.01, -0.31, 0.68, 0.000
+19420313, 0.47, 0.15, -0.40, 0.000
+19420314, 0.02, 0.42, -0.20, 0.000
+19420316, 0.87, -0.87, 0.13, 0.000
+19420317, 1.60, -0.71, 1.17, 0.000
+19420318, -0.63, 0.56, -0.29, 0.000
+19420319, -0.18, -0.04, 0.45, 0.000
+19420320, -0.77, 0.48, -0.28, 0.000
+19420321, 0.09, -0.09, -0.04, 0.000
+19420323, 0.18, -0.07, 0.34, 0.000
+19420324, 0.61, -0.16, -0.20, 0.000
+19420325, -0.58, 0.07, -0.29, 0.000
+19420326, -0.40, -0.08, 0.29, 0.000
+19420327, -0.98, 0.24, 0.01, 0.000
+19420328, -0.01, 0.04, 0.13, 0.000
+19420330, 0.12, 0.07, -0.03, 0.000
+19420331, -0.43, 0.34, -0.55, 0.000
+19420401, 0.40, -0.46, 0.25, 0.000
+19420402, 0.78, -0.03, 0.31, 0.000
+19420404, 0.13, 0.32, -0.34, 0.000
+19420406, 1.16, -0.82, 0.36, 0.000
+19420407, -0.25, 0.21, 0.30, 0.000
+19420408, -0.58, 0.02, -0.21, 0.000
+19420409, -1.36, 0.09, -0.58, 0.000
+19420410, -0.03, -0.08, -0.10, 0.000
+19420411, -0.28, 0.23, 0.23, 0.000
+19420413, -0.04, -0.20, 0.30, 0.000
+19420414, -1.64, -0.40, -1.78, 0.000
+19420415, 0.17, -0.39, 0.29, 0.000
+19420416, -0.11, 0.33, -0.01, 0.000
+19420417, -1.55, 0.34, 0.43, 0.000
+19420418, 0.67, -0.17, 0.62, 0.000
+19420420, 0.36, -0.17, -0.28, 0.000
+19420421, 0.22, 0.48, 0.39, 0.000
+19420422, -0.28, 0.23, 0.25, 0.000
+19420423, -2.20, 0.43, -0.30, 0.000
+19420424, -0.84, 0.28, 0.02, 0.000
+19420425, 0.20, 0.40, 0.01, 0.000
+19420427, -0.66, -0.19, 0.91, 0.000
+19420428, -0.96, -0.05, 0.44, 0.000
+19420429, 1.52, -0.92, 0.68, 0.000
+19420430, 0.81, 0.04, 0.07, 0.000
+19420501, 0.70, -0.55, -0.24, 0.001
+19420502, 0.68, -0.23, 0.55, 0.001
+19420504, 0.20, -0.37, 0.11, 0.001
+19420505, 0.33, -0.32, -0.21, 0.001
+19420506, -0.25, -0.34, 0.43, 0.001
+19420507, 0.81, -0.35, -0.28, 0.001
+19420508, 0.21, 0.28, 0.14, 0.001
+19420509, 0.56, 0.17, -0.35, 0.001
+19420511, 0.59, -0.47, -0.14, 0.001
+19420512, -0.65, 0.43, -0.47, 0.001
+19420513, -1.23, 0.26, -0.15, 0.001
+19420514, 0.20, -0.59, -0.25, 0.001
+19420515, 0.76, -0.53, 0.13, 0.001
+19420516, 0.70, -0.13, 0.11, 0.001
+19420518, -0.11, 0.07, -0.17, 0.001
+19420519, -0.59, 0.50, -0.11, 0.001
+19420520, 0.14, -0.40, -1.20, 0.001
+19420521, 1.63, -0.98, 0.39, 0.001
+19420522, -0.20, 0.19, 0.30, 0.001
+19420523, 0.06, 0.41, -0.75, 0.001
+19420525, -0.20, 0.10, -0.25, 0.001
+19420526, 0.08, 0.07, -0.04, 0.001
+19420527, 1.49, -0.88, 0.17, 0.001
+19420528, 0.13, 0.04, -0.29, 0.001
+19420529, -0.20, 0.50, 0.03, 0.001
+19420601, 0.40, 0.00, 0.01, 0.001
+19420602, -0.12, 0.21, -0.60, 0.001
+19420603, 0.66, -0.19, 0.09, 0.001
+19420604, 1.58, -0.32, -0.72, 0.001
+19420605, 0.53, 0.11, 0.59, 0.001
+19420606, 0.43, -0.07, 0.16, 0.001
+19420608, 0.81, -0.52, -0.30, 0.001
+19420609, -0.27, 0.16, -0.35, 0.001
+19420610, -0.92, 0.13, 0.11, 0.001
+19420611, 0.20, -0.05, -0.09, 0.001
+19420612, -0.46, 0.18, 0.01, 0.001
+19420613, 0.40, -0.10, 0.11, 0.001
+19420615, 0.21, -0.21, -0.25, 0.001
+19420616, 0.08, 0.11, 0.33, 0.001
+19420617, 1.32, -0.99, 0.36, 0.001
+19420618, -0.16, 0.77, -0.07, 0.001
+19420619, -0.92, 0.20, -0.50, 0.001
+19420620, -0.33, 0.21, 0.52, 0.001
+19420622, -1.32, -0.50, -0.14, 0.001
+19420623, 0.13, 0.07, 0.23, 0.001
+19420624, -0.26, 0.24, -0.27, 0.001
+19420625, 0.08, -0.05, 0.11, 0.001
+19420626, -0.10, 0.02, 0.43, 0.001
+19420627, 0.32, -0.03, 0.42, 0.001
+19420629, 0.26, -0.38, 0.14, 0.001
+19420630, 0.13, -0.31, 0.11, 0.001
+19420701, -0.38, 0.42, -0.19, 0.001
+19420702, 1.02, -0.58, 0.32, 0.001
+19420703, 0.92, -0.04, 0.47, 0.001
+19420706, 1.33, -0.63, 0.04, 0.001
+19420707, -0.21, 0.50, 0.06, 0.001
+19420708, 1.95, -0.85, 0.58, 0.001
+19420709, 1.10, 0.84, 0.13, 0.001
+19420710, -0.21, 0.02, 0.03, 0.001
+19420711, -0.05, 0.06, 0.09, 0.001
+19420713, -0.55, 0.05, 0.04, 0.001
+19420714, 0.57, -0.53, -0.18, 0.001
+19420715, 0.25, 0.51, -0.15, 0.001
+19420716, -0.03, -0.18, -0.04, 0.001
+19420717, -0.83, 0.40, -0.16, 0.001
+19420718, -0.25, 0.06, 0.12, 0.001
+19420720, 0.49, -0.60, 0.03, 0.001
+19420721, 0.23, -0.16, -0.15, 0.001
+19420722, -0.12, 0.16, 0.34, 0.001
+19420723, -1.20, 0.34, -0.36, 0.001
+19420724, -0.02, -0.20, 0.59, 0.001
+19420725, 0.11, 0.03, 0.39, 0.001
+19420727, 0.08, 0.05, 0.17, 0.001
+19420728, -0.16, -0.01, 0.28, 0.001
+19420729, -1.10, 0.67, -0.53, 0.001
+19420730, 0.10, -0.12, 0.22, 0.001
+19420731, 0.44, -0.38, 0.24, 0.001
+19420801, 0.08, 0.39, 0.52, 0.001
+19420803, 0.28, -0.62, 0.09, 0.001
+19420804, -0.17, 0.23, 0.18, 0.001
+19420805, -0.71, 0.26, -0.86, 0.001
+19420806, -0.09, -0.10, -0.20, 0.001
+19420807, 0.26, -0.22, -0.01, 0.001
+19420808, -0.11, 0.22, -0.31, 0.001
+19420810, -0.08, -0.14, 0.14, 0.001
+19420811, 0.33, -0.33, 0.09, 0.001
+19420812, 0.12, -0.27, 0.61, 0.001
+19420813, 0.44, -0.26, 0.21, 0.001
+19420814, 0.50, 0.20, 0.25, 0.001
+19420815, 0.25, -0.07, -0.13, 0.001
+19420817, 0.35, 0.04, 0.69, 0.001
+19420818, 0.73, -0.42, 0.36, 0.001
+19420819, 0.09, 0.44, 0.23, 0.001
+19420820, -0.21, 0.29, 0.47, 0.001
+19420821, 0.31, -0.03, 0.32, 0.001
+19420822, 0.14, 0.08, 0.30, 0.001
+19420824, 0.00, -0.25, -0.42, 0.001
+19420825, -0.57, 0.09, -0.39, 0.001
+19420826, -1.07, 0.20, -0.85, 0.001
+19420827, 0.40, 0.11, 0.29, 0.001
+19420828, 0.34, 0.00, -0.14, 0.001
+19420829, 0.08, 0.22, -0.21, 0.001
+19420831, 0.10, -0.10, 0.08, 0.001
+19420901, -0.08, 0.01, -0.32, 0.001
+19420902, 0.02, 0.30, -0.07, 0.001
+19420903, 0.07, -0.02, 0.16, 0.001
+19420904, 0.01, -0.15, 0.60, 0.001
+19420905, 0.16, 0.02, 0.29, 0.001
+19420908, 0.56, -0.47, 0.04, 0.001
+19420909, -0.14, 0.17, -0.14, 0.001
+19420910, -0.55, 0.34, -0.12, 0.001
+19420911, -0.46, 0.03, -0.06, 0.001
+19420912, 0.03, 0.17, -0.01, 0.001
+19420914, 0.00, 0.07, 0.43, 0.001
+19420915, 0.40, -0.14, 0.05, 0.001
+19420916, 0.16, 0.04, 0.14, 0.001
+19420917, -0.04, 0.08, 0.89, 0.001
+19420918, 0.58, -0.13, -0.23, 0.001
+19420919, -0.03, 0.31, 0.58, 0.001
+19420921, 0.08, 0.12, -0.16, 0.001
+19420922, 0.33, -0.21, 0.46, 0.001
+19420923, 0.54, 0.17, 0.00, 0.001
+19420924, 1.12, 0.27, 0.77, 0.001
+19420925, 0.30, 0.38, -0.32, 0.001
+19420926, -0.13, -0.17, -0.46, 0.001
+19420928, -0.01, -0.17, 0.12, 0.001
+19420929, -0.20, -0.25, 0.00, 0.001
+19420930, -0.11, -0.14, -0.32, 0.001
+19421001, 0.65, -0.12, 1.18, 0.001
+19421002, 1.20, 0.11, 0.88, 0.001
+19421003, 0.46, 0.11, 0.67, 0.001
+19421005, 0.69, -0.07, -0.01, 0.001
+19421006, 0.04, -0.32, 0.68, 0.001
+19421007, 0.19, 0.54, -0.29, 0.001
+19421008, 1.56, 0.27, 0.73, 0.001
+19421009, 0.38, 0.25, 0.60, 0.001
+19421010, 0.88, -0.63, 0.48, 0.001
+19421013, 0.53, 0.07, 0.43, 0.001
+19421014, -0.31, 0.25, -0.14, 0.001
+19421015, -1.21, 0.49, -0.43, 0.001
+19421016, 0.41, 0.33, 0.15, 0.001
+19421017, -0.13, 0.40, -0.45, 0.001
+19421019, 0.19, -0.28, 0.07, 0.001
+19421020, 1.05, -0.27, 0.04, 0.001
+19421021, 0.01, 0.55, -0.25, 0.001
+19421022, 0.17, -0.01, -0.05, 0.001
+19421023, -0.07, 0.30, 0.18, 0.001
+19421024, 0.31, -0.05, 0.43, 0.001
+19421026, 0.30, -0.02, 0.67, 0.001
+19421027, -1.01, -0.24, -0.99, 0.001
+19421028, -0.60, -0.08, -0.08, 0.001
+19421029, 0.06, 0.01, 0.26, 0.001
+19421030, 0.35, -0.21, 0.42, 0.001
+19421031, 0.56, 0.12, 0.78, 0.001
+19421102, 0.65, 0.14, 0.44, 0.001
+19421104, -0.26, 0.09, -0.64, 0.001
+19421105, 0.12, -0.11, -0.11, 0.001
+19421106, 1.06, 0.26, -0.29, 0.001
+19421107, 0.68, -0.16, 0.28, 0.001
+19421109, 0.31, 0.22, -0.35, 0.001
+19421110, -0.52, -0.05, 0.00, 0.001
+19421112, 0.04, -0.36, -0.25, 0.001
+19421113, -0.34, 0.21, -0.44, 0.001
+19421114, 0.02, 0.00, -0.10, 0.001
+19421116, -0.86, -0.09, -0.61, 0.001
+19421117, -0.90, -0.27, -0.32, 0.001
+19421118, 0.19, -0.25, -0.37, 0.001
+19421119, 0.13, -0.08, -0.15, 0.001
+19421120, 0.84, -0.24, 0.27, 0.001
+19421121, 0.16, 0.27, -0.08, 0.001
+19421123, -1.11, 0.31, -0.38, 0.001
+19421124, -0.21, -0.57, -0.57, 0.001
+19421125, -0.08, -0.43, 0.37, 0.001
+19421127, 0.39, -0.13, -0.12, 0.001
+19421128, 0.08, 0.23, -0.20, 0.001
+19421130, -0.21, -0.53, -0.71, 0.001
+19421201, 0.13, -0.09, -0.19, 0.001
+19421202, 0.36, -0.19, 0.04, 0.001
+19421203, 0.28, -0.08, 0.25, 0.001
+19421204, -0.13, -0.14, -0.11, 0.001
+19421205, 0.12, -0.05, 0.24, 0.001
+19421207, -0.35, -0.08, -1.01, 0.001
+19421208, 0.52, -0.31, 0.29, 0.001
+19421209, -0.05, -0.34, -0.32, 0.001
+19421210, 0.11, 0.01, -0.35, 0.001
+19421211, 0.09, -0.04, -0.07, 0.001
+19421212, 0.23, 0.17, 0.55, 0.001
+19421214, 0.09, 0.11, -0.86, 0.001
+19421215, 0.37, -0.32, 0.32, 0.001
+19421216, 0.55, -0.19, 0.59, 0.001
+19421217, 1.81, -0.15, 2.05, 0.001
+19421218, -0.02, 0.72, -0.52, 0.001
+19421219, -0.05, -0.22, 0.00, 0.001
+19421221, -0.08, -0.10, -0.29, 0.001
+19421222, -0.03, -0.12, -0.43, 0.001
+19421223, 0.21, -0.31, -0.61, 0.001
+19421224, 0.46, -0.54, 0.38, 0.001
+19421226, 0.24, 0.12, 0.23, 0.001
+19421228, -0.85, -0.08, -0.90, 0.001
+19421229, -0.20, -0.55, -0.21, 0.001
+19421230, 1.02, 0.01, 0.04, 0.001
+19421231, 0.22, 0.34, 1.54, 0.001
+19430102, 0.78, 0.99, 0.60, 0.001
+19430104, 0.85, 0.62, 1.30, 0.001
+19430105, -0.36, 0.56, -0.36, 0.001
+19430106, 0.04, 0.18, -0.05, 0.001
+19430107, -0.04, 0.41, 0.35, 0.001
+19430108, 0.21, 0.22, 0.56, 0.001
+19430109, 0.24, 0.53, -0.13, 0.001
+19430111, 0.30, 0.19, 0.04, 0.001
+19430112, -0.24, 0.15, 0.01, 0.001
+19430113, 0.27, 0.19, 0.47, 0.001
+19430114, 0.51, 0.53, 1.11, 0.001
+19430115, 0.93, 0.44, 0.72, 0.001
+19430116, 0.19, 0.58, 0.31, 0.001
+19430118, -0.06, 0.40, 0.36, 0.001
+19430119, -0.87, -0.54, -1.20, 0.001
+19430120, 0.00, 0.29, 0.35, 0.001
+19430121, 1.17, 0.88, 0.24, 0.001
+19430122, 0.15, -0.02, -0.18, 0.001
+19430123, 0.28, 0.06, 0.03, 0.001
+19430125, 0.91, 0.01, 0.13, 0.001
+19430126, 0.48, -0.07, 0.20, 0.001
+19430127, -0.21, 0.32, 0.80, 0.001
+19430128, 0.24, 0.35, 1.15, 0.001
+19430129, 0.83, 0.46, 0.38, 0.001
+19430130, 0.33, 0.14, 0.10, 0.001
+19430201, 0.36, -0.03, 0.38, 0.001
+19430202, 0.04, 0.47, -0.28, 0.001
+19430203, -0.45, -0.57, -0.24, 0.001
+19430204, -0.08, 0.55, 0.18, 0.001
+19430205, 0.58, 0.27, 0.09, 0.001
+19430206, 0.08, 0.01, -0.02, 0.001
+19430208, -0.23, -0.44, -0.13, 0.001
+19430209, 0.70, 0.34, 0.17, 0.001
+19430210, 0.99, 0.81, 1.15, 0.001
+19430211, 0.26, 0.97, 0.79, 0.001
+19430213, 0.47, 0.59, 0.71, 0.001
+19430215, 0.83, 0.87, 1.05, 0.001
+19430216, -0.18, -0.20, 0.02, 0.001
+19430217, 0.17, 0.03, 0.20, 0.001
+19430218, -1.08, -0.48, -1.82, 0.001
+19430219, -0.10, -0.28, 0.56, 0.001
+19430220, 1.14, 0.50, 0.69, 0.001
+19430223, 0.79, 0.14, 0.89, 0.001
+19430224, 0.68, 0.03, 0.52, 0.001
+19430225, 0.61, 0.34, 0.98, 0.001
+19430226, 0.07, 0.28, 0.19, 0.001
+19430227, 0.36, 0.24, -0.06, 0.001
+19430301, -0.55, 0.26, -0.26, 0.001
+19430302, -0.61, 0.05, 0.16, 0.001
+19430303, 1.26, 0.49, 2.11, 0.001
+19430304, 0.32, 0.22, -0.35, 0.001
+19430305, 0.33, 0.34, -0.19, 0.001
+19430306, 0.21, 0.17, -0.07, 0.001
+19430308, -0.16, 0.34, -0.04, 0.001
+19430309, -0.66, -0.16, -0.43, 0.001
+19430310, -0.40, 0.21, -0.40, 0.001
+19430311, 1.12, 0.75, 1.73, 0.001
+19430312, 0.61, 0.58, 1.16, 0.001
+19430313, 0.09, 0.16, -0.06, 0.001
+19430315, -0.01, -0.22, -0.35, 0.001
+19430316, -0.37, -0.18, -0.37, 0.001
+19430317, -0.69, -0.69, -0.97, 0.001
+19430318, 0.11, 0.67, 0.59, 0.001
+19430319, -0.29, 0.73, -0.99, 0.001
+19430320, -0.09, -0.08, 0.04, 0.001
+19430322, 0.29, 0.21, 1.16, 0.001
+19430323, 0.47, 0.59, 0.08, 0.001
+19430324, 0.46, 0.43, -0.14, 0.001
+19430325, 1.83, 0.19, 0.82, 0.001
+19430326, 0.72, -0.19, 0.29, 0.001
+19430327, 0.15, -0.39, -0.30, 0.001
+19430329, 1.27, 0.43, 1.46, 0.001
+19430330, 0.71, -0.54, 0.25, 0.001
+19430331, -0.16, 0.33, 0.26, 0.001
+19430401, 0.11, 0.43, 1.24, 0.001
+19430402, -0.42, 0.02, 0.61, 0.001
+19430403, 0.14, 0.66, 1.13, 0.001
+19430405, 1.39, 0.79, 2.12, 0.001
+19430406, 0.34, -0.06, -0.23, 0.001
+19430407, -0.52, -0.58, -0.21, 0.001
+19430408, -0.40, 0.72, -0.19, 0.001
+19430409, -3.65, -1.67, -3.57, 0.001
+19430410, -0.08, -0.48, 0.72, 0.001
+19430412, -0.06, 0.53, 0.03, 0.001
+19430413, -0.15, -0.20, -0.45, 0.001
+19430414, 1.35, 1.06, 1.94, 0.001
+19430415, 0.83, 0.27, 0.90, 0.001
+19430416, -0.19, 0.09, -0.37, 0.001
+19430417, 0.40, -0.06, 0.45, 0.001
+19430419, 0.00, 0.35, 0.19, 0.001
+19430420, -0.44, 0.15, -0.22, 0.001
+19430421, 0.89, 0.19, 0.94, 0.001
+19430422, 0.33, 0.05, 0.46, 0.001
+19430424, 0.16, -0.11, 0.64, 0.001
+19430426, 0.01, 0.06, -0.25, 0.001
+19430427, -0.11, -0.39, -0.86, 0.001
+19430428, -0.12, -0.05, -0.16, 0.001
+19430429, 1.02, 0.18, 1.52, 0.001
+19430430, 0.08, 0.18, -0.31, 0.001
+19430501, 0.58, 0.35, 0.99, 0.001
+19430503, 1.32, 0.56, 1.36, 0.001
+19430504, 0.52, 0.94, -0.57, 0.001
+19430505, 0.54, 0.02, 1.23, 0.001
+19430506, 0.33, 0.48, 0.05, 0.001
+19430507, -1.25, -0.27, -1.69, 0.001
+19430508, 1.01, 0.56, 1.48, 0.001
+19430510, 0.38, 1.19, 0.28, 0.001
+19430511, -0.34, -0.01, -0.33, 0.001
+19430512, -0.35, -0.55, -0.36, 0.001
+19430513, -0.33, -0.21, 0.00, 0.001
+19430514, -0.96, -0.73, -0.83, 0.001
+19430515, 0.34, 0.85, 0.62, 0.001
+19430517, -0.01, 0.30, -0.36, 0.001
+19430518, 0.66, -0.17, 0.02, 0.001
+19430519, 1.06, 0.77, 1.15, 0.001
+19430520, -0.08, 0.23, -0.18, 0.001
+19430521, -0.04, -0.57, -0.14, 0.001
+19430522, 0.02, 0.65, 0.05, 0.001
+19430524, -0.07, -0.29, -0.61, 0.001
+19430525, 0.25, -0.52, 0.98, 0.001
+19430526, 0.88, -0.16, 0.02, 0.001
+19430527, 0.35, 0.55, -0.25, 0.001
+19430528, 0.27, 0.00, 0.12, 0.001
+19430529, 0.56, 0.16, 0.13, 0.001
+19430601, 0.37, -0.08, 0.09, 0.001
+19430602, -0.08, -0.24, -0.75, 0.001
+19430603, 0.55, -0.02, 0.53, 0.001
+19430604, -0.30, 0.22, -0.23, 0.001
+19430605, 0.66, 0.61, 0.18, 0.001
+19430607, -0.75, -0.06, -0.75, 0.001
+19430608, -0.57, -0.11, -0.74, 0.001
+19430609, 0.20, -0.07, 0.25, 0.001
+19430610, 0.21, 0.25, -0.50, 0.001
+19430611, -0.30, 0.17, -0.31, 0.001
+19430612, -0.15, -0.25, -0.38, 0.001
+19430614, -1.61, -1.12, -1.50, 0.001
+19430615, 0.23, -0.16, 0.68, 0.001
+19430616, 0.41, 0.16, 0.63, 0.001
+19430617, 0.16, 0.23, 0.23, 0.001
+19430618, -0.17, 0.12, -0.34, 0.001
+19430619, -0.02, -0.29, -0.01, 0.001
+19430621, -0.72, -0.63, -0.80, 0.001
+19430622, 0.21, 0.02, 0.45, 0.001
+19430623, 0.78, 0.42, 0.75, 0.001
+19430624, 0.54, -0.08, -0.02, 0.001
+19430625, 1.12, 0.24, 0.99, 0.001
+19430626, 0.42, 0.02, 0.32, 0.001
+19430628, 0.44, -0.07, 0.30, 0.001
+19430629, -0.33, -0.26, -0.16, 0.001
+19430630, 0.55, 0.01, 0.47, 0.001
+19430701, 0.17, 0.11, 0.96, 0.001
+19430702, 0.02, 0.21, -0.37, 0.001
+19430703, 0.15, 0.01, 0.13, 0.001
+19430706, 0.00, 0.00, -0.54, 0.001
+19430707, -0.23, -0.33, -0.38, 0.001
+19430708, 0.20, -0.11, 0.45, 0.001
+19430709, 0.37, -0.16, 0.62, 0.001
+19430710, 0.13, 0.01, 0.08, 0.001
+19430712, 0.51, -0.44, 0.58, 0.001
+19430713, 0.75, 0.09, 0.44, 0.001
+19430714, 0.56, -0.25, 0.61, 0.001
+19430715, -0.67, 0.14, -0.99, 0.001
+19430716, -0.09, -0.33, 0.41, 0.001
+19430717, 0.09, 0.04, 0.10, 0.001
+19430719, -0.06, -0.16, -0.55, 0.001
+19430720, -0.71, -0.25, -1.27, 0.001
+19430721, 0.11, -0.21, 0.65, 0.001
+19430722, 0.18, 0.33, 0.73, 0.001
+19430723, 0.02, 0.05, 0.02, 0.001
+19430724, 0.09, 0.03, 0.09, 0.001
+19430726, -1.50, -0.51, -2.09, 0.001
+19430727, -2.75, 0.11, -1.60, 0.001
+19430728, -0.57, -1.26, 0.79, 0.001
+19430729, 1.61, 0.99, 1.48, 0.001
+19430730, -1.83, -0.38, -1.56, 0.001
+19430731, -1.31, -0.27, -0.97, 0.001
+19430802, -1.77, 0.26, -1.13, 0.001
+19430803, 1.48, -1.13, 0.56, 0.001
+19430804, 0.85, 0.41, 0.34, 0.001
+19430805, -0.26, 0.01, -0.32, 0.001
+19430806, -0.86, 0.13, -0.75, 0.001
+19430807, -0.11, -0.14, -0.34, 0.001
+19430809, 0.02, -0.19, 0.46, 0.001
+19430810, 1.08, 0.09, 0.83, 0.001
+19430811, 0.67, 0.32, 0.17, 0.001
+19430812, -0.45, 0.05, 0.10, 0.001
+19430813, 0.55, -0.16, -0.37, 0.001
+19430814, 0.12, 0.24, 0.60, 0.001
+19430816, -0.05, 0.41, 0.08, 0.001
+19430817, 0.40, -0.32, -0.06, 0.001
+19430818, 0.43, -0.21, -0.32, 0.001
+19430819, -0.03, 0.02, -0.47, 0.001
+19430820, -0.91, 0.21, -0.68, 0.001
+19430821, -0.82, -0.03, -0.56, 0.001
+19430823, -0.86, -0.59, -1.11, 0.001
+19430824, 0.59, -0.33, 0.99, 0.001
+19430825, 0.41, 0.17, 0.58, 0.001
+19430826, 0.21, 0.06, 0.26, 0.001
+19430827, -0.38, 0.18, -0.58, 0.001
+19430828, 0.10, -0.07, 0.35, 0.001
+19430830, 0.04, -0.04, 0.07, 0.001
+19430831, 0.92, 0.03, 0.95, 0.001
+19430901, 0.39, 0.27, 0.47, 0.001
+19430902, 0.04, -0.08, -0.65, 0.001
+19430903, -0.15, 0.02, -0.21, 0.001
+19430904, 0.22, 0.14, 0.07, 0.001
+19430907, 0.07, -0.43, 0.11, 0.001
+19430908, -0.48, -0.07, -0.95, 0.001
+19430909, 0.99, 0.62, 1.08, 0.001
+19430910, 0.13, 0.45, 0.39, 0.001
+19430911, 0.02, 0.01, 0.19, 0.001
+19430913, -0.13, 0.08, -0.50, 0.001
+19430914, -0.23, -0.33, -0.11, 0.001
+19430915, 0.21, 0.22, 0.49, 0.001
+19430916, 0.37, -0.05, 0.35, 0.001
+19430917, 1.00, 0.00, 1.04, 0.001
+19430918, 0.82, 0.36, 0.65, 0.001
+19430920, 0.41, 0.45, -0.19, 0.001
+19430921, 0.02, -0.60, 0.11, 0.001
+19430922, -0.33, 0.04, -0.31, 0.001
+19430923, -0.60, 0.02, -0.26, 0.001
+19430924, 0.04, -0.03, 0.35, 0.001
+19430925, 0.01, 0.34, -0.08, 0.001
+19430927, -0.75, -0.08, -1.22, 0.001
+19430928, -0.13, 0.23, 0.21, 0.001
+19430929, 0.18, -0.12, 0.10, 0.001
+19430930, 0.29, -0.19, 0.30, 0.001
+19431001, 0.15, 0.16, 0.29, 0.001
+19431002, -0.05, 0.25, -0.04, 0.001
+19431004, -0.50, -0.29, -0.64, 0.001
+19431005, -0.41, 0.06, -0.23, 0.001
+19431006, -1.02, -0.27, -0.42, 0.001
+19431007, -1.21, 0.05, -0.55, 0.001
+19431008, 0.29, -0.08, 0.68, 0.001
+19431009, 0.53, -0.16, 0.75, 0.001
+19431011, -0.63, -0.13, -0.58, 0.001
+19431013, -0.17, -0.48, -0.22, 0.001
+19431014, 0.54, 0.04, 0.59, 0.001
+19431015, 0.54, 0.40, 0.41, 0.001
+19431016, 0.36, -0.07, 0.22, 0.001
+19431018, -0.08, 0.09, -0.20, 0.001
+19431019, 0.36, 0.18, 0.67, 0.001
+19431020, 0.24, 0.05, 0.06, 0.001
+19431021, -0.68, 0.57, -0.51, 0.001
+19431022, 0.39, -0.30, 0.41, 0.001
+19431023, 0.02, 0.09, 0.28, 0.001
+19431025, -0.11, -0.10, -0.38, 0.001
+19431026, 0.29, 0.35, 0.62, 0.001
+19431027, 0.60, 0.24, 1.05, 0.001
+19431028, -0.13, 0.00, -0.44, 0.001
+19431029, -0.47, 0.04, -0.51, 0.001
+19431030, 0.04, -0.08, 0.47, 0.001
+19431101, -0.07, -0.14, -0.60, 0.001
+19431103, -1.00, -0.60, -1.34, 0.001
+19431104, -1.03, -0.35, -1.08, 0.001
+19431105, -0.43, 0.31, 0.04, 0.001
+19431106, -0.02, 0.04, -0.09, 0.001
+19431108, -3.23, -1.73, -3.58, 0.001
+19431109, 0.53, -0.12, 1.68, 0.001
+19431110, 1.12, 0.71, 0.93, 0.001
+19431112, -0.55, -0.14, 0.16, 0.001
+19431113, -0.20, 0.06, -0.08, 0.001
+19431115, 0.10, 0.26, 0.68, 0.001
+19431116, -0.32, 0.23, 0.35, 0.001
+19431117, -0.58, -0.36, -0.53, 0.001
+19431118, 0.38, -0.04, 0.22, 0.001
+19431119, 1.26, 0.19, 1.47, 0.001
+19431120, 0.57, 0.43, 0.15, 0.001
+19431122, -0.27, 0.18, -0.06, 0.001
+19431123, -0.12, 0.13, -0.14, 0.001
+19431124, -0.25, 0.03, -1.07, 0.001
+19431126, -0.71, -0.39, -0.98, 0.001
+19431127, -0.31, -0.02, -0.19, 0.001
+19431129, -1.00, -0.07, 0.02, 0.001
+19431130, 0.11, -0.18, 0.00, 0.001
+19431201, 0.95, 0.31, 0.82, 0.001
+19431202, 0.79, 0.03, 0.44, 0.001
+19431203, 0.18, 0.09, 0.20, 0.001
+19431204, 0.17, 0.14, 0.07, 0.001
+19431206, 0.47, -0.10, 0.39, 0.001
+19431207, 0.78, 0.30, -0.06, 0.001
+19431208, 1.06, 0.72, 1.00, 0.001
+19431209, -0.25, 0.18, -0.33, 0.001
+19431210, 0.64, -0.14, -0.20, 0.001
+19431211, 0.23, 0.13, 0.07, 0.001
+19431213, -0.33, -0.24, -0.55, 0.001
+19431214, -0.28, -0.08, -0.03, 0.001
+19431215, 0.08, 0.19, 0.27, 0.001
+19431216, 0.41, -0.27, -0.23, 0.001
+19431217, 0.40, 0.04, 1.19, 0.001
+19431218, 0.38, 0.29, 0.13, 0.001
+19431220, 0.22, 0.26, -0.11, 0.001
+19431221, -0.30, 0.22, -0.60, 0.001
+19431222, -0.08, 0.13, -0.19, 0.001
+19431223, -0.04, -0.03, 0.17, 0.001
+19431224, 0.15, 0.15, 0.32, 0.001
+19431227, -0.09, 0.34, -0.34, 0.001
+19431228, -0.84, 0.03, -1.12, 0.001
+19431229, -0.20, -0.38, 0.46, 0.001
+19431230, 1.64, 0.00, 1.53, 0.001
+19431231, 0.08, 0.74, -0.34, 0.001
+19440103, -0.12, 0.09, 0.03, 0.001
+19440104, 1.04, -0.29, 1.15, 0.001
+19440105, 0.96, 0.63, 0.32, 0.001
+19440106, -0.23, 0.25, -0.01, 0.001
+19440107, -0.12, 0.53, 0.00, 0.001
+19440108, 0.03, -0.02, 0.06, 0.001
+19440110, -0.19, 0.20, 0.05, 0.001
+19440111, 0.54, 0.05, 0.30, 0.001
+19440112, -0.60, 0.13, -0.35, 0.001
+19440113, -0.26, 0.04, 0.11, 0.001
+19440114, 0.63, 0.56, 0.48, 0.001
+19440115, 0.47, 0.16, 0.41, 0.001
+19440117, -0.29, -0.04, -0.50, 0.001
+19440118, -0.22, -0.41, 0.10, 0.001
+19440119, -0.02, -0.13, -0.52, 0.001
+19440120, 0.11, 0.39, 0.36, 0.001
+19440121, 0.22, 0.18, 0.42, 0.001
+19440122, 0.23, -0.04, 0.09, 0.001
+19440124, -0.16, 0.28, -0.39, 0.001
+19440125, -0.11, -0.23, -0.28, 0.001
+19440126, -0.87, 0.11, -1.01, 0.001
+19440127, -0.11, -0.01, 0.04, 0.001
+19440128, 0.49, -0.13, 0.90, 0.001
+19440129, 0.11, 0.18, 0.23, 0.001
+19440131, 0.23, 0.05, 0.26, 0.001
+19440201, 0.09, 0.25, -0.11, 0.001
+19440202, -0.17, 0.07, 0.16, 0.001
+19440203, -0.79, 0.27, -0.45, 0.001
+19440204, -0.64, 0.00, -0.60, 0.001
+19440205, 0.20, 0.09, 0.74, 0.001
+19440207, -0.34, -0.03, 0.30, 0.001
+19440208, 0.55, -0.29, 0.16, 0.001
+19440209, -0.01, -0.06, 0.10, 0.001
+19440210, 0.61, -0.27, 1.08, 0.001
+19440211, -0.10, 0.27, 0.04, 0.001
+19440214, 0.08, 0.20, -0.27, 0.001
+19440215, 0.53, -0.17, 0.77, 0.001
+19440216, -0.08, 0.15, -0.49, 0.001
+19440217, 0.39, -0.27, 0.83, 0.001
+19440218, -0.36, 0.29, -0.48, 0.001
+19440219, -0.03, -0.01, 0.06, 0.001
+19440221, 0.03, 0.09, -0.15, 0.001
+19440223, 0.61, -0.26, 1.13, 0.001
+19440224, 0.20, 0.18, -0.03, 0.001
+19440225, 0.04, 0.11, -0.19, 0.001
+19440226, 0.00, -0.06, 0.14, 0.001
+19440228, 0.16, -0.51, -0.46, 0.001
+19440229, -0.60, -0.11, -1.43, 0.001
+19440301, 0.35, -0.15, 0.57, 0.001
+19440302, 0.21, 0.35, 0.24, 0.001
+19440303, 0.11, -0.06, -0.49, 0.001
+19440304, 0.03, 0.00, -0.12, 0.001
+19440306, 0.32, -0.13, 0.56, 0.001
+19440307, 0.67, 0.34, 0.41, 0.001
+19440308, 0.74, 0.04, -0.28, 0.001
+19440309, -0.13, 0.16, 0.17, 0.001
+19440310, 0.45, 0.32, 0.01, 0.001
+19440311, 0.27, 0.09, 0.42, 0.001
+19440313, 0.70, -0.08, 0.55, 0.001
+19440314, -0.23, -0.29, -0.07, 0.001
+19440315, 0.40, 0.08, 0.61, 0.001
+19440316, 0.24, 0.38, 0.58, 0.001
+19440317, 0.16, -0.07, 0.52, 0.001
+19440318, -0.29, 0.21, 0.24, 0.001
+19440320, -0.41, 0.08, -0.41, 0.001
+19440321, 0.32, 0.02, 1.03, 0.001
+19440322, -0.08, 0.29, -0.32, 0.001
+19440323, -0.83, 0.37, -0.42, 0.001
+19440324, 0.24, -0.22, 0.29, 0.001
+19440325, 0.00, 0.17, -0.11, 0.001
+19440327, -0.17, 0.08, -0.38, 0.001
+19440328, -1.24, -0.74, -1.55, 0.001
+19440329, -0.21, -0.27, 0.09, 0.001
+19440330, 0.67, 0.56, 0.77, 0.001
+19440331, 0.18, 0.13, 0.45, 0.001
+19440401, 0.04, -0.05, -0.17, 0.001
+19440403, -0.61, -0.08, -0.75, 0.001
+19440404, 0.05, -0.23, 0.16, 0.001
+19440405, 0.24, 0.15, 0.35, 0.001
+19440406, 0.31, -0.01, 0.06, 0.001
+19440408, 0.20, 0.06, 0.22, 0.001
+19440410, -0.07, -0.26, 0.19, 0.001
+19440411, 0.02, -0.14, 0.64, 0.001
+19440412, -0.52, -0.04, -0.46, 0.001
+19440413, -0.31, -0.25, -0.33, 0.001
+19440414, 0.01, 0.18, -0.05, 0.001
+19440415, 0.18, -0.12, 0.07, 0.001
+19440417, -0.28, 0.15, -0.30, 0.001
+19440418, -1.60, -0.79, -2.03, 0.001
+19440419, -0.40, -0.09, 0.08, 0.001
+19440420, 0.77, 0.25, 0.99, 0.001
+19440421, 0.16, -0.01, 0.20, 0.001
+19440422, -0.06, 0.05, 0.00, 0.001
+19440424, -0.95, -0.35, -1.15, 0.001
+19440425, 0.01, -0.35, 0.14, 0.001
+19440426, 0.52, -0.03, 0.63, 0.001
+19440427, 0.29, 0.15, 0.37, 0.001
+19440428, 0.31, 0.39, 0.15, 0.001
+19440429, 0.03, 0.14, -0.02, 0.001
+19440501, 0.68, -0.19, 0.17, 0.001
+19440502, -0.14, 0.38, -0.51, 0.001
+19440503, 0.47, -0.06, 0.25, 0.001
+19440504, -0.05, 0.19, -0.48, 0.001
+19440505, 0.52, 0.06, 0.59, 0.001
+19440506, 0.17, 0.00, -0.21, 0.001
+19440508, -0.18, 0.19, -0.02, 0.001
+19440509, 0.17, -0.11, 0.07, 0.001
+19440510, 0.16, -0.03, -0.20, 0.001
+19440511, 0.14, 0.03, 0.04, 0.001
+19440512, -0.64, -0.27, -1.09, 0.001
+19440513, 0.03, -0.23, 0.28, 0.001
+19440515, 0.17, 0.01, 0.22, 0.001
+19440516, 0.17, 0.23, 0.54, 0.001
+19440517, 0.67, 0.15, 0.66, 0.001
+19440518, 0.25, 0.17, 0.33, 0.001
+19440519, 0.19, 0.09, -0.21, 0.001
+19440520, 0.09, 0.18, 0.20, 0.001
+19440522, 0.04, 0.16, -0.39, 0.001
+19440523, 0.32, -0.01, 0.31, 0.001
+19440524, 0.38, 0.14, 0.29, 0.001
+19440525, -0.06, 0.05, -0.40, 0.001
+19440526, 0.29, 0.13, 0.12, 0.001
+19440527, 0.23, 0.07, 0.28, 0.001
+19440529, 0.22, 0.25, -0.01, 0.001
+19440531, 0.68, -0.02, 0.13, 0.001
+19440601, -0.03, 0.06, -0.10, 0.001
+19440602, -0.06, -0.07, -0.42, 0.001
+19440603, 0.03, -0.06, 0.01, 0.001
+19440605, -0.53, 0.11, -0.68, 0.001
+19440606, 0.45, -0.22, -0.05, 0.001
+19440607, -0.15, -0.10, -0.70, 0.001
+19440608, -0.24, 0.41, -0.34, 0.001
+19440609, 0.09, 0.16, 0.49, 0.001
+19440610, 0.48, 0.01, 0.37, 0.001
+19440612, 1.43, 0.33, 1.13, 0.001
+19440613, 0.77, 0.12, 0.29, 0.001
+19440614, 0.14, -0.02, -0.54, 0.001
+19440615, 0.54, 0.45, -0.39, 0.001
+19440616, 0.82, 0.18, 0.94, 0.001
+19440617, 0.34, -0.03, 0.35, 0.001
+19440619, 0.54, 0.08, 0.19, 0.001
+19440620, -0.07, -0.05, 0.20, 0.001
+19440621, -0.33, 0.09, -0.01, 0.001
+19440622, 0.01, 0.24, -0.03, 0.001
+19440623, 0.09, 0.65, 0.21, 0.001
+19440624, 0.07, 0.14, 0.17, 0.001
+19440626, 0.58, 0.45, 0.24, 0.001
+19440627, 0.46, 0.33, 0.02, 0.001
+19440628, -0.31, 0.33, 0.14, 0.001
+19440629, -0.03, 0.22, -0.01, 0.001
+19440630, 0.28, -0.04, 0.27, 0.001
+19440701, 0.10, 0.31, 0.04, 0.001
+19440703, 0.77, 0.17, 0.75, 0.001
+19440705, 0.43, 0.44, 0.52, 0.001
+19440706, -0.28, -0.45, -0.33, 0.001
+19440707, 0.22, 0.03, 0.09, 0.001
+19440708, 0.55, 0.15, 0.57, 0.001
+19440710, 0.36, 0.46, -0.39, 0.001
+19440711, -0.17, -0.34, -0.39, 0.001
+19440712, 0.12, 0.30, 0.24, 0.001
+19440713, -0.19, -0.41, 0.14, 0.001
+19440714, 0.00, 0.07, -0.04, 0.001
+19440715, 0.02, 0.57, 0.35, 0.001
+19440717, -1.00, -0.80, -0.47, 0.001
+19440718, -0.81, -0.15, -0.49, 0.001
+19440719, 0.82, 0.72, 0.84, 0.001
+19440720, -0.64, -0.28, -0.84, 0.001
+19440721, -1.33, -0.88, -1.08, 0.001
+19440722, -0.92, -0.39, -0.84, 0.001
+19440724, 0.14, 0.13, 0.39, 0.001
+19440725, 0.89, 0.69, 0.93, 0.001
+19440726, -0.15, 0.57, -0.16, 0.001
+19440727, 0.09, -0.38, 0.08, 0.001
+19440728, -0.46, 0.05, -0.23, 0.001
+19440729, 0.05, -0.14, 0.14, 0.001
+19440731, -0.06, 0.18, -0.16, 0.001
+19440801, 0.45, 0.17, 0.42, 0.001
+19440802, 0.24, 0.23, -0.01, 0.001
+19440803, -0.57, -0.16, -0.66, 0.001
+19440804, -0.75, 0.03, -0.60, 0.001
+19440805, 0.05, 0.11, -0.50, 0.001
+19440807, 0.13, 0.47, -0.86, 0.001
+19440808, -0.35, -0.13, 0.05, 0.001
+19440809, 0.31, -0.27, 0.35, 0.001
+19440810, 0.60, 0.10, 0.66, 0.001
+19440811, 0.52, 0.44, 0.21, 0.001
+19440812, 0.25, 0.18, 0.16, 0.001
+19440814, 0.18, 0.04, -0.04, 0.001
+19440815, -0.10, 0.33, -0.61, 0.001
+19440816, 0.66, -0.01, 0.41, 0.001
+19440817, 0.75, 0.35, 0.29, 0.001
+19440818, 0.36, 0.09, 0.01, 0.001
+19440821, -0.27, -0.09, -0.35, 0.001
+19440822, -0.70, -0.44, -0.41, 0.001
+19440823, 0.12, 0.27, -0.07, 0.001
+19440824, -0.55, -0.58, -0.34, 0.001
+19440825, -0.05, 0.25, 0.06, 0.001
+19440828, -0.09, 0.14, -0.10, 0.001
+19440829, 0.14, 0.45, -0.46, 0.001
+19440830, 0.35, 0.32, 0.75, 0.001
+19440831, -0.11, 0.04, 0.08, 0.001
+19440901, 0.28, 0.18, -0.16, 0.001
+19440905, -0.64, -0.13, -0.80, 0.001
+19440906, -2.19, -0.51, -1.62, 0.001
+19440907, -0.32, -0.41, 0.31, 0.001
+19440908, 0.04, 0.84, 0.17, 0.001
+19440909, -0.21, -0.03, -0.01, 0.001
+19440911, 0.55, -0.25, -0.03, 0.001
+19440912, 0.32, 0.21, -0.44, 0.001
+19440913, -0.94, -0.53, -0.63, 0.001
+19440914, -0.58, -0.32, -0.19, 0.001
+19440915, 0.87, 0.41, 0.21, 0.001
+19440916, 0.44, 0.08, 0.65, 0.001
+19440918, 0.12, -0.11, -0.36, 0.001
+19440919, 0.79, 0.00, 0.72, 0.001
+19440920, 0.20, 0.44, 0.00, 0.001
+19440921, -0.24, -0.06, -0.32, 0.001
+19440922, 0.19, 0.19, -0.06, 0.001
+19440923, 0.27, -0.08, 0.24, 0.001
+19440925, 0.53, 0.30, 0.35, 0.001
+19440926, -0.09, 0.05, -0.31, 0.001
+19440927, 0.05, 0.05, 0.37, 0.001
+19440928, -0.10, 0.19, 0.02, 0.001
+19440929, 0.34, -0.15, 0.62, 0.001
+19440930, 0.39, 0.15, 0.17, 0.001
+19441002, 0.23, 0.38, 0.27, 0.001
+19441003, -0.08, -0.18, -0.11, 0.001
+19441004, 0.45, 0.03, 0.07, 0.001
+19441005, 0.64, -0.24, 0.65, 0.001
+19441006, 0.17, 0.00, -0.02, 0.001
+19441007, 0.20, -0.01, 0.16, 0.001
+19441009, -0.73, 0.01, -0.56, 0.001
+19441010, 0.12, -0.20, 0.03, 0.001
+19441011, 0.51, 0.15, -0.15, 0.001
+19441013, -0.02, 0.16, 0.03, 0.001
+19441014, 0.03, 0.08, -0.14, 0.001
+19441016, -0.39, -0.22, -0.32, 0.001
+19441017, 0.27, -0.08, -0.09, 0.001
+19441018, 0.56, 0.19, 0.23, 0.001
+19441019, -0.16, 0.33, -0.20, 0.001
+19441020, -0.22, 0.04, 0.14, 0.001
+19441021, 0.11, 0.02, 0.13, 0.001
+19441023, -1.37, -0.46, -0.64, 0.001
+19441024, 0.11, -0.20, 0.20, 0.001
+19441025, 0.00, 0.13, -0.10, 0.001
+19441026, -0.65, -0.25, -0.30, 0.001
+19441027, 0.16, 0.04, 0.30, 0.001
+19441028, 0.32, 0.09, -0.04, 0.001
+19441030, -0.28, -0.28, -0.01, 0.001
+19441031, 0.22, 0.32, 0.18, 0.001
+19441101, 0.23, -0.01, 0.15, 0.001
+19441102, 0.52, -0.11, 0.32, 0.001
+19441103, 0.05, 0.23, 0.36, 0.001
+19441104, 0.10, -0.06, 0.00, 0.001
+19441106, 0.27, -0.17, -0.14, 0.001
+19441108, -0.20, 0.13, -0.08, 0.001
+19441109, 0.44, 0.06, 0.35, 0.001
+19441110, 0.30, 0.17, 0.68, 0.001
+19441113, -0.75, -0.26, -0.31, 0.001
+19441114, -1.04, -0.48, -0.71, 0.001
+19441115, -0.13, 0.03, 0.25, 0.001
+19441116, 0.28, -0.05, 0.47, 0.001
+19441117, -0.06, -0.33, 0.06, 0.001
+19441118, 0.10, 0.19, -0.08, 0.001
+19441120, 0.19, 0.02, -0.07, 0.001
+19441121, 0.55, 0.35, 0.41, 0.001
+19441122, 0.14, -0.05, 0.06, 0.001
+19441124, -0.26, 0.14, -0.26, 0.001
+19441125, 0.10, 0.00, 0.10, 0.001
+19441127, 0.14, -0.19, 0.38, 0.001
+19441128, 0.13, 0.22, 0.16, 0.001
+19441129, 0.57, 0.37, -0.01, 0.001
+19441130, 0.04, 0.19, 0.21, 0.001
+19441201, 0.03, 0.16, 0.03, 0.001
+19441202, 0.20, 0.33, 0.56, 0.001
+19441204, 0.60, 0.12, 0.95, 0.001
+19441205, 0.32, -0.02, 0.08, 0.001
+19441206, 0.08, 0.15, 0.19, 0.001
+19441207, 0.33, 0.37, 0.35, 0.001
+19441208, 0.67, 0.04, 0.53, 0.001
+19441209, 0.47, 0.05, 0.02, 0.001
+19441211, 0.23, 0.01, 0.30, 0.001
+19441212, -0.12, -0.02, -0.16, 0.001
+19441213, -0.18, 0.11, -0.33, 0.001
+19441214, 0.28, 0.14, 0.49, 0.001
+19441215, 0.81, -0.07, 1.05, 0.001
+19441216, 0.02, 0.15, -0.09, 0.001
+19441218, -0.50, -0.03, -0.12, 0.001
+19441219, 0.11, -0.26, 0.90, 0.001
+19441220, -0.66, -0.08, -0.53, 0.001
+19441221, -0.23, 0.13, -0.18, 0.001
+19441222, 0.34, 0.05, 1.19, 0.001
+19441223, 0.09, 0.19, -0.10, 0.001
+19441226, -0.56, 0.18, -0.14, 0.001
+19441227, -0.79, -0.46, -0.67, 0.001
+19441228, 1.09, 0.03, 0.98, 0.001
+19441229, 1.31, 0.39, 0.39, 0.001
+19441230, 0.09, 0.51, -0.09, 0.001
+19450102, 0.29, -0.09, 0.22, 0.001
+19450103, 0.94, 0.14, 0.56, 0.001
+19450104, 0.28, -0.11, 0.54, 0.001
+19450105, -0.14, 0.09, -0.29, 0.001
+19450106, -0.14, 0.03, -0.09, 0.001
+19450108, 1.15, 0.21, 1.54, 0.001
+19450109, 0.03, -0.13, 0.35, 0.001
+19450110, 0.60, 0.01, 0.81, 0.001
+19450111, -0.01, -0.04, 0.07, 0.001
+19450112, -0.22, -0.15, -0.27, 0.001
+19450113, 0.07, 0.31, -0.07, 0.001
+19450115, -0.58, 0.30, -1.48, 0.001
+19450116, 0.00, 0.11, -0.05, 0.001
+19450117, 0.75, 0.70, 0.27, 0.001
+19450118, -0.46, 0.13, -0.35, 0.001
+19450119, -0.86, -0.22, -0.54, 0.001
+19450120, -0.65, -0.18, -0.94, 0.001
+19450122, -0.33, 0.16, 0.03, 0.001
+19450123, -0.42, -0.06, -0.37, 0.001
+19450124, 0.06, 0.03, 0.32, 0.001
+19450125, 0.74, 0.32, 0.26, 0.001
+19450126, 0.79, 0.19, 0.81, 0.001
+19450127, 0.41, 0.04, 0.14, 0.001
+19450129, 0.13, 0.10, 0.10, 0.001
+19450130, -0.59, 0.08, -0.83, 0.001
+19450131, 0.18, 0.39, 0.09, 0.001
+19450201, 0.33, 0.19, 0.68, 0.001
+19450202, 0.81, 0.12, 0.43, 0.001
+19450203, 0.32, 0.22, 0.38, 0.001
+19450205, 0.42, 0.46, -0.01, 0.001
+19450206, 0.18, 0.04, 0.17, 0.001
+19450207, 0.25, 0.12, 0.13, 0.001
+19450208, 0.05, -0.12, 0.25, 0.001
+19450209, -0.46, -0.28, -0.56, 0.001
+19450210, 0.19, 0.33, 0.30, 0.001
+19450213, 1.21, -0.19, 0.87, 0.001
+19450214, 0.55, 0.06, 0.27, 0.001
+19450215, 0.65, -0.07, 0.78, 0.001
+19450216, -0.05, 0.07, -0.27, 0.001
+19450217, 0.08, 0.06, -0.14, 0.001
+19450219, 0.60, 0.38, 0.74, 0.001
+19450220, 0.22, -0.01, -0.02, 0.001
+19450221, -0.08, -0.34, 0.10, 0.001
+19450223, -0.15, 0.11, -0.27, 0.001
+19450224, -0.25, -0.11, -0.53, 0.001
+19450226, -0.21, -0.23, -0.09, 0.001
+19450227, 0.69, 0.38, 0.27, 0.001
+19450228, 0.71, 0.28, 0.64, 0.001
+19450301, 0.31, 0.47, 0.72, 0.001
+19450302, -0.52, -0.31, -0.76, 0.001
+19450303, -0.06, 0.00, 0.13, 0.001
+19450305, 0.49, -0.16, 0.10, 0.001
+19450306, 0.47, -0.14, 0.41, 0.001
+19450307, -0.05, -0.23, -0.25, 0.001
+19450308, -1.77, -1.24, -1.35, 0.001
+19450309, -1.88, -0.43, -0.71, 0.001
+19450310, 0.64, 0.33, 0.58, 0.001
+19450312, 0.61, 0.52, 0.60, 0.001
+19450313, -0.03, -0.30, -0.07, 0.001
+19450314, 0.24, 0.31, 0.13, 0.001
+19450315, 0.46, -0.30, 0.35, 0.001
+19450316, 0.16, 0.18, 0.03, 0.001
+19450317, 0.07, -0.07, 0.11, 0.001
+19450319, -0.62, -0.18, -0.48, 0.001
+19450320, -1.12, -0.16, -0.88, 0.001
+19450321, -1.04, -0.57, 0.07, 0.001
+19450322, 0.01, 0.36, 0.10, 0.001
+19450323, 0.34, 0.04, 0.17, 0.001
+19450324, -0.71, 0.20, -0.64, 0.001
+19450326, -1.76, -0.66, -1.53, 0.001
+19450327, 0.46, 0.06, 0.85, 0.001
+19450328, 0.86, 0.31, 0.43, 0.001
+19450329, 0.27, 0.28, 0.22, 0.001
+19450331, 0.26, -0.03, 0.09, 0.001
+19450402, 0.78, 0.02, 0.21, 0.001
+19450403, 0.27, -0.29, 0.22, 0.001
+19450404, -0.12, -0.16, 0.03, 0.001
+19450405, -0.78, -0.05, -1.03, 0.001
+19450406, 0.49, -0.26, 0.47, 0.001
+19450407, 0.47, 0.08, 0.41, 0.001
+19450409, -0.15, 0.13, -0.25, 0.001
+19450410, 0.51, 0.02, 0.51, 0.001
+19450411, 1.08, 0.22, 0.51, 0.001
+19450412, 0.25, 0.32, 0.06, 0.001
+19450413, 0.71, -0.45, 0.30, 0.001
+19450416, 1.79, 0.18, 0.66, 0.001
+19450417, 0.16, 0.18, -0.01, 0.001
+19450418, 0.83, -0.07, 0.39, 0.001
+19450419, -0.58, 0.14, -0.12, 0.001
+19450420, -0.06, -0.03, 0.09, 0.001
+19450421, 0.30, 0.23, 0.35, 0.001
+19450423, 0.48, 0.05, 0.18, 0.001
+19450424, 0.47, -0.18, 0.43, 0.001
+19450425, -0.16, -0.07, -0.11, 0.001
+19450426, -0.30, -0.10, -0.56, 0.001
+19450427, 0.42, 0.20, 0.63, 0.001
+19450428, 0.47, 0.05, 0.16, 0.001
+19450430, 0.24, 0.27, -0.65, 0.001
+19450501, -0.42, -0.41, -0.80, 0.001
+19450502, -0.10, -0.16, -0.19, 0.001
+19450503, 0.68, 0.33, 0.26, 0.001
+19450504, 0.41, 0.11, -0.03, 0.001
+19450505, 0.23, 0.41, -0.33, 0.001
+19450507, 0.00, 0.35, -0.27, 0.001
+19450508, -0.08, 0.25, 0.51, 0.001
+19450509, -0.86, -0.37, -0.60, 0.001
+19450510, -1.12, -0.08, -0.53, 0.001
+19450511, 0.15, 0.41, 0.39, 0.001
+19450512, 0.57, -0.02, 0.48, 0.001
+19450514, -0.35, -0.02, -0.22, 0.001
+19450515, 0.27, 0.14, 0.08, 0.001
+19450516, 0.36, 0.34, 0.31, 0.001
+19450517, 0.49, -0.05, 0.47, 0.001
+19450518, 0.52, 0.08, 0.04, 0.001
+19450519, 0.15, 0.17, 0.08, 0.001
+19450521, -0.39, -0.17, -0.15, 0.001
+19450522, -0.10, 0.24, -0.13, 0.001
+19450523, -0.81, -0.27, -0.01, 0.001
+19450524, 0.07, -0.07, 0.42, 0.001
+19450525, 0.67, 0.40, 0.39, 0.001
+19450526, 0.47, 0.01, 0.08, 0.001
+19450528, 0.78, 0.01, 0.26, 0.001
+19450529, 0.56, -0.17, 0.21, 0.001
+19450531, -0.42, 0.03, -0.35, 0.001
+19450601, 0.15, 0.00, 0.82, 0.001
+19450602, 0.09, 0.10, 0.44, 0.001
+19450604, 0.02, 0.35, 0.04, 0.001
+19450605, 0.09, 0.06, -0.11, 0.001
+19450606, -0.46, 0.14, -0.17, 0.001
+19450607, 0.12, 0.36, 0.38, 0.001
+19450608, -0.04, 0.64, 0.24, 0.001
+19450609, 0.02, 0.16, 0.10, 0.001
+19450611, -0.27, 0.06, -0.33, 0.001
+19450612, 0.13, 0.15, 0.29, 0.001
+19450613, 0.42, 0.28, 0.14, 0.001
+19450614, 0.49, 0.27, 0.76, 0.001
+19450615, 0.24, 0.29, 0.52, 0.001
+19450616, 0.11, -0.25, 1.02, 0.001
+19450618, -0.27, 0.13, 0.28, 0.001
+19450619, 0.11, -0.13, 0.37, 0.001
+19450620, 0.55, 0.08, 0.31, 0.001
+19450621, 0.46, 0.15, 0.51, 0.001
+19450622, -0.06, 0.03, -0.28, 0.001
+19450623, 0.16, 0.17, -0.08, 0.001
+19450625, 0.42, 0.02, 0.37, 0.001
+19450626, 0.19, 0.09, 0.06, 0.001
+19450627, -0.03, 0.12, -0.33, 0.001
+19450628, -2.00, -0.85, -1.61, 0.001
+19450629, -0.85, -0.01, -0.06, 0.001
+19450630, 0.60, 0.67, 0.60, 0.001
+19450702, 0.41, 0.04, -0.03, 0.001
+19450703, 0.05, 0.10, 0.19, 0.001
+19450705, -1.28, -0.32, -0.76, 0.001
+19450706, 0.30, -0.55, 0.11, 0.001
+19450709, 0.91, -0.15, 0.46, 0.001
+19450710, 0.35, 0.39, 0.00, 0.001
+19450711, -0.39, -0.03, -0.46, 0.001
+19450712, 0.19, -0.14, 0.32, 0.001
+19450713, -0.34, -0.24, -0.45, 0.001
+19450716, -0.73, -0.04, -0.55, 0.001
+19450717, -2.05, -0.65, -1.17, 0.001
+19450718, -0.35, -0.18, 0.15, 0.001
+19450719, 0.65, 0.44, 0.18, 0.001
+19450720, 0.01, 0.03, -0.13, 0.001
+19450723, -0.81, -0.21, -0.53, 0.001
+19450724, 0.11, -0.26, 0.04, 0.001
+19450725, 0.92, 0.14, 0.32, 0.001
+19450726, -1.80, -0.04, -1.33, 0.001
+19450727, 0.33, -0.04, 0.66, 0.001
+19450730, 0.91, 0.23, 0.36, 0.001
+19450731, 0.44, -0.01, -0.06, 0.001
+19450801, 0.06, -0.12, -0.06, 0.001
+19450802, -0.34, -0.11, 0.00, 0.001
+19450803, 0.50, -0.03, 0.13, 0.001
+19450806, 0.11, 0.06, -0.59, 0.001
+19450807, -1.32, -0.30, -0.77, 0.001
+19450808, 0.30, 0.12, 0.04, 0.001
+19450809, 1.70, 0.45, 0.30, 0.001
+19450810, -0.01, 0.55, -1.37, 0.001
+19450813, -0.90, 0.13, -1.15, 0.001
+19450814, 0.69, 0.46, -0.18, 0.001
+19450817, -0.35, 0.00, -1.14, 0.001
+19450820, -1.34, -0.39, -0.87, 0.001
+19450821, 0.29, -0.16, 0.03, 0.001
+19450822, 0.68, 0.16, 0.16, 0.001
+19450823, 1.77, 0.08, 0.62, 0.001
+19450824, 1.20, 0.23, -0.01, 0.001
+19450827, 1.49, 0.06, 0.59, 0.001
+19450828, 0.23, -0.01, -0.09, 0.001
+19450829, 0.00, 0.02, -0.09, 0.001
+19450830, 0.34, 0.11, 0.34, 0.001
+19450831, 1.01, 0.25, 0.04, 0.001
+19450904, 0.07, 0.17, -0.20, 0.001
+19450905, 0.08, -0.23, -0.23, 0.001
+19450906, 1.16, -0.06, -0.04, 0.001
+19450907, 0.15, 0.44, -0.73, 0.001
+19450908, 0.08, -0.17, -0.18, 0.001
+19450910, 0.23, 0.12, 0.19, 0.001
+19450911, 0.36, -0.06, 0.26, 0.001
+19450912, 0.56, 0.13, 0.15, 0.001
+19450913, 0.06, 0.12, 0.26, 0.001
+19450914, -0.44, -0.11, -0.07, 0.001
+19450915, -1.39, -0.16, -0.32, 0.001
+19450917, -0.44, 0.13, 0.09, 0.001
+19450918, 1.82, 0.44, 0.37, 0.001
+19450919, 0.99, 0.53, 0.12, 0.001
+19450920, 0.47, 0.00, 0.09, 0.001
+19450921, -0.32, 0.18, 0.20, 0.001
+19450922, -0.12, -0.11, 0.00, 0.001
+19450924, 0.06, 0.06, 0.28, 0.001
+19450925, 0.15, 0.19, 0.43, 0.001
+19450926, -0.10, -0.02, -0.09, 0.001
+19450927, -0.20, -0.19, 0.00, 0.001
+19450928, 0.86, 0.30, 0.12, 0.001
+19450929, 0.62, -0.02, -0.28, 0.001
+19451001, 0.84, -0.03, 0.48, 0.001
+19451002, 0.14, -0.06, -0.30, 0.001
+19451003, 0.00, 0.10, -0.31, 0.001
+19451004, 0.06, 0.26, -0.27, 0.001
+19451005, 0.43, 0.04, -0.04, 0.001
+19451006, 0.51, -0.09, 0.22, 0.001
+19451008, 0.50, 0.36, 0.40, 0.001
+19451009, 0.23, -0.05, 0.16, 0.001
+19451010, 0.43, 0.28, 0.30, 0.001
+19451011, 0.01, 0.25, 0.14, 0.001
+19451015, 0.35, 0.01, 0.06, 0.001
+19451016, 0.00, 0.18, 0.34, 0.001
+19451017, 0.36, 0.07, 0.29, 0.001
+19451018, 0.24, 0.16, 0.20, 0.001
+19451019, -0.84, -0.27, -0.92, 0.001
+19451020, 0.26, -0.12, 0.64, 0.001
+19451022, 0.49, 0.10, 0.00, 0.001
+19451023, -0.75, -0.07, -0.35, 0.001
+19451024, -1.21, -0.17, -0.25, 0.001
+19451025, 0.58, 0.43, 0.22, 0.001
+19451026, 0.54, 0.52, 0.12, 0.001
+19451029, -0.71, -0.04, 0.04, 0.001
+19451030, -0.06, 0.00, 0.42, 0.001
+19451031, 1.44, 0.43, 0.52, 0.001
+19451101, 1.26, 0.15, 0.14, 0.001
+19451102, 0.15, 0.38, -0.50, 0.001
+19451103, 0.15, 0.32, 0.19, 0.001
+19451105, 0.60, 0.36, 0.43, 0.001
+19451107, 1.18, 0.16, 0.11, 0.001
+19451108, -0.11, 0.24, -0.36, 0.001
+19451109, 0.03, 0.12, 0.40, 0.001
+19451110, 0.04, -0.06, 0.29, 0.001
+19451113, -0.33, -0.23, -0.01, 0.001
+19451114, -0.30, -0.01, 0.45, 0.001
+19451115, 0.74, 0.27, 0.64, 0.001
+19451116, 0.73, 0.21, -0.04, 0.001
+19451117, 0.09, 0.16, 0.48, 0.001
+19451119, -0.14, 0.02, 0.59, 0.001
+19451120, 0.49, 0.08, 0.85, 0.001
+19451121, -1.15, 0.16, -0.33, 0.001
+19451123, -0.96, 0.20, -0.28, 0.001
+19451124, -0.68, -0.03, -0.10, 0.001
+19451126, 1.28, 0.05, 0.68, 0.001
+19451127, 1.28, -0.06, 0.43, 0.001
+19451128, -0.18, 0.54, -0.16, 0.001
+19451129, 0.11, 0.52, -0.19, 0.001
+19451130, 1.05, 0.38, 0.45, 0.001
+19451201, 0.59, 0.53, -0.12, 0.001
+19451203, 0.88, 0.35, -0.32, 0.001
+19451204, -0.10, 0.46, 0.04, 0.001
+19451205, 0.11, 0.29, -0.10, 0.001
+19451206, 0.72, 0.45, -0.39, 0.001
+19451207, 0.31, 0.18, 0.04, 0.001
+19451208, 0.45, 0.20, 0.07, 0.001
+19451210, 0.28, 0.47, 0.22, 0.001
+19451211, -0.19, 0.01, -0.34, 0.001
+19451212, -1.46, -0.42, -0.69, 0.001
+19451213, -0.39, -0.33, 0.03, 0.001
+19451214, 0.22, 0.22, 0.06, 0.001
+19451215, 0.35, 0.20, 0.27, 0.001
+19451217, -2.56, -1.15, -1.30, 0.001
+19451218, 0.72, -0.10, 0.54, 0.001
+19451219, 0.15, 0.64, -0.15, 0.001
+19451220, -0.57, -0.11, -0.11, 0.001
+19451221, -0.09, 0.08, -0.07, 0.001
+19451222, 1.04, 0.33, 0.26, 0.001
+19451226, 1.20, 0.23, 0.26, 0.001
+19451227, -0.64, 0.06, 0.21, 0.001
+19451228, 0.07, -0.15, -0.05, 0.001
+19451229, 0.27, -0.13, -0.19, 0.001
+19451231, -0.03, -0.13, -0.45, 0.001
+19460102, -0.51, -0.07, -0.29, 0.001
+19460103, -0.27, -0.45, -0.39, 0.001
+19460104, -0.17, 0.41, 0.33, 0.001
+19460105, 0.35, 0.04, 0.11, 0.001
+19460107, 0.13, 0.22, 0.10, 0.001
+19460108, 2.10, 0.67, 0.85, 0.001
+19460109, 1.46, 0.31, 0.12, 0.001
+19460110, 0.62, 0.06, -0.08, 0.001
+19460111, 0.31, 0.13, 0.21, 0.001
+19460112, -0.50, -0.33, -0.04, 0.001
+19460114, 1.45, 0.61, 0.48, 0.001
+19460115, 0.22, 0.03, -0.36, 0.001
+19460116, 0.15, 0.06, 0.45, 0.001
+19460117, -0.26, 0.30, -0.25, 0.001
+19460118, -0.18, 0.17, -0.16, 0.001
+19460119, -0.83, 0.22, 0.31, 0.001
+19460121, -1.76, -0.27, -0.22, 0.001
+19460122, 0.62, 0.58, 0.72, 0.001
+19460123, 1.12, 0.88, 0.15, 0.001
+19460124, 0.41, 0.60, -0.36, 0.001
+19460125, -0.14, -0.05, 0.13, 0.001
+19460126, 0.11, 0.38, 0.26, 0.001
+19460128, 2.29, -0.01, 0.18, 0.001
+19460129, 0.23, -0.01, 0.18, 0.001
+19460130, -0.48, -0.37, -0.41, 0.001
+19460131, -0.25, -0.37, 0.12, 0.001
+19460201, 0.57, -0.12, 0.72, 0.001
+19460202, 0.54, 0.37, -0.15, 0.001
+19460204, -0.54, 0.12, -0.07, 0.001
+19460205, 0.36, -0.06, 0.64, 0.001
+19460206, -0.63, 0.06, -0.28, 0.001
+19460207, -0.05, -0.19, 0.35, 0.001
+19460208, -0.31, 0.01, -0.35, 0.001
+19460209, -0.83, -0.23, -0.50, 0.001
+19460211, -0.59, 0.21, -0.81, 0.001
+19460213, -1.16, -0.50, 0.09, 0.001
+19460214, 0.76, 0.90, 0.17, 0.001
+19460215, 1.87, 0.44, 0.18, 0.001
+19460216, 0.99, 0.12, -0.23, 0.001
+19460218, -1.45, -0.22, -0.59, 0.001
+19460219, -3.30, -1.08, -0.63, 0.001
+19460220, -1.68, -0.17, 0.09, 0.001
+19460221, 2.03, 0.71, 0.33, 0.001
+19460225, -4.47, -1.06, -0.77, 0.001
+19460226, -0.48, -0.44, 0.40, 0.001
+19460227, 2.06, 0.73, 0.41, 0.001
+19460228, 0.55, -0.22, -0.27, 0.001
+19460301, -0.20, 0.40, -0.15, 0.001
+19460302, -0.60, -0.49, -0.31, 0.001
+19460304, -0.10, -0.25, 0.17, 0.001
+19460305, 1.21, 0.08, -0.31, 0.001
+19460306, -0.33, -0.16, 0.03, 0.001
+19460307, 0.77, 0.11, -0.20, 0.001
+19460308, 0.77, 0.15, -0.07, 0.001
+19460309, 0.27, 0.07, 0.00, 0.001
+19460311, -0.89, -0.05, -0.21, 0.001
+19460312, 0.32, -0.29, 0.18, 0.001
+19460313, -1.64, -0.87, -0.38, 0.001
+19460314, -0.06, 0.22, -0.09, 0.001
+19460315, 1.07, 0.15, 0.44, 0.001
+19460316, 1.08, 0.12, 0.01, 0.001
+19460318, 0.73, 0.45, -0.02, 0.001
+19460319, -0.39, 0.37, -0.35, 0.001
+19460320, 0.79, -0.44, 0.33, 0.001
+19460321, 0.59, 0.52, 0.17, 0.001
+19460322, 0.26, 0.16, -0.19, 0.001
+19460323, 0.38, -0.03, 0.10, 0.001
+19460325, 1.50, 0.19, 0.12, 0.001
+19460326, 0.01, 0.19, -0.26, 0.001
+19460327, -0.64, -0.39, 0.08, 0.001
+19460328, -0.12, -0.02, 0.18, 0.001
+19460329, 0.75, 0.25, 0.35, 0.001
+19460330, 0.28, -0.11, 0.03, 0.001
+19460401, -0.11, -0.12, -0.20, 0.001
+19460402, 0.11, 0.31, -0.03, 0.001
+19460403, 1.46, 0.32, 0.27, 0.001
+19460404, 1.07, 0.70, 0.03, 0.001
+19460405, -0.06, 0.12, -0.10, 0.001
+19460406, 0.22, -0.10, -0.09, 0.001
+19460408, 0.05, -0.06, -0.33, 0.001
+19460409, 1.09, -0.09, -0.15, 0.001
+19460410, -0.19, 0.18, 0.13, 0.001
+19460411, -0.26, -0.34, -0.08, 0.001
+19460412, -0.03, 0.15, -0.10, 0.001
+19460413, -0.49, 0.10, -0.17, 0.001
+19460415, 0.00, 0.11, -0.14, 0.001
+19460416, 1.23, 0.02, 0.19, 0.001
+19460417, 0.04, 0.24, 0.10, 0.001
+19460418, 0.38, 0.28, 0.51, 0.001
+19460420, 0.06, 0.23, 0.14, 0.001
+19460422, -0.08, -0.07, -0.21, 0.001
+19460423, -0.25, -0.32, 0.10, 0.001
+19460424, -0.75, -0.19, -0.28, 0.001
+19460425, -0.55, 0.13, -0.11, 0.001
+19460426, 0.23, 0.21, 0.51, 0.001
+19460427, 0.65, 0.17, 0.40, 0.001
+19460429, 0.10, 0.18, 0.01, 0.001
+19460430, 0.28, 0.13, 0.05, 0.001
+19460501, -0.23, -0.11, 0.17, 0.001
+19460502, -0.38, 0.22, -0.22, 0.001
+19460503, -0.78, -0.10, -0.22, 0.001
+19460504, -0.39, -0.25, -0.07, 0.001
+19460506, -0.69, -0.33, 0.39, 0.001
+19460507, 1.50, 0.56, 0.53, 0.001
+19460508, 0.12, 0.31, -0.27, 0.001
+19460509, 0.13, 0.53, 0.32, 0.001
+19460510, 1.52, 0.74, 0.64, 0.001
+19460511, 0.50, -0.08, -0.32, 0.001
+19460513, -0.12, 0.15, -0.37, 0.001
+19460514, -0.24, -0.10, -0.04, 0.001
+19460515, -0.61, -0.32, 0.23, 0.001
+19460516, 0.54, 0.06, -0.03, 0.001
+19460517, -0.06, 0.29, -0.62, 0.001
+19460518, -0.43, -0.15, -0.23, 0.001
+19460520, 0.71, -0.12, 0.31, 0.001
+19460521, 0.29, 0.18, 0.47, 0.001
+19460522, 0.48, 0.02, 0.48, 0.001
+19460523, -0.07, 0.03, -0.03, 0.001
+19460524, -0.02, 0.00, -0.07, 0.001
+19460527, 0.88, 0.20, 0.05, 0.001
+19460528, 1.14, 0.04, 0.29, 0.001
+19460529, 0.18, -0.12, -0.29, 0.001
+19460531, -0.06, -0.23, -0.01, 0.001
+19460603, -0.57, -0.04, -0.15, 0.001
+19460604, -0.57, -0.29, -0.20, 0.001
+19460605, -0.61, -0.14, -0.16, 0.001
+19460606, -0.02, -0.26, 0.08, 0.001
+19460607, 0.13, 0.08, -0.11, 0.001
+19460610, 0.18, 0.31, 0.15, 0.001
+19460611, -0.91, 0.14, -0.11, 0.001
+19460612, 0.08, -0.41, 0.21, 0.001
+19460613, 0.57, -0.09, 0.13, 0.001
+19460614, -0.14, 0.15, -0.06, 0.001
+19460617, 0.08, 0.00, 0.32, 0.001
+19460618, -1.57, -0.32, -0.46, 0.001
+19460619, -0.62, -0.30, 0.26, 0.001
+19460620, -2.06, -0.16, -0.47, 0.001
+19460621, 0.79, -0.08, -0.21, 0.001
+19460624, 0.34, -0.11, 0.18, 0.001
+19460625, -0.64, -0.12, -0.57, 0.001
+19460626, -0.36, -0.71, -0.03, 0.001
+19460627, 1.77, 0.54, 0.52, 0.001
+19460628, 0.24, 0.21, 0.09, 0.001
+19460701, 0.68, 0.08, -0.05, 0.001
+19460702, -0.23, -0.50, 0.09, 0.001
+19460703, -0.11, -0.04, 0.24, 0.001
+19460705, -0.17, -0.03, -0.27, 0.001
+19460708, -0.25, -0.14, 0.17, 0.001
+19460709, 0.37, -0.14, 0.01, 0.001
+19460710, 0.27, -0.01, 0.10, 0.001
+19460711, -0.48, -0.09, -0.23, 0.001
+19460712, -0.85, -0.43, -0.22, 0.001
+19460715, -1.75, -0.66, 0.07, 0.001
+19460716, -0.20, -0.35, 0.47, 0.001
+19460717, 0.50, 0.31, 0.14, 0.001
+19460718, -0.05, 0.38, -0.28, 0.001
+19460719, -0.40, -0.25, -0.13, 0.001
+19460722, -0.39, -0.36, -0.46, 0.001
+19460723, -2.99, -0.93, -0.28, 0.001
+19460724, 0.02, -0.12, 0.30, 0.001
+19460725, 0.71, 0.46, 0.26, 0.001
+19460726, 0.59, 0.32, 0.34, 0.001
+19460729, 0.40, 0.03, 0.22, 0.001
+19460730, 0.60, 0.05, -0.32, 0.001
+19460731, 1.09, 0.48, -0.11, 0.001
+19460801, 0.50, 0.02, 0.08, 0.001
+19460802, 0.09, -0.04, -0.12, 0.001
+19460805, -0.50, 0.23, 0.22, 0.001
+19460806, -0.35, -0.14, 0.05, 0.001
+19460807, 0.84, -0.03, 0.26, 0.001
+19460808, 0.50, -0.17, 0.08, 0.001
+19460809, -0.25, 0.03, -0.03, 0.001
+19460812, 0.13, -0.11, -0.08, 0.001
+19460813, 0.62, -0.30, 0.09, 0.001
+19460814, -0.05, -0.13, -0.07, 0.001
+19460815, -0.96, -0.01, -0.24, 0.001
+19460816, -0.81, -0.27, 0.44, 0.001
+19460819, -0.27, -0.07, 0.29, 0.001
+19460820, 0.61, 0.11, -0.02, 0.001
+19460821, -0.78, 0.06, -0.19, 0.001
+19460822, -1.60, -0.90, -0.39, 0.001
+19460823, 0.58, 0.36, 0.07, 0.001
+19460826, -0.57, 0.02, -0.32, 0.001
+19460827, -3.30, -1.35, 0.10, 0.001
+19460828, -0.95, -0.03, 0.10, 0.001
+19460829, 0.37, 0.83, 0.05, 0.001
+19460830, -0.48, -0.01, 0.30, 0.001
+19460903, -6.90, -1.74, -0.91, 0.001
+19460904, -0.76, -1.05, -0.27, 0.001
+19460905, 3.49, 0.89, 0.20, 0.001
+19460906, -1.09, 0.18, -0.19, 0.001
+19460909, -5.29, -1.78, -0.67, 0.001
+19460910, -2.52, -0.58, -0.31, 0.001
+19460911, 2.95, -0.05, 0.37, 0.001
+19460912, 0.12, 0.45, 0.49, 0.001
+19460913, 1.85, 0.38, -0.12, 0.001
+19460916, 0.75, 0.55, 0.35, 0.001
+19460917, -0.68, -0.31, -0.06, 0.001
+19460918, -3.19, -1.43, -0.56, 0.001
+19460919, -2.91, -0.68, -0.87, 0.001
+19460920, 2.37, -0.02, 0.31, 0.001
+19460923, -1.60, 0.86, 0.13, 0.001
+19460924, 1.72, -0.98, 0.36, 0.001
+19460925, 2.38, 0.94, -0.12, 0.001
+19460926, 1.09, -0.05, 0.32, 0.001
+19460927, -0.69, 0.13, -0.03, 0.001
+19460930, -1.08, -0.34, -0.40, 0.001
+19461001, -0.32, 0.05, 0.07, 0.001
+19461002, 0.95, -0.14, -0.02, 0.001
+19461003, -0.44, -0.35, -0.15, 0.001
+19461004, -1.12, 0.08, 0.19, 0.001
+19461005, -0.66, 0.31, -0.03, 0.001
+19461007, -0.10, -0.46, 0.48, 0.001
+19461008, -1.09, 0.36, -0.16, 0.001
+19461009, -2.86, -1.02, -0.11, 0.001
+19461010, 1.23, -0.57, 0.71, 0.001
+19461011, 2.07, 0.65, 0.36, 0.001
+19461014, 0.95, 0.24, -0.24, 0.001
+19461015, 3.84, 0.63, 0.47, 0.001
+19461016, -0.22, 1.10, -0.21, 0.001
+19461017, -1.75, -0.69, -0.30, 0.001
+19461018, -0.25, -0.08, 0.30, 0.001
+19461019, -0.16, -0.02, 0.22, 0.001
+19461021, 0.25, -0.08, 0.37, 0.001
+19461022, -0.60, -0.04, 0.15, 0.001
+19461023, -0.91, -0.23, -0.18, 0.001
+19461024, 0.11, 0.22, 0.60, 0.001
+19461025, -0.50, -0.15, 0.34, 0.001
+19461026, -0.08, 0.29, -0.18, 0.001
+19461028, -1.75, 0.12, -0.43, 0.001
+19461029, -0.91, -0.26, 0.11, 0.001
+19461030, -0.06, -0.56, 0.60, 0.001
+19461031, 3.23, 0.79, 0.58, 0.001
+19461101, 1.85, 1.00, 0.10, 0.001
+19461102, 0.62, 0.02, 0.17, 0.001
+19461104, 0.76, 0.01, -0.20, 0.001
+19461106, -3.71, 0.24, -0.73, 0.001
+19461107, 0.44, -0.57, 0.54, 0.001
+19461108, 0.58, -0.08, 0.62, 0.001
+19461109, 0.98, 0.29, 0.56, 0.001
+19461112, -0.45, 0.23, -0.80, 0.001
+19461113, -0.79, -0.61, 0.57, 0.001
+19461114, 0.55, 0.10, 0.04, 0.001
+19461115, -0.93, -0.07, -0.09, 0.001
+19461116, -0.08, -0.07, 0.05, 0.001
+19461118, -0.92, -0.23, -0.23, 0.001
+19461119, -0.42, -0.40, 0.09, 0.001
+19461120, -0.67, -0.21, 0.09, 0.001
+19461121, -1.74, -0.46, -0.32, 0.001
+19461122, -0.51, -0.01, 0.39, 0.001
+19461123, 1.61, 0.37, 0.21, 0.001
+19461125, -0.29, -0.14, 0.27, 0.001
+19461126, 1.28, -0.14, 0.31, 0.001
+19461127, 0.89, 0.18, -0.20, 0.001
+19461129, 1.02, -0.18, 0.27, 0.001
+19461130, 0.07, 0.37, -0.13, 0.001
+19461202, -1.54, -0.20, -0.25, 0.001
+19461203, 0.38, -0.27, 0.31, 0.001
+19461204, 1.76, 0.17, -0.21, 0.001
+19461205, -0.55, -0.28, -0.03, 0.001
+19461206, 0.44, 0.12, -0.11, 0.001
+19461207, 0.81, 0.99, 0.35, 0.001
+19461209, 3.11, -0.29, -0.31, 0.001
+19461210, -0.05, 0.15, -0.28, 0.001
+19461211, 0.15, -0.44, -0.03, 0.001
+19461212, -1.15, -0.02, -0.28, 0.001
+19461213, 0.16, -0.45, 0.31, 0.001
+19461214, 0.58, 0.18, -0.09, 0.001
+19461216, -0.08, 0.30, -0.15, 0.001
+19461217, -0.41, 0.10, -0.06, 0.001
+19461218, 0.23, -0.53, -0.02, 0.001
+19461219, 1.47, 0.68, -0.20, 0.001
+19461220, 0.30, 0.55, -0.24, 0.001
+19461221, 0.21, 0.13, 0.18, 0.001
+19461223, -0.75, 0.04, -0.08, 0.001
+19461224, -0.16, -0.05, 0.19, 0.001
+19461226, -0.79, -0.09, -0.14, 0.001
+19461227, -0.15, -0.55, -0.12, 0.001
+19461228, 0.38, 0.22, 0.05, 0.001
+19461230, -0.14, -0.26, -0.10, 0.001
+19461231, 0.75, -0.12, -0.03, 0.001
+19470102, -0.58, 0.59, 0.07, 0.001
+19470103, 0.14, -0.45, -0.63, 0.001
+19470104, 0.28, 0.58, 0.06, 0.001
+19470106, 0.84, 0.23, -0.07, 0.001
+19470107, -0.72, -0.35, 0.02, 0.001
+19470108, 0.17, -0.24, -0.21, 0.001
+19470109, 0.21, 0.31, -0.16, 0.001
+19470110, -1.21, -0.50, 0.01, 0.001
+19470111, -1.30, -0.11, -0.10, 0.001
+19470113, -1.62, -0.78, -0.03, 0.001
+19470114, 0.32, 0.07, 0.07, 0.001
+19470115, -0.52, 0.13, 0.00, 0.001
+19470116, -0.09, -0.52, 0.15, 0.001
+19470117, 1.70, 0.53, 0.16, 0.001
+19470118, 1.07, 0.99, -0.36, 0.001
+19470120, -1.10, -0.02, 0.24, 0.001
+19470121, -0.33, -0.21, -0.04, 0.001
+19470122, 0.29, 0.16, 0.21, 0.001
+19470123, 0.81, 0.33, -0.07, 0.001
+19470124, 0.28, 0.42, 0.07, 0.001
+19470125, -0.04, 0.14, -0.42, 0.001
+19470127, 0.70, -0.40, -0.06, 0.001
+19470128, 0.66, 0.34, 0.02, 0.001
+19470129, 1.16, 0.29, 0.33, 0.001
+19470130, -0.17, 0.35, -0.05, 0.001
+19470131, 0.37, 0.32, 0.08, 0.001
+19470201, 0.59, 0.38, 0.69, 0.001
+19470203, 0.31, 0.04, 0.24, 0.001
+19470204, 0.09, -0.23, -0.62, 0.001
+19470205, 0.24, -0.20, -0.35, 0.001
+19470206, -0.18, -0.06, -0.14, 0.001
+19470207, 1.42, 0.35, 0.95, 0.001
+19470208, 0.37, 0.26, -0.26, 0.001
+19470210, -0.70, 0.05, -0.65, 0.001
+19470211, 0.45, 0.23, -0.02, 0.001
+19470213, -1.03, 0.06, 0.13, 0.001
+19470214, -0.19, 0.05, 0.14, 0.001
+19470215, -0.01, 0.24, -0.20, 0.001
+19470217, 0.15, -0.10, 0.04, 0.001
+19470218, -0.14, -0.03, 0.20, 0.001
+19470219, -0.78, -0.27, -0.15, 0.001
+19470220, 0.21, -0.10, 0.15, 0.001
+19470221, 0.37, 0.27, 0.01, 0.001
+19470224, -0.68, -0.06, 0.10, 0.001
+19470225, -1.34, -0.83, -0.10, 0.001
+19470226, -1.13, -0.22, -0.10, 0.001
+19470227, 1.23, 0.61, 0.07, 0.001
+19470228, -0.37, 0.29, 0.03, 0.001
+19470301, 0.04, -0.04, -0.02, 0.001
+19470303, -0.36, -0.22, 0.00, 0.001
+19470304, -0.05, 0.03, 0.36, 0.001
+19470305, 1.11, 0.07, 0.11, 0.001
+19470306, 0.41, -0.11, 0.03, 0.001
+19470307, -2.95, -0.26, -0.25, 0.001
+19470308, -0.51, -0.43, 0.00, 0.001
+19470310, -0.44, 0.05, -0.06, 0.001
+19470311, -0.92, -0.50, 0.21, 0.001
+19470312, 0.73, 0.11, 0.33, 0.001
+19470313, -0.04, 0.22, -0.05, 0.001
+19470314, -1.18, -0.55, 0.11, 0.001
+19470315, -0.12, 0.00, -0.14, 0.001
+19470317, 0.34, -0.07, -0.15, 0.001
+19470318, 0.94, -0.24, 0.16, 0.001
+19470319, 0.54, 0.20, -0.10, 0.001
+19470320, -0.22, -0.26, -0.08, 0.001
+19470321, 0.92, -0.43, 0.10, 0.001
+19470322, 0.24, 0.24, 0.02, 0.001
+19470324, -0.65, 0.16, -0.13, 0.001
+19470325, -0.66, -0.13, 0.02, 0.001
+19470326, 1.11, -0.28, 0.15, 0.001
+19470327, 1.32, 0.54, 0.07, 0.001
+19470328, -0.27, 0.32, -0.02, 0.001
+19470329, -0.21, 0.07, -0.06, 0.001
+19470331, -0.71, -0.08, 0.01, 0.001
+19470401, 0.11, -0.32, 0.28, 0.001
+19470402, 0.04, 0.05, -0.05, 0.001
+19470403, -0.33, -0.19, -0.06, 0.001
+19470405, -0.03, 0.00, 0.35, 0.001
+19470407, -0.90, -0.31, -0.16, 0.001
+19470408, -1.23, -0.32, -0.42, 0.001
+19470409, -0.10, -0.08, 0.01, 0.001
+19470410, 0.14, 0.15, 0.14, 0.001
+19470411, -0.67, -0.44, -0.47, 0.001
+19470412, -1.07, -0.37, 0.12, 0.001
+19470414, -2.95, -1.33, -0.15, 0.001
+19470415, -0.03, -0.42, 0.11, 0.001
+19470416, 0.96, 0.40, -0.03, 0.001
+19470417, 0.11, 0.26, -0.05, 0.001
+19470418, -1.20, -0.62, -0.15, 0.001
+19470419, 1.11, -0.50, 0.38, 0.001
+19470421, 0.79, 0.93, 0.46, 0.001
+19470422, 0.58, -0.25, -0.14, 0.001
+19470423, 0.09, 0.26, 0.20, 0.001
+19470424, -0.55, -0.36, 0.16, 0.001
+19470425, -0.83, -0.24, 0.21, 0.001
+19470426, 0.10, -0.13, -0.15, 0.001
+19470428, -0.05, 0.12, 0.08, 0.001
+19470429, -0.15, -0.55, 0.24, 0.001
+19470430, 1.24, 0.11, 0.02, 0.001
+19470501, 0.85, 0.06, 0.13, 0.001
+19470502, 0.48, 0.09, -0.53, 0.001
+19470503, 0.21, -0.20, -0.11, 0.001
+19470505, 0.02, -0.05, 0.05, 0.001
+19470506, -1.00, -0.46, 0.03, 0.001
+19470507, -0.06, -0.67, 0.13, 0.001
+19470508, -0.49, 0.02, -0.05, 0.001
+19470509, -0.19, -0.62, 0.09, 0.001
+19470510, 0.20, 0.08, 0.13, 0.001
+19470512, -1.09, -0.16, -0.08, 0.001
+19470513, -1.71, -0.59, -0.33, 0.001
+19470514, -0.47, -0.38, 0.12, 0.001
+19470515, 0.75, 0.19, -0.25, 0.001
+19470516, -1.98, -0.90, -0.04, 0.001
+19470517, -1.47, -0.39, -0.60, 0.001
+19470519, 0.05, -0.74, 0.25, 0.001
+19470520, 0.52, 0.51, -0.34, 0.001
+19470521, 1.44, -0.31, 0.42, 0.001
+19470522, 0.96, 1.04, 0.44, 0.001
+19470523, 0.39, 0.19, 0.06, 0.001
+19470524, 0.00, -0.14, 0.32, 0.001
+19470526, -0.55, 0.11, -0.33, 0.001
+19470527, -0.11, -0.44, 0.41, 0.001
+19470528, 1.61, 0.23, 0.50, 0.001
+19470529, 0.79, 0.28, -0.01, 0.001
+19470602, -0.98, -0.30, 0.20, 0.001
+19470603, 1.03, -0.22, -0.32, 0.001
+19470604, -0.34, 0.06, 0.05, 0.001
+19470605, -0.02, -0.27, -0.08, 0.001
+19470606, 0.52, -0.08, 0.07, 0.001
+19470609, -0.36, -0.04, -0.21, 0.001
+19470610, 0.68, -0.52, 0.01, 0.001
+19470611, 2.29, 0.68, 0.49, 0.001
+19470612, -0.15, 0.49, -0.45, 0.001
+19470613, 1.02, 0.06, -0.21, 0.001
+19470616, 0.00, -0.02, -0.15, 0.001
+19470617, -0.27, -0.09, -0.18, 0.001
+19470618, -0.06, 0.08, -0.04, 0.001
+19470619, 1.00, 0.07, 0.09, 0.001
+19470620, 0.50, 0.48, 0.39, 0.001
+19470623, 0.54, 0.22, -0.32, 0.001
+19470624, -1.76, 0.11, -0.19, 0.001
+19470625, 0.71, -0.82, 0.13, 0.001
+19470626, 0.44, -0.07, 0.41, 0.001
+19470627, 0.05, 0.06, 0.05, 0.001
+19470630, 0.39, -0.15, -0.30, 0.001
+19470701, 1.47, -0.09, 1.00, 0.001
+19470702, 0.17, 0.83, 0.20, 0.001
+19470703, 1.08, 0.23, 0.63, 0.001
+19470707, 0.26, 0.28, -0.18, 0.001
+19470708, 0.41, 0.63, 0.14, 0.001
+19470709, -0.68, 0.08, -0.27, 0.001
+19470710, 0.78, -0.06, 0.48, 0.001
+19470711, 1.14, 0.45, 0.34, 0.001
+19470714, 0.78, 0.63, 0.21, 0.001
+19470715, -0.16, -0.12, -0.18, 0.001
+19470716, -0.12, 0.00, -0.16, 0.001
+19470717, -0.67, 0.02, 0.07, 0.001
+19470718, 0.21, -0.48, -0.05, 0.001
+19470721, -0.16, 0.00, 0.47, 0.001
+19470722, 0.09, -0.14, 0.18, 0.001
+19470723, 0.69, 0.14, 0.33, 0.001
+19470724, 1.05, 0.14, 0.70, 0.001
+19470725, -0.08, 0.29, -0.16, 0.001
+19470728, -0.76, -0.12, -0.51, 0.001
+19470729, -2.03, -0.78, -0.87, 0.001
+19470730, -0.65, -0.60, -0.25, 0.001
+19470731, 1.32, 0.13, 0.63, 0.001
+19470801, 0.24, -0.16, -0.13, 0.001
+19470804, -1.04, -0.18, -0.47, 0.001
+19470805, 0.26, -0.03, 0.19, 0.001
+19470806, -0.38, -0.12, -0.20, 0.001
+19470807, 0.12, -0.43, 0.25, 0.001
+19470808, -1.07, 0.04, -0.53, 0.001
+19470811, -0.51, 0.03, 0.24, 0.001
+19470812, 0.85, 0.50, 0.63, 0.001
+19470813, -0.07, 0.23, -0.33, 0.001
+19470814, 0.20, -0.01, 0.55, 0.001
+19470815, 0.82, 0.06, 0.58, 0.001
+19470818, -0.26, 0.19, -0.01, 0.001
+19470819, -0.30, -0.17, -0.29, 0.001
+19470820, -0.43, -0.06, -0.27, 0.001
+19470821, 0.29, -0.06, 0.02, 0.001
+19470822, 0.22, -0.02, 0.16, 0.001
+19470825, -1.49, -0.07, -0.54, 0.001
+19470826, 0.03, -0.01, 0.38, 0.001
+19470827, 0.17, 0.31, -0.23, 0.001
+19470828, -0.07, 0.38, 0.10, 0.001
+19470829, 0.70, -0.10, 0.12, 0.001
+19470902, 0.50, 0.03, 0.05, 0.003
+19470903, -0.10, 0.44, 0.11, 0.003
+19470904, -1.30, -0.18, -0.93, 0.003
+19470905, -0.21, -0.10, 0.42, 0.003
+19470908, -1.34, 0.26, -0.70, 0.003
+19470909, 0.16, -0.15, 0.69, 0.003
+19470910, 0.90, -0.02, 0.44, 0.003
+19470911, 0.37, 0.42, -0.06, 0.003
+19470912, -0.28, 0.11, -0.36, 0.003
+19470915, -0.40, 0.00, 0.10, 0.003
+19470916, 0.82, -0.01, 0.78, 0.003
+19470917, 1.43, 0.62, 0.48, 0.003
+19470918, -0.30, 0.24, -0.53, 0.003
+19470919, -0.20, -0.11, -0.24, 0.003
+19470922, -0.13, -0.07, 0.24, 0.003
+19470923, -1.27, 0.24, -0.45, 0.003
+19470924, 0.26, 0.04, 0.61, 0.003
+19470925, -0.56, 0.14, -0.13, 0.003
+19470926, -0.14, -0.01, 0.00, 0.003
+19470929, 0.44, -0.31, 0.46, 0.003
+19470930, 0.86, 0.04, 0.42, 0.003
+19471001, 0.49, 0.49, 0.42, 0.002
+19471002, 0.00, -0.03, -0.07, 0.002
+19471003, 0.67, 0.37, 0.40, 0.002
+19471004, 0.18, 0.20, 0.20, 0.002
+19471006, 0.07, 0.03, -0.28, 0.002
+19471007, -0.02, 0.10, -0.04, 0.002
+19471008, -0.55, 0.33, -0.39, 0.002
+19471009, 0.47, -0.20, 0.37, 0.002
+19471010, 0.32, 0.61, 0.05, 0.002
+19471011, 0.14, 0.54, 0.37, 0.002
+19471014, 1.38, 0.15, 0.63, 0.002
+19471015, 0.36, 0.31, -0.35, 0.002
+19471016, 0.08, -0.02, -0.20, 0.002
+19471017, 0.11, -0.38, -0.07, 0.002
+19471018, 0.44, -0.38, 0.34, 0.002
+19471020, 0.70, 0.16, 0.51, 0.002
+19471021, -0.14, -0.20, -0.12, 0.002
+19471022, -0.26, 0.18, -0.08, 0.002
+19471023, 0.12, -0.08, -0.01, 0.002
+19471024, -1.30, -0.41, -0.80, 0.002
+19471025, 0.14, 0.00, 0.18, 0.002
+19471027, 0.02, -0.30, 0.10, 0.002
+19471028, 0.07, -0.08, -0.08, 0.002
+19471029, -0.41, -0.28, -0.48, 0.002
+19471030, -1.24, -0.79, -0.50, 0.002
+19471031, 0.64, 0.23, 0.05, 0.002
+19471101, 0.22, 0.01, 0.03, 0.003
+19471103, -0.14, -0.20, 0.03, 0.003
+19471105, -0.57, -0.23, -0.39, 0.003
+19471106, 0.05, -0.35, -0.08, 0.003
+19471107, -0.20, 0.18, 0.04, 0.003
+19471108, 0.03, -0.01, -0.01, 0.003
+19471110, 0.35, -0.27, 0.21, 0.003
+19471112, -0.21, -0.12, 0.07, 0.003
+19471113, -0.64, -0.07, -0.36, 0.003
+19471114, 0.04, -0.11, 0.36, 0.003
+19471115, 0.14, -0.07, 0.14, 0.003
+19471117, -0.07, -0.34, 0.32, 0.003
+19471118, 0.76, 0.45, 0.68, 0.003
+19471119, 0.31, 0.39, 0.04, 0.003
+19471120, 0.34, -0.49, 0.26, 0.003
+19471121, -0.34, 0.31, 0.03, 0.003
+19471122, -0.10, 0.08, -0.30, 0.003
+19471124, -0.51, -0.08, -0.17, 0.003
+19471125, -0.30, -0.34, 0.21, 0.003
+19471126, -0.15, -0.05, 0.20, 0.003
+19471128, -0.87, -0.28, -0.06, 0.003
+19471129, -0.15, -0.19, -0.11, 0.003
+19471201, 0.55, -0.23, 0.23, 0.003
+19471202, 0.22, -0.21, 0.36, 0.003
+19471203, -0.74, -0.14, -0.22, 0.003
+19471204, -0.58, -0.16, 0.00, 0.003
+19471205, -1.40, -0.06, -0.30, 0.003
+19471206, 0.02, 0.15, 0.28, 0.003
+19471208, 0.79, -0.09, 0.59, 0.003
+19471209, 0.45, 0.13, 0.49, 0.003
+19471210, 0.23, 0.22, 0.04, 0.003
+19471211, 0.14, -0.48, -0.07, 0.003
+19471212, 0.65, 0.14, 0.44, 0.003
+19471213, 0.64, 0.16, 0.63, 0.003
+19471215, 0.57, 0.21, 0.55, 0.003
+19471216, -0.11, -0.46, 0.03, 0.003
+19471217, 0.33, 0.05, 0.61, 0.003
+19471218, -0.08, -0.14, 0.04, 0.003
+19471219, 0.39, 0.01, 0.03, 0.003
+19471220, 0.83, -0.02, 0.66, 0.003
+19471222, -0.22, 0.00, -0.07, 0.003
+19471223, 0.33, -0.48, 0.47, 0.003
+19471224, -0.07, 0.08, -0.20, 0.003
+19471226, -0.75, -0.55, -0.35, 0.003
+19471227, -0.16, -0.05, -0.24, 0.003
+19471229, -0.41, -0.40, -0.29, 0.003
+19471230, 0.88, -0.12, 0.21, 0.003
+19471231, 0.51, 0.05, -0.27, 0.003
+19480102, 0.41, 0.63, 0.83, 0.003
+19480105, -0.90, 0.74, -0.79, 0.003
+19480106, -0.60, 0.04, -0.28, 0.003
+19480107, 0.60, -0.08, 0.67, 0.003
+19480108, 0.58, 0.26, 0.50, 0.003
+19480109, -0.36, 0.30, 0.08, 0.003
+19480110, 0.06, -0.18, 0.07, 0.003
+19480112, -0.61, 0.07, -0.08, 0.003
+19480113, -1.36, 0.11, -0.89, 0.003
+19480114, -0.12, 0.28, 0.22, 0.003
+19480115, -0.30, 0.29, 0.07, 0.003
+19480116, 0.01, 0.14, 0.51, 0.003
+19480117, -0.05, 0.00, -0.28, 0.003
+19480119, -1.30, -0.34, -0.60, 0.003
+19480120, 0.05, 0.11, 0.46, 0.003
+19480121, -0.98, 0.12, -0.62, 0.003
+19480122, -0.77, -0.01, 0.45, 0.003
+19480123, -0.26, 0.24, 0.11, 0.003
+19480124, 0.03, 0.07, 0.25, 0.003
+19480126, -0.16, -0.07, 0.13, 0.003
+19480127, 0.16, 0.16, 0.40, 0.003
+19480128, 0.80, -0.02, 0.35, 0.003
+19480129, 0.98, -0.19, 0.11, 0.003
+19480130, 0.03, -0.11, -0.23, 0.003
+19480131, 0.10, 0.03, 0.00, 0.003
+19480202, 0.00, 0.05, -0.12, 0.003
+19480203, -0.58, -0.13, -0.26, 0.003
+19480204, -1.82, -0.55, -0.57, 0.003
+19480205, -1.09, -0.09, -0.06, 0.003
+19480206, 0.17, 0.04, 0.24, 0.003
+19480207, 0.62, 0.02, 0.39, 0.003
+19480209, 0.00, -0.05, -0.31, 0.003
+19480210, -2.76, -0.62, -1.18, 0.003
+19480211, -0.27, -0.66, -0.01, 0.003
+19480213, -0.03, 0.17, 0.34, 0.003
+19480214, 0.18, 0.32, 0.22, 0.003
+19480216, 1.29, -0.23, 0.22, 0.003
+19480217, 0.22, 0.11, -0.13, 0.003
+19480218, -0.14, -0.24, 0.09, 0.003
+19480219, -0.22, 0.16, -0.04, 0.003
+19480220, -0.42, -0.28, -0.07, 0.003
+19480221, 0.16, 0.34, 0.24, 0.003
+19480224, 0.14, -0.30, 0.19, 0.003
+19480225, 0.59, 0.11, 0.46, 0.003
+19480226, -0.51, 0.00, -0.12, 0.003
+19480227, -0.44, -0.26, 0.12, 0.003
+19480228, 0.52, 0.34, 0.52, 0.003
+19480301, 0.50, 0.12, 0.42, 0.003
+19480302, 0.58, -0.39, 0.64, 0.003
+19480303, 0.27, 0.02, 0.27, 0.003
+19480304, -0.29, -0.03, -0.53, 0.003
+19480305, 0.12, 0.02, 0.00, 0.003
+19480306, 0.43, 0.18, 0.09, 0.003
+19480308, -0.67, -0.01, 0.07, 0.003
+19480309, -0.61, -0.41, -0.16, 0.003
+19480310, 0.43, 0.27, 0.69, 0.003
+19480311, -0.02, 0.19, -0.02, 0.003
+19480312, 0.01, -0.20, 0.26, 0.003
+19480313, 0.45, 0.02, 0.21, 0.003
+19480315, -0.03, -0.04, -0.07, 0.003
+19480316, -1.66, -0.39, -0.95, 0.003
+19480317, 0.69, -0.16, 0.97, 0.003
+19480318, 0.77, 0.62, 0.59, 0.003
+19480319, 1.61, -0.17, 0.71, 0.003
+19480320, 2.22, 0.36, 0.64, 0.003
+19480322, 0.51, 0.73, -1.23, 0.003
+19480323, 0.06, -0.02, -0.03, 0.003
+19480324, 0.02, -0.04, 0.42, 0.003
+19480325, 0.37, -0.29, 0.41, 0.003
+19480327, -0.19, 0.16, 0.01, 0.003
+19480329, -0.11, -0.31, 0.00, 0.003
+19480330, 0.95, -0.23, 0.36, 0.003
+19480331, 1.46, 0.16, 0.44, 0.003
+19480401, 0.22, -0.31, 0.01, 0.003
+19480402, 0.12, -0.15, -0.53, 0.003
+19480403, 0.12, -0.02, -0.18, 0.003
+19480405, 0.25, 0.06, -0.08, 0.003
+19480406, 0.49, -0.42, 0.24, 0.003
+19480407, -0.21, -0.12, 0.16, 0.003
+19480408, 0.29, -0.23, 0.54, 0.003
+19480409, 0.10, 0.34, 0.49, 0.003
+19480410, 0.09, -0.11, 0.09, 0.003
+19480412, -0.19, 0.17, -0.29, 0.003
+19480413, 0.01, -0.12, 0.08, 0.003
+19480414, 0.01, -0.17, 0.47, 0.003
+19480415, 0.82, 0.13, 0.89, 0.003
+19480416, 0.40, 0.31, -0.10, 0.003
+19480417, -0.07, 0.04, -0.32, 0.003
+19480419, 0.53, -0.09, 1.01, 0.003
+19480420, -0.13, -0.30, -0.28, 0.003
+19480421, 0.45, -0.60, 1.01, 0.003
+19480422, 0.83, -0.24, 0.44, 0.003
+19480423, 0.47, 0.45, 0.45, 0.003
+19480424, -0.11, 0.37, -0.21, 0.003
+19480426, -1.13, 0.05, -1.02, 0.003
+19480427, 0.16, 0.00, 0.57, 0.003
+19480428, 0.25, -0.07, 0.23, 0.003
+19480429, 0.02, -0.19, 0.38, 0.003
+19480430, -0.18, -0.35, -0.05, 0.003
+19480501, -0.24, 0.09, -0.33, 0.003
+19480503, 0.72, -0.35, 0.78, 0.003
+19480504, 0.09, 0.09, 0.05, 0.003
+19480505, -0.57, -0.05, -0.94, 0.003
+19480506, 0.64, 0.01, 0.70, 0.003
+19480507, 0.50, 0.17, -0.37, 0.003
+19480508, 0.26, 0.01, 0.07, 0.003
+19480510, 0.25, -0.58, 0.77, 0.003
+19480511, 0.45, 0.11, -0.34, 0.003
+19480512, 0.19, 0.01, 0.07, 0.003
+19480513, 0.57, 0.31, 0.00, 0.003
+19480514, 2.02, 0.79, 0.22, 0.003
+19480515, 0.95, 0.72, -0.89, 0.003
+19480517, 0.37, 0.44, -0.41, 0.003
+19480518, -0.97, -0.27, -0.25, 0.003
+19480519, 0.18, -0.04, 0.24, 0.003
+19480520, 0.79, 0.46, 0.59, 0.003
+19480521, 0.32, 0.12, 0.08, 0.003
+19480522, 0.18, 0.02, 0.11, 0.003
+19480524, -0.13, -0.14, -0.46, 0.003
+19480525, -0.35, -0.56, -0.55, 0.003
+19480526, 0.85, -0.07, 0.05, 0.003
+19480527, -0.11, -0.22, -0.52, 0.003
+19480528, 0.16, -0.18, 0.18, 0.003
+19480601, 0.17, -0.53, 0.11, 0.004
+19480602, 0.22, -0.38, 0.27, 0.004
+19480603, -0.32, -0.19, -0.40, 0.004
+19480604, -0.75, 0.06, -0.44, 0.004
+19480607, -0.27, -0.39, 0.11, 0.004
+19480608, 1.52, 0.14, 1.43, 0.004
+19480609, 0.52, 0.24, 0.09, 0.004
+19480610, 0.11, -0.21, 0.49, 0.004
+19480611, 0.17, -0.19, 0.11, 0.004
+19480614, 0.02, 0.01, 0.26, 0.004
+19480615, 0.30, -0.52, 0.08, 0.004
+19480616, -0.50, -0.11, -0.07, 0.004
+19480617, -0.11, 0.01, 0.58, 0.004
+19480618, -0.20, -0.18, 0.11, 0.004
+19480621, -0.89, -0.47, -0.35, 0.004
+19480622, -0.07, -0.05, 0.80, 0.004
+19480623, 0.79, 0.64, 0.32, 0.004
+19480624, -0.13, 0.60, -0.13, 0.004
+19480625, -0.36, 0.05, -0.19, 0.004
+19480628, -1.15, -0.32, -0.98, 0.004
+19480629, 0.36, -0.04, 0.26, 0.004
+19480630, 0.50, -0.02, 0.38, 0.004
+19480701, -0.21, 0.03, -0.17, 0.004
+19480702, 0.68, -0.40, 0.61, 0.004
+19480706, 0.12, 0.12, 0.21, 0.004
+19480707, -0.28, 0.01, 0.04, 0.004
+19480708, 0.05, -0.12, 0.22, 0.004
+19480709, 0.57, 0.08, 0.22, 0.004
+19480712, -0.03, 0.26, 0.41, 0.004
+19480713, -0.46, 0.04, 0.05, 0.004
+19480714, 0.13, -0.22, 0.27, 0.004
+19480715, -1.62, 0.23, -1.17, 0.004
+19480716, -1.40, 0.08, -0.38, 0.004
+19480719, -3.17, -0.07, -0.77, 0.004
+19480720, 1.43, -0.20, 0.54, 0.004
+19480721, 0.52, 0.10, -0.18, 0.004
+19480722, 0.63, -0.22, 0.17, 0.004
+19480723, 0.34, -0.02, -0.05, 0.004
+19480726, -0.71, 0.20, -0.46, 0.004
+19480727, 0.86, -0.86, 0.60, 0.004
+19480728, -0.41, 0.42, 0.19, 0.004
+19480729, -0.73, 0.21, -0.12, 0.004
+19480730, -1.44, -0.03, -0.07, 0.004
+19480802, -0.02, -0.27, -0.05, 0.004
+19480803, 0.10, 0.02, 0.19, 0.004
+19480804, 1.29, -0.60, 0.60, 0.004
+19480805, -0.16, 0.17, -0.33, 0.004
+19480806, 0.09, -0.28, 0.37, 0.004
+19480809, -0.81, 0.23, -0.43, 0.004
+19480810, -0.94, 0.17, -0.49, 0.004
+19480811, -0.74, -0.77, -0.35, 0.004
+19480812, 0.36, 0.23, -0.10, 0.004
+19480813, -0.01, 0.08, -0.23, 0.004
+19480816, 0.11, -0.19, -0.10, 0.004
+19480817, 1.02, -0.13, 0.46, 0.004
+19480818, 0.01, 0.30, -0.31, 0.004
+19480819, 0.18, -0.47, 0.30, 0.004
+19480820, 0.67, -0.25, 0.22, 0.004
+19480823, -1.02, 0.32, -0.42, 0.004
+19480824, 0.32, -0.12, 0.45, 0.004
+19480825, -0.17, 0.13, -0.30, 0.004
+19480826, 0.11, -0.18, 0.12, 0.004
+19480827, 0.50, -0.06, 0.30, 0.004
+19480830, -0.45, 0.39, 0.00, 0.004
+19480831, -0.15, 0.15, 0.41, 0.004
+19480901, 1.24, -0.15, 0.57, 0.002
+19480902, 0.68, -0.02, 0.23, 0.002
+19480903, -0.06, -0.13, -0.21, 0.002
+19480907, 0.41, -0.18, 0.39, 0.002
+19480908, -1.45, 0.20, -1.10, 0.002
+19480909, -1.63, 0.04, -0.68, 0.002
+19480910, -0.06, -0.33, -0.01, 0.002
+19480913, -0.74, 0.29, -0.08, 0.002
+19480914, 0.79, -0.38, 0.37, 0.002
+19480915, -0.07, 0.37, -0.17, 0.002
+19480916, 0.04, -0.11, 0.20, 0.002
+19480917, -0.49, -0.02, -0.35, 0.002
+19480920, -1.81, -0.09, -1.11, 0.002
+19480921, 0.61, -0.63, 0.36, 0.002
+19480922, 0.50, 0.12, 0.51, 0.002
+19480923, -0.33, 0.32, -0.34, 0.002
+19480924, 0.17, -0.25, 0.04, 0.002
+19480927, -2.30, 0.22, -1.21, 0.002
+19480928, 0.92, -0.67, 0.42, 0.002
+19480929, 0.96, -0.08, 0.36, 0.002
+19480930, -0.33, 0.20, 0.07, 0.002
+19481001, 1.00, -0.58, 0.21, 0.002
+19481002, 0.52, 0.11, 0.44, 0.002
+19481004, 0.54, -0.03, 0.00, 0.002
+19481005, -0.36, -0.03, -0.38, 0.002
+19481006, 0.33, 0.06, 0.21, 0.002
+19481007, 0.56, -0.08, 0.17, 0.002
+19481008, -0.17, 0.01, -0.17, 0.002
+19481009, 0.06, 0.07, 0.11, 0.002
+19481011, -0.04, -0.18, -0.56, 0.002
+19481013, 0.95, -0.27, 0.63, 0.002
+19481014, 0.32, 0.10, 0.00, 0.002
+19481015, -0.06, 0.02, 0.04, 0.002
+19481016, 0.22, -0.08, 0.24, 0.002
+19481018, 0.27, -0.03, 0.16, 0.002
+19481019, 0.40, -0.10, 0.15, 0.002
+19481020, 0.47, 0.26, 0.20, 0.002
+19481021, 0.13, 0.11, 0.41, 0.002
+19481022, 1.37, -0.12, 0.45, 0.002
+19481023, 0.31, 0.20, 0.13, 0.002
+19481025, -0.54, -0.02, -0.61, 0.002
+19481026, -0.06, -0.15, -0.23, 0.002
+19481027, -0.15, -0.21, -0.57, 0.002
+19481028, -0.67, -0.02, -0.41, 0.002
+19481029, 0.21, -0.35, -0.17, 0.002
+19481030, 0.23, -0.11, 0.12, 0.002
+19481101, 0.78, 0.18, 0.38, 0.002
+19481103, -4.43, -0.77, -1.63, 0.002
+19481104, 1.51, 0.68, 0.14, 0.002
+19481105, -3.94, 0.10, -1.79, 0.002
+19481106, 0.36, 0.03, 0.47, 0.002
+19481108, 0.20, -0.11, 0.29, 0.002
+19481109, -3.01, 0.00, -1.66, 0.002
+19481110, -0.19, -0.36, 0.13, 0.002
+19481112, 0.39, 0.30, 0.08, 0.002
+19481113, 0.24, -0.02, -0.14, 0.002
+19481115, 1.14, -0.20, 0.53, 0.002
+19481116, 0.31, 0.05, 0.02, 0.002
+19481117, -0.31, -0.06, -0.11, 0.002
+19481118, 0.27, 0.11, -0.25, 0.002
+19481119, 0.41, -0.04, 0.34, 0.002
+19481120, 0.17, 0.05, 0.16, 0.002
+19481122, -0.63, 0.00, -0.65, 0.002
+19481123, -0.23, -0.40, -0.05, 0.002
+19481124, -1.48, -0.11, -0.42, 0.002
+19481126, -0.03, -0.07, -0.12, 0.002
+19481127, -0.05, 0.20, -0.08, 0.002
+19481129, -0.70, -0.02, -0.26, 0.002
+19481130, -0.31, -0.12, 0.21, 0.002
+19481201, 1.57, -0.45, 0.73, 0.002
+19481202, 0.36, 0.33, 0.19, 0.002
+19481203, 0.55, -0.23, 0.10, 0.002
+19481204, 0.80, -0.20, 0.41, 0.002
+19481206, 0.13, -0.10, 0.08, 0.002
+19481207, 0.05, -0.03, -0.47, 0.002
+19481208, -0.16, 0.02, -0.27, 0.002
+19481209, -0.27, -0.13, -0.35, 0.002
+19481210, 0.17, -0.25, -0.23, 0.002
+19481211, 0.74, -0.08, 0.60, 0.002
+19481213, -0.05, 0.00, 0.06, 0.002
+19481214, -0.50, -0.24, -0.61, 0.002
+19481215, -0.35, 0.02, -0.35, 0.002
+19481216, -0.24, -0.16, -0.42, 0.002
+19481217, 0.20, -0.08, -0.09, 0.002
+19481218, -0.05, 0.29, -0.16, 0.002
+19481220, 0.10, -0.39, -0.32, 0.002
+19481221, -0.22, -0.02, 0.04, 0.002
+19481222, 0.02, -0.11, 0.12, 0.002
+19481223, 0.09, 0.05, -0.01, 0.002
+19481224, 0.66, -0.09, 0.54, 0.002
+19481227, -0.38, -0.08, -0.76, 0.002
+19481228, -0.71, -0.76, 0.18, 0.002
+19481229, 1.12, -0.20, -0.14, 0.002
+19481230, 0.07, 0.13, -0.49, 0.002
+19481231, -0.47, 0.00, -0.26, 0.002
+19490103, -1.38, 0.77, -0.14, 0.004
+19490104, 0.42, 0.29, 0.81, 0.004
+19490105, 1.01, 0.18, 0.25, 0.004
+19490106, 1.99, 0.14, 0.36, 0.004
+19490107, 0.80, 0.75, 0.15, 0.004
+19490108, 0.05, 0.00, -0.23, 0.004
+19490110, -0.69, 0.12, -0.61, 0.004
+19490111, 0.04, -0.05, 0.02, 0.004
+19490112, -0.07, 0.17, -0.06, 0.004
+19490113, -0.53, 0.01, -0.12, 0.004
+19490114, -0.83, -0.26, -0.22, 0.004
+19490115, 0.20, 0.01, 0.30, 0.004
+19490117, 0.28, -0.20, -0.06, 0.004
+19490118, 0.27, 0.24, -0.02, 0.004
+19490119, 0.29, -0.12, 0.34, 0.004
+19490120, 0.45, -0.03, 0.10, 0.004
+19490121, -0.14, 0.22, -0.04, 0.004
+19490122, 0.15, 0.08, -0.07, 0.004
+19490124, -0.32, 0.04, 0.32, 0.004
+19490125, -0.65, 0.06, -0.17, 0.004
+19490126, -0.30, -0.16, 0.27, 0.004
+19490127, -0.39, 0.00, 0.14, 0.004
+19490128, -0.40, -0.25, -0.39, 0.004
+19490129, 0.17, -0.08, 0.18, 0.004
+19490131, -0.14, -0.12, 0.08, 0.004
+19490201, 0.50, -0.33, -0.10, 0.004
+19490202, 0.18, 0.13, 0.07, 0.004
+19490203, -0.24, 0.02, -0.22, 0.004
+19490204, -1.32, 0.14, -0.58, 0.004
+19490205, -1.48, 0.10, -0.81, 0.004
+19490207, -0.71, -0.08, -0.26, 0.004
+19490208, -0.14, -0.27, 0.43, 0.004
+19490209, 0.59, -0.19, 0.20, 0.004
+19490210, -1.18, 0.18, -0.24, 0.004
+19490211, 0.00, -0.40, 0.16, 0.004
+19490214, 0.16, -0.04, 0.15, 0.004
+19490215, 0.40, -0.12, -0.01, 0.004
+19490216, 0.57, -0.33, 0.06, 0.004
+19490217, 0.85, -0.13, 0.28, 0.004
+19490218, -0.21, 0.23, -0.11, 0.004
+19490219, -0.13, -0.04, -0.09, 0.004
+19490221, -0.25, -0.16, -0.27, 0.004
+19490223, -0.71, -0.03, -0.52, 0.004
+19490224, -0.91, 0.03, -0.31, 0.004
+19490225, -0.18, -0.08, 0.38, 0.004
+19490226, 0.42, 0.00, 0.21, 0.004
+19490228, 0.87, -0.58, 0.68, 0.004
+19490301, 0.52, 0.15, 0.33, 0.004
+19490302, -0.01, 0.05, -0.18, 0.004
+19490303, -0.06, 0.28, -0.34, 0.004
+19490304, 0.22, -0.35, -0.05, 0.004
+19490305, 0.89, -0.07, 0.34, 0.004
+19490307, 0.49, 0.12, 0.24, 0.004
+19490308, 0.35, 0.21, 0.08, 0.004
+19490309, -0.16, 0.00, -0.22, 0.004
+19490310, 0.11, -0.11, -0.04, 0.004
+19490311, 0.92, -0.20, 0.27, 0.004
+19490312, 0.34, 0.26, 0.32, 0.004
+19490314, 0.00, -0.16, -0.05, 0.004
+19490315, -0.63, 0.22, -0.39, 0.004
+19490316, -0.38, -0.05, -0.08, 0.004
+19490317, 0.38, -0.20, 0.29, 0.004
+19490318, -0.22, 0.26, -0.09, 0.004
+19490319, -0.03, 0.14, 0.00, 0.004
+19490321, -0.21, 0.11, 0.32, 0.004
+19490322, -0.75, -0.14, -1.03, 0.004
+19490323, 0.95, -0.63, 0.67, 0.004
+19490324, 0.36, 0.46, 0.33, 0.004
+19490325, -0.50, -0.01, -0.34, 0.004
+19490326, 0.07, 0.14, 0.05, 0.004
+19490328, 0.10, 0.03, -0.16, 0.004
+19490329, 1.76, 0.51, 1.12, 0.004
+19490330, 0.27, 1.07, 0.26, 0.004
+19490331, -0.79, 0.27, -0.33, 0.004
+19490401, -0.64, 0.01, -0.22, 0.004
+19490402, 0.30, 0.12, 0.06, 0.004
+19490404, 0.12, -0.28, 0.01, 0.004
+19490405, 0.05, 0.05, -0.02, 0.004
+19490406, -0.20, 0.01, 0.12, 0.004
+19490407, -0.26, -0.25, -0.13, 0.004
+19490408, 0.15, -0.32, 0.30, 0.004
+19490409, 0.28, 0.20, 0.30, 0.004
+19490411, -0.21, 0.19, -0.35, 0.004
+19490412, 0.10, 0.06, 0.04, 0.004
+19490413, -0.05, -0.11, -0.27, 0.004
+19490414, -0.18, 0.00, -0.10, 0.004
+19490416, 0.30, -0.07, 0.02, 0.004
+19490418, 0.11, -0.41, -0.43, 0.004
+19490419, -0.32, 0.11, -0.21, 0.004
+19490420, -0.19, -0.07, 0.00, 0.004
+19490421, -1.47, 0.00, -0.66, 0.004
+19490422, 0.05, -0.11, 0.22, 0.004
+19490423, 0.40, 0.08, 0.22, 0.004
+19490425, -0.27, 0.20, 0.18, 0.004
+19490426, 0.35, -0.02, 0.28, 0.004
+19490427, 0.06, -0.05, -0.38, 0.004
+19490428, -0.52, 0.16, -0.36, 0.004
+19490429, -0.02, -0.34, -0.07, 0.004
+19490430, 0.20, -0.04, 0.27, 0.004
+19490502, 0.15, -0.19, -0.08, 0.004
+19490503, 0.37, -0.58, -0.16, 0.004
+19490504, 0.95, 0.02, 0.20, 0.004
+19490505, 0.04, 0.25, -0.19, 0.004
+19490506, -0.37, -0.10, -0.19, 0.004
+19490507, -0.03, 0.15, -0.05, 0.004
+19490509, -0.24, -0.17, -0.38, 0.004
+19490510, -0.17, -0.12, -0.21, 0.004
+19490511, 0.15, 0.10, 0.10, 0.004
+19490512, 0.26, 0.01, 0.18, 0.004
+19490513, 0.11, -0.01, 0.37, 0.004
+19490514, 0.26, 0.24, 0.60, 0.004
+19490516, 0.24, 0.07, -0.07, 0.004
+19490517, -0.26, 0.24, -0.44, 0.004
+19490518, -0.20, -0.04, 0.00, 0.004
+19490519, -0.59, -0.20, -0.50, 0.004
+19490520, -0.39, -0.03, -0.26, 0.004
+19490521, 0.02, 0.28, 0.11, 0.004
+19490523, -0.85, 0.02, -0.17, 0.004
+19490524, -0.58, -0.17, -0.45, 0.004
+19490525, 0.26, -0.42, 0.43, 0.004
+19490526, 0.09, 0.28, -0.04, 0.004
+19490527, -0.18, -0.13, -0.07, 0.004
+19490531, -2.01, -0.28, -1.22, 0.004
+19490601, -0.24, -0.11, 0.52, 0.004
+19490602, 0.11, 0.39, -0.29, 0.004
+19490603, -0.55, -0.17, 0.11, 0.004
+19490606, -1.53, -0.08, -0.85, 0.004
+19490607, 0.17, -0.01, 0.40, 0.004
+19490608, 0.67, 0.14, 0.49, 0.004
+19490609, -0.03, -0.07, -0.09, 0.004
+19490610, -0.72, -0.01, -0.70, 0.004
+19490613, -1.84, -0.57, -1.29, 0.004
+19490614, 0.34, -0.31, 0.18, 0.004
+19490615, 1.68, -0.09, 0.80, 0.004
+19490616, -0.15, 0.43, -0.11, 0.004
+19490617, 0.11, -0.17, -0.20, 0.004
+19490620, 1.20, -0.57, 0.55, 0.004
+19490621, 0.17, 0.28, -0.44, 0.004
+19490622, -0.11, 0.03, -0.06, 0.004
+19490623, 0.61, 0.05, 0.20, 0.004
+19490624, 0.12, 0.03, 0.07, 0.004
+19490627, -0.04, 0.04, -0.47, 0.004
+19490628, -0.85, -0.15, -0.11, 0.004
+19490629, 0.58, -0.05, -0.18, 0.004
+19490630, 0.49, 0.11, -0.25, 0.004
+19490701, 0.71, 0.07, 0.67, 0.004
+19490705, 0.45, -0.04, -0.12, 0.004
+19490706, 0.87, -0.06, 0.46, 0.004
+19490707, -0.03, 0.16, -0.35, 0.004
+19490708, 0.02, 0.28, -0.17, 0.004
+19490711, 0.11, 0.11, -0.24, 0.004
+19490712, 0.50, -0.12, -0.02, 0.004
+19490713, 0.97, -0.07, 0.78, 0.004
+19490714, 0.27, 0.11, -0.06, 0.004
+19490715, -0.25, 0.00, 0.04, 0.004
+19490718, 0.30, -0.10, -0.01, 0.004
+19490719, 0.72, -0.26, 0.49, 0.004
+19490720, 0.41, 0.20, 0.06, 0.004
+19490721, -0.38, 0.18, -0.30, 0.004
+19490722, 0.02, -0.02, -0.15, 0.004
+19490725, 0.27, 0.21, 0.14, 0.004
+19490726, 0.58, -0.09, 0.28, 0.004
+19490727, 0.14, 0.00, -0.25, 0.004
+19490728, -0.18, -0.10, -0.66, 0.004
+19490729, -0.09, 0.07, -0.22, 0.004
+19490801, 0.52, -0.40, -0.01, 0.004
+19490802, 0.31, 0.02, 0.25, 0.004
+19490803, -0.01, -0.03, -0.06, 0.004
+19490804, -0.03, -0.05, -0.15, 0.004
+19490805, 1.15, -0.47, 0.70, 0.004
+19490808, 1.07, 0.59, 0.26, 0.004
+19490809, -0.37, 0.45, -0.04, 0.004
+19490810, 0.61, 0.31, 0.35, 0.004
+19490811, -0.25, 0.33, -0.38, 0.004
+19490812, -0.27, -0.08, -0.24, 0.004
+19490815, -0.27, -0.03, -0.25, 0.004
+19490816, 0.37, -0.33, 0.03, 0.004
+19490817, 1.04, -0.14, 0.51, 0.004
+19490818, 0.39, 0.12, 0.14, 0.004
+19490819, -0.45, 0.29, -0.68, 0.004
+19490822, -0.35, -0.11, -0.04, 0.004
+19490823, -1.22, 0.16, -0.40, 0.004
+19490824, 0.09, 0.01, -0.08, 0.004
+19490825, 0.26, 0.05, 0.01, 0.004
+19490826, 0.18, -0.22, -0.15, 0.004
+19490829, -0.69, 0.09, -0.52, 0.004
+19490830, 0.38, -0.31, 0.06, 0.004
+19490831, 0.14, -0.13, 0.16, 0.004
+19490901, 0.69, -0.09, 0.16, 0.004
+19490902, 0.05, -0.14, 0.10, 0.004
+19490906, -0.14, -0.08, -0.46, 0.004
+19490907, 0.63, -0.28, 0.07, 0.004
+19490908, 0.23, -0.02, 0.04, 0.004
+19490909, -0.11, 0.14, -0.30, 0.004
+19490912, 0.83, -0.47, 0.52, 0.004
+19490913, 1.46, 0.34, 1.02, 0.004
+19490914, -0.10, 0.36, -0.15, 0.004
+19490915, -0.51, 0.21, -0.70, 0.004
+19490916, 0.29, 0.23, 0.38, 0.004
+19490919, -0.64, 0.16, -0.30, 0.004
+19490920, -2.20, 0.14, -0.56, 0.004
+19490921, 1.43, -0.20, 0.74, 0.004
+19490922, 0.61, 0.33, 0.65, 0.004
+19490923, 0.44, -0.24, 0.11, 0.004
+19490926, -0.25, 0.09, -0.52, 0.004
+19490927, -0.70, 0.25, -0.72, 0.004
+19490928, 0.92, 0.21, 0.42, 0.004
+19490929, 0.26, 0.21, -0.22, 0.004
+19490930, -0.09, -0.13, 0.02, 0.004
+19491001, -0.42, 0.10, -0.09, 0.004
+19491003, 0.49, -0.18, -0.15, 0.004
+19491004, 0.83, 0.32, -0.20, 0.004
+19491005, 0.40, 0.33, 0.22, 0.004
+19491006, 0.30, 0.13, 0.18, 0.004
+19491007, 0.13, 0.13, -0.17, 0.004
+19491008, 0.10, 0.43, 0.15, 0.004
+19491010, -0.11, 0.18, 0.10, 0.004
+19491011, 0.83, -0.19, 0.67, 0.004
+19491013, 0.04, 0.04, 0.12, 0.004
+19491014, -0.25, -0.03, -0.24, 0.004
+19491015, -0.08, 0.39, -0.17, 0.004
+19491017, -0.99, -0.34, -0.46, 0.004
+19491018, 0.78, 0.17, 0.37, 0.004
+19491019, 0.43, 0.06, 0.12, 0.004
+19491020, -0.13, -0.20, -0.13, 0.004
+19491021, -0.09, 0.14, 0.00, 0.004
+19491022, 0.03, 0.04, 0.04, 0.004
+19491024, 0.00, 0.16, -0.15, 0.004
+19491025, 0.44, -0.11, 0.11, 0.004
+19491026, 0.84, -0.10, 0.15, 0.004
+19491027, 0.44, 0.18, 0.33, 0.004
+19491028, -0.52, -0.24, -0.73, 0.004
+19491029, 0.03, -0.34, -0.13, 0.004
+19491031, -0.39, -0.06, -0.39, 0.004
+19491101, 0.74, -0.30, 0.07, 0.004
+19491102, 0.92, -0.52, 0.35, 0.004
+19491103, -0.17, 0.07, -0.04, 0.004
+19491104, 0.01, -0.08, 0.22, 0.004
+19491105, 0.14, 0.06, 0.02, 0.004
+19491107, -0.21, 0.08, -0.19, 0.004
+19491109, -0.07, -0.13, -1.01, 0.004
+19491110, -0.10, -0.26, -0.13, 0.004
+19491112, 0.00, 0.07, -0.16, 0.004
+19491114, -0.67, -0.06, -0.38, 0.004
+19491115, -0.62, -0.22, -0.33, 0.004
+19491116, 0.54, 0.01, 0.13, 0.004
+19491117, 0.77, 0.08, -0.08, 0.004
+19491118, 1.04, -0.27, 0.31, 0.004
+19491119, 0.22, 0.45, 0.13, 0.004
+19491121, -0.57, 0.08, -0.10, 0.004
+19491122, 0.32, -0.12, 0.22, 0.004
+19491123, 0.19, -0.11, 0.08, 0.004
+19491125, -0.55, 0.19, -0.26, 0.004
+19491126, 0.11, -0.16, 0.14, 0.004
+19491128, -0.37, 0.44, -0.17, 0.004
+19491129, -0.10, -0.34, 0.30, 0.004
+19491130, 0.30, 0.13, 0.00, 0.004
+19491201, 0.60, -0.04, 0.47, 0.004
+19491202, 0.94, 0.13, 0.79, 0.004
+19491203, 0.67, 0.23, 0.47, 0.004
+19491205, 0.20, 0.22, -0.71, 0.004
+19491206, -0.09, 0.09, -0.26, 0.004
+19491207, 0.12, 0.26, 0.30, 0.004
+19491208, 0.12, 0.27, 0.10, 0.004
+19491209, -0.01, 0.05, -0.15, 0.004
+19491210, 0.15, 0.08, -0.19, 0.004
+19491212, 0.57, -0.22, 0.32, 0.004
+19491213, 0.60, 0.18, 0.27, 0.004
+19491214, 0.36, 0.24, 0.35, 0.004
+19491215, 0.22, -0.22, -0.10, 0.004
+19491216, -0.08, 0.35, 0.04, 0.004
+19491217, -0.05, 0.14, 0.11, 0.004
+19491219, -0.20, -0.09, -0.04, 0.004
+19491220, -0.54, -0.01, -0.74, 0.004
+19491221, -0.14, -0.24, -0.23, 0.004
+19491222, 0.78, -0.11, 0.38, 0.004
+19491223, 0.19, 0.27, 0.05, 0.004
+19491227, -0.51, -0.46, -0.33, 0.004
+19491228, 0.49, -0.02, 0.32, 0.004
+19491229, 0.21, 0.20, 0.14, 0.004
+19491230, 0.47, 0.29, 0.37, 0.004
+19491231, -0.07, 0.38, -0.06, 0.004
+19500103, -0.59, 0.41, 0.29, 0.004
+19500104, 1.09, 0.41, 1.18, 0.004
+19500105, 0.40, 0.69, -0.12, 0.004
+19500106, 0.24, 0.42, 0.08, 0.004
+19500107, 0.64, 0.59, 0.45, 0.004
+19500109, 0.13, 0.64, 0.45, 0.004
+19500110, -0.35, 0.00, 0.20, 0.004
+19500111, 0.42, 0.48, 0.29, 0.004
+19500112, -1.82, -0.68, -1.77, 0.004
+19500113, -0.50, -0.20, 0.44, 0.004
+19500114, 0.15, 0.83, -0.07, 0.004
+19500116, 0.18, -0.16, -0.08, 0.004
+19500117, 0.76, 0.18, -0.08, 0.004
+19500118, -0.07, -0.10, 0.16, 0.004
+19500119, 0.18, -0.34, 0.06, 0.004
+19500120, 0.23, 0.08, -0.44, 0.004
+19500121, 0.11, -0.17, 0.02, 0.004
+19500123, -0.19, -0.13, 0.05, 0.004
+19500124, -0.32, -0.03, -0.60, 0.004
+19500125, -0.60, -0.22, -0.35, 0.004
+19500126, 0.14, 0.37, 0.31, 0.004
+19500127, 0.37, 0.14, -0.14, 0.004
+19500128, 0.33, 0.23, -0.16, 0.004
+19500130, 0.68, -0.08, 0.30, 0.004
+19500131, 0.14, -0.09, -0.20, 0.004
+19500201, 0.01, -0.04, 0.00, 0.004
+19500202, 0.98, -0.09, -0.20, 0.004
+19500203, 0.33, -0.37, 0.29, 0.004
+19500204, 0.24, 0.06, -0.22, 0.004
+19500206, -0.24, -0.04, -0.01, 0.004
+19500207, -0.41, -0.38, -0.19, 0.004
+19500208, 0.11, 0.07, 0.00, 0.004
+19500209, 0.43, 0.21, -0.07, 0.004
+19500210, -0.21, -0.05, -0.64, 0.004
+19500211, -0.07, 0.44, -0.28, 0.004
+19500214, -0.62, 0.32, -0.69, 0.004
+19500215, 0.08, 0.21, 0.76, 0.004
+19500216, -0.16, -0.09, -0.31, 0.004
+19500217, 0.64, 0.11, 0.49, 0.004
+19500218, 0.42, 0.22, 0.44, 0.004
+19500220, -0.13, -0.07, 0.05, 0.004
+19500221, -0.15, -0.13, -0.05, 0.004
+19500223, 0.15, -0.12, -0.21, 0.004
+19500224, 0.35, 0.02, 0.03, 0.004
+19500225, -0.08, 0.04, 0.11, 0.004
+19500227, 0.14, -0.15, -0.05, 0.004
+19500228, -0.34, -0.15, -0.03, 0.004
+19500301, 0.34, -0.05, 0.24, 0.004
+19500302, 0.04, -0.05, -0.18, 0.004
+19500303, 0.37, 0.07, 0.50, 0.004
+19500304, 0.27, 0.22, 0.11, 0.004
+19500306, 0.06, -0.11, -0.22, 0.004
+19500307, -0.67, -0.61, -0.18, 0.004
+19500308, 0.19, -0.17, 0.12, 0.004
+19500309, -0.61, 0.01, -0.32, 0.004
+19500310, -0.06, -0.22, -0.34, 0.004
+19500311, 0.26, 0.22, 0.23, 0.004
+19500313, -0.05, 0.02, -0.29, 0.004
+19500314, 0.53, -0.29, 0.11, 0.004
+19500315, 1.31, 0.07, 0.70, 0.004
+19500316, 0.29, 0.09, 0.02, 0.004
+19500317, -0.18, -0.38, -0.47, 0.004
+19500318, 0.20, -0.06, 0.21, 0.004
+19500320, -0.14, 0.05, -0.01, 0.004
+19500321, 0.04, -0.23, -0.29, 0.004
+19500322, 0.55, -0.34, 0.11, 0.004
+19500323, 0.07, -0.23, -0.33, 0.004
+19500324, -0.03, -0.35, -0.47, 0.004
+19500325, 0.27, 0.38, -0.34, 0.004
+19500327, -0.83, -0.09, -0.86, 0.004
+19500328, 0.30, 0.10, -0.10, 0.004
+19500329, -0.35, 0.01, -0.03, 0.004
+19500330, -0.92, 0.31, -0.79, 0.004
+19500331, 0.04, 0.20, 0.11, 0.004
+19500401, 0.27, 0.27, 0.62, 0.004
+19500403, 0.87, -0.21, 0.33, 0.004
+19500404, 0.17, -0.17, -0.01, 0.004
+19500405, 0.33, -0.10, -0.37, 0.004
+19500406, 0.93, 0.10, 0.14, 0.004
+19500408, 0.24, 0.07, 0.04, 0.004
+19500410, 0.06, -0.03, 0.10, 0.004
+19500411, -0.56, -0.16, -0.74, 0.004
+19500412, 0.95, 0.39, 0.36, 0.004
+19500413, 0.12, 0.20, -0.14, 0.004
+19500414, -0.14, 0.23, -0.92, 0.004
+19500415, -0.43, 0.07, -0.19, 0.004
+19500417, -0.07, 0.21, 0.35, 0.004
+19500418, 0.40, -0.41, 0.88, 0.004
+19500419, 0.13, 0.39, 0.03, 0.004
+19500420, -0.69, 0.15, -0.42, 0.004
+19500421, 0.34, 0.56, 0.07, 0.004
+19500422, 0.10, 0.20, 0.25, 0.004
+19500424, -0.77, -0.02, -0.03, 0.004
+19500425, 0.02, -0.05, 0.21, 0.004
+19500426, -0.17, -0.27, 0.06, 0.004
+19500427, 0.58, 0.03, 0.45, 0.004
+19500428, 0.62, 0.27, -0.11, 0.004
+19500429, 0.59, 0.19, 0.35, 0.004
+19500501, 0.59, -0.02, 0.27, 0.004
+19500502, -0.44, -0.42, -0.17, 0.004
+19500503, 0.70, -0.05, 0.45, 0.004
+19500504, -0.56, -0.52, 0.05, 0.004
+19500505, 0.43, 0.03, 0.36, 0.004
+19500506, 0.55, -0.24, 0.36, 0.004
+19500508, -0.03, 0.02, -0.06, 0.004
+19500509, 0.36, 0.02, 0.17, 0.004
+19500510, 0.01, -0.37, -0.25, 0.004
+19500511, 0.23, -0.24, 0.31, 0.004
+19500512, -0.41, 0.19, -0.50, 0.004
+19500513, 0.16, 0.28, -0.11, 0.004
+19500515, 0.18, -0.05, 0.16, 0.004
+19500516, 0.73, -0.19, 0.35, 0.004
+19500517, 0.40, -0.09, -0.12, 0.004
+19500518, 0.33, -0.23, -0.20, 0.004
+19500519, 0.62, -0.16, 0.53, 0.004
+19500520, 0.20, 0.09, 0.08, 0.004
+19500522, -0.45, 0.03, -0.59, 0.004
+19500523, 0.33, -0.12, -0.05, 0.004
+19500524, -0.11, -0.11, -0.57, 0.004
+19500525, -0.03, -0.24, 0.24, 0.004
+19500526, -0.01, -0.04, 0.23, 0.004
+19500527, -0.05, 0.04, 0.14, 0.004
+19500529, 0.33, 0.03, -0.20, 0.004
+19500531, 0.21, 0.31, -0.42, 0.004
+19500601, -0.11, -0.15, -0.25, 0.004
+19500602, 0.05, -0.04, -0.17, 0.004
+19500605, -0.86, -0.47, -0.55, 0.004
+19500606, 0.71, -0.52, -0.15, 0.004
+19500607, 0.43, 0.54, -0.01, 0.004
+19500608, 0.80, -0.18, 0.14, 0.004
+19500609, 0.56, -0.39, 0.41, 0.004
+19500612, 0.46, -0.50, 0.01, 0.004
+19500613, -0.51, -0.14, 0.11, 0.004
+19500614, -1.13, 0.19, -0.35, 0.004
+19500615, -0.03, -0.04, 0.28, 0.004
+19500616, 0.02, 0.14, 0.04, 0.004
+19500619, -0.38, 0.19, -0.45, 0.004
+19500620, -0.28, -0.12, -0.23, 0.004
+19500621, 0.87, 0.18, 0.38, 0.004
+19500622, 0.75, -0.14, 0.19, 0.004
+19500623, 0.08, -0.13, 0.22, 0.004
+19500626, -5.27, -0.15, -1.34, 0.004
+19500627, -1.04, -1.69, 0.26, 0.004
+19500628, 1.26, 1.02, 0.69, 0.004
+19500629, -3.54, 0.35, -0.71, 0.004
+19500630, 1.31, -0.47, 0.77, 0.004
+19500703, -0.55, 0.13, -0.30, 0.005
+19500705, 0.84, -0.68, 1.01, 0.005
+19500706, 0.69, 0.44, 0.40, 0.005
+19500707, -1.13, 0.26, -0.09, 0.005
+19500710, -0.49, -0.22, 1.59, 0.005
+19500711, -1.44, 0.63, 2.41, 0.005
+19500712, -2.40, 0.09, 0.47, 0.005
+19500713, -0.98, -0.18, 0.63, 0.005
+19500714, 1.29, 0.11, 0.17, 0.005
+19500717, -0.84, 0.09, 0.39, 0.005
+19500718, 2.27, -0.94, 0.75, 0.005
+19500719, 1.72, 0.02, 0.59, 0.005
+19500720, 1.47, 0.17, 1.66, 0.005
+19500721, 0.19, 0.40, 1.03, 0.005
+19500724, -0.58, 0.48, 0.91, 0.005
+19500725, -1.33, 0.24, 1.33, 0.005
+19500726, 0.32, -0.20, 0.58, 0.005
+19500727, 1.20, 0.04, 0.81, 0.005
+19500728, 0.83, -0.02, -1.37, 0.005
+19500731, 0.41, -0.29, 0.07, 0.005
+19500801, 0.79, -0.08, -0.12, 0.004
+19500802, -0.03, 0.12, -0.80, 0.004
+19500803, 0.28, 0.44, 0.19, 0.004
+19500804, 0.52, -0.05, -0.11, 0.004
+19500807, 1.16, -0.40, 0.24, 0.004
+19500808, 0.20, -0.21, -1.02, 0.004
+19500809, 0.56, -0.36, 0.05, 0.004
+19500810, 0.21, 0.05, -0.06, 0.004
+19500811, -0.58, 0.21, -0.31, 0.004
+19500814, 0.12, 0.12, 0.25, 0.004
+19500815, 0.26, 0.21, 0.20, 0.004
+19500816, 0.31, 0.13, 0.55, 0.004
+19500817, 1.00, -0.15, 0.45, 0.004
+19500818, 0.58, -0.13, 0.04, 0.004
+19500821, 0.15, 0.32, -0.67, 0.004
+19500822, -0.18, -0.18, -0.26, 0.004
+19500823, 0.72, -0.01, 0.56, 0.004
+19500824, 0.01, 0.30, -0.29, 0.004
+19500825, -1.17, 0.21, -0.28, 0.004
+19500828, 0.02, 0.21, 0.30, 0.004
+19500829, 0.23, -0.02, 0.03, 0.004
+19500830, -0.29, -0.08, -0.32, 0.004
+19500831, -0.10, 0.04, 0.06, 0.004
+19500901, 0.50, -0.27, 0.15, 0.005
+19500905, 0.47, -0.26, -0.15, 0.005
+19500906, -0.56, 0.03, -0.13, 0.005
+19500907, 0.36, -0.06, 0.34, 0.005
+19500908, 0.80, 0.19, 0.29, 0.005
+19500911, -0.66, 0.04, -0.22, 0.005
+19500912, 1.13, -0.34, 1.11, 0.005
+19500913, 1.05, 0.17, 0.20, 0.005
+19500914, 0.44, 0.02, 0.41, 0.005
+19500915, 0.39, -0.08, -0.48, 0.005
+19500918, 0.27, -0.31, -0.45, 0.005
+19500919, -0.33, -0.05, -0.27, 0.005
+19500920, -0.50, 0.14, -0.10, 0.005
+19500921, 0.81, 0.06, 0.51, 0.005
+19500922, 0.54, 0.29, 0.16, 0.005
+19500925, -0.20, 0.42, -0.49, 0.005
+19500926, -1.22, 0.30, -1.48, 0.005
+19500927, 1.26, -0.19, -0.24, 0.005
+19500928, 0.12, 0.20, -0.09, 0.005
+19500929, 0.09, 0.24, -0.08, 0.005
+19501002, 0.95, -0.10, 0.87, 0.005
+19501003, -0.21, -0.01, -0.04, 0.005
+19501004, 1.21, -0.39, 0.20, 0.005
+19501005, -0.35, 0.28, -0.36, 0.005
+19501006, 0.80, -0.47, 0.59, 0.005
+19501007, 0.29, 0.09, 0.24, 0.005
+19501009, -0.83, -0.11, -0.57, 0.005
+19501010, -0.72, 0.50, -0.01, 0.005
+19501011, 0.53, 0.01, 0.78, 0.005
+19501013, 0.10, 0.18, 0.19, 0.005
+19501014, -0.46, -0.10, 0.01, 0.005
+19501016, -0.05, 0.07, 0.03, 0.005
+19501017, 0.77, 0.13, 0.58, 0.005
+19501018, 0.64, 0.11, 0.38, 0.005
+19501019, -0.02, 0.17, -0.03, 0.005
+19501020, -0.17, -0.06, -0.39, 0.005
+19501021, 0.24, 0.06, 0.08, 0.005
+19501023, -0.07, 0.13, 0.21, 0.005
+19501024, 0.21, -0.03, -0.35, 0.005
+19501025, -0.13, 0.03, 0.02, 0.005
+19501026, -2.07, -0.28, -0.96, 0.005
+19501027, 0.57, -0.13, 0.44, 0.005
+19501028, 0.19, 0.02, 0.68, 0.005
+19501030, -0.91, 0.01, -1.03, 0.005
+19501031, -0.63, -0.69, -0.06, 0.005
+19501101, 0.41, -0.02, 0.44, 0.005
+19501102, 0.93, 0.02, 0.17, 0.005
+19501103, 0.33, -0.33, -0.30, 0.005
+19501104, -0.34, 0.03, -0.32, 0.005
+19501106, -2.17, -0.48, -0.76, 0.005
+19501108, 1.47, 0.30, 0.65, 0.005
+19501109, 1.33, -0.20, 0.94, 0.005
+19501110, 0.73, -0.34, 0.13, 0.005
+19501113, 0.43, -0.07, 0.29, 0.005
+19501114, 0.24, -0.24, 0.27, 0.005
+19501115, -0.16, 0.22, -0.06, 0.005
+19501116, -0.20, -0.02, 0.32, 0.005
+19501117, 0.83, -0.18, 1.30, 0.005
+19501118, 0.50, 0.05, 0.23, 0.005
+19501120, 0.02, 0.13, 0.02, 0.005
+19501121, -0.01, 0.14, 0.02, 0.005
+19501122, 1.06, -0.24, 0.33, 0.005
+19501124, 0.74, -0.01, -0.14, 0.005
+19501125, -0.09, 0.19, -0.29, 0.005
+19501127, -0.30, 0.17, 0.03, 0.005
+19501128, -2.81, -0.16, -1.10, 0.005
+19501129, -0.86, 0.27, 0.82, 0.005
+19501130, 0.75, -0.08, 0.24, 0.005
+19501201, 0.76, -0.18, 0.73, 0.005
+19501202, -0.61, 0.27, -0.31, 0.005
+19501204, -2.78, -0.13, -1.18, 0.005
+19501205, 1.54, -0.26, 1.58, 0.005
+19501206, 0.86, -0.04, 0.87, 0.005
+19501207, -0.17, -0.12, 0.05, 0.005
+19501208, 0.27, 0.14, 1.20, 0.005
+19501209, 0.37, 0.19, 0.51, 0.005
+19501211, 0.93, -0.31, 0.27, 0.005
+19501212, 0.06, -0.04, -0.16, 0.005
+19501213, 0.02, -0.40, 0.08, 0.005
+19501214, -1.04, 0.35, -0.41, 0.005
+19501215, -0.40, 0.24, 0.84, 0.005
+19501216, 1.58, -0.25, 1.78, 0.005
+19501218, 1.03, 0.13, 0.80, 0.005
+19501219, 0.53, 0.08, 0.65, 0.005
+19501220, 0.27, 0.70, 0.17, 0.005
+19501221, 0.14, 0.52, -0.38, 0.005
+19501222, 0.34, 0.32, -0.27, 0.005
+19501226, -0.79, -0.34, -0.52, 0.005
+19501227, 1.98, 0.11, 0.79, 0.005
+19501228, 0.53, 0.19, 0.60, 0.005
+19501229, -0.05, 0.15, -0.56, 0.005
+19501230, 0.14, 0.15, -0.22, 0.005
+19510102, 1.57, 0.03, 0.77, 0.005
+19510103, -0.28, 0.08, -0.17, 0.005
+19510104, 0.69, 0.24, 1.04, 0.005
+19510105, 0.04, 0.03, -0.02, 0.005
+19510106, -0.08, 0.23, -0.44, 0.005
+19510108, 0.48, 0.19, 0.37, 0.005
+19510109, 0.56, 0.35, 0.16, 0.005
+19510110, -1.32, -0.50, -1.22, 0.005
+19510111, 1.60, 0.35, 1.29, 0.005
+19510112, -0.30, -0.17, -0.44, 0.005
+19510113, 0.09, -0.04, 0.09, 0.005
+19510115, 0.53, 0.10, 0.42, 0.005
+19510116, 0.70, -0.03, 0.54, 0.005
+19510117, 0.55, -0.18, 0.33, 0.005
+19510118, -0.28, 0.44, -0.06, 0.005
+19510119, -0.13, 0.24, -0.36, 0.005
+19510120, 0.15, 0.21, -0.08, 0.005
+19510122, -1.00, -0.10, -0.44, 0.005
+19510123, 0.32, 0.08, -0.25, 0.005
+19510124, -0.31, 0.07, -0.27, 0.005
+19510125, -0.68, -0.30, -0.32, 0.005
+19510126, 1.00, 0.50, 1.14, 0.005
+19510127, 1.05, 0.23, 0.81, 0.005
+19510129, 0.69, -0.25, 0.56, 0.005
+19510130, 0.25, -0.49, 0.25, 0.005
+19510131, -0.25, 0.35, -0.11, 0.005
+19510201, 0.60, 0.08, 0.17, 0.005
+19510202, 0.75, 0.09, -0.30, 0.005
+19510203, 0.37, 0.02, -0.07, 0.005
+19510205, 0.34, -0.37, -0.01, 0.005
+19510206, -0.34, 0.04, -0.42, 0.005
+19510207, -0.27, 0.09, 0.03, 0.005
+19510208, 0.53, 0.08, 0.12, 0.005
+19510209, 0.46, 0.09, 0.07, 0.005
+19510210, 0.14, 0.02, 0.19, 0.005
+19510213, 0.10, -0.34, -0.29, 0.005
+19510214, -0.30, -0.16, -0.18, 0.005
+19510215, -0.22, 0.26, -0.50, 0.005
+19510216, 0.39, 0.09, 0.09, 0.005
+19510217, 0.07, 0.06, -0.02, 0.005
+19510219, -1.16, 0.19, -0.87, 0.005
+19510220, -0.21, -0.04, 0.31, 0.005
+19510221, 0.44, 0.14, 0.02, 0.005
+19510223, 0.25, 0.13, -0.16, 0.005
+19510224, 0.20, -0.02, 0.05, 0.005
+19510226, -0.03, 0.11, -0.36, 0.005
+19510227, -0.84, -0.28, -0.83, 0.005
+19510228, 0.15, -0.19, 0.15, 0.005
+19510301, 0.33, -0.03, 0.45, 0.004
+19510302, 0.42, 0.14, 0.03, 0.004
+19510303, -0.03, 0.18, -0.22, 0.004
+19510305, -0.55, 0.04, -0.44, 0.004
+19510306, -0.19, -0.17, -0.32, 0.004
+19510307, 0.40, -0.02, 0.07, 0.004
+19510308, 0.34, 0.17, -0.32, 0.004
+19510309, 0.07, 0.19, -0.13, 0.004
+19510310, -0.20, 0.15, 0.05, 0.004
+19510312, -0.95, -0.32, -0.48, 0.004
+19510313, -1.57, -0.22, -1.38, 0.004
+19510314, -0.87, 0.21, -0.07, 0.004
+19510315, 0.13, -0.33, -0.26, 0.004
+19510316, 1.61, 0.25, 0.82, 0.004
+19510317, 0.21, 0.18, -0.12, 0.004
+19510319, -0.55, -0.01, -0.27, 0.004
+19510320, -0.16, -0.10, -0.48, 0.004
+19510321, 0.57, 0.05, 0.29, 0.004
+19510322, 0.33, -0.27, -0.20, 0.004
+19510324, -1.08, -0.01, -0.98, 0.004
+19510326, 0.09, -0.35, 0.04, 0.004
+19510327, 0.06, 0.08, -0.17, 0.004
+19510328, -1.13, -0.52, -0.68, 0.004
+19510329, 0.26, -0.04, 0.15, 0.004
+19510330, 0.62, -0.09, 0.30, 0.004
+19510331, -0.27, 0.19, 0.06, 0.004
+19510402, -0.53, -0.31, -0.39, 0.005
+19510403, -0.21, 0.17, 0.07, 0.005
+19510404, 0.45, -0.45, 0.80, 0.005
+19510405, 1.40, 0.00, 1.09, 0.005
+19510406, 0.35, 0.17, 0.16, 0.005
+19510407, -0.09, 0.18, -0.41, 0.005
+19510409, 0.04, 0.06, -0.03, 0.005
+19510410, -0.18, 0.08, -0.33, 0.005
+19510411, -0.18, -0.20, -0.53, 0.005
+19510412, 0.98, -0.10, 0.71, 0.005
+19510413, 1.30, -0.26, 0.93, 0.005
+19510414, 0.39, 0.04, 0.42, 0.005
+19510416, -0.50, -0.12, -0.03, 0.005
+19510417, 0.15, 0.04, 0.02, 0.005
+19510418, 0.37, 0.01, 0.02, 0.005
+19510419, -0.46, -0.04, 0.00, 0.005
+19510420, -0.05, 0.04, -0.24, 0.005
+19510421, 0.02, -0.01, 0.25, 0.005
+19510423, -0.03, -0.16, -0.08, 0.005
+19510424, -0.45, 0.02, -0.39, 0.005
+19510425, 0.14, -0.20, 0.37, 0.005
+19510426, 0.87, -0.06, 0.66, 0.005
+19510427, 0.91, -0.31, 0.53, 0.005
+19510428, 0.16, 0.10, 0.00, 0.005
+19510430, -0.04, -0.15, -0.41, 0.005
+19510501, 0.32, -0.18, 0.12, 0.005
+19510502, 0.28, -0.06, 0.11, 0.005
+19510503, 0.73, -0.42, 0.90, 0.005
+19510504, 0.05, 0.00, -0.20, 0.005
+19510505, -0.29, 0.20, -0.03, 0.005
+19510507, -0.20, -0.07, -0.40, 0.005
+19510508, 0.35, -0.09, -0.17, 0.005
+19510509, 0.22, -0.03, 0.39, 0.005
+19510510, -0.51, 0.22, -0.31, 0.005
+19510511, -0.52, 0.26, -0.19, 0.005
+19510512, -0.56, 0.16, -0.15, 0.005
+19510514, -0.08, -0.03, -0.01, 0.005
+19510515, -1.53, 0.08, -0.41, 0.005
+19510516, -0.31, 0.17, 0.24, 0.005
+19510517, 0.96, -0.24, 0.34, 0.005
+19510518, -1.59, 0.21, -1.37, 0.005
+19510519, 0.07, -0.16, -0.05, 0.005
+19510521, -0.42, -0.05, -0.52, 0.005
+19510522, -0.32, 0.07, -0.13, 0.005
+19510523, -0.65, 0.23, -0.46, 0.005
+19510524, -0.41, -0.10, -0.02, 0.005
+19510525, 0.09, 0.52, 0.12, 0.005
+19510526, 0.18, -0.04, -0.02, 0.005
+19510528, 0.51, -0.06, 0.24, 0.005
+19510529, 0.73, -0.34, 0.31, 0.005
+19510531, 0.55, -0.26, 0.35, 0.005
+19510601, -0.15, -0.24, -0.04, 0.006
+19510604, -0.96, 0.10, -0.92, 0.006
+19510605, 0.17, -0.11, 0.13, 0.006
+19510606, 0.89, -0.06, 0.63, 0.006
+19510607, 0.50, 0.05, 0.47, 0.006
+19510608, -0.19, -0.09, -0.19, 0.006
+19510611, 0.50, -0.26, 0.41, 0.006
+19510612, -0.41, 0.17, -0.63, 0.006
+19510613, 0.08, -0.24, -0.29, 0.006
+19510614, 0.96, -0.44, 0.35, 0.006
+19510615, 0.65, -0.43, 0.35, 0.006
+19510618, -0.05, -0.23, -0.33, 0.006
+19510619, -0.11, -0.22, 0.04, 0.006
+19510620, -0.45, 0.32, -0.43, 0.006
+19510621, -0.57, 0.01, -0.28, 0.006
+19510622, -0.79, 0.16, -0.31, 0.006
+19510625, -1.54, -0.42, -1.50, 0.006
+19510626, 0.24, 0.20, -0.23, 0.006
+19510627, 0.45, -0.08, 0.23, 0.006
+19510628, -1.09, -0.23, -0.70, 0.006
+19510629, -0.74, 0.03, -0.84, 0.006
+19510702, 0.60, -0.29, 0.35, 0.006
+19510703, 0.70, 0.12, 0.31, 0.006
+19510705, 1.55, -0.31, 0.60, 0.006
+19510706, 0.00, 0.13, -0.32, 0.006
+19510709, 0.23, -0.25, -0.18, 0.006
+19510710, -0.37, -0.02, -0.19, 0.006
+19510711, 0.21, -0.03, 0.46, 0.006
+19510712, 0.44, -0.14, -0.07, 0.006
+19510713, 0.69, -0.15, -0.02, 0.006
+19510716, -0.74, 0.23, -0.66, 0.006
+19510717, 0.65, -0.66, 0.18, 0.006
+19510718, -0.04, 0.08, -0.18, 0.006
+19510719, 0.08, 0.10, -0.08, 0.006
+19510720, 0.16, 0.15, 0.36, 0.006
+19510723, 0.83, -0.57, 0.37, 0.006
+19510724, 1.20, -0.66, 0.65, 0.006
+19510725, -0.18, 0.34, 0.16, 0.006
+19510726, 0.50, 0.07, 0.22, 0.006
+19510727, 0.28, -0.03, 0.18, 0.006
+19510730, 0.59, -0.43, -0.23, 0.006
+19510731, -0.64, 0.40, 0.03, 0.006
+19510801, 0.67, 0.01, 0.82, 0.006
+19510802, 1.03, -0.09, 0.04, 0.006
+19510803, 0.16, -0.01, -0.33, 0.006
+19510806, 0.66, -0.41, 0.36, 0.006
+19510807, -0.03, 0.20, -0.22, 0.006
+19510808, -0.17, 0.15, -0.22, 0.006
+19510809, -0.36, 0.30, -0.17, 0.006
+19510810, -0.17, 0.00, -0.33, 0.006
+19510813, 0.12, 0.26, -0.34, 0.006
+19510814, -0.08, -0.10, -0.04, 0.006
+19510815, 0.39, -0.14, 0.57, 0.006
+19510816, 0.52, 0.11, 0.04, 0.006
+19510817, 0.27, 0.10, 0.18, 0.006
+19510820, -0.07, 0.05, -0.34, 0.006
+19510821, -0.38, 0.08, -0.31, 0.006
+19510822, -0.46, 0.16, -0.43, 0.006
+19510823, 0.62, -0.09, 0.28, 0.006
+19510824, 0.02, 0.14, 0.07, 0.006
+19510827, -0.15, 0.02, -0.32, 0.006
+19510828, 0.09, 0.21, 0.14, 0.006
+19510829, 0.77, -0.08, 0.14, 0.006
+19510830, 0.67, -0.06, 0.13, 0.006
+19510831, 0.10, 0.14, 0.17, 0.006
+19510904, 0.10, 0.12, 0.16, 0.006
+19510905, 0.77, -0.11, -0.07, 0.006
+19510906, 0.32, -0.22, 0.34, 0.006
+19510907, 0.42, -0.17, 0.15, 0.006
+19510910, 0.43, 0.10, 0.21, 0.006
+19510911, -0.46, 0.20, -0.37, 0.006
+19510912, 0.62, -0.04, 0.35, 0.006
+19510913, 0.28, -0.03, 0.14, 0.006
+19510914, -0.05, 0.22, -0.07, 0.006
+19510917, -0.31, 0.36, -0.29, 0.006
+19510918, -0.08, 0.11, -0.40, 0.006
+19510919, 0.07, 0.51, 0.09, 0.006
+19510920, -0.15, 0.25, 0.34, 0.006
+19510921, -0.75, 0.31, -0.02, 0.006
+19510924, -0.48, 0.22, 0.33, 0.006
+19510925, 0.35, -0.09, 0.13, 0.006
+19510926, 0.15, 0.04, 0.00, 0.006
+19510927, -0.48, -0.07, -0.25, 0.006
+19510928, -0.05, 0.16, -0.16, 0.006
+19511001, 0.61, -0.06, 0.17, 0.006
+19511002, 0.66, -0.19, 0.31, 0.006
+19511003, 0.60, 0.26, 0.43, 0.006
+19511004, -0.14, 0.27, -0.08, 0.006
+19511005, 0.13, 0.32, 0.26, 0.006
+19511006, 0.02, 0.10, 0.09, 0.006
+19511008, -0.10, 0.31, -0.36, 0.006
+19511009, -0.48, 0.10, -0.04, 0.006
+19511010, -0.23, 0.17, -0.12, 0.006
+19511011, 0.45, -0.36, 0.22, 0.006
+19511013, 0.28, 0.04, 0.24, 0.006
+19511015, 0.19, -0.34, -0.09, 0.006
+19511016, -0.39, -0.23, -0.31, 0.006
+19511017, -0.26, 0.03, -0.29, 0.006
+19511018, -0.13, 0.07, 0.11, 0.006
+19511019, -1.40, -0.04, -0.27, 0.006
+19511020, -0.91, 0.28, -0.02, 0.006
+19511022, -1.82, -0.01, 0.19, 0.006
+19511023, 0.64, -0.09, 0.55, 0.006
+19511024, 0.72, -0.07, 0.39, 0.006
+19511025, -0.49, -0.04, -0.23, 0.006
+19511026, -0.75, 0.13, -0.26, 0.006
+19511027, -1.59, 0.19, -0.63, 0.006
+19511029, 0.85, -0.63, 0.58, 0.006
+19511030, 0.01, 0.02, -0.23, 0.006
+19511031, 1.03, -0.45, -0.32, 0.006
+19511101, 0.66, -0.13, 0.14, 0.005
+19511102, -0.72, 0.13, -0.35, 0.005
+19511103, -0.86, 0.28, -0.43, 0.005
+19511105, 0.08, -0.18, 0.09, 0.005
+19511107, -0.86, 0.01, -0.04, 0.005
+19511108, 0.19, -0.14, 0.15, 0.005
+19511109, 1.11, -0.05, 0.25, 0.005
+19511110, 0.49, 0.02, 0.07, 0.005
+19511113, -0.18, 0.10, -0.23, 0.005
+19511114, 0.27, -0.13, 0.16, 0.005
+19511115, -0.05, 0.14, 0.10, 0.005
+19511116, -0.11, -0.13, 0.38, 0.005
+19511117, 0.03, 0.10, 0.01, 0.005
+19511119, -0.37, 0.16, -0.17, 0.005
+19511120, -0.19, -0.09, -0.30, 0.005
+19511121, -0.08, 0.09, 0.13, 0.005
+19511123, -1.03, 0.10, -0.18, 0.005
+19511124, -0.37, 0.14, -0.18, 0.005
+19511126, 0.59, -0.26, 0.24, 0.005
+19511127, 0.78, -0.34, -0.08, 0.005
+19511128, -0.14, 0.32, -0.11, 0.005
+19511129, 0.43, -0.26, 0.14, 0.005
+19511130, 0.94, -0.18, 0.14, 0.005
+19511201, 0.25, 0.01, 0.10, 0.005
+19511203, 0.34, -0.06, -0.50, 0.005
+19511204, 0.41, -0.37, -0.02, 0.005
+19511205, 0.04, 0.17, -0.29, 0.005
+19511206, 0.90, -0.43, 0.46, 0.005
+19511207, 0.20, -0.14, 0.25, 0.005
+19511208, 0.10, -0.05, 0.00, 0.005
+19511210, 0.01, -0.06, -0.11, 0.005
+19511211, -0.47, 0.11, -0.37, 0.005
+19511212, 0.12, -0.11, -0.18, 0.005
+19511213, 0.30, 0.04, -0.23, 0.005
+19511214, -0.02, 0.01, -0.16, 0.005
+19511215, -0.06, 0.10, -0.14, 0.005
+19511217, 0.14, -0.21, -0.04, 0.005
+19511218, 0.12, -0.24, -0.27, 0.005
+19511219, 0.28, -0.35, 0.36, 0.005
+19511220, 0.01, -0.04, 0.04, 0.005
+19511221, -0.22, 0.01, 0.04, 0.005
+19511222, 0.00, 0.06, 0.10, 0.005
+19511224, -0.04, 0.11, -0.30, 0.005
+19511226, -0.62, 0.08, -0.18, 0.005
+19511227, 0.85, -0.40, 0.36, 0.005
+19511228, 0.44, -0.13, -0.25, 0.005
+19511229, -0.04, 0.02, -0.02, 0.005
+19511231, 0.27, -0.34, -0.19, 0.005
+19520102, 0.16, 0.40, 0.26, 0.006
+19520103, 0.15, 0.07, 0.27, 0.006
+19520104, 0.18, 0.22, 0.08, 0.006
+19520105, 0.07, 0.12, -0.01, 0.006
+19520107, -0.15, -0.06, -0.04, 0.006
+19520108, -0.43, -0.28, -0.21, 0.006
+19520109, -0.28, 0.09, -0.17, 0.006
+19520110, 0.60, -0.23, 0.18, 0.006
+19520111, 0.42, -0.39, 0.25, 0.006
+19520112, 0.40, -0.23, 0.10, 0.006
+19520114, 0.20, -0.35, 0.18, 0.006
+19520115, -0.44, -0.01, -0.16, 0.006
+19520116, 0.29, 0.02, 0.38, 0.006
+19520117, 0.40, -0.01, 0.06, 0.006
+19520118, 0.15, -0.07, 0.47, 0.006
+19520119, 0.27, -0.13, 0.36, 0.006
+19520121, 0.41, -0.43, -0.08, 0.006
+19520122, 0.50, -0.29, -0.30, 0.006
+19520123, -0.35, 0.11, -0.18, 0.006
+19520124, 0.13, -0.01, -0.06, 0.006
+19520125, 0.11, 0.23, 0.02, 0.006
+19520126, 0.09, 0.05, -0.11, 0.006
+19520128, 0.09, 0.06, 0.35, 0.006
+19520129, -0.01, 0.34, 0.11, 0.006
+19520130, -1.07, 0.23, -0.03, 0.006
+19520131, -0.42, -0.03, -0.21, 0.006
+19520201, 0.59, -0.05, -0.18, 0.005
+19520202, 0.36, -0.24, 0.13, 0.005
+19520204, -1.12, 0.40, -0.37, 0.005
+19520205, -0.26, 0.13, -0.19, 0.005
+19520206, 0.32, 0.11, -0.25, 0.005
+19520207, 0.17, 0.01, 0.10, 0.005
+19520208, 0.51, -0.13, 0.08, 0.005
+19520209, 0.04, 0.23, 0.06, 0.005
+19520211, -0.32, -0.13, 0.23, 0.005
+19520213, -0.67, 0.24, -0.17, 0.005
+19520214, -0.25, -0.08, 0.16, 0.005
+19520215, -0.01, 0.00, -0.13, 0.005
+19520216, -0.06, 0.10, 0.06, 0.005
+19520218, -0.40, -0.07, 0.04, 0.005
+19520219, -1.46, 0.24, -0.13, 0.005
+19520220, -1.12, 0.15, -0.06, 0.005
+19520221, 0.32, 0.24, 0.22, 0.005
+19520223, 0.65, -0.39, 0.51, 0.005
+19520225, -0.29, 0.19, -0.21, 0.005
+19520226, -0.50, 0.24, -0.35, 0.005
+19520227, 0.20, -0.19, 0.28, 0.005
+19520228, 0.71, -0.24, -0.27, 0.005
+19520229, -0.06, 0.05, -0.19, 0.005
+19520301, 0.08, 0.04, -0.14, 0.004
+19520303, 0.26, -0.14, 0.12, 0.004
+19520304, 1.31, -0.55, 0.18, 0.004
+19520305, 0.23, 0.05, 0.33, 0.004
+19520306, -0.01, -0.03, 0.05, 0.004
+19520307, 0.21, -0.21, 0.46, 0.004
+19520308, 0.29, -0.19, 0.24, 0.004
+19520310, -0.49, 0.27, -0.68, 0.004
+19520311, 0.22, -0.25, 0.10, 0.004
+19520312, 0.26, -0.09, 0.17, 0.004
+19520313, 0.05, 0.03, 0.16, 0.004
+19520314, 0.24, -0.36, 0.10, 0.004
+19520315, 0.20, -0.27, 0.00, 0.004
+19520317, 0.10, -0.23, -0.09, 0.004
+19520318, -0.14, -0.05, -0.02, 0.004
+19520319, -0.24, 0.19, -0.07, 0.004
+19520320, 0.35, -0.32, 0.65, 0.004
+19520321, 0.07, 0.09, 0.20, 0.004
+19520322, -0.01, 0.03, -0.17, 0.004
+19520324, -0.11, 0.03, -0.18, 0.004
+19520325, -0.42, 0.40, -0.16, 0.004
+19520326, -0.07, -0.11, 0.35, 0.004
+19520327, 0.77, -0.50, 0.21, 0.004
+19520328, 0.59, -0.33, -0.06, 0.004
+19520329, 0.56, -0.33, 0.44, 0.004
+19520331, 0.07, -0.09, -0.04, 0.004
+19520401, -0.77, 0.14, -0.20, 0.005
+19520402, -0.08, 0.16, 0.01, 0.005
+19520403, 0.09, -0.15, 0.02, 0.005
+19520404, -0.51, 0.11, -0.26, 0.005
+19520405, -0.15, 0.12, 0.09, 0.005
+19520407, -0.93, 0.19, -0.13, 0.005
+19520408, 0.56, -0.34, 0.25, 0.005
+19520409, -0.01, 0.14, -0.13, 0.005
+19520410, 0.35, -0.17, 0.22, 0.005
+19520412, 0.05, 0.16, 0.05, 0.005
+19520414, -0.74, -0.14, -0.23, 0.005
+19520415, -1.08, 0.09, -0.54, 0.005
+19520416, -0.14, 0.44, -0.17, 0.005
+19520417, -0.86, 0.11, -0.18, 0.005
+19520418, 0.40, 0.02, 0.51, 0.005
+19520419, 0.06, 0.13, 0.12, 0.005
+19520421, 0.70, -0.57, 0.47, 0.005
+19520422, -0.44, 0.21, -0.27, 0.005
+19520423, -0.45, 0.20, -0.07, 0.005
+19520424, -0.42, -0.07, 0.15, 0.005
+19520425, 0.42, -0.18, 0.48, 0.005
+19520426, 0.14, 0.10, 0.18, 0.005
+19520428, -0.22, -0.24, -0.03, 0.005
+19520429, -0.34, -0.22, 0.18, 0.005
+19520430, -0.69, 0.25, -0.56, 0.005
+19520501, -0.69, -0.18, -0.53, 0.005
+19520502, 1.42, -0.24, 0.67, 0.005
+19520503, 0.30, -0.01, -0.14, 0.005
+19520505, 0.28, -0.31, 0.00, 0.005
+19520506, 0.25, -0.09, -0.06, 0.005
+19520507, 0.63, -0.35, 0.09, 0.005
+19520508, 0.28, 0.17, -0.04, 0.005
+19520509, 0.03, -0.07, -0.10, 0.005
+19520510, -0.09, 0.29, -0.06, 0.005
+19520512, -0.14, -0.05, -0.09, 0.005
+19520513, 0.17, -0.16, -0.16, 0.005
+19520514, -0.34, 0.20, -0.21, 0.005
+19520515, -0.35, -0.15, 0.12, 0.005
+19520516, 0.05, 0.15, -0.26, 0.005
+19520517, 0.02, 0.19, -0.08, 0.005
+19520519, 0.14, -0.32, -0.01, 0.005
+19520520, 0.51, -0.04, 0.09, 0.005
+19520521, 0.27, 0.04, 0.17, 0.005
+19520522, 0.63, -0.15, 0.29, 0.005
+19520523, -0.08, 0.08, 0.07, 0.005
+19520524, -0.01, 0.15, -0.06, 0.005
+19520526, 0.21, -0.13, 0.12, 0.005
+19520527, -0.19, 0.03, 0.09, 0.005
+19520528, -0.14, 0.14, 0.08, 0.005
+19520529, 0.01, -0.19, 0.10, 0.005
+19520602, -0.13, -0.06, -0.20, 0.007
+19520603, -0.08, -0.18, 0.14, 0.007
+19520604, 0.56, -0.13, 0.37, 0.007
+19520605, 0.63, -0.29, 0.47, 0.007
+19520606, 0.55, 0.03, -0.07, 0.007
+19520609, 0.38, -0.16, 0.10, 0.007
+19520610, -0.33, 0.27, -0.59, 0.007
+19520611, 0.25, -0.16, 0.35, 0.007
+19520612, 0.04, 0.00, -0.03, 0.007
+19520613, 0.20, -0.08, -0.16, 0.007
+19520616, -0.15, 0.18, -0.25, 0.007
+19520617, 0.07, -0.16, -0.01, 0.007
+19520618, 0.23, -0.02, 0.08, 0.007
+19520619, 0.31, -0.17, 0.23, 0.007
+19520620, 0.14, 0.03, -0.07, 0.007
+19520623, -0.11, -0.04, 0.17, 0.007
+19520624, 0.07, -0.29, -0.10, 0.007
+19520625, 0.35, -0.20, 0.50, 0.007
+19520626, 0.21, -0.02, 0.12, 0.007
+19520627, 0.23, -0.03, 0.06, 0.007
+19520630, 0.36, -0.10, 0.11, 0.007
+19520701, 0.53, -0.20, -0.18, 0.007
+19520702, -0.18, 0.20, -0.29, 0.007
+19520703, 0.00, 0.12, -0.07, 0.007
+19520707, -0.36, 0.17, -0.14, 0.007
+19520708, 0.05, -0.13, -0.19, 0.007
+19520709, -0.28, 0.27, -0.04, 0.007
+19520710, -0.20, -0.04, -0.12, 0.007
+19520711, 0.50, -0.22, 0.40, 0.007
+19520714, 0.07, 0.11, -0.11, 0.007
+19520715, 0.48, -0.31, 0.19, 0.007
+19520716, -0.11, -0.03, 0.15, 0.007
+19520717, -0.35, 0.05, -0.06, 0.007
+19520718, -0.65, 0.15, 0.16, 0.007
+19520721, 0.22, -0.11, -0.24, 0.007
+19520722, 0.21, 0.05, -0.12, 0.007
+19520723, 0.42, -0.21, -0.02, 0.007
+19520724, 0.33, -0.16, 0.45, 0.007
+19520725, -0.24, 0.36, -0.43, 0.007
+19520728, -0.03, 0.00, -0.04, 0.007
+19520729, 0.20, -0.11, -0.04, 0.007
+19520730, 0.21, -0.22, 0.23, 0.007
+19520731, 0.11, -0.13, 0.19, 0.007
+19520801, 0.06, 0.08, -0.12, 0.007
+19520804, -0.13, 0.07, -0.25, 0.007
+19520805, 0.04, -0.07, 0.00, 0.007
+19520806, 0.15, 0.11, -0.02, 0.007
+19520807, 0.25, -0.13, 0.25, 0.007
+19520808, -0.01, 0.20, -0.11, 0.007
+19520811, 0.03, 0.12, -0.22, 0.007
+19520812, -0.70, 0.26, -0.09, 0.007
+19520813, -0.02, -0.04, 0.11, 0.007
+19520814, -0.02, 0.08, 0.01, 0.007
+19520815, -0.20, 0.14, 0.07, 0.007
+19520818, -1.02, 0.30, -0.17, 0.007
+19520819, 0.01, -0.04, -0.03, 0.007
+19520820, 0.22, -0.06, 0.00, 0.007
+19520821, 0.14, 0.05, -0.05, 0.007
+19520822, 0.00, 0.08, 0.06, 0.007
+19520825, -0.37, 0.19, -0.02, 0.007
+19520826, -0.07, -0.02, 0.18, 0.007
+19520827, 0.36, -0.01, -0.09, 0.007
+19520828, 0.24, -0.08, 0.32, 0.007
+19520829, 0.29, -0.06, 0.20, 0.007
+19520902, 0.34, -0.14, 0.11, 0.008
+19520903, 0.21, 0.06, -0.35, 0.008
+19520904, -0.09, 0.09, -0.27, 0.008
+19520905, -0.12, 0.08, -0.28, 0.008
+19520908, -0.43, 0.20, -0.38, 0.008
+19520909, -1.06, 0.28, -0.10, 0.008
+19520910, -0.44, -0.12, 0.08, 0.008
+19520911, 0.14, 0.21, 0.04, 0.008
+19520912, -0.21, 0.20, -0.10, 0.008
+19520915, -0.95, 0.39, -0.19, 0.008
+19520916, 0.41, -0.23, 0.00, 0.008
+19520917, 0.26, 0.01, 0.15, 0.008
+19520918, -0.18, 0.17, -0.08, 0.008
+19520919, 0.21, -0.08, 0.18, 0.008
+19520922, 0.10, 0.03, 0.00, 0.008
+19520923, 0.34, -0.31, 0.32, 0.008
+19520924, 0.32, 0.06, -0.32, 0.008
+19520925, -0.01, -0.05, -0.03, 0.008
+19520926, -0.27, 0.25, -0.01, 0.008
+19520929, -0.06, -0.05, -0.14, 0.008
+19520930, -0.55, 0.10, -0.14, 0.008
+19521001, -0.25, -0.04, 0.03, 0.006
+19521002, -0.01, 0.00, 0.00, 0.006
+19521003, -0.18, 0.12, 0.11, 0.006
+19521006, -0.27, 0.11, -0.05, 0.006
+19521007, 0.04, -0.05, -0.02, 0.006
+19521008, 0.49, -0.19, 0.04, 0.006
+19521009, 0.02, 0.05, -0.02, 0.006
+19521010, -0.01, 0.18, -0.26, 0.006
+19521014, -0.35, 0.00, -0.26, 0.006
+19521015, -1.45, 0.11, -0.26, 0.006
+19521016, -0.63, -0.15, 0.07, 0.006
+19521017, 1.14, -0.18, 0.35, 0.006
+19521020, -0.32, 0.23, -0.35, 0.006
+19521021, -0.16, -0.08, -0.01, 0.006
+19521022, -0.97, 0.27, -0.05, 0.006
+19521023, 0.32, -0.36, 0.00, 0.006
+19521024, 0.41, -0.13, 0.08, 0.006
+19521027, 0.12, -0.23, -0.04, 0.006
+19521028, 0.04, -0.03, -0.11, 0.006
+19521029, 0.05, -0.22, -0.13, 0.006
+19521030, -0.02, 0.03, 0.03, 0.006
+19521031, 1.36, -0.55, 0.40, 0.006
+19521103, 0.56, -0.24, -0.16, 0.006
+19521105, 0.52, 0.02, -0.28, 0.006
+19521106, 0.38, -0.55, -0.37, 0.006
+19521107, 0.40, 0.05, 0.07, 0.006
+19521110, 0.00, 0.07, 0.04, 0.006
+19521112, -0.16, 0.32, -0.17, 0.006
+19521113, 0.09, 0.11, -0.20, 0.006
+19521114, 0.01, 0.04, -0.07, 0.006
+19521117, 0.19, -0.14, 0.25, 0.006
+19521118, 1.42, -0.36, 0.11, 0.006
+19521119, 0.71, -0.05, 0.33, 0.006
+19521120, -0.15, 0.22, 0.41, 0.006
+19521121, 0.00, 0.24, 0.09, 0.006
+19521124, 0.63, -0.15, 0.55, 0.006
+19521125, 0.12, -0.02, -0.23, 0.006
+19521126, 0.61, -0.24, 0.20, 0.006
+19521128, 0.49, -0.02, 0.35, 0.006
+19521201, 0.13, -0.04, 0.18, 0.007
+19521202, 0.27, -0.27, -0.19, 0.007
+19521203, -0.04, 0.08, -0.22, 0.007
+19521204, -0.32, 0.21, 0.00, 0.007
+19521205, 0.15, -0.18, 0.18, 0.007
+19521208, 0.41, -0.19, 0.00, 0.007
+19521209, 0.42, -0.23, -0.05, 0.007
+19521210, 0.03, -0.09, -0.40, 0.007
+19521211, 0.00, 0.05, -0.13, 0.007
+19521212, 0.31, -0.18, 0.43, 0.007
+19521215, 0.09, -0.05, 0.19, 0.007
+19521216, -0.04, -0.18, -0.02, 0.007
+19521217, -0.12, 0.13, -0.10, 0.007
+19521218, 0.00, 0.14, 0.21, 0.007
+19521219, 0.40, -0.53, 0.42, 0.007
+19521222, 0.42, -0.40, 0.25, 0.007
+19521223, -0.35, 0.10, 0.24, 0.007
+19521224, 0.06, 0.19, 0.12, 0.007
+19521226, 0.14, 0.27, -0.25, 0.007
+19521229, 0.34, -0.24, -0.29, 0.007
+19521230, 0.48, -0.25, -0.06, 0.007
+19521231, 0.10, 0.21, -0.33, 0.007
+19530102, 0.06, 0.48, 0.62, 0.008
+19530105, 0.45, 0.46, 0.10, 0.008
+19530106, -0.52, 0.36, 0.17, 0.008
+19530107, -0.33, 0.27, -0.12, 0.008
+19530108, -0.04, 0.43, 0.51, 0.008
+19530109, -0.86, 0.22, -0.10, 0.008
+19530112, -0.64, 0.44, 0.08, 0.008
+19530113, 0.57, 0.10, 0.04, 0.008
+19530114, 0.09, 0.19, -0.10, 0.008
+19530115, 0.16, 0.05, 0.14, 0.008
+19530116, -0.43, 0.05, -0.12, 0.008
+19530119, -0.07, 0.23, 0.19, 0.008
+19530120, 0.42, 0.06, 0.01, 0.008
+19530121, -0.14, 0.07, -0.01, 0.008
+19530122, 0.05, 0.20, -0.05, 0.008
+19530123, -0.13, 0.08, 0.14, 0.008
+19530126, -0.15, -0.01, 0.06, 0.008
+19530127, 0.19, -0.10, 0.10, 0.008
+19530128, 0.20, 0.03, -0.15, 0.008
+19530129, 0.32, 0.14, -0.06, 0.008
+19530130, 0.49, -0.26, -0.20, 0.008
+19530202, 0.20, 0.00, -0.34, 0.008
+19530203, 0.06, -0.03, -0.21, 0.008
+19530204, -0.10, 0.38, -0.03, 0.008
+19530205, -0.80, 0.02, -0.01, 0.008
+19530206, -0.83, 0.16, -0.64, 0.008
+19530209, -0.37, 0.15, 0.21, 0.008
+19530210, -0.14, 0.33, -0.13, 0.008
+19530211, 0.10, 0.04, 0.34, 0.008
+19530213, 0.43, -0.02, -0.02, 0.008
+19530216, -0.16, 0.27, 0.08, 0.008
+19530217, -0.48, 0.11, -0.18, 0.008
+19530218, 0.01, 0.04, 0.34, 0.008
+19530219, 0.28, 0.00, 0.26, 0.008
+19530220, 0.16, 0.00, -0.07, 0.008
+19530224, 0.62, 0.29, 0.49, 0.008
+19530225, 0.59, 0.38, -0.14, 0.008
+19530226, 0.21, -0.01, 0.04, 0.008
+19530227, -0.01, 0.07, -0.02, 0.008
+19530302, 0.06, 0.05, 0.17, 0.008
+19530303, 0.36, 0.03, -0.05, 0.008
+19530304, -0.84, 0.11, -0.13, 0.008
+19530305, 0.09, 0.06, 0.15, 0.008
+19530306, 0.36, -0.07, -0.12, 0.008
+19530309, 0.06, 0.16, -0.02, 0.008
+19530310, 0.19, -0.10, 0.07, 0.008
+19530311, 0.69, -0.22, 0.11, 0.008
+19530312, 0.00, -0.20, 0.04, 0.008
+19530313, 0.22, -0.10, 0.24, 0.008
+19530316, 0.15, -0.03, 0.29, 0.008
+19530317, 0.30, -0.14, -0.01, 0.008
+19530318, -0.03, 0.41, -0.17, 0.008
+19530319, 0.06, 0.08, -0.15, 0.008
+19530320, -0.08, 0.17, -0.11, 0.008
+19530323, -0.60, -0.09, 0.00, 0.008
+19530324, 0.54, -0.14, 0.17, 0.008
+19530325, -0.15, 0.29, -0.36, 0.008
+19530326, -0.45, -0.02, -0.19, 0.008
+19530327, 0.27, -0.02, -0.03, 0.008
+19530330, -1.53, -0.25, -0.74, 0.008
+19530331, -1.11, -0.16, 0.03, 0.008
+19530401, 0.07, 0.11, 0.17, 0.008
+19530402, -0.03, 0.19, -0.10, 0.008
+19530406, -2.13, 0.12, -0.49, 0.008
+19530407, 0.28, -0.22, 0.57, 0.008
+19530408, 0.72, 0.27, 0.18, 0.008
+19530409, -0.40, 0.12, 0.09, 0.008
+19530410, -0.17, 0.04, 0.10, 0.008
+19530413, -0.19, 0.06, 0.20, 0.008
+19530414, 0.28, -0.30, 0.37, 0.008
+19530415, 0.49, -0.01, 0.24, 0.008
+19530416, -0.23, -0.04, -0.21, 0.008
+19530417, -0.94, 0.07, -0.21, 0.008
+19530420, 0.19, -0.46, 0.37, 0.008
+19530421, -0.14, 0.39, -0.08, 0.008
+19530422, -0.75, 0.25, -0.19, 0.008
+19530423, -1.19, 0.04, 0.27, 0.008
+19530424, 0.01, -0.17, -0.02, 0.008
+19530427, 0.47, -0.03, 0.44, 0.008
+19530428, 0.47, -0.47, 0.16, 0.008
+19530429, 0.53, 0.15, -0.27, 0.008
+19530430, -0.14, 0.15, -0.01, 0.008
+19530501, 0.40, -0.17, -0.26, 0.008
+19530504, 0.91, -0.31, 0.16, 0.008
+19530505, 0.10, 0.15, -0.41, 0.008
+19530506, 0.16, -0.12, -0.08, 0.008
+19530507, -0.40, 0.03, -0.22, 0.008
+19530508, 0.23, -0.13, 0.22, 0.008
+19530511, 0.06, 0.07, -0.07, 0.008
+19530512, -0.47, 0.17, 0.13, 0.008
+19530513, -0.07, -0.03, -0.10, 0.008
+19530514, 0.47, -0.13, 0.34, 0.008
+19530515, 0.07, 0.08, 0.06, 0.008
+19530518, -0.19, 0.09, -0.03, 0.008
+19530519, -0.20, 0.03, 0.03, 0.008
+19530520, 0.94, -0.24, 0.54, 0.008
+19530521, 0.29, 0.00, -0.04, 0.008
+19530522, -0.01, 0.07, 0.09, 0.008
+19530525, -0.11, -0.07, 0.06, 0.008
+19530526, -0.30, -0.09, 0.11, 0.008
+19530527, -0.79, 0.34, -0.38, 0.008
+19530528, -0.72, 0.13, -0.16, 0.008
+19530529, 0.16, 0.05, 0.25, 0.008
+19530601, -1.40, 0.26, -0.35, 0.008
+19530602, 0.14, -0.58, 0.16, 0.008
+19530603, -0.04, 0.29, -0.02, 0.008
+19530604, -0.82, -0.11, -0.26, 0.008
+19530605, 0.18, -0.07, 0.07, 0.008
+19530608, -0.20, 0.01, 0.00, 0.008
+19530609, -1.93, -0.18, -0.30, 0.008
+19530610, -0.09, -0.50, 0.52, 0.008
+19530611, 0.85, 0.06, 0.02, 0.008
+19530612, 0.32, 0.05, -0.19, 0.008
+19530615, -0.82, 0.02, -0.36, 0.008
+19530616, -0.30, -0.23, 0.06, 0.008
+19530617, 1.23, -0.39, 0.29, 0.008
+19530618, 0.01, 0.15, 0.00, 0.008
+19530619, 0.00, -0.08, 0.06, 0.008
+19530622, 0.52, -0.06, 0.05, 0.008
+19530623, 0.56, -0.36, 0.14, 0.008
+19530624, -0.11, 0.07, -0.25, 0.008
+19530625, 0.40, -0.16, 0.00, 0.008
+19530626, -0.06, -0.11, 0.03, 0.008
+19530629, -0.16, 0.10, -0.05, 0.008
+19530630, -0.12, -0.16, -0.05, 0.008
+19530701, 0.39, -0.22, 0.20, 0.006
+19530702, 0.35, 0.05, -0.07, 0.006
+19530703, 0.26, -0.12, 0.20, 0.006
+19530706, 0.12, -0.03, -0.37, 0.006
+19530707, 0.36, -0.26, 0.26, 0.006
+19530708, 0.04, -0.04, 0.11, 0.006
+19530709, -0.33, 0.15, -0.16, 0.006
+19530710, -0.11, 0.05, -0.24, 0.006
+19530713, -0.97, 0.08, -0.14, 0.006
+19530714, -0.13, -0.23, 0.08, 0.006
+19530715, 0.29, -0.02, 0.01, 0.006
+19530716, 0.22, 0.12, -0.24, 0.006
+19530717, 0.49, -0.26, 0.40, 0.006
+19530720, -0.47, -0.02, 0.05, 0.006
+19530721, -0.23, 0.10, 0.03, 0.006
+19530722, 0.10, -0.16, -0.09, 0.006
+19530723, 0.20, 0.04, 0.12, 0.006
+19530724, 0.04, 0.24, -0.20, 0.006
+19530727, -0.58, 0.28, -0.38, 0.006
+19530728, 0.05, -0.40, 0.05, 0.006
+19530729, 0.54, -0.13, 0.25, 0.006
+19530730, 0.92, -0.21, 0.02, 0.006
+19530731, 0.84, -0.09, -0.08, 0.006
+19530803, 0.38, 0.07, -0.27, 0.008
+19530804, -0.02, 0.07, -0.13, 0.008
+19530805, 0.18, 0.06, -0.06, 0.008
+19530806, 0.40, -0.13, -0.17, 0.008
+19530807, -0.04, 0.09, -0.24, 0.008
+19530810, -0.08, 0.19, -0.46, 0.008
+19530811, -0.06, -0.07, -0.18, 0.008
+19530812, 0.43, -0.29, 0.08, 0.008
+19530813, -0.02, 0.25, -0.23, 0.008
+19530814, -0.33, 0.04, -0.23, 0.008
+19530817, -0.24, 0.00, -0.28, 0.008
+19530818, -0.48, 0.18, -0.27, 0.008
+19530819, -0.63, -0.31, -0.11, 0.008
+19530820, 0.04, 0.07, 0.25, 0.008
+19530821, 0.15, 0.01, -0.03, 0.008
+19530824, -1.11, 0.12, -0.53, 0.008
+19530825, -0.54, -0.14, 0.25, 0.008
+19530826, -0.27, 0.43, -0.22, 0.008
+19530827, -0.41, -0.21, -0.23, 0.008
+19530828, -0.23, -0.04, -0.04, 0.008
+19530831, -1.75, 0.00, -0.63, 0.008
+19530901, 0.42, -0.48, 0.15, 0.008
+19530902, 0.65, 0.18, 0.05, 0.008
+19530903, -0.24, -0.06, -0.27, 0.008
+19530904, 0.27, -0.03, 0.13, 0.008
+19530908, 0.21, -0.14, -0.15, 0.008
+19530909, 0.03, 0.06, -0.06, 0.008
+19530910, -0.86, 0.11, -0.66, 0.008
+19530911, -1.41, -0.22, -0.68, 0.008
+19530914, -1.82, -0.46, -0.49, 0.008
+19530915, 0.71, -1.32, 0.32, 0.008
+19530916, 0.73, 0.74, 0.39, 0.008
+19530917, 0.07, 0.16, -0.21, 0.008
+19530918, -0.58, 0.13, -0.24, 0.008
+19530921, -0.25, -0.07, 0.05, 0.008
+19530922, 1.32, -0.41, 0.35, 0.008
+19530923, 0.36, 0.26, 0.24, 0.008
+19530924, 0.01, 0.28, -0.13, 0.008
+19530925, 0.28, 0.20, -0.36, 0.008
+19530928, 0.60, -0.20, 0.36, 0.008
+19530929, 0.12, 0.28, -0.75, 0.008
+19530930, -0.35, 0.15, -0.42, 0.008
+19531001, 0.60, -0.18, -0.26, 0.006
+19531002, 0.39, -0.18, -0.22, 0.006
+19531005, -0.40, -0.04, -0.16, 0.006
+19531006, -0.50, -0.15, 0.16, 0.006
+19531007, 0.73, -0.17, 0.01, 0.006
+19531008, 0.22, 0.14, -0.13, 0.006
+19531009, 0.06, 0.10, -0.03, 0.006
+19531013, -0.20, 0.10, 0.10, 0.006
+19531014, 0.45, -0.17, -0.26, 0.006
+19531015, 1.18, -0.19, 0.63, 0.006
+19531016, 0.59, 0.07, 0.42, 0.006
+19531019, 0.16, -0.34, 0.20, 0.006
+19531020, 0.07, 0.16, -0.39, 0.006
+19531021, 0.02, -0.14, -0.01, 0.006
+19531022, 0.33, -0.01, -0.38, 0.006
+19531023, 0.10, 0.11, -0.20, 0.006
+19531026, -0.24, 0.16, -0.20, 0.006
+19531027, -0.30, -0.07, -0.07, 0.006
+19531028, 0.21, -0.17, 0.22, 0.006
+19531029, 0.99, -0.36, 0.40, 0.006
+19531030, 0.05, 0.00, -0.01, 0.006
+19531102, 0.43, -0.23, -0.32, 0.004
+19531104, 0.11, -0.29, -0.30, 0.004
+19531105, 0.70, -0.16, 0.33, 0.004
+19531106, 0.06, 0.09, 0.40, 0.004
+19531109, -0.09, -0.07, 0.15, 0.004
+19531110, -0.54, 0.14, -0.06, 0.004
+19531112, 0.30, -0.32, 0.10, 0.004
+19531113, 0.24, 0.25, -0.13, 0.004
+19531116, -0.55, 0.36, -0.20, 0.004
+19531117, -0.41, 0.11, -0.21, 0.004
+19531118, 0.22, -0.09, 0.18, 0.004
+19531119, 0.46, 0.01, -0.22, 0.004
+19531120, 0.06, 0.05, -0.17, 0.004
+19531123, -0.14, -0.39, -0.13, 0.004
+19531124, 0.52, -0.56, -0.03, 0.004
+19531125, 0.26, -0.01, 0.20, 0.004
+19531127, 0.63, -0.05, 0.12, 0.004
+19531130, 0.55, -0.14, 0.15, 0.004
+19531201, 0.11, -0.10, 0.11, 0.006
+19531202, 0.63, -0.08, -0.14, 0.006
+19531203, 0.20, -0.33, 0.08, 0.006
+19531204, -0.11, 0.26, -0.25, 0.006
+19531207, -0.18, 0.14, -0.26, 0.006
+19531208, -0.36, -0.14, -0.14, 0.006
+19531209, -0.01, 0.11, -0.22, 0.006
+19531210, -0.14, 0.15, -0.01, 0.006
+19531211, -0.02, -0.12, -0.01, 0.006
+19531214, -0.23, -0.13, 0.15, 0.006
+19531215, 0.00, -0.21, -0.34, 0.006
+19531216, 0.89, -0.43, 0.09, 0.006
+19531217, -0.07, 0.13, 0.09, 0.006
+19531218, 0.27, -0.11, -0.17, 0.006
+19531221, -0.17, 0.08, -0.36, 0.006
+19531222, -0.80, 0.11, -0.24, 0.006
+19531223, -0.08, 0.13, 0.20, 0.006
+19531224, 0.39, -0.01, 0.28, 0.006
+19531228, -0.44, -0.13, -0.50, 0.006
+19531229, -0.66, -0.16, -0.34, 0.006
+19531230, 0.68, -0.23, -0.31, 0.006
+19531231, 0.13, 0.20, -0.58, 0.006
+19540104, 0.73, 0.50, 1.28, 0.005
+19540105, 0.65, 0.37, 0.61, 0.005
+19540106, 0.19, 0.20, -0.08, 0.005
+19540107, -0.33, 0.41, -0.30, 0.005
+19540108, -0.40, 0.14, -0.08, 0.005
+19540111, -0.50, 0.09, -0.13, 0.005
+19540112, 0.51, -0.19, 0.30, 0.005
+19540113, 0.52, -0.03, 0.09, 0.005
+19540114, 0.46, 0.01, 0.24, 0.005
+19540115, 0.89, -0.26, 0.35, 0.005
+19540118, 0.08, 0.11, 0.15, 0.005
+19540119, 0.72, -0.44, 0.55, 0.005
+19540120, 0.27, 0.12, -0.03, 0.005
+19540121, -0.01, 0.05, -0.07, 0.005
+19540122, 0.23, -0.08, 0.06, 0.005
+19540125, 0.35, -0.27, 0.14, 0.005
+19540126, 0.74, -0.14, -0.27, 0.005
+19540127, -0.28, 0.08, 0.08, 0.005
+19540128, 0.03, -0.07, -0.02, 0.005
+19540129, 0.18, -0.17, 0.47, 0.005
+19540201, -0.22, 0.04, -0.23, 0.004
+19540202, -0.14, -0.09, 0.08, 0.004
+19540203, 0.56, -0.23, 0.10, 0.004
+19540204, 0.66, -0.23, -0.04, 0.004
+19540205, 0.34, -0.15, 0.00, 0.004
+19540208, -0.02, 0.18, 0.09, 0.004
+19540209, 0.03, 0.03, -0.07, 0.004
+19540210, -0.15, 0.31, 0.17, 0.004
+19540211, -0.13, 0.02, 0.00, 0.004
+19540212, 0.32, -0.04, 0.09, 0.004
+19540215, -0.33, 0.20, 0.10, 0.004
+19540216, -0.78, 0.19, -0.34, 0.004
+19540217, 0.27, -0.27, 0.23, 0.004
+19540218, 0.49, 0.04, -0.21, 0.004
+19540219, -0.12, 0.13, 0.13, 0.004
+19540223, -0.33, -0.04, -0.13, 0.004
+19540224, -0.06, -0.11, -0.01, 0.004
+19540225, 0.42, 0.01, -0.02, 0.004
+19540226, 0.87, -0.17, -0.21, 0.004
+19540301, 0.52, -0.28, -0.10, 0.003
+19540302, 0.25, -0.09, -0.31, 0.003
+19540303, 0.03, -0.08, 0.24, 0.003
+19540304, 0.25, -0.36, 0.17, 0.003
+19540305, 0.43, -0.13, 0.15, 0.003
+19540308, -0.21, 0.07, -0.19, 0.003
+19540309, 0.21, -0.05, -0.21, 0.003
+19540310, 0.30, 0.19, -0.10, 0.003
+19540311, 0.46, 0.01, -0.21, 0.003
+19540312, -0.09, 0.07, -0.19, 0.003
+19540315, -0.33, 0.12, -0.21, 0.003
+19540316, 0.03, 0.09, 0.06, 0.003
+19540317, 0.11, -0.19, 0.59, 0.003
+19540318, 0.52, 0.00, 0.10, 0.003
+19540319, 0.38, -0.01, -0.02, 0.003
+19540322, -0.05, 0.06, -0.23, 0.003
+19540323, -0.69, -0.02, -0.34, 0.003
+19540324, -0.47, 0.16, -0.18, 0.003
+19540325, -0.09, 0.14, -0.11, 0.003
+19540326, 0.62, 0.07, -0.13, 0.003
+19540329, 0.40, -0.06, -0.28, 0.003
+19540330, 0.30, 0.19, -0.05, 0.003
+19540331, 0.77, -0.36, 0.14, 0.003
+19540401, 0.72, -0.46, 0.27, 0.004
+19540402, 0.09, 0.07, -0.34, 0.004
+19540405, 0.06, 0.12, -0.42, 0.004
+19540406, -0.91, 0.13, 0.00, 0.004
+19540407, 0.55, -0.09, -0.01, 0.004
+19540408, 0.72, -0.24, 0.54, 0.004
+19540409, 0.44, -0.02, 0.14, 0.004
+19540412, -0.07, -0.19, -0.14, 0.004
+19540413, 0.18, -0.20, 0.27, 0.004
+19540414, 0.71, -0.46, -0.21, 0.004
+19540415, 0.40, -0.27, -0.26, 0.004
+19540419, -0.53, 0.00, -0.29, 0.004
+19540420, 0.04, -0.03, -0.31, 0.004
+19540421, -0.09, 0.06, 0.03, 0.004
+19540422, 0.21, -0.05, -0.30, 0.004
+19540423, 0.40, -0.25, 0.43, 0.004
+19540426, 0.11, -0.29, 0.18, 0.004
+19540427, -0.41, -0.09, -0.03, 0.004
+19540428, 0.23, -0.13, -0.15, 0.004
+19540429, 1.22, -0.65, 0.58, 0.004
+19540430, 0.13, -0.37, -0.29, 0.004
+19540503, -0.12, -0.12, -0.16, 0.003
+19540504, 0.12, -0.32, 0.17, 0.003
+19540505, -0.04, 0.16, -0.03, 0.003
+19540506, 0.52, -0.18, 0.02, 0.003
+19540507, 0.40, 0.02, -0.01, 0.003
+19540510, 0.09, 0.06, 0.19, 0.003
+19540511, -0.35, 0.11, -0.13, 0.003
+19540512, 0.76, -0.06, 0.39, 0.003
+19540513, -0.26, 0.31, 0.45, 0.003
+19540514, 0.49, -0.11, 0.33, 0.003
+19540517, 0.22, -0.22, 0.28, 0.003
+19540518, 0.16, 0.14, 0.14, 0.003
+19540519, -0.20, 0.11, 0.25, 0.003
+19540520, 0.35, -0.05, 0.38, 0.003
+19540521, 0.51, 0.28, -0.02, 0.003
+19540524, 0.04, 0.10, -0.20, 0.003
+19540525, -0.23, 0.05, -0.13, 0.003
+19540526, 0.54, -0.07, 0.47, 0.003
+19540527, -0.20, 0.16, -0.21, 0.003
+19540528, 0.26, 0.00, 0.20, 0.003
+19540601, 0.18, 0.25, -0.10, 0.003
+19540602, -0.18, 0.27, -0.43, 0.003
+19540603, 0.06, 0.16, 0.13, 0.003
+19540604, -0.19, 0.16, -0.15, 0.003
+19540607, -0.13, 0.00, -0.06, 0.003
+19540608, -2.04, 0.56, -0.26, 0.003
+19540609, -0.45, 0.13, 0.31, 0.003
+19540610, 0.56, 0.45, 0.02, 0.003
+19540611, 0.66, -0.29, 0.75, 0.003
+19540614, 0.06, -0.06, -0.09, 0.003
+19540615, 0.75, -0.63, 0.39, 0.003
+19540616, 0.74, -0.06, -0.06, 0.003
+19540617, -0.10, 0.06, -0.05, 0.003
+19540618, 0.04, 0.02, 0.15, 0.003
+19540621, 0.17, -0.06, -0.22, 0.003
+19540622, 0.10, -0.25, -0.14, 0.003
+19540623, 0.17, -0.29, -0.04, 0.003
+19540624, 0.58, -0.26, 0.25, 0.003
+19540625, 0.08, 0.10, -0.03, 0.003
+19540628, 0.62, -0.31, -0.59, 0.003
+19540629, 0.00, -0.01, 0.03, 0.003
+19540630, -0.54, 0.47, 0.19, 0.003
+19540701, 0.02, 0.23, -0.20, 0.002
+19540702, 0.99, -0.36, 0.07, 0.002
+19540706, 0.86, -0.19, -0.18, 0.002
+19540707, 0.02, -0.07, 0.10, 0.002
+19540708, -0.15, 0.06, 0.02, 0.002
+19540709, 0.47, -0.09, 0.36, 0.002
+19540712, 0.10, 0.12, 0.70, 0.002
+19540713, -0.27, 0.08, 0.46, 0.002
+19540714, 0.26, 0.17, 0.35, 0.002
+19540715, 0.30, 0.25, 0.23, 0.002
+19540716, -0.38, 0.47, 0.00, 0.002
+19540719, -0.30, 0.36, -0.21, 0.002
+19540720, -0.25, 0.43, 0.13, 0.002
+19540721, 0.75, -0.30, 0.48, 0.002
+19540722, 0.80, -0.40, 0.79, 0.002
+19540723, 0.18, -0.12, 0.39, 0.002
+19540726, 0.02, 0.34, -0.39, 0.002
+19540727, 0.43, -0.11, 0.63, 0.002
+19540728, 0.23, 0.03, 0.03, 0.002
+19540729, 0.37, 0.05, -0.11, 0.002
+19540730, 0.42, 0.07, 0.23, 0.002
+19540802, 0.28, 0.12, 0.28, 0.002
+19540803, 0.25, -0.22, 0.15, 0.002
+19540804, 0.01, 0.46, -0.24, 0.002
+19540805, -0.19, 0.73, -0.21, 0.002
+19540806, -1.21, 0.17, -0.62, 0.002
+19540809, -0.42, 0.49, 0.30, 0.002
+19540810, 0.85, 0.06, 0.61, 0.002
+19540811, 0.86, -0.01, 0.53, 0.002
+19540812, -0.16, 0.30, -0.35, 0.002
+19540813, 0.28, -0.06, 0.29, 0.002
+19540816, 0.73, -0.41, 0.46, 0.002
+19540817, -0.01, 0.01, -0.55, 0.002
+19540818, 0.10, 0.13, -0.23, 0.002
+19540819, 0.27, -0.20, -0.42, 0.002
+19540820, 0.12, -0.01, 0.17, 0.002
+19540823, -0.66, 0.53, -0.13, 0.002
+19540824, -0.36, 0.20, -0.40, 0.002
+19540825, -0.60, 0.03, -0.32, 0.002
+19540826, -0.30, 0.09, 0.05, 0.002
+19540827, 0.24, 0.09, -0.05, 0.002
+19540830, -0.94, 0.11, -0.47, 0.002
+19540831, -1.48, 0.12, -0.23, 0.002
+19540901, 0.82, 0.02, 0.35, 0.004
+19540902, 0.64, -0.12, -0.14, 0.004
+19540903, 0.64, 0.01, 0.55, 0.004
+19540907, 0.47, -0.32, 0.55, 0.004
+19540908, 0.12, -0.20, -0.11, 0.004
+19540909, 0.23, -0.22, 0.42, 0.004
+19540910, 0.34, 0.01, 0.40, 0.004
+19540913, 0.65, -0.28, 0.60, 0.004
+19540914, 0.32, -0.20, -0.31, 0.004
+19540915, -0.16, -0.06, -0.30, 0.004
+19540916, 0.35, 0.02, 0.26, 0.004
+19540917, 0.62, -0.09, -0.14, 0.004
+19540920, -0.37, 0.08, -0.46, 0.004
+19540921, 0.55, -0.33, 0.21, 0.004
+19540922, 0.59, -0.29, 0.13, 0.004
+19540923, 0.41, -0.42, -0.25, 0.004
+19540924, 0.50, -0.29, 0.02, 0.004
+19540927, 0.20, -0.19, -0.57, 0.004
+19540928, 0.12, -0.34, -0.41, 0.004
+19540929, -0.41, 0.38, -0.10, 0.004
+19540930, -0.41, 0.40, -0.05, 0.004
+19541001, 0.12, -0.03, 0.29, 0.003
+19541004, 0.50, -0.18, 0.00, 0.003
+19541005, 0.34, -0.14, 0.02, 0.003
+19541006, 0.24, -0.22, 0.14, 0.003
+19541007, -0.21, -0.05, 0.56, 0.003
+19541008, -0.02, 0.07, 0.04, 0.003
+19541011, -0.64, 0.40, 0.19, 0.003
+19541012, -0.37, 0.12, -0.32, 0.003
+19541013, -0.06, 0.15, 0.04, 0.003
+19541014, -1.15, 0.37, -0.50, 0.003
+19541015, -0.32, 0.29, 0.52, 0.003
+19541018, 0.32, -0.35, 0.17, 0.003
+19541019, 0.30, -0.18, 0.39, 0.003
+19541020, 0.61, -0.04, 0.38, 0.003
+19541021, 0.13, -0.09, 0.07, 0.003
+19541022, 0.12, 0.27, -0.22, 0.003
+19541025, -0.57, -0.14, -0.47, 0.003
+19541026, -0.07, 0.06, 0.03, 0.003
+19541027, 0.00, 0.07, -0.08, 0.003
+19541028, -0.23, 0.15, -0.38, 0.003
+19541029, -0.70, 0.06, -0.15, 0.003
+19541101, 0.45, -0.52, 0.13, 0.003
+19541103, 1.98, -0.47, 0.28, 0.003
+19541104, 1.01, -0.19, 0.07, 0.003
+19541105, -0.03, -0.09, 0.15, 0.003
+19541108, 0.87, -0.23, 0.70, 0.003
+19541109, 0.38, -0.10, 0.12, 0.003
+19541110, 0.35, 0.07, -0.04, 0.003
+19541111, 0.74, -0.22, 0.58, 0.003
+19541112, 0.30, -0.11, 0.47, 0.003
+19541115, -0.07, 0.00, -0.08, 0.003
+19541116, 0.51, -0.34, 0.47, 0.003
+19541117, 0.34, -0.22, 0.68, 0.003
+19541118, -0.47, 0.41, -0.66, 0.003
+19541119, 0.32, 0.58, 0.30, 0.003
+19541122, 0.56, -0.04, 0.52, 0.003
+19541123, 1.18, -0.38, 0.17, 0.003
+19541124, 0.25, -0.20, 0.26, 0.003
+19541126, 0.73, -0.34, 0.15, 0.003
+19541129, 0.25, -0.25, -0.03, 0.003
+19541130, -0.59, 0.21, -0.26, 0.003
+19541201, -0.47, 0.22, -0.27, 0.004
+19541202, 0.68, 0.42, 0.30, 0.004
+19541203, 0.93, 0.33, 0.15, 0.004
+19541206, 0.70, 0.18, 0.20, 0.004
+19541207, 0.24, -0.03, 0.40, 0.004
+19541208, 0.00, 0.10, 0.16, 0.004
+19541209, -0.34, 0.10, -0.09, 0.004
+19541210, -0.18, 0.61, 0.32, 0.004
+19541213, -0.14, 0.04, 0.40, 0.004
+19541214, -0.70, 0.24, -0.24, 0.004
+19541215, 0.42, -0.66, 0.86, 0.004
+19541216, 0.95, -0.27, 0.54, 0.004
+19541217, 0.61, -0.09, 0.51, 0.004
+19541220, 0.72, -0.12, 0.10, 0.004
+19541221, 0.15, 0.21, 0.00, 0.004
+19541222, -0.03, 0.33, 0.12, 0.004
+19541223, 0.10, 0.14, 0.39, 0.004
+19541227, -0.66, -0.05, 0.05, 0.004
+19541228, 0.91, -0.09, 1.10, 0.004
+19541229, 0.81, -0.02, 0.41, 0.004
+19541230, 0.08, 0.27, -0.06, 0.004
+19541231, 0.61, 0.14, -0.01, 0.004
+19550103, 1.08, -0.43, -0.18, 0.004
+19550104, -0.42, 0.24, -0.16, 0.004
+19550105, -2.12, 0.21, -1.27, 0.004
+19550106, -1.37, 0.20, -0.24, 0.004
+19550107, 1.11, 0.32, 1.28, 0.004
+19550110, 1.43, 0.01, 0.62, 0.004
+19550111, -0.18, 0.18, -0.35, 0.004
+19550112, -0.22, -0.04, 0.25, 0.004
+19550113, -0.49, 0.27, -0.15, 0.004
+19550114, -0.38, 0.45, -0.05, 0.004
+19550117, -1.90, 0.63, -0.73, 0.004
+19550118, 0.67, -0.33, 0.53, 0.004
+19550119, 0.49, 0.43, -0.10, 0.004
+19550120, 0.26, 0.12, -0.49, 0.004
+19550121, 0.66, -0.17, 0.57, 0.004
+19550124, 0.13, -0.25, 0.16, 0.004
+19550125, -0.11, -0.34, 0.42, 0.004
+19550126, 0.71, -0.90, 1.25, 0.004
+19550127, 0.16, 0.26, -0.01, 0.004
+19550128, 0.42, -0.13, 0.38, 0.004
+19550131, 0.75, -0.54, 0.49, 0.004
+19550201, 0.42, -0.33, -0.51, 0.004
+19550202, -0.10, 0.09, -0.32, 0.004
+19550203, -0.11, 0.56, 0.30, 0.004
+19550204, 1.03, -0.44, -0.42, 0.004
+19550207, 0.28, 0.30, -0.50, 0.004
+19550208, -0.80, 0.12, -0.54, 0.004
+19550209, 1.07, -0.17, 1.09, 0.004
+19550210, 0.78, 0.04, 0.08, 0.004
+19550211, 0.17, -0.17, -0.12, 0.004
+19550214, -0.25, 0.50, 0.14, 0.004
+19550215, 0.31, 0.33, -0.07, 0.004
+19550216, -0.26, 0.39, -0.04, 0.004
+19550217, 0.13, 0.29, 0.12, 0.004
+19550218, 0.27, 0.00, 0.24, 0.004
+19550221, 0.06, 0.35, 0.17, 0.004
+19550223, 0.07, -0.19, 0.33, 0.004
+19550224, -0.49, -0.22, -0.03, 0.004
+19550225, -0.10, 0.38, -0.14, 0.004
+19550228, 0.51, -0.35, 0.88, 0.004
+19550301, 0.32, -0.36, 0.51, 0.004
+19550302, 0.80, -0.05, 0.65, 0.004
+19550303, 0.27, 0.01, -0.63, 0.004
+19550304, 0.39, -0.25, -0.01, 0.004
+19550307, -0.39, 0.11, -0.26, 0.004
+19550308, -1.83, 0.08, -0.79, 0.004
+19550309, -1.22, -0.71, 0.18, 0.004
+19550310, 0.79, 0.66, 0.42, 0.004
+19550311, -1.54, 0.06, -0.43, 0.004
+19550314, -2.43, -0.20, -0.31, 0.004
+19550315, 1.91, -0.13, 1.03, 0.004
+19550316, 0.94, 0.34, 0.18, 0.004
+19550317, 0.42, -0.03, 0.08, 0.004
+19550318, 0.15, 0.22, -0.41, 0.004
+19550321, -0.54, 0.16, -0.13, 0.004
+19550322, 0.53, -0.43, 0.86, 0.004
+19550323, 1.19, 0.08, 0.31, 0.004
+19550324, 0.84, -0.38, 0.14, 0.004
+19550325, 0.27, -0.17, 0.04, 0.004
+19550328, -0.34, 0.01, 0.05, 0.004
+19550329, 0.09, 0.09, 0.67, 0.004
+19550330, -0.88, 0.17, -0.74, 0.004
+19550331, 0.22, 0.12, 0.58, 0.004
+19550401, 0.83, -0.44, 0.66, 0.005
+19550404, -0.15, 0.24, -0.36, 0.005
+19550405, 0.38, -0.30, 0.25, 0.005
+19550406, 0.18, -0.11, 0.19, 0.005
+19550407, 0.40, -0.25, 0.11, 0.005
+19550411, 0.22, -0.27, -0.32, 0.005
+19550412, 0.44, -0.26, 0.36, 0.005
+19550413, 0.28, -0.07, -0.13, 0.005
+19550414, 0.08, 0.14, -0.33, 0.005
+19550415, 0.40, 0.13, 0.49, 0.005
+19550418, 0.60, -0.52, -0.12, 0.005
+19550419, -0.16, -0.13, 0.26, 0.005
+19550420, 0.18, 0.01, 0.18, 0.005
+19550421, -0.08, -0.04, 0.04, 0.005
+19550422, -0.75, 0.04, -0.26, 0.005
+19550425, 0.26, -0.14, 0.84, 0.005
+19550426, 0.57, -0.40, -0.01, 0.005
+19550427, -0.40, 0.10, -0.63, 0.005
+19550428, -0.81, 0.47, -0.52, 0.005
+19550429, 0.60, 0.03, 0.17, 0.005
+19550502, 0.13, -0.41, -0.02, 0.007
+19550503, -0.85, -0.24, -0.76, 0.007
+19550504, 0.12, 0.01, 0.38, 0.007
+19550505, 0.47, 0.09, 0.04, 0.007
+19550506, 0.30, 0.03, 0.40, 0.007
+19550509, 0.11, -0.13, 0.00, 0.007
+19550510, -0.20, -0.20, -0.46, 0.007
+19550511, -0.93, 0.27, -0.33, 0.007
+19550512, -0.58, 0.32, -0.49, 0.007
+19550513, 0.57, 0.07, 0.42, 0.007
+19550516, -1.02, 0.12, -0.68, 0.007
+19550517, -0.05, 0.12, 0.07, 0.007
+19550518, 0.77, -0.02, 0.64, 0.007
+19550519, 0.67, 0.10, 0.09, 0.007
+19550520, 0.66, -0.10, 0.19, 0.007
+19550523, -0.64, 0.34, -0.55, 0.007
+19550524, 0.11, -0.12, 0.19, 0.007
+19550525, 0.48, -0.12, 0.23, 0.007
+19550526, 0.70, -0.50, 0.38, 0.007
+19550527, 0.14, 0.03, -0.40, 0.007
+19550531, 0.03, 0.02, -0.15, 0.007
+19550601, 0.18, -0.21, -0.34, 0.005
+19550602, 0.29, -0.24, 0.15, 0.005
+19550603, 0.64, -0.46, 0.58, 0.005
+19550606, 0.53, -0.71, 0.87, 0.005
+19550607, 0.69, -0.54, 0.56, 0.005
+19550608, 0.52, -0.38, 0.17, 0.005
+19550609, -0.51, 0.17, -0.72, 0.005
+19550610, 0.51, -0.33, 0.48, 0.005
+19550613, 0.89, -0.79, 0.19, 0.005
+19550614, -0.02, -0.02, -0.14, 0.005
+19550615, 0.68, -0.18, -0.04, 0.005
+19550616, 0.15, 0.10, -0.08, 0.005
+19550617, 0.28, -0.09, 0.27, 0.005
+19550620, 0.23, -0.10, -0.31, 0.005
+19550621, 0.45, -0.14, -0.14, 0.005
+19550622, 0.19, -0.12, 0.47, 0.005
+19550623, 0.11, -0.06, -0.36, 0.005
+19550624, 0.11, 0.08, -0.24, 0.005
+19550627, 0.08, -0.34, 0.50, 0.005
+19550628, -0.35, 0.28, -0.46, 0.005
+19550629, 0.13, -0.17, 0.28, 0.005
+19550630, 0.56, -0.19, 0.16, 0.005
+19550701, 0.39, -0.12, 0.12, 0.005
+19550705, 0.91, -0.54, -0.23, 0.005
+19550706, 1.20, -1.44, -1.03, 0.005
+19550707, -1.39, 0.07, 0.16, 0.005
+19550708, -0.10, 0.08, 0.01, 0.005
+19550711, 0.47, -0.07, 0.37, 0.005
+19550712, -0.13, 0.20, -0.06, 0.005
+19550713, -0.95, 0.32, 0.38, 0.005
+19550714, 0.21, 0.00, 0.38, 0.005
+19550715, 0.42, 0.02, 0.33, 0.005
+19550718, -0.15, -0.17, 0.08, 0.005
+19550719, -0.58, 0.48, -0.02, 0.005
+19550720, 0.23, 0.20, 0.34, 0.005
+19550721, 0.76, 0.13, -0.20, 0.005
+19550722, 0.71, -0.29, 0.35, 0.005
+19550725, 0.48, -0.10, -0.23, 0.005
+19550726, -0.01, -0.38, 0.14, 0.005
+19550727, 0.05, -0.11, 0.00, 0.005
+19550728, -0.48, 0.27, -0.15, 0.005
+19550729, -0.13, 0.10, -0.12, 0.005
+19550801, -1.14, 0.28, 0.01, 0.007
+19550802, 0.11, 0.18, 0.08, 0.007
+19550803, 0.21, 0.10, -0.16, 0.007
+19550804, -1.24, 0.31, -0.12, 0.007
+19550805, 0.53, 0.02, -0.06, 0.007
+19550808, -0.49, -0.09, 0.05, 0.007
+19550809, -1.04, 0.15, -0.12, 0.007
+19550810, 0.14, 0.04, -0.19, 0.007
+19550811, 0.84, -0.39, 0.57, 0.007
+19550812, 0.28, 0.00, -0.17, 0.007
+19550815, -0.15, 0.00, 0.11, 0.007
+19550816, -0.53, 0.10, 0.29, 0.007
+19550817, -0.04, -0.24, 0.24, 0.007
+19550818, -0.01, 0.05, 0.15, 0.007
+19550819, 0.14, -0.01, 0.07, 0.007
+19550822, -0.11, -0.19, 0.12, 0.007
+19550823, 0.94, -0.64, 0.27, 0.007
+19550824, 0.38, 0.00, 0.15, 0.007
+19550825, 0.45, -0.03, -0.07, 0.007
+19550826, 0.39, 0.00, -0.20, 0.007
+19550829, 0.08, 0.06, -0.16, 0.007
+19550830, 0.02, 0.00, -0.17, 0.007
+19550831, 0.50, -0.09, -0.12, 0.007
+19550901, 0.28, -0.01, -0.22, 0.008
+19550902, 0.43, -0.09, 0.09, 0.008
+19550906, 0.56, -0.24, 0.01, 0.008
+19550907, 0.03, -0.22, 0.43, 0.008
+19550908, 0.19, 0.20, 0.04, 0.008
+19550909, 0.13, 0.08, 0.16, 0.008
+19550912, 0.45, -0.12, -0.35, 0.008
+19550913, 0.63, -0.46, -0.48, 0.008
+19550914, 0.23, -0.09, 0.35, 0.008
+19550915, -0.13, 0.26, 0.01, 0.008
+19550916, 0.44, -0.03, -0.12, 0.008
+19550919, 0.02, 0.00, -0.23, 0.008
+19550920, -0.04, 0.14, 0.03, 0.008
+19550921, 0.43, -0.15, -0.17, 0.008
+19550922, 0.04, 0.03, 0.10, 0.008
+19550923, 0.39, -0.29, 0.22, 0.008
+19550926, -6.52, 0.40, -0.48, 0.008
+19550927, 2.17, -0.36, -0.56, 0.008
+19550928, 1.27, 0.45, -0.20, 0.008
+19550929, -0.61, 0.52, 0.32, 0.008
+19550930, -0.50, 0.32, -0.11, 0.008
+19551003, -2.24, 0.57, 0.02, 0.009
+19551004, 0.48, 0.08, -0.07, 0.009
+19551005, 0.51, 0.04, 0.20, 0.009
+19551006, -0.41, 0.36, -0.21, 0.009
+19551007, -0.77, -0.01, -0.13, 0.009
+19551010, -2.56, 0.53, -0.24, 0.009
+19551011, -0.73, 0.04, 0.34, 0.009
+19551012, 1.37, -0.26, 0.04, 0.009
+19551013, -0.14, -0.03, 0.01, 0.009
+19551014, -0.16, -0.05, 0.33, 0.009
+19551017, 0.31, -0.09, 0.27, 0.009
+19551018, 0.42, -0.07, -0.01, 0.009
+19551019, 0.82, -0.17, -0.01, 0.009
+19551020, 0.93, -0.10, -0.28, 0.009
+19551021, 0.10, -0.04, 0.27, 0.009
+19551024, 0.57, -0.31, 0.02, 0.009
+19551025, -0.48, 0.17, 0.11, 0.009
+19551026, -0.62, 0.39, -0.09, 0.009
+19551027, -0.21, 0.20, -0.30, 0.009
+19551028, 0.27, -0.02, -0.08, 0.009
+19551031, -0.08, 0.19, -0.12, 0.009
+19551101, 0.02, -0.10, -0.11, 0.008
+19551102, 0.18, -0.05, 0.15, 0.008
+19551103, 1.40, -0.63, -0.14, 0.008
+19551104, 1.34, -0.71, -0.17, 0.008
+19551107, 0.58, -0.15, -0.04, 0.008
+19551109, 0.85, -0.52, -0.31, 0.008
+19551110, -0.12, 0.09, 0.31, 0.008
+19551111, 0.78, -0.04, 0.07, 0.008
+19551114, 1.45, -0.71, -0.57, 0.008
+19551115, 0.14, -0.21, -0.12, 0.008
+19551116, -0.24, 0.14, 0.37, 0.008
+19551117, -0.40, 0.40, -0.10, 0.008
+19551118, -0.16, 0.16, -0.19, 0.008
+19551121, -0.59, 0.28, 0.47, 0.008
+19551122, 0.84, -0.42, 0.20, 0.008
+19551123, 0.28, -0.29, -0.02, 0.008
+19551125, 0.35, -0.25, 0.61, 0.008
+19551128, -0.41, 0.26, 0.33, 0.008
+19551129, 0.34, 0.06, -0.10, 0.008
+19551130, 0.23, 0.34, -0.20, 0.008
+19551201, -0.15, 0.38, -0.13, 0.009
+19551202, 0.27, 0.17, -0.19, 0.009
+19551205, 0.51, 0.00, -0.30, 0.009
+19551206, 0.10, 0.28, -0.11, 0.009
+19551207, -0.13, 0.55, -0.62, 0.009
+19551208, 0.45, 0.04, -0.19, 0.009
+19551209, 0.05, 0.16, 0.22, 0.009
+19551212, -0.67, 0.12, 0.14, 0.009
+19551213, 0.01, 0.05, 0.19, 0.009
+19551214, -0.63, 0.54, -0.18, 0.009
+19551215, 0.02, 0.02, -0.14, 0.009
+19551216, 0.32, 0.10, -0.18, 0.009
+19551219, -0.09, 0.25, -0.07, 0.009
+19551220, -0.09, 0.09, -0.25, 0.009
+19551221, 0.82, -0.35, -0.08, 0.009
+19551222, 0.22, 0.16, -0.06, 0.009
+19551223, 0.16, -0.12, 0.16, 0.009
+19551227, -0.27, -0.02, 0.31, 0.009
+19551228, -0.24, -0.01, -0.05, 0.009
+19551229, 0.05, -0.25, -0.18, 0.009
+19551230, 0.81, -0.13, -0.52, 0.009
+19560103, -0.65, 0.13, 0.09, 0.010
+19560104, -0.53, 0.33, -0.17, 0.010
+19560105, 0.12, 0.42, -0.04, 0.010
+19560106, 0.45, -0.11, 0.35, 0.010
+19560109, -1.27, 0.24, 0.02, 0.010
+19560110, -0.75, 0.00, 0.07, 0.010
+19560111, 0.62, 0.21, -0.11, 0.010
+19560112, 0.61, -0.01, -0.02, 0.010
+19560113, -0.04, -0.07, 0.10, 0.010
+19560116, -1.02, 0.31, -0.24, 0.010
+19560117, 0.47, -0.22, 0.00, 0.010
+19560118, -0.81, 0.27, -0.16, 0.010
+19560119, -1.02, 0.23, -0.01, 0.010
+19560120, -0.72, 0.10, -0.02, 0.010
+19560123, -0.37, -0.18, 0.05, 0.010
+19560124, 1.28, -0.25, 0.20, 0.010
+19560125, 0.36, -0.15, 0.13, 0.010
+19560126, -0.54, 0.05, 0.42, 0.010
+19560127, -0.24, -0.11, 0.01, 0.010
+19560130, 0.21, -0.02, -0.06, 0.010
+19560131, 0.82, -0.73, 0.53, 0.010
+19560201, 0.58, -0.25, -0.22, 0.010
+19560202, 0.20, -0.10, -0.32, 0.010
+19560203, 0.91, -0.47, -0.55, 0.010
+19560206, -0.01, 0.15, -0.26, 0.010
+19560207, -0.21, -0.01, 0.15, 0.010
+19560208, -1.02, 0.22, -0.20, 0.010
+19560209, -1.00, 0.34, 0.22, 0.010
+19560210, 0.27, -0.08, 0.13, 0.010
+19560213, -0.10, 0.02, 0.08, 0.010
+19560214, -0.38, 0.12, 0.06, 0.010
+19560215, 1.17, -0.06, 0.07, 0.010
+19560216, -0.16, 0.22, 0.10, 0.010
+19560217, 1.43, -0.65, 0.37, 0.010
+19560220, 0.08, 0.09, 0.49, 0.010
+19560221, 0.18, 0.05, -0.01, 0.010
+19560223, 1.07, -0.24, -0.20, 0.010
+19560224, 0.68, -0.44, -0.01, 0.010
+19560227, -0.06, 0.14, -0.12, 0.010
+19560228, 0.39, -0.12, -0.21, 0.010
+19560229, -0.26, 0.04, -0.09, 0.010
+19560301, 0.59, -0.22, -0.08, 0.007
+19560302, 0.72, -0.31, 0.29, 0.007
+19560305, 0.61, -0.02, 0.13, 0.007
+19560306, -0.08, 0.17, -0.42, 0.007
+19560307, 0.00, 0.28, 0.03, 0.007
+19560308, 0.35, -0.10, 0.19, 0.007
+19560309, 1.13, -0.22, -0.11, 0.007
+19560312, 0.73, -0.38, -0.16, 0.007
+19560313, 0.00, 0.03, -0.18, 0.007
+19560314, 0.61, -0.39, 0.01, 0.007
+19560315, 0.60, -0.24, -0.29, 0.007
+19560316, 0.05, -0.13, 0.00, 0.007
+19560319, 0.58, -0.36, 0.00, 0.007
+19560320, 0.26, -0.47, 0.22, 0.007
+19560321, -0.88, 0.55, 0.08, 0.007
+19560322, 0.60, -0.31, 0.08, 0.007
+19560323, 0.44, -0.13, -0.13, 0.007
+19560326, 0.03, 0.15, -0.12, 0.007
+19560327, -0.55, 0.21, -0.36, 0.007
+19560328, 0.38, -0.18, 0.38, 0.007
+19560329, 0.25, -0.25, 0.32, 0.007
+19560402, 0.66, -0.54, -0.13, 0.009
+19560403, -0.26, 0.16, -0.37, 0.009
+19560404, 0.27, -0.08, -0.12, 0.009
+19560405, -0.43, 0.15, 0.08, 0.009
+19560406, 0.51, -0.18, 0.03, 0.009
+19560409, -0.50, 0.44, -0.11, 0.009
+19560410, -1.33, 0.55, -0.09, 0.009
+19560411, 0.78, -0.18, 0.02, 0.009
+19560412, -0.56, 0.51, 0.17, 0.009
+19560413, 0.05, 0.21, 0.35, 0.009
+19560416, -0.02, -0.03, 0.11, 0.009
+19560417, -0.06, 0.00, -0.16, 0.009
+19560418, -0.21, 0.15, -0.08, 0.009
+19560419, -0.36, 0.06, -0.08, 0.009
+19560420, 0.47, -0.37, 0.44, 0.009
+19560423, -0.04, -0.05, 0.32, 0.009
+19560424, -0.83, 0.34, -0.05, 0.009
+19560425, -0.26, 0.02, 0.53, 0.009
+19560426, 0.78, -0.28, -0.25, 0.009
+19560427, 0.96, -0.36, -0.28, 0.009
+19560430, 0.68, -0.49, -0.50, 0.009
+19560501, -0.31, 0.06, -0.32, 0.010
+19560502, 0.05, 0.26, -0.21, 0.010
+19560503, 0.43, -0.17, 0.29, 0.010
+19560504, 0.52, 0.03, -0.29, 0.010
+19560507, -0.30, 0.10, -0.15, 0.010
+19560508, -0.29, -0.08, 0.24, 0.010
+19560509, 0.02, -0.10, 0.57, 0.010
+19560510, -1.35, 0.44, -0.34, 0.010
+19560511, 0.19, 0.42, -0.22, 0.010
+19560514, -1.10, 0.36, -0.39, 0.010
+19560515, -0.54, -0.05, 0.24, 0.010
+19560516, -0.16, 0.18, 0.34, 0.010
+19560517, 0.73, -0.24, -0.08, 0.010
+19560518, -0.28, 0.24, 0.24, 0.010
+19560521, -1.04, 0.09, -0.27, 0.010
+19560522, -1.26, 0.37, -0.14, 0.010
+19560523, -0.39, 0.38, -0.10, 0.010
+19560524, -1.29, -0.10, -0.02, 0.010
+19560525, 0.02, -0.28, 0.13, 0.010
+19560528, -1.21, -0.25, -0.31, 0.010
+19560529, 2.24, -0.25, -0.54, 0.010
+19560531, 0.08, 0.13, -0.04, 0.010
+19560601, 0.49, -0.28, -0.23, 0.009
+19560604, 0.45, -0.35, 0.01, 0.009
+19560605, 0.08, 0.19, -0.05, 0.009
+19560606, -0.34, 0.10, -0.11, 0.009
+19560607, 0.60, -0.13, -0.08, 0.009
+19560608, -1.75, -0.41, 0.01, 0.009
+19560611, 1.19, -0.06, 0.00, 0.009
+19560612, 1.28, -0.55, -0.17, 0.009
+19560613, 0.25, 0.29, 0.08, 0.009
+19560614, -0.24, -0.03, 0.26, 0.009
+19560615, 0.19, -0.07, -0.14, 0.009
+19560618, -0.60, 0.48, -0.02, 0.009
+19560619, 0.34, -0.26, -0.32, 0.009
+19560620, 0.27, -0.07, -0.26, 0.009
+19560621, 0.48, -0.23, 0.20, 0.009
+19560622, -0.10, 0.15, -0.12, 0.009
+19560625, -0.42, 0.20, -0.20, 0.009
+19560626, 0.58, -0.16, -0.04, 0.009
+19560627, 0.60, -0.01, -0.24, 0.009
+19560628, 0.13, -0.30, 0.15, 0.009
+19560629, -0.01, 0.05, -0.01, 0.009
+19560702, 0.01, -0.16, -0.16, 0.010
+19560703, 0.61, -0.19, -0.32, 0.010
+19560705, 0.82, -0.23, -0.11, 0.010
+19560706, 0.45, -0.22, 0.07, 0.010
+19560709, 0.36, 0.05, 0.07, 0.010
+19560710, 0.41, 0.08, -0.06, 0.010
+19560711, 0.24, 0.12, 0.08, 0.010
+19560712, -0.25, 0.16, 0.20, 0.010
+19560713, 0.47, -0.15, 0.19, 0.010
+19560716, 0.68, -0.47, -0.12, 0.010
+19560717, 0.36, -0.15, -0.01, 0.010
+19560718, -0.07, -0.12, 0.17, 0.010
+19560719, 0.02, -0.02, -0.04, 0.010
+19560720, 0.21, 0.06, -0.05, 0.010
+19560723, 0.06, -0.28, 0.18, 0.010
+19560724, -0.10, 0.07, 0.22, 0.010
+19560725, 0.19, -0.18, 0.03, 0.010
+19560726, 0.21, 0.01, -0.27, 0.010
+19560727, -0.66, 0.18, -0.10, 0.010
+19560730, 0.00, -0.07, 0.11, 0.010
+19560731, 0.66, -0.17, -0.02, 0.010
+19560801, 0.13, -0.03, -0.05, 0.007
+19560802, 0.52, 0.07, -0.69, 0.007
+19560803, -0.16, 0.03, -0.12, 0.007
+19560806, -1.40, 0.39, 0.15, 0.007
+19560807, 0.74, -0.22, 0.05, 0.007
+19560808, 0.59, -0.07, -0.25, 0.007
+19560809, 0.11, 0.15, 0.05, 0.007
+19560810, -0.43, 0.06, -0.11, 0.007
+19560813, -0.76, 0.15, 0.08, 0.007
+19560814, 0.36, -0.13, -0.08, 0.007
+19560815, -0.02, 0.14, -0.08, 0.007
+19560816, -0.10, 0.09, -0.17, 0.007
+19560817, -0.01, 0.19, -0.03, 0.007
+19560820, -0.94, 0.28, 0.18, 0.007
+19560821, -1.08, -0.08, 0.17, 0.007
+19560822, -0.42, 0.40, 0.31, 0.007
+19560823, 0.83, -0.13, -0.30, 0.007
+19560824, 0.07, 0.28, -0.14, 0.007
+19560827, -0.56, 0.21, -0.05, 0.007
+19560828, -0.36, 0.21, 0.12, 0.007
+19560829, -0.40, 0.09, 0.35, 0.007
+19560830, -0.93, -0.03, 0.08, 0.007
+19560831, 1.05, -0.11, -0.18, 0.007
+19560904, 0.75, -0.17, -0.29, 0.010
+19560905, 0.36, 0.03, -0.42, 0.010
+19560906, 0.11, 0.02, -0.06, 0.010
+19560907, -0.53, 0.34, 0.07, 0.010
+19560910, -0.41, 0.16, 0.10, 0.010
+19560911, -0.64, 0.26, 0.00, 0.010
+19560912, -0.54, 0.03, 0.11, 0.010
+19560913, -0.17, 0.13, -0.10, 0.010
+19560914, 0.40, -0.64, 0.98, 0.010
+19560917, -0.21, 0.02, 0.05, 0.010
+19560918, -0.78, 0.29, 0.06, 0.010
+19560919, -0.93, 0.36, 0.39, 0.010
+19560920, -0.26, -0.05, 0.21, 0.010
+19560921, 0.69, 0.10, 0.17, 0.010
+19560924, -0.54, 0.24, -0.17, 0.010
+19560925, -1.38, 0.15, 0.33, 0.010
+19560926, -0.05, -0.27, 0.50, 0.010
+19560927, -0.43, 0.44, -0.28, 0.010
+19560928, -0.68, 0.19, 0.19, 0.010
+19561001, -1.52, 0.13, -0.04, 0.011
+19561002, 1.73, -0.33, -0.13, 0.011
+19561003, 1.49, -0.50, -0.31, 0.011
+19561004, -0.05, 0.19, -0.21, 0.011
+19561005, 0.36, 0.00, 0.34, 0.011
+19561008, 0.01, -0.03, 0.12, 0.011
+19561009, -0.47, 0.33, -0.20, 0.011
+19561010, 1.04, -0.53, -0.16, 0.011
+19561011, 0.14, 0.22, -0.19, 0.011
+19561012, 0.26, -0.04, 0.28, 0.011
+19561015, 0.02, -0.01, -0.03, 0.011
+19561016, -0.38, -0.02, 0.48, 0.011
+19561017, -0.70, 0.35, 0.24, 0.011
+19561018, 0.16, -0.19, 0.19, 0.011
+19561019, -0.03, 0.16, 0.45, 0.011
+19561022, -0.20, -0.13, -0.01, 0.011
+19561023, -0.07, 0.09, -0.22, 0.011
+19561024, -0.39, 0.18, -0.29, 0.011
+19561025, -0.30, 0.02, 0.03, 0.011
+19561026, 0.88, -0.21, 0.13, 0.011
+19561029, 0.17, 0.25, -0.59, 0.011
+19561030, -0.20, -0.12, 0.18, 0.011
+19561031, -1.37, 0.12, -0.13, 0.011
+19561101, 1.75, -0.63, 0.18, 0.010
+19561102, 0.83, -0.22, -0.27, 0.010
+19561105, 1.39, -0.64, -0.35, 0.010
+19561107, -0.62, 0.45, -0.02, 0.010
+19561108, -0.74, 0.11, 0.13, 0.010
+19561109, -0.49, 0.49, -0.23, 0.010
+19561112, 0.50, -0.11, 0.36, 0.010
+19561113, -0.03, 0.05, 0.53, 0.010
+19561114, -0.65, -0.04, 0.42, 0.010
+19561115, -0.50, 0.54, 0.42, 0.010
+19561116, -0.08, 0.03, 0.19, 0.010
+19561119, -1.02, 0.30, 0.22, 0.010
+19561120, -0.59, 0.04, 0.17, 0.010
+19561121, -0.23, -0.07, -0.16, 0.010
+19561123, 0.94, -0.46, -0.06, 0.010
+19561126, -0.32, 0.47, 0.34, 0.010
+19561127, 0.03, -0.15, 0.05, 0.010
+19561128, -0.99, 0.54, -0.08, 0.010
+19561129, -0.25, -0.32, 0.10, 0.010
+19561130, 1.51, -0.71, -0.25, 0.010
+19561203, 1.57, -0.69, -0.18, 0.012
+19561204, -0.07, 0.30, -0.85, 0.012
+19561205, 0.94, -0.25, -0.21, 0.012
+19561206, 0.52, -0.63, 0.58, 0.012
+19561207, 0.26, 0.13, -0.18, 0.012
+19561210, -0.30, 0.37, 0.04, 0.012
+19561211, -0.45, 0.37, -0.07, 0.012
+19561212, -0.63, 0.70, -0.33, 0.012
+19561213, 0.68, -0.19, 0.37, 0.012
+19561214, 0.19, 0.31, -0.47, 0.012
+19561217, -0.05, -0.03, -0.06, 0.012
+19561218, 0.01, -0.09, -0.22, 0.012
+19561219, -0.27, 0.15, -0.28, 0.012
+19561220, -0.62, 0.23, -0.02, 0.012
+19561221, 0.59, -0.30, 0.41, 0.012
+19561226, 0.24, -0.12, -0.34, 0.012
+19561227, -0.08, -0.09, -0.21, 0.012
+19561228, 0.24, -0.07, 0.06, 0.012
+19561231, 0.36, -0.17, -0.11, 0.012
+19570102, -0.73, 0.65, 0.84, 0.012
+19570103, 0.79, -0.02, 0.25, 0.012
+19570104, 0.17, 0.10, 0.43, 0.012
+19570107, -0.46, 0.32, 0.66, 0.012
+19570108, -0.13, 0.46, 0.05, 0.012
+19570109, -0.19, 0.37, 0.19, 0.012
+19570110, 0.37, 0.32, 0.27, 0.012
+19570111, -0.10, 0.45, 0.12, 0.012
+19570114, -0.72, 0.33, -0.19, 0.012
+19570115, -1.11, 0.37, 0.19, 0.012
+19570116, -0.06, 0.20, 0.09, 0.012
+19570117, -0.30, -0.21, -0.02, 0.012
+19570118, -1.22, 0.25, -0.04, 0.012
+19570121, -0.34, 0.01, -0.23, 0.012
+19570122, 0.32, 0.25, -0.09, 0.012
+19570123, 0.56, -0.23, 0.20, 0.012
+19570124, 0.24, 0.14, -0.15, 0.012
+19570125, -0.51, -0.15, -0.04, 0.012
+19570128, -0.69, -0.09, -0.06, 0.012
+19570129, 0.23, 0.03, 0.30, 0.012
+19570130, 0.53, -0.43, 0.08, 0.012
+19570131, -0.27, 0.34, -0.04, 0.012
+19570201, -0.39, -0.03, -0.16, 0.013
+19570204, -0.19, 0.22, -0.10, 0.013
+19570205, -1.26, -0.16, -0.16, 0.013
+19570206, 0.15, -0.09, 0.23, 0.013
+19570207, -0.36, 0.05, -0.13, 0.013
+19570208, -0.42, -0.03, -0.11, 0.013
+19570211, -1.73, 0.15, -0.60, 0.013
+19570212, -0.54, -0.30, 0.18, 0.013
+19570213, 1.55, -0.14, 0.13, 0.013
+19570214, 0.05, 0.06, 0.01, 0.013
+19570215, 1.23, -0.27, -0.17, 0.013
+19570218, -0.22, 0.46, -0.37, 0.013
+19570219, 0.20, -0.25, -0.08, 0.013
+19570220, 0.45, -0.37, -0.11, 0.013
+19570221, -0.39, 0.10, -0.02, 0.013
+19570225, 0.01, -0.14, 0.20, 0.013
+19570226, 0.19, -0.09, -0.02, 0.013
+19570227, -0.18, -0.03, 0.41, 0.013
+19570228, -0.19, 0.08, 0.18, 0.013
+19570301, 0.89, -0.39, -0.13, 0.011
+19570304, 0.68, -0.15, -0.15, 0.011
+19570305, 0.42, -0.24, -0.08, 0.011
+19570306, 0.31, 0.02, -0.44, 0.011
+19570307, -0.26, 0.44, -0.23, 0.011
+19570308, -0.35, -0.02, 0.08, 0.011
+19570311, -0.54, 0.43, -0.04, 0.011
+19570312, -0.02, -0.13, 0.11, 0.011
+19570313, 0.56, 0.21, 0.02, 0.011
+19570314, 0.09, -0.12, 0.10, 0.011
+19570315, 0.13, 0.18, 0.02, 0.011
+19570318, -0.40, 0.03, -0.04, 0.011
+19570319, 0.36, 0.02, -0.10, 0.011
+19570320, 0.13, 0.39, -0.04, 0.011
+19570321, 0.03, -0.17, 0.04, 0.011
+19570322, -0.16, 0.07, 0.36, 0.011
+19570325, -0.42, 0.09, 0.08, 0.011
+19570326, 0.15, -0.13, -0.12, 0.011
+19570327, 0.30, -0.13, -0.06, 0.011
+19570328, 0.34, -0.08, 0.12, 0.011
+19570329, -0.14, -0.02, -0.03, 0.011
+19570401, -0.01, -0.17, -0.12, 0.012
+19570402, 0.59, -0.23, -0.10, 0.012
+19570403, 0.35, 0.01, 0.07, 0.012
+19570404, -0.24, 0.12, -0.11, 0.012
+19570405, 0.07, 0.12, -0.36, 0.012
+19570408, 0.03, 0.04, -0.29, 0.012
+19570409, 0.84, -0.40, -0.21, 0.012
+19570410, 0.53, -0.28, 0.28, 0.012
+19570411, 0.08, 0.20, -0.20, 0.012
+19570412, 0.19, -0.01, 0.00, 0.012
+19570415, -0.12, -0.04, 0.18, 0.012
+19570416, 0.07, -0.06, -0.10, 0.012
+19570417, 0.22, -0.11, -0.26, 0.012
+19570418, 0.69, -0.18, -0.04, 0.012
+19570422, 0.10, 0.13, -0.04, 0.012
+19570423, 0.56, -0.46, 0.42, 0.012
+19570424, 0.16, -0.18, -0.09, 0.012
+19570425, -0.32, -0.07, 0.28, 0.012
+19570426, -0.12, -0.07, 0.03, 0.012
+19570429, 0.38, 0.07, -0.45, 0.012
+19570430, 0.11, 0.00, -0.34, 0.012
+19570501, 0.55, -0.29, -0.33, 0.012
+19570502, 0.73, -0.40, -0.14, 0.012
+19570503, -0.07, 0.32, -0.06, 0.012
+19570506, -0.13, -0.03, 0.01, 0.012
+19570507, -0.17, 0.03, -0.15, 0.012
+19570508, 0.40, 0.10, -0.34, 0.012
+19570509, 0.13, 0.24, -0.09, 0.012
+19570510, 0.43, -0.03, -0.29, 0.012
+19570513, 0.71, -0.33, -0.42, 0.012
+19570514, -0.43, 0.25, 0.02, 0.012
+19570515, 0.24, 0.08, -0.34, 0.012
+19570516, 0.42, -0.17, 0.46, 0.012
+19570517, 0.29, -0.14, 0.13, 0.012
+19570520, 0.27, -0.26, -0.25, 0.012
+19570521, 0.07, -0.11, -0.03, 0.012
+19570522, -0.34, -0.03, 0.17, 0.012
+19570523, -0.09, -0.01, 0.10, 0.012
+19570524, 0.13, -0.19, 0.17, 0.012
+19570527, -0.89, 0.18, -0.10, 0.012
+19570528, -0.14, 0.03, 0.21, 0.012
+19570529, 0.83, -0.27, -0.30, 0.012
+19570531, 0.45, -0.06, -0.39, 0.012
+19570603, -0.19, 0.04, -0.08, 0.012
+19570604, -0.13, 0.00, 0.06, 0.012
+19570605, 0.02, 0.00, -0.03, 0.012
+19570606, 0.63, -0.38, -0.33, 0.012
+19570607, 0.03, -0.01, 0.03, 0.012
+19570610, -0.65, 0.00, 0.29, 0.012
+19570611, 1.26, -0.01, -0.16, 0.012
+19570612, 0.16, -0.23, 0.28, 0.012
+19570613, 0.16, 0.06, -0.18, 0.012
+19570614, -0.02, 0.11, -0.18, 0.012
+19570617, 0.16, -0.10, -0.18, 0.012
+19570618, -0.44, 0.42, -0.47, 0.012
+19570619, -0.92, 0.60, -0.07, 0.012
+19570620, -0.57, 0.19, 0.15, 0.012
+19570621, -0.58, 0.13, 0.35, 0.012
+19570624, -0.74, -0.09, 0.46, 0.012
+19570625, 0.66, -0.02, -0.05, 0.012
+19570626, -0.16, 0.07, 0.19, 0.012
+19570627, 0.36, -0.24, -0.04, 0.012
+19570628, 0.23, 0.02, -0.11, 0.012
+19570701, 0.18, -0.40, 0.22, 0.013
+19570702, 0.86, -0.41, -0.33, 0.013
+19570703, 0.79, -0.10, -0.33, 0.013
+19570705, 0.77, -0.07, -0.41, 0.013
+19570708, 0.37, -0.15, -0.31, 0.013
+19570709, -0.26, -0.07, 0.44, 0.013
+19570710, 0.67, -0.47, 0.31, 0.013
+19570711, -0.39, 0.06, 0.36, 0.013
+19570712, 0.41, -0.16, 0.00, 0.013
+19570715, 0.07, -0.30, 0.28, 0.013
+19570716, -0.49, 0.13, 0.29, 0.013
+19570717, -0.59, 0.33, -0.16, 0.013
+19570718, -0.10, 0.33, -0.35, 0.013
+19570719, 0.02, 0.16, -0.23, 0.013
+19570722, -0.22, 0.18, -0.01, 0.013
+19570723, -0.12, -0.15, 0.49, 0.013
+19570724, 0.07, 0.01, 0.00, 0.013
+19570725, -0.01, -0.10, 0.34, 0.013
+19570726, -0.34, 0.03, -0.09, 0.013
+19570729, -1.12, 0.14, -0.07, 0.013
+19570730, 0.12, 0.11, -0.02, 0.013
+19570731, 0.00, 0.16, -0.04, 0.013
+19570801, -0.25, 0.11, -0.13, 0.011
+19570802, -0.09, -0.11, 0.51, 0.011
+19570805, -0.85, 0.25, 0.19, 0.011
+19570806, -1.10, 0.20, 0.23, 0.011
+19570807, 0.83, -0.47, -0.29, 0.011
+19570808, -0.32, 0.66, -0.49, 0.011
+19570809, 0.02, -0.30, 0.14, 0.011
+19570812, -1.10, 0.25, 0.16, 0.011
+19570813, -0.02, 0.00, -0.28, 0.011
+19570814, -1.25, 0.05, 0.29, 0.011
+19570815, 0.08, -0.28, 0.14, 0.011
+19570816, 0.15, 0.01, 0.06, 0.011
+19570819, -1.92, 0.32, 0.36, 0.011
+19570820, 0.75, -0.50, -0.18, 0.011
+19570821, 0.56, -0.02, -0.39, 0.011
+19570822, -0.67, 0.11, 0.46, 0.011
+19570823, -1.40, -0.03, 0.32, 0.011
+19570826, -1.42, 0.08, 0.12, 0.011
+19570827, 1.54, 0.00, -0.96, 0.011
+19570828, 0.12, 0.22, -0.47, 0.011
+19570829, -0.46, -0.04, -0.03, 0.011
+19570830, 1.65, -0.48, -0.32, 0.011
+19570903, 0.44, 0.21, -0.22, 0.013
+19570904, -0.85, 0.32, 0.01, 0.013
+19570905, -0.36, 0.00, -0.02, 0.013
+19570906, -0.27, 0.20, 0.35, 0.013
+19570909, -0.85, 0.09, 0.03, 0.013
+19570910, -0.88, 0.13, -0.05, 0.013
+19570911, 0.75, -0.61, -0.06, 0.013
+19570912, 1.23, -0.28, -0.44, 0.013
+19570913, -0.05, 0.35, 0.14, 0.013
+19570916, -0.47, 0.09, 0.07, 0.013
+19570917, 0.15, -0.03, -0.19, 0.013
+19570918, 0.13, -0.13, 0.22, 0.013
+19570919, -0.61, 0.33, 0.06, 0.013
+19570920, -1.58, -0.02, 0.45, 0.013
+19570923, -2.13, -0.18, 0.16, 0.013
+19570924, 0.64, -0.11, -0.27, 0.013
+19570925, -1.27, -0.44, 0.18, 0.013
+19570926, 0.22, -0.09, -0.03, 0.013
+19570927, -0.03, 0.62, 0.06, 0.013
+19570930, -0.33, -0.36, 0.44, 0.013
+19571001, 0.73, -0.47, -0.37, 0.013
+19571002, 0.84, -0.12, -0.02, 0.013
+19571003, 0.04, -0.29, 0.50, 0.013
+19571004, -0.71, 0.32, 0.28, 0.013
+19571007, -1.89, 0.10, 0.60, 0.013
+19571008, -0.80, -0.60, -0.18, 0.013
+19571009, 0.18, 0.25, -0.08, 0.013
+19571010, -2.51, -0.36, 0.47, 0.013
+19571011, -0.12, -0.27, -0.56, 0.013
+19571014, 0.71, 0.24, -1.12, 0.013
+19571015, 1.05, -0.07, 0.01, 0.013
+19571016, -0.77, 0.14, 0.10, 0.013
+19571017, -1.80, -0.48, 0.30, 0.013
+19571018, -0.87, -0.14, 0.07, 0.013
+19571021, -3.04, -0.53, 0.00, 0.013
+19571022, -0.56, -0.63, -0.67, 0.013
+19571023, 4.42, -0.27, -1.06, 0.013
+19571024, 0.10, 0.78, -0.01, 0.013
+19571025, -0.34, -0.07, -0.09, 0.013
+19571028, -0.43, -0.36, 0.32, 0.013
+19571029, 0.63, -0.15, -0.23, 0.013
+19571030, 0.86, 0.04, -0.01, 0.013
+19571031, 0.12, 0.30, -0.29, 0.013
+19571101, -1.42, 0.64, 0.07, 0.015
+19571104, -0.07, -0.10, -0.29, 0.015
+19571106, 0.20, 0.67, -0.66, 0.015
+19571107, 0.56, 0.13, -0.26, 0.015
+19571108, -1.01, 0.37, 0.00, 0.015
+19571111, -0.12, 0.16, 0.00, 0.015
+19571112, -1.18, 0.45, 0.40, 0.015
+19571113, -0.17, -0.13, -0.02, 0.015
+19571114, -0.62, -0.14, -0.12, 0.015
+19571115, 2.65, -0.49, -0.43, 0.015
+19571118, -0.80, 0.13, -0.24, 0.015
+19571119, -0.62, 0.04, -0.90, 0.015
+19571120, 0.41, -0.07, 0.22, 0.015
+19571121, 1.37, -0.68, 0.15, 0.015
+19571122, 1.01, 0.07, 0.01, 0.015
+19571125, 0.80, -0.47, -0.27, 0.015
+19571126, -2.59, 0.37, 0.59, 0.015
+19571127, 2.85, -0.61, -1.25, 0.015
+19571129, 1.20, -0.03, 0.10, 0.015
+19571202, -0.81, 0.47, -0.13, 0.011
+19571203, 0.05, -0.09, -0.33, 0.011
+19571204, 0.43, -0.13, -0.49, 0.011
+19571205, 0.05, 0.00, -0.17, 0.011
+19571206, -0.60, 0.38, 0.06, 0.011
+19571209, -0.75, 0.20, -0.36, 0.011
+19571210, -0.84, 0.06, 0.04, 0.011
+19571211, -0.16, -0.33, -0.28, 0.011
+19571212, 0.14, -0.54, 1.21, 0.011
+19571213, 0.45, -0.17, 0.03, 0.011
+19571216, -1.46, 0.32, -0.11, 0.011
+19571217, -1.71, 0.07, 0.41, 0.011
+19571218, -0.10, -0.52, 0.22, 0.011
+19571219, 1.01, -0.40, -0.41, 0.011
+19571220, -0.83, 0.39, -0.12, 0.011
+19571223, -0.07, -0.26, -0.73, 0.011
+19571224, 0.11, 0.19, 0.03, 0.011
+19571226, 1.03, -0.37, -0.18, 0.011
+19571227, -0.34, 0.08, -0.26, 0.011
+19571230, -0.55, -0.35, -0.33, 0.011
+19571231, 1.02, 0.01, 0.08, 0.011
+19580102, 0.97, 0.62, 1.19, 0.013
+19580103, 1.35, 0.39, 0.99, 0.013
+19580106, -0.43, 0.66, 0.29, 0.013
+19580107, 0.80, 0.19, -0.21, 0.013
+19580108, 0.00, 0.18, 0.24, 0.013
+19580109, -0.61, 0.73, -0.16, 0.013
+19580110, -0.89, 0.43, 0.05, 0.013
+19580113, 0.29, -0.03, -0.13, 0.013
+19580114, 0.45, 0.00, 0.12, 0.013
+19580115, 0.83, -0.26, -0.17, 0.013
+19580116, 0.20, 0.42, 0.51, 0.013
+19580117, 0.11, -0.11, 0.63, 0.013
+19580120, 0.55, 0.20, -0.37, 0.013
+19580121, -0.06, 0.62, -0.18, 0.013
+19580122, -0.22, 0.13, 0.13, 0.013
+19580123, 0.40, 0.11, 0.11, 0.013
+19580124, 0.87, -0.13, 0.31, 0.013
+19580127, -0.22, -0.09, 0.55, 0.013
+19580128, 0.03, -0.01, -0.27, 0.013
+19580129, 0.57, -0.32, 0.29, 0.013
+19580130, -0.44, 0.37, -0.01, 0.013
+19580131, 0.02, -0.06, 0.07, 0.013
+19580203, 0.77, 0.01, -0.09, 0.006
+19580204, 1.04, -0.24, -0.07, 0.006
+19580205, -0.48, 0.20, 0.14, 0.006
+19580206, -0.22, -0.03, 0.09, 0.006
+19580207, -0.76, 0.19, -0.25, 0.006
+19580210, -0.57, 0.16, 0.10, 0.006
+19580211, -0.81, 0.36, 0.02, 0.006
+19580212, -0.41, -0.17, 0.32, 0.006
+19580213, 0.03, 0.20, 0.10, 0.006
+19580214, 0.93, -0.49, 0.18, 0.006
+19580217, -0.53, 0.53, 0.15, 0.006
+19580218, 0.17, -0.19, 0.11, 0.006
+19580219, 0.02, 0.13, -0.25, 0.006
+19580220, -0.57, 0.31, 0.14, 0.006
+19580221, -0.09, -0.06, -0.18, 0.006
+19580224, -0.54, 0.10, -0.12, 0.006
+19580225, -0.10, -0.34, 0.06, 0.006
+19580226, 0.78, -0.09, -0.02, 0.006
+19580227, -0.52, 0.30, -0.25, 0.006
+19580228, 0.36, -0.20, 0.11, 0.006
+19580303, 0.68, -0.25, -0.46, 0.004
+19580304, 0.42, 0.17, -0.37, 0.004
+19580305, 0.44, -0.13, 0.14, 0.004
+19580306, 1.16, -0.50, 0.07, 0.004
+19580307, 0.18, 0.27, -0.34, 0.004
+19580310, 0.20, -0.21, 0.12, 0.004
+19580311, 0.81, -0.10, -0.13, 0.004
+19580312, -0.16, 0.13, 0.01, 0.004
+19580313, 0.08, 0.34, 0.43, 0.004
+19580314, -0.14, 0.07, -0.08, 0.004
+19580317, -0.81, 0.34, 0.22, 0.004
+19580318, -0.20, -0.09, -0.31, 0.004
+19580319, 0.49, 0.19, 0.01, 0.004
+19580320, -0.01, 0.30, -0.06, 0.004
+19580321, 0.73, -0.13, 0.08, 0.004
+19580324, 0.26, -0.25, 0.18, 0.004
+19580325, -0.21, 0.05, -0.16, 0.004
+19580326, -0.25, 0.19, 0.12, 0.004
+19580327, -0.28, 0.10, -0.03, 0.004
+19580328, 0.14, 0.12, -0.30, 0.004
+19580331, -0.30, 0.00, 0.00, 0.004
+19580401, -0.39, -0.25, 0.01, 0.004
+19580402, -0.77, 0.15, 0.28, 0.004
+19580403, -0.27, 0.14, 0.15, 0.004
+19580407, -0.39, -0.05, 0.18, 0.004
+19580408, 0.75, 0.03, -0.06, 0.004
+19580409, 0.06, 0.22, 0.23, 0.004
+19580410, 0.13, 0.11, 0.30, 0.004
+19580411, 0.17, -0.10, 0.45, 0.004
+19580414, 0.58, -0.15, -0.10, 0.004
+19580415, 0.96, -0.37, 0.01, 0.004
+19580416, -0.73, 0.30, 0.11, 0.004
+19580417, 0.33, -0.30, 0.95, 0.004
+19580418, 1.00, -0.28, -0.66, 0.004
+19580421, 0.47, -0.30, 0.38, 0.004
+19580422, -0.35, 0.33, -0.07, 0.004
+19580423, 0.13, 0.26, -0.33, 0.004
+19580424, 0.77, -0.06, -0.07, 0.004
+19580425, 0.49, -0.10, -0.38, 0.004
+19580428, -0.37, 0.26, -0.01, 0.004
+19580429, -0.44, -0.06, 0.12, 0.004
+19580430, 0.95, -0.38, -0.09, 0.004
+19580501, 0.15, 0.07, -0.21, 0.005
+19580502, 0.41, 0.07, -0.07, 0.005
+19580505, 0.24, -0.01, 0.29, 0.005
+19580506, 0.60, -0.23, 0.16, 0.005
+19580507, -0.12, 0.11, -0.10, 0.005
+19580508, 0.18, 0.01, 0.06, 0.005
+19580509, 0.09, 0.13, 0.24, 0.005
+19580512, -0.40, 0.45, -0.16, 0.005
+19580513, -0.21, 0.63, -0.34, 0.005
+19580514, -1.11, 0.19, 0.10, 0.005
+19580515, 0.54, -0.19, 0.36, 0.005
+19580516, 0.06, -0.01, 0.00, 0.005
+19580519, -0.25, 0.19, -0.02, 0.005
+19580520, 0.84, 0.02, -0.28, 0.005
+19580521, -0.07, 0.33, 0.06, 0.005
+19580522, 0.52, 0.21, -0.10, 0.005
+19580523, 0.27, 0.26, -0.20, 0.005
+19580526, 0.00, 0.01, 0.30, 0.005
+19580527, -0.12, 0.02, -0.16, 0.005
+19580528, 0.12, -0.03, 0.01, 0.005
+19580529, 0.57, -0.05, -0.24, 0.005
+19580602, 0.47, -0.05, -0.34, 0.001
+19580603, 0.34, -0.20, 0.21, 0.001
+19580604, 0.07, 0.00, -0.09, 0.001
+19580605, 0.17, -0.27, 0.36, 0.001
+19580606, 0.22, 0.17, -0.03, 0.001
+19580609, -0.09, -0.11, -0.33, 0.001
+19580610, -0.19, -0.03, 0.00, 0.001
+19580611, 0.07, -0.14, 0.37, 0.001
+19580612, 0.56, 0.02, -0.33, 0.001
+19580613, 0.60, 0.00, 0.25, 0.001
+19580616, 0.39, -0.06, 0.02, 0.001
+19580617, 0.30, -0.09, 0.09, 0.001
+19580618, -0.36, 0.10, 0.07, 0.001
+19580619, -1.14, 0.39, -0.12, 0.001
+19580620, 0.54, -0.23, 0.16, 0.001
+19580623, -0.35, 0.02, 0.15, 0.001
+19580624, -0.33, 0.25, 0.03, 0.001
+19580625, 0.24, -0.02, 0.26, 0.001
+19580626, 0.50, 0.09, -0.21, 0.001
+19580627, 0.28, 0.14, 0.27, 0.001
+19580630, 0.64, -0.22, -0.30, 0.001
+19580701, 0.09, -0.18, -0.05, 0.003
+19580702, 0.10, 0.12, -0.04, 0.003
+19580703, 0.35, 0.24, -0.02, 0.003
+19580707, 0.30, -0.19, 0.15, 0.003
+19580708, -0.52, -0.04, 0.20, 0.003
+19580709, -0.33, 0.04, -0.24, 0.003
+19580710, 0.46, -0.16, -0.17, 0.003
+19580711, 0.64, -0.21, 0.62, 0.003
+19580714, -1.25, 0.27, -0.12, 0.003
+19580715, 0.13, -0.31, 0.34, 0.003
+19580716, 0.22, 0.19, 0.03, 0.003
+19580717, 0.74, -0.25, 0.52, 0.003
+19580718, 0.40, -0.49, 0.30, 0.003
+19580721, 1.16, -0.28, -0.15, 0.003
+19580722, 0.16, 0.19, -0.30, 0.003
+19580723, 0.01, 0.48, 0.10, 0.003
+19580724, 0.53, 0.16, 0.35, 0.003
+19580725, 0.68, 0.05, 0.49, 0.003
+19580728, 0.34, 0.25, 0.25, 0.003
+19580729, -0.27, 0.43, -0.09, 0.003
+19580730, 0.39, 0.18, 0.63, 0.003
+19580731, -0.01, -0.01, 0.18, 0.003
+19580801, 0.76, -0.07, 0.29, 0.002
+19580804, 0.92, -0.35, 0.62, 0.002
+19580805, -0.49, -0.09, -0.46, 0.002
+19580806, -0.43, -0.21, -0.23, 0.002
+19580807, 0.71, 0.09, 0.64, 0.002
+19580808, 0.53, 0.04, -0.20, 0.002
+19580811, 0.35, -0.21, 0.02, 0.002
+19580812, -0.80, 0.14, -0.30, 0.002
+19580813, 0.22, 0.02, 0.40, 0.002
+19580814, 0.23, 0.23, 0.03, 0.002
+19580815, -0.88, 0.45, -0.61, 0.002
+19580818, -0.54, 0.06, -0.12, 0.002
+19580819, 0.18, -0.03, 0.37, 0.002
+19580820, 0.14, 0.14, 0.09, 0.002
+19580821, 0.60, 0.11, -0.18, 0.002
+19580822, 0.20, 0.21, 0.06, 0.002
+19580825, 0.08, 0.01, -0.02, 0.002
+19580826, 0.38, -0.08, 0.10, 0.002
+19580827, 0.04, 0.38, 0.03, 0.002
+19580828, -0.50, 0.16, -0.26, 0.002
+19580829, 0.23, 0.14, 0.02, 0.002
+19580902, 0.51, 0.34, -0.18, 0.009
+19580903, 0.39, -0.04, -0.19, 0.009
+19580904, -0.17, 0.15, -0.19, 0.009
+19580905, -0.11, 0.19, -0.11, 0.009
+19580908, 0.38, 0.20, -0.12, 0.009
+19580909, 0.53, -0.01, 0.06, 0.009
+19580910, -0.26, 0.03, 0.01, 0.009
+19580911, 0.65, -0.19, 0.09, 0.009
+19580912, -0.25, 0.10, 0.06, 0.009
+19580915, 0.85, -0.53, 0.60, 0.009
+19580916, 0.65, -0.54, 0.33, 0.009
+19580917, -0.08, -0.07, 0.16, 0.009
+19580918, -0.44, 0.19, 0.44, 0.009
+19580919, 0.66, 0.06, 0.91, 0.009
+19580922, -0.41, 0.41, -0.11, 0.009
+19580923, 0.65, -0.14, -0.05, 0.009
+19580924, 0.38, -0.25, 0.39, 0.009
+19580925, -0.39, -0.15, 0.30, 0.009
+19580926, 0.22, 0.39, -0.14, 0.009
+19580929, 0.42, 0.16, 0.47, 0.009
+19580930, 0.36, -0.17, 0.05, 0.009
+19581001, -0.21, -0.24, -0.28, 0.008
+19581002, 0.32, 0.09, 0.06, 0.008
+19581003, 0.41, -0.14, 0.40, 0.008
+19581006, 0.55, -0.19, 0.15, 0.008
+19581007, 0.51, -0.33, -0.36, 0.008
+19581008, 0.12, -0.14, -0.25, 0.008
+19581009, 0.04, 0.20, 0.29, 0.008
+19581010, 0.59, 0.10, -0.01, 0.008
+19581013, 0.36, 0.17, -0.37, 0.008
+19581014, -0.73, -0.03, -1.00, 0.008
+19581015, -1.18, 0.46, -0.74, 0.008
+19581016, 0.76, -0.30, 0.36, 0.008
+19581017, 0.92, 0.50, -0.19, 0.008
+19581020, -0.28, 0.52, -0.12, 0.008
+19581021, -0.04, -0.05, 0.02, 0.008
+19581022, -0.32, 0.22, 0.33, 0.008
+19581023, -0.17, 0.00, 0.74, 0.008
+19581024, -0.22, 0.01, 0.25, 0.008
+19581027, -0.76, -0.20, 0.05, 0.008
+19581028, 0.44, 0.02, 0.58, 0.008
+19581029, 1.11, 0.17, 0.12, 0.008
+19581030, 0.16, 0.15, -0.85, 0.008
+19581031, 0.16, 0.03, -0.25, 0.008
+19581103, 0.41, -0.56, -0.05, 0.006
+19581105, 1.04, -0.08, -0.29, 0.006
+19581106, 0.62, -0.20, -0.48, 0.006
+19581107, -0.14, -0.01, 0.13, 0.006
+19581110, 0.67, -0.28, 0.36, 0.006
+19581111, 0.78, -0.03, 0.08, 0.006
+19581112, 0.15, 0.28, -0.43, 0.006
+19581113, -0.37, 0.35, 0.01, 0.006
+19581114, 0.50, 0.31, -0.16, 0.006
+19581117, 0.26, 0.07, -0.12, 0.006
+19581118, -0.15, 0.17, -0.26, 0.006
+19581119, 0.17, 0.30, -0.20, 0.006
+19581120, 0.06, 0.32, -0.52, 0.006
+19581121, -0.91, 0.49, -0.05, 0.006
+19581124, -2.43, 0.07, -0.18, 0.006
+19581125, -0.61, 0.34, 0.24, 0.006
+19581126, 1.83, 0.25, 0.44, 0.006
+19581128, 1.15, 0.19, 0.28, 0.006
+19581201, 0.41, 0.08, -0.31, 0.011
+19581202, -0.39, 0.30, -0.61, 0.011
+19581203, 0.16, -0.02, -0.01, 0.011
+19581204, 0.07, 0.07, 0.29, 0.011
+19581205, -0.06, 0.12, -0.01, 0.011
+19581208, 0.21, -0.13, -0.02, 0.011
+19581209, 0.52, -0.27, -0.17, 0.011
+19581210, 1.15, -0.23, -0.19, 0.011
+19581211, -0.26, 0.10, 0.04, 0.011
+19581212, -0.15, 0.10, 0.11, 0.011
+19581215, 0.25, -0.30, -0.05, 0.011
+19581216, 0.32, -0.14, -0.09, 0.011
+19581217, 0.63, -0.68, 0.17, 0.011
+19581218, 0.34, -0.40, 0.04, 0.011
+19581219, -0.18, 0.03, -0.15, 0.011
+19581222, -0.64, -0.03, 0.00, 0.011
+19581223, -0.52, 0.18, 0.36, 0.011
+19581224, 1.37, -0.32, 0.36, 0.011
+19581229, 0.89, -0.21, -0.21, 0.011
+19581230, 0.42, -0.08, -0.02, 0.011
+19581231, 0.47, -0.19, 0.48, 0.011
+19590102, 0.40, -0.02, 0.70, 0.010
+19590105, 0.35, -0.27, 0.32, 0.010
+19590106, -0.09, 0.10, 0.06, 0.010
+19590107, -1.19, 0.27, -0.07, 0.010
+19590108, 0.96, -0.22, 0.75, 0.010
+19590109, 0.69, 0.12, 0.15, 0.010
+19590112, 0.09, 0.35, -0.10, 0.010
+19590113, -0.49, 0.40, 0.38, 0.010
+19590114, 0.28, 0.12, 0.40, 0.010
+19590115, 0.37, 0.01, 0.66, 0.010
+19590116, 0.01, 0.09, 0.23, 0.010
+19590119, -0.17, 0.56, -0.01, 0.010
+19590120, 0.12, 0.39, -0.30, 0.010
+19590121, 0.55, 0.09, -0.09, 0.010
+19590122, -0.20, -0.18, -0.21, 0.010
+19590123, 0.10, 0.13, 0.35, 0.010
+19590126, -0.47, 0.42, -0.57, 0.010
+19590127, 0.01, 0.03, -0.09, 0.010
+19590128, -1.10, -0.06, -0.19, 0.010
+19590129, 0.08, 0.40, 0.14, 0.010
+19590130, 0.43, 0.21, 0.42, 0.010
+19590202, -0.31, 0.18, -0.28, 0.010
+19590203, 0.14, -0.07, 0.41, 0.010
+19590204, -0.30, -0.11, 0.07, 0.010
+19590205, -0.38, -0.08, 0.15, 0.010
+19590206, -0.68, 0.10, 0.19, 0.010
+19590209, -1.36, 0.11, -0.30, 0.010
+19590210, 1.40, -0.03, 0.27, 0.010
+19590211, 0.07, 0.24, 0.36, 0.010
+19590212, -0.56, 0.41, 0.26, 0.010
+19590213, 0.79, 0.10, 0.02, 0.010
+19590216, 0.22, 0.25, 0.31, 0.010
+19590217, -0.30, 0.24, 0.26, 0.010
+19590218, 0.46, 0.16, 0.11, 0.010
+19590219, 0.91, -0.14, 0.11, 0.010
+19590220, 0.86, -0.35, -0.06, 0.010
+19590224, -0.03, 0.21, 0.13, 0.010
+19590225, -0.32, -0.03, -0.24, 0.010
+19590226, 0.25, 0.30, -0.54, 0.010
+19590227, 0.14, 0.00, -0.19, 0.010
+19590302, 0.52, -0.03, -0.47, 0.010
+19590303, 0.88, -0.51, 0.15, 0.010
+19590304, 0.13, -0.10, 0.21, 0.010
+19590305, 0.20, 0.10, 0.14, 0.010
+19590306, -0.35, 0.37, -0.38, 0.010
+19590309, -0.04, 0.34, -0.03, 0.010
+19590310, 0.32, 0.09, 0.18, 0.010
+19590311, 0.19, 0.11, 0.23, 0.010
+19590312, 0.44, -0.11, 0.51, 0.010
+19590313, 0.10, 0.23, 0.27, 0.010
+19590316, -1.07, 0.13, -0.26, 0.010
+19590317, 0.83, 0.33, -0.06, 0.010
+19590318, -0.14, 0.44, -0.08, 0.010
+19590319, -0.13, 0.07, 0.11, 0.010
+19590320, 0.09, 0.11, -0.42, 0.010
+19590323, -0.92, -0.11, -0.31, 0.010
+19590324, 0.18, -0.09, 0.21, 0.010
+19590325, -0.14, 0.39, -0.31, 0.010
+19590326, -0.13, 0.01, 0.00, 0.010
+19590330, -0.61, 0.01, 0.01, 0.010
+19590331, -0.04, -0.36, -0.09, 0.010
+19590401, 0.36, -0.37, -0.05, 0.009
+19590402, 0.57, -0.21, 0.81, 0.009
+19590403, 0.77, -0.06, -0.22, 0.009
+19590406, 0.20, -0.13, -0.15, 0.009
+19590407, -0.13, 0.03, 0.18, 0.009
+19590408, -0.49, 0.08, 0.16, 0.009
+19590409, -0.03, 0.01, 0.21, 0.009
+19590410, 0.15, 0.04, 0.38, 0.009
+19590413, 0.33, -0.13, -0.11, 0.009
+19590414, 0.54, -0.24, 0.11, 0.009
+19590415, 0.40, 0.11, -0.01, 0.009
+19590416, 0.65, -0.54, -0.02, 0.009
+19590417, 0.80, -0.48, -0.42, 0.009
+19590420, 0.35, -0.44, -0.23, 0.009
+19590421, -0.11, 0.21, -0.61, 0.009
+19590422, -0.62, 0.44, -0.38, 0.009
+19590423, -0.24, 0.29, -0.10, 0.009
+19590424, 0.55, 0.50, -0.58, 0.009
+19590427, 0.36, -0.14, -0.16, 0.009
+19590428, -0.33, 0.00, -0.21, 0.009
+19590429, -0.30, 0.42, 0.07, 0.009
+19590430, -0.19, 0.00, 0.15, 0.009
+19590501, 0.13, 0.30, 0.19, 0.010
+19590504, 0.03, -0.01, 0.00, 0.010
+19590505, 0.18, -0.05, -0.43, 0.010
+19590506, -0.15, 0.31, -0.61, 0.010
+19590507, -1.26, -0.25, -0.30, 0.010
+19590508, 0.80, 0.29, 0.53, 0.010
+19590511, 0.42, -0.35, 0.26, 0.010
+19590512, 0.11, -0.31, 0.31, 0.010
+19590513, 0.52, -0.36, 0.46, 0.010
+19590514, 0.66, -0.36, 0.40, 0.010
+19590515, -0.36, 0.32, -0.13, 0.010
+19590518, -0.07, -0.44, 0.32, 0.010
+19590519, 0.23, -0.19, -0.12, 0.010
+19590520, -0.33, 0.14, -0.10, 0.010
+19590521, 0.07, -0.19, 0.68, 0.010
+19590522, 0.35, -0.18, 0.39, 0.010
+19590525, -0.45, 0.03, -0.20, 0.010
+19590526, -0.08, -0.27, 0.05, 0.010
+19590527, 0.21, 0.01, 0.10, 0.010
+19590528, 0.30, -0.09, -0.16, 0.010
+19590529, 0.44, -0.47, 0.25, 0.010
+19590601, -0.12, 0.10, -0.44, 0.011
+19590602, -0.66, -0.13, 0.16, 0.011
+19590603, 0.00, 0.37, 0.04, 0.011
+19590604, -1.09, 0.20, -0.14, 0.011
+19590605, -0.13, -0.09, 0.29, 0.011
+19590608, -1.39, -0.15, 0.11, 0.011
+19590609, -0.64, -0.06, 0.08, 0.011
+19590610, 1.47, 0.21, 0.59, 0.011
+19590611, 0.17, 0.11, 0.30, 0.011
+19590612, 0.02, -0.06, 0.35, 0.011
+19590615, -0.49, 0.00, 0.46, 0.011
+19590616, -0.67, 0.25, -0.17, 0.011
+19590617, 0.93, -0.29, 0.12, 0.011
+19590618, -0.05, 0.47, 0.31, 0.011
+19590619, 0.18, 0.06, -0.49, 0.011
+19590622, -0.02, -0.14, 0.32, 0.011
+19590623, -0.07, -0.03, 0.07, 0.011
+19590624, 0.46, -0.27, 0.50, 0.011
+19590625, 0.54, -0.03, -0.60, 0.011
+19590626, 0.40, 0.13, -0.63, 0.011
+19590629, 0.68, 0.07, -0.08, 0.011
+19590630, 0.23, -0.02, 0.20, 0.011
+19590701, 0.79, -0.15, 0.19, 0.011
+19590702, 0.48, -0.15, 0.25, 0.011
+19590706, 0.55, -0.29, 0.04, 0.011
+19590707, 0.49, -0.63, -0.06, 0.011
+19590708, 0.12, 0.07, 0.26, 0.011
+19590709, -0.23, 0.07, 0.29, 0.011
+19590710, 0.04, 0.11, 0.45, 0.011
+19590713, -0.90, 0.52, -0.25, 0.011
+19590714, 0.29, 0.19, -0.16, 0.011
+19590715, 0.12, 0.29, -0.18, 0.011
+19590716, -0.37, 0.11, -0.21, 0.011
+19590717, -0.29, 0.40, -0.35, 0.011
+19590720, -0.49, 0.17, -0.05, 0.011
+19590721, 0.83, -0.12, -0.01, 0.011
+19590722, 0.35, 0.23, 0.07, 0.011
+19590723, 0.11, -0.09, 0.11, 0.011
+19590724, 0.01, 0.24, -0.15, 0.011
+19590727, 0.51, -0.32, -0.04, 0.011
+19590728, 0.51, -0.43, -0.06, 0.011
+19590729, 0.43, -0.50, 0.07, 0.011
+19590730, -0.24, 0.01, 0.02, 0.011
+19590731, 0.02, -0.08, 0.09, 0.011
+19590803, 0.29, -0.05, 0.13, 0.009
+19590804, -0.20, 0.00, -0.14, 0.009
+19590805, -0.42, -0.19, 0.17, 0.009
+19590806, -0.15, -0.32, 0.49, 0.009
+19590807, -0.62, 0.18, 0.25, 0.009
+19590810, -1.90, -0.37, -0.22, 0.009
+19590811, 1.20, 0.02, -0.28, 0.009
+19590812, -0.17, 0.42, -0.07, 0.009
+19590813, -0.21, 0.10, 0.16, 0.009
+19590814, 0.24, 0.03, -0.01, 0.009
+19590817, -0.21, 0.14, -0.02, 0.009
+19590818, -0.90, -0.11, 0.03, 0.009
+19590819, -0.58, -0.18, -0.25, 0.009
+19590820, 1.42, -0.20, 0.11, 0.009
+19590821, -0.07, 0.23, -0.17, 0.009
+19590824, -0.41, 0.15, -0.13, 0.009
+19590825, 0.24, 0.02, -0.14, 0.009
+19590826, 0.15, -0.04, 0.37, 0.009
+19590827, 0.93, -0.59, -0.21, 0.009
+19590828, -0.19, 0.22, 0.30, 0.009
+19590831, 0.20, -0.31, 0.17, 0.009
+19590901, -1.20, 0.13, 0.07, 0.015
+19590902, 0.04, -0.24, 0.21, 0.015
+19590903, -1.16, -0.01, -0.15, 0.015
+19590904, 0.56, -0.24, -0.35, 0.015
+19590908, -1.40, -0.18, 0.06, 0.015
+19590909, -0.79, -0.19, 0.02, 0.015
+19590910, -0.57, 0.33, -0.14, 0.015
+19590911, 0.75, 0.20, 0.38, 0.015
+19590914, -0.69, 0.22, -0.65, 0.015
+19590915, -0.64, -0.27, 0.33, 0.015
+19590916, 0.05, 0.15, -0.12, 0.015
+19590917, -0.49, -0.03, -0.19, 0.015
+19590918, -0.70, -0.14, -0.11, 0.015
+19590921, -1.52, -0.38, 0.38, 0.015
+19590922, -0.27, -0.02, 0.11, 0.015
+19590923, 1.37, 0.21, 0.01, 0.015
+19590924, 1.64, 0.17, 0.20, 0.015
+19590925, -0.03, 0.09, -0.44, 0.015
+19590928, 0.66, -0.02, 0.05, 0.015
+19590929, 0.57, -0.35, 0.42, 0.015
+19590930, -1.02, 0.44, 0.49, 0.015
+19591001, 0.14, 0.20, 0.32, 0.014
+19591002, 0.41, 0.09, -0.64, 0.014
+19591005, -0.13, 0.06, -0.39, 0.014
+19591006, -0.06, 0.13, 0.05, 0.014
+19591007, -0.19, 0.34, 0.01, 0.014
+19591008, -0.18, 0.44, -0.10, 0.014
+19591009, 0.35, -0.06, -0.08, 0.014
+19591012, 0.55, 0.01, -0.17, 0.014
+19591013, -0.30, -0.01, -0.13, 0.014
+19591014, -0.74, -0.06, 0.41, 0.014
+19591015, 0.27, -0.19, 0.23, 0.014
+19591016, 0.81, 0.14, 0.04, 0.014
+19591019, -0.55, 0.29, -0.13, 0.014
+19591020, -0.61, 0.00, 0.06, 0.014
+19591021, -0.18, 0.22, -0.08, 0.014
+19591022, -0.93, 0.42, -0.25, 0.014
+19591023, 1.07, -0.33, -0.11, 0.014
+19591026, 0.63, -0.13, -0.15, 0.014
+19591027, 0.79, -0.79, -0.54, 0.014
+19591028, 0.05, -0.05, -0.37, 0.014
+19591029, -0.10, 0.27, -0.01, 0.014
+19591030, 0.18, 0.28, -0.11, 0.014
+19591102, -0.15, 0.25, -0.30, 0.013
+19591104, -0.15, 0.02, 0.03, 0.013
+19591105, 0.10, -0.05, -0.35, 0.013
+19591106, 0.54, -0.23, 0.48, 0.013
+19591109, -0.15, 0.05, -0.04, 0.013
+19591110, 0.03, 0.45, -0.25, 0.013
+19591111, 0.06, 0.37, -0.25, 0.013
+19591112, -0.50, 0.30, -0.23, 0.013
+19591113, -0.55, 0.42, -0.16, 0.013
+19591116, -1.03, 0.54, -0.47, 0.013
+19591117, 0.25, -0.21, -0.48, 0.013
+19591118, 1.03, -0.50, 0.29, 0.013
+19591119, -0.09, -0.03, 0.03, 0.013
+19591120, 0.07, 0.23, -0.18, 0.013
+19591123, 0.17, 0.21, -1.01, 0.013
+19591124, 0.44, -0.07, -0.42, 0.013
+19591125, 0.16, -0.18, -0.13, 0.013
+19591127, 0.47, -0.18, 0.28, 0.013
+19591130, 0.93, -0.17, -0.05, 0.013
+19591201, 0.68, -0.26, -0.34, 0.015
+19591202, -0.21, 0.03, 0.05, 0.015
+19591203, 0.27, 0.17, 0.18, 0.015
+19591204, 0.22, 0.34, -0.10, 0.015
+19591207, 0.28, 0.07, 0.08, 0.015
+19591208, 0.54, -0.32, 0.18, 0.015
+19591209, -0.64, -0.05, 0.47, 0.015
+19591210, 0.09, -0.18, -0.02, 0.015
+19591211, -0.18, 0.47, -0.15, 0.015
+19591214, 0.25, -0.32, 0.34, 0.015
+19591215, -0.29, -0.15, 0.22, 0.015
+19591216, 0.13, 0.01, -0.05, 0.015
+19591217, -0.14, 0.34, -0.01, 0.015
+19591218, 0.45, -0.19, -0.07, 0.015
+19591221, 0.09, 0.07, -0.16, 0.015
+19591222, -0.17, 0.36, 0.03, 0.015
+19591223, -0.27, 0.23, -0.37, 0.015
+19591224, 0.09, 0.02, 0.17, 0.015
+19591228, -0.13, -0.35, -0.29, 0.015
+19591229, 0.40, -0.42, -0.19, 0.015
+19591230, 0.79, -0.36, 0.05, 0.015
+19591231, 0.19, -0.07, -0.05, 0.015
+19600104, -0.03, 0.60, 0.70, 0.017
+19600105, 0.78, -0.40, 0.54, 0.017
+19600106, -0.47, 0.13, 0.36, 0.017
+19600107, -0.65, 0.37, 0.08, 0.017
+19600108, -0.33, 0.18, 0.10, 0.017
+19600111, -1.15, 0.48, 0.32, 0.017
+19600112, -0.58, 0.01, 0.45, 0.017
+19600113, -0.53, 0.38, 0.04, 0.017
+19600114, 0.56, -0.20, 0.13, 0.017
+19600115, 0.01, 0.38, 0.15, 0.017
+19600118, -0.84, 0.22, -0.23, 0.017
+19600119, -1.00, 0.01, 0.25, 0.017
+19600120, -0.30, 0.18, 0.07, 0.017
+19600121, 0.22, 0.03, 0.22, 0.017
+19600122, 0.28, 0.04, -0.25, 0.017
+19600125, -1.05, -0.14, -0.10, 0.017
+19600126, 0.15, -0.18, 0.16, 0.017
+19600127, -0.28, -0.03, 0.13, 0.017
+19600128, -1.00, 0.42, -0.18, 0.017
+19600129, -0.97, -0.28, -0.07, 0.017
+19600201, 0.50, -0.50, -0.22, 0.014
+19600202, 1.54, -0.17, -0.43, 0.014
+19600203, -0.83, 0.31, -0.02, 0.014
+19600204, -0.08, -0.08, 0.19, 0.014
+19600205, -0.49, -0.30, -0.02, 0.014
+19600208, -1.01, 0.07, -0.05, 0.014
+19600209, 0.89, -0.10, -0.04, 0.014
+19600210, -0.57, 0.36, 0.09, 0.014
+19600211, -0.51, 0.25, 0.40, 0.014
+19600212, 0.45, -0.37, 0.17, 0.014
+19600215, -0.50, 0.24, 0.10, 0.014
+19600216, -0.88, -0.24, -0.23, 0.014
+19600217, 0.63, 0.04, -0.21, 0.014
+19600218, 1.37, 0.08, -0.49, 0.014
+19600219, 0.72, -0.09, 0.14, 0.014
+19600223, -0.50, 0.43, -0.21, 0.014
+19600224, -0.29, 0.27, -0.19, 0.014
+19600225, 0.45, 0.03, 0.09, 0.014
+19600226, 0.42, 0.20, -0.54, 0.014
+19600229, -0.08, 0.08, -0.51, 0.014
+19600301, -0.15, 0.12, -0.21, 0.015
+19600302, -0.71, -0.05, -0.14, 0.015
+19600303, -1.54, -0.06, -0.32, 0.015
+19600304, -0.39, -0.48, -0.59, 0.015
+19600307, -1.10, 0.17, -0.14, 0.015
+19600308, -0.94, -0.26, -0.15, 0.015
+19600309, 1.10, -0.16, 0.34, 0.015
+19600310, -0.34, 0.52, 0.31, 0.015
+19600311, 0.73, 0.10, -0.05, 0.015
+19600314, 0.18, 0.04, -0.12, 0.015
+19600315, 0.78, -0.30, 0.06, 0.015
+19600316, 0.52, 0.11, 0.04, 0.015
+19600317, -0.18, 0.21, -0.28, 0.015
+19600318, 0.06, 0.09, -0.25, 0.015
+19600321, 0.09, -0.30, -0.22, 0.015
+19600322, 0.36, -0.44, -0.04, 0.015
+19600323, 0.76, -0.32, -0.26, 0.015
+19600324, 0.41, -0.12, 0.42, 0.015
+19600325, 0.00, 0.12, -0.29, 0.015
+19600328, -0.24, -0.01, 0.00, 0.015
+19600329, -0.20, 0.25, -0.40, 0.015
+19600330, -0.16, 0.31, -0.41, 0.015
+19600331, -0.63, -0.02, -0.22, 0.015
+19600401, 0.20, -0.10, -0.17, 0.010
+19600404, 0.18, -0.13, -0.33, 0.010
+19600405, 0.54, -0.39, -0.20, 0.010
+19600406, 1.01, -0.41, -0.07, 0.010
+19600407, 0.07, 0.19, -0.05, 0.010
+19600408, -0.21, 0.09, 0.26, 0.010
+19600411, -0.39, -0.04, 0.10, 0.010
+19600412, 0.22, -0.15, -0.10, 0.010
+19600413, -0.03, 0.22, -0.44, 0.010
+19600414, 0.26, 0.09, -0.25, 0.010
+19600418, 0.23, -0.17, -0.30, 0.010
+19600419, -0.74, 0.06, 0.04, 0.010
+19600420, -1.17, 0.49, 0.15, 0.010
+19600421, 0.34, -0.03, -0.22, 0.010
+19600422, -0.27, 0.34, -0.10, 0.010
+19600425, -1.02, 0.17, -0.09, 0.010
+19600426, 0.36, -0.03, -0.44, 0.010
+19600427, -0.03, -0.07, -0.03, 0.010
+19600428, -0.86, -0.08, 0.03, 0.010
+19600429, -0.35, 0.23, -0.09, 0.010
+19600502, -0.51, -0.18, -0.40, 0.013
+19600503, 1.36, -0.53, -0.14, 0.013
+19600504, 0.41, -0.07, -0.06, 0.013
+19600505, -0.33, 0.15, -0.24, 0.013
+19600506, -0.12, 0.37, -0.15, 0.013
+19600509, 0.11, 0.17, -0.57, 0.013
+19600510, -0.58, 0.23, -0.48, 0.013
+19600511, 0.23, -0.33, 0.03, 0.013
+19600512, 0.54, 0.39, -0.01, 0.013
+19600513, 0.89, 0.15, 0.21, 0.013
+19600516, -0.08, 0.27, -0.38, 0.013
+19600517, 0.37, -0.17, 0.01, 0.013
+19600518, 0.02, -0.43, -0.11, 0.013
+19600519, 0.43, -0.06, 0.11, 0.013
+19600520, 0.20, -0.15, 0.69, 0.013
+19600523, -0.08, 0.02, 0.25, 0.013
+19600524, -0.06, 0.50, -0.46, 0.013
+19600525, -0.04, 0.55, -0.57, 0.013
+19600526, 0.08, 0.13, -0.61, 0.013
+19600527, 0.07, 0.09, 0.12, 0.013
+19600531, 0.16, 0.10, -0.91, 0.013
+19600601, 0.16, -0.19, -0.43, 0.011
+19600602, 0.36, -0.65, 0.47, 0.011
+19600603, 0.19, -0.25, 0.31, 0.011
+19600606, 1.12, -0.77, 0.63, 0.011
+19600607, 0.96, -0.29, -0.09, 0.011
+19600608, 0.75, 0.13, 0.14, 0.011
+19600609, 0.11, -0.09, -0.07, 0.011
+19600610, 0.06, -0.01, -0.08, 0.011
+19600613, 0.06, 0.03, 0.01, 0.011
+19600614, -0.01, 0.03, -0.56, 0.011
+19600615, -0.54, 0.48, -0.11, 0.011
+19600616, -0.10, 0.32, -0.32, 0.011
+19600617, -0.10, 0.20, -0.19, 0.011
+19600620, -0.38, 0.38, -0.14, 0.011
+19600621, -0.10, -0.33, 0.32, 0.011
+19600622, 0.21, -0.16, 0.72, 0.011
+19600623, 0.46, -0.21, 0.12, 0.011
+19600624, 0.15, -0.03, 0.02, 0.011
+19600627, -0.56, 0.52, -0.37, 0.011
+19600628, -0.70, 0.28, -0.38, 0.011
+19600629, 0.04, 0.10, -0.35, 0.011
+19600630, -0.06, 0.20, -0.06, 0.011
+19600701, 0.24, 0.27, -0.13, 0.007
+19600705, -0.11, -0.14, 0.03, 0.007
+19600706, -0.16, -0.37, 0.37, 0.007
+19600707, 0.53, 0.02, 0.01, 0.007
+19600708, 0.26, -0.12, 0.23, 0.007
+19600711, -0.89, 0.21, 0.11, 0.007
+19600712, -1.07, -0.07, 0.71, 0.007
+19600713, -0.26, 0.06, 0.44, 0.007
+19600714, 0.01, -0.06, -0.33, 0.007
+19600715, -0.05, 0.10, 0.27, 0.007
+19600718, -0.62, -0.24, 0.48, 0.007
+19600719, 0.02, -0.05, 0.12, 0.007
+19600720, -0.15, 0.43, -0.22, 0.007
+19600721, -0.87, 0.31, 0.09, 0.007
+19600722, -0.69, -0.23, 0.37, 0.007
+19600725, -1.11, -0.12, -0.18, 0.007
+19600726, 0.70, -0.16, -0.20, 0.007
+19600727, -0.66, -0.19, 0.15, 0.007
+19600728, 0.81, -0.07, 0.22, 0.007
+19600729, 1.74, -0.09, -0.43, 0.007
+19600801, -0.05, -0.04, -0.06, 0.007
+19600802, -0.82, 0.04, 0.18, 0.007
+19600803, -0.53, 0.29, -0.11, 0.007
+19600804, 0.31, -0.33, -0.05, 0.007
+19600805, 1.04, -0.11, 0.05, 0.007
+19600808, 0.19, 0.02, 0.16, 0.007
+19600809, 0.56, -0.42, 0.53, 0.007
+19600810, 0.42, 0.14, 0.10, 0.007
+19600811, 0.41, 0.29, -0.15, 0.007
+19600812, 0.68, 0.16, -0.07, 0.007
+19600815, -0.02, -0.06, 0.09, 0.007
+19600816, 0.24, 0.29, -0.23, 0.007
+19600817, 0.30, 0.14, -0.24, 0.007
+19600818, -0.01, 0.00, -0.08, 0.007
+19600819, 0.32, -0.28, 0.11, 0.007
+19600822, 0.28, -0.14, 0.01, 0.007
+19600823, 0.91, -0.41, 0.27, 0.007
+19600824, 0.50, -0.16, 0.03, 0.007
+19600825, -0.43, 0.27, 0.20, 0.007
+19600826, -0.29, 0.41, -0.10, 0.007
+19600829, -0.23, 0.06, -0.10, 0.007
+19600830, -1.02, 0.65, -0.54, 0.007
+19600831, 0.22, 0.04, -0.14, 0.007
+19600901, 0.22, 0.13, -0.23, 0.008
+19600902, -0.10, 0.09, 0.11, 0.008
+19600906, -0.90, -0.11, 0.09, 0.008
+19600907, -1.22, 0.08, 0.30, 0.008
+19600908, -0.04, 0.09, 0.17, 0.008
+19600909, 0.60, -0.13, 0.04, 0.008
+19600912, -0.65, -0.03, -0.07, 0.008
+19600913, 0.16, -0.28, 0.19, 0.008
+19600914, -0.75, 0.07, -0.18, 0.008
+19600915, -0.40, -0.21, 0.07, 0.008
+19600916, -0.18, -0.06, 0.39, 0.008
+19600919, -2.29, -0.21, 0.66, 0.008
+19600920, 0.28, -0.14, -0.23, 0.008
+19600921, 1.05, 0.02, -0.32, 0.008
+19600922, -0.38, 0.29, -0.02, 0.008
+19600923, -0.91, 0.10, -0.03, 0.008
+19600926, -1.48, -0.60, 0.74, 0.008
+19600927, -0.29, 0.04, -0.05, 0.008
+19600928, -0.87, -0.34, 0.23, 0.008
+19600929, 0.28, -0.15, 0.09, 0.008
+19600930, 1.78, 0.21, -0.31, 0.008
+19601003, -0.27, -0.18, 0.12, 0.010
+19601004, -0.75, -0.25, 0.25, 0.010
+19601005, 0.69, -0.59, 0.38, 0.010
+19601006, 0.59, 0.20, -0.09, 0.010
+19601007, 0.55, -0.27, -0.12, 0.010
+19601010, 0.13, -0.08, -0.17, 0.010
+19601011, 0.10, -0.27, 0.24, 0.010
+19601012, -0.13, -0.20, 0.46, 0.010
+19601013, 0.83, -0.40, 0.04, 0.010
+19601014, 0.53, -0.02, -0.03, 0.010
+19601017, -0.36, 0.13, 0.26, 0.010
+19601018, -0.52, 0.15, 0.05, 0.010
+19601019, -0.21, -0.09, 0.14, 0.010
+19601020, -0.80, -0.03, 0.29, 0.010
+19601021, -1.00, -0.29, 0.60, 0.010
+19601024, -1.29, -0.81, 0.47, 0.010
+19601025, -0.75, -0.25, 0.30, 0.010
+19601026, 1.43, -0.16, -0.53, 0.010
+19601027, 1.12, -0.29, -0.21, 0.010
+19601028, -0.46, 0.10, 0.12, 0.010
+19601031, -0.08, -0.50, 0.13, 0.010
+19601101, 0.99, -0.11, -0.59, 0.007
+19601102, 0.52, -0.21, 0.36, 0.007
+19601103, 0.42, -0.17, 0.46, 0.007
+19601104, 0.85, -0.18, -0.13, 0.007
+19601107, 0.40, -0.29, -0.13, 0.007
+19601109, 0.42, -0.42, -0.13, 0.007
+19601110, 1.42, 0.60, -0.75, 0.007
+19601111, -0.44, 0.78, -0.06, 0.007
+19601114, -0.39, 0.09, 0.03, 0.007
+19601115, 0.49, -0.24, -0.06, 0.007
+19601116, -0.17, 0.02, -0.23, 0.007
+19601117, -0.26, -0.07, 0.06, 0.007
+19601118, 0.52, -0.09, -0.34, 0.007
+19601121, 0.28, -0.23, -0.08, 0.007
+19601122, -0.34, 0.37, -0.57, 0.007
+19601123, 0.23, 0.18, -0.10, 0.007
+19601125, 0.66, 0.02, -0.50, 0.007
+19601128, -0.12, 0.30, -0.01, 0.007
+19601129, -0.33, -0.06, 0.14, 0.007
+19601130, -0.51, 0.06, 0.21, 0.007
+19601201, -0.39, -0.01, -0.02, 0.007
+19601202, 0.16, 0.50, -0.29, 0.007
+19601205, -0.19, -0.06, 0.06, 0.007
+19601206, 0.46, -0.27, -0.04, 0.007
+19601207, 0.94, -0.11, -0.16, 0.007
+19601208, 0.22, -0.04, 0.00, 0.007
+19601209, 0.89, -0.02, -0.15, 0.007
+19601212, 0.38, 0.03, -0.27, 0.007
+19601213, 0.13, -0.05, -0.29, 0.007
+19601214, -0.08, 0.23, -0.34, 0.007
+19601215, -0.20, 0.32, 0.22, 0.007
+19601216, 0.91, -0.60, -0.04, 0.007
+19601219, -0.13, 0.14, -0.42, 0.007
+19601220, -0.07, 0.10, -0.34, 0.007
+19601221, 0.72, -0.69, 0.05, 0.007
+19601222, -0.26, -0.14, 0.88, 0.007
+19601223, 0.06, 0.17, -0.07, 0.007
+19601227, 0.14, -0.42, 0.11, 0.007
+19601228, 0.40, -0.30, 0.12, 0.007
+19601229, 0.48, -0.26, 0.22, 0.007
+19601230, 0.06, -0.03, 0.02, 0.007
+19610103, -0.88, 0.45, 0.74, 0.009
+19610104, 1.31, -0.17, 0.41, 0.009
+19610105, 0.39, 0.49, 0.77, 0.009
+19610106, -0.11, 0.27, 0.13, 0.009
+19610109, 0.59, 0.35, 0.70, 0.009
+19610110, 0.25, 0.14, 0.06, 0.009
+19610111, 0.29, 0.03, 0.13, 0.009
+19610112, 0.29, 0.20, 0.26, 0.009
+19610113, 0.42, -0.17, -0.04, 0.009
+19610116, -0.04, 0.13, -0.08, 0.009
+19610117, -0.36, 0.18, 0.28, 0.009
+19610118, 0.65, 0.29, 0.30, 0.009
+19610119, 0.16, -0.16, 0.38, 0.009
+19610120, 0.36, 0.16, -0.11, 0.009
+19610123, 0.51, -0.05, 0.18, 0.009
+19610124, 0.23, -0.32, -0.36, 0.009
+19610125, 0.07, -0.26, 0.00, 0.009
+19610126, 0.11, -0.26, -0.31, 0.009
+19610127, 0.93, -0.20, 0.15, 0.009
+19610130, 1.17, -0.40, -0.36, 0.009
+19610131, -0.31, -0.09, 0.17, 0.009
+19610201, 0.31, 0.09, 0.12, 0.008
+19610202, 0.68, 0.28, -0.11, 0.008
+19610203, -0.16, 0.25, 0.11, 0.008
+19610206, -0.60, 0.40, 0.02, 0.008
+19610207, -0.03, 0.40, 0.02, 0.008
+19610208, 0.95, 0.22, 0.21, 0.008
+19610209, -0.22, 0.29, 0.26, 0.008
+19610210, -0.79, 0.25, -0.19, 0.008
+19610213, -0.54, 0.49, -0.08, 0.008
+19610214, 0.57, 0.39, -0.20, 0.008
+19610215, 0.75, -0.18, 0.67, 0.008
+19610216, 0.61, -0.20, 0.20, 0.008
+19610217, -0.25, 0.47, -0.08, 0.008
+19610220, 0.43, 0.06, -0.11, 0.008
+19610221, 0.10, 0.36, -0.35, 0.008
+19610223, 0.42, 0.09, -0.19, 0.008
+19610224, 0.36, 0.06, -0.20, 0.008
+19610227, 0.77, 0.14, -0.22, 0.008
+19610228, 0.19, -0.03, -0.52, 0.008
+19610301, -0.01, 0.01, -0.28, 0.009
+19610302, 0.65, 0.00, -0.08, 0.009
+19610303, 0.14, 0.16, -0.19, 0.009
+19610306, 0.16, 0.08, -0.28, 0.009
+19610307, -0.72, 0.40, 0.05, 0.009
+19610308, 0.06, 0.50, -0.77, 0.009
+19610309, 0.07, 0.38, 0.72, 0.009
+19610310, 0.07, 0.08, 0.00, 0.009
+19610313, 0.25, 0.01, -0.02, 0.009
+19610314, -0.40, 0.30, -0.15, 0.009
+19610315, 0.37, -0.05, 0.06, 0.009
+19610316, 0.99, -0.12, -0.02, 0.009
+19610317, 0.58, 0.05, -0.37, 0.009
+19610320, 0.42, 0.12, -0.02, 0.009
+19610321, -0.15, 0.19, 0.57, 0.009
+19610322, -0.10, 0.24, 0.50, 0.009
+19610323, -0.32, -0.29, -0.10, 0.009
+19610324, -0.13, -0.10, 0.04, 0.009
+19610327, -0.07, 0.49, 0.10, 0.009
+19610328, 0.06, 0.59, 0.10, 0.009
+19610329, 0.77, -0.10, -0.55, 0.009
+19610330, 0.23, 0.17, -0.19, 0.009
+19610403, 0.78, 0.15, -0.11, 0.009
+19610404, 0.02, -0.08, -0.31, 0.009
+19610405, -0.31, -0.43, 0.51, 0.009
+19610406, 0.27, -0.35, 0.27, 0.009
+19610407, 0.51, 0.04, 0.05, 0.009
+19610410, 0.82, -0.12, -0.01, 0.009
+19610411, 0.04, -0.28, -0.16, 0.009
+19610412, -0.46, 0.04, 0.12, 0.009
+19610413, 0.01, 0.08, -0.09, 0.009
+19610414, 0.22, 0.30, 0.06, 0.009
+19610417, 0.47, 0.20, 0.17, 0.009
+19610418, -0.74, 0.34, 0.02, 0.009
+19610419, -0.51, 0.02, 0.36, 0.009
+19610420, -0.02, 0.35, -0.05, 0.009
+19610421, -0.02, 0.21, 0.31, 0.009
+19610424, -2.21, -0.40, 0.14, 0.009
+19610425, 1.46, -0.10, -0.04, 0.009
+19610426, 0.43, 0.23, 0.37, 0.009
+19610427, -0.12, 0.18, 0.30, 0.009
+19610428, -0.30, -0.31, 0.18, 0.009
+19610501, -0.21, -0.04, 0.08, 0.008
+19610502, 0.76, -0.09, -0.13, 0.008
+19610503, 0.80, -0.02, 0.26, 0.008
+19610504, 0.39, 0.08, 0.24, 0.008
+19610505, 0.15, 0.31, -0.30, 0.008
+19610508, -0.06, 0.70, -0.17, 0.008
+19610509, 0.11, 0.23, -0.04, 0.008
+19610510, -0.03, 0.05, 0.07, 0.008
+19610511, 0.03, 0.40, -0.46, 0.008
+19610512, 0.12, 0.08, 0.15, 0.008
+19610515, 0.55, -0.04, 0.39, 0.008
+19610516, 0.44, -0.09, 0.36, 0.008
+19610517, 0.33, -0.40, 0.52, 0.008
+19610518, -0.63, -0.44, -0.14, 0.008
+19610519, 0.46, 0.07, -0.18, 0.008
+19610522, -0.65, 0.21, 0.28, 0.008
+19610523, -0.17, -0.01, 0.06, 0.008
+19610524, -0.52, 0.36, 0.04, 0.008
+19610525, -0.30, 0.53, 0.16, 0.008
+19610526, 0.68, 0.20, -0.58, 0.008
+19610531, 0.12, -0.14, -0.22, 0.008
+19610601, -0.02, -0.44, -0.27, 0.009
+19610602, 0.20, -0.17, -0.37, 0.009
+19610605, 0.51, -0.45, 0.01, 0.009
+19610606, -0.26, -0.23, 0.02, 0.009
+19610607, -0.42, -0.63, 0.46, 0.009
+19610608, 0.07, -0.09, -0.34, 0.009
+19610609, 0.01, 0.51, -0.08, 0.009
+19610612, -0.70, 0.09, -0.13, 0.009
+19610613, -0.54, -0.08, 0.12, 0.009
+19610614, 0.22, -0.03, -0.15, 0.009
+19610615, -0.44, -0.09, -0.10, 0.009
+19610616, -0.79, -0.13, -0.31, 0.009
+19610619, -0.93, -0.40, 0.06, 0.009
+19610620, 0.84, -0.25, 0.15, 0.009
+19610621, 0.04, -0.06, 0.21, 0.009
+19610622, -0.41, -0.04, -0.03, 0.009
+19610623, 0.34, -0.19, -0.05, 0.009
+19610626, -1.07, 0.25, 0.14, 0.009
+19610627, -0.01, -0.17, -0.31, 0.009
+19610628, 0.21, 0.03, 0.43, 0.009
+19610629, -0.12, 0.02, 0.20, 0.009
+19610630, 0.17, 0.02, 0.15, 0.009
+19610703, 0.84, -0.36, -0.08, 0.009
+19610705, 0.62, 0.32, -0.31, 0.009
+19610706, 0.29, 0.30, 0.08, 0.009
+19610707, -0.07, 0.02, -0.25, 0.009
+19610710, -0.07, -0.03, 0.03, 0.009
+19610711, -0.12, -0.26, 0.40, 0.009
+19610712, -0.60, -0.42, 0.33, 0.009
+19610713, -0.68, 0.03, -0.09, 0.009
+19610714, 0.62, -0.16, -0.03, 0.009
+19610717, -0.78, 0.15, -0.17, 0.009
+19610718, -0.60, -0.29, -0.04, 0.009
+19610719, 0.38, -0.24, -0.33, 0.009
+19610720, 0.04, -0.23, 0.11, 0.009
+19610721, 0.20, -0.07, 0.19, 0.009
+19610724, -0.06, -0.14, -0.01, 0.009
+19610725, 0.57, -0.02, 0.01, 0.009
+19610726, 0.87, -0.10, 0.50, 0.009
+19610727, 1.10, -0.18, 0.05, 0.009
+19610728, 0.15, -0.12, -0.41, 0.009
+19610731, 0.09, -0.08, -0.06, 0.009
+19610801, 0.87, -0.24, -0.28, 0.006
+19610802, -0.55, 0.01, 0.46, 0.006
+19610803, 0.53, -0.10, -0.17, 0.006
+19610804, 0.61, -0.31, 0.39, 0.006
+19610807, 0.11, -0.24, -0.10, 0.006
+19610808, 0.20, -0.21, 0.06, 0.006
+19610809, 0.00, -0.03, -0.07, 0.006
+19610810, 0.35, -0.11, -0.15, 0.006
+19610811, 0.20, 0.09, -0.46, 0.006
+19610814, -0.53, -0.01, 0.14, 0.006
+19610815, -0.20, -0.03, -0.13, 0.006
+19610816, 0.33, -0.08, 0.01, 0.006
+19610817, 0.52, -0.03, 0.04, 0.006
+19610818, 0.27, 0.01, 0.27, 0.006
+19610821, 0.16, -0.41, -0.05, 0.006
+19610822, 0.01, -0.03, 0.11, 0.006
+19610823, -0.61, -0.19, 0.40, 0.006
+19610824, -0.55, 0.15, -0.19, 0.006
+19610825, 0.13, 0.11, -0.03, 0.006
+19610828, 0.04, 0.15, -0.25, 0.006
+19610829, -0.08, -0.02, 0.03, 0.006
+19610830, 0.43, -0.01, -0.20, 0.006
+19610831, 0.33, -0.16, -0.13, 0.006
+19610901, 0.21, 0.17, -0.23, 0.008
+19610905, -0.34, 0.15, -0.12, 0.008
+19610906, 0.66, -0.44, -0.12, 0.008
+19610907, -0.22, -0.45, 0.25, 0.008
+19610908, -0.68, -0.26, 0.10, 0.008
+19610911, -0.83, 0.01, 0.22, 0.008
+19610912, 0.97, -0.06, -0.16, 0.008
+19610913, 0.02, 0.01, -0.23, 0.008
+19610914, -0.75, 0.25, -0.01, 0.008
+19610915, 0.10, 0.07, -0.12, 0.008
+19610918, -0.65, -0.23, -0.19, 0.008
+19610919, -0.80, 0.07, 0.06, 0.008
+19610920, 0.46, -0.28, 0.43, 0.008
+19610921, 0.04, -0.02, 0.09, 0.008
+19610922, -0.42, -0.14, 0.37, 0.008
+19610925, -1.42, -0.08, 0.33, 0.008
+19610926, 0.02, -0.19, -0.12, 0.008
+19610927, 1.02, -0.06, -0.66, 0.008
+19610928, 0.20, 0.09, -0.24, 0.008
+19610929, 0.28, 0.30, -0.28, 0.008
+19611002, 0.03, -0.05, -0.33, 0.008
+19611003, -0.08, -0.25, 0.17, 0.008
+19611004, 0.66, 0.13, 0.45, 0.008
+19611005, 0.85, -0.16, -0.21, 0.008
+19611006, 0.27, -0.04, 0.11, 0.008
+19611009, 0.01, -0.22, 0.07, 0.008
+19611010, 0.26, -0.11, -0.23, 0.008
+19611011, -0.01, -0.02, 0.53, 0.008
+19611012, -0.01, 0.18, -0.10, 0.008
+19611013, -0.14, 0.15, -0.04, 0.008
+19611016, -0.26, 0.13, -0.25, 0.008
+19611017, 0.10, 0.06, -0.04, 0.008
+19611018, 0.47, -0.22, 0.25, 0.008
+19611019, 0.21, -0.40, -0.01, 0.008
+19611020, 0.02, -0.10, -0.06, 0.008
+19611023, -0.61, -0.08, 0.06, 0.008
+19611024, -0.15, -0.24, -0.22, 0.008
+19611025, 0.48, -0.22, -0.22, 0.008
+19611026, 0.21, -0.09, -0.12, 0.008
+19611027, -0.14, 0.09, 0.09, 0.008
+19611030, 0.10, -0.02, 0.20, 0.008
+19611031, 0.30, -0.14, -0.02, 0.008
+19611101, 0.21, 0.07, -0.04, 0.008
+19611102, 0.50, -0.09, -0.18, 0.008
+19611103, 0.57, 0.07, -0.03, 0.008
+19611106, 0.79, -0.10, -0.36, 0.008
+19611108, 1.17, 0.07, -0.09, 0.008
+19611109, -0.02, 0.18, 0.07, 0.008
+19611110, 0.44, 0.24, -0.50, 0.008
+19611113, 0.33, 0.29, -0.60, 0.008
+19611114, 0.54, -0.08, -0.41, 0.008
+19611115, -0.03, -0.10, -0.10, 0.008
+19611116, -0.02, 0.04, -0.21, 0.008
+19611117, 0.02, 0.12, 0.13, 0.008
+19611120, 0.16, -0.12, 0.07, 0.008
+19611121, 0.08, 0.14, -0.04, 0.008
+19611122, -0.07, 0.20, 0.26, 0.008
+19611124, 0.25, 0.35, 0.05, 0.008
+19611127, -0.02, 0.09, 0.06, 0.008
+19611128, 0.00, 0.10, 0.07, 0.008
+19611129, -0.06, -0.27, 0.26, 0.008
+19611130, -0.48, -0.06, 0.47, 0.008
+19611201, 0.60, 0.06, 0.04, 0.009
+19611204, 0.22, -0.09, 0.38, 0.009
+19611205, -0.12, -0.33, -0.01, 0.009
+19611206, 0.12, -0.25, 0.17, 0.009
+19611207, -0.38, 0.14, 0.16, 0.009
+19611208, 0.46, -0.27, -0.08, 0.009
+19611211, 0.37, -0.29, 0.24, 0.009
+19611212, 0.30, -0.29, -0.21, 0.009
+19611213, -0.16, 0.10, -0.16, 0.009
+19611214, -0.72, -0.19, 0.43, 0.009
+19611215, -0.03, 0.08, -0.02, 0.009
+19611218, -0.38, -0.02, 0.39, 0.009
+19611219, -0.65, 0.26, -0.02, 0.009
+19611220, -0.19, 0.38, -0.08, 0.009
+19611221, -0.34, 0.20, 0.31, 0.009
+19611222, 0.04, -0.02, 0.16, 0.009
+19611226, 0.06, -0.29, 0.53, 0.009
+19611227, 0.79, -0.23, -0.40, 0.009
+19611228, 0.01, -0.10, -0.34, 0.009
+19611229, -0.16, 0.21, 0.20, 0.009
+19620102, -0.80, 0.88, 0.57, 0.011
+19620103, 0.24, 0.22, 0.97, 0.011
+19620104, -0.83, 0.01, 0.66, 0.011
+19620105, -1.34, 0.08, 0.32, 0.011
+19620108, -0.75, 0.22, 0.32, 0.011
+19620109, 0.02, -0.12, 0.35, 0.011
+19620110, -0.24, 0.01, -0.21, 0.011
+19620111, 0.61, -0.05, 0.08, 0.011
+19620112, 0.33, 0.18, 0.24, 0.011
+19620115, -0.24, 0.08, 0.07, 0.011
+19620116, -0.53, 0.18, 0.05, 0.011
+19620117, -1.01, 0.25, 0.39, 0.011
+19620118, 0.05, 0.14, -0.05, 0.011
+19620119, 0.56, 0.41, 0.24, 0.011
+19620122, -0.02, -0.09, -0.16, 0.011
+19620123, -0.69, 0.13, 0.09, 0.011
+19620124, 0.20, -0.39, 0.08, 0.011
+19620125, -0.13, 0.18, 0.29, 0.011
+19620126, -0.29, -0.03, 0.51, 0.011
+19620129, -0.33, -0.23, 0.36, 0.011
+19620130, 0.33, -0.10, 0.24, 0.011
+19620131, 0.94, -0.14, -0.26, 0.011
+19620201, 0.55, -0.54, 0.22, 0.011
+19620202, 0.77, -0.25, 0.01, 0.011
+19620205, 0.16, 0.02, 0.07, 0.011
+19620206, 0.22, 0.04, -0.23, 0.011
+19620207, 0.70, -0.23, 0.18, 0.011
+19620208, 0.18, 0.08, -0.15, 0.011
+19620209, -0.10, 0.05, -0.13, 0.011
+19620212, -0.04, -0.04, 0.30, 0.011
+19620213, 0.02, 0.20, 0.02, 0.011
+19620214, -0.05, -0.02, 0.13, 0.011
+19620215, 0.42, -0.32, 0.28, 0.011
+19620216, -0.23, 0.26, 0.12, 0.011
+19620219, -0.24, -0.18, 0.38, 0.011
+19620220, 0.33, -0.24, 0.11, 0.011
+19620221, -0.49, 0.15, -0.13, 0.011
+19620223, -0.21, -0.07, 0.03, 0.011
+19620226, -0.50, -0.10, 0.03, 0.011
+19620227, 0.14, -0.12, -0.08, 0.011
+19620228, 0.16, 0.16, -0.32, 0.011
+19620301, 0.32, 0.00, -0.05, 0.009
+19620302, -0.07, 0.30, 0.00, 0.009
+19620305, -0.22, 0.12, -0.21, 0.009
+19620306, -0.33, 0.35, -0.22, 0.009
+19620307, -0.12, 0.00, -0.21, 0.009
+19620308, 0.73, -0.08, -0.26, 0.009
+19620309, 0.29, 0.19, -0.10, 0.009
+19620312, -0.02, 0.23, -0.29, 0.009
+19620313, 0.28, -0.30, 0.18, 0.009
+19620314, 0.40, -0.27, -0.10, 0.009
+19620315, 0.17, -0.10, -0.12, 0.009
+19620316, -0.08, 0.15, -0.05, 0.009
+19620319, -0.19, 0.02, 0.14, 0.009
+19620320, -0.26, -0.08, 0.08, 0.009
+19620321, -0.21, 0.03, 0.08, 0.009
+19620322, -0.14, 0.40, -0.37, 0.009
+19620323, 0.08, -0.07, -0.21, 0.009
+19620326, -0.76, 0.23, -0.16, 0.009
+19620327, -0.27, -0.12, 0.31, 0.009
+19620328, 0.49, -0.11, 0.15, 0.009
+19620329, -0.09, 0.13, -0.21, 0.009
+19620330, -0.66, -0.35, -0.01, 0.009
+19620402, -0.31, -0.01, -0.13, 0.011
+19620403, -0.83, -0.11, -0.01, 0.011
+19620404, -0.54, -0.04, 0.07, 0.011
+19620405, 0.61, -0.12, -0.05, 0.011
+19620406, -0.09, 0.23, 0.05, 0.011
+19620409, -0.79, -0.35, -0.10, 0.011
+19620410, 0.32, -0.13, 0.03, 0.011
+19620411, -0.20, 0.22, 0.08, 0.011
+19620412, -1.07, -0.10, -0.01, 0.011
+19620413, 0.13, -0.19, 0.11, 0.011
+19620416, -0.38, -0.15, 0.13, 0.011
+19620417, 0.51, -0.39, 0.24, 0.011
+19620418, 0.54, 0.10, 0.23, 0.011
+19620419, 0.48, 0.11, -0.17, 0.011
+19620423, -0.13, 0.09, -0.52, 0.011
+19620424, -0.12, 0.13, -0.11, 0.011
+19620425, -1.14, 0.09, 0.06, 0.011
+19620426, -0.96, -0.18, -0.14, 0.011
+19620427, -1.09, 0.09, 0.38, 0.011
+19620430, -1.69, -0.17, 0.08, 0.011
+19620501, 0.81, -0.12, 0.22, 0.011
+19620502, 0.47, 0.29, 0.04, 0.011
+19620503, 0.82, -0.42, -0.20, 0.011
+19620504, -0.48, -0.06, -0.15, 0.011
+19620507, -0.31, -0.19, 0.30, 0.011
+19620508, -1.20, -0.15, 0.45, 0.011
+19620509, -1.32, 0.15, 0.15, 0.011
+19620510, -1.10, -0.28, 0.09, 0.011
+19620511, -1.47, -0.11, 0.37, 0.011
+19620514, 0.76, -0.01, 0.02, 0.011
+19620515, 1.76, 0.35, -0.27, 0.011
+19620516, -0.07, -0.32, 0.14, 0.011
+19620517, -0.63, -0.23, 0.32, 0.011
+19620518, -0.12, -0.19, 0.02, 0.011
+19620521, -0.39, 0.06, -0.06, 0.011
+19620522, -2.01, -0.07, 0.14, 0.011
+19620523, -2.00, -0.67, 0.70, 0.011
+19620524, -0.88, -0.41, 0.46, 0.011
+19620525, -1.89, -0.46, 0.17, 0.011
+19620528, -7.00, 0.75, 1.53, 0.011
+19620529, 4.95, -3.87, -1.53, 0.011
+19620531, 2.78, 2.37, -0.25, 0.011
+19620601, -0.33, 0.28, 0.16, 0.009
+19620604, -3.61, -0.44, 0.92, 0.009
+19620605, 0.48, -0.65, 0.17, 0.009
+19620606, 1.42, 0.45, -0.01, 0.009
+19620607, 0.01, 0.44, -0.23, 0.009
+19620608, 0.04, 0.06, -0.16, 0.009
+19620611, -1.09, -0.08, 0.62, 0.009
+19620612, -2.59, -0.32, 0.61, 0.009
+19620613, -1.58, -0.33, 0.27, 0.009
+19620614, -2.10, -0.38, 0.62, 0.009
+19620615, 2.99, -0.29, -0.55, 0.009
+19620618, -0.42, 0.48, 0.27, 0.009
+19620619, -0.26, -0.11, 0.21, 0.009
+19620620, -1.40, 0.37, 0.15, 0.009
+19620621, -2.24, 0.13, 0.58, 0.009
+19620622, -1.70, -0.19, -0.44, 0.009
+19620625, -0.34, -0.35, -0.75, 0.009
+19620626, -0.37, 0.65, 0.37, 0.009
+19620627, 0.54, -0.49, -0.27, 0.009
+19620628, 3.39, -0.22, -0.23, 0.009
+19620629, 0.61, 0.36, 0.27, 0.009
+19620702, 2.07, -0.59, -0.73, 0.013
+19620703, 1.14, 0.20, -0.42, 0.013
+19620705, 0.60, -0.13, 0.02, 0.013
+19620706, -1.08, -0.06, 0.66, 0.013
+19620709, 0.67, -0.08, -0.40, 0.013
+19620710, 1.25, 1.32, -0.06, 0.013
+19620711, 0.98, 0.20, -0.65, 0.013
+19620712, 0.53, 1.06, -0.29, 0.013
+19620713, -0.30, 0.35, -0.38, 0.013
+19620716, 0.01, 0.30, -0.72, 0.013
+19620717, -1.77, -0.16, 0.98, 0.013
+19620718, -1.03, -0.31, 0.35, 0.013
+19620719, 0.39, 0.06, -0.33, 0.013
+19620720, 0.61, -0.37, -0.01, 0.013
+19620723, -0.06, 0.20, -0.34, 0.013
+19620724, -0.84, 0.04, 0.45, 0.013
+19620725, 0.17, -0.42, -0.25, 0.013
+19620726, 0.45, 0.10, -0.21, 0.013
+19620727, 0.73, -0.27, -0.13, 0.013
+19620730, 1.01, -0.05, -0.52, 0.013
+19620731, 0.63, 0.04, -0.35, 0.013
+19620801, -0.74, 0.16, 0.49, 0.010
+19620802, 0.35, -0.03, -0.63, 0.010
+19620803, 0.21, -0.07, 0.26, 0.010
+19620806, -0.63, 0.11, 0.30, 0.010
+19620807, -0.61, -0.05, 0.20, 0.010
+19620808, 0.33, 0.03, -0.17, 0.010
+19620809, -0.12, 0.13, 0.09, 0.010
+19620810, 0.16, -0.13, 0.10, 0.010
+19620813, 0.21, 0.04, -0.25, 0.010
+19620814, 0.99, -0.30, -0.51, 0.010
+19620815, 0.71, 0.45, -0.09, 0.010
+19620816, 0.04, 0.52, -0.50, 0.010
+19620817, 0.61, -0.10, -0.32, 0.010
+19620820, 0.60, 0.30, -0.36, 0.010
+19620821, -0.36, -0.20, 0.37, 0.010
+19620822, 1.17, 0.01, -0.32, 0.010
+19620823, -0.12, -0.09, 0.08, 0.010
+19620824, -0.13, 0.30, -0.01, 0.010
+19620827, -0.05, 0.07, 0.03, 0.010
+19620828, -1.11, -0.26, 0.37, 0.010
+19620829, -0.18, -0.02, 0.07, 0.010
+19620830, -0.01, 0.14, -0.27, 0.010
+19620831, 0.81, 0.19, -0.15, 0.010
+19620904, -0.97, 0.05, 0.31, 0.011
+19620905, -0.71, -0.29, 0.48, 0.011
+19620906, 0.37, -0.02, -0.17, 0.011
+19620907, 0.01, -0.07, 0.12, 0.011
+19620910, 0.07, -0.36, -0.18, 0.011
+19620911, 0.25, -0.19, -0.19, 0.011
+19620912, 0.43, -0.03, -0.31, 0.011
+19620913, -0.25, -0.14, 0.17, 0.011
+19620914, 0.30, -0.19, 0.12, 0.011
+19620917, 0.26, 0.04, -0.76, 0.011
+19620918, -0.07, 0.04, -0.22, 0.011
+19620919, -0.19, -0.28, 0.05, 0.011
+19620920, -0.67, -0.06, 0.09, 0.011
+19620921, -1.44, -0.34, 0.54, 0.011
+19620924, -1.85, -0.16, 0.85, 0.011
+19620925, 0.54, -0.05, -0.40, 0.011
+19620926, -1.41, -0.25, 0.86, 0.011
+19620927, -0.65, -0.03, 0.39, 0.011
+19620928, 0.67, -0.24, -0.47, 0.011
+19621001, -1.28, -0.26, 0.44, 0.011
+19621002, 1.04, -0.20, -0.58, 0.011
+19621003, 0.14, -0.14, 0.43, 0.011
+19621004, 0.80, -0.45, -0.21, 0.011
+19621005, 0.61, -0.06, -0.18, 0.011
+19621008, 0.01, 0.15, 0.10, 0.011
+19621009, 0.30, -0.12, -0.30, 0.011
+19621010, -0.01, 0.12, -0.06, 0.011
+19621011, -0.30, -0.13, 0.08, 0.011
+19621012, -0.18, -0.18, 0.29, 0.011
+19621015, 0.46, -0.24, -0.35, 0.011
+19621016, -0.32, -0.13, 0.27, 0.011
+19621017, -0.46, -0.39, 0.29, 0.011
+19621018, -0.94, -0.19, 0.01, 0.011
+19621019, -1.35, -0.10, 0.45, 0.011
+19621022, -1.17, -0.55, 0.35, 0.011
+19621023, -2.68, -0.09, 1.01, 0.011
+19621024, 2.83, -1.44, -1.35, 0.011
+19621025, -0.77, 0.56, 1.06, 0.011
+19621026, -0.30, -0.27, 0.24, 0.011
+19621029, 2.19, 0.20, -0.56, 0.011
+19621030, 1.49, -0.09, -0.49, 0.011
+19621031, -0.01, -0.04, 0.27, 0.011
+19621101, 1.01, -0.24, -0.31, 0.010
+19621102, 1.07, 0.05, -0.27, 0.010
+19621105, 1.03, 0.16, -0.07, 0.010
+19621107, 0.69, 0.08, 0.25, 0.010
+19621108, -0.59, 0.19, 0.70, 0.010
+19621109, 0.98, 0.26, 0.22, 0.010
+19621112, 1.38, 0.72, 0.11, 0.010
+19621113, -0.19, -0.01, -0.13, 0.010
+19621114, 1.20, 0.22, -0.15, 0.010
+19621115, -0.27, 0.02, 0.10, 0.010
+19621116, 0.30, -0.11, 0.23, 0.010
+19621119, -0.47, -0.19, 0.26, 0.010
+19621120, 0.99, -0.38, 0.45, 0.010
+19621121, 0.69, 0.18, -0.14, 0.010
+19621123, 1.17, -0.08, 0.00, 0.010
+19621126, -0.28, 0.09, -0.12, 0.010
+19621127, 0.71, 0.53, -0.05, 0.010
+19621128, 0.74, 0.45, -0.38, 0.010
+19621129, 0.44, 0.14, -0.30, 0.010
+19621130, -0.22, 0.26, 0.49, 0.010
+19621203, -0.40, -0.01, 0.19, 0.012
+19621204, 1.08, -0.04, -0.19, 0.012
+19621205, 0.41, -0.09, -0.47, 0.012
+19621206, 0.08, -0.06, -0.36, 0.012
+19621207, 0.20, -0.53, -0.15, 0.012
+19621210, -1.30, -0.58, -0.04, 0.012
+19621211, 0.04, -0.33, 0.35, 0.012
+19621212, 0.46, 0.05, -0.03, 0.012
+19621213, -0.36, -0.17, 0.15, 0.012
+19621214, 0.20, -0.26, 0.02, 0.012
+19621217, -0.38, -0.13, -0.38, 0.012
+19621218, -0.48, -0.59, 0.43, 0.012
+19621219, 0.76, -0.46, -0.11, 0.012
+19621220, 0.31, -0.01, 0.08, 0.012
+19621221, -0.23, -0.22, 0.23, 0.012
+19621224, -0.06, -0.06, 0.12, 0.012
+19621226, 0.61, -0.10, 0.23, 0.012
+19621227, -0.16, -0.03, 0.08, 0.012
+19621228, 0.05, -0.06, -0.13, 0.012
+19621231, 0.23, -0.14, 0.32, 0.012
+19630102, -0.54, 0.94, 0.33, 0.011
+19630103, 1.66, 0.99, -0.24, 0.011
+19630104, 0.68, 0.64, 0.01, 0.011
+19630107, 0.06, 0.33, 0.28, 0.011
+19630108, 0.90, -0.03, 0.23, 0.011
+19630109, -0.16, 0.10, 0.08, 0.011
+19630110, 0.19, 0.21, -0.10, 0.011
+19630111, 0.25, -0.04, -0.16, 0.011
+19630114, 0.57, 0.07, 0.23, 0.011
+19630115, -0.10, -0.02, 0.33, 0.011
+19630116, -0.69, 0.10, 0.00, 0.011
+19630117, 0.66, 0.07, -0.21, 0.011
+19630118, 0.02, 0.07, -0.06, 0.011
+19630121, 0.14, -0.03, -0.17, 0.011
+19630122, 0.26, 0.41, -0.04, 0.011
+19630123, 0.22, 0.10, 0.29, 0.011
+19630124, 0.16, 0.24, 0.27, 0.011
+19630125, 0.25, -0.36, 0.32, 0.011
+19630128, 0.40, -0.39, 0.13, 0.011
+19630129, 0.02, -0.32, 0.36, 0.011
+19630130, -0.56, -0.12, 0.14, 0.011
+19630131, 0.44, -0.08, 0.06, 0.011
+19630201, 0.18, 0.08, 0.32, 0.012
+19630204, -0.20, 0.03, -0.21, 0.012
+19630205, -0.07, -0.35, 0.33, 0.012
+19630206, 0.48, 0.25, -0.18, 0.012
+19630207, -0.29, -0.02, 0.44, 0.012
+19630208, 0.04, -0.04, -0.09, 0.012
+19630211, -0.50, 0.08, 0.51, 0.012
+19630212, 0.04, -0.12, 0.05, 0.012
+19630213, 0.47, 0.29, 0.54, 0.012
+19630214, 0.30, 0.21, 0.16, 0.012
+19630215, 0.14, -0.11, -0.11, 0.012
+19630218, 0.15, -0.28, 0.23, 0.012
+19630219, -0.42, -0.04, 0.03, 0.012
+19630220, -0.51, 0.08, 0.10, 0.012
+19630221, 0.11, 0.11, -0.02, 0.012
+19630225, -0.60, 0.15, 0.15, 0.012
+19630226, 0.09, 0.24, -0.21, 0.012
+19630227, -0.65, 0.10, 0.11, 0.012
+19630228, -1.14, -0.18, 0.05, 0.012
+19630301, -0.34, -0.27, 0.17, 0.011
+19630304, 0.91, 0.01, 0.11, 0.011
+19630305, -0.03, -0.34, 0.11, 0.011
+19630306, 0.17, -0.25, 0.00, 0.011
+19630307, 0.58, -0.21, -0.03, 0.011
+19630308, 0.13, -0.09, 0.09, 0.011
+19630311, 0.21, -0.31, -0.06, 0.011
+19630312, 0.24, -0.12, 0.04, 0.011
+19630313, 0.31, -0.21, 0.38, 0.011
+19630314, -0.45, 0.09, -0.19, 0.011
+19630315, 0.39, -0.43, 0.27, 0.011
+19630318, -0.44, -0.05, -0.13, 0.011
+19630319, -0.23, -0.31, 0.14, 0.011
+19630320, 0.71, -0.08, 0.34, 0.011
+19630321, -0.13, 0.03, -0.01, 0.011
+19630322, 0.44, -0.06, 0.38, 0.011
+19630325, 0.03, -0.07, 0.16, 0.011
+19630326, 0.26, -0.19, 0.06, 0.011
+19630327, 0.40, 0.15, -0.17, 0.011
+19630328, -0.13, 0.09, 0.00, 0.011
+19630329, 0.00, 0.07, 0.42, 0.011
+19630401, 0.36, -0.20, 0.35, 0.012
+19630402, -0.03, -0.02, 0.04, 0.012
+19630403, 0.71, -0.44, -0.07, 0.012
+19630404, 0.62, -0.16, -0.28, 0.012
+19630405, 0.56, -0.12, 0.02, 0.012
+19630408, 0.33, 0.05, -0.22, 0.012
+19630409, -0.08, -0.01, -0.09, 0.012
+19630410, -0.26, -0.09, 0.34, 0.012
+19630411, 0.66, -0.11, 0.27, 0.012
+19630415, 0.38, -0.46, 0.20, 0.012
+19630416, 0.08, -0.03, 0.06, 0.012
+19630417, -0.23, 0.09, -0.14, 0.012
+19630418, 0.08, -0.10, 0.49, 0.012
+19630419, 0.47, 0.14, 0.17, 0.012
+19630422, 0.05, -0.04, 0.06, 0.012
+19630423, 0.36, -0.01, -0.05, 0.012
+19630424, 0.26, 0.08, 0.04, 0.012
+19630425, 0.06, -0.05, -0.10, 0.012
+19630426, -0.06, 0.25, -0.06, 0.012
+19630429, -0.08, -0.11, -0.18, 0.012
+19630430, 0.21, 0.08, 0.11, 0.012
+19630501, 0.25, -0.04, -0.03, 0.011
+19630502, 0.25, -0.08, 0.08, 0.011
+19630503, -0.18, 0.25, -0.07, 0.011
+19630506, -0.64, 0.36, -0.22, 0.011
+19630507, -0.04, 0.25, -0.17, 0.011
+19630508, 0.78, -0.03, -0.03, 0.011
+19630509, 0.43, -0.04, 0.20, 0.011
+19630510, 0.31, 0.18, -0.15, 0.011
+19630513, 0.03, 0.25, -0.04, 0.011
+19630514, -0.28, 0.59, 0.44, 0.011
+19630515, 0.25, 0.06, 0.27, 0.011
+19630516, -0.23, -0.12, 0.56, 0.011
+19630517, 0.08, 0.06, 0.09, 0.011
+19630520, -0.40, 0.25, 0.61, 0.011
+19630521, 0.23, -0.08, 0.38, 0.011
+19630522, 0.04, 0.09, 0.30, 0.011
+19630523, -0.08, 0.13, -0.16, 0.011
+19630524, -0.11, -0.08, -0.11, 0.011
+19630527, -0.11, -0.24, 0.03, 0.011
+19630528, 0.18, -0.21, 0.09, 0.011
+19630529, 0.43, -0.18, 0.39, 0.011
+19630531, 0.55, -0.34, -0.07, 0.011
+19630603, -0.08, 0.06, -0.09, 0.011
+19630604, -0.01, 0.02, -0.04, 0.011
+19630605, -0.25, 0.04, 0.29, 0.011
+19630606, 0.01, -0.26, 0.27, 0.011
+19630607, -0.19, 0.17, -0.14, 0.011
+19630610, -0.56, 0.05, -0.28, 0.011
+19630611, 0.10, 0.00, -0.24, 0.011
+19630612, 0.49, 0.06, -0.33, 0.011
+19630613, -0.26, 0.14, 0.12, 0.011
+19630614, 0.07, 0.15, -0.32, 0.011
+19630617, -0.39, 0.15, 0.22, 0.011
+19630618, 0.13, -0.14, 0.08, 0.011
+19630619, 0.07, 0.26, 0.16, 0.011
+19630620, -0.10, -0.14, 0.03, 0.011
+19630621, 0.31, 0.18, 0.34, 0.011
+19630624, -0.09, -0.05, 0.29, 0.011
+19630625, -0.24, -0.19, 0.14, 0.011
+19630626, -0.92, -0.30, 0.23, 0.011
+19630627, -0.49, -0.26, -0.11, 0.011
+19630628, 0.40, -0.20, 0.10, 0.011
+19630701, -0.67, 0.16, -0.32, 0.012
+19630702, 0.79, -0.28, 0.27, 0.012
+19630703, 0.63, -0.18, -0.09, 0.012
+19630705, 0.40, 0.10, -0.28, 0.012
+19630708, -0.63, 0.04, -0.18, 0.012
+19630709, 0.45, 0.01, 0.10, 0.012
+19630710, -0.18, 0.15, 0.01, 0.012
+19630711, -0.16, 0.19, -0.30, 0.012
+19630712, -0.12, 0.01, -0.11, 0.012
+19630715, -0.62, 0.02, -0.03, 0.012
+19630716, -0.07, -0.13, 0.14, 0.012
+19630717, -0.33, -0.15, 0.15, 0.012
+19630718, -0.54, 0.29, 0.05, 0.012
+19630719, -0.23, -0.02, -0.05, 0.012
+19630722, -0.70, -0.11, -0.31, 0.012
+19630723, 0.01, -0.07, -0.20, 0.012
+19630724, 0.46, -0.09, -0.01, 0.012
+19630725, -0.04, 0.04, 0.26, 0.012
+19630726, 0.35, -0.20, 0.07, 0.012
+19630729, 0.11, -0.29, 0.26, 0.012
+19630730, 0.84, -0.24, -0.27, 0.012
+19630731, -0.13, 0.18, -0.01, 0.012
+19630801, -0.08, -0.12, -0.12, 0.011
+19630802, 0.29, -0.23, 0.15, 0.011
+19630805, 0.57, -0.41, 0.16, 0.011
+19630806, 0.60, -0.40, 0.25, 0.011
+19630807, -0.19, 0.01, 0.17, 0.011
+19630808, 0.14, 0.03, -0.25, 0.011
+19630809, 0.60, -0.09, -0.06, 0.011
+19630812, 0.24, 0.10, 0.41, 0.011
+19630813, 0.27, -0.30, -0.03, 0.011
+19630814, 0.30, -0.05, 0.21, 0.011
+19630815, 0.43, -0.30, 0.37, 0.011
+19630816, 0.15, 0.11, 0.10, 0.011
+19630819, -0.05, 0.07, -0.10, 0.011
+19630820, -0.05, 0.06, -0.25, 0.011
+19630821, -0.11, 0.36, -0.12, 0.011
+19630822, 0.39, 0.12, 0.09, 0.011
+19630823, 0.34, -0.02, 0.10, 0.011
+19630826, 0.18, -0.21, 0.14, 0.011
+19630827, -0.44, 0.11, -0.05, 0.011
+19630828, 0.77, -0.04, 0.44, 0.011
+19630829, 0.18, 0.15, 0.02, 0.011
+19630830, 0.44, 0.12, -0.09, 0.011
+19630903, 0.23, 0.11, 0.06, 0.014
+19630904, -0.01, 0.10, -0.06, 0.014
+19630905, 0.47, -0.06, 0.11, 0.014
+19630906, -0.27, -0.17, -0.01, 0.014
+19630909, -0.36, -0.26, -0.01, 0.014
+19630910, 0.52, -0.21, 0.42, 0.014
+19630911, 0.24, -0.21, 0.20, 0.014
+19630912, -0.09, 0.10, -0.11, 0.014
+19630913, 0.02, 0.40, -0.15, 0.014
+19630916, -0.16, 0.10, 0.19, 0.014
+19630917, 0.03, -0.14, 0.17, 0.014
+19630918, -0.43, 0.10, -0.24, 0.014
+19630919, 0.52, -0.44, 0.17, 0.014
+19630920, 0.04, -0.05, -0.01, 0.014
+19630923, -0.50, -0.01, -0.21, 0.014
+19630924, 0.35, -0.40, 0.12, 0.014
+19630925, -0.58, -0.31, -0.08, 0.014
+19630926, -0.81, 0.52, -0.35, 0.014
+19630927, -0.18, 0.32, -0.22, 0.014
+19630930, -0.60, 0.25, 0.08, 0.014
+19631001, 0.65, -0.25, 0.25, 0.013
+19631002, 0.10, -0.05, 0.00, 0.013
+19631003, 0.67, -0.39, 0.85, 0.013
+19631004, 0.00, 0.01, 0.06, 0.013
+19631007, -0.23, 0.21, -0.02, 0.013
+19631008, -0.14, 0.05, 0.25, 0.013
+19631009, -0.61, 0.18, -0.05, 0.013
+19631010, 0.08, 0.00, 0.15, 0.013
+19631011, 0.13, 0.38, 0.08, 0.013
+19631014, 0.05, 0.03, 0.07, 0.013
+19631015, 0.17, -0.21, 0.14, 0.013
+19631016, 0.89, -0.31, 0.27, 0.013
+19631017, 0.14, 0.13, -0.25, 0.013
+19631018, 0.09, 0.17, -0.24, 0.013
+19631021, 0.03, -0.06, -0.30, 0.013
+19631022, -0.54, 0.43, -0.46, 0.013
+19631023, 0.03, -0.07, -0.05, 0.013
+19631024, 0.35, -0.17, 0.47, 0.013
+19631025, 0.85, -0.22, -0.89, 0.013
+19631028, 0.41, -0.68, -0.28, 0.013
+19631029, -0.04, -0.20, -0.07, 0.013
+19631030, -0.79, 0.46, -0.06, 0.013
+19631031, 0.21, -0.04, 0.11, 0.013
+19631101, -0.18, 0.18, 0.19, 0.015
+19631104, -0.43, -0.06, 0.36, 0.015
+19631106, -0.77, 0.05, 0.25, 0.015
+19631107, 0.33, -0.01, -0.04, 0.015
+19631108, 0.54, 0.03, 0.12, 0.015
+19631111, 0.20, 0.24, 0.15, 0.015
+19631112, -0.37, 0.33, -0.29, 0.015
+19631113, 0.05, 0.05, -0.08, 0.015
+19631114, -0.41, 0.20, -0.03, 0.015
+19631115, -0.75, 0.33, 0.00, 0.015
+19631118, -0.74, 0.16, -0.23, 0.015
+19631119, 0.10, -0.29, 0.35, 0.015
+19631120, 0.76, -0.93, -0.35, 0.015
+19631121, -1.25, -0.13, 0.03, 0.015
+19631122, -2.90, -0.55, 0.05, 0.015
+19631126, 3.94, -1.34, 0.87, 0.015
+19631127, -0.16, 0.38, 0.13, 0.015
+19631129, 1.34, 0.16, 0.31, 0.015
+19631202, 0.53, -0.28, -0.21, 0.014
+19631203, -0.05, 0.01, -0.20, 0.014
+19631204, 0.25, 0.01, 0.12, 0.014
+19631205, 0.57, -0.68, 0.12, 0.014
+19631206, -0.32, 0.13, 0.08, 0.014
+19631209, -0.11, -0.04, -0.16, 0.014
+19631210, 0.06, -0.18, 0.20, 0.014
+19631211, -0.14, 0.04, 0.09, 0.014
+19631212, -0.03, -0.17, -0.07, 0.014
+19631213, 0.16, -0.08, 0.11, 0.014
+19631216, 0.25, -0.45, -0.03, 0.014
+19631217, 0.44, -0.58, 0.06, 0.014
+19631218, -0.18, -0.31, 0.57, 0.014
+19631219, -0.33, -0.04, -0.44, 0.014
+19631220, -0.20, -0.19, 0.11, 0.014
+19631223, -0.60, 0.28, -0.07, 0.014
+19631224, 0.23, 0.23, -0.15, 0.014
+19631226, 0.47, 0.16, 0.08, 0.014
+19631227, 0.16, 0.10, -0.14, 0.014
+19631230, 0.10, -0.27, -0.17, 0.014
+19631231, 0.56, 0.39, -0.11, 0.014
+19640102, 0.60, 0.59, 0.59, 0.013
+19640103, 0.17, 0.12, 0.38, 0.013
+19640106, 0.23, 0.12, 0.02, 0.013
+19640107, 0.04, 0.08, 0.76, 0.013
+19640108, 0.34, 0.04, -0.15, 0.013
+19640109, 0.30, 0.03, -0.32, 0.013
+19640110, -0.04, -0.04, -0.12, 0.013
+19640113, -0.10, 0.00, 0.45, 0.013
+19640114, 0.15, -0.34, 0.64, 0.013
+19640115, 0.24, -0.28, -0.11, 0.013
+19640116, -0.10, 0.25, -0.32, 0.013
+19640117, -0.02, 0.34, -0.03, 0.013
+19640120, -0.21, 0.15, -0.54, 0.013
+19640121, 0.26, -0.47, 0.07, 0.013
+19640122, 0.48, -0.21, 0.41, 0.013
+19640123, 0.09, -0.12, 0.16, 0.013
+19640124, 0.04, 0.24, 0.18, 0.013
+19640127, -0.11, -0.30, 0.06, 0.013
+19640128, -0.01, -0.25, 0.18, 0.013
+19640129, -0.58, -0.03, -0.15, 0.013
+19640130, 0.04, 0.12, -0.30, 0.013
+19640131, 0.38, -0.27, -0.19, 0.013
+19640203, 0.00, -0.06, 0.06, 0.014
+19640204, -0.13, -0.21, -0.20, 0.014
+19640205, -0.08, 0.01, 0.29, 0.014
+19640206, 0.24, 0.10, -0.23, 0.014
+19640207, 0.37, 0.04, 0.12, 0.014
+19640210, -0.13, 0.17, -0.22, 0.014
+19640211, 0.33, 0.03, -0.14, 0.014
+19640212, 0.30, 0.03, 0.18, 0.014
+19640213, 0.08, 0.02, -0.06, 0.014
+19640214, -0.04, 0.10, 0.23, 0.014
+19640217, 0.03, 0.09, 0.27, 0.014
+19640218, 0.01, -0.26, 0.53, 0.014
+19640219, 0.11, -0.04, 0.05, 0.014
+19640220, 0.09, -0.03, 0.70, 0.014
+19640224, 0.10, -0.10, 0.46, 0.014
+19640225, 0.04, -0.12, 0.17, 0.014
+19640226, 0.28, 0.08, 0.22, 0.014
+19640227, -0.27, 0.26, -0.08, 0.014
+19640228, 0.21, -0.01, 0.42, 0.014
+19640302, 0.22, -0.06, 0.32, 0.015
+19640303, 0.26, -0.28, -0.26, 0.015
+19640304, -0.20, 0.02, -0.11, 0.015
+19640305, 0.00, 0.06, 0.22, 0.015
+19640306, 0.32, 0.41, 0.01, 0.015
+19640309, 0.01, 0.04, 0.42, 0.015
+19640310, 0.28, -0.40, 0.25, 0.015
+19640311, 0.40, -0.26, 0.19, 0.015
+19640312, 0.18, -0.06, 0.17, 0.015
+19640313, 0.09, 0.04, 0.10, 0.015
+19640316, 0.03, 0.01, -0.22, 0.015
+19640317, 0.19, -0.02, 0.25, 0.015
+19640318, 0.10, -0.11, 0.50, 0.015
+19640319, -0.09, 0.07, 0.02, 0.015
+19640320, -0.42, 0.33, 0.10, 0.015
+19640323, 0.01, 0.39, -0.07, 0.015
+19640324, -0.18, 0.07, 0.30, 0.015
+19640325, 0.24, 0.22, 0.60, 0.015
+19640326, 0.26, 0.10, 0.66, 0.015
+19640330, -0.10, 0.08, 0.06, 0.015
+19640331, -0.19, 0.23, -0.29, 0.015
+19640401, 0.34, 0.04, 0.65, 0.013
+19640402, 0.57, 0.00, 0.29, 0.013
+19640403, 0.22, 0.07, -0.41, 0.013
+19640406, 0.07, 0.08, 0.27, 0.013
+19640407, -0.34, 0.26, -0.44, 0.013
+19640408, 0.01, 0.34, 0.17, 0.013
+19640409, 0.00, 0.24, -0.16, 0.013
+19640410, 0.19, 0.16, 0.10, 0.013
+19640413, -0.08, -0.05, -0.21, 0.013
+19640414, 0.19, -0.25, -0.13, 0.013
+19640415, 0.11, -0.01, -0.56, 0.013
+19640416, 0.08, -0.20, -0.07, 0.013
+19640417, 0.38, -0.40, 0.27, 0.013
+19640420, -0.07, -0.19, -0.17, 0.013
+19640421, -0.01, -0.08, -0.10, 0.013
+19640422, -0.05, -0.18, 0.21, 0.013
+19640423, -0.16, -0.30, -0.03, 0.013
+19640424, -0.77, -0.14, -0.41, 0.013
+19640427, -0.54, -0.04, 0.22, 0.013
+19640428, 0.64, -0.27, 0.77, 0.013
+19640429, -0.40, -0.21, -0.70, 0.013
+19640430, -0.25, -0.26, -0.04, 0.013
+19640501, 0.78, -0.16, 0.32, 0.013
+19640504, 0.45, 0.05, 0.22, 0.013
+19640505, 0.46, -0.51, 0.12, 0.013
+19640506, 0.26, -0.22, 0.19, 0.013
+19640507, 0.11, -0.14, 0.73, 0.013
+19640508, -0.18, 0.00, 0.11, 0.013
+19640511, -0.03, 0.03, 0.01, 0.013
+19640512, 0.32, -0.08, 0.04, 0.013
+19640513, -0.25, 0.01, -0.17, 0.013
+19640514, -0.11, 0.27, -0.02, 0.013
+19640515, 0.15, -0.21, -0.06, 0.013
+19640518, -0.33, 0.01, -0.21, 0.013
+19640519, -0.44, 0.34, -0.15, 0.013
+19640520, 0.42, -0.24, 0.43, 0.013
+19640521, 0.07, 0.04, -0.20, 0.013
+19640522, 0.05, 0.14, 0.08, 0.013
+19640525, -0.12, -0.14, 0.07, 0.013
+19640526, -0.17, 0.09, 0.15, 0.013
+19640527, -0.15, -0.27, 0.23, 0.013
+19640528, 0.16, 0.11, 0.01, 0.013
+19640601, -0.35, 0.01, 0.04, 0.014
+19640602, -0.52, -0.06, -0.07, 0.014
+19640603, -0.26, -0.22, 0.19, 0.014
+19640604, -1.03, 0.03, -0.33, 0.014
+19640605, 0.42, -0.16, 0.16, 0.014
+19640608, -0.46, 0.06, -0.16, 0.014
+19640609, 0.56, -0.24, 0.46, 0.014
+19640610, 0.37, 0.04, -0.20, 0.014
+19640611, 0.30, 0.08, -0.36, 0.014
+19640612, -0.23, 0.15, 0.10, 0.014
+19640615, 0.45, -0.03, 0.05, 0.014
+19640616, 0.51, -0.06, 0.35, 0.014
+19640617, 0.51, -0.10, 0.12, 0.014
+19640618, 0.00, 0.01, 0.09, 0.014
+19640619, 0.10, -0.01, 0.11, 0.014
+19640622, 0.25, -0.28, 0.36, 0.014
+19640623, -0.38, 0.34, -0.24, 0.014
+19640624, 0.35, 0.03, 0.23, 0.014
+19640625, 0.20, -0.06, -0.02, 0.014
+19640626, 0.26, 0.17, 0.15, 0.014
+19640629, 0.18, 0.02, -0.17, 0.014
+19640630, 0.03, 0.00, -0.16, 0.014
+19640701, 0.62, -0.26, 0.38, 0.013
+19640702, 0.39, 0.13, -0.26, 0.013
+19640706, 0.41, -0.15, -0.09, 0.013
+19640707, 0.15, -0.17, 0.10, 0.013
+19640708, 0.02, 0.08, 0.11, 0.013
+19640709, 0.13, 0.33, -0.11, 0.013
+19640710, 0.19, -0.01, 0.43, 0.013
+19640713, -0.07, 0.08, 0.04, 0.013
+19640714, -0.29, 0.19, 0.09, 0.013
+19640715, 0.37, 0.00, -0.35, 0.013
+19640716, 0.31, -0.18, 0.18, 0.013
+19640717, 0.44, -0.13, -0.27, 0.013
+19640720, -0.31, 0.18, 0.09, 0.013
+19640721, -0.19, 0.21, -0.13, 0.013
+19640722, 0.02, -0.03, 0.01, 0.013
+19640723, -0.03, 0.17, 0.12, 0.013
+19640724, -0.03, -0.02, -0.05, 0.013
+19640727, -0.48, -0.15, 0.28, 0.013
+19640728, -0.24, 0.04, 0.05, 0.013
+19640729, 0.13, -0.06, -0.02, 0.013
+19640730, 0.13, -0.08, -0.01, 0.013
+19640731, 0.07, 0.05, 0.10, 0.013
+19640803, -0.24, -0.29, 0.23, 0.013
+19640804, -1.13, -0.09, -0.05, 0.013
+19640805, 0.16, -0.38, 0.05, 0.013
+19640806, -0.87, 0.43, -0.09, 0.013
+19640807, 0.56, -0.01, -0.14, 0.013
+19640810, 0.02, 0.12, -0.20, 0.013
+19640811, -0.01, 0.09, 0.17, 0.013
+19640812, 0.50, 0.16, -0.05, 0.013
+19640813, 0.28, 0.01, 0.14, 0.013
+19640814, -0.10, 0.20, 0.04, 0.013
+19640817, -0.01, -0.09, -0.20, 0.013
+19640818, 0.06, -0.16, 0.34, 0.013
+19640819, -0.09, 0.01, 0.04, 0.013
+19640820, -0.44, -0.03, -0.26, 0.013
+19640821, 0.16, 0.09, -0.08, 0.013
+19640824, -0.20, 0.01, 0.51, 0.013
+19640825, -0.50, 0.15, -0.33, 0.013
+19640826, -0.18, -0.02, -0.02, 0.013
+19640827, 0.48, -0.27, 0.03, 0.013
+19640828, 0.32, -0.05, -0.13, 0.013
+19640831, -0.21, 0.27, -0.07, 0.013
+19640901, 0.46, -0.20, 0.53, 0.013
+19640902, 0.20, 0.14, 0.18, 0.013
+19640903, 0.25, -0.15, -0.22, 0.013
+19640904, 0.21, 0.02, 0.03, 0.013
+19640908, 0.12, 0.00, -0.01, 0.013
+19640909, 0.19, -0.23, 0.33, 0.013
+19640910, 0.08, -0.06, 0.23, 0.013
+19640911, 0.33, -0.29, 0.34, 0.013
+19640914, -0.24, -0.05, 0.39, 0.013
+19640915, -0.24, 0.11, -0.09, 0.013
+19640916, 0.27, -0.10, 0.22, 0.013
+19640917, 0.59, -0.17, 0.21, 0.013
+19640918, -0.34, 0.16, -0.23, 0.013
+19640921, 0.40, -0.13, 0.13, 0.013
+19640922, 0.04, 0.18, -0.22, 0.013
+19640923, 0.01, 0.12, 0.21, 0.013
+19640924, 0.10, -0.12, 0.03, 0.013
+19640925, 0.20, 0.09, -0.36, 0.013
+19640928, 0.07, -0.04, -0.08, 0.013
+19640929, -0.01, 0.00, -0.09, 0.013
+19640930, -0.03, 0.16, -0.09, 0.013
+19641001, -0.14, 0.08, 0.11, 0.013
+19641002, 0.24, -0.24, 0.16, 0.013
+19641005, 0.41, -0.27, 0.38, 0.013
+19641006, 0.02, -0.09, 0.16, 0.013
+19641007, -0.02, -0.12, 0.09, 0.013
+19641008, 0.24, -0.03, 0.18, 0.013
+19641009, 0.19, 0.01, 0.09, 0.013
+19641012, 0.06, 0.21, -0.07, 0.013
+19641013, -0.25, 0.03, 0.35, 0.013
+19641014, -0.17, 0.03, 0.14, 0.013
+19641015, -0.70, -0.38, -0.17, 0.013
+19641016, 0.70, 0.38, 0.06, 0.013
+19641019, 0.13, 0.30, 0.16, 0.013
+19641020, 0.25, -0.03, 0.29, 0.013
+19641021, -0.06, -0.03, 0.00, 0.013
+19641022, -0.16, 0.11, 0.04, 0.013
+19641023, 0.20, -0.09, 0.01, 0.013
+19641026, -0.17, 0.23, 0.23, 0.013
+19641027, -0.04, 0.02, -0.11, 0.013
+19641028, -0.35, 0.06, -0.53, 0.013
+19641029, 0.05, 0.08, -0.16, 0.013
+19641030, 0.18, 0.20, -0.26, 0.013
+19641102, 0.43, -0.15, -0.28, 0.015
+19641104, -0.04, -0.09, 0.21, 0.015
+19641105, 0.00, -0.10, -0.52, 0.015
+19641106, 0.19, -0.16, -0.13, 0.015
+19641109, -0.05, 0.05, -0.49, 0.015
+19641110, -0.41, 0.09, -0.20, 0.015
+19641111, 0.26, -0.14, 0.53, 0.015
+19641112, 0.18, 0.20, 0.24, 0.015
+19641113, 0.10, 0.35, -0.27, 0.015
+19641116, 0.43, 0.01, -0.53, 0.015
+19641117, 0.45, -0.31, 0.04, 0.015
+19641118, 0.24, -0.08, -0.02, 0.015
+19641119, -0.01, 0.01, -0.32, 0.015
+19641120, 0.10, 0.03, -0.03, 0.015
+19641123, -0.24, 0.12, 0.05, 0.015
+19641124, -0.26, 0.08, 0.03, 0.015
+19641125, -0.21, 0.35, -0.12, 0.015
+19641127, -0.31, 0.18, -0.12, 0.015
+19641130, -0.87, 0.16, -0.14, 0.015
+19641201, -1.00, 0.17, -0.20, 0.014
+19641202, 0.28, -0.28, 0.01, 0.014
+19641203, 0.39, -0.05, 0.13, 0.014
+19641204, 0.18, 0.02, -0.18, 0.014
+19641207, -0.01, -0.02, -0.18, 0.014
+19641208, -0.37, -0.08, -0.57, 0.014
+19641209, -0.67, -0.20, -0.10, 0.014
+19641210, -0.04, -0.12, 0.19, 0.014
+19641211, 0.22, 0.09, 0.03, 0.014
+19641214, -0.26, 0.17, -0.31, 0.014
+19641215, -0.35, -0.18, -0.18, 0.014
+19641216, 0.40, 0.15, -0.26, 0.014
+19641217, 0.36, 0.03, 0.26, 0.014
+19641218, 0.47, -0.01, -0.05, 0.014
+19641221, 0.07, 0.03, -0.09, 0.014
+19641222, -0.07, 0.04, -0.32, 0.014
+19641223, -0.20, 0.13, -0.22, 0.014
+19641224, 0.01, 0.09, 0.08, 0.014
+19641228, -0.11, 0.02, -0.18, 0.014
+19641229, -0.31, -0.09, 0.03, 0.014
+19641230, 0.57, -0.07, -0.26, 0.014
+19641231, 0.49, -0.10, -0.13, 0.014
+19650104, -0.45, 0.71, -0.09, 0.014
+19650105, 0.49, 0.39, -0.10, 0.014
+19650106, 0.34, 0.19, 0.44, 0.014
+19650107, 0.40, 0.07, 0.18, 0.014
+19650108, 0.17, 0.17, -0.20, 0.014
+19650111, 0.06, 0.07, 0.09, 0.014
+19650112, 0.28, 0.20, -0.09, 0.014
+19650113, 0.28, 0.22, -0.02, 0.014
+19650114, 0.00, 0.04, 0.23, 0.014
+19650115, 0.41, -0.18, 0.17, 0.014
+19650118, 0.28, -0.10, -0.22, 0.014
+19650119, 0.16, -0.26, 0.17, 0.014
+19650120, -0.03, 0.01, 0.08, 0.014
+19650121, -0.10, 0.15, -0.08, 0.014
+19650122, 0.24, 0.04, 0.11, 0.014
+19650125, 0.16, 0.29, 0.07, 0.014
+19650126, 0.10, 0.06, -0.07, 0.014
+19650127, 0.28, 0.18, -0.28, 0.014
+19650128, 0.26, 0.01, -0.13, 0.014
+19650129, 0.13, 0.32, -0.06, 0.014
+19650201, 0.03, 0.12, -0.06, 0.016
+19650202, 0.05, 0.03, -0.03, 0.016
+19650203, 0.14, 0.22, -0.16, 0.016
+19650204, 0.00, 0.42, -0.26, 0.016
+19650205, -0.25, 0.39, -0.06, 0.016
+19650208, -0.32, 0.08, 0.18, 0.016
+19650209, 0.31, 0.10, 0.07, 0.016
+19650210, -0.84, -0.05, -0.03, 0.016
+19650211, -0.99, 0.33, -0.02, 0.016
+19650212, 0.66, 0.24, 0.04, 0.016
+19650215, -0.05, 0.27, 0.32, 0.016
+19650216, -0.35, 0.33, 0.12, 0.016
+19650217, 0.14, 0.24, -0.03, 0.016
+19650218, 0.31, 0.34, -0.02, 0.016
+19650219, 0.20, 0.34, -0.11, 0.016
+19650223, 0.48, 0.00, 0.66, 0.016
+19650224, 0.63, -0.08, 0.02, 0.016
+19650225, 0.07, -0.03, -0.04, 0.016
+19650226, 0.25, 0.09, -0.44, 0.016
+19650301, -0.14, 0.39, 0.00, 0.016
+19650302, 0.18, 0.13, -0.04, 0.016
+19650303, -0.05, 0.27, -0.19, 0.016
+19650304, -0.29, 0.27, -0.14, 0.016
+19650305, -0.19, 0.06, 0.01, 0.016
+19650308, 0.04, 0.20, 0.25, 0.016
+19650309, -0.16, -0.08, 0.13, 0.016
+19650310, -0.10, 0.16, -0.16, 0.016
+19650311, 0.38, 0.10, -0.31, 0.016
+19650312, 0.30, -0.18, 0.30, 0.016
+19650315, 0.06, -0.02, 0.20, 0.016
+19650316, -0.11, 0.00, 0.21, 0.016
+19650317, -0.15, 0.14, 0.02, 0.016
+19650318, -0.26, 0.24, -0.27, 0.016
+19650319, -0.01, -0.07, 0.11, 0.016
+19650322, -0.01, 0.03, 0.25, 0.016
+19650323, 0.04, -0.01, 0.08, 0.016
+19650324, 0.18, -0.01, 0.46, 0.016
+19650325, -0.29, 0.09, 0.11, 0.016
+19650326, -0.70, 0.04, -0.10, 0.016
+19650329, -0.24, -0.20, 0.01, 0.016
+19650330, 0.19, 0.05, -0.02, 0.016
+19650331, 0.01, 0.18, 0.14, 0.016
+19650401, 0.16, 0.05, -0.18, 0.015
+19650402, 0.25, 0.13, 0.22, 0.015
+19650405, 0.01, 0.04, 0.00, 0.015
+19650406, -0.04, 0.05, -0.05, 0.015
+19650407, 0.06, 0.15, -0.07, 0.015
+19650408, 0.52, 0.18, 0.00, 0.015
+19650409, 0.56, 0.05, 0.03, 0.015
+19650412, 0.44, -0.05, 0.11, 0.015
+19650413, 0.12, 0.04, 0.31, 0.015
+19650414, 0.18, 0.17, -0.25, 0.015
+19650415, -0.06, 0.36, -0.02, 0.015
+19650419, 0.36, 0.07, -0.39, 0.015
+19650420, -0.03, 0.20, 0.13, 0.015
+19650421, -0.23, -0.01, 0.01, 0.015
+19650422, 0.45, -0.16, -0.10, 0.015
+19650423, 0.13, 0.14, -0.11, 0.015
+19650426, 0.00, 0.01, 0.42, 0.015
+19650427, 0.17, -0.20, 0.41, 0.015
+19650428, -0.05, -0.27, 0.50, 0.015
+19650429, -0.07, 0.21, -0.16, 0.015
+19650430, 0.13, 0.01, -0.13, 0.015
+19650503, 0.08, -0.31, -0.16, 0.016
+19650504, 0.27, -0.31, -0.06, 0.016
+19650505, 0.24, -0.40, 0.24, 0.016
+19650506, 0.24, -0.04, -0.20, 0.016
+19650507, -0.07, 0.03, -0.06, 0.016
+19650510, -0.12, 0.22, -0.10, 0.016
+19650511, -0.09, -0.05, -0.19, 0.016
+19650512, 0.37, 0.10, -0.38, 0.016
+19650513, 0.32, 0.31, -0.26, 0.016
+19650514, -0.16, 0.37, -0.12, 0.016
+19650517, -0.54, 0.25, 0.30, 0.016
+19650518, -0.07, 0.08, 0.14, 0.016
+19650519, 0.20, 0.12, -0.14, 0.016
+19650520, -0.53, -0.11, -0.08, 0.016
+19650521, -0.46, 0.13, -0.03, 0.016
+19650524, -0.74, -0.15, 0.11, 0.016
+19650525, 0.54, 0.02, -0.33, 0.016
+19650526, -0.27, -0.20, 0.03, 0.016
+19650527, -0.58, -0.09, -0.14, 0.016
+19650528, 0.61, 0.02, -0.15, 0.016
+19650601, -0.70, -0.01, 0.18, 0.016
+19650602, -0.78, -0.36, -0.52, 0.016
+19650603, -0.24, 0.07, -0.09, 0.016
+19650604, 0.21, 0.07, -0.03, 0.016
+19650607, -0.35, -0.31, 0.13, 0.016
+19650608, -1.07, -0.20, 0.00, 0.016
+19650609, -1.04, -0.27, 0.56, 0.016
+19650610, -0.43, -0.69, 0.15, 0.016
+19650611, 0.42, 0.01, -0.06, 0.016
+19650614, -1.36, -0.70, -0.10, 0.016
+19650615, 0.47, -0.10, -0.12, 0.016
+19650616, 0.89, 0.57, 0.12, 0.016
+19650617, 0.59, -0.04, 0.21, 0.016
+19650618, -0.44, -0.04, -0.01, 0.016
+19650621, -0.38, -0.17, -0.10, 0.016
+19650622, 0.18, -0.05, 0.00, 0.016
+19650623, -0.64, -0.04, 0.04, 0.016
+19650624, -1.35, -0.77, 0.08, 0.016
+19650625, -0.64, -0.33, -0.05, 0.016
+19650628, -1.88, -1.49, 0.07, 0.016
+19650629, 0.79, -0.75, -0.16, 0.016
+19650630, 2.20, 1.16, 0.11, 0.016
+19650701, 0.46, 0.38, 0.02, 0.015
+19650702, 0.81, 0.15, -0.06, 0.015
+19650706, -0.18, 0.26, -0.01, 0.015
+19650707, -0.34, -0.17, 0.11, 0.015
+19650708, 0.80, 0.01, -0.20, 0.015
+19650709, 0.40, 0.40, -0.03, 0.015
+19650712, 0.00, 0.06, 0.22, 0.015
+19650713, -0.13, -0.08, -0.24, 0.015
+19650714, 0.29, 0.20, 0.13, 0.015
+19650715, -0.10, 0.26, -0.01, 0.015
+19650716, -0.04, 0.06, -0.06, 0.015
+19650719, -0.09, 0.13, -0.27, 0.015
+19650720, -1.24, -0.30, 0.24, 0.015
+19650721, -0.55, -0.08, 0.24, 0.015
+19650722, -0.23, 0.16, 0.18, 0.015
+19650723, 0.24, -0.18, 0.29, 0.015
+19650726, -0.03, 0.12, 0.03, 0.015
+19650727, -0.18, -0.01, 0.20, 0.015
+19650728, 0.16, -0.48, 0.86, 0.015
+19650729, 0.72, -0.12, 0.53, 0.015
+19650730, 0.67, 0.08, -0.03, 0.015
+19650802, 0.20, 0.21, -0.34, 0.015
+19650803, 0.12, 0.05, -0.23, 0.015
+19650804, 0.41, 0.21, 0.10, 0.015
+19650805, 0.02, 0.27, -0.03, 0.015
+19650806, 0.35, 0.01, -0.33, 0.015
+19650809, -0.14, 0.39, -0.12, 0.015
+19650810, 0.04, 0.38, -0.14, 0.015
+19650811, 0.33, 0.13, 0.11, 0.015
+19650812, 0.29, 0.28, -0.09, 0.015
+19650813, 0.43, -0.19, 0.26, 0.015
+19650816, 0.11, -0.08, 0.24, 0.015
+19650817, 0.16, 0.09, -0.27, 0.015
+19650818, 0.02, 0.11, 0.24, 0.015
+19650819, -0.24, -0.30, -0.02, 0.015
+19650820, -0.08, -0.04, 0.20, 0.015
+19650823, -0.13, 0.06, 0.03, 0.015
+19650824, 0.18, 0.22, -0.31, 0.015
+19650825, 0.14, 0.22, -0.26, 0.015
+19650826, 0.37, -0.10, 0.21, 0.015
+19650827, 0.12, 0.23, -0.02, 0.015
+19650830, 0.04, 0.28, -0.08, 0.015
+19650831, -0.05, 0.29, -0.06, 0.015
+19650901, 0.05, 0.06, -0.20, 0.015
+19650902, 0.54, 0.03, 0.05, 0.015
+19650903, 0.46, 0.08, 0.10, 0.015
+19650907, 0.32, 0.13, -0.47, 0.015
+19650908, 0.28, 0.04, -0.15, 0.015
+19650909, 0.24, 0.08, 0.08, 0.015
+19650910, 0.23, 0.08, -0.34, 0.015
+19650913, 0.25, 0.14, -0.15, 0.015
+19650914, -0.44, -0.28, 0.14, 0.015
+19650915, 0.47, -0.12, 0.08, 0.015
+19650916, 0.52, -0.27, 0.48, 0.015
+19650917, 0.03, 0.06, -0.08, 0.015
+19650920, 0.04, 0.16, 0.07, 0.015
+19650921, -0.27, 0.07, -0.06, 0.015
+19650922, 0.47, 0.22, 0.11, 0.015
+19650923, -0.39, -0.29, 0.07, 0.015
+19650924, 0.23, 0.05, 0.60, 0.015
+19650927, 0.58, 0.09, -0.17, 0.015
+19650928, -0.24, 0.27, 0.11, 0.015
+19650929, -0.47, -0.04, -0.14, 0.015
+19650930, -0.07, 0.06, -0.24, 0.015
+19651001, -0.06, 0.17, 0.09, 0.015
+19651004, 0.24, 0.47, 0.07, 0.015
+19651005, 0.56, -0.04, 0.31, 0.015
+19651006, -0.08, -0.10, -0.31, 0.015
+19651007, -0.05, 0.39, -0.01, 0.015
+19651008, 0.48, 0.57, 0.39, 0.015
+19651011, 0.57, 0.19, -0.05, 0.015
+19651012, -0.05, 0.37, -0.16, 0.015
+19651013, 0.01, -0.01, 0.56, 0.015
+19651014, -0.15, 0.38, 0.23, 0.015
+19651015, 0.22, 0.26, 0.04, 0.015
+19651018, 0.27, 0.26, -0.09, 0.015
+19651019, 0.11, 0.00, -0.44, 0.015
+19651020, -0.01, 0.18, 0.11, 0.015
+19651021, 0.15, 0.25, -0.03, 0.015
+19651022, -0.05, -0.17, -0.05, 0.015
+19651025, -0.40, -0.35, 0.07, 0.015
+19651026, 0.50, -0.13, 0.23, 0.015
+19651027, 0.36, -0.22, 0.20, 0.015
+19651028, -0.31, 0.00, 0.14, 0.015
+19651029, 0.26, -0.07, 0.19, 0.015
+19651101, -0.10, -0.08, 0.27, 0.017
+19651103, 0.10, 0.24, -0.26, 0.017
+19651104, 0.19, 0.10, -0.16, 0.017
+19651105, 0.11, 0.29, -0.33, 0.017
+19651108, -0.34, 0.12, -0.27, 0.017
+19651109, -0.24, 0.19, 0.31, 0.017
+19651110, -0.09, 0.16, -0.03, 0.017
+19651111, 0.27, 0.13, -0.06, 0.017
+19651112, 0.49, 0.49, -0.32, 0.017
+19651115, 0.11, 0.58, -0.24, 0.017
+19651116, -0.13, 0.42, -0.04, 0.017
+19651117, 0.15, -0.67, 0.14, 0.017
+19651118, -0.35, 0.54, 0.12, 0.017
+19651119, 0.03, 0.34, 0.10, 0.017
+19651122, -0.53, 0.28, 0.10, 0.017
+19651123, 0.17, 0.18, 0.03, 0.017
+19651124, 0.19, 0.29, 0.17, 0.017
+19651126, 0.26, 0.45, 0.19, 0.017
+19651129, -0.15, 0.42, 0.28, 0.017
+19651130, -0.15, 0.12, 0.19, 0.017
+19651201, -0.03, 0.34, 0.29, 0.015
+19651202, -0.24, 0.31, 0.06, 0.015
+19651203, 0.07, 0.20, -0.19, 0.015
+19651206, -0.79, -0.33, -0.31, 0.015
+19651207, 0.95, 0.56, 0.35, 0.015
+19651208, -0.07, 0.43, -0.25, 0.015
+19651209, 0.29, 0.45, -0.15, 0.015
+19651210, 0.28, 0.21, -0.06, 0.015
+19651213, 0.10, 0.47, -0.13, 0.015
+19651214, 0.06, -0.21, 0.46, 0.015
+19651215, 0.18, -0.08, 0.73, 0.015
+19651216, 0.16, 0.09, 0.49, 0.015
+19651217, 0.04, 0.12, 0.69, 0.015
+19651220, -0.53, -0.25, 0.04, 0.015
+19651221, 0.34, -0.04, 0.51, 0.015
+19651222, 0.16, -0.91, 0.20, 0.015
+19651223, -0.16, -0.02, -0.29, 0.015
+19651227, -0.66, 0.06, -0.15, 0.015
+19651228, -0.05, -0.06, -0.18, 0.015
+19651229, 0.29, 0.38, -0.03, 0.015
+19651230, 0.36, 0.26, -0.27, 0.015
+19651231, 0.26, 0.05, 0.14, 0.015
+19660103, -0.22, 0.57, 0.29, 0.018
+19660104, 0.10, 0.32, 0.18, 0.018
+19660105, 0.57, -0.31, 0.71, 0.018
+19660106, 0.18, -0.37, 0.55, 0.018
+19660107, 0.10, 0.11, -0.07, 0.018
+19660110, 0.20, 0.29, 0.06, 0.018
+19660111, 0.05, 0.38, -0.29, 0.018
+19660112, -0.15, 0.34, -0.07, 0.018
+19660113, 0.22, 0.42, 0.27, 0.018
+19660114, 0.15, 0.00, 0.12, 0.018
+19660117, 0.33, 0.33, 0.15, 0.018
+19660118, 0.18, 0.05, 0.09, 0.018
+19660119, -0.28, 0.01, 0.12, 0.018
+19660120, -0.29, 0.29, 0.13, 0.018
+19660121, 0.08, 0.16, -0.24, 0.018
+19660124, 0.25, 0.27, 0.33, 0.018
+19660125, 0.18, 0.11, 0.43, 0.018
+19660126, -0.12, 0.19, 0.10, 0.018
+19660127, -0.03, 0.12, 0.33, 0.018
+19660128, -0.33, 0.45, 0.09, 0.018
+19660131, -0.45, 0.19, -0.22, 0.018
+19660201, -0.81, -0.82, -0.43, 0.018
+19660202, 0.40, 0.21, 0.43, 0.018
+19660203, 0.15, 0.10, -0.32, 0.018
+19660204, 0.59, -0.11, 0.48, 0.018
+19660207, 0.34, 0.20, 0.28, 0.018
+19660208, -0.03, -0.25, 0.09, 0.018
+19660209, 0.57, 0.65, -0.02, 0.018
+19660210, -0.17, 0.48, 0.00, 0.018
+19660211, 0.01, 0.49, -0.01, 0.018
+19660214, -0.11, 0.31, 0.18, 0.018
+19660215, -0.43, 0.00, 0.29, 0.018
+19660216, 0.03, 0.38, -0.11, 0.018
+19660217, -0.51, 0.18, -0.31, 0.018
+19660218, -0.22, 0.55, 0.16, 0.018
+19660221, -0.56, 0.37, -0.09, 0.018
+19660223, -0.42, 0.24, -0.15, 0.018
+19660224, -0.52, 0.14, 0.24, 0.018
+19660225, 0.32, 0.44, -0.14, 0.018
+19660228, 0.16, 0.96, -0.21, 0.018
+19660301, -1.29, -0.17, -0.21, 0.017
+19660302, -1.03, -0.11, -0.17, 0.017
+19660303, 0.39, 0.64, 0.16, 0.017
+19660304, -0.28, 0.30, -0.34, 0.017
+19660307, -1.29, -0.36, -0.16, 0.017
+19660308, 0.04, -0.48, -0.30, 0.017
+19660309, 0.89, 0.44, -0.11, 0.017
+19660310, -0.01, -0.29, -0.22, 0.017
+19660311, -0.08, 0.27, 0.32, 0.017
+19660314, -1.11, -0.32, -0.40, 0.017
+19660315, -0.74, -1.18, -0.31, 0.017
+19660316, 0.54, -0.02, 0.04, 0.017
+19660317, 0.31, -0.06, 0.28, 0.017
+19660318, 0.48, 0.25, 0.49, 0.017
+19660321, 0.82, 0.52, 0.55, 0.017
+19660322, 0.27, 0.11, 0.06, 0.017
+19660323, -0.32, 0.41, -0.46, 0.017
+19660324, 0.18, 0.36, -0.54, 0.017
+19660325, 0.33, 0.39, -0.50, 0.017
+19660328, 0.16, 0.47, 0.53, 0.017
+19660329, -0.41, -0.15, -0.31, 0.017
+19660330, -0.87, -0.01, -0.25, 0.017
+19660331, 0.55, -0.07, -0.32, 0.017
+19660401, 0.76, -0.15, 0.19, 0.017
+19660404, 0.90, -0.07, 0.70, 0.017
+19660405, 0.58, 0.01, 0.57, 0.017
+19660406, 0.25, 0.16, 0.02, 0.017
+19660407, 0.30, 0.68, -0.45, 0.017
+19660411, 0.10, 0.87, -0.61, 0.017
+19660412, -0.29, 0.28, -0.10, 0.017
+19660413, 0.09, 0.55, -0.22, 0.017
+19660414, 0.30, -0.12, 0.07, 0.017
+19660415, 0.09, 0.19, 0.34, 0.017
+19660418, -0.43, -0.07, 0.40, 0.017
+19660419, 0.02, 0.65, 0.12, 0.017
+19660420, 0.51, 0.19, 0.05, 0.017
+19660421, 0.34, -0.10, -0.11, 0.017
+19660422, -0.20, -0.30, 0.13, 0.017
+19660425, -0.18, 0.09, -0.02, 0.017
+19660426, -0.11, 0.01, -0.28, 0.017
+19660427, -0.29, 0.25, -0.37, 0.017
+19660428, -0.67, -0.13, -0.36, 0.017
+19660429, 0.02, 0.53, -0.30, 0.017
+19660502, -0.11, -0.08, -0.15, 0.020
+19660503, -1.12, -0.55, -0.13, 0.020
+19660504, -0.55, -0.32, 0.26, 0.020
+19660505, -1.74, -1.24, -0.04, 0.020
+19660506, -0.27, -1.21, 0.47, 0.020
+19660509, -1.60, -0.48, -0.28, 0.020
+19660510, 0.86, 0.13, -0.29, 0.020
+19660511, 0.18, 0.08, -0.28, 0.020
+19660512, -1.26, -0.70, -0.29, 0.020
+19660513, -0.96, -0.77, -0.17, 0.020
+19660516, -1.50, -1.23, -0.27, 0.020
+19660517, -0.92, -1.12, -0.37, 0.020
+19660518, 1.88, 0.88, 0.39, 0.020
+19660519, -0.12, 0.10, -0.38, 0.020
+19660520, 0.50, 0.21, -0.05, 0.020
+19660523, 0.89, 0.59, -0.35, 0.020
+19660524, 0.73, 0.57, 0.12, 0.020
+19660525, 0.39, 0.15, 0.15, 0.020
+19660526, 0.04, -0.25, 0.25, 0.020
+19660527, 0.30, 0.27, -0.10, 0.020
+19660531, -1.34, 0.01, -0.13, 0.020
+19660601, -0.01, -0.09, -0.19, 0.017
+19660602, -0.06, 0.20, 0.17, 0.017
+19660603, 0.11, 0.03, 0.18, 0.017
+19660606, -0.74, -0.20, -0.05, 0.017
+19660607, -0.70, -0.25, -0.14, 0.017
+19660608, 0.15, 0.18, 0.23, 0.017
+19660609, 0.72, 0.45, -0.17, 0.017
+19660610, 1.09, 0.22, 0.75, 0.017
+19660613, 0.48, 0.42, 0.10, 0.017
+19660614, 0.33, 0.23, -0.24, 0.017
+19660615, -0.38, 0.48, -0.17, 0.017
+19660616, -0.23, 0.37, -0.14, 0.017
+19660617, 0.01, 0.17, -0.25, 0.017
+19660620, -0.05, -0.03, 0.04, 0.017
+19660621, 0.35, 0.29, 0.01, 0.017
+19660622, 0.18, 0.35, 0.01, 0.017
+19660623, -0.40, -0.37, 0.28, 0.017
+19660624, 0.01, -0.25, 0.46, 0.017
+19660627, -0.63, -0.28, -0.02, 0.017
+19660628, -0.48, 0.01, -0.11, 0.017
+19660629, -1.01, -0.30, -0.19, 0.017
+19660630, -0.18, -0.58, -0.03, 0.017
+19660701, 0.99, 0.24, -0.23, 0.018
+19660705, 0.13, 0.03, 0.01, 0.018
+19660706, 1.39, -0.33, -0.50, 0.018
+19660707, 0.35, 0.05, -0.04, 0.018
+19660708, 0.16, 0.11, 0.16, 0.018
+19660711, -0.15, 0.18, -0.07, 0.018
+19660712, -0.50, 0.22, 0.15, 0.018
+19660713, -0.62, 0.21, 0.11, 0.018
+19660714, 0.55, -0.03, -0.31, 0.018
+19660715, 0.29, -0.02, 0.19, 0.018
+19660718, -0.13, -0.15, 0.19, 0.018
+19660719, -0.73, -0.09, 0.18, 0.018
+19660720, -0.89, 0.29, 0.20, 0.018
+19660721, -0.04, -0.22, 0.08, 0.018
+19660722, -0.11, 0.14, 0.19, 0.018
+19660725, -1.93, -0.46, 0.33, 0.018
+19660726, -0.26, -0.70, 0.04, 0.018
+19660727, 0.48, 0.07, 0.11, 0.018
+19660728, -0.36, 0.09, 0.03, 0.018
+19660729, -0.20, -0.08, 0.15, 0.018
+19660801, -1.53, -0.29, 0.27, 0.018
+19660802, 0.04, -0.27, -0.12, 0.018
+19660803, 0.99, 0.11, -0.34, 0.018
+19660804, 0.91, -0.41, 0.27, 0.018
+19660805, 0.13, 0.19, -0.32, 0.018
+19660808, -0.18, -0.12, -0.20, 0.018
+19660809, -0.19, 0.35, -0.20, 0.018
+19660810, -0.42, -0.03, -0.07, 0.018
+19660811, -0.06, 0.18, -0.51, 0.018
+19660812, 0.23, 0.25, -0.35, 0.018
+19660815, -0.49, 0.18, -0.01, 0.018
+19660816, -1.27, -0.02, 0.33, 0.018
+19660817, -0.58, -0.29, -0.03, 0.018
+19660818, -1.27, -0.01, 0.04, 0.018
+19660819, -0.76, -0.50, 0.18, 0.018
+19660822, -1.82, -0.34, 0.27, 0.018
+19660823, -0.13, 0.13, -0.04, 0.018
+19660824, 1.16, -0.15, -0.10, 0.018
+19660825, -1.26, -0.02, 0.59, 0.018
+19660826, -2.23, -0.69, 0.77, 0.018
+19660829, -2.57, -1.19, 0.85, 0.018
+19660830, 1.61, -0.60, -1.09, 0.018
+19660831, 1.62, 0.07, 0.34, 0.018
+19660901, 0.66, -0.26, -0.06, 0.019
+19660902, -0.33, 0.02, 0.23, 0.019
+19660906, -0.52, 0.12, -0.02, 0.019
+19660907, -0.91, -0.50, 0.44, 0.019
+19660908, -0.37, -0.05, 0.14, 0.019
+19660909, 0.31, 0.12, -0.20, 0.019
+19660912, 2.13, -0.06, -0.66, 0.019
+19660913, 0.58, 0.27, -0.05, 0.019
+19660914, 0.90, -0.39, -0.82, 0.019
+19660915, 1.01, -0.44, -0.27, 0.019
+19660916, -0.04, 0.16, -0.01, 0.019
+19660919, -0.47, 0.28, 0.24, 0.019
+19660920, -0.68, 0.33, 0.29, 0.019
+19660921, -1.69, 0.04, 0.79, 0.019
+19660922, 0.21, -0.26, -0.29, 0.019
+19660923, -0.30, 0.13, 0.17, 0.019
+19660926, 0.21, -0.04, -0.28, 0.019
+19660927, 0.28, -0.13, -0.07, 0.019
+19660928, -1.17, 0.17, 0.71, 0.019
+19660929, -1.07, -0.38, 0.43, 0.019
+19660930, 0.28, -0.16, -0.31, 0.019
+19661003, -2.17, -0.29, 1.12, 0.022
+19661004, 0.07, -1.30, 0.20, 0.022
+19661005, -0.58, -0.53, 0.34, 0.022
+19661006, -1.01, -0.99, 0.64, 0.022
+19661007, -1.26, -0.68, 0.71, 0.022
+19661010, 1.69, -0.71, -1.32, 0.022
+19661011, 0.48, -0.02, 0.59, 0.022
+19661012, 2.63, -1.08, -0.25, 0.022
+19661013, -0.01, 0.83, -0.45, 0.022
+19661014, -0.30, 0.28, 0.30, 0.022
+19661017, 1.09, -0.55, -0.42, 0.022
+19661018, 1.62, -0.37, -0.56, 0.022
+19661019, -0.75, 0.29, 0.54, 0.022
+19661020, -0.31, 0.04, 0.03, 0.022
+19661021, 0.31, -0.50, -0.40, 0.022
+19661024, 0.23, -0.27, -0.01, 0.022
+19661025, 0.51, -0.67, 0.00, 0.022
+19661026, 0.85, -0.06, 0.42, 0.022
+19661027, 0.80, -0.48, 0.87, 0.022
+19661028, 0.04, 0.36, 0.31, 0.022
+19661031, -0.04, 0.14, 0.11, 0.022
+19661101, 0.84, -0.02, -0.38, 0.020
+19661102, 0.13, 0.16, -0.64, 0.020
+19661103, -0.32, 0.31, -0.21, 0.020
+19661104, 0.39, -0.05, -0.31, 0.020
+19661107, -0.05, 0.18, -0.20, 0.020
+19661109, 0.82, 0.17, -0.55, 0.020
+19661110, 0.63, 0.37, -0.52, 0.020
+19661111, 0.10, 0.59, -0.12, 0.020
+19661114, -0.53, 0.38, -0.03, 0.020
+19661115, 0.41, 0.09, -0.30, 0.020
+19661116, 0.86, 0.27, -0.11, 0.020
+19661117, -0.66, 0.44, 0.15, 0.020
+19661118, -0.61, 0.30, 0.06, 0.020
+19661121, -1.37, -0.03, 0.07, 0.020
+19661122, -0.50, -0.09, -0.25, 0.020
+19661123, 0.76, 0.22, -0.38, 0.020
+19661125, 0.79, 0.17, 0.05, 0.020
+19661128, -0.04, 0.11, -0.39, 0.020
+19661129, -0.29, 0.26, -0.22, 0.020
+19661130, 0.08, 0.25, -0.16, 0.020
+19661201, -0.39, 0.33, -0.21, 0.019
+19661202, 0.03, 0.12, -0.06, 0.019
+19661205, 0.07, -0.02, -0.35, 0.019
+19661206, 0.68, -0.34, -0.18, 0.019
+19661207, 1.01, -0.15, -0.61, 0.019
+19661208, 0.37, 0.18, -0.22, 0.019
+19661209, 0.22, 0.19, -0.21, 0.019
+19661212, 0.98, 0.04, -0.39, 0.019
+19661213, -0.28, 0.10, -0.01, 0.019
+19661214, -0.01, 0.73, -0.59, 0.019
+19661215, -1.04, 0.44, 0.35, 0.019
+19661216, 0.02, 0.34, 0.08, 0.019
+19661219, -0.27, 0.13, -0.20, 0.019
+19661220, -0.39, -0.14, 0.24, 0.019
+19661221, 0.52, 0.08, 0.25, 0.019
+19661222, 0.38, 0.09, 0.50, 0.019
+19661223, -0.25, 0.17, 0.49, 0.019
+19661227, -0.54, 0.10, 0.39, 0.019
+19661228, -0.48, -0.27, 0.11, 0.019
+19661229, -0.39, -0.36, 0.06, 0.019
+19661230, -0.08, 0.10, -0.53, 0.019
+19670103, 0.08, 0.92, 0.71, 0.020
+19670104, 0.16, -0.12, 0.25, 0.020
+19670105, 1.30, 0.53, 0.33, 0.020
+19670106, 0.72, 0.68, 0.14, 0.020
+19670109, 0.84, 0.52, 0.36, 0.020
+19670110, 0.00, 0.24, 0.13, 0.020
+19670111, 0.84, 0.18, 0.59, 0.020
+19670112, 0.54, 0.13, 0.24, 0.020
+19670113, 0.68, 0.17, -0.09, 0.020
+19670116, -0.19, 0.34, 0.23, 0.020
+19670117, 1.13, 0.01, -0.33, 0.020
+19670118, 0.52, -0.20, 0.09, 0.020
+19670119, 0.04, 0.20, 0.31, 0.020
+19670120, 0.37, 1.02, -0.13, 0.020
+19670123, 0.34, 0.31, -0.44, 0.020
+19670124, 0.20, 0.35, -0.30, 0.020
+19670125, -0.69, 0.40, -0.21, 0.020
+19670126, 0.03, 0.51, -0.03, 0.020
+19670127, 0.48, 0.46, -0.27, 0.020
+19670130, 0.56, 0.58, 0.07, 0.020
+19670131, -0.08, 0.19, 0.37, 0.020
+19670201, -0.15, 0.32, 0.03, 0.019
+19670202, 0.34, 0.38, 0.18, 0.019
+19670203, 0.71, 0.50, -0.01, 0.019
+19670206, -0.15, 0.24, 0.25, 0.019
+19670207, -0.18, 0.12, -0.28, 0.019
+19670208, 0.88, 0.33, -0.45, 0.019
+19670209, -0.39, -0.33, -0.14, 0.019
+19670210, 0.26, 0.31, -0.13, 0.019
+19670213, 0.14, 0.40, 0.11, 0.019
+19670214, 0.73, 0.12, -0.06, 0.019
+19670215, 0.05, -0.10, -0.35, 0.019
+19670216, -0.43, 0.24, -0.12, 0.019
+19670217, 0.02, 0.04, 0.03, 0.019
+19670220, -0.50, 0.29, -0.09, 0.019
+19670221, 0.00, 0.47, -0.37, 0.019
+19670223, 0.13, 0.00, -0.03, 0.019
+19670224, 0.08, 0.03, -0.02, 0.019
+19670227, -1.10, -0.34, -0.09, 0.019
+19670228, 0.38, 0.29, -0.58, 0.019
+19670301, 0.98, 0.04, -0.05, 0.018
+19670302, 0.52, -0.03, -0.22, 0.018
+19670303, 0.16, 0.27, -0.40, 0.018
+19670306, -0.13, 0.35, 0.29, 0.018
+19670307, 0.16, 0.34, -0.07, 0.018
+19670308, 0.17, 0.31, -0.26, 0.018
+19670309, 0.29, 0.30, 0.01, 0.018
+19670310, 0.37, -0.29, 0.69, 0.018
+19670313, -0.48, 0.00, -0.08, 0.018
+19670314, -0.11, 0.11, -0.19, 0.018
+19670315, 0.89, -0.31, 0.35, 0.018
+19670316, 0.90, -0.39, -0.26, 0.018
+19670317, 0.13, 0.12, -0.07, 0.018
+19670320, -0.01, 0.23, -0.15, 0.018
+19670321, -0.29, -0.07, 0.04, 0.018
+19670322, 0.28, 0.08, -0.16, 0.018
+19670323, 0.68, -0.19, 0.26, 0.018
+19670327, -0.06, 0.22, -0.21, 0.018
+19670328, 0.09, 0.01, 0.15, 0.018
+19670329, -0.13, 0.06, 0.13, 0.018
+19670330, 0.04, 0.30, -0.10, 0.018
+19670331, -0.51, 0.08, 0.58, 0.018
+19670403, -1.13, -0.16, 0.18, 0.016
+19670404, 0.01, 0.37, -0.29, 0.016
+19670405, 0.63, 0.04, 0.05, 0.016
+19670406, 0.20, -0.04, 0.14, 0.016
+19670407, -0.62, -0.25, 0.43, 0.016
+19670410, -1.24, -0.55, 0.38, 0.016
+19670411, 0.71, 0.25, -0.11, 0.016
+19670412, -0.11, 0.10, 0.12, 0.016
+19670413, 0.65, 0.05, -0.35, 0.016
+19670414, 1.01, -0.19, -0.79, 0.016
+19670417, 0.64, -0.26, -0.07, 0.016
+19670418, 0.85, 0.13, -0.09, 0.016
+19670419, 0.12, -0.07, -0.11, 0.016
+19670420, 0.19, 0.26, -0.26, 0.016
+19670421, 0.26, 0.43, -0.21, 0.016
+19670424, 0.27, -0.28, -0.27, 0.016
+19670425, 0.55, -0.17, -0.20, 0.016
+19670426, -0.12, 0.28, -0.43, 0.016
+19670427, 0.81, 0.20, -0.55, 0.016
+19670428, 0.15, 0.30, 0.06, 0.016
+19670501, -0.08, 0.39, -0.24, 0.015
+19670502, -0.02, 0.52, 0.06, 0.015
+19670503, 0.28, 0.51, -0.10, 0.015
+19670504, 0.33, -0.08, -0.27, 0.015
+19670505, 0.12, -0.05, 0.37, 0.015
+19670508, 0.21, -0.33, 0.19, 0.015
+19670509, -1.04, -0.48, 0.67, 0.015
+19670510, -0.13, 0.46, 0.04, 0.015
+19670511, 0.49, 0.59, -0.29, 0.015
+19670512, -0.20, 0.41, -0.10, 0.015
+19670515, -0.74, 0.26, 0.19, 0.015
+19670516, 0.48, 0.16, -0.12, 0.015
+19670517, -0.27, 0.22, 0.24, 0.015
+19670518, -0.19, 0.43, 0.17, 0.015
+19670519, -0.42, 0.20, -0.13, 0.015
+19670522, -0.34, 0.28, -0.22, 0.015
+19670523, -0.43, 0.08, -0.15, 0.015
+19670524, -1.20, -0.42, 0.18, 0.015
+19670525, 0.99, -0.07, -0.22, 0.015
+19670526, -0.11, -0.13, 0.35, 0.015
+19670529, -0.48, 0.23, -0.07, 0.015
+19670531, -1.67, -0.95, 0.06, 0.015
+19670601, 1.18, 0.00, -0.13, 0.012
+19670602, -0.40, 0.44, -0.02, 0.012
+19670605, -1.65, -1.37, 0.09, 0.012
+19670606, 2.02, 0.79, -0.32, 0.012
+19670607, 0.86, 0.43, 0.08, 0.012
+19670608, 0.57, 0.35, -0.05, 0.012
+19670609, 0.26, 0.41, 0.10, 0.012
+19670612, 0.63, 0.51, -0.23, 0.012
+19670613, 0.60, 0.03, 0.05, 0.012
+19670614, -0.17, 0.40, -0.09, 0.012
+19670615, 0.17, 0.47, -0.03, 0.012
+19670616, 0.03, 0.13, 0.19, 0.012
+19670619, 0.03, 0.47, -0.18, 0.012
+19670620, -0.03, 0.32, 0.11, 0.012
+19670621, -0.25, 0.24, 0.06, 0.012
+19670622, -0.20, 0.41, -0.09, 0.012
+19670623, 0.07, 0.38, 0.15, 0.012
+19670626, -0.40, -0.05, 0.25, 0.012
+19670627, -0.34, 0.41, 0.13, 0.012
+19670628, 0.07, 0.56, 0.15, 0.012
+19670629, -0.47, -0.15, 0.32, 0.012
+19670630, -0.14, 0.54, 0.34, 0.012
+19670703, 0.35, 0.36, -0.02, 0.016
+19670705, 0.53, 0.27, -0.22, 0.016
+19670706, -0.06, 0.31, -0.26, 0.016
+19670707, 0.47, 0.57, -0.09, 0.016
+19670710, 0.46, 0.27, 0.20, 0.016
+19670711, 0.43, -0.31, 0.17, 0.016
+19670712, -0.03, 0.20, 0.01, 0.016
+19670713, 0.06, 0.39, 0.12, 0.016
+19670714, 0.37, 0.31, 0.48, 0.016
+19670717, 0.07, 0.06, 0.38, 0.016
+19670718, 0.71, -0.32, 0.66, 0.016
+19670719, 0.09, -0.02, 0.44, 0.016
+19670720, 0.14, -0.34, 0.48, 0.016
+19670721, 0.04, -0.30, 0.18, 0.016
+19670724, -0.37, -0.33, 0.19, 0.016
+19670725, 0.02, 0.36, 0.13, 0.016
+19670726, 0.42, 0.25, -0.20, 0.016
+19670727, 0.34, 0.53, -0.16, 0.016
+19670728, 0.17, 0.36, 0.15, 0.016
+19670731, 0.28, 0.31, -0.17, 0.016
+19670801, 0.62, -0.44, 0.53, 0.014
+19670802, 0.34, -0.46, 0.23, 0.014
+19670803, -0.18, 0.02, -0.23, 0.014
+19670804, 0.26, 0.53, -0.18, 0.014
+19670807, -0.16, 0.17, 0.07, 0.014
+19670808, 0.09, -0.11, 0.40, 0.014
+19670809, 0.11, -0.02, 0.21, 0.014
+19670810, -0.27, -0.05, 0.11, 0.014
+19670811, -0.48, -0.01, 0.14, 0.014
+19670814, -0.50, -0.27, -0.07, 0.014
+19670815, 0.11, 0.01, 0.06, 0.014
+19670816, -0.25, -0.10, 0.07, 0.014
+19670817, 0.13, 0.31, 0.13, 0.014
+19670818, 0.17, 0.21, -0.04, 0.014
+19670821, -0.50, 0.21, -0.01, 0.014
+19670822, -0.54, -0.02, 0.21, 0.014
+19670823, -0.10, -0.02, -0.13, 0.014
+19670824, -0.52, 0.15, 0.04, 0.014
+19670825, -0.42, -0.19, -0.01, 0.014
+19670828, 0.03, 0.15, 0.00, 0.014
+19670829, 0.25, -0.12, 0.25, 0.014
+19670830, 0.28, 0.43, -0.22, 0.014
+19670831, 0.65, 0.07, -0.08, 0.014
+19670901, 0.15, 0.37, 0.05, 0.016
+19670905, 0.53, -0.08, -0.03, 0.016
+19670906, 0.17, 0.20, -0.14, 0.016
+19670907, -0.06, 0.11, 0.05, 0.016
+19670908, 0.01, 0.47, -0.35, 0.016
+19670911, 0.15, 0.24, -0.32, 0.016
+19670912, 0.49, -0.03, -0.01, 0.016
+19670913, 0.97, -0.49, 0.30, 0.016
+19670914, 0.14, 0.04, 0.12, 0.016
+19670915, 0.06, 0.13, -0.12, 0.016
+19670918, 0.26, 0.19, 0.03, 0.016
+19670919, -0.44, -0.10, -0.20, 0.016
+19670920, 0.05, 0.61, -0.02, 0.016
+19670921, 0.56, -0.06, -0.35, 0.016
+19670922, 0.28, 0.41, -0.10, 0.016
+19670925, 0.49, -0.18, -0.49, 0.016
+19670926, -0.87, -0.19, 0.23, 0.016
+19670927, 0.05, 0.38, -0.40, 0.016
+19670928, 0.07, 0.42, -0.59, 0.016
+19670929, -0.01, 0.55, 0.00, 0.016
+19671002, -0.40, 0.24, 0.01, 0.018
+19671003, 0.32, 0.26, -0.51, 0.018
+19671004, -0.13, 0.28, -0.24, 0.018
+19671005, 0.20, 0.22, -0.29, 0.018
+19671006, 0.57, 0.33, -0.41, 0.018
+19671009, 0.20, 0.21, -0.02, 0.018
+19671010, -0.73, -0.29, 0.40, 0.018
+19671011, -0.45, -0.04, -0.08, 0.018
+19671012, -0.61, 0.09, -0.03, 0.018
+19671013, 0.22, 0.33, 0.09, 0.018
+19671016, -0.81, -0.03, -0.02, 0.018
+19671017, -0.19, 0.16, -0.21, 0.018
+19671018, 0.24, 0.11, -0.07, 0.018
+19671019, 0.09, -0.09, -0.58, 0.018
+19671020, -0.12, -0.23, -0.21, 0.018
+19671023, -0.48, -0.21, -0.29, 0.018
+19671024, -0.57, -0.33, -0.01, 0.018
+19671025, 0.14, 0.01, -0.35, 0.018
+19671026, 0.43, 0.45, -0.70, 0.018
+19671027, 0.02, 0.02, -0.04, 0.018
+19671030, -0.17, 0.19, -0.17, 0.018
+19671031, -0.90, -0.22, 0.23, 0.018
+19671101, -1.22, 0.27, -0.08, 0.018
+19671102, -0.49, -0.17, -0.09, 0.018
+19671103, -0.48, 0.49, -0.25, 0.018
+19671106, -0.31, 0.11, -0.24, 0.018
+19671108, -0.38, 0.14, 0.20, 0.018
+19671109, 0.41, -0.37, -0.09, 0.018
+19671110, 0.58, -0.14, 0.09, 0.018
+19671113, -0.31, -0.60, 0.28, 0.018
+19671114, -0.73, -0.90, 0.44, 0.018
+19671115, 0.41, -0.53, -0.24, 0.018
+19671116, 0.95, 0.29, -0.52, 0.018
+19671117, 0.35, 0.64, -0.17, 0.018
+19671120, -1.39, -0.96, -0.04, 0.018
+19671121, 1.71, 0.97, -0.56, 0.018
+19671122, 0.66, 0.53, -0.50, 0.018
+19671124, 0.21, -0.18, -0.14, 0.018
+19671127, 0.35, 0.33, -0.43, 0.018
+19671128, 0.50, 0.12, 0.13, 0.018
+19671129, 0.05, 0.19, 0.22, 0.018
+19671130, -0.45, 0.00, 0.25, 0.018
+19671201, 0.54, 0.55, -0.13, 0.017
+19671204, 0.64, 0.53, -0.08, 0.017
+19671205, 0.11, -0.12, -0.13, 0.017
+19671206, 0.36, 0.13, -0.16, 0.017
+19671207, -0.09, 0.06, 0.38, 0.017
+19671208, -0.09, 0.40, -0.30, 0.017
+19671211, -0.17, 0.78, -0.25, 0.017
+19671212, -0.01, 0.50, -0.36, 0.017
+19671213, 0.43, 0.44, -0.48, 0.017
+19671214, 0.16, 0.39, 0.23, 0.017
+19671215, -0.57, -0.18, 0.51, 0.017
+19671218, -0.29, 0.36, -0.08, 0.017
+19671219, -0.10, 0.29, -0.32, 0.017
+19671220, 0.57, -0.04, 0.02, 0.017
+19671221, 0.25, 0.20, 0.14, 0.017
+19671222, -0.12, 0.42, 0.34, 0.017
+19671226, 0.15, 0.31, 0.27, 0.017
+19671227, 0.67, 0.13, -0.22, 0.017
+19671228, -0.05, -0.09, 0.27, 0.017
+19671229, 0.64, 0.24, 0.02, 0.017
+19680102, -0.26, 0.23, 1.20, 0.018
+19680103, -0.56, -0.09, 0.84, 0.018
+19680104, -0.30, -0.02, 0.71, 0.018
+19680105, 0.64, 0.52, 0.42, 0.018
+19680108, 0.70, 0.12, 0.17, 0.018
+19680109, -0.15, -0.04, -0.06, 0.018
+19680110, 0.14, 0.33, 0.05, 0.018
+19680111, 0.26, 0.89, 0.26, 0.018
+19680112, 0.20, 0.71, -0.15, 0.018
+19680115, -0.15, 0.51, -0.07, 0.018
+19680116, -0.56, 0.54, 0.23, 0.018
+19680117, -0.10, 0.67, -0.08, 0.018
+19680118, -0.01, 0.59, 0.13, 0.018
+19680119, -0.34, 0.09, -0.16, 0.018
+19680122, -1.38, -0.44, 0.25, 0.018
+19680123, -0.51, -0.13, -0.30, 0.018
+19680124, -0.41, 0.24, 0.09, 0.018
+19680125, 0.05, -0.27, -0.02, 0.018
+19680126, 0.21, 0.67, 0.02, 0.018
+19680129, -0.16, 0.02, 0.03, 0.018
+19680130, -0.56, -0.73, 0.75, 0.018
+19680131, -0.83, -0.39, 0.48, 0.018
+19680201, 0.28, -0.51, 0.29, 0.020
+19680202, -0.34, -0.07, 0.36, 0.020
+19680205, -0.47, -0.37, 0.28, 0.020
+19680206, 0.07, -0.10, 0.09, 0.020
+19680207, 0.15, -0.01, 0.04, 0.020
+19680208, -1.42, -0.96, 0.07, 0.020
+19680209, -1.19, -0.68, 0.17, 0.020
+19680213, -1.05, -0.89, 0.28, 0.020
+19680214, 1.25, 0.35, -0.77, 0.020
+19680215, 0.24, 0.54, 0.24, 0.020
+19680216, -0.39, 0.02, 0.34, 0.020
+19680219, 0.35, 0.17, -0.36, 0.020
+19680220, 0.62, 0.44, -0.23, 0.020
+19680221, 0.42, 0.27, -0.47, 0.020
+19680223, -0.48, -0.25, 0.24, 0.020
+19680226, -0.79, -0.62, 0.23, 0.020
+19680227, 0.40, -0.02, -0.11, 0.020
+19680228, -0.54, 0.14, 0.11, 0.020
+19680229, -0.88, -0.44, 0.31, 0.020
+19680301, -0.45, -0.66, 0.21, 0.018
+19680304, -1.55, -1.13, 0.96, 0.018
+19680305, -0.42, -0.97, -0.18, 0.018
+19680306, 1.80, 0.57, -0.25, 0.018
+19680307, -0.16, 0.49, 0.01, 0.018
+19680308, -0.10, -0.12, 0.04, 0.018
+19680311, 1.35, 0.54, -0.29, 0.018
+19680312, 0.18, 0.55, -0.21, 0.018
+19680313, -0.18, 0.34, 0.19, 0.018
+19680314, -2.09, -0.89, 0.19, 0.018
+19680315, 0.77, -0.38, -0.37, 0.018
+19680318, 0.65, 0.59, -0.41, 0.018
+19680319, -0.64, 0.06, 0.28, 0.018
+19680320, -0.08, -0.07, -0.16, 0.018
+19680321, -0.81, -0.25, 0.23, 0.018
+19680322, 0.01, -0.35, 0.17, 0.018
+19680325, -0.13, -0.19, 0.02, 0.018
+19680326, 0.66, 0.23, -0.44, 0.018
+19680327, 0.85, 0.27, -0.50, 0.018
+19680328, -0.08, 0.10, 0.12, 0.018
+19680329, 0.70, 0.11, -0.32, 0.018
+19680401, 2.38, -0.46, -0.79, 0.021
+19680402, 0.20, 0.14, 0.08, 0.021
+19680403, 0.87, -0.17, -0.21, 0.021
+19680404, 0.46, 0.15, 0.14, 0.021
+19680405, -0.54, 0.33, 0.09, 0.021
+19680408, 1.73, 0.00, -0.10, 0.021
+19680410, 0.73, 0.01, -0.14, 0.021
+19680411, 0.95, 0.15, 0.26, 0.021
+19680415, 0.20, 0.60, -0.04, 0.021
+19680416, 0.15, 0.78, 0.05, 0.021
+19680417, 0.30, 0.54, 0.41, 0.021
+19680418, 0.31, 0.40, 0.50, 0.021
+19680419, -1.23, 0.14, -0.45, 0.021
+19680422, -0.49, 0.39, -0.26, 0.021
+19680423, 1.28, 0.53, -0.51, 0.021
+19680424, 0.27, 0.49, -0.02, 0.021
+19680425, 0.34, 0.39, -0.06, 0.021
+19680426, 0.34, 0.26, -0.13, 0.021
+19680429, 0.30, 0.16, 0.06, 0.021
+19680430, 0.14, 0.29, 0.25, 0.021
+19680501, 0.32, 0.09, 0.21, 0.020
+19680502, 0.62, -0.01, -0.14, 0.020
+19680503, 0.08, 0.00, -0.38, 0.020
+19680506, -0.18, 0.24, 0.24, 0.020
+19680507, 0.57, 0.30, 0.35, 0.020
+19680508, 0.06, 0.43, -0.18, 0.020
+19680509, -0.52, -0.11, -0.08, 0.020
+19680510, 0.34, 0.71, 0.10, 0.020
+19680513, -0.17, 0.58, -0.06, 0.020
+19680514, -0.07, 0.19, 0.19, 0.020
+19680515, -0.06, 0.28, 0.03, 0.020
+19680516, -0.44, 0.02, 0.41, 0.020
+19680517, -0.59, 0.30, 0.38, 0.020
+19680520, -0.47, 0.04, 0.08, 0.020
+19680521, 0.58, 0.49, -0.07, 0.020
+19680522, 0.32, 0.64, 0.27, 0.020
+19680523, -0.13, 0.46, -0.23, 0.020
+19680524, 0.31, 0.26, 0.32, 0.020
+19680527, -0.04, 0.79, -0.30, 0.020
+19680528, 0.62, 0.18, -0.47, 0.020
+19680529, 0.32, 0.13, -0.02, 0.020
+19680531, 0.76, 0.09, 0.20, 0.020
+19680603, 1.25, -0.06, -0.33, 0.025
+19680604, 0.53, 0.30, 0.32, 0.025
+19680605, -0.47, -0.19, 0.20, 0.025
+19680606, 0.90, 0.42, 0.01, 0.025
+19680607, 0.67, 0.39, -0.17, 0.025
+19680610, 0.10, -0.02, -0.12, 0.025
+19680611, 0.23, 0.20, 0.28, 0.025
+19680613, -0.44, -0.13, -0.23, 0.025
+19680614, -0.16, -0.08, -0.11, 0.025
+19680617, -1.12, -0.43, -0.02, 0.025
+19680618, -0.12, 0.14, -0.06, 0.025
+19680620, 0.51, -0.29, -0.10, 0.025
+19680621, 0.14, -0.15, 0.26, 0.025
+19680624, -0.39, -0.32, 0.32, 0.025
+19680625, -0.44, -0.35, -0.03, 0.025
+19680627, -0.17, 0.04, -0.04, 0.025
+19680628, -0.34, 0.36, 0.43, 0.025
+19680701, -0.23, 0.01, 0.60, 0.028
+19680702, 0.41, 0.35, -0.41, 0.028
+19680703, 1.25, 0.46, -0.53, 0.028
+19680708, 1.06, 0.29, -0.36, 0.028
+19680709, 0.27, 0.00, 0.27, 0.028
+19680711, 0.10, 0.07, 0.37, 0.028
+19680712, -0.06, 0.14, 0.32, 0.028
+19680715, -0.17, 0.19, 0.35, 0.028
+19680716, -0.54, 0.16, 0.40, 0.028
+19680718, -0.35, -0.07, 0.27, 0.028
+19680719, -0.94, -0.24, 1.09, 0.028
+19680722, -1.43, -0.94, 1.42, 0.028
+19680723, -0.25, -0.35, -0.09, 0.028
+19680725, -1.30, -0.18, 0.88, 0.028
+19680726, 0.27, -0.48, 0.22, 0.028
+19680729, -0.88, -0.63, 0.71, 0.028
+19680730, 0.11, -0.06, -0.10, 0.028
+19680801, -0.54, 0.12, -0.05, 0.023
+19680802, -0.56, 0.02, 0.04, 0.023
+19680805, 0.39, 0.38, -0.33, 0.023
+19680806, 0.45, 0.37, -0.10, 0.023
+19680808, -0.25, 0.05, 0.47, 0.023
+19680809, 0.03, -0.10, 0.19, 0.023
+19680812, 0.99, 0.34, -0.48, 0.023
+19680813, 0.45, 0.04, -0.02, 0.023
+19680815, -0.39, 0.48, 0.30, 0.023
+19680816, 0.59, 0.02, 0.03, 0.023
+19680819, 0.34, 0.34, 0.09, 0.023
+19680820, 0.00, 0.21, -0.13, 0.023
+19680822, -0.32, -0.05, -0.11, 0.023
+19680823, 0.03, 0.34, 0.32, 0.023
+19680826, 0.23, -0.21, 0.28, 0.023
+19680827, -0.19, 0.05, 0.17, 0.023
+19680829, -0.12, -0.16, 0.13, 0.023
+19680830, 0.21, 0.08, 0.18, 0.023
+19680903, 0.37, -0.28, 0.27, 0.025
+19680904, 0.61, -0.06, 0.13, 0.025
+19680905, 0.70, -0.02, -0.27, 0.025
+19680906, 0.42, 0.20, -0.45, 0.025
+19680909, 0.13, 0.43, 0.04, 0.025
+19680910, -0.50, 0.08, 0.44, 0.025
+19680912, -0.20, 0.39, 0.08, 0.025
+19680913, 0.37, 0.36, -0.47, 0.025
+19680916, 0.38, 0.05, 0.05, 0.025
+19680917, 0.24, -0.01, -0.08, 0.025
+19680919, 0.16, 0.22, -0.12, 0.025
+19680920, 0.11, -0.03, 0.57, 0.025
+19680923, 0.56, -0.05, -0.21, 0.025
+19680924, 0.37, 0.38, -0.43, 0.025
+19680926, -0.19, 0.13, 0.19, 0.025
+19680927, 0.08, 0.56, 0.25, 0.025
+19680930, 0.42, 0.23, 0.28, 0.025
+19681001, 0.16, 0.37, 0.26, 0.024
+19681003, 0.34, -0.09, 0.47, 0.024
+19681004, 0.26, -0.42, 0.17, 0.024
+19681007, -0.03, -0.17, -0.07, 0.024
+19681008, -0.05, -0.34, 0.19, 0.024
+19681010, -0.42, 0.21, -0.09, 0.024
+19681011, 0.00, 0.38, 0.05, 0.024
+19681014, 0.16, 0.04, 0.05, 0.024
+19681015, 0.19, 0.14, 0.22, 0.024
+19681017, 0.49, -0.05, -0.16, 0.024
+19681018, 0.69, -0.30, -0.04, 0.024
+19681021, 0.14, -0.09, 0.28, 0.024
+19681022, -0.34, 0.12, 0.21, 0.024
+19681024, -0.63, 0.42, 0.32, 0.024
+19681025, 0.31, 0.00, 0.35, 0.024
+19681028, -0.33, -0.12, 0.13, 0.024
+19681029, -0.57, -0.30, 0.12, 0.024
+19681031, 0.05, -0.25, 0.38, 0.024
+19681101, -0.37, -0.14, 0.04, 0.025
+19681104, 0.01, -0.19, -0.42, 0.025
+19681106, 0.18, 0.06, 0.19, 0.025
+19681107, 0.27, -0.22, -0.42, 0.025
+19681108, 0.52, 0.30, 0.03, 0.025
+19681112, 0.74, 0.21, -0.27, 0.025
+19681113, 0.56, 0.32, -0.35, 0.025
+19681114, 0.10, 0.47, -0.18, 0.025
+19681115, 0.56, 0.16, 0.14, 0.025
+19681118, 0.16, -0.02, 0.23, 0.025
+19681119, 0.29, 0.14, 0.11, 0.025
+19681121, -0.05, 0.33, 0.22, 0.025
+19681122, 0.45, 0.28, -0.01, 0.025
+19681125, 0.26, 0.21, -0.05, 0.025
+19681126, 0.66, -0.12, 0.05, 0.025
+19681127, 0.42, 0.35, -0.28, 0.025
+19681129, 0.56, 0.10, 0.12, 0.025
+19681202, -0.19, 0.46, -0.40, 0.024
+19681203, -0.10, 0.16, -0.16, 0.024
+19681205, -0.28, 0.36, 0.15, 0.024
+19681206, 0.26, 0.27, -0.01, 0.024
+19681209, -0.18, 0.65, -0.18, 0.024
+19681210, -0.19, 0.27, 0.09, 0.024
+19681212, -0.05, 0.23, 0.32, 0.024
+19681213, 0.28, 0.17, 0.25, 0.024
+19681216, -0.40, 0.07, 0.06, 0.024
+19681217, -0.46, -0.11, -0.23, 0.024
+19681219, 0.23, -0.08, -0.22, 0.024
+19681220, -0.49, 0.59, -0.04, 0.024
+19681223, -1.05, 0.19, 0.25, 0.024
+19681224, -0.13, 0.13, -0.11, 0.024
+19681226, 0.12, 0.06, 0.13, 0.024
+19681227, -0.39, 0.19, 0.40, 0.024
+19681230, -1.04, -0.49, 0.01, 0.024
+19681231, 0.08, 0.39, -0.25, 0.024
+19690102, 0.08, 0.30, -0.04, 0.024
+19690103, -0.01, -0.05, -0.02, 0.024
+19690106, -1.51, -0.30, 0.46, 0.024
+19690107, -1.37, -1.00, 0.01, 0.024
+19690108, -0.51, -0.37, -0.07, 0.024
+19690109, 0.40, 0.11, 0.02, 0.024
+19690110, -0.30, -0.07, 0.45, 0.024
+19690113, -0.73, -0.94, 0.47, 0.024
+19690114, 0.73, 0.01, -0.23, 0.024
+19690115, 0.60, 0.54, -0.03, 0.024
+19690116, 0.55, 0.30, 0.06, 0.024
+19690117, -0.10, 0.34, -0.09, 0.024
+19690120, -0.20, 0.43, 0.11, 0.024
+19690121, -0.13, 0.09, -0.02, 0.024
+19690122, 0.39, 0.30, -0.21, 0.024
+19690123, 0.52, 0.43, -0.05, 0.024
+19690124, -0.06, 0.07, 0.01, 0.024
+19690127, -0.01, -0.05, 0.19, 0.024
+19690128, 0.02, -0.05, 0.34, 0.024
+19690129, 0.07, -0.28, 0.64, 0.024
+19690130, -0.03, -0.21, 0.07, 0.024
+19690131, 0.37, -0.38, -0.35, 0.024
+19690203, -0.09, -0.07, 0.43, 0.026
+19690204, 0.00, -0.05, 0.29, 0.026
+19690205, 0.14, -0.38, 0.16, 0.026
+19690206, 0.32, -0.35, -0.15, 0.026
+19690207, 0.09, 0.08, -0.16, 0.026
+19690211, 0.08, 0.12, -0.11, 0.026
+19690212, -0.05, 0.01, -0.39, 0.026
+19690213, 0.03, -0.15, -0.22, 0.026
+19690214, -0.11, 0.00, 0.01, 0.026
+19690217, -1.28, -0.54, 0.63, 0.026
+19690218, -1.20, -0.59, -0.04, 0.026
+19690219, -0.81, -0.21, 0.30, 0.026
+19690220, -0.96, -0.42, 0.06, 0.026
+19690224, -1.27, -0.73, 0.32, 0.026
+19690225, -0.75, -0.46, -0.19, 0.026
+19690226, 0.41, -0.13, -0.33, 0.026
+19690227, -0.47, -0.26, 0.23, 0.026
+19690228, -0.05, -0.08, 0.06, 0.026
+19690303, 0.17, -0.34, -0.18, 0.023
+19690304, 0.99, 0.07, 0.14, 0.023
+19690305, 0.33, 0.09, -0.24, 0.023
+19690306, -1.18, -0.29, 0.63, 0.023
+19690307, -0.18, -0.76, 0.40, 0.023
+19690310, 0.35, 0.13, -0.44, 0.023
+19690311, 0.40, 0.19, 0.09, 0.023
+19690312, -0.29, 0.00, 0.22, 0.023
+19690313, -0.71, -0.22, 0.28, 0.023
+19690314, -0.51, -0.34, 0.21, 0.023
+19690317, 0.21, -0.26, -0.59, 0.023
+19690318, 0.29, 0.37, -0.11, 0.023
+19690319, 0.71, 0.06, -0.25, 0.023
+19690320, 0.62, 0.33, -0.12, 0.023
+19690321, -0.20, 0.32, 0.23, 0.023
+19690324, -0.16, 0.11, -0.01, 0.023
+19690325, 0.12, 0.01, -0.24, 0.023
+19690326, 0.64, -0.18, 0.07, 0.023
+19690327, 0.68, 0.12, -0.15, 0.023
+19690328, 0.39, 0.36, -0.30, 0.023
+19690401, -0.14, 0.07, 0.44, 0.025
+19690402, -0.71, -0.25, 0.31, 0.025
+19690403, -0.09, -0.04, 0.16, 0.025
+19690407, -0.88, -0.24, -0.17, 0.025
+19690408, 0.21, -0.10, 0.37, 0.025
+19690409, 0.79, -0.10, -0.43, 0.025
+19690410, 0.45, -0.07, 0.10, 0.025
+19690411, 0.09, 0.08, 0.08, 0.025
+19690414, -0.14, -0.18, 0.03, 0.025
+19690415, -0.10, -0.12, -0.17, 0.025
+19690416, -0.90, 0.04, 0.36, 0.025
+19690417, 0.11, -0.10, 0.08, 0.025
+19690418, 0.38, -0.33, 0.22, 0.025
+19690421, -0.77, -0.27, 0.23, 0.025
+19690422, 0.16, -0.12, -0.31, 0.025
+19690423, 0.10, 0.28, 0.00, 0.025
+19690424, 0.42, -0.04, -0.04, 0.025
+19690425, 0.45, 0.11, -0.08, 0.025
+19690428, 0.34, -0.06, -0.14, 0.025
+19690429, 0.83, 0.23, -0.50, 0.025
+19690430, 0.86, 0.43, -0.50, 0.025
+19690501, -0.10, 0.35, -0.01, 0.023
+19690502, 0.46, -0.04, 0.09, 0.023
+19690505, 0.45, 0.30, -0.27, 0.023
+19690506, 0.45, -0.09, -0.13, 0.023
+19690507, -0.21, -0.17, 0.33, 0.023
+19690508, 0.34, -0.15, -0.21, 0.023
+19690509, 0.09, -0.15, 0.18, 0.023
+19690512, -0.19, -0.18, 0.07, 0.023
+19690513, 0.40, 0.02, -0.18, 0.023
+19690514, 0.68, -0.39, 0.09, 0.023
+19690515, -0.30, 0.06, 0.21, 0.023
+19690516, 0.02, -0.18, -0.17, 0.023
+19690519, -0.87, 0.22, 0.26, 0.023
+19690520, -0.84, 0.13, 0.22, 0.023
+19690521, 0.42, 0.04, -0.17, 0.023
+19690522, 0.19, -0.20, 0.31, 0.023
+19690523, -0.02, -0.06, -0.10, 0.023
+19690526, -0.20, 0.03, -0.05, 0.023
+19690527, -0.79, -0.05, 0.19, 0.023
+19690528, -0.26, 0.18, -0.32, 0.023
+19690529, 0.23, 0.08, 0.11, 0.023
+19690602, -0.54, 0.02, -0.03, 0.024
+19690603, -0.34, -0.30, 0.11, 0.024
+19690604, -0.05, -0.04, -0.05, 0.024
+19690605, 0.08, -0.12, -0.16, 0.024
+19690606, -0.69, -0.11, -0.19, 0.024
+19690609, -0.98, -0.11, -0.26, 0.024
+19690610, -0.79, -0.04, -0.06, 0.024
+19690611, -1.00, -0.34, 0.22, 0.024
+19690612, -1.42, -0.55, 0.29, 0.024
+19690613, 0.31, -0.25, -0.15, 0.024
+19690616, -0.40, -0.44, 0.06, 0.024
+19690617, -0.52, -0.67, -0.23, 0.024
+19690618, -0.22, -0.14, 0.16, 0.024
+19690619, -0.87, -0.79, 0.09, 0.024
+19690620, -0.74, -0.68, 0.53, 0.024
+19690623, -0.65, -0.94, -0.22, 0.024
+19690624, 1.09, -0.08, -0.53, 0.024
+19690625, -0.41, -0.24, 0.26, 0.024
+19690626, 0.17, -0.32, -0.62, 0.024
+19690627, 0.07, 0.02, -0.14, 0.024
+19690630, 0.46, 0.25, -0.17, 0.024
+19690701, 0.46, 0.35, -0.59, 0.025
+19690702, 0.86, 0.37, -0.46, 0.025
+19690703, 0.74, 0.41, -0.35, 0.025
+19690707, -0.68, -0.04, 0.55, 0.025
+19690708, -1.38, 0.04, 0.46, 0.025
+19690709, -0.80, -0.22, 0.10, 0.025
+19690710, -1.61, -0.41, 0.44, 0.025
+19690711, 0.29, -0.60, 0.05, 0.025
+19690714, -1.37, -0.25, 0.69, 0.025
+19690715, -0.43, -0.53, 0.13, 0.025
+19690716, 1.07, 0.08, -0.60, 0.025
+19690717, 0.53, -0.20, -0.07, 0.025
+19690718, -0.78, 0.23, 0.34, 0.025
+19690722, -1.57, 0.11, 0.63, 0.025
+19690723, -0.53, -0.67, -0.42, 0.025
+19690724, -0.42, -0.17, 0.38, 0.025
+19690725, -1.03, -0.29, 0.61, 0.025
+19690728, -2.26, -1.59, 1.47, 0.025
+19690729, -0.93, -0.64, 0.41, 0.025
+19690730, 0.52, 0.13, -1.09, 0.025
+19690731, 2.22, 0.50, -1.26, 0.025
+19690801, 1.97, 0.64, -0.43, 0.024
+19690804, -0.53, -0.02, 0.31, 0.024
+19690805, 0.42, -0.37, -0.41, 0.024
+19690806, 0.65, 0.24, -0.57, 0.024
+19690807, 0.09, -0.05, 0.03, 0.024
+19690808, -0.03, -0.08, 0.19, 0.024
+19690811, -0.59, 0.07, 0.12, 0.024
+19690812, -0.82, -0.19, 0.27, 0.024
+19690813, 0.03, -0.30, -0.51, 0.024
+19690814, 0.75, 0.37, -0.99, 0.024
+19690815, 0.81, -0.19, -0.38, 0.024
+19690818, 0.72, 0.40, -0.60, 0.024
+19690819, 0.54, 0.34, -0.43, 0.024
+19690820, -0.02, -0.06, 0.18, 0.024
+19690821, 0.25, 0.04, -0.27, 0.024
+19690822, 0.65, -0.03, -0.25, 0.024
+19690825, -0.93, 0.20, 0.62, 0.024
+19690826, -0.74, -0.14, 0.15, 0.024
+19690827, 0.27, 0.11, -0.39, 0.024
+19690828, 0.41, -0.21, -0.38, 0.024
+19690829, 0.74, -0.04, 0.00, 0.024
+19690902, -0.11, -0.08, 0.42, 0.030
+19690903, -0.71, -0.17, 0.41, 0.030
+19690904, -0.87, 0.01, -0.15, 0.030
+19690905, -0.65, -0.05, 0.01, 0.030
+19690908, -1.07, -0.15, 0.38, 0.030
+19690909, 0.74, -0.24, -0.46, 0.030
+19690910, 1.64, -0.10, -0.77, 0.030
+19690911, -0.70, 0.50, 0.13, 0.030
+19690912, 0.05, -0.13, -0.13, 0.030
+19690915, 0.62, 0.32, -0.67, 0.030
+19690916, 0.12, 0.19, -0.66, 0.030
+19690917, -0.31, 0.11, -0.44, 0.030
+19690918, 0.28, 0.19, -0.55, 0.030
+19690919, 0.35, 0.40, -0.94, 0.030
+19690922, 0.41, -0.09, -0.67, 0.030
+19690923, -0.01, 0.18, 0.10, 0.030
+19690924, -0.19, -0.11, 0.13, 0.030
+19690925, -0.75, 0.15, 0.66, 0.030
+19690926, -0.70, 0.15, 0.18, 0.030
+19690929, -0.73, 0.12, 0.09, 0.030
+19690930, -0.32, 0.08, -0.38, 0.030
+19691001, -0.63, 0.12, 0.23, 0.026
+19691002, 0.86, -0.08, -0.76, 0.026
+19691003, -0.08, -0.17, 0.18, 0.026
+19691006, 0.17, -0.01, -0.49, 0.026
+19691007, -0.23, 0.05, 0.06, 0.026
+19691008, -0.53, -0.12, 0.11, 0.026
+19691009, 0.33, -0.19, -0.49, 0.026
+19691010, 0.65, 0.26, -0.65, 0.026
+19691013, 1.25, 0.84, -0.72, 0.026
+19691014, 1.28, 0.10, 0.08, 0.026
+19691015, 0.04, 0.55, 0.20, 0.026
+19691016, 0.69, 0.28, -0.08, 0.026
+19691017, -0.09, 0.47, -0.12, 0.026
+19691020, 0.30, 0.36, 0.02, 0.026
+19691021, 0.79, 0.40, -0.22, 0.026
+19691022, 0.61, 0.08, 0.21, 0.026
+19691023, -0.33, 0.05, 0.08, 0.026
+19691024, 0.69, 0.05, -0.88, 0.026
+19691027, -0.10, 0.42, -0.12, 0.026
+19691028, -0.31, -0.14, 0.17, 0.026
+19691029, -0.90, 0.01, 0.52, 0.026
+19691030, 0.17, 0.17, -0.28, 0.026
+19691031, 0.34, 0.06, -0.03, 0.026
+19691103, -0.07, -0.23, 0.25, 0.027
+19691104, 0.07, 0.20, -0.49, 0.027
+19691105, 0.46, -0.11, -0.39, 0.027
+19691106, 0.14, -0.14, -0.18, 0.027
+19691107, 0.65, -0.26, -0.06, 0.027
+19691110, 0.06, -0.17, 0.05, 0.027
+19691111, -0.37, -0.04, 0.29, 0.027
+19691112, -0.17, 0.11, -0.16, 0.027
+19691113, -0.59, -0.38, 0.35, 0.027
+19691114, -0.43, -0.12, 0.13, 0.027
+19691117, -0.79, -0.28, 0.15, 0.027
+19691118, -0.09, -0.44, -0.07, 0.027
+19691119, -0.55, -0.30, 0.55, 0.027
+19691120, -1.12, -0.52, 0.37, 0.027
+19691121, -0.69, -0.19, 0.35, 0.027
+19691124, -1.08, -0.35, -0.10, 0.027
+19691125, -0.25, 0.16, -0.54, 0.027
+19691126, 0.36, 0.21, -0.95, 0.027
+19691128, 0.64, 0.26, -0.81, 0.027
+19691201, -0.76, -0.40, 0.23, 0.029
+19691202, -0.68, -0.07, -0.25, 0.029
+19691203, -1.23, -0.58, -0.02, 0.029
+19691204, 0.40, -0.03, -0.95, 0.029
+19691205, -0.38, -0.48, 0.44, 0.029
+19691208, -1.27, -0.42, 0.20, 0.029
+19691209, -0.20, -0.45, -0.48, 0.029
+19691210, -0.07, -0.17, -0.73, 0.029
+19691211, 0.07, -0.10, -0.24, 0.029
+19691212, 0.30, 0.04, -0.28, 0.029
+19691215, -0.29, 0.10, -0.13, 0.029
+19691216, -1.00, -0.47, -0.06, 0.029
+19691217, -0.54, -0.31, -0.07, 0.029
+19691218, 1.59, -0.19, -0.79, 0.029
+19691219, 0.82, 0.13, 0.01, 0.029
+19691222, -1.00, -0.32, 0.35, 0.029
+19691223, -0.53, -0.60, 0.29, 0.029
+19691224, 1.17, 0.49, -0.15, 0.029
+19691226, 0.81, 0.10, -0.04, 0.029
+19691229, -0.75, -0.27, -0.04, 0.029
+19691230, 0.39, -0.23, -0.16, 0.029
+19691231, 0.55, 0.49, -0.26, 0.029
+19700102, 1.18, 1.32, 0.97, 0.029
+19700105, 0.59, 0.67, 0.76, 0.029
+19700106, -0.74, 0.10, 0.28, 0.029
+19700107, -0.15, 0.38, -0.35, 0.029
+19700108, 0.04, 0.17, -0.18, 0.029
+19700109, -0.31, 0.19, 0.08, 0.029
+19700112, -0.80, -0.10, -0.04, 0.029
+19700113, 0.05, -0.17, -0.50, 0.029
+19700114, -0.25, -0.13, -0.28, 0.029
+19700115, -0.04, -0.09, -0.64, 0.029
+19700116, -0.82, -0.10, 0.70, 0.029
+19700119, -1.31, 0.42, 1.06, 0.029
+19700120, 0.17, 0.30, -0.39, 0.029
+19700121, 0.06, 0.06, 0.15, 0.029
+19700122, 0.11, 0.15, -0.11, 0.029
+19700123, -1.06, -0.14, 0.42, 0.029
+19700126, -1.13, -0.30, 0.42, 0.029
+19700127, -0.67, 0.21, -0.32, 0.029
+19700128, -0.99, 0.41, -0.14, 0.029
+19700129, -1.33, -0.09, 0.44, 0.029
+19700130, -0.88, -0.20, 0.93, 0.029
+19700202, 0.82, -0.64, -0.13, 0.032
+19700203, 1.26, -0.16, -0.30, 0.032
+19700204, -0.74, -0.31, 0.73, 0.032
+19700205, -0.41, -0.17, -0.06, 0.032
+19700206, 0.59, 0.17, -0.32, 0.032
+19700209, 0.82, -0.07, -0.22, 0.032
+19700210, -0.94, 0.35, 0.10, 0.032
+19700211, 0.90, -0.16, -0.83, 0.032
+19700212, -0.21, 0.27, 0.28, 0.032
+19700213, -0.18, -0.02, 0.63, 0.032
+19700216, -0.07, 0.20, 0.38, 0.032
+19700217, -0.20, -0.07, 0.19, 0.032
+19700218, 1.19, -0.51, -0.05, 0.032
+19700219, 0.28, -0.31, 0.53, 0.032
+19700220, 0.32, -0.62, 0.87, 0.032
+19700224, -0.03, -0.10, 0.47, 0.032
+19700225, 1.52, -0.18, 0.22, 0.032
+19700226, -0.53, 0.08, 0.64, 0.032
+19700227, 0.69, 0.11, 0.41, 0.032
+19700302, 0.13, -0.16, 0.70, 0.027
+19700303, 0.58, -0.43, 0.61, 0.027
+19700304, -0.25, 0.15, 0.61, 0.027
+19700305, -0.02, 0.17, 0.37, 0.027
+19700306, -0.69, 0.23, 0.26, 0.027
+19700309, -1.08, 0.00, 0.79, 0.027
+19700310, 0.14, -0.26, -0.33, 0.027
+19700311, -0.14, -0.12, 0.46, 0.027
+19700312, -0.51, -0.22, 0.39, 0.027
+19700313, -0.63, -0.29, 0.73, 0.027
+19700316, -1.15, -0.13, 0.36, 0.027
+19700317, 0.39, -0.15, -0.46, 0.027
+19700318, 0.26, -0.13, 0.14, 0.027
+19700319, -0.29, -0.32, 0.37, 0.027
+19700320, -0.52, -0.49, 0.66, 0.027
+19700323, -0.14, -0.18, -0.07, 0.027
+19700324, 1.01, -0.51, -0.44, 0.027
+19700325, 2.14, 0.12, -0.52, 0.027
+19700326, 0.10, 0.30, -0.10, 0.027
+19700330, -0.28, 0.10, -0.30, 0.027
+19700331, -0.05, -0.02, 0.11, 0.027
+19700401, 0.45, -0.07, 0.03, 0.023
+19700402, -0.39, 0.12, 0.11, 0.023
+19700403, -0.49, 0.01, 0.98, 0.023
+19700406, -0.83, -0.28, 1.16, 0.023
+19700407, -0.36, -0.12, 0.59, 0.023
+19700408, -0.19, -0.25, 0.09, 0.023
+19700409, -0.10, -0.65, 0.43, 0.023
+19700410, -0.44, -0.41, -0.29, 0.023
+19700413, -0.90, -0.87, 1.05, 0.023
+19700414, -0.86, -0.52, 0.34, 0.023
+19700415, -0.31, -0.20, 0.30, 0.023
+19700416, -1.14, -0.29, 0.70, 0.023
+19700417, -0.33, -0.25, 0.10, 0.023
+19700420, 0.22, 0.01, -0.55, 0.023
+19700421, -0.57, -0.31, 0.68, 0.023
+19700422, -1.48, -0.60, 1.06, 0.023
+19700423, -1.65, -0.64, 0.52, 0.023
+19700424, -0.51, -0.52, 0.18, 0.023
+19700427, -1.84, -0.87, 0.91, 0.023
+19700428, -1.47, -0.61, 0.60, 0.023
+19700429, 2.11, 0.16, -2.30, 0.023
+19700430, -0.40, 0.18, 0.63, 0.023
+19700501, -0.14, -0.02, 0.17, 0.025
+19700504, -2.60, -0.42, 1.79, 0.025
+19700505, -1.13, -0.53, 0.57, 0.025
+19700506, 1.20, 0.38, -0.95, 0.025
+19700507, 0.59, 0.03, -0.08, 0.025
+19700508, -0.52, -0.03, 0.29, 0.025
+19700511, -1.11, -0.02, 0.64, 0.025
+19700512, -0.93, -0.21, 0.54, 0.025
+19700513, -1.76, -0.52, 1.01, 0.025
+19700514, -1.53, -0.87, 0.63, 0.025
+19700515, 1.83, -0.33, -0.95, 0.025
+19700518, 0.13, -0.11, 0.18, 0.025
+19700519, -2.01, -0.15, 1.33, 0.025
+19700520, -2.66, -0.52, 1.69, 0.025
+19700521, -2.01, -0.95, 1.03, 0.025
+19700522, -0.15, -0.68, -0.65, 0.025
+19700525, -3.21, -1.64, 1.75, 0.025
+19700526, -1.32, -0.53, 0.58, 0.025
+19700527, 5.30, 1.36, -3.73, 0.025
+19700528, 2.63, 0.99, -1.20, 0.025
+19700529, 2.70, 0.12, -1.33, 0.025
+19700601, 1.83, 1.06, -1.72, 0.026
+19700602, 0.12, 0.55, -0.36, 0.026
+19700603, 1.11, 0.88, -0.92, 0.026
+19700604, -1.58, -0.26, 1.37, 0.026
+19700605, -1.70, -0.34, 0.34, 0.026
+19700608, 0.10, 0.01, 0.13, 0.026
+19700609, 0.01, -0.01, -0.45, 0.026
+19700610, -1.03, -0.01, 0.24, 0.026
+19700611, -1.42, -0.23, 1.03, 0.026
+19700612, -0.42, -0.31, -0.26, 0.026
+19700615, 0.30, 0.13, -0.54, 0.026
+19700616, 2.28, -0.47, -1.26, 0.026
+19700617, -0.27, -0.13, 0.58, 0.026
+19700618, 0.56, -0.33, -0.69, 0.026
+19700619, 0.66, -0.19, -0.03, 0.026
+19700622, -0.67, -0.12, 0.15, 0.026
+19700623, -2.49, -0.01, 1.20, 0.026
+19700624, -1.15, -0.81, 0.58, 0.026
+19700625, -0.05, -0.58, -0.03, 0.026
+19700626, -0.82, -0.18, 0.46, 0.026
+19700629, -0.87, -0.35, 0.30, 0.026
+19700630, -0.30, -0.57, 0.56, 0.026
+19700701, 0.33, -0.55, -0.26, 0.024
+19700702, -0.26, -0.48, 0.54, 0.024
+19700706, -1.58, -0.28, 0.81, 0.024
+19700707, -0.87, -0.33, 0.15, 0.024
+19700708, 2.38, -0.67, -1.29, 0.024
+19700709, 1.61, 0.18, -0.02, 0.024
+19700710, 0.71, 0.06, 0.14, 0.024
+19700713, -0.07, 0.17, 0.74, 0.024
+19700714, -0.15, -0.15, -0.25, 0.024
+19700715, 0.98, -0.30, -0.25, 0.024
+19700716, 1.33, -0.31, 0.12, 0.024
+19700717, 1.67, -0.10, 0.12, 0.024
+19700720, 0.13, 0.25, 0.44, 0.024
+19700721, -1.01, 0.00, 0.30, 0.024
+19700722, 0.12, 0.53, 0.10, 0.024
+19700723, 1.22, -0.40, -0.20, 0.024
+19700724, -0.23, 0.59, -0.17, 0.024
+19700727, -0.19, 0.34, 0.24, 0.024
+19700728, 0.26, 0.21, -0.37, 0.024
+19700729, 0.37, 0.48, -0.31, 0.024
+19700730, 0.06, 0.12, -0.20, 0.024
+19700731, -0.06, 0.13, 0.46, 0.024
+19700803, -1.22, 0.21, 0.47, 0.025
+19700804, 0.17, -0.28, -0.12, 0.025
+19700805, -0.08, -0.10, 0.19, 0.025
+19700806, -0.18, -0.40, 0.47, 0.025
+19700807, 0.26, -0.19, 0.42, 0.025
+19700810, -1.44, 0.01, 0.42, 0.025
+19700811, -0.57, -0.21, 0.32, 0.025
+19700812, -0.49, 0.12, 0.66, 0.025
+19700813, -0.90, 0.08, 0.76, 0.025
+19700814, 0.41, -0.32, 0.14, 0.025
+19700817, 0.17, -0.25, -0.52, 0.025
+19700818, 1.06, -0.52, -0.19, 0.025
+19700819, 0.90, -0.55, 0.39, 0.025
+19700820, 0.75, -0.77, 0.03, 0.025
+19700821, 2.09, -0.17, -0.16, 0.025
+19700824, 2.34, 0.65, -1.43, 0.025
+19700825, 0.38, 0.98, -0.83, 0.025
+19700826, 0.31, 0.96, -0.09, 0.025
+19700827, -0.12, 0.80, 0.01, 0.025
+19700828, 0.99, 0.71, -0.25, 0.025
+19700831, -0.35, 0.71, 0.27, 0.025
+19700901, -0.64, 0.04, 0.29, 0.025
+19700902, -0.02, 0.37, -0.40, 0.025
+19700903, 1.46, 0.21, -0.93, 0.025
+19700904, 1.07, 0.68, -0.01, 0.025
+19700908, 0.36, 0.68, -0.66, 0.025
+19700909, -0.30, 0.22, -0.16, 0.025
+19700910, -0.58, 0.33, 0.22, 0.025
+19700911, 0.35, 1.00, -0.32, 0.025
+19700914, -0.51, 0.10, 0.19, 0.025
+19700915, -0.98, -0.30, -0.11, 0.025
+19700916, 0.57, 0.43, -0.67, 0.025
+19700917, 0.80, 0.72, -0.72, 0.025
+19700918, 0.44, 0.59, 0.09, 0.025
+19700921, -0.84, -0.12, 0.33, 0.025
+19700922, -0.36, -0.08, -0.02, 0.025
+19700923, 1.35, 0.22, -0.63, 0.025
+19700924, 1.43, 1.39, -1.38, 0.025
+19700925, 0.17, 0.13, -0.01, 0.025
+19700928, -0.06, 0.69, -0.54, 0.025
+19700929, 0.58, 0.76, -0.04, 0.025
+19700930, -0.12, -0.02, 0.35, 0.025
+19701001, 0.12, -0.26, -0.11, 0.021
+19701002, 1.05, 0.40, -0.30, 0.021
+19701005, 1.44, -0.17, 0.01, 0.021
+19701006, 0.23, -0.86, 0.92, 0.021
+19701007, -0.03, 0.19, 0.07, 0.021
+19701008, -1.15, -0.38, 0.47, 0.021
+19701009, -0.97, 0.31, 0.09, 0.021
+19701012, -0.98, 0.00, 0.37, 0.021
+19701013, -0.26, 0.04, -0.35, 0.021
+19701014, 0.13, -0.21, -0.05, 0.021
+19701015, 0.41, -0.47, 0.25, 0.021
+19701016, -0.60, -0.63, 0.58, 0.021
+19701019, -1.41, -0.46, 0.63, 0.021
+19701020, 0.57, -0.36, -1.06, 0.021
+19701021, -0.08, -0.27, 0.13, 0.021
+19701022, -0.43, -0.29, 0.13, 0.021
+19701023, 0.49, 0.15, -0.52, 0.021
+19701026, -0.53, 0.14, -0.09, 0.021
+19701027, -0.30, -0.30, -0.14, 0.021
+19701028, 0.32, -0.34, -0.88, 0.021
+19701029, -0.18, -0.41, 0.26, 0.021
+19701030, -0.07, -0.27, -0.09, 0.021
+19701102, 0.32, -0.07, -0.18, 0.023
+19701103, 0.85, 0.25, 0.33, 0.023
+19701104, 0.18, -0.28, 0.20, 0.023
+19701105, -0.20, -0.18, 0.06, 0.023
+19701106, 0.09, -0.32, 0.24, 0.023
+19701109, 0.50, -0.24, -0.24, 0.023
+19701110, 0.15, -0.01, -0.08, 0.023
+19701111, 0.27, -0.07, 0.36, 0.023
+19701112, -1.11, -0.68, 0.42, 0.023
+19701113, -0.96, -0.27, 0.28, 0.023
+19701116, -0.17, -0.39, -0.21, 0.023
+19701117, 0.05, -0.33, 0.25, 0.023
+19701118, -0.77, -0.70, 0.32, 0.023
+19701119, 0.09, -0.46, -0.18, 0.023
+19701120, 0.98, -0.05, -0.33, 0.023
+19701123, 0.63, -0.34, 0.09, 0.023
+19701124, 0.58, -0.36, 0.26, 0.023
+19701125, 0.42, -0.04, 0.35, 0.023
+19701127, 0.98, -0.17, -0.36, 0.023
+19701130, 1.67, 0.77, -0.10, 0.023
+19701201, 0.29, -0.07, 0.19, 0.019
+19701202, 1.22, 0.10, -0.43, 0.019
+19701203, 0.45, 0.06, 0.49, 0.019
+19701204, 0.57, 0.10, 0.21, 0.019
+19701207, 0.58, 0.18, -0.25, 0.019
+19701208, -0.52, -0.16, 0.05, 0.019
+19701209, 0.01, -0.30, -0.03, 0.019
+19701210, 0.34, -0.10, -0.07, 0.019
+19701211, 0.37, 0.17, -0.15, 0.019
+19701214, -0.57, -0.46, 0.35, 0.019
+19701215, -0.18, -0.24, 0.13, 0.019
+19701216, 0.12, 0.22, 0.02, 0.019
+19701217, 0.31, 0.14, 0.02, 0.019
+19701218, 0.21, 0.38, -0.04, 0.019
+19701221, -0.29, 0.12, 0.04, 0.019
+19701222, 0.12, 0.18, 0.09, 0.019
+19701223, 0.15, 0.38, 0.09, 0.019
+19701224, 0.69, 0.96, -0.15, 0.019
+19701228, 0.53, 0.22, 0.05, 0.019
+19701229, 1.11, 0.49, 0.25, 0.019
+19701230, 0.18, 0.12, 0.08, 0.019
+19701231, -0.10, 0.26, -0.09, 0.019
+19710104, -0.99, 0.54, 0.69, 0.019
+19710105, 0.82, 0.66, 0.02, 0.019
+19710106, 0.74, 0.88, 0.49, 0.019
+19710107, 0.05, 0.09, 0.54, 0.019
+19710108, -0.13, 0.06, 0.41, 0.019
+19710111, -0.11, 0.50, 0.15, 0.019
+19710112, 0.98, 0.79, 0.38, 0.019
+19710113, -0.09, 0.38, -0.21, 0.019
+19710114, 0.29, 0.02, 0.15, 0.019
+19710115, 0.28, 0.41, 0.26, 0.019
+19710118, 0.35, 0.25, 0.25, 0.019
+19710119, 0.29, -0.14, -0.04, 0.019
+19710120, 0.08, 0.35, -0.05, 0.019
+19710121, 0.47, 0.48, -0.57, 0.019
+19710122, 0.67, -0.01, -0.30, 0.019
+19710125, 0.47, 0.46, -0.54, 0.019
+19710126, 0.28, 0.24, -0.66, 0.019
+19710127, -0.74, -0.02, 0.00, 0.019
+19710128, 0.37, 0.65, 0.21, 0.019
+19710129, 0.66, 0.23, 0.13, 0.019
+19710201, 0.67, 0.69, -0.20, 0.017
+19710202, 0.06, 0.07, -0.04, 0.017
+19710203, 0.30, 0.72, -0.38, 0.017
+19710204, 0.14, 0.14, -0.26, 0.017
+19710205, 0.45, 0.18, -0.03, 0.017
+19710208, 0.60, 0.86, 0.04, 0.017
+19710209, -0.04, -0.27, -0.10, 0.017
+19710210, -0.11, -0.20, -0.01, 0.017
+19710211, 0.52, 0.27, 0.48, 0.017
+19710212, 0.59, 0.58, -0.05, 0.017
+19710216, 0.24, 0.01, -0.10, 0.017
+19710217, -0.48, -0.11, 0.31, 0.017
+19710218, -0.68, -0.27, 0.21, 0.017
+19710219, -0.93, -0.52, 0.18, 0.017
+19710222, -1.06, -0.84, -0.30, 0.017
+19710223, 0.50, 0.51, -0.40, 0.017
+19710224, 0.74, 0.56, -0.30, 0.017
+19710225, 0.16, -0.25, 0.10, 0.017
+19710226, -0.25, -0.25, -0.43, 0.017
+19710301, 0.30, 0.23, -0.26, 0.013
+19710302, 0.05, 0.32, 0.16, 0.013
+19710303, 0.01, 0.32, -0.19, 0.013
+19710304, 1.05, 0.35, -0.43, 0.013
+19710305, 1.06, 0.24, -0.25, 0.013
+19710308, 0.48, 0.50, -0.38, 0.013
+19710309, 0.14, 0.46, -0.45, 0.013
+19710310, -0.12, 0.18, -0.42, 0.013
+19710311, -0.02, -0.42, 0.36, 0.013
+19710312, 0.16, -0.14, -0.12, 0.013
+19710315, 1.14, 0.19, -0.42, 0.013
+19710316, 0.46, -0.17, -0.16, 0.013
+19710317, 0.01, -0.03, -0.46, 0.013
+19710318, 0.11, 0.43, -0.06, 0.013
+19710319, -0.18, 0.02, -0.04, 0.013
+19710322, -0.40, -0.22, 0.11, 0.013
+19710323, -0.33, 0.14, -0.09, 0.013
+19710324, -0.61, -0.01, -0.02, 0.013
+19710325, 0.02, -0.06, -0.04, 0.013
+19710326, 0.38, 0.19, -0.21, 0.013
+19710329, 0.08, -0.26, -0.19, 0.013
+19710330, 0.21, -0.06, -0.10, 0.013
+19710331, 0.09, 0.22, -0.16, 0.013
+19710401, 0.06, -0.01, -0.23, 0.013
+19710402, 0.20, 0.06, -0.31, 0.013
+19710405, 0.17, -0.10, 0.12, 0.013
+19710406, 0.59, -0.23, -0.04, 0.013
+19710407, 0.43, -0.02, 0.38, 0.013
+19710408, 0.14, 0.13, 0.05, 0.013
+19710412, 0.67, -0.20, -0.03, 0.013
+19710413, 0.04, 0.03, 0.00, 0.013
+19710414, 0.35, 0.18, 0.39, 0.013
+19710415, 0.14, -0.19, 0.55, 0.013
+19710416, 0.00, -0.08, 0.40, 0.013
+19710419, 0.41, -0.33, 0.11, 0.013
+19710420, -0.49, -0.49, -0.03, 0.013
+19710421, -0.27, 0.04, -0.09, 0.013
+19710422, 0.29, 0.07, 0.15, 0.013
+19710423, 0.50, 0.15, -0.37, 0.013
+19710426, 0.00, 0.53, 0.11, 0.013
+19710427, 0.44, 0.14, -0.19, 0.013
+19710428, 0.34, 0.11, -0.26, 0.013
+19710429, -0.25, -0.39, -0.01, 0.013
+19710430, -0.65, 0.13, -0.02, 0.013
+19710503, -0.57, 0.23, -0.18, 0.015
+19710504, 0.55, 0.21, -0.03, 0.015
+19710505, -0.03, -0.08, -0.17, 0.015
+19710506, -0.58, -0.40, 0.00, 0.015
+19710507, -0.32, -0.11, -0.12, 0.015
+19710510, -0.49, -0.20, 0.21, 0.015
+19710511, 0.29, -0.06, 0.10, 0.015
+19710512, 0.23, -0.12, -0.13, 0.015
+19710513, -0.20, 0.09, -0.41, 0.015
+19710514, -0.42, 0.16, 0.09, 0.015
+19710517, -1.52, -0.44, 0.17, 0.015
+19710518, 0.05, -0.25, -0.18, 0.015
+19710519, 0.23, -0.15, 0.08, 0.015
+19710520, 0.25, 0.07, -0.20, 0.015
+19710521, -0.35, -0.04, -0.09, 0.015
+19710524, -0.83, -0.05, -0.28, 0.015
+19710525, -0.65, -0.14, -0.35, 0.015
+19710526, 0.15, 0.05, -0.12, 0.015
+19710527, -0.11, -0.08, 0.05, 0.015
+19710528, 0.27, 0.21, 0.04, 0.015
+19710601, 0.61, -0.06, -0.08, 0.017
+19710602, 0.84, 0.33, -0.24, 0.017
+19710603, 0.18, 0.44, -0.12, 0.017
+19710604, 0.25, 0.04, -0.18, 0.017
+19710607, -0.16, 0.13, -0.15, 0.017
+19710608, -0.79, -0.17, 0.28, 0.017
+19710609, -0.07, -0.31, -0.15, 0.017
+19710610, 0.29, -0.10, -0.21, 0.017
+19710611, 0.34, -0.32, -0.26, 0.017
+19710614, -0.81, -0.16, -0.10, 0.017
+19710615, 0.02, -0.46, -0.21, 0.017
+19710616, 0.16, -0.28, -0.46, 0.017
+19710617, -0.03, -0.30, -0.06, 0.017
+19710618, -1.54, -0.60, 0.08, 0.017
+19710621, -1.21, -0.53, 0.14, 0.017
+19710622, -0.30, -0.10, -0.01, 0.017
+19710623, 0.86, 0.36, -0.40, 0.017
+19710624, -0.17, 0.16, 0.20, 0.017
+19710625, -0.20, 0.13, 0.07, 0.017
+19710628, -0.26, 0.03, -0.14, 0.017
+19710629, 1.11, 0.20, 0.09, 0.017
+19710630, 0.92, 0.08, -0.10, 0.017
+19710701, 0.10, 0.13, -0.04, 0.019
+19710702, 0.04, 0.15, -0.18, 0.019
+19710706, 0.06, 0.27, -0.28, 0.019
+19710707, 0.35, 0.27, -0.09, 0.019
+19710708, 0.33, -0.26, -0.06, 0.019
+19710709, 0.34, -0.05, -0.14, 0.019
+19710712, 0.11, -0.13, 0.08, 0.019
+19710713, -1.29, 0.02, 0.20, 0.019
+19710714, -0.17, 0.13, -0.03, 0.019
+19710715, 0.03, 0.10, 0.00, 0.019
+19710716, -0.21, 0.10, 0.14, 0.019
+19710719, -0.24, -0.12, -0.01, 0.019
+19710720, 0.37, -0.26, 0.08, 0.019
+19710721, -0.08, -0.07, -0.15, 0.019
+19710722, -0.25, -0.25, 0.15, 0.019
+19710723, -0.17, 0.02, 0.02, 0.019
+19710726, -0.34, -0.09, 0.20, 0.019
+19710727, -0.99, -0.38, 0.23, 0.019
+19710728, -0.84, -0.32, -0.05, 0.019
+19710729, -1.27, -0.63, -0.02, 0.019
+19710730, -0.47, -0.26, 0.09, 0.019
+19710802, 0.49, 0.34, 0.75, 0.021
+19710803, -1.64, -0.58, 0.02, 0.021
+19710804, -0.59, -0.07, -0.08, 0.021
+19710805, 0.24, -0.04, -0.04, 0.021
+19710806, 0.26, 0.07, -0.21, 0.021
+19710809, -0.77, -0.18, -0.08, 0.021
+19710810, 0.00, -0.36, 0.05, 0.021
+19710811, 1.22, -0.03, -0.26, 0.021
+19710812, 1.41, 0.13, -0.38, 0.021
+19710813, -0.30, 0.11, 0.32, 0.021
+19710816, 3.62, 0.92, 1.19, 0.021
+19710817, 0.66, -0.20, 0.32, 0.021
+19710818, -1.34, 0.20, -0.27, 0.021
+19710819, -0.47, -0.27, 0.24, 0.021
+19710820, 0.17, 0.03, -0.03, 0.021
+19710823, 0.89, -0.63, 0.46, 0.021
+19710824, 0.92, -0.37, 0.51, 0.021
+19710825, 0.09, 0.17, 0.04, 0.021
+19710826, -0.12, 0.03, -0.07, 0.021
+19710827, 0.23, 0.12, 0.17, 0.021
+19710830, -0.92, 0.35, 0.15, 0.021
+19710831, -0.49, 0.13, -0.20, 0.021
+19710901, 0.04, 0.00, 0.15, 0.017
+19710902, 0.25, 0.06, 0.05, 0.017
+19710903, 1.39, 0.11, 0.11, 0.017
+19710907, 0.49, 0.26, 0.09, 0.017
+19710908, 0.20, 0.15, -0.42, 0.017
+19710909, -0.48, 0.13, -0.25, 0.017
+19710910, -0.35, 0.18, -0.23, 0.017
+19710913, -0.36, -0.05, -0.02, 0.017
+19710914, -0.76, 0.01, -0.10, 0.017
+19710915, 0.36, -0.20, -0.26, 0.017
+19710916, -0.18, 0.19, -0.22, 0.017
+19710917, 0.30, -0.19, -0.21, 0.017
+19710920, -0.32, -0.19, -0.25, 0.017
+19710921, -0.32, 0.11, -0.10, 0.017
+19710922, -0.89, -0.26, -0.05, 0.017
+19710923, -0.10, -0.14, -0.15, 0.017
+19710924, -0.18, 0.40, -0.15, 0.017
+19710927, -0.57, -0.09, -0.36, 0.017
+19710928, 0.19, -0.10, -0.02, 0.017
+19710929, 0.01, 0.17, -0.41, 0.017
+19710930, 0.46, -0.08, -0.13, 0.017
+19711001, 0.61, 0.20, -0.24, 0.017
+19711004, 0.26, 0.08, -0.02, 0.017
+19711005, -0.12, -0.04, -0.21, 0.017
+19711006, 0.73, -0.15, 0.25, 0.017
+19711007, 0.21, 0.04, 0.14, 0.017
+19711008, -0.62, -0.04, 0.16, 0.017
+19711011, -0.22, 0.08, 0.12, 0.017
+19711012, 0.35, -0.08, -0.02, 0.017
+19711013, -0.51, 0.16, -0.10, 0.017
+19711014, -0.92, -0.33, 0.14, 0.017
+19711015, -0.42, -0.11, -0.11, 0.017
+19711018, -0.51, -0.18, 0.06, 0.017
+19711019, -0.42, -0.33, -0.29, 0.017
+19711020, -1.38, -0.09, 0.08, 0.017
+19711021, -0.01, -0.06, -0.12, 0.017
+19711022, -0.05, 0.16, -0.19, 0.017
+19711025, -0.44, -0.05, -0.09, 0.017
+19711026, -0.52, -0.51, 0.11, 0.017
+19711027, -1.07, -0.58, -0.11, 0.017
+19711028, 0.12, -0.30, 0.15, 0.017
+19711029, 0.47, 0.22, -0.18, 0.017
+19711101, -1.48, -0.06, -0.12, 0.018
+19711102, 0.27, -0.45, -0.07, 0.018
+19711103, 1.70, -0.29, -0.17, 0.018
+19711104, 0.00, 0.28, -0.12, 0.018
+19711105, -0.28, -0.26, -0.09, 0.018
+19711108, -0.09, -0.03, -0.27, 0.018
+19711109, 0.07, 0.01, -0.23, 0.018
+19711110, -1.14, -0.01, -0.33, 0.018
+19711111, -1.38, -0.21, 0.33, 0.018
+19711112, -0.04, -0.24, -0.01, 0.018
+19711115, -0.36, 0.10, -0.05, 0.018
+19711116, 0.91, -0.37, -0.44, 0.018
+19711117, 0.07, -0.36, -0.05, 0.018
+19711118, -0.74, -0.05, 0.25, 0.018
+19711119, -0.61, -0.55, 0.19, 0.018
+19711122, -1.00, -0.59, -0.22, 0.018
+19711123, -0.80, -0.81, -0.14, 0.018
+19711124, 0.17, -0.08, 0.06, 0.018
+19711126, 1.81, -0.05, -0.14, 0.018
+19711129, 1.81, 0.75, 0.20, 0.018
+19711130, 0.74, 0.37, -0.25, 0.018
+19711201, 1.73, 0.53, -0.28, 0.017
+19711202, 0.29, 0.07, -0.19, 0.017
+19711203, 1.17, -0.03, -0.12, 0.017
+19711206, -0.46, 0.37, 0.55, 0.017
+19711207, 0.43, 0.14, -0.42, 0.017
+19711208, 0.14, 0.28, -0.23, 0.017
+19711209, 0.02, 0.17, -0.28, 0.017
+19711210, 0.81, 0.42, 0.09, 0.017
+19711213, 0.37, 0.43, 0.02, 0.017
+19711214, -0.40, -0.15, -0.13, 0.017
+19711215, 0.82, -0.06, 0.18, 0.017
+19711216, 1.10, -0.02, -0.13, 0.017
+19711217, 0.50, 0.20, -0.11, 0.017
+19711220, 1.22, -0.06, -0.08, 0.017
+19711221, 0.23, -0.12, -0.16, 0.017
+19711222, -0.59, 0.15, 0.24, 0.017
+19711223, -0.44, -0.06, 0.24, 0.017
+19711227, 0.14, -0.21, 0.11, 0.017
+19711228, 0.92, -0.37, 0.16, 0.017
+19711229, 0.32, 0.24, 0.29, 0.017
+19711230, -0.33, 0.24, 0.06, 0.017
+19711231, 0.40, 0.95, -0.29, 0.017
+19720103, -0.37, 0.63, 0.64, 0.014
+19720104, 0.39, 0.39, 0.35, 0.014
+19720105, 0.97, 0.34, 0.57, 0.014
+19720106, 0.44, 0.46, -0.13, 0.014
+19720107, -0.01, 0.26, 0.04, 0.014
+19720110, -0.04, 0.48, 0.23, 0.014
+19720111, 0.39, 0.49, 0.14, 0.014
+19720112, -0.07, -0.20, -0.17, 0.014
+19720113, -0.59, 0.02, -0.17, 0.014
+19720114, 0.40, 0.37, -0.13, 0.014
+19720117, 0.33, 0.30, 0.13, 0.014
+19720118, 0.38, 0.24, 0.15, 0.014
+19720119, -0.15, 0.16, -0.14, 0.014
+19720120, -0.08, -0.09, -0.25, 0.014
+19720121, -0.19, 0.31, -0.14, 0.014
+19720124, -1.09, 0.07, 0.26, 0.014
+19720125, 0.16, -0.03, -0.23, 0.014
+19720126, -0.16, 0.42, 0.11, 0.014
+19720127, 1.10, 0.42, 0.01, 0.014
+19720128, 0.73, 0.23, 0.35, 0.014
+19720131, -0.06, 0.56, 0.27, 0.014
+19720201, 0.14, 0.53, -0.38, 0.012
+19720202, 0.62, 0.57, -0.78, 0.012
+19720203, -0.02, -0.05, -0.65, 0.012
+19720204, 0.36, -0.07, 0.23, 0.012
+19720207, -0.35, -0.01, 0.39, 0.012
+19720208, 0.13, -0.02, -0.20, 0.012
+19720209, 0.72, 0.11, -0.14, 0.012
+19720210, 0.03, -0.20, 0.27, 0.012
+19720211, -0.40, 0.17, -0.14, 0.012
+19720214, -0.40, 0.01, 0.02, 0.012
+19720215, 0.45, 0.26, -0.07, 0.012
+19720216, 0.49, 0.00, -0.08, 0.012
+19720217, -0.04, 0.05, -0.15, 0.012
+19720218, -0.24, 0.15, -0.28, 0.012
+19720222, -0.01, 0.11, 0.10, 0.012
+19720223, 0.12, 0.07, -0.20, 0.012
+19720224, 0.15, 0.01, -0.20, 0.012
+19720225, 0.63, -0.10, -0.32, 0.012
+19720228, 0.06, -0.26, 0.26, 0.012
+19720229, 0.41, 0.01, -0.34, 0.012
+19720301, 0.80, 0.04, -0.59, 0.012
+19720302, 0.05, 0.06, -0.21, 0.012
+19720303, 0.58, 0.15, -0.35, 0.012
+19720306, 0.75, -0.18, 0.30, 0.012
+19720307, 0.12, -0.25, -0.05, 0.012
+19720308, 0.18, 0.61, -0.33, 0.012
+19720309, 0.02, 0.42, -0.21, 0.012
+19720310, -0.54, 0.13, 0.04, 0.012
+19720313, -0.95, -0.11, 0.51, 0.012
+19720314, 0.29, 0.01, 0.15, 0.012
+19720315, 0.07, -0.19, 0.03, 0.012
+19720316, -0.28, -0.22, -0.05, 0.012
+19720317, 0.27, -0.30, -0.18, 0.012
+19720320, -0.38, -0.58, -0.01, 0.012
+19720321, -0.94, -0.50, 0.00, 0.012
+19720322, 0.16, -0.04, 0.09, 0.012
+19720323, 0.95, 0.22, -0.16, 0.012
+19720324, -0.21, 0.04, -0.20, 0.012
+19720327, -0.21, 0.06, -0.15, 0.012
+19720328, -0.10, 0.15, -0.25, 0.012
+19720329, -0.59, 0.33, -0.28, 0.012
+19720330, 0.61, -0.10, 0.19, 0.012
+19720403, 0.23, -0.10, -0.11, 0.014
+19720404, 0.61, -0.14, 0.14, 0.014
+19720405, 0.82, 0.15, -0.31, 0.014
+19720406, 0.40, 0.14, -0.02, 0.014
+19720407, 0.26, 0.08, 0.05, 0.014
+19720410, -0.17, 0.34, 0.07, 0.014
+19720411, 0.36, 0.24, 0.09, 0.014
+19720412, 0.35, 0.26, -0.10, 0.014
+19720413, -0.27, -0.09, -0.14, 0.014
+19720414, 0.03, 0.24, -0.15, 0.014
+19720417, -0.26, -0.10, 0.27, 0.014
+19720418, 0.17, -0.13, 0.13, 0.014
+19720419, -0.63, -0.45, 0.50, 0.014
+19720420, -0.18, 0.13, 0.11, 0.014
+19720421, -0.16, -0.01, 0.19, 0.014
+19720424, -0.66, 0.20, -0.19, 0.014
+19720425, -0.99, -0.25, -0.26, 0.014
+19720426, -0.24, -0.11, 0.03, 0.014
+19720427, 0.10, -0.23, 0.04, 0.014
+19720428, 0.51, -0.09, -0.15, 0.014
+19720501, -0.91, -0.19, 0.17, 0.014
+19720502, -0.59, -0.20, -0.02, 0.014
+19720503, -0.23, -0.71, 0.15, 0.014
+19720504, 0.23, -0.37, -0.24, 0.014
+19720505, 0.36, -0.10, -0.31, 0.014
+19720508, -0.51, -0.37, 0.08, 0.014
+19720509, -1.45, -0.68, -0.11, 0.014
+19720510, 0.70, 0.18, -0.04, 0.014
+19720511, 0.41, 0.24, 0.01, 0.014
+19720512, 0.69, 0.26, 0.00, 0.014
+19720515, 0.50, 0.31, -0.36, 0.014
+19720516, -0.23, -0.08, 0.09, 0.014
+19720517, 0.20, -0.09, -0.18, 0.014
+19720518, 0.91, -0.05, -0.58, 0.014
+19720519, 0.92, -0.22, -0.24, 0.014
+19720522, 0.55, -0.31, -0.42, 0.014
+19720523, 0.03, -0.08, -0.49, 0.014
+19720524, 0.41, -0.13, -0.27, 0.014
+19720525, 0.21, -0.05, -0.31, 0.014
+19720526, 0.16, 0.25, -0.08, 0.014
+19720530, -0.34, -0.23, 0.33, 0.014
+19720531, -0.73, -0.19, 0.11, 0.014
+19720601, 0.22, 0.10, -0.08, 0.013
+19720602, 0.11, 0.28, -0.30, 0.013
+19720605, -0.80, 0.01, -0.05, 0.013
+19720606, -0.56, 0.16, -0.40, 0.013
+19720607, -0.51, 0.00, -0.11, 0.013
+19720608, -0.30, -0.06, 0.02, 0.013
+19720609, -0.46, 0.00, 0.09, 0.013
+19720612, 0.07, -0.06, -0.05, 0.013
+19720613, 0.43, -0.14, -0.20, 0.013
+19720614, 0.76, 0.12, -0.50, 0.013
+19720615, -0.07, -0.18, -0.22, 0.013
+19720616, -0.09, 0.06, 0.09, 0.013
+19720619, -0.16, 0.22, -0.05, 0.013
+19720620, 0.36, -0.20, -0.09, 0.013
+19720621, 0.15, -0.22, -0.33, 0.013
+19720622, -0.17, -0.11, 0.01, 0.013
+19720623, -0.42, 0.15, -0.08, 0.013
+19720626, -0.70, 0.21, 0.02, 0.013
+19720627, -0.12, -0.22, 0.07, 0.013
+19720628, -0.36, 0.08, -0.26, 0.013
+19720629, -0.20, 0.01, -0.24, 0.013
+19720630, 0.39, 0.20, 0.04, 0.013
+19720703, 0.34, 0.01, 0.11, 0.016
+19720705, 0.55, -0.07, -0.14, 0.016
+19720706, 0.76, -0.35, -0.35, 0.016
+19720707, -0.32, 0.17, -0.23, 0.016
+19720710, -0.55, -0.05, 0.19, 0.016
+19720711, -0.75, -0.04, 0.21, 0.016
+19720712, -0.53, -0.44, 0.46, 0.016
+19720713, -0.63, -0.15, 0.32, 0.016
+19720714, 0.47, -0.18, -0.09, 0.016
+19720717, -0.92, -0.15, 0.69, 0.016
+19720718, -0.09, -0.61, 0.30, 0.016
+19720719, 0.23, -0.03, -0.05, 0.016
+19720720, -0.34, -0.20, 0.28, 0.016
+19720721, 0.72, -0.04, -0.16, 0.016
+19720724, 1.08, 0.13, -0.52, 0.016
+19720725, -0.31, 0.02, 0.00, 0.016
+19720726, -0.10, -0.05, -0.19, 0.016
+19720727, -0.34, -0.42, 0.16, 0.016
+19720728, 0.03, -0.28, -0.04, 0.016
+19720731, -0.07, -0.28, -0.11, 0.016
+19720801, 0.93, -0.31, -0.54, 0.012
+19720802, 0.83, -0.34, -0.32, 0.012
+19720803, 0.74, -0.47, -0.23, 0.012
+19720804, 0.34, -0.08, -0.26, 0.012
+19720807, 0.11, -0.17, -0.03, 0.012
+19720808, 0.07, -0.27, -0.13, 0.012
+19720809, 0.12, 0.06, -0.05, 0.012
+19720810, 0.22, 0.02, 0.03, 0.012
+19720811, 0.82, -0.20, 0.06, 0.012
+19720814, 0.43, -0.23, 0.45, 0.012
+19720815, -0.43, -0.01, 0.67, 0.012
+19720816, -0.28, -0.19, 0.70, 0.012
+19720817, -0.22, -0.01, 0.70, 0.012
+19720818, 0.41, -0.14, 0.26, 0.012
+19720821, -0.08, -0.26, 0.81, 0.012
+19720822, 0.50, -0.68, 1.03, 0.012
+19720823, -0.15, 0.04, 0.41, 0.012
+19720824, -1.07, 0.14, 0.46, 0.012
+19720825, -0.27, -0.01, 0.17, 0.012
+19720828, -0.47, -0.07, 0.23, 0.012
+19720829, 0.13, -0.34, 0.09, 0.012
+19720830, 0.13, -0.22, 0.14, 0.012
+19720831, 0.44, -0.21, -0.02, 0.012
+19720901, 0.40, 0.10, -0.15, 0.017
+19720905, -0.29, 0.05, 0.06, 0.017
+19720906, -0.60, -0.11, 0.25, 0.017
+19720907, -0.34, -0.19, 0.35, 0.017
+19720908, -0.14, -0.19, 0.35, 0.017
+19720911, -0.69, -0.41, 0.30, 0.017
+19720912, -0.95, -0.15, 0.33, 0.017
+19720913, 0.33, -0.15, -0.15, 0.017
+19720914, 0.02, -0.04, -0.13, 0.017
+19720915, -0.10, -0.06, 0.05, 0.017
+19720918, -0.20, -0.11, 0.28, 0.017
+19720919, -0.06, -0.17, 0.20, 0.017
+19720920, -0.06, -0.22, -0.19, 0.017
+19720921, -0.19, -0.13, -0.10, 0.017
+19720922, 0.06, -0.17, 0.25, 0.017
+19720925, -0.46, -0.13, -0.02, 0.017
+19720926, 0.09, -0.19, -0.12, 0.017
+19720927, 1.38, -0.25, -0.65, 0.017
+19720928, 0.60, -0.22, -0.43, 0.017
+19720929, 0.11, 0.03, -0.03, 0.017
+19721002, -0.32, -0.03, 0.23, 0.018
+19721003, 0.07, -0.42, 0.10, 0.018
+19721004, -0.26, -0.63, 0.74, 0.018
+19721005, -1.11, -0.11, 0.64, 0.018
+19721006, 0.63, -0.19, -0.23, 0.018
+19721009, 0.22, 0.15, -0.08, 0.018
+19721010, 0.10, 0.09, -0.05, 0.018
+19721011, -0.46, -0.20, 0.13, 0.018
+19721012, -0.84, -0.15, 0.41, 0.018
+19721013, -0.68, 0.15, 0.18, 0.018
+19721016, -1.05, 0.24, 0.19, 0.018
+19721017, 0.60, -0.57, 0.28, 0.018
+19721018, 0.57, -0.28, -0.17, 0.018
+19721019, -0.12, -0.13, -0.13, 0.018
+19721020, 1.02, -0.37, -0.26, 0.018
+19721023, 0.95, -0.14, -0.19, 0.018
+19721024, 0.31, -0.20, -0.10, 0.018
+19721025, -0.04, -0.05, 0.12, 0.018
+19721026, 0.34, 0.11, -0.06, 0.018
+19721027, -0.29, 0.30, -0.16, 0.018
+19721030, -0.04, -0.07, -0.04, 0.018
+19721031, 0.94, -0.30, -0.26, 0.018
+19721101, 1.02, -0.36, -0.15, 0.019
+19721102, 0.47, -0.32, 0.11, 0.019
+19721103, 0.84, -0.15, 0.16, 0.019
+19721106, -0.17, 0.11, 0.54, 0.019
+19721108, -0.49, 0.00, 0.41, 0.019
+19721109, 0.06, -0.37, 0.63, 0.019
+19721110, 0.30, 0.06, 0.59, 0.019
+19721113, 0.09, -0.31, 0.43, 0.019
+19721114, 0.83, -0.68, 0.06, 0.019
+19721115, -0.34, 0.21, 0.01, 0.019
+19721116, 0.50, -0.25, 0.02, 0.019
+19721117, 0.31, 0.00, 0.31, 0.019
+19721120, 0.01, 0.07, 0.34, 0.019
+19721121, 0.46, -0.04, 0.26, 0.019
+19721122, 0.59, -0.06, 0.29, 0.019
+19721124, 0.27, -0.32, 0.83, 0.019
+19721127, -0.38, 0.04, 0.25, 0.019
+19721128, -0.19, 0.51, 0.25, 0.019
+19721129, 0.02, 0.22, -0.20, 0.019
+19721130, 0.26, 0.59, -0.48, 0.019
+19721201, 0.65, 0.30, -0.21, 0.020
+19721204, 0.31, 0.29, -0.26, 0.020
+19721205, -0.21, -0.06, -0.05, 0.020
+19721206, 0.32, 0.15, -0.13, 0.020
+19721207, 0.41, -0.18, -0.32, 0.020
+19721208, 0.19, 0.07, -0.70, 0.020
+19721211, 0.19, -0.17, -0.22, 0.020
+19721212, -0.41, -0.33, 0.19, 0.020
+19721213, -0.19, -0.53, 0.08, 0.020
+19721214, -0.33, -0.31, 0.10, 0.020
+19721215, 0.05, -0.04, -0.26, 0.020
+19721218, -1.08, -0.02, -0.04, 0.020
+19721219, -0.41, -0.03, -0.02, 0.020
+19721220, -0.36, -0.18, 0.04, 0.020
+19721221, -0.66, 0.13, 0.04, 0.020
+19721222, 0.54, -0.18, 0.06, 0.020
+19721226, 0.21, -0.45, 0.10, 0.020
+19721227, 0.40, -0.60, -0.19, 0.020
+19721229, 1.09, 0.26, -0.50, 0.020
+19730102, 0.87, 0.88, -0.02, 0.021
+19730103, 0.35, 0.18, 0.13, 0.021
+19730104, -0.23, 0.11, 0.15, 0.021
+19730105, 0.30, 0.00, -0.09, 0.021
+19730108, -0.03, -0.13, 0.31, 0.021
+19730109, -0.09, -0.21, 0.32, 0.021
+19730110, -0.26, -0.27, 0.61, 0.021
+19730111, 0.55, -0.53, 0.04, 0.021
+19730112, -0.85, -0.44, 0.08, 0.021
+19730115, -0.84, -0.30, 0.26, 0.021
+19730116, -0.36, -0.25, -0.02, 0.021
+19730117, 0.37, -0.22, 0.14, 0.021
+19730118, 0.13, -0.22, -0.08, 0.021
+19730119, -0.19, -0.22, -0.46, 0.021
+19730122, -0.53, -0.09, 0.09, 0.021
+19730123, -0.16, -0.36, -0.04, 0.021
+19730124, -1.39, -0.24, 0.13, 0.021
+19730126, -0.37, -0.51, 0.29, 0.021
+19730129, -0.51, -0.19, 0.23, 0.021
+19730130, -0.17, -0.36, 0.26, 0.021
+19730131, 0.12, -0.29, 0.45, 0.021
+19730201, -1.16, -0.16, 0.16, 0.022
+19730202, -0.41, -0.06, -0.08, 0.022
+19730205, -0.19, -0.27, -0.12, 0.022
+19730206, 0.19, -0.32, -0.17, 0.022
+19730207, -0.77, 0.09, -0.16, 0.022
+19730208, -0.44, 0.01, -0.44, 0.022
+19730209, 1.35, -0.18, -0.41, 0.022
+19730212, 1.07, -0.14, -0.23, 0.022
+19730213, 0.51, -0.32, -0.01, 0.022
+19730214, -1.41, 0.11, 0.43, 0.022
+19730215, -0.69, -0.11, 0.16, 0.022
+19730216, 0.36, -0.42, 0.18, 0.022
+19730220, 0.25, -0.47, 0.40, 0.022
+19730221, -0.74, -0.39, 0.55, 0.022
+19730222, -0.30, -0.38, 0.23, 0.022
+19730223, -1.08, -0.18, 0.54, 0.022
+19730226, -0.88, -0.53, 0.59, 0.022
+19730227, -1.15, -0.19, 0.65, 0.022
+19730228, 0.62, -0.35, -0.40, 0.022
+19730301, -0.70, 0.04, 0.46, 0.021
+19730302, 0.86, -0.82, -0.16, 0.021
+19730305, 0.37, 0.06, -0.46, 0.021
+19730306, 1.26, -0.19, -0.23, 0.021
+19730307, 0.37, 0.29, -0.38, 0.021
+19730308, -0.21, 0.09, 0.21, 0.021
+19730309, -0.36, 0.17, 0.07, 0.021
+19730312, -0.03, -0.19, 0.17, 0.021
+19730313, 0.42, -0.55, 0.19, 0.021
+19730314, 0.26, -0.54, 0.19, 0.021
+19730315, -0.71, -0.11, 0.41, 0.021
+19730316, -0.52, 0.08, 0.10, 0.021
+19730319, -1.23, -0.05, 0.41, 0.021
+19730320, -0.33, -0.40, 0.32, 0.021
+19730321, -1.29, 0.01, 1.05, 0.021
+19730322, -1.68, -0.36, 0.74, 0.021
+19730323, 0.00, -0.26, 0.19, 0.021
+19730326, 0.75, -0.24, -0.21, 0.021
+19730327, 1.43, -0.21, -0.51, 0.021
+19730328, 0.03, 0.06, -0.02, 0.021
+19730329, 0.98, -0.33, 0.08, 0.021
+19730330, -0.92, 0.60, 0.08, 0.021
+19730402, -1.20, 0.02, 0.64, 0.026
+19730403, -1.00, -0.08, 0.37, 0.026
+19730404, -0.63, -0.03, 0.34, 0.026
+19730405, -0.47, -0.44, 0.29, 0.026
+19730406, 0.70, -0.36, -0.24, 0.026
+19730409, 1.26, -0.82, 0.05, 0.026
+19730410, 1.11, -0.58, -0.03, 0.026
+19730411, 0.39, -0.36, 0.33, 0.026
+19730412, -0.09, 0.06, 0.37, 0.026
+19730413, -0.42, 0.23, 0.26, 0.026
+19730416, -0.56, 0.16, 0.22, 0.026
+19730417, -0.59, -0.26, 0.78, 0.026
+19730418, 0.34, -0.70, 0.07, 0.026
+19730419, 0.53, -0.17, 0.20, 0.026
+19730423, -0.58, -0.03, 0.02, 0.026
+19730424, -1.51, -0.16, 0.62, 0.026
+19730425, -1.56, -0.31, 1.04, 0.026
+19730426, 0.32, -0.36, 0.03, 0.026
+19730427, -1.54, 0.24, 0.49, 0.026
+19730430, -0.24, -0.31, 0.16, 0.026
+19730501, 0.02, -0.31, 0.02, 0.023
+19730502, 1.18, -0.42, -0.43, 0.023
+19730503, 1.46, -0.79, -0.12, 0.023
+19730504, 0.76, 0.17, -0.55, 0.023
+19730507, -0.43, 0.03, 0.16, 0.023
+19730508, 0.58, -0.11, -0.11, 0.023
+19730509, -0.51, 0.58, -0.34, 0.023
+19730510, -0.68, 0.13, 0.00, 0.023
+19730511, -1.17, 0.14, 0.25, 0.023
+19730514, -2.19, -0.13, 0.85, 0.023
+19730515, 0.42, -1.10, -0.02, 0.023
+19730516, -0.13, -0.37, 0.40, 0.023
+19730517, -0.89, -0.12, 0.30, 0.023
+19730518, -1.88, -1.06, 0.27, 0.023
+19730521, -1.49, -2.43, 0.13, 0.023
+19730522, 0.75, -0.56, -0.26, 0.023
+19730523, 0.40, -0.52, -0.08, 0.023
+19730524, 2.79, -0.96, -0.91, 0.023
+19730525, 0.94, 1.38, -0.41, 0.023
+19730529, -0.32, 0.60, -0.14, 0.023
+19730530, -1.53, -0.16, 0.64, 0.023
+19730531, -0.91, -0.44, 0.54, 0.023
+19730601, -0.95, -0.19, 0.68, 0.024
+19730604, -1.14, -0.49, 0.55, 0.024
+19730605, 1.36, -0.69, -0.70, 0.024
+19730606, -0.27, -0.03, -0.12, 0.024
+19730607, 1.30, -0.68, -0.26, 0.024
+19730608, 1.08, 0.08, -0.20, 0.024
+19730611, -0.31, 0.32, 0.38, 0.024
+19730612, 1.44, -0.54, -0.56, 0.024
+19730613, -0.49, 1.10, 0.06, 0.024
+19730614, -1.06, 0.28, 0.11, 0.024
+19730615, -1.26, 0.00, 0.71, 0.024
+19730618, -1.44, -0.14, 0.30, 0.024
+19730619, 0.24, -0.42, -0.27, 0.024
+19730620, 0.38, -0.17, -0.34, 0.024
+19730621, -1.14, 0.19, 0.49, 0.024
+19730622, 0.40, -0.51, 0.38, 0.024
+19730625, -1.43, -0.58, 1.10, 0.024
+19730626, 0.89, -0.61, -0.37, 0.024
+19730627, 0.30, -0.18, -0.11, 0.024
+19730628, 0.99, -0.17, -0.55, 0.024
+19730629, -0.34, 0.39, 0.11, 0.024
+19730702, -1.20, 0.52, 0.59, 0.030
+19730703, -0.92, 0.29, 0.91, 0.030
+19730705, -0.18, -0.14, 0.19, 0.030
+19730706, -0.43, 0.24, 0.36, 0.030
+19730709, 0.80, -0.40, -0.32, 0.030
+19730710, 1.38, 0.20, -0.63, 0.030
+19730711, 2.17, 0.33, -0.72, 0.030
+19730712, -0.06, 0.95, -0.43, 0.030
+19730713, -1.09, 1.04, 0.10, 0.030
+19730716, 1.50, 0.09, -1.14, 0.030
+19730717, 0.28, 0.78, -0.53, 0.030
+19730718, 0.79, 0.75, -0.51, 0.030
+19730719, 0.37, 0.77, -0.69, 0.030
+19730720, 0.66, 0.68, -0.60, 0.030
+19730723, 0.29, 0.53, -0.13, 0.030
+19730724, 0.55, -0.03, -0.55, 0.030
+19730725, 1.36, 0.28, -0.98, 0.030
+19730726, 0.11, 0.31, -0.28, 0.030
+19730727, -0.24, 0.01, 0.03, 0.030
+19730730, -0.33, -0.14, 0.26, 0.030
+19730731, -0.85, 0.20, 0.20, 0.030
+19730801, -1.31, -0.25, 0.41, 0.030
+19730802, -0.12, -0.08, -0.22, 0.030
+19730803, -0.10, 0.26, -0.20, 0.030
+19730806, 0.27, 0.13, -0.36, 0.030
+19730807, -0.17, 0.08, -0.25, 0.030
+19730808, -0.97, 0.03, 0.23, 0.030
+19730809, -0.03, -0.31, 0.11, 0.030
+19730810, -0.80, -0.20, 0.33, 0.030
+19730813, -1.08, -0.27, 0.26, 0.030
+19730814, -0.93, -0.16, 0.31, 0.030
+19730815, 0.24, -0.27, 0.00, 0.030
+19730816, -0.52, 0.29, 0.50, 0.030
+19730817, 0.02, -0.12, 0.31, 0.030
+19730820, -0.75, -0.20, 0.45, 0.030
+19730821, -0.78, 0.02, 0.01, 0.030
+19730822, -0.48, -0.27, 0.04, 0.030
+19730823, 1.28, -0.43, -0.52, 0.030
+19730824, -0.14, 0.07, 0.19, 0.030
+19730827, 0.68, -0.34, -0.54, 0.030
+19730828, 0.47, -0.32, 0.04, 0.030
+19730829, 0.89, -0.15, 0.00, 0.030
+19730830, 0.01, 0.27, 0.19, 0.030
+19730831, 0.50, 0.16, -0.17, 0.030
+19730904, 0.37, 0.05, 0.30, 0.036
+19730905, 0.19, 0.01, 0.06, 0.036
+19730906, 0.48, -0.16, 0.49, 0.036
+19730907, -0.18, 0.47, 0.12, 0.036
+19730910, -0.88, 0.54, 0.43, 0.036
+19730911, -0.58, 0.03, 0.19, 0.036
+19730912, -0.24, -0.01, 0.01, 0.036
+19730913, 0.29, 0.00, -0.65, 0.036
+19730914, 0.89, -0.04, -0.76, 0.036
+19730917, -0.04, 0.53, 0.22, 0.036
+19730918, -0.23, 0.15, 0.32, 0.036
+19730919, 1.93, -0.24, -0.72, 0.036
+19730920, 0.92, 0.22, -0.08, 0.036
+19730921, 0.51, 0.20, 0.55, 0.036
+19730924, 0.29, 0.38, 0.83, 0.036
+19730925, 0.50, -0.06, 0.33, 0.036
+19730926, 0.70, 0.27, 0.29, 0.036
+19730927, 0.23, 0.04, 0.05, 0.036
+19730928, -0.48, 0.41, 0.15, 0.036
+19731001, -0.16, 0.55, 0.70, 0.028
+19731002, 0.58, 0.67, -0.13, 0.028
+19731003, 0.08, 0.71, 0.62, 0.028
+19731004, -0.39, 0.19, 0.43, 0.028
+19731005, 1.19, -0.06, -0.26, 0.028
+19731008, 0.44, 0.33, -0.19, 0.028
+19731009, -0.10, 0.06, -0.08, 0.028
+19731010, -1.16, -0.58, -0.27, 0.028
+19731011, 1.65, 0.11, -0.54, 0.028
+19731012, 0.37, 0.17, -0.17, 0.028
+19731015, -1.17, 0.16, 0.12, 0.028
+19731016, -0.01, -0.39, -0.28, 0.028
+19731017, -0.29, -0.09, 0.13, 0.028
+19731018, -0.01, -0.26, 0.02, 0.028
+19731019, 0.20, -0.03, 0.28, 0.028
+19731022, -1.07, -0.40, 0.47, 0.028
+19731023, 0.35, -0.40, -0.11, 0.028
+19731024, 0.29, -0.34, 0.05, 0.028
+19731025, 0.15, -0.19, -0.02, 0.028
+19731026, 0.72, -0.29, 0.08, 0.028
+19731029, -0.26, -0.13, 0.27, 0.028
+19731030, -1.52, -0.05, 0.57, 0.028
+19731031, -0.88, 0.07, 0.05, 0.028
+19731101, -0.58, -0.08, -0.21, 0.026
+19731102, -0.56, -0.31, 0.11, 0.026
+19731105, -1.59, -0.30, 0.28, 0.026
+19731106, -0.72, -0.49, 0.31, 0.026
+19731107, 0.63, -0.86, 0.59, 0.026
+19731108, 1.08, -0.05, -0.37, 0.026
+19731109, -1.48, 0.03, 0.70, 0.026
+19731112, -0.97, -0.63, -0.08, 0.026
+19731113, -0.29, -0.86, -0.30, 0.026
+19731114, -1.87, -0.48, 0.40, 0.026
+19731115, -0.13, -0.71, 0.30, 0.026
+19731116, 1.13, -0.65, 0.18, 0.026
+19731119, -3.03, -0.13, 1.18, 0.026
+19731120, -2.26, -1.33, 0.13, 0.026
+19731121, 1.06, -0.81, -0.07, 0.026
+19731123, -0.14, 0.17, 0.64, 0.026
+19731126, -3.01, -1.33, 0.96, 0.026
+19731127, -0.94, -0.40, 0.05, 0.026
+19731128, 1.98, 0.07, -0.87, 0.026
+19731129, -0.35, 0.06, 0.13, 0.026
+19731130, -1.35, 0.01, 0.73, 0.026
+19731203, -2.06, -0.32, 0.18, 0.032
+19731204, -0.42, -0.41, -0.26, 0.032
+19731205, -1.74, -0.62, 0.16, 0.032
+19731206, 2.25, -1.13, -0.38, 0.032
+19731207, 2.19, 0.25, 0.72, 0.032
+19731210, 1.50, -0.32, -0.39, 0.032
+19731211, -1.81, 0.10, 0.80, 0.032
+19731212, -2.60, -0.11, 0.67, 0.032
+19731213, -1.48, -0.35, 0.89, 0.032
+19731214, 0.97, -0.58, 0.08, 0.032
+19731217, -0.66, -0.10, 0.59, 0.032
+19731218, 1.88, -1.01, -0.42, 0.032
+19731219, -0.02, -0.26, 0.18, 0.032
+19731220, -0.30, 0.08, 0.53, 0.032
+19731221, -0.96, 0.17, 0.87, 0.032
+19731224, -0.63, 0.36, 0.94, 0.032
+19731226, 2.71, -1.12, -0.85, 0.032
+19731227, 1.96, -0.34, -0.72, 0.032
+19731228, -0.11, -0.07, 0.17, 0.032
+19731231, 0.20, 0.50, 0.16, 0.032
+19740102, 0.26, 1.27, 1.20, 0.028
+19740103, 2.32, 1.45, 0.93, 0.028
+19740104, -0.56, 1.59, 1.54, 0.028
+19740107, -0.52, 1.37, 1.05, 0.028
+19740108, -1.77, 0.91, 0.84, 0.028
+19740109, -2.73, 0.58, 0.52, 0.028
+19740110, -1.07, 0.27, -0.18, 0.028
+19740111, 1.16, -0.29, 0.25, 0.028
+19740114, -0.14, 0.10, 0.54, 0.028
+19740115, 0.75, -0.35, -0.01, 0.028
+19740116, 1.43, -0.48, -0.22, 0.028
+19740117, 1.67, 0.16, -0.84, 0.028
+19740118, -1.55, 1.08, -0.04, 0.028
+19740121, -0.27, -0.22, -0.17, 0.028
+19740122, 0.98, -0.28, -0.20, 0.028
+19740123, 0.49, 0.48, -0.35, 0.028
+19740124, -0.25, 0.42, 0.32, 0.028
+19740125, -0.11, 0.45, -0.28, 0.028
+19740128, -0.50, 0.41, 0.15, 0.028
+19740129, -0.16, -0.04, 0.48, 0.028
+19740130, 1.01, -0.11, 0.00, 0.028
+19740131, -0.45, 0.41, 0.11, 0.028
+19740201, -1.23, 0.52, 0.23, 0.031
+19740204, -1.96, 0.07, 0.09, 0.031
+19740205, -0.40, -0.13, 0.48, 0.031
+19740206, 0.29, -0.21, 0.11, 0.031
+19740207, 0.12, 0.16, 0.45, 0.031
+19740208, -0.95, 0.31, 0.66, 0.031
+19740211, -1.76, 0.51, 0.81, 0.031
+19740212, 0.04, -0.52, 0.27, 0.031
+19740213, -0.04, -0.16, 0.15, 0.031
+19740214, -0.01, 0.25, 0.11, 0.031
+19740215, 1.30, -0.36, -0.39, 0.031
+19740219, -0.13, -0.06, 0.07, 0.031
+19740220, 1.24, -0.54, -0.27, 0.031
+19740221, 1.24, -0.47, -0.11, 0.031
+19740222, 0.82, -0.14, 0.40, 0.031
+19740225, -0.26, 0.28, 0.25, 0.031
+19740226, 0.98, -0.13, 0.02, 0.031
+19740227, 0.49, 0.39, -0.58, 0.031
+19740228, -0.14, 0.25, -0.28, 0.031
+19740301, -0.61, 0.61, 0.32, 0.026
+19740304, 0.01, 0.20, -0.05, 0.026
+19740305, 1.76, -0.37, -0.80, 0.026
+19740306, 0.56, 0.44, -0.70, 0.026
+19740307, -0.94, 0.67, 0.27, 0.026
+19740308, 0.75, -0.22, -0.31, 0.026
+19740311, 1.01, -0.29, -0.37, 0.026
+19740312, 0.18, -0.08, -0.08, 0.026
+19740313, 0.55, 0.04, -0.42, 0.026
+19740314, 0.04, 0.40, -0.22, 0.026
+19740315, -0.29, 0.35, -0.03, 0.026
+19740318, -1.29, 0.58, 0.44, 0.026
+19740319, -0.84, 0.06, 0.19, 0.026
+19740320, 0.26, -0.17, -0.25, 0.026
+19740321, -0.23, 0.01, 0.14, 0.026
+19740322, -0.11, -0.05, -0.06, 0.026
+19740325, 0.19, -0.41, -0.33, 0.026
+19740326, 0.21, -0.18, 0.32, 0.026
+19740327, -1.35, 0.41, 0.64, 0.026
+19740328, -1.85, 0.26, 0.48, 0.026
+19740329, -0.81, 0.23, 0.65, 0.026
+19740401, -0.79, 0.34, 0.34, 0.036
+19740402, 0.00, -0.06, 0.01, 0.036
+19740403, 0.81, -0.55, -0.28, 0.036
+19740404, -0.08, -0.03, 0.03, 0.036
+19740405, -1.40, 0.57, 0.38, 0.036
+19740408, -1.04, -0.07, 0.25, 0.036
+19740409, 0.49, -0.41, -0.02, 0.036
+19740410, -0.21, 0.03, 0.35, 0.036
+19740411, -0.27, 0.18, 0.22, 0.036
+19740415, -0.17, -0.02, 0.25, 0.036
+19740416, 1.56, -0.58, -0.29, 0.036
+19740417, 0.67, -0.17, -0.16, 0.036
+19740418, 0.35, -0.11, 0.04, 0.036
+19740419, -1.05, 0.40, 0.05, 0.036
+19740422, -0.41, -0.04, 0.09, 0.036
+19740423, -1.83, 0.05, 0.10, 0.036
+19740424, -1.73, 0.12, 0.31, 0.036
+19740425, -0.97, -0.30, 0.03, 0.036
+19740426, 0.57, -0.15, -0.09, 0.036
+19740429, -0.08, 0.20, -0.23, 0.036
+19740430, 0.26, -0.09, -0.32, 0.036
+19740501, 1.95, -0.90, -0.54, 0.034
+19740502, -0.10, 0.27, -0.12, 0.034
+19740503, -0.84, 0.19, 0.32, 0.034
+19740506, -0.16, -0.25, -0.13, 0.034
+19740507, 0.18, -0.31, -0.15, 0.034
+19740508, 0.01, -0.09, -0.34, 0.034
+19740509, 1.07, -0.76, -0.26, 0.034
+19740510, -1.63, 0.61, 0.36, 0.034
+19740513, -0.96, -0.19, 0.20, 0.034
+19740514, -0.03, -0.08, -0.21, 0.034
+19740515, -0.23, -0.09, -0.16, 0.034
+19740516, -0.66, 0.38, -0.01, 0.034
+19740517, -1.79, 0.19, 0.30, 0.034
+19740520, -0.48, -0.20, -0.23, 0.034
+19740521, -0.03, -0.58, -0.67, 0.034
+19740522, -1.00, -0.13, -0.18, 0.034
+19740523, 0.01, -0.82, -0.34, 0.034
+19740524, 1.52, -0.38, -0.33, 0.034
+19740528, -0.24, 0.03, 0.23, 0.034
+19740529, -1.62, 0.49, -0.02, 0.034
+19740530, 0.54, -0.72, 0.12, 0.034
+19740531, -0.14, 0.10, -0.01, 0.034
+19740603, 1.86, -0.76, -0.19, 0.030
+19740604, 1.22, -0.01, 0.06, 0.030
+19740605, 0.27, 0.16, 0.18, 0.030
+19740606, 1.70, -0.61, -0.68, 0.030
+19740607, 0.66, 0.38, 0.06, 0.030
+19740610, 0.55, -0.13, -0.30, 0.030
+19740611, -0.85, 0.47, -0.10, 0.030
+19740612, -0.38, -0.11, -0.19, 0.030
+19740613, 0.21, 0.21, -0.48, 0.030
+19740614, -1.03, 0.34, 0.28, 0.030
+19740617, -1.36, 0.38, 0.42, 0.030
+19740618, -0.69, 0.11, 0.05, 0.030
+19740619, -0.75, 0.12, 0.23, 0.030
+19740620, -0.83, 0.02, 0.17, 0.030
+19740621, -0.97, 0.08, 0.04, 0.030
+19740624, 0.07, -0.31, 0.06, 0.030
+19740625, 1.26, -0.79, -0.23, 0.030
+19740626, -1.57, 0.33, 0.91, 0.030
+19740627, -1.55, -0.01, 0.37, 0.030
+19740628, -0.58, -0.18, 0.00, 0.030
+19740701, -0.18, -0.39, 0.12, 0.032
+19740702, -2.13, 0.19, 0.71, 0.032
+19740703, -0.16, -0.56, 0.22, 0.032
+19740705, -0.57, 0.17, 0.25, 0.032
+19740708, -3.21, 0.02, 0.82, 0.032
+19740709, 0.24, -0.63, -0.29, 0.032
+19740710, -1.75, 0.51, 0.54, 0.032
+19740711, -0.14, -0.34, -0.33, 0.032
+19740712, 4.01, -1.01, -0.26, 0.032
+19740715, 0.79, 0.16, 0.17, 0.032
+19740716, -1.04, 0.50, 0.17, 0.032
+19740717, 1.08, -0.37, -0.14, 0.032
+19740718, 0.18, 0.54, 0.68, 0.032
+19740719, -0.11, 0.20, 0.16, 0.032
+19740722, 0.29, -0.09, -0.22, 0.032
+19740723, 1.03, -0.20, 0.32, 0.032
+19740724, 0.35, -0.36, 0.45, 0.032
+19740725, -1.20, 0.72, 0.61, 0.032
+19740726, -1.73, 0.92, 0.66, 0.032
+19740729, -1.80, 0.37, 0.24, 0.032
+19740730, -0.56, 0.13, -0.23, 0.032
+19740731, -1.51, 0.45, 0.72, 0.032
+19740801, -0.66, -0.13, 0.38, 0.027
+19740802, -0.25, -0.10, 0.23, 0.027
+19740805, 0.87, -0.46, -0.03, 0.027
+19740806, 1.55, -0.29, -0.68, 0.027
+19740807, 2.48, -0.91, -0.02, 0.027
+19740808, -1.21, 1.44, 0.53, 0.027
+19740809, -0.66, 0.67, 0.34, 0.027
+19740812, -1.17, 0.63, 0.31, 0.027
+19740813, -1.66, 0.23, 0.75, 0.027
+19740814, -2.19, 0.60, 0.34, 0.027
+19740815, -0.58, -0.26, 0.26, 0.027
+19740816, -0.85, 0.27, 0.59, 0.027
+19740819, -1.44, -0.05, 0.45, 0.027
+19740820, 0.39, -0.38, -0.04, 0.027
+19740821, -1.78, 0.46, 0.90, 0.027
+19740822, -1.11, -0.51, 0.38, 0.027
+19740823, -1.62, 0.20, 0.69, 0.027
+19740826, 0.70, -0.87, -0.97, 0.027
+19740827, -1.56, 0.57, -0.44, 0.027
+19740828, -0.33, -0.33, -0.70, 0.027
+19740829, -1.26, -0.26, -0.66, 0.027
+19740830, 2.79, -1.34, 0.06, 0.027
+19740903, -2.18, 0.59, 0.80, 0.040
+19740904, -2.69, -0.08, 0.61, 0.040
+19740905, 2.90, -1.78, -0.87, 0.040
+19740906, 0.75, -0.09, 0.56, 0.040
+19740909, -2.28, 0.53, 0.61, 0.040
+19740910, -0.79, -0.44, 0.37, 0.040
+19740911, -0.89, 0.00, -0.11, 0.040
+19740912, -2.56, -0.22, 0.76, 0.040
+19740913, -2.24, 0.35, 0.29, 0.040
+19740916, 1.40, -1.58, -0.95, 0.040
+19740917, 1.64, -0.32, 0.48, 0.040
+19740918, 0.36, -0.48, -0.37, 0.040
+19740919, 3.34, -0.66, -0.29, 0.040
+19740920, 0.31, 0.51, 0.33, 0.040
+19740923, -0.79, 0.54, 0.65, 0.040
+19740924, -1.84, 0.67, 0.62, 0.040
+19740925, -0.41, 0.82, 0.38, 0.040
+19740926, -1.64, 0.47, 0.63, 0.040
+19740927, -2.11, 0.91, 0.88, 0.040
+19740930, -2.37, 0.39, 0.53, 0.040
+19741001, -0.23, -0.29, -0.02, 0.022
+19741002, 0.06, 0.42, 0.16, 0.022
+19741003, -1.67, 0.71, 0.33, 0.022
+19741004, 0.07, -0.24, 0.29, 0.022
+19741007, 3.77, -1.68, -0.08, 0.022
+19741008, -0.12, 0.85, 0.01, 0.022
+19741009, 4.23, -2.05, -1.40, 0.022
+19741010, 2.96, 0.08, -1.20, 0.022
+19741011, 2.01, -0.19, -0.82, 0.022
+19741014, 2.28, -0.01, -0.76, 0.022
+19741015, -1.63, 0.75, -0.09, 0.022
+19741016, -1.42, 0.79, -0.09, 0.022
+19741017, 1.08, -0.27, -0.75, 0.022
+19741018, 1.38, -0.46, -0.92, 0.022
+19741021, 1.69, -0.63, -1.28, 0.022
+19741022, -0.30, 0.73, -0.28, 0.022
+19741023, -2.52, 1.29, 0.33, 0.022
+19741024, -1.20, -0.34, 0.10, 0.022
+19741025, -0.05, 0.00, 0.00, 0.022
+19741028, -0.09, -0.20, -0.35, 0.022
+19741029, 3.42, -2.25, -1.12, 0.022
+19741030, 1.94, -0.71, -1.00, 0.022
+19741031, -0.32, 0.37, -0.07, 0.022
+19741101, -0.03, 0.02, 0.06, 0.027
+19741104, -0.95, 0.20, -0.10, 0.027
+19741105, 2.56, -0.90, -1.44, 0.027
+19741106, -0.12, 0.13, 0.22, 0.027
+19741107, 0.74, -0.23, -0.14, 0.027
+19741108, -0.21, 0.27, 0.47, 0.027
+19741111, 0.32, 0.22, 0.45, 0.027
+19741112, -1.95, 0.45, 0.53, 0.027
+19741113, -0.49, -0.11, 0.01, 0.027
+19741114, -0.29, -0.22, 0.60, 0.027
+19741115, -1.44, 0.61, 0.50, 0.027
+19741118, -3.57, 0.65, 0.82, 0.027
+19741119, -1.65, -0.20, 0.29, 0.027
+19741120, -0.45, -0.27, 0.13, 0.027
+19741121, 0.49, -0.33, -0.87, 0.027
+19741122, 1.08, -0.55, -0.16, 0.027
+19741125, -0.10, -0.20, -0.54, 0.027
+19741126, 0.95, -0.44, -0.69, 0.027
+19741127, 0.60, -0.19, -0.15, 0.027
+19741129, 0.07, -0.15, -0.27, 0.027
+19741202, -2.51, 0.57, 0.58, 0.033
+19741203, -1.47, -0.05, 0.03, 0.033
+19741204, 0.20, -0.81, -0.06, 0.033
+19741205, -1.94, 0.07, 0.72, 0.033
+19741206, -1.75, -0.01, 0.03, 0.033
+19741209, 0.53, -1.49, -0.68, 0.033
+19741210, 2.27, -1.53, -0.53, 0.033
+19741211, 0.64, -0.54, 0.20, 0.033
+19741212, -0.41, -0.22, 0.12, 0.033
+19741213, -0.58, 0.08, 0.09, 0.033
+19741216, -0.92, -0.01, 0.38, 0.033
+19741217, 1.32, -1.35, -0.88, 0.033
+19741218, 0.46, -0.03, -0.05, 0.033
+19741219, -0.37, 0.15, 0.08, 0.033
+19741220, -1.15, 0.28, 0.46, 0.033
+19741223, -1.47, 0.22, 0.18, 0.033
+19741224, 1.30, -0.70, -0.18, 0.033
+19741226, 0.87, -0.14, -0.06, 0.033
+19741227, -0.42, 0.31, 0.01, 0.033
+19741230, -0.08, -0.36, -0.40, 0.033
+19741231, 2.18, 0.53, -0.06, 0.033
+19750102, 2.48, 0.30, 1.35, 0.026
+19750103, 0.80, 0.44, 1.43, 0.026
+19750106, 0.78, 0.69, 1.57, 0.026
+19750107, 0.00, 0.87, 0.69, 0.026
+19750108, -1.16, 1.12, 0.78, 0.026
+19750109, 1.60, -0.50, -0.04, 0.026
+19750110, 2.12, 0.51, 0.25, 0.026
+19750113, -0.35, 1.23, 0.99, 0.026
+19750114, -0.78, 0.77, 0.36, 0.026
+19750115, 0.68, -0.01, -0.54, 0.026
+19750116, 0.13, 0.75, -0.33, 0.026
+19750117, -1.24, 0.83, 0.29, 0.026
+19750120, 0.00, -0.32, 0.13, 0.026
+19750121, -0.43, 0.23, 0.88, 0.026
+19750122, 1.08, -0.63, -0.32, 0.026
+19750123, 0.51, 0.54, -0.10, 0.026
+19750124, 1.25, 0.06, 0.57, 0.026
+19750127, 3.35, 0.01, -0.32, 0.026
+19750128, 0.46, 0.65, -0.52, 0.026
+19750129, 1.55, 0.17, -0.27, 0.026
+19750130, -1.13, 1.15, 0.12, 0.026
+19750131, 0.98, 0.18, -0.01, 0.026
+19750203, 1.24, 0.41, 0.12, 0.023
+19750204, -0.32, 0.40, -1.03, 0.023
+19750205, 1.63, -0.33, -0.62, 0.023
+19750206, -0.13, 0.73, -0.08, 0.023
+19750207, -0.03, -0.15, -0.21, 0.023
+19750210, -0.30, 0.14, -0.26, 0.023
+19750211, 0.17, -0.26, -0.55, 0.023
+19750212, 1.57, -0.53, -0.50, 0.023
+19750213, 1.32, -0.04, -0.82, 0.023
+19750214, 0.51, -0.10, -0.50, 0.023
+19750218, -0.68, 0.10, 0.67, 0.023
+19750219, 0.47, -0.36, -0.31, 0.023
+19750220, 0.93, -0.34, -0.45, 0.023
+19750221, 0.44, 0.04, -0.12, 0.023
+19750224, -1.28, 0.69, 0.09, 0.023
+19750225, -2.25, 0.18, 0.16, 0.023
+19750226, 0.85, -0.34, -0.02, 0.023
+19750227, 0.50, 0.33, -0.48, 0.023
+19750228, 0.86, -0.46, 0.53, 0.023
+19750303, 1.71, -0.53, 0.30, 0.021
+19750304, 0.69, -0.14, 0.05, 0.021
+19750305, -0.75, 0.20, 0.39, 0.021
+19750306, 0.88, -0.09, 0.35, 0.021
+19750307, 0.75, 0.63, 0.17, 0.021
+19750310, 0.74, 0.43, 0.57, 0.021
+19750311, -0.53, 0.83, 0.63, 0.021
+19750312, -0.90, 0.21, 0.38, 0.021
+19750313, 0.26, 0.75, -0.69, 0.021
+19750314, 1.36, 0.66, -0.15, 0.021
+19750317, 1.36, 0.13, 0.46, 0.021
+19750318, -0.90, -0.25, 0.23, 0.021
+19750319, -0.89, 0.31, -0.13, 0.021
+19750320, -0.68, 0.66, -0.10, 0.021
+19750321, -0.21, -0.06, -0.02, 0.021
+19750324, -2.30, -0.11, 0.11, 0.021
+19750325, 0.58, -0.25, -0.49, 0.021
+19750326, 1.76, -0.23, 0.21, 0.021
+19750327, 0.34, 0.07, -0.03, 0.021
+19750331, -0.56, 0.37, 0.13, 0.021
+19750401, -0.81, 0.09, -0.32, 0.020
+19750402, -0.23, 0.25, -0.11, 0.020
+19750403, -1.03, 0.64, 0.21, 0.020
+19750404, -0.59, 0.34, 0.02, 0.020
+19750407, -0.68, -0.06, -0.05, 0.020
+19750408, 0.58, -0.70, -0.22, 0.020
+19750409, 2.00, -0.62, -0.51, 0.020
+19750410, 1.02, -0.45, 0.23, 0.020
+19750411, 0.58, 0.34, 0.03, 0.020
+19750414, 1.55, -0.21, -0.42, 0.020
+19750415, 0.66, -0.33, 0.12, 0.020
+19750416, 0.39, -0.07, -0.13, 0.020
+19750417, 0.73, -0.10, 0.14, 0.020
+19750418, -0.90, 0.89, 0.13, 0.020
+19750421, 1.08, 0.06, 0.19, 0.020
+19750422, -0.27, 0.07, 0.23, 0.020
+19750423, -1.04, 0.19, -0.16, 0.020
+19750424, -0.02, 0.05, 0.29, 0.020
+19750425, 0.70, 0.15, 0.07, 0.020
+19750428, -0.38, 0.08, 0.19, 0.020
+19750429, -0.77, -0.18, -0.32, 0.020
+19750430, 1.65, -1.00, -0.68, 0.020
+19750501, 0.85, -0.10, -0.53, 0.021
+19750502, 1.24, -0.57, -0.34, 0.021
+19750505, 0.96, -0.14, -0.26, 0.021
+19750506, -1.27, 0.72, -0.50, 0.021
+19750507, 0.47, 0.40, -0.52, 0.021
+19750508, 0.73, 0.24, 0.15, 0.021
+19750509, 1.15, 0.04, 0.20, 0.021
+19750512, 0.05, 0.20, -0.19, 0.021
+19750513, 0.81, -0.49, -0.09, 0.021
+19750514, 0.74, -0.35, 0.19, 0.021
+19750515, -0.76, 0.75, -0.16, 0.021
+19750516, -0.94, 0.67, -0.03, 0.021
+19750519, 0.08, 0.03, 0.11, 0.021
+19750520, -0.41, 0.53, -0.19, 0.021
+19750521, -1.13, 0.33, -0.30, 0.021
+19750522, 0.39, 0.36, -0.84, 0.021
+19750523, 1.29, -0.07, -0.29, 0.021
+19750527, -0.10, 0.36, 0.04, 0.021
+19750528, -0.66, 0.53, -0.24, 0.021
+19750529, 0.01, 0.15, 0.10, 0.021
+19750530, 1.62, 0.05, -0.06, 0.021
+19750602, 1.42, -0.22, 0.15, 0.019
+19750603, 0.33, -0.06, -0.16, 0.019
+19750604, -0.19, 0.56, -0.19, 0.019
+19750605, 0.11, 0.16, -0.06, 0.019
+19750606, -0.12, 0.18, -0.13, 0.019
+19750609, -1.24, 0.21, 0.52, 0.019
+19750610, -0.84, 0.06, -0.13, 0.019
+19750611, 0.12, -0.16, 0.15, 0.019
+19750612, -0.51, -0.20, 0.59, 0.019
+19750613, 0.49, -0.12, -0.10, 0.019
+19750616, 0.96, -0.69, 0.08, 0.019
+19750617, -0.84, 0.13, 0.21, 0.019
+19750618, -0.20, -0.15, 0.15, 0.019
+19750619, 1.78, -0.44, -0.13, 0.019
+19750620, 0.68, 0.15, 0.05, 0.019
+19750623, 1.04, 0.06, -0.17, 0.019
+19750624, 0.64, -0.03, -0.14, 0.019
+19750625, 0.42, 0.26, -0.04, 0.019
+19750626, 0.22, 0.10, 0.24, 0.019
+19750627, 0.02, 0.34, 0.19, 0.019
+19750630, 0.47, 0.55, 0.17, 0.019
+19750701, -0.41, 0.30, 0.30, 0.022
+19750702, -0.79, 0.20, -0.12, 0.022
+19750703, 0.35, 0.53, -0.10, 0.022
+19750707, -0.83, 0.35, 0.08, 0.022
+19750708, -0.18, -0.22, 0.38, 0.022
+19750709, 1.53, 0.03, 0.27, 0.022
+19750710, 0.06, 0.19, 0.69, 0.022
+19750711, -0.02, 0.34, 0.60, 0.022
+19750714, 0.55, 0.48, 0.17, 0.022
+19750715, 0.45, 0.26, 0.85, 0.022
+19750716, -0.99, 0.37, -0.04, 0.022
+19750717, -0.90, 0.51, 0.23, 0.022
+19750718, -0.34, 0.49, -0.03, 0.022
+19750721, -0.73, 0.42, -0.19, 0.022
+19750722, -1.14, -0.05, -0.29, 0.022
+19750723, -1.46, -0.24, -0.18, 0.022
+19750724, -0.35, -0.67, -0.51, 0.022
+19750725, -0.82, 0.18, 0.21, 0.022
+19750728, -0.74, -0.23, -0.37, 0.022
+19750729, -0.65, -0.23, -0.19, 0.022
+19750730, 0.70, -0.41, -0.01, 0.022
+19750731, -0.01, 0.21, 0.07, 0.022
+19750801, -0.98, 0.00, 0.24, 0.023
+19750804, -0.98, 0.04, -0.46, 0.023
+19750805, -1.13, -0.28, -0.33, 0.023
+19750806, -0.01, -0.42, -0.45, 0.023
+19750807, -0.05, -0.35, 0.26, 0.023
+19750808, -0.35, -0.42, 0.04, 0.023
+19750811, 0.47, -0.66, -0.83, 0.023
+19750812, 0.65, -0.05, 0.19, 0.023
+19750813, -1.22, 0.18, 0.53, 0.023
+19750814, -0.58, 0.04, -0.23, 0.023
+19750815, 0.74, -0.36, 0.10, 0.023
+19750818, -0.22, 0.05, 0.11, 0.023
+19750819, -1.57, 0.10, 0.47, 0.023
+19750820, -2.03, 0.22, -0.26, 0.023
+19750821, -0.12, -0.53, -0.38, 0.023
+19750822, 1.39, -0.45, -0.06, 0.023
+19750825, 0.95, -0.32, 0.02, 0.023
+19750826, -1.17, 0.42, -0.07, 0.023
+19750827, 0.48, -0.14, -0.32, 0.023
+19750828, 2.26, -0.76, 0.38, 0.023
+19750829, 0.72, 0.38, 0.20, 0.023
+19750902, -1.56, 0.47, 0.22, 0.025
+19750903, 0.46, -0.32, -0.23, 0.025
+19750904, 0.16, -0.02, 0.23, 0.025
+19750905, -0.64, 0.27, 0.16, 0.025
+19750908, 0.15, -0.29, 0.13, 0.025
+19750909, -1.36, 0.38, 0.55, 0.025
+19750910, -1.17, -0.07, -0.08, 0.025
+19750911, -0.39, 0.05, 0.00, 0.025
+19750912, -0.24, 0.29, 0.10, 0.025
+19750915, -0.55, -0.01, -0.13, 0.025
+19750916, -0.95, 0.03, -0.05, 0.025
+19750917, 0.19, -0.37, -0.16, 0.025
+19750918, 1.83, -1.01, 0.08, 0.025
+19750919, 2.22, -0.40, -0.20, 0.025
+19750922, -0.84, 0.48, 0.07, 0.025
+19750923, -0.15, -0.01, -0.34, 0.025
+19750924, 0.95, -0.15, 0.11, 0.025
+19750925, -0.18, 0.18, -0.38, 0.025
+19750926, 0.50, -0.27, -0.30, 0.025
+19750929, -1.24, 0.32, 0.53, 0.025
+19750930, -1.42, 0.22, -0.05, 0.025
+19751001, -1.16, 0.09, -0.07, 0.024
+19751002, 0.89, -0.69, -0.32, 0.024
+19751003, 2.37, -0.99, -0.32, 0.024
+19751006, 1.02, -0.42, -0.29, 0.024
+19751007, -0.15, 0.03, -0.34, 0.024
+19751008, 1.21, -0.41, -0.36, 0.024
+19751009, 0.45, -0.22, -0.03, 0.024
+19751010, -0.10, 0.00, 0.19, 0.024
+19751013, 1.34, -0.73, -0.05, 0.024
+19751014, -0.04, 0.28, -0.05, 0.024
+19751015, -0.07, -0.12, -0.02, 0.024
+19751016, 0.17, -0.01, 0.25, 0.024
+19751017, -0.60, 0.10, 0.05, 0.024
+19751020, 0.94, -0.80, 0.10, 0.024
+19751021, 0.78, -0.42, 0.41, 0.024
+19751022, 0.18, -0.02, -0.08, 0.024
+19751023, 0.48, -0.24, 0.52, 0.024
+19751024, -1.33, 0.82, 0.29, 0.024
+19751027, -0.11, -0.22, 0.25, 0.024
+19751028, 0.77, -0.18, -0.11, 0.024
+19751029, -1.35, 0.30, 0.05, 0.024
+19751030, -0.19, 0.00, -0.02, 0.024
+19751031, -0.26, -0.08, 0.26, 0.024
+19751103, -0.94, 0.46, -0.01, 0.022
+19751104, 0.41, -0.46, 0.02, 0.022
+19751105, 0.83, -0.21, 0.38, 0.022
+19751106, 0.43, -0.10, -0.03, 0.022
+19751107, -0.16, 0.25, 0.03, 0.022
+19751110, 0.00, -0.17, -0.30, 0.022
+19751111, 0.60, -0.08, 0.07, 0.022
+19751112, 1.47, -0.30, 0.11, 0.022
+19751113, -0.05, 0.19, 0.01, 0.022
+19751114, -0.12, 0.08, 0.18, 0.022
+19751117, 0.49, -0.43, 0.31, 0.022
+19751118, -0.52, -0.03, 0.36, 0.022
+19751119, -1.10, 0.26, 0.15, 0.022
+19751120, -0.41, 0.15, 0.22, 0.022
+19751121, -0.05, 0.05, 0.01, 0.022
+19751124, 0.28, -0.25, 0.08, 0.022
+19751125, 0.92, -0.51, -0.07, 0.022
+19751126, 0.30, 0.07, 0.10, 0.022
+19751128, 0.28, -0.15, 0.29, 0.022
+19751201, -0.59, 0.07, 0.14, 0.022
+19751202, -1.55, 0.30, -0.38, 0.022
+19751203, -2.07, 0.16, -0.34, 0.022
+19751204, 0.13, -0.46, -0.01, 0.022
+19751205, -1.08, 0.55, 0.55, 0.022
+19751208, 0.14, -0.49, -0.30, 0.022
+19751209, 0.09, -0.68, 0.01, 0.022
+19751210, 0.90, -0.49, -0.01, 0.022
+19751211, -0.25, 0.23, 0.16, 0.022
+19751212, -0.08, -0.06, 0.04, 0.022
+19751215, 0.19, -0.42, -0.16, 0.022
+19751216, 0.94, -0.33, -0.16, 0.022
+19751217, 0.29, -0.01, 0.06, 0.022
+19751218, 0.35, 0.06, 0.34, 0.022
+19751219, -0.65, 0.56, 0.19, 0.022
+19751222, -0.73, 0.14, -0.07, 0.022
+19751223, 0.58, -0.56, 0.31, 0.022
+19751224, 0.84, -0.16, 0.42, 0.022
+19751226, 0.90, -0.24, 0.34, 0.022
+19751229, -0.16, 0.08, -0.01, 0.022
+19751230, -0.38, 0.12, 0.08, 0.022
+19751231, 0.62, 0.85, 0.62, 0.022
+19760102, 0.79, -0.10, 1.22, 0.022
+19760105, 1.78, -0.26, 0.94, 0.022
+19760106, 1.20, 0.44, 0.27, 0.022
+19760107, 0.52, 0.08, -0.17, 0.022
+19760108, 0.68, -0.14, 0.18, 0.022
+19760109, 0.43, 0.38, 0.19, 0.022
+19760112, 1.30, -0.11, 0.46, 0.022
+19760113, -0.72, 0.27, -0.04, 0.022
+19760114, 1.58, -0.05, 0.76, 0.022
+19760115, -0.45, 0.43, 0.39, 0.022
+19760116, 0.44, 0.21, 0.31, 0.022
+19760119, 1.21, 0.00, 1.15, 0.022
+19760120, 0.49, 0.12, 0.24, 0.022
+19760121, -0.49, 0.56, 0.32, 0.022
+19760122, -0.19, 0.98, 0.11, 0.022
+19760123, 1.15, 0.25, 0.43, 0.022
+19760126, 0.41, 0.47, 0.23, 0.022
+19760127, -0.52, 0.51, 0.19, 0.022
+19760128, -0.46, 0.02, -0.21, 0.022
+19760129, 1.67, 0.08, 0.12, 0.022
+19760130, 0.73, 0.04, 0.29, 0.022
+19760202, 0.14, 0.30, 0.24, 0.018
+19760203, 0.42, 0.15, 0.40, 0.018
+19760204, 0.87, 0.60, 0.20, 0.018
+19760205, -1.31, 0.61, -0.19, 0.018
+19760206, -0.85, 0.35, -0.14, 0.018
+19760209, 0.27, 0.34, 0.95, 0.018
+19760210, 0.79, -0.02, 0.58, 0.018
+19760211, 0.43, 0.45, 0.23, 0.018
+19760212, -0.36, 0.82, 0.22, 0.018
+19760213, -0.41, 0.74, 0.10, 0.018
+19760217, -0.52, 0.75, 0.67, 0.018
+19760218, 0.79, 0.43, 0.66, 0.018
+19760219, 1.59, 0.34, 0.73, 0.018
+19760220, 0.67, 0.20, 0.22, 0.018
+19760223, -0.29, 0.35, 0.16, 0.018
+19760224, 0.49, 0.14, 0.78, 0.018
+19760225, -0.16, -0.09, 0.48, 0.018
+19760226, -1.48, 0.29, -0.59, 0.018
+19760227, -0.68, -0.17, -0.24, 0.018
+19760301, 0.32, -0.11, 0.47, 0.017
+19760302, 0.58, 0.25, 0.66, 0.017
+19760303, -0.56, 0.29, 0.16, 0.017
+19760304, -0.97, 0.30, -0.40, 0.017
+19760305, 0.12, -0.06, 0.29, 0.017
+19760308, 1.01, -0.11, 0.46, 0.017
+19760309, 0.27, -0.14, 0.04, 0.017
+19760310, 0.35, -0.21, 0.10, 0.017
+19760311, 0.83, -0.34, -0.34, 0.017
+19760312, -0.87, 0.10, -0.42, 0.017
+19760315, -1.12, 0.05, -0.39, 0.017
+19760316, 0.98, -0.49, 0.39, 0.017
+19760317, -0.03, 0.38, 0.19, 0.017
+19760318, -0.41, 0.04, -0.41, 0.017
+19760319, 0.09, -0.05, -0.20, 0.017
+19760322, 0.06, -0.10, -0.11, 0.017
+19760323, 1.30, -0.73, -0.25, 0.017
+19760324, 1.03, -0.20, -0.33, 0.017
+19760325, -0.55, 0.00, 0.02, 0.017
+19760326, 0.10, 0.15, 0.23, 0.017
+19760329, -0.40, 0.03, 0.05, 0.017
+19760330, -0.42, -0.14, -0.18, 0.017
+19760331, 0.62, -0.10, -0.02, 0.017
+19760401, -0.43, 0.43, -0.23, 0.020
+19760402, 0.03, 0.16, -0.27, 0.020
+19760405, 1.15, -0.24, 0.33, 0.020
+19760406, -0.09, 0.11, 0.24, 0.020
+19760407, -1.17, 0.10, -0.52, 0.020
+19760408, -0.98, -0.18, -0.48, 0.020
+19760409, -1.05, 0.02, -0.43, 0.020
+19760412, -0.19, -0.39, 0.17, 0.020
+19760413, 0.65, -0.62, -0.12, 0.020
+19760414, -0.61, 0.32, 0.04, 0.020
+19760415, 0.33, -0.24, 0.29, 0.020
+19760419, 0.67, -0.02, 0.31, 0.020
+19760420, 1.46, -0.02, 0.36, 0.020
+19760421, 0.36, 0.08, 0.20, 0.020
+19760422, -0.20, 0.22, 0.17, 0.020
+19760423, -0.66, 0.27, -0.16, 0.020
+19760426, 0.07, -0.08, 0.06, 0.020
+19760427, -0.52, 0.04, -0.27, 0.020
+19760428, 0.17, -0.26, -0.17, 0.020
+19760429, -0.03, 0.09, 0.25, 0.020
+19760430, -0.40, 0.20, 0.18, 0.020
+19760503, -0.83, -0.05, -0.36, 0.019
+19760504, 0.56, -0.37, 0.08, 0.019
+19760505, -0.45, 0.32, -0.21, 0.019
+19760506, 0.29, -0.17, -0.25, 0.019
+19760507, 0.76, -0.09, -0.03, 0.019
+19760510, 1.22, -0.53, 0.51, 0.019
+19760511, -0.10, 0.21, 0.30, 0.019
+19760512, -0.17, 0.15, -0.08, 0.019
+19760513, -0.56, 0.21, 0.18, 0.019
+19760514, -0.75, 0.09, 0.15, 0.019
+19760517, -0.28, -0.08, -0.19, 0.019
+19760518, 0.11, -0.20, 0.08, 0.019
+19760519, -0.05, -0.13, 0.21, 0.019
+19760520, 0.63, -0.18, -0.27, 0.019
+19760521, -0.54, 0.19, 0.11, 0.019
+19760524, -1.66, 0.15, -0.36, 0.019
+19760525, -0.09, -0.32, -0.73, 0.019
+19760526, -0.06, 0.12, -0.21, 0.019
+19760527, -0.11, -0.41, -0.42, 0.019
+19760528, 0.73, -0.18, 0.20, 0.019
+19760601, -0.28, -0.07, 0.17, 0.020
+19760602, 0.29, -0.19, -0.06, 0.020
+19760603, -0.05, -0.10, 0.09, 0.020
+19760604, -0.88, 0.13, -0.21, 0.020
+19760607, -0.52, -0.44, -0.23, 0.020
+19760608, 0.14, -0.20, -0.32, 0.020
+19760609, -0.06, 0.07, -0.06, 0.020
+19760610, 0.77, -0.20, -0.05, 0.020
+19760611, 1.17, -0.31, 0.13, 0.020
+19760614, 0.99, -0.16, 0.25, 0.020
+19760615, -0.42, 0.34, 0.10, 0.020
+19760616, 0.55, -0.13, 0.12, 0.020
+19760617, 1.43, -0.42, 0.13, 0.020
+19760618, 0.19, 0.12, 0.05, 0.020
+19760621, 0.39, -0.06, -0.14, 0.020
+19760622, -0.70, 0.21, -0.07, 0.020
+19760623, -0.22, -0.05, 0.02, 0.020
+19760624, 0.59, -0.07, 0.23, 0.020
+19760625, 0.01, 0.29, 0.11, 0.020
+19760628, -0.23, 0.15, 0.02, 0.020
+19760629, 0.38, -0.19, 0.14, 0.020
+19760630, 0.46, -0.04, 0.26, 0.020
+19760701, -0.67, 0.33, 0.10, 0.022
+19760702, 0.47, 0.02, -0.06, 0.022
+19760706, -0.46, 0.45, -0.05, 0.022
+19760707, 0.25, -0.09, 0.29, 0.022
+19760708, 0.15, 0.13, 0.19, 0.022
+19760709, 0.87, -0.05, 0.00, 0.022
+19760712, 0.76, -0.18, 0.09, 0.022
+19760713, -0.21, 0.06, 0.21, 0.022
+19760714, 0.25, 0.18, -0.06, 0.022
+19760715, -0.60, 0.48, -0.04, 0.022
+19760716, -0.48, 0.27, -0.19, 0.022
+19760719, -0.32, -0.11, 0.36, 0.022
+19760720, -0.63, -0.13, -0.12, 0.022
+19760721, 0.06, -0.07, 0.17, 0.022
+19760722, 0.12, 0.12, -0.35, 0.022
+19760723, 0.12, -0.10, 0.17, 0.022
+19760726, -0.08, -0.21, 0.13, 0.022
+19760727, -0.50, -0.05, 0.05, 0.022
+19760728, -0.40, -0.22, 0.21, 0.022
+19760729, -0.16, -0.15, 0.39, 0.022
+19760730, 0.40, -0.40, 0.19, 0.022
+19760802, -0.15, -0.08, 0.24, 0.019
+19760803, 0.89, -0.57, 0.15, 0.019
+19760804, 0.22, -0.05, 0.14, 0.019
+19760805, -0.43, 0.19, 0.05, 0.019
+19760806, -0.03, -0.02, 0.08, 0.019
+19760809, -0.24, -0.08, 0.01, 0.019
+19760810, 0.77, -0.40, 0.01, 0.019
+19760811, -0.25, 0.05, 0.09, 0.019
+19760812, 0.07, -0.15, -0.21, 0.019
+19760813, 0.05, 0.00, 0.09, 0.019
+19760816, 0.16, -0.14, 0.13, 0.019
+19760817, 0.30, -0.16, -0.14, 0.019
+19760818, -0.20, -0.09, 0.07, 0.019
+19760819, -1.17, -0.05, 0.10, 0.019
+19760820, -0.90, 0.26, -0.01, 0.019
+19760823, -0.43, -0.25, -0.15, 0.019
+19760824, -0.62, 0.25, -0.02, 0.019
+19760825, 0.75, -0.60, 0.02, 0.019
+19760826, -0.63, 0.37, 0.25, 0.019
+19760827, 0.09, -0.04, -0.10, 0.019
+19760830, 0.53, -0.33, -0.03, 0.019
+19760831, 0.69, -0.22, 0.04, 0.019
+19760901, 1.02, -0.19, -0.35, 0.021
+19760902, -0.04, 0.18, -0.15, 0.021
+19760903, 0.37, -0.02, 0.03, 0.021
+19760907, 0.61, -0.27, 0.07, 0.021
+19760908, -0.11, 0.20, -0.05, 0.021
+19760909, -0.44, 0.19, 0.01, 0.021
+19760910, 0.24, 0.03, -0.17, 0.021
+19760913, -0.29, 0.10, 0.05, 0.021
+19760914, -0.30, 0.06, -0.08, 0.021
+19760915, 0.20, -0.12, -0.21, 0.021
+19760916, 0.87, -0.34, -0.21, 0.021
+19760917, 0.87, -0.22, 0.18, 0.021
+19760920, 0.10, -0.07, 0.43, 0.021
+19760921, 1.23, -0.57, 0.29, 0.021
+19760922, -0.29, 0.46, 0.08, 0.021
+19760923, -0.46, 0.26, -0.11, 0.021
+19760924, -0.10, 0.22, -0.03, 0.021
+19760927, 0.36, -0.12, -0.01, 0.021
+19760928, -1.12, 0.22, -0.03, 0.021
+19760929, -0.52, 0.00, 0.05, 0.021
+19760930, -0.13, 0.05, -0.14, 0.021
+19761001, -0.92, 0.30, 0.18, 0.019
+19761004, -0.15, -0.01, 0.18, 0.019
+19761005, -0.73, -0.06, -0.01, 0.019
+19761006, -0.43, -0.25, -0.10, 0.019
+19761007, 0.58, -0.02, -0.31, 0.019
+19761008, -0.84, 0.41, 0.09, 0.019
+19761011, -0.93, 0.04, -0.41, 0.019
+19761012, -0.78, 0.06, 0.29, 0.019
+19761013, 1.10, -0.82, 0.01, 0.019
+19761014, -1.16, 0.67, 0.03, 0.019
+19761015, 0.10, 0.30, -0.03, 0.019
+19761018, 0.55, -0.24, 0.19, 0.019
+19761019, -0.05, 0.12, -0.05, 0.019
+19761020, 0.23, -0.07, 0.23, 0.019
+19761021, -0.82, 0.42, 0.26, 0.019
+19761022, -0.75, 0.24, 0.03, 0.019
+19761025, 0.09, -0.04, -0.11, 0.019
+19761026, 0.86, -0.41, -0.07, 0.019
+19761027, 0.56, -0.19, -0.26, 0.019
+19761028, -0.10, 0.11, -0.08, 0.019
+19761029, 1.19, -0.36, -0.19, 0.019
+19761101, 0.23, -0.04, 0.18, 0.020
+19761103, -1.16, 0.12, 0.34, 0.020
+19761104, 0.77, 0.35, 0.50, 0.020
+19761105, -1.20, 0.79, 0.41, 0.020
+19761108, -1.13, 0.41, -0.13, 0.020
+19761109, -0.34, -0.22, 0.19, 0.020
+19761110, -0.47, 0.36, -0.18, 0.020
+19761111, 0.71, -0.45, -0.22, 0.020
+19761112, -0.32, 0.25, 0.11, 0.020
+19761115, 0.51, -0.34, -0.21, 0.020
+19761116, 0.26, 0.19, -0.04, 0.020
+19761117, 0.63, -0.01, -0.09, 0.020
+19761118, 1.24, -0.35, 0.18, 0.020
+19761119, 0.14, 0.18, 0.30, 0.020
+19761122, 0.63, -0.17, 0.07, 0.020
+19761123, -0.41, 0.31, 0.16, 0.020
+19761124, 0.53, 0.19, -0.09, 0.020
+19761126, 0.70, 0.14, -0.35, 0.020
+19761129, -0.57, 0.44, 0.03, 0.020
+19761130, -0.32, 0.12, 0.38, 0.020
+19761201, 0.43, 0.00, 0.07, 0.018
+19761202, -0.29, 0.38, 0.42, 0.018
+19761203, 0.55, -0.10, 0.04, 0.018
+19761206, 0.78, -0.02, 0.27, 0.018
+19761207, 0.02, 0.27, 0.13, 0.018
+19761208, 0.53, 0.16, -0.20, 0.018
+19761209, 0.57, 0.27, 0.15, 0.018
+19761210, 0.22, 0.38, 0.21, 0.018
+19761213, 0.07, 0.30, 0.23, 0.018
+19761214, 0.40, -0.29, 0.40, 0.018
+19761215, 0.06, 0.03, 0.43, 0.018
+19761216, -0.28, 0.13, 0.42, 0.018
+19761217, -0.43, 0.31, 0.24, 0.018
+19761220, -0.55, 0.10, 0.07, 0.018
+19761221, 0.45, -0.23, -0.24, 0.018
+19761222, 0.46, 0.03, -0.04, 0.018
+19761223, 0.05, 0.19, -0.48, 0.018
+19761227, 1.07, -0.31, -0.20, 0.018
+19761228, 0.62, -0.04, -0.12, 0.018
+19761229, -0.32, 0.41, 0.09, 0.018
+19761230, 0.53, 0.25, 0.00, 0.018
+19761231, 0.59, 0.62, 0.17, 0.018
+19770103, -0.32, 0.56, 0.67, 0.017
+19770104, -0.98, 0.82, 0.26, 0.017
+19770105, -0.74, 0.38, 0.07, 0.017
+19770106, 0.18, 0.43, 0.26, 0.017
+19770107, 0.09, 0.51, 0.06, 0.017
+19770110, 0.12, 0.02, 0.21, 0.017
+19770111, -0.93, 0.08, 0.29, 0.017
+19770112, -0.68, 0.17, 0.18, 0.017
+19770113, 0.82, 0.21, -0.17, 0.017
+19770114, -0.02, 0.47, 0.19, 0.017
+19770117, -0.20, 0.27, 0.12, 0.017
+19770118, -0.29, 0.14, 0.25, 0.017
+19770119, 0.50, 0.27, 0.15, 0.017
+19770120, -0.74, 0.35, 0.48, 0.017
+19770121, 0.36, 0.10, 0.24, 0.017
+19770124, 0.01, -0.04, 0.48, 0.017
+19770125, -0.04, 0.15, 0.56, 0.017
+19770126, -0.65, 0.23, 0.38, 0.017
+19770127, -0.58, 0.13, 0.11, 0.017
+19770128, 0.03, -0.06, -0.24, 0.017
+19770131, 0.00, -0.43, -0.18, 0.017
+19770201, 0.50, 0.11, -0.12, 0.018
+19770202, -0.11, 0.31, 0.04, 0.018
+19770203, -0.39, 0.23, 0.09, 0.018
+19770204, 0.17, 0.29, 0.06, 0.018
+19770207, 0.06, 0.12, -0.13, 0.018
+19770208, -0.25, 0.25, -0.03, 0.018
+19770209, -0.85, 0.35, -0.07, 0.018
+19770210, 0.10, 0.17, -0.18, 0.018
+19770211, -0.53, 0.17, 0.04, 0.018
+19770214, 0.43, -0.40, -0.16, 0.018
+19770215, 0.28, -0.17, 0.29, 0.018
+19770216, 0.38, -0.19, 0.18, 0.018
+19770217, -0.52, 0.17, 0.18, 0.018
+19770218, -0.29, 0.14, 0.37, 0.018
+19770222, -0.03, -0.14, -0.12, 0.018
+19770223, -0.30, 0.13, -0.01, 0.018
+19770224, -0.62, -0.17, 0.15, 0.018
+19770225, -0.17, 0.14, -0.09, 0.018
+19770228, 0.20, -0.44, 0.05, 0.018
+19770301, 0.85, -0.21, -0.24, 0.016
+19770302, -0.22, 0.13, 0.09, 0.016
+19770303, 0.44, -0.26, 0.04, 0.016
+19770304, 0.35, 0.14, -0.09, 0.016
+19770307, 0.12, 0.06, 0.01, 0.016
+19770308, -0.34, 0.27, 0.06, 0.016
+19770309, -0.70, 0.18, 0.05, 0.016
+19770310, 0.48, -0.02, -0.22, 0.016
+19770311, 0.07, 0.13, 0.11, 0.016
+19770314, 0.63, -0.45, 0.10, 0.016
+19770315, 0.44, -0.31, 0.27, 0.016
+19770316, 0.19, -0.04, 0.04, 0.016
+19770317, -0.09, 0.11, 0.02, 0.016
+19770318, -0.22, 0.37, -0.02, 0.016
+19770321, -0.45, 0.24, -0.09, 0.016
+19770322, -0.22, 0.15, -0.01, 0.016
+19770323, -0.78, 0.35, 0.23, 0.016
+19770324, -0.46, 0.14, 0.08, 0.016
+19770325, -0.59, 0.41, -0.02, 0.016
+19770328, -0.15, -0.36, -0.01, 0.016
+19770329, 0.55, -0.29, 0.14, 0.016
+19770330, -1.10, 0.20, 0.40, 0.016
+19770331, -0.14, 0.01, 0.03, 0.016
+19770401, 0.75, -0.32, 0.02, 0.019
+19770404, -0.89, 0.25, 0.19, 0.019
+19770405, -0.28, -0.24, 0.04, 0.019
+19770406, -0.07, 0.10, 0.05, 0.019
+19770407, 0.32, -0.20, -0.10, 0.019
+19770411, 0.49, -0.30, -0.01, 0.019
+19770412, 1.20, -0.46, 0.46, 0.019
+19770413, 0.03, 0.12, 0.27, 0.019
+19770414, 0.84, -0.06, 0.14, 0.019
+19770415, 0.03, 0.12, 0.09, 0.019
+19770418, -0.40, 0.31, 0.18, 0.019
+19770419, -0.33, 0.36, 0.05, 0.019
+19770420, 0.34, 0.11, 0.36, 0.019
+19770421, -0.65, 0.25, 0.29, 0.019
+19770422, -1.20, 0.31, 0.48, 0.019
+19770425, -1.25, -0.02, 0.38, 0.019
+19770426, -0.05, -0.22, 0.20, 0.019
+19770427, 0.85, -0.21, 0.08, 0.019
+19770428, 0.21, -0.16, 0.13, 0.019
+19770429, 0.25, 0.13, 0.10, 0.019
+19770502, 0.53, -0.15, -0.14, 0.018
+19770503, 0.47, -0.03, 0.05, 0.018
+19770504, 0.57, -0.16, 0.13, 0.018
+19770505, 0.27, 0.11, -0.11, 0.018
+19770506, -0.41, 0.39, 0.19, 0.018
+19770509, -0.21, 0.08, 0.24, 0.018
+19770510, 0.30, -0.04, -0.10, 0.018
+19770511, -0.55, 0.40, 0.09, 0.018
+19770512, -0.03, 0.02, 0.08, 0.018
+19770513, 0.32, 0.12, 0.05, 0.018
+19770516, 0.40, -0.04, 0.05, 0.018
+19770517, 0.25, -0.09, -0.07, 0.018
+19770518, 0.48, 0.00, -0.11, 0.018
+19770519, -0.32, 0.31, 0.12, 0.018
+19770520, -0.37, 0.26, 0.11, 0.018
+19770523, -1.13, 0.13, 0.23, 0.018
+19770524, -0.47, -0.11, -0.19, 0.018
+19770525, -0.82, 0.11, 0.26, 0.018
+19770526, 0.16, -0.15, -0.17, 0.018
+19770527, -0.64, 0.40, 0.15, 0.018
+19770531, -0.24, -0.35, -0.03, 0.018
+19770601, 0.74, -0.27, -0.17, 0.018
+19770602, -0.14, 0.07, 0.31, 0.018
+19770603, 0.87, -0.17, -0.47, 0.018
+19770606, -0.39, 0.34, 0.09, 0.018
+19770607, 0.44, -0.23, 0.01, 0.018
+19770608, 0.51, -0.11, 0.12, 0.018
+19770609, -0.03, 0.38, -0.18, 0.018
+19770610, 0.29, 0.26, -0.01, 0.018
+19770613, 0.32, -0.12, -0.19, 0.018
+19770614, 0.99, -0.46, -0.21, 0.018
+19770615, -0.20, 0.26, 0.07, 0.018
+19770616, 0.29, 0.10, -0.25, 0.018
+19770617, 0.15, 0.28, -0.14, 0.018
+19770620, 0.43, -0.11, -0.05, 0.018
+19770621, 0.32, -0.19, 0.14, 0.018
+19770622, -0.20, 0.24, 0.15, 0.018
+19770623, 0.22, 0.35, 0.11, 0.018
+19770624, 0.56, 0.22, -0.09, 0.018
+19770627, -0.10, 0.30, -0.03, 0.018
+19770628, -0.72, 0.40, 0.15, 0.018
+19770629, -0.07, 0.17, 0.05, 0.018
+19770630, 0.35, 0.26, 0.07, 0.018
+19770701, -0.26, 0.51, 0.20, 0.022
+19770705, 0.01, 0.19, -0.11, 0.022
+19770706, -0.45, 0.32, 0.07, 0.022
+19770707, 0.31, 0.01, -0.18, 0.022
+19770708, -0.01, 0.42, 0.23, 0.022
+19770711, -0.26, 0.15, 0.25, 0.022
+19770712, -0.10, 0.09, 0.10, 0.022
+19770713, 0.16, 0.06, -0.17, 0.022
+19770715, 0.60, -0.02, -0.58, 0.022
+19770718, 0.62, -0.18, -0.25, 0.022
+19770719, 0.62, -0.08, -0.18, 0.022
+19770720, -0.03, -0.02, 0.07, 0.022
+19770721, -0.11, 0.18, 0.00, 0.022
+19770722, 0.07, 0.21, 0.05, 0.022
+19770725, -0.67, 0.40, -0.11, 0.022
+19770726, -0.53, 0.10, 0.07, 0.022
+19770727, -1.60, 0.06, 0.18, 0.022
+19770728, -0.05, -0.18, -0.27, 0.022
+19770729, -0.02, -0.15, -0.07, 0.022
+19770801, 0.35, -0.20, 0.00, 0.019
+19770802, -0.61, 0.18, -0.03, 0.019
+19770803, -0.22, -0.19, -0.08, 0.019
+19770804, 0.49, 0.13, -0.41, 0.019
+19770805, 0.01, 0.33, -0.17, 0.019
+19770808, -0.59, 0.12, 0.12, 0.019
+19770809, 0.07, 0.02, -0.23, 0.019
+19770810, 0.70, -0.19, -0.31, 0.019
+19770811, -0.54, 0.67, -0.22, 0.019
+19770812, -0.31, 0.15, -0.19, 0.019
+19770815, 0.21, -0.26, -0.32, 0.019
+19770816, -0.36, 0.32, -0.04, 0.019
+19770817, -0.05, 0.10, -0.44, 0.019
+19770818, 0.01, 0.15, -0.18, 0.019
+19770819, -0.23, 0.32, -0.47, 0.019
+19770822, 0.27, -0.11, -0.42, 0.019
+19770823, -0.15, 0.12, 0.31, 0.019
+19770824, -0.38, 0.20, 0.36, 0.019
+19770825, -0.91, 0.28, 0.28, 0.019
+19770826, -0.09, -0.13, -0.14, 0.019
+19770829, 0.80, -0.25, -0.40, 0.019
+19770830, -0.47, 0.11, 0.30, 0.019
+19770831, 0.24, -0.28, -0.18, 0.019
+19770901, 0.14, 0.33, 0.18, 0.021
+19770902, 0.63, -0.03, -0.09, 0.021
+19770906, 0.17, -0.16, -0.01, 0.021
+19770907, 0.26, 0.07, -0.17, 0.021
+19770908, -0.63, 0.42, 0.34, 0.021
+19770909, -0.85, 0.41, 0.13, 0.021
+19770912, -0.31, 0.06, -0.18, 0.021
+19770913, 0.00, 0.00, -0.24, 0.021
+19770914, 0.36, -0.08, -0.19, 0.021
+19770915, 0.31, -0.03, -0.02, 0.021
+19770916, -0.30, 0.34, 0.07, 0.021
+19770919, -0.59, 0.10, 0.30, 0.021
+19770920, 0.01, -0.01, -0.15, 0.021
+19770921, -0.75, 0.15, 0.30, 0.021
+19770922, -0.06, -0.12, -0.03, 0.021
+19770923, -0.02, 0.25, -0.06, 0.021
+19770926, 0.25, -0.16, -0.29, 0.021
+19770927, -0.14, 0.12, -0.12, 0.021
+19770928, 0.04, 0.09, -0.11, 0.021
+19770929, 0.52, -0.20, 0.08, 0.021
+19770930, 0.69, -0.07, -0.01, 0.021
+19771003, 0.28, 0.00, 0.10, 0.023
+19771004, -0.61, 0.28, 0.42, 0.023
+19771005, -0.36, 0.18, -0.02, 0.023
+19771006, 0.36, -0.07, 0.12, 0.023
+19771007, -0.01, 0.31, -0.06, 0.023
+19771010, -0.17, 0.15, 0.04, 0.023
+19771011, -0.77, 0.33, 0.30, 0.023
+19771012, -1.13, -0.21, 0.14, 0.023
+19771013, -0.69, -0.20, -0.19, 0.023
+19771014, 0.03, 0.02, 0.10, 0.023
+19771017, -0.11, -0.01, -0.15, 0.023
+19771018, -0.02, 0.21, 0.18, 0.023
+19771019, -1.05, 0.32, 0.47, 0.023
+19771020, 0.19, -0.27, -0.07, 0.023
+19771021, -0.23, 0.30, 0.08, 0.023
+19771024, -0.79, 0.10, 0.24, 0.023
+19771025, -0.83, -0.33, 0.07, 0.023
+19771026, 0.98, -0.45, -0.26, 0.023
+19771027, 0.36, 0.10, -0.05, 0.023
+19771028, 0.33, 0.19, -0.05, 0.023
+19771031, -0.19, 0.27, 0.20, 0.023
+19771101, -0.98, 0.19, 0.44, 0.024
+19771102, -0.60, 0.29, 0.00, 0.024
+19771103, 0.14, -0.03, -0.10, 0.024
+19771104, 0.94, 0.09, -0.07, 0.024
+19771107, 0.81, -0.01, -0.18, 0.024
+19771108, 0.19, 0.17, 0.17, 0.024
+19771109, 0.50, 0.16, -0.14, 0.024
+19771110, 1.91, -0.33, -0.55, 0.024
+19771111, 1.28, -0.34, -0.13, 0.024
+19771114, -0.50, 0.41, 0.27, 0.024
+19771115, 0.65, 0.09, -0.26, 0.024
+19771116, -0.33, 0.50, 0.10, 0.024
+19771117, -0.21, 0.66, 0.28, 0.024
+19771118, 0.25, 0.32, -0.04, 0.024
+19771121, -0.08, 0.19, -0.03, 0.024
+19771122, 0.86, -0.19, -0.13, 0.024
+19771123, 0.59, 0.24, -0.07, 0.024
+19771125, 0.32, 0.26, -0.02, 0.024
+19771128, -0.54, 0.32, 0.23, 0.024
+19771129, -1.41, 0.48, 0.38, 0.024
+19771130, 0.17, 0.00, 0.09, 0.024
+19771201, 0.05, 0.48, 0.08, 0.023
+19771202, 0.01, 0.32, 0.21, 0.023
+19771205, -0.36, 0.30, 0.07, 0.023
+19771206, -1.52, 0.07, 0.44, 0.023
+19771207, -0.14, -0.04, 0.01, 0.023
+19771208, 0.20, 0.13, -0.25, 0.023
+19771209, 0.69, -0.08, 0.01, 0.023
+19771212, 0.04, -0.01, -0.05, 0.023
+19771213, -0.05, -0.06, -0.05, 0.023
+19771214, 0.33, 0.10, -0.31, 0.023
+19771215, -0.40, 0.50, 0.01, 0.023
+19771216, -0.11, 0.18, 0.15, 0.023
+19771219, -0.71, -0.12, 0.37, 0.023
+19771220, -0.36, -0.32, -0.02, 0.023
+19771221, 0.58, -0.07, -0.45, 0.023
+19771222, 0.66, -0.11, -0.25, 0.023
+19771223, 0.88, -0.17, -0.21, 0.023
+19771227, -0.02, -0.25, 0.24, 0.023
+19771228, 0.02, 0.07, 0.10, 0.023
+19771229, 0.31, 0.06, -0.30, 0.023
+19771230, 0.18, 0.34, -0.17, 0.023
+19780103, -1.29, 0.33, 0.67, 0.023
+19780104, -0.41, -0.10, 0.08, 0.023
+19780105, -0.73, 0.31, 0.61, 0.023
+19780106, -1.24, -0.16, 0.54, 0.023
+19780109, -1.18, -0.26, 0.29, 0.023
+19780110, -0.64, -0.09, 0.14, 0.023
+19780111, -0.53, -0.02, 0.30, 0.023
+19780112, 0.19, 0.25, 0.00, 0.023
+19780113, -0.03, 0.32, 0.33, 0.023
+19780116, -0.35, -0.28, 0.09, 0.023
+19780117, 0.52, 0.14, -0.24, 0.023
+19780118, 0.68, -0.03, 0.21, 0.023
+19780119, -0.34, 0.68, 0.08, 0.023
+19780120, -0.21, 0.34, 0.04, 0.023
+19780123, -0.66, 0.27, 0.13, 0.023
+19780124, 0.02, 0.10, 0.06, 0.023
+19780125, 0.17, 0.11, 0.32, 0.023
+19780126, -0.77, 0.31, 0.45, 0.023
+19780127, -0.02, 0.03, 0.00, 0.023
+19780130, 0.75, -0.22, -0.32, 0.023
+19780131, -0.09, 0.29, -0.38, 0.023
+19780201, 0.78, 0.17, -0.37, 0.024
+19780202, 0.34, 0.10, 0.15, 0.024
+19780203, -0.30, 0.72, 0.02, 0.024
+19780206, 0.00, 0.12, 0.03, 0.024
+19780207, 0.75, -0.21, -0.23, 0.024
+19780208, 0.52, -0.10, 0.04, 0.024
+19780209, -0.36, 0.50, 0.24, 0.024
+19780210, -0.12, 0.39, -0.07, 0.024
+19780213, -0.27, 0.24, 0.04, 0.024
+19780214, -0.78, 0.30, 0.20, 0.024
+19780215, -0.26, 0.35, 0.05, 0.024
+19780216, -0.78, 0.33, 0.08, 0.024
+19780217, -0.11, 0.13, 0.22, 0.024
+19780221, -0.39, 0.16, 0.07, 0.024
+19780222, 0.06, 0.09, -0.01, 0.024
+19780223, 0.18, 0.01, -0.02, 0.024
+19780224, 0.84, -0.14, -0.19, 0.024
+19780227, -0.70, 0.33, 0.21, 0.024
+19780228, -0.79, 0.08, 0.30, 0.024
+19780301, 0.10, -0.09, -0.01, 0.024
+19780302, 0.21, 0.11, 0.17, 0.024
+19780303, 0.13, 0.00, 0.24, 0.024
+19780306, -0.54, 0.18, 0.23, 0.024
+19780307, 0.47, -0.08, -0.15, 0.024
+19780308, 0.49, -0.05, -0.15, 0.024
+19780309, 0.20, 0.33, -0.03, 0.024
+19780310, 1.04, -0.10, -0.34, 0.024
+19780313, 0.10, 0.02, 0.06, 0.024
+19780314, 0.40, -0.21, -0.03, 0.024
+19780315, -0.18, 0.38, 0.17, 0.024
+19780316, 0.43, 0.32, -0.06, 0.024
+19780317, 0.73, 0.03, -0.23, 0.024
+19780320, 0.58, -0.13, -0.19, 0.024
+19780321, -0.97, 0.51, 0.49, 0.024
+19780322, -0.26, 0.28, 0.12, 0.024
+19780323, -0.05, 0.44, 0.09, 0.024
+19780327, -0.43, 0.53, 0.25, 0.024
+19780328, 0.62, 0.01, -0.06, 0.024
+19780329, 0.20, 0.38, 0.10, 0.024
+19780330, -0.23, 0.34, 0.23, 0.024
+19780331, -0.23, 0.12, 0.27, 0.024
+19780403, -0.71, 0.11, 0.24, 0.027
+19780404, 0.38, 0.07, -0.09, 0.027
+19780405, 0.81, 0.08, -0.19, 0.027
+19780406, 0.24, 0.22, -0.08, 0.027
+19780407, 0.47, 0.26, -0.39, 0.027
+19780410, 0.31, -0.11, -0.05, 0.027
+19780411, -0.21, 0.18, 0.04, 0.027
+19780412, -0.03, 0.38, 0.24, 0.027
+19780413, 0.97, 0.19, -0.50, 0.027
+19780414, 1.86, -0.64, -0.59, 0.027
+19780417, 1.39, -0.97, -0.77, 0.027
+19780418, -1.03, 0.31, 0.28, 0.027
+19780419, 0.36, 0.02, -0.07, 0.027
+19780420, 0.72, 0.05, -0.26, 0.027
+19780421, -0.10, 0.47, 0.05, 0.027
+19780424, 1.24, -0.51, -0.38, 0.027
+19780425, 0.77, -0.36, -0.58, 0.027
+19780426, 0.17, 0.03, -0.04, 0.027
+19780427, -0.86, 0.60, 0.20, 0.027
+19780428, 0.87, -0.04, -0.36, 0.027
+19780501, 0.84, -0.13, -0.33, 0.023
+19780502, -0.26, 0.24, 0.23, 0.023
+19780503, -0.73, 0.74, 0.33, 0.023
+19780504, -0.05, 0.46, 0.05, 0.023
+19780505, 0.68, 0.36, -0.24, 0.023
+19780508, -0.26, 0.37, -0.02, 0.023
+19780509, -0.17, 0.27, -0.11, 0.023
+19780510, 0.09, 0.42, -0.07, 0.023
+19780511, 1.12, -0.09, -0.62, 0.023
+19780512, 0.83, 0.16, -0.46, 0.023
+19780515, 0.59, -0.15, -0.27, 0.023
+19780516, 0.67, 0.02, -0.24, 0.023
+19780517, 0.29, 0.27, 0.15, 0.023
+19780518, -0.75, 0.62, 0.43, 0.023
+19780519, -0.44, 0.47, 0.14, 0.023
+19780522, 0.83, -0.31, -0.25, 0.023
+19780523, -0.85, 0.17, 0.39, 0.023
+19780524, -0.98, -0.08, 0.40, 0.023
+19780525, -0.18, 0.35, -0.02, 0.023
+19780526, -0.16, 0.28, -0.11, 0.023
+19780530, 0.23, -0.03, -0.06, 0.023
+19780531, 0.40, -0.13, 0.06, 0.023
+19780601, 0.11, 0.01, -0.07, 0.024
+19780602, 0.74, -0.02, -0.25, 0.024
+19780605, 1.60, -0.54, -0.61, 0.024
+19780606, 0.43, 0.02, 0.12, 0.024
+19780607, -0.14, 0.33, 0.10, 0.024
+19780608, 0.21, 0.50, 0.14, 0.024
+19780609, -0.14, 0.69, -0.04, 0.024
+19780612, -0.28, 0.29, 0.12, 0.024
+19780613, 0.08, 0.17, -0.16, 0.024
+19780614, -0.06, 0.53, 0.00, 0.024
+19780615, -0.96, 0.44, 0.07, 0.024
+19780616, -0.85, 0.23, 0.24, 0.024
+19780619, -0.19, -0.42, 0.02, 0.024
+19780620, -0.95, 0.04, 0.45, 0.024
+19780621, -0.65, -0.51, 0.17, 0.024
+19780622, 0.21, -0.07, 0.12, 0.024
+19780623, -0.28, 0.47, 0.22, 0.024
+19780626, -1.27, -0.19, 0.38, 0.024
+19780627, 0.21, -0.61, -0.33, 0.024
+19780628, 0.37, -0.05, -0.04, 0.024
+19780629, 0.21, 0.26, -0.01, 0.024
+19780630, -0.07, 0.17, -0.02, 0.024
+19780703, -0.31, 0.30, 0.06, 0.028
+19780705, -0.87, -0.02, 0.03, 0.028
+19780706, -0.03, -0.37, -0.17, 0.028
+19780707, 0.57, -0.04, -0.07, 0.028
+19780710, 0.34, -0.18, -0.21, 0.028
+19780711, 0.60, -0.26, 0.08, 0.028
+19780712, 0.35, 0.00, -0.02, 0.028
+19780713, 0.02, 0.18, 0.13, 0.028
+19780714, 1.23, -0.31, -0.54, 0.028
+19780717, 0.23, 0.19, -0.08, 0.028
+19780718, -0.78, 0.45, 0.32, 0.028
+19780719, 1.10, -0.38, -0.09, 0.028
+19780720, 0.00, 0.62, -0.05, 0.028
+19780721, -0.32, 0.19, 0.23, 0.028
+19780724, -0.10, 0.03, -0.10, 0.028
+19780725, 0.68, -0.41, 0.01, 0.028
+19780726, 0.60, 0.10, -0.34, 0.028
+19780727, 0.52, 0.24, 0.08, 0.028
+19780728, 0.46, 0.07, 0.02, 0.028
+19780731, 0.71, -0.08, -0.24, 0.028
+19780801, 0.12, -0.02, -0.01, 0.024
+19780802, 2.13, -0.81, -0.62, 0.024
+19780803, 0.43, -0.31, 0.08, 0.024
+19780804, 0.43, -0.17, 0.09, 0.024
+19780807, -0.17, 0.62, -0.12, 0.024
+19780808, 0.48, 0.14, -0.33, 0.024
+19780809, 0.52, 0.48, -0.20, 0.024
+19780810, -0.59, 0.65, 0.30, 0.024
+19780811, 0.32, 0.25, 0.17, 0.024
+19780814, 0.09, 0.34, 0.16, 0.024
+19780815, -0.14, 0.10, 0.15, 0.024
+19780816, 0.72, 0.20, -0.42, 0.024
+19780817, 0.56, 0.41, -0.23, 0.024
+19780818, -0.23, 0.50, 0.17, 0.024
+19780821, -0.80, 0.08, 0.35, 0.024
+19780822, 0.29, 0.05, -0.17, 0.024
+19780823, 0.61, 0.21, -0.36, 0.024
+19780824, 0.27, 0.53, 0.17, 0.024
+19780825, 0.05, 0.50, -0.02, 0.024
+19780828, -0.72, 0.39, 0.23, 0.024
+19780829, -0.58, 0.27, 0.23, 0.024
+19780830, 0.15, 0.24, -0.18, 0.024
+19780831, -0.20, 0.16, 0.01, 0.024
+19780901, 0.40, -0.21, 0.06, 0.031
+19780905, 0.53, -0.45, -0.14, 0.031
+19780906, 0.84, 0.04, -0.17, 0.031
+19780907, 0.12, 0.43, 0.02, 0.031
+19780908, 1.25, -0.20, -0.17, 0.031
+19780911, 0.21, 0.40, 0.12, 0.031
+19780912, 0.07, 0.11, 0.00, 0.031
+19780913, -0.55, 0.51, 0.28, 0.031
+19780914, -1.06, 0.26, 0.41, 0.031
+19780915, -0.95, 0.08, 0.19, 0.031
+19780918, -1.07, -0.35, 0.27, 0.031
+19780919, -0.75, -0.54, 0.33, 0.031
+19780920, -0.94, -0.60, 0.40, 0.031
+19780921, -0.04, -0.41, 0.01, 0.031
+19780922, 0.03, 0.30, -0.05, 0.031
+19780925, -0.03, -0.05, 0.12, 0.031
+19780926, 0.69, 0.02, -0.09, 0.031
+19780927, -0.87, 0.27, 0.25, 0.031
+19780928, 0.21, -0.15, 0.04, 0.031
+19780929, 0.49, 0.08, -0.03, 0.031
+19781002, 0.32, -0.09, -0.04, 0.031
+19781003, -0.31, 0.02, 0.13, 0.031
+19781004, 0.38, -0.48, 0.04, 0.031
+19781005, 0.22, 0.19, 0.09, 0.031
+19781006, 0.23, 0.17, -0.06, 0.031
+19781009, 0.92, -0.36, -0.19, 0.031
+19781010, -0.14, 0.26, 0.05, 0.031
+19781011, 0.86, -0.70, -0.33, 0.031
+19781012, -0.47, 0.68, 0.07, 0.031
+19781013, -0.29, 0.20, 0.10, 0.031
+19781016, -1.82, 0.13, 0.36, 0.031
+19781017, -1.71, -1.32, 0.12, 0.031
+19781018, -0.99, -0.85, 0.08, 0.031
+19781019, -1.32, -0.39, 0.39, 0.031
+19781020, -1.79, -2.00, 0.08, 0.031
+19781023, -0.25, -1.45, -0.15, 0.031
+19781024, -0.58, 0.38, 0.34, 0.031
+19781025, -0.22, 0.24, 0.01, 0.031
+19781026, -1.73, -1.76, 0.63, 0.031
+19781027, -1.97, -1.59, -0.04, 0.031
+19781030, 0.00, -3.09, -0.76, 0.031
+19781031, -1.81, 0.24, 0.73, 0.031
+19781101, 4.12, 0.69, -1.70, 0.033
+19781102, -0.92, 1.21, 0.24, 0.033
+19781103, 0.56, 0.34, -0.13, 0.033
+19781106, -0.80, 0.72, 0.36, 0.033
+19781107, -1.58, -0.95, 0.53, 0.033
+19781108, 0.43, -0.39, -0.57, 0.033
+19781109, 0.14, 0.53, -0.01, 0.033
+19781110, 0.49, 0.40, -0.02, 0.033
+19781113, -1.67, -0.08, 0.44, 0.033
+19781114, -1.02, -1.37, 0.19, 0.033
+19781115, 0.29, 0.24, -0.26, 0.033
+19781116, 1.01, -0.42, -0.47, 0.033
+19781117, 0.95, 0.59, -0.33, 0.033
+19781120, 0.91, 0.19, -0.22, 0.033
+19781121, -0.13, 0.42, -0.03, 0.033
+19781122, 0.59, 0.33, -0.16, 0.033
+19781124, 0.47, 0.32, -0.22, 0.033
+19781127, 0.25, 0.01, -0.17, 0.033
+19781128, -0.80, 0.27, 0.36, 0.033
+19781129, -1.39, 0.12, 0.43, 0.033
+19781130, 0.90, -0.20, -0.42, 0.033
+19781201, 1.57, 0.12, -0.68, 0.039
+19781204, 0.01, 0.29, -0.07, 0.039
+19781205, 1.24, -0.18, -0.36, 0.039
+19781206, 0.17, 0.26, 0.16, 0.039
+19781207, -0.39, 0.37, -0.04, 0.039
+19781208, -0.43, 0.21, 0.42, 0.039
+19781211, 0.43, -0.16, -0.31, 0.039
+19781212, -0.52, 0.20, 0.30, 0.039
+19781213, -0.59, 0.18, 0.02, 0.039
+19781214, -0.03, -0.06, 0.02, 0.039
+19781215, -0.74, 0.05, 0.14, 0.039
+19781218, -2.23, -0.79, 0.60, 0.039
+19781219, 0.72, -0.33, -0.71, 0.039
+19781220, 0.41, 0.22, -0.31, 0.039
+19781221, 0.05, 0.34, -0.20, 0.039
+19781222, 1.66, -0.17, -0.61, 0.039
+19781226, 0.98, -0.37, -0.82, 0.039
+19781227, -0.84, 0.20, 0.32, 0.039
+19781228, -0.40, 0.06, -0.18, 0.039
+19781229, -0.13, 0.70, 0.10, 0.039
+19790102, 0.58, -0.18, 0.46, 0.035
+19790103, 1.12, 0.36, -0.06, 0.035
+19790104, 0.94, 0.42, 0.01, 0.035
+19790105, 0.65, 0.63, -0.03, 0.035
+19790108, -0.28, 0.05, 0.09, 0.035
+19790109, 0.51, 0.34, 0.02, 0.035
+19790110, -0.55, 0.32, 0.22, 0.035
+19790111, 0.42, -0.04, -0.39, 0.035
+19790112, 0.75, 0.36, -0.23, 0.035
+19790115, 0.65, -0.12, -0.12, 0.035
+19790116, -1.13, 0.24, 0.58, 0.035
+19790117, -0.08, -0.22, 0.23, 0.035
+19790118, 0.40, 0.49, 0.07, 0.035
+19790119, -0.02, 0.40, 0.24, 0.035
+19790122, 0.05, -0.10, -0.12, 0.035
+19790123, 0.63, -0.02, 0.16, 0.035
+19790124, -0.36, 0.06, 0.30, 0.035
+19790125, 0.93, -0.31, -0.01, 0.035
+19790126, 0.64, -0.07, 0.09, 0.035
+19790129, -0.24, 0.13, 0.18, 0.035
+19790130, -0.35, 0.24, 0.22, 0.035
+19790131, -1.13, 0.40, 0.22, 0.035
+19790201, 0.04, -0.19, -0.04, 0.038
+19790202, -0.33, 0.48, 0.07, 0.038
+19790205, -1.31, -0.09, 0.27, 0.038
+19790206, -0.04, -0.18, 0.20, 0.038
+19790207, -0.95, -0.34, 0.25, 0.038
+19790208, 0.52, 0.14, -0.12, 0.038
+19790209, 0.25, 0.32, 0.04, 0.038
+19790212, 0.25, -0.20, -0.26, 0.038
+19790213, 0.74, 0.17, -0.07, 0.038
+19790214, -0.14, 0.04, 0.24, 0.038
+19790215, -0.07, 0.27, -0.11, 0.038
+19790216, 0.03, 0.32, 0.09, 0.038
+19790220, 0.58, -0.26, -0.18, 0.038
+19790221, -0.28, 0.24, 0.23, 0.038
+19790222, -0.57, 0.29, 0.13, 0.038
+19790223, -0.57, 0.18, 0.15, 0.038
+19790226, -0.14, 0.06, -0.05, 0.038
+19790227, -1.70, -0.55, 0.48, 0.038
+19790228, 0.09, -0.23, -0.09, 0.038
+19790301, 0.67, -0.05, 0.02, 0.037
+19790302, 0.12, 0.33, 0.00, 0.037
+19790305, 1.10, -0.31, -0.06, 0.037
+19790306, -0.23, 0.15, 0.62, 0.037
+19790307, 0.64, 0.10, 0.15, 0.037
+19790308, 1.01, -0.05, -0.07, 0.037
+19790309, 0.03, 0.09, 0.07, 0.037
+19790312, 0.15, 0.14, -0.17, 0.037
+19790313, 0.23, 0.25, -0.11, 0.037
+19790314, -0.07, 0.21, -0.03, 0.037
+19790315, 0.17, 0.05, 0.17, 0.037
+19790316, 0.74, 0.00, -0.31, 0.037
+19790319, 0.35, -0.04, -0.04, 0.037
+19790320, -0.53, 0.29, 0.03, 0.037
+19790321, 0.66, -0.11, -0.37, 0.037
+19790322, 0.40, 0.11, -0.16, 0.037
+19790323, -0.02, 0.51, 0.08, 0.037
+19790326, -0.50, 0.17, 0.23, 0.037
+19790327, 1.30, -0.50, -0.43, 0.037
+19790328, -0.36, 0.41, 0.09, 0.037
+19790329, -0.03, 0.52, -0.28, 0.037
+19790330, -0.31, 0.65, -0.03, 0.037
+19790402, -0.68, 0.24, 0.15, 0.040
+19790403, 1.34, -0.29, -0.15, 0.040
+19790404, 0.30, 0.01, 0.12, 0.040
+19790405, 0.55, -0.04, -0.15, 0.040
+19790406, -0.06, 0.08, 0.08, 0.040
+19790409, -0.30, 0.15, 0.08, 0.040
+19790410, 0.45, -0.04, 0.17, 0.040
+19790411, -0.90, 0.38, 0.40, 0.040
+19790412, -0.24, 0.34, 0.30, 0.040
+19790416, -0.87, 0.01, 0.12, 0.040
+19790417, -0.08, -0.10, 0.02, 0.040
+19790418, 0.49, 0.30, -0.04, 0.040
+19790419, -0.38, 0.37, -0.05, 0.040
+19790420, 0.01, 0.19, -0.12, 0.040
+19790423, 0.30, 0.01, -0.22, 0.040
+19790424, 0.52, -0.03, -0.05, 0.040
+19790425, 0.33, 0.10, 0.00, 0.040
+19790426, -0.47, 0.36, 0.26, 0.040
+19790427, -0.25, 0.18, 0.14, 0.040
+19790430, -0.07, -0.12, -0.04, 0.040
+19790501, -0.02, 0.06, 0.09, 0.037
+19790502, 0.05, 0.17, -0.08, 0.037
+19790503, 0.02, 0.12, -0.19, 0.037
+19790504, -0.97, 0.19, 0.25, 0.037
+19790507, -1.82, -0.82, 0.33, 0.037
+19790508, -0.02, -0.72, -0.16, 0.037
+19790509, 0.33, 0.22, 0.21, 0.037
+19790510, -0.89, 0.12, 0.23, 0.037
+19790511, 0.12, 0.02, 0.02, 0.037
+19790514, -0.48, 0.18, 0.02, 0.037
+19790515, 0.07, -0.06, 0.22, 0.037
+19790516, 0.22, -0.20, 0.05, 0.037
+19790517, 1.47, -0.45, 0.08, 0.037
+19790518, 0.08, 0.38, 0.00, 0.037
+19790521, 0.30, 0.19, -0.16, 0.037
+19790522, 0.46, -0.01, -0.10, 0.037
+19790523, -0.39, 0.51, 0.04, 0.037
+19790524, 0.13, 0.15, 0.04, 0.037
+19790525, 0.29, 0.25, 0.03, 0.037
+19790529, -0.18, 0.02, 0.05, 0.037
+19790530, -0.94, -0.06, 0.21, 0.037
+19790531, 0.01, -0.08, 0.11, 0.037
+19790601, 0.10, 0.16, -0.12, 0.038
+19790604, 0.18, -0.03, 0.35, 0.038
+19790605, 1.18, -0.14, -0.37, 0.038
+19790606, 0.66, -0.09, -0.25, 0.038
+19790607, 0.57, -0.03, -0.03, 0.038
+19790608, -0.20, 0.37, 0.54, 0.038
+19790611, 0.26, 0.14, -0.03, 0.038
+19790612, 0.90, -0.08, 0.14, 0.038
+19790613, -0.35, 0.51, 0.56, 0.038
+19790614, -0.19, -0.08, 0.11, 0.038
+19790615, 0.05, 0.09, -0.14, 0.038
+19790618, -0.57, 0.15, 0.21, 0.038
+19790619, 0.02, -0.04, 0.27, 0.038
+19790620, 0.14, 0.38, 0.12, 0.038
+19790621, 0.39, 0.14, -0.17, 0.038
+19790622, 0.44, -0.12, -0.06, 0.038
+19790625, -0.52, -0.15, 0.14, 0.038
+19790626, -0.44, 0.08, 0.19, 0.038
+19790627, 0.56, -0.09, -0.09, 0.038
+19790628, 0.54, -0.04, 0.04, 0.038
+19790629, 0.02, -0.05, -0.02, 0.038
+19790702, -0.91, -0.06, 0.48, 0.036
+19790703, 0.14, 0.04, 0.28, 0.036
+19790705, 0.37, 0.19, 0.08, 0.036
+19790706, 1.04, -0.30, -0.26, 0.036
+19790709, 0.78, -0.41, 0.22, 0.036
+19790710, -0.31, 0.18, 0.10, 0.036
+19790711, -0.60, 0.41, 0.21, 0.036
+19790712, -0.76, 0.50, 0.35, 0.036
+19790713, -0.34, 0.13, 0.12, 0.036
+19790716, 0.41, -0.14, -0.02, 0.036
+19790717, -0.97, -0.08, 0.53, 0.036
+19790718, -0.29, -0.33, -0.13, 0.036
+19790719, -0.01, 0.49, 0.11, 0.036
+19790720, 0.25, 0.04, -0.21, 0.036
+19790723, -0.29, 0.11, -0.04, 0.036
+19790724, 0.31, -0.01, -0.01, 0.036
+19790725, 1.05, -0.27, -0.20, 0.036
+19790726, 0.11, 0.31, 0.02, 0.036
+19790727, 0.12, 0.38, 0.05, 0.036
+19790730, 0.13, 0.13, -0.11, 0.036
+19790731, 0.59, -0.10, 0.02, 0.036
+19790801, 0.35, 0.25, -0.18, 0.033
+19790802, 0.05, 0.35, -0.24, 0.033
+19790803, -0.08, 0.05, 0.16, 0.033
+19790806, 0.20, -0.16, -0.17, 0.033
+19790807, 1.17, -0.36, -0.50, 0.033
+19790808, 0.33, 0.06, -0.13, 0.033
+19790809, -0.29, 0.43, 0.09, 0.033
+19790810, 0.80, -0.11, -0.54, 0.033
+19790813, 0.86, -0.14, -0.23, 0.033
+19790814, 0.15, 0.16, 0.33, 0.033
+19790815, 0.69, 0.12, -0.16, 0.033
+19790816, -0.20, 0.09, -0.03, 0.033
+19790817, 0.24, -0.06, 0.15, 0.033
+19790820, 0.48, -0.12, -0.04, 0.033
+19790821, 0.02, 0.12, 0.00, 0.033
+19790822, 0.15, 0.23, 0.04, 0.033
+19790823, -0.28, 0.39, 0.14, 0.033
+19790824, 0.00, -0.09, 0.24, 0.033
+19790827, 0.53, -0.28, 0.10, 0.033
+19790828, -0.10, 0.16, -0.04, 0.033
+19790829, 0.01, 0.30, -0.11, 0.033
+19790830, -0.02, 0.29, -0.10, 0.033
+19790831, 0.31, 0.26, -0.22, 0.033
+19790904, -1.61, 0.15, 0.32, 0.043
+19790905, -1.25, -0.77, 0.20, 0.043
+19790906, 0.47, 0.26, -0.11, 0.043
+19790907, 0.76, -0.12, 0.22, 0.043
+19790910, 0.47, -0.06, 0.05, 0.043
+19790911, -0.68, 0.16, 0.05, 0.043
+19790912, 0.31, 0.09, -0.19, 0.043
+19790913, 0.03, 0.43, -0.49, 0.043
+19790914, 0.91, 0.00, -0.35, 0.043
+19790917, -0.11, -0.06, -0.18, 0.043
+19790918, -0.76, 0.02, 0.00, 0.043
+19790919, 0.21, -0.07, -0.05, 0.043
+19790920, 1.67, -1.25, -0.31, 0.043
+19790921, -0.05, 0.24, 0.04, 0.043
+19790924, -0.79, 0.30, -0.15, 0.043
+19790925, 0.01, -0.27, -0.16, 0.043
+19790926, 0.22, 0.10, 0.01, 0.043
+19790927, 0.10, 0.10, 0.02, 0.043
+19790928, -0.69, 0.52, 0.19, 0.043
+19791001, -0.58, 0.33, -0.18, 0.038
+19791002, 0.78, -0.27, -0.11, 0.038
+19791003, 0.13, 0.35, -0.20, 0.038
+19791004, 0.56, 0.04, 0.01, 0.038
+19791005, 0.85, -0.08, -0.02, 0.038
+19791008, -1.24, -0.03, -0.02, 0.038
+19791009, -3.44, -1.29, 0.01, 0.038
+19791010, -1.92, -2.69, -0.44, 0.038
+19791011, -0.02, 0.73, 0.01, 0.038
+19791012, -0.31, 0.73, 0.03, 0.038
+19791015, -1.23, -0.64, 0.04, 0.038
+19791016, -0.21, 0.02, 0.08, 0.038
+19791017, 0.30, 0.26, -0.13, 0.038
+19791018, 0.18, 0.04, -0.02, 0.038
+19791019, -2.09, -0.05, 0.36, 0.038
+19791022, -1.43, -1.63, -0.37, 0.038
+19791023, -0.37, -0.05, -0.26, 0.038
+19791024, 0.21, 0.12, -0.13, 0.038
+19791025, -0.34, 0.25, 0.19, 0.038
+19791026, 0.64, 0.25, -0.23, 0.038
+19791029, 0.16, 0.04, -0.10, 0.038
+19791030, 1.77, -0.51, -0.74, 0.038
+19791031, -0.62, 0.57, 0.17, 0.038
+19791101, 0.79, -0.16, -0.20, 0.047
+19791102, 0.17, 0.28, -0.15, 0.047
+19791105, -0.68, 0.11, -0.02, 0.047
+19791106, -0.61, 0.19, 0.08, 0.047
+19791107, -1.24, 0.06, 0.25, 0.047
+19791108, 0.53, -0.11, -0.37, 0.047
+19791109, 1.23, -0.07, -0.14, 0.047
+19791112, 1.71, -0.77, -0.30, 0.047
+19791113, -0.36, 0.32, 0.26, 0.047
+19791114, 0.37, 0.12, -0.25, 0.047
+19791115, 0.74, 0.23, -0.48, 0.047
+19791116, -0.18, 0.04, -0.05, 0.047
+19791119, 0.41, 0.03, -0.39, 0.047
+19791120, -0.48, 0.46, -0.21, 0.047
+19791121, 0.08, -0.23, -0.19, 0.047
+19791123, 0.76, 0.07, -0.31, 0.047
+19791126, 2.11, -0.28, -0.40, 0.047
+19791127, -0.19, 0.76, 0.29, 0.047
+19791128, 0.41, 0.40, -0.34, 0.047
+19791129, 0.07, 0.53, -0.19, 0.047
+19791130, -0.49, 0.54, 0.07, 0.047
+19791203, -0.30, 0.14, 0.19, 0.047
+19791204, 0.83, -0.20, -0.42, 0.047
+19791205, 0.50, 0.27, -0.37, 0.047
+19791206, 0.69, 0.20, -0.19, 0.047
+19791207, -0.35, 0.67, -0.08, 0.047
+19791210, 0.23, 0.06, -0.03, 0.047
+19791211, -0.22, 0.11, 0.06, 0.047
+19791212, 0.06, 0.54, -0.33, 0.047
+19791213, 0.14, 0.24, -0.48, 0.047
+19791214, 1.05, -0.20, -0.40, 0.047
+19791217, 0.44, 0.06, -0.24, 0.047
+19791218, -0.92, 0.30, 0.54, 0.047
+19791219, -0.14, 0.14, -0.06, 0.047
+19791220, 0.13, 0.26, -0.02, 0.047
+19791221, -0.61, 0.59, 0.02, 0.047
+19791224, 0.04, 0.00, 0.18, 0.047
+19791226, 0.09, 0.01, 0.03, 0.047
+19791227, 0.07, 0.14, -0.10, 0.047
+19791228, 0.03, 0.37, -0.10, 0.047
+19791231, 0.05, 0.28, -0.10, 0.047
+19800102, -2.05, 0.18, 1.07, 0.036
+19800103, -0.73, -0.90, 0.33, 0.036
+19800104, 1.32, 0.58, -0.38, 0.036
+19800107, 0.39, 0.24, 0.05, 0.036
+19800108, 1.92, -0.36, -0.70, 0.036
+19800109, 0.11, 0.64, 0.01, 0.036
+19800110, 0.85, 0.32, -0.02, 0.036
+19800111, 0.20, 0.21, 0.45, 0.036
+19800114, 0.34, 0.30, 0.66, 0.036
+19800115, 0.54, -0.11, -0.10, 0.036
+19800116, 0.04, 0.46, -0.10, 0.036
+19800117, -0.28, 0.46, 0.28, 0.036
+19800118, 0.22, 0.01, 0.09, 0.036
+19800121, 0.85, -0.17, 0.25, 0.036
+19800122, -0.59, -0.01, -0.04, 0.036
+19800123, 1.50, -0.70, -0.17, 0.036
+19800124, 0.25, 0.17, -0.09, 0.036
+19800125, -0.03, 0.33, -0.19, 0.036
+19800128, 1.00, -0.41, -0.29, 0.036
+19800129, -0.65, -0.04, 0.22, 0.036
+19800130, 0.94, -0.21, 0.17, 0.036
+19800131, -0.72, 0.54, 0.17, 0.036
+19800201, 0.66, -0.29, 0.11, 0.044
+19800204, -0.46, 0.34, 0.20, 0.044
+19800205, 0.21, -0.01, -0.07, 0.044
+19800206, 0.84, -0.67, 0.19, 0.044
+19800207, 0.43, -0.07, 0.45, 0.044
+19800208, 1.25, -0.72, 0.51, 0.044
+19800211, -0.72, 0.37, -0.19, 0.044
+19800212, 0.58, -0.45, -0.52, 0.044
+19800213, 0.27, -0.11, -0.26, 0.044
+19800214, -1.43, 0.47, 0.28, 0.044
+19800215, -0.92, 0.28, 0.01, 0.044
+19800219, -0.79, 0.01, -0.06, 0.044
+19800220, 1.41, -0.91, 0.08, 0.044
+19800221, -0.93, 0.41, -0.09, 0.044
+19800222, -0.40, -0.52, 0.16, 0.044
+19800225, -1.41, 0.31, -0.23, 0.044
+19800226, 0.56, -0.43, 0.14, 0.044
+19800227, -1.24, 0.81, 0.27, 0.044
+19800228, -0.03, -0.08, -0.26, 0.044
+19800229, 0.97, -0.66, -0.11, 0.044
+19800303, -0.94, 0.31, 0.02, 0.057
+19800304, -0.08, -1.14, 0.20, 0.057
+19800305, -1.59, -0.19, 0.42, 0.057
+19800306, -2.42, -0.34, -0.21, 0.057
+19800307, -1.73, -0.02, -0.35, 0.057
+19800310, -0.76, -1.52, 0.30, 0.057
+19800311, 1.21, -0.46, 0.01, 0.057
+19800312, -0.70, 0.64, -0.04, 0.057
+19800313, -1.02, 0.88, -0.45, 0.057
+19800314, -0.34, -0.22, -0.02, 0.057
+19800317, -3.20, -0.27, 0.00, 0.057
+19800318, 1.32, -2.15, 0.25, 0.057
+19800319, 0.36, 0.46, -0.01, 0.057
+19800320, -1.05, 0.96, -0.24, 0.057
+19800321, -0.77, 0.08, 0.26, 0.057
+19800324, -3.13, -0.41, 0.59, 0.057
+19800325, -0.55, -1.41, -0.43, 0.057
+19800326, -0.54, 0.34, -0.20, 0.057
+19800327, -1.85, -5.14, 0.32, 0.057
+19800328, 2.93, 1.98, -1.49, 0.057
+19800331, 1.46, 0.12, -0.16, 0.057
+19800401, 0.32, 0.85, -0.07, 0.059
+19800402, 0.84, 0.46, -0.31, 0.059
+19800403, -0.41, 0.38, 0.12, 0.059
+19800407, -2.07, 0.01, 0.51, 0.059
+19800408, 0.94, -0.52, -0.09, 0.059
+19800409, 1.81, -0.84, 0.22, 0.059
+19800410, 0.87, 0.45, 0.24, 0.059
+19800411, -0.11, 0.53, 0.41, 0.059
+19800414, -1.03, 0.18, 0.17, 0.059
+19800415, -0.23, -0.08, 0.12, 0.059
+19800416, -1.09, 0.39, 0.59, 0.059
+19800417, -0.55, -0.26, 0.21, 0.059
+19800418, -0.41, 0.32, 0.13, 0.059
+19800421, -0.89, -0.44, 0.39, 0.059
+19800422, 3.41, -0.83, -1.09, 0.059
+19800423, 0.35, 0.63, -0.05, 0.059
+19800424, 0.81, 0.28, -0.43, 0.059
+19800425, 0.47, -0.87, -0.24, 0.059
+19800428, 0.39, 0.11, 0.01, 0.059
+19800429, 0.30, 0.23, -0.03, 0.059
+19800430, 0.29, -0.05, 0.14, 0.059
+19800501, -0.66, 0.34, 0.30, 0.038
+19800502, 0.15, 0.10, 0.18, 0.038
+19800505, 0.76, -0.20, 0.24, 0.038
+19800506, 0.14, 0.50, -0.06, 0.038
+19800507, 0.87, -0.01, 0.64, 0.038
+19800508, -0.71, 0.68, 0.16, 0.038
+19800509, -1.18, 0.89, 0.16, 0.038
+19800512, -0.02, 0.03, -0.02, 0.038
+19800513, 1.19, -0.39, -0.24, 0.038
+19800514, 0.65, 0.42, -0.26, 0.038
+19800515, 0.20, 0.45, -0.38, 0.038
+19800516, 0.38, 0.15, -0.20, 0.038
+19800519, 0.24, 0.10, -0.12, 0.038
+19800520, -0.08, 0.12, -0.01, 0.038
+19800521, 0.06, -0.05, 0.11, 0.038
+19800522, 1.21, -0.37, -0.24, 0.038
+19800523, 1.45, -0.43, -0.09, 0.038
+19800527, 0.66, -0.27, 0.28, 0.038
+19800528, 0.61, -0.45, -0.02, 0.038
+19800529, -1.47, 0.82, -0.09, 0.038
+19800530, 0.70, -0.46, 0.02, 0.038
+19800602, -0.25, 0.31, 0.02, 0.029
+19800603, -0.21, 0.23, -0.05, 0.029
+19800604, 1.69, -0.69, -0.68, 0.029
+19800605, 0.21, 0.30, -0.02, 0.029
+19800606, 0.40, 0.09, -0.20, 0.029
+19800609, 0.37, -0.15, 0.19, 0.029
+19800610, 0.80, -0.37, -0.12, 0.029
+19800611, 1.08, -0.46, -0.22, 0.029
+19800612, -0.25, 0.19, -0.29, 0.029
+19800613, 0.29, 0.46, 0.04, 0.029
+19800616, 0.17, -0.13, 0.03, 0.029
+19800617, 0.03, 0.10, 0.16, 0.029
+19800618, 0.15, -0.24, 0.23, 0.029
+19800619, -1.27, 0.83, 0.16, 0.029
+19800620, -0.41, 0.27, 0.22, 0.029
+19800623, 0.39, -0.05, -0.10, 0.029
+19800624, 0.58, -0.11, -0.13, 0.029
+19800625, 1.21, -0.33, -0.09, 0.029
+19800626, -0.36, 0.39, 0.00, 0.029
+19800627, -0.12, 0.33, -0.17, 0.029
+19800630, -1.46, 0.61, 0.14, 0.029
+19800701, 0.55, -0.07, -0.69, 0.024
+19800702, 0.66, 0.16, -0.47, 0.024
+19800703, 1.39, -0.28, -0.52, 0.024
+19800707, 0.76, -0.12, -0.19, 0.024
+19800708, -0.30, 0.39, 0.06, 0.024
+19800709, 0.13, 0.26, -0.08, 0.024
+19800710, -0.75, 0.73, 0.14, 0.024
+19800711, 0.70, 0.04, -0.53, 0.024
+19800714, 1.72, -0.23, -0.97, 0.024
+19800715, -0.46, 0.64, 0.07, 0.024
+19800716, 0.21, 0.38, -0.12, 0.024
+19800717, 1.41, -0.22, -0.83, 0.024
+19800718, 0.33, 0.36, -0.17, 0.024
+19800721, 0.34, -0.03, -0.22, 0.024
+19800722, -0.26, 0.07, 0.20, 0.024
+19800723, -0.16, 0.25, -0.07, 0.024
+19800724, -0.11, 0.27, -0.22, 0.024
+19800725, -0.76, 0.43, 0.06, 0.024
+19800728, 0.43, -0.23, -0.40, 0.024
+19800729, 0.76, 0.07, -0.52, 0.024
+19800730, 0.08, 0.86, -0.52, 0.024
+19800731, -0.38, 0.18, 0.12, 0.024
+19800801, -0.18, 0.88, -0.32, 0.030
+19800804, -0.36, 0.03, 0.34, 0.030
+19800805, -0.02, 0.46, -0.17, 0.030
+19800806, 0.66, 0.01, -0.42, 0.030
+19800807, 1.45, -0.32, -0.77, 0.030
+19800808, 0.29, 0.12, -0.12, 0.030
+19800811, 0.91, -0.22, -0.24, 0.030
+19800812, -0.74, 0.31, 0.17, 0.030
+19800813, -0.28, 0.50, 0.08, 0.030
+19800814, 1.51, -0.16, -0.82, 0.030
+19800815, 0.40, 0.16, -0.23, 0.030
+19800818, -1.79, 0.09, 1.00, 0.030
+19800819, -0.61, 0.05, 0.07, 0.030
+19800820, 0.98, -0.13, -0.39, 0.030
+19800821, 1.47, 0.09, -0.74, 0.030
+19800822, 0.60, 0.21, -0.38, 0.030
+19800825, -0.50, 0.37, -0.20, 0.030
+19800826, -0.12, 0.40, -0.32, 0.030
+19800827, -0.93, 0.57, 0.28, 0.030
+19800828, -1.14, 0.13, 0.68, 0.030
+19800829, 0.26, 0.19, 0.00, 0.030
+19800902, 0.99, -0.28, -0.03, 0.036
+19800903, 1.92, -0.48, -0.41, 0.036
+19800904, -0.38, 0.58, 0.13, 0.036
+19800905, -0.31, 0.69, -0.19, 0.036
+19800908, -1.22, 0.69, 0.19, 0.036
+19800909, 0.54, -0.10, -0.32, 0.036
+19800910, 0.67, 0.34, -0.24, 0.036
+19800911, 0.68, 0.50, -0.96, 0.036
+19800912, 0.08, 0.63, -0.59, 0.036
+19800915, 0.09, 0.07, -0.40, 0.036
+19800916, 0.90, 0.06, -0.78, 0.036
+19800917, 1.50, -0.29, -1.08, 0.036
+19800918, -0.34, 0.16, 0.08, 0.036
+19800919, 0.57, 0.19, -0.45, 0.036
+19800922, 0.76, -0.62, -0.78, 0.036
+19800923, -0.68, -0.40, 0.27, 0.036
+19800924, 0.61, -0.71, -0.52, 0.036
+19800925, -1.17, 0.59, 0.25, 0.036
+19800926, -2.01, -0.06, 0.82, 0.036
+19800929, -2.42, -0.64, 1.08, 0.036
+19800930, 1.50, -0.06, -0.95, 0.036
+19801001, 1.31, -0.35, -1.56, 0.041
+19801002, 0.72, -0.05, -0.58, 0.041
+19801003, 1.11, 0.31, -0.59, 0.041
+19801006, 1.71, -0.24, -0.90, 0.041
+19801007, -0.50, 0.34, 0.05, 0.041
+19801008, 0.48, 0.23, -0.56, 0.041
+19801009, -0.37, 0.55, 0.05, 0.041
+19801010, -0.42, 0.51, 0.40, 0.041
+19801013, 1.13, -0.47, -0.45, 0.041
+19801014, 0.00, 0.25, -0.09, 0.041
+19801015, 1.10, -0.59, -0.55, 0.041
+19801016, -1.20, 0.37, 0.74, 0.041
+19801017, -0.52, 0.15, 0.08, 0.041
+19801020, 0.60, -0.48, 0.05, 0.041
+19801021, -0.63, 0.27, 0.10, 0.041
+19801022, 0.17, 0.41, -0.22, 0.041
+19801023, -1.79, 0.60, 0.90, 0.041
+19801024, 0.25, -0.06, 0.15, 0.041
+19801027, -1.41, 0.58, 0.44, 0.041
+19801028, -0.01, -0.13, -0.54, 0.041
+19801029, -0.14, 0.24, -0.23, 0.041
+19801030, -1.43, 0.44, 0.54, 0.041
+19801031, 0.97, -0.61, -0.20, 0.041
+19801103, 1.10, -0.52, -0.79, 0.053
+19801105, 1.69, -0.37, -1.42, 0.053
+19801106, -1.79, 0.38, 0.24, 0.053
+19801107, 0.12, -0.47, -0.10, 0.053
+19801110, 0.27, -0.18, -0.40, 0.053
+19801111, 1.20, -0.35, -0.23, 0.053
+19801112, 2.35, -0.96, -1.16, 0.053
+19801113, 1.47, -0.34, -0.88, 0.053
+19801114, 0.49, 0.12, -0.49, 0.053
+19801117, 0.39, -0.48, -0.47, 0.053
+19801118, 1.37, -0.60, -0.96, 0.053
+19801119, -0.37, 0.67, -0.58, 0.053
+19801120, 0.91, -0.41, -0.32, 0.053
+19801121, -0.87, 0.68, -0.05, 0.053
+19801124, -0.64, -0.37, 0.81, 0.053
+19801125, 0.76, -0.07, -0.19, 0.053
+19801126, 0.50, 0.08, -0.71, 0.053
+19801128, 0.27, 0.03, 0.06, 0.053
+19801201, -2.21, 0.91, 0.35, 0.059
+19801202, -0.30, -0.39, 0.24, 0.059
+19801203, -0.07, 0.56, -0.37, 0.059
+19801204, -0.12, 0.58, -0.20, 0.059
+19801205, -1.91, 0.60, 0.88, 0.059
+19801208, -2.71, -0.79, 1.68, 0.059
+19801209, -0.21, -0.64, 0.23, 0.059
+19801210, -1.60, 0.30, 0.84, 0.059
+19801211, -1.16, -1.51, 0.50, 0.059
+19801212, 1.38, -0.04, -1.08, 0.059
+19801215, 0.11, 0.24, -0.49, 0.059
+19801216, 0.71, -0.76, -0.47, 0.059
+19801217, 1.52, -0.85, -0.34, 0.059
+19801218, 0.41, 0.21, 1.27, 0.059
+19801219, 0.58, 0.18, 0.60, 0.059
+19801222, 1.28, -0.33, -0.04, 0.059
+19801223, -0.31, 0.55, 0.16, 0.059
+19801224, 0.35, 0.00, 0.19, 0.059
+19801226, 0.46, -0.05, -0.26, 0.059
+19801229, -1.06, 0.40, -0.24, 0.059
+19801230, 0.16, -0.06, -0.44, 0.059
+19801231, 0.35, 0.60, -0.33, 0.059
+19810102, 0.56, 0.22, 0.64, 0.049
+19810105, 0.95, -0.23, 0.94, 0.049
+19810106, 0.05, 0.19, 0.84, 0.049
+19810107, -2.65, -1.27, 1.80, 0.049
+19810108, -1.37, 0.72, 0.64, 0.049
+19810109, 0.37, 0.67, -0.35, 0.049
+19810112, 0.02, 0.38, 0.45, 0.049
+19810113, -0.33, 0.17, 0.05, 0.049
+19810114, 0.27, 0.21, -0.36, 0.049
+19810115, 0.50, 0.01, -0.47, 0.049
+19810116, 0.49, -0.06, -0.09, 0.049
+19810119, -0.25, 0.30, 0.17, 0.049
+19810120, -1.89, 0.65, 0.58, 0.049
+19810121, -0.36, -0.01, 0.32, 0.049
+19810122, -0.83, 0.44, 0.09, 0.049
+19810123, -0.05, 0.22, -0.19, 0.049
+19810126, -0.51, -0.15, 0.37, 0.049
+19810127, 1.01, -0.45, -0.31, 0.049
+19810128, -0.46, 0.42, 0.35, 0.049
+19810129, -0.08, 0.30, 0.45, 0.049
+19810130, -0.48, 0.34, 0.95, 0.049
+19810202, -2.25, -0.15, 1.79, 0.056
+19810203, 1.08, -0.93, -0.48, 0.056
+19810204, 0.21, 0.49, -0.14, 0.056
+19810205, 0.94, 0.11, -0.26, 0.056
+19810206, 0.77, 0.16, -0.44, 0.056
+19810209, -0.99, 0.69, 0.53, 0.056
+19810210, -0.14, 0.05, 0.13, 0.056
+19810211, -0.74, 0.41, 0.52, 0.056
+19810212, -0.66, 0.04, 0.56, 0.056
+19810213, -0.31, 0.07, -0.10, 0.056
+19810217, 0.43, -0.58, -0.04, 0.056
+19810218, 0.45, -0.27, -0.51, 0.056
+19810219, -1.47, 0.36, 0.55, 0.056
+19810220, -0.19, -0.20, 0.50, 0.056
+19810223, 0.53, -0.33, -0.13, 0.056
+19810224, 0.17, 0.20, -0.13, 0.056
+19810225, 0.70, -0.76, -0.23, 0.056
+19810226, 1.17, 0.13, -0.73, 0.056
+19810227, 0.95, 0.11, -0.53, 0.056
+19810302, 0.60, 0.04, -0.45, 0.055
+19810303, -0.92, 0.75, 0.56, 0.055
+19810304, 0.14, -0.02, 0.29, 0.055
+19810305, -0.51, 0.64, 0.19, 0.055
+19810306, -0.09, 0.43, 0.16, 0.055
+19810309, 0.72, -0.29, -0.53, 0.055
+19810310, -0.47, -0.07, 0.58, 0.055
+19810311, -0.32, 0.06, 0.37, 0.055
+19810312, 2.23, -0.99, -0.69, 0.055
+19810313, 0.03, 0.24, 0.50, 0.055
+19810316, 1.01, -0.27, -0.07, 0.055
+19810317, -0.45, 0.34, 0.74, 0.055
+19810318, 0.23, 0.25, 0.31, 0.055
+19810319, -0.50, 0.90, 0.59, 0.055
+19810320, 0.63, 0.42, -0.30, 0.055
+19810323, 1.02, -0.39, -1.01, 0.055
+19810324, -0.60, 0.48, -0.30, 0.055
+19810325, 1.54, -0.57, -0.45, 0.055
+19810326, -0.45, 0.52, 0.12, 0.055
+19810327, -1.01, 0.67, 0.10, 0.055
+19810330, -0.30, 0.22, -0.07, 0.055
+19810331, 1.05, -0.18, -0.10, 0.055
+19810401, 0.49, 0.19, 0.00, 0.051
+19810402, -0.08, 0.39, 0.18, 0.051
+19810403, -0.48, 0.63, 0.23, 0.051
+19810406, -1.11, 0.35, 0.17, 0.051
+19810407, -0.04, 0.33, 0.27, 0.051
+19810408, 0.32, 0.02, 0.22, 0.051
+19810409, 0.37, 0.21, 0.45, 0.051
+19810410, 0.03, 0.56, -0.14, 0.051
+19810413, -1.05, 0.49, 0.31, 0.051
+19810414, -0.56, 0.06, 0.74, 0.051
+19810415, 1.01, -0.13, -0.39, 0.051
+19810416, 0.44, 0.42, -0.42, 0.051
+19810420, 0.54, 0.06, -0.32, 0.051
+19810421, -0.95, 0.56, 0.36, 0.051
+19810422, -0.08, 0.16, 0.38, 0.051
+19810423, -0.03, 0.58, -0.01, 0.051
+19810424, 0.72, -0.18, -0.15, 0.051
+19810427, 0.20, -0.25, 0.04, 0.051
+19810428, -0.95, -0.29, 0.62, 0.051
+19810429, -0.94, 0.14, 0.21, 0.051
+19810430, 0.01, 0.23, -0.42, 0.051
+19810501, -0.17, 0.02, -0.30, 0.057
+19810504, -1.53, -0.35, 0.43, 0.057
+19810505, -0.41, -0.37, -0.35, 0.057
+19810506, 0.40, -0.05, -0.39, 0.057
+19810507, 0.70, -0.23, -0.34, 0.057
+19810508, 0.08, 0.35, 0.07, 0.057
+19810511, -1.42, 0.33, 0.73, 0.057
+19810512, 0.65, -0.66, 0.17, 0.057
+19810513, -0.04, 0.59, -0.17, 0.057
+19810514, 0.56, 0.00, 0.21, 0.057
+19810515, 0.61, -0.20, 0.22, 0.057
+19810518, 0.16, 0.06, -0.34, 0.057
+19810519, -0.32, 0.05, -0.01, 0.057
+19810520, 0.10, 0.45, -0.39, 0.057
+19810521, -0.11, 0.35, 0.12, 0.057
+19810522, -0.01, 0.38, -0.13, 0.057
+19810526, 0.88, -0.52, -0.39, 0.057
+19810527, 0.65, 0.22, -0.21, 0.057
+19810528, -0.17, 0.83, 0.29, 0.057
+19810529, -0.46, 0.61, 0.35, 0.057
+19810601, -0.23, 0.45, 0.37, 0.061
+19810602, -1.45, 0.18, 0.88, 0.061
+19810603, -0.03, -0.03, 0.13, 0.061
+19810604, 0.15, 0.04, -0.10, 0.061
+19810605, 0.85, -0.60, -0.30, 0.061
+19810608, -0.03, -0.16, 0.44, 0.061
+19810609, -0.34, -0.10, 0.31, 0.061
+19810610, 0.25, -0.18, 0.40, 0.061
+19810611, 1.01, -0.02, 0.10, 0.061
+19810612, -0.04, 0.38, 0.48, 0.061
+19810615, 0.06, -0.04, 1.11, 0.061
+19810616, -1.16, 0.06, 1.37, 0.061
+19810617, 0.68, -0.69, -0.23, 0.061
+19810618, -1.21, 0.53, 0.28, 0.061
+19810619, 0.38, -0.22, -0.35, 0.061
+19810622, -0.21, -0.10, 0.26, 0.061
+19810623, 0.93, -0.73, -0.16, 0.061
+19810624, -0.55, 0.53, 0.18, 0.061
+19810625, 0.10, -0.05, -0.08, 0.061
+19810626, -0.23, 0.24, -0.23, 0.061
+19810629, -0.68, -0.13, 0.35, 0.061
+19810630, -0.65, -0.20, 0.05, 0.061
+19810701, -0.98, 0.35, -0.02, 0.056
+19810702, -0.95, 0.04, 0.54, 0.056
+19810706, -1.12, -0.46, 0.82, 0.056
+19810707, 0.32, -0.80, -0.15, 0.056
+19810708, 0.09, -0.13, -0.01, 0.056
+19810709, 0.66, -0.18, -0.61, 0.056
+19810710, 0.10, 0.23, -0.12, 0.056
+19810713, 0.12, -0.18, 0.28, 0.056
+19810714, -0.12, -0.35, -0.35, 0.056
+19810715, 0.38, 0.15, -0.23, 0.056
+19810716, 0.14, 0.15, -0.28, 0.056
+19810717, 0.29, 0.02, -0.26, 0.056
+19810720, -1.59, 0.23, 0.31, 0.056
+19810721, -0.50, -0.55, -0.09, 0.056
+19810722, -0.88, 0.37, 0.31, 0.056
+19810723, 0.12, -0.33, -0.24, 0.056
+19810724, 0.80, -0.33, 0.01, 0.056
+19810727, 0.81, -0.34, -0.41, 0.056
+19810728, -0.51, 0.27, 0.28, 0.056
+19810729, -0.03, -0.05, 0.33, 0.056
+19810730, 0.57, -0.07, -0.44, 0.056
+19810731, 0.77, -0.21, -0.33, 0.056
+19810803, -0.34, -0.14, 0.12, 0.061
+19810804, 0.42, -0.51, -0.46, 0.061
+19810805, 1.05, -0.60, -0.26, 0.061
+19810806, 0.10, 0.14, 0.12, 0.061
+19810807, -0.45, 0.19, 0.24, 0.061
+19810810, 0.34, -0.72, 0.05, 0.061
+19810811, 0.84, -0.63, -0.10, 0.061
+19810812, -0.24, 0.32, 0.29, 0.061
+19810813, 0.06, 0.05, -0.27, 0.061
+19810814, -0.69, 0.58, 0.14, 0.061
+19810817, -1.02, 0.03, 0.61, 0.061
+19810818, -1.11, -0.17, 0.71, 0.061
+19810819, 0.19, -0.21, -0.27, 0.061
+19810820, 0.15, 0.12, -0.25, 0.061
+19810821, -1.03, 0.41, 0.88, 0.061
+19810824, -2.97, 0.08, 1.82, 0.061
+19810825, -0.53, -1.07, -0.15, 0.061
+19810826, -0.12, -0.06, 0.19, 0.061
+19810827, -1.08, 0.27, 0.81, 0.061
+19810828, 0.41, -0.19, -0.03, 0.061
+19810831, -1.15, 0.05, 0.87, 0.061
+19810901, 0.13, -0.50, -0.11, 0.059
+19810902, 0.26, 0.05, -0.14, 0.059
+19810903, -1.92, 0.25, 1.19, 0.059
+19810904, -1.04, 0.02, 0.42, 0.059
+19810908, -1.96, -0.79, 1.09, 0.059
+19810909, 0.25, -0.30, -0.21, 0.059
+19810910, 1.49, 0.00, -0.72, 0.059
+19810911, 1.15, -0.06, -0.25, 0.059
+19810914, -0.78, 0.68, -0.04, 0.059
+19810915, -0.59, 0.46, 0.42, 0.059
+19810916, -0.84, -0.30, 1.10, 0.059
+19810917, -1.49, 0.14, 1.30, 0.059
+19810918, -0.92, -0.26, 0.77, 0.059
+19810921, 0.54, -0.82, 0.25, 0.059
+19810922, -0.52, 0.18, 0.47, 0.059
+19810923, -1.22, -0.90, 0.90, 0.059
+19810924, -0.40, 0.28, 0.19, 0.059
+19810925, -2.40, -1.16, 1.74, 0.059
+19810928, 1.93, -1.82, -1.56, 0.059
+19810929, 0.85, 1.54, -1.27, 0.059
+19810930, 0.26, 0.50, -0.33, 0.059
+19811001, 0.66, 0.02, -0.83, 0.054
+19811002, 1.97, -0.19, -0.99, 0.054
+19811005, 0.31, 0.61, -0.22, 0.054
+19811006, -0.14, 0.33, -0.94, 0.054
+19811007, 1.55, -0.07, -0.82, 0.054
+19811008, 0.88, 0.39, -0.66, 0.054
+19811009, -0.51, 0.59, 0.88, 0.054
+19811012, -0.21, 0.31, 0.28, 0.054
+19811013, -0.22, 0.49, -0.10, 0.054
+19811014, -1.58, 0.41, 1.01, 0.054
+19811015, 0.55, -0.40, -0.17, 0.054
+19811016, -0.36, 0.36, 0.32, 0.054
+19811019, -0.21, -0.18, 0.27, 0.054
+19811020, 0.95, -0.37, -0.60, 0.054
+19811021, -0.12, 0.42, -0.47, 0.054
+19811022, -0.37, 0.07, -0.01, 0.054
+19811023, -0.80, 0.42, 0.09, 0.054
+19811026, -0.45, -0.15, -0.12, 0.054
+19811027, 0.94, -0.19, -0.50, 0.054
+19811028, 0.22, 0.21, -0.21, 0.054
+19811029, -0.38, 0.09, 0.03, 0.054
+19811030, 2.15, -1.20, -0.22, 0.054
+19811102, 1.89, -0.49, -1.36, 0.053
+19811103, 0.44, 0.20, -0.15, 0.053
+19811104, 0.13, 0.13, 0.09, 0.053
+19811105, -0.70, 0.59, 0.66, 0.053
+19811106, -0.51, 0.28, 0.48, 0.053
+19811109, 0.35, -0.62, 0.73, 0.053
+19811110, -0.40, 0.40, 0.62, 0.053
+19811111, 0.12, -0.23, 0.49, 0.053
+19811112, 0.21, 0.11, 0.52, 0.053
+19811113, -1.16, 0.61, 1.11, 0.053
+19811116, -1.31, -0.27, 1.08, 0.053
+19811117, 0.51, -0.67, 0.07, 0.053
+19811118, -0.45, 0.38, 0.41, 0.053
+19811119, 0.42, -0.42, -0.57, 0.053
+19811120, 0.87, -0.18, -0.51, 0.053
+19811123, -0.10, 0.11, -0.41, 0.053
+19811124, 1.21, -0.78, -0.16, 0.053
+19811125, 0.34, 0.17, -0.03, 0.053
+19811127, 0.70, -0.05, -0.39, 0.053
+19811130, 0.79, -0.28, -0.87, 0.053
+19811201, -0.23, 0.17, 0.09, 0.040
+19811202, -1.01, 0.61, 0.28, 0.040
+19811203, 0.31, -0.44, -0.18, 0.040
+19811204, 0.65, -0.21, -0.09, 0.040
+19811207, -0.78, 0.16, 0.41, 0.040
+19811208, -0.48, -0.33, 0.11, 0.040
+19811209, 0.46, -0.26, -0.50, 0.040
+19811210, 0.14, 0.15, -0.02, 0.040
+19811211, -0.57, 0.46, -0.03, 0.040
+19811214, -1.59, 0.16, 0.61, 0.040
+19811215, 0.04, 0.05, 0.02, 0.040
+19811216, -0.37, 0.37, -0.12, 0.040
+19811217, 0.40, -0.17, -0.65, 0.040
+19811218, 0.63, -0.14, -0.43, 0.040
+19811221, -0.47, 0.05, 0.37, 0.040
+19811222, -0.39, 0.08, 0.41, 0.040
+19811223, -0.40, 0.28, 0.21, 0.040
+19811224, 0.21, -0.02, -0.15, 0.040
+19811228, -0.27, -0.09, 0.27, 0.040
+19811229, -0.56, -0.02, 0.42, 0.040
+19811230, 0.34, -0.13, -0.12, 0.040
+19811231, 0.31, 0.44, -0.20, 0.040
+19820104, 0.16, -0.01, 0.59, 0.040
+19820105, -2.03, 0.66, 1.48, 0.040
+19820106, -0.81, -0.07, 0.73, 0.040
+19820107, -0.27, 0.24, 0.07, 0.040
+19820108, 0.46, -0.01, 0.08, 0.040
+19820111, -2.33, 0.22, 1.79, 0.040
+19820112, -0.55, -0.35, 0.12, 0.040
+19820113, -1.28, 0.41, 0.31, 0.040
+19820114, 0.48, -0.38, -0.39, 0.040
+19820115, 0.60, 0.13, -0.81, 0.040
+19820118, 0.58, -0.56, -0.52, 0.040
+19820119, -0.95, 0.51, 0.79, 0.040
+19820120, -0.61, 0.22, 0.56, 0.040
+19820121, 0.30, -0.34, 0.02, 0.040
+19820122, -0.38, 0.02, 0.64, 0.040
+19820125, -0.40, -0.94, 0.31, 0.040
+19820126, -0.17, -0.03, 0.09, 0.040
+19820127, 0.35, -0.38, -0.24, 0.040
+19820128, 2.53, -0.73, -1.75, 0.040
+19820129, 1.12, 0.03, -0.73, 0.040
+19820201, -1.79, 0.96, 0.80, 0.048
+19820202, 0.27, 0.01, -0.16, 0.048
+19820203, -0.93, 0.79, 0.55, 0.048
+19820204, -0.20, -0.01, 0.22, 0.048
+19820205, 0.76, -0.11, -0.09, 0.048
+19820208, -2.16, 0.27, 1.60, 0.048
+19820209, -0.94, -0.34, 0.94, 0.048
+19820210, 0.61, -0.47, -0.12, 0.048
+19820211, -0.14, -0.21, 0.44, 0.048
+19820212, -0.07, 0.15, -0.10, 0.048
+19820216, -0.46, -0.31, 0.11, 0.048
+19820217, -0.19, 0.45, -0.38, 0.048
+19820218, 0.06, -0.08, -0.43, 0.048
+19820219, -0.47, -0.07, 0.45, 0.048
+19820222, -1.25, 0.43, 1.63, 0.048
+19820223, -0.22, -0.66, 1.00, 0.048
+19820224, 1.40, -0.97, -0.27, 0.048
+19820225, -0.04, 0.65, -0.28, 0.048
+19820226, -0.16, -0.01, 0.43, 0.048
+19820301, 0.24, -0.04, 0.32, 0.042
+19820302, -0.38, 0.30, 1.13, 0.042
+19820303, -1.52, -0.07, 2.00, 0.042
+19820304, -1.08, -0.15, 1.44, 0.042
+19820305, -0.69, -0.60, 1.70, 0.042
+19820308, -1.61, -0.19, 2.10, 0.042
+19820309, 0.70, -1.33, -0.60, 0.042
+19820310, 0.50, 0.12, -0.49, 0.042
+19820311, -0.12, -0.07, 0.27, 0.042
+19820312, -0.80, -0.01, 0.57, 0.042
+19820315, 0.49, -0.63, -1.00, 0.042
+19820316, -0.06, 0.41, -0.26, 0.042
+19820317, -0.15, 0.17, -0.11, 0.042
+19820318, 1.12, -0.05, -0.97, 0.042
+19820319, 0.30, 0.45, -0.35, 0.042
+19820322, 1.88, -0.30, -1.66, 0.042
+19820323, 0.59, 0.01, -0.56, 0.042
+19820324, -0.45, 0.50, 0.19, 0.042
+19820325, 0.31, 0.36, -0.35, 0.042
+19820326, -0.89, 0.58, 0.34, 0.042
+19820329, 0.12, 0.03, -0.23, 0.042
+19820330, 0.01, 0.06, 0.01, 0.042
+19820331, -0.22, 0.20, 0.08, 0.042
+19820401, 1.37, -0.37, -1.02, 0.053
+19820402, 1.06, -0.31, -1.14, 0.053
+19820405, -0.31, 0.40, -0.15, 0.053
+19820406, 0.48, -0.24, -0.11, 0.053
+19820407, 0.15, 0.30, -0.24, 0.053
+19820408, 0.59, -0.05, -0.33, 0.053
+19820412, -0.22, 0.17, 0.17, 0.053
+19820413, -0.04, 0.13, 0.23, 0.053
+19820414, -0.17, -0.03, 0.25, 0.053
+19820415, 0.39, 0.01, -0.50, 0.053
+19820416, 0.45, 0.01, -0.31, 0.053
+19820419, -0.09, 0.19, 0.52, 0.053
+19820420, -0.94, 0.57, 0.68, 0.053
+19820421, 0.22, 0.00, 0.22, 0.053
+19820422, 1.01, -0.44, -0.57, 0.053
+19820423, 1.04, -0.35, -0.79, 0.053
+19820426, 0.42, 0.03, -0.48, 0.053
+19820427, -0.91, 0.43, 0.35, 0.053
+19820428, -0.61, 0.61, -0.05, 0.053
+19820429, -0.90, 0.46, 0.42, 0.053
+19820430, 0.17, -0.02, -0.18, 0.053
+19820503, 0.27, -0.31, 0.05, 0.053
+19820504, 0.59, -0.06, -0.19, 0.053
+19820505, 0.12, -0.24, 0.12, 0.053
+19820506, 0.83, -0.13, -0.13, 0.053
+19820507, 0.69, -0.30, -0.19, 0.053
+19820510, -0.75, 0.36, 0.11, 0.053
+19820511, 0.79, -0.32, -0.46, 0.053
+19820512, -0.31, 0.17, 0.24, 0.053
+19820513, -0.62, 0.52, 0.03, 0.053
+19820514, -0.13, 0.23, -0.06, 0.053
+19820517, -1.07, 0.32, 0.45, 0.053
+19820518, -0.82, 0.02, 0.32, 0.053
+19820519, -0.76, 0.15, 0.40, 0.053
+19820520, -0.44, -0.33, 0.32, 0.053
+19820521, 0.16, -0.37, 0.19, 0.053
+19820524, -0.08, -0.38, -0.18, 0.053
+19820525, -0.30, 0.12, 0.19, 0.053
+19820526, -1.26, -0.02, 0.60, 0.053
+19820527, -0.47, -0.01, -0.01, 0.053
+19820528, -0.38, 0.77, 0.01, 0.053
+19820601, -0.39, -0.24, -0.16, 0.043
+19820602, 0.31, -0.02, -0.05, 0.043
+19820603, -0.22, -0.01, 0.36, 0.043
+19820604, -1.52, 0.39, 0.81, 0.043
+19820607, -0.14, -0.48, 0.05, 0.043
+19820608, -0.44, -0.02, 0.23, 0.043
+19820609, -0.69, -0.25, 0.25, 0.043
+19820610, 0.37, -0.16, -0.31, 0.043
+19820611, 1.52, -0.21, -0.43, 0.043
+19820614, -1.14, 0.39, 0.72, 0.043
+19820615, -0.37, -0.09, 0.26, 0.043
+19820616, -0.56, 0.55, 0.30, 0.043
+19820617, -1.05, 0.13, 0.71, 0.043
+19820618, -0.55, -0.14, 0.19, 0.043
+19820621, -0.07, 0.15, -0.17, 0.043
+19820622, 0.76, -0.41, -0.73, 0.043
+19820623, 1.52, -0.51, -1.19, 0.043
+19820624, -0.19, 0.42, 0.21, 0.043
+19820625, -0.58, 0.32, 0.04, 0.043
+19820628, 0.74, -0.48, -0.61, 0.043
+19820629, 0.01, -0.28, 0.61, 0.043
+19820630, -0.39, 0.67, 0.69, 0.043
+19820701, -0.79, 0.35, 0.54, 0.050
+19820702, -0.75, 0.55, 0.45, 0.050
+19820706, -0.43, 0.03, 0.16, 0.050
+19820707, -0.21, -0.08, 0.13, 0.050
+19820708, 0.03, -0.74, -0.12, 0.050
+19820709, 1.08, -0.14, -0.38, 0.050
+19820712, 0.67, -0.09, 0.15, 0.050
+19820713, -0.12, 0.21, -0.31, 0.050
+19820714, 0.60, -0.76, -0.59, 0.050
+19820715, 0.04, 0.15, -0.14, 0.050
+19820716, 0.43, -0.32, -0.49, 0.050
+19820719, -0.25, 0.29, 0.24, 0.050
+19820720, 0.53, -0.25, -0.06, 0.050
+19820721, 0.00, 0.35, -0.22, 0.050
+19820722, 0.03, 0.26, -0.02, 0.050
+19820723, -0.33, 0.38, 0.17, 0.050
+19820726, -0.70, 0.23, 0.03, 0.050
+19820727, -0.80, 0.48, 0.07, 0.050
+19820728, -1.55, 0.14, 0.61, 0.050
+19820729, -0.16, -0.48, -0.24, 0.050
+19820730, -0.45, 0.35, 0.15, 0.050
+19820802, 1.56, -0.99, -0.01, 0.035
+19820803, -0.83, 0.69, 0.46, 0.035
+19820804, -1.46, 0.54, 0.86, 0.035
+19820805, -0.81, -0.05, 0.64, 0.035
+19820806, -1.20, 0.37, 0.91, 0.035
+19820809, -0.79, -0.90, 0.44, 0.035
+19820810, -0.17, 0.00, 0.21, 0.035
+19820811, -0.33, -0.19, 0.63, 0.035
+19820812, -0.30, -0.25, 0.64, 0.035
+19820813, 1.09, -1.36, 0.75, 0.035
+19820816, 0.41, 0.30, 0.48, 0.035
+19820817, 4.09, -2.41, 0.15, 0.035
+19820818, 0.12, 1.55, -0.40, 0.035
+19820819, 0.21, -0.46, 0.16, 0.035
+19820820, 3.08, -1.70, -0.44, 0.035
+19820823, 2.59, -1.01, -0.68, 0.035
+19820824, -0.25, 1.25, -0.62, 0.035
+19820825, 2.00, -0.26, -0.94, 0.035
+19820826, 1.07, 0.69, -1.13, 0.035
+19820827, -1.07, 0.96, -0.46, 0.035
+19820830, 0.36, -0.33, -0.41, 0.035
+19820831, 1.43, -0.41, -0.24, 0.035
+19820901, -0.88, 0.60, 0.53, 0.024
+19820902, 1.56, -0.35, -0.70, 0.024
+19820903, 1.80, -0.94, -0.60, 0.024
+19820907, -0.96, 0.69, 0.38, 0.024
+19820908, 0.67, 0.01, -0.36, 0.024
+19820909, 0.01, 0.64, 0.03, 0.024
+19820910, -0.73, 0.48, 0.29, 0.024
+19820913, 0.81, -0.77, -0.23, 0.024
+19820914, 0.81, 0.00, -0.28, 0.024
+19820915, 0.80, -0.21, -0.22, 0.024
+19820916, -0.15, 0.56, -0.21, 0.024
+19820917, -0.93, 0.62, 0.12, 0.024
+19820920, -0.11, -0.30, 0.13, 0.024
+19820921, 1.68, -0.74, -0.35, 0.024
+19820922, -0.46, 0.72, 0.47, 0.024
+19820923, -0.19, -0.08, -0.02, 0.024
+19820924, -0.28, 0.52, -0.19, 0.024
+19820927, 0.18, -0.23, 0.09, 0.024
+19820928, -0.20, 0.43, 0.15, 0.024
+19820929, -1.23, 0.51, 0.65, 0.024
+19820930, -0.85, 0.56, 0.52, 0.024
+19821001, 1.10, -0.66, 0.01, 0.028
+19821004, -0.29, 0.02, -0.02, 0.028
+19821005, 0.42, 0.10, -0.23, 0.028
+19821006, 2.92, -1.35, -0.97, 0.028
+19821007, 2.05, -0.46, -0.38, 0.028
+19821008, 1.74, -0.49, 0.26, 0.028
+19821011, 2.24, -0.53, 0.11, 0.028
+19821012, -0.10, 0.25, -0.12, 0.028
+19821013, 1.80, 0.23, -1.09, 0.028
+19821014, -1.28, 1.41, 0.23, 0.028
+19821015, -0.60, 0.66, 0.10, 0.028
+19821018, 2.03, -0.87, -0.65, 0.028
+19821019, -0.01, 0.21, 0.30, 0.028
+19821020, 1.87, -0.56, -0.55, 0.028
+19821021, 0.00, 0.72, -0.77, 0.028
+19821022, 0.04, 1.19, -0.18, 0.028
+19821025, -3.62, 1.47, 0.56, 0.028
+19821026, 0.55, -1.39, -0.11, 0.028
+19821027, 0.77, 0.83, -0.30, 0.028
+19821028, -1.02, 1.15, 0.30, 0.028
+19821029, 0.26, 0.08, 0.20, 0.028
+19821101, 1.15, -0.51, -0.32, 0.030
+19821102, 1.53, 0.12, -0.03, 0.030
+19821103, 3.56, -1.15, -0.55, 0.030
+19821104, -0.36, 1.04, -0.06, 0.030
+19821105, 0.48, 0.53, -0.04, 0.030
+19821108, -0.96, 1.04, -0.04, 0.030
+19821109, 1.64, 0.07, -0.47, 0.030
+19821110, -1.05, 1.06, -0.04, 0.030
+19821111, 0.44, -0.02, -0.26, 0.030
+19821112, -0.98, 1.50, 0.39, 0.030
+19821115, -1.75, 0.37, 0.83, 0.030
+19821116, -1.38, -0.49, 0.74, 0.030
+19821117, 1.67, -0.49, -0.47, 0.030
+19821118, 0.44, 0.38, -0.35, 0.030
+19821119, -0.67, 0.88, 0.04, 0.030
+19821122, -1.96, 0.70, 0.79, 0.030
+19821123, -0.80, 0.43, 0.01, 0.030
+19821124, 0.72, -0.14, -0.24, 0.030
+19821126, 0.71, 0.08, -0.55, 0.030
+19821129, -0.48, 0.30, -0.01, 0.030
+19821130, 2.81, -1.33, -1.33, 0.030
+19821201, 0.34, 0.94, -0.62, 0.031
+19821202, 0.01, 0.08, 0.01, 0.031
+19821203, -0.08, 0.14, 0.01, 0.031
+19821206, 1.80, -1.06, -0.97, 0.031
+19821207, 0.60, 0.22, -0.50, 0.031
+19821208, -0.44, 0.86, -0.05, 0.031
+19821209, -1.18, 0.20, 0.56, 0.031
+19821210, -0.59, -0.60, 0.37, 0.031
+19821213, 0.16, -0.59, 0.37, 0.031
+19821214, -1.58, 0.48, 1.44, 0.031
+19821215, -1.69, -0.50, 0.83, 0.031
+19821216, -0.14, -0.24, -0.31, 0.031
+19821217, 1.45, -0.17, -1.10, 0.031
+19821220, -0.81, 0.44, 0.22, 0.031
+19821221, 1.36, -0.98, -0.27, 0.031
+19821222, 0.24, 0.45, -0.36, 0.031
+19821223, 0.58, -0.13, 0.02, 0.031
+19821227, 1.43, -1.04, 0.12, 0.031
+19821228, -0.80, 0.54, 0.45, 0.031
+19821229, 0.30, -0.24, -0.12, 0.031
+19821230, -0.58, 0.47, 0.16, 0.031
+19821231, 0.31, 0.43, -0.39, 0.031
+19830103, -1.45, 0.76, 1.02, 0.033
+19830104, 1.67, -1.30, -0.18, 0.033
+19830105, 0.50, 0.25, 0.19, 0.033
+19830106, 2.28, -0.48, -0.50, 0.033
+19830107, 0.08, 0.66, 0.08, 0.033
+19830110, 1.12, 0.06, -0.53, 0.033
+19830111, -0.55, 0.62, 0.20, 0.033
+19830112, 0.62, 0.10, -0.07, 0.033
+19830113, -0.49, 0.40, 0.04, 0.033
+19830114, 0.61, 0.44, -0.12, 0.033
+19830117, 0.19, 0.48, -0.39, 0.033
+19830118, -0.14, 0.13, -0.16, 0.033
+19830119, -0.75, 0.09, 0.03, 0.033
+19830120, 0.47, -0.44, 0.07, 0.033
+19830121, -1.52, 0.54, 0.52, 0.033
+19830124, -2.75, -0.26, 0.86, 0.033
+19830125, 1.14, -0.36, -0.19, 0.033
+19830126, 0.05, 0.83, -0.47, 0.033
+19830127, 1.76, -0.44, -0.69, 0.033
+19830128, 0.22, 0.52, -0.23, 0.033
+19830131, 0.57, -0.07, -0.27, 0.033
+19830201, -1.15, 1.02, 0.64, 0.032
+19830202, 0.01, -0.05, 0.40, 0.032
+19830203, 0.72, -0.15, 0.27, 0.032
+19830204, 1.27, -0.24, -0.62, 0.032
+19830207, 0.51, 0.04, 0.33, 0.032
+19830208, -0.71, 0.60, 0.30, 0.032
+19830209, -0.36, 0.66, -0.09, 0.032
+19830210, 1.50, -0.35, -0.53, 0.032
+19830211, 0.15, 0.35, -0.40, 0.032
+19830214, 0.87, -0.14, -0.88, 0.032
+19830215, -0.20, 0.54, -0.40, 0.032
+19830216, -0.52, 0.52, 0.32, 0.032
+19830217, -0.06, -0.06, 0.08, 0.032
+19830218, 0.42, 0.30, -0.03, 0.032
+19830222, -1.33, 0.52, 0.68, 0.032
+19830223, 0.76, -0.52, -0.07, 0.032
+19830224, 1.64, -0.80, -0.44, 0.032
+19830225, 0.09, -0.06, 0.51, 0.032
+19830228, -0.99, 0.77, 0.44, 0.032
+19830301, 1.54, -1.17, 0.52, 0.027
+19830302, 0.86, -0.16, -0.13, 0.027
+19830303, 0.74, 0.11, 0.18, 0.027
+19830304, 0.18, 0.16, 0.39, 0.027
+19830307, 0.01, 0.36, 0.18, 0.027
+19830308, -1.35, 0.73, 0.72, 0.027
+19830309, 0.89, -0.23, -0.40, 0.027
+19830310, -0.50, 0.90, 0.12, 0.027
+19830311, -0.34, 0.16, 0.16, 0.027
+19830314, -0.43, -0.15, 0.37, 0.027
+19830315, 0.20, -0.43, 0.22, 0.027
+19830316, -0.76, 0.83, 0.48, 0.027
+19830317, -0.21, -0.14, 0.23, 0.027
+19830318, 0.21, 0.22, -0.23, 0.027
+19830321, 0.68, -0.34, -0.10, 0.027
+19830322, -0.20, 0.61, -0.06, 0.027
+19830323, 1.23, -0.43, -0.24, 0.027
+19830324, 0.39, 0.24, 0.10, 0.027
+19830325, -0.28, 0.45, -0.19, 0.027
+19830328, -0.58, 0.09, 0.11, 0.027
+19830329, -0.17, 0.04, -0.15, 0.027
+19830330, 0.96, -0.50, -0.34, 0.027
+19830331, -0.21, 0.32, 0.07, 0.027
+19830404, -0.07, -0.49, 0.31, 0.036
+19830405, -0.59, 0.69, 0.14, 0.036
+19830406, -0.67, -0.20, 0.68, 0.036
+19830407, 0.33, -0.23, 0.30, 0.036
+19830408, 0.58, -0.13, 0.07, 0.036
+19830411, 1.28, -0.41, -0.44, 0.036
+19830412, 0.44, 0.16, -0.14, 0.036
+19830413, 0.70, 0.28, -0.19, 0.036
+19830414, 0.83, 0.29, -0.24, 0.036
+19830415, 0.50, 0.17, -0.05, 0.036
+19830418, 0.60, -0.03, -0.02, 0.036
+19830419, -0.62, 0.41, 0.04, 0.036
+19830420, 1.12, -0.20, -0.21, 0.036
+19830421, -0.24, 0.56, 0.20, 0.036
+19830422, 0.22, 0.28, 0.01, 0.036
+19830425, -0.93, 0.27, 0.40, 0.036
+19830426, 1.48, -0.96, -0.02, 0.036
+19830427, -0.11, 0.24, -0.02, 0.036
+19830428, 0.87, -0.23, -0.05, 0.036
+19830429, 0.75, 0.01, -0.28, 0.036
+19830502, -1.25, 0.68, 0.29, 0.033
+19830503, 0.01, -0.18, 0.12, 0.033
+19830504, 0.83, 0.23, -0.13, 0.033
+19830505, 0.83, 0.53, -0.22, 0.033
+19830506, 1.15, 0.30, -0.28, 0.033
+19830509, 0.01, 0.57, -0.15, 0.033
+19830510, 0.22, 0.67, 0.07, 0.033
+19830511, -0.57, 0.19, 0.37, 0.033
+19830512, -0.36, 0.26, -0.07, 0.033
+19830513, 0.44, 0.45, -0.22, 0.033
+19830516, -0.98, -0.32, 0.07, 0.033
+19830517, 0.34, 0.29, -0.07, 0.033
+19830518, 0.01, 0.74, -0.40, 0.033
+19830519, -0.67, 0.19, -0.10, 0.033
+19830520, -0.02, 0.00, -0.13, 0.033
+19830523, 0.69, -0.73, -0.36, 0.033
+19830524, 1.24, 0.10, -0.21, 0.033
+19830525, 0.49, 0.30, -0.10, 0.033
+19830526, -0.22, 0.63, -0.05, 0.033
+19830527, -0.40, 0.75, 0.02, 0.033
+19830531, -1.20, 0.32, 0.27, 0.033
+19830601, 0.01, -0.25, -0.27, 0.030
+19830602, 0.78, 0.01, -0.44, 0.030
+19830603, 0.41, 0.57, -0.52, 0.030
+19830606, 0.32, 0.14, -0.38, 0.030
+19830607, -0.94, 0.87, -0.03, 0.030
+19830608, -0.84, 0.06, -0.19, 0.030
+19830609, 0.23, 0.01, -0.02, 0.030
+19830610, 0.65, 0.36, -0.04, 0.030
+19830613, 1.16, -0.22, -0.13, 0.030
+19830614, 0.41, 0.22, -0.17, 0.030
+19830615, 0.87, -0.10, -0.41, 0.030
+19830616, 1.05, -0.12, -0.41, 0.030
+19830617, -0.03, 0.04, -0.12, 0.030
+19830620, -0.13, 0.02, -0.04, 0.030
+19830621, 0.69, -0.36, -0.38, 0.030
+19830622, 0.24, 0.16, -0.23, 0.030
+19830623, -0.22, 0.08, -0.40, 0.030
+19830624, 0.16, 0.27, -0.31, 0.030
+19830627, -1.17, -0.16, 0.48, 0.030
+19830628, -1.85, -0.49, 0.81, 0.030
+19830629, 0.42, -0.44, -0.39, 0.030
+19830630, 0.83, 0.19, -0.20, 0.030
+19830701, 0.56, 0.24, -0.13, 0.037
+19830705, -1.34, 0.39, 0.82, 0.037
+19830706, 0.94, -0.16, 0.17, 0.037
+19830707, -0.43, 0.63, -0.08, 0.037
+19830708, -0.24, 0.06, 0.14, 0.037
+19830711, 0.45, -0.22, 0.05, 0.037
+19830712, -1.42, 0.43, 0.57, 0.037
+19830713, -0.25, -0.35, 0.76, 0.037
+19830714, 0.28, 0.01, 0.07, 0.037
+19830715, -1.01, 0.40, 0.51, 0.037
+19830718, -0.44, -0.46, 0.43, 0.037
+19830719, 0.45, -0.18, -0.02, 0.037
+19830720, 2.35, -1.11, -0.71, 0.037
+19830721, 0.08, 0.56, -0.55, 0.037
+19830722, -0.03, 0.50, -0.14, 0.037
+19830725, 0.30, -0.21, 0.10, 0.037
+19830726, 0.32, 0.12, 0.42, 0.037
+19830727, -1.57, 0.33, 1.49, 0.037
+19830728, -1.61, 0.53, 1.27, 0.037
+19830729, -1.45, -0.08, 0.50, 0.037
+19830801, -0.52, -0.72, 0.26, 0.033
+19830802, -0.05, -0.25, 0.03, 0.033
+19830803, 0.51, -0.83, 0.58, 0.033
+19830804, -1.20, 0.09, 0.57, 0.033
+19830805, 0.26, -0.04, -0.08, 0.033
+19830808, -1.54, 0.08, 0.88, 0.033
+19830809, 0.31, -1.03, 0.45, 0.033
+19830810, 0.79, -0.25, -0.15, 0.033
+19830811, 0.10, 0.24, -0.24, 0.033
+19830812, 0.55, -0.02, 0.02, 0.033
+19830815, 0.83, -0.19, -0.38, 0.033
+19830816, -0.35, -0.13, 0.71, 0.033
+19830817, 0.91, -0.59, 0.71, 0.033
+19830818, -0.78, 0.78, 0.25, 0.033
+19830819, 0.12, -0.22, 0.29, 0.033
+19830822, 0.04, -0.10, 0.69, 0.033
+19830823, -1.01, 0.29, 0.98, 0.033
+19830824, -0.91, 0.14, 0.56, 0.033
+19830825, -0.32, -0.21, 0.27, 0.033
+19830826, 0.65, -0.59, -0.27, 0.033
+19830829, -0.05, -0.40, -0.07, 0.033
+19830830, 0.19, 0.03, -0.02, 0.033
+19830831, 1.01, -0.43, -0.51, 0.033
+19830901, -0.01, 0.34, -0.17, 0.036
+19830902, 0.60, 0.02, -0.55, 0.036
+19830906, 1.48, -0.52, -0.31, 0.036
+19830907, 0.05, 0.19, 0.42, 0.036
+19830908, -0.01, 0.36, -0.05, 0.036
+19830909, -0.16, 0.40, 0.44, 0.036
+19830912, -0.85, 0.67, 0.34, 0.036
+19830913, -0.58, -0.13, 0.45, 0.036
+19830914, 0.24, -0.21, 0.02, 0.036
+19830915, -0.45, 0.25, 0.35, 0.036
+19830916, 0.85, -0.65, -0.41, 0.036
+19830919, 1.00, -0.02, -0.36, 0.036
+19830920, 0.72, -0.50, -0.03, 0.036
+19830921, -0.39, 0.26, 0.18, 0.036
+19830922, 0.71, -0.45, -0.30, 0.036
+19830923, -0.15, 0.03, 0.18, 0.036
+19830926, 0.14, -0.01, -0.19, 0.036
+19830927, -0.89, 0.09, 0.35, 0.036
+19830928, -0.27, -0.08, 0.05, 0.036
+19830929, -0.40, 0.27, 0.41, 0.036
+19830930, -0.68, 0.21, 0.19, 0.036
+19831003, -0.29, -0.40, 0.22, 0.036
+19831004, 0.26, -0.29, -0.17, 0.036
+19831005, 0.67, -0.52, -0.21, 0.036
+19831006, 1.26, -0.95, -0.35, 0.036
+19831007, 0.28, 0.03, -0.60, 0.036
+19831010, 0.72, -0.71, 0.37, 0.036
+19831011, -1.16, 0.81, 0.30, 0.036
+19831012, -0.62, -0.15, 0.83, 0.036
+19831013, -0.06, -0.39, 0.37, 0.036
+19831014, 0.01, -0.07, 0.31, 0.036
+19831017, 0.10, -0.21, 0.33, 0.036
+19831018, -1.58, 0.24, 1.67, 0.036
+19831019, -0.83, -0.46, 0.35, 0.036
+19831020, 0.18, -0.02, 0.04, 0.036
+19831021, -0.71, 0.24, 0.45, 0.036
+19831024, -0.15, -0.80, 0.22, 0.036
+19831025, 0.26, -0.15, -0.10, 0.036
+19831026, -0.56, 0.28, -0.03, 0.036
+19831027, -0.33, -0.09, 0.17, 0.036
+19831028, -0.79, 0.25, 0.37, 0.036
+19831031, -0.10, -0.43, 0.71, 0.036
+19831101, -0.03, -0.55, 0.06, 0.033
+19831102, 0.77, -0.31, -0.33, 0.033
+19831103, -0.60, 0.68, 0.04, 0.033
+19831104, -0.58, 0.20, 0.41, 0.033
+19831107, -0.40, -0.10, 0.31, 0.033
+19831108, -0.23, -0.16, 0.10, 0.033
+19831109, 1.06, -0.82, -0.07, 0.033
+19831110, 0.34, 0.25, -0.53, 0.033
+19831111, 1.20, -0.12, -0.88, 0.033
+19831114, 0.38, 0.44, -0.92, 0.033
+19831115, -0.55, 0.71, -0.09, 0.033
+19831116, 0.39, -0.16, 0.14, 0.033
+19831117, 0.06, 0.36, 0.08, 0.033
+19831118, -0.39, 0.62, -0.28, 0.033
+19831121, 0.51, -0.16, -0.14, 0.033
+19831122, 0.39, -0.09, 0.75, 0.033
+19831123, 0.02, 0.17, 0.52, 0.033
+19831125, 0.20, 0.07, 0.17, 0.033
+19831128, -0.36, 0.21, 0.20, 0.033
+19831129, 0.69, -0.13, -0.19, 0.033
+19831130, -0.69, 0.84, 0.03, 0.033
+19831201, 0.03, -0.01, 0.26, 0.034
+19831202, -0.65, 0.28, 0.42, 0.034
+19831205, 0.00, -0.27, 0.36, 0.034
+19831206, -0.21, 0.16, -0.09, 0.034
+19831207, 0.21, -0.11, -0.14, 0.034
+19831208, -0.48, 0.04, 0.50, 0.034
+19831209, 0.00, 0.02, 0.08, 0.034
+19831212, 0.12, -0.30, 0.06, 0.034
+19831213, -0.39, 0.18, 0.28, 0.034
+19831214, -0.97, 0.35, 0.45, 0.034
+19831215, -0.86, 0.48, 0.20, 0.034
+19831216, 0.30, -0.35, -0.41, 0.034
+19831219, -0.05, -0.21, -0.09, 0.034
+19831220, -0.25, -0.07, 0.10, 0.034
+19831221, 0.72, -0.57, -0.18, 0.034
+19831222, -0.19, 0.36, -0.25, 0.034
+19831223, -0.03, 0.04, -0.08, 0.034
+19831227, 0.64, -0.63, 0.03, 0.034
+19831228, 0.21, -0.50, 0.67, 0.034
+19831229, -0.16, 0.31, -0.21, 0.034
+19831230, 0.20, 0.48, -0.27, 0.034
+19840103, -0.47, 0.49, 0.10, 0.036
+19840104, 1.46, -0.67, -0.06, 0.036
+19840105, 1.26, -0.13, -0.38, 0.036
+19840106, 0.42, 0.41, 0.06, 0.036
+19840109, -0.22, 0.29, 0.47, 0.036
+19840110, -0.39, 0.47, 0.32, 0.036
+19840111, -0.11, 0.08, 0.23, 0.036
+19840112, -0.06, 0.27, 0.52, 0.036
+19840113, -0.37, 0.20, 0.48, 0.036
+19840116, -0.02, -0.02, -0.15, 0.036
+19840117, 0.29, -0.16, -0.01, 0.036
+19840118, -0.17, 0.25, 0.19, 0.036
+19840119, -0.34, 0.17, 0.34, 0.036
+19840120, -0.62, 0.12, 0.49, 0.036
+19840123, -0.93, -0.25, 1.06, 0.036
+19840124, 0.33, -0.65, 0.64, 0.036
+19840125, -0.60, 0.33, 0.66, 0.036
+19840126, -0.47, 0.02, 0.54, 0.036
+19840127, -0.23, -0.45, 0.72, 0.036
+19840130, -0.85, -0.44, 1.18, 0.036
+19840131, 0.11, -0.70, 0.18, 0.036
+19840201, -0.49, -0.11, 0.28, 0.036
+19840202, 0.30, -0.41, -0.17, 0.036
+19840203, -1.34, 0.68, 0.71, 0.036
+19840206, -1.67, -0.09, 1.07, 0.036
+19840207, 0.11, -1.03, -0.15, 0.036
+19840208, -1.73, 0.63, 0.82, 0.036
+19840209, -0.51, -0.77, 0.07, 0.036
+19840210, 0.51, -0.07, -0.69, 0.036
+19840213, -0.97, -0.25, 0.40, 0.036
+19840214, 0.94, -0.47, -0.32, 0.036
+19840215, -0.15, 0.29, 0.01, 0.036
+19840216, -0.21, -0.11, 0.26, 0.036
+19840217, -0.28, 0.19, 0.28, 0.036
+19840221, -0.76, 0.10, 0.31, 0.036
+19840222, -0.30, 0.05, 0.41, 0.036
+19840223, -0.23, -0.62, 0.37, 0.036
+19840224, 1.98, -0.69, -1.21, 0.036
+19840227, 1.17, -0.20, 0.19, 0.036
+19840228, -1.39, 0.86, 0.89, 0.036
+19840229, 0.21, 0.18, 0.03, 0.036
+19840301, 0.66, -0.27, 0.00, 0.033
+19840302, 0.67, 0.08, -0.23, 0.033
+19840305, -0.78, 0.38, 0.41, 0.033
+19840306, -1.00, 0.84, 0.07, 0.033
+19840307, -1.10, 0.11, 0.67, 0.033
+19840308, 0.31, -0.17, 0.17, 0.033
+19840309, -0.47, 0.22, 0.14, 0.033
+19840312, 0.99, -0.92, -0.51, 0.033
+19840313, 0.39, 0.36, -0.75, 0.033
+19840314, -0.06, 0.04, -0.30, 0.033
+19840315, 0.42, -0.01, -0.41, 0.033
+19840316, 1.04, -0.40, -0.16, 0.033
+19840319, -0.93, 0.19, 0.47, 0.033
+19840320, 0.53, -0.33, 0.10, 0.033
+19840321, -0.13, 0.43, 0.11, 0.033
+19840322, -1.03, 0.66, 0.34, 0.033
+19840323, -0.10, -0.16, 0.24, 0.033
+19840326, -0.08, -0.38, 0.51, 0.033
+19840327, 0.25, -0.42, 0.00, 0.033
+19840328, 1.37, -0.92, -0.45, 0.033
+19840329, -0.12, 0.39, 0.03, 0.033
+19840330, -0.15, 0.29, 0.00, 0.033
+19840402, -0.68, 0.34, 0.38, 0.041
+19840403, -0.34, 0.03, 0.44, 0.041
+19840404, -0.08, -0.21, 0.28, 0.041
+19840405, -1.53, 0.67, 0.51, 0.041
+19840406, -0.01, -0.77, 0.31, 0.041
+19840409, -0.07, -0.33, 0.20, 0.041
+19840410, 0.19, -0.22, 0.21, 0.041
+19840411, -0.59, 0.14, 0.55, 0.041
+19840412, 1.35, -1.19, -0.34, 0.041
+19840413, -0.07, 0.65, -0.50, 0.041
+19840416, 0.46, -0.57, -0.13, 0.041
+19840417, 0.45, 0.16, -0.15, 0.041
+19840418, -0.58, 0.56, -0.11, 0.041
+19840419, -0.01, -0.02, -0.05, 0.041
+19840423, -0.70, 0.24, 0.10, 0.041
+19840424, 0.53, -0.49, 0.01, 0.041
+19840425, 0.28, -0.07, -0.42, 0.041
+19840426, 0.97, -0.40, -0.13, 0.041
+19840427, -0.10, 0.30, 0.06, 0.041
+19840430, 0.06, -0.03, 0.03, 0.041
+19840501, 1.01, -0.43, -0.36, 0.035
+19840502, 0.37, 0.51, -0.64, 0.035
+19840503, -0.28, 0.63, -0.13, 0.035
+19840504, -1.03, 0.54, 0.67, 0.035
+19840507, 0.13, -0.11, -0.22, 0.035
+19840508, 0.63, -0.52, -0.02, 0.035
+19840509, -0.21, -0.01, 0.12, 0.035
+19840510, -0.11, 0.27, -0.06, 0.035
+19840511, -0.87, 0.12, 0.27, 0.035
+19840514, -0.64, 0.11, -0.07, 0.035
+19840515, 0.23, -0.46, 0.06, 0.035
+19840516, -0.08, 0.03, -0.06, 0.035
+19840517, -1.00, 0.22, 0.39, 0.035
+19840518, -0.62, 0.02, 0.45, 0.035
+19840521, -0.62, -0.04, 0.26, 0.035
+19840522, -0.71, -0.18, 0.03, 0.035
+19840523, -0.45, -0.04, 0.11, 0.035
+19840524, -1.38, -0.19, -0.02, 0.035
+19840525, 0.20, -0.43, 0.24, 0.035
+19840529, -0.86, 0.11, 0.44, 0.035
+19840530, -0.05, -0.25, -0.48, 0.035
+19840531, 0.27, 0.15, -0.79, 0.035
+19840601, 1.65, -0.58, -0.56, 0.036
+19840604, 0.84, 0.16, -0.79, 0.036
+19840605, -0.37, 0.33, -0.28, 0.036
+19840606, 0.65, -0.36, -0.16, 0.036
+19840607, 0.00, 0.31, -0.02, 0.036
+19840608, 0.13, 0.03, 0.01, 0.036
+19840611, -1.18, 0.54, 0.58, 0.036
+19840612, -0.47, 0.00, 0.21, 0.036
+19840613, -0.06, 0.14, -0.38, 0.036
+19840614, -1.02, 0.54, 0.11, 0.036
+19840615, -0.60, 0.22, -0.13, 0.036
+19840618, 1.38, -1.34, -0.23, 0.036
+19840619, 0.53, -0.17, -0.43, 0.036
+19840620, 1.07, -1.36, -0.24, 0.036
+19840621, -0.05, 0.43, -0.63, 0.036
+19840622, 0.06, 0.29, -0.36, 0.036
+19840625, -0.17, 0.20, -0.07, 0.036
+19840626, -0.77, 0.35, 0.16, 0.036
+19840627, -0.69, 0.11, 0.61, 0.036
+19840628, 0.64, -0.39, -0.17, 0.036
+19840629, 0.26, 0.14, 0.22, 0.036
+19840702, -0.16, -0.24, 0.36, 0.039
+19840703, 0.32, -0.10, -0.13, 0.039
+19840705, -0.52, 0.33, 0.23, 0.039
+19840706, -0.37, -0.01, 0.35, 0.039
+19840709, 0.53, -0.89, -0.04, 0.039
+19840710, -0.29, 0.41, -0.09, 0.039
+19840711, -1.34, 0.84, 0.30, 0.039
+19840712, -0.41, -0.08, 0.44, 0.039
+19840713, 0.42, -0.20, 0.37, 0.039
+19840716, 0.19, -0.64, 0.34, 0.039
+19840717, 0.37, -0.23, 0.15, 0.039
+19840718, -0.58, 0.14, 0.53, 0.039
+19840719, -0.70, 0.23, 0.26, 0.039
+19840720, -0.60, -0.06, 0.53, 0.039
+19840723, -0.65, -0.51, 0.41, 0.039
+19840724, -0.70, 0.00, 0.31, 0.039
+19840725, 0.44, -0.82, -0.47, 0.039
+19840726, 0.76, -0.51, -0.99, 0.039
+19840727, 0.79, -0.14, -1.26, 0.039
+19840730, -0.46, 0.26, -0.06, 0.039
+19840731, 0.25, -0.06, -0.99, 0.039
+19840801, 2.02, -0.76, -0.76, 0.036
+19840802, 2.43, -0.35, -1.57, 0.036
+19840803, 2.81, -0.19, -1.98, 0.036
+19840806, 0.38, 0.60, -0.69, 0.036
+19840807, 0.04, -0.19, -0.06, 0.036
+19840808, -0.53, 0.22, 1.12, 0.036
+19840809, 1.99, -1.08, -0.21, 0.036
+19840810, 0.21, 0.47, 0.17, 0.036
+19840813, -0.13, -0.17, 0.16, 0.036
+19840814, -0.52, 0.55, 0.46, 0.036
+19840815, -0.81, 0.50, 0.23, 0.036
+19840816, 0.52, -0.26, -0.01, 0.036
+19840817, 0.08, -0.02, 0.10, 0.036
+19840820, 0.29, -0.54, 0.32, 0.036
+19840821, 1.52, -0.63, -0.25, 0.036
+19840822, -0.32, 0.52, 0.58, 0.036
+19840823, 0.06, 0.09, -0.12, 0.036
+19840824, 0.17, 0.20, 0.03, 0.036
+19840827, -0.56, 0.19, 0.62, 0.036
+19840828, 0.48, -0.28, -0.10, 0.036
+19840829, -0.09, 0.30, 0.12, 0.036
+19840830, -0.29, 0.37, 0.04, 0.036
+19840831, 0.08, 0.14, 0.04, 0.036
+19840904, -0.90, 0.37, 0.43, 0.045
+19840905, -0.38, 0.10, 0.25, 0.045
+19840906, 0.69, -0.35, -0.04, 0.045
+19840907, -0.62, 0.51, 0.30, 0.045
+19840910, -0.12, -0.27, 0.16, 0.045
+19840911, 0.19, 0.19, -0.04, 0.045
+19840912, -0.03, -0.08, 0.53, 0.045
+19840913, 1.56, -1.15, -0.44, 0.045
+19840914, 0.60, 0.14, -0.15, 0.045
+19840917, 0.03, -0.14, 0.14, 0.045
+19840918, -0.60, 0.49, 0.66, 0.045
+19840919, -0.42, 0.27, 0.91, 0.045
+19840920, 0.25, -0.26, 0.40, 0.045
+19840921, -0.82, 1.01, 0.18, 0.045
+19840924, -0.34, -0.16, 0.47, 0.045
+19840925, 0.05, -0.55, 0.45, 0.045
+19840926, 0.26, -0.30, 0.36, 0.045
+19840927, 0.28, -0.12, 0.42, 0.045
+19840928, -0.45, 0.44, 0.33, 0.045
+19841001, -0.84, 0.12, 0.73, 0.043
+19841002, -0.70, 0.25, 0.52, 0.043
+19841003, -0.67, 0.14, 0.14, 0.043
+19841004, 0.16, -0.14, -0.05, 0.043
+19841005, -0.11, 0.32, 0.09, 0.043
+19841008, -0.40, 0.07, 0.25, 0.043
+19841009, -0.23, -0.02, 0.22, 0.043
+19841010, 0.14, -0.43, -0.13, 0.043
+19841011, 0.41, -0.04, 0.09, 0.043
+19841012, 0.79, -0.35, -0.15, 0.043
+19841015, 0.78, -0.53, -0.30, 0.043
+19841016, -0.42, 0.48, -0.14, 0.043
+19841017, -0.30, 0.34, -0.57, 0.043
+19841018, 1.93, -1.35, -0.98, 0.043
+19841019, 0.10, 0.46, -0.41, 0.043
+19841022, -0.37, 0.23, -0.17, 0.043
+19841023, -0.16, 0.07, 0.04, 0.043
+19841024, -0.01, -0.20, 0.12, 0.043
+19841025, -0.57, 0.13, 0.75, 0.043
+19841026, -0.66, 0.09, 0.56, 0.043
+19841029, -0.34, -0.10, -0.06, 0.043
+19841030, 1.01, -0.86, -0.09, 0.043
+19841031, -0.34, 0.17, 0.15, 0.043
+19841101, 0.68, -0.46, 0.25, 0.035
+19841102, 0.09, 0.13, 0.26, 0.035
+19841105, 0.63, -0.38, 0.32, 0.035
+19841106, 0.94, -0.44, -0.10, 0.035
+19841107, -0.67, 0.31, 0.42, 0.035
+19841108, -0.21, 0.09, -0.01, 0.035
+19841109, -0.45, 0.66, 0.26, 0.035
+19841112, -0.21, -0.05, -0.04, 0.035
+19841113, -0.76, 0.36, 0.25, 0.035
+19841114, -0.10, -0.19, 0.07, 0.035
+19841115, -0.13, -0.30, 0.36, 0.035
+19841116, -0.89, 0.42, 0.22, 0.035
+19841119, -0.73, -0.15, 0.29, 0.035
+19841120, 0.43, -0.61, 0.16, 0.035
+19841121, 0.20, -0.20, 0.29, 0.035
+19841123, 1.27, -0.55, -0.51, 0.035
+19841126, -0.62, 0.51, -0.01, 0.035
+19841127, 0.45, -0.49, 0.08, 0.035
+19841128, -0.70, 0.45, 0.45, 0.035
+19841129, -0.67, 0.23, 0.62, 0.035
+19841130, -0.27, -0.12, 0.35, 0.035
+19841203, -0.48, -0.02, 0.35, 0.032
+19841204, 0.18, -0.28, 0.09, 0.032
+19841205, -0.72, -0.09, 0.79, 0.032
+19841206, 0.25, -0.34, -0.23, 0.032
+19841207, -0.21, 0.13, 0.20, 0.032
+19841210, 0.24, -0.32, 0.01, 0.032
+19841211, 0.17, -0.08, -0.24, 0.032
+19841212, -0.22, 0.24, -0.13, 0.032
+19841213, -0.41, 0.33, 0.00, 0.032
+19841214, 0.47, -0.26, -0.27, 0.032
+19841217, 0.46, -0.62, 0.21, 0.032
+19841218, 2.40, -1.06, -1.16, 0.032
+19841219, -0.26, 0.89, -0.58, 0.032
+19841220, -0.43, 0.34, 0.57, 0.032
+19841221, -0.37, 0.19, 0.20, 0.032
+19841224, 0.67, -0.01, -0.07, 0.032
+19841226, -0.14, 0.14, 0.03, 0.032
+19841227, -0.44, 0.25, 0.30, 0.032
+19841228, 0.23, -0.09, -0.03, 0.032
+19841231, 0.46, 0.18, -0.03, 0.032
+19850102, -0.93, 0.78, 0.25, 0.029
+19850103, -0.33, 0.41, -0.03, 0.029
+19850104, -0.42, 0.35, -0.17, 0.029
+19850107, 0.25, -0.17, 0.14, 0.029
+19850108, -0.05, 0.19, 0.15, 0.029
+19850109, 0.63, -0.11, -0.17, 0.029
+19850110, 1.68, -0.70, -0.70, 0.029
+19850111, -0.05, 0.45, -0.31, 0.029
+19850114, 1.41, -0.32, -0.90, 0.029
+19850115, 0.27, 0.47, -0.19, 0.029
+19850116, 0.40, 0.39, -0.07, 0.029
+19850117, -0.12, 0.62, -0.18, 0.029
+19850118, 0.31, 0.25, 0.02, 0.029
+19850121, 1.96, -0.91, -0.92, 0.029
+19850122, 0.18, 0.21, -0.14, 0.029
+19850123, 0.99, -0.27, -0.71, 0.029
+19850124, -0.15, 0.55, -0.34, 0.029
+19850125, 0.40, 0.13, -0.33, 0.029
+19850128, 0.17, 0.42, -0.58, 0.029
+19850129, 0.82, -0.36, -0.26, 0.029
+19850130, 0.24, 0.39, -0.06, 0.029
+19850131, 0.04, 0.11, 0.48, 0.029
+19850201, -0.45, 0.31, 0.37, 0.030
+19850204, 0.97, -0.46, -0.47, 0.030
+19850205, 0.30, 0.41, -0.08, 0.030
+19850206, 0.08, 0.56, -0.22, 0.030
+19850207, 0.79, 0.01, -0.40, 0.030
+19850208, 0.24, 0.22, 0.16, 0.030
+19850211, -0.78, 0.57, 0.34, 0.030
+19850212, -0.05, 0.09, 0.41, 0.030
+19850213, 1.35, -0.74, -0.18, 0.030
+19850214, -0.31, 0.44, 0.06, 0.030
+19850215, -0.43, 0.30, 0.09, 0.030
+19850219, -0.14, -0.07, 0.10, 0.030
+19850220, 0.02, 0.18, -0.29, 0.030
+19850221, -0.55, 0.18, 0.21, 0.030
+19850222, -0.39, -0.04, 0.28, 0.030
+19850225, -0.25, -0.85, -0.12, 0.030
+19850226, 0.83, -0.60, -0.50, 0.030
+19850227, -0.19, 0.13, 0.12, 0.030
+19850228, 0.19, -0.10, -0.30, 0.030
+19850301, 1.04, -0.28, -0.34, 0.029
+19850304, -0.53, 0.46, 0.17, 0.029
+19850305, 0.05, -0.10, 0.28, 0.029
+19850306, -0.78, 0.51, 0.59, 0.029
+19850307, -0.58, 0.24, 0.68, 0.029
+19850308, -0.27, 0.09, 0.23, 0.029
+19850311, -0.22, -0.21, 0.15, 0.029
+19850312, 0.31, -0.52, 0.35, 0.029
+19850313, -0.86, 0.12, 0.82, 0.029
+19850314, -0.15, 0.10, 0.10, 0.029
+19850315, -0.45, 0.55, -0.07, 0.029
+19850318, -0.12, -0.50, 0.19, 0.029
+19850319, 1.21, -0.98, -0.75, 0.029
+19850320, -0.21, 0.06, 0.24, 0.029
+19850321, 0.14, -0.05, 0.11, 0.029
+19850322, -0.20, -0.04, 0.23, 0.029
+19850325, -0.57, -0.18, 0.82, 0.029
+19850326, 0.16, -0.28, 0.14, 0.029
+19850327, 0.57, -0.19, -0.17, 0.029
+19850328, 0.10, 0.13, 0.11, 0.029
+19850329, 0.56, -0.15, 0.20, 0.029
+19850401, 0.28, -0.17, 0.01, 0.034
+19850402, -0.36, 0.29, 0.25, 0.034
+19850403, -0.74, 0.26, 0.56, 0.034
+19850404, -0.09, -0.08, 0.12, 0.034
+19850408, -0.44, 0.33, 0.60, 0.034
+19850409, 0.04, -0.12, 0.18, 0.034
+19850410, 0.59, -0.12, -0.25, 0.034
+19850411, 0.42, -0.09, -0.07, 0.034
+19850412, 0.15, -0.09, 0.00, 0.034
+19850415, 0.20, -0.11, 0.12, 0.034
+19850416, 0.15, -0.04, -0.11, 0.034
+19850417, 0.21, 0.04, -0.01, 0.034
+19850418, -0.46, 0.38, 0.37, 0.034
+19850419, 0.09, -0.20, 0.16, 0.034
+19850422, -0.28, 0.05, 0.28, 0.034
+19850423, 0.54, -0.46, -0.06, 0.034
+19850424, 0.14, -0.12, 0.13, 0.034
+19850425, 0.49, -0.37, 0.23, 0.034
+19850426, -0.53, 0.50, 0.01, 0.034
+19850429, -0.82, 0.23, 0.80, 0.034
+19850430, -0.52, 0.01, 0.43, 0.034
+19850501, -0.67, 0.42, 0.55, 0.030
+19850502, 0.14, -0.46, 0.30, 0.030
+19850503, 0.58, -0.39, -0.21, 0.030
+19850506, 0.04, -0.03, 0.15, 0.030
+19850507, 0.40, -0.22, -0.20, 0.030
+19850508, -0.01, 0.17, -0.20, 0.030
+19850509, 0.74, -0.13, -0.33, 0.030
+19850510, 1.30, -0.25, -0.78, 0.030
+19850513, 0.14, -0.06, -0.23, 0.030
+19850514, -0.30, 0.26, 0.47, 0.030
+19850515, 0.29, -0.17, 0.02, 0.030
+19850516, 0.54, -0.23, 0.09, 0.030
+19850517, 0.91, -0.26, -0.36, 0.030
+19850520, 1.16, -0.46, -0.47, 0.030
+19850521, -0.06, -0.08, -0.07, 0.030
+19850522, -0.56, 0.17, -0.04, 0.030
+19850523, -0.47, 0.20, 0.21, 0.030
+19850524, 0.31, -0.16, -0.09, 0.030
+19850528, -0.16, 0.02, 0.29, 0.030
+19850529, -0.08, 0.09, -0.20, 0.030
+19850530, -0.02, -0.06, 0.21, 0.030
+19850531, 0.75, -0.55, 0.02, 0.030
+19850603, 0.05, 0.07, -0.17, 0.028
+19850604, 0.37, -0.23, -0.28, 0.028
+19850605, 0.13, 0.22, 0.01, 0.028
+19850606, 0.36, -0.39, -0.27, 0.028
+19850607, -0.61, 0.45, 0.22, 0.028
+19850610, -0.13, -0.25, 0.36, 0.028
+19850611, -0.22, 0.25, 0.39, 0.028
+19850612, -0.61, 0.43, 0.75, 0.028
+19850613, -1.11, 0.49, 0.67, 0.028
+19850614, 0.74, -0.56, 0.03, 0.028
+19850617, -0.26, 0.17, 0.13, 0.028
+19850618, 0.37, -0.18, 0.29, 0.028
+19850619, -0.21, 0.35, -0.04, 0.028
+19850620, -0.07, -0.10, 0.17, 0.028
+19850621, 1.06, -0.82, -0.04, 0.028
+19850624, 0.04, 0.17, -0.60, 0.028
+19850625, 0.35, 0.20, -0.58, 0.028
+19850626, 0.16, -0.03, -0.38, 0.028
+19850627, 0.59, -0.08, -0.30, 0.028
+19850628, 0.29, 0.21, 0.02, 0.028
+19850701, 0.27, -0.08, -0.13, 0.028
+19850702, -0.11, 0.30, 0.15, 0.028
+19850703, -0.20, 0.28, 0.15, 0.028
+19850705, 0.53, 0.14, 0.08, 0.028
+19850708, -0.33, 0.01, 0.28, 0.028
+19850709, -0.37, 0.19, 0.57, 0.028
+19850710, 0.59, -0.10, -0.14, 0.028
+19850711, 0.34, 0.25, -0.29, 0.028
+19850712, 0.21, 0.14, 0.02, 0.028
+19850715, -0.15, 0.37, 0.06, 0.028
+19850716, 0.98, -0.09, -0.55, 0.028
+19850717, 0.37, 0.20, -0.53, 0.028
+19850718, -0.57, 0.42, 0.00, 0.028
+19850719, 0.30, 0.41, 0.04, 0.028
+19850722, -0.45, 0.10, -0.54, 0.028
+19850723, -0.84, 0.69, -1.17, 0.028
+19850724, -0.62, 0.14, 0.29, 0.028
+19850725, 0.08, -0.07, 0.07, 0.028
+19850726, 0.11, -0.11, -0.05, 0.028
+19850729, -1.39, 0.35, 0.22, 0.028
+19850730, 0.05, -0.37, 0.29, 0.028
+19850731, 0.49, -0.23, -0.44, 0.028
+19850801, 0.69, -0.06, -0.42, 0.025
+19850802, -0.23, 0.47, 0.06, 0.025
+19850805, -0.53, -0.31, 0.02, 0.025
+19850806, -1.20, 0.28, 0.10, 0.025
+19850807, -0.29, -0.29, 0.45, 0.025
+19850808, 0.70, -0.39, 0.39, 0.025
+19850809, -0.23, 0.16, -0.12, 0.025
+19850812, -0.34, -0.14, 0.08, 0.025
+19850813, -0.19, -0.02, 0.37, 0.025
+19850814, 0.09, 0.04, 0.19, 0.025
+19850815, -0.06, 0.20, 0.37, 0.025
+19850816, -0.56, 0.02, -0.06, 0.025
+19850819, 0.11, -0.27, 0.32, 0.025
+19850820, 0.67, -0.50, -0.05, 0.025
+19850821, 0.48, -0.08, -0.09, 0.025
+19850822, -0.76, 0.45, 0.32, 0.025
+19850823, -0.12, 0.19, 0.15, 0.025
+19850826, 0.12, -0.23, -0.03, 0.025
+19850827, 0.33, -0.18, -0.22, 0.025
+19850828, 0.31, -0.17, 0.00, 0.025
+19850829, 0.07, 0.07, 0.16, 0.025
+19850830, -0.05, 0.39, 0.32, 0.025
+19850903, -0.43, -0.19, 0.08, 0.032
+19850904, -0.33, 0.00, 0.25, 0.032
+19850905, -0.04, -0.05, 0.05, 0.032
+19850906, 0.41, -0.13, -0.49, 0.032
+19850909, 0.07, -0.15, -0.15, 0.032
+19850910, -0.75, 0.11, 0.12, 0.032
+19850911, -1.03, 0.11, 0.27, 0.032
+19850912, -0.79, 0.06, -0.25, 0.032
+19850913, -0.60, -0.43, 0.18, 0.032
+19850916, -0.14, -0.33, 0.04, 0.032
+19850917, -0.93, -0.35, 0.59, 0.032
+19850918, 0.07, -0.26, 0.05, 0.032
+19850919, 0.91, 0.00, -0.26, 0.032
+19850920, -0.46, 0.70, -0.01, 0.032
+19850923, 0.91, -0.57, -0.35, 0.032
+19850924, -0.76, 0.40, 0.27, 0.032
+19850925, -1.01, 0.39, 0.42, 0.032
+19850926, 0.07, -0.65, 0.40, 0.032
+19850930, 0.26, -0.33, 0.16, 0.032
+19851001, 1.36, -0.84, 0.02, 0.028
+19851002, -0.39, 0.25, 0.69, 0.028
+19851003, 0.11, -0.09, 0.38, 0.028
+19851004, -0.53, 0.38, 0.46, 0.028
+19851007, -0.68, 0.13, 0.20, 0.028
+19851008, -0.13, -0.31, 0.40, 0.028
+19851009, 0.34, -0.06, -0.02, 0.028
+19851010, 0.24, 0.03, -0.16, 0.028
+19851011, 0.78, -0.19, -0.59, 0.028
+19851014, 1.01, -0.50, -0.61, 0.028
+19851015, -0.12, 0.25, -0.11, 0.028
+19851016, 0.84, -0.47, -0.34, 0.028
+19851017, 0.04, 0.38, -0.29, 0.028
+19851018, -0.23, 0.25, 0.02, 0.028
+19851021, -0.09, -0.25, 0.24, 0.028
+19851022, 0.51, -0.35, -0.25, 0.028
+19851023, 0.46, -0.19, 0.08, 0.028
+19851024, -0.20, 0.37, 0.08, 0.028
+19851025, -0.51, 0.24, 0.37, 0.028
+19851028, 0.07, -0.37, 0.33, 0.028
+19851029, 0.71, -0.28, -0.20, 0.028
+19851030, 0.42, -0.14, 0.01, 0.028
+19851031, -0.06, 0.19, 0.13, 0.028
+19851101, 0.73, -0.31, -0.21, 0.030
+19851104, -0.04, 0.11, 0.01, 0.030
+19851105, 0.58, -0.27, -0.39, 0.030
+19851106, 0.29, 0.09, -0.28, 0.030
+19851107, 0.02, 0.19, 0.02, 0.030
+19851108, 0.68, 0.10, 0.01, 0.030
+19851111, 1.52, -0.92, -0.27, 0.030
+19851112, 0.50, 0.24, -0.05, 0.030
+19851113, -0.46, 0.18, -0.12, 0.030
+19851114, 0.84, -0.35, 0.08, 0.030
+19851115, -0.32, 0.63, -0.12, 0.030
+19851118, 0.19, -0.37, -0.51, 0.030
+19851119, 0.05, 0.55, -0.02, 0.030
+19851120, 0.10, -0.16, -0.09, 0.030
+19851121, 1.08, -0.29, -0.13, 0.030
+19851122, 0.16, 0.42, 0.04, 0.030
+19851125, -0.55, 0.15, 0.12, 0.030
+19851126, 0.13, -0.03, -0.15, 0.030
+19851127, 0.81, -0.17, -0.64, 0.030
+19851129, -0.02, 0.38, -0.06, 0.030
+19851202, -0.75, 0.60, -0.01, 0.031
+19851203, 0.20, 0.03, -0.01, 0.031
+19851204, 1.49, -0.40, -0.58, 0.031
+19851205, -0.05, 0.34, -0.29, 0.031
+19851206, -0.52, -0.09, 0.09, 0.031
+19851209, 0.57, -0.56, -0.51, 0.031
+19851210, 0.10, -0.13, -0.47, 0.031
+19851211, 0.88, -0.42, -0.22, 0.031
+19851212, 0.23, 0.26, -0.16, 0.031
+19851213, 1.38, -0.41, -0.27, 0.031
+19851216, 0.77, -0.67, -0.14, 0.031
+19851217, -0.61, -0.06, 0.88, 0.031
+19851218, -0.44, 0.03, 0.46, 0.031
+19851219, 0.02, 0.09, -0.03, 0.031
+19851220, 0.38, 0.26, -0.07, 0.031
+19851223, -1.02, 0.65, -0.28, 0.031
+19851224, -0.56, 0.22, 0.19, 0.031
+19851226, 0.19, 0.08, 0.00, 0.031
+19851227, 0.87, -0.23, -0.10, 0.031
+19851230, 0.39, -0.29, -0.22, 0.031
+19851231, 0.31, 0.15, 0.29, 0.031
+19860102, -0.63, 0.84, 0.38, 0.025
+19860103, 0.56, -0.07, 0.21, 0.025
+19860106, -0.04, 0.09, 0.09, 0.025
+19860107, 1.38, -0.42, 0.05, 0.025
+19860108, -2.16, 1.40, 0.30, 0.025
+19860109, -1.17, -0.77, -0.14, 0.025
+19860110, -0.02, 0.19, 0.26, 0.025
+19860113, 0.28, -0.04, 0.28, 0.025
+19860114, 0.01, 0.44, -0.01, 0.025
+19860115, 0.79, -0.04, -0.21, 0.025
+19860116, 0.46, -0.02, -0.37, 0.025
+19860117, -0.17, 0.47, 0.19, 0.025
+19860120, -0.39, 0.20, 0.09, 0.025
+19860121, -0.67, 0.35, -0.17, 0.025
+19860122, -0.93, 0.45, 0.21, 0.025
+19860123, 0.24, -0.26, -0.23, 0.025
+19860124, 0.95, -0.22, -0.11, 0.025
+19860127, 0.45, -0.33, -0.15, 0.025
+19860128, 0.98, -0.55, 0.08, 0.025
+19860129, 0.24, -0.69, -0.29, 0.025
+19860130, -0.34, 0.61, 0.10, 0.025
+19860131, 0.92, -0.46, 0.01, 0.025
+19860203, 0.93, -0.55, -0.62, 0.028
+19860204, -0.25, 0.14, -0.30, 0.028
+19860205, 0.07, -0.01, -0.56, 0.028
+19860206, 0.26, 0.19, -0.10, 0.028
+19860207, 0.49, 0.08, -0.33, 0.028
+19860210, 0.66, -0.41, -0.13, 0.028
+19860211, 0.03, 0.17, -0.06, 0.028
+19860212, 0.14, 0.17, 0.29, 0.028
+19860213, 0.57, -0.22, 0.02, 0.028
+19860214, 0.89, -0.43, 0.12, 0.028
+19860218, 1.12, -0.51, -0.10, 0.028
+19860219, -0.92, 0.82, -0.06, 0.028
+19860220, 0.83, -0.54, -0.18, 0.028
+19860221, 1.00, -0.02, 0.16, 0.028
+19860224, -0.12, 0.03, 0.33, 0.028
+19860225, -0.23, 0.19, 0.35, 0.028
+19860226, 0.10, 0.08, 0.15, 0.028
+19860227, 1.14, -0.21, 0.17, 0.028
+19860228, 0.19, 0.36, -0.02, 0.028
+19860303, -0.39, 0.69, 0.00, 0.030
+19860304, -0.14, 0.80, 0.17, 0.030
+19860305, -0.20, -0.30, 0.09, 0.030
+19860306, 0.41, 0.25, 0.00, 0.030
+19860307, 0.14, 0.12, -0.23, 0.030
+19860310, 0.43, -0.06, -0.20, 0.030
+19860311, 1.86, -1.09, 0.03, 0.030
+19860312, 0.45, 0.10, 0.26, 0.030
+19860313, 0.20, -0.14, -0.33, 0.030
+19860314, 1.03, -0.84, -0.22, 0.030
+19860317, -0.75, 0.02, -0.32, 0.030
+19860318, 0.47, 0.04, -0.17, 0.030
+19860319, -0.17, 0.13, -0.09, 0.030
+19860320, 0.39, -0.16, -0.02, 0.030
+19860321, -0.83, 1.68, 0.67, 0.030
+19860324, 0.38, -1.25, -0.25, 0.030
+19860325, -0.25, -0.08, 0.25, 0.030
+19860326, 0.98, -0.58, 0.05, 0.030
+19860327, 0.71, -0.07, 0.05, 0.030
+19860331, 0.06, 0.21, -0.15, 0.030
+19860401, -1.21, 0.86, 0.34, 0.024
+19860402, 0.09, -0.28, -0.09, 0.024
+19860403, -1.01, 0.80, 0.01, 0.024
+19860404, -1.45, 0.81, 0.26, 0.024
+19860407, -0.32, -0.45, 0.13, 0.024
+19860408, 1.90, -0.84, -0.60, 0.024
+19860409, 0.21, 0.14, -0.23, 0.024
+19860410, 0.97, -0.35, -0.42, 0.024
+19860411, -0.08, 0.34, -0.13, 0.024
+19860414, 0.53, 0.03, -0.55, 0.024
+19860415, 0.14, -0.10, 0.13, 0.024
+19860416, 1.75, -0.60, -0.57, 0.024
+19860417, 0.33, 0.32, -0.26, 0.024
+19860418, -0.11, 0.46, -0.11, 0.024
+19860421, 0.76, -0.32, -0.28, 0.024
+19860422, -0.78, 0.70, 0.11, 0.024
+19860423, -0.42, 0.02, 0.03, 0.024
+19860424, 0.18, 0.29, -0.51, 0.024
+19860425, 0.00, 0.18, -0.42, 0.024
+19860428, 0.17, -0.27, -0.18, 0.024
+19860429, -0.97, 0.37, -0.09, 0.024
+19860430, -1.90, 0.65, 0.53, 0.024
+19860501, -0.20, -0.22, 0.27, 0.023
+19860502, -0.06, 0.17, 0.19, 0.023
+19860505, 1.11, -0.60, 0.11, 0.023
+19860506, -0.12, 0.23, 0.05, 0.023
+19860507, -0.42, 0.22, 0.25, 0.023
+19860508, 0.50, 0.10, 0.20, 0.023
+19860509, 0.30, 0.14, 0.05, 0.023
+19860512, -0.18, -0.17, 0.32, 0.023
+19860513, -0.40, 0.10, -0.16, 0.023
+19860514, 0.38, -0.27, -0.40, 0.023
+19860515, -1.09, 0.68, 0.29, 0.023
+19860516, -0.56, 0.48, 0.10, 0.023
+19860519, 0.06, -0.40, 0.08, 0.023
+19860520, 1.01, -0.86, -0.49, 0.023
+19860521, -0.16, 0.33, 0.10, 0.023
+19860522, 1.61, -0.94, -0.21, 0.023
+19860523, 0.55, 0.04, -0.06, 0.023
+19860527, 1.27, -0.39, -0.33, 0.023
+19860528, 0.69, -0.19, -0.51, 0.023
+19860529, 0.40, -0.20, -0.11, 0.023
+19860530, -0.13, 0.41, 0.16, 0.023
+19860602, -0.75, 0.53, 0.06, 0.025
+19860603, 0.10, 0.02, -0.21, 0.025
+19860604, -0.49, 0.53, -0.21, 0.025
+19860605, 0.43, -0.46, 0.08, 0.025
+19860606, 0.01, 0.11, -0.03, 0.025
+19860609, -2.00, 0.75, 0.35, 0.025
+19860610, -0.23, -0.02, -0.11, 0.025
+19860611, 0.61, -0.15, -0.22, 0.025
+19860612, 0.17, 0.02, 0.05, 0.025
+19860613, 1.45, -0.81, -0.17, 0.025
+19860616, 0.02, -0.34, 0.68, 0.025
+19860617, -0.57, 0.11, 0.33, 0.025
+19860618, 0.04, -0.41, 0.29, 0.025
+19860619, -0.17, 0.40, -0.01, 0.025
+19860620, 0.76, -1.43, -0.21, 0.025
+19860623, -0.54, 0.67, 0.13, 0.025
+19860624, 0.77, -0.22, 0.00, 0.025
+19860625, 0.70, -0.37, 0.06, 0.025
+19860626, -0.05, 0.26, 0.11, 0.025
+19860627, 0.29, -0.21, 0.31, 0.025
+19860630, 0.52, 0.11, 0.03, 0.025
+19860701, 0.47, -0.03, -0.58, 0.024
+19860702, 0.33, -0.23, -0.23, 0.024
+19860703, -0.21, 0.29, 0.17, 0.024
+19860707, -2.90, 0.50, 1.64, 0.024
+19860708, -1.52, -1.08, 1.00, 0.024
+19860709, 0.64, 0.01, -0.24, 0.024
+19860710, 0.00, -0.17, 0.34, 0.024
+19860711, -0.12, 0.28, 0.53, 0.024
+19860714, -1.65, -0.08, 1.52, 0.024
+19860715, -1.68, 0.05, 1.12, 0.024
+19860716, 0.38, -0.17, -0.06, 0.024
+19860717, 0.45, -0.21, -0.46, 0.024
+19860718, 0.05, -0.19, -0.22, 0.024
+19860721, -0.17, -0.31, 0.38, 0.024
+19860722, 0.75, -0.74, 0.10, 0.024
+19860723, 0.12, -0.11, -0.12, 0.024
+19860724, -0.29, -0.17, -0.08, 0.024
+19860725, 0.76, -0.69, -0.15, 0.024
+19860728, -1.62, 0.42, 0.19, 0.024
+19860729, -0.68, -0.14, 0.37, 0.024
+19860730, 0.48, -0.95, -0.06, 0.024
+19860731, -0.12, 0.06, -0.17, 0.024
+19860801, -0.43, 0.34, 0.45, 0.022
+19860804, 0.11, -1.24, 0.63, 0.022
+19860805, 0.26, -0.02, 0.68, 0.022
+19860806, -0.15, -0.26, 0.28, 0.022
+19860807, 0.24, -0.05, 0.05, 0.022
+19860808, 0.02, 0.05, -0.08, 0.022
+19860811, 1.49, -0.75, -0.48, 0.022
+19860812, 1.08, -0.36, -0.51, 0.022
+19860813, 0.92, -0.26, 0.13, 0.022
+19860814, 0.35, 0.22, -0.26, 0.022
+19860815, 0.23, -0.03, 0.39, 0.022
+19860818, 0.04, -0.24, 0.22, 0.022
+19860819, -0.26, 0.08, 0.42, 0.022
+19860820, 1.08, -0.82, 0.61, 0.022
+19860821, -0.04, 0.04, 0.24, 0.022
+19860822, 0.13, -0.11, 0.03, 0.022
+19860825, -0.80, 0.26, 0.24, 0.022
+19860826, 1.53, -1.32, 0.19, 0.022
+19860827, 0.16, -0.03, 0.36, 0.022
+19860828, -0.09, 0.31, -0.15, 0.022
+19860829, 0.04, 0.18, -0.11, 0.022
+19860902, -1.41, 0.89, 0.76, 0.021
+19860903, 0.26, -0.62, 0.11, 0.021
+19860904, 1.26, -0.35, 0.16, 0.021
+19860905, -1.25, 0.81, -0.15, 0.021
+19860908, -1.12, 0.16, -0.15, 0.021
+19860909, -0.29, -0.17, 0.17, 0.021
+19860910, -0.46, -0.15, 0.26, 0.021
+19860911, -4.42, 1.13, 0.84, 0.021
+19860912, -1.85, 0.37, 0.43, 0.021
+19860915, 0.26, -0.74, 0.27, 0.021
+19860916, -0.18, -0.40, 0.23, 0.021
+19860917, 0.31, 0.24, 0.06, 0.021
+19860918, 0.15, -0.09, -0.30, 0.021
+19860919, -0.07, 0.32, 0.16, 0.021
+19860922, 1.05, -0.34, -0.45, 0.021
+19860923, 0.45, 0.18, 0.10, 0.021
+19860924, 0.39, -0.05, 0.03, 0.021
+19860925, -1.53, 0.85, 0.46, 0.021
+19860926, 0.04, 0.12, 0.27, 0.021
+19860929, -0.99, 0.18, 0.33, 0.021
+19860930, 0.65, 0.03, -0.15, 0.021
+19861001, 0.83, -0.39, -0.13, 0.020
+19861002, 0.12, 0.00, -0.18, 0.020
+19861003, -0.09, -0.10, 0.20, 0.020
+19861006, 0.34, -0.45, -0.30, 0.020
+19861007, -0.18, -0.05, 0.56, 0.020
+19861008, 0.77, -0.63, -0.16, 0.020
+19861009, -0.26, 0.26, -0.01, 0.020
+19861010, -0.10, 0.15, -0.25, 0.020
+19861013, 0.13, -0.13, 0.06, 0.020
+19861014, -0.20, 0.09, -0.43, 0.020
+19861015, 1.21, -0.54, -0.48, 0.020
+19861016, 0.27, -0.20, 0.01, 0.020
+19861017, -0.28, 0.24, -0.03, 0.020
+19861020, -0.98, 0.42, 0.17, 0.020
+19861021, -0.05, 0.18, 0.12, 0.020
+19861022, 0.14, -0.13, -0.13, 0.020
+19861023, 1.08, -0.63, -0.38, 0.020
+19861024, -0.26, 0.29, -0.07, 0.020
+19861027, 0.21, -0.31, -0.14, 0.020
+19861028, 0.20, -0.07, -0.10, 0.020
+19861029, 0.61, -0.20, -0.09, 0.020
+19861030, 1.01, -0.49, 0.13, 0.020
+19861031, 0.05, 0.27, 0.31, 0.020
+19861103, 0.60, -0.68, -0.10, 0.021
+19861104, 0.21, 0.06, 0.01, 0.021
+19861105, 0.21, 0.12, 0.30, 0.021
+19861106, -0.24, 0.05, 0.15, 0.021
+19861107, -0.02, 0.22, -0.01, 0.021
+19861110, 0.06, 0.09, 0.10, 0.021
+19861111, 0.32, -0.21, -0.08, 0.021
+19861112, -0.20, 0.06, 0.15, 0.021
+19861113, -1.28, 0.70, 0.52, 0.021
+19861114, 0.43, -0.28, -0.11, 0.021
+19861117, -0.57, 0.04, -0.08, 0.021
+19861118, -2.26, 1.02, 0.27, 0.021
+19861119, -0.05, -1.03, 0.10, 0.021
+19861120, 1.58, -0.78, -0.14, 0.021
+19861121, 1.29, -0.94, -0.21, 0.021
+19861124, 0.55, -0.46, -0.26, 0.021
+19861125, 0.26, -0.02, -0.46, 0.021
+19861126, 0.15, -0.16, -0.40, 0.021
+19861128, 0.19, 0.28, 0.23, 0.021
+19861201, -0.16, -0.50, -0.08, 0.022
+19861202, 1.71, -0.89, -0.37, 0.022
+19861203, 0.10, 0.01, -0.34, 0.022
+19861204, -0.18, 0.30, -0.14, 0.022
+19861205, -0.68, 0.40, 0.09, 0.022
+19861208, -0.11, -0.23, 0.04, 0.022
+19861209, -0.68, 0.25, 0.22, 0.022
+19861210, 0.51, -0.47, 0.01, 0.022
+19861211, -0.95, 0.43, 0.05, 0.022
+19861212, -0.45, -0.04, 0.63, 0.022
+19861215, 0.08, -0.69, 0.42, 0.022
+19861216, 0.60, -0.43, -0.12, 0.022
+19861217, -0.82, 0.38, -0.04, 0.022
+19861218, -0.36, 0.11, 0.02, 0.022
+19861219, 0.83, -0.12, -0.08, 0.022
+19861222, -0.35, -0.19, 0.42, 0.022
+19861223, -0.99, 0.07, 0.01, 0.022
+19861224, 0.32, 0.18, -0.05, 0.022
+19861226, 0.11, 0.09, -0.15, 0.022
+19861229, -0.90, 0.14, 0.10, 0.022
+19861230, -0.54, 0.25, -0.13, 0.022
+19861231, -0.37, 1.04, -0.18, 0.022
+19870102, 1.79, -0.27, -0.01, 0.020
+19870105, 2.45, -0.11, -0.33, 0.020
+19870106, 0.43, 0.38, -0.61, 0.020
+19870107, 1.13, 0.20, -0.62, 0.020
+19870108, 0.82, 0.27, -0.33, 0.020
+19870109, 0.58, 0.23, 0.17, 0.020
+19870112, 0.70, 0.44, 0.24, 0.020
+19870113, -0.09, 0.29, 0.12, 0.020
+19870114, 0.94, -0.13, -0.47, 0.020
+19870115, 0.89, -0.03, -0.52, 0.020
+19870116, -0.02, -0.82, 0.08, 0.020
+19870119, 0.98, -0.51, -0.80, 0.020
+19870120, -0.09, -0.07, 0.42, 0.020
+19870121, -0.51, -0.31, 0.01, 0.020
+19870122, 1.85, -1.26, -0.69, 0.020
+19870123, -1.14, 0.65, 0.21, 0.020
+19870126, -0.38, -0.39, 0.38, 0.020
+19870127, 1.30, -0.63, -0.60, 0.020
+19870128, 0.56, -0.22, -0.22, 0.020
+19870129, -0.36, 0.36, 0.36, 0.020
+19870130, -0.02, 0.19, 0.29, 0.020
+19870202, 0.97, 0.25, -0.37, 0.023
+19870203, -0.03, 0.70, -0.32, 0.023
+19870204, 1.22, 0.03, -0.04, 0.023
+19870205, 0.68, 0.14, -0.16, 0.023
+19870206, -0.21, 0.64, -0.09, 0.023
+19870209, -0.62, 0.35, -0.13, 0.023
+19870210, -0.99, 0.63, -0.01, 0.023
+19870211, 0.86, 0.17, -0.91, 0.023
+19870212, -0.46, 0.83, -0.47, 0.023
+19870213, 1.25, -0.63, -0.83, 0.023
+19870217, 1.68, -0.72, -1.10, 0.023
+19870218, -0.02, -0.28, 0.22, 0.023
+19870219, 0.12, -0.15, 0.27, 0.023
+19870220, -0.02, 0.05, 0.19, 0.023
+19870223, -0.86, 0.32, -0.11, 0.023
+19870224, 0.20, 0.23, -0.51, 0.023
+19870225, 0.44, 0.14, -0.89, 0.023
+19870226, -0.22, 0.50, -0.38, 0.023
+19870227, 0.37, 0.10, -0.12, 0.023
+19870302, -0.22, 0.27, 0.29, 0.021
+19870303, 0.21, -0.29, 0.30, 0.021
+19870304, 1.25, -0.64, -0.21, 0.021
+19870305, 0.59, -0.17, -0.38, 0.021
+19870306, -0.02, 0.18, 0.32, 0.021
+19870309, -0.67, 0.31, 0.19, 0.021
+19870310, 0.79, -0.32, -0.50, 0.021
+19870311, -0.08, 0.56, -0.16, 0.021
+19870312, 0.29, 0.19, 0.00, 0.021
+19870313, -0.38, 0.37, 0.38, 0.021
+19870316, -0.60, 0.15, 0.18, 0.021
+19870317, 1.17, -0.65, -0.28, 0.021
+19870318, 0.06, 0.03, 0.36, 0.021
+19870319, 0.43, -0.10, -0.20, 0.021
+19870320, 1.06, -0.39, -0.11, 0.021
+19870323, 0.65, -1.00, 0.01, 0.021
+19870324, 0.11, -0.19, 0.17, 0.021
+19870325, -0.25, 0.27, 0.13, 0.021
+19870326, 0.17, 0.17, 0.29, 0.021
+19870327, -1.32, 1.16, 0.28, 0.021
+19870330, -2.27, 0.40, 0.73, 0.021
+19870331, 0.69, 0.01, -0.21, 0.021
+19870401, 0.08, -0.66, -0.09, 0.021
+19870402, 0.40, 0.29, -0.15, 0.021
+19870403, 1.92, -0.83, -0.69, 0.021
+19870406, 0.40, -0.23, -0.15, 0.021
+19870407, -1.41, 0.98, 0.42, 0.021
+19870408, 0.07, -0.02, -0.21, 0.021
+19870409, -1.33, 0.68, -0.24, 0.021
+19870410, -0.27, -0.03, -0.16, 0.021
+19870413, -2.06, 0.86, 0.13, 0.021
+19870414, -2.48, -0.32, -0.12, 0.021
+19870415, 1.59, -1.08, 0.04, 0.021
+19870416, 0.94, -0.25, 0.48, 0.021
+19870420, -0.31, -0.06, 0.16, 0.021
+19870421, 1.75, -1.96, -0.37, 0.021
+19870422, -1.43, 1.57, -0.15, 0.021
+19870423, -0.21, -0.06, 0.19, 0.021
+19870424, -1.63, 0.76, 0.28, 0.021
+19870427, -0.20, -0.88, 0.23, 0.021
+19870428, 0.45, 0.09, -0.08, 0.021
+19870429, 0.66, -0.25, 0.04, 0.021
+19870430, 1.12, -0.43, 0.08, 0.021
+19870501, -0.13, 0.05, 0.21, 0.019
+19870504, 0.32, -0.41, -0.05, 0.019
+19870505, 1.77, -0.87, -0.37, 0.019
+19870506, 0.03, -0.03, 0.65, 0.019
+19870507, -0.16, 0.42, 0.51, 0.019
+19870508, -0.32, 0.51, 0.13, 0.019
+19870511, -0.45, 0.65, 0.41, 0.019
+19870512, 0.25, -0.57, -0.25, 0.019
+19870513, 0.21, 0.00, -0.53, 0.019
+19870514, 0.04, 0.15, -0.17, 0.019
+19870515, -1.96, 1.10, 0.25, 0.019
+19870518, -0.65, -0.61, 0.37, 0.019
+19870519, -2.05, 1.06, 0.05, 0.019
+19870520, -0.55, -0.18, -0.33, 0.019
+19870521, 0.67, -0.24, -0.27, 0.019
+19870522, 0.42, -0.58, 0.11, 0.019
+19870526, 2.18, -1.41, -0.37, 0.019
+19870527, 0.07, 0.28, -0.20, 0.019
+19870528, 0.56, -0.50, -0.45, 0.019
+19870529, -0.04, 0.57, 0.35, 0.019
+19870601, -0.04, -0.09, 0.28, 0.022
+19870602, -0.46, 0.34, 0.00, 0.022
+19870603, 1.35, -1.02, -0.20, 0.022
+19870604, 0.50, -0.25, -0.07, 0.022
+19870605, -0.30, 0.51, 0.07, 0.022
+19870608, 0.88, -0.60, 0.07, 0.022
+19870609, 0.20, -0.02, -0.40, 0.022
+19870610, 0.13, -0.02, 0.07, 0.022
+19870611, 0.34, -0.25, 0.01, 0.022
+19870612, 0.86, -0.53, -0.03, 0.022
+19870615, 0.41, -0.54, 0.10, 0.022
+19870616, 0.46, -0.28, -0.20, 0.022
+19870617, 0.07, 0.12, -0.12, 0.022
+19870618, 0.19, -0.18, 0.18, 0.022
+19870619, 0.27, 0.02, 0.14, 0.022
+19870622, 0.63, -0.65, -0.35, 0.022
+19870623, -0.32, 0.07, 0.08, 0.022
+19870624, -0.44, 0.40, -0.01, 0.022
+19870625, 0.55, -0.42, 0.29, 0.022
+19870626, -0.46, 0.31, 0.12, 0.022
+19870629, 0.05, -0.07, 0.47, 0.022
+19870630, -1.04, 1.01, 0.52, 0.022
+19870701, -0.24, 0.14, 0.15, 0.021
+19870702, 0.63, -0.36, -0.10, 0.021
+19870706, -0.21, 0.04, 0.25, 0.021
+19870707, 0.58, -0.26, 0.71, 0.021
+19870708, 0.24, 0.09, 0.07, 0.021
+19870709, -0.13, 0.37, 0.11, 0.021
+19870710, 0.20, -0.17, 0.12, 0.021
+19870713, -0.18, 0.24, 0.22, 0.021
+19870714, 0.91, -0.25, -0.28, 0.021
+19870715, -0.06, 0.24, 0.08, 0.021
+19870716, 0.56, -0.13, 0.07, 0.021
+19870717, 0.46, -0.10, 0.16, 0.021
+19870720, -0.83, 0.50, 0.24, 0.021
+19870721, -0.80, 0.36, -0.02, 0.021
+19870722, -0.10, -0.12, -0.08, 0.021
+19870723, -0.28, -0.12, -0.08, 0.021
+19870724, 0.37, -0.08, -0.29, 0.021
+19870727, 0.38, -0.38, -0.20, 0.021
+19870728, 0.47, -0.21, -0.11, 0.021
+19870729, 0.89, -0.44, -0.28, 0.021
+19870730, 0.71, -0.14, -0.22, 0.021
+19870731, 0.20, 0.10, 0.15, 0.021
+19870803, -0.38, 0.05, 0.60, 0.022
+19870804, -0.31, 0.16, 0.21, 0.022
+19870805, 0.71, -0.10, -0.44, 0.022
+19870806, 1.09, -0.30, -0.86, 0.022
+19870807, 0.39, 0.12, -0.24, 0.022
+19870810, 1.32, -0.98, -0.05, 0.022
+19870811, 1.35, -1.03, -0.13, 0.022
+19870812, -0.22, -0.04, 0.28, 0.022
+19870813, 0.61, -0.34, 0.03, 0.022
+19870814, -0.09, 0.16, 0.65, 0.022
+19870817, 0.09, -0.27, -0.19, 0.022
+19870818, -1.40, 0.46, 0.13, 0.022
+19870819, 0.11, 0.21, -0.07, 0.022
+19870820, 1.39, -0.50, -0.27, 0.022
+19870821, 0.30, 0.10, -0.41, 0.022
+19870824, -0.59, 0.38, 0.05, 0.022
+19870825, 0.81, -0.56, -0.34, 0.022
+19870826, -0.47, 0.44, 0.11, 0.022
+19870827, -0.82, 0.68, 0.06, 0.022
+19870828, -1.10, 0.75, -0.14, 0.022
+19870831, 0.71, -0.16, 0.11, 0.022
+19870901, -1.59, 1.02, -0.08, 0.021
+19870902, -0.67, -0.08, -0.06, 0.021
+19870903, -0.45, 0.36, 0.01, 0.021
+19870904, -0.91, 0.61, 0.19, 0.021
+19870908, -1.27, -1.02, 0.11, 0.021
+19870909, 0.21, 0.23, 0.00, 0.021
+19870910, 0.92, -0.05, -0.80, 0.021
+19870911, 1.34, -0.37, -0.47, 0.021
+19870914, 0.21, -0.35, 0.12, 0.021
+19870915, -1.34, 0.74, 0.39, 0.021
+19870916, -0.77, 0.61, 0.15, 0.021
+19870917, -0.04, -0.15, 0.13, 0.021
+19870918, -0.10, 0.19, -0.09, 0.021
+19870921, -1.28, 0.42, 0.83, 0.021
+19870922, 2.16, -2.36, -0.03, 0.021
+19870923, 0.58, 0.09, -0.28, 0.021
+19870924, -0.25, 0.45, -0.22, 0.021
+19870925, 0.11, -0.08, 0.03, 0.021
+19870928, 0.72, -0.50, 0.04, 0.021
+19870929, -0.31, 0.07, 0.29, 0.021
+19870930, 0.18, 0.67, -0.06, 0.021
+19871001, 1.43, -1.15, -0.02, 0.027
+19871002, 0.30, 0.05, -0.36, 0.027
+19871005, 0.05, 0.27, -0.23, 0.027
+19871006, -2.24, 1.00, 0.60, 0.027
+19871007, -0.38, -0.37, -0.15, 0.027
+19871008, -1.34, 0.29, 0.35, 0.027
+19871009, -0.82, 0.30, 0.29, 0.027
+19871012, -0.74, -0.56, 0.28, 0.027
+19871013, 1.29, -1.41, 0.19, 0.027
+19871014, -2.44, 1.04, 0.57, 0.027
+19871015, -2.26, 0.87, 0.50, 0.027
+19871016, -4.87, 0.58, 0.76, 0.027
+19871019, -17.44, 6.20, 1.20, 0.027
+19871020, 0.72, -11.62, 2.62, 0.027
+19871021, 8.57, -1.12, -1.95, 0.027
+19871022, -3.97, -0.59, 1.45, 0.027
+19871023, -0.61, -1.95, 1.15, 0.027
+19871026, -8.31, -0.75, 2.56, 0.027
+19871027, 1.56, -3.54, -0.35, 0.027
+19871028, -0.19, -2.19, -0.96, 0.027
+19871029, 4.73, -0.47, -2.71, 0.027
+19871030, 3.61, 3.15, -0.96, 0.027
+19871102, 1.26, 0.22, 0.02, 0.017
+19871103, -1.87, -0.14, 0.96, 0.017
+19871104, -0.60, 0.23, 0.51, 0.017
+19871105, 2.11, -0.69, -0.25, 0.017
+19871106, -1.12, 1.64, 0.29, 0.017
+19871109, -2.48, 1.16, 0.90, 0.017
+19871110, -1.74, 0.04, 0.67, 0.017
+19871111, 1.00, -0.47, -0.42, 0.017
+19871112, 2.40, -0.82, -1.04, 0.017
+19871113, -0.80, 0.88, 0.09, 0.017
+19871116, 0.28, -0.38, 0.14, 0.017
+19871117, -1.47, -0.12, 0.58, 0.017
+19871118, 0.87, -0.54, -0.12, 0.017
+19871119, -1.98, 0.87, 0.14, 0.017
+19871120, 0.53, -1.12, 0.12, 0.017
+19871123, 0.32, -0.34, -0.08, 0.017
+19871124, 1.30, -0.35, -0.39, 0.017
+19871125, -0.60, 1.10, -0.18, 0.017
+19871127, -1.20, 0.95, 0.47, 0.017
+19871130, -3.99, 0.68, 0.87, 0.017
+19871201, 0.51, -0.92, 0.48, 0.018
+19871202, 0.39, -0.67, 0.03, 0.018
+19871203, -3.06, 1.28, 0.93, 0.018
+19871204, -1.02, -1.10, 0.33, 0.018
+19871207, 1.63, -1.75, -0.69, 0.018
+19871208, 2.28, -1.61, -0.14, 0.018
+19871209, 1.66, -0.24, -1.32, 0.018
+19871210, -1.67, 1.35, -0.66, 0.018
+19871211, 0.54, -0.05, 0.25, 0.018
+19871214, 2.71, -0.51, -1.35, 0.018
+19871215, 0.41, 1.19, -0.80, 0.018
+19871216, 2.02, -0.01, -0.67, 0.018
+19871217, -1.41, 1.75, -0.28, 0.018
+19871218, 2.21, -0.02, -0.19, 0.018
+19871221, 0.35, -0.01, -0.05, 0.018
+19871222, -0.05, -0.41, 0.12, 0.018
+19871223, 1.20, -0.12, -0.05, 0.018
+19871224, -0.16, 0.78, -0.19, 0.018
+19871228, -2.37, 0.35, 0.59, 0.018
+19871229, -0.36, -0.05, 0.04, 0.018
+19871230, 1.20, -0.28, -0.66, 0.018
+19871231, -0.19, 1.01, -0.04, 0.018
+19880104, 3.34, -0.88, -0.01, 0.015
+19880105, 1.22, 0.75, -0.48, 0.015
+19880106, 0.27, 0.35, 0.11, 0.015
+19880107, 0.74, -0.07, 0.29, 0.015
+19880108, -5.66, 2.84, 1.56, 0.015
+19880111, 0.90, -2.09, -0.37, 0.015
+19880112, -0.88, -0.15, 0.54, 0.015
+19880113, 0.19, -0.12, 0.36, 0.015
+19880114, 0.08, 0.33, 0.04, 0.015
+19880115, 2.31, -0.93, -0.45, 0.015
+19880118, 0.03, 0.19, 0.46, 0.015
+19880119, -0.70, 0.86, 0.57, 0.015
+19880120, -2.42, 0.64, 1.03, 0.015
+19880121, 0.17, -0.20, -0.10, 0.015
+19880122, 1.21, -0.37, 0.31, 0.015
+19880125, 1.93, -1.55, 0.07, 0.015
+19880126, -0.75, 0.57, 0.45, 0.015
+19880127, -0.05, 0.23, 0.31, 0.015
+19880128, 1.30, -0.71, 0.03, 0.015
+19880129, 1.24, -0.67, -0.05, 0.015
+19880201, -0.30, 0.85, 0.17, 0.023
+19880202, 0.19, -0.03, 0.25, 0.023
+19880203, -1.11, 0.82, 0.92, 0.023
+19880204, 0.00, -0.12, 0.14, 0.023
+19880205, -0.21, 0.55, 0.01, 0.023
+19880208, -0.68, 0.38, -0.16, 0.023
+19880209, 0.83, -0.71, -0.18, 0.023
+19880210, 1.72, -0.49, -0.51, 0.023
+19880211, -0.13, 0.77, -0.12, 0.023
+19880212, 0.55, 0.03, -0.32, 0.023
+19880216, 0.74, -0.47, -0.12, 0.023
+19880217, -0.17, 0.50, -0.10, 0.023
+19880218, -0.35, 0.68, -0.15, 0.023
+19880219, 1.13, -0.89, -0.02, 0.023
+19880222, 1.29, -0.35, -0.43, 0.023
+19880223, -0.06, 0.39, -0.13, 0.023
+19880224, 0.01, 0.61, -0.34, 0.023
+19880225, -0.73, 1.29, 0.20, 0.023
+19880226, 0.22, -0.12, -0.21, 0.023
+19880229, 1.79, -0.53, -0.42, 0.023
+19880301, -0.15, 0.24, -0.05, 0.019
+19880302, 0.43, 0.28, -0.24, 0.019
+19880303, 0.06, 0.22, -0.27, 0.019
+19880304, -0.13, 0.52, 0.07, 0.019
+19880307, 0.13, 0.51, -0.23, 0.019
+19880308, 0.69, 0.34, -0.20, 0.019
+19880309, 0.06, 1.02, -0.40, 0.019
+19880310, -1.66, 0.96, 0.33, 0.019
+19880311, 0.17, -0.38, 0.70, 0.019
+19880314, 0.42, -0.15, -0.33, 0.019
+19880315, -0.05, 0.12, 0.11, 0.019
+19880316, 0.81, -0.30, 0.10, 0.019
+19880317, 0.87, -0.40, -0.34, 0.019
+19880318, -0.01, 0.08, 0.34, 0.019
+19880321, -0.78, 0.29, 0.18, 0.019
+19880322, 0.06, 0.18, -0.20, 0.019
+19880323, 0.14, 0.45, 0.37, 0.019
+19880324, -1.80, 0.75, 0.22, 0.019
+19880325, -1.49, 0.79, 0.15, 0.019
+19880328, -0.40, -0.46, 0.12, 0.019
+19880329, 0.72, 0.07, -0.22, 0.019
+19880330, -0.64, 0.27, 0.47, 0.019
+19880331, 0.35, 0.67, 0.10, 0.019
+19880404, -0.93, 0.00, 0.31, 0.023
+19880405, 0.68, -0.51, -0.05, 0.023
+19880406, 2.20, -1.47, -0.04, 0.023
+19880407, 0.28, 0.26, 0.08, 0.023
+19880408, 1.09, -0.32, 0.06, 0.023
+19880411, 0.28, 0.16, 0.11, 0.023
+19880412, 0.45, -0.10, 0.12, 0.023
+19880413, -0.03, 0.04, 0.08, 0.023
+19880414, -3.76, 1.59, 0.44, 0.023
+19880415, -0.17, -0.37, -0.01, 0.023
+19880418, -0.14, 0.79, 0.25, 0.023
+19880419, -0.28, 0.74, -0.06, 0.023
+19880420, -0.70, 0.06, 0.03, 0.023
+19880421, -0.04, -0.22, 0.17, 0.023
+19880422, 1.09, -1.06, 0.24, 0.023
+19880425, 0.71, -0.47, 0.25, 0.023
+19880426, 0.60, -0.10, -0.20, 0.023
+19880427, 0.01, 0.32, -0.07, 0.023
+19880428, -0.39, 0.56, 0.01, 0.023
+19880429, -0.25, 0.91, -0.12, 0.023
+19880502, 0.02, -0.09, -0.31, 0.024
+19880503, 0.51, -0.18, 0.02, 0.024
+19880504, -0.75, 0.76, 0.12, 0.024
+19880505, -0.54, 0.28, 0.33, 0.024
+19880506, -0.38, 0.36, 0.52, 0.024
+19880509, -0.43, -0.28, 0.35, 0.024
+19880510, 0.24, -0.48, 0.32, 0.024
+19880511, -1.56, -0.01, 0.40, 0.024
+19880512, 0.25, -0.07, 0.15, 0.024
+19880513, 0.93, -0.35, 0.01, 0.024
+19880516, 0.59, -0.56, -0.04, 0.024
+19880517, -0.92, 0.68, 0.21, 0.024
+19880518, -1.49, 0.18, 0.47, 0.024
+19880519, 0.25, -0.66, -0.11, 0.024
+19880520, 0.11, 0.09, -0.05, 0.024
+19880523, -0.75, 0.19, 0.15, 0.024
+19880524, 0.86, -0.64, -0.19, 0.024
+19880525, 0.20, -0.02, 0.02, 0.024
+19880526, 0.33, 0.02, 0.08, 0.024
+19880527, -0.36, 0.17, 0.16, 0.024
+19880531, 2.70, -2.08, -0.21, 0.024
+19880601, 1.66, -0.68, -0.36, 0.022
+19880602, -0.40, 0.49, 0.02, 0.022
+19880603, 0.44, 0.01, 0.14, 0.022
+19880606, 0.27, 0.16, -0.28, 0.022
+19880607, -0.51, 0.46, -0.07, 0.022
+19880608, 1.97, -1.06, -0.17, 0.022
+19880609, -0.18, 0.75, -0.04, 0.022
+19880610, 0.30, 0.13, 0.13, 0.022
+19880613, 0.08, 0.13, -0.16, 0.022
+19880614, 0.87, -0.61, -0.02, 0.022
+19880615, 0.09, 0.10, 0.13, 0.022
+19880616, -1.31, 1.02, 0.31, 0.022
+19880617, 0.14, -0.37, 0.16, 0.022
+19880620, -0.51, 0.45, 0.15, 0.022
+19880621, 0.81, -0.63, -0.02, 0.022
+19880622, 1.25, -0.65, -0.12, 0.022
+19880623, -0.14, 0.42, -0.01, 0.022
+19880624, -0.21, 0.51, 0.07, 0.022
+19880627, -1.34, 1.13, 0.09, 0.022
+19880628, 0.93, -0.54, -0.28, 0.022
+19880629, -0.36, 0.46, -0.18, 0.022
+19880630, 0.86, 0.28, -0.54, 0.022
+19880701, -0.39, 0.42, 0.10, 0.025
+19880705, 1.09, -1.09, -0.01, 0.025
+19880706, -1.11, 1.15, 0.14, 0.025
+19880707, -0.06, 0.11, -0.02, 0.025
+19880708, -0.50, 0.38, 0.34, 0.025
+19880711, 0.11, -0.04, 0.05, 0.025
+19880712, -0.78, 0.55, 0.05, 0.025
+19880713, 0.30, -0.47, 0.11, 0.025
+19880714, 0.28, -0.04, 0.00, 0.025
+19880715, 0.44, -0.31, -0.01, 0.025
+19880718, -0.42, 0.41, 0.11, 0.025
+19880719, -0.76, 0.34, 0.45, 0.025
+19880720, 0.41, -0.21, 0.18, 0.025
+19880721, -1.05, 0.60, 0.30, 0.025
+19880722, -1.04, 0.47, 0.31, 0.025
+19880725, 0.28, -0.44, 0.01, 0.025
+19880726, 0.14, -0.24, 0.05, 0.025
+19880727, -0.85, 0.40, 0.48, 0.025
+19880728, 0.97, -0.99, -0.14, 0.025
+19880729, 1.75, -1.29, -0.24, 0.025
+19880801, 0.19, 0.16, 0.04, 0.026
+19880802, -0.01, -0.07, 0.25, 0.026
+19880803, 0.30, -0.25, -0.15, 0.026
+19880804, -0.21, 0.23, 0.22, 0.026
+19880805, -0.32, 0.08, 0.23, 0.026
+19880808, -0.33, 0.21, 0.14, 0.026
+19880809, -1.12, 0.39, 0.17, 0.026
+19880810, -1.66, 0.28, 0.42, 0.026
+19880811, 0.21, -0.47, -0.10, 0.026
+19880812, -0.10, 0.24, 0.06, 0.026
+19880815, -1.28, 0.29, 0.48, 0.026
+19880816, 0.59, -0.51, -0.37, 0.026
+19880817, 0.10, -0.19, 0.11, 0.026
+19880818, 0.13, -0.01, -0.11, 0.026
+19880819, -0.17, 0.32, 0.04, 0.026
+19880822, -1.12, 0.12, 0.61, 0.026
+19880823, -0.03, -0.18, 0.03, 0.026
+19880824, 1.25, -0.68, -0.30, 0.026
+19880825, -0.63, 0.16, 0.14, 0.026
+19880826, 0.15, -0.07, -0.03, 0.026
+19880829, 0.89, -0.64, -0.39, 0.026
+19880830, 0.10, -0.02, 0.23, 0.026
+19880831, -0.23, 0.62, 0.33, 0.026
+19880901, -1.10, 0.29, 0.42, 0.029
+19880902, 1.88, -1.28, -0.26, 0.029
+19880906, 0.37, -0.16, -0.31, 0.029
+19880907, 0.11, 0.15, -0.14, 0.029
+19880908, 0.12, 0.31, -0.21, 0.029
+19880909, 0.37, -0.04, -0.39, 0.029
+19880912, -0.10, 0.20, -0.17, 0.029
+19880913, 0.23, -0.18, 0.14, 0.029
+19880914, 0.56, -0.30, -0.09, 0.029
+19880915, -0.35, 0.29, 0.29, 0.029
+19880916, 0.69, -0.58, -0.01, 0.029
+19880919, -0.47, 0.40, 0.30, 0.029
+19880920, 0.27, -0.18, -0.01, 0.029
+19880921, 0.17, -0.17, -0.39, 0.029
+19880922, -0.35, 0.17, -0.03, 0.029
+19880923, 0.19, -0.07, 0.03, 0.029
+19880926, -0.34, -0.14, 0.39, 0.029
+19880927, -0.24, 0.06, 0.06, 0.029
+19880928, 0.27, -0.20, -0.19, 0.029
+19880929, 1.08, -0.45, -0.30, 0.029
+19880930, -0.08, 0.62, 0.21, 0.029
+19881003, -0.32, -0.60, 0.03, 0.029
+19881004, -0.19, 0.33, -0.18, 0.029
+19881005, 0.37, -0.19, 0.17, 0.029
+19881006, 0.15, 0.00, 0.14, 0.029
+19881007, 1.58, -1.55, 0.07, 0.029
+19881010, 0.07, 0.12, 0.05, 0.029
+19881011, -0.13, -0.04, 0.00, 0.029
+19881012, -1.25, 0.88, 0.52, 0.029
+19881013, 0.30, -0.44, 0.07, 0.029
+19881014, 0.10, 0.07, -0.17, 0.029
+19881017, 0.19, -0.19, 0.09, 0.029
+19881018, 0.80, -0.56, -0.13, 0.029
+19881019, -0.69, 0.58, 0.03, 0.029
+19881020, 1.67, -1.29, -0.69, 0.029
+19881021, 0.17, -0.27, 0.39, 0.029
+19881024, -0.32, 0.18, 0.09, 0.029
+19881025, -0.05, -0.15, 0.38, 0.029
+19881026, -0.34, 0.12, 0.22, 0.029
+19881027, -1.33, 0.24, 0.59, 0.029
+19881028, 0.33, -0.12, 0.08, 0.029
+19881031, 0.09, -0.07, -0.03, 0.029
+19881101, 0.05, -0.17, 0.15, 0.027
+19881102, -0.04, -0.17, 0.18, 0.027
+19881103, 0.08, 0.02, 0.27, 0.027
+19881104, -0.77, 0.32, 0.05, 0.027
+19881107, -0.90, -0.17, 0.21, 0.027
+19881108, 0.38, 0.03, -0.21, 0.027
+19881109, -0.54, 0.21, 0.01, 0.027
+19881110, 0.08, 0.09, 0.12, 0.027
+19881111, -1.82, 0.93, 0.27, 0.027
+19881114, -0.20, -0.41, 0.14, 0.027
+19881115, 0.16, -0.16, 0.01, 0.027
+19881116, -1.56, 0.43, 0.49, 0.027
+19881117, 0.10, -0.50, -0.20, 0.027
+19881118, 0.58, -0.48, -0.14, 0.027
+19881121, -0.22, -0.38, 0.38, 0.027
+19881122, 0.27, -0.48, 0.23, 0.027
+19881123, 0.63, -0.28, -0.21, 0.027
+19881125, -0.57, 0.41, 0.41, 0.027
+19881128, 0.36, -0.46, -0.11, 0.027
+19881129, 0.80, -0.49, -0.49, 0.027
+19881130, 0.91, -0.03, -0.32, 0.027
+19881201, -0.19, 0.51, -0.13, 0.030
+19881202, -0.20, 0.34, -0.40, 0.030
+19881205, 0.87, -0.34, -0.18, 0.030
+19881206, 0.83, -0.60, 0.04, 0.030
+19881207, 0.13, -0.12, 0.17, 0.030
+19881208, -0.48, 0.31, 0.08, 0.030
+19881209, 0.12, -0.09, 0.06, 0.030
+19881212, -0.18, -0.14, 0.33, 0.030
+19881213, -0.17, -0.11, 0.11, 0.030
+19881214, -0.33, 0.40, -0.02, 0.030
+19881215, -0.31, 0.28, -0.14, 0.030
+19881216, 0.60, 0.19, -0.36, 0.030
+19881219, 0.69, -0.63, -0.30, 0.030
+19881220, -0.32, 0.29, -0.11, 0.030
+19881221, -0.10, -0.08, -0.10, 0.030
+19881222, -0.10, 0.29, 0.07, 0.030
+19881223, 0.38, -0.14, -0.20, 0.030
+19881227, -0.30, 0.09, 0.00, 0.030
+19881228, 0.11, 0.08, -0.03, 0.030
+19881229, 0.67, -0.14, -0.26, 0.030
+19881230, -0.23, 1.39, -0.29, 0.030
+19890103, -0.82, 0.60, 0.29, 0.026
+19890104, 1.30, -0.38, -0.05, 0.026
+19890105, 0.21, 0.06, 0.28, 0.026
+19890106, 0.29, 0.29, 0.39, 0.026
+19890109, 0.12, -0.12, 0.31, 0.026
+19890110, -0.21, -0.01, 0.12, 0.026
+19890111, 0.43, -0.40, 0.03, 0.026
+19890112, 0.36, -0.09, -0.05, 0.026
+19890113, 0.14, -0.05, 0.06, 0.026
+19890116, 0.12, -0.12, 0.16, 0.026
+19890117, -0.21, 0.01, 0.22, 0.026
+19890118, 0.87, -0.28, 0.00, 0.026
+19890119, 0.14, 0.13, -0.19, 0.026
+19890120, -0.06, 0.14, 0.02, 0.026
+19890123, -0.60, 0.32, 0.13, 0.026
+19890124, 1.04, -0.89, -0.17, 0.026
+19890125, 0.26, 0.04, -0.07, 0.026
+19890126, 0.80, -0.35, -0.52, 0.026
+19890127, 0.64, -0.56, 0.02, 0.026
+19890130, 0.33, -0.14, -0.30, 0.026
+19890131, 0.77, -0.24, -0.18, 0.026
+19890201, -0.01, 0.47, -0.43, 0.032
+19890202, 0.00, 0.40, -0.12, 0.032
+19890203, 0.10, 0.31, -0.34, 0.032
+19890206, -0.17, 0.13, 0.34, 0.032
+19890207, 1.04, -0.46, 0.18, 0.032
+19890208, -0.21, 0.35, 0.20, 0.032
+19890209, -0.70, 0.51, 0.14, 0.032
+19890210, -1.27, 0.46, 0.35, 0.032
+19890213, 0.04, -0.42, 0.16, 0.032
+19890214, -0.10, 0.42, -0.23, 0.032
+19890215, 0.74, -0.31, -0.11, 0.032
+19890216, 0.21, 0.19, 0.14, 0.032
+19890217, 0.55, -0.21, -0.12, 0.032
+19890221, -0.23, 0.01, 0.10, 0.032
+19890222, -1.47, 0.67, 0.18, 0.032
+19890223, 0.26, -0.29, 0.03, 0.032
+19890224, -1.37, 0.81, 0.13, 0.032
+19890227, 0.07, -0.30, 0.11, 0.032
+19890228, 0.31, -0.02, 0.12, 0.032
+19890301, -0.37, 0.47, 0.14, 0.030
+19890302, 0.84, -0.23, -0.20, 0.030
+19890303, 0.36, 0.05, 0.04, 0.030
+19890306, 0.99, -0.51, -0.03, 0.030
+19890307, -0.17, 0.45, 0.10, 0.030
+19890308, 0.07, 0.17, -0.09, 0.030
+19890309, -0.10, 0.03, 0.02, 0.030
+19890310, -0.25, 0.35, -0.03, 0.030
+19890313, 0.61, -0.49, -0.08, 0.030
+19890314, -0.07, -0.06, 0.01, 0.030
+19890315, 0.39, -0.01, -0.03, 0.030
+19890316, 0.79, -0.36, -0.14, 0.030
+19890317, -2.08, 0.50, 0.58, 0.030
+19890320, -0.97, 0.02, 0.27, 0.030
+19890321, 0.45, 0.15, -0.14, 0.030
+19890322, -0.28, 0.24, 0.08, 0.030
+19890323, -0.39, 0.55, 0.03, 0.030
+19890327, 0.36, -0.46, 0.12, 0.030
+19890328, 0.35, 0.17, -0.15, 0.030
+19890329, 0.23, -0.13, -0.13, 0.030
+19890330, 0.06, -0.03, -0.06, 0.030
+19890331, 0.76, -0.19, 0.11, 0.030
+19890403, 0.45, -0.22, -0.13, 0.034
+19890404, -0.25, 0.12, -0.05, 0.034
+19890405, 0.27, -0.06, 0.16, 0.034
+19890406, -0.26, 0.25, -0.01, 0.034
+19890407, 0.55, -0.09, -0.30, 0.034
+19890410, -0.01, 0.14, -0.14, 0.034
+19890411, 0.40, 0.00, -0.06, 0.034
+19890412, 0.19, 0.27, -0.19, 0.034
+19890413, -0.75, 0.31, -0.01, 0.034
+19890414, 1.32, -0.68, -0.15, 0.034
+19890417, 0.07, -0.25, 0.06, 0.034
+19890418, 1.13, -0.82, -0.06, 0.034
+19890419, 0.35, -0.21, -0.05, 0.034
+19890420, -0.21, 0.24, 0.05, 0.034
+19890421, 0.72, -0.39, -0.06, 0.034
+19890424, -0.16, 0.20, 0.06, 0.034
+19890425, -0.45, 0.59, -0.34, 0.034
+19890426, 0.10, 0.05, -0.03, 0.034
+19890427, 0.71, -0.25, -0.09, 0.034
+19890428, 0.05, 0.20, -0.03, 0.034
+19890501, -0.15, 0.08, -0.10, 0.036
+19890502, -0.21, 0.45, 0.03, 0.036
+19890503, 0.00, 0.22, -0.28, 0.036
+19890504, -0.06, 0.27, -0.22, 0.036
+19890505, 0.01, 0.21, 0.11, 0.036
+19890508, -0.49, 0.07, 0.07, 0.036
+19890509, -0.20, 0.23, -0.07, 0.036
+19890510, 0.15, -0.01, -0.26, 0.036
+19890511, 0.30, -0.11, -0.25, 0.036
+19890512, 1.82, -1.32, -0.34, 0.036
+19890515, 0.66, -0.64, 0.01, 0.036
+19890516, -0.19, 0.05, 0.36, 0.036
+19890517, 0.62, -0.11, -0.30, 0.036
+19890518, 0.19, 0.24, -0.16, 0.036
+19890519, 0.78, -0.56, 0.01, 0.036
+19890522, 0.25, -0.45, 0.22, 0.036
+19890523, -0.92, 0.67, 0.31, 0.036
+19890524, 0.19, -0.01, 0.02, 0.036
+19890525, 0.08, 0.26, -0.18, 0.036
+19890526, 0.67, -0.17, -0.11, 0.036
+19890530, -0.61, 0.41, 0.28, 0.036
+19890531, 0.40, 0.12, 0.03, 0.036
+19890601, 0.45, 0.01, 0.05, 0.032
+19890602, 0.97, -0.46, -0.17, 0.032
+19890605, -0.87, 0.47, 0.35, 0.032
+19890606, 0.44, -0.51, 0.00, 0.032
+19890607, 0.81, -0.33, -0.24, 0.032
+19890608, 0.00, 0.30, -0.06, 0.032
+19890609, -0.02, -0.02, 0.09, 0.032
+19890612, -0.12, 0.06, 0.18, 0.032
+19890613, -0.67, 0.24, 0.50, 0.032
+19890614, -0.10, -0.06, 0.27, 0.032
+19890615, -1.06, 0.44, 0.08, 0.032
+19890616, 0.25, -0.02, -0.13, 0.032
+19890619, 0.08, -0.37, -0.09, 0.032
+19890620, -0.20, 0.03, 0.16, 0.032
+19890621, -0.21, -0.05, 0.04, 0.032
+19890622, 0.39, -0.27, -0.14, 0.032
+19890623, 1.41, -0.97, -0.38, 0.032
+19890626, -0.29, 0.10, 0.24, 0.032
+19890627, 0.50, -0.16, 0.04, 0.032
+19890628, -0.70, 0.15, 0.31, 0.032
+19890629, -1.83, 0.27, 0.68, 0.032
+19890630, -0.53, 0.10, 0.38, 0.032
+19890703, 0.33, -0.28, -0.11, 0.035
+19890705, 0.31, -0.23, -0.04, 0.035
+19890706, 0.36, 0.44, 0.00, 0.035
+19890707, 0.91, -0.46, -0.32, 0.035
+19890710, 0.52, -0.31, 0.06, 0.035
+19890711, 0.48, -0.31, -0.09, 0.035
+19890712, 0.30, 0.13, 0.01, 0.035
+19890713, 0.06, 0.11, -0.07, 0.035
+19890714, 0.37, -0.48, 0.18, 0.035
+19890717, 0.19, 0.07, -0.34, 0.035
+19890718, -0.31, 0.21, -0.02, 0.035
+19890719, 1.09, -0.47, -0.63, 0.035
+19890720, -0.58, 0.42, 0.04, 0.035
+19890721, 0.42, -0.48, -0.24, 0.035
+19890724, -0.59, 0.14, -0.03, 0.035
+19890725, 0.02, -0.07, -0.02, 0.035
+19890726, 1.00, -0.75, -0.46, 0.035
+19890727, 1.01, -0.52, -0.60, 0.035
+19890728, 0.10, -0.14, -0.03, 0.035
+19890731, 0.94, -0.82, 0.08, 0.035
+19890801, -0.50, 0.29, 0.44, 0.032
+19890802, 0.18, -0.09, 0.07, 0.032
+19890803, 0.23, 0.33, -0.06, 0.032
+19890804, -0.22, 0.29, 0.20, 0.032
+19890807, 1.27, -0.73, -0.02, 0.032
+19890808, 0.08, 0.08, 0.00, 0.032
+19890809, -0.47, 0.63, 0.04, 0.032
+19890810, 0.36, 0.01, 0.16, 0.032
+19890811, -0.80, 0.57, 0.08, 0.032
+19890814, -0.50, -0.01, 0.00, 0.032
+19890815, 0.33, -0.35, 0.15, 0.032
+19890816, 0.19, -0.24, -0.02, 0.032
+19890817, -0.27, 0.12, -0.21, 0.032
+19890818, 0.31, -0.21, -0.05, 0.032
+19890821, -1.28, 0.65, 0.20, 0.032
+19890822, 0.01, -0.12, -0.45, 0.032
+19890823, 0.88, -0.33, -0.18, 0.032
+19890824, 1.68, -1.01, -0.22, 0.032
+19890825, -0.16, 0.27, 0.08, 0.032
+19890828, 0.30, -0.34, -0.01, 0.032
+19890829, -0.50, 0.46, 0.16, 0.032
+19890830, 0.24, 0.03, 0.17, 0.032
+19890831, 0.13, 0.12, 0.20, 0.032
+19890901, 0.59, -0.37, -0.02, 0.033
+19890905, -0.22, 0.22, -0.05, 0.033
+19890906, -0.85, 0.46, 0.18, 0.033
+19890907, -0.18, 0.35, 0.27, 0.033
+19890908, 0.09, 0.30, -0.02, 0.033
+19890911, -0.29, -0.22, 0.14, 0.033
+19890912, 0.33, -0.05, -0.14, 0.033
+19890913, -0.77, 0.67, 0.15, 0.033
+19890914, -0.74, 0.09, -0.21, 0.033
+19890915, 0.19, -0.77, 0.05, 0.033
+19890918, 0.34, -0.50, -0.16, 0.033
+19890919, 0.06, -0.06, -0.13, 0.033
+19890920, -0.09, -0.03, 0.02, 0.033
+19890921, -0.11, 0.16, -0.15, 0.033
+19890922, 0.26, -0.14, 0.02, 0.033
+19890925, -0.71, 0.30, -0.03, 0.033
+19890926, 0.12, 0.21, -0.22, 0.033
+19890927, 0.11, -0.21, -0.52, 0.033
+19890928, 0.88, -0.28, -0.54, 0.033
+19890929, 0.26, 0.12, 0.03, 0.033
+19891002, 0.45, -0.12, 0.04, 0.031
+19891003, 0.95, -0.65, -0.29, 0.031
+19891004, 0.53, -0.42, -0.12, 0.031
+19891005, 0.06, 0.09, 0.13, 0.031
+19891006, 0.47, -0.26, -0.23, 0.031
+19891009, 0.20, -0.02, -0.18, 0.031
+19891010, -0.20, -0.12, -0.11, 0.031
+19891011, -0.60, 0.19, 0.09, 0.031
+19891012, -0.41, 0.23, -0.12, 0.031
+19891013, -5.52, 2.08, 0.97, 0.031
+19891016, 1.64, -3.49, -0.63, 0.031
+19891017, -0.43, 0.24, -0.26, 0.031
+19891018, 0.25, 0.32, -0.37, 0.031
+19891019, 1.52, -0.22, -0.65, 0.031
+19891020, -0.05, -0.05, 0.10, 0.031
+19891023, -0.67, 0.00, -0.05, 0.031
+19891024, -0.56, -0.80, -0.15, 0.031
+19891025, -0.26, 0.52, 0.17, 0.031
+19891026, -1.14, 0.26, 0.19, 0.031
+19891027, -0.99, -0.16, 0.42, 0.031
+19891030, -0.06, -0.43, 0.02, 0.031
+19891031, 1.34, -0.75, -0.19, 0.031
+19891101, 0.29, -0.09, 0.24, 0.033
+19891102, -0.66, 0.34, 0.30, 0.033
+19891103, -0.20, 0.28, 0.04, 0.033
+19891106, -1.36, 0.44, -0.01, 0.033
+19891107, 0.49, -0.56, 0.03, 0.033
+19891108, 0.97, -0.12, -0.70, 0.033
+19891109, -0.34, 0.38, -0.07, 0.033
+19891110, 0.59, -0.28, -0.39, 0.033
+19891113, 0.15, -0.23, -0.08, 0.033
+19891114, -0.47, 0.16, 0.28, 0.033
+19891115, 0.58, -0.40, -0.12, 0.033
+19891116, 0.02, -0.09, -0.08, 0.033
+19891117, 0.28, 0.06, -0.30, 0.033
+19891120, -0.64, 0.04, -0.08, 0.033
+19891121, -0.08, -0.23, -0.02, 0.033
+19891122, 0.53, -0.27, -0.22, 0.033
+19891124, 0.54, -0.25, -0.16, 0.033
+19891127, 0.37, -0.32, 0.23, 0.033
+19891128, 0.08, 0.17, 0.14, 0.033
+19891129, -0.56, 0.22, 0.05, 0.033
+19891130, 0.44, -0.51, -0.21, 0.033
+19891201, 1.06, -0.96, 0.01, 0.030
+19891204, 0.26, -0.28, 0.06, 0.030
+19891205, -0.38, 0.29, 0.16, 0.030
+19891206, -0.31, 0.38, 0.21, 0.030
+19891207, -0.25, 0.05, -0.27, 0.030
+19891208, 0.16, -0.13, 0.20, 0.030
+19891211, -0.14, -0.36, 0.05, 0.030
+19891212, 0.59, -0.80, 0.31, 0.030
+19891213, 0.25, -0.11, 0.14, 0.030
+19891214, -0.54, -0.21, 0.16, 0.030
+19891215, -0.39, -0.17, -0.27, 0.030
+19891218, -1.74, 0.13, 0.31, 0.030
+19891219, -0.44, -0.26, -0.06, 0.030
+19891220, 0.09, -0.05, 0.31, 0.030
+19891221, 0.53, 0.00, -0.06, 0.030
+19891222, 0.80, -0.02, -0.33, 0.030
+19891226, -0.09, 0.21, 0.06, 0.030
+19891227, 0.50, -0.16, -0.14, 0.030
+19891228, 0.46, -0.26, -0.32, 0.030
+19891229, 0.77, 0.33, -0.28, 0.030
+19900102, 1.44, -0.68, -0.06, 0.026
+19900103, -0.06, 0.74, -0.31, 0.026
+19900104, -0.71, 0.43, -0.25, 0.026
+19900105, -0.85, 0.76, -0.23, 0.026
+19900108, 0.30, -0.42, -0.24, 0.026
+19900109, -1.01, 0.87, 0.09, 0.026
+19900110, -0.76, -0.05, 0.32, 0.026
+19900111, 0.23, -0.22, 0.09, 0.026
+19900112, -2.33, 0.34, 0.39, 0.026
+19900115, -0.95, 0.03, 0.46, 0.026
+19900116, 0.92, -0.79, -0.41, 0.026
+19900117, -0.76, 0.96, -0.27, 0.026
+19900118, 0.05, -0.66, -0.04, 0.026
+19900119, 0.31, 0.10, 0.04, 0.026
+19900122, -2.31, 0.81, 0.50, 0.026
+19900123, -0.07, -0.47, 0.05, 0.026
+19900124, -0.44, -1.09, -0.36, 0.026
+19900125, -1.07, 1.00, 0.31, 0.026
+19900126, -0.36, -0.55, 0.45, 0.026
+19900129, -0.34, -0.69, 0.02, 0.026
+19900130, -0.90, -0.65, 0.59, 0.026
+19900131, 1.67, -1.22, -0.16, 0.026
+19900201, 0.08, 0.56, -0.03, 0.030
+19900202, 0.73, 0.31, -0.55, 0.030
+19900205, 0.38, 0.22, -0.28, 0.030
+19900206, -0.54, 0.62, 0.13, 0.030
+19900207, 1.07, -0.42, -0.27, 0.030
+19900208, -0.09, 0.29, -0.07, 0.030
+19900209, 0.24, -0.03, 0.08, 0.030
+19900212, -0.94, 0.52, 0.19, 0.030
+19900213, 0.14, -0.51, 0.14, 0.030
+19900214, 0.20, -0.12, 0.10, 0.030
+19900215, 0.78, -0.37, -0.05, 0.030
+19900216, -0.50, 0.52, 0.20, 0.030
+19900220, -1.35, 0.53, 0.35, 0.030
+19900221, -0.21, -0.49, 0.48, 0.030
+19900222, -0.36, 0.82, 0.00, 0.030
+19900223, -0.55, -0.21, 0.49, 0.030
+19900226, 1.00, -1.31, -0.12, 0.030
+19900227, 0.54, -0.10, -0.08, 0.030
+19900228, 0.53, 0.15, -0.12, 0.030
+19900301, 0.26, -0.04, -0.09, 0.029
+19900302, 0.80, -0.12, -0.26, 0.029
+19900305, -0.37, 0.56, -0.14, 0.029
+19900306, 1.07, -0.46, -0.40, 0.029
+19900307, -0.22, 0.65, -0.26, 0.029
+19900308, 0.84, -0.20, -0.52, 0.029
+19900309, -0.53, 0.47, 0.03, 0.029
+19900312, 0.15, -0.21, -0.04, 0.029
+19900313, -0.69, 0.48, 0.27, 0.029
+19900314, 0.23, 0.17, -0.35, 0.029
+19900315, 0.25, 0.04, -0.17, 0.029
+19900316, 0.90, -0.41, -0.60, 0.029
+19900319, 0.38, -0.24, -0.74, 0.029
+19900320, -0.55, 0.34, 0.20, 0.029
+19900321, -0.45, 0.44, -0.03, 0.029
+19900322, -1.22, 0.32, 0.37, 0.029
+19900323, 0.44, 0.10, -0.37, 0.029
+19900326, 0.17, 0.05, -0.12, 0.029
+19900327, 0.80, -0.71, -0.31, 0.029
+19900328, 0.09, -0.31, 0.55, 0.029
+19900329, -0.35, 0.17, 0.12, 0.029
+19900330, -0.18, 0.37, 0.02, 0.029
+19900402, -0.42, -0.40, -0.06, 0.034
+19900403, 1.25, -0.67, -0.50, 0.034
+19900404, -0.64, 0.20, 0.07, 0.034
+19900405, -0.15, 0.18, -0.41, 0.034
+19900406, -0.29, -0.08, -0.23, 0.034
+19900409, 0.21, -0.75, -0.23, 0.034
+19900410, 0.17, 0.05, -0.24, 0.034
+19900411, 0.01, 0.12, -0.30, 0.034
+19900412, 0.69, -0.34, -0.35, 0.034
+19900416, 0.08, -0.09, -0.07, 0.034
+19900417, -0.08, -0.06, 0.03, 0.034
+19900418, -1.07, 0.46, 0.20, 0.034
+19900419, -0.75, 0.39, 0.32, 0.034
+19900420, -0.89, 0.31, -0.23, 0.034
+19900423, -1.17, 0.06, 0.24, 0.034
+19900424, -0.28, 0.16, -0.02, 0.034
+19900425, 0.45, -0.25, -0.19, 0.034
+19900426, 0.15, -0.02, -0.36, 0.034
+19900427, -1.08, 0.51, 0.32, 0.034
+19900430, 0.45, -0.31, -0.65, 0.034
+19900501, 0.42, -0.18, -0.08, 0.031
+19900502, 0.55, -0.37, -0.13, 0.031
+19900503, 0.31, -0.02, 0.06, 0.031
+19900504, 0.75, -0.36, -0.13, 0.031
+19900507, 0.56, -0.35, -0.15, 0.031
+19900508, 0.37, -0.47, 0.12, 0.031
+19900509, 0.11, -0.17, 0.14, 0.031
+19900510, 0.39, -0.06, -0.07, 0.031
+19900511, 2.01, -1.17, -0.09, 0.031
+19900514, 0.79, -0.38, -0.15, 0.031
+19900515, -0.08, -0.01, -0.06, 0.031
+19900516, -0.11, 0.12, 0.03, 0.031
+19900517, 0.19, 0.46, -0.28, 0.031
+19900518, 0.09, 0.26, -0.51, 0.031
+19900521, 0.94, -0.15, -0.68, 0.031
+19900522, 0.15, 0.18, -0.56, 0.031
+19900523, 0.22, 0.15, -0.57, 0.031
+19900524, -0.08, 0.33, -0.32, 0.031
+19900525, -0.94, 0.55, 0.55, 0.031
+19900529, 1.35, -0.95, -0.38, 0.031
+19900530, 0.07, 0.09, -0.04, 0.031
+19900531, 0.07, 0.05, -0.19, 0.031
+19900601, 0.53, -0.06, 0.10, 0.030
+19900604, 1.11, -0.64, 0.26, 0.030
+19900605, -0.17, 0.11, 0.34, 0.030
+19900606, -0.36, 0.30, 0.18, 0.030
+19900607, -0.47, 0.39, 0.02, 0.030
+19900608, -1.10, 0.61, 0.16, 0.030
+19900611, 0.67, -0.50, -0.03, 0.030
+19900612, 1.10, -0.65, -0.67, 0.030
+19900613, -0.26, 0.78, -0.49, 0.030
+19900614, -0.53, 0.30, -0.16, 0.030
+19900615, -0.10, 0.23, -0.32, 0.030
+19900618, -1.47, 0.22, 0.29, 0.030
+19900619, 0.29, -0.44, -0.06, 0.030
+19900620, 0.06, -0.10, -0.12, 0.030
+19900621, 0.26, -0.21, -0.47, 0.030
+19900622, -1.07, 1.08, 0.01, 0.030
+19900625, -0.86, 0.30, -0.07, 0.030
+19900626, -0.15, -0.01, -0.05, 0.030
+19900627, 0.65, -0.58, -0.14, 0.030
+19900628, 0.66, 0.02, -0.73, 0.030
+19900629, 0.17, 0.26, 0.00, 0.030
+19900702, 0.30, -0.42, -0.12, 0.032
+19900703, 0.13, -0.16, -0.34, 0.032
+19900705, -1.04, 0.48, 0.02, 0.032
+19900706, 0.61, -0.41, -0.25, 0.032
+19900709, 0.22, -0.33, -0.15, 0.032
+19900710, -0.67, 0.47, -0.25, 0.032
+19900711, 1.04, -0.40, -0.55, 0.032
+19900712, 1.02, -0.41, -0.54, 0.032
+19900713, 0.42, -0.13, -0.11, 0.032
+19900716, 0.37, -0.29, -0.45, 0.032
+19900717, -0.45, -0.29, 0.49, 0.032
+19900718, -0.92, 0.25, 0.43, 0.032
+19900719, 0.12, -0.65, 0.06, 0.032
+19900720, -0.87, 0.62, -0.03, 0.032
+19900723, -1.89, -0.48, 0.77, 0.032
+19900724, 0.00, 0.05, 0.13, 0.032
+19900725, 0.35, 0.04, -0.15, 0.032
+19900726, -0.25, 0.35, -0.03, 0.032
+19900727, -0.68, -0.03, 0.49, 0.032
+19900730, 0.26, -1.21, 0.31, 0.032
+19900731, 0.07, -0.38, 0.23, 0.032
+19900801, -0.20, -0.31, -0.09, 0.028
+19900802, -1.22, -0.06, 0.46, 0.028
+19900803, -1.84, -0.71, 0.64, 0.028
+19900806, -3.32, -0.14, 1.37, 0.028
+19900807, 0.17, -0.03, -0.81, 0.028
+19900808, 1.11, 0.00, -0.73, 0.028
+19900809, 0.63, 0.30, -0.96, 0.028
+19900810, -1.19, 0.21, 0.58, 0.028
+19900813, 0.71, -1.03, -0.31, 0.028
+19900814, 0.21, 0.18, -0.20, 0.028
+19900815, 0.25, -0.20, -0.39, 0.028
+19900816, -2.18, 0.46, 0.70, 0.028
+19900817, -1.55, -0.34, 0.80, 0.028
+19900820, -0.11, -0.94, 0.52, 0.028
+19900821, -2.00, -0.39, 0.75, 0.028
+19900822, -1.58, 0.27, 0.90, 0.028
+19900823, -3.24, -1.09, 1.58, 0.028
+19900824, 1.46, -0.35, -1.69, 0.028
+19900827, 3.20, 0.11, -1.85, 0.028
+19900828, 0.07, 0.48, -0.08, 0.028
+19900829, 0.74, -0.51, 0.23, 0.028
+19900830, -1.39, 0.94, 0.33, 0.028
+19900831, 0.95, -0.78, -0.21, 0.028
+19900904, 0.09, -0.29, -0.27, 0.031
+19900905, 0.35, 0.18, -0.17, 0.031
+19900906, -1.06, 0.45, 0.62, 0.031
+19900907, 0.79, -0.50, -0.16, 0.031
+19900910, -0.38, 0.53, 0.02, 0.031
+19900911, -0.19, -0.15, 0.05, 0.031
+19900912, 0.29, -0.39, -0.10, 0.031
+19900913, -1.11, 0.33, 0.23, 0.031
+19900914, -0.61, -0.10, -0.18, 0.031
+19900917, 0.18, -0.56, -0.14, 0.031
+19900918, 0.07, -0.65, -0.13, 0.031
+19900919, -0.57, 0.48, 0.47, 0.031
+19900920, -1.61, 0.18, 0.68, 0.031
+19900921, -0.20, -0.57, 0.14, 0.031
+19900924, -2.19, -0.30, 0.61, 0.031
+19900925, 1.03, -0.82, -0.78, 0.031
+19900926, -1.07, -0.33, 0.23, 0.031
+19900927, -1.51, -0.45, 0.76, 0.031
+19900928, 1.50, -1.00, -1.16, 0.031
+19901001, 2.74, -1.50, -1.23, 0.030
+19901002, 0.20, 0.47, 0.17, 0.030
+19901003, -1.16, 0.38, 0.31, 0.030
+19901004, 0.19, -0.72, 0.36, 0.030
+19901005, -0.46, -0.29, 0.33, 0.030
+19901008, 0.53, -0.54, 0.03, 0.030
+19901009, -2.54, 0.59, 0.78, 0.030
+19901010, -1.60, 0.13, 0.50, 0.030
+19901011, -1.76, -0.48, 0.85, 0.030
+19901012, 1.28, -1.04, -0.46, 0.030
+19901015, 0.91, -0.89, -0.18, 0.030
+19901016, -1.40, 0.49, 0.48, 0.030
+19901017, -0.02, -0.14, -0.43, 0.030
+19901018, 2.20, -0.71, -1.40, 0.030
+19901019, 1.77, -1.15, -0.48, 0.030
+19901022, 0.78, -0.98, -0.30, 0.030
+19901023, -0.52, 0.91, -0.17, 0.030
+19901024, -0.03, -0.06, 0.04, 0.030
+19901025, -0.66, 0.54, 0.15, 0.030
+19901026, -1.68, 0.53, 0.03, 0.030
+19901029, -0.96, -0.03, 0.37, 0.030
+19901030, 0.46, -1.18, -0.12, 0.030
+19901031, 0.02, -0.09, 0.41, 0.030
+19901101, 0.79, -0.75, 0.16, 0.027
+19901102, 1.55, -0.57, -0.32, 0.027
+19901105, 0.96, -0.13, -0.50, 0.027
+19901106, -0.71, 0.74, 0.23, 0.027
+19901107, -1.59, 0.86, 0.38, 0.027
+19901108, 0.44, -0.66, -0.17, 0.027
+19901109, 1.81, -0.94, -0.24, 0.027
+19901112, 1.92, -0.38, -0.69, 0.027
+19901113, -0.34, 0.69, -0.04, 0.027
+19901114, 0.82, 0.11, -0.18, 0.027
+19901115, -0.91, 0.67, 0.00, 0.027
+19901116, -0.05, -0.08, 0.36, 0.027
+19901119, 0.58, -0.29, -0.37, 0.027
+19901120, -1.09, 0.52, 0.01, 0.027
+19901121, 0.07, -0.18, -0.18, 0.027
+19901123, -0.25, 0.48, -0.11, 0.027
+19901126, 0.29, -0.49, 0.19, 0.027
+19901127, 0.68, 0.47, -0.79, 0.027
+19901128, 0.04, 0.37, 0.04, 0.027
+19901129, -0.39, 0.49, -0.30, 0.027
+19901130, 1.61, -0.67, -0.45, 0.027
+19901203, 0.68, -0.12, -0.23, 0.030
+19901204, 0.72, -0.23, 0.18, 0.030
+19901205, 1.18, 0.48, 0.20, 0.030
+19901206, -0.22, 0.54, -0.13, 0.030
+19901207, -0.39, 0.29, -0.09, 0.030
+19901210, 0.22, -0.47, -0.05, 0.030
+19901211, -0.61, 0.03, 0.23, 0.030
+19901212, 0.93, -0.45, -0.51, 0.030
+19901213, -0.11, 0.50, -0.42, 0.030
+19901214, -0.78, 0.23, 0.03, 0.030
+19901217, -0.40, -0.52, 0.06, 0.030
+19901218, 1.18, -0.70, 0.08, 0.030
+19901219, 0.07, 0.37, 0.15, 0.030
+19901220, 0.06, 0.12, -0.19, 0.030
+19901221, 0.30, -0.35, -0.10, 0.030
+19901224, -0.40, 0.05, 0.00, 0.030
+19901226, 0.24, -0.13, -0.09, 0.030
+19901227, -0.63, 0.48, 0.08, 0.030
+19901228, -0.02, -0.14, -0.14, 0.030
+19901231, 0.43, 0.79, -0.54, 0.030
+19910102, -0.95, 0.60, 0.78, 0.023
+19910103, -1.25, 0.27, 1.13, 0.023
+19910104, -0.24, 0.13, 0.40, 0.023
+19910107, -1.72, 0.33, 0.24, 0.023
+19910108, -0.29, -0.35, -0.03, 0.023
+19910109, -0.95, 0.51, 0.03, 0.023
+19910110, 0.94, -0.45, -0.50, 0.023
+19910111, 0.10, -0.07, -0.12, 0.023
+19910114, -1.01, -0.73, 0.16, 0.023
+19910115, 0.32, -0.40, -0.34, 0.023
+19910116, 1.00, 0.12, -0.95, 0.023
+19910117, 3.41, -1.00, -0.78, 0.023
+19910118, 0.93, -1.21, 0.04, 0.023
+19910121, -0.08, 0.48, -0.17, 0.023
+19910122, -0.65, 1.09, 0.27, 0.023
+19910123, 0.59, 0.54, -0.21, 0.023
+19910124, 1.45, 0.34, -0.49, 0.023
+19910125, 0.40, 0.79, -0.20, 0.023
+19910128, 0.14, 0.77, -0.12, 0.023
+19910129, 0.10, 0.72, -0.08, 0.023
+19910130, 1.52, 0.36, -0.43, 0.023
+19910131, 0.95, 0.68, -0.42, 0.023
+19910201, -0.03, 1.09, 0.32, 0.025
+19910204, 1.59, 0.53, 0.20, 0.025
+19910205, 1.05, 0.45, -0.33, 0.025
+19910206, 1.77, -0.46, -0.72, 0.025
+19910207, -0.44, -0.43, 0.60, 0.025
+19910208, 0.63, -0.52, -0.03, 0.025
+19910211, 2.37, -0.59, -0.01, 0.025
+19910212, -0.59, 0.75, 0.14, 0.025
+19910213, 0.89, 0.13, -0.10, 0.025
+19910214, -1.20, 0.89, 0.20, 0.025
+19910215, 1.20, -0.19, -0.20, 0.025
+19910219, 0.13, -0.03, -0.48, 0.025
+19910220, -1.06, 0.32, 0.17, 0.025
+19910221, -0.03, 0.54, -0.11, 0.025
+19910222, 0.23, 0.33, -0.67, 0.025
+19910225, 0.40, 0.32, -0.46, 0.025
+19910226, -1.08, 0.21, 0.32, 0.025
+19910227, 1.17, -0.49, -0.19, 0.025
+19910228, 0.02, 0.79, 0.87, 0.025
+19910301, 0.86, -0.13, -0.18, 0.022
+19910304, 0.03, 1.39, -0.04, 0.022
+19910305, 1.91, 0.16, -0.80, 0.022
+19910306, -0.14, 0.35, 0.07, 0.022
+19910307, 0.00, 0.29, -0.35, 0.022
+19910308, -0.23, 0.49, -0.16, 0.022
+19910311, -0.59, -0.32, 0.45, 0.022
+19910312, -0.87, -0.22, 1.03, 0.022
+19910313, 1.10, -0.49, -0.45, 0.022
+19910314, -0.16, 0.43, -0.01, 0.022
+19910315, -0.19, -0.52, -0.12, 0.022
+19910318, -0.27, 0.18, -0.04, 0.022
+19910319, -1.29, 0.50, 0.14, 0.022
+19910320, 0.36, 0.59, -0.48, 0.022
+19910321, -0.26, 0.52, 0.06, 0.022
+19910322, 0.16, -0.25, 0.26, 0.022
+19910325, 0.67, -0.19, 0.17, 0.022
+19910326, 1.67, -0.57, -0.35, 0.022
+19910327, -0.01, 0.78, -0.42, 0.022
+19910328, -0.09, 0.72, -0.01, 0.022
+19910401, -0.85, 0.65, -0.14, 0.024
+19910402, 1.98, -0.67, -0.72, 0.024
+19910403, 0.09, 0.74, -0.05, 0.024
+19910404, 0.29, 0.14, -0.21, 0.024
+19910405, -0.97, 0.77, 0.30, 0.024
+19910408, 0.59, -0.60, -0.12, 0.024
+19910409, -1.08, 0.79, 0.30, 0.024
+19910410, -0.20, -0.02, 0.25, 0.024
+19910411, 1.17, -0.24, 0.01, 0.024
+19910412, 0.60, -0.01, -0.21, 0.024
+19910415, 0.17, -0.23, 0.12, 0.024
+19910416, 1.44, -0.60, -0.36, 0.024
+19910417, 0.78, 0.00, -0.06, 0.024
+19910418, -0.51, -0.10, 0.82, 0.024
+19910419, -1.04, 0.44, 0.63, 0.024
+19910422, -0.98, -0.37, -0.19, 0.024
+19910423, 0.13, -0.05, 0.14, 0.024
+19910424, 0.27, 0.01, 0.10, 0.024
+19910425, -0.79, 0.74, -0.18, 0.024
+19910426, -0.14, -0.19, 0.21, 0.024
+19910429, -1.31, 0.37, 0.33, 0.024
+19910430, 0.18, -1.12, 0.44, 0.024
+19910501, 1.21, -0.54, 0.05, 0.021
+19910502, 0.13, 0.57, -0.40, 0.021
+19910503, 0.09, 0.15, -0.11, 0.021
+19910506, -0.18, 0.06, -0.05, 0.021
+19910507, -0.54, 0.71, -0.05, 0.021
+19910508, 0.21, 0.01, 0.07, 0.021
+19910509, 1.16, -0.41, -0.48, 0.021
+19910510, -1.66, 0.85, 0.26, 0.021
+19910513, 0.17, -0.24, -0.20, 0.021
+19910514, -1.24, 0.38, 0.11, 0.021
+19910515, -1.05, -0.78, 0.88, 0.021
+19910516, 0.94, -0.33, -0.24, 0.021
+19910517, -0.03, -0.13, 0.06, 0.021
+19910520, -0.04, -0.20, -0.07, 0.021
+19910521, 0.74, -0.10, -0.39, 0.021
+19910522, 0.25, -0.13, -0.04, 0.021
+19910523, -0.14, 0.47, -0.16, 0.021
+19910524, 0.63, -0.26, 0.03, 0.021
+19910528, 1.04, -0.62, -0.17, 0.021
+19910529, 0.26, 0.14, 0.44, 0.021
+19910530, 1.01, 0.02, -0.29, 0.021
+19910531, 0.69, 0.03, 0.21, 0.021
+19910603, -0.29, 0.43, 0.42, 0.021
+19910604, -0.05, 0.11, -0.10, 0.021
+19910605, -0.56, 0.70, 0.40, 0.021
+19910606, -0.38, 0.23, 0.45, 0.021
+19910607, -0.95, 0.38, 0.11, 0.021
+19910610, -0.26, -0.04, 0.04, 0.021
+19910611, 0.44, -0.56, -0.02, 0.021
+19910612, -1.11, -0.01, 0.03, 0.021
+19910613, 0.21, -0.11, -0.06, 0.021
+19910614, 1.06, -0.57, -0.25, 0.021
+19910617, -0.41, 0.24, 0.20, 0.021
+19910618, -0.40, 0.12, 0.18, 0.021
+19910619, -0.97, 0.06, 0.01, 0.021
+19910620, 0.01, -0.13, -0.09, 0.021
+19910621, 0.43, -0.52, 0.06, 0.021
+19910624, -1.73, 0.09, 0.36, 0.021
+19910625, -0.22, -0.36, 0.01, 0.021
+19910626, 0.11, -0.44, -0.04, 0.021
+19910627, 0.70, -0.39, -0.39, 0.021
+19910628, -0.64, 0.83, -0.02, 0.021
+19910701, 1.62, -1.11, -0.35, 0.022
+19910702, -0.12, -0.05, -0.08, 0.022
+19910703, -0.98, 0.27, -0.09, 0.022
+19910705, 0.17, -0.16, -0.11, 0.022
+19910708, 0.82, -0.62, -0.21, 0.022
+19910709, -0.13, 0.72, -0.11, 0.022
+19910710, 0.01, 0.60, -0.16, 0.022
+19910711, 0.30, 0.01, -0.24, 0.022
+19910712, 0.75, -0.33, 0.00, 0.022
+19910715, 0.60, -0.07, 0.22, 0.022
+19910716, -0.21, 0.12, 0.51, 0.022
+19910717, -0.05, 0.16, -0.03, 0.022
+19910718, 0.90, -0.21, 0.02, 0.022
+19910719, -0.24, 0.49, 0.09, 0.022
+19910722, -0.37, 0.17, 0.12, 0.022
+19910723, -0.91, 0.16, 0.24, 0.022
+19910724, -0.31, -0.19, 0.14, 0.022
+19910725, 0.55, -0.50, 0.05, 0.022
+19910726, 0.06, 0.01, -0.04, 0.022
+19910729, 0.47, -0.48, -0.31, 0.022
+19910730, 0.86, -0.29, -0.47, 0.022
+19910731, 0.39, 0.36, -0.43, 0.022
+19910801, -0.12, 0.24, -0.16, 0.021
+19910802, 0.09, 0.12, -0.05, 0.021
+19910805, -0.53, 0.20, 0.20, 0.021
+19910806, 1.22, -0.93, 0.04, 0.021
+19910807, 0.09, 0.10, -0.07, 0.021
+19910808, -0.16, 0.26, -0.02, 0.021
+19910809, -0.43, 0.63, -0.14, 0.021
+19910812, 0.20, -0.36, 0.58, 0.021
+19910813, 0.42, -0.11, 0.68, 0.021
+19910814, 0.21, 0.26, -0.16, 0.021
+19910815, -0.16, 0.24, -0.43, 0.021
+19910816, -0.85, 0.51, -0.03, 0.021
+19910819, -2.38, -0.51, -0.19, 0.021
+19910820, 0.72, 0.19, -0.10, 0.021
+19910821, 2.76, -0.39, -0.34, 0.021
+19910822, 0.20, 0.37, -0.11, 0.021
+19910823, 0.62, -0.23, 0.26, 0.021
+19910826, -0.06, 0.26, -0.01, 0.021
+19910827, -0.12, 0.28, -0.47, 0.021
+19910828, 0.85, -0.25, 0.01, 0.021
+19910829, -0.02, 0.20, -0.05, 0.021
+19910830, -0.15, 0.45, -0.16, 0.021
+19910903, -0.80, 0.11, 0.12, 0.023
+19910904, -0.57, 0.18, -0.04, 0.023
+19910905, -0.27, 0.26, -0.05, 0.023
+19910906, -0.03, 0.03, 0.12, 0.023
+19910909, -0.13, 0.15, -0.11, 0.023
+19910910, -1.04, -0.09, 0.10, 0.023
+19910911, 0.18, 0.17, -0.19, 0.023
+19910912, 0.65, 0.02, -0.55, 0.023
+19910913, -0.92, 0.65, 0.17, 0.023
+19910916, 0.42, -0.55, -0.23, 0.023
+19910917, -0.05, -0.04, -0.12, 0.023
+19910918, 0.37, -0.04, -0.16, 0.023
+19910919, 0.32, 0.38, -0.25, 0.023
+19910920, 0.23, 0.44, -0.28, 0.023
+19910923, -0.47, 0.10, -0.07, 0.023
+19910924, 0.44, -0.36, 0.02, 0.023
+19910925, -0.17, 0.02, -0.02, 0.023
+19910926, -0.03, 0.12, 0.42, 0.023
+19910927, -0.21, -0.08, 0.09, 0.023
+19910930, 0.53, 0.11, -0.04, 0.023
+19911001, 0.27, -0.06, -0.61, 0.018
+19911002, -0.29, 0.00, 0.15, 0.018
+19911003, -0.94, 0.03, 0.39, 0.018
+19911004, -0.61, 0.40, 0.11, 0.018
+19911007, -0.60, -0.39, 0.18, 0.018
+19911008, 0.26, -0.05, -0.06, 0.018
+19911009, -0.89, 0.60, -0.30, 0.018
+19911010, 0.73, -0.74, 0.07, 0.018
+19911011, 0.24, 0.06, 0.19, 0.018
+19911014, 1.21, -0.48, -0.24, 0.018
+19911015, 1.23, -0.08, -0.09, 0.018
+19911016, 0.64, 0.75, -0.10, 0.018
+19911017, -0.29, 0.19, -0.02, 0.018
+19911018, 0.18, 0.10, 0.16, 0.018
+19911021, -0.60, 0.46, -0.04, 0.018
+19911022, -0.43, 0.50, -0.17, 0.018
+19911023, -0.05, -0.03, -0.27, 0.018
+19911024, -0.81, -0.31, 0.38, 0.018
+19911025, -0.30, -0.28, 0.35, 0.018
+19911028, 1.18, -0.76, -0.30, 0.018
+19911029, 0.57, 0.05, 0.04, 0.018
+19911030, 0.52, 0.17, 0.23, 0.018
+19911031, 0.09, 0.75, -0.44, 0.018
+19911101, -0.31, 0.16, -0.29, 0.020
+19911104, -0.34, -0.13, 0.02, 0.020
+19911105, -0.26, 0.32, 0.01, 0.020
+19911106, 0.28, -0.24, 0.28, 0.020
+19911107, 0.92, -0.21, -0.20, 0.020
+19911108, 0.01, 0.41, -0.19, 0.020
+19911111, 0.15, 0.34, -0.67, 0.020
+19911112, 0.87, -0.19, -0.23, 0.020
+19911113, 0.12, -0.27, 0.09, 0.020
+19911114, -0.11, -0.11, -0.08, 0.020
+19911115, -3.55, 0.36, 1.06, 0.020
+19911118, 0.50, -0.51, -0.89, 0.020
+19911119, -1.60, -0.70, 0.32, 0.020
+19911120, -0.13, 0.54, -0.08, 0.020
+19911121, 0.43, -0.13, -0.38, 0.020
+19911122, -0.95, 0.32, -0.29, 0.020
+19911125, -0.33, -0.38, 0.08, 0.020
+19911126, 0.50, -0.94, 0.09, 0.020
+19911127, -0.22, 0.23, -0.33, 0.020
+19911129, -0.18, 0.66, -0.38, 0.020
+19911202, 1.38, -1.34, -0.61, 0.018
+19911203, 0.07, 0.36, -0.49, 0.018
+19911204, -0.12, 0.45, -0.58, 0.018
+19911205, -0.55, 0.35, -0.49, 0.018
+19911206, 0.37, 0.01, -0.37, 0.018
+19911209, -0.23, -0.12, -0.36, 0.018
+19911210, -0.12, -0.39, -0.26, 0.018
+19911211, -0.19, -0.42, 0.12, 0.018
+19911212, 0.92, -0.45, 0.12, 0.018
+19911213, 0.72, 0.18, 0.05, 0.018
+19911216, 0.16, 0.68, -0.82, 0.018
+19911217, -0.50, 0.19, -0.82, 0.018
+19911218, 0.11, -0.22, -0.34, 0.018
+19911219, -0.40, -0.23, -0.01, 0.018
+19911220, 0.99, -1.28, 0.61, 0.018
+19911223, 2.28, -1.41, 0.74, 0.018
+19911224, 0.81, 0.05, 0.57, 0.018
+19911226, 1.44, 0.22, -0.03, 0.018
+19911227, 0.58, 0.62, -0.40, 0.018
+19911230, 2.04, 0.14, -0.37, 0.018
+19911231, 0.63, 0.55, 0.12, 0.018
+19920102, -0.10, -0.10, 0.52, 0.015
+19920103, 0.55, 0.51, 0.15, 0.015
+19920106, -0.01, 1.01, -0.01, 0.015
+19920107, 0.06, 0.72, -0.09, 0.015
+19920108, 0.38, 0.91, -0.69, 0.015
+19920109, 0.23, 1.11, -0.68, 0.015
+19920110, -0.63, 0.07, 0.48, 0.015
+19920113, -0.14, 0.54, -0.04, 0.015
+19920114, 1.32, -0.14, 0.28, 0.015
+19920115, 0.31, 0.31, 1.58, 0.015
+19920116, -0.62, 0.45, 1.92, 0.015
+19920117, 0.07, 0.47, -0.22, 0.015
+19920120, -0.66, 0.27, 0.50, 0.015
+19920121, -1.15, -0.65, 0.35, 0.015
+19920122, 1.39, 0.02, -0.82, 0.015
+19920123, -0.43, 0.85, 0.05, 0.015
+19920124, 0.14, 0.23, -0.07, 0.015
+19920127, -0.15, -0.09, 1.07, 0.015
+19920128, 0.00, -0.05, 0.66, 0.015
+19920129, -1.02, 0.56, -0.12, 0.015
+19920130, 0.43, 0.33, -0.33, 0.015
+19920131, -0.51, 0.84, -0.12, 0.015
+19920203, 0.25, -0.02, 0.35, 0.015
+19920204, 1.01, -0.06, -0.03, 0.015
+19920205, 0.24, 0.52, 0.04, 0.015
+19920206, 0.04, 0.19, 0.61, 0.015
+19920207, -0.59, 0.47, 0.23, 0.015
+19920210, 0.46, -0.42, 0.73, 0.015
+19920211, 0.02, 0.03, 0.46, 0.015
+19920212, 0.89, 0.24, -0.10, 0.015
+19920213, -0.83, 0.22, 0.51, 0.015
+19920214, -0.23, 0.02, 0.87, 0.015
+19920218, -1.20, 0.19, 1.82, 0.015
+19920219, -0.01, -1.03, 0.94, 0.015
+19920220, 1.28, -0.03, -0.14, 0.015
+19920221, -0.52, 0.38, 0.05, 0.015
+19920224, -0.05, -0.54, 0.16, 0.015
+19920225, -0.44, -0.13, -0.41, 0.015
+19920226, 1.19, 0.05, -0.42, 0.015
+19920227, -0.13, 0.59, 0.21, 0.015
+19920228, -0.27, 0.17, 0.28, 0.015
+19920302, 0.09, 0.16, 0.30, 0.015
+19920303, 0.03, 0.04, 0.45, 0.015
+19920304, -0.74, 0.50, 0.29, 0.015
+19920305, -0.88, -0.39, 0.02, 0.015
+19920306, -0.56, -0.08, -0.22, 0.015
+19920309, 0.15, -0.31, 0.22, 0.015
+19920310, 0.55, 0.18, -0.11, 0.015
+19920311, -0.73, 0.05, 0.13, 0.015
+19920312, -0.13, -0.35, -0.14, 0.015
+19920313, 0.44, -0.13, 0.02, 0.015
+19920316, 0.04, -0.37, 0.18, 0.015
+19920317, 0.74, -0.30, 0.02, 0.015
+19920318, -0.02, 0.52, 0.79, 0.015
+19920319, 0.17, -0.13, 0.64, 0.015
+19920320, 0.18, -0.33, 0.31, 0.015
+19920323, -0.29, 0.03, -0.14, 0.015
+19920324, -0.28, -0.05, -0.03, 0.015
+19920325, -0.14, 0.34, 0.05, 0.015
+19920326, -0.11, -0.40, 0.29, 0.015
+19920327, -1.09, 0.03, 0.10, 0.015
+19920330, -0.21, -0.32, 0.39, 0.015
+19920331, 0.12, 0.29, 0.10, 0.015
+19920401, 0.02, -0.59, -0.24, 0.015
+19920402, -1.00, 0.06, 0.16, 0.015
+19920403, 0.00, -0.62, -0.39, 0.015
+19920406, 0.91, -0.60, -0.01, 0.015
+19920407, -1.83, -0.19, 0.84, 0.015
+19920408, -1.08, -0.53, 0.19, 0.015
+19920409, 1.63, 0.11, -0.68, 0.015
+19920410, 0.73, -0.22, 0.21, 0.015
+19920413, 0.45, -0.39, -0.17, 0.015
+19920414, 1.39, -0.60, 0.53, 0.015
+19920415, 0.82, -0.47, 0.34, 0.015
+19920416, -0.31, -0.85, 1.37, 0.015
+19920420, -1.52, -0.47, 1.18, 0.015
+19920421, -0.13, -0.35, 0.58, 0.015
+19920422, -0.01, 0.01, 0.61, 0.015
+19920423, 0.22, -0.51, 0.43, 0.015
+19920424, -0.51, 0.68, -0.05, 0.015
+19920427, -0.22, -0.50, -0.16, 0.015
+19920428, -0.09, -0.89, 0.44, 0.015
+19920429, 0.80, 0.12, -0.15, 0.015
+19920430, 0.88, 0.64, -0.72, 0.015
+19920501, -0.45, 0.59, -0.08, 0.014
+19920504, 1.02, -0.44, -0.36, 0.014
+19920505, 0.16, 0.19, 0.03, 0.014
+19920506, 0.04, 0.30, 0.18, 0.014
+19920507, -0.19, 0.14, 0.22, 0.014
+19920508, -0.03, -0.22, 0.27, 0.014
+19920511, 0.51, -0.13, -0.09, 0.014
+19920512, -0.50, 0.12, 0.57, 0.014
+19920513, -0.04, -0.19, 0.59, 0.014
+19920514, -0.81, -0.02, 0.21, 0.014
+19920515, -0.59, 0.35, -0.11, 0.014
+19920518, 0.50, -0.40, -0.11, 0.014
+19920519, 0.72, -0.64, 0.02, 0.014
+19920520, -0.06, 0.33, 0.05, 0.014
+19920521, -0.63, 0.47, 0.18, 0.014
+19920522, 0.27, 0.04, -0.01, 0.014
+19920526, -0.70, 0.03, -0.05, 0.014
+19920527, 0.22, -0.15, 0.13, 0.014
+19920528, 0.88, -0.58, -0.50, 0.014
+19920529, 0.01, 0.63, 0.05, 0.014
+19920601, 0.45, -0.23, 0.01, 0.015
+19920602, -0.62, 0.89, 0.39, 0.015
+19920603, 0.14, -0.14, 0.30, 0.015
+19920604, -0.34, 0.15, 0.71, 0.015
+19920605, -0.08, -0.19, 0.21, 0.015
+19920608, -0.17, -0.33, 0.56, 0.015
+19920609, -0.86, -0.26, 0.59, 0.015
+19920610, -0.71, -0.09, 0.40, 0.015
+19920611, 0.20, -0.79, -0.06, 0.015
+19920612, 0.25, 0.09, -0.12, 0.015
+19920615, -0.02, -0.43, 0.23, 0.015
+19920616, -0.49, -0.26, 0.60, 0.015
+19920617, -1.55, -0.28, 0.10, 0.015
+19920618, -0.43, -0.59, 0.03, 0.015
+19920619, 0.65, -0.21, -0.28, 0.015
+19920622, -0.27, -0.70, -0.37, 0.015
+19920623, 0.29, 0.03, -0.08, 0.015
+19920624, -0.13, -0.27, 0.44, 0.015
+19920625, -0.17, -0.02, 0.14, 0.015
+19920626, 0.05, -0.08, 0.18, 0.015
+19920629, 1.34, -0.32, -0.48, 0.015
+19920630, 0.14, 0.84, 0.07, 0.015
+19920701, 1.05, -0.32, -0.52, 0.014
+19920702, -0.30, -0.19, 0.51, 0.014
+19920706, 0.38, -0.63, -0.31, 0.014
+19920707, -1.04, 0.29, 1.02, 0.014
+19920708, 0.15, -0.51, 0.00, 0.014
+19920709, 0.96, -0.08, -0.14, 0.014
+19920710, 0.19, 0.35, -0.15, 0.014
+19920713, 0.16, 0.20, -0.11, 0.014
+19920714, 0.62, 0.08, -0.09, 0.014
+19920715, -0.12, 0.45, -0.32, 0.014
+19920716, 0.08, 0.07, -0.55, 0.014
+19920717, -0.52, -0.03, 0.14, 0.014
+19920720, -0.48, -0.36, 0.35, 0.014
+19920721, 0.16, 0.31, -0.41, 0.014
+19920722, -0.68, 0.23, 0.28, 0.014
+19920723, 0.24, -0.06, 0.05, 0.014
+19920724, -0.05, 0.03, 0.20, 0.014
+19920727, 0.04, 0.05, -0.08, 0.014
+19920728, 1.31, -0.59, -0.12, 0.014
+19920729, 1.05, -0.21, -0.34, 0.014
+19920730, 0.38, 0.07, 0.23, 0.014
+19920731, 0.16, 0.41, -0.18, 0.014
+19920803, 0.24, 0.10, -0.37, 0.012
+19920804, -0.11, 0.21, -0.12, 0.012
+19920805, -0.52, 0.17, 0.09, 0.012
+19920806, -0.35, 0.10, -0.23, 0.012
+19920807, -0.25, 0.20, -0.16, 0.012
+19920810, 0.01, -0.37, 0.15, 0.012
+19920811, -0.14, 0.00, 0.14, 0.012
+19920812, -0.31, 0.19, -0.08, 0.012
+19920813, 0.04, -0.13, -0.14, 0.012
+19920814, 0.49, -0.16, 0.06, 0.012
+19920817, 0.19, -0.12, -0.06, 0.012
+19920818, 0.08, -0.21, -0.06, 0.012
+19920819, -0.66, 0.24, -0.11, 0.012
+19920820, -0.05, -0.23, -0.06, 0.012
+19920821, -0.75, 0.27, 0.16, 0.012
+19920824, -1.16, -0.02, -0.24, 0.012
+19920825, 0.05, -0.43, -0.07, 0.012
+19920826, 0.49, -0.24, -0.22, 0.012
+19920827, 0.22, 0.33, -0.04, 0.012
+19920828, 0.23, -0.06, 0.08, 0.012
+19920831, -0.13, 0.05, 0.22, 0.012
+19920901, 0.45, -0.20, -0.40, 0.012
+19920902, 0.52, 0.17, -0.19, 0.012
+19920903, 0.11, 0.47, -0.47, 0.012
+19920904, -0.21, 0.03, -0.13, 0.012
+19920908, -0.59, 0.22, -0.24, 0.012
+19920909, 0.41, -0.21, -0.28, 0.012
+19920910, 0.83, -0.16, -0.17, 0.012
+19920911, 0.04, 0.37, -0.56, 0.012
+19920914, 1.39, -0.45, -0.37, 0.012
+19920915, -1.12, 0.51, 0.25, 0.012
+19920916, -0.08, -0.10, 0.10, 0.012
+19920917, 0.02, 0.03, -0.18, 0.012
+19920918, 0.52, -0.29, 0.27, 0.012
+19920921, -0.11, -0.09, 0.25, 0.012
+19920922, -1.04, 0.64, 0.32, 0.012
+19920923, -0.03, -0.02, -0.02, 0.012
+19920924, 0.36, -0.02, 0.04, 0.012
+19920925, -1.06, -0.10, 1.03, 0.012
+19920928, 0.30, -0.62, 0.32, 0.012
+19920929, 0.10, -0.11, 0.12, 0.012
+19920930, 0.38, 0.48, 0.10, 0.012
+19921001, -0.44, -0.33, 0.18, 0.010
+19921002, -1.28, 0.40, 0.30, 0.010
+19921005, -0.82, -0.88, 0.19, 0.010
+19921006, 0.16, 0.54, -0.19, 0.010
+19921007, -0.55, 0.74, -0.32, 0.010
+19921008, 0.81, -0.15, -0.59, 0.010
+19921009, -1.05, 0.61, 0.18, 0.010
+19921012, 0.94, -0.68, 0.18, 0.010
+19921013, 0.48, -0.06, -0.26, 0.010
+19921014, 0.02, 0.25, -0.17, 0.010
+19921015, 0.09, 0.13, -0.29, 0.010
+19921016, 0.45, -0.05, -0.31, 0.010
+19921019, 0.92, 0.23, -0.92, 0.010
+19921020, 0.16, 0.33, 0.22, 0.010
+19921021, 0.17, 0.29, -0.02, 0.010
+19921022, -0.17, -0.03, 0.11, 0.010
+19921023, -0.13, 0.39, 0.25, 0.010
+19921026, 0.82, -0.66, 0.35, 0.010
+19921027, 0.03, 0.00, -0.17, 0.010
+19921028, 0.48, 0.08, -0.27, 0.010
+19921029, 0.28, 0.09, -0.47, 0.010
+19921030, -0.32, 0.78, -0.06, 0.010
+19921102, 0.79, -0.44, -0.10, 0.012
+19921103, -0.50, 0.46, 0.25, 0.012
+19921104, -0.47, 0.44, 0.25, 0.012
+19921105, 0.44, 0.28, -0.36, 0.012
+19921106, 0.03, 0.41, -0.32, 0.012
+19921109, 0.35, 0.44, -0.59, 0.012
+19921110, 0.17, 0.57, -0.58, 0.012
+19921111, 0.86, 0.41, -0.77, 0.012
+19921112, 0.08, -0.21, 0.17, 0.012
+19921113, 0.00, 0.42, 0.02, 0.012
+19921116, -0.33, 0.18, 0.01, 0.012
+19921117, -0.40, -0.16, 0.53, 0.012
+19921118, 0.81, 0.01, -0.42, 0.012
+19921119, 0.23, 0.20, -0.33, 0.012
+19921120, 0.68, -0.07, -0.09, 0.012
+19921123, -0.28, 0.23, 0.21, 0.012
+19921124, 0.60, 0.07, -0.17, 0.012
+19921125, 0.41, 0.02, 0.33, 0.012
+19921127, 0.24, 0.00, 0.05, 0.012
+19921130, 0.34, 0.19, 0.51, 0.012
+19921201, -0.06, 0.16, 0.06, 0.013
+19921202, -0.21, 0.40, 0.20, 0.013
+19921203, 0.06, 0.31, 0.00, 0.013
+19921204, 0.51, 0.08, -0.16, 0.013
+19921207, 0.64, -0.06, -0.27, 0.013
+19921208, 0.32, -0.14, 0.16, 0.013
+19921209, -0.29, -0.13, 0.21, 0.013
+19921210, -0.32, -0.33, 0.33, 0.013
+19921211, -0.17, 0.09, 0.17, 0.013
+19921214, -0.17, 0.04, 0.19, 0.013
+19921215, -0.18, -0.35, 0.25, 0.013
+19921216, -0.37, -0.29, 0.46, 0.013
+19921217, 0.88, -0.04, -0.50, 0.013
+19921218, 1.10, -0.59, -0.17, 0.013
+19921221, -0.08, -0.09, 0.12, 0.013
+19921222, -0.06, -0.13, 0.59, 0.013
+19921223, -0.14, 0.34, 0.46, 0.013
+19921224, 0.19, 0.28, -0.01, 0.013
+19921228, -0.06, -0.26, 0.09, 0.013
+19921229, -0.05, 0.43, 0.13, 0.013
+19921230, 0.20, 0.41, 0.10, 0.013
+19921231, -0.18, 1.47, 0.00, 0.013
+19930104, -0.30, -0.30, 0.55, 0.012
+19930105, -0.19, 0.39, 0.25, 0.012
+19930106, 0.14, 0.42, 0.49, 0.012
+19930107, -0.77, 0.65, 0.17, 0.012
+19930108, -0.40, 0.02, -0.19, 0.012
+19930111, 0.41, -0.01, 0.30, 0.012
+19930112, 0.00, -0.29, 0.19, 0.012
+19930113, 0.50, 0.00, -0.11, 0.012
+19930114, 0.73, 0.22, -0.17, 0.012
+19930115, 0.36, 0.18, 0.33, 0.012
+19930118, 0.01, -0.03, 0.94, 0.012
+19930119, -0.27, 0.27, 1.32, 0.012
+19930120, -0.27, 0.62, 0.14, 0.012
+19930121, 0.43, -0.19, -0.05, 0.012
+19930122, 0.25, 0.21, 0.29, 0.012
+19930125, 0.74, 0.05, 0.14, 0.012
+19930126, 0.02, 0.40, 0.25, 0.012
+19930127, -0.54, -0.59, 0.65, 0.012
+19930128, -0.02, -0.28, 0.14, 0.012
+19930129, 0.11, 0.29, 0.09, 0.012
+19930201, 0.84, -0.54, 0.22, 0.012
+19930202, 0.14, 0.14, 0.27, 0.012
+19930203, 0.95, -0.10, 0.25, 0.012
+19930204, 0.55, -0.44, 0.70, 0.012
+19930205, -0.33, -0.45, 0.70, 0.012
+19930208, -0.21, 0.03, 0.39, 0.012
+19930209, -0.66, -0.07, 0.16, 0.012
+19930210, 0.20, -0.24, 0.01, 0.012
+19930211, 0.30, 0.18, 0.30, 0.012
+19930212, -0.61, 0.17, 0.36, 0.012
+19930216, -2.71, -0.72, 0.85, 0.012
+19930217, -0.43, -0.79, 0.60, 0.012
+19930218, -0.17, 0.72, 0.00, 0.012
+19930219, 0.41, -0.14, 1.47, 0.012
+19930222, -0.16, -1.25, 2.10, 0.012
+19930223, -0.07, -0.04, -0.47, 0.012
+19930224, 1.43, -0.60, -1.12, 0.012
+19930225, 0.42, 0.17, 0.03, 0.012
+19930226, 0.29, 0.52, -0.40, 0.012
+19930301, -0.14, 0.22, 0.04, 0.011
+19930302, 1.18, -0.57, -0.41, 0.011
+19930303, 0.49, 0.21, -0.03, 0.011
+19930304, -0.41, 0.39, 0.33, 0.011
+19930305, -0.17, 0.45, -0.01, 0.011
+19930308, 1.56, -0.99, -0.20, 0.011
+19930309, 0.09, 0.16, 0.41, 0.011
+19930310, 0.49, 0.02, -0.27, 0.011
+19930311, -0.36, 0.72, -0.12, 0.011
+19930312, -0.73, 0.43, -0.16, 0.011
+19930315, 0.31, 0.02, -0.12, 0.011
+19930316, -0.05, -0.14, 0.37, 0.011
+19930317, -0.73, 0.13, 0.62, 0.011
+19930318, 0.65, -0.72, 0.41, 0.011
+19930319, -0.49, -0.09, 0.71, 0.011
+19930322, -0.42, -0.49, 0.68, 0.011
+19930323, -0.06, -0.14, 0.11, 0.011
+19930324, -0.16, -0.03, -0.06, 0.011
+19930325, 0.66, -0.05, -0.24, 0.011
+19930326, -0.38, 0.58, 0.21, 0.011
+19930329, 0.45, -0.39, -0.17, 0.011
+19930330, 0.39, -0.12, -0.63, 0.011
+19930331, 0.15, 0.57, -0.30, 0.011
+19930401, -0.37, 0.13, 0.31, 0.011
+19930402, -2.01, 0.34, 0.79, 0.011
+19930405, 0.12, -0.62, 0.42, 0.011
+19930406, -0.43, -0.47, 1.07, 0.011
+19930407, 0.31, -0.25, 0.32, 0.011
+19930408, -0.22, 0.02, 0.76, 0.011
+19930412, 1.28, -0.99, -0.10, 0.011
+19930413, 0.33, 0.15, 0.56, 0.011
+19930414, -0.06, 0.05, 0.48, 0.011
+19930415, -0.16, -0.15, 0.37, 0.011
+19930416, -0.01, -0.34, 0.90, 0.011
+19930419, -0.37, 0.08, -0.42, 0.011
+19930420, -0.52, 0.21, -0.69, 0.011
+19930421, -0.17, 0.61, -0.81, 0.011
+19930422, -0.74, 0.92, -0.28, 0.011
+19930423, -0.59, 0.17, -0.21, 0.011
+19930426, -1.03, -0.29, -0.17, 0.011
+19930427, 0.91, -0.89, -0.63, 0.011
+19930428, 0.14, 0.18, 0.18, 0.011
+19930429, 0.19, 0.10, -0.07, 0.011
+19930430, 0.38, 0.35, -0.06, 0.011
+19930503, 0.56, -0.20, -0.54, 0.011
+19930504, 0.58, 0.57, -0.41, 0.011
+19930505, 0.31, 0.61, -0.68, 0.011
+19930506, -0.31, 0.40, -0.06, 0.011
+19930507, -0.14, 0.22, -0.27, 0.011
+19930510, 0.20, -0.13, -0.01, 0.011
+19930511, 0.33, -0.19, 0.37, 0.011
+19930512, 0.00, 0.02, 0.43, 0.011
+19930513, -1.15, 0.72, 0.08, 0.011
+19930514, -0.03, 0.30, -1.12, 0.011
+19930517, 0.14, -0.17, -0.55, 0.011
+19930518, 0.06, 0.18, -0.45, 0.011
+19930519, 1.46, -0.93, -0.79, 0.011
+19930520, 0.68, -0.12, -0.32, 0.011
+19930521, -0.81, 0.85, 0.13, 0.011
+19930524, 0.29, -0.36, 0.14, 0.011
+19930525, 0.26, -0.07, 0.14, 0.011
+19930526, 1.00, -0.37, 0.12, 0.011
+19930527, -0.16, 0.38, 0.45, 0.011
+19930528, -0.40, 0.15, 0.01, 0.011
+19930601, 0.75, -0.51, 0.18, 0.012
+19930602, 0.05, 0.31, 0.05, 0.012
+19930603, -0.21, 0.28, 0.45, 0.012
+19930604, -0.58, 0.34, 0.23, 0.012
+19930607, -0.69, 0.10, 0.26, 0.012
+19930608, -0.76, -0.20, 0.11, 0.012
+19930609, 0.27, -0.13, 0.10, 0.012
+19930610, -0.14, -0.22, -0.14, 0.012
+19930611, 0.39, -0.15, -0.32, 0.012
+19930614, 0.13, -0.01, -0.09, 0.012
+19930615, -0.16, 0.53, 0.22, 0.012
+19930616, 0.16, -0.30, -0.05, 0.012
+19930617, 0.22, -0.26, 0.32, 0.012
+19930618, -0.93, 0.48, 0.67, 0.012
+19930621, 0.37, -0.80, 0.41, 0.012
+19930622, -0.10, -0.20, 0.61, 0.012
+19930623, -0.44, 0.27, -0.02, 0.012
+19930624, 0.69, -0.52, -0.07, 0.012
+19930625, 0.35, 0.25, -0.37, 0.012
+19930628, 1.06, -0.44, 0.11, 0.012
+19930629, -0.22, 0.49, -0.30, 0.012
+19930630, 0.13, 0.36, 0.24, 0.012
+19930701, -0.22, 0.50, 0.48, 0.011
+19930702, -0.48, 0.66, -0.23, 0.011
+19930706, -0.79, 0.55, 0.61, 0.011
+19930707, 0.13, -0.51, 0.44, 0.011
+19930708, 1.03, -0.69, -0.11, 0.011
+19930709, 0.05, 0.26, 0.04, 0.011
+19930712, 0.16, 0.16, -0.15, 0.011
+19930713, -0.06, 0.35, -0.17, 0.011
+19930714, 0.43, 0.14, -0.10, 0.011
+19930715, -0.19, 0.05, 0.40, 0.011
+19930716, -0.72, 0.24, 0.89, 0.011
+19930719, -0.13, -0.50, 0.50, 0.011
+19930720, 0.26, -0.30, -0.28, 0.011
+19930721, -0.10, -0.02, 0.34, 0.011
+19930722, -0.57, 0.05, 0.29, 0.011
+19930723, 0.47, -0.24, -0.42, 0.011
+19930726, 0.54, -0.10, 0.04, 0.011
+19930727, -0.24, 0.05, 0.08, 0.011
+19930728, -0.07, 0.39, 0.01, 0.011
+19930729, 0.54, -0.50, 0.07, 0.011
+19930730, -0.38, 0.35, 0.47, 0.011
+19930802, 0.40, -0.25, 0.01, 0.011
+19930803, -0.02, 0.24, -0.06, 0.011
+19930804, -0.01, 0.24, -0.02, 0.011
+19930805, -0.07, -0.04, -0.34, 0.011
+19930806, 0.15, 0.19, -0.29, 0.011
+19930809, 0.46, -0.47, 0.09, 0.011
+19930810, -0.16, 0.30, 0.46, 0.011
+19930811, 0.15, 0.00, 0.26, 0.011
+19930812, -0.29, 0.11, 0.24, 0.011
+19930813, 0.17, -0.04, -0.13, 0.011
+19930816, 0.51, -0.32, -0.07, 0.011
+19930817, 0.31, 0.05, -0.58, 0.011
+19930818, 0.57, 0.15, -0.79, 0.011
+19930819, 0.01, -0.08, 0.04, 0.011
+19930820, 0.00, 0.32, 0.05, 0.011
+19930823, -0.15, 0.01, 0.16, 0.011
+19930824, 0.88, -0.32, -0.04, 0.011
+19930825, 0.04, -0.02, 0.62, 0.011
+19930826, 0.07, -0.28, 0.39, 0.011
+19930827, -0.07, 0.30, -0.28, 0.011
+19930830, 0.29, -0.02, -0.15, 0.011
+19930831, 0.44, 0.23, 0.01, 0.011
+19930901, 0.03, 0.26, -0.10, 0.012
+19930902, -0.21, 0.63, -0.43, 0.012
+19930903, 0.06, 0.23, 0.11, 0.012
+19930907, -0.76, -0.30, 0.57, 0.012
+19930908, -0.66, -0.74, 0.44, 0.012
+19930909, 0.37, 0.18, -0.19, 0.012
+19930910, 0.87, -0.01, -0.25, 0.012
+19930913, 0.01, -0.11, 0.49, 0.012
+19930914, -0.57, -0.10, 0.12, 0.012
+19930915, 0.34, -0.06, -0.19, 0.012
+19930916, -0.26, 0.49, -0.01, 0.012
+19930917, -0.09, 0.26, 0.23, 0.012
+19930920, -0.58, 0.57, 0.15, 0.012
+19930921, -0.61, -0.34, -0.18, 0.012
+19930922, 0.84, 0.26, -0.54, 0.012
+19930923, 0.47, 0.16, -0.83, 0.012
+19930924, 0.07, 0.26, -0.04, 0.012
+19930927, 0.79, -0.21, -0.34, 0.012
+19930928, 0.06, 0.22, 0.30, 0.012
+19930929, -0.19, 0.53, 0.13, 0.012
+19930930, -0.10, 0.91, 0.10, 0.012
+19931001, 0.33, -0.44, 0.35, 0.011
+19931004, 0.05, 0.20, 0.05, 0.011
+19931005, -0.06, -0.02, 0.01, 0.011
+19931006, -0.05, 0.47, -0.12, 0.011
+19931007, -0.31, 0.26, -0.07, 0.011
+19931008, 0.15, -0.09, -0.11, 0.011
+19931011, 0.19, 0.27, -0.51, 0.011
+19931012, 0.23, 0.35, -0.48, 0.011
+19931013, 0.20, 0.37, -0.48, 0.011
+19931014, 0.89, -0.50, -0.63, 0.011
+19931015, 0.46, 0.02, -0.50, 0.011
+19931018, -0.32, 0.18, -0.24, 0.011
+19931019, -0.79, -0.54, 1.03, 0.011
+19931020, -0.13, -0.26, 0.25, 0.011
+19931021, -0.06, 0.13, -0.14, 0.011
+19931022, -0.25, 0.53, 0.19, 0.011
+19931025, 0.03, -0.05, -0.06, 0.011
+19931026, -0.16, -0.18, 0.15, 0.011
+19931027, 0.25, 0.23, -0.09, 0.011
+19931028, 0.53, -0.22, 0.09, 0.011
+19931029, 0.24, 0.77, -0.21, 0.011
+19931101, 0.28, -0.27, -0.23, 0.012
+19931102, -0.09, 0.42, -0.26, 0.012
+19931103, -1.26, 0.45, -0.58, 0.012
+19931104, -1.35, -0.10, 0.27, 0.012
+19931105, 0.45, -0.65, -0.32, 0.012
+19931108, 0.27, 0.21, -0.11, 0.012
+19931109, 0.18, 0.38, -0.37, 0.012
+19931110, 0.65, -0.19, -0.24, 0.012
+19931111, -0.08, 0.35, -0.06, 0.012
+19931112, 0.46, -0.25, 0.16, 0.012
+19931115, -0.42, -0.03, 0.20, 0.012
+19931116, 0.38, -0.96, 0.05, 0.012
+19931117, -0.55, -0.14, 0.51, 0.012
+19931118, -0.40, -0.33, 0.42, 0.012
+19931119, -0.30, 0.05, 0.04, 0.012
+19931122, -1.09, -0.64, 0.68, 0.012
+19931123, 0.54, -0.20, -0.13, 0.012
+19931124, 0.49, 0.08, 0.03, 0.012
+19931126, 0.25, -0.10, -0.08, 0.012
+19931129, -0.19, 0.05, 0.16, 0.012
+19931130, -0.08, 0.41, -0.39, 0.012
+19931201, 0.32, 0.60, -0.10, 0.010
+19931202, 0.23, -0.17, -0.07, 0.010
+19931203, 0.40, 0.01, -0.17, 0.010
+19931206, 0.29, -0.30, 0.03, 0.010
+19931207, 0.03, -0.08, 0.14, 0.010
+19931208, -0.06, 0.18, 0.21, 0.010
+19931209, -0.44, 0.13, 0.37, 0.010
+19931210, -0.07, -0.21, 0.32, 0.010
+19931213, 0.19, -0.57, 0.19, 0.010
+19931214, -0.61, -0.25, 0.20, 0.010
+19931215, -0.21, 0.11, -0.25, 0.010
+19931216, 0.24, 0.02, -0.10, 0.010
+19931217, 0.64, -0.03, 0.20, 0.010
+19931220, -0.08, -0.05, 0.08, 0.010
+19931221, -0.25, -0.41, 0.31, 0.010
+19931222, 0.29, -0.41, 0.13, 0.010
+19931223, 0.14, 0.24, -0.33, 0.010
+19931227, 0.58, -0.34, -0.02, 0.010
+19931228, 0.23, 0.18, 0.07, 0.010
+19931229, 0.11, 0.82, -0.20, 0.010
+19931230, -0.25, 0.42, -0.25, 0.010
+19931231, -0.09, 1.33, -0.25, 0.010
+19940103, -0.45, -0.20, 0.41, 0.012
+19940104, 0.24, -0.08, 0.25, 0.012
+19940105, 0.21, 0.29, -0.12, 0.012
+19940106, -0.07, 0.28, -0.14, 0.012
+19940107, 0.48, -0.19, 0.15, 0.012
+19940110, 0.88, -0.78, 0.05, 0.012
+19940111, -0.16, 0.14, -0.03, 0.012
+19940112, 0.04, 0.15, -0.14, 0.012
+19940113, -0.17, 0.36, 0.21, 0.012
+19940114, 0.47, -0.21, -0.01, 0.012
+19940117, -0.25, 0.44, 0.10, 0.012
+19940118, 0.10, -0.03, 0.09, 0.012
+19940119, -0.08, 0.25, 0.03, 0.012
+19940120, 0.21, 0.18, -0.15, 0.012
+19940121, -0.05, 0.23, 0.09, 0.012
+19940124, -0.47, 0.21, 0.38, 0.012
+19940125, -0.26, -0.03, -0.03, 0.012
+19940126, 0.41, -0.14, -0.09, 0.012
+19940127, 0.78, -0.74, 0.35, 0.012
+19940128, 0.42, 0.07, 0.08, 0.012
+19940131, 0.57, -0.07, 0.55, 0.012
+19940201, -0.28, 0.38, -0.15, 0.011
+19940202, 0.43, -0.07, 0.00, 0.011
+19940203, -0.21, 0.13, 0.10, 0.011
+19940204, -2.32, 0.21, 0.27, 0.011
+19940207, 0.33, -0.47, 0.06, 0.011
+19940208, 0.05, 0.69, 0.18, 0.011
+19940209, 0.44, 0.34, -0.11, 0.011
+19940210, -0.67, 0.48, -0.29, 0.011
+19940211, 0.03, -0.44, -0.28, 0.011
+19940214, 0.11, -0.02, -0.16, 0.011
+19940215, 0.47, -0.03, -0.34, 0.011
+19940216, 0.06, 0.65, -0.15, 0.011
+19940217, -0.46, 0.19, -0.14, 0.011
+19940218, -0.48, 0.25, -0.04, 0.011
+19940222, 0.63, -0.53, -0.04, 0.011
+19940223, -0.14, 0.15, -0.30, 0.011
+19940224, -1.25, 0.28, 0.25, 0.011
+19940225, 0.36, -0.10, -0.18, 0.011
+19940228, 0.38, 0.68, -0.19, 0.011
+19940301, -0.52, -0.05, 0.10, 0.012
+19940302, -0.13, -0.71, 0.21, 0.012
+19940303, -0.24, 0.36, -0.10, 0.012
+19940304, 0.46, 0.06, 0.00, 0.012
+19940307, 0.56, 0.19, -0.16, 0.012
+19940308, -0.23, 0.15, 0.21, 0.012
+19940309, 0.16, -0.04, -0.10, 0.012
+19940310, -0.62, 0.34, 0.05, 0.012
+19940311, 0.44, -0.41, 0.32, 0.012
+19940314, 0.29, 0.03, 0.00, 0.012
+19940315, 0.03, 0.26, 0.05, 0.012
+19940316, 0.56, 0.07, 0.09, 0.012
+19940317, 0.30, 0.00, -0.51, 0.012
+19940318, 0.05, 0.52, -0.20, 0.012
+19940321, -0.50, -0.23, 0.21, 0.012
+19940322, 0.04, 0.08, 0.44, 0.012
+19940323, 0.03, 0.22, 0.30, 0.012
+19940324, -0.98, -0.13, 0.02, 0.012
+19940325, -0.62, 0.61, -0.15, 0.012
+19940328, -0.47, -1.16, 0.48, 0.012
+19940329, -1.80, -0.26, 0.47, 0.012
+19940330, -1.53, -0.23, 0.02, 0.012
+19940331, -0.13, -0.69, -0.36, 0.012
+19940404, -1.58, -0.17, 0.32, 0.014
+19940405, 2.37, 0.44, -0.55, 0.014
+19940406, 0.03, 0.13, 0.25, 0.014
+19940407, 0.60, -0.01, 0.00, 0.014
+19940408, -0.81, 0.49, -0.09, 0.014
+19940411, 0.33, -0.49, 0.27, 0.014
+19940412, -0.54, -0.17, 0.61, 0.014
+19940413, -0.61, -0.68, 0.37, 0.014
+19940414, 0.04, -0.03, 0.53, 0.014
+19940415, 0.03, -0.09, 0.10, 0.014
+19940418, -0.82, 0.07, 0.39, 0.014
+19940419, -0.26, -0.85, -0.01, 0.014
+19940420, -0.42, -1.17, 0.59, 0.014
+19940421, 1.47, -0.50, -0.58, 0.014
+19940422, -0.05, 0.75, -0.44, 0.014
+19940425, 1.00, -0.11, 0.03, 0.014
+19940426, 0.05, 0.68, -0.11, 0.014
+19940428, -0.55, 0.90, -0.28, 0.014
+19940429, 0.47, -0.11, 0.23, 0.014
+19940502, 0.50, -0.03, -0.38, 0.015
+19940503, -0.01, 0.13, 0.08, 0.015
+19940504, -0.15, 0.31, -0.37, 0.015
+19940505, -0.10, 0.10, -0.15, 0.015
+19940506, -0.91, 0.15, 0.22, 0.015
+19940509, -1.24, 0.23, -0.03, 0.015
+19940510, 0.59, -0.57, -0.10, 0.015
+19940511, -1.06, 0.06, 0.03, 0.015
+19940512, 0.38, -0.13, -0.11, 0.015
+19940513, 0.04, -0.38, 0.33, 0.015
+19940516, -0.16, -0.44, 0.26, 0.015
+19940517, 0.81, -1.22, 0.60, 0.015
+19940518, 1.14, -0.20, -0.28, 0.015
+19940519, 0.61, 0.04, -0.24, 0.015
+19940520, -0.24, 0.10, 0.21, 0.015
+19940523, -0.33, 0.17, -0.08, 0.015
+19940524, 0.40, -0.28, -0.18, 0.015
+19940525, 0.27, -0.37, 0.31, 0.015
+19940526, 0.23, 0.13, 0.09, 0.015
+19940527, 0.08, 0.14, -0.03, 0.015
+19940531, -0.16, 0.08, -0.07, 0.015
+19940601, 0.27, -0.09, 0.24, 0.014
+19940602, 0.15, 0.73, -0.39, 0.014
+19940603, 0.47, -0.31, -0.48, 0.014
+19940606, 0.00, 0.19, 0.28, 0.014
+19940607, -0.25, -0.07, -0.08, 0.014
+19940608, -0.45, -0.23, 0.70, 0.014
+19940609, 0.02, -0.28, 0.09, 0.014
+19940610, 0.25, 0.18, 0.13, 0.014
+19940613, 0.06, -0.27, 0.50, 0.014
+19940614, 0.57, -0.43, 0.28, 0.014
+19940615, -0.31, 0.38, 0.15, 0.014
+19940616, 0.22, -0.06, -0.17, 0.014
+19940617, -0.70, 0.30, 0.14, 0.014
+19940620, -0.93, -0.40, 0.11, 0.014
+19940621, -0.95, -0.22, 0.14, 0.014
+19940622, 0.34, 0.09, 0.10, 0.014
+19940623, -0.89, -0.16, 0.46, 0.014
+19940624, -1.41, 0.11, 0.06, 0.014
+19940627, 0.89, -0.79, -0.26, 0.014
+19940628, -0.24, -0.10, -0.32, 0.014
+19940629, 0.36, 0.05, -0.19, 0.014
+19940630, -0.51, 0.86, 0.27, 0.014
+19940701, 0.42, -0.22, 0.16, 0.014
+19940705, -0.04, -0.14, -0.09, 0.014
+19940706, -0.03, -0.11, 0.31, 0.014
+19940707, 0.49, -0.26, 0.15, 0.014
+19940708, 0.17, -0.22, -0.27, 0.014
+19940711, -0.30, 0.25, -0.03, 0.014
+19940712, 0.07, 0.13, -0.04, 0.014
+19940713, 0.37, 0.12, -0.18, 0.014
+19940714, 0.98, -0.20, -0.12, 0.014
+19940715, 0.08, 0.04, 0.22, 0.014
+19940718, 0.19, -0.30, 0.04, 0.014
+19940719, -0.27, 0.28, 0.02, 0.014
+19940720, -0.54, -0.01, 0.21, 0.014
+19940721, 0.19, -0.24, 0.27, 0.014
+19940722, 0.05, -0.14, 0.11, 0.014
+19940725, 0.17, -0.25, 0.00, 0.014
+19940726, -0.17, 0.05, 0.20, 0.014
+19940727, -0.25, -0.12, 0.12, 0.014
+19940728, 0.24, -0.35, 0.03, 0.014
+19940729, 0.95, 0.01, -0.44, 0.014
+19940801, 0.53, -0.40, 0.20, 0.016
+19940802, 0.10, 0.11, 0.09, 0.016
+19940803, 0.01, 0.08, 0.32, 0.016
+19940804, -0.52, 0.35, -0.01, 0.016
+19940805, -0.32, 0.09, -0.08, 0.016
+19940808, 0.20, -0.12, 0.06, 0.016
+19940809, 0.09, 0.05, -0.05, 0.016
+19940810, 0.55, 0.08, -0.78, 0.016
+19940811, -0.26, 0.22, -0.25, 0.016
+19940812, 0.55, -0.18, -0.30, 0.016
+19940815, -0.02, 0.32, 0.06, 0.016
+19940816, 0.60, -0.57, -0.26, 0.016
+19940817, 0.17, 0.38, -0.50, 0.016
+19940818, -0.35, 0.51, -0.28, 0.016
+19940819, 0.12, 0.09, -0.07, 0.016
+19940822, -0.20, 0.29, -0.34, 0.016
+19940823, 0.54, 0.11, -0.36, 0.016
+19940824, 0.71, -0.43, 0.00, 0.016
+19940825, -0.07, 0.32, -0.07, 0.016
+19940826, 1.08, -0.60, -0.29, 0.016
+19940829, 0.17, 0.04, -0.03, 0.016
+19940830, 0.35, -0.04, 0.19, 0.016
+19940831, -0.10, 0.62, 0.05, 0.016
+19940901, -0.49, 0.07, 0.09, 0.017
+19940902, -0.32, 0.51, -0.01, 0.017
+19940906, 0.03, -0.24, 0.12, 0.017
+19940907, -0.02, 0.43, -0.21, 0.017
+19940908, 0.46, 0.06, -0.36, 0.017
+19940909, -0.93, 0.62, 0.08, 0.017
+19940912, -0.44, 0.14, 0.00, 0.017
+19940913, 0.30, 0.24, -0.36, 0.017
+19940914, 0.26, -0.07, 0.09, 0.017
+19940915, 1.14, -0.33, -0.49, 0.017
+19940916, -0.52, 0.62, 0.10, 0.017
+19940919, -0.13, -0.02, -0.18, 0.017
+19940920, -1.44, 0.54, 0.27, 0.017
+19940921, -0.55, -0.18, 0.03, 0.017
+19940922, -0.10, 0.12, -0.17, 0.017
+19940923, -0.33, 0.13, -0.14, 0.017
+19940926, 0.20, -0.43, -0.12, 0.017
+19940927, 0.16, -0.22, -0.16, 0.017
+19940928, 0.59, -0.03, -0.23, 0.017
+19940929, -0.37, 0.26, -0.09, 0.017
+19940930, 0.21, 0.63, -0.25, 0.017
+19941003, -0.27, -0.25, -0.14, 0.018
+19941004, -1.47, 0.22, 0.41, 0.018
+19941005, -0.38, -0.48, -0.06, 0.018
+19941006, -0.23, 0.43, -0.16, 0.018
+19941007, 0.60, -0.30, -0.10, 0.018
+19941010, 0.75, -0.18, -0.29, 0.018
+19941011, 1.28, -0.63, -0.68, 0.018
+19941012, -0.01, 0.18, 0.00, 0.018
+19941013, 0.35, -0.24, 0.03, 0.018
+19941014, 0.17, -0.44, 0.31, 0.018
+19941017, -0.07, 0.10, -0.09, 0.018
+19941018, -0.20, -0.20, 0.09, 0.018
+19941019, 0.49, -0.19, -0.10, 0.018
+19941020, -0.67, 0.38, -0.09, 0.018
+19941021, -0.41, 0.16, -0.14, 0.018
+19941024, -0.77, 0.42, -0.22, 0.018
+19941025, -0.03, -0.49, 0.33, 0.018
+19941026, 0.27, -0.22, -0.41, 0.018
+19941027, 0.63, -0.15, -0.34, 0.018
+19941028, 1.52, -0.76, -0.18, 0.018
+19941031, -0.18, 0.31, 0.06, 0.018
+19941101, -0.77, 0.31, -0.39, 0.018
+19941102, -0.24, 0.43, -0.12, 0.018
+19941103, 0.25, -0.17, 0.29, 0.018
+19941104, -0.93, 0.67, -0.11, 0.018
+19941107, -0.04, -0.45, -0.03, 0.018
+19941108, 0.50, -0.32, -0.23, 0.018
+19941109, -0.09, -0.10, -0.11, 0.018
+19941110, -0.26, -0.05, -0.01, 0.018
+19941111, -0.42, 0.09, -0.21, 0.018
+19941114, 0.67, -0.49, -0.38, 0.018
+19941115, -0.11, 0.21, 0.13, 0.018
+19941116, 0.02, -0.08, -0.24, 0.018
+19941117, -0.46, 0.17, -0.26, 0.018
+19941118, -0.44, 0.21, -0.41, 0.018
+19941121, -0.75, 0.11, 0.00, 0.018
+19941122, -1.84, 0.17, 0.29, 0.018
+19941123, -0.15, -0.98, 0.91, 0.018
+19941125, 0.62, -0.04, -0.09, 0.018
+19941128, 0.35, -0.20, -0.36, 0.018
+19941129, 0.25, 0.21, -0.15, 0.018
+19941130, -0.21, 0.53, 0.52, 0.018
+19941201, -1.04, 0.13, 0.06, 0.021
+19941202, 0.71, -0.56, 0.06, 0.021
+19941205, 0.08, -0.16, 0.15, 0.021
+19941206, -0.17, -0.33, 0.31, 0.021
+19941207, -0.54, -0.29, 0.22, 0.021
+19941208, -1.43, -0.21, 0.24, 0.021
+19941209, 0.16, -0.69, 0.12, 0.021
+19941212, 0.39, -0.44, -0.17, 0.021
+19941213, 0.22, -0.25, 0.12, 0.021
+19941214, 1.02, -0.26, -0.19, 0.021
+19941215, 0.33, 0.83, 0.01, 0.021
+19941216, 0.46, -0.60, -0.09, 0.021
+19941219, -0.22, -0.07, 0.38, 0.021
+19941220, -0.07, 0.23, 0.01, 0.021
+19941221, 0.62, 0.38, -0.30, 0.021
+19941222, -0.04, 0.25, -0.42, 0.021
+19941223, 0.22, 0.14, 0.01, 0.021
+19941227, 0.46, -0.03, -0.16, 0.021
+19941228, -0.41, 0.18, -0.14, 0.021
+19941229, 0.28, 0.21, -0.11, 0.021
+19941230, -0.14, 1.58, 0.38, 0.021
+19950103, -0.26, -0.90, 0.85, 0.020
+19950104, 0.33, -0.31, 0.65, 0.020
+19950105, -0.05, 0.06, 0.03, 0.020
+19950106, 0.18, -0.03, 0.30, 0.020
+19950109, 0.08, 0.06, 0.09, 0.020
+19950110, 0.20, 0.08, -0.26, 0.020
+19950111, -0.09, -0.13, -0.19, 0.020
+19950112, 0.01, 0.01, 0.11, 0.020
+19950113, 0.87, -0.37, 0.37, 0.020
+19950116, 0.80, -0.40, -0.09, 0.020
+19950117, 0.22, 0.42, -0.46, 0.020
+19950118, -0.15, 0.10, -0.08, 0.020
+19950119, -0.57, 0.13, -0.19, 0.020
+19950120, -0.51, 0.26, -0.20, 0.020
+19950123, 0.00, -0.67, 0.24, 0.020
+19950124, 0.16, 0.31, -0.21, 0.020
+19950125, 0.20, -0.32, 0.27, 0.020
+19950126, 0.04, -0.17, -0.16, 0.020
+19950127, 0.39, -0.31, -0.09, 0.020
+19950130, -0.45, -0.25, -0.13, 0.020
+19950131, 0.39, -0.24, 0.04, 0.020
+19950201, 0.15, -0.06, 0.18, 0.021
+19950202, 0.44, 0.00, -0.24, 0.021
+19950203, 1.22, -0.65, 0.32, 0.021
+19950206, 0.61, 0.06, -0.46, 0.021
+19950207, -0.07, 0.22, 0.25, 0.021
+19950208, 0.13, 0.17, -0.19, 0.021
+19950209, -0.09, 0.40, -0.12, 0.021
+19950210, 0.23, 0.16, -0.16, 0.021
+19950213, 0.02, 0.00, 0.10, 0.021
+19950214, 0.09, -0.24, 0.38, 0.021
+19950215, 0.48, 0.23, 0.09, 0.021
+19950216, -0.05, -0.50, -0.14, 0.021
+19950217, -0.58, 0.14, 0.24, 0.021
+19950221, -0.05, -0.26, 0.39, 0.021
+19950222, 0.40, -0.34, 0.03, 0.021
+19950223, 0.45, -0.18, 0.23, 0.021
+19950224, 0.16, 0.14, 0.19, 0.021
+19950227, -0.82, 0.03, 0.10, 0.021
+19950228, 0.82, 0.10, -0.21, 0.021
+19950301, -0.31, 0.27, -0.40, 0.020
+19950302, -0.14, 0.13, -0.33, 0.020
+19950303, 0.14, 0.15, -0.16, 0.020
+19950306, -0.13, -0.19, -0.31, 0.020
+19950307, -0.75, 0.15, -0.15, 0.020
+19950308, 0.21, 0.04, 0.01, 0.020
+19950309, 0.05, -0.12, 0.01, 0.020
+19950310, 1.12, -0.74, -0.30, 0.020
+19950313, 0.09, -0.01, -0.02, 0.020
+19950314, 0.56, -0.15, -0.40, 0.020
+19950315, -0.17, 0.16, 0.23, 0.020
+19950316, 0.56, -0.33, 0.01, 0.020
+19950317, -0.07, -0.12, -0.35, 0.020
+19950320, 0.10, 0.17, -0.26, 0.020
+19950321, -0.24, -0.01, -0.10, 0.020
+19950322, 0.04, -0.25, 0.05, 0.020
+19950323, 0.08, 0.07, 0.11, 0.020
+19950324, 0.93, -0.55, 0.01, 0.020
+19950327, 0.48, -0.17, 0.07, 0.020
+19950328, 0.15, 0.13, -0.25, 0.020
+19950329, -0.17, -0.08, 0.63, 0.020
+19950330, -0.08, 0.07, 0.80, 0.020
+19950331, -0.27, 0.65, 0.04, 0.020
+19950403, 0.14, -0.16, 0.09, 0.023
+19950404, 0.47, -0.51, 0.28, 0.023
+19950405, 0.09, -0.02, 0.30, 0.023
+19950406, 0.05, -0.09, 0.61, 0.023
+19950407, -0.04, -0.38, 0.15, 0.023
+19950410, 0.25, 0.33, -0.21, 0.023
+19950411, -0.17, 0.47, -0.02, 0.023
+19950412, 0.33, -0.32, 0.16, 0.023
+19950413, 0.34, 0.19, -0.15, 0.023
+19950417, -0.53, 0.40, 0.45, 0.023
+19950418, -0.34, -0.08, 0.09, 0.023
+19950419, -0.30, -0.61, 0.61, 0.023
+19950420, 0.16, 0.03, 0.29, 0.023
+19950421, 0.51, -0.13, 0.08, 0.023
+19950424, 0.72, -0.38, -0.02, 0.023
+19950425, -0.09, 0.24, 0.13, 0.023
+19950426, 0.14, 0.26, -0.36, 0.023
+19950427, 0.20, 0.14, -0.08, 0.023
+19950428, 0.16, 0.01, -0.20, 0.023
+19950501, -0.13, 0.08, 0.13, 0.024
+19950502, 0.08, -0.03, -0.11, 0.024
+19950503, 0.94, -0.72, -0.33, 0.024
+19950504, -0.10, -0.44, 0.27, 0.024
+19950505, -0.10, -0.11, 0.26, 0.024
+19950508, 0.64, -0.21, 0.22, 0.024
+19950509, 0.05, -0.29, 0.37, 0.024
+19950510, 0.15, 0.06, 0.33, 0.024
+19950511, 0.23, 0.29, -0.49, 0.024
+19950512, 0.23, 0.01, 0.24, 0.024
+19950515, 0.42, -0.24, 0.46, 0.024
+19950516, 0.12, 0.29, -0.06, 0.024
+19950517, -0.21, 0.50, -0.14, 0.024
+19950518, -1.30, 0.81, 0.17, 0.024
+19950519, -0.08, 0.01, -0.18, 0.024
+19950522, 0.76, -0.37, 0.16, 0.024
+19950523, 0.85, -0.47, 0.07, 0.024
+19950524, -0.05, -0.07, 0.02, 0.024
+19950525, -0.04, -0.12, -0.08, 0.024
+19950526, -0.82, 0.44, 0.23, 0.024
+19950530, -0.22, -0.41, 0.43, 0.024
+19950531, 1.46, -1.22, -0.29, 0.024
+19950601, 0.15, 0.22, 0.37, 0.021
+19950602, 0.00, 0.18, 0.21, 0.021
+19950605, 0.61, 0.04, -0.10, 0.021
+19950606, -0.03, 0.27, -0.16, 0.021
+19950607, -0.34, 0.57, -0.45, 0.021
+19950608, -0.08, 0.64, -0.41, 0.021
+19950609, -0.73, 0.61, -0.27, 0.021
+19950612, 0.50, -0.04, -0.33, 0.021
+19950613, 0.92, -0.53, 0.01, 0.021
+19950614, 0.07, 0.14, -0.26, 0.021
+19950615, 0.22, 0.38, -0.24, 0.021
+19950616, 0.43, -0.10, -0.45, 0.021
+19950619, 0.92, -0.54, -0.21, 0.021
+19950620, 0.04, -0.06, 0.47, 0.021
+19950621, -0.04, 0.22, 0.04, 0.021
+19950622, 1.15, -0.67, -0.46, 0.021
+19950623, -0.29, 0.24, -0.08, 0.021
+19950626, -1.00, 0.11, 0.53, 0.021
+19950627, -0.39, 0.12, 0.20, 0.021
+19950628, 0.32, -0.47, 0.14, 0.021
+19950629, -0.03, 0.54, -0.40, 0.021
+19950630, 0.28, 0.89, -0.33, 0.021
+19950703, 0.33, -0.36, -0.14, 0.023
+19950705, 0.19, 0.10, 0.27, 0.023
+19950706, 1.12, -0.70, 0.10, 0.023
+19950707, 0.59, 0.29, 0.13, 0.023
+19950710, 0.17, 0.31, 0.34, 0.023
+19950711, -0.34, 0.62, -0.27, 0.023
+19950712, 1.10, -0.17, -0.58, 0.023
+19950713, 0.07, 0.31, -0.20, 0.023
+19950714, -0.15, 0.38, -0.38, 0.023
+19950717, 0.40, 0.16, -0.67, 0.023
+19950718, -0.81, 0.03, 0.64, 0.023
+19950719, -1.65, -0.66, 0.85, 0.023
+19950720, 0.59, 0.27, -0.26, 0.023
+19950721, 0.06, 0.49, -0.57, 0.023
+19950724, 0.69, 0.22, -0.50, 0.023
+19950725, 0.76, -0.36, -0.03, 0.023
+19950726, 0.23, 0.23, -0.37, 0.023
+19950727, 0.71, 0.04, -0.26, 0.023
+19950728, -0.28, 0.50, 0.22, 0.023
+19950731, -0.10, 0.31, 0.06, 0.023
+19950801, -0.51, 0.16, 0.20, 0.020
+19950802, -0.21, -0.08, 0.83, 0.020
+19950803, -0.11, -0.15, 0.43, 0.020
+19950804, 0.15, 0.25, -0.15, 0.020
+19950807, 0.24, 0.05, 0.12, 0.020
+19950808, 0.05, -0.13, -0.06, 0.020
+19950809, 0.01, 0.48, -0.48, 0.020
+19950810, -0.27, 0.22, 0.09, 0.020
+19950811, -0.34, 0.36, -0.07, 0.020
+19950814, 0.74, -0.40, -0.50, 0.020
+19950815, -0.10, 0.27, 0.03, 0.020
+19950816, 0.45, 0.09, -0.03, 0.020
+19950817, 0.00, 0.46, 0.02, 0.020
+19950818, 0.07, 0.24, 0.00, 0.020
+19950821, -0.22, 0.55, 0.38, 0.020
+19950822, 0.18, -0.45, -0.15, 0.020
+19950823, -0.27, 0.40, -0.15, 0.020
+19950824, -0.07, -0.19, 0.30, 0.020
+19950825, 0.40, -0.32, 0.30, 0.020
+19950828, -0.30, -0.22, 1.12, 0.020
+19950829, 0.02, -0.80, 0.61, 0.020
+19950830, 0.33, 0.39, -0.07, 0.020
+19950831, 0.32, 0.36, -0.13, 0.020
+19950901, 0.27, -0.16, 0.45, 0.022
+19950905, 0.96, -0.47, -0.26, 0.022
+19950906, 0.36, 0.40, -0.40, 0.022
+19950907, 0.08, 0.47, -0.31, 0.022
+19950908, 0.51, 0.20, -0.07, 0.022
+19950911, 0.24, -0.08, -0.36, 0.022
+19950912, 0.25, -0.01, -0.21, 0.022
+19950913, 0.40, -0.17, -0.33, 0.022
+19950914, 0.59, -0.56, 0.24, 0.022
+19950915, -0.18, -0.50, 0.81, 0.022
+19950918, -0.14, -0.16, -0.55, 0.022
+19950919, 0.30, -0.19, -0.36, 0.022
+19950920, 0.44, -0.10, -0.15, 0.022
+19950921, -0.62, 0.41, -0.32, 0.022
+19950922, -0.32, -0.06, -0.34, 0.022
+19950925, -0.19, -0.37, 0.30, 0.022
+19950926, -0.12, -0.31, 0.16, 0.022
+19950927, -0.31, -1.03, 0.84, 0.022
+19950928, 0.89, -0.19, -0.12, 0.022
+19950929, -0.11, 0.83, 0.25, 0.022
+19951002, -0.63, -0.51, 0.57, 0.021
+19951003, -0.17, -0.89, 0.31, 0.021
+19951004, -0.46, -0.67, 0.58, 0.021
+19951005, 0.29, -0.29, -0.16, 0.021
+19951006, 0.00, 0.14, 0.14, 0.021
+19951009, -1.07, -0.69, 1.02, 0.021
+19951010, -0.25, -0.71, 0.39, 0.021
+19951011, 0.62, 0.41, -0.34, 0.021
+19951012, 0.80, -0.05, -0.25, 0.021
+19951013, 0.33, 0.31, -0.23, 0.021
+19951016, -0.20, 0.24, 0.08, 0.021
+19951017, 0.60, -0.44, -0.58, 0.021
+19951018, 0.22, 0.26, -0.48, 0.021
+19951019, 0.31, -0.44, -0.55, 0.021
+19951020, -0.57, 0.47, 0.14, 0.021
+19951023, -0.38, -0.26, -0.06, 0.021
+19951024, 0.11, -0.02, -0.55, 0.021
+19951025, -0.85, -0.14, -0.05, 0.021
+19951026, -0.95, -0.10, -0.10, 0.021
+19951027, 0.41, -0.72, 0.22, 0.021
+19951030, 0.64, -0.13, -0.59, 0.021
+19951031, -0.27, 0.41, -0.29, 0.021
+19951101, 0.51, -0.31, 0.19, 0.020
+19951102, 1.03, -0.17, -0.13, 0.020
+19951103, 0.31, 0.37, -0.23, 0.020
+19951106, -0.29, 0.30, 0.15, 0.020
+19951107, -0.50, 0.04, 0.43, 0.020
+19951108, 0.72, -0.47, -0.15, 0.020
+19951109, 0.45, 0.14, -0.49, 0.020
+19951110, -0.12, 0.33, -0.10, 0.020
+19951113, -0.15, -0.06, -0.02, 0.020
+19951114, -0.66, 0.00, 0.40, 0.020
+19951115, 0.55, -0.57, -0.27, 0.020
+19951116, 0.59, -0.27, 0.14, 0.020
+19951117, 0.38, -0.13, 0.20, 0.020
+19951120, -0.58, 0.14, 0.56, 0.020
+19951121, 0.21, -0.93, 0.54, 0.020
+19951122, -0.24, 0.03, 0.66, 0.020
+19951124, 0.33, -0.05, -0.19, 0.020
+19951127, 0.17, -0.05, 0.18, 0.020
+19951128, 0.79, -0.29, -0.77, 0.020
+19951129, 0.41, 0.12, -0.08, 0.020
+19951130, -0.03, 0.70, -0.16, 0.020
+19951201, 0.13, 0.15, 0.28, 0.024
+19951204, 1.04, -0.57, -0.09, 0.024
+19951205, 0.43, -0.28, -0.11, 0.024
+19951206, 0.18, -0.47, 0.32, 0.024
+19951207, -0.70, 0.42, -0.22, 0.024
+19951208, 0.20, 0.11, -0.27, 0.024
+19951211, 0.24, -0.20, -0.22, 0.024
+19951212, -0.26, 0.06, -0.06, 0.024
+19951213, 0.43, -0.08, -0.06, 0.024
+19951214, -0.83, 0.79, 0.44, 0.024
+19951215, -0.29, -0.41, 0.49, 0.024
+19951218, -1.76, -0.48, 1.01, 0.024
+19951219, 0.99, -0.43, -0.31, 0.024
+19951220, -0.57, 1.47, 0.26, 0.024
+19951221, 0.70, -0.02, -0.34, 0.024
+19951222, 0.32, 0.23, -0.12, 0.024
+19951226, 0.30, -0.14, -0.20, 0.024
+19951227, 0.14, 0.19, 0.00, 0.024
+19951228, -0.06, -0.04, 0.28, 0.024
+19951229, 0.41, 0.28, -0.26, 0.024
+19960102, 0.59, -0.35, -0.16, 0.019
+19960103, -0.08, -0.25, 0.66, 0.019
+19960104, -0.82, -0.33, 0.25, 0.019
+19960105, -0.15, 0.73, -0.17, 0.019
+19960108, 0.24, -0.23, -0.06, 0.019
+19960109, -1.67, 0.19, 1.17, 0.019
+19960110, -1.62, 0.27, 0.07, 0.019
+19960111, 0.87, 0.02, -0.63, 0.019
+19960112, -0.13, -0.13, 0.23, 0.019
+19960115, -0.58, -0.43, 0.70, 0.019
+19960116, 1.02, -1.42, 0.05, 0.019
+19960117, -0.09, 0.22, 0.27, 0.019
+19960118, 0.37, 0.24, -0.67, 0.019
+19960119, 0.57, -0.23, -0.49, 0.019
+19960122, 0.41, 0.09, -0.30, 0.019
+19960123, -0.02, 0.39, -0.18, 0.019
+19960124, 1.05, -0.39, -0.40, 0.019
+19960125, -0.40, 0.45, 0.31, 0.019
+19960126, 0.63, -0.38, -0.44, 0.019
+19960129, 0.37, -0.35, 0.28, 0.019
+19960130, 0.91, -0.41, -0.08, 0.019
+19960131, 0.83, -0.32, -0.17, 0.019
+19960201, 0.43, 0.19, -0.43, 0.020
+19960202, -0.28, 0.47, -0.43, 0.020
+19960205, 0.74, -0.51, -0.38, 0.020
+19960206, 0.68, -0.35, -0.06, 0.020
+19960207, 0.36, -0.69, 0.17, 0.020
+19960208, 0.80, -0.38, -0.43, 0.020
+19960209, 0.08, 0.16, 0.00, 0.020
+19960212, 0.54, -0.60, 0.19, 0.020
+19960213, -0.20, -0.37, 0.58, 0.020
+19960214, -0.46, 0.89, -0.02, 0.020
+19960215, -0.31, 0.47, -0.18, 0.020
+19960216, -0.39, 0.73, 0.04, 0.020
+19960220, -1.05, 0.31, -0.16, 0.020
+19960221, 1.05, -0.33, -0.57, 0.020
+19960222, 1.57, -0.53, -0.54, 0.020
+19960223, 0.08, 0.13, -0.06, 0.020
+19960226, -1.05, 0.95, 0.34, 0.020
+19960227, -0.44, 0.27, 0.28, 0.020
+19960228, -0.19, 0.37, 0.27, 0.020
+19960229, -0.60, 0.64, -0.03, 0.020
+19960301, 0.25, -0.61, 0.74, 0.019
+19960304, 0.92, -0.55, -0.04, 0.019
+19960305, 0.68, -0.39, -0.48, 0.019
+19960306, -0.38, 0.45, 0.29, 0.019
+19960307, 0.18, -0.09, -0.12, 0.019
+19960308, -2.91, 0.66, 0.08, 0.019
+19960311, 0.92, -0.09, -0.64, 0.019
+19960312, -0.49, 0.26, 0.09, 0.019
+19960313, 0.42, 0.30, -0.04, 0.019
+19960314, 0.41, 0.17, 0.02, 0.019
+19960315, 0.17, -0.02, -0.45, 0.019
+19960318, 1.47, -0.72, -0.04, 0.019
+19960319, -0.15, 0.19, 0.42, 0.019
+19960320, -0.28, 0.18, 0.35, 0.019
+19960321, -0.09, 0.33, 0.01, 0.019
+19960322, 0.20, 0.00, -0.08, 0.019
+19960325, -0.30, -0.41, 0.99, 0.019
+19960326, 0.28, -0.30, -0.01, 0.019
+19960327, -0.34, 0.65, -0.02, 0.019
+19960328, 0.04, 0.08, 0.08, 0.019
+19960329, -0.21, 1.16, -0.13, 0.019
+19960401, 1.04, -0.80, -0.04, 0.022
+19960402, 0.21, 0.20, -0.14, 0.022
+19960403, 0.13, 0.29, -0.16, 0.022
+19960404, 0.04, 0.23, 0.01, 0.022
+19960408, -1.67, 0.70, -0.31, 0.022
+19960409, -0.13, 0.57, 0.18, 0.022
+19960410, -1.19, 0.97, -0.32, 0.022
+19960411, -0.54, 0.33, -0.22, 0.022
+19960412, 0.83, -0.52, 0.13, 0.022
+19960415, 0.81, -0.05, -0.30, 0.022
+19960416, 0.49, 0.18, -0.69, 0.022
+19960417, -0.49, 0.32, 0.36, 0.022
+19960418, 0.47, 0.45, -0.46, 0.022
+19960419, 0.22, 0.25, -0.32, 0.022
+19960422, 0.57, 0.21, -0.59, 0.022
+19960423, 0.60, 0.14, -0.14, 0.022
+19960424, -0.01, 0.39, -0.41, 0.022
+19960425, 0.45, 0.18, -0.33, 0.022
+19960426, 0.15, 0.37, 0.00, 0.022
+19960429, 0.09, 0.17, -0.16, 0.022
+19960430, 0.03, 0.12, 0.13, 0.022
+19960501, 0.22, 0.48, -0.04, 0.019
+19960502, -1.61, 0.66, 0.17, 0.019
+19960503, -0.11, 0.58, -0.16, 0.019
+19960506, -0.16, 0.37, -0.19, 0.019
+19960507, -0.41, -0.01, 0.16, 0.019
+19960508, 0.61, -1.08, 0.25, 0.019
+19960509, 0.25, 0.58, -0.17, 0.019
+19960510, 1.09, -0.14, -0.26, 0.019
+19960513, 1.31, -0.43, -0.67, 0.019
+19960514, 0.72, 0.13, -0.06, 0.019
+19960515, -0.02, 0.26, -0.07, 0.019
+19960516, 0.05, 0.26, -0.39, 0.019
+19960517, 0.55, 0.00, 0.27, 0.019
+19960520, 0.59, 0.20, -0.22, 0.019
+19960521, -0.07, 0.14, 0.21, 0.019
+19960522, 0.62, -0.22, 0.49, 0.019
+19960523, -0.26, 0.31, -0.10, 0.019
+19960524, 0.24, -0.02, -0.49, 0.019
+19960528, -0.89, 0.06, 0.19, 0.019
+19960529, -0.68, 0.04, 0.52, 0.019
+19960530, 0.51, -0.05, -0.28, 0.019
+19960531, -0.18, 0.82, -0.38, 0.019
+19960603, -0.25, 0.03, 0.09, 0.020
+19960604, 0.68, -0.59, 0.05, 0.020
+19960605, 0.72, -0.55, -0.11, 0.020
+19960606, -0.77, 0.16, 0.40, 0.020
+19960607, -0.21, -0.41, -0.58, 0.020
+19960610, -0.12, 0.39, 0.11, 0.020
+19960611, -0.12, 0.07, 0.06, 0.020
+19960612, -0.08, 0.27, 0.10, 0.020
+19960613, -0.29, -0.45, 0.24, 0.020
+19960614, -0.45, -0.10, 0.44, 0.020
+19960617, -0.21, -0.26, 0.28, 0.020
+19960618, -0.78, -0.95, 0.80, 0.020
+19960619, -0.12, -0.37, 0.02, 0.020
+19960620, -0.32, -0.69, -0.03, 0.020
+19960621, 0.58, -0.22, -0.48, 0.020
+19960624, 0.33, 0.20, -0.17, 0.020
+19960625, -0.25, -0.45, 0.15, 0.020
+19960626, -0.82, -0.71, 0.61, 0.020
+19960627, 0.60, -0.12, -0.15, 0.020
+19960628, 0.73, 1.14, -0.25, 0.020
+19960701, 0.75, -0.44, -0.01, 0.020
+19960702, -0.29, 0.15, 0.25, 0.020
+19960703, -0.35, -0.08, 0.20, 0.020
+19960705, -2.05, 0.83, 0.37, 0.020
+19960708, -0.86, -0.09, 0.32, 0.020
+19960709, 0.32, -0.45, 0.11, 0.020
+19960710, -0.21, -1.15, 0.85, 0.020
+19960711, -1.87, -1.00, 1.49, 0.020
+19960712, 0.00, -0.31, 0.25, 0.020
+19960715, -2.69, -0.41, 1.94, 0.020
+19960716, -0.53, -1.17, 0.14, 0.020
+19960717, 1.42, 1.51, -1.48, 0.020
+19960718, 1.60, 0.08, -1.18, 0.020
+19960719, -0.79, 0.47, 0.27, 0.020
+19960722, -0.95, -0.47, 0.82, 0.020
+19960723, -1.46, -0.79, 1.51, 0.020
+19960724, -0.26, -1.35, -0.03, 0.020
+19960725, 0.92, 0.53, -0.76, 0.020
+19960726, 0.90, 0.17, -0.73, 0.020
+19960729, -0.79, 0.28, 0.67, 0.020
+19960730, 0.48, -0.50, 0.09, 0.020
+19960731, 0.73, 0.11, -0.42, 0.020
+19960801, 1.57, -0.67, -0.38, 0.019
+19960802, 1.85, -0.48, -0.87, 0.019
+19960805, -0.29, 0.30, 0.23, 0.019
+19960806, 0.31, -0.10, -0.41, 0.019
+19960807, 0.39, 0.42, -0.47, 0.019
+19960808, -0.17, 0.06, 0.25, 0.019
+19960809, -0.28, 0.07, 0.38, 0.019
+19960812, 0.54, -0.60, -0.07, 0.019
+19960813, -0.79, 0.31, 0.25, 0.019
+19960814, 0.39, -0.06, 0.01, 0.019
+19960815, 0.08, 0.12, 0.22, 0.019
+19960816, 0.41, -0.11, 0.35, 0.019
+19960819, 0.07, -0.18, 0.25, 0.019
+19960820, -0.16, 0.02, 0.50, 0.019
+19960821, -0.09, -0.01, 0.08, 0.019
+19960822, 0.86, -0.03, -0.52, 0.019
+19960823, -0.36, 0.61, -0.11, 0.019
+19960826, -0.37, 0.31, 0.06, 0.019
+19960827, 0.41, 0.27, -0.48, 0.019
+19960828, 0.00, 0.62, -0.20, 0.019
+19960829, -0.95, 0.68, 0.25, 0.019
+19960830, -0.63, 0.62, 0.21, 0.019
+19960903, 0.15, -0.35, -0.02, 0.022
+19960904, 0.15, 0.27, 0.19, 0.022
+19960905, -0.98, 0.24, 0.53, 0.022
+19960906, 0.99, -0.15, -0.54, 0.022
+19960909, 0.98, -0.59, -0.19, 0.022
+19960910, 0.04, 0.11, -0.16, 0.022
+19960911, 0.42, -0.30, 0.02, 0.022
+19960912, 0.62, -0.08, -0.36, 0.022
+19960913, 1.29, -0.60, -0.69, 0.022
+19960916, 0.48, -0.30, -0.04, 0.022
+19960917, -0.12, 0.16, -0.32, 0.022
+19960918, -0.18, 0.18, -0.12, 0.022
+19960919, 0.18, -0.16, -0.54, 0.022
+19960920, 0.50, -0.09, -0.08, 0.022
+19960923, -0.20, -0.17, 0.16, 0.022
+19960924, -0.03, 0.27, -0.23, 0.022
+19960925, 0.15, 0.36, -0.31, 0.022
+19960926, 0.20, 0.26, -0.55, 0.022
+19960927, 0.06, 0.07, 0.02, 0.022
+19960930, 0.19, 0.00, 0.21, 0.022
+19961001, 0.02, -0.65, 0.75, 0.018
+19961002, 0.73, -0.01, -0.09, 0.018
+19961003, -0.17, 0.02, 0.08, 0.018
+19961004, 1.10, -0.76, -0.19, 0.018
+19961007, 0.18, -0.35, 0.16, 0.018
+19961008, -0.44, 0.02, 0.36, 0.018
+19961009, -0.51, 0.32, 0.16, 0.018
+19961010, -0.23, 0.37, 0.07, 0.018
+19961011, 0.70, -0.38, -0.15, 0.018
+19961014, 0.44, -0.25, -0.13, 0.018
+19961015, -0.17, 0.08, 0.15, 0.018
+19961016, 0.09, -0.29, 0.13, 0.018
+19961017, 0.24, -0.43, 0.42, 0.018
+19961018, 0.35, -0.42, 0.20, 0.018
+19961021, -0.28, -0.45, 0.78, 0.018
+19961022, -0.67, -0.46, 0.64, 0.018
+19961023, -0.01, -0.11, 0.09, 0.018
+19961024, -0.48, 0.60, 0.17, 0.018
+19961025, -0.21, 0.13, 0.45, 0.018
+19961028, -0.62, -0.41, 0.60, 0.018
+19961029, 0.25, -1.06, 0.73, 0.018
+19961030, -0.03, -0.04, 0.12, 0.018
+19961031, 0.63, 0.09, -0.43, 0.018
+19961101, -0.18, -0.25, 0.05, 0.020
+19961104, 0.27, -0.45, 0.46, 0.020
+19961105, 0.86, -0.92, -0.11, 0.020
+19961106, 1.39, -0.57, -0.65, 0.020
+19961107, 0.41, 0.22, -0.48, 0.020
+19961108, 0.34, -0.29, -0.10, 0.020
+19961111, 0.17, 0.14, -0.04, 0.020
+19961112, -0.23, 0.14, 0.47, 0.020
+19961113, 0.18, -0.06, -0.22, 0.020
+19961114, 0.60, -0.32, -0.01, 0.020
+19961115, 0.06, -0.38, 0.30, 0.020
+19961118, -0.17, -0.26, 0.82, 0.020
+19961119, 0.54, -0.53, 0.37, 0.020
+19961120, 0.20, -0.18, 0.26, 0.020
+19961121, -0.20, 0.07, 0.20, 0.020
+19961122, 0.74, -0.09, -0.20, 0.020
+19961125, 0.99, -0.57, 0.10, 0.020
+19961126, -0.19, -0.05, 0.07, 0.020
+19961127, 0.02, 0.39, -0.07, 0.020
+19961129, 0.27, 0.23, -0.11, 0.020
+19961202, 0.06, 0.17, -0.10, 0.022
+19961203, -0.74, 1.43, 0.09, 0.022
+19961204, -0.33, 0.39, -0.03, 0.022
+19961205, -0.07, 0.44, -0.13, 0.022
+19961206, -0.74, -0.32, 0.14, 0.022
+19961209, 1.38, 0.04, -0.55, 0.022
+19961210, -0.29, 0.51, 0.54, 0.022
+19961211, -0.91, 0.03, -0.05, 0.022
+19961212, -1.29, 1.19, -0.08, 0.022
+19961213, -0.30, -0.44, 0.44, 0.022
+19961216, -1.12, 0.18, 0.66, 0.022
+19961217, 0.47, -0.86, 0.28, 0.022
+19961218, 0.83, 0.14, -0.58, 0.022
+19961219, 1.56, -1.06, -0.28, 0.022
+19961220, 0.29, -0.25, 0.53, 0.022
+19961223, -0.36, -0.15, 0.26, 0.022
+19961224, 0.48, -0.38, -0.19, 0.022
+19961226, 0.57, -0.25, -0.07, 0.022
+19961227, 0.17, 0.16, -0.12, 0.022
+19961230, -0.26, 0.12, 0.34, 0.022
+19961231, -1.02, 2.04, -0.24, 0.022
+19970102, -0.75, 0.05, 0.14, 0.020
+19970103, 1.39, -0.32, -0.78, 0.020
+19970106, 0.02, 0.11, 0.05, 0.020
+19970107, 0.72, -0.03, -0.52, 0.020
+19970108, -0.44, 0.50, 0.53, 0.020
+19970109, 0.72, -0.38, -0.15, 0.020
+19970110, 0.50, -0.17, -0.37, 0.020
+19970113, -0.07, 0.09, 0.27, 0.020
+19970114, 1.11, -0.85, 0.04, 0.020
+19970115, -0.23, 0.04, 0.47, 0.020
+19970116, 0.25, -0.21, -0.33, 0.020
+19970117, 0.72, -0.28, -0.26, 0.020
+19970120, 0.26, 0.21, -0.41, 0.020
+19970121, 0.59, -0.53, -0.21, 0.020
+19970122, 0.44, -0.41, -0.07, 0.020
+19970123, -0.85, 0.91, 0.37, 0.020
+19970124, -0.97, 0.35, 0.29, 0.020
+19970127, -0.72, 0.08, 0.34, 0.020
+19970128, 0.01, 0.41, -0.22, 0.020
+19970129, 0.68, -0.73, -0.03, 0.020
+19970130, 1.21, -0.67, -0.42, 0.020
+19970131, 0.31, 0.01, -0.34, 0.020
+19970203, -0.02, 0.04, 0.38, 0.020
+19970204, 0.12, -0.54, 0.28, 0.020
+19970205, -1.28, 0.47, 0.77, 0.020
+19970206, 0.24, -0.23, -0.09, 0.020
+19970207, 0.96, -0.79, -0.03, 0.020
+19970210, -0.65, -0.08, 0.80, 0.020
+19970211, 0.32, -0.90, 0.45, 0.020
+19970212, 1.52, -0.79, -0.67, 0.020
+19970213, 1.02, -0.54, 0.16, 0.020
+19970214, -0.22, 0.29, 0.32, 0.020
+19970218, 0.71, -0.53, 0.27, 0.020
+19970219, -0.32, 0.40, 0.31, 0.020
+19970220, -1.17, 0.41, 0.42, 0.020
+19970221, -0.26, -0.05, 0.64, 0.020
+19970224, 0.85, -0.78, 0.03, 0.020
+19970225, 0.25, -0.19, 0.16, 0.020
+19970226, -0.75, 0.17, 0.11, 0.020
+19970227, -1.27, 0.61, 0.76, 0.020
+19970228, -0.49, 0.04, 0.15, 0.020
+19970303, 0.39, -0.47, 0.13, 0.021
+19970304, -0.29, 0.66, 0.23, 0.021
+19970305, 1.17, -0.51, -0.50, 0.021
+19970306, -0.31, 0.09, 0.47, 0.021
+19970307, 0.67, -0.59, 0.24, 0.021
+19970310, 0.85, -0.45, 0.03, 0.021
+19970311, -0.24, 0.39, 0.27, 0.021
+19970312, -0.79, -0.07, 0.77, 0.021
+19970313, -1.66, 0.67, 0.01, 0.021
+19970314, 0.31, -0.42, -0.11, 0.021
+19970317, -0.11, -0.84, 0.62, 0.021
+19970318, -0.77, 0.30, 0.16, 0.021
+19970319, -0.65, -0.71, 0.80, 0.021
+19970320, -0.20, 0.48, -0.19, 0.021
+19970321, 0.09, -0.37, 0.22, 0.021
+19970324, 0.47, -1.45, 0.68, 0.021
+19970325, -0.08, 0.41, -0.32, 0.021
+19970326, 0.23, 0.54, -0.83, 0.021
+19970327, -1.90, 1.19, 0.26, 0.021
+19970331, -2.26, 0.67, 1.05, 0.021
+19970401, 0.17, -0.89, 0.34, 0.020
+19970402, -1.17, 0.44, 0.11, 0.020
+19970403, -0.02, -0.34, -0.36, 0.020
+19970404, 1.15, 0.27, -1.43, 0.020
+19970407, 0.77, 0.27, -0.21, 0.020
+19970408, 0.43, -0.37, 0.18, 0.020
+19970409, -0.58, 0.90, 0.33, 0.020
+19970410, -0.42, 0.00, 0.36, 0.020
+19970411, -2.48, 0.95, 0.45, 0.020
+19970414, 0.55, -0.67, -0.31, 0.020
+19970415, 1.19, -1.04, 0.24, 0.020
+19970416, 0.81, -1.02, 0.22, 0.020
+19970417, -0.11, 0.13, 0.31, 0.020
+19970418, 0.42, -0.09, -0.09, 0.020
+19970421, -0.99, -0.10, 0.45, 0.020
+19970422, 1.40, -1.60, -0.05, 0.020
+19970423, -0.03, -0.05, -0.19, 0.020
+19970424, -0.22, 0.43, -0.08, 0.020
+19970425, -0.95, 0.16, 0.39, 0.020
+19970428, 0.81, -1.11, 0.20, 0.020
+19970429, 2.41, -1.50, -0.39, 0.020
+19970430, 0.93, -0.43, -0.45, 0.020
+19970501, -0.10, 1.02, -0.26, 0.023
+19970502, 1.93, 0.53, -0.85, 0.023
+19970505, 2.16, 0.14, -1.61, 0.023
+19970506, -0.31, 0.02, 0.63, 0.023
+19970507, -1.18, 1.21, -0.03, 0.023
+19970508, 0.41, -0.55, -0.07, 0.023
+19970509, 0.51, -0.07, 0.12, 0.023
+19970512, 1.29, -0.74, -0.19, 0.023
+19970513, -0.45, 0.45, 0.00, 0.023
+19970514, 0.35, -0.24, 0.44, 0.023
+19970515, 0.58, -0.08, -0.85, 0.023
+19970516, -1.13, 1.05, 0.46, 0.023
+19970519, 0.27, 0.00, -0.18, 0.023
+19970520, 0.91, -0.59, -0.19, 0.023
+19970521, -0.13, 0.83, -0.69, 0.023
+19970522, -0.27, 0.56, 0.45, 0.023
+19970523, 1.26, -0.09, -0.49, 0.023
+19970527, 0.30, 0.29, -0.89, 0.023
+19970528, -0.11, 0.51, -0.02, 0.023
+19970529, -0.28, 0.50, 0.14, 0.023
+19970530, 0.55, -0.30, 0.51, 0.023
+19970602, -0.05, 0.92, -0.24, 0.018
+19970603, -0.16, -0.09, 0.91, 0.018
+19970604, -0.44, 0.47, 0.40, 0.018
+19970605, 0.42, 0.02, 0.04, 0.018
+19970606, 1.41, -0.80, -0.39, 0.018
+19970609, 0.48, -0.26, 0.07, 0.018
+19970610, 0.14, -0.53, 0.59, 0.018
+19970611, 0.41, -0.34, 0.25, 0.018
+19970612, 1.29, -0.98, 0.10, 0.018
+19970613, 0.98, -0.38, -0.39, 0.018
+19970616, 0.04, -0.08, -0.12, 0.018
+19970617, 0.12, 0.21, -0.19, 0.018
+19970618, -0.38, 0.21, 0.65, 0.018
+19970619, 0.95, -0.01, -0.41, 0.018
+19970620, -0.04, -0.31, -0.07, 0.018
+19970623, -1.84, 1.36, 0.32, 0.018
+19970624, 1.61, -0.91, -0.21, 0.018
+19970625, -0.71, 0.51, 0.35, 0.018
+19970626, -0.50, 0.37, 0.12, 0.018
+19970627, 0.42, 0.22, 0.04, 0.018
+19970630, -0.10, 1.61, -0.71, 0.018
+19970701, 0.55, -0.95, 0.50, 0.019
+19970702, 1.17, -1.19, -0.15, 0.019
+19970703, 1.20, -0.77, -0.25, 0.019
+19970707, -0.35, 0.38, 0.04, 0.019
+19970708, 0.69, -0.38, -0.24, 0.019
+19970709, -0.95, 0.86, 0.15, 0.019
+19970710, 0.57, -0.16, 0.22, 0.019
+19970711, 0.44, 0.44, -0.41, 0.019
+19970714, 0.24, 0.27, -0.41, 0.019
+19970715, 0.75, 0.16, -0.66, 0.019
+19970716, 1.14, -0.20, -0.55, 0.019
+19970717, -0.55, 0.14, 0.33, 0.019
+19970718, -1.41, 0.93, 0.52, 0.019
+19970721, -0.41, -0.11, 0.10, 0.019
+19970722, 1.98, -1.35, -0.49, 0.019
+19970723, 0.29, -0.10, 0.42, 0.019
+19970724, 0.31, -0.16, -0.01, 0.019
+19970725, -0.11, 0.25, 0.08, 0.019
+19970728, -0.23, 0.06, 0.68, 0.019
+19970729, 0.53, -0.51, 0.50, 0.019
+19970730, 1.09, -0.38, 0.09, 0.019
+19970731, 0.18, 0.07, 0.25, 0.019
+19970801, -0.57, 0.53, 0.26, 0.020
+19970804, 0.30, 0.09, -0.13, 0.020
+19970805, 0.34, 0.63, -0.54, 0.020
+19970806, 0.74, -0.21, 0.06, 0.020
+19970807, -0.77, 0.79, 0.37, 0.020
+19970808, -1.81, 0.68, 0.11, 0.020
+19970811, 0.16, -0.60, 0.47, 0.020
+19970812, -0.93, 0.63, 0.59, 0.020
+19970813, -0.26, 0.30, 0.04, 0.020
+19970814, 0.26, -0.04, -0.20, 0.020
+19970815, -2.06, 1.32, 0.54, 0.020
+19970818, 0.81, -0.86, -0.33, 0.020
+19970819, 1.38, -0.23, -0.43, 0.020
+19970820, 1.36, -0.13, -0.53, 0.020
+19970821, -1.23, 0.88, 0.34, 0.020
+19970822, -0.28, -0.14, 0.16, 0.020
+19970825, -0.12, 0.69, 0.27, 0.020
+19970826, -0.60, 0.72, 0.31, 0.020
+19970827, 0.18, 0.63, -0.17, 0.020
+19970828, -0.81, 0.99, 0.39, 0.020
+19970829, -0.21, 0.59, -0.17, 0.020
+19970902, 2.44, -1.29, -0.59, 0.021
+19970903, 0.18, -0.16, 0.46, 0.021
+19970904, 0.28, 0.04, -0.03, 0.021
+19970905, 0.02, 0.73, 0.05, 0.021
+19970908, 0.32, 0.27, 0.16, 0.021
+19970909, 0.27, 0.18, 0.23, 0.021
+19970910, -1.22, 1.17, 0.65, 0.021
+19970911, -0.63, 0.68, -0.10, 0.021
+19970912, 1.19, -0.31, -0.27, 0.021
+19970915, -0.31, 0.34, 0.39, 0.021
+19970916, 2.25, -1.48, -0.33, 0.021
+19970917, -0.08, 0.23, 0.31, 0.021
+19970918, 0.35, -0.29, 0.04, 0.021
+19970919, 0.30, 0.07, -0.60, 0.021
+19970922, 0.49, 0.07, -0.54, 0.021
+19970923, -0.28, 0.67, -0.23, 0.021
+19970924, -0.62, 0.62, 0.34, 0.021
+19970925, -0.61, 0.60, 0.10, 0.021
+19970926, 0.64, -0.39, -0.10, 0.021
+19970929, 0.73, -0.27, -0.27, 0.021
+19970930, -0.43, 0.87, 0.32, 0.021
+19971001, 0.62, -0.54, 0.19, 0.018
+19971002, 0.55, -0.05, 0.11, 0.018
+19971003, 0.48, 0.04, -0.22, 0.018
+19971006, 0.68, -0.22, -0.12, 0.018
+19971007, 0.89, -0.26, -0.72, 0.018
+19971008, -0.61, 0.76, -0.27, 0.018
+19971009, -0.20, 0.40, 0.32, 0.018
+19971010, -0.28, 0.55, 0.19, 0.018
+19971013, 0.10, 0.00, 0.35, 0.018
+19971014, 0.03, -0.32, 0.16, 0.018
+19971015, -0.33, 0.06, 0.09, 0.018
+19971016, -1.05, -0.19, 0.57, 0.018
+19971017, -1.31, -0.55, 0.38, 0.018
+19971020, 1.10, -0.16, -0.46, 0.018
+19971021, 1.65, -0.69, -0.31, 0.018
+19971022, -0.30, 0.31, 0.11, 0.018
+19971023, -1.85, -0.11, 0.46, 0.018
+19971024, -0.81, 0.42, 0.66, 0.018
+19971027, -6.58, 0.25, 1.85, 0.018
+19971028, 4.10, -1.80, -2.20, 0.018
+19971029, 0.07, 0.90, 0.81, 0.018
+19971030, -1.61, 0.29, 0.33, 0.018
+19971031, 1.17, 0.12, -0.53, 0.018
+19971103, 2.31, -0.88, -0.27, 0.021
+19971104, 0.23, -0.03, -0.10, 0.021
+19971105, 0.34, 0.28, -0.33, 0.021
+19971106, -0.51, 0.06, 0.39, 0.021
+19971107, -1.28, -0.36, 0.12, 0.021
+19971110, -0.53, 0.50, 0.68, 0.021
+19971111, 0.05, -0.39, 0.04, 0.021
+19971112, -1.96, -0.24, 0.81, 0.021
+19971113, 0.84, -0.86, -0.58, 0.021
+19971114, 1.21, -0.18, -0.91, 0.021
+19971117, 1.84, -0.48, -0.33, 0.021
+19971118, -0.80, 0.00, 0.61, 0.021
+19971119, 0.45, -0.54, -0.25, 0.021
+19971120, 1.37, -0.63, -0.29, 0.021
+19971121, 0.25, -0.45, 0.12, 0.021
+19971124, -1.68, -0.03, 0.84, 0.021
+19971125, 0.35, -0.69, 0.19, 0.021
+19971126, 0.18, 0.07, 0.17, 0.021
+19971128, 0.36, -0.09, -0.07, 0.021
+19971201, 1.79, -1.17, -0.01, 0.022
+19971202, -0.33, -0.29, 0.77, 0.022
+19971203, 0.53, -0.18, -0.48, 0.022
+19971204, -0.20, 0.31, 0.11, 0.022
+19971205, 0.97, -0.41, -0.21, 0.022
+19971208, 0.04, 0.76, -0.12, 0.022
+19971209, -0.74, -0.24, 0.72, 0.022
+19971210, -0.79, -0.62, 0.84, 0.022
+19971211, -1.58, -0.36, 0.82, 0.022
+19971212, -0.30, -0.31, 0.62, 0.022
+19971215, 0.67, -1.49, 0.62, 0.022
+19971216, 0.60, 0.34, -0.56, 0.022
+19971217, -0.15, 0.19, 0.45, 0.022
+19971218, -1.08, -0.19, 0.28, 0.022
+19971219, -0.68, 0.55, -0.43, 0.022
+19971222, 0.57, -0.29, 0.13, 0.022
+19971223, -1.22, 1.06, 0.76, 0.022
+19971224, -0.58, 0.43, 0.22, 0.022
+19971226, 0.33, -0.30, -0.02, 0.022
+19971229, 1.60, -0.76, -0.50, 0.022
+19971230, 1.76, -0.22, -0.49, 0.022
+19971231, 0.21, 0.87, -0.23, 0.022
+19980102, 0.22, -0.05, -0.46, 0.021
+19980105, 0.22, 0.08, -0.31, 0.021
+19980106, -1.04, 0.24, 0.23, 0.021
+19980107, -0.38, -0.39, -0.10, 0.021
+19980108, -0.82, 0.33, -0.25, 0.021
+19980109, -2.98, 0.16, 0.71, 0.021
+19980112, 0.74, -1.63, 0.10, 0.021
+19980113, 1.50, 0.11, -0.64, 0.021
+19980114, 0.61, -0.01, 0.23, 0.021
+19980115, -0.60, 0.59, 0.25, 0.021
+19980116, 1.08, 0.00, -0.26, 0.021
+19980120, 1.63, -0.37, -0.91, 0.021
+19980121, -0.66, 0.27, 0.18, 0.021
+19980122, -0.80, 0.02, 0.52, 0.021
+19980123, -0.56, 0.34, -0.30, 0.021
+19980126, -0.25, -0.70, 0.59, 0.021
+19980127, 0.97, -0.61, -0.27, 0.021
+19980128, 1.01, 0.29, -0.51, 0.021
+19980129, 0.78, -0.18, -0.38, 0.021
+19980130, -0.40, 0.30, 0.16, 0.021
+19980202, 1.93, -1.21, -0.67, 0.021
+19980203, 0.53, 0.19, 0.03, 0.021
+19980204, 0.22, 0.70, -0.36, 0.021
+19980205, -0.15, 0.68, 0.12, 0.021
+19980206, 0.75, -0.50, 0.07, 0.021
+19980209, -0.09, 0.37, 0.31, 0.021
+19980210, 0.81, 0.04, -0.17, 0.021
+19980211, 0.16, -0.01, 0.33, 0.021
+19980212, 0.36, -0.29, 0.01, 0.021
+19980213, -0.25, 0.67, 0.02, 0.021
+19980217, 0.15, -0.45, 0.50, 0.021
+19980218, 0.80, -0.49, -0.38, 0.021
+19980219, -0.23, 0.34, -0.11, 0.021
+19980220, 0.38, -0.35, 0.06, 0.021
+19980223, 0.44, 0.11, -0.44, 0.021
+19980224, -0.74, 0.33, 0.65, 0.021
+19980225, 1.14, -0.32, -0.24, 0.021
+19980226, 0.56, 0.05, -0.09, 0.021
+19980227, 0.05, 0.06, 0.23, 0.021
+19980302, -0.16, 0.06, 0.60, 0.018
+19980303, 0.34, -0.31, 0.48, 0.018
+19980304, -0.42, 0.32, 0.39, 0.018
+19980305, -1.03, -0.14, 0.56, 0.018
+19980306, 1.85, -0.36, -0.67, 0.018
+19980309, -0.32, -0.19, 0.40, 0.018
+19980310, 1.07, -0.45, -0.27, 0.018
+19980311, 0.50, 0.05, -0.11, 0.018
+19980312, 0.13, 0.15, -0.34, 0.018
+19980313, -0.08, 0.22, 0.26, 0.018
+19980316, 0.88, -0.41, 0.15, 0.018
+19980317, 0.10, -0.43, 0.72, 0.018
+19980318, 0.48, -0.20, -0.09, 0.018
+19980319, 0.40, 0.02, -0.13, 0.018
+19980320, 0.57, -0.69, 0.14, 0.018
+19980323, -0.33, 0.33, -0.13, 0.018
+19980324, 0.85, -0.25, -0.15, 0.018
+19980325, -0.25, 0.40, -0.18, 0.018
+19980326, -0.06, 0.31, -0.25, 0.018
+19980327, -0.40, 0.44, -0.02, 0.018
+19980330, -0.22, 0.21, -0.24, 0.018
+19980331, 0.77, 0.06, -0.22, 0.018
+19980401, 0.60, 0.37, -0.58, 0.020
+19980402, 0.83, -0.65, 0.06, 0.020
+19980403, 0.19, -0.18, 0.05, 0.020
+19980406, -0.31, -0.64, 0.92, 0.020
+19980407, -1.05, -0.53, 0.60, 0.020
+19980408, -0.49, 0.71, 0.11, 0.020
+19980409, 0.81, 0.13, 0.07, 0.020
+19980413, -0.03, -0.23, 0.72, 0.020
+19980414, 0.67, 0.17, 0.27, 0.020
+19980415, 0.37, 0.09, 0.11, 0.020
+19980416, -0.88, 0.43, -0.03, 0.020
+19980417, 1.12, -0.44, -0.57, 0.020
+19980420, 0.17, 0.60, -0.73, 0.020
+19980421, 0.24, 0.50, -0.17, 0.020
+19980422, 0.29, -0.26, 0.02, 0.020
+19980423, -1.13, -0.04, 0.42, 0.020
+19980424, -0.98, 0.21, -0.02, 0.020
+19980427, -2.14, -0.38, 0.45, 0.020
+19980428, 0.15, 0.67, -0.37, 0.020
+19980429, 0.89, -0.02, -0.27, 0.020
+19980430, 1.47, -0.26, -0.45, 0.020
+19980501, 0.60, -0.49, 0.25, 0.020
+19980504, 0.15, 0.10, -0.19, 0.020
+19980505, -0.59, -0.02, 0.16, 0.020
+19980506, -0.83, 0.23, 0.56, 0.020
+19980507, -0.83, 0.13, 0.58, 0.020
+19980508, 1.07, -0.44, -0.54, 0.020
+19980511, -0.25, -0.32, 0.53, 0.020
+19980512, 0.53, -0.82, -0.05, 0.020
+19980513, 0.27, -0.07, 0.11, 0.020
+19980514, -0.18, -0.25, 0.29, 0.020
+19980515, -0.78, 0.03, 0.49, 0.020
+19980518, -0.44, -0.59, 0.13, 0.020
+19980519, 0.38, 0.37, -0.53, 0.020
+19980520, 0.47, -1.17, 0.44, 0.020
+19980521, -0.36, -0.05, 0.56, 0.020
+19980522, -0.55, -0.36, 0.52, 0.020
+19980526, -1.50, -0.57, 0.99, 0.020
+19980527, -0.37, -0.82, -0.52, 0.020
+19980528, 0.56, 0.57, 0.03, 0.020
+19980529, -0.42, 0.65, 0.47, 0.020
+19980601, -0.33, -1.27, 1.08, 0.019
+19980602, 0.18, -0.62, 0.26, 0.019
+19980603, -0.78, 0.60, 0.50, 0.019
+19980604, 0.99, -0.35, -0.72, 0.019
+19980605, 1.45, -0.90, -0.57, 0.019
+19980608, 0.27, 0.06, -0.04, 0.019
+19980609, 0.25, 0.05, -0.48, 0.019
+19980610, -0.70, -0.55, 0.56, 0.019
+19980611, -1.46, 0.13, 0.22, 0.019
+19980612, 0.09, -0.65, -0.46, 0.019
+19980615, -1.93, 0.17, 0.49, 0.019
+19980616, 0.99, 0.15, -0.91, 0.019
+19980617, 1.63, -0.51, -0.24, 0.019
+19980618, -0.14, -0.44, -0.32, 0.019
+19980619, -0.42, 0.21, 0.10, 0.019
+19980622, 0.33, 0.35, -0.09, 0.019
+19980623, 1.36, -0.07, -1.12, 0.019
+19980624, 1.13, -0.24, -0.59, 0.019
+19980625, -0.31, 0.00, 0.29, 0.019
+19980626, 0.30, -0.22, 0.20, 0.019
+19980629, 0.55, 0.11, -0.32, 0.019
+19980630, -0.20, 0.87, -0.14, 0.019
+19980701, 1.12, -0.65, -0.03, 0.018
+19980702, -0.20, -0.21, 0.31, 0.018
+19980706, 0.85, -0.78, 0.17, 0.018
+19980707, -0.17, -0.12, 0.07, 0.018
+19980708, 0.90, -0.71, -0.53, 0.018
+19980709, -0.51, 0.77, -0.07, 0.018
+19980710, 0.31, -0.29, -0.56, 0.018
+19980713, 0.10, -0.01, -0.31, 0.018
+19980714, 0.83, -0.70, -0.15, 0.018
+19980715, -0.08, 0.91, -0.62, 0.018
+19980716, 0.65, -0.30, -0.41, 0.018
+19980717, 0.20, -0.18, -0.36, 0.018
+19980720, -0.13, 0.12, -0.46, 0.018
+19980721, -1.59, 0.32, 0.87, 0.018
+19980722, -0.28, -0.97, 0.17, 0.018
+19980723, -2.05, 0.15, 0.49, 0.018
+19980724, -0.15, -0.32, -0.47, 0.018
+19980727, 0.20, -1.54, 0.00, 0.018
+19980728, -1.50, 0.20, 0.50, 0.018
+19980729, -0.46, 0.04, 0.28, 0.018
+19980730, 1.45, -0.83, -0.35, 0.018
+19980731, -1.87, -0.28, 0.42, 0.018
+19980803, -0.87, -0.77, 0.66, 0.020
+19980804, -3.55, 0.68, 0.90, 0.020
+19980805, 0.47, -1.19, -0.22, 0.020
+19980806, 1.07, 0.97, -0.53, 0.020
+19980807, 0.39, 1.62, -0.30, 0.020
+19980810, -0.59, -0.16, -0.02, 0.020
+19980811, -1.66, -0.87, 0.11, 0.020
+19980812, 1.54, -0.04, 0.04, 0.020
+19980813, -0.87, -0.20, 0.35, 0.020
+19980814, -0.96, 0.72, 0.16, 0.020
+19980817, 1.51, -1.43, -0.72, 0.020
+19980818, 1.61, -0.33, -0.45, 0.020
+19980819, -0.46, -0.72, 0.46, 0.020
+19980820, -0.67, -0.14, -0.09, 0.020
+19980821, -1.16, -0.33, 0.06, 0.020
+19980824, 0.38, -1.13, 0.23, 0.020
+19980825, 0.21, -1.14, -0.27, 0.020
+19980826, -1.09, -1.25, -0.09, 0.020
+19980827, -3.92, 0.21, 0.26, 0.020
+19980828, -1.70, -0.65, 1.05, 0.020
+19980831, -6.71, -0.19, 2.43, 0.020
+19980901, 3.56, -0.66, -1.79, 0.022
+19980902, -0.02, 1.33, -0.15, 0.022
+19980903, -1.09, -0.43, -0.21, 0.022
+19980904, -0.78, 0.97, 0.02, 0.022
+19980908, 4.92, -1.07, -1.89, 0.022
+19980909, -1.77, -0.64, 1.17, 0.022
+19980910, -2.52, 0.26, 0.69, 0.022
+19980911, 2.67, -0.34, -1.26, 0.022
+19980914, 2.04, -1.26, 0.03, 0.022
+19980915, 0.72, -1.16, 0.77, 0.022
+19980916, 0.84, -0.36, -0.23, 0.022
+19980917, -2.35, 1.14, 0.60, 0.022
+19980918, 0.41, 1.37, -0.32, 0.022
+19980921, 0.19, -0.53, -0.32, 0.022
+19980922, 0.70, 0.53, -0.61, 0.022
+19980923, 3.24, -1.50, -0.82, 0.022
+19980924, -2.05, 0.89, 0.61, 0.022
+19980925, 0.08, -0.51, 0.17, 0.022
+19980928, 0.34, -0.44, 0.29, 0.022
+19980929, -0.11, -0.37, -0.26, 0.022
+19980930, -2.58, 2.35, 0.18, 0.022
+19981001, -3.29, -0.38, 1.34, 0.015
+19981002, 1.40, -1.65, 0.12, 0.015
+19981005, -1.91, -1.59, 0.91, 0.015
+19981006, -0.55, -0.69, -0.06, 0.015
+19981007, -1.80, -1.52, 0.91, 0.015
+19981008, -1.69, -2.43, 0.16, 0.015
+19981009, 2.64, -0.53, -1.34, 0.015
+19981012, 1.65, 0.91, -1.69, 0.015
+19981013, -0.63, -1.05, 0.85, 0.015
+19981014, 1.34, -0.32, -0.20, 0.015
+19981015, 4.06, -1.26, -0.97, 0.015
+19981016, 1.02, 0.96, -0.42, 0.015
+19981019, 0.83, 1.59, -0.24, 0.015
+19981020, 0.27, 1.35, 0.38, 0.015
+19981021, 0.59, 0.87, -0.59, 0.015
+19981022, 0.87, 1.25, -0.83, 0.015
+19981023, -0.60, 1.25, -0.57, 0.015
+19981026, 0.41, 1.19, -0.56, 0.015
+19981027, -0.53, 0.56, 0.32, 0.015
+19981028, 0.24, 0.16, -0.18, 0.015
+19981029, 1.60, -0.65, -0.53, 0.015
+19981030, 1.22, -0.79, 0.70, 0.015
+19981102, 1.40, 0.73, -0.47, 0.015
+19981103, -0.10, 0.37, 0.11, 0.015
+19981104, 0.88, 0.32, 0.16, 0.015
+19981105, 1.28, -0.03, -0.36, 0.015
+19981106, 0.68, 0.60, -0.62, 0.015
+19981109, -0.83, 0.62, -0.43, 0.015
+19981110, -0.15, -0.15, 0.01, 0.015
+19981111, -0.69, 0.13, 0.11, 0.015
+19981112, -0.27, -0.12, 0.29, 0.015
+19981113, 0.53, -1.38, 0.61, 0.015
+19981116, 0.75, -0.67, -0.27, 0.015
+19981117, 0.32, -0.80, 0.09, 0.015
+19981118, 0.51, 0.04, -0.54, 0.015
+19981119, 0.66, 0.17, -0.39, 0.015
+19981120, 0.78, -0.51, -0.47, 0.015
+19981123, 2.02, -1.11, -0.89, 0.015
+19981124, -0.43, 0.03, 0.47, 0.015
+19981125, 0.39, 0.68, -0.40, 0.015
+19981127, 0.54, 0.81, -0.67, 0.015
+19981130, -2.31, 1.21, 0.73, 0.015
+19981201, 0.86, -0.74, 0.03, 0.017
+19981202, -0.21, -0.05, -0.29, 0.017
+19981203, -1.62, 0.73, 0.50, 0.017
+19981204, 2.00, -1.10, -0.58, 0.017
+19981207, 0.89, -0.23, -0.57, 0.017
+19981208, -0.44, 0.49, -0.27, 0.017
+19981209, 0.09, 0.11, -0.31, 0.017
+19981210, -1.55, 0.30, 0.53, 0.017
+19981211, -0.05, -0.22, -0.33, 0.017
+19981214, -2.12, 0.10, 0.63, 0.017
+19981215, 1.67, -1.11, -0.78, 0.017
+19981216, -0.08, -0.13, 0.37, 0.017
+19981217, 1.51, -1.00, -0.03, 0.017
+19981218, 0.68, 0.59, -0.76, 0.017
+19981221, 1.35, -0.32, -0.73, 0.017
+19981222, 0.00, -0.09, -0.42, 0.017
+19981223, 1.93, -0.51, -0.88, 0.017
+19981224, -0.07, 0.22, -0.02, 0.017
+19981228, 0.16, 0.50, -0.66, 0.017
+19981229, 1.14, -0.39, -0.28, 0.017
+19981230, -0.50, 0.65, 0.44, 0.017
+19981231, 0.43, 1.86, 0.05, 0.017
+19990104, -0.19, 0.21, 0.45, 0.019
+19990105, 1.10, -0.89, 0.12, 0.019
+19990106, 2.10, -0.70, -0.40, 0.019
+19990107, -0.07, 0.46, -0.23, 0.019
+19990108, 0.45, -0.05, 0.38, 0.019
+19990111, -0.52, 1.11, -0.07, 0.019
+19990112, -1.85, 0.66, 0.09, 0.019
+19990113, -0.54, -0.03, -0.22, 0.019
+19990114, -1.66, 1.09, -0.01, 0.019
+19990115, 2.28, -0.75, -0.41, 0.019
+19990119, 0.80, 0.13, -0.67, 0.019
+19990120, 0.24, 0.15, -0.67, 0.019
+19990121, -1.82, 0.31, 0.73, 0.019
+19990122, -0.66, 0.41, 0.15, 0.019
+19990125, 0.67, -0.84, -0.24, 0.019
+19990126, 1.39, -0.25, -1.13, 0.019
+19990127, -0.74, 0.06, -0.57, 0.019
+19990128, 1.63, -0.99, -0.69, 0.019
+19990129, 0.95, 0.19, -0.61, 0.019
+19990201, -0.39, 0.01, -0.27, 0.019
+19990202, -0.89, -0.15, -0.18, 0.019
+19990203, 0.90, -0.21, -0.72, 0.019
+19990204, -1.92, 0.37, 1.06, 0.019
+19990205, -0.92, -0.56, 0.79, 0.019
+19990208, 0.23, -0.59, 0.13, 0.019
+19990209, -2.25, 0.09, 1.40, 0.019
+19990210, 0.27, -1.20, -0.45, 0.019
+19990211, 2.49, -0.51, -1.60, 0.019
+19990212, -1.90, 0.15, 0.51, 0.019
+19990216, 0.65, -1.29, -0.16, 0.019
+19990217, -1.45, -0.69, 1.11, 0.019
+19990218, 0.92, -1.18, 0.67, 0.019
+19990219, 0.25, 0.17, -0.50, 0.019
+19990222, 2.41, -1.25, -0.57, 0.019
+19990223, 0.09, 0.38, -0.57, 0.019
+19990224, -1.31, 0.34, 0.23, 0.019
+19990225, -0.69, 0.11, 0.05, 0.019
+19990226, -0.49, 0.03, 0.46, 0.019
+19990301, -0.01, 0.24, 0.07, 0.018
+19990302, -0.69, 0.09, 0.48, 0.018
+19990303, 0.01, -0.62, 0.11, 0.018
+19990304, 1.34, -1.03, -0.31, 0.018
+19990305, 2.04, -1.25, -0.47, 0.018
+19990308, 0.66, -0.08, -0.94, 0.018
+19990309, -0.23, 0.15, -0.24, 0.018
+19990310, 0.52, 0.04, -0.31, 0.018
+19990311, 0.73, -0.75, 0.04, 0.018
+19990312, -0.32, -0.44, 0.72, 0.018
+19990315, 0.94, -0.40, -0.33, 0.018
+19990316, -0.15, -0.22, -0.30, 0.018
+19990317, -0.55, 0.12, 0.37, 0.018
+19990318, 1.27, -1.18, -0.20, 0.018
+19990319, -1.32, 0.17, 0.81, 0.018
+19990322, -0.33, -0.46, 0.33, 0.018
+19990323, -2.64, 0.46, 0.88, 0.018
+19990324, 0.51, -0.51, -0.26, 0.018
+19990325, 1.78, 0.39, -1.02, 0.018
+19990326, -0.50, 0.95, -0.33, 0.018
+19990329, 1.98, -0.20, -1.75, 0.018
+19990330, -0.63, 0.62, -0.24, 0.018
+19990331, -0.86, -0.01, 0.22, 0.018
+19990401, 0.54, -0.10, -0.02, 0.018
+19990405, 1.87, -0.96, -0.56, 0.018
+19990406, -0.26, 0.00, 0.13, 0.018
+19990407, 0.42, -0.73, -0.22, 0.018
+19990408, 1.27, -0.41, -0.77, 0.018
+19990409, 0.43, 1.25, -0.48, 0.018
+19990412, 0.87, 0.24, -0.19, 0.018
+19990413, -0.34, 1.96, -0.18, 0.018
+19990414, -1.43, 0.55, 1.99, 0.018
+19990415, -0.39, -0.10, 0.85, 0.018
+19990416, -0.23, 0.85, 1.04, 0.018
+19990419, -2.48, -1.01, 3.78, 0.018
+19990420, 1.38, -0.12, -1.98, 0.018
+19990421, 2.53, 0.59, -1.93, 0.018
+19990422, 1.35, -0.55, -0.89, 0.018
+19990423, 0.11, 0.57, 0.16, 0.018
+19990426, 0.44, 0.89, -1.24, 0.018
+19990427, 0.09, -0.07, 0.59, 0.018
+19990428, -0.88, -0.11, 1.59, 0.018
+19990429, -0.45, 0.36, 0.86, 0.018
+19990430, -0.47, 0.70, -0.40, 0.018
+19990503, 1.10, -1.41, 0.59, 0.017
+19990504, -1.49, 0.95, 0.44, 0.017
+19990505, 1.03, -0.86, -0.16, 0.017
+19990506, -1.15, 0.86, 1.01, 0.017
+19990507, 0.89, -0.51, -0.10, 0.017
+19990510, -0.03, 1.20, 0.15, 0.017
+19990511, 1.19, 0.07, -0.88, 0.017
+19990512, 0.65, 0.08, -0.52, 0.017
+19990513, 0.23, 0.22, 0.13, 0.017
+19990514, -2.14, 0.80, 0.52, 0.017
+19990517, 0.15, -0.04, -0.74, 0.017
+19990518, -0.40, 0.41, 0.41, 0.017
+19990519, 0.82, -0.10, -0.20, 0.017
+19990520, -0.36, 0.93, 0.41, 0.017
+19990521, -0.57, 0.73, 0.70, 0.017
+19990524, -1.93, 0.06, 1.03, 0.017
+19990525, -1.81, -0.10, 1.05, 0.017
+19990526, 1.41, -1.19, -0.66, 0.017
+19990527, -1.43, 1.22, -0.03, 0.017
+19990528, 1.53, -0.07, -0.66, 0.017
+19990601, -0.80, 0.29, 0.82, 0.018
+19990602, 0.13, -0.32, -0.44, 0.018
+19990603, 0.12, -0.24, 0.33, 0.018
+19990604, 2.03, -0.27, -1.62, 0.018
+19990607, 0.71, 0.22, -0.06, 0.018
+19990608, -1.23, 0.60, 0.42, 0.018
+19990609, 0.16, 0.71, -0.62, 0.018
+19990610, -1.20, 0.47, 0.57, 0.018
+19990611, -0.80, -0.03, 0.33, 0.018
+19990614, -0.49, -1.26, 1.02, 0.018
+19990615, 0.52, -0.42, -0.02, 0.018
+19990616, 2.26, -0.60, -1.06, 0.018
+19990617, 0.72, 0.09, -0.74, 0.018
+19990618, 0.22, 0.38, -0.13, 0.018
+19990621, 0.63, 0.78, -0.72, 0.018
+19990622, -0.93, 0.60, 0.30, 0.018
+19990623, -0.14, 0.25, -0.22, 0.018
+19990624, -1.31, 0.58, 0.59, 0.018
+19990625, -0.06, 0.17, -0.06, 0.018
+19990628, 1.23, 0.16, -0.24, 0.018
+19990629, 1.49, -0.05, -0.93, 0.018
+19990630, 1.60, 1.01, -1.48, 0.018
+19990701, 0.55, -0.85, -0.20, 0.018
+19990702, 0.73, -0.03, -0.48, 0.018
+19990706, -0.08, 0.06, 0.14, 0.018
+19990707, 0.22, -0.57, -0.19, 0.018
+19990708, 0.03, 0.68, -0.54, 0.018
+19990709, 0.54, 0.53, -0.43, 0.018
+19990712, -0.24, 0.53, 0.19, 0.018
+19990713, -0.39, 0.33, -0.02, 0.018
+19990714, 0.46, 0.44, -0.65, 0.018
+19990715, 0.83, 0.26, -0.64, 0.018
+19990716, 0.48, -0.44, -0.07, 0.018
+19990719, -0.82, 0.06, 0.62, 0.018
+19990720, -2.22, 0.13, 1.07, 0.018
+19990721, 0.27, 0.20, -0.55, 0.018
+19990722, -1.33, 0.05, 0.94, 0.018
+19990723, -0.32, -0.23, 0.02, 0.018
+19990726, -1.02, -0.59, 0.82, 0.018
+19990727, 1.12, -0.36, -0.74, 0.018
+19990728, 0.15, 0.31, -0.44, 0.018
+19990729, -1.75, 0.71, 0.48, 0.018
+19990730, -0.72, 1.55, -0.19, 0.018
+19990802, -0.27, -0.54, 0.52, 0.018
+19990803, -0.79, -0.75, 0.50, 0.018
+19990804, -1.45, -0.46, 1.25, 0.018
+19990805, 0.63, -0.66, -0.45, 0.018
+19990806, -1.00, 0.82, 0.14, 0.018
+19990809, -0.41, -0.50, 0.85, 0.018
+19990810, -1.16, 0.37, 0.05, 0.018
+19990811, 1.63, -0.64, -0.23, 0.018
+19990812, -0.14, 0.30, 0.11, 0.018
+19990813, 2.21, -0.95, -0.97, 0.018
+19990816, 0.26, 0.00, -0.53, 0.018
+19990817, 0.97, -0.61, -0.29, 0.018
+19990818, -0.75, 0.38, -0.21, 0.018
+19990819, -0.78, 0.63, 0.68, 0.018
+19990820, 0.89, -0.31, -0.44, 0.018
+19990823, 1.76, -0.95, -0.88, 0.018
+19990824, 0.18, -0.02, -0.37, 0.018
+19990825, 1.21, -0.14, -1.49, 0.018
+19990826, -1.18, 0.89, 0.27, 0.018
+19990827, -0.99, 0.46, 0.39, 0.018
+19990830, -1.78, 1.03, -0.08, 0.018
+19990831, -0.17, 0.27, -0.13, 0.018
+19990901, 0.76, -0.20, -0.12, 0.018
+19990902, -0.86, 0.38, 0.11, 0.018
+19990903, 2.84, -0.94, -1.23, 0.018
+19990907, -0.34, 0.95, -0.05, 0.018
+19990908, -0.55, 0.20, 0.31, 0.018
+19990909, 0.31, 0.15, 0.05, 0.018
+19990910, 0.44, 0.46, -0.48, 0.018
+19990913, -0.64, 0.17, 0.32, 0.018
+19990914, -0.52, 0.30, -0.26, 0.018
+19990915, -1.28, 0.62, 0.80, 0.018
+19990916, -0.20, -0.87, 0.04, 0.018
+19990917, 1.22, -0.18, -0.80, 0.018
+19990920, 0.00, 0.06, -0.61, 0.018
+19990921, -1.93, 0.69, 0.08, 0.018
+19990922, 0.29, 0.09, -0.74, 0.018
+19990923, -2.35, 0.50, 0.84, 0.018
+19990924, -0.19, -0.43, -0.33, 0.018
+19990927, 0.42, 0.57, -0.37, 0.018
+19990928, -0.23, -0.01, -0.83, 0.018
+19990929, -0.80, 0.60, 0.56, 0.018
+19990930, 0.92, 0.35, -0.88, 0.018
+19991001, -0.16, -0.10, -0.26, 0.018
+19991004, 1.66, -1.36, -0.26, 0.018
+19991005, -0.09, -0.13, -0.21, 0.018
+19991006, 1.82, -1.12, -0.58, 0.018
+19991007, -0.47, 0.31, -0.14, 0.018
+19991008, 1.09, -0.88, -0.45, 0.018
+19991011, 0.21, 0.36, -0.11, 0.018
+19991012, -1.72, 0.41, 0.55, 0.018
+19991013, -2.04, 0.41, 1.04, 0.018
+19991014, -0.02, -0.26, 0.00, 0.018
+19991015, -2.65, 1.70, 0.28, 0.018
+19991018, 0.09, -1.51, 0.16, 0.018
+19991019, 0.76, -0.14, -0.82, 0.018
+19991020, 1.86, -0.61, -1.31, 0.018
+19991021, -0.16, 0.22, -0.22, 0.018
+19991022, 1.31, -1.04, 0.55, 0.018
+19991025, -0.43, 0.31, 0.05, 0.018
+19991026, -0.85, 0.75, -0.05, 0.018
+19991027, 0.89, -1.20, 0.13, 0.018
+19991028, 3.32, -2.11, -0.82, 0.018
+19991029, 1.73, -1.02, -0.36, 0.018
+19991101, -0.38, 1.25, -0.49, 0.017
+19991102, -0.33, 0.21, 0.45, 0.017
+19991103, 0.69, 1.08, -0.70, 0.017
+19991104, 0.66, -0.11, -0.55, 0.017
+19991105, 0.79, -0.34, -0.36, 0.017
+19991108, 0.59, 0.46, -0.66, 0.017
+19991109, -0.78, 1.19, 0.13, 0.017
+19991110, 0.53, 0.44, -0.59, 0.017
+19991111, 0.37, 0.12, -0.68, 0.017
+19991112, 1.10, -0.91, 0.11, 0.017
+19991115, 0.03, 0.62, 0.47, 0.017
+19991116, 1.84, -0.79, -0.69, 0.017
+19991117, -0.63, 1.01, 0.00, 0.017
+19991118, 1.13, 0.77, -1.44, 0.017
+19991119, -0.11, 0.35, -0.50, 0.017
+19991122, 0.02, 0.22, -0.92, 0.017
+19991123, -1.29, 0.08, 0.30, 0.017
+19991124, 0.87, 0.08, -0.89, 0.017
+19991126, 0.23, 0.92, -0.20, 0.017
+19991129, -0.60, 0.57, -0.14, 0.017
+19991130, -1.28, -0.18, 1.28, 0.017
+19991201, 0.49, -0.15, -0.29, 0.020
+19991202, 1.15, 0.53, -1.01, 0.020
+19991203, 1.59, -1.06, -0.52, 0.020
+19991206, -0.42, 0.88, -0.55, 0.020
+19991207, -0.43, 1.06, -1.16, 0.020
+19991208, -0.08, 0.95, -0.45, 0.020
+19991209, 0.30, -0.23, -0.56, 0.020
+19991210, 0.51, 0.58, -0.69, 0.020
+19991213, 0.05, 1.13, -0.65, 0.020
+19991214, -1.33, -0.51, 1.27, 0.020
+19991215, 0.54, -1.01, 0.13, 0.020
+19991216, 0.61, 0.54, -0.73, 0.020
+19991217, 0.27, 0.00, -0.23, 0.020
+19991220, -0.08, 0.65, -0.68, 0.020
+19991221, 1.44, 0.21, -0.77, 0.020
+19991222, 0.33, 0.02, -0.19, 0.020
+19991223, 1.30, -0.46, -0.33, 0.020
+19991227, -0.21, 0.77, -0.73, 0.020
+19991228, 0.21, 0.25, 0.15, 0.020
+19991229, 0.64, 0.98, -0.10, 0.020
+19991230, 0.08, 0.01, -0.10, 0.020
+19991231, 0.52, 1.36, 0.29, 0.020
+20000103, -0.71, 0.38, -0.85, 0.021
+20000104, -4.06, -0.04, 2.21, 0.021
+20000105, -0.09, 0.18, 0.14, 0.021
+20000106, -0.73, -0.67, 1.38, 0.021
+20000107, 3.21, -0.59, -1.24, 0.021
+20000110, 1.76, 1.00, -1.51, 0.021
+20000111, -1.71, 0.20, 0.93, 0.021
+20000112, -0.69, -0.53, 0.91, 0.021
+20000113, 1.59, 1.00, -1.31, 0.021
+20000114, 1.15, 0.09, -0.19, 0.021
+20000118, -0.26, 2.55, -0.47, 0.021
+20000119, 0.44, 0.92, -0.51, 0.021
+20000120, -0.37, 1.92, -1.15, 0.021
+20000121, 0.23, 1.41, -0.46, 0.021
+20000124, -2.59, 1.11, 0.83, 0.021
+20000125, 0.49, -0.24, -0.46, 0.021
+20000126, -0.44, -0.23, 0.30, 0.021
+20000127, -0.44, -0.40, -0.09, 0.021
+20000128, -2.82, -0.10, 1.36, 0.021
+20000131, 1.50, -2.90, -0.37, 0.021
+20000201, 1.29, -0.13, 0.15, 0.022
+20000202, 0.16, 1.73, -0.54, 0.022
+20000203, 1.49, 1.36, -1.37, 0.022
+20000204, -0.05, 1.15, -0.58, 0.022
+20000207, 0.35, 1.60, -1.24, 0.022
+20000208, 1.23, 0.69, -1.79, 0.022
+20000209, -1.83, 1.80, -0.08, 0.022
+20000210, 0.57, 1.59, -1.15, 0.022
+20000211, -1.74, 1.10, 0.61, 0.022
+20000214, 0.24, 0.62, 0.18, 0.022
+20000215, 0.70, -0.65, 0.01, 0.022
+20000216, -0.58, 1.84, -0.33, 0.022
+20000217, 0.46, 1.99, -1.13, 0.022
+20000218, -2.69, 1.18, 0.59, 0.022
+20000222, 0.11, -1.05, 0.36, 0.022
+20000223, 1.24, 0.91, -1.63, 0.022
+20000224, 0.01, 1.02, -0.36, 0.022
+20000225, -1.04, 1.64, 0.16, 0.022
+20000228, 0.76, -0.19, -0.11, 0.022
+20000229, 1.96, 1.95, -0.68, 0.022
+20000301, 1.39, 1.06, -0.61, 0.020
+20000302, -0.09, 0.06, 0.28, 0.020
+20000303, 2.30, -0.05, -0.96, 0.020
+20000306, -0.77, 1.72, 0.25, 0.020
+20000307, -2.20, 0.84, 0.38, 0.020
+20000308, 0.69, -0.56, -0.26, 0.020
+20000309, 2.45, -0.31, -0.56, 0.020
+20000310, -0.43, 0.24, 0.26, 0.020
+20000313, -1.48, -1.14, 1.10, 0.020
+20000314, -2.33, -1.23, 1.23, 0.020
+20000315, 0.83, -5.09, 1.50, 0.020
+20000316, 4.25, -3.76, 0.36, 0.020
+20000317, 0.62, 0.72, -0.69, 0.020
+20000320, -1.71, -2.66, 2.11, 0.020
+20000321, 1.95, -2.28, -0.39, 0.020
+20000322, 1.31, 2.43, -1.29, 0.020
+20000323, 1.48, -1.08, 0.38, 0.020
+20000324, 0.11, -0.29, -0.04, 0.020
+20000327, -0.39, 0.32, -0.42, 0.020
+20000328, -1.34, -1.21, 0.92, 0.020
+20000329, -1.00, -2.41, 1.90, 0.020
+20000330, -1.76, -2.07, 1.67, 0.020
+20000331, 1.19, 0.28, 0.01, 0.020
+20000403, -1.67, -4.06, 2.16, 0.024
+20000404, -1.20, -1.76, 0.26, 0.024
+20000405, 0.01, 1.36, -0.74, 0.024
+20000406, 1.47, 1.44, -0.43, 0.024
+20000407, 1.42, 1.85, -0.68, 0.024
+20000410, -1.95, -3.52, 2.18, 0.024
+20000411, -1.01, -2.44, 2.18, 0.024
+20000412, -2.97, -2.86, 2.85, 0.024
+20000413, -1.80, -0.30, 0.95, 0.024
+20000414, -6.72, -1.27, 2.07, 0.024
+20000417, 2.94, -1.61, -1.56, 0.024
+20000418, 3.84, 3.29, -2.40, 0.024
+20000419, -0.80, 1.49, 0.11, 0.024
+20000420, 0.09, -1.14, 1.04, 0.024
+20000424, -1.01, -2.34, 1.14, 0.024
+20000425, 3.74, 0.44, -1.06, 0.024
+20000426, -1.23, 0.28, 1.33, 0.024
+20000427, 0.76, 1.46, -0.77, 0.024
+20000428, 0.07, 2.28, 0.01, 0.024
+20000501, 1.40, 1.18, -1.21, 0.023
+20000502, -2.07, -1.26, 1.93, 0.023
+20000503, -2.09, 0.35, -0.46, 0.023
+20000504, 0.00, 0.88, -0.08, 0.023
+20000505, 1.48, 0.78, -0.67, 0.023
+20000508, -0.98, -1.63, 1.47, 0.023
+20000509, -1.19, -0.97, 0.90, 0.023
+20000510, -2.70, -1.07, 0.87, 0.023
+20000511, 2.08, 0.33, -0.23, 0.023
+20000512, 0.81, -0.66, 0.51, 0.023
+20000515, 2.13, -0.78, -0.79, 0.023
+20000516, 1.30, 0.33, -0.63, 0.023
+20000517, -1.38, 0.20, 0.73, 0.023
+20000518, -1.09, -1.28, 1.06, 0.023
+20000519, -2.39, -0.25, 0.88, 0.023
+20000522, -0.73, -1.02, -0.31, 0.023
+20000523, -2.38, -0.89, 1.39, 0.023
+20000524, 1.55, -1.17, -1.27, 0.023
+20000525, -1.29, 0.51, 0.11, 0.023
+20000526, -0.18, 0.24, -0.05, 0.023
+20000530, 3.82, 0.77, -2.25, 0.023
+20000531, -0.22, 0.06, 0.54, 0.023
+20000601, 2.50, 0.84, -1.64, 0.018
+20000602, 2.91, 1.70, -2.45, 0.018
+20000605, -0.37, 1.32, -0.56, 0.018
+20000606, -0.87, 0.70, 0.18, 0.018
+20000607, 1.16, 0.27, -0.76, 0.018
+20000608, -0.60, 0.72, 0.17, 0.018
+20000609, 0.04, 1.52, -0.07, 0.018
+20000612, -1.19, -0.87, 1.28, 0.018
+20000613, 1.45, -0.16, -0.99, 0.018
+20000614, -0.16, -0.33, 0.35, 0.018
+20000615, 0.50, 0.34, -1.23, 0.018
+20000616, -0.74, 1.35, -0.19, 0.018
+20000619, 1.66, 0.16, -1.27, 0.018
+20000620, -0.25, 0.98, -0.51, 0.018
+20000621, 0.36, 0.68, -0.49, 0.018
+20000622, -1.88, 0.10, 0.43, 0.018
+20000623, -0.99, -0.37, 1.05, 0.018
+20000626, 0.92, 1.35, -1.36, 0.018
+20000627, -0.55, -0.61, 0.77, 0.018
+20000628, 0.77, 1.87, -1.20, 0.018
+20000629, -0.67, 0.07, 0.62, 0.018
+20000630, 0.74, 1.89, -1.56, 0.018
+20000703, 0.91, -0.67, 0.83, 0.024
+20000705, -1.60, -0.12, 1.85, 0.024
+20000706, 0.87, 0.01, -0.15, 0.024
+20000707, 1.46, -0.76, -0.81, 0.024
+20000710, -0.13, 0.13, 0.59, 0.024
+20000711, 0.12, -0.24, 0.10, 0.024
+20000712, 1.31, 0.37, -0.64, 0.024
+20000713, 0.51, 0.27, -0.57, 0.024
+20000714, 0.94, -0.43, -0.41, 0.024
+20000717, 0.10, 1.11, -1.32, 0.024
+20000718, -1.35, 0.13, 1.19, 0.024
+20000719, -1.19, -0.36, 1.25, 0.024
+20000720, 1.33, -0.23, -0.80, 0.024
+20000721, -1.30, -0.46, 1.10, 0.024
+20000724, -1.44, -0.41, 0.87, 0.024
+20000725, 0.51, -0.69, 0.23, 0.024
+20000726, -1.33, 0.83, 0.94, 0.024
+20000727, -0.90, -1.75, 2.48, 0.024
+20000728, -2.33, -0.23, 1.72, 0.024
+20000731, 1.03, 0.75, -0.45, 0.024
+20000801, 0.16, -1.33, 1.54, 0.022
+20000802, 0.02, 0.08, 0.21, 0.022
+20000803, 1.11, -1.37, -0.01, 0.022
+20000804, 0.89, -0.74, 0.23, 0.022
+20000807, 1.16, 0.13, -0.73, 0.022
+20000808, 0.10, -0.53, 1.08, 0.022
+20000809, -0.60, 0.50, 0.06, 0.022
+20000810, -1.03, -0.51, 1.18, 0.022
+20000811, 0.86, 0.13, 0.26, 0.022
+20000814, 1.24, -0.06, -0.40, 0.022
+20000815, -0.46, 0.00, 0.05, 0.022
+20000816, -0.18, 0.66, -0.20, 0.022
+20000817, 1.12, -0.34, -0.60, 0.022
+20000818, -0.28, 0.06, 0.03, 0.022
+20000821, 0.40, -0.07, -0.49, 0.022
+20000822, -0.01, 0.00, 0.09, 0.022
+20000823, 0.55, 0.19, -1.02, 0.022
+20000824, 0.34, 0.47, -0.47, 0.022
+20000825, -0.04, 0.68, -0.46, 0.022
+20000828, 0.49, -0.36, -0.11, 0.022
+20000829, -0.03, 0.69, -0.24, 0.022
+20000830, -0.11, 0.45, -0.01, 0.022
+20000831, 1.19, 0.16, -0.65, 0.022
+20000901, 0.38, 0.15, -0.35, 0.025
+20000905, -0.97, -0.23, 1.33, 0.025
+20000906, -1.23, -0.33, 2.01, 0.025
+20000907, 0.80, 0.59, -0.72, 0.025
+20000908, -0.83, -0.65, 0.90, 0.025
+20000911, -0.45, -0.77, 1.43, 0.025
+20000912, -0.50, 0.41, -0.08, 0.025
+20000913, 0.29, -0.18, -0.15, 0.025
+20000914, 0.01, 0.92, -0.37, 0.025
+20000915, -1.23, -0.11, 0.98, 0.025
+20000918, -1.80, -0.34, 0.55, 0.025
+20000919, 1.24, 0.43, -1.53, 0.025
+20000920, -0.39, 0.61, -0.59, 0.025
+20000921, -0.54, -0.69, 1.08, 0.025
+20000922, 0.40, -0.52, -0.15, 0.025
+20000925, -0.56, -0.24, 0.45, 0.025
+20000926, -0.96, -0.62, 1.12, 0.025
+20000927, -0.21, -0.62, 0.33, 0.025
+20000928, 2.32, 0.15, -1.21, 0.025
+20000929, -1.26, 0.70, 1.25, 0.025
+20001002, -0.70, -1.59, 1.47, 0.025
+20001003, -1.29, 0.13, 1.05, 0.025
+20001004, 0.64, 0.04, -0.64, 0.025
+20001005, -0.23, -0.11, 0.08, 0.025
+20001006, -2.17, -0.12, 1.57, 0.025
+20001009, -0.39, -0.28, 0.51, 0.025
+20001010, -1.44, 0.02, 0.69, 0.025
+20001011, -1.77, -0.01, 0.85, 0.025
+20001012, -2.83, 0.69, 1.21, 0.025
+20001013, 3.88, -0.55, -2.36, 0.025
+20001016, 0.24, -0.19, -0.47, 0.025
+20001017, -1.95, 0.16, 0.59, 0.025
+20001018, -0.84, -0.26, 0.60, 0.025
+20001019, 3.66, -0.62, -2.13, 0.025
+20001020, 0.92, 0.39, -1.01, 0.025
+20001023, 0.03, 0.70, -0.67, 0.025
+20001024, -0.12, -0.90, 1.16, 0.025
+20001025, -2.52, -0.14, 1.88, 0.025
+20001026, 0.00, 0.89, -0.33, 0.025
+20001027, 0.91, -1.20, 1.25, 0.025
+20001030, 0.74, -1.55, 1.82, 0.025
+20001031, 2.75, 0.59, -1.65, 0.025
+20001101, -0.48, -0.22, 0.49, 0.024
+20001102, 1.05, 1.36, -1.28, 0.024
+20001103, -0.03, 1.14, -1.21, 0.024
+20001106, 0.13, -0.97, 0.53, 0.024
+20001107, -0.08, 0.45, -0.33, 0.024
+20001108, -1.97, 0.19, 2.16, 0.024
+20001109, -0.96, -0.35, 0.80, 0.024
+20001110, -2.69, -0.42, 2.31, 0.024
+20001113, -1.39, -0.19, 1.71, 0.024
+20001114, 2.66, -0.06, -1.84, 0.024
+20001115, 0.60, 0.05, 0.07, 0.024
+20001116, -1.67, -0.61, 1.62, 0.024
+20001117, -0.52, 0.78, 0.44, 0.024
+20001120, -2.46, -0.16, 1.38, 0.024
+20001121, -0.05, -0.85, 0.72, 0.024
+20001122, -2.12, -0.21, 1.96, 0.024
+20001124, 2.08, 0.83, -2.02, 0.024
+20001127, 0.30, -0.20, -0.64, 0.024
+20001128, -1.67, -1.09, 2.51, 0.024
+20001129, 0.18, -1.71, 1.05, 0.024
+20001130, -2.03, -0.68, 1.49, 0.024
+20001201, 0.51, 1.59, -0.68, 0.025
+20001204, 0.35, -1.57, 0.93, 0.025
+20001205, 4.55, 0.00, -2.87, 0.025
+20001206, -1.78, 0.07, 1.09, 0.025
+20001207, -0.59, 0.10, 0.43, 0.025
+20001208, 2.79, 0.64, -1.42, 0.025
+20001211, 1.15, 0.22, -0.95, 0.025
+20001212, -1.07, -0.55, 0.54, 0.025
+20001213, -1.14, -0.25, 1.12, 0.025
+20001214, -1.80, 0.14, 1.04, 0.025
+20001215, -1.96, 0.30, 1.63, 0.025
+20001218, 0.60, -0.62, 1.31, 0.025
+20001219, -1.63, -0.43, 2.11, 0.025
+20001220, -3.59, -0.94, 3.03, 0.025
+20001221, 0.54, -0.18, 0.32, 0.025
+20001222, 3.06, 0.73, -2.10, 0.025
+20001226, 0.55, -0.45, 0.75, 0.025
+20001227, 1.36, 0.76, -0.31, 0.025
+20001228, 0.88, 1.79, -0.68, 0.025
+20001229, -1.23, -0.22, 1.43, 0.025
+20010102, -3.52, -0.29, 1.96, 0.026
+20010103, 5.39, 0.57, -4.12, 0.026
+20010104, -1.30, 0.71, 0.24, 0.026
+20010105, -2.98, 0.29, 2.18, 0.026
+20010108, -0.36, -0.51, 0.95, 0.026
+20010109, 0.51, 0.49, -0.23, 0.026
+20010110, 1.44, 0.81, -1.30, 0.026
+20010111, 1.39, 1.63, -2.84, 0.026
+20010112, -0.40, 1.23, -0.56, 0.026
+20010116, 0.68, 1.07, -0.22, 0.026
+20010117, 0.37, 0.17, -0.83, 0.026
+20010118, 1.16, -0.09, -1.38, 0.026
+20010119, -0.55, -0.17, -0.27, 0.026
+20010122, -0.01, -0.45, 1.10, 0.026
+20010123, 1.57, 0.46, -0.43, 0.026
+20010124, 0.34, -0.40, -0.35, 0.026
+20010125, -0.81, -0.68, 1.59, 0.026
+20010126, -0.11, 0.32, -0.22, 0.026
+20010129, 0.90, 0.66, -0.31, 0.026
+20010130, 0.63, -0.11, -0.20, 0.026
+20010131, -0.72, 0.42, 0.28, 0.026
+20010201, 0.39, -0.27, 0.82, 0.020
+20010202, -1.90, -0.31, 2.21, 0.020
+20010205, 0.17, -0.50, 1.04, 0.020
+20010206, 0.04, 1.06, -0.49, 0.020
+20010207, -0.86, 0.82, 1.17, 0.020
+20010208, -0.67, -0.31, 0.79, 0.020
+20010209, -1.42, -0.13, 1.18, 0.020
+20010212, 1.10, 0.15, 0.05, 0.020
+20010213, -0.90, 0.16, 1.01, 0.020
+20010214, -0.04, 0.45, -0.41, 0.020
+20010215, 0.93, 0.30, -0.86, 0.020
+20010216, -1.93, -0.59, 1.87, 0.020
+20010220, -1.93, 0.19, 1.40, 0.020
+20010221, -1.84, 0.07, 0.92, 0.020
+20010222, -0.48, -1.04, 0.59, 0.020
+20010223, -0.38, 0.34, -0.35, 0.020
+20010226, 1.91, -0.34, 0.02, 0.020
+20010227, -1.17, -1.21, 1.64, 0.020
+20010228, -1.48, 0.44, 0.81, 0.020
+20010301, 0.02, -0.18, -0.07, 0.019
+20010302, -0.53, 0.40, 1.15, 0.019
+20010305, 0.54, -0.68, 0.18, 0.019
+20010306, 1.06, 0.30, -1.03, 0.019
+20010307, 0.58, -0.10, 0.65, 0.019
+20010308, -0.14, -0.71, 0.99, 0.019
+20010309, -2.50, 0.22, 2.01, 0.019
+20010312, -4.34, 0.60, 2.38, 0.019
+20010313, 1.61, -0.18, -1.48, 0.019
+20010314, -2.50, 0.79, 0.10, 0.019
+20010315, 0.34, -0.64, 0.30, 0.019
+20010316, -2.11, -0.36, 1.27, 0.019
+20010319, 1.86, -0.16, -1.15, 0.019
+20010320, -2.40, 0.68, 1.33, 0.019
+20010321, -1.88, -0.07, 0.67, 0.019
+20010322, -0.43, 0.34, -1.40, 0.019
+20010323, 2.08, 0.09, -1.22, 0.019
+20010326, 1.09, -1.03, 0.61, 0.019
+20010327, 2.40, -0.49, -1.54, 0.019
+20010328, -2.58, 0.01, 1.87, 0.019
+20010329, -0.53, -0.17, 1.51, 0.019
+20010330, 1.19, 1.66, -0.60, 0.019
+20010402, -1.60, -1.68, 1.48, 0.020
+20010403, -3.69, 0.07, 2.03, 0.020
+20010404, -0.39, -0.28, 0.82, 0.020
+20010405, 4.68, 0.21, -3.28, 0.020
+20010406, -2.07, 0.37, 0.21, 0.020
+20010409, 0.87, 0.25, -0.13, 0.020
+20010410, 2.87, -0.35, -1.36, 0.020
+20010411, -0.10, -0.16, -0.65, 0.020
+20010412, 1.57, 0.25, -1.32, 0.020
+20010416, -0.47, -0.35, 0.66, 0.020
+20010417, 1.10, 0.15, -0.22, 0.020
+20010418, 3.92, -1.51, -2.52, 0.020
+20010419, 1.48, 0.33, -1.37, 0.020
+20010420, -0.87, 0.10, 0.16, 0.020
+20010423, -1.72, 0.35, 1.21, 0.020
+20010424, -1.15, 1.08, 1.00, 0.020
+20010425, 1.68, 0.77, -0.90, 0.020
+20010426, 0.45, 0.26, 0.26, 0.020
+20010427, 1.47, -0.09, -0.44, 0.020
+20010430, 0.03, 0.74, -0.51, 0.020
+20010501, 1.37, 0.04, -0.72, 0.015
+20010502, 0.33, 0.50, -0.94, 0.015
+20010503, -1.58, 0.26, 0.91, 0.015
+20010504, 1.45, -0.15, 0.01, 0.015
+20010507, -0.34, -0.07, 0.23, 0.015
+20010508, -0.09, 0.60, 0.17, 0.015
+20010509, -0.49, 0.09, 0.46, 0.015
+20010510, -0.10, 0.09, 0.59, 0.015
+20010511, -0.74, 0.21, 0.76, 0.015
+20010514, 0.11, -0.27, 0.67, 0.015
+20010515, 0.06, 0.48, 0.18, 0.015
+20010516, 2.78, -1.11, -1.15, 0.015
+20010517, 0.52, 0.76, -0.41, 0.015
+20010518, 0.22, 0.17, 0.00, 0.015
+20010521, 1.87, 0.17, -1.41, 0.015
+20010522, -0.15, 0.31, 0.24, 0.015
+20010523, -1.71, -0.08, 0.72, 0.015
+20010524, 0.41, 0.47, -0.44, 0.015
+20010525, -1.04, 0.81, 0.33, 0.015
+20010529, -1.06, -0.34, 1.22, 0.015
+20010530, -1.74, -0.22, 1.72, 0.015
+20010531, 0.73, -0.28, -0.17, 0.015
+20010601, 0.54, 0.73, -0.31, 0.013
+20010604, 0.49, 0.68, -0.19, 0.013
+20010605, 1.45, 0.39, -1.18, 0.013
+20010606, -0.97, 0.04, 0.13, 0.013
+20010607, 0.54, 0.23, -1.11, 0.013
+20010608, -0.99, 0.07, 0.65, 0.013
+20010611, -0.98, 0.04, 0.74, 0.013
+20010612, 0.02, -0.12, 0.08, 0.013
+20010613, -1.06, 0.56, 0.73, 0.013
+20010614, -1.96, 0.01, 0.78, 0.013
+20010615, -0.46, 0.00, 0.39, 0.013
+20010618, -0.63, -0.96, 1.08, 0.013
+20010619, 0.21, -0.56, 0.03, 0.013
+20010620, 1.07, 0.30, -0.55, 0.013
+20010621, 0.98, -0.26, -0.12, 0.013
+20010622, -1.00, -0.31, -0.01, 0.013
+20010625, -0.54, 0.42, -0.34, 0.013
+20010626, -0.04, 1.42, -0.17, 0.013
+20010627, -0.22, 0.86, -0.05, 0.013
+20010628, 1.31, 0.06, -0.86, 0.013
+20010629, 0.35, 2.47, -0.88, 0.013
+20010702, 0.56, -3.32, 1.31, 0.014
+20010703, -0.21, -0.03, 0.13, 0.014
+20010705, -1.24, 0.23, 0.47, 0.014
+20010706, -2.29, 0.36, 0.95, 0.014
+20010709, 0.59, -0.31, 0.77, 0.014
+20010710, -1.49, -0.80, 2.15, 0.014
+20010711, -0.18, -0.48, 0.28, 0.014
+20010712, 2.44, 0.19, -0.86, 0.014
+20010713, 0.54, 0.26, -0.49, 0.014
+20010716, -1.16, -0.21, 1.19, 0.014
+20010717, 1.05, 0.47, -0.74, 0.014
+20010718, -0.69, -0.70, 0.58, 0.014
+20010719, 0.51, 0.65, -0.71, 0.014
+20010720, -0.33, 0.71, -0.16, 0.014
+20010723, -1.55, 0.62, 0.34, 0.014
+20010724, -1.70, 0.09, 0.15, 0.014
+20010725, 1.37, -1.03, -0.09, 0.014
+20010726, 1.19, -0.37, 0.08, 0.014
+20010727, 0.26, -0.39, 0.06, 0.014
+20010730, -0.12, 0.04, 0.18, 0.014
+20010731, 0.50, -0.50, 0.13, 0.014
+20010801, 0.48, 0.38, -0.08, 0.013
+20010802, 0.33, -0.29, 0.06, 0.013
+20010803, -0.49, 0.20, 0.10, 0.013
+20010806, -1.16, -0.21, 0.81, 0.013
+20010807, 0.21, -0.38, 0.18, 0.013
+20010808, -1.72, 0.08, 0.78, 0.013
+20010809, -0.06, 0.41, -0.52, 0.013
+20010810, 0.44, -0.40, 0.11, 0.013
+20010813, 0.23, 0.18, -0.14, 0.013
+20010814, -0.30, 0.51, 0.45, 0.013
+20010815, -0.75, 0.52, 0.15, 0.013
+20010816, 0.21, -0.01, 0.25, 0.013
+20010817, -1.63, 0.54, 0.36, 0.013
+20010820, 0.71, 0.04, -0.57, 0.013
+20010821, -1.22, -0.22, 0.78, 0.013
+20010822, 0.71, 0.33, -0.68, 0.013
+20010823, -0.31, -0.29, -0.10, 0.013
+20010824, 1.84, -0.12, -0.82, 0.013
+20010827, -0.42, 0.33, -0.47, 0.013
+20010828, -1.46, 0.18, 0.88, 0.013
+20010829, -0.98, 0.87, 0.09, 0.013
+20010830, -1.60, 0.32, 0.63, 0.013
+20010831, 0.42, -0.38, 0.29, 0.013
+20010904, -0.12, -0.39, 0.65, 0.018
+20010905, -0.32, -0.65, 0.54, 0.018
+20010906, -2.13, 0.27, 0.44, 0.018
+20010907, -1.83, 0.38, -0.52, 0.018
+20010910, 0.37, -1.08, -0.49, 0.018
+20010917, -5.03, 0.25, -0.80, 0.018
+20010918, -0.82, -1.45, 1.20, 0.018
+20010919, -1.67, -0.79, 0.00, 0.018
+20010920, -3.05, -0.83, -0.10, 0.018
+20010921, -1.96, -0.39, -0.58, 0.018
+20010924, 3.82, -0.08, -0.29, 0.018
+20010925, 0.74, -0.61, 0.75, 0.018
+20010926, -0.67, -0.82, 0.24, 0.018
+20010927, 1.10, -1.06, 0.40, 0.018
+20010928, 2.25, 0.41, 0.52, 0.018
+20011001, -0.45, -1.03, -0.18, 0.010
+20011002, 1.17, -0.34, -0.28, 0.010
+20011003, 2.28, 0.53, -1.10, 0.010
+20011004, -0.12, 1.52, -0.75, 0.010
+20011005, 0.04, 0.23, -1.22, 0.010
+20011008, -0.80, 0.29, 0.39, 0.010
+20011009, -0.51, -0.35, 0.02, 0.010
+20011010, 2.35, 0.31, -0.56, 0.010
+20011011, 1.73, 0.24, -0.38, 0.010
+20011012, -0.57, 0.46, -0.40, 0.010
+20011015, -0.09, 0.54, -0.25, 0.010
+20011016, 0.78, 0.46, -0.69, 0.010
+20011017, -2.02, 0.21, 0.16, 0.010
+20011018, -0.73, 0.35, -0.19, 0.010
+20011019, 0.54, 0.69, -0.75, 0.010
+20011022, 1.51, -0.39, -0.47, 0.010
+20011023, -0.51, 0.04, -0.16, 0.010
+20011024, 0.08, 0.54, -1.11, 0.010
+20011025, 1.42, 0.70, -1.34, 0.010
+20011026, 0.41, 0.29, 0.10, 0.010
+20011029, -2.33, 0.38, 0.81, 0.010
+20011030, -1.76, 0.40, 0.67, 0.010
+20011031, 0.18, 1.36, -0.25, 0.010
+20011101, 2.10, -0.56, -0.72, 0.008
+20011102, 0.18, -0.82, 0.48, 0.008
+20011105, 1.42, -0.60, -0.32, 0.008
+20011106, 1.44, -0.39, -0.04, 0.008
+20011107, -0.23, 0.06, -0.35, 0.008
+20011108, 0.07, -0.40, 0.49, 0.008
+20011109, 0.07, 0.00, -0.13, 0.008
+20011112, -0.07, 0.77, -0.43, 0.008
+20011113, 1.86, -0.41, -0.01, 0.008
+20011114, 0.34, 0.44, 0.54, 0.008
+20011115, 0.00, -1.08, 1.37, 0.008
+20011116, -0.25, 0.52, 0.49, 0.008
+20011119, 1.15, 0.22, -0.34, 0.008
+20011120, -0.80, 0.10, 0.14, 0.008
+20011121, -0.48, 0.41, -0.29, 0.008
+20011123, 1.17, 0.00, 0.00, 0.008
+20011126, 0.72, -0.14, -0.16, 0.008
+20011127, -0.55, 0.58, 0.23, 0.008
+20011128, -1.78, 0.12, 1.02, 0.008
+20011129, 1.15, 0.97, -0.48, 0.008
+20011130, -0.14, -0.20, 0.28, 0.008
+20011203, -0.86, -0.07, 0.32, 0.007
+20011204, 1.44, 0.69, -0.40, 0.007
+20011205, 2.31, 0.06, -0.62, 0.007
+20011206, -0.12, 0.21, 0.78, 0.007
+20011207, -0.74, 0.76, 0.03, 0.007
+20011210, -1.52, 0.67, -0.36, 0.007
+20011211, -0.20, 0.45, -0.13, 0.007
+20011212, 0.04, 0.16, -0.04, 0.007
+20011213, -1.51, 0.41, 0.23, 0.007
+20011214, 0.31, 0.35, 0.50, 0.007
+20011217, 1.05, 0.23, 0.10, 0.007
+20011218, 0.84, 0.43, -0.72, 0.007
+20011219, 0.43, -0.75, -0.36, 0.007
+20011220, -0.93, -1.22, 1.26, 0.007
+20011221, 0.57, 1.31, 0.12, 0.007
+20011224, 0.02, 0.28, 0.06, 0.007
+20011226, 0.50, 0.53, -0.28, 0.007
+20011227, 0.69, 0.03, -0.37, 0.007
+20011228, 0.41, -0.36, 0.12, 0.007
+20011231, -1.04, 0.22, 0.79, 0.007
+20020102, 0.42, -0.61, 0.13, 0.007
+20020103, 0.99, 0.88, -0.53, 0.007
+20020104, 0.70, 0.13, 0.31, 0.007
+20020107, -0.70, -0.44, 0.87, 0.007
+20020108, -0.23, 1.17, 0.24, 0.007
+20020109, -0.45, 0.19, -0.15, 0.007
+20020110, 0.08, -0.08, 0.26, 0.007
+20020111, -0.86, -0.08, 0.29, 0.007
+20020114, -0.85, -0.57, -0.05, 0.007
+20020115, 0.67, -0.47, 0.20, 0.007
+20020116, -1.62, 0.12, 0.59, 0.007
+20020117, 1.06, 0.38, -0.63, 0.007
+20020118, -1.08, -0.56, 0.88, 0.007
+20020122, -0.81, -0.22, 0.08, 0.007
+20020123, 0.92, 0.69, -0.16, 0.007
+20020124, 0.40, -0.30, 0.31, 0.007
+20020125, 0.09, -0.24, 0.38, 0.007
+20020128, 0.05, 0.12, 0.62, 0.007
+20020129, -2.54, 1.37, 0.22, 0.007
+20020130, 1.05, 0.28, -0.75, 0.007
+20020131, 1.35, -0.59, 0.21, 0.007
+20020201, -0.71, 0.37, -0.31, 0.007
+20020204, -2.37, 0.73, 0.16, 0.007
+20020205, -0.35, 0.29, -0.43, 0.007
+20020206, -0.78, -0.37, -0.10, 0.007
+20020207, -0.41, -1.17, 0.99, 0.007
+20020208, 1.59, -0.29, 0.32, 0.007
+20020211, 1.33, -0.25, -0.48, 0.007
+20020212, -0.28, 0.68, -0.49, 0.007
+20020213, 0.99, -0.02, -0.12, 0.007
+20020214, -0.24, -0.59, -0.16, 0.007
+20020215, -1.12, 0.90, 0.15, 0.007
+20020219, -1.94, 0.27, 0.52, 0.007
+20020220, 1.33, -0.35, 0.39, 0.007
+20020221, -1.52, -0.49, 0.70, 0.007
+20020222, 0.75, 0.43, 0.00, 0.007
+20020225, 1.66, -1.38, 0.43, 0.007
+20020226, 0.11, 0.28, 0.11, 0.007
+20020227, 0.08, -0.01, 0.43, 0.007
+20020228, -0.31, -0.27, 0.53, 0.007
+20020301, 2.22, -0.51, -0.40, 0.007
+20020304, 1.98, -0.42, -0.28, 0.007
+20020305, -0.54, 0.63, -0.02, 0.007
+20020306, 1.39, -0.10, 0.30, 0.007
+20020307, -0.42, 0.58, 0.14, 0.007
+20020308, 0.72, 0.41, -0.12, 0.007
+20020311, 0.29, 0.11, -0.04, 0.007
+20020312, -0.28, 0.32, -0.13, 0.007
+20020313, -0.91, 0.52, 0.03, 0.007
+20020314, -0.05, 0.43, -0.06, 0.007
+20020315, 1.06, -1.01, 0.31, 0.007
+20020318, 0.09, 0.65, 0.05, 0.007
+20020319, 0.34, 0.11, -0.14, 0.007
+20020320, -1.50, 0.45, 0.65, 0.007
+20020321, 0.31, 1.06, -0.33, 0.007
+20020322, -0.42, -0.18, 0.27, 0.007
+20020325, -1.45, 0.62, -0.02, 0.007
+20020326, 0.60, 0.49, -0.13, 0.007
+20020327, 0.55, -0.05, 0.64, 0.007
+20020328, 0.29, -0.16, 0.31, 0.007
+20020401, -0.12, -0.08, -0.11, 0.007
+20020402, -0.92, 0.25, 0.19, 0.007
+20020403, -0.98, 0.31, 0.42, 0.007
+20020404, 0.12, -0.09, 0.52, 0.007
+20020405, -0.26, -0.21, 0.83, 0.007
+20020408, 0.35, 0.52, 0.14, 0.007
+20020409, -0.60, 0.44, 0.69, 0.007
+20020410, 1.15, 0.67, -0.29, 0.007
+20020411, -2.22, 0.84, 0.79, 0.007
+20020412, 0.84, 1.04, 0.12, 0.007
+20020415, -0.67, 0.46, -0.08, 0.007
+20020416, 2.26, -0.61, 0.59, 0.007
+20020417, -0.24, -0.45, 0.30, 0.007
+20020418, -0.14, 0.49, -0.61, 0.007
+20020419, 0.07, -0.25, 0.23, 0.007
+20020422, -1.50, 0.85, -0.53, 0.007
+20020423, -0.52, 0.16, 0.46, 0.007
+20020424, -0.66, 0.05, 0.47, 0.007
+20020425, -0.11, 0.18, 0.00, 0.007
+20020426, -1.41, -0.01, 0.28, 0.007
+20020429, -0.88, 0.92, -0.58, 0.007
+20020430, 1.20, 0.55, 0.11, 0.007
+20020501, 0.74, -0.97, 0.70, 0.007
+20020502, -0.21, 0.54, 0.30, 0.007
+20020503, -0.96, 0.59, 0.73, 0.007
+20020506, -1.84, -0.01, 0.91, 0.007
+20020507, -0.36, -0.80, 0.81, 0.007
+20020508, 3.57, -0.87, -1.99, 0.007
+20020509, -1.43, -0.27, 0.70, 0.007
+20020510, -1.64, -0.13, 0.51, 0.007
+20020513, 1.75, -0.37, -1.02, 0.007
+20020514, 2.20, 0.52, -1.16, 0.007
+20020515, -0.40, 0.31, 0.60, 0.007
+20020516, 0.35, -0.77, -0.78, 0.007
+20020517, 0.69, -0.18, -0.44, 0.007
+20020520, -1.28, -0.18, 1.04, 0.007
+20020521, -1.16, -0.31, 0.26, 0.007
+20020522, 0.37, -0.64, -0.13, 0.007
+20020523, 1.05, 0.01, -0.07, 0.007
+20020524, -1.17, -0.35, 0.66, 0.007
+20020528, -0.75, 0.69, -0.41, 0.007
+20020529, -0.67, -0.18, 0.22, 0.007
+20020530, -0.24, 0.23, -0.06, 0.007
+20020531, 0.19, -0.17, 0.22, 0.007
+20020603, -2.43, -0.73, 1.30, 0.006
+20020604, -0.11, 0.08, -0.71, 0.006
+20020605, 0.83, -0.16, -0.31, 0.006
+20020606, -1.91, -0.32, 0.98, 0.006
+20020607, 0.08, 0.78, -0.10, 0.006
+20020610, 0.21, -0.27, -0.29, 0.006
+20020611, -1.70, 0.56, 0.43, 0.006
+20020612, 0.54, 0.05, -1.34, 0.006
+20020613, -1.10, -0.28, 0.42, 0.006
+20020614, -0.07, 0.71, -0.70, 0.006
+20020617, 2.77, -0.14, -0.94, 0.006
+20020618, 0.05, -0.41, 0.59, 0.006
+20020619, -1.63, -0.02, 0.50, 0.006
+20020620, -1.37, 1.29, -0.13, 0.006
+20020621, -1.53, 1.23, 1.37, 0.006
+20020624, 0.18, -0.08, -0.52, 0.006
+20020625, -1.69, 0.49, 0.06, 0.006
+20020626, -0.27, 1.09, -1.09, 0.006
+20020627, 1.68, 0.40, -1.18, 0.006
+20020628, 0.12, 0.08, 1.83, 0.006
+20020701, -2.32, -0.24, 0.36, 0.007
+20020702, -2.27, -1.00, 0.02, 0.007
+20020703, 0.41, -1.28, -0.16, 0.007
+20020705, 3.55, -0.81, -0.73, 0.007
+20020708, -1.21, -0.20, 0.33, 0.007
+20020709, -2.36, 1.31, 1.00, 0.007
+20020710, -3.03, 1.35, -0.19, 0.007
+20020711, 0.56, -1.34, -0.50, 0.007
+20020712, -0.55, 0.00, -0.53, 0.007
+20020715, -0.45, -0.57, -0.45, 0.007
+20020716, -1.50, 1.34, -0.91, 0.007
+20020717, 0.63, 0.02, -0.31, 0.007
+20020718, -2.70, -0.51, 0.98, 0.007
+20020719, -3.38, 1.08, 0.10, 0.007
+20020722, -3.18, 1.23, 0.42, 0.007
+20020723, -2.86, -0.26, -1.59, 0.007
+20020724, 5.43, -1.71, -1.66, 0.007
+20020725, -0.52, 0.25, -0.08, 0.007
+20020726, 1.49, -0.57, 0.23, 0.007
+20020729, 5.39, -1.00, -0.13, 0.007
+20020730, 0.42, -0.69, -0.02, 0.007
+20020731, 0.65, -2.53, 0.04, 0.007
+20020801, -2.68, 1.50, 1.03, 0.006
+20020802, -2.36, -0.30, -0.68, 0.006
+20020805, -3.34, 1.05, 0.51, 0.006
+20020806, 3.03, 0.18, -0.51, 0.006
+20020807, 1.81, -1.04, -0.40, 0.006
+20020808, 3.05, -1.55, -0.53, 0.006
+20020809, 0.30, -0.66, 0.05, 0.006
+20020812, -0.43, 0.40, -0.15, 0.006
+20020813, -2.15, -0.33, 0.54, 0.006
+20020814, 3.76, -0.74, -0.91, 0.006
+20020815, 1.17, -1.43, 0.62, 0.006
+20020816, 0.06, 1.22, -0.14, 0.006
+20020819, 2.17, -0.85, -0.05, 0.006
+20020820, -1.30, 0.26, 0.83, 0.006
+20020821, 1.36, 0.50, 0.35, 0.006
+20020822, 1.32, -0.45, -0.32, 0.006
+20020823, -2.25, 0.27, -0.01, 0.006
+20020826, 0.83, 0.63, 0.40, 0.006
+20020827, -1.55, -1.10, 0.94, 0.006
+20020828, -1.79, -0.32, 0.27, 0.006
+20020829, 0.21, 0.60, -0.44, 0.006
+20020830, -0.28, -0.42, 0.88, 0.006
+20020903, -3.95, 1.08, 0.62, 0.007
+20020904, 1.83, 0.70, -0.13, 0.007
+20020905, -1.62, -0.56, 0.09, 0.007
+20020906, 1.82, 0.47, 0.14, 0.007
+20020909, 0.92, -0.61, -0.52, 0.007
+20020910, 0.66, -0.03, -0.24, 0.007
+20020911, -0.03, -0.25, 0.28, 0.007
+20020912, -2.37, 0.83, 0.35, 0.007
+20020913, 0.38, 0.41, 0.04, 0.007
+20020916, 0.02, -0.67, -0.30, 0.007
+20020917, -1.91, 0.19, 0.60, 0.007
+20020918, -0.45, -0.44, 0.20, 0.007
+20020919, -2.96, 0.26, 0.33, 0.007
+20020920, 0.19, -0.05, 0.27, 0.007
+20020923, -1.48, -0.83, 0.09, 0.007
+20020924, -1.54, 1.05, -0.62, 0.007
+20020925, 2.44, 0.05, -1.11, 0.007
+20020926, 1.74, -0.81, 1.02, 0.007
+20020927, -2.98, 0.52, 0.64, 0.007
+20020930, -1.28, 1.47, -0.40, 0.007
+20021001, 3.56, -1.88, -0.50, 0.006
+20021002, -2.31, 0.51, 0.34, 0.006
+20021003, -1.14, 0.64, -0.16, 0.006
+20021004, -2.25, 0.19, -0.20, 0.006
+20021007, -2.00, -0.28, -0.36, 0.006
+20021008, 1.54, -0.38, -1.81, 0.006
+20021009, -2.77, -0.03, -1.05, 0.006
+20021010, 3.41, -2.03, 0.28, 0.006
+20021011, 3.74, -1.43, -0.30, 0.006
+20021014, 0.77, 0.22, -1.19, 0.006
+20021015, 4.57, -1.11, 0.22, 0.006
+20021016, -2.42, 0.14, 0.20, 0.006
+20021017, 2.40, 0.83, -0.61, 0.006
+20021018, 0.49, -0.15, -0.48, 0.006
+20021021, 1.65, -0.88, 0.56, 0.006
+20021022, -1.11, -0.60, 0.63, 0.006
+20021023, 0.76, 0.71, 0.20, 0.006
+20021024, -1.44, 0.68, 0.28, 0.006
+20021025, 1.69, 0.14, -0.48, 0.006
+20021028, -0.83, 0.00, -0.26, 0.006
+20021029, -0.87, 1.05, -0.18, 0.006
+20021030, 1.03, 0.43, -0.61, 0.006
+20021031, -0.41, 0.25, 0.36, 0.006
+20021101, 1.73, 0.79, -0.53, 0.006
+20021104, 0.79, 0.31, -0.54, 0.006
+20021105, 0.63, -1.04, 0.26, 0.006
+20021106, 0.98, 0.51, 0.41, 0.006
+20021107, -2.22, 0.44, -0.30, 0.006
+20021108, -0.92, -0.14, 0.28, 0.006
+20021111, -2.09, -0.42, 0.48, 0.006
+20021112, 0.83, 0.50, -0.25, 0.006
+20021113, 0.02, 0.48, -0.30, 0.006
+20021114, 2.43, 0.25, -0.90, 0.006
+20021115, 0.61, -0.78, -0.11, 0.006
+20021118, -1.00, 0.29, -0.17, 0.006
+20021119, -0.48, -0.26, 0.27, 0.006
+20021120, 1.93, 0.57, -0.94, 0.006
+20021121, 2.16, -0.32, 0.06, 0.006
+20021122, -0.22, 0.58, 0.24, 0.006
+20021125, 0.36, 0.85, 0.06, 0.006
+20021126, -2.03, 0.57, 0.58, 0.006
+20021127, 2.78, 0.10, -0.14, 0.006
+20021129, -0.32, -0.65, 0.53, 0.006
+20021202, -0.10, 0.63, -0.12, 0.005
+20021203, -1.54, 0.30, -0.72, 0.005
+20021204, -0.38, -0.34, 0.50, 0.005
+20021205, -1.11, 0.11, 0.70, 0.005
+20021206, 0.61, -0.10, -0.10, 0.005
+20021209, -2.26, -0.23, 0.30, 0.005
+20021210, 1.44, 0.31, -0.13, 0.005
+20021211, 0.10, -0.27, 0.31, 0.005
+20021212, -0.27, 0.63, 0.30, 0.005
+20021213, -1.37, -0.42, 0.41, 0.005
+20021216, 2.21, -0.50, -0.34, 0.005
+20021217, -0.76, -0.29, 0.43, 0.005
+20021218, -1.34, -0.42, 0.07, 0.005
+20021219, -0.70, 0.50, 0.38, 0.005
+20021220, 1.23, -0.47, -0.40, 0.005
+20021223, 0.24, 0.44, -0.06, 0.005
+20021224, -0.52, 0.18, 0.05, 0.005
+20021226, -0.19, 0.33, 0.09, 0.005
+20021227, -1.53, 0.42, 0.01, 0.005
+20021230, 0.34, -0.85, 0.06, 0.005
+20021231, 0.12, 0.00, 0.57, 0.005
+20030102, 3.14, -0.87, -0.31, 0.005
+20030103, -0.11, -0.42, 0.04, 0.005
+20030106, 2.13, -0.60, -0.41, 0.005
+20030107, -0.63, 0.28, -0.17, 0.005
+20030108, -1.34, 0.10, 0.43, 0.005
+20030109, 1.89, -0.11, -0.48, 0.005
+20030110, 0.04, 0.05, 0.18, 0.005
+20030113, -0.12, 0.13, 0.19, 0.005
+20030114, 0.55, 0.08, -0.17, 0.005
+20030115, -1.32, 0.67, 0.56, 0.005
+20030116, -0.34, 0.22, 0.18, 0.005
+20030117, -1.40, -0.38, 0.70, 0.005
+20030121, -1.53, 0.52, -0.36, 0.005
+20030122, -0.94, 0.51, -0.50, 0.005
+20030123, 0.99, 0.10, -0.65, 0.005
+20030124, -2.78, 0.50, 0.57, 0.005
+20030127, -1.65, 0.23, -0.13, 0.005
+20030128, 1.26, 0.08, -0.44, 0.005
+20030129, 0.63, -0.19, -0.14, 0.005
+20030130, -2.13, 0.74, -0.36, 0.005
+20030131, 1.28, -0.32, 0.23, 0.005
+20030203, 0.37, -0.69, -0.07, 0.005
+20030204, -1.34, 1.12, -0.19, 0.005
+20030205, -0.49, 0.17, 0.05, 0.005
+20030206, -0.64, 0.02, 0.13, 0.005
+20030207, -1.06, -0.45, -0.24, 0.005
+20030210, 0.69, 0.08, 0.07, 0.005
+20030211, -0.71, 0.33, -0.31, 0.005
+20030212, -1.25, 0.18, 0.10, 0.005
+20030213, -0.26, -0.09, -0.25, 0.005
+20030214, 1.90, -0.79, -0.65, 0.005
+20030218, 1.97, -0.42, -0.13, 0.005
+20030219, -0.70, -0.29, 0.03, 0.005
+20030220, -0.83, 0.86, -0.15, 0.005
+20030221, 1.31, -0.15, -0.07, 0.005
+20030224, -1.78, 0.45, -0.11, 0.005
+20030225, 0.70, 0.11, -0.19, 0.005
+20030226, -1.22, 0.15, 0.45, 0.005
+20030227, 1.15, -0.26, -0.14, 0.005
+20030228, 0.41, -0.69, 0.22, 0.005
+20030303, -0.67, 0.13, 0.42, 0.005
+20030304, -1.44, 0.96, -0.53, 0.005
+20030305, 0.78, -0.90, -0.02, 0.005
+20030306, -0.84, 0.17, 0.03, 0.005
+20030307, 0.76, -0.67, -0.16, 0.005
+20030310, -2.36, 0.83, 0.10, 0.005
+20030311, -0.81, 0.92, -0.70, 0.005
+20030312, 0.32, -0.38, -0.41, 0.005
+20030313, 3.39, -0.94, -0.61, 0.005
+20030314, 0.13, -0.50, 0.14, 0.005
+20030317, 3.41, -0.83, -0.25, 0.005
+20030318, 0.44, 0.48, -0.65, 0.005
+20030319, 0.72, -0.45, -0.23, 0.005
+20030320, 0.28, 0.09, 0.37, 0.005
+20030321, 2.19, -0.85, -0.05, 0.005
+20030324, -3.36, 1.24, 0.18, 0.005
+20030325, 1.21, -0.08, -0.03, 0.005
+20030326, -0.55, -0.17, -0.28, 0.005
+20030327, -0.09, 0.65, -0.01, 0.005
+20030328, -0.48, 0.29, 0.22, 0.005
+20030331, -1.65, 0.73, 0.42, 0.005
+20030401, 1.12, -0.25, 0.24, 0.005
+20030402, 2.60, -0.37, -0.86, 0.005
+20030403, -0.49, 0.40, 0.02, 0.005
+20030404, 0.15, -0.73, 0.39, 0.005
+20030407, 0.18, 0.38, 0.57, 0.005
+20030408, -0.24, -0.29, 0.09, 0.005
+20030409, -1.28, 0.47, 0.77, 0.005
+20030410, 0.52, -0.24, -0.25, 0.005
+20030411, -0.32, 0.01, -0.05, 0.005
+20030414, 1.88, -0.46, 0.00, 0.005
+20030415, 0.62, 0.08, -0.39, 0.005
+20030416, -1.11, 0.55, 0.18, 0.005
+20030417, 1.52, 0.02, -0.03, 0.005
+20030421, -0.11, 0.35, 0.12, 0.005
+20030422, 2.07, -0.90, 0.23, 0.005
+20030423, 0.89, -0.27, 0.31, 0.005
+20030424, -0.81, 0.58, -0.23, 0.005
+20030425, -1.30, 0.66, -0.11, 0.005
+20030428, 1.76, -0.05, -0.11, 0.005
+20030429, 0.34, -0.21, -0.20, 0.005
+20030430, 0.03, 0.73, 0.25, 0.005
+20030501, -0.03, 0.43, -0.26, 0.004
+20030502, 1.56, 0.52, -0.49, 0.004
+20030505, -0.19, 0.82, -0.38, 0.004
+20030506, 0.80, -0.18, 0.04, 0.004
+20030507, -0.46, -0.05, 0.58, 0.004
+20030508, -0.99, 0.50, 0.14, 0.004
+20030509, 1.39, 0.12, -0.22, 0.004
+20030512, 1.25, -0.12, -0.10, 0.004
+20030513, -0.23, 0.47, 0.30, 0.004
+20030514, -0.23, 0.29, 0.01, 0.004
+20030515, 0.74, -0.10, -0.14, 0.004
+20030516, -0.31, -1.58, 1.01, 0.004
+20030519, -2.30, 0.80, 0.04, 0.004
+20030520, -0.12, 0.11, -0.11, 0.004
+20030521, 0.41, -0.22, 0.31, 0.004
+20030522, 0.96, -0.18, -0.07, 0.004
+20030523, 0.26, 0.27, 0.40, 0.004
+20030527, 1.95, 0.45, -1.05, 0.004
+20030528, 0.22, 0.69, -0.41, 0.004
+20030529, -0.26, 1.02, 0.07, 0.004
+20030530, 1.53, 0.26, 0.10, 0.004
+20030602, 0.39, -0.40, 0.75, 0.005
+20030603, 0.39, 0.15, -0.57, 0.005
+20030604, 1.56, 0.13, -0.04, 0.005
+20030605, 0.55, 0.89, -0.74, 0.005
+20030606, -0.33, -0.17, -0.30, 0.005
+20030609, -1.31, -0.20, 0.18, 0.005
+20030610, 0.95, 0.39, 0.10, 0.005
+20030611, 1.29, -0.48, 0.38, 0.005
+20030612, 0.18, 0.05, 0.34, 0.005
+20030613, -1.02, -0.18, 0.12, 0.005
+20030616, 2.15, -0.39, -0.48, 0.005
+20030617, 0.13, 0.21, -0.12, 0.005
+20030618, -0.15, 0.31, -0.23, 0.005
+20030619, -1.49, 0.05, 0.74, 0.005
+20030620, 0.05, -0.19, 0.10, 0.005
+20030623, -1.52, -0.60, 0.23, 0.005
+20030624, 0.19, 0.07, 0.13, 0.005
+20030625, -0.60, 1.06, -0.08, 0.005
+20030626, 1.12, 0.42, -0.51, 0.005
+20030627, -0.84, 0.58, 0.19, 0.005
+20030630, -0.17, -0.11, 0.43, 0.005
+20030701, 0.73, -0.39, -0.15, 0.003
+20030702, 1.28, 1.07, 0.05, 0.003
+20030703, -0.72, 0.26, -0.08, 0.003
+20030707, 1.91, -0.10, 0.27, 0.003
+20030708, 0.51, 1.31, -0.04, 0.003
+20030709, -0.34, 1.02, 0.26, 0.003
+20030710, -1.33, -0.07, -0.22, 0.003
+20030711, 0.92, 0.07, -0.06, 0.003
+20030714, 0.73, 0.18, 0.13, 0.003
+20030715, -0.41, 0.08, -0.04, 0.003
+20030716, -0.64, 0.25, -0.27, 0.003
+20030717, -1.45, -1.26, -0.40, 0.003
+20030718, 1.08, -0.17, 0.02, 0.003
+20030721, -1.42, 0.04, -0.38, 0.003
+20030722, 0.97, 0.32, 0.34, 0.003
+20030723, 0.18, 0.62, -1.00, 0.003
+20030724, -0.65, 0.31, 0.38, 0.003
+20030725, 1.51, -0.64, -0.24, 0.003
+20030728, -0.02, 0.98, 0.36, 0.003
+20030729, -0.57, 0.54, 0.02, 0.003
+20030730, -0.18, 0.27, -0.61, 0.003
+20030731, 0.32, 0.26, 0.40, 0.003
+20030801, -1.06, -0.49, -0.06, 0.003
+20030804, 0.11, -0.66, -0.31, 0.003
+20030805, -1.71, 0.38, 0.02, 0.003
+20030806, 0.02, -1.03, 0.46, 0.003
+20030807, 0.57, -0.49, -0.47, 0.003
+20030808, 0.33, -0.46, 0.15, 0.003
+20030811, 0.43, 0.72, -0.03, 0.003
+20030812, 1.09, 0.51, 0.05, 0.003
+20030813, -0.50, 0.69, 0.06, 0.003
+20030814, 0.62, 0.11, 0.44, 0.003
+20030815, 0.10, 0.19, -0.14, 0.003
+20030818, 1.03, 0.85, 0.09, 0.003
+20030819, 0.43, 0.99, 0.61, 0.003
+20030820, -0.14, 0.34, 0.06, 0.003
+20030821, 0.47, 0.61, 0.42, 0.003
+20030822, -1.06, -0.57, 0.12, 0.003
+20030825, -0.04, -0.07, -0.31, 0.003
+20030826, 0.29, 0.16, 0.18, 0.003
+20030827, 0.17, 0.82, 0.06, 0.003
+20030828, 0.70, 0.26, 0.22, 0.003
+20030829, 0.53, -0.32, 0.33, 0.003
+20030902, 1.40, 0.48, 0.02, 0.004
+20030903, 0.42, 0.32, 0.14, 0.004
+20030904, 0.22, 0.46, -0.17, 0.004
+20030905, -0.62, -0.05, 0.20, 0.004
+20030908, 1.07, 0.62, -0.12, 0.004
+20030909, -0.79, 0.33, -0.22, 0.004
+20030910, -1.37, -0.64, -0.60, 0.004
+20030911, 0.62, 0.64, 0.03, 0.004
+20030912, 0.23, 0.15, 0.16, 0.004
+20030915, -0.35, 0.24, -0.08, 0.004
+20030916, 1.40, 0.10, 0.06, 0.004
+20030917, -0.26, 0.19, 0.18, 0.004
+20030918, 1.25, -0.56, 0.25, 0.004
+20030919, -0.23, 0.49, 0.02, 0.004
+20030922, -1.30, 0.16, 0.14, 0.004
+20030923, 0.65, 0.57, -0.10, 0.004
+20030924, -1.88, -0.20, 0.08, 0.004
+20030925, -0.81, -1.65, -0.21, 0.004
+20030926, -0.84, -1.26, 0.04, 0.004
+20030929, 0.98, 0.52, 0.02, 0.004
+20030930, -0.96, -0.05, 0.14, 0.004
+20031001, 2.16, 0.38, 0.09, 0.003
+20031002, 0.31, 0.15, 0.07, 0.003
+20031003, 1.02, 0.69, -0.01, 0.003
+20031006, 0.49, 0.37, 0.36, 0.003
+20031007, 0.51, 0.34, 0.10, 0.003
+20031008, -0.48, -0.29, 0.19, 0.003
+20031009, 0.55, 0.27, 0.38, 0.003
+20031010, -0.08, -0.43, 0.41, 0.003
+20031013, 0.81, 0.79, 0.09, 0.003
+20031014, 0.44, 0.48, 0.16, 0.003
+20031015, -0.36, -0.28, -0.05, 0.003
+20031016, 0.35, 0.10, 0.04, 0.003
+20031017, -1.11, -0.52, 0.05, 0.003
+20031020, 0.41, -0.11, -0.25, 0.003
+20031021, 0.24, 0.68, -0.31, 0.003
+20031022, -1.52, -0.68, -0.02, 0.003
+20031023, 0.22, -0.74, -0.22, 0.003
+20031024, -0.45, -0.41, -0.01, 0.003
+20031027, 0.40, 1.16, 0.30, 0.003
+20031028, 1.59, 0.50, -0.22, 0.003
+20031029, 0.28, 0.79, 0.32, 0.003
+20031030, -0.11, -0.12, 0.27, 0.003
+20031031, 0.28, -0.56, -0.09, 0.003
+20031103, 0.93, 0.68, 0.41, 0.004
+20031104, -0.45, 0.74, 0.41, 0.004
+20031105, -0.04, 0.23, -0.09, 0.004
+20031106, 0.58, 0.11, 0.10, 0.004
+20031107, -0.33, 0.36, 0.30, 0.004
+20031110, -0.74, -1.02, -0.02, 0.004
+20031111, -0.21, -0.59, -0.10, 0.004
+20031112, 1.33, 1.00, -0.21, 0.004
+20031113, 0.03, 0.20, -0.21, 0.004
+20031114, -0.83, -0.62, -0.07, 0.004
+20031117, -0.72, -0.67, -0.19, 0.004
+20031118, -0.87, 0.12, 0.09, 0.004
+20031119, 0.76, 0.06, -0.02, 0.004
+20031120, -0.77, 0.13, 0.03, 0.004
+20031121, 0.21, 0.16, 0.59, 0.004
+20031124, 1.71, 0.74, -0.03, 0.004
+20031125, 0.31, 0.24, 0.60, 0.004
+20031126, 0.40, -0.07, 0.41, 0.004
+20031128, 0.11, 0.26, -0.17, 0.004
+20031201, 1.11, 0.40, -0.12, 0.004
+20031202, -0.27, 0.13, 0.13, 0.004
+20031203, -0.34, -1.19, 0.42, 0.004
+20031204, 0.26, -0.41, -0.23, 0.004
+20031205, -0.79, -0.06, -0.07, 0.004
+20031208, 0.65, -0.17, 0.36, 0.004
+20031209, -0.95, -0.60, 0.19, 0.004
+20031210, -0.29, -1.02, -0.24, 0.004
+20031211, 1.34, 1.23, 0.15, 0.004
+20031212, 0.31, 0.55, 0.30, 0.004
+20031215, -0.73, -1.39, 0.15, 0.004
+20031216, 0.50, -0.31, 0.02, 0.004
+20031217, 0.15, -0.05, -0.10, 0.004
+20031218, 1.24, 0.27, 0.22, 0.004
+20031219, -0.04, -0.13, 0.40, 0.004
+20031222, 0.36, -0.09, 0.46, 0.004
+20031223, 0.36, 0.70, -0.06, 0.004
+20031224, -0.18, -0.24, 0.12, 0.004
+20031226, 0.19, 0.34, 0.06, 0.004
+20031229, 1.29, 0.36, -0.04, 0.004
+20031230, 0.05, 0.24, 0.15, 0.004
+20031231, 0.01, -1.39, 0.02, 0.004
+20040102, -0.17, 0.82, 0.42, 0.003
+20040105, 1.20, 0.42, 0.01, 0.003
+20040106, 0.20, 0.09, 0.18, 0.003
+20040107, 0.34, 0.54, -0.06, 0.003
+20040108, 0.45, 0.36, 0.63, 0.003
+20040109, -0.72, 0.04, 0.20, 0.003
+20040112, 0.57, 0.93, 0.08, 0.003
+20040113, -0.51, 0.19, 0.10, 0.003
+20040114, 0.80, -0.07, 0.41, 0.003
+20040115, 0.15, 0.03, -0.28, 0.003
+20040116, 0.72, 0.10, 0.56, 0.003
+20040120, 0.15, 1.18, 0.58, 0.003
+20040121, 0.64, -1.08, 0.46, 0.003
+20040122, -0.32, -0.63, 0.05, 0.003
+20040123, -0.14, 0.93, -0.27, 0.003
+20040126, 1.12, -0.10, -0.33, 0.003
+20040127, -0.96, -0.03, 0.04, 0.003
+20040128, -1.44, -0.35, -0.44, 0.003
+20040129, 0.25, -0.96, -0.85, 0.003
+20040130, -0.15, 0.31, 0.37, 0.003
+20040202, 0.27, -0.31, -0.26, 0.003
+20040203, 0.00, -0.13, -0.16, 0.003
+20040204, -0.97, -1.56, -0.52, 0.003
+20040205, 0.23, 0.45, 0.25, 0.003
+20040206, 1.39, 1.05, 0.35, 0.003
+20040209, -0.10, 0.36, 0.21, 0.003
+20040210, 0.56, 0.58, 0.14, 0.003
+20040211, 1.04, -0.39, 0.18, 0.003
+20040212, -0.46, -0.12, -0.15, 0.003
+20040213, -0.57, -0.71, -0.18, 0.003
+20040217, 0.98, 0.35, 0.55, 0.003
+20040218, -0.39, -0.09, 0.04, 0.003
+20040219, -0.54, -1.03, -0.07, 0.003
+20040220, -0.30, -0.10, -0.36, 0.003
+20040223, -0.51, -1.21, -0.11, 0.003
+20040224, -0.14, 0.34, -0.27, 0.003
+20040225, 0.54, 0.50, 0.15, 0.003
+20040226, 0.29, 0.48, 0.34, 0.003
+20040227, 0.11, 0.19, 0.36, 0.003
+20040301, 1.02, 0.52, 0.26, 0.004
+20040302, -0.59, -0.12, 0.18, 0.004
+20040303, 0.14, -0.17, -0.20, 0.004
+20040304, 0.44, 0.81, 0.21, 0.004
+20040305, 0.24, -0.12, -0.21, 0.004
+20040308, -0.84, -0.35, 0.23, 0.004
+20040309, -0.66, -0.44, -0.34, 0.004
+20040310, -1.50, -0.28, -0.46, 0.004
+20040311, -1.42, 0.35, -0.13, 0.004
+20040312, 1.34, 1.02, 0.21, 0.004
+20040315, -1.56, -1.09, -0.24, 0.004
+20040316, 0.43, -0.63, -0.12, 0.004
+20040317, 1.22, 0.70, 0.45, 0.004
+20040318, -0.20, -0.53, 0.13, 0.004
+20040319, -1.00, 0.33, 0.26, 0.004
+20040322, -1.42, -0.66, -0.20, 0.004
+20040323, -0.09, 0.36, 0.04, 0.004
+20040324, -0.27, -0.08, -0.14, 0.004
+20040325, 1.68, 0.77, -0.29, 0.004
+20040326, 0.00, 0.33, 0.39, 0.004
+20040329, 1.34, 0.59, -0.21, 0.004
+20040330, 0.47, 0.43, 0.23, 0.004
+20040331, 0.00, 0.14, 0.18, 0.004
+20040401, 0.64, 0.27, 0.00, 0.004
+20040402, 0.90, 0.82, 0.08, 0.004
+20040405, 0.79, 0.10, -0.30, 0.004
+20040406, -0.28, -0.77, 0.21, 0.004
+20040407, -0.50, 0.92, -0.18, 0.004
+20040408, -0.14, -0.31, 0.11, 0.004
+20040412, 0.50, 0.24, -0.29, 0.004
+20040413, -1.50, -0.57, -0.39, 0.004
+20040414, -0.21, -0.30, -0.44, 0.004
+20040415, -0.04, -0.24, -0.38, 0.004
+20040416, 0.46, -0.06, 0.17, 0.004
+20040419, 0.22, 0.52, -0.35, 0.004
+20040420, -1.48, -0.29, 0.13, 0.004
+20040421, 0.60, 0.48, 0.08, 0.004
+20040422, 1.44, 0.09, 0.05, 0.004
+20040423, -0.01, -0.28, -0.08, 0.004
+20040426, -0.33, -0.06, -0.26, 0.004
+20040427, 0.13, -0.09, -0.06, 0.004
+20040428, -1.46, -0.92, -0.13, 0.004
+20040429, -0.86, -0.81, -0.65, 0.004
+20040430, -0.66, -0.84, 0.00, 0.004
+20040503, 0.85, 0.00, -0.40, 0.003
+20040504, 0.21, 0.43, 0.16, 0.003
+20040505, 0.27, -0.11, -0.25, 0.003
+20040506, -0.80, -0.36, -0.21, 0.003
+20040507, -1.48, -0.65, -0.55, 0.003
+20040510, -1.29, -0.53, -0.47, 0.003
+20040511, 0.95, 0.85, 0.15, 0.003
+20040512, 0.12, -0.22, -0.01, 0.003
+20040513, -0.08, -0.25, 0.02, 0.003
+20040514, -0.17, -0.62, -0.03, 0.003
+20040517, -1.13, -0.41, -0.35, 0.003
+20040518, 0.76, 0.34, 0.35, 0.003
+20040519, -0.19, 0.03, 0.47, 0.003
+20040520, 0.02, -0.13, 0.12, 0.003
+20040521, 0.44, 0.44, -0.01, 0.003
+20040524, 0.29, 0.67, 0.57, 0.003
+20040525, 1.66, 0.56, 0.05, 0.003
+20040526, 0.29, 0.14, 0.02, 0.003
+20040527, 0.51, -0.29, -0.09, 0.003
+20040528, 0.02, -0.03, 0.09, 0.003
+20040601, 0.14, 0.66, -0.03, 0.004
+20040602, 0.31, -0.23, -0.15, 0.004
+20040603, -0.90, -0.96, -0.06, 0.004
+20040604, 0.57, 0.38, 0.05, 0.004
+20040607, 1.57, 0.17, 0.33, 0.004
+20040608, 0.08, -0.17, -0.05, 0.004
+20040609, -1.04, -0.51, 0.03, 0.004
+20040610, 0.36, -0.30, 0.39, 0.004
+20040614, -1.05, -0.57, -0.55, 0.004
+20040615, 0.71, 1.04, 0.22, 0.004
+20040616, 0.14, 0.20, 0.06, 0.004
+20040617, -0.14, 0.00, 0.12, 0.004
+20040618, 0.19, -0.20, 0.22, 0.004
+20040621, -0.42, 0.10, 0.16, 0.004
+20040622, 0.38, 0.22, 0.05, 0.004
+20040623, 0.90, 0.53, 0.20, 0.004
+20040624, -0.23, 0.02, 0.15, 0.004
+20040625, -0.23, 1.24, 0.08, 0.004
+20040628, -0.25, -0.06, -0.15, 0.004
+20040629, 0.31, 0.57, -0.04, 0.004
+20040630, 0.48, 0.11, 0.30, 0.004
+20040701, -1.06, -0.51, 0.56, 0.005
+20040702, -0.28, 0.19, 0.37, 0.005
+20040706, -0.94, -0.88, 1.03, 0.005
+20040707, 0.15, -0.33, 0.24, 0.005
+20040708, -0.96, -0.94, 0.27, 0.005
+20040709, 0.31, 0.16, -0.13, 0.005
+20040712, 0.04, -0.48, 0.39, 0.005
+20040713, 0.09, 0.06, 0.14, 0.005
+20040714, -0.33, -0.34, 0.50, 0.005
+20040715, -0.32, 0.64, 0.06, 0.005
+20040716, -0.56, -0.73, 0.65, 0.005
+20040719, -0.12, -0.24, 0.59, 0.005
+20040720, 0.83, 0.91, -0.80, 0.005
+20040721, -1.49, -1.21, 0.75, 0.005
+20040722, 0.14, -0.47, -0.54, 0.005
+20040723, -1.03, -0.45, 0.83, 0.005
+20040726, -0.39, -0.71, 0.26, 0.005
+20040727, 1.10, 1.00, -0.50, 0.005
+20040728, -0.09, -0.63, 0.37, 0.005
+20040729, 0.66, 0.90, -0.49, 0.005
+20040730, 0.14, 0.19, -0.32, 0.005
+20040802, 0.36, -0.44, 0.28, 0.005
+20040803, -0.75, -0.87, 0.81, 0.005
+20040804, -0.20, 0.04, 0.02, 0.005
+20040805, -1.63, -0.22, 0.48, 0.005
+20040806, -1.59, -0.90, 0.73, 0.005
+20040809, 0.02, -0.38, 0.01, 0.005
+20040810, 1.39, 0.75, -0.37, 0.005
+20040811, -0.29, -0.39, 0.14, 0.005
+20040812, -1.18, -0.50, 0.27, 0.005
+20040813, 0.10, -0.05, 0.04, 0.005
+20040816, 1.40, 0.38, 0.04, 0.005
+20040817, 0.30, 0.12, -0.60, 0.005
+20040818, 1.34, 0.75, -0.78, 0.005
+20040819, -0.38, -0.26, 0.24, 0.005
+20040820, 0.79, 0.90, -0.30, 0.005
+20040823, -0.32, -0.37, -0.31, 0.005
+20040824, 0.03, 0.16, 0.15, 0.005
+20040825, 0.84, 0.14, -0.51, 0.005
+20040826, -0.05, -0.49, 0.39, 0.005
+20040827, 0.33, 0.50, -0.22, 0.005
+20040830, -0.86, -0.45, 0.37, 0.005
+20040831, 0.48, 0.04, 0.15, 0.005
+20040901, 0.30, 0.56, -0.40, 0.005
+20040902, 1.09, 0.27, -0.16, 0.005
+20040903, -0.45, -0.25, 0.42, 0.005
+20040907, 0.73, 0.32, 0.03, 0.005
+20040908, -0.48, -0.34, 0.01, 0.005
+20040909, 0.34, 1.22, -0.37, 0.005
+20040910, 0.53, 0.14, -0.65, 0.005
+20040913, 0.30, 0.41, -0.48, 0.005
+20040914, 0.19, -0.45, -0.17, 0.005
+20040915, -0.67, 0.17, 0.32, 0.005
+20040916, 0.36, 0.44, 0.35, 0.005
+20040917, 0.35, -0.54, -0.01, 0.005
+20040920, -0.51, 0.19, 0.07, 0.005
+20040921, 0.66, 0.36, -0.08, 0.005
+20040922, -1.37, -0.47, 0.55, 0.005
+20040923, -0.37, 0.39, -0.08, 0.005
+20040924, 0.14, -0.20, 0.36, 0.005
+20040927, -0.71, -0.63, 0.36, 0.005
+20040928, 0.63, 0.64, -0.23, 0.005
+20040929, 0.50, 0.67, -0.66, 0.005
+20040930, 0.06, 0.10, 0.52, 0.005
+20041001, 1.48, 0.57, -0.14, 0.005
+20041004, 0.38, 0.35, -0.16, 0.005
+20041005, -0.11, -0.18, 0.09, 0.005
+20041006, 0.69, 0.12, 0.14, 0.005
+20041007, -1.05, -0.61, 0.30, 0.005
+20041008, -0.80, -0.50, 0.62, 0.005
+20041011, 0.23, 0.20, -0.45, 0.005
+20041012, -0.23, -0.06, 0.27, 0.005
+20041013, -0.75, -0.36, -0.37, 0.005
+20041014, -0.92, 0.09, -0.34, 0.005
+20041015, 0.45, 0.27, 0.05, 0.005
+20041018, 0.51, 0.01, -0.79, 0.005
+20041019, -0.92, 0.14, -0.53, 0.005
+20041020, 0.11, 0.49, -0.13, 0.005
+20041021, 0.37, 0.76, -0.06, 0.005
+20041022, -1.00, -0.59, 0.64, 0.005
+20041025, -0.03, 0.66, 0.50, 0.005
+20041026, 1.36, -0.60, 0.65, 0.005
+20041027, 1.39, 0.38, -1.13, 0.005
+20041028, 0.13, -0.34, -0.06, 0.005
+20041029, 0.18, -0.53, 0.24, 0.005
+20041101, 0.06, 0.37, 0.05, 0.007
+20041102, -0.01, -0.15, -0.01, 0.007
+20041103, 1.17, 0.45, -0.05, 0.007
+20041104, 1.51, -0.65, 0.28, 0.007
+20041105, 0.44, 0.28, -0.32, 0.007
+20041108, -0.13, -0.26, 0.03, 0.007
+20041109, 0.05, 0.69, -0.03, 0.007
+20041110, -0.01, 0.47, 0.28, 0.007
+20041111, 0.90, 0.10, -0.22, 0.007
+20041112, 0.86, -0.02, -0.09, 0.007
+20041115, 0.07, 0.34, -0.26, 0.007
+20041116, -0.66, -0.18, 0.30, 0.007
+20041117, 0.64, 0.32, -0.10, 0.007
+20041118, 0.05, -0.18, 0.05, 0.007
+20041119, -1.11, -0.17, 0.74, 0.007
+20041122, 0.60, 0.47, 0.36, 0.007
+20041123, 0.06, 0.30, 0.35, 0.007
+20041124, 0.47, 0.31, 0.13, 0.007
+20041126, 0.12, 0.17, 0.30, 0.007
+20041129, -0.21, 0.86, -0.15, 0.007
+20041130, -0.37, 0.16, 0.11, 0.007
+20041201, 1.48, 0.06, -0.75, 0.007
+20041202, -0.07, 0.11, -0.57, 0.007
+20041203, 0.04, -0.17, 0.11, 0.007
+20041206, -0.13, -0.40, -0.07, 0.007
+20041207, -1.16, -0.90, 0.36, 0.007
+20041208, 0.46, 0.42, -0.41, 0.007
+20041209, 0.44, -0.75, 0.14, 0.007
+20041210, -0.01, 0.46, 0.19, 0.007
+20041213, 0.86, -0.03, -0.04, 0.007
+20041214, 0.45, 0.51, -0.20, 0.007
+20041215, 0.33, 0.39, 0.47, 0.007
+20041216, -0.28, -0.44, 0.34, 0.007
+20041217, -0.55, 0.49, 0.45, 0.007
+20041220, -0.13, -0.59, 0.39, 0.007
+20041221, 0.92, 0.26, -0.05, 0.007
+20041222, 0.39, 0.04, -0.15, 0.007
+20041223, 0.09, 0.21, -0.21, 0.007
+20041227, -0.45, -0.21, 0.01, 0.007
+20041228, 0.83, 0.76, -0.16, 0.007
+20041229, 0.01, -0.05, -0.03, 0.007
+20041230, 0.04, -0.03, -0.11, 0.007
+20041231, -0.14, -0.01, 0.20, 0.007
+20050103, -0.97, -0.62, -0.04, 0.008
+20050104, -1.30, -0.58, 0.44, 0.008
+20050105, -0.51, -1.11, 0.00, 0.008
+20050106, 0.34, -0.14, 0.13, 0.008
+20050107, -0.22, -0.76, -0.02, 0.008
+20050110, 0.42, 0.27, 0.04, 0.008
+20050111, -0.68, -0.35, 0.30, 0.008
+20050112, 0.38, -0.04, -0.16, 0.008
+20050113, -0.77, 0.13, 0.38, 0.008
+20050114, 0.66, 0.55, 0.07, 0.008
+20050118, 0.97, 0.16, -0.18, 0.008
+20050119, -0.97, -0.13, 0.48, 0.008
+20050120, -0.77, -0.12, -0.05, 0.008
+20050121, -0.56, 0.29, 0.25, 0.008
+20050124, -0.49, -0.79, 0.61, 0.008
+20050125, 0.34, 0.20, -0.37, 0.008
+20050126, 0.62, 0.95, -0.21, 0.008
+20050127, 0.08, 0.17, 0.04, 0.008
+20050128, -0.30, -0.26, 0.18, 0.008
+20050131, 0.97, 0.78, 0.16, 0.008
+20050201, 0.69, -0.09, 0.20, 0.009
+20050202, 0.36, 0.25, 0.17, 0.009
+20050203, -0.27, -0.17, 0.39, 0.009
+20050204, 1.12, 0.12, -0.56, 0.009
+20050207, -0.11, 0.14, -0.03, 0.009
+20050208, 0.08, 0.24, -0.17, 0.009
+20050209, -1.00, -1.18, 0.73, 0.009
+20050210, 0.35, -0.33, 0.05, 0.009
+20050211, 0.77, 0.43, -0.31, 0.009
+20050214, 0.09, -0.01, 0.14, 0.009
+20050215, 0.28, -0.36, -0.01, 0.009
+20050216, 0.07, 0.42, 0.40, 0.009
+20050217, -0.79, -0.30, 0.21, 0.009
+20050218, 0.01, -0.08, -0.05, 0.009
+20050222, -1.47, -0.31, -0.12, 0.009
+20050223, 0.53, -0.14, 0.25, 0.009
+20050224, 0.83, 0.24, -0.23, 0.009
+20050225, 0.97, 0.39, 0.38, 0.009
+20050228, -0.61, 0.27, 0.04, 0.009
+20050301, 0.58, 0.11, 0.02, 0.010
+20050302, -0.01, -0.18, 0.05, 0.010
+20050303, -0.01, 0.09, 0.55, 0.010
+20050304, 0.89, -0.03, 0.32, 0.010
+20050307, 0.27, -0.37, 0.01, 0.010
+20050308, -0.54, -0.40, -0.06, 0.010
+20050309, -0.96, 0.06, -0.07, 0.010
+20050310, 0.01, -0.83, -0.22, 0.010
+20050311, -0.55, 0.56, 0.52, 0.010
+20050314, 0.61, -0.22, 0.11, 0.010
+20050315, -0.67, 0.20, 0.27, 0.010
+20050316, -0.84, 0.22, 0.12, 0.010
+20050317, 0.19, 0.05, 0.52, 0.010
+20050318, -0.13, -0.31, -0.04, 0.010
+20050321, -0.38, 0.37, -0.20, 0.010
+20050322, -0.92, 0.70, -0.11, 0.010
+20050323, -0.12, -0.90, -0.50, 0.010
+20050324, 0.01, 0.45, -0.08, 0.010
+20050328, 0.15, -0.23, -0.03, 0.010
+20050329, -0.86, -0.83, 0.07, 0.010
+20050330, 1.35, 0.12, -0.21, 0.010
+20050331, 0.00, -0.05, 0.64, 0.010
+20050401, -0.64, 0.01, 0.42, 0.010
+20050404, 0.29, 0.00, 0.19, 0.010
+20050405, 0.40, -0.14, -0.25, 0.010
+20050406, 0.22, -0.11, 0.03, 0.010
+20050407, 0.57, 0.01, -0.17, 0.010
+20050408, -0.88, -0.45, 0.04, 0.010
+20050411, -0.09, -0.64, 0.02, 0.010
+20050412, 0.56, 0.24, -0.09, 0.010
+20050413, -1.22, -0.34, -0.17, 0.010
+20050414, -1.10, -0.56, -0.26, 0.010
+20050415, -1.59, -0.12, -0.38, 0.010
+20050418, 0.29, 0.32, 0.23, 0.010
+20050419, 0.75, 0.83, 0.13, 0.010
+20050420, -1.35, -0.23, 0.05, 0.010
+20050421, 1.87, 0.32, -0.56, 0.010
+20050422, -0.83, -0.84, 0.43, 0.010
+20050425, 0.93, 0.06, 0.01, 0.010
+20050426, -0.88, -0.52, -0.13, 0.010
+20050427, 0.30, -0.54, -0.24, 0.010
+20050428, -1.20, -0.99, 0.37, 0.010
+20050429, 1.04, -0.39, -0.02, 0.010
+20050502, 0.52, 0.47, 0.06, 0.011
+20050503, -0.04, -0.01, -0.31, 0.011
+20050504, 1.28, 0.26, 0.41, 0.011
+20050505, -0.19, 0.30, -0.39, 0.011
+20050506, -0.03, 0.33, 0.16, 0.011
+20050509, 0.61, 0.31, -0.04, 0.011
+20050510, -1.03, -0.15, 0.02, 0.011
+20050511, 0.39, -0.41, -0.13, 0.011
+20050512, -1.02, -0.18, -0.75, 0.011
+20050513, -0.50, -0.07, -0.67, 0.011
+20050516, 1.03, 0.49, -0.17, 0.011
+20050517, 0.66, -0.23, 0.29, 0.011
+20050518, 1.15, 0.95, -0.26, 0.011
+20050519, 0.47, -0.10, -0.08, 0.011
+20050520, -0.13, -0.04, 0.25, 0.011
+20050523, 0.43, 0.20, -0.02, 0.011
+20050524, 0.05, 0.01, 0.00, 0.011
+20050525, -0.44, -0.57, 0.19, 0.011
+20050526, 0.74, 0.65, 0.08, 0.011
+20050527, 0.18, 0.10, 0.31, 0.011
+20050531, -0.49, 0.47, 0.28, 0.011
+20050601, 0.90, 0.18, 0.00, 0.010
+20050602, 0.24, 0.14, -0.24, 0.010
+20050603, -0.67, -0.20, 0.48, 0.010
+20050606, 0.14, 0.32, 0.13, 0.010
+20050607, -0.03, 0.15, 0.09, 0.010
+20050608, -0.28, -0.39, 0.36, 0.010
+20050609, 0.58, 0.32, -0.12, 0.010
+20050610, -0.21, 0.11, 0.54, 0.010
+20050613, 0.28, 0.14, 0.17, 0.010
+20050614, 0.31, 0.49, 0.39, 0.010
+20050615, 0.22, 0.23, 0.21, 0.010
+20050616, 0.46, 0.62, -0.29, 0.010
+20050617, 0.36, -0.60, 0.20, 0.010
+20050620, -0.07, -0.32, 0.09, 0.010
+20050621, -0.18, 0.11, -0.05, 0.010
+20050622, 0.05, 0.28, -0.09, 0.010
+20050623, -1.07, -0.43, 0.13, 0.010
+20050624, -0.72, -0.05, 0.12, 0.010
+20050627, -0.07, -0.12, 0.55, 0.010
+20050628, 1.05, 1.10, -0.51, 0.010
+20050629, -0.07, 0.30, 0.12, 0.010
+20050630, -0.63, 0.20, 0.27, 0.010
+20050701, 0.32, 0.11, 0.30, 0.012
+20050705, 0.92, 0.58, -0.19, 0.012
+20050706, -0.73, 0.07, 0.07, 0.012
+20050707, 0.26, -0.11, -0.24, 0.012
+20050708, 1.21, 0.78, -0.55, 0.012
+20050711, 0.69, 0.79, -0.13, 0.012
+20050712, 0.20, -0.28, -0.04, 0.012
+20050713, 0.02, -0.41, 0.07, 0.012
+20050714, 0.14, -0.67, -0.44, 0.012
+20050715, 0.12, -0.03, -0.03, 0.012
+20050718, -0.55, -0.15, 0.10, 0.012
+20050719, 0.75, 0.91, -0.11, 0.012
+20050720, 0.54, 0.78, -0.26, 0.012
+20050721, -0.74, -0.61, 0.15, 0.012
+20050722, 0.57, 0.94, 0.54, 0.012
+20050725, -0.47, -0.51, 0.13, 0.012
+20050726, 0.21, 0.28, 0.22, 0.012
+20050727, 0.43, -0.37, -0.04, 0.012
+20050728, 0.67, 0.53, -0.18, 0.012
+20050729, -0.66, 0.24, 0.12, 0.012
+20050801, 0.15, 0.27, -0.12, 0.013
+20050802, 0.70, 0.05, 0.11, 0.013
+20050803, -0.02, -0.66, -0.04, 0.013
+20050804, -0.82, -0.84, 0.35, 0.013
+20050805, -0.81, -0.32, -0.02, 0.013
+20050808, -0.32, 0.01, 0.25, 0.013
+20050809, 0.55, -0.48, -0.07, 0.013
+20050810, -0.13, 0.02, 0.16, 0.013
+20050811, 0.71, 0.19, -0.08, 0.013
+20050812, -0.57, -0.39, 0.11, 0.013
+20050815, 0.30, 0.47, -0.14, 0.013
+20050816, -1.22, -0.46, 0.17, 0.013
+20050817, 0.05, 0.01, -0.06, 0.013
+20050818, -0.15, -0.43, 0.05, 0.013
+20050819, 0.07, 0.07, 0.17, 0.013
+20050822, 0.19, 0.50, 0.15, 0.013
+20050823, -0.31, -0.02, 0.01, 0.013
+20050824, -0.56, 0.46, 0.13, 0.013
+20050825, 0.21, 0.13, 0.20, 0.013
+20050826, -0.66, -0.57, -0.09, 0.013
+20050829, 0.65, 0.38, -0.22, 0.013
+20050830, -0.31, -0.03, 0.34, 0.013
+20050831, 1.10, 0.72, -0.06, 0.013
+20050901, 0.13, -0.03, 0.24, 0.014
+20050902, -0.36, -0.30, -0.01, 0.014
+20050906, 1.22, 0.30, -0.49, 0.014
+20050907, 0.30, 0.08, -0.14, 0.014
+20050908, -0.40, -0.12, -0.05, 0.014
+20050909, 0.73, -0.10, 0.14, 0.014
+20050912, 0.00, 0.54, -0.34, 0.014
+20050913, -0.76, -0.21, 0.13, 0.014
+20050914, -0.44, -0.67, 0.42, 0.014
+20050915, -0.02, -0.26, 0.30, 0.014
+20050916, 0.72, 0.15, -0.10, 0.014
+20050919, -0.55, -0.17, 0.22, 0.014
+20050920, -0.78, -0.11, 0.04, 0.014
+20050921, -1.03, -0.49, 0.30, 0.014
+20050922, 0.30, -0.07, -0.24, 0.014
+20050923, 0.15, 0.53, 0.19, 0.014
+20050926, 0.12, 0.53, 0.07, 0.014
+20050927, -0.02, -0.07, -0.09, 0.014
+20050928, 0.06, -0.60, 0.27, 0.014
+20050929, 0.92, 0.21, 0.04, 0.014
+20050930, 0.20, 0.32, -0.17, 0.014
+20051003, 0.00, 0.47, 0.01, 0.013
+20051004, -0.97, 0.22, -0.18, 0.013
+20051005, -1.63, -1.02, -0.25, 0.013
+20051006, -0.57, -0.34, 0.10, 0.013
+20051007, 0.42, 0.32, 0.25, 0.013
+20051010, -0.73, -0.07, -0.22, 0.013
+20051011, -0.33, -0.97, 0.14, 0.013
+20051012, -0.79, -0.54, 0.10, 0.013
+20051013, -0.09, 0.45, -0.55, 0.013
+20051014, 0.92, 0.50, -0.10, 0.013
+20051017, 0.29, -0.34, 0.12, 0.013
+20051018, -1.03, -0.02, -0.13, 0.013
+20051019, 1.45, 0.46, -0.19, 0.013
+20051020, -1.44, 0.01, -0.37, 0.013
+20051021, 0.32, 0.38, 0.24, 0.013
+20051024, 1.70, 0.15, 0.29, 0.013
+20051025, -0.30, -0.32, 0.09, 0.013
+20051026, -0.46, -0.23, 0.18, 0.013
+20051027, -1.24, -1.04, 0.42, 0.013
+20051028, 1.55, -0.03, 0.27, 0.013
+20051031, 0.96, 0.79, 0.03, 0.013
+20051101, -0.27, -0.23, 0.39, 0.015
+20051102, 1.15, 0.83, 0.00, 0.015
+20051103, 0.43, -0.11, -0.19, 0.015
+20051104, 0.01, 0.06, -0.28, 0.015
+20051107, 0.25, 0.22, -0.06, 0.015
+20051108, -0.37, -0.34, -0.04, 0.015
+20051109, 0.15, 0.25, -0.02, 0.015
+20051110, 0.80, -0.07, -0.60, 0.015
+20051111, 0.27, -0.03, -0.12, 0.015
+20051114, -0.10, -0.34, 0.05, 0.015
+20051115, -0.49, -0.65, -0.17, 0.015
+20051116, 0.11, -0.35, 0.01, 0.015
+20051117, 1.06, 0.68, -0.09, 0.015
+20051118, 0.43, 0.27, -0.16, 0.015
+20051121, 0.60, 0.43, -0.35, 0.015
+20051122, 0.48, -0.04, -0.01, 0.015
+20051123, 0.31, -0.27, 0.22, 0.015
+20051125, 0.18, -0.11, -0.08, 0.015
+20051128, -1.01, -0.71, 0.22, 0.015
+20051129, 0.01, 0.28, 0.28, 0.015
+20051130, -0.43, 1.14, -0.16, 0.015
+20051201, 1.27, 0.52, 0.13, 0.015
+20051202, 0.05, 0.06, -0.14, 0.015
+20051205, -0.30, -0.22, 0.08, 0.015
+20051206, 0.12, 0.06, 0.06, 0.015
+20051207, -0.49, -0.07, 0.06, 0.015
+20051208, -0.03, 0.25, 0.07, 0.015
+20051209, 0.27, 0.22, 0.05, 0.015
+20051212, 0.10, 0.12, -0.05, 0.015
+20051213, 0.44, -0.53, -0.21, 0.015
+20051214, 0.34, -0.25, 0.08, 0.015
+20051215, -0.23, -0.57, -0.37, 0.015
+20051216, -0.29, 0.03, -0.04, 0.015
+20051219, -0.73, -0.81, 0.29, 0.015
+20051220, -0.02, -0.01, 0.02, 0.015
+20051221, 0.33, 0.66, -0.35, 0.015
+20051222, 0.45, 0.12, -0.02, 0.015
+20051223, 0.08, 0.29, 0.00, 0.015
+20051227, -1.00, -0.44, 0.17, 0.015
+20051228, 0.19, 0.40, 0.13, 0.015
+20051229, -0.27, -0.02, 0.21, 0.015
+20051230, -0.50, -0.22, 0.26, 0.015
+20060103, 1.50, -0.19, 0.13, 0.017
+20060104, 0.46, 0.34, 0.02, 0.017
+20060105, 0.03, 0.28, -0.15, 0.017
+20060106, 0.92, 0.09, -0.23, 0.017
+20060109, 0.45, 0.52, -0.10, 0.017
+20060110, 0.05, 0.58, 0.02, 0.017
+20060111, 0.28, -0.25, -0.11, 0.017
+20060112, -0.65, 0.09, -0.03, 0.017
+20060113, 0.17, 0.13, 0.06, 0.017
+20060117, -0.40, -0.32, 0.22, 0.017
+20060118, -0.35, 0.36, 0.30, 0.017
+20060119, 0.63, 0.93, -0.08, 0.017
+20060120, -1.80, 0.37, 0.51, 0.017
+20060123, 0.18, 0.20, 0.43, 0.017
+20060124, 0.44, 1.03, 0.16, 0.017
+20060125, -0.22, -0.04, -0.12, 0.017
+20060126, 0.79, 0.81, 0.04, 0.017
+20060127, 0.67, -0.15, -0.17, 0.017
+20060130, 0.10, -0.26, 0.21, 0.017
+20060131, -0.21, 0.62, -0.03, 0.017
+20060201, 0.14, 0.18, 0.05, 0.018
+20060202, -0.88, -0.28, -0.07, 0.018
+20060203, -0.51, 0.24, 0.01, 0.018
+20060206, 0.10, 0.26, 0.51, 0.018
+20060207, -0.92, -0.47, -0.23, 0.018
+20060208, 0.77, -0.26, -0.09, 0.018
+20060209, -0.19, -0.15, -0.27, 0.018
+20060210, 0.15, -0.35, -0.05, 0.018
+20060213, -0.47, -0.51, 0.14, 0.018
+20060214, 1.01, 0.27, -0.10, 0.018
+20060215, 0.41, 0.41, -0.47, 0.018
+20060216, 0.75, 0.05, 0.22, 0.018
+20060217, -0.16, -0.05, 0.36, 0.018
+20060221, -0.38, -0.20, 0.14, 0.018
+20060222, 0.73, 0.01, -0.03, 0.018
+20060223, -0.29, 0.23, -0.22, 0.018
+20060224, 0.19, 0.35, 0.16, 0.018
+20060227, 0.40, 0.16, -0.36, 0.018
+20060228, -1.10, -0.21, 0.07, 0.018
+20060301, 0.90, 0.68, -0.04, 0.016
+20060302, -0.16, -0.07, 0.06, 0.016
+20060303, -0.15, -0.01, 0.07, 0.016
+20060306, -0.75, -0.21, -0.14, 0.016
+20060307, -0.40, -1.07, 0.05, 0.016
+20060308, 0.14, -0.05, 0.06, 0.016
+20060309, -0.51, -0.01, 0.29, 0.016
+20060310, 0.69, 0.39, 0.03, 0.016
+20060313, 0.24, -0.03, 0.10, 0.016
+20060314, 1.00, 0.04, -0.03, 0.016
+20060315, 0.48, 0.40, 0.15, 0.016
+20060316, 0.11, -0.13, 0.32, 0.016
+20060317, 0.18, 0.12, -0.32, 0.016
+20060320, -0.07, 0.17, -0.33, 0.016
+20060321, -0.69, -0.52, -0.10, 0.016
+20060322, 0.62, 0.49, 0.12, 0.016
+20060323, -0.18, 0.54, 0.00, 0.016
+20060324, 0.22, 0.66, 0.20, 0.016
+20060327, -0.07, 0.15, 0.25, 0.016
+20060328, -0.61, 0.24, -0.08, 0.016
+20060329, 0.87, 0.86, 0.14, 0.016
+20060330, -0.16, 0.16, -0.16, 0.016
+20060331, -0.23, 0.70, -0.05, 0.016
+20060403, 0.07, -0.88, 0.68, 0.019
+20060404, 0.54, -0.26, 0.13, 0.019
+20060405, 0.42, -0.03, 0.25, 0.019
+20060406, -0.15, 0.18, 0.01, 0.019
+20060407, -1.02, -0.11, -0.17, 0.019
+20060410, -0.02, -0.39, 0.05, 0.019
+20060411, -0.83, -0.67, 0.02, 0.019
+20060412, 0.19, 0.57, -0.03, 0.019
+20060413, 0.12, 0.38, -0.14, 0.019
+20060417, -0.28, 0.00, 0.30, 0.019
+20060418, 1.71, 0.67, 0.07, 0.019
+20060419, 0.33, 0.87, 0.07, 0.019
+20060420, 0.01, -0.50, 0.05, 0.019
+20060421, -0.10, -0.19, 0.30, 0.019
+20060424, -0.30, -0.41, 0.13, 0.019
+20060425, -0.44, 0.44, 0.00, 0.019
+20060426, 0.20, -0.09, 0.28, 0.019
+20060427, 0.24, -0.95, 0.00, 0.019
+20060428, 0.05, 0.13, 0.52, 0.019
+20060501, -0.41, 0.01, 0.47, 0.020
+20060502, 0.54, 0.19, 0.57, 0.020
+20060503, -0.31, 0.40, 0.08, 0.020
+20060504, 0.37, 0.59, -0.24, 0.020
+20060505, 1.04, -0.30, -0.02, 0.020
+20060508, -0.05, 0.08, 0.09, 0.020
+20060509, -0.01, -0.14, 0.20, 0.020
+20060510, -0.20, -0.59, 0.54, 0.020
+20060511, -1.35, -1.09, 0.23, 0.020
+20060512, -1.26, -0.72, -0.08, 0.020
+20060515, 0.04, -0.91, -0.29, 0.020
+20060516, -0.12, 0.10, 0.35, 0.020
+20060517, -1.66, 0.12, 0.16, 0.020
+20060518, -0.69, -0.34, 0.13, 0.020
+20060519, 0.38, 0.11, 0.01, 0.020
+20060522, -0.55, -0.76, 0.25, 0.020
+20060523, -0.44, 0.07, -0.02, 0.020
+20060524, 0.03, -0.08, -0.15, 0.020
+20060525, 1.22, 0.70, 0.01, 0.020
+20060526, 0.60, -0.16, -0.08, 0.020
+20060530, -1.65, -0.78, 0.13, 0.020
+20060531, 0.94, 0.36, 0.38, 0.020
+20060601, 1.29, 0.82, -0.17, 0.018
+20060602, 0.16, -0.07, 0.22, 0.018
+20060605, -1.94, -1.17, 0.20, 0.018
+20060606, -0.28, -0.17, -0.09, 0.018
+20060607, -0.57, 0.04, -0.19, 0.018
+20060608, 0.01, -0.26, 0.04, 0.018
+20060609, -0.44, -0.24, -0.05, 0.018
+20060612, -1.48, -1.27, 0.27, 0.018
+20060613, -1.15, -0.34, -0.41, 0.018
+20060614, 0.46, 0.18, -0.22, 0.018
+20060615, 2.33, 1.05, 0.27, 0.018
+20060616, -0.43, -0.72, 0.01, 0.018
+20060619, -1.01, -0.78, 0.15, 0.018
+20060620, -0.07, -0.38, 0.07, 0.018
+20060621, 1.11, 0.74, -0.17, 0.018
+20060622, -0.52, 0.15, 0.16, 0.018
+20060623, 0.03, 0.24, 0.22, 0.018
+20060626, 0.50, 0.53, 0.19, 0.018
+20060627, -1.00, -0.73, 0.28, 0.018
+20060628, 0.47, -0.37, 0.15, 0.018
+20060629, 2.29, 1.42, -0.25, 0.018
+20060630, -0.02, 1.15, 0.14, 0.018
+20060703, 0.72, -0.07, -0.24, 0.020
+20060705, -0.88, -0.54, 0.38, 0.020
+20060706, 0.23, -0.07, 0.03, 0.020
+20060707, -0.80, -0.85, 0.72, 0.020
+20060710, 0.04, -0.27, 0.51, 0.020
+20060711, 0.37, 0.32, -0.16, 0.020
+20060712, -1.21, -0.66, 0.35, 0.020
+20060713, -1.43, -0.55, 0.07, 0.020
+20060714, -0.60, -0.35, 0.15, 0.020
+20060717, -0.22, -0.45, 0.08, 0.020
+20060718, 0.17, 0.17, 0.30, 0.020
+20060719, 1.98, 0.90, -0.27, 0.020
+20060720, -1.11, -1.60, 0.60, 0.020
+20060721, -0.89, -0.86, 0.33, 0.020
+20060724, 1.75, 0.86, -0.49, 0.020
+20060725, 0.69, 0.20, 0.01, 0.020
+20060726, -0.13, -0.34, 0.48, 0.020
+20060727, -0.58, -0.73, 0.36, 0.020
+20060728, 1.31, 0.67, -0.15, 0.020
+20060731, -0.09, 0.26, -0.09, 0.020
+20060801, -0.60, -0.92, 0.34, 0.018
+20060802, 0.64, 0.28, -0.25, 0.018
+20060803, 0.27, 0.85, -0.46, 0.018
+20060804, -0.13, -0.45, 0.16, 0.018
+20060807, -0.35, -0.27, 0.10, 0.018
+20060808, -0.42, -0.80, 0.10, 0.018
+20060809, -0.52, -0.43, -0.01, 0.018
+20060810, 0.49, 0.36, -0.39, 0.018
+20060811, -0.49, -0.58, 0.19, 0.018
+20060814, 0.12, 0.25, -0.31, 0.018
+20060815, 1.46, 0.75, -0.41, 0.018
+20060816, 0.90, 0.63, -0.51, 0.018
+20060817, 0.18, 0.36, -0.18, 0.018
+20060818, 0.30, -0.17, -0.12, 0.018
+20060821, -0.48, -0.49, 0.15, 0.018
+20060822, 0.07, 0.28, 0.06, 0.018
+20060823, -0.55, -0.75, 0.15, 0.018
+20060824, 0.16, -0.21, 0.08, 0.018
+20060825, -0.07, 0.18, -0.09, 0.018
+20060828, 0.58, 0.40, -0.12, 0.018
+20060829, 0.33, 0.92, -0.12, 0.018
+20060830, 0.13, 0.75, -0.28, 0.018
+20060831, 0.03, 0.01, 0.23, 0.018
+20060901, 0.49, -0.27, -0.04, 0.020
+20060905, 0.21, 0.52, 0.02, 0.020
+20060906, -1.13, -1.01, 0.46, 0.020
+20060907, -0.50, -0.17, 0.21, 0.020
+20060908, 0.32, -0.08, -0.12, 0.020
+20060911, -0.03, -0.16, -0.08, 0.020
+20060912, 1.18, 1.16, -0.32, 0.020
+20060913, 0.45, 0.43, -0.08, 0.020
+20060914, -0.16, -0.25, 0.08, 0.020
+20060915, 0.21, 0.02, -0.28, 0.020
+20060918, 0.04, 0.00, -0.30, 0.020
+20060919, -0.29, -0.23, 0.19, 0.020
+20060920, 0.60, 0.53, 0.01, 0.020
+20060921, -0.59, -0.39, 0.07, 0.020
+20060922, -0.41, -0.88, 0.51, 0.020
+20060925, 0.86, 0.17, 0.09, 0.020
+20060926, 0.71, -0.35, -0.18, 0.020
+20060927, 0.08, 0.42, -0.27, 0.020
+20060928, 0.15, -0.10, -0.19, 0.020
+20060929, -0.33, -0.64, 0.25, 0.020
+20061002, -0.43, -0.55, 0.19, 0.018
+20061003, 0.13, -0.37, 0.46, 0.018
+20061004, 1.28, 0.73, -0.52, 0.018
+20061005, 0.43, 0.93, -0.37, 0.018
+20061006, -0.31, -0.04, -0.09, 0.018
+20061009, 0.20, 0.42, 0.11, 0.018
+20061010, 0.21, -0.04, 0.00, 0.018
+20061011, -0.30, -0.33, 0.23, 0.018
+20061012, 1.07, 0.93, -0.19, 0.018
+20061013, 0.22, 0.49, -0.06, 0.018
+20061016, 0.34, 0.62, -0.32, 0.018
+20061017, -0.44, -0.22, 0.42, 0.018
+20061018, 0.08, -0.32, 0.03, 0.018
+20061019, 0.10, 0.45, -0.09, 0.018
+20061020, -0.02, -0.73, 0.04, 0.018
+20061023, 0.56, -0.42, -0.19, 0.018
+20061024, 0.01, -0.21, 0.22, 0.018
+20061025, 0.32, 0.18, -0.08, 0.018
+20061026, 0.63, 0.41, 0.20, 0.018
+20061027, -0.88, -0.35, 0.12, 0.018
+20061030, 0.07, 0.43, -0.01, 0.018
+20061031, -0.07, -0.34, -0.11, 0.018
+20061101, -0.87, -0.99, 0.27, 0.020
+20061102, -0.05, -0.23, 0.06, 0.020
+20061103, -0.12, 0.52, -0.14, 0.020
+20061106, 1.16, 0.26, -0.12, 0.020
+20061107, 0.23, 0.06, -0.30, 0.020
+20061108, 0.29, 0.31, 0.34, 0.020
+20061109, -0.58, -0.39, 0.33, 0.020
+20061110, 0.26, 0.70, -0.02, 0.020
+20061113, 0.27, 0.18, 0.03, 0.020
+20061114, 0.71, 0.92, -0.23, 0.020
+20061115, 0.35, 0.58, -0.41, 0.020
+20061116, 0.16, -0.31, 0.11, 0.020
+20061117, 0.03, -0.37, -0.12, 0.020
+20061120, -0.06, 0.21, 0.05, 0.020
+20061121, 0.14, 0.04, -0.08, 0.020
+20061122, 0.28, -0.08, -0.25, 0.020
+20061124, -0.32, 0.24, 0.09, 0.020
+20061127, -1.53, -1.02, 0.32, 0.020
+20061128, 0.30, 0.00, -0.04, 0.020
+20061129, 0.95, 0.13, -0.04, 0.020
+20061130, 0.11, 0.13, 0.21, 0.020
+20061201, -0.30, -0.36, 0.11, 0.020
+20061204, 0.99, 0.86, -0.16, 0.020
+20061205, 0.41, -0.19, 0.24, 0.020
+20061206, -0.10, -0.09, 0.23, 0.020
+20061207, -0.41, -0.05, 0.08, 0.020
+20061208, 0.14, -0.16, 0.01, 0.020
+20061211, 0.18, -0.28, 0.65, 0.020
+20061212, -0.20, -0.51, 0.45, 0.020
+20061213, 0.09, -0.04, 0.17, 0.020
+20061214, 0.80, -0.13, -0.12, 0.020
+20061215, 0.07, -0.33, 0.40, 0.020
+20061218, -0.46, -0.94, 0.17, 0.020
+20061219, 0.16, -0.12, 0.04, 0.020
+20061220, -0.12, 0.56, 0.08, 0.020
+20061221, -0.38, 0.01, 0.35, 0.020
+20061222, -0.48, 0.29, 0.08, 0.020
+20061226, 0.44, 0.34, 0.37, 0.020
+20061227, 0.74, 0.51, -0.05, 0.020
+20061228, -0.18, -0.17, -0.01, 0.020
+20061229, -0.51, -0.26, -0.02, 0.020
+20070103, -0.04, 0.05, 0.14, 0.022
+20070104, 0.16, 0.24, -0.52, 0.022
+20070105, -0.73, -0.91, -0.33, 0.022
+20070108, 0.24, -0.07, 0.08, 0.022
+20070109, 0.00, 0.28, -0.20, 0.022
+20070110, 0.23, -0.08, -0.17, 0.022
+20070111, 0.74, 0.55, -0.29, 0.022
+20070112, 0.50, 0.21, -0.28, 0.022
+20070116, 0.00, -0.26, 0.06, 0.022
+20070117, -0.14, -0.21, -0.05, 0.022
+20070118, -0.48, -1.07, 0.53, 0.022
+20070119, 0.33, 0.42, 0.07, 0.022
+20070122, -0.55, -0.49, 0.34, 0.022
+20070123, 0.37, 0.60, 0.07, 0.022
+20070124, 0.84, 0.23, -0.05, 0.022
+20070125, -1.15, -0.07, -0.10, 0.022
+20070126, -0.06, 0.55, 0.10, 0.022
+20070129, 0.02, 0.59, 0.23, 0.022
+20070130, 0.52, -0.02, 0.22, 0.022
+20070131, 0.64, -0.42, 0.03, 0.022
+20070201, 0.59, 0.34, -0.24, 0.020
+20070202, 0.15, 0.10, 0.27, 0.020
+20070205, -0.12, -0.22, 0.13, 0.020
+20070206, 0.10, 0.28, 0.19, 0.020
+20070207, 0.21, 0.40, -0.01, 0.020
+20070208, -0.10, 0.24, -0.22, 0.020
+20070209, -0.76, -0.34, 0.15, 0.020
+20070212, -0.35, 0.19, 0.09, 0.020
+20070213, 0.72, -0.17, 0.33, 0.020
+20070214, 0.73, -0.50, -0.17, 0.020
+20070215, 0.11, 0.16, -0.37, 0.020
+20070216, 0.00, 0.26, 0.07, 0.020
+20070220, 0.42, 0.64, -0.18, 0.020
+20070221, -0.09, 0.30, -0.21, 0.020
+20070222, -0.06, 0.37, -0.12, 0.020
+20070223, -0.31, 0.15, -0.26, 0.020
+20070226, -0.19, -0.14, 0.09, 0.020
+20070227, -3.43, -0.18, 0.02, 0.020
+20070228, 0.47, -0.51, 0.35, 0.020
+20070301, -0.25, -0.09, 0.19, 0.019
+20070302, -1.24, -0.63, 0.23, 0.019
+20070305, -1.11, -0.69, -0.28, 0.019
+20070306, 1.58, 0.67, 0.00, 0.019
+20070307, -0.21, -0.06, -0.02, 0.019
+20070308, 0.68, -0.10, 0.11, 0.019
+20070309, 0.09, 0.28, 0.14, 0.019
+20070312, 0.28, 0.27, -0.12, 0.019
+20070313, -2.03, -0.26, -0.12, 0.019
+20070314, 0.57, 0.11, -0.09, 0.019
+20070315, 0.44, 0.49, 0.13, 0.019
+20070316, -0.42, -0.11, -0.17, 0.019
+20070319, 1.08, -0.11, 0.02, 0.019
+20070320, 0.67, 0.03, 0.14, 0.019
+20070321, 1.64, -0.15, -0.10, 0.019
+20070322, -0.02, 0.19, -0.31, 0.019
+20070323, 0.08, 0.08, 0.04, 0.019
+20070326, 0.06, -0.04, -0.08, 0.019
+20070327, -0.61, -0.21, -0.02, 0.019
+20070328, -0.74, 0.22, -0.04, 0.019
+20070329, 0.29, -0.20, 0.17, 0.019
+20070330, -0.07, 0.27, -0.05, 0.019
+20070402, 0.22, 0.09, -0.11, 0.022
+20070403, 0.93, 0.05, -0.12, 0.022
+20070404, 0.09, -0.17, -0.25, 0.022
+20070405, 0.31, 0.00, -0.08, 0.022
+20070409, 0.05, -0.24, 0.07, 0.022
+20070410, 0.22, 0.09, 0.02, 0.022
+20070411, -0.64, -0.10, 0.12, 0.022
+20070412, 0.61, 0.25, -0.19, 0.022
+20070413, 0.34, 0.24, -0.08, 0.022
+20070416, 1.06, 0.29, 0.11, 0.022
+20070417, 0.09, -0.42, -0.12, 0.022
+20070418, 0.00, -0.71, 0.44, 0.022
+20070419, -0.23, -0.38, 0.03, 0.022
+20070420, 0.89, 0.20, 0.04, 0.022
+20070423, -0.24, 0.07, -0.29, 0.022
+20070424, -0.10, -0.04, -0.24, 0.022
+20070425, 0.91, -0.35, 0.17, 0.022
+20070426, -0.02, 0.32, -0.34, 0.022
+20070427, -0.13, -0.30, -0.31, 0.022
+20070430, -0.93, -0.91, 0.02, 0.022
+20070501, 0.22, -0.09, 0.03, 0.018
+20070502, 0.79, 0.62, 0.02, 0.018
+20070503, 0.37, -0.36, 0.32, 0.018
+20070504, 0.25, 0.18, -0.02, 0.018
+20070507, 0.18, -0.37, 0.32, 0.018
+20070508, -0.13, -0.04, -0.11, 0.018
+20070509, 0.35, 0.07, -0.02, 0.018
+20070510, -1.42, -0.50, 0.29, 0.018
+20070511, 0.95, 0.18, 0.06, 0.018
+20070514, -0.28, -0.61, 0.07, 0.018
+20070515, -0.27, -0.80, 0.28, 0.018
+20070516, 0.82, -0.21, 0.05, 0.018
+20070517, -0.10, -0.34, 0.03, 0.018
+20070518, 0.66, 0.40, -0.49, 0.018
+20070521, 0.31, 0.92, -0.28, 0.018
+20070522, 0.08, 0.71, -0.04, 0.018
+20070523, -0.18, -0.21, -0.12, 0.018
+20070524, -1.07, -0.43, -0.05, 0.018
+20070525, 0.55, 0.23, -0.07, 0.018
+20070529, 0.24, 0.60, 0.01, 0.018
+20070530, 0.77, -0.23, -0.01, 0.018
+20070531, 0.13, 0.34, -0.30, 0.018
+20070601, 0.44, 0.36, -0.05, 0.019
+20070604, 0.18, 0.07, 0.00, 0.019
+20070605, -0.55, -0.12, -0.22, 0.019
+20070606, -0.92, 0.08, 0.05, 0.019
+20070607, -1.75, -0.04, 0.06, 0.019
+20070608, 1.07, -0.06, 0.03, 0.019
+20070611, 0.08, -0.29, 0.10, 0.019
+20070612, -1.06, -0.16, -0.18, 0.019
+20070613, 1.37, -0.20, -0.10, 0.019
+20070614, 0.50, 0.10, -0.07, 0.019
+20070615, 0.69, 0.52, -0.07, 0.019
+20070618, -0.13, 0.01, -0.11, 0.019
+20070619, 0.14, 0.00, 0.15, 0.019
+20070620, -1.29, 0.09, -0.18, 0.019
+20070621, 0.56, -0.16, 0.01, 0.019
+20070622, -1.25, 0.62, -0.01, 0.019
+20070625, -0.39, -0.43, -0.11, 0.019
+20070626, -0.35, 0.14, -0.31, 0.019
+20070627, 0.92, 0.47, -0.39, 0.019
+20070628, 0.03, 0.14, 0.15, 0.019
+20070629, -0.19, -0.36, 0.11, 0.019
+20070702, 1.06, -0.07, 0.11, 0.019
+20070703, 0.36, -0.05, -0.10, 0.019
+20070705, 0.07, 0.20, -0.60, 0.019
+20070706, 0.40, -0.07, -0.08, 0.019
+20070709, 0.10, 0.06, -0.06, 0.019
+20070710, -1.43, -0.15, -0.38, 0.019
+20070711, 0.55, -0.29, -0.10, 0.019
+20070712, 1.78, -0.18, -0.31, 0.019
+20070713, 0.28, -0.31, 0.08, 0.019
+20070716, -0.31, -0.46, -0.24, 0.019
+20070717, 0.02, 0.16, -0.23, 0.019
+20070718, -0.25, -0.21, -0.19, 0.019
+20070719, 0.44, 0.34, -0.48, 0.019
+20070720, -1.25, -0.27, -0.19, 0.019
+20070723, 0.36, -0.42, -0.42, 0.019
+20070724, -2.04, -0.53, -0.22, 0.019
+20070725, 0.30, -0.41, 0.08, 0.019
+20070726, -2.36, -0.01, -0.23, 0.019
+20070727, -1.51, -0.06, 0.14, 0.019
+20070730, 0.93, -0.24, -0.07, 0.019
+20070731, -1.19, 0.32, -0.02, 0.019
+20070801, 0.51, -0.49, -0.25, 0.018
+20070802, 0.55, 0.15, -0.36, 0.018
+20070803, -2.66, -0.63, -0.72, 0.018
+20070806, 2.07, -1.16, -0.41, 0.018
+20070807, 0.65, 0.27, -0.67, 0.018
+20070808, 1.47, 1.16, -0.73, 0.018
+20070809, -2.74, 1.65, -0.61, 0.018
+20070810, 0.03, 0.05, 1.35, 0.018
+20070813, -0.06, -1.15, 0.32, 0.018
+20070814, -1.83, -0.05, -0.19, 0.018
+20070815, -1.46, 0.03, -0.04, 0.018
+20070816, 0.31, 1.20, 1.16, 0.018
+20070817, 2.36, -0.41, 0.38, 0.018
+20070820, 0.00, 0.16, -0.31, 0.018
+20070821, 0.15, -0.06, 0.08, 0.018
+20070822, 1.20, 0.05, -0.01, 0.018
+20070823, -0.23, -0.98, 0.16, 0.018
+20070824, 1.21, 0.12, -0.22, 0.018
+20070827, -0.85, -0.11, -0.14, 0.018
+20070828, -2.33, -0.07, -0.41, 0.018
+20070829, 2.13, 0.11, 0.01, 0.018
+20070830, -0.43, 0.00, -0.48, 0.018
+20070831, 1.12, 0.05, -0.08, 0.018
+20070904, 1.03, -0.21, 0.04, 0.017
+20070905, -1.05, 0.03, -0.32, 0.017
+20070906, 0.42, 0.00, -0.19, 0.017
+20070907, -1.70, -0.30, 0.19, 0.017
+20070910, -0.27, -0.50, -0.22, 0.017
+20070911, 1.35, 0.04, -0.34, 0.017
+20070912, -0.03, -0.44, -0.20, 0.017
+20070913, 0.69, -0.69, 0.30, 0.017
+20070914, 0.10, 0.36, -0.06, 0.017
+20070917, -0.60, -0.44, 0.04, 0.017
+20070918, 2.88, 0.59, 0.37, 0.017
+20070919, 0.59, 0.60, 0.24, 0.017
+20070920, -0.65, -0.14, -0.31, 0.017
+20070921, 0.43, -0.24, -0.24, 0.017
+20070924, -0.56, -0.38, -0.63, 0.017
+20070925, -0.03, -0.29, -0.38, 0.017
+20070926, 0.60, 0.12, -0.07, 0.017
+20070927, 0.43, 0.20, -0.03, 0.017
+20070928, -0.37, -0.54, 0.03, 0.017
+20071001, 1.37, 0.81, 0.07, 0.014
+20071002, 0.11, 0.65, 0.18, 0.014
+20071003, -0.48, -0.22, -0.17, 0.014
+20071004, 0.18, -0.03, 0.05, 0.014
+20071005, 1.10, 0.64, -0.07, 0.014
+20071008, -0.27, -0.18, -0.29, 0.014
+20071009, 0.78, -0.22, -0.15, 0.014
+20071010, -0.13, 0.02, -0.40, 0.014
+20071011, -0.58, -0.67, 0.60, 0.014
+20071012, 0.51, 0.11, -0.31, 0.014
+20071015, -0.89, -0.39, -0.22, 0.014
+20071016, -0.67, -0.03, -0.28, 0.014
+20071017, 0.22, -0.15, -0.26, 0.014
+20071018, -0.10, 0.11, -0.38, 0.014
+20071019, -2.45, -0.47, 0.02, 0.014
+20071022, 0.47, 0.90, 0.05, 0.014
+20071023, 0.85, 0.06, -0.54, 0.014
+20071024, -0.33, -0.45, -0.20, 0.014
+20071025, -0.19, -0.31, -0.03, 0.014
+20071026, 1.38, 0.26, 0.37, 0.014
+20071029, 0.40, -0.27, -0.58, 0.014
+20071030, -0.64, 0.09, 0.13, 0.014
+20071031, 1.23, 0.04, -0.12, 0.014
+20071101, -2.66, -0.86, -0.43, 0.016
+20071102, 0.08, 0.19, -0.90, 0.016
+20071105, -0.59, -0.28, -0.11, 0.016
+20071106, 1.19, 0.02, -0.17, 0.016
+20071107, -2.77, -0.04, -0.46, 0.016
+20071108, -0.05, 0.55, 1.17, 0.016
+20071109, -1.46, 0.23, 0.86, 0.016
+20071112, -1.08, 0.38, 0.28, 0.016
+20071113, 2.81, -0.46, 0.05, 0.016
+20071114, -0.63, -0.22, -0.18, 0.016
+20071115, -1.25, 0.05, -0.06, 0.016
+20071116, 0.41, -0.62, -0.63, 0.016
+20071119, -1.81, -0.26, -0.37, 0.016
+20071120, 0.31, -0.56, -0.10, 0.016
+20071121, -1.54, 0.41, 0.09, 0.016
+20071123, 1.59, 0.17, 0.19, 0.016
+20071126, -2.09, -0.06, -0.65, 0.016
+20071127, 1.31, -0.54, -0.20, 0.016
+20071128, 2.90, 0.29, -0.19, 0.016
+20071129, 0.01, -0.50, -0.31, 0.016
+20071130, 0.70, -0.62, 0.86, 0.016
+20071203, -0.60, -0.53, 0.10, 0.014
+20071204, -0.61, -0.15, -0.15, 0.014
+20071205, 1.47, 0.02, -0.04, 0.014
+20071206, 1.55, 0.85, 0.27, 0.014
+20071207, -0.07, 0.04, -0.05, 0.014
+20071210, 0.71, -0.14, 0.24, 0.014
+20071211, -2.50, -0.26, -0.07, 0.014
+20071212, 0.48, 0.04, -0.20, 0.014
+20071213, 0.06, -0.33, -0.31, 0.014
+20071214, -1.36, -0.49, -0.26, 0.014
+20071217, -1.59, -0.20, 0.31, 0.014
+20071218, 0.65, 1.14, -0.01, 0.014
+20071219, -0.10, 0.30, -0.42, 0.014
+20071220, 0.64, 0.86, -0.39, 0.014
+20071221, 1.64, 0.33, -0.02, 0.014
+20071224, 0.80, 0.09, 0.21, 0.014
+20071226, 0.10, 0.22, -0.04, 0.014
+20071227, -1.49, -1.16, 0.04, 0.014
+20071228, 0.12, -0.37, -0.14, 0.014
+20071231, -0.65, 0.02, 0.42, 0.014
+20080102, -1.46, -0.10, -0.10, 0.010
+20080103, -0.14, -1.02, -0.37, 0.010
+20080104, -2.56, -0.50, 0.13, 0.010
+20080107, 0.16, 0.11, 0.13, 0.010
+20080108, -1.81, -0.43, -0.86, 0.010
+20080109, 1.10, -0.36, -0.63, 0.010
+20080110, 0.89, -0.16, 0.57, 0.010
+20080111, -1.42, -0.77, 0.25, 0.010
+20080114, 1.02, -0.04, -0.19, 0.010
+20080115, -2.39, 0.49, -0.12, 0.010
+20080116, -0.51, 0.81, 1.20, 0.010
+20080117, -2.80, 0.38, -0.11, 0.010
+20080118, -0.56, -0.23, -0.87, 0.010
+20080122, -0.98, 0.32, 1.19, 0.010
+20080123, 2.04, 0.67, 1.65, 0.010
+20080124, 1.02, -0.94, -0.53, 0.010
+20080125, -1.39, 0.83, 0.25, 0.010
+20080128, 1.71, 0.04, 0.99, 0.010
+20080129, 0.69, -0.48, 0.99, 0.010
+20080130, -0.59, -0.36, -0.10, 0.010
+20080131, 1.66, 0.84, 0.46, 0.010
+20080201, 1.48, 0.69, 0.06, 0.007
+20080204, -0.99, 0.18, -0.18, 0.007
+20080205, -3.01, 0.44, 0.03, 0.007
+20080206, -0.85, -0.37, 0.51, 0.007
+20080207, 0.82, 0.40, 0.04, 0.007
+20080208, -0.30, -0.09, -0.33, 0.007
+20080211, 0.58, -0.18, -0.59, 0.007
+20080212, 0.61, -0.16, -0.06, 0.007
+20080213, 1.46, 0.71, 0.03, 0.007
+20080214, -1.35, -0.77, 0.14, 0.007
+20080215, -0.02, -0.82, 0.33, 0.007
+20080219, -0.06, 0.28, -0.36, 0.007
+20080220, 0.83, 0.22, -0.01, 0.007
+20080221, -1.28, -0.35, -0.19, 0.007
+20080222, 0.61, -0.87, 0.63, 0.007
+20080225, 1.46, 0.46, -0.06, 0.007
+20080226, 0.72, 0.40, -0.09, 0.007
+20080227, -0.11, -0.04, -0.24, 0.007
+20080228, -0.93, -0.40, -0.48, 0.007
+20080229, -2.64, 0.11, -0.16, 0.007
+20080303, -0.04, -0.23, -0.34, 0.009
+20080304, -0.36, 0.00, -0.05, 0.009
+20080305, 0.56, -0.20, -0.36, 0.009
+20080306, -2.26, -0.41, -0.23, 0.009
+20080307, -0.88, 0.24, 0.58, 0.009
+20080310, -1.72, -0.59, 0.50, 0.009
+20080311, 3.57, 0.21, 0.23, 0.009
+20080312, -0.77, 0.21, -0.82, 0.009
+20080313, 0.65, 1.32, -0.21, 0.009
+20080314, -2.07, -0.20, -0.26, 0.009
+20080317, -1.21, -0.77, 0.51, 0.009
+20080318, 4.09, 0.02, -0.25, 0.009
+20080319, -2.37, -0.01, 0.19, 0.009
+20080320, 2.30, -0.16, 0.74, 0.009
+20080324, 1.71, 1.13, -0.60, 0.009
+20080325, 0.38, 0.44, -0.17, 0.009
+20080326, -0.82, 0.61, -0.49, 0.009
+20080327, -1.13, -0.20, 0.02, 0.009
+20080328, -0.82, -0.44, 0.26, 0.009
+20080331, 0.57, 0.04, 0.59, 0.009
+20080401, 3.37, -0.74, 0.05, 0.008
+20080402, -0.09, 0.47, -0.14, 0.008
+20080403, 0.14, -0.08, -0.06, 0.008
+20080404, 0.16, 0.08, -0.46, 0.008
+20080407, 0.14, -0.45, 0.49, 0.008
+20080408, -0.34, 0.33, -0.05, 0.008
+20080409, -0.96, -0.80, -0.22, 0.008
+20080410, 0.53, 0.69, -0.55, 0.008
+20080411, -2.02, -0.63, 0.54, 0.008
+20080414, -0.38, 0.18, -0.32, 0.008
+20080415, 0.46, 0.29, 0.27, 0.008
+20080416, 2.27, 0.48, 0.15, 0.008
+20080417, -0.10, -0.86, 0.34, 0.008
+20080418, 1.67, 0.12, -0.65, 0.008
+20080421, -0.17, -0.13, -0.55, 0.008
+20080422, -0.97, -1.09, 0.29, 0.008
+20080423, 0.26, 0.19, -1.16, 0.008
+20080424, 0.66, 0.54, 0.37, 0.008
+20080425, 0.68, -0.20, 0.18, 0.008
+20080428, -0.03, 0.55, 0.19, 0.008
+20080429, -0.36, -0.42, 0.33, 0.008
+20080430, -0.30, -0.12, 0.09, 0.008
+20080501, 1.66, 0.06, 0.22, 0.008
+20080502, 0.20, -0.75, 0.02, 0.008
+20080505, -0.41, 0.30, -0.13, 0.008
+20080506, 0.75, -0.03, 0.29, 0.008
+20080507, -1.66, 0.06, -0.18, 0.008
+20080508, 0.37, 0.14, -0.16, 0.008
+20080509, -0.54, 0.65, -0.25, 0.008
+20080512, 1.10, 0.66, -0.34, 0.008
+20080513, 0.09, 0.67, -0.04, 0.008
+20080514, 0.38, -0.43, 0.17, 0.008
+20080515, 1.02, -0.09, -0.30, 0.008
+20080516, 0.10, -0.40, 0.02, 0.008
+20080519, -0.02, -0.28, 0.24, 0.008
+20080520, -0.80, 0.62, -0.17, 0.008
+20080521, -1.56, 0.45, 0.17, 0.008
+20080522, 0.38, 0.29, -0.04, 0.008
+20080523, -1.24, 0.15, -0.37, 0.008
+20080527, 0.72, 0.58, -0.22, 0.008
+20080528, 0.49, -0.06, -0.06, 0.008
+20080529, 0.61, 0.29, -0.25, 0.008
+20080530, 0.29, 0.26, 0.00, 0.008
+20080602, -0.98, 0.15, 0.24, 0.008
+20080603, -0.46, 0.29, 0.02, 0.008
+20080604, 0.02, 0.70, -0.74, 0.008
+20080605, 1.95, 0.32, -0.09, 0.008
+20080606, -2.90, 0.16, -0.03, 0.008
+20080609, -0.03, -0.53, -0.22, 0.008
+20080610, -0.31, 0.00, -0.22, 0.008
+20080611, -1.66, -0.14, -0.15, 0.008
+20080612, 0.31, 0.00, -0.06, 0.008
+20080613, 1.55, 0.26, -0.35, 0.008
+20080616, 0.15, 0.88, -0.18, 0.008
+20080617, -0.55, 0.15, -0.25, 0.008
+20080618, -0.96, 0.20, 0.26, 0.008
+20080619, 0.34, 0.49, -0.58, 0.008
+20080620, -1.79, 0.34, 0.07, 0.008
+20080623, -0.16, -0.61, -0.31, 0.008
+20080624, -0.54, -1.17, 0.28, 0.008
+20080625, 0.64, 0.35, -0.43, 0.008
+20080626, -2.83, 0.56, 0.13, 0.008
+20080627, -0.37, 0.23, -0.42, 0.008
+20080630, -0.07, -1.21, 0.32, 0.008
+20080701, 0.29, -0.44, 0.28, 0.007
+20080702, -2.00, -0.87, 0.12, 0.007
+20080703, -0.15, -0.67, -0.17, 0.007
+20080707, -0.81, 0.12, -1.12, 0.007
+20080708, 1.84, 1.01, 2.35, 0.007
+20080709, -2.06, -0.08, -1.32, 0.007
+20080710, 0.65, -0.02, -1.23, 0.007
+20080711, -0.88, 1.48, -1.11, 0.007
+20080714, -0.93, -0.12, -2.43, 0.007
+20080715, -0.96, 1.16, -1.17, 0.007
+20080716, 2.52, 0.01, 4.76, 0.007
+20080717, 1.13, -0.10, 4.14, 0.007
+20080718, -0.08, -0.80, 1.12, 0.007
+20080721, 0.16, 0.30, -0.56, 0.007
+20080722, 1.37, 0.92, 3.21, 0.007
+20080723, 0.32, 0.05, 1.61, 0.007
+20080724, -2.31, 0.51, -2.88, 0.007
+20080725, 0.47, 0.91, -1.01, 0.007
+20080728, -1.76, 0.03, -1.39, 0.007
+20080729, 2.27, -0.30, 3.18, 0.007
+20080730, 1.58, -1.38, -0.09, 0.007
+20080731, -1.16, 0.61, 0.37, 0.007
+20080801, -0.47, 0.65, 0.85, 0.006
+20080804, -1.09, -0.22, 0.48, 0.006
+20080805, 2.65, -0.57, 1.65, 0.006
+20080806, 0.50, 0.54, -1.15, 0.006
+20080807, -1.73, 0.62, -1.74, 0.006
+20080808, 2.28, 0.58, 1.38, 0.006
+20080811, 0.83, 1.37, 1.19, 0.006
+20080812, -1.05, 1.00, -1.94, 0.006
+20080813, -0.15, 0.75, -2.02, 0.006
+20080814, 0.63, 0.10, 1.30, 0.006
+20080815, 0.38, -0.37, 1.07, 0.006
+20080818, -1.45, 0.28, -0.89, 0.006
+20080819, -1.00, -0.56, -1.24, 0.006
+20080820, 0.54, -0.66, -0.06, 0.006
+20080821, 0.12, -0.90, -0.45, 0.006
+20080822, 1.14, 0.43, 1.03, 0.006
+20080825, -1.92, -0.12, -0.53, 0.006
+20080826, 0.33, -0.20, 0.15, 0.006
+20080827, 0.88, 0.27, 0.30, 0.006
+20080828, 1.51, 0.15, 1.81, 0.006
+20080829, -1.25, 0.24, 0.62, 0.006
+20080902, -0.44, 0.31, 2.02, 0.007
+20080903, -0.23, 0.53, 1.66, 0.007
+20080904, -2.90, 0.20, -0.47, 0.007
+20080905, 0.42, -0.83, 1.58, 0.007
+20080908, 1.76, -0.57, 2.20, 0.007
+20080909, -3.41, 0.59, -0.70, 0.007
+20080910, 0.70, 0.40, -0.77, 0.007
+20080911, 1.22, -0.94, 0.19, 0.007
+20080912, 0.29, -0.17, -0.20, 0.007
+20080915, -4.45, 1.49, -2.25, 0.007
+20080916, 1.65, 0.27, 1.96, 0.007
+20080917, -4.60, 0.60, -2.13, 0.007
+20080918, 4.41, 1.06, 4.84, 0.007
+20080919, 4.27, -1.99, 3.63, 0.007
+20080922, -3.94, 0.34, -3.39, 0.007
+20080923, -1.55, 0.10, 0.14, 0.007
+20080924, -0.32, -1.05, -0.76, 0.007
+20080925, 1.70, -1.16, 0.64, 0.007
+20080926, 0.11, -0.91, 0.93, 0.007
+20080929, -8.26, 3.42, -3.69, 0.007
+20080930, 4.88, -3.69, 2.88, 0.007
+20081001, -0.47, -0.82, 2.77, 0.004
+20081002, -4.20, -0.58, 0.62, 0.004
+20081003, -1.47, -0.81, -1.23, 0.004
+20081006, -3.95, -0.05, 0.43, 0.004
+20081007, -5.76, 1.09, -3.43, 0.004
+20081008, -1.27, -0.21, -2.20, 0.004
+20081009, -7.36, -0.23, -2.54, 0.004
+20081010, -0.95, 3.81, 3.05, 0.004
+20081013, 11.35, -2.42, -2.33, 0.004
+20081014, -0.86, -3.00, 4.43, 0.004
+20081015, -8.78, 0.24, 0.82, 0.004
+20081016, 4.32, 2.17, -1.63, 0.004
+20081017, -0.41, -0.77, -0.79, 0.004
+20081020, 4.55, -1.24, -0.85, 0.004
+20081021, -2.95, 0.05, 0.55, 0.004
+20081022, -5.76, 0.89, 0.14, 0.004
+20081023, 0.29, -3.36, -0.89, 0.004
+20081024, -3.28, -0.08, -0.36, 0.004
+20081027, -3.36, -0.86, 0.35, 0.004
+20081028, 9.77, -3.76, 0.30, 0.004
+20081029, -0.47, 2.83, -1.38, 0.004
+20081030, 2.99, 2.00, -0.63, 0.004
+20081031, 1.88, 2.27, 1.98, 0.004
+20081103, -0.05, 0.14, 0.57, 0.001
+20081104, 3.57, -2.60, 0.20, 0.001
+20081105, -5.05, 0.20, -1.46, 0.001
+20081106, -4.83, 1.56, -0.42, 0.001
+20081107, 2.62, -1.14, -0.78, 0.001
+20081110, -1.32, -0.69, -2.05, 0.001
+20081111, -2.25, 0.16, 0.01, 0.001
+20081112, -5.14, -0.49, -1.09, 0.001
+20081113, 6.79, 0.75, -0.10, 0.001
+20081114, -4.27, -2.23, 0.02, 0.001
+20081117, -2.43, 1.82, -1.63, 0.001
+20081118, 0.70, -1.25, -0.73, 0.001
+20081119, -6.29, -0.02, -3.09, 0.001
+20081120, -6.60, 1.70, -2.51, 0.001
+20081121, 6.11, -1.25, -2.03, 0.001
+20081124, 6.27, -1.34, 4.67, 0.001
+20081125, 0.94, 0.06, 2.29, 0.001
+20081126, 3.88, 1.65, 0.24, 0.001
+20081128, 1.06, -0.66, 1.90, 0.001
+20081201, -8.95, -0.75, -3.53, 0.000
+20081202, 3.97, 0.66, 2.54, 0.000
+20081203, 2.63, -0.22, 1.47, 0.000
+20081204, -2.90, 0.02, 1.25, 0.000
+20081205, 3.75, 0.08, 1.79, 0.000
+20081208, 3.80, -0.38, 0.17, 0.000
+20081209, -2.23, -0.58, -1.23, 0.000
+20081210, 1.20, 1.06, -0.99, 0.000
+20081211, -2.93, -1.16, -2.24, 0.000
+20081212, 0.96, 2.30, 0.59, 0.000
+20081215, -1.54, -1.27, -1.24, 0.000
+20081216, 5.15, -0.19, 2.43, 0.000
+20081217, -0.62, 1.74, -0.52, 0.000
+20081218, -1.83, 0.91, -0.36, 0.000
+20081219, 0.35, 0.72, -0.03, 0.000
+20081222, -1.87, 0.00, -0.76, 0.000
+20081223, -0.89, -0.11, -0.89, 0.000
+20081224, 0.51, -0.33, 0.60, 0.000
+20081226, 0.63, 0.58, 0.07, 0.000
+20081229, -0.56, -1.41, -0.04, 0.000
+20081230, 2.47, 0.57, 0.99, 0.000
+20081231, 1.70, 1.54, 0.76, 0.000
+20090102, 3.11, -1.32, -0.35, 0.000
+20090105, -0.28, 0.65, -1.12, 0.000
+20090106, 0.87, 1.02, 0.88, 0.000
+20090107, -2.96, 0.34, -1.15, 0.000
+20090108, 0.47, 0.73, 0.39, 0.000
+20090109, -2.21, -1.43, -1.12, 0.000
+20090112, -2.28, 0.32, -1.83, 0.000
+20090113, 0.28, 0.42, 0.20, 0.000
+20090114, -3.38, -0.53, -1.25, 0.000
+20090115, 0.39, 2.27, -2.25, 0.000
+20090116, 0.74, 0.46, -1.04, 0.000
+20090120, -5.34, 0.16, -3.95, 0.000
+20090121, 4.21, -1.22, 2.56, 0.000
+20090122, -1.62, -1.00, -1.61, 0.000
+20090123, 0.44, -0.45, 0.84, 0.000
+20090126, 0.54, 0.76, -0.60, 0.000
+20090127, 1.08, -0.42, 0.33, 0.000
+20090128, 3.32, -0.61, 2.66, 0.000
+20090129, -3.23, -0.13, -2.30, 0.000
+20090130, -2.16, 0.19, -1.18, 0.000
+20090202, 0.06, 1.31, -0.53, 0.001
+20090203, 1.46, -0.18, -2.35, 0.001
+20090204, -0.60, -0.22, -0.42, 0.001
+20090205, 1.61, 0.14, -0.23, 0.001
+20090206, 2.79, -0.05, 2.21, 0.001
+20090209, 0.03, -0.94, 0.21, 0.001
+20090210, -4.62, 1.08, -2.79, 0.001
+20090211, 0.75, -0.77, 1.25, 0.001
+20090212, 0.30, 0.33, -0.60, 0.001
+20090213, -0.85, 0.98, -1.45, 0.001
+20090217, -4.36, 1.03, -2.33, 0.001
+20090218, -0.33, -0.91, -0.72, 0.001
+20090219, -1.15, -0.03, -2.00, 0.001
+20090220, -1.16, -0.01, -1.00, 0.001
+20090223, -3.43, -0.48, 0.86, 0.001
+20090224, 4.00, -0.99, 2.95, 0.001
+20090225, -1.15, -1.44, 0.17, 0.001
+20090226, -1.53, -0.46, 1.32, 0.001
+20090227, -2.01, 1.82, -2.15, 0.001
+20090302, -4.75, -0.22, -0.30, 0.001
+20090303, -0.71, -0.67, -2.43, 0.001
+20090304, 2.42, 0.54, -0.99, 0.001
+20090305, -4.21, -0.45, -3.02, 0.001
+20090306, 0.20, 0.41, -0.64, 0.001
+20090309, -1.09, -0.94, 0.33, 0.001
+20090310, 6.35, -0.96, 4.20, 0.001
+20090311, 0.30, -0.56, 0.57, 0.001
+20090312, 4.16, 1.10, 2.61, 0.001
+20090313, 0.73, 0.18, 0.55, 0.001
+20090316, -0.55, -1.03, 0.42, 0.001
+20090317, 3.20, 0.66, 1.44, 0.001
+20090318, 2.18, 0.06, 3.99, 0.001
+20090319, -1.03, 1.01, -2.53, 0.001
+20090320, -1.95, -0.34, -0.80, 0.001
+20090323, 6.89, -0.69, 4.09, 0.001
+20090324, -1.93, -1.13, -1.55, 0.001
+20090325, 0.94, 0.95, 1.30, 0.001
+20090326, 2.68, 1.89, 0.01, 0.001
+20090327, -2.06, -1.35, 0.28, 0.001
+20090330, -3.47, 1.76, -3.86, 0.001
+20090331, 1.29, -0.56, 1.53, 0.001
+20090401, 1.65, -0.50, 1.48, 0.001
+20090402, 3.07, 1.90, 0.50, 0.001
+20090403, 1.02, -0.13, 0.87, 0.001
+20090406, -0.93, -0.66, -0.48, 0.001
+20090407, -2.42, -0.73, -0.20, 0.001
+20090408, 1.28, 1.06, 0.09, 0.001
+20090409, 3.91, 0.32, 4.37, 0.001
+20090413, 0.26, -0.93, 2.28, 0.001
+20090414, -2.02, -0.05, -2.85, 0.001
+20090415, 1.12, -0.16, 2.33, 0.001
+20090416, 1.69, 1.23, 0.12, 0.001
+20090417, 0.55, 0.86, 0.25, 0.001
+20090420, -4.32, 0.07, -4.24, 0.001
+20090421, 2.19, 0.78, 3.09, 0.001
+20090422, -0.61, 1.48, -1.10, 0.001
+20090423, 0.66, -1.81, 0.21, 0.001
+20090424, 1.77, 0.79, 0.20, 0.001
+20090427, -0.95, -0.45, -1.71, 0.001
+20090428, -0.20, 0.92, 0.08, 0.001
+20090429, 2.41, 0.75, 1.18, 0.001
+20090430, -0.04, -0.41, -0.64, 0.001
+20090501, 0.45, -0.48, -0.25, 0.000
+20090504, 3.36, -0.41, 2.95, 0.000
+20090505, -0.27, 0.20, -0.16, 0.000
+20090506, 1.45, -2.10, 2.66, 0.000
+20090507, -1.42, -0.76, -0.81, 0.000
+20090508, 2.48, 0.24, 2.77, 0.000
+20090511, -2.01, 1.24, -2.46, 0.000
+20090512, -0.31, -0.78, -1.64, 0.000
+20090513, -2.91, -1.50, -1.49, 0.000
+20090514, 1.11, 0.50, 0.97, 0.000
+20090515, -1.02, 0.57, -1.12, 0.000
+20090518, 3.13, 0.34, 1.95, 0.000
+20090519, -0.04, 0.20, -1.21, 0.000
+20090520, -0.48, -0.02, -1.10, 0.000
+20090521, -1.68, -0.10, 0.35, 0.000
+20090522, -0.15, -0.34, -0.58, 0.000
+20090526, 2.78, 1.51, 0.63, 0.000
+20090527, -1.80, 0.26, -1.30, 0.000
+20090528, 1.35, -1.37, 0.45, 0.000
+20090529, 1.38, 0.56, -0.21, 0.000
+20090601, 2.72, 1.56, -0.71, 0.000
+20090602, 0.29, 0.85, -0.18, 0.000
+20090603, -1.39, 0.78, -0.84, 0.000
+20090604, 1.18, 0.14, 1.09, 0.000
+20090605, -0.19, 0.13, -0.56, 0.000
+20090608, -0.20, -0.98, 0.61, 0.000
+20090609, 0.49, 0.34, -0.28, 0.000
+20090610, -0.35, -0.33, -0.48, 0.000
+20090611, 0.63, -0.21, 0.26, 0.000
+20090612, 0.03, -0.19, 0.01, 0.000
+20090615, -2.38, -0.30, -0.33, 0.000
+20090616, -1.33, -0.08, -0.28, 0.000
+20090617, -0.08, 0.92, -0.98, 0.000
+20090618, 0.74, -0.63, 0.41, 0.000
+20090619, 0.35, 0.29, 0.11, 0.000
+20090622, -3.08, -0.36, -0.73, 0.000
+20090623, 0.08, -1.10, 0.14, 0.000
+20090624, 0.78, 0.25, -0.15, 0.000
+20090625, 2.19, 0.80, 0.05, 0.000
+20090626, 0.04, 1.58, 0.13, 0.000
+20090629, 0.82, -1.10, 0.36, 0.000
+20090630, -0.74, 0.25, -0.19, 0.000
+20090701, 0.54, 1.50, 0.21, 0.001
+20090702, -2.89, -0.59, -1.03, 0.001
+20090706, -0.03, -0.94, -0.97, 0.001
+20090707, -1.93, 0.03, -0.16, 0.001
+20090708, -0.20, -0.55, -1.11, 0.001
+20090709, 0.35, -0.58, 1.25, 0.001
+20090710, -0.35, 0.94, -0.51, 0.001
+20090713, 2.43, -0.68, 1.81, 0.001
+20090714, 0.59, 0.32, 0.63, 0.001
+20090715, 2.98, 0.56, 1.41, 0.001
+20090716, 0.94, 0.46, -0.12, 0.001
+20090717, -0.05, -0.24, -0.04, 0.001
+20090720, 1.19, 0.33, 0.37, 0.001
+20090721, 0.31, -0.53, -0.81, 0.001
+20090722, 0.08, 0.61, 0.34, 0.001
+20090723, 2.37, 0.60, 1.11, 0.001
+20090724, 0.38, 0.31, 0.14, 0.001
+20090727, 0.30, 0.09, 0.98, 0.001
+20090728, -0.20, 0.30, -0.34, 0.001
+20090729, -0.46, -0.13, -0.83, 0.001
+20090730, 1.24, 0.31, 1.45, 0.001
+20090731, 0.05, -0.16, 1.28, 0.001
+20090803, 1.63, 0.10, 1.68, 0.001
+20090804, 0.32, 0.43, 0.82, 0.001
+20090805, -0.30, -1.11, 1.71, 0.001
+20090806, -0.62, -0.98, 0.05, 0.001
+20090807, 1.44, 0.98, 1.18, 0.001
+20090810, -0.32, 0.47, 0.27, 0.001
+20090811, -1.25, -0.07, -1.14, 0.001
+20090812, 1.21, 0.44, 0.55, 0.001
+20090813, 0.73, -0.30, 1.10, 0.001
+20090814, -0.97, -1.21, -0.28, 0.001
+20090817, -2.46, -0.11, -1.69, 0.001
+20090818, 1.11, 0.47, 1.30, 0.001
+20090819, 0.72, 0.44, -0.39, 0.001
+20090820, 1.00, -0.05, 0.84, 0.001
+20090821, 1.83, 0.36, 0.69, 0.001
+20090824, -0.09, 0.06, -0.28, 0.001
+20090825, 0.27, 0.17, 0.65, 0.001
+20090826, -0.01, 0.14, 0.11, 0.001
+20090827, 0.21, -0.15, 0.53, 0.001
+20090828, -0.19, -0.37, 0.55, 0.001
+20090831, -0.86, -0.47, -0.63, 0.001
+20090901, -2.15, 0.10, -2.03, 0.000
+20090902, -0.28, 0.14, -0.70, 0.000
+20090903, 0.93, 0.03, 1.09, 0.000
+20090904, 1.31, 0.26, 0.27, 0.000
+20090908, 0.88, 0.19, 0.10, 0.000
+20090909, 0.90, 0.79, 0.67, 0.000
+20090910, 1.08, 0.46, 0.92, 0.000
+20090911, -0.10, 0.13, -0.10, 0.000
+20090914, 0.65, 0.09, 0.64, 0.000
+20090915, 0.44, 0.58, 0.60, 0.000
+20090916, 1.55, 0.41, 1.30, 0.000
+20090917, -0.30, -0.07, -0.34, 0.000
+20090918, 0.23, 0.11, -0.19, 0.000
+20090921, -0.27, -0.17, -0.67, 0.000
+20090922, 0.66, -0.09, 1.50, 0.000
+20090923, -1.00, 0.15, -0.89, 0.000
+20090924, -1.07, -0.66, -1.34, 0.000
+20090925, -0.64, 0.19, -0.51, 0.000
+20090928, 1.79, 0.36, 1.04, 0.000
+20090929, -0.12, -0.06, 0.36, 0.000
+20090930, -0.40, -0.55, -0.63, 0.000
+20091001, -2.63, -0.60, -1.37, 0.000
+20091002, -0.49, -0.31, -0.14, 0.000
+20091005, 1.54, 0.08, 1.83, 0.000
+20091006, 1.42, 0.53, 0.24, 0.000
+20091007, 0.28, -0.37, 0.56, 0.000
+20091008, 0.82, 0.30, 0.34, 0.000
+20091009, 0.59, 0.60, -0.22, 0.000
+20091012, 0.36, -0.52, 0.33, 0.000
+20091013, -0.22, 0.12, -0.18, 0.000
+20091014, 1.73, 0.05, 1.12, 0.000
+20091015, 0.35, -0.23, -0.44, 0.000
+20091016, -0.82, -0.01, -1.27, 0.000
+20091019, 0.92, 0.08, 0.03, 0.000
+20091020, -0.69, -0.70, -0.48, 0.000
+20091021, -0.90, -0.09, -0.54, 0.000
+20091022, 1.05, 0.04, 0.66, 0.000
+20091023, -1.23, -0.81, -1.02, 0.000
+20091026, -1.20, 0.02, -1.35, 0.000
+20091027, -0.51, -0.62, -0.61, 0.000
+20091028, -2.16, -1.49, -1.39, 0.000
+20091029, 2.20, -0.25, 1.64, 0.000
+20091030, -2.80, -0.07, -1.87, 0.000
+20091102, 0.54, -0.79, -0.32, 0.000
+20091103, 0.45, 1.04, 0.75, 0.000
+20091104, 0.03, -1.06, -0.51, 0.000
+20091105, 2.07, 1.14, 0.63, 0.000
+20091106, 0.24, -0.23, -0.45, 0.000
+20091109, 2.17, -0.43, 1.35, 0.000
+20091110, -0.05, -0.80, -0.08, 0.000
+20091111, 0.52, 0.31, 0.31, 0.000
+20091112, -1.12, -0.89, -0.76, 0.000
+20091113, 0.61, 0.36, -0.04, 0.000
+20091116, 1.54, 1.30, 0.20, 0.000
+20091117, 0.14, -0.21, -0.04, 0.000
+20091118, -0.13, -0.49, 0.44, 0.000
+20091119, -1.39, -0.79, -0.60, 0.000
+20091120, -0.33, 0.20, -0.47, 0.000
+20091123, 1.30, 0.39, -0.09, 0.000
+20091124, -0.09, -0.13, -0.43, 0.000
+20091125, 0.47, -0.42, 0.12, 0.000
+20091127, -1.74, -0.55, -0.78, 0.000
+20091130, 0.28, -0.39, 0.74, 0.000
+20091201, 1.28, 0.63, -0.28, 0.000
+20091202, 0.18, 1.02, -0.30, 0.000
+20091203, -0.86, -0.27, -0.33, 0.000
+20091204, 0.70, 1.53, 0.74, 0.000
+20091207, -0.15, 0.51, -0.26, 0.000
+20091208, -0.97, 0.06, -0.14, 0.000
+20091209, 0.32, -0.19, 0.01, 0.000
+20091210, 0.50, -0.96, -0.10, 0.000
+20091211, 0.43, 0.28, 0.46, 0.000
+20091214, 0.80, 0.63, 0.34, 0.000
+20091215, -0.48, 0.31, -0.59, 0.000
+20091216, 0.19, 0.45, 0.73, 0.000
+20091217, -1.18, 0.25, -0.32, 0.000
+20091218, 0.68, 0.22, 0.24, 0.000
+20091221, 1.03, 0.15, 0.32, 0.000
+20091222, 0.43, 0.58, -0.11, 0.000
+20091223, 0.36, 0.92, -0.39, 0.000
+20091224, 0.51, -0.08, 0.20, 0.000
+20091228, 0.08, -0.12, -0.28, 0.000
+20091229, -0.09, 0.11, -0.08, 0.000
+20091230, 0.00, -0.06, -0.09, 0.000
+20091231, -0.99, -0.20, 0.33, 0.000
+20100104, 1.69, 0.58, 1.11, 0.000
+20100105, 0.31, -0.59, 1.21, 0.000
+20100106, 0.13, -0.24, 0.51, 0.000
+20100107, 0.40, 0.09, 0.94, 0.000
+20100108, 0.33, 0.40, 0.01, 0.000
+20100111, 0.13, -0.13, -0.21, 0.000
+20100112, -1.00, -0.19, -1.31, 0.000
+20100113, 0.85, 0.27, 0.34, 0.000
+20100114, 0.24, 0.28, 0.05, 0.000
+20100115, -1.12, -0.13, -0.39, 0.000
+20100119, 1.26, 0.42, -0.16, 0.000
+20100120, -0.98, -0.59, 0.25, 0.000
+20100121, -1.74, 0.41, -1.14, 0.000
+20100122, -2.14, 0.55, -0.81, 0.000
+20100125, 0.37, -0.20, 0.33, 0.000
+20100126, -0.45, -0.09, -0.46, 0.000
+20100127, 0.53, 0.23, 0.16, 0.000
+20100128, -1.18, -0.67, 0.47, 0.000
+20100129, -0.97, -0.04, -0.45, 0.000
+20100201, 1.39, -0.20, 0.91, 0.000
+20100202, 1.21, -0.42, 0.66, 0.000
+20100203, -0.49, 0.10, -0.39, 0.000
+20100204, -3.14, -0.15, -1.19, 0.000
+20100205, 0.29, -0.06, -0.07, 0.000
+20100208, -0.79, 0.05, -0.35, 0.000
+20100209, 1.33, 0.32, 0.59, 0.000
+20100210, -0.17, 0.25, 0.29, 0.000
+20100211, 1.13, 0.72, 0.07, 0.000
+20100212, -0.07, 0.97, 0.15, 0.000
+20100216, 1.75, -0.29, 1.02, 0.000
+20100217, 0.49, 0.11, 0.12, 0.000
+20100218, 0.62, 0.11, 0.00, 0.000
+20100219, 0.28, 0.05, 0.48, 0.000
+20100222, -0.05, -0.04, 0.57, 0.000
+20100223, -1.24, 0.27, -0.94, 0.000
+20100224, 0.94, -0.35, 0.53, 0.000
+20100225, -0.13, 0.24, 0.28, 0.000
+20100226, 0.13, -0.55, 0.39, 0.000
+20100301, 1.20, 1.22, 0.07, 0.000
+20100302, 0.32, 0.61, 0.19, 0.000
+20100303, 0.09, 0.17, 0.09, 0.000
+20100304, 0.37, 0.09, 0.23, 0.000
+20100305, 1.43, 0.40, 0.61, 0.000
+20100308, 0.02, 0.09, 0.26, 0.000
+20100309, 0.21, 0.24, -0.10, 0.000
+20100310, 0.53, 0.05, 0.68, 0.000
+20100311, 0.43, -0.09, -0.11, 0.000
+20100312, -0.02, 0.03, -0.28, 0.000
+20100315, -0.02, -0.31, -0.48, 0.000
+20100316, 0.78, -0.14, 0.59, 0.000
+20100317, 0.57, 0.05, 0.36, 0.000
+20100318, -0.10, -0.17, -0.57, 0.000
+20100319, -0.62, -0.60, -0.63, 0.000
+20100322, 0.67, 0.89, 0.01, 0.000
+20100323, 0.80, 0.34, 0.36, 0.000
+20100324, -0.60, -0.64, 0.82, 0.000
+20100325, -0.26, -0.48, -0.28, 0.000
+20100326, 0.06, -0.08, 0.31, 0.000
+20100329, 0.59, -0.07, 0.19, 0.000
+20100330, 0.04, 0.29, -0.45, 0.000
+20100331, -0.36, -0.50, 0.16, 0.000
+20100401, 0.75, 0.00, 0.79, 0.001
+20100405, 0.95, 1.07, 0.92, 0.001
+20100406, 0.19, 0.24, 0.46, 0.001
+20100407, -0.48, 0.21, 0.24, 0.001
+20100408, 0.31, -0.28, 0.39, 0.001
+20100409, 0.66, -0.12, 0.17, 0.001
+20100412, 0.23, 0.27, 0.07, 0.001
+20100413, 0.07, 0.16, -0.05, 0.001
+20100414, 1.24, 0.87, 1.41, 0.001
+20100415, 0.11, 0.59, -0.04, 0.001
+20100416, -1.53, 0.80, -1.83, 0.001
+20100419, 0.28, -0.85, -0.08, 0.001
+20100420, 0.88, 0.66, 0.56, 0.001
+20100421, -0.06, 0.70, 0.20, 0.001
+20100422, 0.37, 0.81, 0.49, 0.001
+20100423, 0.70, 0.36, 0.58, 0.001
+20100426, -0.43, 0.45, -0.32, 0.001
+20100427, -2.34, 0.11, -1.41, 0.001
+20100428, 0.56, -0.75, 0.73, 0.001
+20100429, 1.34, 0.46, 0.45, 0.001
+20100430, -1.72, -0.97, -0.92, 0.001
+20100503, 1.36, 0.64, 0.61, 0.001
+20100504, -2.50, -0.58, -0.90, 0.001
+20100505, -0.75, -0.73, -0.62, 0.001
+20100506, -3.27, -0.27, -0.90, 0.001
+20100507, -1.75, -1.35, -0.48, 0.001
+20100510, 4.47, 0.96, 1.16, 0.001
+20100511, -0.17, 1.16, -0.15, 0.001
+20100512, 1.63, 1.48, 0.19, 0.001
+20100513, -1.12, 0.31, -0.31, 0.001
+20100514, -1.92, -0.27, -0.77, 0.001
+20100517, 0.11, 0.04, -0.56, 0.001
+20100518, -1.41, -0.24, -0.96, 0.001
+20100519, -0.63, -0.97, 0.03, 0.001
+20100520, -3.99, -0.89, -1.15, 0.001
+20100521, 1.44, -0.44, 1.59, 0.001
+20100524, -1.19, 0.33, -0.92, 0.001
+20100525, -0.03, -0.47, 0.54, 0.001
+20100526, -0.35, 0.83, 0.38, 0.001
+20100527, 3.45, 0.67, 1.61, 0.001
+20100528, -1.18, 0.05, -0.64, 0.001
+20100601, -1.89, -1.09, -1.57, 0.001
+20100602, 2.63, 0.19, 0.43, 0.001
+20100603, 0.54, 0.70, -0.29, 0.001
+20100604, -3.62, -1.22, -0.70, 0.001
+20100607, -1.52, -1.08, -1.06, 0.001
+20100608, 0.90, -1.47, 0.17, 0.001
+20100609, -0.46, 0.74, -0.18, 0.001
+20100610, 2.95, 0.40, 0.90, 0.001
+20100611, 0.62, 0.93, 0.06, 0.001
+20100614, -0.06, 0.66, 0.01, 0.001
+20100615, 2.36, 0.08, 0.91, 0.001
+20100616, -0.11, -0.21, -0.32, 0.001
+20100617, 0.08, -0.16, -0.45, 0.001
+20100618, 0.13, 0.00, 0.24, 0.001
+20100621, -0.47, -0.54, 0.00, 0.001
+20100622, -1.63, -0.34, -0.75, 0.001
+20100623, -0.29, -0.05, 0.23, 0.001
+20100624, -1.65, 0.10, -0.89, 0.001
+20100625, 0.48, 1.05, 1.03, 0.001
+20100628, -0.23, -0.02, -0.71, 0.001
+20100629, -3.23, -0.66, -1.27, 0.001
+20100630, -0.98, 0.04, -0.36, 0.001
+20100701, -0.40, -0.31, -0.43, 0.001
+20100702, -0.50, -0.30, -0.43, 0.001
+20100706, 0.33, -2.00, 0.08, 0.001
+20100707, 3.17, 0.06, 0.45, 0.001
+20100708, 1.00, 0.57, 0.00, 0.001
+20100709, 0.81, 0.65, 0.58, 0.001
+20100712, -0.11, -1.19, 0.05, 0.001
+20100713, 1.76, 1.62, 0.65, 0.001
+20100714, -0.04, -0.16, -0.76, 0.001
+20100715, 0.02, -0.87, -0.10, 0.001
+20100716, -2.94, -0.56, -0.96, 0.001
+20100719, 0.54, -0.15, -0.19, 0.001
+20100720, 1.23, 0.65, 0.14, 0.001
+20100721, -1.30, -0.39, -0.41, 0.001
+20100722, 2.37, 1.25, 0.54, 0.001
+20100723, 1.05, 1.47, -0.23, 0.001
+20100726, 1.23, 0.87, 0.12, 0.001
+20100727, -0.23, -0.33, 0.35, 0.001
+20100728, -0.82, -0.90, -0.03, 0.001
+20100729, -0.36, 0.32, 0.66, 0.001
+20100730, 0.06, 0.03, -0.22, 0.001
+20100802, 2.08, -0.54, 0.15, 0.001
+20100803, -0.55, -0.41, -0.50, 0.001
+20100804, 0.74, 0.43, -0.09, 0.001
+20100805, -0.22, -0.82, 0.13, 0.001
+20100806, -0.36, -0.17, -0.35, 0.001
+20100809, 0.62, 0.62, 0.05, 0.001
+20100810, -0.79, -1.23, -0.21, 0.001
+20100811, -2.91, -1.07, -0.65, 0.001
+20100812, -0.50, -0.07, -0.04, 0.001
+20100813, -0.47, -0.80, 0.24, 0.001
+20100816, 0.10, 0.93, -0.20, 0.001
+20100817, 1.31, 0.59, -0.19, 0.001
+20100818, 0.21, 0.06, 0.07, 0.001
+20100819, -1.74, -0.82, -0.41, 0.001
+20100820, -0.28, 0.27, -0.23, 0.001
+20100823, -0.50, -0.94, -0.44, 0.001
+20100824, -1.48, 0.14, 0.14, 0.001
+20100825, 0.45, 1.04, 0.00, 0.001
+20100826, -0.76, -0.08, -0.26, 0.001
+20100827, 1.82, 0.93, 0.36, 0.001
+20100830, -1.54, -0.83, -0.40, 0.001
+20100831, 0.01, -0.26, 0.77, 0.001
+20100901, 3.05, 0.62, 0.47, 0.001
+20100902, 0.97, 0.26, -0.31, 0.001
+20100903, 1.35, 0.35, 0.20, 0.001
+20100907, -1.23, -0.79, -0.74, 0.001
+20100908, 0.65, 0.02, 0.17, 0.001
+20100909, 0.44, -0.48, 0.55, 0.001
+20100910, 0.45, -0.09, -0.13, 0.001
+20100913, 1.30, 1.13, 0.20, 0.001
+20100914, -0.06, -0.23, -0.53, 0.001
+20100915, 0.36, 0.11, -0.23, 0.001
+20100916, -0.07, -0.51, -0.69, 0.001
+20100917, 0.15, 0.61, -0.59, 0.001
+20100920, 1.60, 1.13, 0.22, 0.001
+20100921, -0.31, -0.28, -0.32, 0.001
+20100922, -0.52, -0.56, -0.53, 0.001
+20100923, -0.78, -0.07, -0.68, 0.001
+20100924, 2.19, 0.98, 0.48, 0.001
+20100927, -0.46, 0.21, -0.45, 0.001
+20100928, 0.58, 0.53, 0.10, 0.001
+20100929, -0.17, 0.66, -0.25, 0.001
+20100930, -0.26, 0.04, 0.30, 0.001
+20101001, 0.43, -0.06, 0.21, 0.001
+20101004, -0.88, -0.72, -0.07, 0.001
+20101005, 2.11, 0.77, 0.14, 0.001
+20101006, -0.10, -0.39, 0.47, 0.001
+20101007, -0.16, 0.05, -0.29, 0.001
+20101008, 0.74, 0.96, -0.13, 0.001
+20101011, 0.04, 0.02, -0.22, 0.001
+20101012, 0.39, -0.04, 0.19, 0.001
+20101013, 0.78, 0.87, -0.36, 0.001
+20101014, -0.38, 0.41, -0.41, 0.001
+20101015, 0.18, -0.06, -1.28, 0.001
+20101018, 0.69, 0.05, 0.85, 0.001
+20101019, -1.67, -0.69, 0.26, 0.001
+20101020, 1.06, 0.07, 0.09, 0.001
+20101021, 0.11, -0.53, -0.51, 0.001
+20101022, 0.29, 0.46, -0.44, 0.001
+20101025, 0.31, 0.47, -0.52, 0.001
+20101026, 0.02, 0.01, -0.18, 0.001
+20101027, -0.24, -0.19, -0.22, 0.001
+20101028, 0.08, -0.60, -0.07, 0.001
+20101029, 0.07, 0.32, -0.11, 0.001
+20101101, -0.01, -0.65, -0.20, 0.001
+20101102, 0.90, 1.34, -0.17, 0.001
+20101103, 0.38, -0.06, 0.17, 0.001
+20101104, 1.94, 0.47, 1.04, 0.001
+20101105, 0.41, -0.09, 0.68, 0.001
+20101108, -0.12, 0.45, -0.48, 0.001
+20101109, -0.78, -0.41, -0.49, 0.001
+20101110, 0.53, 0.58, 0.55, 0.001
+20101111, -0.35, -0.06, -0.08, 0.001
+20101112, -1.29, -0.49, -0.07, 0.001
+20101115, -0.09, 0.20, 0.32, 0.001
+20101116, -1.58, -0.34, -0.15, 0.001
+20101117, 0.07, 0.34, -0.29, 0.001
+20101118, 1.57, 0.31, -0.30, 0.001
+20101119, 0.31, 0.21, -0.18, 0.001
+20101122, -0.02, 0.60, -0.94, 0.001
+20101123, -1.38, 0.48, -0.28, 0.001
+20101124, 1.59, 0.66, 0.03, 0.001
+20101126, -0.67, 0.30, -0.35, 0.001
+20101129, -0.13, 0.01, 0.42, 0.001
+20101130, -0.59, -0.21, -0.02, 0.001
+20101201, 2.12, -0.10, 0.01, 0.001
+20101202, 1.23, -0.31, 0.66, 0.001
+20101203, 0.35, 0.39, 0.05, 0.001
+20101206, -0.03, 0.75, -0.06, 0.001
+20101207, 0.10, 0.36, 0.00, 0.001
+20101208, 0.32, -0.51, 0.62, 0.001
+20101209, 0.42, -0.01, 0.65, 0.001
+20101210, 0.67, 0.43, 0.24, 0.001
+20101213, -0.08, -0.58, 0.08, 0.001
+20101214, 0.09, -0.04, -0.11, 0.001
+20101215, -0.49, 0.20, -0.55, 0.001
+20101216, 0.70, 0.43, -0.11, 0.001
+20101217, 0.15, 0.15, -0.14, 0.001
+20101220, 0.23, 0.01, 0.34, 0.001
+20101221, 0.68, 0.35, 0.74, 0.001
+20101222, 0.29, -0.38, 0.82, 0.001
+20101223, -0.16, 0.07, -0.32, 0.001
+20101227, 0.08, 0.22, 0.44, 0.001
+20101228, 0.00, -0.43, 0.18, 0.001
+20101229, 0.17, 0.11, -0.16, 0.001
+20101230, -0.11, 0.14, -0.03, 0.001
+20101231, -0.10, -0.64, 0.23, 0.001
+20110103, 1.18, 0.53, 0.79, 0.000
+20110104, -0.26, -1.38, 0.11, 0.000
+20110105, 0.59, 0.61, 0.14, 0.000
+20110106, -0.15, -0.06, -0.33, 0.000
+20110107, -0.21, -0.25, -0.30, 0.000
+20110110, -0.02, 0.55, -0.16, 0.000
+20110111, 0.39, 0.12, 0.22, 0.000
+20110112, 0.87, -0.05, 0.25, 0.000
+20110113, -0.17, 0.13, -0.39, 0.000
+20110114, 0.69, 0.02, 0.49, 0.000
+20110118, 0.18, 0.07, -0.41, 0.000
+20110119, -1.24, -1.37, -0.54, 0.000
+20110120, -0.30, -1.04, 0.76, 0.000
+20110121, 0.11, -0.89, 0.56, 0.000
+20110124, 0.65, 0.31, -0.23, 0.000
+20110125, 0.02, -0.02, 0.10, 0.000
+20110126, 0.60, 1.38, -0.22, 0.000
+20110127, 0.26, -0.09, 0.29, 0.000
+20110128, -1.88, -0.88, -0.03, 0.000
+20110131, 0.71, -0.01, -0.27, 0.000
+20110201, 1.75, 0.51, 0.53, 0.001
+20110202, -0.26, -0.08, -0.39, 0.001
+20110203, 0.26, -0.06, -0.10, 0.001
+20110204, 0.29, 0.09, -0.57, 0.001
+20110207, 0.70, 0.27, 0.59, 0.001
+20110208, 0.48, 0.23, 0.00, 0.001
+20110209, -0.31, -0.20, -0.09, 0.001
+20110210, 0.12, 0.35, -0.30, 0.001
+20110211, 0.67, 0.42, 0.51, 0.001
+20110214, 0.30, 0.21, -0.15, 0.001
+20110215, -0.38, -0.37, 0.30, 0.001
+20110216, 0.68, 0.38, 0.26, 0.001
+20110217, 0.37, 0.38, 0.21, 0.001
+20110218, 0.12, -0.14, -0.03, 0.001
+20110222, -2.19, -0.52, -0.35, 0.001
+20110223, -0.78, -1.17, 0.40, 0.001
+20110224, 0.04, 0.72, -0.32, 0.001
+20110225, 1.22, 1.01, 0.22, 0.001
+20110228, 0.42, -0.45, 0.26, 0.001
+20110301, -1.58, -0.30, -0.06, 0.000
+20110302, 0.28, 0.33, -0.23, 0.000
+20110303, 1.76, 0.45, -0.04, 0.000
+20110304, -0.67, 0.30, -0.53, 0.000
+20110307, -0.96, -0.73, 0.12, 0.000
+20110308, 0.97, 0.46, 0.67, 0.000
+20110309, -0.17, -0.26, 0.33, 0.000
+20110310, -1.93, -0.74, -0.31, 0.000
+20110311, 0.69, -0.34, 0.14, 0.000
+20110314, -0.59, 0.10, -0.40, 0.000
+20110315, -1.05, 0.27, -0.14, 0.000
+20110316, -1.77, 0.63, -0.07, 0.000
+20110317, 1.12, -0.81, 0.58, 0.000
+20110318, 0.49, 0.57, 0.22, 0.000
+20110321, 1.58, 0.96, -0.26, 0.000
+20110322, -0.34, -0.09, -0.05, 0.000
+20110323, 0.31, 0.15, -0.40, 0.000
+20110324, 0.96, -0.11, -0.42, 0.000
+20110325, 0.41, 0.43, -0.04, 0.000
+20110328, -0.35, 0.05, -0.18, 0.000
+20110329, 0.74, 0.26, -0.19, 0.000
+20110330, 0.79, 0.43, 0.07, 0.000
+20110331, -0.11, 0.59, -0.30, 0.000
+20110401, 0.52, -0.10, 0.24, 0.000
+20110404, 0.09, 0.25, -0.11, 0.000
+20110405, 0.08, 0.47, -0.20, 0.000
+20110406, 0.21, -0.20, 0.60, 0.000
+20110407, -0.20, -0.22, -0.16, 0.000
+20110408, -0.47, -0.56, -0.27, 0.000
+20110411, -0.39, -0.65, -0.11, 0.000
+20110412, -0.84, -0.66, 0.03, 0.000
+20110413, 0.11, 0.15, -0.69, 0.000
+20110414, 0.00, 0.37, -0.35, 0.000
+20110415, 0.44, 0.59, -0.06, 0.000
+20110418, -1.15, -0.39, -0.34, 0.000
+20110419, 0.50, -0.35, -0.15, 0.000
+20110420, 1.45, 0.61, -0.61, 0.000
+20110421, 0.56, 0.32, -0.06, 0.000
+20110425, -0.16, -0.06, -0.03, 0.000
+20110426, 0.89, 0.15, -0.03, 0.000
+20110427, 0.66, -0.09, -0.23, 0.000
+20110428, 0.32, -0.13, 0.12, 0.000
+20110429, 0.29, 0.20, -0.05, 0.000
+20110502, -0.28, -0.90, -0.14, 0.000
+20110503, -0.50, -1.01, 0.44, 0.000
+20110504, -0.74, -0.55, -0.15, 0.000
+20110505, -0.82, 0.51, -0.33, 0.000
+20110506, 0.46, 0.04, -0.17, 0.000
+20110509, 0.55, 0.67, -0.43, 0.000
+20110510, 0.86, 0.66, 0.24, 0.000
+20110511, -1.09, -0.62, -0.44, 0.000
+20110512, 0.52, 0.36, -0.44, 0.000
+20110513, -0.88, -0.46, -0.32, 0.000
+20110516, -0.76, -1.00, 0.45, 0.000
+20110517, -0.11, -0.48, 0.11, 0.000
+20110518, 1.02, 0.68, -0.30, 0.000
+20110519, 0.22, -0.03, -0.12, 0.000
+20110520, -0.73, 0.08, -0.21, 0.000
+20110523, -1.29, -0.53, 0.01, 0.000
+20110524, -0.14, -0.29, 0.00, 0.000
+20110525, 0.45, 1.02, -0.36, 0.000
+20110526, 0.52, 0.66, -0.15, 0.000
+20110527, 0.49, 0.18, 0.23, 0.000
+20110531, 1.04, 0.43, -0.06, 0.000
+20110601, -2.33, -0.74, -0.25, 0.000
+20110602, -0.10, -0.02, 0.14, 0.000
+20110603, -1.10, -0.55, 0.18, 0.000
+20110606, -1.18, -0.26, -0.32, 0.000
+20110607, -0.04, 0.31, -0.12, 0.000
+20110608, -0.54, -0.73, 0.04, 0.000
+20110609, 0.75, -0.07, 0.02, 0.000
+20110610, -1.37, -0.24, 0.44, 0.000
+20110613, 0.01, -0.55, 0.36, 0.000
+20110614, 1.36, 1.05, -0.40, 0.000
+20110615, -1.72, -0.01, -0.15, 0.000
+20110616, 0.12, -0.08, 0.43, 0.000
+20110617, 0.25, -0.39, 0.65, 0.000
+20110620, 0.58, 0.38, -0.08, 0.000
+20110621, 1.52, 0.95, -0.39, 0.000
+20110622, -0.62, -0.09, 0.07, 0.000
+20110623, -0.14, 0.64, -0.83, 0.000
+20110624, -1.10, 0.45, 0.13, 0.000
+20110627, 0.89, 0.04, -0.05, 0.000
+20110628, 1.36, 0.42, -0.52, 0.000
+20110629, 0.77, -0.69, 0.66, 0.000
+20110630, 0.99, 0.17, -0.25, 0.000
+20110701, 1.45, -0.03, 0.14, 0.000
+20110705, -0.08, 0.21, -0.84, 0.000
+20110706, 0.18, 0.42, -0.56, 0.000
+20110707, 1.10, 0.49, 0.09, 0.000
+20110708, -0.67, 0.00, -0.42, 0.000
+20110711, -1.91, -0.18, -0.23, 0.000
+20110712, -0.45, 0.05, 0.45, 0.000
+20110713, 0.45, 0.57, -0.12, 0.000
+20110714, -0.82, -0.81, 0.13, 0.000
+20110715, 0.58, 0.11, -0.53, 0.000
+20110718, -0.94, -0.59, -0.38, 0.000
+20110719, 1.72, 0.56, -0.67, 0.000
+20110720, -0.10, -0.30, 0.72, 0.000
+20110721, 1.29, -0.36, 1.06, 0.000
+20110722, 0.10, -0.11, -0.75, 0.000
+20110725, -0.68, -0.57, 0.09, 0.000
+20110726, -0.47, -0.37, 0.14, 0.000
+20110727, -2.16, -0.80, 0.43, 0.000
+20110728, -0.31, 0.14, -0.12, 0.000
+20110729, -0.56, 0.23, 0.12, 0.000
+20110801, -0.40, -0.18, 0.21, 0.000
+20110802, -2.68, -0.49, 0.15, 0.000
+20110803, 0.58, 0.27, -0.33, 0.000
+20110804, -5.04, -0.83, 0.33, 0.000
+20110805, -0.36, -1.23, -0.46, 0.000
+20110808, -6.97, -1.45, -1.55, 0.000
+20110809, 4.97, 0.94, 0.64, 0.000
+20110810, -4.30, -0.55, -1.49, 0.000
+20110811, 4.72, 0.32, 0.59, 0.000
+20110812, 0.54, -0.19, -1.48, 0.000
+20110815, 2.25, 0.44, 0.98, 0.000
+20110816, -1.07, -0.79, -0.10, 0.000
+20110817, -0.01, -0.33, 0.70, 0.000
+20110818, -4.65, -1.03, 0.59, 0.000
+20110819, -1.55, 0.15, -0.37, 0.000
+20110822, -0.03, 0.08, -0.81, 0.000
+20110823, 3.60, 1.24, -0.82, 0.000
+20110824, 1.35, -0.15, 0.95, 0.000
+20110825, -1.67, -0.99, 0.54, 0.000
+20110826, 1.74, 0.91, -1.07, 0.000
+20110829, 3.11, 1.56, 0.82, 0.000
+20110830, 0.32, 0.27, -0.78, 0.000
+20110831, 0.42, -0.73, 0.26, 0.000
+20110901, -1.33, -1.10, -0.76, 0.000
+20110902, -2.64, -0.81, -0.66, 0.000
+20110906, -0.71, 0.50, -0.63, 0.000
+20110907, 3.06, 0.94, 0.92, 0.000
+20110908, -1.18, -0.76, -0.55, 0.000
+20110909, -2.65, -0.18, 0.04, 0.000
+20110912, 0.68, 0.00, 0.30, 0.000
+20110913, 1.12, 0.76, -0.40, 0.000
+20110914, 1.45, 0.44, -0.40, 0.000
+20110915, 1.64, -0.55, 0.54, 0.000
+20110916, 0.47, -0.39, -0.35, 0.000
+20110919, -0.99, -0.54, -1.23, 0.000
+20110920, -0.45, -1.49, 0.25, 0.000
+20110921, -2.92, -0.37, -1.22, 0.000
+20110922, -3.29, 0.11, 0.48, 0.000
+20110923, 0.74, 0.65, -0.01, 0.000
+20110926, 2.28, -0.64, 1.23, 0.000
+20110927, 1.22, 1.08, -0.56, 0.000
+20110928, -2.29, -1.66, -0.17, 0.000
+20110929, 0.77, 0.59, 2.03, 0.000
+20110930, -2.50, -0.16, -0.09, 0.000
+20111003, -3.18, -1.92, -0.63, 0.000
+20111004, 2.68, 3.60, 0.37, 0.000
+20111005, 1.92, -0.19, -0.45, 0.000
+20111006, 1.94, 0.25, 0.51, 0.000
+20111007, -0.98, -1.28, -1.35, 0.000
+20111010, 3.44, 0.47, 0.59, 0.000
+20111011, 0.15, 0.69, -0.17, 0.000
+20111012, 1.07, 0.49, 0.90, 0.000
+20111013, -0.21, 0.25, -1.22, 0.000
+20111014, 1.72, 0.14, -0.36, 0.000
+20111017, -2.06, -1.29, -0.46, 0.000
+20111018, 2.11, 0.63, 1.51, 0.000
+20111019, -1.38, -0.77, 0.37, 0.000
+20111020, 0.43, -0.30, 0.70, 0.000
+20111021, 1.92, 0.15, 0.01, 0.000
+20111024, 1.59, 1.76, -0.38, 0.000
+20111025, -2.13, -0.89, -0.34, 0.000
+20111026, 1.12, 0.71, 0.78, 0.000
+20111027, 3.54, 1.41, 0.83, 0.000
+20111028, -0.01, -0.55, -0.47, 0.000
+20111031, -2.50, 0.05, -0.79, 0.000
+20111101, -2.86, -0.54, -1.07, 0.000
+20111102, 1.72, 0.77, 0.99, 0.000
+20111103, 1.97, 0.59, -0.13, 0.000
+20111104, -0.53, 0.03, -0.59, 0.000
+20111107, 0.48, -0.71, 0.39, 0.000
+20111108, 1.21, 0.00, 0.47, 0.000
+20111109, -3.78, -0.81, -0.64, 0.000
+20111110, 0.83, 0.05, 0.58, 0.000
+20111111, 1.98, 0.48, -0.22, 0.000
+20111114, -0.92, -0.47, -0.80, 0.000
+20111115, 0.56, 0.88, -0.26, 0.000
+20111116, -1.64, -0.17, -0.18, 0.000
+20111117, -1.65, 0.18, 0.21, 0.000
+20111118, -0.07, 0.07, 0.91, 0.000
+20111121, -1.87, -0.49, -0.07, 0.000
+20111122, -0.44, -0.26, -0.56, 0.000
+20111123, -2.29, -0.70, -0.28, 0.000
+20111125, -0.34, -1.00, 0.47, 0.000
+20111128, 3.10, 1.63, -0.70, 0.000
+20111129, 0.18, -0.49, 0.17, 0.000
+20111130, 4.44, 1.05, 1.08, 0.000
+20111201, -0.22, -0.51, -0.64, 0.000
+20111202, 0.05, 0.44, 0.64, 0.000
+20111205, 1.09, 0.28, 0.30, 0.000
+20111206, 0.04, -0.08, 0.08, 0.000
+20111207, 0.16, -0.31, 0.74, 0.000
+20111208, -2.23, -0.75, -0.99, 0.000
+20111209, 1.83, 1.32, 0.06, 0.000
+20111212, -1.48, 0.04, -0.43, 0.000
+20111213, -1.05, -1.04, 0.12, 0.000
+20111214, -1.21, -0.26, 0.92, 0.000
+20111215, 0.40, 0.66, 0.13, 0.000
+20111216, 0.45, 0.23, -0.11, 0.000
+20111219, -1.31, -0.43, -0.69, 0.000
+20111220, 3.10, 0.80, 0.30, 0.000
+20111221, 0.20, -0.03, 1.31, 0.000
+20111222, 0.83, -0.21, 0.69, 0.000
+20111223, 0.84, -0.58, -0.16, 0.000
+20111227, 0.04, 0.47, -0.52, 0.000
+20111228, -1.34, -0.73, -0.03, 0.000
+20111229, 1.10, 0.19, 0.24, 0.000
+20111230, -0.40, -0.07, -0.14, 0.000
+20120103, 1.50, -0.15, 0.86, 0.000
+20120104, 0.00, -0.65, 0.08, 0.000
+20120105, 0.39, 0.18, 0.13, 0.000
+20120106, -0.19, 0.01, -0.25, 0.000
+20120109, 0.28, 0.22, -0.06, 0.000
+20120110, 0.97, 0.41, 0.39, 0.000
+20120111, 0.13, 0.16, 0.36, 0.000
+20120112, 0.31, 0.31, 0.00, 0.000
+20120113, -0.52, -0.26, -0.44, 0.000
+20120117, 0.36, -0.10, -0.73, 0.000
+20120118, 1.22, 0.56, 0.15, 0.000
+20120119, 0.51, -0.15, -0.22, 0.000
+20120120, 0.03, 0.23, 0.65, 0.000
+20120123, 0.02, -0.26, 0.13, 0.000
+20120124, 0.00, 0.84, -0.40, 0.000
+20120125, 0.91, 0.11, -0.73, 0.000
+20120126, -0.59, 0.25, -0.55, 0.000
+20120127, 0.01, 0.85, -0.10, 0.000
+20120130, -0.31, -0.45, -0.29, 0.000
+20120131, -0.05, -0.05, 0.01, 0.000
+20120201, 1.10, 1.12, 0.35, 0.000
+20120202, 0.17, 0.40, -0.05, 0.000
+20120203, 1.58, 0.60, 0.32, 0.000
+20120206, -0.05, -0.27, -0.19, 0.000
+20120207, 0.16, -0.28, -0.09, 0.000
+20120208, 0.25, -0.13, 0.42, 0.000
+20120209, 0.15, -0.35, -0.38, 0.000
+20120210, -0.75, -0.60, -0.10, 0.000
+20120213, 0.75, 0.58, -0.05, 0.000
+20120214, -0.09, -0.41, -0.41, 0.000
+20120215, -0.50, -0.23, 0.10, 0.000
+20120216, 1.27, 0.69, 0.28, 0.000
+20120217, 0.16, -0.30, 0.50, 0.000
+20120221, -0.05, -0.65, 0.35, 0.000
+20120222, -0.39, -0.38, -0.65, 0.000
+20120223, 0.56, 0.90, -0.07, 0.000
+20120224, 0.15, -0.44, -0.65, 0.000
+20120227, 0.14, -0.21, 0.37, 0.000
+20120228, 0.28, -0.63, -0.15, 0.000
+20120229, -0.55, -1.04, 0.20, 0.000
+20120301, 0.64, -0.23, 0.02, 0.000
+20120302, -0.46, -1.26, 0.00, 0.000
+20120305, -0.40, 0.44, 0.27, 0.000
+20120306, -1.62, -0.33, -0.32, 0.000
+20120307, 0.80, 0.31, 0.22, 0.000
+20120308, 1.07, 0.37, -0.30, 0.000
+20120309, 0.49, 0.90, 0.15, 0.000
+20120312, -0.07, -0.21, -0.03, 0.000
+20120313, 1.86, 0.09, 0.89, 0.000
+20120314, -0.23, -0.62, -0.21, 0.000
+20120315, 0.67, 0.27, 0.51, 0.000
+20120316, 0.06, -0.27, 0.38, 0.000
+20120319, 0.41, 0.52, -0.10, 0.000
+20120320, -0.39, -0.66, 0.31, 0.000
+20120321, -0.10, 0.30, -0.40, 0.000
+20120322, -0.74, -0.13, -0.42, 0.000
+20120323, 0.39, 0.60, 0.31, 0.000
+20120326, 1.45, 0.47, -0.24, 0.000
+20120327, -0.30, -0.35, -0.31, 0.000
+20120328, -0.51, -0.02, 0.42, 0.000
+20120329, -0.16, -0.01, -0.23, 0.000
+20120330, 0.28, -0.71, -0.04, 0.000
+20120402, 0.77, 0.35, 0.03, 0.000
+20120403, -0.34, -0.29, -0.32, 0.000
+20120404, -1.11, -0.58, 0.05, 0.000
+20120405, -0.03, -0.08, -0.47, 0.000
+20120409, -1.21, -0.45, -0.05, 0.000
+20120410, -1.85, -0.41, 0.09, 0.000
+20120411, 0.85, 0.76, 0.28, 0.000
+20120412, 1.44, 0.07, 0.29, 0.000
+20120413, -1.25, -0.15, -0.76, 0.000
+20120416, -0.09, 0.15, 0.86, 0.000
+20120417, 1.55, 0.05, -0.24, 0.000
+20120418, -0.43, -0.48, -0.41, 0.000
+20120419, -0.57, -0.04, 0.30, 0.000
+20120420, 0.11, 0.54, -0.09, 0.000
+20120423, -0.95, -0.57, 0.16, 0.000
+20120424, 0.29, 0.22, 0.98, 0.000
+20120425, 1.44, 0.40, -1.05, 0.000
+20120426, 0.75, -0.04, -0.02, 0.000
+20120427, 0.35, 0.71, -0.18, 0.000
+20120430, -0.49, -0.61, 0.09, 0.000
+20120501, 0.48, -0.84, 0.39, 0.000
+20120502, -0.15, 0.69, -0.59, 0.000
+20120503, -0.92, -0.64, 0.12, 0.000
+20120504, -1.62, -0.21, 0.13, 0.000
+20120507, 0.04, 0.14, 0.50, 0.000
+20120508, -0.41, 0.36, 0.36, 0.000
+20120509, -0.62, 0.17, -0.25, 0.000
+20120510, 0.29, 0.06, 0.56, 0.000
+20120511, -0.29, 0.21, -0.94, 0.000
+20120514, -1.14, -0.07, -0.12, 0.000
+20120515, -0.52, 0.51, -0.20, 0.000
+20120516, -0.44, -0.17, -0.43, 0.000
+20120517, -1.64, -0.52, 0.43, 0.000
+20120518, -0.80, -0.18, 0.16, 0.000
+20120521, 1.69, 0.67, -1.18, 0.000
+20120522, 0.00, -0.87, 0.28, 0.000
+20120523, 0.26, 0.49, -0.27, 0.000
+20120524, 0.16, -0.01, 0.21, 0.000
+20120525, -0.16, 0.23, -0.10, 0.000
+20120529, 1.14, 0.17, -0.02, 0.000
+20120530, -1.47, -0.28, -0.26, 0.000
+20120531, -0.23, 0.13, 0.57, 0.000
+20120601, -2.60, -0.53, 0.21, 0.000
+20120604, -0.05, 0.10, -0.55, 0.000
+20120605, 0.68, 0.26, 0.06, 0.000
+20120606, 2.32, 0.07, 0.21, 0.000
+20120607, -0.10, -0.46, 0.13, 0.000
+20120608, 0.85, 0.21, 0.02, 0.000
+20120611, -1.40, -0.88, -0.05, 0.000
+20120612, 1.16, 0.10, 0.08, 0.000
+20120613, -0.77, -0.51, 0.35, 0.000
+20120614, 1.04, 0.18, 0.37, 0.000
+20120615, 1.07, 0.10, -0.06, 0.000
+20120618, 0.21, 0.12, -0.85, 0.000
+20120619, 1.09, 0.70, 0.16, 0.000
+20120620, -0.14, -0.10, 0.15, 0.000
+20120621, -2.26, -0.09, 0.13, 0.000
+20120622, 0.79, 0.67, 0.08, 0.000
+20120625, -1.62, 0.08, -0.14, 0.000
+20120626, 0.52, -0.13, -0.06, 0.000
+20120627, 0.92, 0.39, 0.48, 0.000
+20120628, -0.24, 0.16, 0.44, 0.000
+20120629, 2.55, 0.39, -0.71, 0.000
+20120702, 0.33, 0.71, -0.04, 0.000
+20120703, 0.76, 0.72, 0.07, 0.000
+20120705, -0.36, 0.58, -0.87, 0.000
+20120706, -0.99, -0.43, 0.36, 0.000
+20120709, -0.23, -0.27, -0.24, 0.000
+20120710, -0.84, -0.38, 0.31, 0.000
+20120711, -0.08, -0.39, 0.74, 0.000
+20120712, -0.50, 0.23, -0.81, 0.000
+20120713, 1.62, -0.40, 0.57, 0.000
+20120716, -0.31, -0.42, -0.25, 0.000
+20120717, 0.67, -0.53, 0.24, 0.000
+20120718, 0.71, 0.30, -0.79, 0.000
+20120719, 0.27, -0.35, -0.97, 0.000
+20120720, -1.06, -0.32, 0.07, 0.000
+20120723, -1.02, -0.69, 0.20, 0.000
+20120724, -0.99, -0.57, 0.26, 0.000
+20120725, -0.01, 0.26, -0.05, 0.000
+20120726, 1.53, -0.82, 0.39, 0.000
+20120727, 1.96, 0.59, 0.08, 0.000
+20120730, -0.13, -0.40, 0.26, 0.000
+20120731, -0.47, 0.00, 0.25, 0.000
+20120801, -0.50, -1.59, 0.29, 0.000
+20120802, -0.69, 0.23, -0.41, 0.000
+20120803, 1.99, 0.55, 0.57, 0.000
+20120806, 0.34, 0.58, 0.07, 0.000
+20120807, 0.64, 0.34, 0.07, 0.000
+20120808, 0.09, -0.25, 0.57, 0.000
+20120809, 0.12, 0.37, 0.11, 0.000
+20120810, 0.17, -0.33, -0.02, 0.000
+20120813, -0.14, -0.16, 0.00, 0.000
+20120814, -0.03, -0.43, -0.05, 0.000
+20120815, 0.27, 0.73, -0.07, 0.000
+20120816, 0.75, 0.47, -0.17, 0.000
+20120817, 0.27, 0.58, 0.11, 0.000
+20120820, -0.06, -0.46, 0.59, 0.000
+20120821, -0.31, 0.10, 0.40, 0.000
+20120822, 0.00, -0.44, -0.35, 0.000
+20120823, -0.78, -0.01, -0.36, 0.000
+20120824, 0.61, -0.27, -0.03, 0.000
+20120827, -0.06, 0.12, -0.12, 0.000
+20120828, 0.01, 0.59, -0.09, 0.000
+20120829, 0.15, 0.25, 0.12, 0.000
+20120830, -0.80, -0.46, 0.00, 0.000
+20120831, 0.52, -0.07, 0.00, 0.000
+20120904, 0.08, 0.96, -0.17, 0.000
+20120905, -0.05, -0.07, 0.32, 0.000
+20120906, 2.07, -0.08, 0.34, 0.000
+20120907, 0.45, 0.00, 0.78, 0.000
+20120910, -0.57, 0.29, -0.06, 0.000
+20120911, 0.28, 0.03, 0.54, 0.000
+20120912, 0.27, 0.12, 0.31, 0.000
+20120913, 1.56, -0.40, 0.56, 0.000
+20120914, 0.54, 0.56, 0.48, 0.000
+20120917, -0.42, -0.18, -0.79, 0.000
+20120918, -0.15, -0.01, -0.24, 0.000
+20120919, 0.18, -0.15, 0.05, 0.000
+20120920, -0.13, -0.42, -0.17, 0.000
+20120921, 0.04, 0.48, -0.04, 0.000
+20120924, -0.26, -0.22, 0.33, 0.000
+20120925, -1.11, -0.35, -0.36, 0.000
+20120926, -0.57, -0.03, 0.03, 0.000
+20120927, 0.99, 0.24, -0.15, 0.000
+20120928, -0.46, -0.31, -0.25, 0.000
+20121001, 0.26, 0.07, 0.24, 0.000
+20121002, 0.10, -0.15, 0.27, 0.000
+20121003, 0.36, -0.66, -0.02, 0.000
+20121004, 0.76, -0.20, 0.77, 0.000
+20121005, -0.03, -0.18, 0.22, 0.000
+20121008, -0.36, -0.23, 0.21, 0.000
+20121009, -1.05, -0.30, 0.35, 0.000
+20121010, -0.58, 0.38, 0.26, 0.000
+20121011, 0.11, 0.33, 0.68, 0.000
+20121012, -0.34, -0.31, -0.90, 0.000
+20121015, 0.79, -0.16, 0.16, 0.000
+20121016, 1.00, -0.22, -0.24, 0.000
+20121017, 0.49, 0.16, 1.13, 0.000
+20121018, -0.31, -0.60, 0.26, 0.000
+20121019, -1.68, -0.41, 0.46, 0.000
+20121022, 0.01, -0.04, 0.18, 0.000
+20121023, -1.29, 0.98, -0.51, 0.000
+20121024, -0.28, -0.15, 0.43, 0.000
+20121025, 0.27, 0.16, -0.09, 0.000
+20121026, -0.07, -0.13, -0.40, 0.000
+20121031, 0.14, 0.50, 0.37, 0.000
+20121101, 1.19, 0.16, 0.21, 0.000
+20121102, -1.04, -0.54, 0.26, 0.000
+20121105, 0.28, 0.42, -0.22, 0.000
+20121106, 0.80, -0.04, 0.54, 0.000
+20121107, -2.31, -0.03, -1.45, 0.000
+20121108, -1.24, -0.28, 0.41, 0.000
+20121109, 0.15, 0.02, -0.14, 0.000
+20121112, 0.00, -0.18, 0.06, 0.000
+20121113, -0.40, -0.20, -0.30, 0.000
+20121114, -1.40, -0.35, -0.25, 0.000
+20121115, -0.24, -0.43, 0.17, 0.000
+20121116, 0.58, 0.07, 0.03, 0.000
+20121119, 1.98, 0.25, -0.01, 0.000
+20121120, 0.11, -0.06, 0.14, 0.000
+20121121, 0.31, 0.37, -0.06, 0.000
+20121123, 1.28, -0.15, 0.07, 0.000
+20121126, -0.14, 0.54, -0.17, 0.000
+20121127, -0.43, 0.44, -0.22, 0.000
+20121128, 0.83, 0.02, -0.28, 0.000
+20121129, 0.54, 0.68, -0.02, 0.000
+20121130, 0.02, -0.14, 0.27, 0.000
+20121203, -0.46, 0.28, 0.21, 0.001
+20121204, -0.16, 0.36, -0.06, 0.001
+20121205, 0.17, -0.66, 0.99, 0.001
+20121206, 0.31, -0.18, -0.15, 0.001
+20121207, 0.27, -0.43, 0.34, 0.001
+20121210, 0.11, 0.46, 0.02, 0.001
+20121211, 0.68, 0.46, -0.06, 0.001
+20121212, -0.02, -0.70, 0.54, 0.001
+20121213, -0.57, 0.03, 0.06, 0.001
+20121214, -0.34, 0.31, 0.25, 0.001
+20121217, 1.16, -0.07, 0.59, 0.001
+20121218, 1.20, 0.32, 0.08, 0.001
+20121219, -0.60, 0.58, 0.24, 0.001
+20121220, 0.53, -0.24, 0.72, 0.001
+20121221, -0.88, 0.43, -0.33, 0.001
+20121224, -0.24, -0.20, 0.00, 0.001
+20121226, -0.54, -0.16, 0.34, 0.001
+20121227, -0.11, 0.01, -0.17, 0.001
+20121228, -1.00, 0.45, 0.00, 0.001
+20121231, 1.71, 0.43, -0.07, 0.001
+20130102, 2.62, 0.16, 0.35, 0.000
+20130103, -0.14, 0.12, 0.04, 0.000
+20130104, 0.55, 0.10, 0.43, 0.000
+20130107, -0.31, -0.09, -0.36, 0.000
+20130108, -0.27, 0.05, -0.07, 0.000
+20130109, 0.34, 0.29, -0.41, 0.000
+20130110, 0.66, -0.66, 0.51, 0.000
+20130111, 0.02, 0.08, -0.45, 0.000
+20130114, -0.06, 0.03, -0.08, 0.000
+20130115, 0.19, 0.24, 0.00, 0.000
+20130116, -0.04, -0.24, 0.23, 0.000
+20130117, 0.61, 0.42, -0.09, 0.000
+20130118, 0.29, 0.03, -0.11, 0.000
+20130122, 0.48, 0.15, 0.46, 0.000
+20130123, 0.10, -0.30, -0.13, 0.000
+20130124, 0.09, 0.27, 0.05, 0.000
+20130125, 0.59, -0.04, -0.28, 0.000
+20130128, -0.14, 0.39, 0.12, 0.000
+20130129, 0.36, -0.45, 0.35, 0.000
+20130130, -0.38, -0.88, 0.12, 0.000
+20130131, -0.08, 0.68, 0.19, 0.000
+20130201, 0.99, 0.07, 0.26, 0.000
+20130204, -1.19, -0.14, -0.15, 0.000
+20130205, 1.07, -0.10, 0.18, 0.000
+20130206, 0.15, 0.30, 0.12, 0.000
+20130207, -0.15, -0.06, 0.02, 0.000
+20130208, 0.58, 0.01, -0.21, 0.000
+20130211, -0.08, -0.05, 0.39, 0.000
+20130212, 0.16, 0.21, 0.72, 0.000
+20130213, 0.14, 0.11, -0.01, 0.000
+20130214, 0.11, 0.34, 0.10, 0.000
+20130215, -0.11, 0.03, -0.10, 0.000
+20130219, 0.74, 0.22, 0.17, 0.000
+20130220, -1.36, -0.55, -0.63, 0.000
+20130221, -0.66, -0.31, -0.06, 0.000
+20130222, 0.94, 0.16, -0.06, 0.000
+20130225, -1.82, -0.21, -0.72, 0.000
+20130226, 0.58, -0.18, 0.02, 0.000
+20130227, 1.29, -0.38, 0.16, 0.000
+20130228, -0.05, 0.10, -0.16, 0.000
+20130301, 0.22, 0.13, -0.33, 0.000
+20130304, 0.47, -0.41, 0.11, 0.000
+20130305, 1.00, 0.22, -0.18, 0.000
+20130306, 0.18, 0.06, 0.47, 0.000
+20130307, 0.27, 0.22, 0.41, 0.000
+20130308, 0.52, 0.40, -0.15, 0.000
+20130311, 0.30, -0.34, 0.23, 0.000
+20130312, -0.22, 0.05, -0.14, 0.000
+20130313, 0.20, 0.19, 0.08, 0.000
+20130314, 0.58, 0.37, 0.40, 0.000
+20130315, -0.19, 0.02, 0.43, 0.000
+20130318, -0.50, 0.11, -0.23, 0.000
+20130319, -0.24, -0.02, 0.03, 0.000
+20130320, 0.76, 0.26, 0.00, 0.000
+20130321, -0.85, 0.17, -0.28, 0.000
+20130322, 0.62, -0.46, -0.30, 0.000
+20130325, -0.29, 0.29, 0.02, 0.000
+20130326, 0.76, -0.37, -0.22, 0.000
+20130327, -0.02, 0.16, -0.31, 0.000
+20130328, 0.39, -0.27, -0.30, 0.000
+20130401, -0.57, -0.93, 0.02, 0.000
+20130402, 0.33, -0.90, -0.32, 0.000
+20130403, -1.16, -0.42, -0.20, 0.000
+20130404, 0.42, 0.18, 0.25, 0.000
+20130405, -0.41, 0.05, 0.35, 0.000
+20130408, 0.70, 0.14, 0.29, 0.000
+20130409, 0.31, -0.40, 0.19, 0.000
+20130410, 1.28, 0.64, -0.10, 0.000
+20130411, 0.35, -0.20, -0.15, 0.000
+20130412, -0.28, -0.14, -0.46, 0.000
+20130415, -2.48, -1.49, -0.28, 0.000
+20130416, 1.47, 0.18, 0.07, 0.000
+20130417, -1.46, -0.29, -0.54, 0.000
+20130418, -0.71, 0.17, 0.02, 0.000
+20130419, 0.97, 0.04, 0.12, 0.000
+20130422, 0.45, -0.15, -0.14, 0.000
+20130423, 1.11, 0.45, 0.63, 0.000
+20130424, 0.06, 0.38, 1.22, 0.000
+20130425, 0.49, 0.20, 0.01, 0.000
+20130426, -0.20, -0.35, -0.22, 0.000
+20130429, 0.67, 0.13, -0.08, 0.000
+20130430, 0.29, 0.37, -0.05, 0.000
+20130501, -1.08, -1.40, -0.27, 0.000
+20130502, 1.04, 0.59, 0.13, 0.000
+20130503, 1.12, 0.64, 0.16, 0.000
+20130506, 0.23, 0.24, 0.84, 0.000
+20130507, 0.54, 0.12, 0.14, 0.000
+20130508, 0.44, -0.21, 0.14, 0.000
+20130509, -0.31, 0.11, -0.30, 0.000
+20130510, 0.54, 0.42, -0.20, 0.000
+20130513, -0.02, -0.23, -0.06, 0.000
+20130514, 1.10, 0.12, 0.31, 0.000
+20130515, 0.51, -0.15, 0.27, 0.000
+20130516, -0.50, 0.15, -0.28, 0.000
+20130517, 1.04, 0.00, 0.38, 0.000
+20130520, -0.06, 0.37, 0.49, 0.000
+20130521, 0.16, -0.10, -0.08, 0.000
+20130522, -0.92, -0.72, -0.17, 0.000
+20130523, -0.19, 0.47, -0.10, 0.000
+20130524, -0.06, 0.15, 0.05, 0.000
+20130528, 0.77, 0.65, 0.22, 0.000
+20130529, -0.70, -0.36, 0.59, 0.000
+20130530, 0.50, 0.31, 0.48, 0.000
+20130531, -1.31, 0.51, -0.24, 0.000
+20130603, 0.48, 0.16, -0.11, 0.000
+20130604, -0.55, -0.29, -0.16, 0.000
+20130605, -1.38, 0.06, -0.26, 0.000
+20130606, 0.89, 0.14, 0.26, 0.000
+20130607, 1.30, -0.47, 0.07, 0.000
+20130610, 0.07, 0.65, 0.22, 0.000
+20130611, -1.04, -0.01, -0.58, 0.000
+20130612, -0.82, 0.02, 0.03, 0.000
+20130613, 1.47, 0.11, 0.31, 0.000
+20130614, -0.59, -0.24, -0.56, 0.000
+20130617, 0.74, -0.09, 0.02, 0.000
+20130618, 0.80, 0.37, -0.06, 0.000
+20130619, -1.28, 0.16, 0.12, 0.000
+20130620, -2.45, -0.03, 0.34, 0.000
+20130621, 0.13, 0.19, -0.08, 0.000
+20130624, -1.19, 0.08, -0.66, 0.000
+20130625, 0.96, -0.02, 0.85, 0.000
+20130626, 0.92, -0.75, -0.13, 0.000
+20130627, 0.77, 0.83, 0.36, 0.000
+20130628, -0.33, 0.32, -0.14, 0.000
+20130701, 0.71, 0.83, -0.13, 0.000
+20130702, -0.10, 0.00, 0.08, 0.000
+20130703, 0.11, 0.19, -0.21, 0.000
+20130705, 1.11, 0.37, 0.45, 0.000
+20130708, 0.53, -0.19, 0.05, 0.000
+20130709, 0.74, 0.04, 0.26, 0.000
+20130710, 0.06, 0.35, -0.41, 0.000
+20130711, 1.32, -0.11, -0.63, 0.000
+20130712, 0.33, -0.01, 0.20, 0.000
+20130715, 0.20, 0.50, 0.34, 0.000
+20130716, -0.41, 0.03, 0.08, 0.000
+20130717, 0.30, -0.04, 0.18, 0.000
+20130718, 0.54, 0.03, 0.96, 0.000
+20130719, 0.09, -0.12, 0.28, 0.000
+20130722, 0.22, 0.11, 0.29, 0.000
+20130723, -0.15, 0.06, 0.28, 0.000
+20130724, -0.39, -0.26, -0.25, 0.000
+20130725, 0.42, 0.59, -0.35, 0.000
+20130726, 0.02, -0.64, -0.22, 0.000
+20130729, -0.37, -0.32, -0.28, 0.000
+20130730, 0.12, 0.19, -0.52, 0.000
+20130731, 0.09, 0.15, 0.09, 0.000
+20130801, 1.40, 0.06, 0.05, 0.000
+20130802, 0.20, -0.21, -0.33, 0.000
+20130805, -0.07, 0.50, -0.17, 0.000
+20130806, -0.68, -0.32, -0.09, 0.000
+20130807, -0.42, -0.34, 0.02, 0.000
+20130808, 0.47, 0.01, -0.01, 0.000
+20130809, -0.29, 0.13, -0.19, 0.000
+20130812, -0.02, 0.58, -0.22, 0.000
+20130813, 0.20, -0.29, -0.05, 0.000
+20130814, -0.50, 0.14, 0.29, 0.000
+20130815, -1.47, -0.37, 0.30, 0.000
+20130816, -0.26, 0.05, 0.10, 0.000
+20130819, -0.62, -0.19, -0.75, 0.000
+20130820, 0.53, 0.84, 0.13, 0.000
+20130821, -0.59, -0.02, -0.46, 0.000
+20130822, 0.93, 0.51, 0.05, 0.000
+20130823, 0.38, -0.22, -0.14, 0.000
+20130826, -0.29, 0.50, -0.50, 0.000
+20130827, -1.75, -0.74, -0.32, 0.000
+20130828, 0.30, 0.10, 0.07, 0.000
+20130829, 0.34, 0.78, -0.41, 0.000
+20130830, -0.47, -1.14, -0.21, 0.000
+20130903, 0.46, 0.05, 0.09, 0.000
+20130904, 0.83, -0.01, -0.15, 0.000
+20130905, 0.19, 0.17, 0.37, 0.000
+20130906, 0.01, 0.04, 0.00, 0.000
+20130909, 1.09, 0.46, -0.21, 0.000
+20130910, 0.80, 0.01, 0.21, 0.000
+20130911, 0.28, -0.22, 0.01, 0.000
+20130912, -0.32, -0.23, -0.34, 0.000
+20130913, 0.29, 0.24, -0.01, 0.000
+20130916, 0.49, -0.44, 0.40, 0.000
+20130917, 0.54, 0.47, -0.14, 0.000
+20130918, 1.10, -0.16, -0.45, 0.000
+20130919, -0.13, 0.16, -0.60, 0.000
+20130920, -0.63, 0.53, 0.18, 0.000
+20130923, -0.45, 0.45, -0.37, 0.000
+20130924, -0.12, 0.53, 0.01, 0.000
+20130925, -0.23, 0.03, 0.58, 0.000
+20130926, 0.42, 0.20, -0.73, 0.000
+20130927, -0.39, -0.01, -0.06, 0.000
+20130930, -0.49, 0.50, 0.06, 0.000
+20131001, 0.90, 0.41, -0.13, 0.000
+20131002, -0.10, -0.37, -0.09, 0.000
+20131003, -0.88, -0.19, 0.20, 0.000
+20131004, 0.74, -0.02, 0.09, 0.000
+20131007, -0.95, -0.27, 0.00, 0.000
+20131008, -1.35, -0.47, 0.76, 0.000
+20131009, -0.05, -0.43, 0.62, 0.000
+20131010, 2.23, 0.16, -0.02, 0.000
+20131011, 0.71, 0.79, -0.01, 0.000
+20131014, 0.44, 0.23, -0.11, 0.000
+20131015, -0.73, -0.19, 0.01, 0.000
+20131016, 1.37, -0.32, 0.14, 0.000
+20131017, 0.70, 0.15, 0.04, 0.000
+20131018, 0.73, 0.34, -0.05, 0.000
+20131021, -0.02, -0.12, 0.06, 0.000
+20131022, 0.50, -0.28, 0.10, 0.000
+20131023, -0.51, 0.16, -0.33, 0.000
+20131024, 0.42, 0.40, -0.32, 0.000
+20131025, 0.33, -0.34, 0.13, 0.000
+20131028, 0.09, -0.06, 0.01, 0.000
+20131029, 0.54, -0.14, -0.12, 0.000
+20131030, -0.61, -0.76, 0.50, 0.000
+20131031, -0.34, -0.09, -0.43, 0.000
+20131101, 0.20, -0.68, 0.22, 0.000
+20131104, 0.47, 0.76, -0.03, 0.000
+20131105, -0.23, 0.00, -0.25, 0.000
+20131106, 0.27, -0.82, 0.39, 0.000
+20131107, -1.46, -0.36, 0.19, 0.000
+20131108, 1.45, 0.52, 0.42, 0.000
+20131111, 0.12, 0.01, -0.13, 0.000
+20131112, -0.19, 0.37, -0.71, 0.000
+20131113, 0.90, 0.09, -0.13, 0.000
+20131114, 0.43, -0.56, 0.31, 0.000
+20131115, 0.43, 0.06, -0.27, 0.000
+20131118, -0.50, -0.45, 0.46, 0.000
+20131119, -0.27, -0.33, 0.26, 0.000
+20131120, -0.33, 0.26, 0.02, 0.000
+20131121, 0.97, 0.79, -0.06, 0.000
+20131122, 0.50, -0.07, 0.12, 0.000
+20131125, -0.11, 0.15, 0.14, 0.000
+20131126, 0.18, 0.85, -0.48, 0.000
+20131127, 0.30, 0.35, -0.06, 0.000
+20131129, -0.02, 0.29, -0.17, 0.000
+20131202, -0.31, -0.97, 0.15, 0.000
+20131203, -0.34, -0.08, -0.10, 0.000
+20131204, -0.07, -0.20, 0.26, 0.000
+20131205, -0.35, 0.69, -0.64, 0.000
+20131206, 1.02, -0.28, 0.20, 0.000
+20131209, 0.17, -0.42, 0.00, 0.000
+20131210, -0.34, -0.56, 0.20, 0.000
+20131211, -1.16, -0.35, 0.05, 0.000
+20131212, -0.23, 0.36, 0.25, 0.000
+20131213, 0.10, 0.25, -0.01, 0.000
+20131216, 0.67, 0.58, -0.14, 0.000
+20131217, -0.26, 0.18, -0.16, 0.000
+20131218, 1.55, -0.47, 0.04, 0.000
+20131219, -0.10, -0.54, 0.16, 0.000
+20131220, 0.69, 1.29, -0.30, 0.000
+20131223, 0.62, 0.50, -0.05, 0.000
+20131224, 0.34, 0.11, 0.11, 0.000
+20131226, 0.44, -0.32, -0.31, 0.000
+20131227, -0.05, -0.07, 0.23, 0.000
+20131230, 0.00, 0.03, -0.30, 0.000
+20131231, 0.44, -0.17, 0.04, 0.000
+20140102, -0.88, -0.27, 0.12, 0.000
+20140103, 0.03, 0.36, 0.05, 0.000
+20140106, -0.34, -0.57, 0.26, 0.000
+20140107, 0.68, 0.40, -0.41, 0.000
+20140108, 0.04, 0.01, -0.11, 0.000
+20140109, 0.02, 0.17, -0.38, 0.000
+20140110, 0.27, 0.52, -0.78, 0.000
+20140113, -1.32, -0.07, 0.11, 0.000
+20140114, 1.15, 0.18, -0.39, 0.000
+20140115, 0.53, 0.22, 0.21, 0.000
+20140116, -0.07, 0.29, -0.68, 0.000
+20140117, -0.39, 0.03, 0.04, 0.000
+20140121, 0.30, 0.47, -0.01, 0.000
+20140122, 0.15, 0.27, 0.21, 0.000
+20140123, -0.86, 0.15, -0.51, 0.000
+20140124, -2.19, -0.39, 0.22, 0.000
+20140127, -0.65, -0.86, 0.46, 0.000
+20140128, 0.73, 0.18, -0.03, 0.000
+20140129, -1.07, -0.41, 0.26, 0.000
+20140130, 1.22, 0.31, -0.42, 0.000
+20140131, -0.66, -0.06, -0.39, 0.000
+20140203, -2.48, -0.89, 0.31, 0.000
+20140204, 0.77, -0.04, -0.10, 0.000
+20140205, -0.23, -0.61, 0.18, 0.000
+20140206, 1.21, -0.48, 0.23, 0.000
+20140207, 1.33, -0.16, -0.67, 0.000
+20140210, 0.16, 0.12, -0.44, 0.000
+20140211, 1.09, -0.19, 0.24, 0.000
+20140212, 0.11, 0.24, -0.09, 0.000
+20140213, 0.72, 0.73, -0.10, 0.000
+20140214, 0.42, -0.37, 0.37, 0.000
+20140218, 0.27, 0.98, -0.25, 0.000
+20140219, -0.74, -0.29, -0.40, 0.000
+20140220, 0.70, 0.53, -0.14, 0.000
+20140221, -0.09, 0.35, -0.04, 0.000
+20140224, 0.65, 0.19, 0.26, 0.000
+20140225, -0.10, 0.12, -0.61, 0.000
+20140226, 0.12, 0.68, -0.09, 0.000
+20140227, 0.54, 0.15, 0.02, 0.000
+20140228, 0.15, -0.71, 0.84, 0.000
+20140303, -0.70, 0.09, 0.15, 0.000
+20140304, 1.67, 1.11, -0.12, 0.000
+20140305, 0.01, -0.27, 0.28, 0.000
+20140306, 0.16, -0.32, 0.76, 0.000
+20140307, 0.04, -0.11, 0.51, 0.000
+20140310, -0.09, -0.10, 0.06, 0.000
+20140311, -0.62, -0.53, -0.19, 0.000
+20140312, 0.13, 0.29, -0.17, 0.000
+20140313, -1.21, -0.13, 0.27, 0.000
+20140314, -0.16, 0.68, -0.05, 0.000
+20140317, 0.90, -0.36, -0.01, 0.000
+20140318, 0.82, 0.74, -0.42, 0.000
+20140319, -0.59, -0.17, 0.61, 0.000
+20140320, 0.52, -0.48, 0.99, 0.000
+20140321, -0.37, -0.27, 0.88, 0.000
+20140324, -0.64, -0.89, 0.96, 0.000
+20140325, 0.30, -0.34, 0.13, 0.000
+20140326, -0.89, -1.19, 0.30, 0.000
+20140327, -0.19, -0.12, -0.25, 0.000
+20140328, 0.41, -0.43, 0.52, 0.000
+20140331, 0.97, 0.99, -0.17, 0.000
+20140401, 0.87, 0.75, -0.40, 0.000
+20140402, 0.29, 0.04, 0.12, 0.000
+20140403, -0.31, -0.89, 0.78, 0.000
+20140404, -1.47, -1.15, 0.74, 0.000
+20140407, -1.26, -0.30, -0.02, 0.000
+20140408, 0.50, 0.31, -0.23, 0.000
+20140409, 1.20, 0.33, -0.93, 0.000
+20140410, -2.24, -0.71, 0.86, 0.000
+20140411, -1.07, -0.41, 0.29, 0.000
+20140414, 0.70, -0.51, 0.20, 0.000
+20140415, 0.59, -0.38, 0.17, 0.000
+20140416, 1.13, 0.04, -0.45, 0.000
+20140417, 0.23, 0.32, 0.24, 0.000
+20140421, 0.36, 0.20, -0.43, 0.000
+20140422, 0.58, 0.72, -0.37, 0.000
+20140423, -0.31, -0.64, 0.89, 0.000
+20140424, 0.08, -0.41, -0.18, 0.000
+20140425, -1.05, -0.96, 0.60, 0.000
+20140428, 0.11, -0.65, -0.54, 0.000
+20140429, 0.56, -0.21, -0.22, 0.000
+20140430, 0.35, 0.24, -0.04, 0.000
+20140501, 0.04, -0.15, -0.17, 0.000
+20140502, -0.07, 0.23, 0.34, 0.000
+20140505, 0.13, -0.30, -0.52, 0.000
+20140506, -1.03, -0.54, 0.16, 0.000
+20140507, 0.45, -0.85, 1.17, 0.000
+20140508, -0.26, -0.99, 0.38, 0.000
+20140509, 0.25, 0.71, -0.37, 0.000
+20140512, 1.20, 1.42, -0.29, 0.000
+20140513, -0.05, -1.06, 0.18, 0.000
+20140514, -0.60, -1.10, -0.43, 0.000
+20140515, -0.90, 0.33, -0.27, 0.000
+20140516, 0.36, 0.26, -0.40, 0.000
+20140519, 0.50, 0.63, 0.00, 0.000
+20140520, -0.78, -0.81, 0.23, 0.000
+20140521, 0.81, -0.26, 0.04, 0.000
+20140522, 0.36, 0.63, -0.27, 0.000
+20140523, 0.49, 0.62, -0.23, 0.000
+20140527, 0.69, 0.70, -0.19, 0.000
+20140528, -0.11, -0.33, 0.27, 0.000
+20140529, 0.54, -0.19, -0.12, 0.000
+20140530, 0.06, -0.68, 0.28, 0.000
+20140602, 0.06, -0.68, 0.41, 0.000
+20140603, -0.05, -0.27, 0.18, 0.000
+20140604, 0.28, 0.23, -0.09, 0.000
+20140605, 0.77, 1.29, -0.18, 0.000
+20140606, 0.54, 0.48, 0.00, 0.000
+20140609, 0.22, 1.01, -0.30, 0.000
+20140610, -0.03, -0.18, -0.04, 0.000
+20140611, -0.34, -0.13, -0.29, 0.000
+20140612, -0.68, 0.10, 0.16, 0.000
+20140613, 0.31, -0.07, -0.19, 0.000
+20140616, 0.13, 0.46, -0.67, 0.000
+20140617, 0.34, 0.55, 0.46, 0.000
+20140618, 0.75, -0.27, -0.09, 0.000
+20140619, 0.12, -0.16, -0.06, 0.000
+20140620, 0.18, 0.18, 0.04, 0.000
+20140623, -0.01, -0.24, 0.08, 0.000
+20140624, -0.72, -0.33, -0.20, 0.000
+20140625, 0.53, 0.36, 0.06, 0.000
+20140626, -0.11, -0.08, 0.05, 0.000
+20140627, 0.26, 0.48, -0.23, 0.000
+20140630, 0.07, 0.26, 0.19, 0.000
+20140701, 0.74, 0.48, -0.37, 0.000
+20140702, -0.03, -0.45, -0.21, 0.000
+20140703, 0.59, 0.22, 0.08, 0.000
+20140707, -0.62, -1.26, 0.38, 0.000
+20140708, -0.82, -0.66, 0.71, 0.000
+20140709, 0.46, -0.39, -0.12, 0.000
+20140710, -0.49, -0.59, 0.02, 0.000
+20140711, 0.12, -0.21, -0.39, 0.000
+20140714, 0.46, 0.00, -0.13, 0.000
+20140715, -0.32, -0.94, 0.98, 0.000
+20140716, 0.32, -0.60, 0.32, 0.000
+20140717, -1.21, -0.39, 0.18, 0.000
+20140718, 1.12, 0.48, -0.47, 0.000
+20140721, -0.25, -0.24, 0.05, 0.000
+20140722, 0.53, 0.25, -0.32, 0.000
+20140723, 0.19, 0.13, -0.74, 0.000
+20140724, 0.05, -0.28, 0.04, 0.000
+20140725, -0.53, -0.36, 0.17, 0.000
+20140728, -0.08, -0.47, 0.28, 0.000
+20140729, -0.33, 0.70, -0.67, 0.000
+20140730, 0.12, 0.43, -0.29, 0.000
+20140731, -2.03, -0.20, 0.47, 0.000
+20140801, -0.32, -0.18, -0.06, 0.000
+20140804, 0.74, 0.02, -0.22, 0.000
+20140805, -0.84, 0.77, -0.19, 0.000
+20140806, 0.02, 0.37, 0.18, 0.000
+20140807, -0.52, -0.04, -0.14, 0.000
+20140808, 1.13, -0.20, -0.18, 0.000
+20140811, 0.40, 0.59, -0.29, 0.000
+20140812, -0.23, -0.60, 0.25, 0.000
+20140813, 0.69, -0.08, -0.24, 0.000
+20140814, 0.44, -0.24, 0.04, 0.000
+20140815, 0.00, -0.15, -0.15, 0.000
+20140818, 0.93, 0.60, -0.20, 0.000
+20140819, 0.49, -0.13, -0.11, 0.000
+20140820, 0.19, -0.64, 0.27, 0.000
+20140821, 0.28, -0.14, 0.82, 0.000
+20140822, -0.10, 0.30, -0.39, 0.000
+20140825, 0.50, -0.24, 0.04, 0.000
+20140826, 0.19, 0.70, -0.33, 0.000
+20140827, 0.00, -0.23, 0.15, 0.000
+20140828, -0.19, -0.42, 0.10, 0.000
+20140829, 0.39, 0.27, 0.09, 0.000
+20140902, 0.06, 0.47, -0.09, 0.000
+20140903, -0.14, -0.54, 0.23, 0.000
+20140904, -0.17, -0.14, -0.15, 0.000
+20140905, 0.45, -0.26, -0.06, 0.000
+20140908, -0.22, 0.52, -0.44, 0.000
+20140909, -0.72, -0.42, -0.02, 0.000
+20140910, 0.45, 0.20, -0.40, 0.000
+20140911, 0.19, 0.49, 0.20, 0.000
+20140912, -0.55, -0.23, 0.14, 0.000
+20140915, -0.28, -1.06, 0.66, 0.000
+20140916, 0.70, -0.39, -0.13, 0.000
+20140917, 0.17, 0.08, -0.20, 0.000
+20140918, 0.50, 0.01, 0.03, 0.000
+20140919, -0.18, -0.97, 0.05, 0.000
+20140922, -0.97, -0.57, 0.13, 0.000
+20140923, -0.62, -0.31, -0.05, 0.000
+20140924, 0.81, 0.08, -0.92, 0.000
+20140925, -1.62, 0.08, 0.15, 0.000
+20140926, 0.85, -0.04, -0.27, 0.000
+20140929, -0.22, 0.16, -0.44, 0.000
+20140930, -0.40, -1.01, 0.14, 0.000
+20141001, -1.39, -0.15, 0.33, 0.000
+20141002, 0.15, 1.01, -0.38, 0.000
+20141003, 1.08, -0.39, -0.41, 0.000
+20141006, -0.26, -0.78, 0.39, 0.000
+20141007, -1.56, -0.12, 0.12, 0.000
+20141008, 1.70, 0.02, -0.06, 0.000
+20141009, -2.17, -0.42, -0.40, 0.000
+20141010, -1.30, -0.16, 0.56, 0.000
+20141013, -1.59, 1.32, 0.50, 0.000
+20141014, 0.28, 0.86, -0.12, 0.000
+20141015, -0.53, 1.81, -1.31, 0.000
+20141016, 0.23, 1.08, 0.17, 0.000
+20141017, 1.14, -1.56, -0.10, 0.000
+20141020, 0.94, 0.20, -0.33, 0.000
+20141021, 1.98, -0.41, 0.03, 0.000
+20141022, -0.85, -0.57, 0.22, 0.000
+20141023, 1.29, 0.52, -0.46, 0.000
+20141024, 0.66, -0.46, -0.11, 0.000
+20141027, -0.17, 0.10, -0.26, 0.000
+20141028, 1.37, 1.58, -0.02, 0.000
+20141029, -0.18, -0.02, 0.43, 0.000
+20141030, 0.60, 0.27, -0.47, 0.000
+20141031, 1.23, 0.29, 0.19, 0.000
+20141103, -0.01, -0.26, -0.06, 0.000
+20141104, -0.35, -0.04, -0.11, 0.000
+20141105, 0.48, -0.53, 0.86, 0.000
+20141106, 0.49, 0.09, -0.48, 0.000
+20141107, 0.09, 0.02, 0.44, 0.000
+20141110, 0.33, 0.20, -0.50, 0.000
+20141111, 0.10, 0.01, -0.29, 0.000
+20141112, 0.07, 0.76, -0.29, 0.000
+20141113, -0.03, -0.91, -0.33, 0.000
+20141114, 0.06, -0.14, 0.14, 0.000
+20141117, -0.05, -0.98, 0.28, 0.000
+20141118, 0.51, 0.05, -0.36, 0.000
+20141119, -0.21, -0.93, -0.06, 0.000
+20141120, 0.31, 0.88, -0.03, 0.000
+20141121, 0.48, -0.39, -0.08, 0.000
+20141124, 0.40, 0.94, -0.58, 0.000
+20141125, -0.08, 0.06, -0.04, 0.000
+20141126, 0.30, 0.09, -0.45, 0.000
+20141128, -0.35, -0.93, -1.02, 0.000
+20141201, -0.90, -0.96, 0.61, 0.000
+20141202, 0.65, 0.41, 0.05, 0.000
+20141203, 0.46, 0.46, 0.30, 0.000
+20141204, -0.17, -0.32, 0.09, 0.000
+20141205, 0.25, 0.57, 0.25, 0.000
+20141208, -0.82, -0.59, 0.27, 0.000
+20141209, 0.13, 1.72, -0.29, 0.000
+20141210, -1.72, -0.62, -0.10, 0.000
+20141211, 0.49, -0.08, -0.20, 0.000
+20141212, -1.55, 0.49, -0.58, 0.000
+20141215, -0.68, -0.26, 0.11, 0.000
+20141216, -0.80, 0.62, 0.59, 0.000
+20141217, 2.15, 0.85, -0.10, 0.000
+20141218, 2.36, -0.88, -0.21, 0.000
+20141219, 0.43, -0.22, 0.19, 0.000
+20141222, 0.37, 0.19, -0.04, 0.000
+20141223, 0.21, -0.26, 1.05, 0.000
+20141224, 0.07, 0.36, -0.17, 0.000
+20141226, 0.39, 0.37, -0.32, 0.000
+20141229, 0.13, 0.16, 0.56, 0.000
+20141230, -0.48, 0.06, 0.34, 0.000
+20141231, -0.93, 0.49, -0.39, 0.000
+20150102, -0.11, -0.59, 0.09, 0.000
+20150105, -1.84, 0.33, -0.63, 0.000
+20150106, -1.04, -0.78, -0.26, 0.000
+20150107, 1.19, 0.17, -0.65, 0.000
+20150108, 1.81, -0.12, -0.28, 0.000
+20150109, -0.85, 0.01, -0.50, 0.000
+20150112, -0.79, 0.37, -0.37, 0.000
+20150113, -0.19, 0.28, 0.03, 0.000
+20150114, -0.60, 0.29, -0.49, 0.000
+20150115, -1.08, -0.95, 0.64, 0.000
+20150116, 1.36, 0.46, -0.15, 0.000
+20150120, 0.11, -0.67, -0.55, 0.000
+20150121, 0.42, -0.95, 0.55, 0.000
+20150122, 1.58, 0.46, 0.41, 0.000
+20150123, -0.47, 0.51, -0.82, 0.000
+20150126, 0.43, 0.56, -0.05, 0.000
+20150127, -1.21, 0.67, 0.23, 0.000
+20150128, -1.39, -0.08, -0.76, 0.000
+20150129, 0.98, 0.24, -0.01, 0.000
+20150130, -1.30, -0.77, 0.03, 0.000
+20150202, 1.25, -0.46, 0.99, 0.000
+20150203, 1.49, 0.18, 0.51, 0.000
+20150204, -0.35, -0.07, -0.21, 0.000
+20150205, 1.10, 0.48, -0.16, 0.000
+20150206, -0.20, 0.07, 0.38, 0.000
+20150209, -0.46, -0.38, 0.10, 0.000
+20150210, 1.04, -0.32, -0.70, 0.000
+20150211, 0.03, -0.11, -0.32, 0.000
+20150212, 1.00, 0.18, -0.10, 0.000
+20150213, 0.47, 0.19, -0.29, 0.000
+20150217, 0.17, -0.02, -0.01, 0.000
+20150218, 0.03, 0.29, -0.81, 0.000
+20150219, -0.01, 0.26, -0.36, 0.000
+20150220, 0.61, -0.41, -0.27, 0.000
+20150223, -0.08, 0.04, -0.37, 0.000
+20150224, 0.32, -0.04, 0.68, 0.000
+20150225, 0.02, 0.22, -0.51, 0.000
+20150226, -0.08, 0.62, -0.49, 0.000
+20150227, -0.36, -0.21, 0.22, 0.000
+20150302, 0.62, 0.24, -0.43, 0.000
+20150303, -0.43, -0.31, 0.30, 0.000
+20150304, -0.41, 0.09, -0.40, 0.000
+20150305, 0.15, 0.24, -0.43, 0.000
+20150306, -1.29, 0.27, 0.43, 0.000
+20150309, 0.37, 0.08, -0.02, 0.000
+20150310, -1.63, 0.42, -0.46, 0.000
+20150311, -0.04, 0.56, 0.52, 0.000
+20150312, 1.28, 0.38, 0.50, 0.000
+20150313, -0.57, 0.20, -0.04, 0.000
+20150316, 1.23, -0.77, -0.42, 0.000
+20150317, -0.20, 0.54, -0.03, 0.000
+20150318, 1.08, -0.51, 0.00, 0.000
+20150319, -0.36, 0.87, -1.11, 0.000
+20150320, 0.81, -0.14, 0.54, 0.000
+20150323, -0.19, 0.21, 0.24, 0.000
+20150324, -0.51, 0.58, -0.29, 0.000
+20150325, -1.56, -0.98, 1.04, 0.000
+20150326, -0.22, 0.11, -0.06, 0.000
+20150327, 0.32, 0.49, -0.70, 0.000
+20150330, 1.24, 0.01, -0.04, 0.000
+20150331, -0.75, 0.42, 0.38, 0.000
+20150401, -0.38, 0.34, 0.43, 0.000
+20150402, 0.35, -0.08, 0.30, 0.000
+20150406, 0.61, -0.27, -0.15, 0.000
+20150407, -0.22, -0.19, -0.16, 0.000
+20150408, 0.37, 0.54, -0.72, 0.000
+20150409, 0.41, -0.70, -0.06, 0.000
+20150410, 0.49, -0.07, -0.28, 0.000
+20150413, -0.38, 0.49, 0.23, 0.000
+20150414, 0.11, -0.19, 0.19, 0.000
+20150415, 0.57, 0.25, 0.32, 0.000
+20150416, -0.08, -0.08, -0.20, 0.000
+20150417, -1.23, -0.46, 0.23, 0.000
+20150420, 0.95, 0.16, -0.27, 0.000
+20150421, -0.10, 0.19, -0.76, 0.000
+20150422, 0.46, -0.37, 0.16, 0.000
+20150423, 0.29, 0.29, -0.22, 0.000
+20150424, 0.17, -0.51, -0.28, 0.000
+20150427, -0.54, -0.70, 0.56, 0.000
+20150428, 0.27, 0.21, 1.02, 0.000
+20150429, -0.38, -0.74, 0.74, 0.000
+20150430, -1.11, -1.06, 0.77, 0.000
+20150501, 1.01, -0.30, -0.63, 0.000
+20150504, 0.32, 0.03, 0.24, 0.000
+20150505, -1.19, -0.16, 0.51, 0.000
+20150506, -0.31, 0.64, -0.14, 0.000
+20150507, 0.39, 0.06, -0.39, 0.000
+20150508, 1.21, -0.57, -0.12, 0.000
+20150511, -0.39, 0.68, -0.03, 0.000
+20150512, -0.27, 0.00, 0.07, 0.000
+20150513, 0.01, 0.00, 0.02, 0.000
+20150514, 1.01, -0.10, -0.35, 0.000
+20150515, 0.05, -0.24, -0.20, 0.000
+20150518, 0.44, 0.74, -0.09, 0.000
+20150519, -0.09, -0.12, 0.23, 0.000
+20150520, -0.05, 0.22, -0.13, 0.000
+20150521, 0.23, -0.29, -0.02, 0.000
+20150522, -0.22, -0.11, -0.14, 0.000
+20150526, -1.01, -0.02, -0.01, 0.000
+20150527, 0.93, 0.32, -0.35, 0.000
+20150528, -0.12, 0.10, 0.13, 0.000
+20150529, -0.58, 0.02, 0.06, 0.000
+20150601, 0.17, -0.04, -0.22, 0.000
+20150602, -0.02, 0.33, 0.33, 0.000
+20150603, 0.39, 0.86, -0.24, 0.000
+20150604, -0.88, -0.10, -0.01, 0.000
+20150605, 0.06, 0.80, 0.05, 0.000
+20150608, -0.66, 0.05, 0.03, 0.000
+20150609, 0.02, -0.31, 0.35, 0.000
+20150610, 1.20, 0.15, 0.19, 0.000
+20150611, 0.21, -0.10, -0.11, 0.000
+20150612, -0.63, 0.33, 0.14, 0.000
+20150615, -0.45, 0.10, -0.13, 0.000
+20150616, 0.57, 0.09, 0.00, 0.000
+20150617, 0.16, -0.29, -0.63, 0.000
+20150618, 0.99, 0.21, -0.43, 0.000
+20150619, -0.43, 0.55, -0.20, 0.000
+20150622, 0.63, 0.08, -0.06, 0.000
+20150623, 0.12, 0.24, 0.27, 0.000
+20150624, -0.79, -0.11, 0.13, 0.000
+20150625, -0.25, 0.37, -0.20, 0.000
+20150626, -0.06, -0.23, 0.45, 0.000
+20150629, -2.15, -0.42, 0.19, 0.000
+20150630, 0.34, 0.29, -0.67, 0.000
+20150701, 0.60, -0.77, -0.07, 0.000
+20150702, -0.11, -0.57, -0.05, 0.000
+20150706, -0.37, 0.16, -0.55, 0.000
+20150707, 0.53, -0.44, -0.25, 0.000
+20150708, -1.68, -0.03, 0.07, 0.000
+20150709, 0.29, 0.16, -0.02, 0.000
+20150710, 1.24, 0.23, -0.55, 0.000
+20150713, 1.14, -0.07, -0.42, 0.000
+20150714, 0.47, 0.15, 0.13, 0.000
+20150715, -0.19, -0.80, -0.08, 0.000
+20150716, 0.78, -0.17, -0.62, 0.000
+20150717, 0.05, -0.60, -0.64, 0.000
+20150720, -0.01, -0.72, -0.57, 0.000
+20150721, -0.47, 0.02, 0.29, 0.000
+20150722, -0.18, 0.18, 0.19, 0.000
+20150723, -0.60, -0.36, -0.34, 0.000
+20150724, -1.08, -0.61, -0.02, 0.000
+20150727, -0.74, -0.25, 0.08, 0.000
+20150728, 1.23, -0.34, -0.12, 0.000
+20150729, 0.74, -0.36, 0.52, 0.000
+20150730, 0.12, 0.17, -0.26, 0.000
+20150731, -0.15, 0.82, -0.98, 0.000
+20150803, -0.35, -0.33, -0.16, 0.000
+20150804, -0.14, 0.09, -0.19, 0.000
+20150805, 0.36, 0.01, -0.45, 0.000
+20150806, -0.88, -0.52, 1.99, 0.000
+20150807, -0.36, -0.46, -0.35, 0.000
+20150810, 1.32, 0.15, 0.69, 0.000
+20150811, -0.98, -0.08, 0.43, 0.000
+20150812, 0.07, -0.09, -0.28, 0.000
+20150813, -0.14, -0.43, 0.02, 0.000
+20150814, 0.43, 0.13, 0.43, 0.000
+20150817, 0.60, 0.44, -0.88, 0.000
+20150818, -0.35, -0.64, 0.35, 0.000
+20150819, -0.85, -0.12, -0.22, 0.000
+20150820, -2.24, -0.28, 0.60, 0.000
+20150821, -2.95, 1.82, 0.15, 0.000
+20150824, -3.90, 0.34, -0.43, 0.000
+20150825, -1.17, 0.69, -0.61, 0.000
+20150826, 3.68, -1.36, -0.38, 0.000
+20150827, 2.40, -0.68, 0.60, 0.000
+20150828, 0.23, 0.98, 0.08, 0.000
+20150831, -0.74, 0.78, 1.41, 0.000
+20150901, -2.91, 0.32, -0.50, 0.000
+20150902, 1.81, -0.16, -0.93, 0.000
+20150903, 0.17, -0.33, 0.73, 0.000
+20150904, -1.39, 0.90, -0.58, 0.000
+20150908, 2.52, -0.37, -0.56, 0.000
+20150909, -1.34, 0.16, 0.12, 0.000
+20150910, 0.49, -0.13, -0.31, 0.000
+20150911, 0.44, -0.20, -0.70, 0.000
+20150914, -0.41, 0.03, 0.01, 0.000
+20150915, 1.22, -0.19, 0.25, 0.000
+20150916, 0.84, 0.02, 0.44, 0.000
+20150917, -0.17, 0.89, -1.49, 0.000
+20150918, -1.62, 0.46, -0.96, 0.000
+20150921, 0.36, -0.94, 1.20, 0.000
+20150922, -1.29, -0.27, 0.14, 0.000
+20150923, -0.27, -0.17, -0.14, 0.000
+20150924, -0.36, 0.25, 0.56, 0.000
+20150925, -0.22, -1.66, 1.87, 0.000
+20150928, -2.63, -0.27, 1.17, 0.000
+20150929, -0.07, -0.72, 0.72, 0.000
+20150930, 1.88, -0.43, -0.48, 0.000
+20151001, 0.13, -0.45, -0.04, 0.000
+20151002, 1.48, 0.34, -0.84, 0.000
+20151005, 1.93, 0.62, 0.77, 0.000
+20151006, -0.43, -0.23, 1.73, 0.000
+20151007, 0.94, 0.70, -0.24, 0.000
+20151008, 0.84, 0.24, 0.76, 0.000
+20151009, 0.12, 0.21, -1.08, 0.000
+20151012, 0.06, -0.40, -0.07, 0.000
+20151013, -0.74, -0.73, 0.69, 0.000
+20151014, -0.60, -0.26, -0.03, 0.000
+20151015, 1.56, 0.65, -0.15, 0.000
+20151016, 0.36, -0.49, -0.35, 0.000
+20151019, 0.00, 0.16, -0.71, 0.000
+20151020, -0.15, 0.02, 1.21, 0.000
+20151021, -0.74, -0.88, -0.18, 0.000
+20151022, 1.50, -0.78, 0.47, 0.000
+20151023, 1.09, -0.01, -0.59, 0.000
+20151026, -0.20, -0.35, -0.71, 0.000
+20151027, -0.42, -0.87, -0.88, 0.000
+20151028, 1.43, 1.41, 0.63, 0.000
+20151029, -0.20, -0.88, 0.10, 0.000
+20151030, -0.41, 0.22, -0.55, 0.000
+20151102, 1.25, 0.85, -0.01, 0.000
+20151103, 0.32, 0.44, 0.22, 0.000
+20151104, -0.26, 0.34, -0.33, 0.000
+20151105, -0.08, 0.04, 0.47, 0.000
+20151106, 0.14, 0.81, 0.28, 0.000
+20151109, -0.95, -0.21, -0.04, 0.000
+20151110, 0.13, -0.01, 0.26, 0.000
+20151111, -0.43, -0.52, -0.18, 0.000
+20151112, -1.45, -0.51, -0.45, 0.000
+20151113, -1.06, 0.31, 0.39, 0.000
+20151116, 1.39, -0.57, 0.46, 0.000
+20151117, -0.11, -0.12, -0.66, 0.000
+20151118, 1.61, 0.00, -0.09, 0.000
+20151119, -0.13, -0.26, -0.11, 0.000
+20151120, 0.35, 0.43, -0.41, 0.000
+20151123, -0.01, 0.66, -0.35, 0.000
+20151124, 0.21, 0.70, 0.26, 0.000
+20151125, 0.09, 0.87, -0.56, 0.000
+20151127, 0.09, 0.22, -0.29, 0.000
+20151130, -0.47, 0.14, 0.69, 0.000
+20151201, 0.97, -0.66, 0.24, 0.000
+20151202, -1.01, 0.25, -0.70, 0.000
+20151203, -1.50, -0.22, 0.42, 0.000
+20151204, 1.87, -1.04, -0.52, 0.000
+20151207, -0.84, -0.87, -0.66, 0.000
+20151208, -0.59, 0.48, -1.23, 0.000
+20151209, -0.83, -0.33, 0.42, 0.000
+20151210, 0.30, 0.11, -0.22, 0.000
+20151211, -2.03, -0.22, -0.06, 0.000
+20151214, 0.29, -1.05, -0.20, 0.000
+20151215, 1.10, 0.03, 0.77, 0.000
+20151216, 1.47, 0.01, -0.64, 0.000
+20151217, -1.46, 0.38, -0.31, 0.000
+20151218, -1.70, 0.76, -0.39, 0.000
+20151221, 0.74, -0.17, -0.06, 0.000
+20151222, 0.89, -0.04, 0.51, 0.000
+20151223, 1.30, 0.13, 0.58, 0.000
+20151224, -0.11, 0.30, -0.03, 0.000
+20151228, -0.29, -0.48, -0.38, 0.000
+20151229, 1.05, 0.09, -0.31, 0.000
+20151230, -0.74, -0.17, -0.14, 0.000
+20151231, -0.92, -0.24, 0.24, 0.000
+20160104, -1.59, -0.83, 0.53, 0.000
+20160105, 0.12, -0.22, 0.01, 0.000
+20160106, -1.35, -0.12, 0.00, 0.000
+20160107, -2.44, -0.29, 0.08, 0.000
+20160108, -1.11, -0.47, -0.03, 0.000
+20160111, -0.06, -0.64, 0.34, 0.000
+20160112, 0.71, -0.40, -0.78, 0.000
+20160113, -2.67, -0.69, 0.78, 0.000
+20160114, 1.65, -0.01, -0.40, 0.000
+20160115, -2.14, 0.42, -0.21, 0.000
+20160119, -0.20, -1.34, -0.07, 0.000
+20160120, -0.94, 1.85, -1.24, 0.000
+20160121, 0.45, -0.50, 0.01, 0.000
+20160122, 2.08, 0.22, -0.19, 0.000
+20160125, -1.71, -0.36, -0.99, 0.000
+20160126, 1.52, 0.38, 1.22, 0.000
+20160127, -1.11, -0.54, 1.71, 0.000
+20160128, 0.49, -0.47, 1.25, 0.000
+20160129, 2.57, 0.46, 0.37, 0.000
+20160201, -0.04, -0.21, -0.96, 0.001
+20160202, -2.00, -0.03, -0.35, 0.001
+20160203, 0.46, -0.31, 0.45, 0.001
+20160204, 0.27, 0.21, 0.33, 0.001
+20160205, -2.06, -1.10, 1.75, 0.001
+20160208, -1.51, -0.03, 0.89, 0.001
+20160209, -0.10, -0.47, -0.28, 0.001
+20160210, 0.01, -0.05, -0.55, 0.001
+20160211, -1.17, 0.50, -1.48, 0.001
+20160212, 1.98, -0.55, 1.14, 0.001
+20160216, 1.78, 0.55, -0.56, 0.001
+20160217, 1.75, -0.06, -0.64, 0.001
+20160218, -0.51, 0.01, 0.23, 0.001
+20160219, 0.06, 0.43, -0.63, 0.001
+20160222, 1.43, -0.27, 0.24, 0.001
+20160223, -1.22, 0.47, -0.52, 0.001
+20160224, 0.53, 0.68, -0.33, 0.001
+20160225, 1.10, -0.43, 0.22, 0.001
+20160226, -0.01, 0.82, 0.26, 0.001
+20160229, -0.69, 0.66, 0.26, 0.001
+20160301, 2.34, -0.63, 0.30, 0.001
+20160302, 0.54, 0.50, 0.70, 0.001
+20160303, 0.51, 0.44, 0.65, 0.001
+20160304, 0.37, 0.27, 0.29, 0.001
+20160307, 0.21, 1.21, 0.55, 0.001
+20160308, -1.27, -1.14, -0.49, 0.001
+20160309, 0.50, 0.04, 0.38, 0.001
+20160310, -0.11, -0.81, 0.63, 0.001
+20160311, 1.69, 0.26, 0.19, 0.001
+20160314, -0.12, -0.07, -0.87, 0.001
+20160315, -0.36, -1.43, 0.66, 0.001
+20160316, 0.63, 0.10, -0.04, 0.001
+20160317, 0.72, 0.83, 0.58, 0.001
+20160318, 0.54, 0.34, -0.19, 0.001
+20160321, 0.10, -0.20, -0.31, 0.001
+20160322, -0.05, -0.01, -0.44, 0.001
+20160323, -0.86, -1.17, -0.09, 0.001
+20160324, 0.00, 0.46, -0.05, 0.001
+20160328, 0.04, -0.03, 0.14, 0.001
+20160329, 1.07, 1.77, -1.18, 0.001
+20160330, 0.41, -0.28, 0.15, 0.001
+20160331, -0.11, 0.44, -0.48, 0.001
+20160401, 0.64, -0.25, -0.62, 0.000
+20160404, -0.41, -0.25, -0.74, 0.000
+20160405, -0.94, -0.08, -0.36, 0.000
+20160406, 1.14, 0.17, -0.82, 0.000
+20160407, -1.23, -0.05, -0.35, 0.000
+20160408, 0.29, 0.02, 0.69, 0.000
+20160411, -0.28, -0.10, 0.95, 0.000
+20160412, 0.99, -0.06, 0.85, 0.000
+20160413, 1.23, 0.84, 0.35, 0.000
+20160414, 0.03, -0.28, 0.18, 0.000
+20160415, -0.04, 0.33, -0.32, 0.000
+20160418, 0.65, 0.09, -0.19, 0.000
+20160419, 0.29, -0.35, 1.49, 0.000
+20160420, 0.15, -0.10, 0.54, 0.000
+20160421, -0.47, 0.11, -0.60, 0.000
+20160422, 0.12, 0.82, 0.49, 0.000
+20160425, -0.24, -0.58, -0.18, 0.000
+20160426, 0.29, 0.66, 0.78, 0.000
+20160427, 0.21, 0.09, 0.68, 0.000
+20160428, -0.96, -0.15, 0.05, 0.000
+20160429, -0.50, -0.14, 0.38, 0.000
+20160502, 0.78, -0.01, -0.36, 0.001
+20160503, -1.05, -0.66, -0.50, 0.001
+20160504, -0.66, -0.15, 0.06, 0.001
+20160505, -0.08, -0.51, 0.08, 0.001
+20160506, 0.38, 0.05, 0.24, 0.001
+20160509, 0.05, 0.36, -1.49, 0.001
+20160510, 1.26, -0.40, 0.48, 0.001
+20160511, -0.89, -0.36, 0.78, 0.001
+20160512, -0.11, -0.60, 0.14, 0.001
+20160513, -0.82, 0.38, -0.66, 0.001
+20160516, 0.99, 0.28, -0.24, 0.001
+20160517, -0.95, -0.78, 0.61, 0.001
+20160518, 0.10, 0.10, 0.83, 0.001
+20160519, -0.33, -0.32, -0.30, 0.001
+20160520, 0.75, 0.90, -0.30, 0.001
+20160523, -0.18, 0.26, -0.32, 0.001
+20160524, 1.43, 0.68, -0.34, 0.001
+20160525, 0.72, -0.21, 0.57, 0.001
+20160526, -0.04, -0.09, -0.51, 0.001
+20160527, 0.49, 0.33, -0.22, 0.001
+20160531, -0.01, 0.50, -0.36, 0.001
+20160601, 0.20, 0.65, -0.24, 0.001
+20160602, 0.35, 0.31, -0.59, 0.001
+20160603, -0.38, -0.14, -0.10, 0.001
+20160606, 0.60, 0.68, 0.32, 0.001
+20160607, 0.12, 0.19, 0.10, 0.001
+20160608, 0.37, 0.45, -0.11, 0.001
+20160609, -0.27, -0.40, -0.21, 0.001
+20160610, -1.05, -0.35, -0.17, 0.001
+20160613, -0.84, -0.36, 0.10, 0.001
+20160614, -0.19, 0.27, -0.71, 0.001
+20160615, -0.11, 0.25, -0.06, 0.001
+20160616, 0.24, -0.34, -0.40, 0.001
+20160617, -0.30, -0.10, 0.94, 0.001
+20160620, 0.71, 0.61, -0.01, 0.001
+20160621, 0.21, -0.62, 0.50, 0.001
+20160622, -0.20, -0.31, 0.08, 0.001
+20160623, 1.45, 0.50, 0.43, 0.001
+20160624, -3.70, 0.15, -1.13, 0.001
+20160627, -2.07, -0.95, -0.66, 0.001
+20160628, 1.76, -0.39, 0.14, 0.001
+20160629, 1.80, 0.27, -0.07, 0.001
+20160630, 1.42, 0.35, 0.45, 0.001
+20160701, 0.24, 0.54, -0.40, 0.001
+20160705, -0.85, -0.63, -1.37, 0.001
+20160706, 0.62, 0.17, -0.12, 0.001
+20160707, 0.02, 0.35, -0.20, 0.001
+20160708, 1.60, 0.89, 0.36, 0.001
+20160711, 0.43, 0.60, 0.26, 0.001
+20160712, 0.75, 0.63, 1.00, 0.001
+20160713, -0.05, -0.53, 0.51, 0.001
+20160714, 0.51, -0.46, 0.45, 0.001
+20160715, -0.05, 0.30, 0.01, 0.001
+20160718, 0.25, -0.02, -0.12, 0.001
+20160719, -0.22, -0.63, 0.04, 0.001
+20160720, 0.48, 0.45, -0.88, 0.001
+20160721, -0.38, -0.05, -0.01, 0.001
+20160722, 0.48, 0.23, -0.08, 0.001
+20160725, -0.27, -0.03, -0.24, 0.001
+20160726, 0.13, 0.57, 0.53, 0.001
+20160727, -0.14, 0.58, -0.42, 0.001
+20160728, 0.18, -0.42, -0.35, 0.001
+20160729, 0.17, -0.02, 0.04, 0.001
+20160801, -0.16, 0.18, -0.86, 0.001
+20160802, -0.70, -0.58, 0.17, 0.001
+20160803, 0.45, 0.47, 0.84, 0.001
+20160804, 0.05, 0.08, -0.34, 0.001
+20160805, 0.93, 0.43, 0.88, 0.001
+20160808, -0.06, 0.02, 0.58, 0.001
+20160809, 0.05, -0.02, -0.32, 0.001
+20160810, -0.29, -0.44, -0.12, 0.001
+20160811, 0.54, 0.15, 0.04, 0.001
+20160812, -0.06, 0.08, -0.18, 0.001
+20160815, 0.39, 0.74, 0.40, 0.001
+20160816, -0.57, -0.26, 0.62, 0.001
+20160817, 0.12, -0.55, 0.25, 0.001
+20160818, 0.32, 0.46, 0.37, 0.001
+20160819, -0.11, 0.12, -0.12, 0.001
+20160822, -0.02, 0.25, -0.41, 0.001
+20160823, 0.27, 0.56, -0.01, 0.001
+20160824, -0.56, -0.48, 0.40, 0.001
+20160825, -0.08, 0.19, 0.48, 0.001
+20160826, -0.15, 0.15, -0.13, 0.001
+20160829, 0.53, -0.07, 0.35, 0.001
+20160830, -0.14, 0.10, 0.31, 0.001
+20160831, -0.24, -0.38, 0.13, 0.001
+20160901, 0.03, 0.12, -0.49, 0.001
+20160902, 0.53, 0.39, 0.36, 0.001
+20160906, 0.26, 0.07, -0.53, 0.001
+20160907, 0.09, 0.62, 0.03, 0.001
+20160908, -0.18, -0.03, 0.57, 0.001
+20160909, -2.47, -0.56, 0.31, 0.001
+20160912, 1.44, 0.00, -0.46, 0.001
+20160913, -1.48, -0.25, -0.47, 0.001
+20160914, -0.08, 0.12, -0.82, 0.001
+20160915, 1.07, 0.31, -0.33, 0.001
+20160916, -0.36, 0.33, -0.45, 0.001
+20160919, 0.05, 0.39, 0.17, 0.001
+20160920, -0.02, -0.21, -0.51, 0.001
+20160921, 1.12, 0.14, 0.33, 0.001
+20160922, 0.70, 0.85, -0.06, 0.001
+20160923, -0.60, -0.11, -0.20, 0.001
+20160926, -0.88, -0.22, -0.35, 0.001
+20160927, 0.64, -0.08, -0.53, 0.001
+20160928, 0.56, 0.22, 1.10, 0.001
+20160929, -0.98, -0.41, 0.54, 0.001
+20160930, 0.88, 0.37, 0.35, 0.001
+20161003, -0.26, -0.03, -0.13, 0.001
+20161004, -0.46, 0.03, 0.09, 0.001
+20161005, 0.58, 0.28, 0.78, 0.001
+20161006, -0.06, -0.27, 0.36, 0.001
+20161007, -0.38, -0.51, 0.16, 0.001
+20161010, 0.52, 0.58, 0.01, 0.001
+20161011, -1.30, -0.60, 0.48, 0.001
+20161012, 0.06, -0.23, 0.37, 0.001
+20161013, -0.42, -0.67, -0.62, 0.001
+20161014, 0.01, -0.37, 0.56, 0.001
+20161017, -0.29, -0.05, 0.15, 0.001
+20161018, 0.60, -0.17, 0.02, 0.001
+20161019, 0.25, 0.05, 0.92, 0.001
+20161020, -0.16, -0.02, -0.11, 0.001
+20161021, 0.02, -0.13, -0.32, 0.001
+20161024, 0.54, 0.05, -0.17, 0.001
+20161025, -0.46, -0.59, 0.23, 0.001
+20161026, -0.23, -0.86, 0.74, 0.001
+20161027, -0.33, -0.95, 0.62, 0.001
+20161028, -0.29, -0.10, 0.10, 0.001
+20161031, 0.02, 0.02, 0.13, 0.001
+20161101, -0.68, -0.35, 0.17, 0.001
+20161102, -0.73, -0.66, 0.36, 0.001
+20161103, -0.40, -0.46, 1.02, 0.001
+20161104, -0.12, 0.85, -0.43, 0.001
+20161107, 2.23, 0.19, -0.16, 0.001
+20161108, 0.40, -0.08, -0.20, 0.001
+20161109, 1.46, 1.83, 1.01, 0.001
+20161110, 0.32, 1.14, 1.82, 0.001
+20161111, 0.18, 2.50, -0.03, 0.001
+20161114, 0.21, 0.58, 1.42, 0.001
+20161115, 0.80, -0.55, 0.13, 0.001
+20161116, -0.12, 0.29, -0.56, 0.001
+20161117, 0.56, 0.13, -0.12, 0.001
+20161118, -0.16, 0.55, 0.38, 0.001
+20161121, 0.77, -0.25, 0.08, 0.001
+20161122, 0.31, 0.54, 0.58, 0.001
+20161123, 0.16, 0.51, 0.17, 0.001
+20161125, 0.40, -0.08, -0.24, 0.001
+20161128, -0.64, -0.76, 0.07, 0.001
+20161129, 0.11, -0.36, -0.06, 0.001
+20161130, -0.25, -0.38, 2.25, 0.001
+20161201, -0.36, -0.67, 2.05, 0.001
+20161202, 0.00, 0.06, -0.31, 0.001
+20161205, 0.75, 1.08, 0.28, 0.001
+20161206, 0.48, 0.63, 0.23, 0.001
+20161207, 1.26, -0.63, 0.53, 0.001
+20161208, 0.36, 1.15, 0.58, 0.001
+20161209, 0.46, -0.27, 0.13, 0.001
+20161212, -0.30, -0.93, -0.10, 0.001
+20161213, 0.60, -0.51, -0.29, 0.001
+20161214, -0.82, -0.36, -0.28, 0.001
+20161215, 0.46, 0.37, 0.28, 0.001
+20161216, -0.22, 0.05, -0.42, 0.001
+20161219, 0.22, 0.32, 0.08, 0.001
+20161220, 0.44, 0.43, 0.68, 0.001
+20161221, -0.24, -0.37, 0.24, 0.001
+20161222, -0.30, -0.75, 0.24, 0.001
+20161223, 0.19, 0.56, -0.51, 0.001
+20161227, 0.27, 0.21, 0.13, 0.001
+20161228, -0.87, -0.27, 0.09, 0.001
+20161229, -0.04, 0.14, -0.31, 0.001
+20161230, -0.52, -0.11, 0.20, 0.001
+20170103, 0.83, -0.11, 0.08, 0.002
+20170104, 0.79, 0.96, -0.15, 0.002
+20170105, -0.21, -0.87, -0.80, 0.002
+20170106, 0.29, -0.62, -0.31, 0.002
+20170109, -0.37, -0.27, -1.04, 0.002
+20170110, 0.16, 0.97, 0.57, 0.002
+20170111, 0.31, -0.31, 0.53, 0.002
+20170112, -0.30, -0.57, -0.88, 0.002
+20170113, 0.29, 0.63, -0.08, 0.002
+20170117, -0.49, -0.86, -0.60, 0.002
+20170118, 0.24, 0.17, 0.23, 0.002
+20170119, -0.38, -0.50, -0.03, 0.002
+20170120, 0.33, 0.06, 0.18, 0.002
+20170123, -0.29, -0.03, -0.31, 0.002
+20170124, 0.83, 0.68, 0.81, 0.002
+20170125, 0.84, 0.15, 0.36, 0.002
+20170126, -0.10, -0.62, 0.38, 0.002
+20170127, -0.12, 0.03, -0.67, 0.002
+20170130, -0.68, -0.72, -0.42, 0.002
+20170131, 0.00, 0.88, -0.55, 0.002
+20170201, 0.04, -0.05, 0.03, 0.002
+20170202, -0.02, -0.26, -0.31, 0.002
+20170203, 0.82, 0.54, 0.64, 0.002
+20170206, -0.27, -0.57, -0.20, 0.002
+20170207, -0.01, -0.31, -0.52, 0.002
+20170208, 0.06, -0.24, -0.53, 0.002
+20170209, 0.72, 0.70, 0.03, 0.002
+20170210, 0.38, 0.38, 0.12, 0.002
+20170213, 0.49, -0.32, 0.33, 0.002
+20170214, 0.45, -0.23, 0.33, 0.002
+20170215, 0.54, 0.18, -0.44, 0.002
+20170216, -0.16, -0.21, -0.04, 0.002
+20170217, 0.20, -0.02, -0.57, 0.002
+20170221, 0.60, -0.03, 0.13, 0.002
+20170222, -0.15, -0.38, 0.12, 0.002
+20170223, -0.11, -0.68, 0.25, 0.002
+20170224, 0.15, 0.04, -0.92, 0.002
+20170227, 0.22, 0.82, -0.35, 0.002
+20170228, -0.42, -1.38, 0.19, 0.002
+20170301, 1.47, 0.42, 0.72, 0.001
+20170302, -0.70, -0.53, -0.89, 0.001
+20170303, 0.09, -0.22, 0.14, 0.001
+20170306, -0.38, -0.35, -0.10, 0.001
+20170307, -0.36, -0.29, -0.05, 0.001
+20170308, -0.19, -0.11, -0.82, 0.001
+20170309, 0.04, -0.46, -0.27, 0.001
+20170310, 0.34, 0.09, -0.39, 0.001
+20170313, 0.13, 0.33, -0.02, 0.001
+20170314, -0.36, -0.23, 0.03, 0.001
+20170315, 0.86, 0.74, -0.40, 0.001
+20170316, -0.06, 0.45, 0.24, 0.001
+20170317, -0.08, 0.62, -0.26, 0.001
+20170320, -0.25, -0.07, -0.75, 0.001
+20170321, -1.48, -1.33, -0.69, 0.001
+20170322, 0.16, -0.31, -0.54, 0.001
+20170323, -0.03, 0.69, 0.46, 0.001
+20170324, -0.05, 0.13, -0.24, 0.001
+20170327, -0.05, 0.56, -0.52, 0.001
+20170328, 0.72, -0.15, 0.71, 0.001
+20170329, 0.18, 0.40, -0.06, 0.001
+20170330, 0.36, 0.33, 0.93, 0.001
+20170331, -0.16, 0.58, -0.30, 0.001
+20170403, -0.28, -1.10, -0.11, 0.003
+20170404, 0.05, -0.22, 0.31, 0.003
+20170405, -0.44, -0.79, -0.31, 0.003
+20170406, 0.32, 0.69, 0.49, 0.003
+20170407, -0.08, 0.13, -0.26, 0.003
+20170410, 0.08, 0.10, 0.10, 0.003
+20170411, -0.05, 0.80, 0.25, 0.003
+20170412, -0.49, -0.84, -0.53, 0.003
+20170413, -0.75, -0.24, -0.80, 0.003
+20170417, 0.89, 0.24, 0.22, 0.003
+20170418, -0.25, 0.35, -0.16, 0.003
+20170419, -0.08, 0.59, -0.38, 0.003
+20170420, 0.83, 0.52, 0.27, 0.003
+20170421, -0.28, 0.10, -0.14, 0.003
+20170424, 1.18, 0.17, 0.52, 0.003
+20170425, 0.66, 0.36, -0.05, 0.003
+20170426, 0.04, 0.71, 0.33, 0.003
+20170427, 0.05, -0.14, -0.96, 0.003
+20170428, -0.30, -0.67, -0.59, 0.003
+20170501, 0.21, 0.26, -0.13, 0.003
+20170502, 0.03, -0.46, -0.21, 0.003
+20170503, -0.19, -0.54, 0.19, 0.003
+20170504, 0.02, -0.07, -0.36, 0.003
+20170505, 0.46, 0.06, 0.04, 0.003
+20170508, -0.04, -0.25, 0.28, 0.003
+20170509, -0.05, 0.50, -0.79, 0.003
+20170510, 0.21, 0.20, 0.02, 0.003
+20170511, -0.26, -0.36, -0.14, 0.003
+20170512, -0.18, -0.29, -0.61, 0.003
+20170515, 0.53, 0.26, 0.19, 0.003
+20170516, -0.03, 0.15, -0.09, 0.003
+20170517, -1.97, -0.89, -0.54, 0.003
+20170518, 0.40, 0.05, -0.40, 0.003
+20170519, 0.70, -0.38, 0.40, 0.003
+20170522, 0.56, 0.28, -0.31, 0.003
+20170523, 0.18, -0.09, 0.60, 0.003
+20170524, 0.24, -0.15, -0.49, 0.003
+20170525, 0.42, -0.28, -0.77, 0.003
+20170526, 0.06, -0.02, 0.10, 0.003
+20170530, -0.19, -0.50, -0.32, 0.003
+20170531, -0.02, 0.03, -0.56, 0.003
+20170601, 0.95, 0.98, 0.04, 0.003
+20170602, 0.35, 0.55, -0.80, 0.003
+20170605, -0.17, -0.46, 0.00, 0.003
+20170606, -0.28, 0.10, -0.07, 0.003
+20170607, 0.15, -0.19, 0.02, 0.003
+20170608, 0.18, 1.16, 0.92, 0.003
+20170609, -0.12, 0.02, 2.39, 0.003
+20170612, -0.11, -0.27, 0.35, 0.003
+20170613, 0.55, 0.09, -0.14, 0.003
+20170614, -0.17, -0.48, -0.56, 0.003
+20170615, -0.30, -0.24, -0.12, 0.003
+20170616, -0.03, -0.21, -0.17, 0.003
+20170619, 0.86, 0.10, -0.76, 0.003
+20170620, -0.73, -0.40, -0.50, 0.003
+20170621, -0.07, -0.05, -1.69, 0.003
+20170622, 0.02, 0.52, -0.42, 0.003
+20170623, 0.24, 0.83, -0.50, 0.003
+20170626, 0.04, -0.05, 0.69, 0.003
+20170627, -0.85, -0.39, 1.33, 0.003
+20170628, 1.02, 0.75, 0.22, 0.003
+20170629, -0.83, -0.11, 1.37, 0.003
+20170630, 0.14, -0.09, -0.24, 0.003
+20170703, 0.24, 0.33, 1.23, 0.004
+20170705, 0.12, -0.69, -0.60, 0.004
+20170706, -0.95, -0.49, 0.10, 0.004
+20170707, 0.70, 0.43, -0.42, 0.004
+20170710, 0.05, -0.42, -0.11, 0.004
+20170711, 0.00, 0.38, -0.53, 0.004
+20170712, 0.72, 0.14, -0.55, 0.004
+20170713, 0.17, -0.06, 0.37, 0.004
+20170714, 0.42, -0.12, -0.51, 0.004
+20170717, 0.00, 0.21, 0.13, 0.004
+20170718, 0.04, -0.28, -0.36, 0.004
+20170719, 0.59, 0.53, 0.04, 0.004
+20170720, -0.01, 0.05, -0.01, 0.004
+20170721, -0.08, -0.42, -0.28, 0.004
+20170724, -0.03, 0.13, -0.21, 0.004
+20170725, 0.38, 0.33, 0.99, 0.004
+20170726, -0.06, -0.35, -0.69, 0.004
+20170727, -0.14, -0.63, 0.47, 0.004
+20170728, -0.17, -0.05, 0.23, 0.004
+20170731, -0.11, -0.35, 0.47, 0.004
+20170801, 0.24, -0.24, 0.18, 0.004
+20170802, -0.08, -1.17, 0.15, 0.004
+20170803, -0.21, -0.35, -0.28, 0.004
+20170804, 0.25, 0.32, 0.34, 0.004
+20170807, 0.16, -0.08, -0.60, 0.004
+20170808, -0.24, -0.08, 0.22, 0.004
+20170809, -0.14, -0.76, -0.09, 0.004
+20170810, -1.49, -0.31, 0.26, 0.004
+20170811, 0.20, 0.25, -0.89, 0.004
+20170814, 1.03, 0.26, 0.08, 0.004
+20170815, -0.11, -0.84, -0.03, 0.004
+20170816, 0.18, -0.12, -0.45, 0.004
+20170817, -1.59, -0.16, -0.15, 0.004
+20170818, -0.15, 0.14, 0.20, 0.004
+20170821, 0.06, -0.27, -0.21, 0.004
+20170822, 1.06, 0.00, -0.27, 0.004
+20170823, -0.32, 0.11, 0.39, 0.004
+20170824, -0.14, 0.59, 0.18, 0.004
+20170825, 0.18, 0.11, 0.60, 0.004
+20170828, 0.08, 0.35, -0.72, 0.004
+20170829, 0.10, 0.14, -0.40, 0.004
+20170830, 0.53, 0.03, -0.32, 0.004
+20170831, 0.62, 0.49, -0.43, 0.004
+20170901, 0.27, 0.40, 0.45, 0.005
+20170905, -0.81, 0.10, -0.95, 0.005
+20170906, 0.28, -0.04, 0.14, 0.005
+20170907, -0.07, 0.18, -0.94, 0.005
+20170908, -0.16, 0.03, 0.37, 0.005
+20170911, 1.08, -0.12, 0.65, 0.005
+20170912, 0.43, 0.24, 0.70, 0.005
+20170913, 0.11, 0.31, 0.35, 0.005
+20170914, -0.12, -0.05, -0.04, 0.005
+20170915, 0.19, 0.28, 0.13, 0.005
+20170918, 0.24, 0.37, 0.22, 0.005
+20170919, 0.15, -0.27, 0.34, 0.005
+20170920, 0.16, 0.23, 0.50, 0.005
+20170921, -0.28, 0.10, 0.36, 0.005
+20170922, 0.12, 0.43, 0.13, 0.005
+20170925, -0.25, 0.29, 0.64, 0.005
+20170926, 0.05, 0.39, 0.11, 0.005
+20170927, 0.63, 1.40, 0.12, 0.005
+20170928, 0.13, 0.16, -0.08, 0.005
+20170929, 0.35, -0.11, -0.28, 0.005
+20171002, 0.50, 0.83, 0.19, 0.004
+20171003, 0.26, -0.03, -0.03, 0.004
+20171004, 0.05, -0.29, -0.42, 0.004
+20171005, 0.55, -0.32, 0.31, 0.004
+20171006, -0.08, -0.06, -0.27, 0.004
+20171009, -0.22, -0.27, -0.04, 0.004
+20171010, 0.24, -0.03, 0.43, 0.004
+20171011, 0.16, -0.17, -0.26, 0.004
+20171012, -0.18, 0.06, -0.50, 0.004
+20171013, 0.04, -0.21, 0.11, 0.004
+20171016, 0.17, -0.28, 0.37, 0.004
+20171017, 0.01, -0.32, -0.27, 0.004
+20171018, 0.14, 0.31, 0.22, 0.004
+20171019, 0.02, -0.40, 0.20, 0.004
+20171020, 0.57, -0.08, 0.28, 0.004
+20171023, -0.45, -0.44, 0.17, 0.004
+20171024, 0.20, -0.18, 0.45, 0.004
+20171025, -0.51, 0.00, 0.09, 0.004
+20171026, 0.20, 0.04, 0.24, 0.004
+20171027, 0.82, 0.03, -1.10, 0.004
+20171030, -0.46, -0.78, -0.06, 0.004
+20171031, 0.23, 0.81, -0.21, 0.004
+20171101, 0.05, -0.79, 0.13, 0.004
+20171102, 0.06, -0.04, 0.48, 0.004
+20171103, 0.31, -0.41, -0.70, 0.004
+20171106, 0.06, 0.21, 0.22, 0.004
+20171107, -0.20, -1.35, -0.39, 0.004
+20171108, 0.12, 0.07, -0.61, 0.004
+20171109, -0.41, -0.03, 0.21, 0.004
+20171110, 0.01, 0.04, -0.37, 0.004
+20171113, 0.09, -0.30, 0.03, 0.004
+20171114, -0.22, -0.13, -0.01, 0.004
+20171115, -0.52, -0.06, 0.22, 0.004
+20171116, 1.01, 0.84, -0.52, 0.004
+20171117, -0.14, 0.74, 0.32, 0.004
+20171120, 0.21, 0.56, 0.01, 0.004
+20171121, 0.67, 0.42, -0.37, 0.004
+20171122, -0.05, 0.10, -0.04, 0.004
+20171124, 0.21, 0.03, -0.45, 0.004
+20171127, -0.06, -0.35, -0.02, 0.004
+20171128, 1.06, 0.36, 0.89, 0.004
+20171129, 0.02, -0.01, 1.48, 0.004
+20171130, 0.82, -0.56, -0.51, 0.004
+20171201, -0.22, -0.39, 0.40, 0.004
+20171204, -0.10, -0.37, 1.24, 0.004
+20171205, -0.43, -0.42, -0.26, 0.004
+20171206, -0.09, -0.44, -0.55, 0.004
+20171207, 0.42, 0.27, -0.18, 0.004
+20171208, 0.51, -0.44, -0.11, 0.004
+20171211, 0.26, -0.40, -0.14, 0.004
+20171212, 0.07, -0.55, 0.52, 0.004
+20171213, 0.02, 0.72, -0.87, 0.004
+20171214, -0.47, -0.68, -0.23, 0.004
+20171215, 0.92, 0.69, 0.02, 0.004
+20171218, 0.67, 0.75, 0.24, 0.004
+20171219, -0.30, -0.36, -0.25, 0.004
+20171220, 0.01, 0.34, 0.07, 0.004
+20171221, 0.24, 0.26, 0.63, 0.004
+20171222, -0.07, -0.24, -0.22, 0.004
+20171226, -0.07, 0.33, -0.05, 0.004
+20171227, 0.05, -0.14, -0.17, 0.004
+20171228, 0.22, 0.11, 0.04, 0.004
+20171229, -0.57, -0.30, 0.00, 0.004
+20180102, 0.85, 0.37, -0.25, 0.005
+20180103, 0.59, -0.37, -0.23, 0.005
+20180104, 0.42, -0.25, 0.25, 0.005
+20180105, 0.66, -0.33, -0.28, 0.005
+20180108, 0.19, -0.16, 0.07, 0.005
+20180109, 0.15, -0.35, -0.01, 0.005
+20180110, -0.07, 0.08, 0.55, 0.005
+20180111, 0.87, 1.14, 0.31, 0.005
+20180112, 0.66, -0.29, 0.15, 0.005
+20180116, -0.49, -1.01, -0.04, 0.005
+20180117, 0.95, -0.02, -0.14, 0.005
+20180118, -0.18, -0.50, -0.25, 0.005
+20180119, 0.57, 0.94, -0.08, 0.005
+20180122, 0.77, -0.33, -0.16, 0.005
+20180123, 0.22, 0.15, -0.35, 0.005
+20180124, -0.13, -0.79, 0.39, 0.005
+20180125, 0.07, 0.18, -0.51, 0.005
+20180126, 1.11, -0.63, -0.48, 0.005
+20180129, -0.62, -0.02, -0.27, 0.005
+20180130, -1.06, 0.12, -0.17, 0.005
+20180131, -0.07, -0.71, 0.04, 0.005
+20180201, 0.03, 0.10, 0.51, 0.006
+20180202, -2.13, 0.00, -0.19, 0.006
+20180205, -4.03, 0.76, -0.54, 0.006
+20180206, 1.67, -0.48, -0.24, 0.006
+20180207, -0.37, 0.46, 0.32, 0.006
+20180208, -3.68, 0.81, 0.48, 0.006
+20180209, 1.36, -0.58, 0.08, 0.006
+20180212, 1.36, -0.44, -0.26, 0.006
+20180213, 0.31, 0.05, -0.23, 0.006
+20180214, 1.52, 0.27, 0.44, 0.006
+20180215, 1.21, -0.12, -0.66, 0.006
+20180216, 0.03, 0.35, 0.12, 0.006
+20180220, -0.62, -0.32, -0.28, 0.006
+20180221, -0.43, 0.79, 0.17, 0.006
+20180222, 0.01, 0.04, -0.37, 0.006
+20180223, 1.54, -0.37, -0.15, 0.006
+20180226, 1.12, -0.48, -0.08, 0.006
+20180227, -1.25, -0.21, 0.05, 0.006
+20180228, -1.10, -0.41, -0.31, 0.006
+20180301, -1.18, 0.99, 0.01, 0.006
+20180302, 0.70, 1.16, -0.51, 0.006
+20180305, 1.06, -0.39, 0.25, 0.006
+20180306, 0.36, 0.67, 0.10, 0.006
+20180307, 0.05, 0.83, -0.49, 0.006
+20180308, 0.37, -0.47, -0.34, 0.006
+20180309, 1.70, -0.25, 0.23, 0.006
+20180312, -0.09, 0.46, -0.07, 0.006
+20180313, -0.67, 0.08, 0.05, 0.006
+20180314, -0.53, 0.25, -0.58, 0.006
+20180315, -0.18, -0.40, 0.30, 0.006
+20180316, 0.25, 0.44, 0.24, 0.006
+20180319, -1.38, 0.31, 0.45, 0.006
+20180320, 0.15, -0.06, -0.36, 0.006
+20180321, -0.06, 0.74, 0.46, 0.006
+20180322, -2.54, 0.47, -0.43, 0.006
+20180323, -2.09, 0.20, -0.18, 0.006
+20180326, 2.67, -0.68, 0.02, 0.006
+20180327, -1.87, -0.29, 0.46, 0.006
+20180328, -0.35, 0.11, 0.64, 0.006
+20180329, 1.41, -0.27, -0.24, 0.006
+20180402, -2.29, -0.14, 0.40, 0.007
+20180403, 1.24, -0.05, 0.19, 0.007
+20180404, 1.17, 0.33, -0.30, 0.007
+20180405, 0.75, 0.03, 0.50, 0.007
+20180406, -2.19, 0.40, -0.06, 0.007
+20180409, 0.30, -0.15, -0.50, 0.007
+20180410, 1.77, 0.39, -0.11, 0.007
+20180411, -0.49, 0.91, -0.29, 0.007
+20180412, 0.84, -0.21, 0.19, 0.007
+20180413, -0.37, 0.02, -0.25, 0.007
+20180416, 0.82, 0.08, -0.05, 0.007
+20180417, 1.09, 0.20, -1.22, 0.007
+20180418, 0.13, 0.23, 0.01, 0.007
+20180419, -0.49, -0.45, 1.01, 0.007
+20180420, -0.81, 0.05, 0.62, 0.007
+20180423, -0.05, -0.09, 0.20, 0.007
+20180424, -1.30, 0.47, 1.05, 0.007
+20180425, 0.10, -0.34, 0.02, 0.007
+20180426, 0.96, -0.36, -0.89, 0.007
+20180427, 0.01, -0.27, 0.10, 0.007
+20180430, -0.80, 0.03, -0.06, 0.007
+20180501, 0.24, 0.25, -0.58, 0.006
+20180502, -0.63, 1.26, -0.25, 0.006
+20180503, -0.25, -0.49, -0.17, 0.006
+20180504, 1.30, 0.04, -0.25, 0.006
+20180507, 0.42, 0.44, -0.36, 0.006
+20180508, 0.07, 0.48, 0.28, 0.006
+20180509, 0.89, -0.17, 0.20, 0.006
+20180510, 0.84, -0.43, -0.06, 0.006
+20180511, 0.19, 0.11, -0.36, 0.006
+20180514, 0.05, -0.35, 0.08, 0.006
+20180515, -0.55, 0.67, 0.44, 0.006
+20180516, 0.49, 0.70, -0.23, 0.006
+20180517, 0.02, 0.90, 0.25, 0.006
+20180518, -0.23, 0.56, -0.55, 0.006
+20180521, 0.72, -0.21, 0.42, 0.006
+20180522, -0.42, -0.76, 0.60, 0.006
+20180523, 0.29, 0.07, -0.72, 0.006
+20180524, -0.16, 0.35, -0.31, 0.006
+20180525, -0.21, 0.22, -0.39, 0.006
+20180529, -1.03, 1.32, -1.01, 0.006
+20180530, 1.31, 0.05, 0.37, 0.006
+20180531, -0.70, 0.11, -0.45, 0.006
+20180601, 1.06, -0.19, -0.17, 0.006
+20180604, 0.48, 0.19, -0.49, 0.006
+20180605, 0.16, 0.83, -0.40, 0.006
+20180606, 0.86, -0.35, 0.19, 0.006
+20180607, -0.14, -0.31, 0.93, 0.006
+20180608, 0.31, 0.08, -0.38, 0.006
+20180611, 0.12, 0.18, -0.16, 0.006
+20180612, 0.23, 0.25, -0.62, 0.006
+20180613, -0.33, 0.11, -0.21, 0.006
+20180614, 0.27, 0.34, -1.01, 0.006
+20180615, -0.08, 0.04, -0.25, 0.006
+20180618, -0.09, 0.78, 0.03, 0.006
+20180619, -0.38, 0.55, -0.18, 0.006
+20180620, 0.23, 0.74, -0.51, 0.006
+20180621, -0.73, -0.63, 0.33, 0.006
+20180622, 0.11, 0.00, 0.44, 0.006
+20180625, -1.48, -0.60, 0.58, 0.006
+20180626, 0.27, 0.60, -0.18, 0.006
+20180627, -1.02, -1.00, 0.40, 0.006
+20180628, 0.58, -0.16, -0.52, 0.006
+20180629, 0.07, -0.19, -0.25, 0.006
+20180702, 0.36, 0.42, -0.32, 0.008
+20180703, -0.44, 0.77, 0.08, 0.008
+20180705, 0.87, 0.42, -0.40, 0.008
+20180706, 0.87, 0.07, -0.37, 0.008
+20180709, 0.93, -0.37, 0.77, 0.008
+20180710, 0.21, -0.81, -0.08, 0.008
+20180711, -0.69, -0.01, -0.52, 0.008
+20180712, 0.86, -0.32, -1.09, 0.008
+20180713, 0.08, -0.12, -0.28, 0.008
+20180716, -0.16, -0.74, 0.85, 0.008
+20180717, 0.48, 0.24, -0.69, 0.008
+20180718, 0.27, -0.25, 0.61, 0.008
+20180719, -0.34, 0.97, -0.37, 0.008
+20180720, -0.10, -0.16, 0.07, 0.008
+20180723, 0.15, -0.24, 0.36, 0.008
+20180724, 0.22, -1.38, 0.52, 0.008
+20180725, 0.83, -0.39, -1.22, 0.008
+20180726, -0.20, 0.63, 0.61, 0.008
+20180727, -0.82, -1.39, 1.17, 0.008
+20180730, -0.70, -0.25, 1.66, 0.008
+20180731, 0.51, 0.77, -0.96, 0.008
+20180801, -0.13, 0.09, -0.29, 0.007
+20180802, 0.67, 0.35, -0.75, 0.007
+20180803, 0.31, -1.07, 0.56, 0.007
+20180806, 0.46, 0.26, -0.33, 0.007
+20180807, 0.29, 0.00, -0.15, 0.007
+20180808, -0.04, -0.13, 0.22, 0.007
+20180809, -0.05, 0.35, -0.32, 0.007
+20180810, -0.60, 0.43, -0.23, 0.007
+20180813, -0.46, -0.16, -0.30, 0.007
+20180814, 0.69, 0.29, 0.23, 0.007
+20180815, -0.91, -0.57, -0.11, 0.007
+20180816, 0.86, -0.08, 0.27, 0.007
+20180817, 0.30, 0.08, 0.04, 0.007
+20180820, 0.25, 0.12, 0.18, 0.007
+20180821, 0.33, 0.88, 0.14, 0.007
+20180822, 0.05, 0.41, -0.47, 0.007
+20180823, -0.19, -0.06, -0.32, 0.007
+20180824, 0.62, -0.04, -0.52, 0.007
+20180827, 0.74, -0.69, -0.12, 0.007
+20180828, -0.01, -0.12, -0.29, 0.007
+20180829, 0.56, -0.04, -0.59, 0.007
+20180830, -0.41, 0.30, -0.43, 0.007
+20180831, 0.08, 0.50, -0.44, 0.007
+20180904, -0.11, -0.34, -0.08, 0.008
+20180905, -0.41, -0.19, 0.70, 0.008
+20180906, -0.44, -0.40, -0.12, 0.008
+20180907, -0.18, 0.09, -0.21, 0.008
+20180910, 0.23, 0.10, -0.33, 0.008
+20180911, 0.37, -0.29, -0.21, 0.008
+20180912, 0.03, -0.09, -0.06, 0.008
+20180913, 0.45, -0.46, -0.36, 0.008
+20180914, 0.12, 0.26, 0.25, 0.008
+20180917, -0.71, -0.47, 0.92, 0.008
+20180918, 0.57, 0.06, -0.54, 0.008
+20180919, 0.06, -0.61, 1.17, 0.008
+20180920, 0.77, 0.29, -0.19, 0.008
+20180921, -0.13, -0.43, 0.39, 0.008
+20180924, -0.31, 0.03, -0.88, 0.008
+20180925, -0.05, 0.30, -0.44, 0.008
+20180926, -0.40, -0.40, -0.58, 0.008
+20180927, 0.27, -0.26, -0.57, 0.008
+20180928, -0.03, 0.41, -0.20, 0.008
+20181001, 0.16, -1.62, 0.38, 0.008
+20181002, -0.21, -1.00, 0.67, 0.008
+20181003, 0.20, 0.88, 0.43, 0.008
+20181004, -0.93, -1.05, 1.55, 0.008
+20181005, -0.64, -0.40, 0.41, 0.008
+20181008, -0.17, -0.38, 1.20, 0.008
+20181009, -0.18, -0.25, 0.16, 0.008
+20181010, -3.33, 0.27, 1.16, 0.008
+20181011, -1.96, 0.42, -0.89, 0.008
+20181012, 1.38, -0.89, -1.70, 0.008
+20181015, -0.48, 0.92, 0.47, 0.008
+20181016, 2.24, 0.68, -1.46, 0.008
+20181017, -0.08, -0.64, 0.18, 0.008
+20181018, -1.54, -0.57, 0.53, 0.008
+20181019, -0.25, -1.32, 0.79, 0.008
+20181022, -0.38, 0.43, -1.19, 0.008
+20181023, -0.62, -0.16, -0.33, 0.008
+20181024, -3.33, -0.89, 0.64, 0.008
+20181025, 1.93, 0.47, -0.73, 0.008
+20181026, -1.65, 0.56, 0.37, 0.008
+20181029, -0.77, -0.30, 1.64, 0.008
+20181030, 1.66, 0.37, 0.10, 0.008
+20181031, 1.22, -0.67, -0.69, 0.008
+20181101, 1.29, 1.31, -1.11, 0.008
+20181102, -0.53, 0.80, 0.65, 0.008
+20181105, 0.40, -0.99, 1.56, 0.008
+20181106, 0.58, -0.17, 0.04, 0.008
+20181107, 2.11, -0.35, -0.98, 0.008
+20181108, -0.28, -0.23, 0.23, 0.008
+20181109, -1.04, -0.86, 0.38, 0.008
+20181112, -2.06, -0.03, 0.98, 0.008
+20181113, -0.13, -0.12, 0.08, 0.008
+20181114, -0.77, -0.01, -0.20, 0.008
+20181115, 1.18, 0.38, -0.56, 0.008
+20181116, 0.15, -0.01, -0.01, 0.008
+20181119, -1.88, -0.66, 2.34, 0.008
+20181120, -1.85, 0.12, -0.63, 0.008
+20181121, 0.51, 0.98, -0.29, 0.008
+20181123, -0.55, 0.79, -0.58, 0.008
+20181126, 1.62, -0.68, -0.18, 0.008
+20181127, 0.11, -1.08, 0.29, 0.008
+20181128, 2.42, 0.48, -1.27, 0.008
+20181129, -0.22, -0.12, -0.17, 0.008
+20181130, 0.78, -0.36, -0.38, 0.008
+20181203, 1.13, -0.07, -0.70, 0.010
+20181204, -3.45, -0.98, -0.10, 0.010
+20181206, -0.16, 0.09, -1.00, 0.010
+20181207, -2.36, 0.21, 1.29, 0.010
+20181210, 0.10, -0.22, -1.57, 0.010
+20181211, -0.08, -0.08, -0.35, 0.010
+20181212, 0.68, 0.55, -0.14, 0.010
+20181213, -0.26, -1.50, -0.17, 0.010
+20181214, -1.89, -0.10, 0.60, 0.010
+20181217, -2.13, -0.26, 0.99, 0.010
+20181218, -0.03, -0.01, -0.55, 0.010
+20181219, -1.58, -0.66, 0.18, 0.010
+20181220, -1.62, -0.23, 0.77, 0.010
+20181221, -2.17, -0.58, 0.84, 0.010
+20181224, -2.55, 0.99, -0.46, 0.010
+20181226, 5.06, -0.01, -1.06, 0.010
+20181227, 0.78, -0.68, -0.09, 0.010
+20181228, -0.03, 0.76, 0.24, 0.010
+20181231, 0.90, -0.09, -0.47, 0.010
+20190102, 0.23, 0.57, 1.16, 0.010
+20190103, -2.45, 0.39, 1.23, 0.010
+20190104, 3.55, 0.44, -0.74, 0.010
+20190107, 0.94, 0.93, -0.67, 0.010
+20190108, 1.01, 0.49, -0.53, 0.010
+20190109, 0.56, 0.50, -0.04, 0.010
+20190110, 0.42, 0.01, -0.41, 0.010
+20190111, -0.01, 0.10, 0.29, 0.010
+20190114, -0.60, -0.58, 0.88, 0.010
+20190115, 1.06, 0.01, -0.89, 0.010
+20190116, 0.28, 0.10, 0.83, 0.010
+20190117, 0.75, 0.10, -0.19, 0.010
+20190118, 1.29, -0.34, 0.11, 0.010
+20190122, -1.53, -0.39, 0.31, 0.010
+20190123, 0.15, -0.41, -0.13, 0.010
+20190124, 0.23, 0.45, -0.10, 0.010
+20190125, 0.90, 0.47, -0.36, 0.010
+20190128, -0.80, -0.17, 0.66, 0.010
+20190129, -0.19, 0.00, 0.17, 0.010
+20190130, 1.51, -0.10, -1.07, 0.010
+20190131, 0.92, 0.14, -1.08, 0.010
+20190201, 0.14, -0.12, 0.34, 0.010
+20190204, 0.72, 0.52, -0.58, 0.010
+20190205, 0.43, -0.09, -0.57, 0.010
+20190206, -0.22, -0.01, 0.01, 0.010
+20190207, -0.93, -0.14, 0.41, 0.010
+20190208, 0.09, 0.02, -0.67, 0.010
+20190211, 0.14, 0.65, 0.20, 0.010
+20190212, 1.36, 0.04, -0.24, 0.010
+20190213, 0.28, 0.09, 0.05, 0.010
+20190214, -0.21, 0.52, -0.56, 0.010
+20190215, 1.13, 0.23, 0.53, 0.010
+20190219, 0.19, 0.28, 0.32, 0.010
+20190220, 0.19, 0.22, 0.59, 0.010
+20190221, -0.37, -0.07, -0.25, 0.010
+20190222, 0.65, 0.51, -1.37, 0.010
+20190225, 0.15, -0.23, -0.20, 0.010
+20190226, -0.16, -0.64, -0.30, 0.010
+20190227, 0.09, 0.22, -0.15, 0.010
+20190228, -0.31, 0.02, -0.27, 0.010
+20190301, 0.72, 0.31, -0.48, 0.009
+20190304, -0.52, -0.39, 0.34, 0.009
+20190305, -0.17, -0.32, -0.22, 0.009
+20190306, -0.84, -1.28, 0.09, 0.009
+20190307, -0.82, -0.08, -0.27, 0.009
+20190308, -0.22, 0.04, -0.13, 0.009
+20190311, 1.49, 0.33, -0.49, 0.009
+20190312, 0.25, -0.27, -0.04, 0.009
+20190313, 0.68, -0.30, 0.01, 0.009
+20190314, -0.10, -0.37, 0.23, 0.009
+20190315, 0.48, -0.27, -0.28, 0.009
+20190318, 0.46, 0.17, 0.35, 0.009
+20190319, -0.09, -0.38, -0.88, 0.009
+20190320, -0.39, -0.01, -0.99, 0.009
+20190321, 1.11, 0.25, -1.12, 0.009
+20190322, -2.17, -1.58, 0.07, 0.009
+20190325, -0.05, 0.65, -0.30, 0.009
+20190326, 0.76, 0.18, 0.42, 0.009
+20190327, -0.50, 0.09, 0.52, 0.009
+20190328, 0.40, 0.38, -0.09, 0.009
+20190329, 0.66, -0.26, -0.84, 0.009
+20190401, 1.19, -0.29, 0.96, 0.010
+20190402, -0.05, -0.13, -0.41, 0.010
+20190403, 0.27, 0.20, -0.37, 0.010
+20190404, 0.19, 0.21, 0.96, 0.010
+20190405, 0.52, 0.51, -0.02, 0.010
+20190408, 0.08, -0.30, 0.13, 0.010
+20190409, -0.65, -0.59, -0.07, 0.010
+20190410, 0.48, 0.94, -0.06, 0.010
+20190411, 0.00, -0.34, 0.43, 0.010
+20190412, 0.65, -0.52, 0.69, 0.010
+20190415, -0.09, -0.21, -0.58, 0.010
+20190416, 0.13, 0.14, 0.64, 0.010
+20190417, -0.32, -0.69, 0.78, 0.010
+20190418, 0.11, -0.26, -0.46, 0.010
+20190422, 0.11, -0.44, -0.56, 0.010
+20190423, 0.97, 0.73, -0.58, 0.010
+20190424, -0.23, 0.31, -0.22, 0.010
+20190425, -0.14, -0.71, -0.26, 0.010
+20190426, 0.53, 0.44, 0.05, 0.010
+20190429, 0.18, 0.11, 0.61, 0.010
+20190430, -0.04, -0.69, 0.25, 0.010
+20190501, -0.83, -0.10, -0.06, 0.009
+20190502, -0.16, 0.49, -0.48, 0.009
+20190503, 1.13, 0.95, -0.27, 0.009
+20190506, -0.39, 0.62, -0.46, 0.009
+20190507, -1.69, -0.30, 0.54, 0.009
+20190508, -0.21, -0.15, -0.31, 0.009
+20190509, -0.28, 0.09, 0.10, 0.009
+20190510, 0.35, -0.37, 0.11, 0.009
+20190513, -2.67, -0.74, 0.36, 0.009
+20190514, 0.93, 0.40, -0.03, 0.009
+20190515, 0.58, 0.04, -0.94, 0.009
+20190516, 0.91, -0.41, -0.24, 0.009
+20190517, -0.73, -0.82, 0.36, 0.009
+20190520, -0.65, -0.23, 0.79, 0.009
+20190521, 0.90, 0.41, -0.34, 0.009
+20190522, -0.40, -0.49, -0.63, 0.009
+20190523, -1.37, -0.71, -0.23, 0.009
+20190524, 0.23, 0.50, 0.29, 0.009
+20190528, -0.78, 0.27, -0.60, 0.009
+20190529, -0.71, -0.27, 0.44, 0.009
+20190530, 0.14, -0.30, -0.77, 0.009
+20190531, -1.37, -0.15, -0.21, 0.009
+20190603, -0.40, 0.39, 1.46, 0.009
+20190604, 2.33, 0.46, -0.16, 0.009
+20190605, 0.70, -1.01, -0.92, 0.009
+20190606, 0.55, -1.03, 0.00, 0.009
+20190607, 1.04, 0.00, -1.15, 0.009
+20190610, 0.53, 0.00, -0.07, 0.009
+20190611, -0.12, -0.26, 0.59, 0.009
+20190612, -0.20, 0.36, -0.90, 0.009
+20190613, 0.52, 0.67, -0.01, 0.009
+20190614, -0.27, -0.76, 0.30, 0.009
+20190617, 0.15, 0.62, -1.09, 0.009
+20190618, 1.04, 0.19, 0.20, 0.009
+20190619, 0.32, 0.11, -0.60, 0.009
+20190620, 0.89, -0.36, -0.23, 0.009
+20190621, -0.21, -0.45, -0.07, 0.009
+20190624, -0.34, -0.92, 0.15, 0.009
+20190625, -0.98, 0.34, 0.74, 0.009
+20190626, -0.06, -0.06, 0.22, 0.009
+20190627, 0.60, 1.41, -0.09, 0.009
+20190628, 0.68, 0.65, 0.60, 0.009
+20190701, 0.75, -0.54, -0.17, 0.009
+20190702, 0.14, -0.81, -0.80, 0.009
+20190703, 0.78, -0.07, -0.31, 0.009
+20190705, -0.10, 0.16, 0.91, 0.009
+20190708, -0.58, -0.44, 0.03, 0.009
+20190709, 0.18, -0.15, -0.52, 0.009
+20190710, 0.40, -0.15, -0.41, 0.009
+20190711, 0.19, -0.80, 0.04, 0.009
+20190712, 0.53, 0.19, 0.43, 0.009
+20190715, -0.04, -0.38, -1.00, 0.009
+20190716, -0.32, 0.34, 0.14, 0.009
+20190717, -0.64, -0.15, -0.65, 0.009
+20190718, 0.35, -0.32, -0.02, 0.009
+20190719, -0.56, 0.15, 0.88, 0.009
+20190722, 0.25, -0.43, -0.49, 0.009
+20190723, 0.65, -0.20, 0.80, 0.009
+20190724, 0.66, 0.76, 0.81, 0.009
+20190725, -0.63, -0.70, -0.21, 0.009
+20190726, 0.82, 0.39, -0.19, 0.009
+20190729, -0.32, -0.33, -0.46, 0.009
+20190730, -0.17, 1.32, 0.84, 0.009
+20190731, -1.09, 0.14, 0.55, 0.009
+20190801, -1.04, -0.46, -1.95, 0.007
+20190802, -0.87, -0.32, 0.04, 0.007
+20190805, -3.07, -0.03, -0.03, 0.007
+20190806, 1.29, -0.43, -0.57, 0.007
+20190807, 0.07, 0.08, -0.91, 0.007
+20190808, 1.97, 0.09, -0.29, 0.007
+20190809, -0.78, -0.39, -0.35, 0.007
+20190812, -1.32, 0.29, -0.29, 0.007
+20190813, 1.47, -0.16, -0.53, 0.007
+20190814, -2.95, 0.21, -0.54, 0.007
+20190815, 0.16, -0.63, -0.56, 0.007
+20190816, 1.55, 0.53, 0.65, 0.007
+20190819, 1.14, -0.01, 0.28, 0.007
+20190820, -0.75, 0.30, -0.52, 0.007
+20190821, 0.85, 0.04, -0.33, 0.007
+20190822, -0.10, -0.55, 0.52, 0.007
+20190823, -2.66, -0.55, -0.21, 0.007
+20190826, 1.08, -0.03, -0.20, 0.007
+20190827, -0.46, -0.88, -0.68, 0.007
+20190828, 0.68, 0.47, 0.64, 0.007
+20190829, 1.35, 0.32, 0.33, 0.007
+20190830, 0.03, -0.38, 0.25, 0.007
+20190903, -0.86, -0.95, 0.07, 0.009
+20190904, 1.08, -0.22, 0.42, 0.009
+20190905, 1.42, 0.41, 0.71, 0.009
+20190906, -0.02, -0.37, 0.06, 0.009
+20190909, 0.07, 0.74, 3.11, 0.009
+20190910, 0.17, 1.02, 1.24, 0.009
+20190911, 0.88, 1.33, -0.03, 0.009
+20190912, 0.22, -0.29, -0.21, 0.009
+20190913, -0.01, 0.00, 0.77, 0.009
+20190916, -0.23, 0.93, 0.52, 0.009
+20190917, 0.17, -0.60, -1.24, 0.009
+20190918, -0.05, -0.74, 0.04, 0.009
+20190919, -0.05, -0.44, -0.45, 0.009
+20190920, -0.48, 0.31, 0.14, 0.009
+20190923, -0.02, -0.18, 0.52, 0.009
+20190924, -1.01, -0.74, -0.01, 0.009
+20190925, 0.69, 0.37, 0.54, 0.009
+20190926, -0.41, -0.96, 0.11, 0.009
+20190927, -0.62, -0.36, 0.91, 0.009
+20190930, 0.50, -0.15, -0.49, 0.009
+20191001, -1.31, -0.47, -0.62, 0.007
+20191002, -1.73, 0.86, -0.39, 0.007
+20191003, 0.80, -0.22, -0.91, 0.007
+20191004, 1.39, -0.50, -0.08, 0.007
+20191007, -0.41, 0.16, -0.05, 0.007
+20191008, -1.61, -0.14, -0.11, 0.007
+20191009, 0.92, -0.53, -0.12, 0.007
+20191010, 0.59, -0.40, 0.29, 0.007
+20191011, 1.23, 0.48, 0.21, 0.007
+20191014, -0.18, -0.32, -0.06, 0.007
+20191015, 1.03, 0.25, -0.23, 0.007
+20191016, -0.24, 0.40, 0.22, 0.007
+20191017, 0.37, 0.80, -0.28, 0.007
+20191018, -0.49, -0.38, 0.88, 0.007
+20191021, 0.71, 0.18, 0.35, 0.007
+20191022, -0.34, 0.22, 0.91, 0.007
+20191023, 0.26, -0.08, 0.23, 0.007
+20191024, 0.25, -0.26, -0.91, 0.007
+20191025, 0.50, 0.28, 0.13, 0.007
+20191028, 0.62, 0.26, -0.23, 0.007
+20191029, -0.13, 0.29, 0.42, 0.007
+20191030, 0.27, -0.38, -1.20, 0.007
+20191031, -0.38, -0.25, -0.42, 0.007
+20191101, 1.08, 0.45, 0.84, 0.006
+20191104, 0.40, 0.05, 1.43, 0.006
+20191105, -0.03, 0.25, 0.51, 0.006
+20191106, -0.05, -0.69, 0.16, 0.006
+20191107, 0.38, -0.11, 0.56, 0.006
+20191108, 0.31, 0.09, -0.36, 0.006
+20191111, -0.19, -0.02, -0.21, 0.006
+20191112, 0.16, -0.11, -0.14, 0.006
+20191113, 0.01, -0.23, -0.81, 0.006
+20191114, 0.07, -0.12, -0.26, 0.006
+20191115, 0.74, -0.21, -0.34, 0.006
+20191118, 0.02, -0.36, -0.52, 0.006
+20191119, 0.02, 0.59, -0.99, 0.006
+20191120, -0.33, -0.01, -0.42, 0.006
+20191121, -0.14, -0.33, 0.13, 0.006
+20191122, 0.24, 0.06, 0.24, 0.006
+20191125, 0.92, 1.30, -0.39, 0.006
+20191126, 0.19, 0.05, -0.82, 0.006
+20191127, 0.44, 0.22, -0.05, 0.006
+20191129, -0.42, -0.05, -0.32, 0.006
+20191202, -0.87, -0.24, 0.51, 0.007
+20191203, -0.66, 0.59, -0.83, 0.007
+20191204, 0.60, 0.11, 0.27, 0.007
+20191205, 0.13, -0.23, 0.47, 0.007
+20191206, 0.91, 0.25, 0.43, 0.007
+20191209, -0.33, 0.36, 0.14, 0.007
+20191210, -0.08, 0.29, -0.09, 0.007
+20191211, 0.28, -0.07, 0.08, 0.007
+20191212, 0.90, -0.11, 1.18, 0.007
+20191213, -0.03, -0.31, -0.53, 0.007
+20191216, 0.74, 0.07, -0.07, 0.007
+20191217, 0.10, 0.42, 0.70, 0.007
+20191218, -0.05, 0.18, 0.09, 0.007
+20191219, 0.43, -0.02, -0.44, 0.007
+20191220, 0.48, -0.30, -0.30, 0.007
+20191223, 0.10, 0.20, -0.29, 0.007
+20191224, 0.01, 0.37, -0.03, 0.007
+20191226, 0.49, -0.53, 0.00, 0.007
+20191227, -0.09, -0.52, -0.08, 0.007
+20191230, -0.57, 0.18, 0.57, 0.007
+20191231, 0.28, 0.00, 0.12, 0.007
+20200102, 0.86, -0.85, -0.37, 0.006
+20200103, -0.67, 0.37, 0.01, 0.006
+20200106, 0.36, -0.07, -0.51, 0.006
+20200107, -0.19, -0.01, -0.20, 0.006
+20200108, 0.47, -0.06, -0.64, 0.006
+20200109, 0.65, -0.63, -0.49, 0.006
+20200110, -0.34, -0.16, -0.36, 0.006
+20200113, 0.73, -0.08, -0.12, 0.006
+20200114, -0.06, 0.37, -0.13, 0.006
+20200115, 0.16, 0.46, -0.84, 0.006
+20200116, 0.88, 0.50, -0.12, 0.006
+20200117, 0.28, -0.64, -0.12, 0.006
+20200121, -0.32, -0.50, -0.63, 0.006
+20200122, 0.08, -0.27, 0.00, 0.006
+20200123, 0.08, -0.06, -0.15, 0.006
+20200124, -0.97, -0.41, -0.35, 0.006
+20200127, -1.56, 0.36, -0.45, 0.006
+20200128, 1.02, -0.13, -0.43, 0.006
+20200129, -0.10, -0.25, -0.97, 0.006
+20200130, 0.34, -0.69, 0.64, 0.006
+20200131, -1.74, -0.44, -0.34, 0.006
+20200203, 0.84, 0.62, -0.69, 0.006
+20200204, 1.57, -0.02, -0.68, 0.006
+20200205, 0.97, 0.30, 1.52, 0.006
+20200206, 0.27, -0.45, -0.85, 0.006
+20200207, -0.55, -0.78, -0.06, 0.006
+20200210, 0.73, -0.02, -0.91, 0.006
+20200211, 0.28, 0.05, 1.07, 0.006
+20200212, 0.66, 0.17, -0.33, 0.006
+20200213, -0.09, 0.17, -0.04, 0.006
+20200214, 0.15, -0.39, -0.71, 0.006
+20200218, -0.19, 0.15, -0.70, 0.006
+20200219, 0.60, 0.22, -0.06, 0.006
+20200220, -0.35, 0.46, 0.66, 0.006
+20200221, -1.12, -0.10, 0.05, 0.006
+20200224, -3.38, 0.17, -0.01, 0.006
+20200225, -3.09, -0.09, -0.74, 0.006
+20200226, -0.52, -0.41, -1.24, 0.006
+20200227, -4.22, 0.75, 0.09, 0.006
+20200228, -0.78, 0.28, -0.79, 0.006
+20200302, 4.31, -1.77, -0.42, 0.006
+20200303, -2.79, 0.78, -0.64, 0.006
+20200304, 4.02, -1.04, -1.10, 0.006
+20200305, -3.38, 0.18, -1.37, 0.006
+20200306, -1.78, 0.04, -1.39, 0.006
+20200309, -7.79, -0.47, -4.73, 0.006
+20200310, 4.74, -2.46, 0.75, 0.006
+20200311, -5.05, -0.86, -0.89, 0.006
+20200312, -9.63, -0.54, -1.24, 0.006
+20200313, 8.96, -2.70, 3.07, 0.006
+20200316, -12.00, -0.35, -0.88, 0.006
+20200317, 5.87, 0.71, -0.97, 0.006
+20200318, -5.56, -3.66, -4.68, 0.006
+20200319, 1.31, 5.53, 0.99, 0.006
+20200320, -4.15, 0.39, -0.86, 0.006
+20200323, -2.56, 2.18, -3.50, 0.006
+20200324, 9.34, -1.16, 2.44, 0.006
+20200325, 1.18, -0.60, 1.89, 0.006
+20200326, 6.02, -0.67, 1.23, 0.006
+20200327, -3.47, -0.81, -0.70, 0.006
+20200330, 3.16, -0.37, -2.20, 0.006
+20200331, -1.44, 1.81, -0.48, 0.006
+20200401, -4.51, -1.58, -1.49, 0.000
+20200402, 2.09, -0.99, -0.27, 0.000
+20200403, -1.64, -1.11, -1.17, 0.000
+20200406, 7.06, 0.76, 0.30, 0.000
+20200407, -0.11, -0.49, 2.15, 0.000
+20200408, 3.40, 0.36, 1.34, 0.000
+20200409, 1.60, 1.96, 3.19, 0.000
+20200413, -0.92, -0.76, -2.44, 0.000
+20200414, 3.02, -0.14, -3.15, 0.000
+20200415, -2.15, -1.20, -2.49, 0.000
+20200416, 0.62, -0.23, -3.01, 0.000
+20200417, 2.72, 0.73, 2.71, 0.000
+20200420, -1.56, 0.77, -0.92, 0.000
+20200421, -3.08, 0.96, 0.06, 0.000
+20200422, 2.31, -0.71, -1.64, 0.000
+20200423, 0.13, 1.17, 0.56, 0.000
+20200424, 1.44, 0.32, -0.07, 0.000
+20200427, 1.73, 1.65, 2.75, 0.000
+20200428, -0.45, 0.89, 2.85, 0.000
+20200429, 2.92, 1.87, 2.07, 0.000
+20200430, -1.18, -1.41, -1.64, 0.000
+20200501, -2.91, -0.57, -1.02, 0.000
+20200504, 0.53, 0.16, -1.40, 0.000
+20200505, 0.95, 0.08, -1.97, 0.000
+20200506, -0.52, 0.56, -2.77, 0.000
+20200507, 1.33, -0.05, 0.41, 0.000
+20200508, 1.90, 1.44, 2.49, 0.000
+20200511, 0.07, 0.44, -3.72, 0.000
+20200512, -2.06, -0.88, -1.35, 0.000
+20200513, -1.89, -0.96, -2.18, 0.000
+20200514, 1.14, -1.48, 0.95, 0.000
+20200515, 0.57, 1.60, -1.23, 0.000
+20200518, 3.24, 1.54, 4.61, 0.000
+20200519, -1.01, -0.56, -1.42, 0.000
+20200520, 1.80, 1.09, 1.28, 0.000
+20200521, -0.70, 0.66, 0.45, 0.000
+20200522, 0.27, 0.48, -0.86, 0.000
+20200526, 1.23, 0.09, 4.62, 0.000
+20200527, 1.54, 0.63, 3.67, 0.000
+20200528, -0.41, -1.48, -2.41, 0.000
+20200529, 0.60, -0.29, -2.00, 0.000
+20200601, 0.52, -0.01, 0.49, 0.000
+20200602, 0.81, -0.03, 0.46, 0.000
+20200603, 1.41, 0.12, 2.67, 0.000
+20200604, -0.34, -0.23, 3.02, 0.000
+20200605, 2.50, 0.75, 2.70, 0.000
+20200608, 1.39, 0.38, 2.18, 0.000
+20200609, -0.85, -0.32, -1.98, 0.000
+20200610, -0.57, -0.84, -4.19, 0.000
+20200611, -5.91, -0.86, -3.09, 0.000
+20200612, 1.29, 0.37, 1.95, 0.000
+20200615, 1.09, 1.41, -0.40, 0.000
+20200616, 1.86, 0.64, 0.47, 0.000
+20200617, -0.40, -0.92, -2.00, 0.000
+20200618, 0.19, 0.10, -0.53, 0.000
+20200619, -0.45, 0.06, -0.65, 0.000
+20200622, 0.71, 0.82, -1.42, 0.000
+20200623, 0.42, 0.14, -0.55, 0.000
+20200624, -2.61, -0.51, -1.32, 0.000
+20200625, 1.12, 0.25, 0.50, 0.000
+20200626, -2.44, 0.18, -1.42, 0.000
+20200629, 1.51, 1.24, 1.81, 0.000
+20200630, 1.58, 0.06, -0.02, 0.000
+20200701, 0.41, -1.23, -2.54, 0.000
+20200702, 0.50, 0.00, -0.09, 0.000
+20200706, 1.65, -0.59, 0.33, 0.000
+20200707, -1.03, -0.55, -1.51, 0.000
+20200708, 0.91, 0.29, -0.47, 0.000
+20200709, -0.53, -0.93, -2.58, 0.000
+20200710, 1.11, -0.09, 3.05, 0.000
+20200713, -1.20, -0.81, 2.00, 0.000
+20200714, 1.35, 0.35, -0.33, 0.000
+20200715, 1.14, 2.43, 1.29, 0.000
+20200716, -0.37, -0.37, 0.81, 0.000
+20200717, 0.30, 0.16, -1.40, 0.000
+20200720, 1.01, -0.47, -2.38, 0.000
+20200721, 0.16, 0.86, 3.24, 0.000
+20200722, 0.49, -0.58, -0.34, 0.000
+20200723, -1.20, 0.72, 1.96, 0.000
+20200724, -0.75, -0.80, 0.47, 0.000
+20200727, 0.88, 0.75, -1.93, 0.000
+20200728, -0.81, -0.72, 1.01, 0.000
+20200729, 1.35, 0.54, 0.84, 0.000
+20200730, -0.29, 0.47, -1.81, 0.000
+20200731, 0.61, -1.54, -0.65, 0.000
+
+Copyright 2020 Kenneth R. French
diff --git a/Data/F-F_Research_Data_Factors_weekly.CSV b/Data/F-F_Research_Data_Factors_weekly.CSV
new file mode 100644
index 0000000..a6741c9
--- /dev/null
+++ b/Data/F-F_Research_Data_Factors_weekly.CSV
@@ -0,0 +1,4916 @@
+This file was created by CMPT_ME_BEME_RETS_WEEKLY using the 202007 CRSP database.
+The Tbill return is the weekly rate that, over four weeks,
+compounds to 1-month TBill rate from Ibbotson and Associates Inc.
+
+,Mkt-RF,SMB,HML,RF
+19260702, 1.60, -0.57, -0.90, 0.056
+19260710, 0.36, -0.86, 0.27, 0.056
+19260717, 1.01, 0.83, -1.84, 0.056
+19260724, -2.05, 0.15, -0.25, 0.056
+19260731, 3.04, -1.86, -0.85, 0.056
+19260807, 2.01, 0.08, 0.53, 0.063
+19260814, 0.33, -0.66, 0.76, 0.063
+19260821, -1.11, 0.26, 1.95, 0.063
+19260828, 0.53, 0.07, 0.84, 0.063
+19260903, 1.87, -0.41, 0.55, 0.057
+19260911, -1.27, 0.16, -0.01, 0.057
+19260918, 0.16, -1.10, 0.32, 0.057
+19260925, 0.62, -0.80, -0.39, 0.057
+19261002, 0.48, -0.08, -0.48, 0.080
+19261009, -4.14, -0.31, -0.35, 0.080
+19261016, -1.62, -1.10, 1.02, 0.080
+19261023, 1.05, 0.63, -0.35, 0.080
+19261030, 0.83, 0.87, 0.54, 0.080
+19261106, 1.47, -0.88, 0.37, 0.077
+19261113, 0.71, 0.46, -0.96, 0.077
+19261120, -0.56, 0.67, 0.76, 0.077
+19261127, 1.03, -0.17, -0.13, 0.077
+19261204, 0.90, 0.02, -0.79, 0.069
+19261211, 0.81, 0.47, -0.18, 0.069
+19261218, 1.38, -0.99, 0.94, 0.069
+19261224, 0.25, -0.25, -0.90, 0.069
+19261231, -0.89, 0.37, 0.24, 0.069
+19270108, 0.17, 0.59, -0.03, 0.062
+19270115, 0.06, -1.02, 2.53, 0.062
+19270122, -0.04, 0.16, 1.74, 0.062
+19270129, -0.83, -0.12, 0.52, 0.062
+19270205, 1.66, 1.28, 2.86, 0.064
+19270211, 0.39, -0.09, -0.21, 0.064
+19270219, 1.15, -0.56, 1.66, 0.064
+19270226, 0.96, 0.34, -1.56, 0.064
+19270305, -0.68, 0.15, -1.54, 0.074
+19270312, 0.83, -0.54, 0.00, 0.074
+19270319, 0.05, -1.00, -2.39, 0.074
+19270326, 0.47, 0.17, -0.09, 0.074
+19270402, -0.17, -0.89, 1.17, 0.064
+19270409, 1.83, -0.58, 1.92, 0.064
+19270416, 0.36, 1.71, -1.73, 0.064
+19270423, 0.47, -0.90, 1.21, 0.064
+19270430, -2.01, 0.58, -0.82, 0.064
+19270507, 2.69, 0.59, 0.01, 0.075
+19270514, 0.40, -0.24, 0.64, 0.075
+19270521, 1.10, -0.77, 0.24, 0.075
+19270528, 0.84, 2.43, 3.06, 0.075
+19270604, 0.19, -0.32, 0.39, 0.065
+19270611, 0.03, 0.55, 0.04, 0.065
+19270618, 0.01, 0.69, 1.12, 0.065
+19270625, -1.38, -0.43, -1.06, 0.065
+19270702, 0.17, -0.32, 0.02, 0.075
+19270709, 1.17, -0.30, 0.08, 0.075
+19270716, 1.84, -0.91, -0.08, 0.075
+19270723, 0.96, 0.16, -0.96, 0.075
+19270730, 1.82, -2.53, 0.11, 0.075
+19270806, 0.73, 0.13, -1.56, 0.069
+19270813, -1.62, -0.75, -1.38, 0.069
+19270820, 2.73, 0.30, 0.54, 0.069
+19270827, 0.73, -0.22, -1.11, 0.069
+19270903, 1.34, -0.44, -0.79, 0.052
+19270910, 1.16, -1.12, 0.18, 0.052
+19270917, 1.27, -0.75, -0.86, 0.052
+19270924, 0.08, -0.40, -0.11, 0.052
+19271001, 0.82, -0.92, 0.85, 0.063
+19271008, -1.25, 0.38, -1.01, 0.063
+19271015, 0.22, 1.17, -1.20, 0.063
+19271022, -4.13, 0.34, -0.35, 0.063
+19271029, -0.37, 0.31, -2.24, 0.063
+19271105, 3.44, -0.43, -0.10, 0.052
+19271112, 1.33, 0.51, -1.49, 0.052
+19271119, 1.62, 1.49, 1.03, 0.052
+19271126, 0.36, 0.75, 0.71, 0.052
+19271203, 0.49, -0.62, 0.99, 0.056
+19271210, -0.63, 1.40, -1.11, 0.056
+19271217, 1.82, 0.34, -0.52, 0.056
+19271224, 0.53, -0.90, 0.92, 0.056
+19271231, 0.33, 1.46, -1.59, 0.056
+19280107, 0.28, 1.82, 0.42, 0.063
+19280114, -1.16, 0.43, 0.29, 0.063
+19280121, 0.31, 0.32, -0.68, 0.063
+19280128, 0.12, 1.49, -1.13, 0.063
+19280204, -1.02, -0.07, -0.74, 0.082
+19280211, 0.36, -0.52, -0.74, 0.082
+19280218, -3.09, -1.88, -0.75, 0.082
+19280225, 1.57, 0.09, 1.59, 0.082
+19280303, 1.25, 0.30, -1.58, 0.073
+19280310, 2.00, -0.64, -0.06, 0.073
+19280317, 2.09, -1.18, 1.48, 0.073
+19280324, 1.87, 0.45, -1.52, 0.073
+19280331, 1.74, 1.00, 0.64, 0.073
+19280405, 0.77, 1.08, 0.66, 0.056
+19280414, 1.74, 2.11, -0.16, 0.056
+19280420, -0.91, 0.42, 0.66, 0.056
+19280428, 2.55, -0.42, 3.06, 0.056
+19280504, 1.96, 0.35, -1.50, 0.081
+19280511, 0.76, 0.74, -1.08, 0.081
+19280518, -1.34, 1.17, -0.29, 0.081
+19280525, -0.17, 0.77, -0.59, 0.081
+19280602, 1.28, -0.01, -0.51, 0.078
+19280609, -5.57, -0.30, -1.97, 0.078
+19280616, -1.93, -3.43, 1.87, 0.078
+19280623, -1.81, -0.41, 0.71, 0.078
+19280630, 3.57, -0.19, 0.17, 0.078
+19280707, 1.26, -0.11, 0.54, 0.081
+19280714, -2.57, -0.12, -0.50, 0.081
+19280721, -0.19, -0.12, 0.00, 0.081
+19280728, 2.37, -0.85, -0.54, 0.081
+19280804, -0.01, 0.03, 0.39, 0.080
+19280811, -0.73, 0.15, -0.26, 0.080
+19280818, 2.03, -0.60, 0.24, 0.080
+19280825, 3.03, -0.82, -1.44, 0.080
+19280901, 2.23, -0.72, -0.84, 0.067
+19280908, 0.76, 0.71, 0.17, 0.067
+19280915, 1.22, -0.11, 1.25, 0.067
+19280922, 0.37, 1.77, 0.66, 0.067
+19280929, 0.22, -0.25, -1.16, 0.067
+19281006, -0.92, 2.15, 0.25, 0.102
+19281013, 1.56, 0.89, -2.75, 0.102
+19281020, 1.28, -0.06, 0.05, 0.102
+19281027, 0.20, 0.01, 0.50, 0.102
+19281103, 0.35, -1.18, -0.47, 0.096
+19281110, 3.60, -0.66, 1.93, 0.096
+19281117, 2.80, -0.77, -0.98, 0.096
+19281123, 1.38, -0.72, 2.16, 0.096
+19281201, 1.69, 0.95, 0.45, 0.015
+19281208, -8.67, 0.57, -1.59, 0.015
+19281215, 2.65, 0.40, 1.46, 0.015
+19281222, 3.50, -0.85, -1.09, 0.015
+19281229, 2.78, -0.83, -0.30, 0.015
+19290105, 2.00, 0.20, 0.45, 0.086
+19290112, -0.40, 0.46, 0.52, 0.086
+19290119, 1.10, -0.59, 0.92, 0.086
+19290126, 1.98, -2.26, -2.87, 0.086
+19290202, 1.74, -1.77, 1.81, 0.089
+19290208, -4.90, 0.04, 0.23, 0.089
+19290216, -1.40, -0.76, 0.07, 0.089
+19290221, 2.91, 0.45, -0.05, 0.089
+19290302, 3.51, -0.36, 0.91, 0.086
+19290309, -1.83, -1.19, 0.76, 0.086
+19290316, 2.81, -0.84, -0.37, 0.086
+19290323, -2.93, -0.54, -0.47, 0.086
+19290328, 0.46, -2.07, 0.67, 0.086
+19290406, -1.63, 0.13, 0.41, 0.089
+19290413, 0.27, -0.34, -0.77, 0.089
+19290420, 1.02, 0.36, -1.39, 0.089
+19290427, 0.89, -0.04, 0.61, 0.089
+19290504, 2.42, -1.36, 1.02, 0.110
+19290511, -0.84, -0.09, -0.07, 0.110
+19290518, -1.19, -1.14, -1.38, 0.110
+19290525, -4.39, -1.05, -0.49, 0.110
+19290601, -0.91, -2.90, 1.54, 0.130
+19290608, 1.82, 0.12, 0.20, 0.130
+19290615, 1.73, -0.15, 0.58, 0.130
+19290622, 2.15, -0.84, -0.32, 0.130
+19290629, 2.99, -1.48, -3.13, 0.130
+19290706, 2.44, -0.91, -0.34, 0.084
+19290713, 1.42, -0.51, 1.84, 0.084
+19290720, 0.64, -1.33, 1.77, 0.084
+19290727, -0.92, -0.98, -1.04, 0.084
+19290803, 3.07, -2.39, -0.45, 0.101
+19290810, -3.28, -1.25, 1.98, 0.101
+19290817, 4.72, -1.64, 0.55, 0.101
+19290824, 2.46, -3.16, -1.48, 0.101
+19290830, 1.76, -0.92, -0.20, 0.101
+19290907, 0.24, -0.86, -1.05, 0.088
+19290914, -1.66, 1.54, -0.10, 0.088
+19290921, -0.11, 0.22, -0.38, 0.088
+19290928, -3.15, -0.14, 0.72, 0.088
+19291005, -1.88, -0.83, -0.09, 0.114
+19291011, 2.77, 0.16, 0.66, 0.114
+19291019, -8.13, 1.53, 2.64, 0.114
+19291026, -7.70, -3.07, 2.70, 0.114
+19291031, -7.16, -1.91, 2.72, 0.114
+19291108, -11.74, 1.68, 3.67, 0.094
+19291115, -3.99, -2.52, -0.08, 0.094
+19291122, 5.63, -0.19, 0.50, 0.094
+19291127, -2.45, 0.26, 1.40, 0.094
+19291207, 7.51, -1.36, -2.07, 0.091
+19291214, -3.02, -0.09, 1.61, 0.091
+19291221, -6.32, -1.30, 1.81, 0.091
+19291228, 0.14, -1.48, -0.37, 0.091
+19300104, 3.85, 1.20, -1.83, 0.035
+19300111, -0.27, 2.02, 0.89, 0.035
+19300118, -0.48, -1.42, 1.12, 0.035
+19300125, 3.35, 0.99, -0.46, 0.035
+19300201, 3.22, -0.16, -3.15, 0.074
+19300208, 0.94, -0.33, 1.18, 0.074
+19300215, -0.10, 1.02, 1.05, 0.074
+19300221, -0.72, -0.21, -0.06, 0.074
+19300301, 2.14, 0.39, -1.66, 0.087
+19300308, 0.69, 1.28, -0.66, 0.087
+19300315, -0.95, 1.36, 1.50, 0.087
+19300322, 2.79, -0.03, 0.49, 0.087
+19300329, 3.54, -0.16, -0.62, 0.087
+19300405, 1.91, -0.10, -1.95, 0.053
+19300412, 0.30, 0.14, -0.86, 0.053
+19300417, -0.51, 0.83, -0.95, 0.053
+19300426, -1.68, -0.62, 2.49, 0.053
+19300503, -9.09, -0.67, 2.47, 0.064
+19300510, 4.65, -1.19, -2.93, 0.064
+19300517, 0.86, 0.53, 1.48, 0.064
+19300524, -0.35, -0.85, -0.57, 0.064
+19300529, 1.01, -0.18, -1.04, 0.064
+19300607, -5.29, -0.18, 2.02, 0.067
+19300614, -5.55, -1.30, 0.35, 0.067
+19300621, -9.00, -2.77, 2.43, 0.067
+19300628, 0.41, 0.35, -1.99, 0.067
+19300703, 1.69, 0.53, 1.75, 0.050
+19300712, 2.76, -2.21, -0.51, 0.050
+19300719, 3.57, 2.01, 0.85, 0.050
+19300726, 0.64, -1.43, -1.74, 0.050
+19300802, -2.21, 0.53, -0.72, 0.022
+19300809, -4.82, 0.18, -0.99, 0.022
+19300816, 1.97, -1.65, 1.02, 0.022
+19300823, 0.96, -0.07, -1.51, 0.022
+19300829, 2.20, -1.02, 0.42, 0.022
+19300906, 1.00, -0.03, 0.65, 0.055
+19300913, -0.61, 1.40, -0.56, 0.055
+19300920, -3.23, -0.13, -1.23, 0.055
+19300927, -7.06, -1.73, -2.70, 0.055
+19301004, -0.48, -0.05, -1.62, 0.022
+19301011, -8.00, -1.12, 0.87, 0.022
+19301018, -3.54, -0.97, -1.80, 0.022
+19301025, 3.14, -0.41, -0.36, 0.022
+19301101, -3.07, -0.27, -0.58, 0.033
+19301108, -6.69, 1.68, -2.04, 0.033
+19301115, 6.59, 0.32, -2.41, 0.033
+19301122, -0.09, 0.53, 3.16, 0.033
+19301129, -2.57, 0.85, -1.27, 0.033
+19301206, -1.90, -0.13, -2.17, 0.035
+19301213, -7.62, -1.35, -3.01, 0.035
+19301220, 2.61, -2.71, 0.09, 0.035
+19301227, -4.11, 0.67, -4.07, 0.035
+19310103, 8.96, -2.01, 6.47, 0.036
+19310110, 1.29, 2.19, 6.58, 0.036
+19310117, -3.39, 1.29, -1.38, 0.036
+19310124, 4.12, -1.02, 0.20, 0.036
+19310131, -0.99, 0.87, -0.65, 0.036
+19310207, 2.21, 0.38, -0.64, 0.010
+19310214, 4.10, 0.60, 0.11, 0.010
+19310221, 4.38, 1.93, 0.25, 0.010
+19310228, -0.12, -0.09, 1.77, 0.010
+19310307, -1.75, 0.18, -1.38, 0.032
+19310314, -0.60, 0.65, -0.91, 0.032
+19310321, 1.85, 1.62, 0.35, 0.032
+19310328, -4.99, 0.69, -0.62, 0.032
+19310404, -1.16, -0.13, -0.80, 0.019
+19310411, -1.09, 0.27, -0.57, 0.019
+19310418, -3.54, -0.92, -1.08, 0.019
+19310425, -5.79, 0.57, -3.79, 0.019
+19310502, -1.10, -2.83, 0.15, 0.022
+19310509, 2.42, 0.58, -1.25, 0.022
+19310516, -5.10, 2.35, -2.10, 0.022
+19310523, -3.83, -0.58, 0.12, 0.022
+19310529, -5.85, 1.21, -2.30, 0.022
+19310606, 1.05, -0.36, 3.54, 0.019
+19310613, 4.48, -5.10, 4.67, 0.019
+19310620, 1.64, -0.33, -0.27, 0.019
+19310627, 10.53, -0.03, 4.29, 0.019
+19310703, -1.33, 0.42, -1.61, 0.015
+19310711, -5.16, 2.52, -2.36, 0.015
+19310718, -0.83, -1.15, -0.83, 0.015
+19310725, -2.11, 1.50, 1.02, 0.015
+19310801, -0.52, -0.48, -0.71, 0.009
+19310808, -1.83, 0.91, -3.25, 0.009
+19310815, 5.71, -3.41, 1.96, 0.009
+19310822, -4.10, 1.47, 0.99, 0.009
+19310829, 1.60, -1.92, -0.45, 0.009
+19310904, -5.33, 3.69, -5.17, 0.006
+19310912, -6.21, 1.44, -1.31, 0.006
+19310919, -10.93, -0.12, -5.89, 0.006
+19310926, -2.85, -3.35, 5.66, 0.006
+19311003, -11.99, 0.02, -2.47, 0.026
+19311010, 12.71, -2.76, 4.48, 0.026
+19311017, -2.22, -0.03, -0.78, 0.026
+19311024, 4.61, -0.13, -0.73, 0.026
+19311031, -3.18, 0.31, 1.62, 0.026
+19311107, 7.57, -0.14, 2.38, 0.042
+19311114, -6.30, 4.08, -2.69, 0.042
+19311121, -6.91, 2.01, -1.24, 0.042
+19311128, -6.26, 2.36, -3.17, 0.042
+19311205, 1.74, -6.08, -1.57, 0.031
+19311212, -11.20, 2.11, -5.91, 0.031
+19311219, 1.71, -1.81, -0.76, 0.031
+19311224, -4.70, 2.25, -4.40, 0.031
+19320102, -1.56, 2.03, 4.82, 0.058
+19320109, 7.21, -3.76, 9.73, 0.058
+19320116, 4.09, -1.22, 2.69, 0.058
+19320123, -5.62, 1.94, -1.00, 0.058
+19320130, -3.13, 3.89, -1.99, 0.058
+19320206, -2.34, 0.26, 0.12, 0.057
+19320213, 13.39, -9.16, 0.85, 0.057
+19320220, -2.36, 3.83, -1.87, 0.057
+19320227, -2.24, 0.81, -0.39, 0.057
+19320305, 6.61, -2.59, 1.20, 0.041
+19320312, -3.45, 1.56, 0.94, 0.041
+19320319, -6.70, 2.87, -2.16, 0.041
+19320326, -4.38, 1.87, -0.94, 0.041
+19320402, -5.98, 1.31, -3.67, 0.029
+19320409, -9.57, 1.00, -1.48, 0.029
+19320416, -0.06, -2.73, 4.69, 0.029
+19320423, -4.31, -0.08, 1.60, 0.029
+19320430, -2.79, 1.34, 0.29, 0.029
+19320507, 2.53, -2.27, 1.32, 0.015
+19320514, -7.45, 5.52, -2.19, 0.015
+19320521, -0.08, -2.83, -0.32, 0.015
+19320528, -10.11, 0.90, -2.05, 0.015
+19320604, 6.34, -6.12, 5.34, 0.005
+19320611, -5.31, 5.75, -0.96, 0.005
+19320618, 0.03, -0.66, 4.31, 0.005
+19320625, -4.72, 4.52, -2.50, 0.005
+19320701, -0.93, -1.32, 0.60, 0.006
+19320709, -2.41, 2.45, 3.95, 0.006
+19320716, 9.76, -3.95, 6.92, 0.006
+19320723, 5.50, -1.63, 8.56, 0.006
+19320730, 15.38, 0.75, 9.68, 0.006
+19320806, 17.04, -7.35, 1.66, 0.008
+19320813, -1.96, 8.69, 6.20, 0.008
+19320820, 7.75, -0.32, 2.68, 0.008
+19320827, 13.46, 6.12, 13.79, 0.008
+19320903, 5.27, 4.14, -0.12, 0.008
+19320910, -3.19, 0.14, -2.01, 0.008
+19320917, -12.82, -0.75, -5.68, 0.008
+19320924, 12.50, -1.91, 2.81, 0.008
+19321001, -4.12, -1.96, -0.73, 0.004
+19321008, -15.62, 2.56, -11.92, 0.004
+19321015, 5.62, -2.92, 3.52, 0.004
+19321022, -4.89, -0.50, -0.86, 0.004
+19321029, 2.40, -2.70, -1.05, 0.004
+19321105, -1.79, -0.21, -5.09, 0.005
+19321112, 10.03, 1.46, 2.59, 0.005
+19321119, -5.24, 0.52, -6.03, 0.005
+19321126, -5.58, 0.37, -0.86, 0.005
+19321203, -4.50, 0.24, -8.14, 0.003
+19321210, 7.58, -5.88, 0.97, 0.003
+19321217, -0.33, -1.15, -3.74, 0.003
+19321224, -4.95, -0.94, -5.02, 0.003
+19321231, 3.62, -1.02, 4.99, 0.003
+19330106, 4.75, 1.33, 6.46, 0.003
+19330114, -0.11, -0.67, 0.93, 0.003
+19330121, -1.59, -0.55, -0.35, 0.003
+19330128, -1.40, 0.41, -0.19, 0.003
+19330204, -5.82, 0.26, 2.38, -0.007
+19330211, 3.44, -3.17, 3.49, -0.007
+19330218, -5.64, 0.51, -1.65, -0.007
+19330225, -8.94, 1.34, -4.31, -0.007
+19330303, 3.64, -5.66, 2.99, 0.011
+19330318, 13.08, 5.28, 9.42, 0.011
+19330325, -6.17, -0.11, -1.52, 0.011
+19330401, -4.94, -0.10, -3.08, 0.024
+19330408, 5.49, -0.28, 2.06, 0.024
+19330415, 5.87, 2.57, -2.55, 0.024
+19330422, 15.55, -3.55, 15.32, 0.024
+19330429, 7.08, 6.87, -2.45, 0.024
+19330506, 2.53, 9.33, 0.88, 0.011
+19330513, 5.50, 3.88, 2.27, 0.011
+19330520, -0.30, 9.14, 0.79, 0.011
+19330527, 11.90, 6.30, -1.92, 0.011
+19330603, 3.31, 3.90, 7.59, 0.006
+19330610, 5.63, 3.32, -2.02, 0.006
+19330617, -5.11, -4.05, -0.20, 0.006
+19330624, 6.45, 5.16, -0.31, 0.006
+19330701, 5.64, 1.21, 4.14, 0.005
+19330708, 6.01, -1.42, 9.57, 0.005
+19330715, 0.15, 2.71, -3.25, 0.005
+19330722, -18.85, -4.78, -5.97, 0.005
+19330728, 7.60, 6.25, 7.32, 0.005
+19330804, -2.59, 0.78, -1.41, 0.006
+19330811, 4.88, -1.72, 0.20, 0.006
+19330818, -0.03, 0.51, -3.03, 0.006
+19330825, 6.40, -4.23, 4.01, 0.006
+19330901, -0.53, -0.12, -1.74, 0.004
+19330909, -4.43, 1.45, -3.88, 0.004
+19330916, 4.11, -1.19, 1.33, 0.004
+19330923, -6.24, -0.04, -5.32, 0.004
+19330930, -5.45, -0.67, -4.28, 0.004
+19331007, 2.88, 0.30, 0.60, 0.002
+19331014, -2.75, 1.42, -3.57, 0.002
+19331021, -12.45, -0.49, -9.47, 0.002
+19331028, 9.57, -0.48, 9.52, 0.002
+19331104, 1.00, -3.32, 1.64, 0.005
+19331111, 3.16, -1.27, 0.51, 0.005
+19331118, 1.66, 0.07, -1.54, 0.005
+19331125, 0.73, -1.64, 0.76, 0.005
+19331202, -1.15, -0.96, -2.41, 0.005
+19331209, 3.81, -0.16, 3.93, 0.005
+19331216, -3.86, 2.88, -3.68, 0.005
+19331223, -1.09, -3.54, -0.63, 0.005
+19331230, 2.73, 1.28, -0.17, 0.005
+19340106, -2.82, 1.99, -0.62, 0.012
+19340113, 3.53, 0.99, 3.08, 0.012
+19340120, 8.93, 2.96, 11.32, 0.012
+19340127, 0.90, 2.49, -0.41, 0.012
+19340203, 5.45, 1.37, 6.41, 0.006
+19340210, -3.78, 0.82, -1.88, 0.006
+19340217, 4.20, 2.96, 6.18, 0.006
+19340224, -4.80, 1.18, -4.27, 0.006
+19340303, 1.37, 0.79, 0.05, 0.005
+19340310, -2.49, 1.28, -1.27, 0.005
+19340317, -0.23, 1.68, -1.51, 0.005
+19340324, -0.03, -1.16, -1.66, 0.005
+19340331, 0.25, 0.02, 1.21, 0.005
+19340407, 1.96, 0.60, 0.59, 0.002
+19340414, 0.41, 0.50, -0.14, 0.002
+19340421, 1.94, 1.58, -0.66, 0.002
+19340428, -3.61, 0.51, -1.38, 0.002
+19340505, -5.54, -0.28, -2.40, 0.002
+19340512, -7.09, -1.56, -5.55, 0.002
+19340519, 4.92, 0.38, 4.29, 0.002
+19340526, -0.56, -0.16, -1.59, 0.002
+19340602, -3.54, 0.39, -2.35, 0.002
+19340609, 8.70, -2.28, 5.88, 0.002
+19340616, 1.63, -1.82, -1.13, 0.002
+19340623, -4.64, 0.73, -2.79, 0.002
+19340630, -0.14, -0.10, -1.43, 0.002
+19340707, 0.84, -1.48, -0.61, 0.002
+19340714, 0.59, 1.24, -3.00, 0.002
+19340721, -5.00, -3.37, -3.60, 0.002
+19340728, -7.26, -3.87, -4.06, 0.002
+19340804, 0.26, 4.62, -1.63, 0.002
+19340811, 2.22, 0.46, -0.53, 0.002
+19340818, 1.17, 0.80, 0.44, 0.002
+19340825, 5.40, -1.20, 4.83, 0.002
+19340901, -3.66, 0.82, -2.98, 0.001
+19340908, -1.95, -0.23, -0.85, 0.001
+19340915, -4.25, -1.55, -1.98, 0.001
+19340922, 4.87, 0.39, 1.57, 0.001
+19340929, 1.34, -0.32, 0.00, 0.001
+19341006, -0.87, 1.39, -1.26, 0.003
+19341013, 1.38, 1.47, -0.01, 0.003
+19341020, -0.27, -0.18, -1.01, 0.003
+19341027, -2.21, -0.53, -1.66, 0.003
+19341103, 1.90, 0.76, -2.68, 0.002
+19341110, 4.04, 2.02, 1.64, 0.002
+19341117, -1.38, 3.27, -3.40, 0.002
+19341124, 2.90, 0.16, -0.31, 0.002
+19341201, 1.01, -0.91, 1.50, 0.003
+19341208, -0.41, 1.43, -0.45, 0.003
+19341215, -2.23, 0.36, -0.70, 0.003
+19341222, -1.26, -0.24, -2.65, 0.003
+19341229, 3.87, 1.03, 1.35, 0.003
+19350105, 1.65, 2.15, 1.23, 0.003
+19350112, -3.89, -0.39, -1.09, 0.003
+19350119, 1.05, 0.81, 0.14, 0.003
+19350126, -0.68, 0.32, -1.90, 0.003
+19350202, -0.95, -1.44, -0.62, 0.004
+19350209, 0.07, 0.53, -1.00, 0.004
+19350216, 0.23, 0.95, -2.69, 0.004
+19350223, -1.27, 0.98, -2.04, 0.004
+19350302, -0.26, -1.17, -2.04, 0.003
+19350309, -3.39, -0.20, -2.83, 0.003
+19350316, -2.98, -2.83, -3.35, 0.003
+19350323, 2.40, 0.59, 2.08, 0.003
+19350330, -0.30, -1.31, -0.67, 0.003
+19350406, 3.58, -2.69, 5.22, 0.003
+19350413, 2.71, 1.04, 1.01, 0.003
+19350420, 2.92, 0.86, -1.82, 0.003
+19350427, 0.15, -1.13, 0.78, 0.003
+19350504, 1.49, -0.95, -0.59, 0.003
+19350511, 3.15, -1.34, 0.83, 0.003
+19350518, 0.94, 1.42, 1.30, 0.003
+19350525, 1.03, -1.34, 1.94, 0.003
+19350601, -4.40, -2.58, -0.78, 0.003
+19350608, 4.71, -1.38, -0.25, 0.003
+19350615, 2.86, 0.31, 0.63, 0.003
+19350622, 1.65, -0.82, -0.67, 0.003
+19350629, -2.50, 0.61, -1.06, 0.003
+19350706, 2.20, -0.80, 0.11, 0.003
+19350713, 1.05, 1.22, -0.61, 0.003
+19350720, 0.16, 1.22, -0.04, 0.003
+19350727, 2.51, -0.42, 3.86, 0.003
+19350803, 1.84, 0.23, 4.53, 0.003
+19350810, 3.16, 1.16, 3.17, 0.003
+19350817, 1.56, 2.21, 6.58, 0.003
+19350824, -2.44, 1.86, -3.86, 0.003
+19350831, -0.05, 0.58, -1.49, 0.003
+19350907, 3.24, -0.45, 2.47, 0.003
+19350914, 0.27, 0.28, -1.95, 0.003
+19350921, -3.24, 0.22, -2.13, 0.003
+19350928, 2.29, 1.99, -1.02, 0.003
+19351005, -1.19, 0.49, -2.95, 0.003
+19351011, 2.56, 0.48, 0.57, 0.003
+19351019, 2.32, 0.48, -2.87, 0.003
+19351026, 3.94, 1.01, 0.95, 0.003
+19351102, 0.52, 0.62, 1.66, 0.006
+19351109, 2.21, -1.35, 0.26, 0.006
+19351116, 2.88, 0.40, 3.87, 0.006
+19351123, 0.95, 2.91, 4.39, 0.006
+19351130, -2.27, 1.31, 2.15, 0.006
+19351207, 2.71, 0.14, 3.69, 0.003
+19351214, -2.17, 0.56, -3.12, 0.003
+19351221, 0.32, -0.19, -1.24, 0.003
+19351228, 0.62, -1.16, -0.08, 0.003
+19360104, 4.06, 3.11, 4.30, 0.003
+19360111, 1.88, 2.16, 1.45, 0.003
+19360118, -0.30, 0.78, 1.23, 0.003
+19360125, 2.08, -0.66, 2.17, 0.003
+19360201, 1.95, 0.51, 2.58, 0.003
+19360208, 1.51, 1.30, 1.38, 0.003
+19360215, 2.18, -2.16, 3.31, 0.003
+19360221, 0.50, 0.93, 0.88, 0.003
+19360229, -1.49, 1.10, -0.15, 0.003
+19360307, 2.42, 0.82, -0.82, 0.004
+19360314, -2.45, -0.22, -1.53, 0.004
+19360321, 1.19, 0.11, -0.20, 0.004
+19360328, -0.66, -0.43, 0.95, 0.004
+19360404, 3.34, -0.81, 1.89, 0.004
+19360411, -0.12, -2.76, 2.28, 0.004
+19360418, -2.90, -1.06, -1.09, 0.004
+19360425, -3.08, -0.55, -2.55, 0.004
+19360502, -4.62, -0.01, -3.03, 0.004
+19360509, 1.44, 0.42, 0.03, 0.004
+19360516, 2.48, -0.20, 1.29, 0.004
+19360523, -0.57, -0.36, 0.03, 0.004
+19360529, 1.50, -0.19, 1.68, 0.004
+19360606, -1.30, -0.52, -1.31, 0.008
+19360613, 3.12, -1.36, 0.72, 0.008
+19360620, 0.88, -0.66, -0.01, 0.008
+19360627, 0.19, -0.44, 0.17, 0.008
+19360703, 0.35, -1.07, -0.91, 0.003
+19360711, 2.74, 0.39, 1.06, 0.003
+19360718, 2.24, 0.53, 1.71, 0.003
+19360725, 1.18, 0.42, 0.33, 0.003
+19360801, -0.34, 0.19, 0.05, 0.004
+19360808, 1.99, -0.53, 1.29, 0.004
+19360815, -1.58, 0.43, 0.81, 0.004
+19360822, -2.21, 0.93, -0.99, 0.004
+19360829, 2.67, -0.21, 3.21, 0.004
+19360905, 1.33, 1.50, 0.56, 0.003
+19360912, 0.06, 0.48, -0.08, 0.003
+19360919, 0.48, 0.43, 0.67, 0.003
+19360926, -0.39, 0.05, -0.64, 0.003
+19361003, 2.52, 1.38, 1.26, 0.005
+19361010, 2.49, -0.62, 0.31, 0.005
+19361017, 0.91, 0.12, 1.28, 0.005
+19361024, 0.15, -1.11, -0.72, 0.005
+19361031, 0.69, -1.21, 0.28, 0.005
+19361107, 3.21, 2.66, -0.78, 0.002
+19361114, -1.93, 2.70, -2.72, 0.002
+19361121, 1.47, 0.66, 0.78, 0.002
+19361128, 0.95, 1.69, 1.80, 0.002
+19361205, -1.16, 1.39, -0.03, 0.001
+19361212, 0.56, 2.76, 2.22, 0.001
+19361219, -1.85, -1.37, -0.21, 0.001
+19361224, 1.25, 1.60, 0.48, 0.001
+19370102, 0.22, 0.26, 1.68, 0.003
+19370109, 2.60, 1.84, 2.25, 0.003
+19370116, 1.73, 2.08, 0.32, 0.003
+19370123, 0.28, 0.64, 0.56, 0.003
+19370130, -0.43, -0.12, -0.42, 0.003
+19370206, 1.10, 0.06, 1.44, 0.004
+19370213, 1.16, 0.25, 0.31, 0.004
+19370220, -0.09, -0.14, 2.98, 0.004
+19370227, -1.06, 0.42, -0.38, 0.004
+19370306, 2.90, -1.27, 4.00, 0.004
+19370313, -1.24, 0.07, 1.03, 0.004
+19370320, -2.69, 0.51, 1.32, 0.004
+19370327, -0.25, -0.28, -0.12, 0.004
+19370403, -0.60, -0.78, -0.36, 0.009
+19370410, -2.72, -0.02, -1.42, 0.009
+19370417, 0.70, 0.35, -0.51, 0.009
+19370424, -1.79, -1.40, -0.11, 0.009
+19370501, -1.84, -1.88, -0.97, 0.016
+19370508, 0.85, -0.08, 0.29, 0.016
+19370515, -3.94, -1.78, -1.84, 0.016
+19370522, 3.29, 0.65, -0.09, 0.016
+19370528, -1.08, -0.02, -1.58, 0.016
+19370605, 0.59, -1.11, -0.27, 0.008
+19370612, -3.17, -0.62, -0.64, 0.008
+19370619, -0.92, -1.34, -1.68, 0.008
+19370626, -1.21, 0.38, -1.57, 0.008
+19370702, 2.27, -0.56, 1.55, 0.008
+19370710, 3.61, 2.61, 1.92, 0.008
+19370717, 1.22, -1.31, -1.37, 0.008
+19370724, 2.81, -1.01, 0.13, 0.008
+19370731, -0.79, -0.17, -0.91, 0.008
+19370807, -0.04, 0.40, 0.36, 0.006
+19370814, 1.65, -0.41, -0.57, 0.006
+19370821, -3.57, 0.59, -0.94, 0.006
+19370828, -3.50, -0.02, -0.78, 0.006
+19370904, -1.97, -1.00, -0.36, 0.009
+19370911, -8.30, -6.45, -1.93, 0.009
+19370918, -1.00, 3.32, -0.64, 0.009
+19370925, -7.19, -4.93, -2.05, 0.009
+19371002, 5.36, 2.77, 0.24, 0.004
+19371009, -6.65, -0.91, -2.53, 0.004
+19371016, -7.50, -7.56, -1.73, 0.004
+19371023, -3.68, 5.78, 0.53, 0.004
+19371030, 8.92, 4.51, 2.24, 0.004
+19371106, -8.99, -0.12, -2.14, 0.005
+19371113, 6.63, -1.30, 3.10, 0.005
+19371120, -8.58, -2.43, -0.42, 0.005
+19371127, 3.11, 0.01, 1.22, 0.005
+19371204, 2.51, -1.53, -1.18, 0.001
+19371211, -1.60, -1.02, 0.15, 0.001
+19371218, -0.22, -3.65, 0.03, 0.001
+19371224, -0.55, -2.01, -0.23, 0.001
+19371231, -4.20, -0.80, 0.51, 0.001
+19380108, 9.17, 6.22, -0.12, 0.001
+19380115, 2.53, 2.23, -0.26, 0.001
+19380122, -4.09, -0.18, -1.81, 0.001
+19380129, -7.40, -0.94, 0.22, 0.001
+19380205, 1.01, -1.20, 0.57, 0.001
+19380211, 2.04, 0.14, -0.29, 0.001
+19380219, 2.09, -0.15, -1.33, 0.001
+19380226, 3.02, -0.26, 0.24, 0.001
+19380305, -3.05, 0.20, -1.55, -0.002
+19380312, -4.55, -0.71, -1.18, -0.002
+19380319, -2.27, -2.13, -1.65, -0.002
+19380326, -11.41, -2.78, -1.09, -0.002
+19380402, 1.37, 2.16, 1.80, 0.003
+19380409, 10.41, 1.59, -0.51, 0.003
+19380416, 3.34, 1.15, -0.57, 0.003
+19380423, -2.01, 1.05, -0.19, 0.003
+19380430, -5.27, 0.10, 0.60, 0.003
+19380507, 5.91, -3.18, 0.89, 0.000
+19380514, -0.90, 1.31, -0.20, 0.000
+19380521, -3.69, 0.40, -1.95, 0.000
+19380528, -3.78, -1.13, 0.89, 0.000
+19380604, 2.17, -0.87, -0.45, 0.000
+19380611, 1.59, 0.10, -0.83, 0.000
+19380618, -0.51, 0.49, -1.38, 0.000
+19380625, 16.55, 0.91, 2.16, 0.000
+19380702, 6.16, 2.88, 4.48, -0.001
+19380709, -1.10, 2.20, 0.36, -0.001
+19380716, 1.66, 1.87, 0.04, -0.001
+19380723, 4.86, 1.71, 2.58, -0.001
+19380730, -2.38, 0.41, -2.98, -0.001
+19380806, 2.74, -0.65, -0.25, 0.001
+19380813, -6.62, -3.02, -2.66, 0.001
+19380820, 3.22, 0.60, 0.26, 0.001
+19380827, 0.61, 1.56, -0.49, 0.001
+19380903, -0.37, -1.20, -1.51, 0.005
+19380910, -3.39, -0.51, -0.92, 0.005
+19380917, -6.21, -4.79, -4.75, 0.005
+19380924, 1.62, 0.82, 1.93, 0.005
+19381001, 9.13, 3.53, 4.35, 0.003
+19381008, 4.48, 3.10, 2.84, 0.003
+19381015, 1.87, 0.43, -0.23, 0.003
+19381022, 1.12, 0.96, 1.31, 0.003
+19381029, -1.72, 0.36, -0.29, 0.003
+19381105, 0.52, 0.45, 0.67, -0.016
+19381112, 4.15, 0.44, 1.48, -0.016
+19381119, -5.13, -0.85, -2.16, -0.016
+19381126, -1.40, -0.33, -1.53, -0.016
+19381203, -0.71, -1.13, -1.89, 0.000
+19381210, -0.32, -1.26, -1.93, 0.000
+19381217, 2.65, -1.47, -0.14, 0.000
+19381224, 0.12, -1.90, 2.06, 0.000
+19381231, 3.08, 2.43, 2.69, 0.000
+19390107, -1.77, 1.15, -0.15, -0.001
+19390114, -1.78, -1.15, -0.90, -0.001
+19390121, -0.89, 0.48, -1.07, -0.001
+19390128, -5.21, -2.96, -3.33, -0.001
+19390204, 4.78, 1.71, 2.47, 0.002
+19390211, 0.03, -0.85, -0.78, 0.002
+19390218, 0.97, 0.17, 0.10, 0.002
+19390225, 0.97, 0.75, 1.33, 0.002
+19390304, 1.87, -0.19, 1.49, -0.002
+19390311, 1.57, 0.78, -2.07, -0.002
+19390318, -6.97, -1.42, -3.12, -0.002
+19390325, 0.16, 0.08, 0.25, -0.002
+19390401, -6.66, -4.84, -2.03, -0.001
+19390408, -8.37, -1.58, -3.92, -0.001
+19390415, 7.48, 2.89, 4.21, -0.001
+19390422, -0.48, 0.95, -1.72, -0.001
+19390429, -0.06, 0.20, 0.00, -0.001
+19390506, 2.62, 1.82, 0.43, 0.002
+19390513, 0.54, 0.55, -0.80, 0.002
+19390520, -1.00, -0.35, -0.90, 0.002
+19390527, 4.07, 0.64, 1.51, 0.002
+19390603, -0.15, 0.56, -1.04, 0.003
+19390610, 2.24, 0.31, -1.04, 0.003
+19390617, -3.23, -0.02, -1.72, 0.003
+19390624, 1.32, 0.79, -0.02, 0.003
+19390701, -4.09, -2.54, 0.24, 0.000
+19390708, 1.69, -0.16, -0.26, 0.000
+19390715, 3.52, 1.15, -0.19, 0.000
+19390722, 5.08, 2.76, 1.28, 0.000
+19390729, -0.86, -0.20, -0.87, 0.000
+19390805, -1.01, -0.50, -0.19, -0.001
+19390812, -2.24, -0.89, -0.61, -0.001
+19390819, -2.73, -1.81, -0.82, -0.001
+19390826, 0.37, -2.47, -0.29, -0.001
+19390902, 0.91, 5.43, -0.01, 0.002
+19390909, 11.02, 9.77, 12.10, 0.002
+19390916, 1.09, 1.02, 2.22, 0.002
+19390923, 1.01, 1.05, 1.45, 0.002
+19390930, 0.50, 0.05, 2.04, 0.002
+19391007, -2.41, -1.56, -2.36, 0.001
+19391014, 0.45, -0.16, -0.53, 0.001
+19391021, 2.63, 1.56, -0.71, 0.001
+19391028, -0.12, 1.19, -0.98, 0.001
+19391104, -0.29, 1.12, -1.74, 0.001
+19391110, -2.13, -2.68, -2.24, 0.001
+19391118, 1.58, -0.37, -0.25, 0.001
+19391125, -1.77, -1.62, -1.39, 0.001
+19391202, -1.22, -0.98, -1.73, 0.001
+19391209, 0.98, 1.01, -1.96, 0.001
+19391216, 0.20, -0.71, -1.00, 0.001
+19391223, 0.34, -0.88, -1.56, 0.001
+19391230, 0.64, 0.14, 0.20, 0.001
+19400106, 1.33, 2.04, 1.53, 0.000
+19400113, -3.88, -1.48, -0.87, 0.000
+19400120, 0.35, -0.73, -0.83, 0.000
+19400127, 0.55, 1.37, -0.57, 0.000
+19400203, -0.39, -0.20, -0.46, 0.000
+19400210, 1.92, 0.56, 0.73, 0.000
+19400217, 0.20, 1.13, -0.31, 0.000
+19400224, -0.90, 0.11, -0.58, 0.000
+19400302, -0.39, 0.02, 0.05, 0.000
+19400309, 1.40, 1.05, -0.26, 0.000
+19400316, -1.69, -2.49, -0.60, 0.000
+19400323, 1.16, 2.15, -0.56, 0.000
+19400330, 1.50, 0.25, 0.82, 0.000
+19400406, 2.49, 1.22, 2.12, 0.000
+19400413, -1.43, 1.50, -1.64, 0.000
+19400420, -1.08, 1.48, -0.17, 0.000
+19400427, -0.04, 0.15, -0.45, 0.000
+19400504, -0.34, -0.60, -0.74, -0.004
+19400511, -2.11, -1.42, 0.07, -0.004
+19400518, -16.25, -6.26, -5.27, -0.004
+19400525, -5.18, -0.10, 2.15, -0.004
+19400601, 0.74, 1.21, 0.02, 0.001
+19400608, 0.19, -0.28, 0.27, 0.001
+19400615, 6.72, 1.51, 1.42, 0.001
+19400622, 0.02, -1.74, 1.23, 0.001
+19400629, 0.03, -1.54, 1.49, 0.001
+19400706, 0.16, 0.35, 0.53, 0.003
+19400713, -0.27, -0.04, -0.23, 0.003
+19400720, 0.37, 0.98, -1.15, 0.003
+19400727, 0.20, -0.57, 0.20, 0.003
+19400803, 2.68, 0.42, -0.50, -0.002
+19400810, 0.30, -0.85, -0.36, -0.002
+19400817, -3.43, -0.21, -0.36, -0.002
+19400824, 2.31, -0.16, -0.42, -0.002
+19400831, 3.16, 0.94, 2.16, -0.002
+19400907, 3.11, 1.69, 0.84, 0.000
+19400914, -3.45, -0.74, -1.56, 0.000
+19400921, 2.66, 0.82, 0.43, 0.000
+19400928, 0.04, 1.09, -1.49, 0.000
+19401005, 1.36, 0.88, 2.06, 0.000
+19401011, -1.91, -0.21, -0.31, 0.000
+19401019, 1.14, 0.26, 1.16, 0.000
+19401026, 0.74, -0.14, 1.49, 0.000
+19401102, 2.30, -0.38, 1.20, 0.000
+19401109, 2.87, 3.36, 1.51, 0.000
+19401116, -2.10, -0.68, 0.36, 0.000
+19401123, -1.74, -0.02, -0.24, 0.000
+19401130, -1.02, -0.32, -1.55, 0.000
+19401207, 0.37, -0.28, -1.28, 0.000
+19401214, 0.84, -0.46, 0.68, 0.000
+19401221, -2.10, -0.98, -1.01, 0.000
+19401228, 0.68, -0.67, 0.04, 0.000
+19410104, 2.09, 1.59, 2.29, -0.002
+19410111, 0.96, 1.05, 2.37, -0.002
+19410118, -2.53, -0.12, -0.26, -0.002
+19410125, -0.16, -0.20, 1.20, -0.002
+19410201, -4.13, -1.13, -1.45, -0.002
+19410208, 1.23, 0.00, 0.91, -0.002
+19410215, -4.89, -1.75, -0.80, -0.002
+19410221, 1.35, 0.11, 0.76, -0.002
+19410301, 1.36, 0.90, 0.50, 0.003
+19410308, 0.35, 0.00, 0.66, 0.003
+19410315, 1.43, 1.15, 0.45, 0.003
+19410322, -1.24, -0.31, 0.06, 0.003
+19410329, 0.29, -0.91, 1.56, 0.003
+19410405, 1.67, -0.04, 2.63, -0.002
+19410412, -4.56, -1.05, -1.90, -0.002
+19410419, -1.89, -0.84, 0.37, -0.002
+19410426, 0.19, -0.26, 2.64, -0.002
+19410503, -0.09, -0.14, 2.25, 0.001
+19410510, 2.16, -0.07, 2.12, 0.001
+19410517, -1.31, -0.61, -1.96, 0.001
+19410524, 0.62, -0.59, 0.01, 0.001
+19410531, -0.62, 1.01, -1.01, 0.001
+19410607, 2.59, -0.52, -0.07, 0.001
+19410614, 2.51, 1.43, -0.28, 0.001
+19410621, -0.15, 0.49, -0.22, 0.001
+19410628, 1.07, -0.31, 1.04, 0.001
+19410705, 0.82, -0.41, 1.09, 0.007
+19410712, 3.23, 2.89, 0.74, 0.007
+19410719, -0.05, -0.02, 0.01, 0.007
+19410726, 1.24, 1.72, 3.63, 0.007
+19410802, -0.06, 1.58, 0.80, 0.002
+19410809, -1.29, -0.91, -1.22, 0.002
+19410816, -0.94, -0.93, 0.48, 0.002
+19410823, 0.92, 0.59, 0.26, 0.002
+19410830, 1.48, 0.47, -0.29, 0.002
+19410906, -0.18, 0.26, -0.66, 0.002
+19410913, 0.14, 0.12, 0.89, 0.002
+19410920, 0.04, 0.34, -1.17, 0.002
+19410927, -1.45, -1.94, 0.39, 0.002
+19411004, 0.29, 0.11, 1.15, 0.001
+19411011, -2.49, -0.90, -0.32, 0.001
+19411018, -1.38, -1.04, -0.28, 0.001
+19411025, 0.96, 0.57, 0.81, 0.001
+19411101, -1.83, -0.42, 1.11, 0.001
+19411108, 0.30, -0.72, 0.10, 0.001
+19411115, -1.27, -0.89, -0.56, 0.001
+19411122, 0.85, 0.02, 0.58, 0.001
+19411129, -2.12, 0.38, -1.09, 0.001
+19411206, 2.51, -1.39, -0.40, 0.002
+19411213, -6.41, -1.42, -5.87, 0.002
+19411220, -2.40, -0.93, 2.19, 0.002
+19411227, -1.07, 0.52, -0.54, 0.002
+19420103, 5.83, 3.94, 2.40, 0.004
+19420110, -2.12, 3.20, 1.03, 0.004
+19420117, 1.01, 0.23, 1.77, 0.004
+19420124, -0.64, -0.10, 2.57, 0.004
+19420131, -0.48, 0.43, 0.61, 0.004
+19420207, 0.29, 0.51, 0.77, 0.003
+19420214, -2.13, -0.39, -1.34, 0.003
+19420221, -1.66, 1.36, -0.20, 0.003
+19420228, 1.06, 0.22, -0.23, 0.003
+19420307, -4.14, 0.56, -0.72, 0.003
+19420314, -2.03, 1.52, -0.65, 0.003
+19420321, 0.96, -0.66, 1.11, 0.003
+19420328, -1.17, 0.05, 0.25, 0.003
+19420404, 1.00, 0.25, -0.37, 0.002
+19420411, -1.36, -0.33, -0.02, 0.002
+19420418, -2.50, -0.48, -0.18, 0.002
+19420425, -2.53, 1.52, 0.07, 0.002
+19420502, 2.07, -1.94, 2.41, 0.006
+19420509, 1.87, -0.95, -0.17, 0.006
+19420516, 0.35, -1.03, -0.78, 0.006
+19420523, 0.91, -0.18, -1.56, 0.006
+19420529, 1.31, -0.17, -0.38, 0.006
+19420606, 3.53, -0.25, -0.49, 0.006
+19420613, -0.26, -0.19, -0.50, 0.006
+19420620, 0.18, 0.10, 0.39, 0.006
+19420627, -1.15, -0.26, 0.77, 0.006
+19420703, 1.95, -0.99, 0.69, 0.006
+19420711, 3.95, -0.11, 1.04, 0.006
+19420718, -0.84, 0.32, -0.36, 0.006
+19420725, -0.51, -0.50, 0.63, 0.006
+19420801, -0.57, 0.54, 0.82, 0.007
+19420808, -0.54, -0.23, -1.14, 0.007
+19420815, 1.57, -0.96, 1.08, 0.007
+19420822, 1.42, 0.42, 2.33, 0.007
+19420829, -0.82, 0.35, -1.51, 0.007
+19420905, 0.27, 0.08, 0.71, 0.007
+19420912, -0.58, 0.25, -0.19, 0.007
+19420919, 1.07, 0.11, 1.88, 0.007
+19420926, 2.25, 0.52, 0.22, 0.007
+19421003, 2.01, -0.55, 2.54, 0.008
+19421010, 3.79, -0.06, 2.21, 0.008
+19421017, -0.72, 1.65, -0.50, 0.008
+19421024, 1.65, 0.22, 0.60, 0.008
+19421031, -0.35, -0.37, 0.98, 0.008
+19421107, 2.27, 0.25, -0.36, 0.007
+19421114, -0.50, 0.14, -1.16, 0.007
+19421121, -0.45, -0.58, -1.28, 0.007
+19421128, -0.95, -0.40, -0.93, 0.007
+19421205, 0.55, -1.13, -0.47, 0.007
+19421212, 0.56, -0.50, -0.84, 0.007
+19421219, 2.78, -0.10, 1.61, 0.007
+19421226, 0.80, -0.94, -0.70, 0.007
+19430102, 0.96, 0.78, 1.04, 0.007
+19430109, 0.94, 2.53, 1.69, 0.007
+19430116, 1.97, 2.10, 2.67, 0.007
+19430123, 0.66, 1.07, -0.44, 0.007
+19430130, 2.60, 1.22, 2.86, 0.007
+19430206, 0.53, 0.78, 0.10, 0.007
+19430213, 2.21, 2.41, 2.70, 0.007
+19430220, 0.76, 0.48, 0.52, 0.007
+19430227, 2.54, 1.09, 2.56, 0.007
+19430306, 0.95, 1.46, 1.46, 0.008
+19430313, 0.59, 1.79, 1.91, 0.008
+19430320, -1.34, 0.28, -2.04, 0.008
+19430327, 3.97, 0.87, 1.91, 0.008
+19430403, 1.66, 1.32, 5.04, 0.007
+19430410, -2.95, -1.30, -1.53, 0.007
+19430417, 2.20, 1.78, 2.51, 0.007
+19430424, 0.94, 0.59, 2.07, 0.007
+19430501, 1.46, 0.31, 0.85, 0.006
+19430508, 2.48, 2.41, 1.85, 0.006
+19430515, -1.25, 0.56, -0.74, 0.006
+19430522, 1.60, 1.19, 0.51, 0.006
+19430529, 2.27, -0.20, 0.41, 0.006
+19430605, 1.20, 0.51, -0.16, 0.008
+19430612, -1.35, -0.06, -2.37, 0.008
+19430619, -1.01, -1.02, -0.31, 0.008
+19430626, 2.36, -0.05, 1.68, 0.008
+19430703, 1.00, -0.01, 0.60, 0.007
+19430710, 0.47, -0.65, 0.24, 0.007
+19430717, 1.15, -0.68, 1.16, 0.007
+19430724, -0.38, -0.08, -0.31, 0.007
+19430731, -6.24, -1.23, -3.78, 0.007
+19430807, -0.72, -0.38, -1.58, 0.007
+19430814, 2.00, 0.30, 1.78, 0.007
+19430821, -0.99, 0.06, -1.97, 0.007
+19430828, 0.06, -0.56, 0.45, 0.007
+19430904, 1.47, 0.29, 0.60, 0.007
+19430911, 0.73, 0.66, 0.87, 0.007
+19430918, 2.04, 0.34, 1.89, 0.007
+19430925, -0.45, 0.21, -0.37, 0.007
+19431002, -0.31, 0.23, -0.35, 0.007
+19431009, -2.33, -0.63, -0.45, 0.007
+19431016, 0.65, -0.26, 0.42, 0.007
+19431023, 0.23, 0.70, 0.72, 0.007
+19431030, 0.22, 0.42, 0.72, 0.007
+19431106, -2.53, -0.65, -2.99, 0.007
+19431113, -2.35, -1.31, -1.08, 0.007
+19431120, 1.41, 0.74, 2.35, 0.007
+19431127, -1.65, 0.00, -2.35, 0.007
+19431204, 1.20, 0.28, 1.52, 0.007
+19431211, 2.95, 0.90, 0.75, 0.007
+19431218, 0.65, -0.12, 0.62, 0.007
+19431224, -0.04, 0.76, -0.31, 0.007
+19431231, 0.57, 0.72, 0.17, 0.007
+19440108, 1.55, 1.14, 1.55, 0.007
+19440115, 0.58, 1.04, 1.01, 0.007
+19440122, 0.03, -0.01, -0.02, 0.007
+19440129, -0.65, 0.18, -0.55, 0.007
+19440205, -1.08, 0.72, -0.01, 0.007
+19440211, 0.72, -0.32, 1.76, 0.007
+19440219, 0.53, 0.18, 0.44, 0.007
+19440226, 0.89, -0.03, 0.85, 0.007
+19440304, 0.26, -0.45, -1.64, 0.006
+19440311, 2.32, 0.76, 1.28, 0.006
+19440318, 0.98, 0.26, 2.41, 0.006
+19440325, -0.76, 0.75, 0.10, 0.006
+19440401, -0.74, -0.28, -0.87, 0.007
+19440408, 0.18, -0.01, 0.09, 0.007
+19440415, -0.70, -0.66, 0.07, 0.007
+19440422, -1.41, -0.53, -1.06, 0.007
+19440429, 0.20, -0.08, 0.07, 0.007
+19440506, 1.65, 0.40, -0.20, 0.006
+19440513, -0.32, -0.33, -0.86, 0.006
+19440520, 1.55, 0.76, 1.82, 0.006
+19440527, 1.21, 0.56, 0.15, 0.006
+19440603, 0.84, 0.23, -0.38, 0.007
+19440610, 0.10, 0.46, -0.94, 0.007
+19440617, 4.10, 0.92, 1.90, 0.007
+19440624, 0.32, 1.09, 0.71, 0.007
+19440701, 1.10, 1.91, 1.02, 0.007
+19440708, 1.70, 0.46, 1.79, 0.007
+19440715, 0.14, 0.57, -0.17, 0.007
+19440722, -3.85, -1.84, -2.85, 0.007
+19440729, 0.55, 0.97, 1.18, 0.007
+19440805, -0.65, 0.60, -1.52, 0.007
+19440812, 1.47, 0.82, 0.56, 0.007
+19440818, 1.86, 0.85, 0.07, 0.007
+19440825, -1.44, -0.64, -1.13, 0.007
+19440901, 0.58, 1.13, 0.09, 0.006
+19440909, -3.29, -0.28, -1.95, 0.006
+19440916, 0.66, -0.42, -0.45, 0.006
+19440923, 1.33, 0.47, 0.30, 0.006
+19440930, 1.11, 0.61, 1.26, 0.006
+19441007, 1.61, 0.00, 1.04, 0.008
+19441014, -0.10, 0.13, -0.84, 0.008
+19441021, 0.17, 0.29, -0.13, 0.008
+19441028, -1.43, -0.71, -0.65, 0.008
+19441104, 0.83, 0.07, 0.98, 0.007
+19441110, 0.82, 0.26, 0.87, 0.007
+19441118, -1.60, -0.98, -0.43, 0.007
+19441125, 0.72, 0.47, 0.23, 0.007
+19441202, 1.13, 1.10, 1.36, 0.006
+19441209, 2.49, 0.81, 2.23, 0.006
+19441216, 1.03, 0.28, 1.24, 0.006
+19441223, -0.86, -0.03, 1.12, 0.006
+19441230, 1.13, 0.63, 0.46, 0.006
+19450106, 1.23, 0.02, 0.95, 0.006
+19450113, 1.63, 0.26, 2.52, 0.006
+19450120, -1.80, 0.83, -3.06, 0.006
+19450127, 1.25, 0.66, 1.22, 0.006
+19450203, 1.19, 1.18, 0.95, 0.006
+19450210, 0.63, 0.40, 0.10, 0.006
+19450217, 2.47, -0.03, 1.60, 0.006
+19450224, 0.34, -0.04, -0.02, 0.006
+19450303, 0.92, 0.61, 0.95, 0.006
+19450310, -2.12, -1.95, -1.32, 0.006
+19450317, 1.53, 0.35, 1.19, 0.006
+19450324, -3.11, -0.30, -1.62, 0.006
+19450331, 0.07, -0.06, -0.06, 0.006
+19450407, 1.11, -0.65, 0.30, 0.007
+19450413, 2.42, 0.29, 1.18, 0.007
+19450421, 2.45, 0.59, 1.34, 0.007
+19450428, 1.38, -0.06, 0.70, 0.007
+19450505, 1.06, 0.60, -1.64, 0.007
+19450512, -1.35, 0.68, 0.06, 0.007
+19450519, 1.45, 0.63, 0.69, 0.007
+19450526, -0.10, 0.22, 0.67, 0.007
+19450602, 1.17, -0.01, 1.40, 0.006
+19450609, -0.26, 1.65, 0.43, 0.006
+19450616, 1.13, 0.82, 2.44, 0.006
+19450623, 0.96, 0.53, 1.23, 0.006
+19450630, -1.68, -0.06, -1.04, 0.006
+19450706, -0.53, -0.72, -0.51, 0.008
+19450713, 0.72, -0.17, -0.14, 0.008
+19450720, -2.46, -0.40, -1.51, 0.008
+19450727, -1.25, -0.40, -0.88, 0.008
+19450803, 1.57, -0.04, 0.36, 0.007
+19450810, 0.76, 0.87, -2.42, 0.007
+19450817, -0.56, 0.57, -2.47, 0.007
+19450824, 2.61, -0.09, -0.11, 0.007
+19450831, 3.10, 0.45, 0.81, 0.007
+19450908, 1.54, 0.15, -1.40, 0.007
+19450915, -0.63, 0.04, 0.46, 0.007
+19450922, 2.41, 1.13, 0.97, 0.007
+19450929, 1.40, 0.33, 0.47, 0.007
+19451006, 2.00, 0.21, -0.21, 0.008
+19451011, 1.17, 0.84, 1.02, 0.008
+19451020, 0.37, 0.02, 0.60, 0.008
+19451026, -0.37, 0.79, -0.26, 0.008
+19451103, 2.23, 1.28, 0.81, 0.006
+19451110, 1.74, 0.84, 0.88, 0.006
+19451117, 0.92, 0.39, 1.54, 0.006
+19451124, -2.42, 0.42, 0.71, 0.006
+19451201, 4.19, 2.04, 1.12, 0.008
+19451208, 2.40, 1.99, -0.67, 0.008
+19451215, -1.21, 0.13, -0.47, 0.008
+19451222, -1.34, -0.34, -0.86, 0.008
+19451229, 0.89, 0.01, 0.23, 0.008
+19460105, -0.65, -0.21, -0.69, 0.007
+19460112, 4.16, 1.07, 1.17, 0.007
+19460119, 0.52, 1.40, 0.48, 0.007
+19460126, 0.33, 2.11, 0.68, 0.007
+19460202, 2.90, -0.52, 0.66, 0.007
+19460209, -1.99, -0.28, -0.21, 0.007
+19460216, 1.86, 1.18, -0.63, 0.007
+19460221, -4.40, -0.77, -0.80, 0.007
+19460302, -3.20, -1.11, -0.69, 0.007
+19460309, 2.61, 0.00, -0.39, 0.007
+19460316, -0.16, -0.73, -0.09, 0.007
+19460323, 2.37, 1.05, 0.06, 0.007
+19460330, 1.78, 0.11, 0.52, 0.007
+19460406, 2.69, 1.26, -0.11, 0.007
+19460413, 0.17, -0.06, -0.71, 0.007
+19460420, 1.71, 0.89, 0.80, 0.007
+19460427, -0.75, -0.09, 0.38, 0.007
+19460504, -1.39, 0.08, -0.29, 0.007
+19460511, 3.09, 1.78, 1.33, 0.007
+19460518, -0.93, -0.05, -1.06, 0.007
+19460524, 1.41, 0.11, 1.18, 0.007
+19460531, 2.15, -0.11, 0.03, 0.007
+19460607, -1.63, -0.64, -0.53, 0.007
+19460614, -0.24, 0.13, 0.33, 0.007
+19460621, -3.36, -0.84, -0.56, 0.007
+19460628, 1.34, -0.20, 0.19, 0.007
+19460705, 0.16, -0.49, 0.01, 0.008
+19460712, -0.95, -0.81, -0.16, 0.008
+19460719, -1.91, -0.57, 0.26, 0.008
+19460726, -2.08, -0.66, 0.17, 0.008
+19460802, 2.72, 0.50, -0.25, 0.007
+19460809, 0.23, -0.07, 0.58, 0.007
+19460816, -1.06, -0.81, 0.14, 0.007
+19460823, -1.47, -0.45, -0.24, 0.007
+19460830, -4.86, -0.57, 0.22, 0.007
+19460906, -5.42, -1.79, -1.19, 0.007
+19460913, -3.08, -1.65, -0.30, 0.007
+19460920, -3.72, -1.89, -0.85, 0.007
+19460927, 2.88, 0.93, 0.67, 0.007
+19461005, -2.66, -0.41, -0.33, 0.007
+19461011, -0.83, -1.07, 1.24, 0.007
+19461019, 2.34, 1.16, 0.25, 0.007
+19461026, -1.73, 0.02, 1.09, 0.007
+19461102, 2.93, 1.09, 1.15, 0.007
+19461109, -1.02, -0.12, 0.75, 0.007
+19461116, -1.69, -0.41, -0.23, 0.007
+19461123, -2.65, -0.98, 0.21, 0.007
+19461130, 3.00, 0.10, 0.54, 0.007
+19461207, 1.28, 0.52, 0.06, 0.008
+19461214, 2.79, -0.91, -0.72, 0.008
+19461221, 1.73, 1.26, -0.48, 0.008
+19461228, -1.46, -0.42, -0.10, 0.008
+19470104, 0.43, 0.34, -0.64, 0.007
+19470111, -2.01, -0.65, -0.51, 0.007
+19470118, 0.84, 0.39, -0.01, 0.007
+19470125, -0.10, 0.82, -0.01, 0.007
+19470201, 3.35, 1.31, 1.06, 0.007
+19470208, 2.29, 0.15, -0.21, 0.007
+19470215, -1.49, 0.62, -0.60, 0.007
+19470221, -0.19, -0.22, 0.27, 0.007
+19470301, -2.25, -0.27, -0.02, 0.007
+19470308, -2.37, -0.91, 0.24, 0.007
+19470315, -1.96, -0.68, 0.37, 0.007
+19470322, 2.80, -0.59, -0.05, 0.007
+19470329, 0.61, 0.67, 0.02, 0.007
+19470405, -0.93, -0.52, 0.54, 0.007
+19470412, -3.78, -1.33, -0.75, 0.007
+19470419, -2.04, -2.20, 0.09, 0.007
+19470426, 0.18, 0.19, 0.74, 0.007
+19470503, 2.60, -0.37, -0.16, 0.007
+19470510, -1.52, -1.68, 0.37, 0.007
+19470517, -5.85, -2.13, -1.13, 0.007
+19470524, 3.39, 0.55, 1.18, 0.007
+19470529, 1.73, 0.17, 0.58, 0.007
+19470606, 0.20, -0.80, -0.08, 0.008
+19470613, 3.51, 0.68, -0.39, 0.008
+19470620, 1.17, 0.52, 0.11, 0.008
+19470627, -0.04, -0.50, 0.07, 0.008
+19470703, 3.14, 0.64, 1.70, 0.007
+19470711, 1.91, 1.41, 0.52, 0.007
+19470718, 0.03, 0.05, -0.10, 0.007
+19470725, 1.60, 0.47, 1.58, 0.007
+19470801, -1.90, -1.44, -1.06, 0.007
+19470808, -2.10, -0.73, -0.79, 0.007
+19470815, 1.30, 0.80, 1.67, 0.007
+19470822, -0.48, -0.06, -0.32, 0.007
+19470829, -0.68, 0.54, -0.14, 0.007
+19470905, -1.11, 0.13, -0.41, 0.016
+19470912, -0.20, 0.64, 0.01, 0.016
+19470919, 1.35, 0.76, 0.60, 0.016
+19470926, -1.84, 0.35, 0.25, 0.016
+19471004, 2.66, 0.83, 1.92, 0.016
+19471011, 0.43, 1.34, 0.07, 0.016
+19471018, 2.39, -0.27, 0.41, 0.016
+19471025, -0.76, -0.33, -0.38, 0.016
+19471101, -0.70, -1.17, -0.85, 0.016
+19471108, -0.83, -0.57, -0.39, 0.016
+19471115, -0.33, -0.60, 0.41, 0.016
+19471122, 0.90, 0.40, 1.05, 0.016
+19471129, -1.97, -0.88, 0.12, 0.016
+19471206, -1.93, -0.56, 0.41, 0.020
+19471213, 2.93, 0.06, 2.16, 0.020
+19471220, 1.94, -0.45, 1.86, 0.020
+19471227, -0.87, -0.96, -0.36, 0.020
+19480102, 1.39, 0.21, 0.54, 0.018
+19480110, -0.63, 0.96, 0.08, 0.018
+19480117, -2.42, 0.84, -0.51, 0.018
+19480124, -3.19, 0.15, 0.01, 0.018
+19480131, 1.93, -0.23, 0.73, 0.018
+19480207, -2.69, -0.57, -0.30, 0.018
+19480214, -2.87, -0.78, -0.92, 0.018
+19480221, 0.88, -0.13, 0.32, 0.018
+19480228, 0.29, -0.13, 1.14, 0.018
+19480306, 1.62, -0.18, 0.82, 0.022
+19480313, -0.41, -0.23, 0.97, 0.022
+19480320, 3.60, 0.10, 1.85, 0.022
+19480327, 0.76, 0.59, -0.36, 0.022
+19480403, 2.77, -0.93, 0.05, 0.020
+19480410, 1.01, -0.43, 1.47, 0.020
+19480417, 0.98, 0.28, 0.66, 0.020
+19480424, 2.06, -0.39, 2.51, 0.020
+19480501, -1.12, -0.40, -0.25, 0.019
+19480508, 1.64, -0.05, 0.28, 0.019
+19480515, 4.49, 1.36, -0.15, 0.019
+19480522, 0.87, 0.72, 0.38, 0.019
+19480528, 0.42, -1.11, -1.23, 0.019
+19480604, -0.69, -0.98, -0.44, 0.023
+19480611, 2.06, -0.44, 2.30, 0.023
+19480618, -0.50, -0.78, 0.95, 0.023
+19480625, -0.67, 0.67, 0.33, 0.023
+19480702, 0.18, -0.63, 0.01, 0.020
+19480709, 0.45, 0.10, 0.70, 0.020
+19480716, -3.34, 0.34, -0.71, 0.020
+19480723, -0.32, -0.38, -0.34, 0.020
+19480730, -2.42, -0.18, 0.17, 0.020
+19480806, 1.29, -0.96, 0.78, 0.021
+19480813, -2.14, -0.06, -1.59, 0.021
+19480820, 2.00, -0.75, 0.56, 0.021
+19480827, -0.26, 0.07, 0.12, 0.021
+19480903, 1.27, 0.26, 0.98, 0.009
+19480910, -2.72, -0.26, -1.38, 0.009
+19480917, -0.48, 0.13, -0.04, 0.009
+19480924, -0.87, -0.54, -0.59, 0.009
+19481002, 0.73, -0.81, 0.26, 0.010
+19481009, 0.96, -0.03, -0.02, 0.010
+19481016, 1.39, -0.44, 0.32, 0.010
+19481023, 2.99, 0.32, 1.59, 0.010
+19481030, -0.99, -0.84, -1.82, 0.010
+19481106, -5.74, 0.17, -2.51, 0.010
+19481113, -2.39, -0.19, -1.31, 0.010
+19481120, 2.01, -0.10, 0.68, 0.010
+19481127, -2.41, -0.35, -1.30, 0.010
+19481204, 2.28, -0.71, 1.39, 0.011
+19481211, 0.66, -0.53, -0.72, 0.011
+19481218, -0.98, -0.20, -1.53, 0.011
+19481224, 0.65, -0.57, 0.33, 0.011
+19481231, -0.39, -0.91, -1.40, 0.011
+19490108, 2.88, 2.22, 1.20, 0.024
+19490115, -1.86, -0.05, -0.73, 0.024
+19490122, 1.30, 0.15, 0.37, 0.024
+19490129, -1.88, -0.29, 0.20, 0.024
+19490205, -2.48, 0.02, -1.55, 0.022
+19490211, -1.44, -0.80, 0.32, 0.022
+19490219, 1.63, -0.46, 0.26, 0.022
+19490226, -1.62, -0.30, -0.36, 0.022
+19490305, 2.46, -0.48, 0.70, 0.024
+19490312, 2.06, 0.23, 0.70, 0.024
+19490319, -0.88, 0.22, -0.35, 0.024
+19490326, -0.09, -0.09, -0.01, 0.024
+19490402, 0.97, 2.02, 0.68, 0.023
+19490409, 0.13, -0.57, 0.62, 0.023
+19490416, -0.05, 0.10, -0.60, 0.023
+19490423, -1.42, -0.43, -0.83, 0.023
+19490430, -0.20, -0.11, -0.07, 0.023
+19490507, 1.10, -0.45, -0.49, 0.025
+19490514, 0.37, 0.01, 0.68, 0.025
+19490521, -1.18, 0.31, -1.15, 0.025
+19490527, -1.26, -0.38, -0.32, 0.025
+19490603, -2.69, -0.22, -0.83, 0.024
+19490610, -1.45, -0.05, -0.75, 0.024
+19490617, 0.09, -0.74, -0.58, 0.024
+19490624, 2.00, -0.18, 0.26, 0.024
+19490701, 0.88, -0.05, -0.21, 0.022
+19490708, 1.30, 0.35, -0.20, 0.022
+19490715, 1.60, 0.02, 0.55, 0.022
+19490722, 1.08, -0.05, 0.09, 0.022
+19490729, 0.73, 0.09, -0.77, 0.022
+19490805, 1.95, -0.94, 0.78, 0.023
+19490812, 0.77, 1.62, -0.06, 0.023
+19490819, 1.07, -0.03, -0.31, 0.023
+19490826, -1.05, -0.11, -0.64, 0.023
+19490902, 0.57, -0.58, -0.06, 0.022
+19490909, 0.61, -0.28, -0.62, 0.022
+19490916, 1.97, 0.67, 1.10, 0.022
+19490923, -0.39, 0.17, 0.61, 0.022
+19491001, -0.30, 0.77, -1.15, 0.022
+19491008, 2.26, 1.27, -0.03, 0.022
+19491015, 0.42, 0.38, 0.52, 0.022
+19491022, 0.02, -0.14, -0.08, 0.022
+19491029, 1.24, -0.45, -0.45, 0.022
+19491105, 1.24, -0.81, 0.22, 0.021
+19491112, -0.38, -0.27, -1.44, 0.021
+19491119, 1.26, 0.01, -0.25, 0.021
+19491126, -0.51, -0.12, 0.11, 0.021
+19491203, 2.05, 0.57, 1.88, 0.022
+19491210, 0.48, 0.97, -0.90, 0.022
+19491217, 1.63, 0.53, 0.96, 0.022
+19491223, 0.08, -0.20, -0.55, 0.022
+19491231, 0.59, 0.41, 0.39, 0.022
+19500107, 1.77, 2.60, 1.91, 0.023
+19500114, -1.98, 1.03, -0.51, 0.023
+19500121, 1.39, -0.55, -0.36, 0.023
+19500128, -0.28, 0.40, -0.90, 0.023
+19500204, 2.39, -0.64, 0.01, 0.021
+19500211, -0.38, 0.27, -1.22, 0.021
+19500218, 0.37, 0.80, 0.66, 0.021
+19500225, 0.14, -0.26, -0.08, 0.021
+19500304, 0.82, -0.12, 0.59, 0.024
+19500311, -0.84, -0.90, -0.66, 0.024
+19500318, 2.10, -0.58, 0.30, 0.024
+19500325, 0.77, -0.68, -1.34, 0.024
+19500401, -1.49, 0.81, -1.06, 0.021
+19500408, 2.57, -0.29, 0.12, 0.021
+19500415, -0.01, 0.74, -1.61, 0.021
+19500422, 0.21, 1.11, 1.13, 0.021
+19500429, 0.87, 0.21, 0.91, 0.021
+19500506, 1.26, -1.25, 1.33, 0.026
+19500513, 0.31, -0.10, -0.45, 0.026
+19500520, 2.48, -0.63, 0.79, 0.026
+19500527, -0.32, -0.48, -0.55, 0.026
+19500602, 0.47, 0.17, -1.09, 0.024
+19500609, 1.64, -1.04, -0.16, 0.024
+19500616, -1.21, -0.34, 0.13, 0.024
+19500623, 1.02, -0.01, 0.10, 0.024
+19500630, -7.25, -0.93, -0.41, 0.024
+19500707, -0.17, 0.15, 1.01, 0.025
+19500714, -4.00, 0.40, 5.17, 0.025
+19500721, 4.88, -0.25, 4.61, 0.025
+19500728, 0.42, 0.55, 2.29, 0.025
+19500804, 1.99, 0.14, -0.78, 0.024
+19500811, 1.56, -0.72, -1.11, 0.024
+19500818, 2.29, 0.20, 1.52, 0.024
+19500825, -0.48, 0.63, -0.95, 0.024
+19500901, 0.35, -0.12, 0.21, 0.025
+19500908, 1.07, -0.11, 0.35, 0.025
+19500915, 2.37, -0.19, 1.01, 0.025
+19500922, 0.78, 0.13, -0.15, 0.025
+19500929, 0.03, 0.98, -2.39, 0.025
+19501007, 2.72, -0.60, 1.54, 0.029
+19501014, -1.39, 0.48, 0.38, 0.029
+19501021, 1.41, 0.49, 0.65, 0.029
+19501028, -1.32, -0.23, 0.03, 0.029
+19501104, -0.23, -0.97, -1.10, 0.026
+19501110, 1.33, -0.75, 0.91, 0.026
+19501118, 1.65, -0.23, 2.40, 0.026
+19501125, 1.72, 0.23, -0.05, 0.026
+19501202, -3.07, 0.28, 0.35, 0.028
+19501209, 0.04, -0.21, 2.96, 0.028
+19501216, 1.14, -0.41, 2.39, 0.028
+19501222, 2.32, 1.77, 0.96, 0.028
+19501230, 1.80, 0.25, 0.06, 0.028
+19510106, 1.93, 0.61, 1.19, 0.031
+19510113, 1.10, 0.16, 0.20, 0.031
+19510120, 1.52, 0.78, 0.80, 0.031
+19510127, 0.35, 0.47, 0.64, 0.031
+19510203, 2.43, -0.21, 0.51, 0.026
+19510210, 0.86, -0.04, 0.00, 0.026
+19510217, 0.04, -0.08, -0.88, 0.026
+19510224, -0.49, 0.42, -0.64, 0.026
+19510303, -0.01, -0.09, -0.81, 0.027
+19510310, -0.15, 0.36, -1.09, 0.027
+19510317, -1.48, -0.23, -1.51, 0.027
+19510324, -0.89, -0.34, -1.63, 0.027
+19510331, -0.38, -0.72, -0.31, 0.027
+19510407, 1.37, -0.23, 1.31, 0.032
+19510414, 2.36, -0.38, 1.17, 0.032
+19510421, -0.47, -0.07, 0.02, 0.032
+19510428, 1.60, -0.60, 1.10, 0.032
+19510505, 1.07, -0.62, 0.47, 0.031
+19510512, -1.22, 0.46, -0.80, 0.031
+19510519, -2.48, 0.03, -1.27, 0.031
+19510526, -1.52, 0.62, -1.02, 0.031
+19510601, 1.64, -0.92, 0.87, 0.029
+19510608, 0.40, -0.12, 0.10, 0.029
+19510615, 1.79, -1.22, 0.19, 0.029
+19510622, -1.96, 0.03, -1.29, 0.029
+19510629, -2.67, -0.49, -2.98, 0.029
+19510706, 2.87, -0.34, 0.96, 0.034
+19510713, 1.20, -0.59, 0.00, 0.034
+19510720, 0.10, -0.08, -0.39, 0.034
+19510727, 2.66, -0.86, 1.60, 0.034
+19510803, 1.81, -0.11, 0.33, 0.033
+19510810, -0.08, 0.26, -0.59, 0.033
+19510817, 1.22, 0.22, 0.40, 0.033
+19510824, -0.28, 0.33, -0.74, 0.033
+19510831, 1.48, 0.23, 0.26, 0.033
+19510907, 1.61, -0.38, 0.59, 0.030
+19510914, 0.83, 0.46, 0.26, 0.030
+19510921, -1.22, 1.53, -0.29, 0.030
+19510928, -0.51, 0.26, 0.05, 0.030
+19511006, 1.89, 0.71, 1.21, 0.039
+19511013, -0.09, 0.26, -0.06, 0.039
+19511020, -2.88, -0.23, -0.84, 0.039
+19511027, -3.27, 0.10, -0.02, 0.039
+19511103, 0.96, -0.79, -0.62, 0.027
+19511110, 0.99, -0.34, 0.52, 0.027
+19511117, -0.05, 0.08, 0.40, 0.027
+19511124, -2.02, 0.40, -0.68, 0.027
+19511201, 2.88, -0.74, 0.47, 0.031
+19511208, 2.00, -0.88, -0.10, 0.031
+19511215, -0.12, 0.08, -1.17, 0.031
+19511222, 0.33, -0.77, 0.24, 0.031
+19511229, 0.58, -0.30, -0.39, 0.031
+19520105, 0.81, 0.47, 0.41, 0.039
+19520112, 0.56, -1.11, 0.12, 0.039
+19520119, 0.87, -0.56, 1.30, 0.039
+19520126, 0.89, -0.35, -0.70, 0.039
+19520202, -0.46, 0.31, 0.18, 0.029
+19520209, -0.34, 0.74, -0.58, 0.029
+19520216, -1.30, 0.13, 0.15, 0.029
+19520223, -2.02, 0.19, 0.55, 0.029
+19520301, 0.14, 0.08, -0.88, 0.027
+19520308, 2.29, -1.09, 1.39, 0.027
+19520315, 0.48, -0.67, -0.17, 0.027
+19520322, 0.13, -0.28, 0.49, 0.027
+19520329, 1.31, -0.84, 0.59, 0.027
+19520405, -1.35, 0.31, -0.38, 0.029
+19520412, 0.01, -0.02, 0.25, 0.029
+19520419, -2.35, 0.64, -0.51, 0.029
+19520426, -0.06, -0.32, 0.92, 0.029
+19520503, -0.24, -0.64, -0.43, 0.033
+19520510, 1.39, -0.37, -0.18, 0.033
+19520517, -0.59, 0.18, -0.67, 0.033
+19520524, 1.47, -0.24, 0.54, 0.033
+19520529, -0.13, -0.14, 0.39, 0.033
+19520606, 1.53, -0.64, 0.72, 0.037
+19520613, 0.54, -0.13, -0.34, 0.037
+19520620, 0.60, -0.14, -0.03, 0.037
+19520627, 0.75, -0.58, 0.75, 0.037
+19520703, 0.70, 0.06, -0.37, 0.038
+19520711, -0.30, 0.04, -0.10, 0.038
+19520718, -0.56, -0.04, 0.32, 0.038
+19520725, 0.93, -0.06, -0.37, 0.038
+19520801, 0.54, -0.39, 0.21, 0.037
+19520808, 0.30, 0.15, -0.15, 0.037
+19520815, -0.91, 0.54, -0.13, 0.037
+19520822, -0.66, 0.33, -0.20, 0.037
+19520829, 0.44, 0.03, 0.59, 0.037
+19520905, 0.33, 0.11, -0.77, 0.041
+19520912, -1.99, 0.73, -0.51, 0.041
+19520919, -0.26, 0.31, 0.09, 0.041
+19520926, 0.48, -0.07, -0.10, 0.041
+19521003, -1.05, 0.13, -0.14, 0.035
+19521010, 0.27, 0.11, -0.32, 0.035
+19521017, -1.30, -0.22, -0.12, 0.035
+19521024, -0.72, -0.08, -0.33, 0.035
+19521031, 1.55, -0.99, 0.18, 0.035
+19521107, 1.87, -0.74, -0.76, 0.026
+19521114, -0.06, 0.51, -0.43, 0.026
+19521121, 2.19, -0.03, 1.26, 0.026
+19521128, 1.86, -0.45, 0.87, 0.026
+19521205, 0.18, -0.18, -0.04, 0.041
+19521212, 1.18, -0.66, -0.15, 0.041
+19521219, 0.33, -0.47, 0.72, 0.041
+19521226, 0.26, 0.19, 0.38, 0.041
+19530102, 0.98, 0.20, -0.06, 0.040
+19530109, -1.30, 1.72, 0.56, 0.040
+19530116, -0.27, 0.83, 0.04, 0.040
+19530123, 0.13, 0.63, 0.28, 0.040
+19530130, 1.04, -0.20, -0.26, 0.040
+19530206, -1.46, 0.48, -1.23, 0.035
+19530213, 0.01, 0.45, 0.38, 0.035
+19530220, -0.19, 0.46, 0.43, 0.035
+19530227, 1.40, 0.72, 0.36, 0.035
+19530306, 0.02, 0.16, 0.00, 0.046
+19530313, 1.17, -0.47, 0.44, 0.046
+19530320, 0.40, 0.48, -0.15, 0.046
+19530327, -0.39, 0.05, -0.39, 0.046
+19530402, -2.59, -0.12, -0.62, 0.040
+19530410, -1.72, 0.31, 0.42, 0.040
+19530417, -0.61, -0.19, 0.40, 0.040
+19530424, -1.88, 0.05, 0.35, 0.040
+19530501, 1.74, -0.40, 0.02, 0.043
+19530508, 1.00, -0.40, -0.35, 0.043
+19530515, 0.05, 0.13, 0.34, 0.043
+19530522, 0.83, -0.12, 0.52, 0.043
+19530529, -1.75, 0.36, -0.14, 0.043
+19530605, -1.94, -0.22, -0.41, 0.046
+19530612, -1.07, -0.53, 0.05, 0.046
+19530619, 0.11, -0.53, 0.06, 0.046
+19530626, 1.30, -0.63, -0.02, 0.046
+19530703, 0.72, -0.32, 0.15, 0.036
+19530710, 0.07, -0.15, -0.32, 0.036
+19530717, -0.11, -0.24, 0.01, 0.036
+19530724, -0.36, 0.22, -0.13, 0.036
+19530731, 1.78, -0.56, -0.17, 0.036
+19530807, 0.90, 0.15, -0.87, 0.042
+19530814, -0.05, 0.19, -1.11, 0.042
+19530821, -1.16, -0.08, -0.38, 0.042
+19530828, -2.54, 0.20, -0.80, 0.042
+19530904, -0.68, -0.42, -0.56, 0.040
+19530911, -2.03, -0.19, -1.53, 0.040
+19530918, -0.92, -0.72, -0.30, 0.040
+19530925, 1.73, 0.24, 0.17, 0.040
+19531002, 1.37, -0.16, -1.29, 0.031
+19531009, 0.10, -0.12, -0.14, 0.031
+19531016, 2.01, -0.13, 0.81, 0.031
+19531023, 0.69, -0.21, -0.81, 0.031
+19531030, 0.71, -0.32, 0.18, 0.031
+19531106, 1.30, -0.61, 0.12, 0.019
+19531113, -0.10, 0.00, 0.11, 0.019
+19531120, -0.22, 0.49, -0.67, 0.019
+19531127, 1.27, -1.00, 0.16, 0.019
+19531204, 1.39, -0.22, -0.30, 0.032
+19531211, -0.72, 0.09, -0.61, 0.032
+19531218, 0.85, -0.67, -0.25, 0.032
+19531224, -0.67, 0.39, -0.22, 0.032
+19531231, -0.30, -0.33, -1.71, 0.032
+19540108, 0.85, 1.61, 1.46, 0.027
+19540115, 1.88, -0.32, 0.77, 0.027
+19540122, 1.29, -0.26, 0.68, 0.027
+19540129, 1.03, -0.54, 0.36, 0.027
+19540205, 1.21, -0.64, -0.14, 0.018
+19540212, 0.05, 0.38, 0.47, 0.018
+19540219, -0.48, 0.29, -0.07, 0.018
+19540226, 0.89, -0.28, -0.43, 0.018
+19540305, 1.47, -0.99, 0.23, 0.019
+19540312, 0.66, 0.28, -0.90, 0.019
+19540319, 0.70, 0.01, 0.54, 0.019
+19540326, -0.70, 0.41, -0.96, 0.019
+19540402, 2.30, -0.61, -0.31, 0.022
+19540409, 0.87, 0.05, 0.01, 0.022
+19540415, 1.22, -1.09, -0.36, 0.022
+19540423, 0.02, -0.25, -0.41, 0.022
+19540430, 1.27, -1.46, 0.15, 0.022
+19540507, 0.87, -0.47, 0.03, 0.013
+19540514, 0.73, 0.28, 1.28, 0.013
+19540521, 1.05, 0.22, 0.99, 0.013
+19540528, 0.42, 0.24, 0.09, 0.013
+19540604, -0.14, 0.80, -0.48, 0.015
+19540611, -1.42, 0.78, 0.81, 0.015
+19540618, 1.49, -0.65, 0.29, 0.015
+19540625, 1.10, -0.87, -0.12, 0.015
+19540702, 1.09, -0.10, -0.58, 0.013
+19540709, 1.20, -0.32, 0.32, 0.013
+19540716, 0.02, 1.10, 1.71, 0.013
+19540723, 1.19, -0.11, 1.61, 0.013
+19540730, 1.48, 0.40, 0.43, 0.013
+19540806, -0.87, 1.27, -0.62, 0.012
+19540813, 1.41, 0.78, 1.45, 0.012
+19540820, 1.21, -0.54, -0.47, 0.012
+19540827, -1.67, 0.91, -0.70, 0.012
+19540903, -0.34, 0.16, 0.01, 0.022
+19540910, 1.16, -0.72, 1.30, 0.022
+19540917, 1.79, -0.63, -0.01, 0.022
+19540924, 1.69, -1.39, -0.22, 0.022
+19541001, -0.38, 0.34, -0.94, 0.017
+19541008, 0.84, -0.38, 0.71, 0.017
+19541015, -2.52, 1.19, -0.01, 0.017
+19541022, 1.49, -0.40, 0.76, 0.017
+19541029, -1.56, 0.22, -1.06, 0.017
+19541105, 3.44, -1.52, 0.88, 0.016
+19541112, 2.66, -0.83, 2.15, 0.016
+19541119, 0.62, 0.38, 0.68, 0.016
+19541126, 2.74, -1.00, 1.11, 0.016
+19541203, 0.79, 0.98, -0.10, 0.021
+19541210, 0.41, 0.84, 1.21, 0.021
+19541217, 1.13, -0.72, 1.98, 0.021
+19541223, 0.94, 0.68, 0.52, 0.021
+19541231, 1.74, 0.35, 1.41, 0.021
+19550107, -1.76, 0.62, -0.68, 0.020
+19550114, 0.15, 0.89, 0.28, 0.020
+19550121, 0.16, 0.66, -0.22, 0.020
+19550128, 1.32, -1.30, 2.24, 0.020
+19550204, 2.00, -0.54, -0.48, 0.021
+19550211, 1.50, 0.13, -0.05, 0.021
+19550218, 0.20, 1.49, 0.48, 0.021
+19550225, -0.46, 0.30, 0.31, 0.021
+19550304, 2.30, -1.05, 1.40, 0.025
+19550311, -4.15, 0.19, -0.78, 0.025
+19550318, 0.93, 0.21, 0.48, 0.025
+19550325, 2.30, -0.78, 1.22, 0.025
+19550401, -0.10, 0.02, 1.17, 0.026
+19550407, 0.80, -0.39, 0.16, 0.026
+19550415, 1.42, -0.36, 0.08, 0.026
+19550422, -0.21, -0.60, 0.11, 0.026
+19550429, 0.22, 0.05, -0.06, 0.026
+19550506, 0.16, -0.55, 0.14, 0.035
+19550513, -1.04, 0.29, -0.83, 0.035
+19550520, 1.01, 0.24, 0.26, 0.035
+19550527, 0.79, -0.28, -0.18, 0.035
+19550603, 1.14, -0.93, 0.13, 0.026
+19550610, 1.75, -1.74, 1.32, 0.026
+19550617, 2.00, -1.16, 0.60, 0.026
+19550624, 1.10, -0.42, -0.51, 0.026
+19550701, 0.81, 0.19, -0.55, 0.025
+19550708, 0.59, -1.79, -1.10, 0.025
+19550715, 0.00, 0.48, 1.32, 0.025
+19550722, 0.97, 0.29, 0.60, 0.025
+19550729, -0.09, -0.20, -0.38, 0.025
+19550805, -1.54, 0.90, -0.28, 0.040
+19550812, -0.29, -0.33, 0.15, 0.040
+19550819, -0.59, -0.09, 0.84, 0.040
+19550826, 2.06, -0.87, 0.23, 0.040
+19550902, 1.31, -0.14, -0.57, 0.040
+19550909, 0.90, -0.13, 0.61, 0.040
+19550916, 1.63, -0.50, -0.47, 0.040
+19550923, 0.84, -0.16, -0.06, 0.040
+19550930, -4.34, 1.37, -1.17, 0.040
+19551007, -2.44, 1.03, -0.23, 0.045
+19551014, -2.23, 0.21, 0.45, 0.045
+19551021, 2.60, -0.43, 0.23, 0.045
+19551028, -0.47, 0.47, -0.33, 0.045
+19551104, 2.88, -1.43, -0.24, 0.042
+19551111, 2.10, -0.64, 0.01, 0.042
+19551118, 0.79, -0.23, -0.48, 0.042
+19551125, 0.87, -0.64, 1.19, 0.042
+19551202, 0.27, 1.22, -0.25, 0.045
+19551209, 0.98, 0.91, -0.87, 0.045
+19551216, -0.96, 0.80, -0.18, 0.045
+19551223, 1.01, -0.02, -0.22, 0.045
+19551230, 0.33, -0.38, -0.49, 0.045
+19560106, -0.63, 0.85, 0.15, 0.055
+19560113, -0.85, 0.37, 0.05, 0.055
+19560120, -3.07, 0.72, -0.44, 0.055
+19560127, 0.48, -0.63, 0.80, 0.055
+19560203, 2.76, -1.59, -0.69, 0.048
+19560210, -1.97, 0.59, 0.01, 0.048
+19560217, 1.96, -0.35, 0.73, 0.048
+19560224, 2.01, -0.60, 0.31, 0.048
+19560302, 1.39, -0.45, -0.29, 0.038
+19560309, 2.02, 0.16, -0.16, 0.038
+19560316, 2.01, -1.01, -0.66, 0.038
+19560323, 0.99, -0.67, 0.18, 0.038
+19560329, 0.09, -0.01, 0.24, 0.038
+19560406, 0.75, -0.56, -0.37, 0.046
+19560413, -1.56, 1.57, 0.28, 0.046
+19560420, -0.18, -0.18, 0.17, 0.046
+19560427, 0.61, -0.35, 0.32, 0.046
+19560504, 1.36, -0.30, -1.10, 0.058
+19560511, -1.73, 0.82, 0.04, 0.058
+19560518, -1.36, 0.55, 0.23, 0.058
+19560525, -3.92, 0.44, -0.39, 0.058
+19560601, 1.56, -0.56, -1.17, 0.050
+19560608, -0.97, -0.56, -0.30, 0.050
+19560615, 2.69, -0.44, 0.04, 0.050
+19560622, 0.38, -0.03, -0.40, 0.050
+19560629, 0.88, -0.21, -0.41, 0.050
+19560706, 1.90, -0.81, -0.53, 0.054
+19560713, 1.25, 0.26, 0.48, 0.054
+19560720, 1.21, -0.70, -0.05, 0.054
+19560727, -0.30, -0.20, 0.06, 0.054
+19560803, 1.16, -0.15, -0.81, 0.041
+19560810, -0.40, 0.30, -0.11, 0.041
+19560817, -0.54, 0.44, -0.27, 0.041
+19560824, -1.56, 0.75, 0.22, 0.041
+19560831, -1.22, 0.36, 0.30, 0.041
+19560907, 0.68, 0.22, -0.69, 0.046
+19560914, -1.36, -0.05, 1.08, 0.046
+19560921, -1.49, 0.72, 0.88, 0.046
+19560928, -3.03, 0.73, 0.56, 0.046
+19561005, 1.99, -0.51, -0.35, 0.062
+19561012, 0.97, -0.06, -0.15, 0.062
+19561019, -0.94, 0.26, 1.35, 0.062
+19561026, -0.09, -0.04, -0.37, 0.062
+19561102, 1.17, -0.59, -0.62, 0.051
+19561109, -0.47, 0.43, -0.48, 0.051
+19561116, -0.77, 0.47, 1.91, 0.051
+19561123, -0.93, -0.18, 0.17, 0.051
+19561130, -0.03, -0.15, 0.16, 0.051
+19561207, 3.26, -1.16, -0.86, 0.059
+19561214, -0.52, 1.56, -0.46, 0.059
+19561221, -0.34, -0.03, -0.16, 0.059
+19561228, 0.39, -0.27, -0.50, 0.059
+19570104, 0.56, 0.56, 1.43, 0.067
+19570111, -0.52, 1.91, 1.31, 0.067
+19570118, -3.37, 0.92, 0.03, 0.067
+19570125, 0.27, 0.02, -0.30, 0.067
+19570201, -0.59, -0.17, 0.12, 0.060
+19570208, -2.06, -0.02, -0.25, 0.060
+19570215, 0.53, -0.49, -0.46, 0.060
+19570221, 0.02, -0.06, -0.58, 0.060
+19570301, 0.73, -0.57, 0.66, 0.058
+19570308, 0.80, 0.06, -0.84, 0.058
+19570315, 0.22, 0.57, 0.22, 0.058
+19570322, -0.05, 0.35, 0.23, 0.058
+19570329, 0.23, -0.28, -0.02, 0.058
+19570405, 0.76, -0.14, -0.63, 0.063
+19570412, 1.69, -0.45, -0.44, 0.063
+19570418, 0.84, -0.38, -0.22, 0.063
+19570426, 0.37, -0.65, 0.60, 0.063
+19570503, 1.70, -0.29, -1.34, 0.064
+19570510, 0.66, 0.32, -0.85, 0.064
+19570517, 1.23, -0.31, -0.16, 0.064
+19570524, 0.03, -0.60, 0.16, 0.064
+19570531, 0.22, -0.11, -0.57, 0.064
+19570607, 0.36, -0.34, -0.34, 0.060
+19570614, 0.90, -0.07, 0.07, 0.060
+19570621, -2.33, 1.22, -0.22, 0.060
+19570628, 0.35, -0.28, 0.48, 0.060
+19570705, 2.60, -1.00, -0.88, 0.074
+19570712, 0.79, -0.79, 0.82, 0.074
+19570719, -1.10, 0.65, -0.17, 0.074
+19570726, -0.62, -0.04, 0.73, 0.074
+19570802, -1.33, 0.40, 0.25, 0.063
+19570809, -1.43, 0.34, -0.20, 0.063
+19570816, -2.13, 0.04, 0.37, 0.063
+19570823, -2.69, -0.11, 0.58, 0.063
+19570830, 1.40, -0.20, -1.66, 0.063
+19570906, -1.05, 0.73, 0.12, 0.064
+19570913, 0.20, -0.31, -0.38, 0.064
+19570920, -2.37, 0.24, 0.60, 0.064
+19570927, -2.56, -0.21, 0.11, 0.064
+19571004, 0.56, -0.91, 0.84, 0.072
+19571011, -5.07, -0.85, 0.25, 0.072
+19571018, -1.71, -0.31, -0.60, 0.072
+19571025, 0.42, -0.75, -1.78, 0.072
+19571101, -0.27, 0.49, -0.13, 0.069
+19571108, -0.33, 1.08, -1.21, 0.069
+19571115, 0.52, -0.13, -0.16, 0.069
+19571122, 1.35, -0.50, -0.78, 0.069
+19571129, 2.20, -0.72, -0.81, 0.069
+19571206, -0.89, 0.62, -1.05, 0.060
+19571213, -1.17, -0.79, 0.62, 0.060
+19571220, -3.07, -0.13, -0.01, 0.060
+19571227, 0.71, -0.36, -1.16, 0.060
+19580103, 2.79, 0.66, 1.97, 0.069
+19580110, -1.14, 2.20, 0.21, 0.069
+19580117, 1.88, 0.02, 0.99, 0.069
+19580124, 1.54, 0.95, 0.00, 0.069
+19580131, -0.04, -0.10, 0.64, 0.069
+19580207, 0.33, 0.13, -0.18, 0.030
+19580214, -0.84, 0.06, 0.71, 0.030
+19580221, -1.01, 0.72, -0.03, 0.030
+19580228, -0.02, -0.21, -0.21, 0.030
+19580307, 2.92, -0.45, -0.99, 0.024
+19580314, 0.79, 0.23, 0.34, 0.024
+19580321, 0.21, 0.60, -0.05, 0.024
+19580328, -0.34, 0.21, -0.20, 0.024
+19580403, -1.73, 0.03, 0.44, 0.020
+19580411, 0.72, 0.21, 1.11, 0.020
+19580418, 2.14, -0.81, 0.32, 0.020
+19580425, 1.51, 0.14, -0.48, 0.020
+19580502, 0.69, -0.03, -0.26, 0.027
+19580509, 0.98, 0.00, 0.65, 0.027
+19580516, -1.13, 1.05, -0.04, 0.027
+19580523, 1.32, 1.03, -0.55, 0.027
+19580529, 0.57, -0.06, -0.09, 0.027
+19580606, 1.28, -0.35, 0.11, 0.007
+19580613, 0.95, -0.24, -0.09, 0.007
+19580620, -0.28, 0.11, 0.22, 0.007
+19580627, 0.33, 0.49, 0.49, 0.007
+19580703, 1.18, -0.11, -0.33, 0.017
+19580711, 0.55, -0.54, 0.56, 0.017
+19580718, 0.22, -0.62, 1.10, 0.017
+19580725, 2.57, 0.64, 0.50, 0.017
+19580801, 1.20, 0.81, 1.29, 0.011
+19580808, 1.24, -0.54, 0.38, 0.011
+19580815, -0.89, 0.62, -0.46, 0.011
+19580822, 0.58, 0.54, 0.20, 0.011
+19580829, 0.22, 0.53, -0.14, 0.011
+19580905, 0.60, 0.65, -0.69, 0.048
+19580912, 1.05, 0.13, 0.13, 0.048
+19580919, 1.65, -0.92, 2.44, 0.048
+19580926, 0.44, 0.32, 0.39, 0.048
+19581003, 1.30, -0.28, 0.73, 0.046
+19581010, 1.81, -0.41, -0.14, 0.046
+19581017, 0.10, 0.83, -2.02, 0.046
+19581024, -1.03, 0.64, 1.26, 0.046
+19581031, 1.10, 0.17, -0.36, 0.046
+19581107, 1.94, -0.83, -0.66, 0.027
+19581114, 1.75, 0.68, -0.19, 0.027
+19581121, -0.58, 1.32, -1.16, 0.027
+19581128, -0.11, 0.81, 0.76, 0.027
+19581205, 0.18, 0.59, -0.65, 0.056
+19581212, 1.46, -0.38, -0.23, 0.056
+19581219, 1.35, -1.55, -0.03, 0.056
+19581224, 0.17, -0.18, 0.79, 0.056
+19590102, 2.20, -0.47, 0.94, 0.051
+19590109, 0.70, 0.04, 1.17, 0.051
+19590116, 0.26, 0.96, 1.62, 0.051
+19590123, 0.40, 1.00, -0.28, 0.051
+19590130, -1.06, 0.98, -0.35, 0.051
+19590206, -1.53, 0.07, 0.51, 0.047
+19590213, 0.32, 0.83, 0.61, 0.047
+19590220, 2.17, 0.16, 0.77, 0.047
+19590227, 0.03, 0.46, -0.86, 0.047
+19590306, 1.38, -0.17, -0.38, 0.054
+19590313, 1.00, 0.66, 1.14, 0.054
+19590320, -0.42, 1.15, -0.75, 0.054
+19590326, -1.03, 0.19, -0.42, 0.054
+19590403, 1.04, -1.03, 0.47, 0.050
+19590410, -0.31, 0.03, 0.81, 0.050
+19590417, 2.76, -1.30, -0.50, 0.050
+19590424, -0.08, 1.03, -1.96, 0.050
+19590501, -0.34, 0.61, 0.08, 0.055
+19590508, -0.43, 0.22, -0.82, 0.055
+19590515, 1.35, -1.07, 1.33, 0.055
+19590522, 0.25, -0.93, 1.34, 0.055
+19590529, 0.41, -0.82, 0.06, 0.055
+19590605, -1.98, 0.47, -0.14, 0.061
+19590612, -0.39, 0.05, 1.40, 0.061
+19590619, -0.11, 0.43, 0.25, 0.061
+19590626, 1.32, -0.36, -0.33, 0.061
+19590702, 2.19, -0.23, 0.18, 0.063
+19590710, 0.96, -0.67, 0.90, 0.063
+19590717, -1.15, 1.50, -1.11, 0.063
+19590724, 0.80, 0.42, 0.04, 0.063
+19590731, 1.23, -1.38, 0.01, 0.063
+19590807, -1.09, -0.36, 0.92, 0.046
+19590814, -0.86, 0.22, -0.39, 0.046
+19590821, -0.36, -0.09, -0.31, 0.046
+19590828, 0.71, -0.30, 0.16, 0.046
+19590904, -1.58, -0.62, -0.02, 0.077
+19590911, -2.02, 0.13, 0.29, 0.077
+19590918, -2.46, -0.06, -0.71, 0.077
+19590925, 1.17, 0.05, 0.28, 0.077
+19591002, 0.75, 0.32, 0.59, 0.075
+19591009, -0.21, 0.95, -0.48, 0.075
+19591016, 0.57, -0.11, 0.37, 0.075
+19591023, -1.22, 0.60, -0.51, 0.075
+19591030, 1.57, -0.46, -1.23, 0.075
+19591106, 0.33, -0.07, -0.19, 0.064
+19591113, -1.11, 1.59, -0.90, 0.064
+19591120, 0.22, 0.08, -0.82, 0.064
+19591127, 1.22, -0.18, -1.25, 0.064
+19591204, 1.89, 0.11, -0.28, 0.084
+19591211, 0.09, 0.12, 0.57, 0.084
+19591218, 0.40, -0.41, 0.36, 0.084
+19591224, -0.28, 0.63, -0.34, 0.084
+19591231, 1.24, -1.16, -0.47, 0.084
+19600108, -0.71, 0.91, 1.78, 0.083
+19600115, -1.70, 1.05, 1.13, 0.083
+19600122, -1.62, 0.48, 0.11, 0.083
+19600129, -3.12, -0.24, -0.08, 0.083
+19600205, 0.63, -0.76, -0.51, 0.072
+19600212, -0.77, 0.23, 0.57, 0.072
+19600219, 1.33, 0.01, -0.68, 0.072
+19600226, 0.07, 1.06, -0.80, 0.072
+19600304, -2.85, -0.34, -1.66, 0.087
+19600311, -0.59, 0.30, 0.27, 0.087
+19600318, 1.37, 0.15, -0.53, 0.087
+19600325, 1.61, -1.02, -0.46, 0.087
+19600401, -1.01, 0.44, -1.16, 0.049
+19600408, 1.59, -0.65, -0.40, 0.049
+19600414, 0.04, 0.08, -0.73, 0.049
+19600422, -1.61, 0.73, -0.40, 0.049
+19600429, -1.90, 0.20, -0.57, 0.049
+19600506, 0.80, -0.22, -0.99, 0.068
+19600513, 1.19, 0.61, -0.83, 0.068
+19600520, 0.94, -0.48, 0.36, 0.068
+19600527, -0.03, 1.44, -1.18, 0.068
+19600603, 0.86, -1.05, -0.55, 0.060
+19600610, 3.03, -1.03, 0.58, 0.060
+19600617, -0.70, 1.06, -1.15, 0.060
+19600624, 0.34, -0.36, 1.04, 0.060
+19600701, -1.02, 0.96, -1.02, 0.033
+19600708, 0.51, -0.53, 0.66, 0.033
+19600715, -2.25, 0.19, 1.24, 0.033
+19600722, -2.29, 0.25, 0.77, 0.033
+19600729, 1.45, -0.66, -0.38, 0.033
+19600805, -0.06, -0.10, 0.04, 0.041
+19600812, 2.28, 0.18, 0.50, 0.041
+19600819, 0.82, 0.02, -0.32, 0.041
+19600826, 0.97, 0.02, 0.36, 0.041
+19600902, -0.92, 1.03, -0.95, 0.039
+19600909, -1.57, -0.15, 0.57, 0.039
+19600916, -1.81, -0.45, 0.39, 0.039
+19600923, -2.26, 0.05, 0.10, 0.039
+19600930, -0.61, -0.78, 0.65, 0.039
+19601007, 0.81, -1.10, 0.54, 0.054
+19601014, 1.45, -0.90, 0.59, 0.054
+19601021, -2.86, -0.16, 1.26, 0.054
+19601028, 0.02, -1.43, 0.27, 0.054
+19601104, 2.73, -1.12, 0.23, 0.033
+19601111, 1.79, 0.58, -0.98, 0.033
+19601118, 0.18, -0.14, -0.66, 0.033
+19601125, 0.81, 0.51, -1.47, 0.033
+19601202, -1.19, 0.86, -0.07, 0.039
+19601209, 2.34, -0.59, -0.23, 0.039
+19601216, 1.15, 0.14, -0.95, 0.039
+19601223, 0.31, -0.57, 0.29, 0.039
+19601230, 1.06, -0.95, 0.50, 0.039
+19610106, 0.69, 1.24, 1.85, 0.047
+19610113, 1.86, 0.53, 1.08, 0.047
+19610120, 0.76, 0.52, 0.86, 0.047
+19610127, 1.86, -1.06, -0.25, 0.047
+19610203, 1.71, 0.21, -0.23, 0.036
+19610210, -0.70, 1.46, 0.50, 0.036
+19610217, 1.13, 0.89, 0.57, 0.036
+19610224, 1.31, 0.74, -1.11, 0.036
+19610303, 1.73, 0.27, -1.26, 0.051
+19610310, -0.37, 1.49, -0.41, 0.051
+19610317, 1.79, 0.29, -0.47, 0.051
+19610324, -0.28, 0.08, 1.07, 0.051
+19610330, 0.97, 1.06, -0.39, 0.051
+19610407, 1.27, -0.69, 0.49, 0.044
+19610414, 0.63, -0.01, 0.00, 0.044
+19610421, -0.82, 1.24, 0.67, 0.044
+19610428, -0.78, -0.47, 0.96, 0.044
+19610505, 1.90, 0.32, 0.21, 0.044
+19610512, 0.17, 1.49, -0.56, 0.044
+19610519, 1.15, -0.82, 0.77, 0.044
+19610526, -0.95, 1.30, -0.02, 0.044
+19610602, 0.27, -0.78, -0.82, 0.050
+19610609, -0.10, -0.90, 0.03, 0.050
+19610616, -2.24, -0.38, -0.51, 0.050
+19610623, -0.13, -0.84, 0.23, 0.050
+19610630, -0.82, 0.15, 0.67, 0.050
+19610707, 1.69, 0.28, -0.58, 0.046
+19610714, -0.85, -0.82, 0.63, 0.046
+19610721, -0.77, -0.68, -0.24, 0.046
+19610728, 2.65, -0.58, 0.14, 0.046
+19610804, 1.54, -0.72, 0.34, 0.035
+19610811, 0.87, -0.52, -0.72, 0.035
+19610818, 0.39, -0.17, 0.32, 0.035
+19610825, -0.86, -0.37, 0.23, 0.035
+19610901, 0.92, 0.13, -0.78, 0.042
+19610908, -0.59, -0.99, 0.12, 0.042
+19610915, -0.50, 0.23, -0.30, 0.042
+19610922, -1.36, -0.58, 0.75, 0.042
+19610929, 0.08, 0.06, -0.95, 0.042
+19611006, 1.74, -0.39, 0.18, 0.046
+19611013, 0.10, -0.01, 0.26, 0.046
+19611020, 0.54, -0.52, -0.12, 0.046
+19611027, -0.21, -0.54, -0.40, 0.046
+19611103, 1.68, -0.12, -0.07, 0.039
+19611110, 2.38, 0.40, -0.90, 0.039
+19611117, 0.84, 0.27, -1.19, 0.039
+19611124, 0.40, 0.58, 0.35, 0.039
+19611201, 0.03, -0.08, 0.90, 0.047
+19611208, 0.31, -0.79, 0.62, 0.047
+19611215, -0.24, -0.58, 0.28, 0.047
+19611222, -1.51, 0.79, 0.76, 0.047
+19611229, 0.69, -0.41, -0.01, 0.047
+19620105, -2.73, 1.17, 2.47, 0.060
+19620112, -0.04, 0.24, 0.78, 0.060
+19620119, -1.18, 1.04, 0.70, 0.060
+19620126, -0.94, -0.21, 0.80, 0.060
+19620202, 2.30, -1.28, 0.60, 0.050
+19620209, 1.17, -0.03, -0.27, 0.050
+19620216, 0.12, 0.08, 0.85, 0.050
+19620223, -0.62, -0.33, 0.38, 0.050
+19620302, 0.05, 0.23, -0.41, 0.051
+19620309, 0.35, 0.59, -1.02, 0.051
+19620316, 0.74, -0.28, -0.38, 0.051
+19620323, -0.74, 0.29, -0.29, 0.051
+19620330, -1.29, -0.25, 0.14, 0.051
+19620406, -1.17, -0.04, -0.07, 0.056
+19620413, -1.61, -0.54, 0.11, 0.056
+19620419, 1.13, -0.33, 0.42, 0.056
+19620427, -3.39, 0.22, -0.31, 0.056
+19620504, -0.11, -0.50, -0.02, 0.060
+19620511, -5.30, -0.53, 1.30, 0.060
+19620518, 1.69, -0.35, 0.16, 0.060
+19620525, -6.99, -1.45, 1.34, 0.060
+19620601, -0.02, -0.40, 0.10, 0.049
+19620608, -1.73, -0.17, 0.74, 0.049
+19620615, -4.39, -1.36, 1.61, 0.049
+19620622, -5.89, 0.64, 0.73, 0.049
+19620629, 3.84, -0.07, -0.64, 0.049
+19620706, 2.71, -0.59, -0.46, 0.066
+19620713, 3.17, 2.95, -1.85, 0.066
+19620720, -1.79, -0.46, 0.29, 0.066
+19620727, 0.45, -0.35, -0.48, 0.066
+19620803, 1.46, 0.05, -0.74, 0.059
+19620810, -0.87, 0.09, 0.51, 0.059
+19620817, 2.57, 0.62, -1.70, 0.059
+19620824, 1.15, 0.30, -0.22, 0.059
+19620831, -0.56, 0.12, 0.06, 0.059
+19620907, -1.30, -0.32, 0.74, 0.052
+19620914, 0.80, -0.91, -0.39, 0.052
+19620921, -2.09, -0.60, -0.28, 0.052
+19620928, -2.69, -0.72, 1.22, 0.052
+19621005, 1.29, -1.10, -0.09, 0.064
+19621012, -0.19, -0.17, 0.10, 0.064
+19621019, -2.61, -1.01, 0.67, 0.064
+19621026, -2.16, -1.72, 1.30, 0.064
+19621102, 5.88, -0.12, -1.40, 0.050
+19621109, 2.11, 0.72, 1.12, 0.050
+19621116, 2.43, 0.85, 0.16, 0.050
+19621123, 2.39, -0.49, 0.58, 0.050
+19621130, 1.40, 1.49, -0.36, 0.050
+19621207, 1.36, -0.75, -0.98, 0.058
+19621214, -0.97, -1.28, 0.44, 0.058
+19621221, -0.03, -1.41, 0.24, 0.058
+19621228, 0.42, -0.23, 0.28, 0.058
+19630104, 2.02, 2.46, 0.40, 0.063
+19630111, 1.24, 0.58, 0.34, 0.063
+19630118, 0.45, 0.28, 0.29, 0.063
+19630125, 1.04, 0.36, 0.68, 0.063
+19630201, 0.48, -0.84, 1.03, 0.057
+19630208, -0.05, -0.14, 0.30, 0.057
+19630215, 0.44, 0.36, 1.14, 0.057
+19630221, -0.67, -0.11, 0.35, 0.057
+19630301, -2.62, 0.03, 0.26, 0.057
+19630308, 1.77, -0.89, 0.27, 0.057
+19630315, 0.70, -0.98, 0.44, 0.057
+19630322, 0.36, -0.47, 0.71, 0.057
+19630329, 0.56, 0.06, 0.46, 0.057
+19630405, 2.23, -0.95, 0.05, 0.063
+19630411, 0.63, -0.16, 0.31, 0.063
+19630419, 0.78, -0.36, 0.79, 0.063
+19630426, 0.66, 0.25, -0.10, 0.063
+19630503, 0.44, 0.11, -0.09, 0.061
+19630510, 0.83, 0.73, -0.38, 0.061
+19630517, -0.15, 0.85, 1.34, 0.061
+19630524, -0.33, 0.32, 1.03, 0.061
+19630531, 1.03, -0.98, 0.45, 0.061
+19630607, -0.52, 0.03, 0.30, 0.057
+19630614, -0.17, 0.40, -1.06, 0.057
+19630621, 0.03, 0.31, 0.83, 0.057
+19630628, -1.34, -0.98, 0.65, 0.057
+19630705, 1.14, -0.22, -0.43, 0.067
+19630712, -0.65, 0.40, -0.49, 0.067
+19630719, -1.78, 0.01, 0.27, 0.067
+19630726, 0.07, -0.43, -0.19, 0.067
+19630802, 1.03, -0.70, 0.01, 0.062
+19630809, 1.72, -0.87, 0.26, 0.062
+19630816, 1.39, -0.45, 1.08, 0.062
+19630823, 0.51, 0.60, -0.27, 0.062
+19630830, 1.12, 0.14, 0.47, 0.062
+19630906, 0.41, -0.01, 0.10, 0.068
+19630913, 0.33, -0.18, 0.34, 0.068
+19630920, 0.01, -0.43, 0.27, 0.068
+19630927, -1.72, 0.12, -0.73, 0.068
+19631004, 0.81, -0.42, 1.25, 0.073
+19631011, -0.77, 0.82, 0.40, 0.073
+19631018, 1.33, -0.20, -0.01, 0.073
+19631025, 0.71, -0.07, -1.24, 0.073
+19631101, -0.39, -0.29, -0.13, 0.068
+19631108, -0.34, 0.00, 0.70, 0.068
+19631115, -1.27, 1.13, -0.24, 0.068
+19631122, -4.00, -1.63, -0.14, 0.068
+19631129, 5.14, -0.81, 1.34, 0.068
+19631206, 0.97, -0.81, -0.09, 0.073
+19631213, -0.06, -0.43, 0.17, 0.073
+19631220, -0.03, -1.56, 0.28, 0.073
+19631227, 0.24, 0.77, -0.28, 0.073
+19640103, 1.41, 0.82, 0.68, 0.074
+19640110, 0.86, 0.23, 0.18, 0.074
+19640117, 0.17, -0.10, 0.62, 0.074
+19640124, 0.64, -0.39, 0.28, 0.074
+19640131, -0.29, -0.72, -0.40, 0.074
+19640207, 0.39, -0.12, 0.03, 0.066
+19640214, 0.54, 0.36, -0.01, 0.066
+19640220, 0.24, -0.24, 1.56, 0.066
+19640228, 0.36, 0.12, 1.20, 0.066
+19640306, 0.59, 0.15, 0.19, 0.078
+19640313, 0.95, -0.65, 1.14, 0.078
+19640320, -0.19, 0.28, 0.65, 0.078
+19640326, 0.32, 0.80, 1.51, 0.078
+19640403, 0.83, 0.41, 0.29, 0.073
+19640410, -0.08, 1.09, -0.05, 0.073
+19640417, 0.68, -0.91, -0.70, 0.073
+19640424, -1.06, -0.89, -0.49, 0.073
+19640501, 0.22, -0.93, 0.55, 0.064
+19640508, 1.09, -0.85, 1.41, 0.064
+19640515, 0.07, 0.03, -0.20, 0.064
+19640522, -0.23, 0.27, -0.05, 0.064
+19640528, -0.30, -0.20, 0.47, 0.064
+19640605, -1.73, -0.38, -0.02, 0.076
+19640612, 0.53, 0.08, -0.17, 0.076
+19640619, 1.59, -0.18, 0.73, 0.076
+19640626, 0.67, 0.21, 0.48, 0.076
+19640702, 1.20, -0.31, 0.16, 0.074
+19640710, 0.89, 0.06, 0.39, 0.074
+19640717, 0.76, -0.05, -0.31, 0.074
+19640724, -0.54, 0.53, 0.07, 0.074
+19640731, -0.40, -0.13, 0.43, 0.074
+19640807, -1.52, -0.35, -0.02, 0.071
+19640814, 0.68, 0.57, 0.10, 0.071
+19640821, -0.33, -0.16, -0.14, 0.071
+19640828, -0.08, -0.19, 0.06, 0.071
+19640904, 0.92, 0.09, 0.45, 0.070
+19640911, 0.70, -0.59, 0.86, 0.070
+19640918, 0.03, -0.04, 0.51, 0.070
+19640925, 0.73, 0.18, -0.25, 0.070
+19641002, 0.12, -0.05, 0.03, 0.073
+19641009, 0.83, -0.45, 0.90, 0.073
+19641016, -0.37, 0.28, 0.32, 0.073
+19641023, 0.35, 0.28, 0.52, 0.073
+19641030, -0.34, 0.58, -0.79, 0.073
+19641106, 0.57, -0.49, -0.73, 0.072
+19641113, 0.10, 0.51, -0.16, 0.072
+19641120, 1.21, -0.34, -0.86, 0.072
+19641127, -1.02, 0.72, -0.16, 0.072
+19641204, -1.03, 0.00, -0.39, 0.078
+19641211, -0.87, -0.30, -0.59, 0.078
+19641218, 0.62, 0.20, -0.55, 0.078
+19641224, -0.21, 0.27, -0.54, 0.078
+19641231, 0.61, -0.23, -0.56, 0.078
+19650108, 0.95, 1.55, 0.23, 0.071
+19650115, 1.04, 0.32, 0.34, 0.071
+19650122, 0.57, -0.16, 0.04, 0.071
+19650129, 0.93, 0.87, -0.49, 0.071
+19650205, -0.02, 1.15, -0.57, 0.074
+19650212, -1.18, 0.70, 0.21, 0.074
+19650219, 0.25, 1.52, 0.27, 0.074
+19650226, 1.42, -0.03, 0.19, 0.074
+19650305, -0.52, 1.13, -0.39, 0.090
+19650312, 0.44, 0.19, 0.21, 0.090
+19650319, -0.49, 0.30, 0.24, 0.090
+19650326, -0.79, 0.15, 0.82, 0.090
+19650402, 0.36, 0.22, 0.17, 0.076
+19650409, 1.11, 0.46, -0.12, 0.076
+19650415, 0.66, 0.54, 0.15, 0.076
+19650423, 0.68, 0.21, -0.49, 0.076
+19650430, 0.18, -0.25, 1.05, 0.076
+19650507, 0.75, -1.03, -0.28, 0.078
+19650514, 0.32, 0.95, -1.05, 0.078
+19650521, -1.40, 0.46, 0.23, 0.078
+19650528, -0.45, -0.42, -0.47, 0.078
+19650604, -1.54, -0.23, -0.47, 0.088
+19650611, -2.46, -1.46, 0.83, 0.088
+19650618, 0.12, -0.31, 0.12, 0.088
+19650625, -2.82, -1.32, -0.01, 0.088
+19650702, 2.36, -0.77, 0.06, 0.077
+19650709, 0.66, 0.51, -0.17, 0.077
+19650716, 0.02, 0.50, 0.00, 0.077
+19650723, -1.88, -0.28, 0.66, 0.077
+19650730, 1.34, -0.46, 1.64, 0.077
+19650806, 1.09, 0.70, -0.74, 0.082
+19650813, 0.94, 0.98, -0.02, 0.082
+19650820, -0.03, -0.14, 0.30, 0.082
+19650827, 0.68, 0.65, -0.33, 0.082
+19650903, 1.05, 0.68, -0.16, 0.078
+19650910, 1.05, 0.35, -0.85, 0.078
+19650917, 0.82, -0.54, 0.46, 0.078
+19650924, 0.08, 0.15, 0.75, 0.078
+19651001, -0.27, 0.59, -0.39, 0.079
+19651008, 1.15, 1.33, 0.46, 0.079
+19651015, 0.59, 1.22, 0.59, 0.079
+19651022, 0.46, 0.47, -0.52, 0.079
+19651029, 0.40, -0.79, 0.84, 0.079
+19651105, 0.28, 0.52, -0.51, 0.087
+19651112, 0.08, 1.06, -0.32, 0.087
+19651119, -0.18, 1.19, 0.02, 0.087
+19651126, 0.07, 1.22, 0.52, 0.087
+19651203, -0.51, 1.33, 0.69, 0.083
+19651210, 0.65, 1.34, -0.37, 0.083
+19651217, 0.53, 0.43, 2.39, 0.083
+19651223, -0.22, -1.23, 0.44, 0.083
+19651231, 0.20, 0.73, -0.52, 0.083
+19660107, 0.73, 0.34, 1.67, 0.095
+19660114, 0.47, 1.41, 0.14, 0.095
+19660121, 0.01, 0.75, 0.35, 0.095
+19660128, -0.06, 1.15, 1.25, 0.095
+19660204, -0.10, -0.47, -0.09, 0.087
+19660211, 0.73, 1.48, 0.48, 0.087
+19660218, -1.23, 1.46, 0.18, 0.087
+19660225, -1.19, 1.18, -0.17, 0.087
+19660304, -2.05, 1.52, -0.67, 0.096
+19660311, -0.48, -0.37, -0.57, 0.096
+19660318, -0.56, -1.32, 0.09, 0.096
+19660325, 1.27, 1.78, -0.84, 0.096
+19660401, 0.18, 0.10, -0.15, 0.085
+19660407, 2.03, 0.76, 0.85, 0.085
+19660415, 0.30, 1.75, -0.46, 0.085
+19660422, 0.24, 0.35, 0.62, 0.085
+19660429, -1.21, 0.64, -1.53, 0.085
+19660506, -3.75, -3.22, 0.33, 0.103
+19660513, -2.78, -1.66, -1.31, 0.103
+19660520, -0.20, -1.21, -0.65, 0.103
+19660527, 2.37, 1.28, 0.01, 0.103
+19660603, -1.32, 0.17, 0.01, 0.094
+19660610, 0.50, 0.40, 0.66, 0.094
+19660617, 0.20, 1.65, -0.65, 0.094
+19660624, 0.08, 0.03, 0.77, 0.094
+19660701, -1.31, -0.82, 0.56, 0.088
+19660708, 2.02, -0.11, -0.41, 0.088
+19660715, -0.45, 0.58, 0.04, 0.088
+19660722, -1.89, -0.08, 0.90, 0.088
+19660729, -2.26, -1.10, 0.70, 0.088
+19660805, 0.51, -0.63, -0.31, 0.102
+19660812, -0.64, 0.62, -1.31, 0.102
+19660819, -4.32, -0.60, 0.48, 0.102
+19660826, -4.26, -1.08, 1.48, 0.102
+19660902, 0.92, -2.05, 0.36, 0.100
+19660909, -1.51, -0.29, 0.35, 0.100
+19660916, 4.65, -0.45, -1.91, 0.100
+19660923, -2.92, 0.50, 1.20, 0.100
+19660930, -1.48, -0.55, 0.51, 0.100
+19661007, -4.87, -3.60, 2.86, 0.113
+19661014, 4.54, -0.70, -1.15, 0.113
+19661021, 1.97, -1.13, -0.77, 0.113
+19661028, 2.44, -1.16, 1.66, 0.113
+19661104, 1.00, 0.62, -1.55, 0.099
+19661111, 1.49, 1.33, -1.43, 0.099
+19661118, -0.54, 1.46, -0.19, 0.099
+19661125, -0.36, 0.38, -0.65, 0.099
+19661202, -0.62, 1.06, -1.03, 0.100
+19661209, 2.37, -0.12, -1.55, 0.100
+19661216, -0.35, 1.55, -0.41, 0.100
+19661223, -0.02, 0.40, 1.17, 0.100
+19661230, -1.51, -0.41, 0.01, 0.100
+19670106, 2.25, 2.07, 1.45, 0.108
+19670113, 2.92, 1.25, 1.30, 0.108
+19670120, 1.87, 1.36, 0.22, 0.108
+19670127, 0.34, 2.06, -1.27, 0.108
+19670203, 1.38, 2.02, 0.63, 0.089
+19670210, 0.41, 0.67, -0.76, 0.089
+19670217, 0.52, 0.70, -0.38, 0.089
+19670224, -0.30, 0.82, -0.58, 0.089
+19670303, 0.92, 0.14, -1.22, 0.097
+19670310, 0.84, 0.98, 0.76, 0.097
+19670317, 1.32, -0.47, -0.27, 0.097
+19670323, 0.64, 0.07, -0.04, 0.097
+19670331, -0.58, 0.71, 0.50, 0.097
+19670407, -0.91, -0.10, 0.58, 0.081
+19670414, 1.01, -0.29, -0.83, 0.081
+19670421, 2.07, 0.51, -0.78, 0.081
+19670428, 1.67, 0.25, -1.27, 0.081
+19670505, 0.64, 1.30, -0.17, 0.083
+19670512, -0.69, 0.63, 0.52, 0.083
+19670519, -1.13, 1.27, 0.34, 0.083
+19670526, -1.09, -0.33, 0.03, 0.083
+19670602, -1.39, -0.28, -0.19, 0.066
+19670609, 2.04, 0.55, -0.09, 0.066
+19670616, 1.27, 1.60, -0.16, 0.066
+19670623, -0.38, 1.76, 0.08, 0.066
+19670630, -1.28, 1.35, 1.10, 0.066
+19670707, 1.28, 1.53, -0.60, 0.079
+19670714, 1.29, 0.84, 0.95, 0.079
+19670721, 1.05, -0.91, 2.19, 0.079
+19670728, 0.58, 1.18, 0.11, 0.079
+19670804, 1.32, -0.03, 0.16, 0.078
+19670811, -0.72, -0.01, 0.93, 0.078
+19670818, -0.35, 0.16, 0.16, 0.078
+19670825, -2.09, 0.13, 0.09, 0.078
+19670901, 1.36, 0.92, -0.02, 0.080
+19670908, 0.64, 0.70, -0.48, 0.080
+19670915, 1.83, -0.11, -0.04, 0.080
+19670922, 0.71, 1.05, -0.65, 0.080
+19670929, -0.27, 0.97, -1.24, 0.080
+19671006, 0.56, 1.34, -1.44, 0.098
+19671013, -1.38, 0.31, 0.37, 0.098
+19671020, -0.80, -0.08, -1.09, 0.098
+19671027, -0.47, -0.05, -1.37, 0.098
+19671103, -3.22, 0.54, -0.35, 0.089
+19671110, 0.28, -0.26, -0.04, 0.089
+19671117, 0.67, -1.12, -0.21, 0.089
+19671124, 1.15, 0.32, -1.23, 0.089
+19671201, 1.00, 1.20, 0.04, 0.083
+19671208, 0.93, 0.99, -0.30, 0.083
+19671215, -0.16, 1.94, -0.36, 0.083
+19671222, 0.31, 1.25, 0.08, 0.083
+19671229, 1.40, 0.60, 0.34, 0.083
+19680105, -0.51, 0.62, 3.19, 0.101
+19680112, 1.14, 1.97, 0.25, 0.101
+19680119, -1.17, 2.39, 0.05, 0.101
+19680126, -2.04, 0.06, 0.03, 0.101
+19680202, -1.60, -1.55, 1.76, 0.097
+19680209, -2.83, -2.07, 0.63, 0.097
+19680216, 0.02, -0.01, 0.11, 0.097
+19680223, 0.89, 0.63, -0.80, 0.097
+19680301, -2.24, -1.56, 0.73, 0.095
+19680308, -0.47, -1.20, 0.61, 0.095
+19680315, -0.01, 0.13, -0.46, 0.095
+19680322, -0.88, -0.03, 0.12, 0.095
+19680329, 2.02, 0.52, -1.12, 0.095
+19680405, 3.40, 0.01, -0.70, 0.107
+19680411, 3.41, 0.17, 0.02, 0.107
+19680419, -0.28, 2.47, 0.45, 0.107
+19680426, 1.75, 2.10, -1.00, 0.107
+19680503, 1.47, 0.52, 0.00, 0.111
+19680510, 0.26, 1.57, 0.44, 0.111
+19680517, -1.33, 1.35, 0.94, 0.111
+19680524, 0.61, 1.92, 0.35, 0.111
+19680531, 1.64, 1.22, -0.60, 0.111
+19680607, 2.93, 0.88, 0.03, 0.106
+19680614, -0.27, -0.05, -0.17, 0.106
+19680621, -0.59, -0.73, 0.09, 0.106
+19680628, -1.33, -0.27, 0.68, 0.106
+19680703, 1.40, 0.83, -0.34, 0.119
+19680712, 1.38, 0.50, 0.61, 0.119
+19680719, -1.99, 0.02, 2.07, 0.119
+19680726, -2.71, -1.91, 2.39, 0.119
+19680802, -1.86, -0.56, 0.60, 0.105
+19680809, 0.61, 0.71, 0.23, 0.105
+19680816, 1.63, 0.90, -0.18, 0.105
+19680823, 0.04, 0.85, 0.16, 0.105
+19680830, 0.12, -0.23, 0.76, 0.105
+19680906, 2.11, -0.17, -0.33, 0.106
+19680913, -0.22, 1.28, 0.13, 0.106
+19680920, 0.88, 0.24, 0.43, 0.106
+19680927, 0.81, 1.03, -0.21, 0.106
+19681004, 1.18, 0.07, 1.21, 0.109
+19681011, -0.51, 0.07, 0.10, 0.109
+19681018, 1.52, -0.19, 0.09, 0.109
+19681025, -0.52, 0.45, 1.16, 0.109
+19681101, -1.22, -0.82, 0.65, 0.106
+19681108, 0.98, -0.05, -0.63, 0.106
+19681115, 1.97, 1.18, -0.66, 0.106
+19681122, 0.83, 0.74, 0.54, 0.106
+19681129, 1.91, 0.55, -0.17, 0.106
+19681206, -0.32, 1.26, -0.43, 0.107
+19681213, -0.16, 1.32, 0.48, 0.107
+19681220, -1.13, 0.46, -0.43, 0.107
+19681227, -1.45, 0.56, 0.67, 0.107
+19690103, -0.93, 0.12, -0.30, 0.131
+19690110, -3.28, -1.59, 0.83, 0.131
+19690117, 1.05, 0.24, 0.20, 0.131
+19690124, 0.50, 1.33, -0.17, 0.131
+19690131, 0.41, -0.98, 0.88, 0.131
+19690207, 0.47, -0.76, 0.57, 0.115
+19690214, -0.07, -0.03, -0.71, 0.115
+19690220, -4.20, -1.68, 0.94, 0.115
+19690228, -2.11, -1.61, 0.09, 0.115
+19690307, 0.11, -1.25, 0.75, 0.116
+19690314, -0.77, -0.25, 0.35, 0.116
+19690321, 1.64, 0.84, -0.86, 0.116
+19690328, 1.69, 0.41, -0.66, 0.116
+19690403, -0.99, -0.22, 0.90, 0.133
+19690411, 0.65, -0.42, -0.06, 0.133
+19690418, -0.65, -0.69, 0.53, 0.133
+19690425, 0.35, -0.09, -0.25, 0.133
+19690502, 2.41, 0.92, -1.10, 0.121
+19690509, 1.12, -0.27, -0.09, 0.121
+19690516, 0.59, -0.62, 0.11, 0.121
+19690523, -1.14, 0.13, 0.51, 0.121
+19690529, -1.05, 0.25, -0.06, 0.121
+19690606, -1.53, -0.53, -0.32, 0.128
+19690613, -3.84, -1.23, 0.03, 0.128
+19690620, -2.73, -2.66, 0.59, 0.128
+19690627, 0.26, -1.56, -1.24, 0.128
+19690703, 2.51, 1.15, -1.84, 0.133
+19690711, -4.13, -1.19, 1.55, 0.133
+19690718, -1.01, -0.65, 0.48, 0.133
+19690725, -3.54, -1.00, 1.17, 0.133
+19690801, 1.46, -1.07, -0.79, 0.126
+19690808, 0.60, -0.27, -0.47, 0.126
+19690815, 0.16, -0.24, -1.48, 0.126
+19690822, 2.16, 0.72, -1.41, 0.126
+19690829, -0.27, -0.08, 0.01, 0.126
+19690905, -2.36, -0.28, 0.68, 0.155
+19690912, 0.64, -0.11, -0.84, 0.155
+19690919, 1.06, 1.18, -3.23, 0.155
+19690926, -1.25, 0.31, 0.37, 0.155
+19691003, -0.92, 0.08, -0.63, 0.149
+19691010, 0.36, -0.01, -1.44, 0.149
+19691017, 3.20, 2.31, -0.66, 0.149
+19691024, 2.05, 0.95, -0.79, 0.149
+19691031, -0.82, 0.51, 0.26, 0.149
+19691107, 1.26, -0.57, -0.86, 0.129
+19691114, -1.49, -0.58, 0.64, 0.129
+19691121, -3.20, -1.68, 1.31, 0.129
+19691128, -0.36, 0.27, -2.38, 0.129
+19691205, -2.64, -1.52, -0.54, 0.160
+19691212, -1.18, -1.09, -1.50, 0.160
+19691219, 0.54, -0.74, -1.09, 0.160
+19691226, 0.40, -0.35, 0.47, 0.160
+19700102, 1.34, 1.32, 0.54, 0.151
+19700109, -0.58, 1.51, 0.58, 0.151
+19700116, -1.86, -0.58, -0.74, 0.151
+19700123, -2.03, 0.78, 1.13, 0.151
+19700130, -4.92, 0.05, 1.24, 0.151
+19700206, 1.53, -1.16, 0.00, 0.154
+19700213, 0.38, 0.40, -0.06, 0.154
+19700220, 1.52, -1.35, 1.97, 0.154
+19700227, 1.62, -0.07, 1.75, 0.154
+19700306, -0.27, -0.03, 2.55, 0.142
+19700313, -2.22, -0.87, 2.02, 0.142
+19700320, -1.31, -1.17, 1.04, 0.142
+19700326, 3.09, -0.27, -1.15, 0.142
+19700403, -0.78, 0.14, 0.93, 0.126
+19700410, -1.93, -1.66, 1.92, 0.126
+19700417, -3.51, -2.01, 2.35, 0.126
+19700424, -3.95, -1.97, 1.79, 0.126
+19700501, -1.79, -1.17, 0.08, 0.131
+19700508, -2.50, -0.56, 1.63, 0.131
+19700515, -3.50, -1.86, 1.80, 0.131
+19700522, -6.56, -2.21, 3.34, 0.131
+19700529, 6.02, 0.10, -3.73, 0.131
+19700605, -0.28, 1.85, -1.20, 0.145
+19700612, -2.75, -0.52, 0.66, 0.145
+19700619, 3.56, -1.01, -1.97, 0.145
+19700626, -5.11, -1.60, 2.26, 0.145
+19700702, -1.14, -1.89, 0.37, 0.131
+19700710, 2.19, -1.08, -0.15, 0.131
+19700717, 3.78, -0.66, 0.45, 0.131
+19700724, 0.21, 1.04, 0.43, 0.131
+19700731, 0.43, 1.31, -0.23, 0.131
+19700807, -1.06, -0.76, 1.47, 0.133
+19700814, -2.97, -0.34, 2.29, 0.133
+19700821, 5.06, -2.30, -0.51, 0.133
+19700828, 3.94, 4.19, -2.60, 0.133
+19700904, 1.50, 2.01, -0.75, 0.134
+19700911, -0.21, 2.20, -1.00, 0.134
+19700918, 0.29, 1.53, -1.18, 0.134
+19700925, 1.72, 1.50, -1.77, 0.134
+19701002, 1.58, 1.70, -0.65, 0.115
+19701009, -0.51, -0.95, 1.56, 0.115
+19701016, -1.31, -1.26, 0.79, 0.115
+19701023, -0.89, -1.21, -0.73, 0.115
+19701030, -0.79, -1.13, -0.95, 0.115
+19701106, 1.25, -0.59, 0.63, 0.114
+19701113, -1.16, -1.25, 0.76, 0.114
+19701120, 0.17, -1.92, -0.19, 0.114
+19701127, 2.62, -0.91, 0.33, 0.114
+19701204, 4.27, 1.01, 0.40, 0.106
+19701211, 0.77, -0.28, -0.45, 0.106
+19701218, -0.12, -0.01, 0.48, 0.106
+19701224, 0.63, 1.63, 0.08, 0.106
+19701231, 1.70, 1.17, 0.35, 0.106
+19710108, 0.48, 2.23, 2.23, 0.095
+19710115, 1.37, 2.16, 0.78, 0.095
+19710122, 1.86, 0.98, -0.74, 0.095
+19710129, 1.04, 1.60, -0.83, 0.095
+19710205, 1.64, 1.81, -0.87, 0.083
+19710212, 1.57, 1.26, 0.41, 0.083
+19710219, -1.86, -0.90, 0.58, 0.083
+19710226, 0.08, -0.29, -1.34, 0.083
+19710305, 2.48, 1.43, -1.05, 0.074
+19710312, 0.63, 0.55, -1.00, 0.074
+19710319, 1.54, 0.48, -1.17, 0.074
+19710326, -0.94, 0.05, -0.29, 0.074
+19710402, 0.63, -0.12, -1.02, 0.069
+19710408, 1.32, -0.16, 0.50, 0.069
+19710416, 1.21, -0.29, 1.32, 0.069
+19710423, 0.42, -0.52, -0.22, 0.069
+19710430, -0.13, 0.51, -0.34, 0.069
+19710507, -0.95, -0.14, -0.49, 0.073
+19710514, -0.59, -0.12, -0.10, 0.073
+19710521, -1.34, -0.80, -0.22, 0.073
+19710528, -1.17, -0.09, -0.66, 0.073
+19710604, 1.87, 0.83, -0.59, 0.093
+19710611, -0.41, -0.80, -0.48, 0.093
+19710618, -2.19, -1.80, -0.73, 0.093
+19710625, -1.05, 0.01, 0.01, 0.093
+19710702, 1.91, 0.50, -0.31, 0.100
+19710709, 1.07, 0.23, -0.58, 0.100
+19710716, -1.53, 0.17, 0.43, 0.100
+19710723, -0.38, -0.70, 0.09, 0.100
+19710730, -3.85, -1.58, 0.40, 0.100
+19710806, -1.25, -0.26, 0.39, 0.117
+19710813, 1.54, -0.41, -0.36, 0.117
+19710820, 2.58, 0.77, 1.43, 0.117
+19710827, 2.02, -0.62, 1.06, 0.117
+19710903, 0.24, 0.67, 0.26, 0.092
+19710910, -0.17, 0.75, -0.79, 0.092
+19710917, -0.65, -0.27, -0.80, 0.092
+19710924, -1.81, -0.13, -0.66, 0.092
+19711001, 0.70, 0.16, -1.21, 0.092
+19711008, 0.45, -0.11, 0.30, 0.092
+19711015, -1.72, -0.30, 0.05, 0.092
+19711022, -2.36, -0.46, -0.47, 0.092
+19711029, -1.44, -1.14, -0.14, 0.092
+19711105, 0.19, -0.86, -0.58, 0.093
+19711112, -2.57, -0.53, -0.43, 0.093
+19711119, -0.74, -1.19, -0.10, 0.093
+19711126, 0.13, -1.52, -0.52, 0.093
+19711203, 5.86, 1.82, -0.57, 0.092
+19711210, 0.94, 1.49, -0.31, 0.092
+19711217, 2.40, 0.32, -0.20, 0.092
+19711223, 0.39, -0.04, 0.18, 0.092
+19711231, 1.44, 0.82, 0.30, 0.092
+19720107, 1.42, 2.13, 1.62, 0.072
+19720114, 0.08, 1.18, -0.03, 0.072
+19720121, 0.29, 0.94, -0.23, 0.072
+19720128, 0.74, 1.17, 0.49, 0.072
+19720204, 1.03, 1.59, -1.27, 0.062
+19720211, 0.14, -0.03, 0.16, 0.062
+19720218, 0.25, 0.51, -0.54, 0.062
+19720225, 0.87, 0.01, -0.55, 0.062
+19720303, 1.91, -0.06, -1.18, 0.068
+19720310, 0.52, 0.80, -0.34, 0.068
+19720317, -0.61, -0.80, 0.40, 0.068
+19720324, -0.43, -0.90, -0.31, 0.068
+19720330, -0.32, 0.40, -0.48, 0.068
+19720407, 2.34, 0.17, -0.26, 0.072
+19720414, 0.31, 0.98, -0.25, 0.072
+19720421, -1.05, -0.52, 1.12, 0.072
+19720428, -1.28, -0.41, -0.53, 0.072
+19720505, -1.15, -1.60, -0.27, 0.075
+19720512, -0.17, -0.37, -0.06, 0.075
+19720519, 2.33, -0.09, -1.30, 0.075
+19720526, 1.36, -0.33, -1.56, 0.075
+19720602, -0.76, -0.08, 0.09, 0.073
+19720609, -2.62, 0.10, -0.47, 0.073
+19720616, 1.10, -0.23, -0.84, 0.073
+19720623, -0.23, -0.14, -0.53, 0.073
+19720630, -0.99, 0.25, -0.32, 0.073
+19720707, 1.33, -0.23, -0.61, 0.078
+19720714, -1.98, -0.83, 1.05, 0.078
+19720721, -0.41, -1.03, 1.06, 0.078
+19720728, 0.35, -0.61, -0.59, 0.078
+19720804, 2.80, -1.51, -1.52, 0.071
+19720811, 1.33, -0.57, -0.16, 0.071
+19720818, -0.11, -0.59, 2.80, 0.071
+19720825, -1.09, -0.77, 2.85, 0.071
+19720901, 0.61, -0.74, 0.29, 0.085
+19720908, -1.38, -0.43, 1.00, 0.085
+19720915, -1.40, -0.81, 0.41, 0.085
+19720922, -0.46, -0.79, 0.44, 0.085
+19720929, 1.72, -0.77, -1.26, 0.085
+19721006, -1.00, -1.36, 1.46, 0.099
+19721013, -1.65, 0.04, 0.59, 0.099
+19721020, 1.00, -1.11, -0.10, 0.099
+19721027, 1.26, 0.02, -0.39, 0.099
+19721103, 3.27, -1.20, -0.22, 0.093
+19721110, -0.31, -0.21, 2.17, 0.093
+19721117, 1.41, -1.04, 0.83, 0.093
+19721124, 1.33, -0.36, 1.75, 0.093
+19721201, 0.37, 1.66, -0.40, 0.094
+19721208, 1.03, 0.29, -1.47, 0.094
+19721215, -0.69, -1.35, -0.11, 0.094
+19721222, -1.96, -0.28, 0.08, 0.094
+19721229, 1.66, -0.80, -0.59, 0.094
+19730105, 1.27, 1.18, 0.17, 0.109
+19730112, -0.69, -1.54, 1.34, 0.109
+19730119, -0.90, -1.20, -0.17, 0.109
+19730126, -2.45, -1.17, 0.46, 0.109
+19730202, -2.11, -1.04, 0.99, 0.104
+19730209, 0.13, -0.68, -1.29, 0.104
+19730216, -0.18, -0.87, 0.54, 0.104
+19730223, -1.88, -1.41, 1.69, 0.104
+19730302, -1.26, -1.82, 1.12, 0.114
+19730309, 1.42, 0.43, -0.81, 0.114
+19730316, -0.59, -1.28, 1.06, 0.114
+19730323, -4.47, -1.02, 2.64, 0.114
+19730330, 2.27, -0.10, -0.59, 0.114
+19730406, -2.58, -0.87, 1.37, 0.130
+19730413, 2.26, -1.49, 1.01, 0.130
+19730419, -0.31, -0.96, 1.27, 0.130
+19730427, -4.80, -0.59, 2.12, 0.130
+19730504, 3.21, -1.69, -0.93, 0.127
+19730511, -2.22, 0.78, -0.04, 0.127
+19730518, -4.62, -2.61, 1.66, 0.127
+19730525, 3.39, -3.21, -1.53, 0.127
+19730601, -3.70, -0.19, 1.69, 0.128
+19730608, 2.32, -1.83, -0.73, 0.128
+19730615, -1.71, 1.16, 0.72, 0.128
+19730622, -1.58, -1.02, 0.55, 0.128
+19730629, 0.37, -1.16, 0.22, 0.128
+19730706, -2.74, 0.90, 2.03, 0.159
+19730713, 3.22, 2.22, -2.03, 0.159
+19730720, 3.65, 3.20, -3.62, 0.159
+19730727, 2.06, 1.11, -1.95, 0.159
+19730803, -2.70, -0.02, 0.44, 0.174
+19730810, -1.71, -0.27, 0.07, 0.174
+19730817, -2.29, -0.52, 1.37, 0.174
+19730824, -0.90, -0.81, 0.17, 0.174
+19730831, 2.55, -0.41, -0.48, 0.174
+19730907, 0.84, 0.37, 0.98, 0.170
+19730914, -0.53, 0.51, -0.76, 0.170
+19730921, 3.12, 0.88, 0.29, 0.170
+19730928, 1.25, 1.05, 1.67, 0.170
+19731005, 1.27, 2.10, 1.39, 0.163
+19731012, 1.17, 0.09, -1.26, 0.163
+19731019, -1.31, -0.57, 0.28, 0.163
+19731026, 0.40, -1.61, 0.47, 0.163
+19731102, -3.77, -0.49, 0.75, 0.139
+19731109, -2.10, -1.62, 1.48, 0.139
+19731116, -2.14, -3.25, 0.46, 0.139
+19731123, -4.39, -2.03, 1.83, 0.139
+19731130, -3.69, -1.57, 1.03, 0.139
+19731207, 0.14, -2.22, 0.43, 0.159
+19731214, -3.43, -1.21, 2.03, 0.159
+19731221, -0.09, -1.11, 1.78, 0.159
+19731228, 3.91, -1.17, -0.44, 0.159
+19740104, 2.17, 4.99, 3.93, 0.156
+19740111, -4.90, 2.78, 2.41, 0.156
+19740118, 2.13, 0.51, -0.61, 0.156
+19740125, 0.83, 0.87, -0.67, 0.156
+19740201, -1.33, 1.21, 0.98, 0.145
+19740208, -2.88, 0.23, 1.75, 0.145
+19740215, -0.48, -0.34, 1.03, 0.145
+19740222, 3.17, -1.23, 0.09, 0.145
+19740301, 0.47, 1.44, -0.29, 0.139
+19740308, 2.14, 0.75, -1.62, 0.139
+19740315, 1.48, 0.43, -1.12, 0.139
+19740322, -2.20, 0.44, 0.46, 0.139
+19740329, -3.57, 0.30, 1.72, 0.139
+19740405, -1.47, 0.27, 0.48, 0.188
+19740411, -1.08, -0.28, 0.80, 0.188
+19740419, 1.35, -0.47, -0.10, 0.188
+19740426, -4.33, -0.30, 0.43, 0.188
+19740503, 1.17, -0.31, -0.87, 0.188
+19740510, -0.56, -0.78, -0.50, 0.188
+19740517, -3.66, 0.21, 0.13, 0.188
+19740524, -0.02, -2.08, -1.75, 0.188
+19740531, -1.52, -0.09, 0.31, 0.188
+19740607, 5.83, -0.88, -0.58, 0.150
+19740614, -1.51, 0.77, -0.77, 0.150
+19740621, -4.52, 0.69, 0.89, 0.150
+19740628, -2.37, -0.93, 1.10, 0.150
+19740705, -3.07, -0.58, 1.27, 0.176
+19740712, -1.01, -1.39, 0.53, 0.176
+19740719, 0.87, 1.05, 1.07, 0.176
+19740726, -1.30, 1.00, 1.81, 0.176
+19740802, -4.70, 0.71, 1.30, 0.148
+19740809, 3.00, 0.49, 0.15, 0.148
+19740816, -6.32, 1.42, 2.16, 0.148
+19740823, -5.47, -0.31, 2.37, 0.148
+19740830, 0.26, -2.16, -2.69, 0.148
+19740906, -1.36, -1.30, 1.15, 0.201
+19740913, -8.48, 0.25, 1.74, 0.201
+19740920, 7.23, -2.65, -0.87, 0.201
+19740927, -6.62, 3.28, 3.04, 0.201
+19741004, -4.10, 0.95, 1.23, 0.126
+19741011, 13.46, -3.22, -3.83, 0.126
+19741018, 1.61, 0.82, -2.61, 0.126
+19741025, -2.44, 1.05, -1.05, 0.126
+19741101, 4.96, -2.79, -2.52, 0.134
+19741108, 2.00, -0.50, -0.97, 0.134
+19741115, -3.80, 0.94, 2.03, 0.134
+19741122, -4.10, -0.63, 0.25, 0.134
+19741129, 1.49, -0.98, -1.69, 0.134
+19741206, -7.29, -0.18, 1.22, 0.174
+19741213, 2.45, -3.72, -0.80, 0.174
+19741220, -0.68, -0.94, 0.00, 0.174
+19741227, 0.22, -0.30, -0.04, 0.174
+19750103, 5.45, 0.92, 2.40, 0.145
+19750110, 3.34, 2.82, 3.38, 0.145
+19750117, -1.57, 3.59, 0.77, 0.145
+19750124, 2.42, -0.14, 1.20, 0.145
+19750131, 5.26, 2.35, -0.93, 0.145
+19750207, 2.39, 1.07, -1.86, 0.109
+19750214, 3.30, -0.79, -2.69, 0.109
+19750221, 1.14, -0.56, -0.21, 0.109
+19750228, -1.34, 0.40, 0.27, 0.109
+19750307, 3.31, 0.09, 1.32, 0.103
+19750314, 0.93, 2.92, 0.76, 0.103
+19750321, -1.33, 0.79, 0.44, 0.103
+19750327, 0.32, -0.53, -0.20, 0.103
+19750404, -3.20, 1.66, -0.05, 0.109
+19750411, 3.52, -1.52, -0.51, 0.109
+19750418, 2.44, 0.20, -0.16, 0.109
+19750425, 0.42, 0.54, 0.60, 0.109
+19750502, 2.60, -1.79, -1.70, 0.109
+19750509, 2.04, 1.30, -0.93, 0.109
+19750516, -0.11, 0.78, -0.30, 0.109
+19750523, 0.20, 1.16, -1.53, 0.109
+19750530, 0.83, 1.12, -0.16, 0.109
+19750606, 1.55, 0.65, -0.38, 0.102
+19750613, -1.99, -0.22, 1.01, 0.102
+19750620, 2.37, -1.00, 0.37, 0.102
+19750627, 2.36, 0.67, -0.03, 0.102
+19750703, -0.42, 1.55, 0.26, 0.121
+19750711, 0.54, 0.68, 2.05, 0.121
+19750718, -1.25, 2.12, 1.16, 0.121
+19750725, -4.44, -0.32, -0.95, 0.121
+19750801, -1.70, -0.65, -0.23, 0.120
+19750808, -2.51, -1.38, -0.93, 0.120
+19750815, 0.04, -0.82, -0.23, 0.120
+19750822, -2.56, -0.58, -0.14, 0.120
+19750829, 3.25, -0.40, 0.21, 0.120
+19750905, -1.61, 0.39, 0.38, 0.131
+19750912, -3.00, 0.35, 0.68, 0.131
+19750919, 2.72, -1.79, -0.46, 0.131
+19750926, 0.28, 0.24, -0.83, 0.131
+19751003, -0.62, -1.04, -0.20, 0.139
+19751010, 2.43, -1.01, -0.83, 0.139
+19751017, 0.77, -0.48, 0.16, 0.139
+19751024, 1.02, -0.65, 1.25, 0.139
+19751031, -1.16, -0.19, 0.42, 0.139
+19751107, 0.56, -0.05, 0.39, 0.102
+19751114, 1.91, -0.27, 0.08, 0.102
+19751121, -1.58, 0.01, 1.05, 0.102
+19751128, 1.77, -0.87, 0.42, 0.102
+19751205, -5.08, 0.60, -0.07, 0.121
+19751212, 0.78, -1.49, -0.11, 0.121
+19751219, 1.12, -0.12, 0.27, 0.121
+19751226, 1.57, -0.83, 1.04, 0.121
+19760102, 0.85, 0.95, 1.93, 0.117
+19760109, 4.68, 0.57, 1.55, 0.117
+19760116, 2.14, 0.75, 1.88, 0.117
+19760123, 2.18, 1.97, 2.32, 0.117
+19760130, 1.81, 1.12, 0.62, 0.117
+19760206, -0.74, 1.97, 0.49, 0.084
+19760213, 0.71, 2.40, 2.11, 0.084
+19760220, 2.52, 1.80, 2.34, 0.084
+19760227, -2.11, 0.55, 0.52, 0.084
+19760305, -0.52, 0.66, 1.15, 0.100
+19760312, 1.57, -0.70, -0.16, 0.100
+19760319, -0.51, -0.08, -0.43, 0.100
+19760326, 1.94, -0.90, -0.47, 0.100
+19760402, -0.61, 0.39, -0.64, 0.105
+19760409, -2.14, -0.17, -0.88, 0.105
+19760415, 0.15, -0.92, 0.38, 0.105
+19760423, 1.63, 0.53, 0.91, 0.105
+19760430, -0.72, -0.04, 0.05, 0.105
+19760507, 0.32, -0.33, -0.78, 0.093
+19760514, -0.36, 0.14, 1.06, 0.093
+19760521, -0.12, -0.42, -0.06, 0.093
+19760528, -1.19, -0.65, -1.49, 0.093
+19760604, -0.95, -0.22, -0.02, 0.109
+19760611, 1.50, -1.07, -0.55, 0.109
+19760618, 2.76, -0.27, 0.69, 0.109
+19760625, 0.07, 0.34, 0.16, 0.109
+19760702, 0.38, 0.26, 0.28, 0.116
+19760709, 0.78, 0.48, 0.41, 0.116
+19760716, -0.29, 0.75, 0.03, 0.116
+19760723, -0.66, -0.32, 0.25, 0.116
+19760730, -0.74, -1.01, 0.97, 0.116
+19760806, 0.48, -0.55, 0.66, 0.105
+19760813, 0.39, -0.59, -0.03, 0.105
+19760820, -1.81, -0.14, 0.13, 0.105
+19760827, -0.85, -0.29, 0.00, 0.105
+19760903, 2.59, -0.56, -0.48, 0.109
+19760910, 0.26, 0.16, -0.12, 0.109
+19760917, 1.34, -0.51, -0.28, 0.109
+19760924, 0.48, 0.30, 0.72, 0.109
+19761001, -2.33, 0.44, 0.08, 0.102
+19761008, -1.57, 0.06, -0.15, 0.102
+19761015, -1.68, 0.26, -0.14, 0.102
+19761022, -0.85, 0.47, 0.63, 0.102
+19761029, 2.62, -0.85, -0.72, 0.102
+19761105, -1.40, 1.21, 1.45, 0.099
+19761112, -1.55, 0.34, -0.22, 0.099
+19761119, 2.81, -0.31, 0.11, 0.099
+19761126, 1.43, 0.45, -0.20, 0.099
+19761203, -0.20, 0.85, 0.96, 0.101
+19761210, 2.12, 1.02, 0.50, 0.101
+19761217, -0.20, 0.47, 1.72, 0.101
+19761223, 0.37, 0.16, -0.68, 0.101
+19761231, 2.51, 0.98, -0.04, 0.101
+19770107, -1.77, 2.70, 1.34, 0.090
+19770114, -0.69, 1.07, 0.57, 0.090
+19770121, -0.38, 1.10, 1.26, 0.090
+19770128, -1.24, 0.45, 1.28, 0.090
+19770204, 0.16, 0.50, -0.13, 0.088
+19770211, -1.47, 1.07, -0.33, 0.088
+19770218, 0.29, -0.47, 0.88, 0.088
+19770225, -1.13, 0.00, -0.08, 0.088
+19770304, 1.62, -0.66, -0.17, 0.094
+19770311, -0.39, 0.64, 0.02, 0.094
+19770318, 0.94, -0.26, 0.42, 0.094
+19770325, -2.49, 1.27, 0.19, 0.094
+19770401, -0.11, -0.76, 0.61, 0.094
+19770407, -0.95, -0.05, 0.15, 0.094
+19770415, 2.62, -0.61, 0.95, 0.094
+19770422, -2.23, 1.35, 1.34, 0.094
+19770429, 0.00, -0.52, 0.90, 0.094
+19770506, 1.42, 0.15, 0.11, 0.093
+19770513, -0.18, 0.63, 0.37, 0.093
+19770520, 0.44, 0.42, 0.09, 0.093
+19770527, -2.88, 0.40, 0.28, 0.093
+19770603, 1.20, -0.72, -0.37, 0.100
+19770610, 0.81, 0.56, -0.05, 0.100
+19770617, 1.55, 0.06, -0.73, 0.100
+19770624, 1.33, 0.53, 0.26, 0.100
+19770701, -0.82, 1.51, 0.52, 0.104
+19770708, -0.16, 0.94, 0.02, 0.104
+19770715, 0.40, 0.29, -0.40, 0.104
+19770722, 1.19, 0.11, -0.32, 0.104
+19770729, -2.84, 0.22, -0.17, 0.104
+19770805, 0.00, 0.26, -0.71, 0.110
+19770812, -0.68, 0.81, -0.85, 0.110
+19770819, -0.43, 0.64, -1.46, 0.110
+19770826, -1.28, 0.36, 0.40, 0.110
+19770902, 1.35, -0.15, -0.19, 0.108
+19770909, -1.08, 0.74, 0.31, 0.108
+19770916, 0.06, 0.28, -0.58, 0.108
+19770923, -1.41, 0.37, 0.36, 0.108
+19770930, 1.36, -0.21, -0.46, 0.108
+19771007, -0.35, 0.68, 0.54, 0.123
+19771014, -2.71, 0.14, 0.55, 0.123
+19771021, -1.22, 0.54, 0.49, 0.123
+19771028, 0.03, -0.37, -0.04, 0.123
+19771104, -0.69, 0.78, 0.50, 0.125
+19771111, 4.77, -0.35, -0.87, 0.125
+19771118, -0.16, 1.98, 0.37, 0.125
+19771125, 1.66, 0.48, -0.24, 0.125
+19771202, -1.72, 1.57, 1.00, 0.121
+19771209, -1.14, 0.39, 0.29, 0.121
+19771216, -0.20, 0.69, -0.25, 0.121
+19771223, 1.05, -0.75, -0.55, 0.121
+19771230, 0.46, 0.23, -0.12, 0.121
+19780106, -3.65, 0.32, 1.84, 0.122
+19780113, -2.18, 0.22, 1.05, 0.122
+19780120, 0.30, 0.84, 0.16, 0.122
+19780127, -1.27, 0.91, 0.96, 0.122
+19780203, 1.50, 1.07, -0.93, 0.115
+19780210, 0.79, 0.74, 0.03, 0.115
+19780217, -2.18, 1.32, 0.58, 0.115
+19780224, 0.68, 0.18, -0.18, 0.115
+19780303, -1.05, 0.46, 0.90, 0.132
+19780310, 1.65, 0.28, -0.43, 0.132
+19780317, 1.48, 0.59, -0.05, 0.132
+19780323, -0.74, 1.11, 0.51, 0.132
+19780331, -0.08, 1.41, 0.78, 0.132
+19780407, 1.19, 0.68, -0.54, 0.134
+19780414, 2.93, 0.01, -0.86, 0.134
+19780421, 1.33, -0.09, -0.72, 0.134
+19780428, 2.20, -0.25, -1.18, 0.134
+19780505, 0.46, 1.80, 0.02, 0.127
+19780512, 1.62, 1.10, -1.30, 0.127
+19780519, 0.35, 1.21, 0.21, 0.127
+19780526, -1.34, 0.37, 0.35, 0.127
+19780602, 1.45, -0.12, -0.33, 0.134
+19780609, 1.95, 1.04, -0.27, 0.134
+19780616, -2.08, 1.63, 0.23, 0.134
+19780623, -1.87, -0.59, 0.85, 0.134
+19780630, -0.57, -0.37, -0.02, 0.134
+19780707, -0.67, -0.14, -0.15, 0.139
+19780714, 2.56, -0.59, -0.57, 0.139
+19780721, 0.22, 1.08, 0.33, 0.139
+19780728, 2.17, 0.04, -0.34, 0.139
+19780804, 3.86, -1.44, -0.71, 0.138
+19780811, 0.54, 2.16, -0.19, 0.138
+19780818, 0.99, 1.56, -0.17, 0.138
+19780825, 0.40, 1.38, -0.03, 0.138
+19780901, -0.99, 0.86, 0.32, 0.154
+19780908, 2.74, -0.17, -0.45, 0.154
+19780915, -2.27, 1.33, 0.97, 0.154
+19780922, -2.75, -1.57, 0.96, 0.154
+19780929, 0.48, 0.18, 0.30, 0.154
+19781006, 0.83, -0.21, 0.21, 0.170
+19781013, 0.85, 0.11, -0.28, 0.170
+19781020, -7.43, -4.11, 0.92, 0.170
+19781027, -4.70, -4.00, 0.75, 0.170
+19781103, 1.85, -0.65, -1.60, 0.175
+19781110, -1.35, 0.27, 0.33, 0.175
+19781117, -0.47, -1.06, -0.38, 0.175
+19781124, 1.81, 1.29, -0.66, 0.175
+19781201, 0.48, 0.31, -0.47, 0.195
+19781208, 0.60, 0.97, 0.12, 0.195
+19781215, -1.46, 0.21, 0.19, 0.195
+19781222, 0.57, -0.76, -1.19, 0.195
+19781229, -0.44, 0.59, -0.59, 0.195
+19790105, 3.29, 1.27, 0.39, 0.192
+19790112, 0.83, 1.04, -0.29, 0.192
+19790119, -0.21, 0.79, 1.02, 0.192
+19790126, 1.87, -0.45, 0.43, 0.192
+19790202, -2.00, 1.04, 0.64, 0.183
+19790209, -1.52, -0.16, 0.65, 0.183
+19790216, 0.83, 0.60, -0.12, 0.183
+19790223, -0.87, 0.45, 0.33, 0.183
+19790302, -1.00, -0.44, 0.36, 0.203
+19790309, 2.56, -0.02, 0.72, 0.203
+19790316, 1.21, 0.66, -0.44, 0.203
+19790323, 0.83, 0.78, -0.46, 0.203
+19790330, 0.07, 1.26, -0.41, 0.203
+19790406, 1.44, 0.01, 0.06, 0.198
+19790412, -1.03, 0.84, 0.93, 0.198
+19790420, -0.83, 0.76, -0.06, 0.198
+19790427, 0.42, 0.63, 0.12, 0.198
+19790504, -1.00, 0.42, 0.05, 0.203
+19790511, -2.30, -1.18, 0.63, 0.203
+19790518, 1.34, -0.16, 0.37, 0.203
+19790525, 0.77, 1.06, -0.14, 0.203
+19790601, -1.05, 0.05, 0.29, 0.202
+19790608, 2.40, 0.09, 0.25, 0.202
+19790615, 0.65, 0.60, 0.64, 0.202
+19790622, 0.42, 0.52, 0.37, 0.202
+19790629, 0.16, -0.26, 0.25, 0.202
+19790706, 0.59, -0.13, 0.59, 0.191
+19790713, -1.24, 0.82, 1.00, 0.191
+19790720, -0.63, -0.01, 0.29, 0.191
+19790727, 1.30, 0.52, -0.18, 0.191
+19790803, 1.02, 0.69, -0.35, 0.191
+19790810, 2.21, -0.14, -1.27, 0.191
+19790817, 1.73, 0.18, 0.06, 0.191
+19790824, 0.34, 0.52, 0.37, 0.191
+19790831, 0.71, 0.73, -0.38, 0.191
+19790907, -1.67, -0.49, 0.63, 0.207
+19790914, 1.06, 0.63, -0.94, 0.207
+19790921, 0.97, -1.11, -0.50, 0.207
+19790928, -1.14, 0.75, -0.09, 0.207
+19791005, 1.71, 0.38, -0.50, 0.217
+19791012, -6.81, -2.48, -0.38, 0.217
+19791019, -3.06, -0.38, 0.34, 0.217
+19791026, -1.32, -1.08, -0.79, 0.217
+19791102, 2.23, 0.21, -1.00, 0.246
+19791109, -0.80, 0.19, -0.20, 0.246
+19791116, 2.27, -0.04, -0.84, 0.246
+19791123, 0.71, 0.34, -1.10, 0.246
+19791130, 1.89, 1.99, -0.55, 0.246
+19791207, 1.37, 1.11, -0.88, 0.237
+19791214, 1.26, 0.77, -1.20, 0.237
+19791221, -1.10, 1.35, 0.24, 0.237
+19791228, 0.18, 0.52, 0.01, 0.237
+19800104, -1.47, 0.14, 0.93, 0.199
+19800111, 3.50, 1.10, -0.21, 0.199
+19800118, 0.85, 1.14, 0.84, 0.199
+19800125, 1.96, -0.39, -0.24, 0.199
+19800201, 1.18, -0.43, 0.33, 0.221
+19800208, 2.29, -1.16, 1.32, 0.221
+19800215, -2.21, 0.57, -0.66, 0.221
+19800222, -0.77, -0.98, 0.09, 0.221
+19800229, -1.17, -0.05, -0.18, 0.221
+19800307, -6.62, -1.29, 0.07, 0.300
+19800314, -1.63, -0.67, -0.20, 0.300
+19800321, -3.38, -0.88, 0.24, 0.300
+19800328, -3.23, -4.68, -1.07, 0.300
+19800403, 2.15, 1.83, -0.45, 0.312
+19800411, 1.39, -0.40, 1.30, 0.312
+19800418, -3.29, 0.53, 1.20, 0.312
+19800425, 4.15, -1.24, -1.44, 0.312
+19800502, 0.53, 0.74, 0.60, 0.202
+19800509, -0.14, 1.84, 1.16, 0.202
+19800516, 2.41, 0.68, -1.13, 0.202
+19800523, 2.90, -0.64, -0.34, 0.202
+19800530, 0.43, -0.34, 0.19, 0.202
+19800606, 1.84, 0.25, -0.94, 0.152
+19800613, 2.31, -0.34, -0.42, 0.152
+19800620, -1.34, 0.82, 0.78, 0.152
+19800627, 1.70, 0.24, -0.48, 0.152
+19800703, 1.09, 0.40, -1.06, 0.132
+19800711, 0.53, 1.33, -0.55, 0.132
+19800718, 3.23, 0.91, -2.03, 0.132
+19800725, -0.96, 0.99, -0.28, 0.132
+19800801, 0.69, 1.78, -1.66, 0.159
+19800808, 2.02, 0.26, -1.16, 0.159
+19800815, 1.78, 0.57, -1.02, 0.159
+19800822, 0.61, 0.31, -0.41, 0.159
+19800829, -2.42, 1.64, 0.40, 0.159
+19800905, 2.18, 0.57, -0.46, 0.188
+19800912, 0.72, 2.08, -1.89, 0.188
+19800919, 2.73, 0.15, -2.65, 0.188
+19800926, -2.51, -1.18, 0.03, 0.188
+19801003, 2.16, -0.81, -2.55, 0.237
+19801010, 0.86, 1.43, -0.95, 0.237
+19801017, 0.46, -0.33, -0.25, 0.237
+19801024, -1.45, 0.70, 0.96, 0.237
+19801031, -2.06, 0.55, 0.06, 0.237
+19801107, 1.07, -1.02, -2.07, 0.238
+19801114, 5.93, -1.74, -3.24, 0.238
+19801121, 1.44, -0.15, -2.41, 0.238
+19801128, 0.86, -0.31, -0.02, 0.238
+19801205, -4.60, 2.22, 0.91, 0.325
+19801212, -4.31, -2.58, 2.13, 0.325
+19801219, 3.34, -0.97, 0.60, 0.325
+19801226, 1.69, 0.23, 0.11, 0.325
+19810102, -0.03, 1.20, -0.29, 0.258
+19810109, -2.68, 0.06, 3.73, 0.258
+19810116, 0.95, 0.73, -0.40, 0.258
+19810123, -3.37, 1.60, 0.97, 0.258
+19810130, -0.54, 0.42, 1.77, 0.258
+19810206, 0.74, -0.31, 0.55, 0.266
+19810213, -2.79, 1.21, 1.60, 0.266
+19810220, -0.84, -0.65, 0.48, 0.266
+19810227, 3.59, -0.66, -1.76, 0.266
+19810306, -0.81, 1.88, 0.67, 0.301
+19810313, 2.17, -1.05, 0.33, 0.301
+19810320, 0.89, 1.69, 1.33, 0.301
+19810327, 0.45, 0.76, -1.53, 0.301
+19810403, 0.66, 1.27, 0.22, 0.268
+19810410, -0.44, 1.44, 0.94, 0.268
+19810416, -0.23, 0.88, 0.23, 0.268
+19810424, 0.18, 1.20, 0.24, 0.268
+19810501, -1.87, -0.18, 0.10, 0.287
+19810508, -0.77, -0.65, -0.54, 0.287
+19810515, 0.35, 0.10, 1.21, 0.287
+19810522, -0.18, 1.34, -0.70, 0.287
+19810529, 0.84, 1.15, 0.04, 0.287
+19810605, -0.76, 0.01, 0.91, 0.335
+19810612, 0.82, -0.11, 1.79, 0.335
+19810619, -1.30, -0.36, 2.12, 0.335
+19810626, 0.01, -0.07, -0.02, 0.335
+19810702, -3.30, 0.23, 0.80, 0.309
+19810710, 0.01, -1.35, 0.01, 0.309
+19810717, 0.79, -0.20, -0.90, 0.309
+19810724, -2.09, -0.59, 0.31, 0.309
+19810731, 1.58, -0.45, -0.61, 0.309
+19810807, 0.76, -0.96, -0.21, 0.319
+19810814, 0.29, -0.41, 0.08, 0.319
+19810821, -2.82, 0.24, 1.64, 0.319
+19810828, -4.27, -0.95, 2.65, 0.319
+19810904, -3.69, -0.05, 2.14, 0.310
+19810911, 0.82, -1.16, -0.07, 0.310
+19810918, -4.56, 0.77, 3.46, 0.310
+19810925, -3.98, -2.27, 3.42, 0.310
+19811002, 5.79, -0.09, -5.12, 0.300
+19811009, 2.07, 1.92, -1.79, 0.300
+19811016, -1.85, 1.21, 1.32, 0.300
+19811023, -0.59, 0.36, -0.70, 0.300
+19811030, 2.46, -1.26, -1.05, 0.300
+19811106, 1.23, 0.73, -0.26, 0.266
+19811113, -0.90, 0.26, 3.47, 0.266
+19811120, 0.03, -1.13, 0.45, 0.266
+19811127, 2.11, -0.57, -1.00, 0.266
+19811204, 0.50, -0.16, -0.75, 0.218
+19811211, -1.24, 0.16, 0.00, 0.218
+19811218, -0.92, 0.31, -0.58, 0.218
+19811224, -1.10, 0.43, 0.82, 0.218
+19811231, -0.24, 0.18, 0.40, 0.218
+19820108, -2.49, 0.80, 2.89, 0.198
+19820115, -3.07, 0.05, 1.03, 0.198
+19820122, -1.06, -0.09, 1.48, 0.198
+19820129, 3.45, -2.11, -2.35, 0.198
+19820205, -1.88, 1.69, 1.28, 0.230
+19820212, -2.68, -0.56, 2.73, 0.230
+19820219, -1.09, 0.04, -0.29, 0.230
+19820226, -0.28, -0.52, 2.48, 0.230
+19820305, -3.43, -0.54, 6.44, 0.244
+19820312, -1.37, -1.46, 1.89, 0.244
+19820319, 1.66, 0.33, -2.69, 0.244
+19820326, 1.39, 1.11, -2.00, 0.244
+19820402, 2.31, -0.36, -2.38, 0.281
+19820408, 0.84, 0.46, -0.87, 0.281
+19820416, 0.39, 0.29, -0.13, 0.281
+19820423, 1.22, -0.02, 0.08, 0.281
+19820430, -1.84, 1.52, 0.07, 0.281
+19820507, 2.52, -1.09, -0.30, 0.264
+19820514, -1.03, 0.95, -0.15, 0.264
+19820521, -2.91, -0.20, 1.60, 0.264
+19820528, -2.47, 0.48, 0.60, 0.264
+19820604, -1.88, -0.02, 0.67, 0.238
+19820611, 0.59, -1.15, -0.19, 0.238
+19820618, -3.64, 0.85, 2.11, 0.238
+19820625, 1.42, 0.00, -1.83, 0.238
+19820702, -1.21, 0.69, 1.14, 0.262
+19820709, 0.40, -0.96, -0.23, 0.262
+19820716, 1.60, -0.80, -1.43, 0.262
+19820723, -0.04, 0.98, 0.15, 0.262
+19820730, -3.64, 0.73, 0.60, 0.262
+19820806, -2.75, 0.58, 2.79, 0.190
+19820813, -0.53, -2.68, 2.64, 0.190
+19820820, 8.10, -2.82, 0.05, 0.190
+19820827, 4.35, 1.66, -3.93, 0.190
+19820903, 4.34, -1.47, -1.49, 0.128
+19820910, -1.04, 1.81, 0.33, 0.128
+19820917, 1.34, 0.24, -0.85, 0.128
+19820924, 0.63, 0.12, 0.05, 0.128
+19821001, -1.04, 0.62, 1.38, 0.147
+19821008, 7.00, -2.23, -1.36, 0.147
+19821015, 2.03, 2.06, -0.72, 0.147
+19821022, 3.97, 0.74, -1.88, 0.147
+19821029, -3.10, 2.01, 0.57, 0.147
+19821105, 6.49, 0.16, -0.91, 0.158
+19821112, -0.94, 3.66, -0.43, 0.158
+19821119, -1.72, 0.64, 0.80, 0.158
+19821126, -1.39, 1.14, -0.02, 0.158
+19821203, 2.57, 0.16, -1.97, 0.168
+19821210, 0.14, -0.42, -0.52, 0.168
+19821217, -1.85, -0.90, 1.23, 0.168
+19821223, 1.32, -0.24, -0.42, 0.168
+19821231, 0.63, 0.24, 0.23, 0.168
+19830107, 3.08, 0.01, 0.67, 0.171
+19830114, 1.30, 1.57, -0.55, 0.171
+19830121, -1.76, 0.78, 0.09, 0.171
+19830128, 0.36, 0.33, -0.69, 0.171
+19830204, 1.43, 0.51, 0.37, 0.154
+19830211, 1.09, 1.30, -0.38, 0.154
+19830218, 0.51, 1.16, -0.88, 0.154
+19830225, 1.11, -0.84, 0.64, 0.154
+19830304, 2.32, -0.27, 1.40, 0.158
+19830311, -1.32, 1.89, 0.82, 0.158
+19830318, -1.02, 0.39, 1.04, 0.158
+19830325, 1.80, 0.43, -0.44, 0.158
+19830331, -0.05, -0.02, -0.37, 0.158
+19830408, -0.43, -0.34, 1.52, 0.178
+19830415, 3.81, 0.55, -1.10, 0.178
+19830422, 1.07, 1.06, 0.07, 0.178
+19830429, 2.07, -0.67, 0.07, 0.178
+19830506, 1.55, 1.66, -0.27, 0.172
+19830513, -0.28, 2.10, 0.02, 0.172
+19830520, -1.33, 0.90, -0.63, 0.172
+19830527, 1.81, 1.06, -0.74, 0.172
+19830603, -0.06, 0.64, -0.91, 0.166
+19830610, -0.60, 1.45, -0.68, 0.166
+19830617, 3.50, -0.18, -1.24, 0.166
+19830624, 0.73, 0.22, -1.41, 0.166
+19830701, -1.24, -0.27, 0.89, 0.185
+19830708, -1.11, 0.85, 1.00, 0.185
+19830715, -1.95, 0.30, 1.94, 0.185
+19830722, 2.41, -0.66, -1.01, 0.185
+19830729, -3.97, 0.68, 3.64, 0.185
+19830805, -1.03, -1.70, 1.37, 0.190
+19830812, 0.16, -0.96, 0.93, 0.190
+19830819, 0.70, -0.36, 1.60, 0.190
+19830826, -1.57, -0.43, 2.19, 0.190
+19830902, 1.73, -0.39, -1.35, 0.190
+19830909, 1.32, 0.41, 0.53, 0.190
+19830916, -0.81, -0.02, 0.75, 0.190
+19830923, 1.89, -0.68, -0.36, 0.190
+19830930, -2.10, 0.45, 0.78, 0.190
+19831007, 2.20, -2.14, -1.08, 0.190
+19831014, -1.12, -0.50, 2.14, 0.190
+19831021, -2.84, -0.20, 2.78, 0.190
+19831028, -1.58, -0.47, 0.53, 0.190
+19831104, -0.56, -0.45, 0.91, 0.175
+19831111, 1.97, -0.89, -1.11, 0.175
+19831118, -0.13, 1.96, -1.06, 0.175
+19831125, 1.08, -0.04, 1.35, 0.175
+19831202, -1.00, 1.25, 0.71, 0.181
+19831209, -0.48, -0.21, 0.76, 0.181
+19831216, -1.80, 0.35, 0.58, 0.181
+19831223, 0.19, -0.39, -0.56, 0.181
+19831230, 0.85, -0.32, 0.22, 0.181
+19840106, 2.65, 0.15, -0.34, 0.189
+19840113, -1.17, 1.35, 2.01, 0.189
+19840120, -0.87, 0.36, 0.85, 0.189
+19840127, -1.91, -0.97, 3.53, 0.189
+19840203, -2.26, -1.01, 2.17, 0.178
+19840210, -3.27, -1.28, 1.08, 0.178
+19840217, -0.68, -0.37, 0.62, 0.178
+19840224, 0.65, -1.13, -0.13, 0.178
+19840302, 1.30, 0.60, 0.97, 0.182
+19840309, -3.04, 1.42, 1.43, 0.182
+19840316, 2.79, -1.00, -2.18, 0.182
+19840323, -1.68, 0.80, 1.20, 0.182
+19840330, 1.25, -1.05, 0.11, 0.182
+19840406, -2.63, 0.04, 1.85, 0.203
+19840413, 0.80, -0.98, 0.14, 0.203
+19840419, 0.28, 0.11, -0.41, 0.203
+19840427, 0.97, -0.47, -0.30, 0.203
+19840504, 0.11, 1.27, -0.43, 0.195
+19840511, -0.46, -0.22, 0.04, 0.195
+19840518, -2.12, -0.08, 0.78, 0.195
+19840525, -2.96, -0.85, 0.59, 0.195
+19840601, 0.95, -0.53, -1.43, 0.188
+19840608, 1.25, 0.48, -1.22, 0.188
+19840615, -3.30, 1.41, 0.41, 0.188
+19840622, 3.01, -2.13, -1.96, 0.188
+19840629, -0.73, 0.39, 0.73, 0.188
+19840706, -0.78, -0.02, 0.81, 0.204
+19840713, -1.11, 0.09, 0.96, 0.204
+19840720, -1.33, -0.54, 1.78, 0.204
+19840727, 0.62, -1.99, -1.99, 0.204
+19840803, 7.19, -1.16, -5.61, 0.207
+19840810, 2.07, 0.03, 0.36, 0.207
+19840817, -0.90, 0.61, 0.94, 0.207
+19840824, 1.71, -0.36, 0.59, 0.207
+19840831, -0.41, 0.74, 0.72, 0.207
+19840907, -1.25, 0.63, 0.93, 0.214
+19840914, 2.24, -1.18, 0.07, 0.214
+19840921, -1.55, 1.37, 2.27, 0.214
+19840928, -0.20, -0.69, 2.02, 0.214
+19841005, -2.18, 0.68, 1.42, 0.248
+19841012, 0.69, -0.78, 0.29, 0.248
+19841019, 2.06, -0.61, -2.44, 0.248
+19841026, -1.79, 0.31, 1.30, 0.248
+19841102, 1.10, -1.12, 0.51, 0.183
+19841109, 0.22, 0.35, 1.03, 0.183
+19841116, -2.09, 0.23, 0.84, 0.183
+19841123, 1.12, -1.51, 0.24, 0.183
+19841130, -1.81, 0.58, 1.47, 0.183
+19841207, -0.99, -0.60, 1.21, 0.160
+19841214, 0.25, -0.10, -0.63, 0.160
+19841221, 1.80, -0.24, -0.77, 0.160
+19841228, 0.29, 0.29, 0.23, 0.160
+19850104, -1.26, 1.72, 0.02, 0.161
+19850111, 2.46, -0.33, -0.90, 0.161
+19850118, 2.26, 1.46, -1.36, 0.161
+19850125, 3.40, -0.29, -2.50, 0.161
+19850201, 0.83, 0.88, -0.04, 0.144
+19850208, 2.42, 0.76, -1.03, 0.144
+19850215, -0.23, 0.69, 0.72, 0.144
+19850222, -1.08, 0.25, 0.31, 0.144
+19850301, 1.63, -1.47, -0.79, 0.154
+19850308, -2.10, 1.19, 1.94, 0.154
+19850315, -1.38, 0.06, 1.34, 0.154
+19850322, 0.81, -1.51, 0.02, 0.154
+19850329, 0.81, -0.67, 1.10, 0.154
+19850404, -0.96, 0.30, 0.93, 0.179
+19850412, 0.76, -0.09, 0.48, 0.179
+19850419, 0.19, 0.07, 0.53, 0.179
+19850426, 0.35, -0.39, 0.59, 0.179
+19850503, -1.31, -0.17, 1.88, 0.165
+19850510, 2.48, -0.46, -1.38, 0.165
+19850517, 1.57, -0.46, -0.01, 0.165
+19850524, 0.36, -0.32, -0.47, 0.165
+19850531, 0.45, -0.51, 0.32, 0.165
+19850607, 0.31, 0.13, -0.47, 0.138
+19850614, -1.34, 0.37, 2.18, 0.138
+19850621, 0.89, -0.58, 0.51, 0.138
+19850628, 1.43, 0.49, -1.86, 0.138
+19850705, 0.45, 0.64, 0.24, 0.156
+19850712, 0.43, 0.49, 0.45, 0.156
+19850719, 0.92, 1.33, -0.96, 0.156
+19850726, -1.73, 0.75, -1.39, 0.156
+19850802, -0.42, 0.17, -0.28, 0.137
+19850809, -1.56, -0.54, 0.83, 0.137
+19850816, -1.07, 0.10, 0.94, 0.137
+19850823, 0.36, -0.19, 0.65, 0.137
+19850830, 0.77, -0.13, 0.23, 0.137
+19850906, -0.42, -0.36, -0.10, 0.151
+19850913, -3.05, -0.28, 0.16, 0.151
+19850920, -0.56, -0.30, 0.41, 0.151
+19850926, -0.83, -0.42, 0.73, 0.151
+19851004, 0.80, -0.57, 1.63, 0.162
+19851011, 0.52, -0.40, -0.17, 0.162
+19851018, 1.52, -0.09, -1.34, 0.162
+19851025, 0.14, -0.19, 0.51, 0.162
+19851101, 1.87, -0.88, 0.06, 0.152
+19851108, 1.54, 0.22, -0.63, 0.152
+19851115, 2.08, -0.22, -0.48, 0.152
+19851122, 1.59, 0.16, -0.71, 0.152
+19851129, 0.34, 0.34, -0.72, 0.152
+19851206, 0.35, 0.50, -0.79, 0.162
+19851213, 3.19, -1.28, -1.70, 0.162
+19851220, 0.11, -0.34, 1.10, 0.162
+19851227, -0.57, 0.73, -0.19, 0.162
+19860103, 0.59, 0.63, 0.65, 0.139
+19860110, -2.05, 0.50, 0.55, 0.139
+19860117, 1.36, 0.82, -0.11, 0.139
+19860124, -0.82, 0.51, -0.22, 0.139
+19860131, 2.26, -1.44, -0.25, 0.139
+19860207, 1.51, -0.15, -1.92, 0.132
+19860214, 2.31, -0.73, 0.27, 0.132
+19860221, 2.02, -0.28, -0.13, 0.132
+19860228, 1.09, 0.46, 1.00, 0.132
+19860307, -0.19, 1.57, 0.04, 0.149
+19860314, 4.03, -2.08, -0.49, 0.149
+19860321, -0.90, 1.70, 0.08, 0.149
+19860327, 1.80, -2.00, 0.11, 0.149
+19860404, -3.50, 2.36, 0.35, 0.130
+19860411, 2.68, -1.17, -1.27, 0.130
+19860418, 2.65, 0.12, -1.39, 0.130
+19860425, -0.27, 0.88, -1.06, 0.130
+19860502, -2.94, 0.69, 0.71, 0.123
+19860509, 1.36, 0.10, 0.67, 0.123
+19860516, -1.85, 0.81, 0.16, 0.123
+19860523, 3.10, -1.86, -0.60, 0.123
+19860530, 2.20, -0.37, -0.80, 0.123
+19860606, -0.70, 0.72, -0.32, 0.131
+19860613, -0.03, -0.19, -0.09, 0.131
+19860620, 0.07, -1.66, 1.09, 0.131
+19860627, 1.17, 0.12, 0.63, 0.131
+19860703, 1.08, 0.10, -0.59, 0.130
+19860711, -3.90, -0.46, 3.20, 0.130
+19860718, -2.47, -0.57, 1.89, 0.130
+19860725, 1.17, -2.06, 0.16, 0.130
+19860801, -2.36, -0.25, 0.76, 0.115
+19860808, 0.48, -1.54, 1.56, 0.115
+19860815, 4.14, -1.20, -0.75, 0.115
+19860822, 0.95, -1.04, 1.53, 0.115
+19860829, 0.82, -0.57, 0.52, 0.115
+19860905, -1.18, 0.75, 0.87, 0.112
+19860912, -7.95, 1.27, 1.48, 0.112
+19860919, 0.46, -0.67, 0.42, 0.112
+19860926, 0.38, 0.79, 0.41, 0.112
+19861003, 0.50, -0.29, 0.11, 0.116
+19861010, 0.54, -0.73, -0.14, 0.116
+19861017, 1.11, -0.55, -0.89, 0.116
+19861024, -0.10, 0.15, -0.29, 0.116
+19861031, 2.08, -0.85, 0.10, 0.116
+19861107, 0.77, -0.27, 0.34, 0.097
+19861114, -0.68, 0.36, 0.58, 0.097
+19861121, -0.05, -1.66, -0.03, 0.097
+19861128, 1.13, -0.39, -0.89, 0.097
+19861205, 0.78, -0.65, -0.86, 0.122
+19861212, -1.68, -0.07, 0.93, 0.122
+19861219, 0.31, -0.74, 0.17, 0.122
+19861226, -0.94, 0.11, 0.26, 0.122
+19870102, -0.06, 1.17, -0.22, 0.104
+19870109, 5.51, 1.04, -1.81, 0.104
+19870116, 2.43, -0.26, -0.56, 0.104
+19870123, 1.06, -1.48, -0.84, 0.104
+19870130, 1.09, -0.67, 0.20, 0.104
+19870206, 2.66, 1.81, -0.99, 0.108
+19870213, 0.03, 1.33, -2.31, 0.108
+19870220, 1.74, -1.09, -0.42, 0.108
+19870227, -0.08, 1.31, -2.02, 0.108
+19870306, 1.81, -0.65, 0.34, 0.117
+19870313, -0.07, 1.10, -0.08, 0.117
+19870320, 2.12, -0.95, -0.04, 0.117
+19870327, -0.65, 0.39, 0.87, 0.117
+19870403, 0.77, -0.77, -0.36, 0.111
+19870410, -2.54, 1.36, -0.33, 0.111
+19870416, -2.08, -0.76, 0.50, 0.111
+19870424, -1.87, 0.30, 0.10, 0.111
+19870501, 1.92, -1.45, 0.51, 0.094
+19870508, 1.63, -0.37, 0.91, 0.094
+19870515, -1.92, 1.32, -0.28, 0.094
+19870522, -2.18, -0.53, -0.05, 0.094
+19870529, 2.77, -1.06, -0.66, 0.094
+19870605, 1.03, -0.51, 0.09, 0.120
+19870612, 2.44, -1.45, -0.29, 0.120
+19870619, 1.39, -0.85, 0.10, 0.120
+19870626, -0.04, -0.29, 0.10, 0.120
+19870702, -0.64, 0.66, 0.88, 0.114
+19870710, 0.68, 0.06, 1.24, 0.114
+19870717, 1.69, -0.02, 0.26, 0.114
+19870724, -1.65, 0.48, -0.22, 0.114
+19870731, 2.68, -1.09, -0.67, 0.114
+19870807, 1.50, -0.01, -0.77, 0.118
+19870814, 3.00, -2.28, 0.79, 0.118
+19870821, 0.48, 0.06, -0.82, 0.118
+19870828, -2.17, 1.71, -0.24, 0.118
+19870904, -2.88, 1.76, 0.13, 0.113
+19870911, 1.17, -1.24, -1.21, 0.113
+19870918, -2.04, 1.03, 0.69, 0.113
+19870925, 1.29, -1.40, 0.34, 0.113
+19871002, 2.31, -0.89, -0.10, 0.149
+19871009, -4.68, 1.45, 0.88, 0.149
+19871016, -8.82, 0.56, 2.16, 0.149
+19871023, -13.86, -6.96, 4.24, 0.149
+19871030, 0.83, -3.99, -2.06, 0.149
+19871106, -0.28, 1.32, 1.50, 0.086
+19871113, -1.69, 0.89, 0.17, 0.086
+19871120, -1.79, -1.23, 0.90, 0.086
+19871127, -0.21, 1.41, -0.15, 0.086
+19871204, -7.06, -0.68, 2.57, 0.098
+19871211, 4.47, -2.24, -2.73, 0.098
+19871218, 6.02, 2.54, -3.49, 0.098
+19871224, 1.31, 0.29, -0.19, 0.098
+19871231, -1.76, 1.03, -0.05, 0.098
+19880108, -0.32, 3.10, 1.65, 0.073
+19880115, 2.60, -2.95, 0.08, 0.073
+19880122, -1.74, 1.10, 2.29, 0.073
+19880129, 3.70, -2.21, 0.88, 0.073
+19880205, -1.42, 2.04, 1.43, 0.114
+19880212, 2.29, 0.05, -1.36, 0.114
+19880219, 1.32, -0.20, -0.39, 0.114
+19880226, 0.71, 1.78, -0.87, 0.114
+19880304, 1.98, 0.75, -0.96, 0.110
+19880311, -0.65, 2.46, 0.20, 0.110
+19880318, 2.02, -0.65, -0.11, 0.110
+19880325, -3.84, 2.41, 0.74, 0.110
+19880331, -0.01, 0.53, 0.45, 0.110
+19880408, 3.33, -2.07, 0.33, 0.115
+19880415, -3.26, 1.34, 0.78, 0.115
+19880422, -0.08, 0.33, 0.62, 0.115
+19880429, 0.67, 1.23, -0.13, 0.115
+19880506, -1.14, 1.13, 0.69, 0.126
+19880513, -0.60, -1.19, 1.20, 0.126
+19880520, -1.47, -0.26, 0.49, 0.126
+19880527, 0.26, -0.28, 0.25, 0.126
+19880603, 4.41, -2.33, -0.41, 0.121
+19880610, 1.84, 0.48, -0.45, 0.121
+19880617, -0.15, 0.30, 0.42, 0.121
+19880624, 1.19, 0.12, 0.08, 0.121
+19880701, -0.32, 1.92, -0.34, 0.127
+19880708, -0.63, 0.56, 0.50, 0.127
+19880715, 0.34, -0.30, 0.18, 0.127
+19880722, -2.84, 1.58, 1.37, 0.127
+19880729, 2.30, -2.57, 0.15, 0.127
+19880805, -0.08, 0.13, 0.57, 0.148
+19880812, -2.99, 0.63, 0.63, 0.148
+19880819, -0.65, -0.06, 0.17, 0.148
+19880826, -0.42, -0.52, 0.59, 0.148
+19880902, 1.50, -1.04, 0.31, 0.154
+19880909, 0.94, 0.27, -1.07, 0.154
+19880916, 1.02, -0.57, 0.12, 0.154
+19880923, -0.21, 0.12, -0.11, 0.154
+19880930, 0.68, -0.13, 0.17, 0.154
+19881007, 1.59, -2.05, 0.14, 0.152
+19881014, -0.92, 0.48, 0.36, 0.152
+19881021, 2.14, -1.72, -0.33, 0.152
+19881028, -1.72, 0.31, 1.41, 0.152
+19881104, -0.59, -0.06, 0.62, 0.141
+19881111, -2.80, 1.14, 0.36, 0.141
+19881118, -0.95, -1.11, 0.30, 0.141
+19881125, 0.06, -0.70, 0.90, 0.141
+19881202, 1.67, -0.16, -1.48, 0.158
+19881209, 1.46, -0.80, 0.24, 0.158
+19881216, -0.40, 0.67, 0.00, 0.158
+19881223, 0.53, -0.28, -0.65, 0.158
+19881230, 0.21, 1.46, -0.55, 0.158
+19890106, 0.94, 0.59, 0.92, 0.138
+19890113, 0.84, -0.67, 0.46, 0.138
+19890120, 0.86, -0.14, 0.20, 0.138
+19890127, 2.15, -1.46, -0.61, 0.138
+19890203, 1.20, 0.82, -1.39, 0.153
+19890210, -1.31, 1.00, 1.19, 0.153
+19890217, 1.46, -0.34, -0.16, 0.153
+19890224, -2.83, 1.21, 0.43, 0.153
+19890303, 1.21, -0.04, 0.25, 0.167
+19890310, 0.51, 0.47, 0.01, 0.167
+19890317, -0.39, -0.40, 0.32, 0.167
+19890323, -1.24, 0.93, 0.25, 0.167
+19890331, 1.76, -0.66, -0.15, 0.167
+19890407, 0.77, 0.00, -0.34, 0.168
+19890414, 1.15, 0.07, -0.57, 0.168
+19890421, 2.08, -1.44, -0.06, 0.168
+19890428, 0.26, 0.75, -0.38, 0.168
+19890505, -0.42, 1.25, -0.49, 0.196
+19890512, 1.57, -1.16, -0.84, 0.196
+19890519, 2.06, -1.05, -0.05, 0.196
+19890526, 0.25, 0.35, 0.27, 0.196
+19890602, 1.17, 0.06, 0.16, 0.177
+19890609, 0.35, -0.10, 0.12, 0.177
+19890616, -1.72, 0.62, 0.93, 0.177
+19890623, 1.46, -1.62, -0.46, 0.177
+19890630, -2.86, 0.45, 1.61, 0.177
+19890707, 1.89, -0.54, -0.48, 0.173
+19890714, 1.75, -0.87, 0.09, 0.173
+19890721, 0.80, -0.24, -1.20, 0.173
+19890728, 1.54, -1.33, -1.14, 0.173
+19890804, 0.61, 0.02, 0.74, 0.184
+19890811, 0.41, 0.58, 0.26, 0.184
+19890818, 0.03, -0.68, -0.14, 0.184
+19890825, 1.08, -0.51, -0.59, 0.184
+19890901, 0.76, -0.10, 0.51, 0.163
+19890908, -1.19, 1.33, 0.37, 0.163
+19890915, -1.29, -0.28, 0.00, 0.163
+19890922, 0.46, -0.58, -0.39, 0.163
+19890929, 0.65, 0.15, -1.29, 0.163
+19891006, 2.47, -1.38, -0.47, 0.169
+19891013, -6.49, 2.34, 0.66, 0.169
+19891020, 2.94, -3.24, -1.83, 0.169
+19891027, -3.60, -0.18, 0.58, 0.169
+19891103, 0.70, -0.65, 0.43, 0.171
+19891110, 0.32, -0.13, -1.13, 0.171
+19891117, 0.56, -0.50, -0.28, 0.171
+19891124, 0.32, -0.70, -0.48, 0.171
+19891201, 1.41, -1.42, 0.23, 0.151
+19891208, -0.52, 0.33, 0.34, 0.151
+19891215, -0.24, -1.65, 0.40, 0.151
+19891222, -0.78, -0.21, 0.18, 0.151
+19891229, 1.62, 0.10, -0.68, 0.151
+19900105, -0.23, 1.27, -0.86, 0.141
+19900112, -3.56, 0.52, 0.64, 0.141
+19900119, -0.47, -0.35, -0.24, 0.141
+19900126, -4.21, -0.28, 0.93, 0.141
+19900202, 1.22, -1.71, -0.11, 0.142
+19900209, 1.06, 0.68, -0.42, 0.142
+19900216, -0.32, 0.05, 0.57, 0.142
+19900223, -2.48, 0.64, 1.30, 0.142
+19900302, 3.16, -1.45, -0.68, 0.161
+19900309, 0.77, 1.03, -1.29, 0.161
+19900316, 0.83, 0.09, -0.89, 0.161
+19900323, -1.41, 0.95, -0.55, 0.161
+19900330, 0.51, -0.43, 0.27, 0.161
+19900406, -0.25, -0.76, -1.13, 0.171
+19900412, 1.05, -0.93, -1.12, 0.171
+19900420, -2.69, 1.00, 0.25, 0.171
+19900427, -1.92, 0.45, 0.00, 0.171
+19900504, 2.48, -1.26, -0.95, 0.169
+19900511, 3.46, -2.26, -0.05, 0.169
+19900518, 0.86, 0.45, -0.98, 0.169
+19900525, 0.26, 1.08, -1.58, 0.169
+19900601, 2.00, -0.89, -0.52, 0.156
+19900608, -1.00, 0.78, 0.95, 0.156
+19900615, 0.86, 0.17, -1.68, 0.156
+19900622, -1.94, 0.55, -0.34, 0.156
+19900629, 0.46, 0.00, -0.99, 0.156
+19900706, -0.05, -0.49, -0.70, 0.169
+19900713, 2.04, -0.81, -1.62, 0.169
+19900720, -1.76, -0.34, 0.49, 0.169
+19900727, -2.48, -0.08, 1.20, 0.169
+19900803, -2.93, -2.60, 1.49, 0.164
+19900810, -2.65, 0.34, -0.46, 0.164
+19900817, -2.59, -0.90, 0.61, 0.164
+19900824, -5.45, -2.39, 2.03, 0.164
+19900831, 3.55, 0.25, -1.59, 0.164
+19900907, 0.14, -0.16, 0.02, 0.149
+19900914, -1.98, 0.21, 0.01, 0.149
+19900921, -2.11, -1.10, 1.00, 0.149
+19900928, -2.27, -2.80, -0.30, 0.149
+19901005, 1.44, -1.66, -0.04, 0.170
+19901012, -4.11, -1.27, 1.68, 0.170
+19901019, 3.44, -2.41, -2.02, 0.170
+19901026, -2.13, 0.95, -0.24, 0.170
+19901102, 1.86, -2.64, 0.53, 0.141
+19901109, 0.87, -0.12, -0.31, 0.141
+19901116, 1.41, 1.04, -0.55, 0.141
+19901123, -0.73, 0.53, -0.64, 0.141
+19901130, 2.24, 0.18, -1.34, 0.141
+19901207, 1.98, 0.98, -0.08, 0.149
+19901214, -0.36, -0.17, -0.70, 0.149
+19901221, 1.22, -1.09, 0.01, 0.149
+19901228, -0.84, 0.27, -0.16, 0.149
+19910104, -2.04, 1.77, 1.77, 0.129
+19910111, -1.93, -0.02, -0.36, 0.129
+19910118, 4.68, -3.29, -1.91, 0.129
+19910125, 1.70, 3.32, -0.81, 0.129
+19910201, 2.70, 3.74, -0.76, 0.119
+19910208, 4.69, -0.46, -0.29, 0.119
+19910215, 2.66, 1.04, 0.02, 0.119
+19910222, -0.74, 1.15, -1.09, 0.119
+19910301, 1.36, 0.70, 0.39, 0.110
+19910308, 1.56, 2.75, -1.31, 0.110
+19910315, -0.72, -1.11, 0.92, 0.110
+19910322, -1.30, 1.53, -0.05, 0.110
+19910328, 2.23, 0.77, -0.62, 0.110
+19910405, 0.52, 1.66, -0.82, 0.133
+19910412, 1.06, -0.07, 0.24, 0.133
+19910419, 0.80, -0.49, 1.16, 0.133
+19910426, -1.53, 0.14, 0.07, 0.133
+19910503, 0.28, -0.58, 0.31, 0.118
+19910510, -1.04, 1.22, -0.25, 0.118
+19910517, -1.23, -1.09, 0.60, 0.118
+19910524, 1.45, -0.21, -0.64, 0.118
+19910531, 3.00, -0.44, 0.19, 0.118
+19910607, -2.21, 1.82, 1.26, 0.104
+19910614, 0.33, -1.28, -0.26, 0.104
+19910621, -1.33, -0.21, 0.36, 0.104
+19910628, -1.79, -0.28, -0.07, 0.104
+19910705, 0.64, -1.03, -0.63, 0.122
+19910712, 1.74, 0.39, -0.73, 0.122
+19910719, 0.99, 0.50, 0.82, 0.122
+19910726, -0.99, -0.33, 0.51, 0.122
+19910802, 1.70, -0.04, -1.42, 0.115
+19910809, 0.17, 0.27, 0.01, 0.115
+19910816, -0.20, 0.55, 0.64, 0.115
+19910823, 1.85, -0.58, -0.49, 0.115
+19910830, 0.48, 0.96, -0.70, 0.115
+19910906, -1.70, 0.58, 0.16, 0.114
+19910913, -1.27, 0.90, -0.57, 0.114
+19910920, 1.30, 0.19, -1.05, 0.114
+19910927, -0.45, -0.19, 0.44, 0.114
+19911004, -1.06, 0.48, 0.01, 0.106
+19911011, -0.28, -0.51, 0.09, 0.106
+19911018, 2.99, 0.51, -0.30, 0.106
+19911025, -2.19, 0.34, 0.25, 0.106
+19911101, 2.07, 0.37, -0.78, 0.098
+19911108, 0.60, 0.15, -0.08, 0.098
+19911115, -2.55, 0.13, 0.20, 0.098
+19911122, -1.74, -0.48, -1.30, 0.098
+19911129, -0.25, -0.42, -0.53, 0.098
+19911206, 1.14, -0.18, -2.55, 0.095
+19911213, 1.09, -1.21, -0.33, 0.095
+19911220, 0.35, -0.85, -1.39, 0.095
+19911227, 5.18, -0.53, 0.90, 0.095
+19920103, 3.12, 1.12, 0.46, 0.085
+19920110, 0.02, 3.86, -1.01, 0.085
+19920117, 0.93, 1.66, 3.56, 0.085
+19920124, -0.74, 0.71, 0.03, 0.085
+19920131, -1.26, 1.59, 1.15, 0.085
+19920207, 0.96, 1.13, 1.21, 0.071
+19920214, 0.31, 0.09, 2.51, 0.071
+19920221, -0.47, -0.49, 2.68, 0.071
+19920228, 0.29, 0.14, -0.19, 0.071
+19920306, -2.06, 0.21, 0.82, 0.084
+19920313, 0.28, -0.56, 0.13, 0.084
+19920320, 1.11, -0.62, 1.97, 0.084
+19920327, -1.91, -0.05, 0.27, 0.084
+19920403, -1.06, -1.16, 0.02, 0.081
+19920410, 0.31, -1.43, 0.60, 0.081
+19920416, 2.35, -2.36, 2.10, 0.081
+19920424, -1.95, -0.60, 2.65, 0.081
+19920501, 0.91, -0.04, -0.66, 0.069
+19920508, 1.01, -0.03, 0.35, 0.069
+19920515, -1.43, 0.13, 1.16, 0.069
+19920522, 0.80, -0.20, 0.14, 0.069
+19920529, 0.39, -0.07, -0.37, 0.069
+19920605, -0.46, 0.46, 1.62, 0.080
+19920612, -1.30, -1.36, 1.34, 0.080
+19920619, -1.85, -1.73, 0.66, 0.080
+19920626, -0.24, -1.00, 0.25, 0.080
+19920702, 2.23, -0.10, -1.07, 0.077
+19920710, 0.62, -0.62, 0.45, 0.077
+19920717, 0.21, 0.80, -0.95, 0.077
+19920724, -0.83, 0.19, 0.47, 0.077
+19920731, 2.95, -0.31, -0.53, 0.077
+19920807, -0.99, 0.75, -0.77, 0.065
+19920814, 0.09, -0.51, 0.16, 0.065
+19920821, -1.20, -0.06, -0.13, 0.065
+19920828, -0.19, -0.41, -0.44, 0.065
+19920904, 0.75, 0.53, -0.97, 0.064
+19920911, 0.67, 0.31, -1.25, 0.064
+19920918, 0.70, -0.29, 0.03, 0.064
+19920925, -1.88, 0.37, 1.66, 0.064
+19921002, -0.94, -0.22, 0.98, 0.057
+19921009, -1.46, 0.86, -0.69, 0.057
+19921016, 1.99, -0.40, -0.90, 0.057
+19921023, 0.95, 1.29, -0.39, 0.057
+19921030, 1.29, 0.27, -0.60, 0.057
+19921106, 0.28, 1.16, -0.25, 0.059
+19921113, 1.47, 1.69, -1.82, 0.059
+19921120, 1.00, 0.20, -0.37, 0.059
+19921127, 0.96, 0.32, 0.42, 0.059
+19921204, 0.64, 1.16, 0.64, 0.070
+19921211, 0.18, -0.61, 0.58, 0.070
+19921218, 1.24, -1.24, 0.29, 0.070
+19921224, -0.11, 0.41, 1.15, 0.070
+19921231, -0.11, 2.08, 0.31, 0.070
+19930108, -1.52, 1.15, 1.35, 0.058
+19930115, 2.01, 0.09, 0.57, 0.058
+19930122, 0.15, 0.95, 2.67, 0.058
+19930129, 0.31, -0.18, 1.31, 0.058
+19930205, 2.16, -1.39, 2.22, 0.055
+19930212, -0.98, 0.08, 1.24, 0.055
+19930219, -2.89, -0.98, 2.83, 0.055
+19930226, 1.92, -1.20, 0.14, 0.055
+19930305, 0.93, 0.75, -0.12, 0.063
+19930312, 1.03, 0.40, -0.35, 0.063
+19930319, -0.32, -0.80, 2.00, 0.063
+19930326, -0.37, -0.11, 0.74, 0.063
+19930402, -1.41, 0.55, 0.02, 0.059
+19930408, -0.25, -1.25, 2.62, 0.059
+19930416, 1.38, -1.36, 2.23, 0.059
+19930423, -2.38, 1.93, -2.38, 0.059
+19930430, 0.58, -0.58, -0.81, 0.059
+19930507, 1.00, 1.68, -2.02, 0.054
+19930514, -0.66, 0.71, -0.20, 0.054
+19930521, 1.53, -0.12, -2.01, 0.054
+19930528, 1.00, -0.33, 0.82, 0.054
+19930604, -0.02, 0.44, 0.91, 0.063
+19930611, -0.93, -0.59, -0.06, 0.063
+19930618, -0.59, 0.35, 1.03, 0.063
+19930625, 0.86, -1.03, 0.56, 0.063
+19930702, 0.26, 1.45, 0.15, 0.060
+19930709, 0.40, -0.35, 1.02, 0.060
+19930716, -0.39, 0.92, 0.94, 0.060
+19930723, -0.09, -0.95, 0.45, 0.060
+19930730, 0.40, 0.14, 0.63, 0.060
+19930806, 0.44, 0.39, -0.73, 0.063
+19930813, 0.32, -0.07, 0.90, 0.063
+19930820, 1.40, 0.09, -1.32, 0.063
+19930827, 0.76, -0.31, 0.89, 0.063
+19930903, 0.61, 1.33, -0.61, 0.064
+19930910, -0.21, -0.90, 0.60, 0.064
+19930917, -0.56, 0.48, 0.65, 0.064
+19930924, 0.19, 0.97, -1.46, 0.064
+19931001, 0.89, 0.97, 0.51, 0.055
+19931008, -0.23, 0.77, -0.26, 0.055
+19931015, 1.98, 0.62, -2.74, 0.055
+19931022, -1.55, -0.05, 1.16, 0.055
+19931029, 0.88, 0.49, -0.10, 0.055
+19931105, -1.97, -0.18, -1.10, 0.062
+19931112, 1.48, 0.45, -0.65, 0.062
+19931119, -1.30, -1.40, 1.19, 0.062
+19931126, 0.18, -0.84, 0.47, 0.062
+19931203, 0.68, 0.89, -0.63, 0.057
+19931210, -0.25, -0.38, 1.12, 0.057
+19931217, 0.24, -0.69, 0.27, 0.057
+19931223, 0.09, -0.62, 0.13, 0.057
+19931231, 0.57, 2.50, -0.66, 0.057
+19940107, 0.41, 0.01, 0.50, 0.063
+19940114, 1.05, -0.31, 0.11, 0.063
+19940121, -0.07, 1.08, 0.16, 0.063
+19940128, 0.88, -0.59, 0.66, 0.063
+19940204, -1.82, 0.60, 0.81, 0.053
+19940211, 0.19, 0.64, -0.49, 0.053
+19940218, -0.29, 1.02, -0.82, 0.053
+19940225, -0.42, -0.21, -0.27, 0.053
+19940304, -0.06, 0.37, -0.02, 0.067
+19940311, 0.30, 0.17, 0.34, 0.067
+19940318, 1.23, 0.88, -0.54, 0.067
+19940325, -2.04, 0.56, 0.82, 0.067
+19940331, -3.90, -2.26, 0.63, 0.067
+19940408, 0.57, 0.92, -0.15, 0.068
+19940415, -0.75, -1.46, 1.92, 0.068
+19940422, -0.09, -1.72, -0.02, 0.068
+19940429, 0.95, 1.46, -0.14, 0.068
+19940506, -0.67, 0.62, -0.60, 0.079
+19940513, -1.31, -0.77, 0.12, 0.079
+19940520, 2.16, -1.66, 0.54, 0.079
+19940527, 0.66, -0.17, 0.12, 0.079
+19940603, 0.70, 0.37, -0.64, 0.078
+19940610, -0.43, -0.21, 1.14, 0.078
+19940617, -0.17, 0.03, 0.83, 0.078
+19940624, -3.79, -0.58, 0.85, 0.078
+19940701, 0.92, 0.24, -0.31, 0.069
+19940708, 0.58, -0.72, 0.07, 0.069
+19940715, 1.21, 0.43, -0.26, 0.069
+19940722, -0.39, -0.46, 0.70, 0.069
+19940729, 0.95, -0.64, -0.14, 0.069
+19940805, -0.21, 0.12, 0.54, 0.092
+19940812, 1.13, 0.11, -1.41, 0.092
+19940819, 0.51, 0.76, -1.08, 0.092
+19940826, 2.06, -0.32, -1.08, 0.092
+19940902, -0.39, 1.12, 0.36, 0.091
+19940909, -0.48, 0.86, -0.33, 0.091
+19940916, 0.73, 0.63, -0.65, 0.091
+19940923, -2.54, 0.54, -0.18, 0.091
+19940930, 0.79, 0.21, -0.85, 0.091
+19941007, -1.75, -0.31, -0.06, 0.096
+19941014, 2.56, -1.20, -0.74, 0.096
+19941021, -0.86, 0.25, -0.33, 0.096
+19941028, 1.61, -1.25, -0.78, 0.096
+19941104, -1.87, 1.53, -0.28, 0.092
+19941111, -0.32, -0.84, -0.60, 0.092
+19941118, -0.33, 0.07, -1.17, 0.092
+19941125, -2.15, -0.70, 1.09, 0.092
+19941202, 0.03, 0.10, 0.12, 0.111
+19941209, -1.89, -1.66, 1.02, 0.111
+19941216, 2.44, -0.72, -0.32, 0.111
+19941223, 0.51, 0.89, -0.28, 0.111
+19941230, 0.16, 1.95, -0.05, 0.111
+19950106, 0.17, -1.21, 1.84, 0.104
+19950113, 1.07, -0.30, 0.13, 0.104
+19950120, -0.22, 0.47, -0.96, 0.104
+19950127, 0.79, -1.22, 0.09, 0.104
+19950203, 1.76, -1.22, 0.14, 0.099
+19950210, 0.83, 1.09, -0.77, 0.099
+19950217, -0.03, -0.37, 0.66, 0.099
+19950224, 0.95, -0.65, 0.87, 0.099
+19950303, -0.33, 0.75, -1.05, 0.115
+19950310, 0.47, -0.84, -0.76, 0.115
+19950317, 0.95, -0.43, -0.56, 0.115
+19950324, 0.90, -0.53, -0.23, 0.115
+19950331, 0.09, 0.53, 1.36, 0.115
+19950407, 0.71, -1.17, 1.41, 0.111
+19950413, 0.73, 0.69, -0.25, 0.111
+19950421, -0.49, -0.38, 1.54, 0.111
+19950428, 1.15, 0.25, -0.50, 0.111
+19950505, 0.68, -1.17, 0.18, 0.134
+19950512, 1.28, -0.11, 0.65, 0.134
+19950519, -1.06, 1.35, 0.26, 0.134
+19950526, 0.68, -0.58, 0.41, 0.134
+19950602, 1.36, -1.24, 0.72, 0.118
+19950609, -0.58, 2.14, -1.42, 0.118
+19950616, 2.16, -0.13, -1.33, 0.118
+19950623, 1.78, -0.75, -0.29, 0.118
+19950630, -0.83, 1.13, 0.20, 0.118
+19950707, 2.21, -0.68, 0.37, 0.113
+19950714, 0.84, 1.46, -1.11, 0.113
+19950721, -1.41, 0.28, 0.02, 0.113
+19950728, 2.14, 0.65, -0.95, 0.113
+19950804, -0.80, 0.50, 1.36, 0.116
+19950811, -0.32, 0.99, -0.40, 0.116
+19950818, 1.16, 0.68, -0.50, 0.116
+19950825, 0.00, 0.00, 0.68, 0.116
+19950901, 0.64, -0.45, 2.00, 0.108
+19950908, 1.91, 0.61, -1.06, 0.108
+19950915, 1.31, -1.32, 0.15, 0.108
+19950922, -0.35, -0.11, -1.71, 0.108
+19950929, 0.15, -1.08, 1.45, 0.108
+19951006, -0.98, -2.20, 1.42, 0.118
+19951013, 0.42, -0.76, 0.63, 0.118
+19951020, 0.34, 0.10, -1.39, 0.118
+19951027, -1.66, -1.21, -0.52, 0.118
+19951103, 2.23, 0.17, -1.07, 0.105
+19951110, 0.25, 0.34, -0.15, 0.105
+19951117, 0.71, -1.03, 0.45, 0.105
+19951124, -0.30, -0.80, 1.57, 0.105
+19951201, 1.46, 0.67, -0.58, 0.122
+19951208, 1.14, -0.79, -0.38, 0.122
+19951215, -0.70, 0.16, 0.59, 0.122
+19951222, -0.34, 0.76, 0.53, 0.122
+19951229, 0.78, 0.29, -0.18, 0.122
+19960105, -0.48, -0.20, 0.58, 0.107
+19960112, -2.32, 0.12, 0.79, 0.107
+19960119, 1.28, -1.64, -0.12, 0.107
+19960126, 1.67, 0.16, -1.02, 0.107
+19960202, 2.27, -0.41, -0.83, 0.098
+19960209, 2.70, -1.78, -0.71, 0.098
+19960216, -0.82, 1.11, 0.61, 0.098
+19960223, 1.61, -0.41, -1.34, 0.098
+19960301, -2.02, 1.61, 1.59, 0.098
+19960308, -1.55, 0.11, -0.27, 0.098
+19960315, 1.42, 0.63, -1.03, 0.098
+19960322, 1.14, 0.00, 0.67, 0.098
+19960329, -0.52, 1.18, 0.91, 0.098
+19960404, 1.40, -0.08, -0.34, 0.114
+19960412, -2.70, 2.02, -0.53, 0.114
+19960419, 1.49, 1.17, -1.41, 0.114
+19960426, 1.79, 1.32, -1.51, 0.114
+19960503, -1.38, 2.01, -0.05, 0.106
+19960510, 1.37, -0.29, -0.22, 0.106
+19960517, 2.62, 0.23, -0.95, 0.106
+19960524, 1.12, 0.42, -0.10, 0.106
+19960531, -1.27, 0.86, 0.07, 0.106
+19960607, 0.17, -1.35, -0.16, 0.100
+19960614, -1.05, 0.16, 0.96, 0.100
+19960621, -0.86, -2.46, 0.58, 0.100
+19960628, 0.58, 0.03, 0.21, 0.100
+19960705, -1.98, 0.47, 0.80, 0.112
+19960712, -2.62, -2.91, 2.93, 0.112
+19960719, -1.07, 0.40, -0.19, 0.112
+19960726, -0.87, -1.92, 0.85, 0.112
+19960802, 3.88, -1.28, -0.90, 0.103
+19960809, -0.06, 0.77, -0.01, 0.103
+19960816, 0.61, -0.33, 0.77, 0.103
+19960823, 0.30, 0.42, 0.19, 0.103
+19960830, -1.54, 2.47, -0.14, 0.103
+19960906, 0.28, 0.00, 0.17, 0.109
+19960913, 3.40, -1.50, -1.43, 0.109
+19960920, 0.86, -0.20, -1.11, 0.109
+19960927, 0.19, 0.79, -0.90, 0.109
+19961004, 1.88, -1.42, 0.77, 0.106
+19961011, -0.33, -0.02, 0.60, 0.106
+19961018, 0.94, -1.31, 0.77, 0.106
+19961025, -1.66, -0.28, 2.12, 0.106
+19961101, 0.04, -1.66, 1.09, 0.102
+19961108, 3.32, -2.04, -0.89, 0.102
+19961115, 0.78, -0.48, 0.49, 0.102
+19961122, 1.12, -1.01, 1.47, 0.102
+19961129, 1.06, 0.01, -0.01, 0.102
+19961206, -1.83, 2.09, -0.02, 0.115
+19961213, -1.44, 1.31, 0.30, 0.115
+19961220, 2.02, -1.85, 0.61, 0.115
+19961227, 0.83, -0.62, -0.12, 0.115
+19970103, -0.69, 1.93, -0.53, 0.112
+19970110, 1.52, 0.04, -0.47, 0.112
+19970117, 1.79, -1.21, 0.19, 0.112
+19970124, -0.57, 0.54, -0.01, 0.112
+19970131, 1.48, -0.90, -0.67, 0.112
+19970207, 0.02, -1.05, 1.31, 0.096
+19970214, 1.99, -2.04, 1.09, 0.096
+19970221, -1.05, 0.24, 1.63, 0.096
+19970228, -1.41, -0.13, 1.21, 0.096
+19970307, 1.64, -0.82, 0.58, 0.107
+19970314, -1.54, 0.14, 0.95, 0.107
+19970321, -1.63, -1.11, 1.58, 0.107
+19970327, -1.31, 0.69, -0.20, 0.107
+19970404, -2.16, 0.16, -0.23, 0.108
+19970411, -2.31, 1.75, 1.10, 0.108
+19970418, 2.88, -2.72, 0.36, 0.108
+19970425, -0.82, -1.14, 0.51, 0.108
+19970502, 6.10, -1.58, -1.81, 0.123
+19970509, 1.57, 0.77, -0.95, 0.123
+19970516, 0.63, 0.47, -0.13, 0.123
+19970523, 2.05, 0.73, -1.12, 0.123
+19970530, 0.42, 1.01, -0.26, 0.123
+19970606, 1.18, 0.53, 0.74, 0.092
+19970613, 3.34, -2.52, 0.62, 0.092
+19970620, 0.70, 0.03, -0.13, 0.092
+19970627, -1.06, 1.58, 0.62, 0.092
+19970703, 2.82, -1.31, -0.48, 0.107
+19970711, 0.38, 1.24, -0.29, 0.107
+19970718, 0.13, 1.34, -0.70, 0.107
+19970725, 2.05, -1.46, 0.06, 0.107
+19970801, 1.00, -0.19, 1.82, 0.103
+19970808, -1.22, 1.96, -0.14, 0.103
+19970815, -2.82, 1.61, 1.41, 0.103
+19970822, 2.04, -0.44, -0.81, 0.103
+19970829, -1.56, 3.62, 0.61, 0.103
+19970905, 2.91, -0.68, -0.11, 0.111
+19970912, -0.09, 2.00, 0.69, 0.111
+19970919, 2.51, -1.12, -0.17, 0.111
+19970926, -0.40, 1.56, -0.45, 0.111
+19971003, 1.96, 0.10, 0.09, 0.105
+19971010, 0.47, 1.22, -0.58, 0.105
+19971017, -2.56, -1.01, 1.54, 0.105
+19971024, -0.26, -0.17, 0.40, 0.105
+19971031, -3.14, -0.19, 0.40, 0.105
+19971107, 1.07, -0.95, -0.15, 0.098
+19971114, -0.41, -1.14, 0.00, 0.098
+19971121, 3.15, -2.17, -0.10, 0.098
+19971128, -0.82, -0.77, 1.12, 0.098
+19971205, 2.76, -1.76, 0.21, 0.119
+19971212, -3.35, -0.80, 2.83, 0.119
+19971219, -0.67, -0.62, 0.43, 0.119
+19971226, -0.93, 0.91, 1.06, 0.119
+19980102, 3.81, -0.13, -1.73, 0.107
+19980109, -4.93, 0.36, 0.30, 0.107
+19980116, 3.37, -0.90, -0.32, 0.107
+19980123, -0.43, 0.28, -0.50, 0.107
+19980130, 2.11, -0.89, -0.40, 0.107
+19980206, 3.32, -0.10, -0.83, 0.098
+19980213, 0.99, 0.83, 0.51, 0.098
+19980220, 1.09, -0.95, 0.06, 0.098
+19980227, 1.46, 0.24, 0.15, 0.098
+19980306, 0.55, -0.47, 1.44, 0.099
+19980313, 1.29, -0.19, -0.04, 0.099
+19980320, 2.44, -1.75, 0.81, 0.099
+19980327, -0.20, 1.26, -0.76, 0.099
+19980403, 2.19, -0.21, -0.94, 0.107
+19980409, -1.07, -0.36, 1.73, 0.107
+19980417, 1.24, 0.02, 0.52, 0.107
+19980424, -1.42, 1.06, -0.58, 0.107
+19980501, 0.94, -0.50, -0.38, 0.101
+19980508, -1.04, -0.01, 0.57, 0.101
+19980515, -0.41, -1.37, 1.35, 0.101
+19980522, -0.50, -1.75, 1.07, 0.101
+19980529, -1.75, -0.22, 1.01, 0.101
+19980605, 1.50, -2.47, 0.52, 0.102
+19980612, -1.57, -0.93, -0.23, 0.102
+19980619, 0.09, -0.46, -0.79, 0.102
+19980626, 2.82, -0.15, -1.35, 0.102
+19980702, 1.25, -0.31, 0.27, 0.100
+19980710, 1.37, -1.09, -1.05, 0.100
+19980717, 1.70, -0.33, -1.84, 0.100
+19980724, -4.17, -0.73, 0.56, 0.100
+19980731, -2.20, -2.28, 0.85, 0.100
+19980807, -2.53, 1.19, 0.59, 0.107
+19980814, -2.55, -0.57, 0.60, 0.107
+19980821, 0.79, -2.98, -0.73, 0.107
+19980828, -6.03, -3.76, 1.12, 0.107
+19980904, -5.21, 0.91, 0.56, 0.114
+19980911, 3.13, -1.83, -1.05, 0.114
+19980918, 1.62, -0.15, 0.67, 0.114
+19980925, 2.10, -1.12, -0.87, 0.114
+19981002, -4.25, -0.61, 1.80, 0.081
+19981009, -3.35, -6.69, 0.63, 0.081
+19981016, 7.61, -0.58, -2.77, 0.081
+19981023, 1.96, 6.49, -1.77, 0.081
+19981030, 2.95, 0.50, -0.32, 0.081
+19981106, 4.21, 2.09, -1.09, 0.077
+19981113, -1.42, -0.92, 0.60, 0.077
+19981120, 3.06, -1.84, -1.59, 0.077
+19981127, 2.52, 0.47, -1.52, 0.077
+19981204, -1.34, 0.14, 0.38, 0.094
+19981211, -1.08, 0.38, -0.88, 0.094
+19981218, 1.62, -1.41, -0.74, 0.094
+19981224, 3.21, -0.62, -2.09, 0.094
+19981231, 1.21, 2.69, -0.40, 0.094
+19990108, 3.42, -0.97, 0.31, 0.088
+19990115, -2.31, 2.02, -0.54, 0.088
+19990122, -1.46, 0.94, -0.33, 0.088
+19990129, 3.95, -1.89, -3.31, 0.088
+19990205, -3.19, -0.45, 0.57, 0.089
+19990212, -1.22, -2.05, 0.02, 0.089
+19990219, 0.33, -2.89, 1.03, 0.089
+19990226, -0.01, -0.36, -0.36, 0.089
+19990305, 2.68, -2.41, -0.31, 0.106
+19990312, 1.35, -1.18, -0.67, 0.106
+19990319, 0.16, -1.39, 0.34, 0.106
+19990326, -1.23, 0.83, -0.44, 0.106
+19990401, 0.99, 0.32, -1.75, 0.093
+19990409, 3.76, -0.83, -2.07, 0.093
+19990416, -1.53, 3.38, 3.73, 0.093
+19990423, 2.84, -0.45, -0.78, 0.093
+19990430, -1.27, 1.71, 1.41, 0.093
+19990507, 0.35, -1.10, 1.99, 0.085
+19990514, -0.13, 2.41, -0.59, 0.085
+19990521, -0.37, 1.94, 0.59, 0.085
+19990528, -2.28, 0.01, 0.71, 0.085
+19990604, 1.44, -0.58, -0.86, 0.099
+19990611, -2.38, 1.92, 0.73, 0.099
+19990618, 3.25, -1.87, -0.93, 0.099
+19990625, -1.82, 2.34, -0.03, 0.099
+19990702, 5.73, -0.12, -2.86, 0.095
+19990709, 0.68, 0.62, -1.07, 0.095
+19990716, 1.13, 1.13, -1.09, 0.095
+19990723, -4.36, 0.02, 2.23, 0.095
+19990730, -2.21, 1.48, 0.08, 0.095
+19990806, -2.87, -1.54, 1.96, 0.097
+19990813, 2.10, -1.27, -0.18, 0.097
+19990820, 0.56, 0.16, -0.83, 0.097
+19990827, 0.94, 0.42, -2.17, 0.097
+19990903, 0.74, 0.60, -1.49, 0.097
+19990910, -0.17, 1.78, -0.18, 0.097
+19990917, -1.44, 0.11, 0.11, 0.097
+19990924, -4.15, 0.80, -0.62, 0.097
+19991001, 0.13, 1.36, -1.82, 0.097
+19991008, 4.06, -3.13, -1.77, 0.097
+19991015, -6.10, 2.60, 1.72, 0.097
+19991022, 3.90, -2.97, -1.99, 0.097
+19991029, 4.69, -3.09, -1.22, 0.097
+19991105, 1.42, 2.17, -1.70, 0.090
+19991112, 1.81, 1.34, -1.81, 0.090
+19991119, 2.26, 2.15, -2.20, 0.090
+19991126, -0.20, 1.29, -1.62, 0.090
+19991203, 1.31, -0.16, -0.63, 0.109
+19991210, -0.14, 3.23, -3.47, 0.109
+19991217, 0.12, 0.10, -0.08, 0.109
+19991223, 2.99, 0.48, -2.03, 0.109
+19991231, 1.23, 3.50, -0.58, 0.109
+20000107, -2.49, -0.85, 1.77, 0.103
+20000114, 2.07, 1.94, -1.21, 0.103
+20000121, 0.02, 6.99, -2.86, 0.103
+20000128, -5.71, 0.00, 2.01, 0.103
+20000204, 4.46, 1.52, -3.04, 0.108
+20000211, -1.45, 6.85, -3.67, 0.108
+20000218, -1.89, 4.92, -0.65, 0.108
+20000225, 0.29, 2.59, -1.52, 0.108
+20000303, 6.46, 3.16, -2.30, 0.117
+20000310, -0.33, 2.01, 0.05, 0.117
+20000317, 1.76, -10.72, 3.64, 0.117
+20000324, 3.12, -4.02, 0.88, 0.117
+20000331, -3.29, -5.17, 4.19, 0.117
+20000407, 0.00, -1.34, 0.85, 0.115
+20000414, -13.74, -9.42, 9.05, 0.115
+20000420, 6.13, 2.31, -2.93, 0.115
+20000428, 2.29, 2.21, 0.76, 0.115
+20000505, -1.35, 1.87, -0.25, 0.126
+20000512, -2.05, -4.23, 3.58, 0.126
+20000519, -1.50, -1.76, 1.37, 0.126
+20000526, -3.05, -2.37, -0.04, 0.126
+20000602, 9.26, 3.90, -6.35, 0.099
+20000609, -0.65, 4.60, -1.06, 0.099
+20000616, -0.17, 0.29, -0.78, 0.099
+20000623, -1.15, 1.66, -0.79, 0.099
+20000630, 1.20, 4.43, -2.62, 0.099
+20000707, 1.59, -1.56, 1.76, 0.120
+20000714, 2.77, 0.09, -0.92, 0.120
+20000721, -2.41, 0.19, 1.45, 0.120
+20000728, -5.40, -2.18, 6.06, 0.120
+20000804, 3.23, -2.67, 1.56, 0.126
+20000811, 0.46, -0.28, 1.89, 0.126
+20000818, 1.42, 0.32, -1.11, 0.126
+20000825, 1.24, 1.28, -2.38, 0.126
+20000901, 1.91, 1.11, -1.41, 0.127
+20000908, -2.25, -0.63, 3.52, 0.127
+20000915, -1.88, 0.26, 1.81, 0.127
+20000922, -1.11, -0.52, -0.63, 0.127
+20000929, -0.71, -0.65, 1.99, 0.127
+20001006, -3.73, -1.58, 3.44, 0.140
+20001013, -2.67, -0.11, 1.00, 0.140
+20001020, 1.94, -0.51, -2.36, 0.140
+20001027, -1.73, -0.64, 3.30, 0.140
+20001103, 4.07, 1.36, -1.88, 0.127
+20001110, -5.48, -1.07, 5.33, 0.127
+20001117, -0.39, -0.02, 2.07, 0.127
+20001124, -2.63, -0.42, 2.10, 0.127
+20001201, -2.72, -2.12, 3.74, 0.126
+20001208, 5.30, -0.84, -1.74, 0.126
+20001215, -4.76, -0.09, 3.29, 0.126
+20001222, -1.14, -1.50, 4.83, 0.126
+20001229, 1.53, 1.90, 1.26, 0.126
+20010105, -2.67, 1.26, 0.54, 0.134
+20010112, 2.59, 3.73, -4.01, 0.134
+20010119, 1.63, 0.97, -2.71, 0.134
+20010126, 0.97, -0.77, 1.73, 0.134
+20010202, -0.71, 0.42, 2.84, 0.094
+20010209, -2.73, 0.94, 3.67, 0.094
+20010216, -0.86, 0.48, 1.70, 0.094
+20010223, -4.57, -0.41, 2.47, 0.094
+20010302, -1.28, -0.90, 3.58, 0.104
+20010309, -0.51, -0.97, 2.84, 0.104
+20010316, -6.91, 0.24, 2.52, 0.104
+20010323, -0.87, 0.89, -1.69, 0.104
+20010330, 1.51, -0.02, 1.95, 0.104
+20010406, -3.24, -1.28, 1.47, 0.098
+20010412, 5.26, -0.02, -3.55, 0.098
+20010420, 5.20, -1.27, -3.31, 0.098
+20010427, 0.68, 2.43, 1.19, 0.098
+20010504, 1.58, 1.42, -1.25, 0.081
+20010511, -1.75, 0.91, 2.20, 0.081
+20010518, 3.72, 0.06, -0.69, 0.081
+20010525, -0.67, 1.72, -0.57, 0.081
+20010601, -1.55, -0.13, 2.47, 0.070
+20010608, 0.51, 1.43, -1.72, 0.070
+20010615, -4.37, 0.48, 2.67, 0.070
+20010622, 0.60, -1.78, 0.43, 0.070
+20010629, 0.86, 5.35, -2.39, 0.070
+20010706, -3.18, -2.66, 2.76, 0.075
+20010713, 1.86, -1.19, 1.94, 0.075
+20010720, -0.65, 0.90, 0.22, 0.075
+20010727, -0.49, -1.06, 0.54, 0.075
+20010803, 0.69, -0.15, 0.40, 0.077
+20010810, -2.30, -0.48, 1.32, 0.077
+20010817, -2.25, 1.73, 1.07, 0.077
+20010824, 1.70, -0.27, -1.38, 0.077
+20010831, -4.00, 1.30, 1.40, 0.077
+20010907, -4.35, -0.35, 1.05, 0.069
+20010910, 0.32, -1.08, -0.49, 0.069
+20010921, -11.95, -2.82, -0.29, 0.069
+20010928, 7.43, -2.31, 1.75, 0.069
+20011005, 2.92, 0.90, -3.58, 0.056
+20011012, 2.18, 1.03, -0.94, 0.056
+20011019, -1.54, 2.22, -1.68, 0.056
+20011026, 2.92, 1.22, -3.04, 0.056
+20011102, -1.68, 0.77, 1.03, 0.044
+20011109, 2.79, -1.35, -0.36, 0.044
+20011116, 1.88, 0.24, 2.05, 0.044
+20011123, 1.02, 0.75, -0.49, 0.044
+20011130, -0.64, 1.33, 0.92, 0.044
+20011207, 2.02, 1.70, 0.12, 0.037
+20011214, -2.87, 2.01, 0.21, 0.037
+20011221, 1.96, -0.04, 0.44, 0.037
+20011228, 1.62, 0.49, -0.47, 0.037
+20020104, 1.05, 0.62, 0.72, 0.035
+20020111, -2.14, 0.74, 1.49, 0.035
+20020118, -1.83, -1.07, 0.97, 0.035
+20020125, 0.58, -0.08, 0.63, 0.035
+20020201, -0.85, 1.58, -0.01, 0.032
+20020208, -2.34, -0.76, 0.89, 0.032
+20020215, 0.66, 0.71, -1.06, 0.032
+20020222, -1.41, -0.14, 1.61, 0.032
+20020301, 3.79, -1.94, 1.16, 0.033
+20020308, 3.15, 1.15, 0.02, 0.033
+20020315, 0.09, 0.38, 0.12, 0.033
+20020322, -1.19, 2.07, 0.51, 0.033
+20020328, -0.04, 0.91, 0.80, 0.033
+20020405, -2.15, 0.20, 1.82, 0.038
+20020412, -0.51, 3.54, 1.50, 0.038
+20020419, 1.26, -0.34, 0.42, 0.038
+20020426, -4.13, 1.20, 0.66, 0.038
+20020503, -0.13, 1.65, 1.27, 0.036
+20020510, -1.79, -2.03, 0.99, 0.036
+20020517, 4.65, -0.54, -2.80, 0.036
+20020524, -2.20, -1.45, 1.74, 0.036
+20020531, -1.47, 0.57, -0.04, 0.036
+20020607, -3.51, -0.36, 1.18, 0.032
+20020614, -2.11, 0.75, -1.41, 0.032
+20020621, -1.77, 1.96, 1.40, 0.032
+20020628, 0.01, 1.90, -0.73, 0.032
+20020705, -0.75, -3.26, -0.50, 0.039
+20020712, -6.47, 1.10, 0.13, 0.039
+20020719, -7.25, 1.32, -0.59, 0.039
+20020726, 0.11, -0.96, -2.64, 0.039
+20020802, 1.22, -2.97, 0.25, 0.035
+20020809, 4.80, -1.99, -0.83, 0.035
+20020816, 2.33, -0.87, 0.01, 0.035
+20020823, 1.22, -0.24, 0.82, 0.035
+20020830, -2.58, -0.64, 2.03, 0.035
+20020906, -2.04, 1.67, 0.74, 0.036
+20020913, -0.47, 0.37, -0.08, 0.036
+20020920, -5.05, -0.66, 1.05, 0.036
+20020927, -1.92, 0.01, 0.05, 0.036
+20021004, -3.48, 0.97, -0.86, 0.034
+20021011, 3.80, -4.08, -3.33, 0.034
+20021018, 5.80, -0.03, -1.95, 0.034
+20021025, 1.51, 0.04, 1.21, 0.034
+20021101, 0.63, 2.57, -1.24, 0.029
+20021108, -0.79, 0.10, 0.11, 0.029
+20021115, 1.77, 0.02, -1.05, 0.029
+20021122, 2.36, 0.88, -0.54, 0.029
+20021129, 0.72, 0.88, 1.06, 0.029
+20021206, -2.51, 0.59, 0.24, 0.028
+20021213, -2.39, 0.01, 1.17, 0.028
+20021220, 0.59, -1.15, 0.20, 0.028
+20021227, -2.00, 1.36, 0.09, 0.028
+20030103, 3.50, -2.19, 0.39, 0.024
+20030110, 2.06, -0.28, -0.43, 0.024
+20030117, -2.63, 0.72, 1.46, 0.024
+20030124, -4.23, 1.58, -0.88, 0.024
+20030131, -0.66, 0.55, -0.84, 0.024
+20030207, -3.12, 0.17, -0.31, 0.022
+20030214, 0.35, -0.28, -1.03, 0.022
+20030221, 1.73, 0.01, -0.33, 0.022
+20030228, -0.78, -0.22, 0.22, 0.022
+20030307, -1.42, -0.29, -0.27, 0.025
+20030314, 0.58, -0.01, -1.48, 0.025
+20030321, 7.21, -1.60, -0.85, 0.025
+20030328, -3.29, 1.92, 0.09, 0.025
+20030404, 1.68, -0.19, 0.24, 0.024
+20030411, -1.14, 0.34, 1.14, 0.024
+20030417, 2.92, 0.21, -0.26, 0.024
+20030425, 0.70, 0.46, 0.31, 0.024
+20030502, 3.70, 1.46, -0.85, 0.022
+20030509, 0.53, 1.23, 0.17, 0.022
+20030516, 1.22, -1.09, 1.11, 0.022
+20030523, -0.81, 0.79, 0.56, 0.022
+20030530, 3.48, 2.51, -1.31, 0.022
+20030606, 2.57, 0.62, -0.91, 0.025
+20030613, 0.07, -0.42, 1.11, 0.025
+20030620, 0.65, 0.00, 0.03, 0.025
+20030627, -1.65, 1.51, -0.02, 0.025
+20030703, 1.11, 1.03, 0.05, 0.017
+20030711, 1.65, 2.27, 0.13, 0.017
+20030718, -0.70, -0.84, -0.45, 0.017
+20030725, 0.56, 0.64, -0.88, 0.017
+20030801, -1.52, 1.55, 0.11, 0.017
+20030808, -0.70, -2.20, -0.11, 0.017
+20030815, 1.74, 2.22, 0.40, 0.017
+20030822, 0.71, 2.15, 1.29, 0.017
+20030829, 1.66, 0.82, 0.48, 0.017
+20030905, 1.42, 1.17, 0.21, 0.021
+20030912, -0.26, 1.07, -0.75, 0.021
+20030919, 1.80, 0.44, 0.44, 0.021
+20030926, -4.13, -2.27, -0.01, 0.021
+20031003, 3.55, 1.66, 0.34, 0.018
+20031010, 0.99, 0.29, 1.42, 0.018
+20031017, 0.12, 0.58, 0.30, 0.018
+20031024, -1.09, -1.21, -0.83, 0.018
+20031031, 2.45, 1.77, 0.64, 0.018
+20031107, 0.68, 2.09, 1.10, 0.018
+20031114, -0.44, -1.15, -0.68, 0.018
+20031121, -1.40, -0.13, 0.47, 0.018
+20031128, 2.54, 1.15, 0.79, 0.018
+20031205, -0.03, -1.12, 0.15, 0.020
+20031212, 1.04, -0.06, 0.75, 0.020
+20031219, 1.12, -1.59, 0.73, 0.020
+20031226, 0.73, 0.66, 0.54, 0.020
+20040102, 1.17, 0.03, 0.57, 0.017
+20040109, 1.46, 1.42, 0.97, 0.017
+20040116, 1.73, 1.16, 0.87, 0.017
+20040123, 0.32, 0.38, 0.83, 0.017
+20040130, -1.19, -1.15, -1.22, 0.017
+20040206, 0.91, -0.63, -0.34, 0.016
+20040213, 0.47, -0.25, 0.26, 0.016
+20040220, -0.27, -0.78, 0.22, 0.016
+20040227, 0.29, 0.31, 0.48, 0.016
+20040305, 1.25, 0.83, 0.29, 0.022
+20040312, -3.07, 0.28, -0.44, 0.022
+20040319, -1.12, -1.20, 0.47, 0.022
+20040326, -0.13, 0.64, -0.21, 0.022
+20040402, 3.40, 2.31, 0.30, 0.020
+20040408, -0.15, -0.04, -0.17, 0.020
+20040416, -0.80, -0.84, -1.30, 0.020
+20040423, 0.75, 0.49, -0.18, 0.020
+20040430, -3.15, -2.54, -0.95, 0.020
+20040507, -0.98, -0.72, -1.26, 0.015
+20040514, -0.49, -0.81, -0.37, 0.015
+20040521, -0.11, 0.28, 0.59, 0.015
+20040528, 2.79, 1.13, 0.72, 0.015
+20040604, 0.11, -0.13, -0.17, 0.021
+20040610, 0.94, -0.78, 0.70, 0.021
+20040618, -0.15, 0.41, 0.09, 0.021
+20040625, 0.39, 2.11, 0.69, 0.021
+20040702, -0.82, 0.16, 1.28, 0.024
+20040709, -1.43, -2.00, 1.33, 0.024
+20040716, -1.09, -0.93, 1.78, 0.024
+20040723, -1.66, -1.51, 0.82, 0.024
+20040730, 1.43, 0.74, -0.70, 0.024
+20040806, -3.77, -2.34, 2.30, 0.028
+20040813, 0.03, -0.60, 0.07, 0.028
+20040820, 3.50, 1.98, -1.39, 0.028
+20040827, 0.83, -0.09, -0.49, 0.028
+20040903, 0.55, 0.11, 0.41, 0.029
+20040910, 1.11, 1.35, -1.00, 0.029
+20040917, 0.53, 0.05, 0.00, 0.029
+20040924, -1.45, 0.26, 0.81, 0.029
+20041001, 1.96, 1.40, -0.15, 0.028
+20041008, -0.90, -0.82, 0.96, 0.028
+20041015, -1.22, 0.15, -0.79, 0.028
+20041022, -0.93, 0.88, -0.92, 0.028
+20041029, 3.06, -0.47, 0.25, 0.028
+20041105, 3.20, 0.30, -0.07, 0.039
+20041112, 1.66, 0.97, 0.04, 0.039
+20041119, -1.03, 0.14, 0.66, 0.039
+20041126, 1.25, 1.27, 1.19, 0.039
+20041203, 0.86, 1.02, -1.28, 0.041
+20041210, -0.42, -1.17, 0.20, 0.041
+20041217, 0.80, 0.89, 0.99, 0.041
+20041223, 1.26, -0.13, 0.00, 0.041
+20041231, 0.29, 0.49, -0.09, 0.041
+20050107, -2.64, -3.17, 0.49, 0.041
+20050114, 0.00, 0.53, 0.61, 0.041
+20050121, -1.33, 0.23, 0.48, 0.041
+20050128, 0.25, 0.23, 0.21, 0.041
+20050204, 2.90, 0.90, 0.44, 0.041
+20050211, 0.08, -0.69, 0.28, 0.041
+20050218, -0.33, -0.34, 0.69, 0.041
+20050225, 0.84, 0.18, 0.24, 0.041
+20050304, 0.84, 0.25, 1.02, 0.053
+20050311, -1.77, -1.01, 0.17, 0.053
+20050318, -0.86, -0.05, 0.99, 0.053
+20050324, -1.41, 0.58, -0.88, 0.053
+20050401, -0.02, -1.00, 0.89, 0.051
+20050408, 0.59, -0.65, -0.19, 0.051
+20050415, -3.41, -1.37, -0.85, 0.051
+20050422, 0.70, 0.37, 0.22, 0.051
+20050429, 0.16, -2.40, -0.03, 0.051
+20050506, 1.53, 1.35, -0.09, 0.060
+20050513, -1.55, -0.49, -1.57, 0.060
+20050520, 3.20, 1.09, 0.03, 0.060
+20050527, 0.95, 0.43, 0.53, 0.060
+20050603, -0.04, 0.57, 0.56, 0.057
+20050610, 0.20, 0.53, 1.05, 0.057
+20050617, 1.64, 0.89, 0.67, 0.057
+20050624, -1.99, -0.43, 0.23, 0.057
+20050701, 0.58, 1.53, 0.47, 0.059
+20050708, 1.63, 1.31, -0.93, 0.059
+20050715, 1.18, -0.61, -0.63, 0.059
+20050722, 0.56, 1.84, 0.46, 0.059
+20050729, 0.16, 0.14, 0.26, 0.059
+20050805, -0.82, -1.51, 0.27, 0.075
+20050812, 0.23, -0.63, 0.37, 0.075
+20050819, -0.96, -0.34, 0.19, 0.075
+20050826, -1.13, 0.51, 0.35, 0.075
+20050902, 1.20, 0.76, 0.27, 0.071
+20050909, 1.84, 0.15, -0.53, 0.071
+20050916, -0.50, -0.44, 0.39, 0.071
+20050923, -1.90, -0.30, 0.54, 0.071
+20050930, 1.29, 0.43, 0.14, 0.071
+20051007, -2.72, -0.35, -0.06, 0.068
+20051014, -1.02, -0.65, -0.64, 0.068
+20051021, -0.43, 0.50, -0.36, 0.068
+20051028, 1.21, -1.46, 1.24, 0.068
+20051104, 2.28, 1.37, -0.08, 0.078
+20051111, 1.11, 0.04, -0.84, 0.078
+20051118, 1.00, -0.43, -0.36, 0.078
+20051125, 1.56, 0.01, -0.24, 0.078
+20051202, -0.12, 1.23, 0.33, 0.079
+20051209, -0.44, 0.23, 0.31, 0.079
+20051216, 0.36, -1.22, -0.60, 0.079
+20051223, 0.10, 0.23, -0.09, 0.079
+20051230, -1.59, -0.28, 0.76, 0.079
+20060106, 2.92, 0.54, -0.23, 0.087
+20060113, 0.29, 1.06, -0.14, 0.087
+20060120, -1.94, 1.33, 0.93, 0.087
+20060127, 1.87, 1.84, 0.34, 0.087
+20060203, -1.35, 0.53, 0.17, 0.084
+20060210, -0.10, -0.98, -0.14, 0.084
+20060217, 1.54, 0.17, 0.14, 0.084
+20060224, 0.23, 0.42, 0.06, 0.084
+20060303, -0.13, 0.53, -0.24, 0.092
+20060310, -0.84, -0.92, 0.29, 0.092
+20060317, 2.02, 0.37, 0.19, 0.092
+20060324, -0.12, 1.32, -0.11, 0.092
+20060331, -0.23, 2.08, 0.09, 0.092
+20060407, -0.13, -1.11, 0.92, 0.089
+20060413, -0.56, -0.11, -0.10, 0.089
+20060421, 1.67, 0.80, 0.82, 0.089
+20060428, -0.24, -0.88, 0.93, 0.089
+20060505, 1.21, 0.92, 0.86, 0.108
+20060512, -2.86, -2.34, 0.98, 0.108
+20060519, -2.06, -0.91, 0.34, 0.108
+20060526, 0.85, -0.25, 0.02, 0.108
+20060602, 0.70, 0.32, 0.54, 0.099
+20060609, -3.20, -1.73, -0.08, 0.099
+20060616, -0.32, -1.16, -0.12, 0.099
+20060623, -0.47, -0.02, 0.41, 0.099
+20060630, 2.23, 1.98, 0.56, 0.099
+20060707, -0.76, -1.53, 0.89, 0.099
+20060714, -2.82, -1.49, 0.88, 0.099
+20060721, -0.10, -1.90, 1.04, 0.099
+20060728, 3.07, 0.65, 0.22, 0.099
+20060804, 0.07, 0.01, -0.30, 0.105
+20060811, -1.30, -1.70, 0.00, 0.105
+20060818, 2.97, 1.87, -1.59, 0.105
+20060825, -0.88, -0.98, 0.35, 0.105
+20060901, 1.55, 1.83, -0.34, 0.102
+20060908, -1.11, -0.74, 0.57, 0.102
+20060915, 1.65, 1.19, -0.69, 0.102
+20060922, -0.66, -0.98, 0.48, 0.102
+20060929, 1.47, -0.51, -0.31, 0.102
+20061006, 1.09, 0.68, -0.33, 0.101
+20061013, 1.40, 1.49, 0.09, 0.101
+20061020, 0.05, -0.20, 0.08, 0.101
+20061027, 0.62, -0.40, 0.28, 0.101
+20061103, -1.05, -0.61, 0.08, 0.106
+20061110, 1.36, 0.95, 0.24, 0.106
+20061117, 1.53, 1.00, -0.63, 0.106
+20061124, 0.01, 0.41, -0.19, 0.106
+20061201, -0.50, -1.13, 0.55, 0.101
+20061208, 1.02, 0.37, 0.41, 0.101
+20061215, 0.95, -1.30, 1.57, 0.101
+20061222, -1.27, -0.21, 0.72, 0.101
+20061229, 0.47, 0.41, 0.29, 0.101
+20070105, -0.66, -0.62, -0.70, 0.111
+20070112, 1.73, 0.90, -0.87, 0.111
+20070119, -0.31, -1.12, 0.62, 0.111
+20070126, -0.57, 0.81, 0.36, 0.111
+20070202, 1.94, 0.60, 0.51, 0.096
+20070209, -0.65, 0.36, 0.25, 0.096
+20070216, 1.22, -0.05, -0.05, 0.096
+20070223, -0.05, 1.46, -0.78, 0.096
+20070302, -4.62, -1.49, 0.84, 0.106
+20070309, 1.00, 0.08, -0.05, 0.106
+20070316, -1.18, 0.48, -0.37, 0.106
+20070323, 3.48, 0.04, -0.22, 0.106
+20070330, -1.08, 0.05, -0.03, 0.106
+20070405, 1.55, -0.03, -0.57, 0.109
+20070413, 0.58, 0.25, -0.05, 0.109
+20070420, 1.82, -1.05, 0.50, 0.109
+20070427, 0.41, -0.30, -1.01, 0.109
+20070504, 0.69, -0.59, 0.37, 0.101
+20070511, -0.09, -0.68, 0.53, 0.101
+20070518, 0.82, -1.58, -0.04, 0.101
+20070525, -0.33, 1.21, -0.57, 0.101
+20070601, 1.56, 1.09, -0.36, 0.099
+20070608, -1.99, -0.08, -0.08, 0.099
+20070615, 1.58, -0.03, -0.32, 0.099
+20070622, -1.98, 0.56, -0.14, 0.099
+20070629, 0.01, -0.04, -0.54, 0.099
+20070706, 1.88, 0.01, -0.68, 0.099
+20070713, 1.25, -0.87, -0.77, 0.099
+20070720, -1.34, -0.44, -1.30, 0.099
+20070727, -5.18, -1.35, -0.62, 0.099
+20070803, -1.90, -0.88, -1.41, 0.104
+20070810, 1.40, 2.05, -1.08, 0.104
+20070817, -0.74, -0.39, 1.59, 0.104
+20070824, 2.33, -0.74, -0.31, 0.104
+20070831, -0.44, -0.03, -1.12, 0.104
+20070907, -1.34, -0.47, -0.28, 0.081
+20070914, 1.84, -1.25, -0.52, 0.081
+20070921, 2.65, 0.36, 0.08, 0.081
+20070928, 0.07, -0.88, -1.09, 0.081
+20071005, 2.28, 1.88, 0.05, 0.080
+20071012, 0.29, -0.94, -0.55, 0.080
+20071019, -3.86, -0.92, -1.07, 0.080
+20071026, 2.17, 0.46, -0.35, 0.080
+20071102, -1.64, -0.82, -1.87, 0.085
+20071109, -3.68, 0.47, 1.25, 0.085
+20071116, 0.19, -0.87, -0.54, 0.085
+20071123, -1.49, -0.24, -0.20, 0.085
+20071130, 2.79, -1.46, -0.51, 0.085
+20071207, 1.73, 0.21, 0.12, 0.068
+20071214, -2.63, -1.16, -0.60, 0.068
+20071221, 1.23, 2.46, -0.51, 0.068
+20071228, -0.49, -1.24, 0.07, 0.068
+20080104, -4.76, -1.53, 0.08, 0.054
+20080111, -1.12, -1.59, -0.55, 0.054
+20080118, -5.18, 1.36, -0.10, 0.054
+20080125, 0.64, 0.89, 2.56, 0.054
+20080201, 5.05, 0.74, 2.48, 0.033
+20080208, -4.30, 0.55, 0.07, 0.033
+20080215, 1.26, -1.25, -0.15, 0.033
+20080222, 0.08, -0.73, 0.05, 0.033
+20080229, -1.53, 0.52, -1.01, 0.033
+20080307, -2.96, -0.58, -0.39, 0.043
+20080314, -0.45, 0.91, -0.55, 0.043
+20080320, 2.70, -0.95, 1.25, 0.043
+20080328, -0.71, 1.51, -0.98, 0.043
+20080404, 4.18, -0.21, -0.03, 0.044
+20080411, -2.65, -0.85, 0.22, 0.044
+20080418, 3.96, 0.20, -0.22, 0.044
+20080425, 0.45, -0.72, -0.88, 0.044
+20080502, 1.16, -0.71, 0.86, 0.045
+20080509, -1.51, 1.11, -0.43, 0.045
+20080516, 2.71, 0.42, -0.48, 0.045
+20080523, -3.22, 1.21, -0.16, 0.045
+20080530, 2.10, 1.10, -0.55, 0.045
+20080606, -2.41, 1.58, -0.57, 0.043
+20080613, -0.17, -0.40, -0.99, 0.043
+20080620, -2.80, 2.02, -0.66, 0.043
+20080627, -3.26, -0.63, -0.71, 0.043
+20080703, -1.95, -3.10, -0.95, 0.038
+20080711, -1.31, 2.53, -2.38, 0.038
+20080718, 1.64, 0.04, 6.25, 0.038
+20080725, -0.03, 2.75, 0.26, 0.038
+20080801, 0.39, -0.34, 2.80, 0.032
+20080808, 2.55, 0.96, 0.57, 0.032
+20080815, 0.63, 2.90, -0.43, 0.032
+20080822, -0.68, -1.42, -1.73, 0.032
+20080829, -0.49, 0.30, 2.24, 0.032
+20080905, -3.16, 0.17, 4.68, 0.038
+20080912, 0.48, -0.70, 0.61, 0.038
+20080919, 0.88, 1.74, 5.37, 0.038
+20080926, -4.02, -2.49, -2.47, 0.038
+20081003, -9.60, -1.77, 0.75, 0.020
+20081010, -18.00, 3.60, -4.22, 0.020
+20081017, 4.61, -3.69, 0.93, 0.020
+20081024, -7.24, -3.22, -1.24, 0.020
+20081031, 10.78, 2.77, 0.43, 0.020
+20081107, -4.01, -1.67, -1.91, 0.007
+20081114, -6.45, -2.52, -2.96, 0.007
+20081121, -8.76, 1.17, -8.73, 0.007
+20081128, 12.61, -0.58, 9.95, 0.007
+20081205, -2.14, -0.43, 2.72, 0.000
+20081212, 0.66, 1.22, -3.83, 0.000
+20081219, 1.34, 1.94, 0.08, 0.000
+20081226, -1.63, 0.17, -0.91, 0.000
+20090102, 6.84, -0.69, 1.32, 0.000
+20090109, -4.11, 1.26, -2.18, 0.000
+20090116, -4.25, 2.69, -5.77, 0.000
+20090123, -2.53, -2.31, -2.60, 0.000
+20090130, -0.58, -0.24, -1.37, 0.000
+20090206, 5.40, 1.00, -1.54, 0.003
+20090213, -4.42, 0.77, -3.34, 0.003
+20090220, -6.87, 0.10, -5.60, 0.003
+20090227, -4.20, -1.57, 2.67, 0.003
+20090306, -7.03, -0.54, -6.90, 0.004
+20090313, 10.69, -1.48, 8.86, 0.004
+20090320, 1.76, 0.45, 2.26, 0.004
+20090327, 6.42, -0.59, 3.95, 0.004
+20090403, 3.49, 2.78, 0.30, 0.003
+20090409, 1.75, -0.03, 3.66, 0.003
+20090417, 1.56, 0.93, 1.95, 0.003
+20090424, -0.44, 1.31, -2.15, 0.003
+20090501, 1.65, 0.34, -1.34, 0.001
+20090508, 5.65, -2.94, 7.57, 0.001
+20090515, -5.09, -0.06, -5.44, 0.001
+20090522, 0.72, 0.06, -0.71, 0.001
+20090529, 3.71, 0.96, -0.53, 0.001
+20090605, 2.60, 3.62, -1.14, 0.002
+20090612, 0.60, -1.34, 0.10, 0.002
+20090619, -2.70, 0.18, -1.02, 0.002
+20090626, -0.06, 1.10, -0.61, 0.002
+20090702, -2.30, -0.03, -0.74, 0.003
+20090710, -2.15, -1.12, -1.40, 0.003
+20090717, 7.04, 0.43, 3.88, 0.003
+20090724, 4.38, 1.25, 1.24, 0.003
+20090731, 0.92, 0.55, 2.44, 0.003
+20090807, 2.47, -0.61, 5.58, 0.003
+20090814, -0.63, -0.70, 0.45, 0.003
+20090821, 2.16, 1.14, 0.64, 0.003
+20090828, 0.19, -0.17, 1.56, 0.003
+20090904, -1.08, 0.00, -1.97, 0.002
+20090911, 2.80, 1.51, 1.70, 0.002
+20090918, 2.59, 1.16, 1.97, 0.002
+20090925, -2.30, -0.55, -1.85, 0.002
+20091002, -1.89, -1.16, -0.77, 0.001
+20091009, 4.72, 1.16, 2.83, 0.001
+20091016, 1.37, -0.57, -0.47, 0.001
+20091023, -0.87, -1.52, -1.37, 0.001
+20091030, -4.48, -2.37, -3.49, 0.001
+20091106, 3.37, 0.07, 0.10, 0.000
+20091113, 2.12, -1.49, 0.81, 0.000
+20091120, -0.19, 0.05, -0.56, 0.000
+20091127, -0.09, -0.71, -1.16, 0.000
+20091204, 1.58, 2.64, 0.55, 0.001
+20091211, 0.12, -0.37, 0.03, 0.001
+20091218, -0.01, 1.87, 0.40, 0.001
+20091224, 2.35, 1.58, 0.08, 0.001
+20091231, -1.01, -0.24, -0.15, 0.001
+20100108, 2.89, 0.26, 3.89, 0.001
+20100115, -0.91, 0.11, -1.51, 0.001
+20100122, -3.57, 0.84, -1.85, 0.001
+20100129, -1.70, -0.75, 0.08, 0.001
+20100205, -0.81, -0.72, -0.19, 0.000
+20100212, 1.41, 2.32, 0.77, 0.000
+20100219, 3.18, 0.02, 1.67, 0.000
+20100226, -0.37, -0.37, 0.74, 0.000
+20100305, 3.46, 2.53, 1.24, 0.002
+20100312, 1.18, 0.36, 0.45, 0.002
+20100319, 0.61, -1.18, -0.72, 0.002
+20100326, 0.66, 0.03, 1.17, 0.002
+20100401, 1.02, -0.33, 0.68, 0.003
+20100409, 1.63, 1.17, 2.22, 0.003
+20100416, 0.10, 2.72, -0.55, 0.003
+20100423, 2.19, 1.75, 1.85, 0.003
+20100430, -2.62, -0.69, -1.48, 0.003
+20100507, -6.78, -2.16, -2.20, 0.003
+20100514, 2.80, 3.74, 0.07, 0.003
+20100521, -4.49, -2.37, -1.07, 0.003
+20100528, 0.62, 1.37, 0.97, 0.003
+20100604, -2.43, -1.42, -2.19, 0.003
+20100611, 2.46, -0.49, -0.14, 0.003
+20100618, 2.41, 0.38, 0.40, 0.003
+20100625, -3.52, 0.19, -0.39, 0.003
+20100702, -5.26, -1.52, -2.06, 0.004
+20100709, 5.39, -0.82, 1.16, 0.004
+20100716, -1.36, -1.22, -1.17, 0.004
+20100723, 3.91, 2.84, -0.14, 0.004
+20100730, -0.13, -0.01, 0.94, 0.004
+20100806, 1.68, -1.60, -0.67, 0.003
+20100813, -4.01, -2.48, -0.60, 0.003
+20100820, -0.42, 1.02, -0.98, 0.003
+20100827, -0.51, 1.09, -0.24, 0.003
+20100903, 3.85, 0.11, 0.77, 0.003
+20100910, 0.31, -1.33, -0.19, 0.003
+20100917, 1.69, 1.07, -1.83, 0.003
+20100924, 2.16, 1.18, -0.87, 0.003
+20101001, 0.11, 1.41, -0.06, 0.003
+20101008, 1.69, 0.57, 0.15, 0.003
+20101015, 1.01, 1.24, -2.12, 0.003
+20101022, 0.46, -0.62, 0.28, 0.003
+20101029, 0.24, -0.03, -1.07, 0.003
+20101105, 3.66, 0.98, 1.52, 0.003
+20101112, -2.01, 0.05, -0.61, 0.003
+20101119, 0.26, 0.77, -0.63, 0.003
+20101126, -0.50, 2.01, -1.55, 0.003
+20101203, 3.00, -0.25, 1.09, 0.003
+20101210, 1.48, 1.02, 1.46, 0.003
+20101217, 0.37, 0.10, -0.86, 0.003
+20101223, 1.05, 0.07, 1.55, 0.003
+20101231, 0.04, -0.60, 0.66, 0.003
+20110107, 1.14, -0.61, 0.43, 0.002
+20110114, 1.76, 0.81, 0.38, 0.002
+20110121, -1.25, -3.16, 0.33, 0.002
+20110128, -0.38, 0.68, -0.18, 0.002
+20110204, 2.77, 0.44, -0.81, 0.003
+20110211, 1.67, 1.05, 0.70, 0.003
+20110218, 1.08, 0.41, 0.58, 0.003
+20110225, -1.73, 0.00, -0.07, 0.003
+20110304, 0.19, 0.30, -0.61, 0.002
+20110311, -1.43, -1.56, 0.96, 0.002
+20110318, -1.81, 0.78, 0.10, 0.002
+20110325, 2.94, 1.38, -1.16, 0.002
+20110401, 1.59, 1.21, -0.38, 0.001
+20110408, -0.30, -0.28, -0.15, 0.001
+20110415, -0.69, -0.17, -1.19, 0.001
+20110421, 1.36, 0.18, -1.20, 0.001
+20110429, 2.01, 0.12, -0.32, 0.001
+20110506, -1.88, -1.89, -0.35, 0.000
+20110513, -0.06, 0.58, -1.46, 0.000
+20110520, -0.37, -0.71, 0.01, 0.000
+20110527, 0.03, 1.01, -0.26, 0.000
+20110603, -2.49, -0.92, -0.05, 0.001
+20110610, -2.38, -0.98, 0.06, 0.001
+20110617, 0.01, 0.01, 0.88, 0.001
+20110624, 0.22, 2.36, -1.12, 0.001
+20110701, 5.58, -0.42, -0.37, -0.001
+20110708, 0.52, 1.13, -1.74, -0.001
+20110715, -2.15, -0.28, -0.26, -0.001
+20110722, 2.06, -0.79, -0.06, -0.001
+20110729, -4.11, -1.27, 0.63, -0.001
+20110805, -7.74, -2.25, -0.03, 0.002
+20110812, -1.59, -1.11, -3.44, 0.002
+20110819, -5.05, -1.62, 1.80, 0.002
+20110826, 5.01, 1.13, -1.25, 0.002
+20110902, -0.21, -0.87, -1.16, 0.000
+20110909, -1.56, 0.41, -0.24, 0.000
+20110916, 5.47, 0.27, -0.31, 0.000
+20110923, -6.77, -1.58, -1.62, 0.000
+20110930, -0.62, -0.90, 2.40, 0.000
+20111007, 2.27, 0.23, -1.61, 0.000
+20111014, 6.28, 2.19, -0.30, 0.000
+20111021, 0.95, -1.75, 2.22, 0.000
+20111028, 4.09, 2.42, 0.39, 0.000
+20111104, -2.28, 0.83, -1.66, 0.000
+20111111, 0.61, -1.04, 0.53, 0.000
+20111118, -3.69, 0.45, -0.10, 0.000
+20111125, -4.86, -2.39, -0.39, 0.000
+20111202, 7.68, 2.22, 0.57, 0.000
+20111209, 0.86, 0.44, 0.11, 0.000
+20111216, -2.88, -0.41, 0.63, 0.000
+20111223, 3.66, -0.53, 1.49, 0.000
+20111230, -0.62, -0.19, -0.44, 0.000
+20120106, 1.70, -0.58, 0.84, 0.000
+20120113, 1.18, 0.87, 0.17, 0.000
+20120120, 2.13, 0.59, -0.19, 0.000
+20120127, 0.33, 1.81, -1.70, 0.000
+20120203, 2.50, 1.65, 0.33, 0.001
+20120210, -0.23, -1.62, -0.36, 0.001
+20120217, 1.60, 0.34, 0.38, 0.001
+20120224, 0.26, -0.58, -1.00, 0.001
+20120302, 0.05, -3.37, 0.44, 0.001
+20120309, 0.32, 1.67, 0.05, 0.001
+20120316, 2.29, -0.77, 1.53, 0.001
+20120323, -0.44, 0.61, -0.30, 0.001
+20120330, 0.74, -0.63, -0.39, 0.001
+20120405, -0.71, -0.64, -0.68, 0.001
+20120413, -2.05, -0.19, -0.16, 0.001
+20120420, 0.56, 0.18, 0.43, 0.001
+20120427, 1.87, 0.66, -0.05, 0.001
+20120504, -2.68, -1.58, 0.10, 0.002
+20120511, -0.99, 0.82, 0.18, 0.002
+20120518, -4.47, -0.48, -0.13, 0.002
+20120525, 1.95, 0.49, -1.04, 0.002
+20120601, -3.15, -0.53, 0.50, 0.001
+20120608, 3.73, 0.15, -0.14, 0.001
+20120615, 1.07, -1.06, 0.68, 0.001
+20120622, -0.35, 1.16, -0.20, 0.001
+20120629, 2.10, 0.89, 0.02, 0.001
+20120706, -0.26, 1.56, -0.48, 0.001
+20120713, -0.05, -1.18, 0.58, 0.001
+20120720, 0.26, -1.33, -1.69, 0.001
+20120727, 1.45, -1.26, 0.88, 0.001
+20120803, 0.17, -1.23, 0.94, 0.001
+20120810, 1.37, 0.70, 0.82, 0.001
+20120817, 1.13, 1.20, -0.18, 0.001
+20120824, -0.55, -1.07, 0.24, 0.001
+20120831, -0.18, 0.43, -0.08, 0.001
+20120907, 2.55, 0.82, 1.29, 0.002
+20120914, 2.09, 0.61, 1.86, 0.002
+20120921, -0.48, -0.27, -1.17, 0.002
+20120928, -1.41, -0.66, -0.40, 0.002
+20121005, 1.46, -1.13, 1.50, 0.002
+20121012, -2.21, -0.13, 0.59, 0.002
+20121019, 0.26, -1.24, 1.79, 0.002
+20121026, -1.37, 0.82, -0.38, 0.002
+20121102, 0.27, 0.11, 0.84, 0.002
+20121109, -2.33, 0.09, -0.89, 0.002
+20121116, -1.46, -1.07, -0.28, 0.002
+20121123, 3.72, 0.42, 0.15, 0.002
+20121130, 0.83, 1.56, -0.42, 0.002
+20121207, 0.13, -0.62, 1.33, 0.003
+20121214, -0.14, 0.56, 0.83, 0.003
+20121221, 1.40, 1.06, 1.30, 0.003
+20121228, -1.88, 0.09, 0.16, 0.003
+20130104, 4.80, 0.85, 0.80, 0.000
+20130111, 0.44, -0.33, -0.79, 0.000
+20130118, 0.98, 0.48, -0.06, 0.000
+20130125, 1.27, 0.08, 0.10, 0.000
+20130201, 0.73, -0.21, 1.04, 0.001
+20130208, 0.45, 0.01, -0.04, 0.001
+20130215, 0.23, 0.65, 1.10, 0.001
+20130222, -0.36, -0.50, -0.58, 0.001
+20130301, 0.20, -0.55, -1.04, 0.001
+20130308, 2.47, 0.51, 0.69, 0.001
+20130315, 0.67, 0.29, 1.01, 0.001
+20130322, -0.21, 0.05, -0.78, 0.001
+20130328, 0.85, -0.19, -0.81, 0.001
+20130405, -1.39, -1.99, 0.10, 0.001
+20130412, 2.38, 0.04, -0.25, 0.001
+20130419, -2.24, -1.40, -0.61, 0.001
+20130426, 1.92, 0.53, 1.51, 0.001
+20130503, 2.05, 0.29, -0.11, 0.000
+20130510, 1.44, 0.68, 0.62, 0.000
+20130517, 2.14, -0.12, 0.63, 0.000
+20130524, -1.07, 0.16, 0.19, 0.000
+20130531, -0.76, 1.09, 1.05, 0.000
+20130607, 0.73, -0.40, -0.21, 0.000
+20130614, -0.93, 0.51, -0.58, 0.000
+20130621, -2.08, 0.59, 0.35, 0.000
+20130628, 1.11, 0.48, 0.26, 0.000
+20130705, 1.84, 1.41, 0.19, 0.000
+20130712, 3.02, 0.09, -0.55, 0.000
+20130719, 0.72, 0.41, 1.85, 0.000
+20130726, 0.12, -0.16, -0.24, 0.000
+20130802, 1.44, -0.13, -1.01, 0.000
+20130809, -0.98, -0.03, -0.43, 0.000
+20130816, -2.04, 0.10, 0.40, 0.000
+20130823, 0.61, 0.91, -1.18, 0.000
+20130830, -1.87, -0.51, -1.33, 0.000
+20130906, 1.49, 0.26, 0.31, 0.000
+20130913, 2.16, 0.27, -0.35, 0.000
+20130920, 1.36, 0.56, -0.62, 0.000
+20130927, -0.77, 1.20, -0.56, 0.000
+20131004, 0.17, 0.33, 0.14, 0.001
+20131011, 0.55, -0.26, 1.38, 0.001
+20131018, 2.51, 0.22, 0.02, 0.001
+20131025, 0.72, -0.17, -0.36, 0.001
+20131101, -0.12, -1.73, 0.18, 0.001
+20131108, 0.47, 0.09, 0.72, 0.001
+20131115, 1.71, -0.02, -0.94, 0.001
+20131122, 0.36, 0.19, 0.82, 0.001
+20131129, 0.35, 1.65, -0.56, 0.001
+20131206, -0.07, -0.85, -0.13, 0.001
+20131213, -1.46, -0.73, 0.49, 0.001
+20131220, 2.56, 1.06, -0.41, 0.001
+20131227, 1.35, 0.22, -0.02, 0.001
+20140103, -0.42, -0.06, -0.08, 0.001
+20140110, 0.67, 0.54, -1.43, 0.001
+20140117, -0.12, 0.64, -0.70, 0.001
+20140124, -2.60, 0.47, -0.09, 0.001
+20140131, -0.44, -0.85, -0.11, 0.001
+20140207, 0.56, -2.19, -0.03, 0.001
+20140214, 2.53, 0.54, -0.02, 0.001
+20140221, 0.14, 1.56, -0.84, 0.001
+20140228, 1.37, 0.44, 0.43, 0.001
+20140307, 1.17, 0.48, 1.62, 0.001
+20140314, -1.94, 0.20, -0.08, 0.001
+20140321, 1.28, -0.55, 2.08, 0.001
+20140328, -1.01, -2.93, 1.61, 0.001
+20140404, 0.33, -0.31, 1.10, 0.000
+20140411, -2.87, -0.79, -0.01, 0.000
+20140417, 2.68, -0.53, 0.17, 0.000
+20140425, -0.34, -1.10, 0.52, 0.000
+20140502, 0.99, -0.54, -0.62, 0.000
+20140509, -0.47, -1.95, 0.80, 0.000
+20140516, 0.00, -0.20, -1.21, 0.000
+20140523, 1.39, 0.81, -0.22, 0.000
+20140530, 1.18, -0.51, 0.25, 0.000
+20140606, 1.60, 1.04, 0.33, 0.001
+20140613, -0.52, 0.73, -0.66, 0.001
+20140620, 1.51, 0.77, -0.33, 0.001
+20140627, -0.06, 0.18, -0.24, 0.001
+20140703, 1.38, 0.50, -0.39, 0.000
+20140711, -1.35, -3.05, 0.60, 0.000
+20140718, 0.37, -1.44, 0.89, 0.000
+20140725, -0.01, -0.49, -0.82, 0.000
+20140801, -2.63, 0.26, -0.25, 0.000
+20140808, 0.51, 0.94, -0.56, 0.000
+20140815, 1.31, -0.47, -0.38, 0.000
+20140822, 1.79, 0.00, 0.38, 0.000
+20140829, 0.89, 0.12, 0.01, 0.000
+20140905, 0.18, -0.51, -0.04, 0.000
+20140912, -0.86, 0.54, -0.52, 0.000
+20140919, 0.90, -2.33, 0.41, 0.000
+20140926, -1.58, -0.77, -0.89, 0.000
+20141003, -0.79, -0.40, -0.70, 0.000
+20141010, -3.59, -1.42, 0.61, 0.000
+20141017, -0.51, 3.56, -0.89, 0.000
+20141024, 4.06, -0.76, -0.66, 0.000
+20141031, 2.87, 2.28, -0.14, 0.000
+20141107, 0.69, -0.74, 0.66, 0.000
+20141114, 0.54, -0.07, -1.27, 0.000
+20141121, 1.05, -1.41, -0.24, 0.000
+20141128, 0.26, 0.12, -2.02, 0.000
+20141205, 0.29, 0.13, 1.31, 0.000
+20141212, -3.44, 0.87, -0.87, 0.000
+20141219, 3.47, 0.16, 0.57, 0.000
+20141226, 1.03, 0.64, 0.55, 0.000
+20150102, -1.38, 0.10, 0.56, 0.000
+20150109, -0.78, -0.38, -2.30, 0.000
+20150116, -1.32, 0.42, -0.32, 0.000
+20150123, 1.64, -0.68, -0.41, 0.000
+20150130, -2.50, 0.60, -0.55, 0.000
+20150206, 3.32, 0.20, 1.52, 0.000
+20150213, 2.10, -0.47, -1.33, 0.000
+20150220, 0.80, 0.12, -1.42, 0.000
+20150227, -0.19, 0.64, -0.49, 0.000
+20150306, -1.36, 0.52, -0.52, 0.000
+20150313, -0.61, 1.65, 0.49, 0.000
+20150320, 2.59, 0.00, -1.03, 0.000
+20150327, -2.16, 0.40, 0.23, 0.000
+20150402, 0.45, 0.71, 1.08, 0.001
+20150410, 1.67, -0.70, -1.37, 0.001
+20150417, -1.02, 0.02, 0.74, 0.001
+20150424, 1.77, -0.26, -1.38, 0.001
+20150501, -0.77, -2.57, 2.42, 0.000
+20150508, 0.41, -0.01, 0.12, 0.000
+20150515, 0.41, 0.32, -0.47, 0.000
+20150522, 0.32, 0.41, -0.13, 0.000
+20150529, -0.79, 0.42, -0.17, 0.000
+20150605, -0.29, 1.85, -0.09, 0.000
+20150612, 0.11, 0.11, 0.60, 0.000
+20150619, 0.83, 0.67, -1.38, 0.000
+20150626, -0.35, 0.35, 0.62, 0.000
+20150702, -1.33, -1.57, -0.70, 0.000
+20150710, -0.02, 0.12, -1.31, 0.000
+20150717, 2.27, -1.47, -1.70, 0.000
+20150724, -2.33, -1.44, -0.40, 0.000
+20150731, 1.19, 0.01, -0.75, 0.000
+20150807, -1.36, -1.21, 0.88, 0.001
+20150814, 0.69, -0.34, 1.25, 0.001
+20150821, -5.69, 1.21, 0.00, 0.001
+20150828, 1.07, 0.00, -0.81, 0.001
+20150904, -3.08, 1.48, 0.14, 0.000
+20150911, 2.09, -0.47, -1.53, 0.000
+20150918, -0.15, 1.19, -1.76, 0.000
+20150925, -1.77, -2.69, 3.64, 0.000
+20151002, 0.73, -1.58, 0.62, 0.000
+20151009, 3.44, 1.53, 2.04, 0.000
+20151016, 0.62, -1.23, 0.08, 0.000
+20151023, 1.70, -1.53, 0.23, 0.000
+20151030, 0.17, -0.42, -1.45, 0.000
+20151106, 1.38, 2.64, 0.56, 0.001
+20151113, -3.72, -0.88, -0.01, 0.001
+20151120, 3.14, -0.53, -0.91, 0.001
+20151127, 0.38, 2.41, -0.92, 0.001
+20151204, -0.19, -1.53, 0.13, 0.003
+20151211, -3.93, -0.86, -1.68, 0.003
+20151218, -0.35, 0.14, -0.79, 0.003
+20151224, 2.83, 0.23, 0.99, 0.003
+20151231, -0.90, -0.78, -0.58, 0.003
+20160108, -6.22, -1.75, 0.53, 0.002
+20160115, -2.55, -1.34, -0.20, 0.002
+20160122, 1.38, 0.20, -1.59, 0.002
+20160129, 1.71, -0.63, 3.72, 0.002
+20160205, -3.36, -1.38, 1.19, 0.005
+20160212, -0.82, -0.51, -0.39, 0.005
+20160219, 3.09, 0.96, -1.63, 0.005
+20160226, 1.84, 1.26, -0.11, 0.005
+20160304, 3.08, 1.21, 2.43, 0.005
+20160311, 1.00, -0.50, 1.30, 0.005
+20160318, 1.41, -0.29, 0.21, 0.005
+20160324, -0.80, -0.87, -0.96, 0.005
+20160401, 2.06, 1.64, -2.00, 0.002
+20160408, -1.17, -0.12, -1.58, 0.002
+20160415, 1.94, 0.74, 2.09, 0.002
+20160422, 0.74, 0.62, 1.76, 0.002
+20160429, -1.19, -0.10, 1.71, 0.002
+20160506, -0.63, -1.22, -0.53, 0.003
+20160513, -0.52, -0.58, -0.77, 0.003
+20160520, 0.55, 0.18, 0.62, 0.003
+20160527, 2.43, 1.01, -0.87, 0.003
+20160603, 0.16, 1.31, -1.32, 0.005
+20160610, -0.25, 0.56, -0.08, 0.005
+20160617, -1.20, -0.30, -0.14, 0.005
+20160624, -1.60, 0.32, -0.20, 0.005
+20160701, 3.14, -0.62, -0.64, 0.005
+20160708, 1.38, 0.81, -1.39, 0.005
+20160715, 1.60, 0.58, 2.30, 0.005
+20160722, 0.60, -0.01, -1.08, 0.005
+20160729, 0.07, 0.76, -0.31, 0.005
+20160805, 0.56, 0.46, 0.67, 0.005
+20160812, 0.18, -0.32, -0.09, 0.005
+20160819, 0.15, 0.39, 1.50, 0.005
+20160826, -0.53, 0.64, 0.36, 0.005
+20160902, 0.70, 0.15, 0.65, 0.005
+20160909, -2.30, 0.10, 0.31, 0.005
+20160916, 0.56, 0.52, -2.65, 0.005
+20160923, 1.26, 1.13, -0.23, 0.005
+20160930, 0.21, -0.18, 1.22, 0.005
+20161007, -0.57, -0.52, 1.22, 0.004
+20161014, -1.12, -1.21, 0.66, 0.004
+20161021, 0.42, -0.30, 0.68, 0.004
+20161028, -0.77, -2.37, 1.45, 0.004
+20161104, -1.89, -0.55, 1.16, 0.004
+20161111, 4.67, 6.06, 2.51, 0.004
+20161118, 1.29, 0.99, 1.39, 0.004
+20161125, 1.64, 0.80, 0.64, 0.004
+20161202, -1.13, -2.11, 3.92, 0.006
+20161209, 3.35, 2.02, 1.84, 0.006
+20161216, -0.29, -1.37, -0.82, 0.006
+20161223, 0.32, 0.19, 0.71, 0.006
+20161230, -1.16, -0.10, 0.12, 0.006
+20170106, 1.69, -0.62, -1.20, 0.009
+20170113, 0.09, 0.45, -1.05, 0.009
+20170120, -0.31, -1.13, -0.18, 0.009
+20170127, 1.16, 0.21, 0.56, 0.009
+20170203, 0.15, 0.40, -0.64, 0.009
+20170210, 0.88, 0.10, -1.23, 0.009
+20170217, 1.52, -0.56, -0.39, 0.009
+20170224, 0.48, -1.07, -0.45, 0.009
+20170303, 0.65, -0.94, -0.09, 0.008
+20170310, -0.55, -1.13, -1.62, 0.008
+20170317, 0.48, 1.85, -0.28, 0.008
+20170324, -1.65, -0.88, -1.83, 0.008
+20170331, 1.05, 1.64, 0.83, 0.008
+20170407, -0.44, -1.35, 0.15, 0.014
+20170413, -1.20, -0.22, -1.04, 0.014
+20170421, 1.11, 1.82, -0.17, 0.014
+20170428, 1.64, 0.32, -0.96, 0.014
+20170505, 0.53, -0.76, -0.47, 0.016
+20170512, -0.32, -0.25, -1.25, 0.016
+20170519, -0.40, -0.79, -0.46, 0.016
+20170526, 1.46, -0.29, -0.86, 0.016
+20170602, 1.09, 1.05, -1.66, 0.015
+20170609, -0.24, 0.59, 3.35, 0.015
+20170616, -0.08, -1.07, -0.71, 0.015
+20170623, 0.31, 1.08, -3.85, 0.015
+20170630, -0.49, 0.05, 3.43, 0.015
+20170707, 0.08, -0.43, 0.32, 0.018
+20170714, 1.36, -0.09, -1.34, 0.018
+20170721, 0.55, 0.09, -0.48, 0.018
+20170728, -0.03, -0.58, 0.79, 0.018
+20170804, 0.09, -1.80, 0.86, 0.021
+20170811, -1.52, -0.97, -1.07, 0.021
+20170818, -0.67, -0.72, -0.35, 0.021
+20170825, 0.82, 0.56, 0.70, 0.021
+20170901, 1.61, 1.45, -1.44, 0.024
+20170908, -0.77, 0.27, -1.37, 0.024
+20170915, 1.70, 0.67, 1.83, 0.024
+20170922, 0.39, 0.86, 1.56, 0.024
+20170929, 0.91, 2.17, 0.53, 0.024
+20171006, 1.28, 0.14, -0.20, 0.021
+20171013, 0.03, -0.63, -0.26, 0.021
+20171020, 0.91, -0.78, 0.80, 0.021
+20171027, 0.25, -0.54, -0.14, 0.021
+20171103, 0.19, -1.21, -0.37, 0.021
+20171110, -0.41, -1.05, -0.94, 0.021
+20171117, 0.21, 1.09, 0.04, 0.021
+20171124, 1.04, 1.13, -0.87, 0.021
+20171201, 1.62, -0.98, 2.27, 0.022
+20171208, 0.30, -1.40, 0.13, 0.022
+20171215, 0.81, -0.24, -0.71, 0.022
+20171222, 0.54, 0.75, 0.46, 0.022
+20171229, -0.37, 0.00, -0.17, 0.022
+20180105, 2.54, -0.59, -0.53, 0.028
+20180112, 1.81, 0.41, 1.08, 0.028
+20180119, 0.84, -0.62, -0.51, 0.028
+20180126, 2.05, -1.43, -1.12, 0.028
+20180202, -3.81, -0.51, -0.09, 0.028
+20180209, -5.09, 0.99, 0.10, 0.028
+20180216, 4.51, 0.12, -0.61, 0.028
+20180223, 0.48, 0.15, -0.63, 0.028
+20180302, -1.74, 1.03, -0.83, 0.029
+20180309, 3.60, 0.39, -0.26, 0.029
+20180316, -1.21, 0.81, -0.06, 0.029
+20180323, -5.82, 1.60, -0.07, 0.029
+20180329, 1.80, -1.14, 0.90, 0.029
+20180406, -1.38, 0.56, 0.72, 0.036
+20180413, 2.05, 0.98, -1.00, 0.036
+20180420, 0.73, 0.11, 0.39, 0.036
+20180427, -0.29, -0.57, 0.49, 0.036
+20180504, -0.16, 1.09, -1.31, 0.035
+20180511, 2.43, 0.44, -0.31, 0.035
+20180518, -0.22, 2.49, 0.01, 0.035
+20180525, 0.22, -0.33, -0.41, 0.035
+20180601, 0.61, 1.32, -1.29, 0.034
+20180608, 1.68, 0.43, -0.15, 0.034
+20180615, 0.21, 0.93, -2.26, 0.034
+20180622, -0.85, 1.42, 0.12, 0.034
+20180629, -1.60, -1.34, 0.06, 0.034
+20180706, 1.65, 1.72, -1.02, 0.040
+20180713, 1.39, -1.63, -1.20, 0.040
+20180720, 0.14, 0.05, 0.47, 0.040
+20180727, 0.17, -2.76, 1.46, 0.040
+20180803, 0.65, -0.11, 0.25, 0.041
+20180810, 0.05, 0.91, -0.81, 0.041
+20180817, 0.46, -0.44, 0.12, 0.041
+20180824, 1.06, 1.33, -0.99, 0.041
+20180831, 0.96, -0.05, -1.88, 0.041
+20180907, -1.14, -0.83, 0.29, 0.038
+20180914, 1.20, -0.49, -0.71, 0.038
+20180921, 0.54, -1.16, 1.77, 0.038
+20180928, -0.52, 0.07, -2.65, 0.038
+20181005, -1.42, -3.17, 3.38, 0.047
+20181012, -4.26, -0.76, -0.04, 0.047
+20181019, -0.15, -0.97, 0.56, 0.047
+20181026, -4.06, 0.37, -1.15, 0.047
+20181102, 2.87, 1.54, 0.64, 0.044
+20181109, 1.75, -2.60, 1.21, 0.044
+20181116, -1.65, 0.20, 0.31, 0.044
+20181123, -3.74, 1.17, 0.84, 0.044
+20181130, 4.78, -1.83, -1.76, 0.044
+20181207, -4.83, -0.75, -0.46, 0.048
+20181214, -1.45, -1.35, -1.58, 0.048
+20181221, -7.32, -1.64, 2.11, 0.048
+20181228, 3.14, 1.11, -1.38, 0.048
+20190104, 2.14, 1.34, 1.27, 0.051
+20190111, 2.95, 2.09, -1.43, 0.051
+20190118, 2.80, -0.73, 0.78, 0.051
+20190125, -0.28, 0.10, -0.27, 0.051
+20190201, 1.57, -0.28, -0.94, 0.046
+20190208, 0.09, 0.29, -1.38, 0.046
+20190215, 2.73, 1.57, -0.04, 0.046
+20190222, 0.64, 0.94, -0.70, 0.046
+20190301, 0.50, -0.32, -1.40, 0.048
+20190308, -2.55, -1.99, -0.18, 0.048
+20190315, 2.83, -0.90, -0.58, 0.048
+20190322, -1.11, -1.57, -2.50, 0.048
+20190329, 1.27, 1.06, -0.29, 0.048
+20190405, 2.14, 0.50, 1.14, 0.052
+20190412, 0.55, -0.83, 1.11, 0.052
+20190418, -0.18, -1.02, 0.37, 0.052
+20190426, 1.24, 0.31, -1.59, 0.052
+20190503, 0.27, 0.76, 0.04, 0.051
+20190510, -2.22, -0.10, -0.01, 0.051
+20190517, -1.02, -1.53, -0.46, 0.051
+20190524, -1.30, -0.52, -0.12, 0.051
+20190531, -2.71, -0.44, -1.11, 0.051
+20190607, 4.27, -1.25, -0.79, 0.045
+20190614, 0.45, 0.00, -0.08, 0.045
+20190621, 2.21, 0.12, -1.82, 0.045
+20190628, -0.11, 1.41, 1.63, 0.045
+20190705, 1.56, -1.26, -0.37, 0.048
+20190712, 0.72, -1.36, -0.42, 0.048
+20190719, -1.22, -0.36, -0.64, 0.048
+20190726, 1.75, -0.20, 0.72, 0.048
+20190802, -3.45, 0.31, -0.98, 0.041
+20190809, -0.61, -0.67, -2.10, 0.041
+20190816, -1.17, 0.24, -1.28, 0.041
+20190823, -1.57, -0.77, -0.27, 0.041
+20190830, 2.70, -0.53, 0.34, 0.041
+20190906, 1.61, -1.16, 1.26, 0.044
+20190913, 1.33, 2.86, 5.05, 0.044
+20190920, -0.64, -0.55, -1.00, 0.044
+20190927, -1.36, -1.86, 2.00, 0.044
+20191004, -0.40, -0.46, -2.46, 0.038
+20191011, 0.69, -0.43, 0.22, 0.038
+20191018, 0.47, 0.76, 0.55, 0.038
+20191025, 1.38, 0.34, 0.70, 0.038
+20191101, 1.47, 0.38, -0.60, 0.031
+20191108, 1.01, -0.41, 2.31, 0.031
+20191115, 0.78, -0.68, -1.76, 0.031
+20191122, -0.19, -0.06, -1.56, 0.031
+20191129, 1.13, 1.53, -1.59, 0.031
+20191206, 0.10, 0.47, 0.85, 0.035
+20191213, 0.74, 0.16, 0.77, 0.035
+20191220, 1.71, 0.36, -0.02, 0.035
+20191227, 0.49, -0.49, -0.40, 0.035
+20200103, -0.12, -0.29, 0.33, 0.032
+20200110, 0.94, -0.92, -2.20, 0.032
+20200117, 2.00, 0.64, -1.34, 0.032
+20200124, -1.14, -1.23, -1.12, 0.032
+20200131, -2.05, -1.13, -1.53, 0.032
+20200207, 3.13, -0.37, -0.77, 0.030
+20200214, 1.73, -0.02, -0.93, 0.030
+20200221, -1.06, 0.74, -0.04, 0.030
+20200228, -11.50, 0.63, -2.40, 0.030
+20200306, 0.10, -1.66, -4.86, 0.031
+20200313, -9.71, -5.94, -3.56, 0.031
+20200320, -14.57, 1.63, -5.82, 0.031
+20200327, 10.32, -0.97, 1.01, 0.031
+20200403, -2.49, -2.20, -5.46, 0.001
+20200409, 12.35, 2.84, 7.88, 0.001
+20200417, 3.24, -1.67, -8.58, 0.001
+20200424, -0.85, 2.54, -2.01, 0.001
+20200501, 0.01, 2.31, 4.85, 0.002
+20200508, 4.24, 2.26, -3.52, 0.002
+20200515, -2.20, -1.25, -7.30, 0.002
+20200522, 3.59, 3.29, 4.01, 0.002
+20200529, 2.98, -1.12, 3.73, 0.002
+20200605, 4.97, 0.59, 9.93, 0.003
+20200612, -4.73, -1.27, -5.23, 0.003
+20200619, 2.29, 1.27, -3.21, 0.003
+20200626, -2.83, 0.84, -4.13, 0.003
+20200702, 4.04, 0.67, -1.66, 0.003
+20200710, 2.10, -1.86, -1.38, 0.003
+20200717, 1.20, 1.76, 2.38, 0.003
+20200724, -0.31, -0.23, 2.91, 0.003
+20200731, 1.73, -0.51, -2.53, 0.003
+
+Copyright 2020 Kenneth R. French
From 3e73e48d51e188552783db87513255e5741c26ac Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 18 Sep 2020 14:15:52 -0700
Subject: [PATCH 176/215] Adds 315 G-Score Investing
---
.../01 Strategy Library.php | 9 +++
.../1030 G-Score Investing/01 Abstract.html | 3 +
.../02 Introduction.html | 10 ++++
.../1030 G-Score Investing/03 Method.html | 57 +++++++++++++++++++
.../1030 G-Score Investing/04 Algorithm.html | 6 ++
.../1030 G-Score Investing/05 Results.html | 5 ++
.../1030 G-Score Investing/06 References.html | 6 ++
7 files changed, 96 insertions(+)
create mode 100644 04 Strategy Library/1030 G-Score Investing/01 Abstract.html
create mode 100644 04 Strategy Library/1030 G-Score Investing/02 Introduction.html
create mode 100644 04 Strategy Library/1030 G-Score Investing/03 Method.html
create mode 100644 04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
create mode 100644 04 Strategy Library/1030 G-Score Investing/05 Results.html
create mode 100644 04 Strategy Library/1030 G-Score Investing/06 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 6144105..edba6dd 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -678,6 +678,15 @@
],
'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process",
'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping'
+ ],
+ [
+ 'name' => 'G-Score Investing',
+ 'link' => 'strategy-library/g-score-investing',
+ 'sources' => [
+ 'SSRN' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=403180'
+ ],
+ 'description' => "Applying G-Score Investing to Invest in a Portfolio of Technology Stocks",
+ 'tags'=>'Fundamentals, Factor Investing, G-Score Investing, MorningStar data, equities'
]
];
diff --git a/04 Strategy Library/1030 G-Score Investing/01 Abstract.html b/04 Strategy Library/1030 G-Score Investing/01 Abstract.html
new file mode 100644
index 0000000..248865d
--- /dev/null
+++ b/04 Strategy Library/1030 G-Score Investing/01 Abstract.html
@@ -0,0 +1,3 @@
+
+ In this tutorial, we apply G-Score Investing to choose a Universe of stocks to invest in.
+
diff --git a/04 Strategy Library/1030 G-Score Investing/02 Introduction.html b/04 Strategy Library/1030 G-Score Investing/02 Introduction.html
new file mode 100644
index 0000000..b26b9f7
--- /dev/null
+++ b/04 Strategy Library/1030 G-Score Investing/02 Introduction.html
@@ -0,0 +1,10 @@
+
+ Analyzing a company’s fundamentals is a method of trading that doesn’t
+ rely purely on price and volume data. We will apply the use of computers to automate
+ the analysis of this data, and we will do so using a method of
+ Factor Investing,
+ the process of using different attributes, in this case, fundamental data, to choose
+ stocks to purchase. More specifically, we will use G-Score investing, and evaluate companies
+ on seven factors that we will detail later. We specifically choose companies with Book-to-Market
+ due to abnormal returns as a result of the Risk Premium Effect.
+
diff --git a/04 Strategy Library/1030 G-Score Investing/03 Method.html b/04 Strategy Library/1030 G-Score Investing/03 Method.html
new file mode 100644
index 0000000..b6ef87b
--- /dev/null
+++ b/04 Strategy Library/1030 G-Score Investing/03 Method.html
@@ -0,0 +1,57 @@
+
+ We first sort all companies that have fundamental data by their Book-to-Market ratio, and narrow our universe to the
+ bottom quartile. We measure the Book-to-Market ratio using
+ fine.FinancialStatements.BalanceSheet.NetTangibleAssets.TwelveMonths divided by
+ fine.MarketCap. In this strategy, we will use Technology as the industry of choice, thus, we further
+ narrow this universe to Technology stocks only.
+
+
+
+ For each of the conditions that are described below, if met, one point will be added to the G-Score.
+ Thus, with seven factors, our G-Score can range from 0 to 7. We evaluate a company based on the following:
+
+
+
+
+ -
+ The Return on Assets (ROA) is greater than the contemporaneous industry median. In other words, the ROA for
+ the analyzed company is greater than the median of the ROAs of all companies in the same industry
+ We measure this value using fine.OperationRatios.ROA.OneYear
+
+ -
+ The Cash Flow Return on Assets (CFROA) is greater than the contemporaneous industry median
+ We measure this value using fine.FinancialStatements.CashFlowStatement.OperatingCashFlow.TwelveMonths
+ divided by fine.FinancialStatements.BalanceSheet.TotalAssets.TwelveMonths
+
+ -
+ The CFROA is greater than the ROA
+
+ -
+ The Variance of the ROA (VARROA) is lower than the contemporaneous industry median
+ We measure this by storing the past twelve values of fine.OperationRatios.ROA.ThreeMonths in a
+ RollingWindow and computing the variance of the values in the RollingWindow
+
+ -
+ The Research and Development Expenditure (R&D) is higher than the contemporaneous industry median
+ We measure this using fine.FinancialStatements.IncomeStatement.ResearchAndDevelopment.TwelveMonths
+
+ -
+ The Capital Expenditure (CapEx) is higher than the contemporaneous industry median
+ We measure this using fine.FinancialStatements.CashFlowStatement.CapExReported.TwelveMonths
+
+ -
+ The Advertisement Expenditure (Ad) is higher than the contemporaneous industry median
+ We measure this using fine.FinancialStatements.IncomeStatement.SellingGeneralAndAdministration.TwelveMonths
+
+
+
+
+ The fundamental data used in our algorithms is sourced from MorningStar, and to read more about our fundamental data,
+ please visit the Fundamentals section of our
+ documentation.
+
+
+
+ Once we have computed the G-Scores for each of the securities, we long the securities with G-Scores of 5 or higher
+
+
diff --git a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
new file mode 100644
index 0000000..108b8ca
--- /dev/null
+++ b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/04 Strategy Library/1030 G-Score Investing/05 Results.html b/04 Strategy Library/1030 G-Score Investing/05 Results.html
new file mode 100644
index 0000000..c8570c2
--- /dev/null
+++ b/04 Strategy Library/1030 G-Score Investing/05 Results.html
@@ -0,0 +1,5 @@
+
+ Since we use Technology as the industry, we decided to use Nasdaq-100, or ^NDX, as the benchmark, which we track
+ using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.713 from April 2016 to September 2020, and so it is
+ outperformed by simply holding QQQ, which yielded a Sharpe Ratio of 1.22 over the same period.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1030 G-Score Investing/06 References.html b/04 Strategy Library/1030 G-Score Investing/06 References.html
new file mode 100644
index 0000000..f21473a
--- /dev/null
+++ b/04 Strategy Library/1030 G-Score Investing/06 References.html
@@ -0,0 +1,6 @@
+
+ -
+ Mohanram, Partha S., Separating Winners from Losers Among Low Book-to-Market Stocks Using Financial Statement
+ nalysis (April 2004). Online Copy.
+
+
\ No newline at end of file
From 140b9612c017265b3e8d4720eff49b69e69e9ad0 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 18 Sep 2020 15:22:35 -0600
Subject: [PATCH 177/215] Fix strategy library map file
---
.../01 Strategy Library.php | 9 +
.../01 Abstract.html | 8 +
.../02 Background.html | 14 ++
.../03 Method.html | 183 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 Conclusion.html | 26 +++
.../06 References.html | 11 ++
7 files changed, 257 insertions(+)
create mode 100644 04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
create mode 100644 04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html
create mode 100644 04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html
create mode 100644 04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html
create mode 100644 04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html
create mode 100644 04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 6144105..384bc60 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -678,6 +678,15 @@
],
'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process",
'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping'
+ ],
+ [
+ 'name' => 'Using News Sentiment to Predict Price Direction of Drug Manufacturers',
+ 'link' => 'strategy-library/using-news-sentiment-to-predict-price-direction-of-drug-manufacturers',
+ 'sources' => [
+ 'arXiv' => 'https://arxiv.org/abs/1812.04199'
+ ],
+ 'description' => "Analyzes the news releases of drug manufacturers and places intraday trades for the stocks with positive news.",
+ 'tags'=>'Equities, NLP, News Sentiment, Drug Manufacturers, Tiingo, Intraday'
]
];
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
new file mode 100644
index 0000000..ab35081
--- /dev/null
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
@@ -0,0 +1,8 @@
+
+ Several studies have found that press releases and other media can impact the perspective of investors. In this
+ tutorial, we implement an intraday strategy to capitalize on the upward drift in the stock prices of drug
+ manufacturer following positive news releases. Our findings show that when combining the effect with the
+ day-of-the-week anomaly documented by Berument & Kiymaz (2001), there is enough directional accuracy for the
+ trading system to remain profitable throughout the 2020 stock market crash. The algorithm we design here is
+ inspired by the work of Isah, Shah, & Zulkernine (2018).
+
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html
new file mode 100644
index 0000000..60fe4eb
--- /dev/null
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html
@@ -0,0 +1,14 @@
+
+ The use of alternative data sets to forecast stock prices has increased in recent years as the fundamental and
+ technical analysis spaces increase in competition. Utilizing Natural Language Processing (NLP) techniques to
+ analyze the sentiment of news releases and other text related to publicly traded companies has caught the interest
+ of many quant researchers. Such online information is frequently released and can be interpreted in a virtually
+ unlimited number of ways, leading to a novel approach to determining the "societal mood" (Isah et al, 2018, p. 2)
+ towards a company.
+
+
+
+ There are several ways to implement a NLP system. In this tutorial, we utilize a dictionary to quantify the
+ sentiment of news releases. The dictionary provided herein was sourced from Isah et al (2018), where it's use
+ achieved a 70% accuracy when targeting several hand-picked stocks in India's pharmaceutical industry.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html
new file mode 100644
index 0000000..ac080d3
--- /dev/null
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html
@@ -0,0 +1,183 @@
+Universe Selection
+
+ We implement a universe selection model that provides the trading system with companies classified by
+ MorningStar as being in the drug
+ manufacturing industry group. We narrow our universe to include only the drug manufacturers with the greatest PE
+ ratios and dollar volume.
+
+
+
+def SelectCoarse(self, algorithm, coarse):
+ has_fundamentals = [c for c in coarse if c.HasFundamentalData]
+ sorted_by_dollar_volume = sorted(has_fundamentals, key=lambda c: c.DollarVolume, reverse=True)
+ return [ x.Symbol for x in sorted_by_dollar_volume[:self.coarse_size] ]
+
+def SelectFine(self, algorithm, fine):
+ drug_manufacturers = [f for f in fine if f.AssetClassification.MorningstarIndustryGroupCode == MorningstarIndustryGroupCode.DrugManufacturers]
+ sorted_by_pe = sorted(drug_manufacturers, key=lambda f: f.ValuationRatios.PERatio, reverse=True)
+ return [ x.Symbol for x in sorted_by_pe[:self.fine_size] ]
+
+
+
+
+Alpha Construction
+
+ The DrugNewsSentimentAlphaModel emits insights to take long intraday positions for securities that have positive
+ news sentiment. During construction of the model, we:
+
+
+
+ - Create a dictionary to store SymbolData for each symbol
+ - Gather the sentiment dictionary provided by Isah et al (2018)
+ - Determine the maximum number of grams we need to analyze news articles
+ - Define a method to determine the sign of sentiment
+ - Specify the value of `bars_before_insight`
+
+
+
+ The `bars_before_insight` parameter determines how many bars the alpha model should observe after the market opens
+ before emitting insights. Isah et al (2018) batch the news released by each company into 30-minute intervals
+ before analyzing the sentiment of the batch. In this tutorial, we follow a similar procedure by setting
+ `bars_before_insight` to 30.
+
+
+
+
+class DrugNewsSentimentAlphaModel(AlphaModel):
+ symbol_data_by_symbol = {}
+ sentiment_by_phrase = SentimentByPhrase.dictionary
+ max_phrase_words = max([len(phrase.split()) for phrase in sentiment_by_phrase.keys()])
+ sign = lambda _, x: int(x and (1, -1)[x < 0])
+
+ def __init__(self, bars_before_insight=30):
+ self.bars_before_insight = bars_before_insight
+
+
+
+Alpha Securities Management
+
+ When a new security is added to the universe, we create a SymbolData object for it to store information unique to
+ each security. The management of the SymbolData objects occurs in the alpha model's OnSecuritiesChanged method.
+
+
+
+
+def OnSecuritiesChanged(self, algorithm, changes):
+ for security in changes.AddedSecurities:
+ self.symbol_data_by_symbol[security.Symbol] = SymbolData(security, algorithm)
+
+ for security in changes.RemovedSecurities:
+ symbol_data = self.symbol_data_by_symbol.pop(security.Symbol, None)
+ if symbol_data:
+ algorithm.RemoveSecurity(symbol_data.tiingo_symbol)
+
+
+
+
+ The definition of the SymbolData class is shown below. We add properties to it to track the cumulative sentiment
+ of news releases over time and the number of bars the alpha model has received for each security since the market
+ open. In the constructor, we save a reference to the security's exchange so we can access the market hours of the
+ exchange when generating insights. This is also where we initialize the
+ Tiingo news feed for each security.
+
+
+
+
+class SymbolData:
+ cumulative_sentiment = 0
+ bars_seen_today = 0
+
+ def __init__(self, security, algorithm):
+ self.exchange = security.Exchange
+ self.tiingo_symbol = algorithm.AddData(TiingoNews, security.Symbol).Symbol
+
+
+
+
+Alpha Update
+
+ As new Tiingo objects are provided to the alpha model's Update method, we update the cumulative sentiment for each
+ security. The cumulative sentiment counter is reset at each market close. Therefore, when we emit insights
+ 30-minutes after the open, we are considering the sentiment of the news articles released from the previous close
+ to the current time. We employ the findings of Berument & Kiymaz (2001), restricting the alpha model's trading to
+ Wednesday, the most profitable day of the week. Positions are entered 30-minutes after the open and exited at the
+ close.
+
+
+
+
+def Update(self, algorithm, data):
+ insights = []
+
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+
+ # If it's after-hours or within 30-minutes of the open, update
+ # cumulative sentiment for each symbol
+ if symbol_data.bars_seen_today < self.bars_before_insight:
+ tiingo_symbol = symbol_data.tiingo_symbol
+ if data.ContainsKey(tiingo_symbol) and data[tiingo_symbol] is not None:
+ article = data[tiingo_symbol]
+ symbol_data.cumulative_sentiment += self.CalculateSentiment(article)
+
+ if data.ContainsKey(symbol) and data[symbol] is not None:
+ symbol_data.bars_seen_today += 1
+
+ # 30-mintes after the open, emit insights in the direction of the cumulative sentiment.
+ # Only emit insights on Wednesdays to capture the analomaly documented by Berument and
+ # Kiymaz (2001).
+ if symbol_data.bars_seen_today == self.bars_before_insight and data.Time.weekday() == 2:
+ next_close_time = symbol_data.exchange.Hours.GetNextMarketClose(data.Time, False)
+ direction = self.sign(symbol_data.cumulative_sentiment)
+ if direction == 0:
+ continue
+ insight = Insight.Price(symbol,
+ next_close_time - timedelta(minutes=2),
+ direction)
+ insights.append(insight)
+
+ # At the close, reset the cumulative sentiment
+ if not symbol_data.exchange.DateTimeIsOpen(data.Time):
+ symbol_data.cumulative_sentiment = 0
+ symbol_data.bars_seen_today = 0
+
+ return insights
+
+
+
+
+Calculating Sentiment
+
+ We define the following helper method to return the sentiment of a Tiingo news article by analyzing the article's
+ title and description. The `sentiment_by_phrase` dictionary was retrieved from queensbamlab's
+ NewsSentiment GitHub repository. Although we have
+ adjusted the dictionary to lowercase and removed some redundancies, this is the same dictionary used by Isah et
+ al (2018). "The dictionary was created by leveraging author's domain expertise and thorough analysis of news
+ articles over the years" (p. 3).
+
+
+
+
+def CalculateSentiment(self, article):
+ sentiment = 0
+ for content in (article.Title, article.Description):
+ words = content.lower().split()
+ for num_words in range(1, self.max_phrase_words + 1):
+ for gram in ngrams(words, num_words):
+ phrase = ' '.join(gram)
+ if phrase in self.sentiment_by_phrase.keys():
+ sentiment += self.sentiment_by_phrase[phrase]
+ return sentiment
+
+
+
+
+Portfolio Construction & Trade Execution
+
+ Following the guidelines of Alpha Streams and the
+ Quant League competition, we utilize the
+
+ EqualWeightingPortfolioConstructionModel and the
+
+ ImmediateExecutionModel.
+
+
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html
new file mode 100644
index 0000000..43dfb6f
--- /dev/null
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html
new file mode 100644
index 0000000..553c5a6
--- /dev/null
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html
@@ -0,0 +1,26 @@
+
+ We conclude that deploying the sentiment analysis strategy on the US drug manufacturer industry does not provide
+ as accurate results as found by Isah et al (2018). The algorithm above achieves a win rate of 47%. However, with
+ a 1.16 profit-loss ratio, it remains profitable throughout the 2020 stock market crash. Only after restricting
+ trading to the most profitable day of the week (Berument & Kiymaz, 2001) does the strategy achieve profitability
+ over this testing period. We attribute the decrease in performance to the commissions and spread costs simulated
+ by LEAN.
+
+
+
+To continue the development of this strategy, future areas of research include:
+
+
+
+ - Adding a threshold parameter the cumulative sentiment counter must pass to signal trades
+ -
+ Only analyzing the sentiment of articles which contain keywords like "US, "USA", 'Q1', and others in their
+ titles
+
+ -
+ Stemming and removing
+ punctuation from articles before calculating their sentiment
+
+ - Adding phrases to the sentiment dictionary or adjust the sentiment values
+ - Adding other data feeds beside just Tiingo
+
\ No newline at end of file
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html
new file mode 100644
index 0000000..8f8f421
--- /dev/null
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html
@@ -0,0 +1,11 @@
+
+ -
+ Shah, Dev, Haruna Isah, and Farhana Zulkernine. “Predicting the Effects of News Sentiments on the Stock Market.”
+ 2018 IEEE International Conference on Big Data (Big Data) (2018).
+ Online copy
+
+ -
+ Berument, Hakan and Kiymaz, Halil, The Day of the Week Effect on Stock Market Volatility (2001). Journal of
+ Economics and Finance, Vol.25, No.2, pp. 181-193. Online copy
+
+
\ No newline at end of file
From 0f88f5770ebc6f2b0f26aac80b0a1c6acd244c4c Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 18 Sep 2020 15:23:55 -0600
Subject: [PATCH 178/215] Fix typo
---
.../01 Abstract.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
index ab35081..387cf48 100644
--- a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
@@ -1,7 +1,7 @@
Several studies have found that press releases and other media can impact the perspective of investors. In this
tutorial, we implement an intraday strategy to capitalize on the upward drift in the stock prices of drug
- manufacturer following positive news releases. Our findings show that when combining the effect with the
+ manufacturers following positive news releases. Our findings show that when combining the effect with the
day-of-the-week anomaly documented by Berument & Kiymaz (2001), there is enough directional accuracy for the
trading system to remain profitable throughout the 2020 stock market crash. The algorithm we design here is
inspired by the work of Isah, Shah, & Zulkernine (2018).
From 6235e6b7a9661b0ee4c9435b785f69fb1c34764b Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 25 Sep 2020 12:54:30 -0700
Subject: [PATCH 179/215] Adds 321 SVM Wavelet Forecasting
---
.../01 Strategy Library.php | 9 ++++
.../01 Abstract.html | 3 ++
.../02 Introduction.html | 10 ++++
.../03 Method.html | 52 +++++++++++++++++++
.../04 Algorithm.html | 6 +++
.../05 Results.html | 8 +++
.../06 References.html | 5 ++
7 files changed, 93 insertions(+)
create mode 100644 04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html
create mode 100644 04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
create mode 100644 04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
create mode 100644 04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
create mode 100644 04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
create mode 100644 04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 6144105..e979478 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -678,6 +678,15 @@
],
'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process",
'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping'
+ ],
+ [
+ 'name' => 'SVM Wavelet Forecasting',
+ 'link' => 'strategy-library/svm-wavelet-forecasting',
+ 'sources' => [
+ 'Academia' => 'https://www.academia.edu/37180223/SVR_Wavelet_Adaptive_Model_for_Forecasting_Financial_Time_Series'
+ ],
+ 'description' => "Forecasting EURJPY prices with an SVM Wavelet model",
+ 'tags'=>'Support Vector Machines (SVM), Forex, Forecasting, Wavelet, Discrete Wavelet Transform'
]
];
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html
new file mode 100644
index 0000000..fb88b27
--- /dev/null
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html
@@ -0,0 +1,3 @@
+
+ In this tutorial, we apply an SVM Wavelet model in attempt to forecast EURJPY prices.
+
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
new file mode 100644
index 0000000..168b024
--- /dev/null
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
@@ -0,0 +1,10 @@
+
+ Several methods have been developed to forecast time-series, from ARIMA to Neural Networks. In this strategy, we
+ combine a Support Vector Machine (SVM) and Wavelets in an attempt to forecast EURJPY. Although SVMs are most often
+ used for classification problems, such as classifying proteins, they can also be applied in regression problems, and
+ are able to handle non-linear data. Wavelets are often applied in Signal Processing applications, and they can be
+ used to decompose a time-series into multiple components, and each component can be denoised using thresholding, so
+ when they are recombined, the original time-series becomes cleaner. We can combine these models by applying SVMs to
+ forecast the individual components of a time-series decomposed by Wavelets, and recombine them for an aggregate
+ forecast, which we detail in the Method section.
+
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
new file mode 100644
index 0000000..1a923a5
--- /dev/null
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
@@ -0,0 +1,52 @@
+
+ Given EURJPY data, our first step is to decompose our data into multiple resolutions.
+ We work with wavelets using the pywt package. For denoising, Daubechies and
+ Symlets are good choices for Wavelets, and we use Symlets 10 in our strategy. We create a Symlets 10 Wavelet
+ using the following:
+
+
+
+
+ w = pywt.Wavelet('sym10')
+
+
+To determine the length of the data we’d need for a certain number of levels after decomposition, we can solve for:
+\[log_{2}(\frac{len(data)}{wavelength-1})=levels\]
+
+ Given the length of a Symlet 10 wavelet is 20, if we want three levels, we
+ solve for len(data) to get len(data) = 152, which means data would need to have at least
+ 152 values. Since we will denoise our components using thresholding,
+ we specify threshold = 0.5 to indicate the strength of the thresholding.
+ This threshold value can be any number between 0 and 1.
+
+To decompose our data, we use:
+
+
+
+ coeffs = pywt.wavedec(data, w)
+
+
+
+For each component beyond the first, we threshold/denoise the component, roll the values of the component one spot to the left, and replace the last value of the component with a value forecasted from an SVM. This process looks like the following in code:
+
+
+
+ for i in range(1, len(coeffs)):
+ coeffs[i] = pywt.threshold(coeffs[i], threshold*max(coeffs[i]))
+ forecasted = __svm_forecast(coeffs[i])
+ coeffs[i] = np.roll(coeffs[i], -1)
+ coeffs[i][-1] = forecasted
+
+
+
+The __svm_forecast method fits partitioned data to an SVM model then predicts one value into the
+ future, and can be found under SVMWavelet.py file under Algorithm
+Once we forecast one value into the future, we can aggregate the forecasts by recombining the components into a simple time-series. We do this with:
+
+
+ datarec = pywt.waverec(coeffs, w)
+
+
+Since we want the aggregate forecast one time-step into the future, we return the last element of this time-series, or datarec[-1].
+
+Our trading rules are simple: feed in the past 152 points of daily closing prices of EURJPY into our SVM Wavelet forecasting method, and divide that number by the current close of EURJPY to get the forecasted percent change. Then, we emit an Insight based on the direction of the percent change with the weight of the Insight as the absolute value of the percent change. We use the InsightWeightPortfolioConstructionModel so that the weight of the Insight determines the portfolio allocation percentage, which means larger forecasted moves will have larger allocation.
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
new file mode 100644
index 0000000..fc4ed47
--- /dev/null
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
new file mode 100644
index 0000000..d3cea27
--- /dev/null
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
@@ -0,0 +1,8 @@
+The performance of the algorithm was quite poor. Over the past five years, the algorithm achieved a Sharpe Ratio of 0.163,
+ while buying and holding SPY over the same period would have achieved a Sharpe Ratio of 0.713. Some ideas for improvement include:
+
+ - Testing different Wavelet types (e.g. Daubechies)
+ - Trying out other time resolutions (e.g. Minute)
+ - Using alternative Decomposition methods (e.g. Stationary Wavelet Transform)
+
+If a user comes across any interesting results with modifications of this algorithm, we’d love to hear about it in the Community Forum.
\ No newline at end of file
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html
new file mode 100644
index 0000000..1cc8866
--- /dev/null
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html
@@ -0,0 +1,5 @@
+
+ -
+ M. S. Raimundo and J. Okamoto, "SVR-wavelet adaptive model for forecasting financial time series," 2018 International Conference on Information and Computer Technologies (ICICT), DeKalb, IL, 2018, pp. 111-114, doi: 10.1109/INFOCT.2018.8356851. Online Copy.
+
+
\ No newline at end of file
From e66d96aed7e3ee445d5c95e339392aa1883afbc5 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Mon, 28 Sep 2020 08:29:12 -0700
Subject: [PATCH 180/215] Adds 321 SVM Wavelet Forecasting
---
.../1031 SVM Wavelet Forecasting/03 Method.html | 10 +++++++---
.../1031 SVM Wavelet Forecasting/04 Algorithm.html | 2 +-
.../1031 SVM Wavelet Forecasting/05 Results.html | 2 +-
3 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
index 1a923a5..6651dd7 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
@@ -27,12 +27,16 @@
-For each component beyond the first, we threshold/denoise the component, roll the values of the component one spot to the left, and replace the last value of the component with a value forecasted from an SVM. This process looks like the following in code:
+For each component, we threshold/denoise the component (except for the first component, the approximation coefficients),
+ roll the values of the component one spot to the left,
+ and replace the last value of the component with a value forecasted from an SVM. This process looks like the following in code:
- for i in range(1, len(coeffs)):
- coeffs[i] = pywt.threshold(coeffs[i], threshold*max(coeffs[i]))
+ for i in range(len(coeffs)):
+ if i > 0:
+ # we don't want to threshold the approximation coefficients
+ coeffs[i] = pywt.threshold(coeffs[i], threshold*max(coeffs[i]))
forecasted = __svm_forecast(coeffs[i])
coeffs[i] = np.roll(coeffs[i], -1)
coeffs[i][-1] = forecasted
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
index fc4ed47..868c5d9 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
index d3cea27..c80ae5c 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
@@ -1,4 +1,4 @@
-The performance of the algorithm was quite poor. Over the past five years, the algorithm achieved a Sharpe Ratio of 0.163,
+
The performance of the algorithm was decent. Over the past five years, the algorithm achieved a Sharpe Ratio of 0.388,
while buying and holding SPY over the same period would have achieved a Sharpe Ratio of 0.713. Some ideas for improvement include:
- Testing different Wavelet types (e.g. Daubechies)
From 920bf30f1ad9e98a66db45d643fdcfceb72ad8db Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 2 Oct 2020 19:06:33 -0600
Subject: [PATCH 181/215] Update cointegration algorithm and write-up
---
.../04 Part II - Cointegration Method.html | 53 ++++++++++---------
.../05 Summary.html | 18 +++----
.../06 Algorithm.html | 4 +-
3 files changed, 40 insertions(+), 35 deletions(-)
diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html
index 7011faf..76bf605 100755
--- a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html
+++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html
@@ -9,39 +9,44 @@ Step 1: Generate the Spread Series
\[spread_t=\log(price_t^y)-\beta \log(price_t^x)\]
-Step 2: Compute the Threshold
+Step 2: Compute the Signals
- Using the standard deviation of spread during the rolling formation period, a threshold of two standard deviations is set up for the trading strategy as indicated in the paper.
+ Using the standard deviation of spread during the rolling formation period, a threshold of one standard deviation
+ is set up for the trading strategy. We enter a trade whenever the spread moves more than one standard deviations
+ away from its mean. Trades are exited when the spread reverts back to the mean trailing stread value. The position
+ sizes are scaled by the coefficient β.
-price_x = pd.Series([float(i.Close) for i in self.symbols[0].hist_window],
- index = [i.Time for i in self.symbols[0].hist_window])
+log_close_x = np.log(self.closes_by_symbol[self.x_symbol])
+log_close_y = np.log(self.closes_by_symbol[self.y_symbol])
+
+spread, beta = self.regr(log_close_x, log_close_y)
-price_y = pd.Series([float(i.Close) for i in self.symbols[1].hist_window],
- index = [i.Time for i in self.symbols[1].hist_window])
-if len(price_x) < 250: return
-spread = self.regr(np.log(price_x), np.log(price_y))
mean = np.mean(spread)
std = np.std(spread)
-ratio = floor(self.Portfolio[self.symbols[1]].Price / self.Portfolio[self.symbols[0]].Price)
-if spread[-1] > mean + self.threshold * std:
- if not self.Portfolio[self.symbols[0]].Quantity > 0 and not self.Portfolio[self.symbols[0]].Quantity < 0:
- self.Sell(self.symbols[1], 100)
- self.Buy(self.symbols[0], ratio * 100)
-
-elif spread[-1] < mean - self.threshold * std:
- if not self.Portfolio[self.symbols[0]].Quantity < 0 and not self.Portfolio[self.symbols[0]].Quantity > 0:
- self.Sell(self.symbols[0], 100)
- self.Buy(self.symbols[1], ratio * 100)
+
+x_holdings = self.Portfolio[self.x_symbol]
+
+if x_holdings.Invested:
+ if x_holdings.IsShort and spread[-1] <= mean or \
+ x_holdings.IsLong and spread[-1] >= mean:
+ self.Liquidate()
else:
- self.Liquidate()
+ if beta < 1:
+ x_weight = 0.5
+ y_weight = 0.5 / beta
+ else:
+ x_weight = 0.5 / beta
+ y_weight = 0.5
+
+ if spread[-1] < mean - self.threshold * std:
+ self.SetHoldings(self.y_symbol, -y_weight)
+ self.SetHoldings(self.x_symbol, x_weight)
+ if spread[-1] > mean + self.threshold * std:
+ self.SetHoldings(self.x_symbol, -x_weight)
+ self.SetHoldings(self.y_symbol, y_weight)
-
-Step 3: Set up the Trading Signals
-
- On each trading day, we enter a trade whenever the spread moves more than two standard deviations away from its mean. In other words, we construct short positions in X and long positions in Y on the day that spread mean+2*std. We construct short positions in Y and long positions in X on the day that spread<mean-2*std. The trade is exited if the spread reverts to its equilibrium (defined as less than half a standard deviation from zero spread). The value of mean and standard deviation are calculated from the rolling formation period and will be updated once a month.
-
diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html
index cd9ff46..44ab024 100755
--- a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html
+++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html
@@ -15,21 +15,21 @@
Copula
-346
-274.293%
-1.022
-19.4%
+493
+8.884%
+0.12
+26.1%
Cointegration
-91
-26.358%
-0.298
-23.7%
+126
+4.517%
+0.196
+3.9%
- Generally, ETFs are not very volatile and so mean-reversion did not provide many trading opportunities. There are only 39 trades during 5 years for cointegration method. It is observed that the use of copula in pairs trading provides more trading opportunities as it does not require any rigid assumptions according to Liew R Q, Wu Y. - Pairs trading A copula approach.
+ Generally, ETFs are not very volatile and so mean-reversion did not provide many trading opportunities. There are only 91 trades during 5 years for cointegration method. It is observed that the use of copula in pairs trading provides more trading opportunities as it does not require any rigid assumptions according to Liew R Q, Wu Y. - Pairs trading A copula approach.
diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html
index 21099b5..228f289 100755
--- a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html
+++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
From d831869a62cc3858617fa9a275d6ab6492eee23d Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 2 Oct 2020 19:12:06 -0600
Subject: [PATCH 182/215] Fix typo
---
.../04 Part II - Cointegration Method.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html
index 76bf605..d36c895 100755
--- a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html
+++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html
@@ -14,7 +14,7 @@ Step 2: Compute the Signals
Using the standard deviation of spread during the rolling formation period, a threshold of one standard deviation
is set up for the trading strategy. We enter a trade whenever the spread moves more than one standard deviations
- away from its mean. Trades are exited when the spread reverts back to the mean trailing stread value. The position
+ away from its mean. Trades are exited when the spread reverts back to the mean trailing spread value. The position
sizes are scaled by the coefficient β.
From adb03722c992d5267f8ecef3cc275e3b45c2c999 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Mon, 5 Oct 2020 16:56:27 -0700
Subject: [PATCH 183/215] update backtest
---
04 Strategy Library/1030 G-Score Investing/04 Algorithm.html | 2 +-
04 Strategy Library/1030 G-Score Investing/05 Results.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
index 108b8ca..52a4b06 100644
--- a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
+++ b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/1030 G-Score Investing/05 Results.html b/04 Strategy Library/1030 G-Score Investing/05 Results.html
index c8570c2..cefd93b 100644
--- a/04 Strategy Library/1030 G-Score Investing/05 Results.html
+++ b/04 Strategy Library/1030 G-Score Investing/05 Results.html
@@ -1,5 +1,5 @@
Since we use Technology as the industry, we decided to use Nasdaq-100, or ^NDX, as the benchmark, which we track
- using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.713 from April 2016 to September 2020, and so it is
+ using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.5 from April 2016 to September 2020, and so it is
outperformed by simply holding QQQ, which yielded a Sharpe Ratio of 1.22 over the same period.
\ No newline at end of file
From a11df07a89239053b1e37e3247ad47fe11101275 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 16 Oct 2020 15:54:15 -0600
Subject: [PATCH 184/215] Adds Gradient Boosting Strategy
---
.../01 Strategy Library.php | 9 +
.../01 Abstract.html | 7 +
.../02 Background.html | 24 +++
.../03 Method.html | 163 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 Relative Performance.html | 53 ++++++
...06 Market & Competition Qualification.html | 13 ++
.../07 Conclusion.html | 17 ++
.../08 References.html | 5 +
9 files changed, 297 insertions(+)
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/02 Background.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/03 Method.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html
create mode 100644 04 Strategy Library/1033 Gradient Boosting Model/08 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 6144105..7e5dd34 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -678,6 +678,15 @@
],
'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process",
'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping'
+ ],
+ [
+ 'name' => 'Gradient Boosting Model',
+ 'link' => 'strategy-library/gradient-boosting-model',
+ 'sources' => [
+ 'arXiv' => 'https://ssrn.com/abstract=2323899'
+ ],
+ 'description' => "Forecasts future intraday returns with a gradient boosting model trained on technical indicators",
+ 'tags'=>'Gradient Boost, Regression Trees, Equities, Machine Learning'
]
];
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html b/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html
new file mode 100644
index 0000000..1d309c1
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html
@@ -0,0 +1,7 @@
+
+ In this tutorial, we train a Gradient Boosting Model (GBM) to forecast the intraday price movements of the SPY ETF using a
+ collection of technical indicators. The implementation is based on the research produced by Zhou et al (2013), where a GBM
+ was found to produce an annualized Sharpe ratio greater than 20. Our research shows that throughout a 5 year backtest, the
+ model underperforms the SPY with its current parameter set. However, we finish the tutorial with highlighting potential
+ areas of further research to improve the model’s performance.
+
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html b/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html
new file mode 100644
index 0000000..49f45d3
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html
@@ -0,0 +1,24 @@
+
+ A GBM is trained by setting the initial model prediction to the mean target value in the training set. The model then
+ iteratively builds regression trees to predict the model’s pseudo-residuals on the training set to tighten the fit. The
+ pseudo-residuals are the differences between the target value and the model’s prediction on the current training iteration
+ for each sample. The model’s predictions are made by summing the mean target value and the products of the learning rate
+ and the regression tree outputs. The full algorithm is shown here.
+
+
+
+
+
+
+
+ We provide technical indicator values as inputs to the GBM. The model is trained to predict the security’s return over the
+ next 10 minutes and the performance of the model’s predictions are assessed using the mean squared error loss function.
+
+
+\[ MSE = \frac{\Sigma_{i=1}^n(y_i - \hat{y}_i)^2}{n} \]
+
+
+ Zhou et al (2013) utilize custom loss functions to fit their GBM in a manner that aims to maximize the profit-and-loss or
+ Sharpe ratio over the training data set. The attached notebook shows training the GBM with these custom loss functions
+ leads to poor model predictions.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html b/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html
new file mode 100644
index 0000000..7e88ae2
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html
@@ -0,0 +1,163 @@
+Universe Selection
+
+ We use a ManualUniverseSelectionModel to subscribe to the SPY ETF. The algorithm is designed to work with minute and
+ second data resolutions. In our implementation, we use data on a minute resolution.
+
+
+
+symbols = [ Symbol.Create("SPY", SecurityType.Equity, Market.USA) ]
+self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )
+self.UniverseSettings.Resolution = Resolution.Minute
+
+
+
+
+Alpha Construction
+
+ The GradientBoostingAlphaModel predicts the direction of the SPY at each timestep. Each position taken is held for
+ 10 minutes, although this duration is customizable in the constructor. During construction of this alpha model, we
+ simply set up a dictionary to hold a SymbolData object for each symbol in the universe. In the case where the
+ universe consists of multiple securities, the alpha model holds each with equal weighting.
+
+
+
+class GradientBoostingAlphaModel(AlphaModel):
+ symbol_data_by_symbol = {}
+
+ def __init__(self, hold_duration = 10):
+ self.hold_duration = hold_duration
+ self.weight = 1
+
+
+
+
+Alpha Securities Management
+
+ When a new security is added to the universe, we create a SymbolData object for it to store information unique to
+ the security. The management of the SymbolData objects occurs in the alpha model's OnSecuritiesChanged method.
+
+
+
+def OnSecuritiesChanged(self, algorithm, changes):
+ for security in changes.AddedSecurities:
+ symbol = security.Symbol
+ self.symbol_data_by_symbol[symbol] = SymbolData(symbol, algorithm, self.hold_duration)
+
+ for security in changes.RemovedSecurities:
+ symbol_data = self.symbol_data_by_symbol.pop(security.Symbol, None)
+ if symbol_data:
+ symbol_data.dispose()
+
+ self.weight = 1 / len(self.symbol_data_by_symbol)
+
+
+
+
+
+SymbolData Class
+
+ The SymbolData class is used in this algorithm to manage indicators, train the GBM, and produce trading predictions.
+ The constructor definition is shown below. The class is designed to train at the end of each month, using the
+ previous 4 weeks of data to fit the GBM that consists of 20 stumps (regression trees with 2 leaves). To ensure
+ overnight holds are avoided, the class uses
+ Scheduled Events to stop trading
+ near the market close.
+
+
+
+class SymbolData:
+ def __init__(self, symbol, algorithm, hold_duration, k_start=0.5, k_end=5,
+ k_step=0.25, training_weeks=4, max_depth=1, num_leaves=2, num_trees=20,
+ commission=0.02, spread_cost=0.03):
+ self.symbol = symbol
+ self.algorithm = algorithm
+ self.hold_duration = hold_duration
+ self.resolution = algorithm.UniverseSettings.Resolution
+ self.training_length = int(training_weeks * 5 * 6.5 * 60) # training_weeks in minutes
+ self.max_depth = max_depth
+ self.num_leaves = num_leaves
+ self.num_trees = num_trees
+ self.cost = commission + spread_cost
+
+ self.indicator_consolidators = []
+
+ # Train a model at the end of each month
+ self.model = None
+ algorithm.Train(algorithm.DateRules.MonthEnd(symbol),
+ algorithm.TimeRules.BeforeMarketClose(symbol),
+ self.train)
+
+ # Avoid overnight holds
+ self.allow_predictions = False
+ self.events = [
+ algorithm.Schedule.On(algorithm.DateRules.EveryDay(symbol),
+ algorithm.TimeRules.AfterMarketOpen(symbol, 0),
+ self.start_predicting),
+ algorithm.Schedule.On(algorithm.DateRules.EveryDay(symbol),
+ algorithm.TimeRules.BeforeMarketClose(symbol, hold_duration + 1),
+ self.stop_predicting)
+ ]
+
+ self.setup_indicators(k_start, k_end, k_step)
+ self.train()
+
+
+
+
+GBM Predictions
+
+ For brevity, we omit the model training logic. Although, the code can be seen in the attached backtest. To make
+ predictions, we define the following method inside the SymbolData class. A position is held in the predicted
+ direction only if the predicted return in that direction exceeds the cost of the trade.
+
+
+
+def predict_direction(self):
+ if self.model is None or not self.allow_predictions:
+ return 0
+
+ input_data = [[]]
+ for _, indicators in self.indicators_by_indicator_type.items():
+ for indicator in indicators:
+ input_data[0].append(indicator.Current.Value)
+
+ return_prediction = self.model.predict(input_data)
+ if return_prediction > self.cost:
+ return 1
+ if return_prediction < -self.cost:
+ return -1
+ return 0
+
+
+
+
+Alpha Update
+
+ As new TradeBars are provided to the alpha model's Update method, each SymbolData object makes a directional
+ prediction for its security. If the prediction is not flat, the alpha model emits an insight in that direction with
+ a duration of 10 minutes.
+
+
+
+def Update(self, algorithm, data):
+ insights = []
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ direction = symbol_data.predict_direction()
+ if direction:
+ hold_duration = timedelta(minutes=self.hold_duration) # Should match universe resolution
+ insights.append(Insight.Price(symbol, hold_duration, direction, None, None, None, self.weight))
+
+ return insights
+
+
+
+
+Portfolio Construction & Trade Execution
+
+ Following the guidelines of Alpha Streams
+ and the Quant League competition, we
+ utilize the
+ InsightWeightingPortfolioConstructionModel and the
+
+ ImmediateExecutionModel.
+
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html b/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html
new file mode 100644
index 0000000..223e7f3
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html b/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html
new file mode 100644
index 0000000..88d08bf
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html
@@ -0,0 +1,53 @@
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ Variance
+
+
+
+
+ 5 Year Backtest
+ 9/1/2015
+ 9/17/2020
+ Strategy
+ -0.716
+ 0.006
+
+
+ Benchmark
+ 0.845
+ 0.036
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ -2.879
+ 0.101
+
+
+ Benchmark
+ -1.243
+ 0.628
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ -2.329
+ 0.027
+
+
+ Benchmark
+ 13.761
+ 0.149
+
+
+
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html b/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html
new file mode 100644
index 0000000..d2ac60d
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html
@@ -0,0 +1,13 @@
+
+ Although this strategy passes several of the
+ metrics required for Alpha Streams
+ and the Quant League competition, it requires further work to pass the following requirements:
+
+
+
+
+ - Profitable
+ - PSR >= 80%
+ - Max drawdown duration <= 6 months
+ - Handles dividends and splits
+
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html b/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html
new file mode 100644
index 0000000..10701d6
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html
@@ -0,0 +1,17 @@
+
+ The GBM implemented in this tutorial has a lower Sharpe ratio than the S&P 500 index ETF benchmark over the periods
+ we tested. However, the strategy generates a lower annual variance over all the testing period, implying more
+ consistent returns than buy-and-hold. To continue the development of this strategy, future areas of research
+ include:
+
+
+
+ - Adjusting parameters in the GradientBoostingAlphaModel and SymbolData classes
+ - Testing other custom loss functions
+ - Changing the data resolution from minutes to seconds
+ - Using more/other technical indicators
+ -
+ Adding a model to predict the cost of trading (slippage, commissions, market impact) for each security instead of
+ prescribing a fixed amount
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/08 References.html b/04 Strategy Library/1033 Gradient Boosting Model/08 References.html
new file mode 100644
index 0000000..385172c
--- /dev/null
+++ b/04 Strategy Library/1033 Gradient Boosting Model/08 References.html
@@ -0,0 +1,5 @@
+
+ -
+ Zhou, Nan and Cheng, Wen and Qin, Yichen and Yin, Zongcheng, Evolution of High Frequency Systematic Trading: A Performance-Driven Gradient Boosting Model (September 10, 2013). Online copy
+
+
\ No newline at end of file
From 79fc67e91a61a0b9fc43f2859bb4ca797db73379 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 16 Oct 2020 16:41:39 -0700
Subject: [PATCH 185/215] fixed typos
---
.../01 Abstract.html | 2 +-
.../02 Introduction.html | 14 +++++------
.../03 Method.html | 24 +++++++++----------
3 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html
index fb88b27..a93480f 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html
@@ -1,3 +1,3 @@
- In this tutorial, we apply an SVM Wavelet model in attempt to forecast EURJPY prices.
+ In this tutorial, we apply an SVM Wavelet model in an attempt to forecast EURJPY prices.
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
index 168b024..986ebed 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
@@ -1,10 +1,10 @@
Several methods have been developed to forecast time-series, from ARIMA to Neural Networks. In this strategy, we
- combine a Support Vector Machine (SVM) and Wavelets in an attempt to forecast EURJPY. Although SVMs are most often
- used for classification problems, such as classifying proteins, they can also be applied in regression problems, and
- are able to handle non-linear data. Wavelets are often applied in Signal Processing applications, and they can be
- used to decompose a time-series into multiple components, and each component can be denoised using thresholding, so
- when they are recombined, the original time-series becomes cleaner. We can combine these models by applying SVMs to
- forecast the individual components of a time-series decomposed by Wavelets, and recombine them for an aggregate
- forecast, which we detail in the Method section.
+ combine a Support Vector Machine (SVM) and Wavelets in an attempt to forecast EURJPY. Although SVMs are generally
+ used for classification problems, such as classifying proteins, they can also be applied in regression problems, valued
+ for their ability to handle non-linear data. Furthermore, Wavelets are often applied in Signal Processing applications. Wavelets allows us
+ to decompose a time-series into multiple components, where each individual component can be denoised using thresholding, and this
+ leads to a cleaner time-series after the components are recombined. To use these two models in conjunction, we first
+ decompose the EURJPY data into components using Wavelet decomposition, then we apply the SVM to forecast one time-step
+ ahead each of the components. After we recombine the components, we get the aggregate forecast of our SVM-Wavelet model.
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
index 6651dd7..5cd8e93 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html
@@ -7,7 +7,7 @@
- w = pywt.Wavelet('sym10')
+w = pywt.Wavelet('sym10')
To determine the length of the data we’d need for a certain number of levels after decomposition, we can solve for:
@@ -23,7 +23,7 @@
- coeffs = pywt.wavedec(data, w)
+coeffs = pywt.wavedec(data, w)
@@ -33,24 +33,24 @@
- for i in range(len(coeffs)):
- if i > 0:
- # we don't want to threshold the approximation coefficients
- coeffs[i] = pywt.threshold(coeffs[i], threshold*max(coeffs[i]))
- forecasted = __svm_forecast(coeffs[i])
- coeffs[i] = np.roll(coeffs[i], -1)
- coeffs[i][-1] = forecasted
+for i in range(len(coeffs)):
+ if i > 0:
+ # we don't want to threshold the approximation coefficients
+ coeffs[i] = pywt.threshold(coeffs[i], threshold*max(coeffs[i]))
+ forecasted = __svm_forecast(coeffs[i])
+ coeffs[i] = np.roll(coeffs[i], -1)
+ coeffs[i][-1] = forecasted
The __svm_forecast method fits partitioned data to an SVM model then predicts one value into the
- future, and can be found under SVMWavelet.py file under Algorithm
+ future, and can be found under SVMWavelet.py file under the Algorithm section
Once we forecast one value into the future, we can aggregate the forecasts by recombining the components into a simple time-series. We do this with:
- datarec = pywt.waverec(coeffs, w)
+datarec = pywt.waverec(coeffs, w)
Since we want the aggregate forecast one time-step into the future, we return the last element of this time-series, or datarec[-1].
-Our trading rules are simple: feed in the past 152 points of daily closing prices of EURJPY into our SVM Wavelet forecasting method, and divide that number by the current close of EURJPY to get the forecasted percent change. Then, we emit an Insight based on the direction of the percent change with the weight of the Insight as the absolute value of the percent change. We use the InsightWeightPortfolioConstructionModel so that the weight of the Insight determines the portfolio allocation percentage, which means larger forecasted moves will have larger allocation.
+Our trading rules are simple: feed in the past 152 points of daily closing prices of EURJPY into our SVM Wavelet forecasting method, and divide that number by the current close of EURJPY to get the forecasted percent change. Then, we emit an Insight based on the direction of the percent change with the weight of the Insight as the absolute value of the percent change. We use the InsightWeightPortfolioConstructionModel so that the weight of the Insight determines the portfolio allocation percentage, which means larger forecasted moves will have a larger allocation.
From 09e9a54af61023974d291b481fa7cce0cfdeb8b9 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 16 Oct 2020 16:43:02 -0700
Subject: [PATCH 186/215] fixed typos
---
.../1031 SVM Wavelet Forecasting/02 Introduction.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
index 986ebed..6fe7274 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html
@@ -2,9 +2,9 @@
Several methods have been developed to forecast time-series, from ARIMA to Neural Networks. In this strategy, we
combine a Support Vector Machine (SVM) and Wavelets in an attempt to forecast EURJPY. Although SVMs are generally
used for classification problems, such as classifying proteins, they can also be applied in regression problems, valued
- for their ability to handle non-linear data. Furthermore, Wavelets are often applied in Signal Processing applications. Wavelets allows us
+ for their ability to handle non-linear data. Furthermore, Wavelets are often applied in Signal Processing applications. Wavelets allow us
to decompose a time-series into multiple components, where each individual component can be denoised using thresholding, and this
leads to a cleaner time-series after the components are recombined. To use these two models in conjunction, we first
decompose the EURJPY data into components using Wavelet decomposition, then we apply the SVM to forecast one time-step
- ahead each of the components. After we recombine the components, we get the aggregate forecast of our SVM-Wavelet model.
+ ahead of each of the components. After we recombine the components, we get the aggregate forecast of our SVM-Wavelet model.
From f1cfa4561d7fcba2cdd7d2a88794e1140eab2a69 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 23 Oct 2020 16:29:26 -0600
Subject: [PATCH 187/215] Add relative metrics to news sentiment strategy
---
.../01 Abstract.html | 3 ++-
.../05 Conclusion.html | 13 +++++++------
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
index 387cf48..d02e534 100644
--- a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html
@@ -3,6 +3,7 @@
tutorial, we implement an intraday strategy to capitalize on the upward drift in the stock prices of drug
manufacturers following positive news releases. Our findings show that when combining the effect with the
day-of-the-week anomaly documented by Berument & Kiymaz (2001), there is enough directional accuracy for the
- trading system to remain profitable throughout the 2020 stock market crash. The algorithm we design here is
+ trading system to remain profitable throughout the 2020 stock market crash. However, the algorithm
+ underperforms the S&P 500 market index ETF, SPY, over the same time period. The algorithm we design here is
inspired by the work of Isah, Shah, & Zulkernine (2018).
diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html
index 553c5a6..8f0a19e 100644
--- a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html
+++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html
@@ -1,10 +1,11 @@
- We conclude that deploying the sentiment analysis strategy on the US drug manufacturer industry does not provide
- as accurate results as found by Isah et al (2018). The algorithm above achieves a win rate of 47%. However, with
- a 1.16 profit-loss ratio, it remains profitable throughout the 2020 stock market crash. Only after restricting
- trading to the most profitable day of the week (Berument & Kiymaz, 2001) does the strategy achieve profitability
- over this testing period. We attribute the decrease in performance to the commissions and spread costs simulated
- by LEAN.
+ We conclude that deploying the sentiment analysis strategy on the US drug manufacturing industry does not provide
+ as accurate of results as found by Isah et al (2018). Only after restricting trading to the most profitable day of
+ the week (Berument & Kiymaz, 2001) does the strategy achieve profitability over our testing period. Overall, the
+ strategy produces a Sharpe ratio of 0.116, while the
+ SPY benchmark
+ produces a 0.971 Sharpe ratio during the same period. We attribute the decrease in performance to the commissions
+ and spread costs simulated by LEAN.
From b606a4f8f03eba2060a611875de59a9f1ab12de2 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 23 Oct 2020 16:45:26 -0600
Subject: [PATCH 188/215] Add missing bracket to gradient boosting algo image
---
.../1033 Gradient Boosting Model/02 Background.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html b/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html
index 49f45d3..597b32d 100644
--- a/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html
+++ b/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html
@@ -7,7 +7,7 @@
-
+
From 95e76f2ef3d3722d5e05de72f769bda4b8a5921f Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 23 Oct 2020 15:52:54 -0700
Subject: [PATCH 189/215] updated algo
---
.../1031 SVM Wavelet Forecasting/04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
index 868c5d9..935af6f 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From acb4f1ffd84421887cfceeafd8ad4d7ae2e738d4 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 23 Oct 2020 15:53:37 -0700
Subject: [PATCH 190/215] updated resuls
---
.../1031 SVM Wavelet Forecasting/05 Results.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
index c80ae5c..96be5b5 100644
--- a/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
+++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html
@@ -1,4 +1,4 @@
-The performance of the algorithm was decent. Over the past five years, the algorithm achieved a Sharpe Ratio of 0.388,
+
The performance of the algorithm was decent. Over the past five years, the algorithm achieved a Sharpe Ratio of 0.252,
while buying and holding SPY over the same period would have achieved a Sharpe Ratio of 0.713. Some ideas for improvement include:
- Testing different Wavelet types (e.g. Daubechies)
From 37d0c973209b93184a39b7d0c4f04b2e89b1257c Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 23 Oct 2020 16:21:44 -0700
Subject: [PATCH 191/215] updated updated algo
---
04 Strategy Library/1030 G-Score Investing/04 Algorithm.html | 2 +-
04 Strategy Library/1030 G-Score Investing/05 Results.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
index 52a4b06..11f46e3 100644
--- a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
+++ b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/1030 G-Score Investing/05 Results.html b/04 Strategy Library/1030 G-Score Investing/05 Results.html
index cefd93b..f9af05b 100644
--- a/04 Strategy Library/1030 G-Score Investing/05 Results.html
+++ b/04 Strategy Library/1030 G-Score Investing/05 Results.html
@@ -1,5 +1,5 @@
Since we use Technology as the industry, we decided to use Nasdaq-100, or ^NDX, as the benchmark, which we track
- using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.5 from April 2016 to September 2020, and so it is
+ using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.491 from April 2016 to September 2020, and so it is
outperformed by simply holding QQQ, which yielded a Sharpe Ratio of 1.22 over the same period.
\ No newline at end of file
From fc5ef6d18ae739434b1f8cf9056d93879e759f71 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 23 Oct 2020 16:22:54 -0700
Subject: [PATCH 192/215] updated updated algo
---
04 Strategy Library/1030 G-Score Investing/03 Method.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/1030 G-Score Investing/03 Method.html b/04 Strategy Library/1030 G-Score Investing/03 Method.html
index b6ef87b..3a493ab 100644
--- a/04 Strategy Library/1030 G-Score Investing/03 Method.html
+++ b/04 Strategy Library/1030 G-Score Investing/03 Method.html
@@ -52,6 +52,6 @@
- Once we have computed the G-Scores for each of the securities, we long the securities with G-Scores of 5 or higher
+ Once we have computed the G-Scores for each of the securities, we long the securities with G-Scores of 5 or higher.
From ce40497bbf02d5587fe1229e825e93752c43adeb Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 23 Oct 2020 18:15:01 -0600
Subject: [PATCH 193/215] Make relative tables mobile friendly
---
.../05 Relative Performance.html | 2 ++
.../1026 Intraday ETF Momentum/05 Conclusion.html | 2 ++
.../05 Relative Performance.html | 2 ++
.../1033 Gradient Boosting Model/05 Relative Performance.html | 3 +++
4 files changed, 9 insertions(+)
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html
index fd71509..2d3e6c9 100644
--- a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html
+++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html
@@ -6,6 +6,7 @@
across all our testing periods is displayed in the table below.
+
@@ -72,6 +73,7 @@
+
diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
index ff087ea..bad583b 100644
--- a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
+++ b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html
@@ -7,6 +7,7 @@
A breakdown of the results from all of the testing periods can be seen in the table below.
+
@@ -73,6 +74,7 @@
+
diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html
index a1d1610..07a20e4 100644
--- a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html
+++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html
@@ -17,6 +17,7 @@
frames, implying that the strategy has more consistent returns than the benchmark.
+
@@ -83,6 +84,7 @@
+
We find the lack of performance for this strategy is not largely attributed to the transaction costs. After
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html b/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html
index 88d08bf..415eea9 100644
--- a/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html
+++ b/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html
@@ -1,3 +1,4 @@
+
@@ -51,3 +52,5 @@
+
+
From dd941cd87883482bba20bc09a2fca642bfd8c263 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 28 Oct 2020 16:08:48 -0700
Subject: [PATCH 194/215] fixed algo
---
04 Strategy Library/1030 G-Score Investing/04 Algorithm.html | 2 +-
04 Strategy Library/1030 G-Score Investing/05 Results.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
index 11f46e3..2c62d81 100644
--- a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
+++ b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/1030 G-Score Investing/05 Results.html b/04 Strategy Library/1030 G-Score Investing/05 Results.html
index f9af05b..5f327af 100644
--- a/04 Strategy Library/1030 G-Score Investing/05 Results.html
+++ b/04 Strategy Library/1030 G-Score Investing/05 Results.html
@@ -1,5 +1,5 @@
Since we use Technology as the industry, we decided to use Nasdaq-100, or ^NDX, as the benchmark, which we track
- using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.491 from April 2016 to September 2020, and so it is
+ using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.778 from April 2016 to September 2020, and so it is
outperformed by simply holding QQQ, which yielded a Sharpe Ratio of 1.22 over the same period.
\ No newline at end of file
From 9f30601e58cecd646ecd46f69cce5a57b8750c3a Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Thu, 5 Nov 2020 17:36:42 -0800
Subject: [PATCH 195/215] fixed algorithm
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html
index bcf0bc2..60c8e6c 100755
--- a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html
+++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From 9ef83b5ff7ad231b106bff7e7c0130719d0e3e94 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Fri, 6 Nov 2020 15:42:22 -0800
Subject: [PATCH 196/215] fixed algorithm
---
.../04 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html
index 60c8e6c..8586edb 100755
--- a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html
+++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
From 65f9e86bf866688998d76599ce3b80df25d45fc9 Mon Sep 17 00:00:00 2001
From: Shile Wen
Date: Wed, 11 Nov 2020 17:23:37 -0800
Subject: [PATCH 197/215] fixed algorithm
---
.../05 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html
index f47a119..645e3da 100755
--- a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html
+++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
From 0f13ec60484bfa85c7097f358515b5717152dbf2 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Thu, 19 Nov 2020 18:37:06 -0700
Subject: [PATCH 198/215] Adds gaussian naive bayes model strategy
---
.../01 Strategy Library.php | 9 +
.../01 Abstract.html | 7 +
.../02 Background.html | 44 ++++
.../03 Method.html | 223 ++++++++++++++++++
.../04 Algorithm.html | 6 +
.../05 Relative Performance.html | 56 +++++
...06 Market & Competition Qualification.html | 12 +
.../07 Conclusion.html | 17 ++
.../08 References.html | 12 +
9 files changed, 386 insertions(+)
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Method.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Algorithm.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Relative Performance.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Market & Competition Qualification.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Conclusion.html
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/08 References.html
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 2edbaff..9fdb414 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -714,6 +714,15 @@
],
'description' => "Analyzes the news releases of drug manufacturers and places intraday trades for the stocks with positive news.",
'tags'=>'Equities, NLP, News Sentiment, Drug Manufacturers, Tiingo, Intraday'
+ ],
+ [
+ 'name' => 'Gaussian Naive Bayes Model',
+ 'link' => 'strategy-library/gaussian-naive-bayes-model',
+ 'sources' => [
+ 'Academia' => 'https://www.academia.edu/7677227/Forecasting_the_direction_of_stock_market_index_movement_using_three_data_mining_techniques_the_case_of_Tehran_Stock_Exchange'
+ ],
+ 'description' => "Analyzes the news releases of drug manufacturers and places intraday trades for the stocks with positive news.",
+ 'tags'=>'Equities, Machine Learning, Naive Bayes, Gaussian'
]
];
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html
new file mode 100644
index 0000000..9421bb8
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html
@@ -0,0 +1,7 @@
+
+ Naïve Bayes models have become popular for their success in spam email filtering. In this tutorial, we train
+ Gaussian Naïve Bayes (GNB) classifiers to forecast the daily returns of stocks in the technology sector given the
+ historical returns of the sector. Our implementation shows the strategy has a greater Sharpe and lower variance
+ than the SPY ETF over a 5 year backtest and during the 2020 stock market crash. The algorithm we build here follows
+ the research done by Lu (2016) and Imandoust & Bolandraftar (2014).
+
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html
new file mode 100644
index 0000000..2643372
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html
@@ -0,0 +1,44 @@
+
+ Naïve Bayes models classify observations into a set of classes by utilizing
+ Bayes’ Theorem
+
+
+\[\text{posterior} = \frac{ \text{prior } * \text{ likelihood} } {\text{evidence}}\]
+
+
+ In symbols, this translates to
+
+
+\[P(c_i | x_1, ..., x_n) = \frac{P(c_i)P(x_1, ..., x_n | c_i)}{P(x_1, ..., x_n)}\]
+where \(c_i\) represents one of the \(m\) classes and \(x_1, ..., x_n\) are the features.
+
+
+ The Naïve Bayes model assumes the features are independent, so that
+
+
+\[P(c_i | x_1, ..., x_n) = \frac{P(c_i)\prod_{j=1}^{n} P(x_j | c_i)}{P(x_1, ..., x_n)} \propto P(c_i)\prod_{j=1}^{n} P(x_j|c_i)\]
+
+
+ The class that is most probable given the observation is then determined by solving
+
+
+\[\hat{c} = \arg\max_{i \in \{1, ..., m\}} P(c_i) \prod_{j=1}^{n} P(x_j | c_i)\]
+
+
+
+ In our use case, the classes in the model are: positive, negative, or flat future return for a security. The features
+ are the last 4 daily returns of the universe constituents. Since we are dealing with continuous data, we extend the
+ model to a GNB model by replacing \(P(x_j|c_i)\) in the equation above. First, we find the mean \(\mu_j\) and standard
+ deviation \(\sigma_j^2\) of the \(x_j\) feature vector in the training set labeled class \(c_i\). A normal distribution
+ parameterized by \(\mu_j\) and \(\sigma_j^2\) is then used to determine the likelihood of the observations. If \(o\) is the
+ observation for the \(j\)th feature. The likelihood of the observation given the class \(c_i\) is
+
+
+\[P(x_j = o | c_i) = \frac{1} {\sqrt{2 \pi{} \sigma{}_j^2 }}e^{- \frac{(o - \mu{}_j)^2} {2 \sigma{}_j^2} \]
+
+
+ The mechanics of the GNB model can be seen visually in
+ this video. Note that the GNB model has 2 underlying
+ assumptions: the feature vectors are independent and normally distributed. We do not test for these properties, but
+ rather leave it as an area of future research.
+
\ No newline at end of file
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Method.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Method.html
new file mode 100644
index 0000000..8ef11c2
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Method.html
@@ -0,0 +1,223 @@
+Universe Selection
+
+ Following Lu (2016), we implement a custom universe selection model to select the largest stocks from the technology
+ sector. We restrict our universe to have a size of 10, but this can be easily customized via the `fine_size`
+ parameter in the constructor.
+
+
+
+class BigTechUniverseSelectionModel(FundamentalUniverseSelectionModel):
+ def __init__(self, fine_size=10):
+ self.fine_size = fine_size
+ self.month = -1
+ super().__init__(True)
+
+ def SelectCoarse(self, algorithm, coarse):
+ if algorithm.Time.month == self.month:
+ return Universe.Unchanged
+ return [ x.Symbol for x in coarse if x.HasFundamentalData ]
+
+ def SelectFine(self, algorithm, fine):
+ self.month = algorithm.Time.month
+
+ tech_stocks = [ f for f in fine if f.AssetClassification.MorningstarSectorCode == MorningstarSectorCode.Technology ]
+ sorted_by_market_cap = sorted(tech_stocks, key=lambda x: x.MarketCap, reverse=True)
+ return [ x.Symbol for x in sorted_by_market_cap[:self.fine_size] ]
+
+
+
+
+Alpha Construction
+
+ The GaussianNaiveBayesAlphaModel predicts the direction each security will move from a given day’s open to the next
+ day’s open. When constructing this alpha model, we set up a dictionary to hold a SymbolData object for each symbol
+ in the universe and a flag to show the universe has changed.
+
+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+ symbol_data_by_symbol = {}
+ new_securities = False
+
+
+
+
+Alpha Securities Management
+
+ When a new security is added to the universe, we create a SymbolData object for it to store information unique to
+ the security. The management of the SymbolData objects occurs in the alpha model's OnSecuritiesChanged method. In
+ this algorithm, since we train the Gaussian Naive Bayes classifier using the historical returns of the securities
+ in the universe, we flag to train the model every time the universe changes.
+
+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+ ...
+
+ def OnSecuritiesChanged(self, algorithm, changes):
+ for security in changes.AddedSecurities:
+ self.symbol_data_by_symbol[security.Symbol] = SymbolData(security, algorithm)
+
+ for security in changes.RemovedSecurities:
+ symbol_data = self.symbol_data_by_symbol.pop(security.Symbol, None)
+ if symbol_data:
+ symbol_data.dispose()
+
+ self.new_securities = True
+
+
+
+
+SymbolData Class
+
+ The SymbolData class is used to store training data for the GaussianNaiveBayesAlphaModel and manage a consolidator
+ subscription. In the constructor, we specify the training parameters, setup the consolidator, and warm up the
+ training data.
+
+
+
+class SymbolData:
+ def __init__(self, security, algorithm, num_days_per_sample=4, num_samples=100):
+ self.exchange = security.Exchange
+ self.symbol = security.Symbol
+ self.algorithm = algorithm
+ self.num_days_per_sample = num_days_per_sample
+ self.num_samples = num_samples
+ self.previous_open = 0
+ self.model = None
+
+ # Setup consolidators
+ self.consolidator = TradeBarConsolidator(timedelta(days=1))
+ self.consolidator.DataConsolidated += self.CustomDailyHandler
+ algorithm.SubscriptionManager.AddConsolidator(self.symbol, self.consolidator)
+
+ # Warm up ROC lookback
+ self.roc_window = np.array([])
+ self.labels_by_day = pd.Series()
+
+ data = {f'{self.symbol.ID}_(t-{i})' : [] for i in range(1, num_days_per_sample + 1)}
+ self.features_by_day = pd.DataFrame(data)
+
+ lookback = num_days_per_sample + num_samples + 1
+ history = algorithm.History(self.symbol, lookback, Resolution.Daily)
+ if history.empty or 'close' not in history:
+ algorithm.Log(f"Not enough history for {self.symbol} yet")
+ return
+
+ history = history.loc[self.symbol]
+ history['open_close_return'] = (history.close - history.open) / history.open
+
+ start = history.shift(-1).open
+ end = history.shift(-2).open
+ history['future_return'] = (end - start) / start
+
+ for day, row in history.iterrows():
+ self.previous_open = row.open
+ if self.update_features(day, row.open_close_return) and not pd.isnull(row.future_return):
+ row = pd.Series([np.sign(row.future_return)], index=[day])
+ self.labels_by_day = self.labels_by_day.append(row)[-self.num_samples:]
+
+
+
+
+ The update_features method is called to update our training features with the latest data passed to the algorithm.
+ It returns True/False, representing if the features are in place to start updating the training labels.
+
+
+
+
+class SymbolData:
+ ...
+
+ def update_features(self, day, open_close_return):
+ self.roc_window = np.append(open_close_return, self.roc_window)[:self.num_days_per_sample]
+
+ if len(self.roc_window) < self.num_days_per_sample:
+ return False
+
+ self.features_by_day.loc[day] = self.roc_window
+ self.features_by_day = self.features_by_day[-(self.num_samples+2):]
+ return True
+
+
+
+
+
+
+Model Training
+
+ The GNB model is trained each day the universe has changed. By default, it uses 100 samples to train. The features
+ are the historical open-to-close returns of the universe constituents. The labels are the returns from the open at
+ T+1 to the open at T+2 at each time step for each security.
+
+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+ ...
+
+ def train(self):
+ features = pd.DataFrame()
+ labels_by_symbol = {}
+
+ # Gather training data
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ if symbol_data.IsReady:
+ features = pd.concat([features, symbol_data.features_by_day], axis=1)
+ labels_by_symbol[symbol] = symbol_data.labels_by_day
+
+ # Train the GNB model
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ if symbol_data.IsReady:
+ symbol_data.model = GaussianNB().fit(features.iloc[:-2], labels_by_symbol[symbol])
+
+
+
+
+Alpha Update
+
+ As new TradeBars are provided to the alpha model's Update method, we collect the latest TradeBar’s open-to-close
+ return for each security in the universe. We then predict the direction of each security using the security’s
+ corresponding GNB model, and return insights accordingly.
+
+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+ ...
+
+ def Update(self, algorithm, data):
+ if self.new_securities:
+ self.train()
+ self.new_securities = False
+
+ tradable_symbols = {}
+ features = [[]]
+
+ for symbol, symbol_data in self.symbol_data_by_symbol.items():
+ if data.ContainsKey(symbol) and data[symbol] is not None and symbol_data.IsReady:
+ tradable_symbols[symbol] = symbol_data
+ features[0].extend(symbol_data.features_by_day.iloc[-1].values)
+
+ insights = []
+ if len(tradable_symbols) == 0:
+ return []
+ weight = 1 / len(tradable_symbols)
+ for symbol, symbol_data in tradable_symbols.items():
+ direction = symbol_data.model.predict(features)
+ if direction:
+ insights.append(Insight.Price(symbol, data.Time + timedelta(days=1, seconds=-1),
+ direction, None, None, None, weight))
+
+ return insights
+
+
+
+
+Portfolio Construction & Trade Execution
+
+ Following the guidelines of Alpha Streams
+ and the Quant League competition, we
+ utilize the
+ InsightWeightingPortfolioConstructionModel and the
+
+ ImmediateExecutionModel.
+
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Algorithm.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Algorithm.html
new file mode 100644
index 0000000..7f48965
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Algorithm.html
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Relative Performance.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Relative Performance.html
new file mode 100644
index 0000000..3ddfffe
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Relative Performance.html
@@ -0,0 +1,56 @@
+
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ Variance
+
+
+
+
+ 5 Year Backtest
+ 10/1/2015
+ 10/13/2020
+ Strategy
+ 0.97
+ 0.016
+
+
+ Benchmark
+ 0.805
+ 0.029
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ -0.981
+ 0.353
+
+
+ Benchmark
+ -1.4
+ 0.474
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ -2.011
+ 0.035
+
+
+ Benchmark
+ 8.765
+ 0.103
+
+
+
+
+
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Market & Competition Qualification.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Market & Competition Qualification.html
new file mode 100644
index 0000000..d16c9d8
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Market & Competition Qualification.html
@@ -0,0 +1,12 @@
+
+ Although this strategy passes several of the
+ metrics required for Alpha Streams
+ and the Quant League competition, it requires further work to pass the following requirements:
+
+
+
+ - PSR >= 80%
+ - Max drawdown duration <= 6 months
+ - Handles dividends and splits
+ - Minute or second data resolution
+
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Conclusion.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Conclusion.html
new file mode 100644
index 0000000..99f052c
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Conclusion.html
@@ -0,0 +1,17 @@
+
+ The GNB model strategy implemented in this tutorial produced a greater Sharpe ratio and lower annual variance than
+ buying and holding the S&P 500 index ETF benchmark over the backtesting period. In addition to outperforming during
+ the entire backtest, the strategy also outperformed during the 2020 stock market crash.
+
+
+
+ To continue the development of this strategy, future areas of research include:
+
+
+
+ - Adjusting parameters in the SymbolData class
+ - Trying other features and labels for the GNB model
+ - Adjusting the universe parameters and targeted sector
+ - Adding handlers for corporate actions
+ - Filter for stocks with independent and normal returns
+
\ No newline at end of file
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 References.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 References.html
new file mode 100644
index 0000000..0320284
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 References.html
@@ -0,0 +1,12 @@
+
+ -
+ Imandoust, S. B., & Mohammad, B. (2014). Forecasting the direction of stock market index movement using three
+ data mining techniques: the case of Tehran Stock Exchange. Journal of Engineering Research and Applications,
+ 6(2), 106-117.
+ Online copy
+
+ -
+ Lu, N. (2016). A Machine Learning Approach to Automated Trading.
+ Online copy
+
+
\ No newline at end of file
From 93cfc1f62b1904001eb57a767e167956284b646b Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Thu, 19 Nov 2020 18:39:43 -0700
Subject: [PATCH 199/215] Fix description
---
04 Strategy Library/00 Strategy Library/01 Strategy Library.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
index 9fdb414..9fc944f 100644
--- a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
+++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php
@@ -721,7 +721,7 @@
'sources' => [
'Academia' => 'https://www.academia.edu/7677227/Forecasting_the_direction_of_stock_market_index_movement_using_three_data_mining_techniques_the_case_of_Tehran_Stock_Exchange'
],
- 'description' => "Analyzes the news releases of drug manufacturers and places intraday trades for the stocks with positive news.",
+ 'description' => "Forecasts the next day's return of technology stocks by fitting a gaussian naive bayes model to the historical returns of the technology sector constituents.",
'tags'=>'Equities, Machine Learning, Naive Bayes, Gaussian'
]
];
From 28e73de28c4e10b564278a805f5b34dc8ec725c8 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Thu, 19 Nov 2020 20:56:41 -0700
Subject: [PATCH 200/215] Fix latex error
---
.../1036 Gaussian Naive Bayes Model/02 Background.html | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html
index 2643372..f576900 100644
--- a/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html
@@ -10,7 +10,10 @@
\[P(c_i | x_1, ..., x_n) = \frac{P(c_i)P(x_1, ..., x_n | c_i)}{P(x_1, ..., x_n)}\]
-where \(c_i\) represents one of the \(m\) classes and \(x_1, ..., x_n\) are the features.
+
+
+ where \(c_i\) represents one of the \(m\) classes and \(x_1, ..., x_n\) are the features.
+
The Naïve Bayes model assumes the features are independent, so that
@@ -34,7 +37,7 @@
observation for the \(j\)th feature. The likelihood of the observation given the class \(c_i\) is
-\[P(x_j = o | c_i) = \frac{1} {\sqrt{2 \pi{} \sigma{}_j^2 }}e^{- \frac{(o - \mu{}_j)^2} {2 \sigma{}_j^2} \]
+\[P(x_j = o | c_i) = \frac{1} {\sqrt{2 \pi{} \sigma{}_j^2 }}e^{- \frac{(o - \mu{}_j)^2} {2 \sigma{}_j^2}} \]
The mechanics of the GNB model can be seen visually in
From a8b4090d6a95dd4a58b59c3a55551e730a6c9590 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 20 Nov 2020 19:13:33 -0700
Subject: [PATCH 201/215] Add video walkthrough
---
.../03 Video Walkthrough.html | 5 +++++
.../{03 Method.html => 04 Method.html} | 0
.../{04 Algorithm.html => 05 Algorithm.html} | 0
...elative Performance.html => 06 Relative Performance.html} | 0
...ation.html => 07 Market & Competition Qualification.html} | 0
.../{07 Conclusion.html => 08 Conclusion.html} | 0
.../{08 References.html => 09 References.html} | 0
7 files changed, 5 insertions(+)
create mode 100644 04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html
rename 04 Strategy Library/1036 Gaussian Naive Bayes Model/{03 Method.html => 04 Method.html} (100%)
rename 04 Strategy Library/1036 Gaussian Naive Bayes Model/{04 Algorithm.html => 05 Algorithm.html} (100%)
rename 04 Strategy Library/1036 Gaussian Naive Bayes Model/{05 Relative Performance.html => 06 Relative Performance.html} (100%)
rename 04 Strategy Library/1036 Gaussian Naive Bayes Model/{06 Market & Competition Qualification.html => 07 Market & Competition Qualification.html} (100%)
rename 04 Strategy Library/1036 Gaussian Naive Bayes Model/{07 Conclusion.html => 08 Conclusion.html} (100%)
rename 04 Strategy Library/1036 Gaussian Naive Bayes Model/{08 References.html => 09 References.html} (100%)
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html
new file mode 100644
index 0000000..3a3ef40
--- /dev/null
+++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Method.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html
similarity index 100%
rename from 04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Method.html
rename to 04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Algorithm.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html
similarity index 100%
rename from 04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Algorithm.html
rename to 04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Relative Performance.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html
similarity index 100%
rename from 04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Relative Performance.html
rename to 04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Market & Competition Qualification.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html
similarity index 100%
rename from 04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Market & Competition Qualification.html
rename to 04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Conclusion.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html
similarity index 100%
rename from 04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Conclusion.html
rename to 04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 References.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html
similarity index 100%
rename from 04 Strategy Library/1036 Gaussian Naive Bayes Model/08 References.html
rename to 04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html
From 227973336f5633a840abd9953f1ae0734f471070 Mon Sep 17 00:00:00 2001
From: Alexandre Catarino
Date: Tue, 8 Dec 2020 21:47:33 +0000
Subject: [PATCH 202/215] Update Link to The Refernce
Using https://www.dropbox.com/s/bfkvrggydf06rxq/Factor%20Based%20Stock%20Selection%20Model.pdf
---
.../05 References.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html
index 145c7bf..4d6f9c3 100644
--- a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html
+++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html
@@ -1,5 +1,5 @@
-
- Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy
+ Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy
From d204c4e0e21e02048a61ae7b4363b4c1234641bb Mon Sep 17 00:00:00 2001
From: Alexandre Catarino
Date: Tue, 8 Dec 2020 21:49:01 +0000
Subject: [PATCH 203/215] Update Reference in Chinese Version
Using https://www.dropbox.com/s/bfkvrggydf06rxq/Factor%20Based%20Stock%20Selection%20Model.pdf
---
...05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html"
index 145c7bf..4d6f9c3 100644
--- "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html"
+++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html"
@@ -1,5 +1,5 @@
-
- Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy
+ Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy
From 55297e639875aa0a4ccf7f107e9c7b062355b099 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Wed, 10 Feb 2021 16:32:44 -0700
Subject: [PATCH 204/215] Update Short Term Reversal strategy tutorial and
algorithm
---
.../01 Abstract.html | 12 +-
.../02 Method.html | 182 +++++++++++-------
.../03 Summary.html | 5 -
.../04 Algorithm.html | 2 +-
.../05 References.html | 5 -
.../05 Relative Performance.html | 56 ++++++
...07 Market & Competition Qualification.html | 13 ++
.../08 Conclusion.html | 16 ++
.../09 References.html | 6 +
9 files changed, 208 insertions(+), 89 deletions(-)
delete mode 100755 04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/03 Summary.html
delete mode 100644 04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 References.html
create mode 100644 04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html
create mode 100644 04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html
create mode 100644 04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html
create mode 100644 04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html
index eae0057..e1419ee 100755
--- a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html
@@ -1,8 +1,8 @@
- This strategy is called Short-Term Reversal Strategy which is discussed in detail in the paper written by Wilma de Groot, Joop Huij and Weili Zhou (2011) titled "Another look at trading costs and short-term reversal profits". The standard reversal strategy takes the whole universe of stocks into consideration, while this paper limits the stock universe only to large cap stocks so that trading costs could be significantly reduced.
-
-
- One simple version of this strategy could be described like this: The investment universe consists of 100 biggest companies by market capitalization. We go long on the 10% stocks which have the lowest performances in the last month while going short on the 10% stocks with the highest ones. The portfolio is rebalanced weekly.
- In the paper, however, strategies with different investment universes and different rebalancing frequencies are all backtested. The results show that, the larger the size of the investment universe, the larger the trading costs caused by extensively trading in small cap stocks which are less liquid; and trading costs become substantially lower when the rebalancing frequency is decreased from daily to weekly, but so do gross returns.
- In this tutorial, we only use 100 stocks with weekly rebalancing for illustration.
+ In this tutorial, we implement a version of the short-term reversal strategy published by De Groot, Huij, & Zhou
+ (2012). The strategy works by observing the returns of each security in the universe over the previous month. Every
+ week, the algorithm longs the worst performers and shorts the top performers. The original strategy outlined in the
+ literature considers the entire universe of stocks when trading. To reduce trading costs, we limit our universe to
+ the most liquid large cap stocks. Our analysis shows the strategy underperforms the S&P 500 index during all our
+ backtest periods except the 2020 market crash.
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html
index a666b03..8b9f021 100755
--- a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html
@@ -1,103 +1,141 @@
- The strategy code mainly consists of three parts: Initialization, Warm Up, and Weekly Rebalancing.
+ The strategy code mainly consists of four parts: Initialization, Universe Selection, OnData, and OnSecuritiesChanged.
-Step 1: Initialization
+Algorithm Initialization
- In the Initialize function, we set up look-back period, beginning cash balance, the size of the investment universe, the number of traded stocks, etc. We use self._numOfWeeks to count?the number of weeks that have passed since the start date, and self._LastDay to indicate whether it is a new week. self._ifWarmUp is true when the self._numOfWeeks is 3, which means as long as next week's data come, we can make our investment decisions.??self._stocks is a list containing all the symbols of the 100 stocks that are taken into consideration. self._values is a dictionary with keys the stock symbols and values the lists containing the prices of stock each week since 4 weeks ago.
+ When initializing the algorithm, we add a coarse universe selection method and specify several parameters to use
+ when selecting securities.
-
-
- def Initialize(self):
- self.SetStartDate(2005, 1, 1)
- self.SetEndDate(2017, 5, 10)
- self.SetCash(1000000)
-
+
+class ShortTimeReversal(QCAlgorithm):
+ def Initialize(self):
+ # ...
+
self.UniverseSettings.Resolution = Resolution.Daily
- self.AddUniverse(self.CoarseSelectionFunction)
- self._numberOfSymbols = 100
- self._numberOfTradings = int(0.1 * self._numberOfSymbols)
-
- self._numOfWeeks = 0
- self._LastDay = -1
- self._ifWarmUp = False
-
- self._stocks = []
- self._values = {}
+ self.AddUniverse(self.SelectCoarse)
+
+ self.dollar_volume_selection_size = 100
+ self.roc_selection_size = int(0.1 * self.dollar_volume_selection_size)
+
+ self.lookback = 22
+ self.roc_by_symbol = {}
+ self.week = 0
+
-
- Also, we need to use?CoarseSelectionFunction to select 100 qualified stocks from the total stock universe. Here, we sort the total stock universe by each stock's DollarVolume in decreasing order. Then, we select the first 100 stocks that have the largest DollarVolume among all the stocks in the universe.
-
-
-
-def CoarseSelectionFunction(self, coarse):
- sortedByDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
- top100 = sortedByDollarVolume[:self._numberOfSymbols]
- return [i.Symbol for i in top100]
-
-
-Step 2:Warm Up
+
+Universe Selection
- Before we are able to make our investment decisions, we must have at least 4 weeks' data to calculate the performance, i.e. the monthly return, of each stock. Hence, we need a warm up period as long as 3 weeks to accumulate price series, so that once the fourth week's data come we can calculate?the return of the whole month.
+ The coarse universe selection method creates a RateOfChange
+ indicator for each of the top 100
+ most liquid securities in the market. Upon creation, the indicator is manually warmed-up with historical closing
+ prices. After the indicators are ready, the universe selects the securities with the 10 best and 10 worst
+ RateOfChange values.
+
+class ShortTimeReversal(QCAlgorithm):
+ # ...
+
+ def SelectCoarse(self, coarse):
+
+ # We should keep a dictionary for all securities that have been selected
+ for cf in coarse:
+ symbol = cf.Symbol
+ if symbol in self.roc_by_symbol:
+ self.roc_by_symbol[symbol].Update(cf.EndTime, cf.AdjustedPrice)
+
+ # Refresh universe each week
+ week_number = self.Time.date().isocalendar()[1]
+ if week_number == self.week:
+ return Universe.Unchanged
+ self.week = week_number
+
+ # sort and select by dollar volume
+ sortedByDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
+ selected = {cf.Symbol: cf for cf in sortedByDollarVolume[:self.dollar_volume_selection_size]}
+
+ # New selections need a history request to warm up the indicator
+ symbols = [k for k in selected.keys()
+ if k not in self.roc_by_symbol or not self.roc_by_symbol[k].IsReady]
+
+ if symbols:
+ history = self.History(symbols, self.lookback, Resolution.Daily)
+ if history.empty:
+ self.Log(f'No history for {", ".join([x.Value for x in symbols])}')
+ history = history.close.unstack(0)
+
+ for symbol in symbols:
-self._stocks = []
-self.uni_symbol = None
-symbols = self.UniverseManager.Keys
-for i in symbols:
- if str(i.Value) == "QC-UNIVERSE-COARSE-USA":
- self.uni_symbol = i
- for i in self.UniverseManager[self.uni_symbol].Members:
- self._stocks.append(i.Value.Symbol)
- self._values[i.Value.Symbol] = [self.Securities[i.Value.Symbol].Price]
+ if symbol not in history:
+ continue
+ # Create and warm-up the RateOfChange indicator
+ roc = RateOfChange(self.lookback)
+ for time, price in history[symbol].dropna().iteritems():
+ roc.Update(time, price)
+
+ if roc.IsReady:
+ self.roc_by_symbol[symbol] = roc
+
+ # Sort the symbols by their ROC values
+ selectedRateOfChange = {}
+ for symbol in selected.keys():
+ if symbol in self.roc_by_symbol:
+ selectedRateOfChange[symbol] = self.roc_by_symbol[symbol]
+ sortedByRateOfChange = sorted(selectedRateOfChange.items(), key=lambda kv: kv[1], reverse=True)
+
+ # Define the top and the bottom to buy and sell
+ self.rocTop = [x[0] for x in sortedByRateOfChange[:self.roc_selection_size]]
+ self.rocBottom = [x[0] for x in sortedByRateOfChange[-self.roc_selection_size:]]
+
+ return self.rocTop + self.rocBottom
-
- We get all the symbols of qualified stocks from UniverseManager and keep them in self._stocks which is a list. Then we create for each key in the dictionary self._values a list where its first week's price is stored. And every time new data come, we append the new price to the end of the list of each stock.
-
-
-for stock in self._stocks:
- self._values[stock].append(self.Securities[stock].Price)
-
-Step 3:Weekly Rebalancing
+The OnData Method
- After the warm-up period, we calculate monthly returns every week and based on the returns, we make our investment decisions.
+ As new data is passed to the OnData method, we issue orders to form a long-short portfolio. We long the securities
+ with the lowest RateOfChange values and short those with the largest values. After rebalancing, we clear the
+ `rocTop` and `rocBottom` lists to ensure we don’t trade again until the universe is refreshed.
-
+
+class ShortTimeReversal(QCAlgorithm):
+ # ...
-returns = {}
-for stock in self._stocks:
- newPrice = self.Securities[stock].Price
- oldPrice = self._values[stock].pop(0)
- self._values[stock].append(newPrice)
- returns[stock] = newPrice/oldPrice
+ def OnData(self, data):
+ # Rebalance
+ for symbol in self.rocTop:
+ self.SetHoldings(symbol, -0.5/len(self.rocTop))
+ for symbol in self.rocBottom:
+ self.SetHoldings(symbol, 0.5/len(self.rocBottom))
+
+ # Clear the list of securities we have placed orders for
+ # to avoid new trades before the next universe selection
+ self.rocTop.clear()
+ self.rocBottom.clear()
+
+The OnSecuritiesChanged Method
- Every week when new data come, we use them along with the data four weeks ago to calculate the monthly returns. At the same time, we remove the oldest data from our lists. This step is essential to prevent memory size exceeding the limit.
+ We are rebalancing the portfolio on a weekly basis, but securities can leave our defined universe between rebalance
+ days. To accommodate this, we liquidate any securities that are removed from the universe in the
+ OnSecuritiesChanged method.
-
+
+class ShortTimeReversal(QCAlgorithm):
+ # ...
-newArr = [(v,k) for k,v in returns.items()]
-newArr.sort()
-for ret, stock in newArr[self._numberOfTradings:-self._numberOfTradings]:
- self.SetHoldings(stock, 0)
-for ret, stock in newArr[0:self._numberOfTradings]:
- self.SetHoldings(stock, 0.5/self._numberOfTradings)
-for ret, stock in newArr[-self._numberOfTradings:]:
- self.SetHoldings(stock, -0.5/self._numberOfTradings)
+ def OnSecuritiesChanged(self, changes):
+ for security in changes.RemovedSecurities:
+ self.Liquidate(security.Symbol, 'Removed from Universe')
-
-
- Finally, we sort the returns in increasing order. For the stocks whose monthly returns fall into the first 10% (performed badly in last month), we long them; For those fall into the last 10% (performed well in last month), we short them. Others (between 10% and 90%) will be set to 0.
-
+
\ No newline at end of file
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/03 Summary.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/03 Summary.html
deleted file mode 100755
index 0c2b46e..0000000
--- a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/03 Summary.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
- In the paper, the look-back period is from 1990 to 2009. However, we want to test whether the strategy is still profitable in the new time period. Hence we use different look-back periods instead.
- If we begin from 2005 and end in 2017, there will be a total return of 131.50%. Although to some extent the performance of this strategy is dependent on different market situations,?nevertheless, in either situation mentioned above, this strategy could significantly beat the S&P 500 benchmark.
- Further research and backtesting could be done on different look-back periods, rebalancing frequencies, investment universes, numbers of traded stocks, etc.
-
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html
index 009e778..c2e37d5 100755
--- a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 References.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 References.html
deleted file mode 100644
index 6c1e761..0000000
--- a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 References.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
- -
- Groot, Wilma (2011). Another look at trading costs and short-term reversal profit, page 1,? Online Copy
-
-
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html
new file mode 100644
index 0000000..3d18c34
--- /dev/null
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html
@@ -0,0 +1,56 @@
+
+
+
+
+ Period Name
+ Start Date
+ End Date
+ Strategy
+ Sharpe
+ Variance
+
+
+
+
+ 5 Year Backtest
+ 1/1/2016
+ 1/1/2021
+ Strategy
+ 0.24
+ 0.058
+
+
+ Benchmark
+ 0.825
+ 0.028
+
+
+ 2020 Crash
+ 2/19/2020
+ 3/23/2020
+ Strategy
+ -1.025
+ 0.917
+
+
+ Benchmark
+ -1.4
+ 0.474
+
+
+ 2020 Recovery
+ 3/23/2020
+ 6/8/2020
+ Strategy
+ 1.688
+ 0.16
+
+
+ Benchmark
+ 8.765
+ 0.103
+
+
+
+
+
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html
new file mode 100644
index 0000000..1c0cad5
--- /dev/null
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html
@@ -0,0 +1,13 @@
+
+ Although this strategy passes several of the
+ metrics required for Alpha Streams
+ and the Quant League competition, it requires further work to pass the following requirements:
+
+
+
+ - PSR >= 80%
+ - Emits insights
+ - Max drawdown <= 10%
+ - Handles dividends and splits
+ - Minute or second data resolution
+
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html
new file mode 100644
index 0000000..ae81428
--- /dev/null
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html
@@ -0,0 +1,16 @@
+
+ The short-term reversal strategy implemented in this tutorial produced a lower Sharpe ratio than the S&P
+ 500 index ETF benchmark over all our testing periods except during the 2020 market crash. To continue the
+ development of this strategy, future areas of research include:
+
+
+
+ To continue the development of this strategy, future areas of research include:
+
+
+
+ - Increasing the data resolution and adding risk management logic.
+ - Applying the strategy to a different universe of securities.
+ - Testing other lookback periods for the RateOfChange indicator. Some researchers exclude the most-recent month’s price action from the indicator’s calculation.
+ - Adjusting the weight for each insight emitted from the alpha model. Perhaps the most extreme performer of all the securities the alpha model is about to long (short) should be given the largest weight of all the securities the model is about to long (short).
+
\ No newline at end of file
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html
new file mode 100644
index 0000000..2a52089
--- /dev/null
+++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html
@@ -0,0 +1,6 @@
+
+ -
+ de Groot, Wilma and Huij, Joop and Zhou, Weili, Another Look at Trading Costs and Short-Term Reversal
+ Profits (July 1, 2011). Online copy
+
+
\ No newline at end of file
From 5aaf69e507ff2f368f5986d9a19257da90160f20 Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 5 Mar 2021 11:43:23 -0700
Subject: [PATCH 205/215] Updating fama french tutorial
---
.../02 Fama-French Three-Factor Model.html | 7 ++---
.../05 Other Factors.html | 12 --------
.../{06 Summary.html => 05 Summary.html} | 6 ++--
.../{07 Algorithm.html => 06 Algorithm.html} | 30 +++++++++----------
...{08 References.html => 07 References.html} | 3 ++
5 files changed, 23 insertions(+), 35 deletions(-)
delete mode 100755 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Other Factors.html
rename 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/{06 Summary.html => 05 Summary.html} (98%)
mode change 100755 => 100644
rename 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/{07 Algorithm.html => 06 Algorithm.html} (78%)
mode change 100755 => 100644
rename 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/{08 References.html => 07 References.html} (81%)
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html
index 21d0568..1f83f6d 100755
--- a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html
+++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html
@@ -1,8 +1,5 @@
- This model was proposed in 1993 by Eugene Fama and Kenneth French to describe stock returns.[ref] Fama, E F; French, K R (1993). Common risk factors in the returns on stocks and bonds. Journal of Financial Economics. 33: 3. CiteSeerX 10.1.1.139.5892 Freely accessible. doi:10.1016/0304-405X(93)90023-5[/ref]
-
-
- The 3-factor model is
+ This model was proposed in 1993 by Eugene Fama and Kenneth French to describe stock returns. The 3-factor model is
\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML \]
@@ -12,7 +9,7 @@
- MKT is the excess return of the market. It's the value-weighted return of all CRSP firms incorporated in the US and listed on the NYSE, AMEX, or NASDAQ minus the 1-month Treasury Bill rate.
- SMB (Small Minus Big) measures the excess return of stocks with small market cap over those with larger market cap.
- - HML (High Minus Low) measures the excess return of value stocks over growth stocks. Value stocks have high book to price ratio (B/P) than growth stocks.
+ - HML (High Minus Low) measures the excess return of value stocks over growth stocks. Value stocks have a higher book to price ratio (B/P) than growth stocks.
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Other Factors.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Other Factors.html
deleted file mode 100755
index 510c436..0000000
--- a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Other Factors.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
- The Fama-French 5-Factor model comprises two more factors:
-
-
- - RMW (Robust Minus Weak) measures the excess returns of firms with high operating profit margins over those with lower profits.
- - CMA (Conservative Minus Aggressive) measures the excess returns of firms investing less over those investing more.
-
-
-
- RMW was proposed by Novy-Marx (2013) who wrote that:
- "Controlling for gross profitability explains most earnings related anomalies, and a wide range of seemingly unrelated profitable trading strategies." CMA was proposed by Fama and French (2014) who pointed out that: A five-factor model directed at capturing the size, value, profitability, and investment patterns in average stock returns is rejected on the GRS test, but for applied purposes it provides an acceptable description of average returns. Finally, momentum is another commonly used factor. It captures excess returns of stocks with highest returns over those with lowest returns
-
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Summary.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html
old mode 100755
new mode 100644
similarity index 98%
rename from 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Summary.html
rename to 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html
index 549200f..d2b7e7a
--- a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Summary.html
+++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html
@@ -1,3 +1,3 @@
-
- In this chapter we expand Capital Asset Pricing Model (CAPM) into multi-factor models: the Fama-French factor models in particular. They are the most empirically successful multi-factor models by far, and are commonly used in practice.
-
+
+ In this chapter we expand Capital Asset Pricing Model (CAPM) into multi-factor models: the Fama-French factor models in particular. They are the most empirically successful multi-factor models by far, and are commonly used in practice.
+
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 Algorithm.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html
old mode 100755
new mode 100644
similarity index 78%
rename from 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 Algorithm.html
rename to 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html
index e3c69c8..2fd2fa2
--- a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 Algorithm.html
+++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html
@@ -1,15 +1,15 @@
-
- Multi-factor strategies are stock picking strategies. Here we try to implement a 2013 paper published by AQR Capital Management.
- The paper recommends picking stocks by their value, quality (profitability) and momentum.
- The empirically successful measure of value is book-to-price ratio (B/P), but other measures can be used simultaneously to form a more robust and reliable view of a stock's value. The paper uses 5 measures: book-to-price, earnings-to-price ratio (EPS), forecasted EPS, cash flow-to-enterprise value and sales-to-enterprise value.
- The paper suggested a few quality measures: total profit over assets, gross margin and free cash flow over assets. There are also various measures of momentum. 1-year momentum, fundamental momentum and returns around earnings announcement are good choices.
-
-
- In our backtested strategy, we used operating profit margin to measure quality, P/B value to measure value, and 1-month momentum. The portfolio was rebalanced every 2 months and our backtest period runs from Jan 2012 to Jan 2015. You can build your own version by changing the factor, the weight of each factor, and the rebalance period based on the backtested strategy.
-
-
-
-
-
-
-
+
+ Multi-factor strategies are stock picking strategies. Here we try to implement a 2013 paper published by AQR Capital Management.
+ The paper recommends picking stocks by their value, quality (profitability) and momentum.
+ The empirically successful measure of value is book-to-price ratio (B/P), but other measures can be used simultaneously to form a more robust and reliable view of a stock's value. The paper uses 5 measures: book-to-price, earnings-to-price ratio (EPS), forecasted EPS, cash flow-to-enterprise value and sales-to-enterprise value.
+ The paper suggested a few quality measures: total profit over assets, gross margin and free cash flow over assets. There are also various measures of momentum. 1-year momentum, fundamental momentum and returns around earnings announcement are good choices.
+
+
+ In our backtested strategy, we used operating profit margin to measure quality, P/B value to measure value, and 1-month momentum. The portfolio was rebalanced every month. You can build your own version by changing the factor, the weight of each factor, and the rebalance period based on the backtested strategy.
+
+
+
+
+
+
+
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/08 References.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html
similarity index 81%
rename from 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/08 References.html
rename to 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html
index 79b3bcb..eb7216e 100644
--- a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/08 References.html
+++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html
@@ -14,4 +14,7 @@
-
Robert Novy-Marx (2013). The Other Side of Value: The Gross Profitability Premium Journal of Financial Economics 108 (1), 1-28. Retrieved from rnm.simon.rochester.edu/research/OSoV.pdf
+ -
+ Fama, E. F. & French, K. R. (1993). Common risk factors in the returns on stocks and bonds. Journal of Financial Economics, 33, 3-56. doi: 10.1016/0304-405X(93)90023-5. Retrieved from rady.ucsd.edu.
+
From 304f01fe6fa9e01d15c3155cab4f3b03d5e251fc Mon Sep 17 00:00:00 2001
From: Derek Melchin
Date: Fri, 5 Mar 2021 11:44:46 -0700
Subject: [PATCH 206/215] Update value factor definition to match algo
---
.../14 Fama-French Multi-Factor Models/06 Algorithm.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html
index 2fd2fa2..3eb4334 100644
--- a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html
+++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html
@@ -5,7 +5,7 @@
The paper suggested a few quality measures: total profit over assets, gross margin and free cash flow over assets. There are also various measures of momentum. 1-year momentum, fundamental momentum and returns around earnings announcement are good choices.
- In our backtested strategy, we used operating profit margin to measure quality, P/B value to measure value, and 1-month momentum. The portfolio was rebalanced every month. You can build your own version by changing the factor, the weight of each factor, and the rebalance period based on the backtested strategy.
+ In our backtested strategy, we used operating profit margin to measure quality, book value per share to measure value, and 1-month momentum. The portfolio was rebalanced every month. You can build your own version by changing the factor, the weight of each factor, and the rebalance period based on the backtested strategy.
From b1fc9c2bb99abb67fdf008e118597f55bab491ba Mon Sep 17 00:00:00 2001
From: Jared
Date: Wed, 17 Mar 2021 10:17:08 -0700
Subject: [PATCH 207/215] Update 01 Definition.html
---
07 Applied Options[]/02 Bull Call Spread/01 Definition.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/07 Applied Options[]/02 Bull Call Spread/01 Definition.html b/07 Applied Options[]/02 Bull Call Spread/01 Definition.html
index 0418abb..c361521 100755
--- a/07 Applied Options[]/02 Bull Call Spread/01 Definition.html
+++ b/07 Applied Options[]/02 Bull Call Spread/01 Definition.html
@@ -5,7 +5,7 @@
This strategy creates a ceiling and floor for the profit. By purchasing a call and selling a call with higher strike simultaneously, traders can reduce the cost of just one long call option with the premium of a short call option. But the premium of ITM call is more expensive than the OTM call. The strategy limits the loss resulting from a drop in the price of the underlying stock but still creates a ceiling to the profit while the underlying price is increasing.
- Take GOOG as an example. If the share price of GOOG is $950 at time 0, the premium of ITM call option is 20 with strike 900 and the premium of OTM call option is 2 with strike 1000. If we ignore the commission, dividends and other transaction fees, the payoff of Bull Call Spread strategy is as follows:
+ Take GOOG as an example. If the share price of GOOG is $950 at time 0, the premium of ITM call option is 50 with strike 900 and the premium of OTM call option is 2 with strike 1000. If we ignore the commission, dividends and other transaction fees, the payoff of Bull Call Spread strategy is as follows:
From 6750665e5c3f051e4ab37bbafb7835d1bed848b3 Mon Sep 17 00:00:00 2001
From: Web Editor
Date: Mon, 11 Oct 2021 16:34:56 -0400
Subject: [PATCH 208/215] Automated push from server made by Alexandre Catarino
---
.../02 Fetching Data.html | 196 +++++++++---------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html
index 325ecd6..181f0fc 100755
--- a/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html
+++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html
@@ -1,98 +1,98 @@
-
- Here we use the Quandl API to retrieve data.
-
-
-
-import quandl
-quandl.ApiConfig.api_key = 'dRQxJ15_2nrLznxr1Nn4'
-
-
-
- We will create a Series named "aapl" whose values are Apple's daily closing prices, which are of course indexed by dates:
-
-
-
-aapl_table = quandl.get('WIKI/AAPL')
-aapl = aapl_table['Adj. Close']['2017']
-print aapl
-
-
-
-
- Recall that we can fetch a specific data point using series['yyyy-mm-dd']. We can also fetch the data in a specific month using series['yyyy-mm'].
-
-
-
-print aapl['2017-3']
-Date
-2017-03-01 138.657681
-2017-03-02 137.834404
-2017-03-03 138.647762
-2017-03-06 138.211326
-2017-03-07 138.389868
-2017-03-08 137.874080
-2017-03-09 137.556672
-2017-03-10 138.012946
-2017-03-13 138.072460
-2017-03-14 137.864161
-2017-03-15 139.322254
-2017-03-16 139.550391
-2017-03-17 138.856061
-2017-03-20 140.314154
-2017-03-21 138.707276
-2017-03-22 140.274478
-2017-03-23 139.778528
-2017-03-24 139.500796
-2017-03-27 139.738852
-2017-03-28 142.635200
-2017-03-29 142.952608
-2017-03-30 142.764147
-2017-03-31 142.496334
-
-
-
-
- Or in several consecutive months:
-
-
-
-aapl['2017-2':'2017-4']
-
-
-
-
- .head(N) and .tail(N) are methods for quickly accessing the first or last N elements.
-
-
-
-print aapl.head()
-print aapl.tail(10)
-
-
-
- The output:
-
-
-
-
-Date
-2017-01-03 114.715378
-2017-01-04 114.586983
-2017-01-05 115.169696
-2017-01-06 116.453639
-2017-01-09 117.520300
-Name: Adj. Close, dtype: float64
-Date
-2017-08-08 159.433108
-2017-08-09 160.409148
-2017-08-10 155.270000
-2017-08-11 157.480000
-2017-08-14 159.850000
-2017-08-15 161.600000
-2017-08-16 160.950000
-2017-08-17 157.870000
-2017-08-18 157.500000
-2017-08-21 157.210000
-Name: Adj. Close, dtype: float64
-
-
+
+ Here we use the Quandl API to retrieve data...
+
+
+
+import quandl
+quandl.ApiConfig.api_key = 'dRQxJ15_2nrLznxr1Nn4'
+
+
+
+ We will create a Series named "aapl" whose values are Apple's daily closing prices, which are of course indexed by dates:
+
+
+
+aapl_table = quandl.get('WIKI/AAPL')
+aapl = aapl_table['Adj. Close']['2017']
+print aapl
+
+
+
+
+ Recall that we can fetch a specific data point using series['yyyy-mm-dd']. We can also fetch the data in a specific month using series['yyyy-mm'].
+
+
+
+print aapl['2017-3']
+Date
+2017-03-01 138.657681
+2017-03-02 137.834404
+2017-03-03 138.647762
+2017-03-06 138.211326
+2017-03-07 138.389868
+2017-03-08 137.874080
+2017-03-09 137.556672
+2017-03-10 138.012946
+2017-03-13 138.072460
+2017-03-14 137.864161
+2017-03-15 139.322254
+2017-03-16 139.550391
+2017-03-17 138.856061
+2017-03-20 140.314154
+2017-03-21 138.707276
+2017-03-22 140.274478
+2017-03-23 139.778528
+2017-03-24 139.500796
+2017-03-27 139.738852
+2017-03-28 142.635200
+2017-03-29 142.952608
+2017-03-30 142.764147
+2017-03-31 142.496334
+
+
+
+
+ Or in several consecutive months:
+
+
+
+aapl['2017-2':'2017-4']
+
+
+
+
+ .head(N) and .tail(N) are methods for quickly accessing the first or last N elements.
+
+
+
+print aapl.head()
+print aapl.tail(10)
+
+
+
+ The output:
+
+
+
+
+Date
+2017-01-03 114.715378
+2017-01-04 114.586983
+2017-01-05 115.169696
+2017-01-06 116.453639
+2017-01-09 117.520300
+Name: Adj. Close, dtype: float64
+Date
+2017-08-08 159.433108
+2017-08-09 160.409148
+2017-08-10 155.270000
+2017-08-11 157.480000
+2017-08-14 159.850000
+2017-08-15 161.600000
+2017-08-16 160.950000
+2017-08-17 157.870000
+2017-08-18 157.500000
+2017-08-21 157.210000
+Name: Adj. Close, dtype: float64
+
+
From eb15f94de0868141eb5bb55909c4e7ead648f79f Mon Sep 17 00:00:00 2001
From: Web Editor
Date: Fri, 11 Mar 2022 01:59:09 -0500
Subject: [PATCH 209/215] Automated push from server made by Louis Szeto
---
.../02 QuantConnect Options API/04 Select Contracts.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
index 54084fb..e9ca2d1 100755
--- a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
+++ b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
@@ -65,12 +65,12 @@
def OnData(self,slice):
for i in slice.OptionChains:
if i.Key != self.symbol: continue
- optionchain = i.Value
- self.Log("underlying price:" + str(optionchain.Underlying.Price))
- df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
+ optionchain = i.Value
+ self.Log("underlying price:" + str(optionchain.Underlying.Price))
+ df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
index=[x.Symbol.Value for x in optionchain],
columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
- self.Log(str(df))
+ self.Log(str(df))
From 7f51fe51a3dcbd4c46ac07aeefe2d678ed94bdde Mon Sep 17 00:00:00 2001
From: Louis Szeto <56447733+LouisSzeto@users.noreply.github.com>
Date: Fri, 11 Mar 2022 15:01:25 +0800
Subject: [PATCH 210/215] Update 04 Select Contracts.html
---
.../04 Select Contracts.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
index e9ca2d1..7e92e12 100755
--- a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
+++ b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
@@ -65,12 +65,12 @@
def OnData(self,slice):
for i in slice.OptionChains:
if i.Key != self.symbol: continue
- optionchain = i.Value
- self.Log("underlying price:" + str(optionchain.Underlying.Price))
- df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
- index=[x.Symbol.Value for x in optionchain],
- columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
- self.Log(str(df))
+ optionchain = i.Value
+ self.Log("underlying price:" + str(optionchain.Underlying.Price))
+ df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
+ index=[x.Symbol.Value for x in optionchain],
+ columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
+ self.Log(str(df))
From 406089ace2b2521c0bd698e0120196c776346094 Mon Sep 17 00:00:00 2001
From: Louis Szeto <56447733+LouisSzeto@users.noreply.github.com>
Date: Fri, 11 Mar 2022 15:13:16 +0800
Subject: [PATCH 211/215] Update 04 Select Contracts.html
Correct indentation and variable names
---
.../04 Select Contracts.html | 24 +++++++++----------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
index 7e92e12..07ea589 100755
--- a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
+++ b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html
@@ -160,18 +160,18 @@
for i in slice.OptionChains:
if i.Key != self.symbol: continue
- chain = i.Value
-# differentiate the call and put options
-call = [x for x in optionchain if chain.Right == 0]
-put = [x for x in optionchain if chain.Right == 1]
-# choose ITM contracts
-contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike > 0]
-# or choose ATM contracts
-contracts = sorted(optionchain, key = lambda x: abs(optionchain.Underlying.Price - x.Strike))[0]
-# or choose OTM contracts
-contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike < 0]
-# sort the contracts by their expiration dates
-contracts = sorted(contracts, key = lambda x:x.Expiry, reverse = True)
+ optionchain = i.Value
+ # differentiate the call and put options
+ call = [x for x in optionchain if x.Right == 0]
+ put = [x for x in optionchain if x.Right == 1]
+ # choose ITM call contracts
+ contracts = [x for x in call if x.UnderlyingLastPrice - x.Strike > 0]
+ # or choose ATM contracts
+ contracts = sorted(optionchain, key = lambda x: abs(x.UnderlyingLastPrice - x.Strike))[0]
+ # or choose OTM call contracts
+ contracts = [x for x in call if x.UnderlyingLastPrice - x.Strike < 0]
+ # sort the contracts by their expiration dates
+ contracts = sorted(contracts, key = lambda x: x.Expiry, reverse = True)
From 86fba1494c5934965d6d08be3dfc2e7e77ebd1f0 Mon Sep 17 00:00:00 2001
From: Louis Szeto <56447733+LouisSzeto@users.noreply.github.com>
Date: Fri, 11 Mar 2022 15:14:13 +0800
Subject: [PATCH 212/215] Update 02 Add Options.html
Correct formatting
---
.../02 QuantConnect Options API/02 Add Options.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html b/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html
index a1d5a37..44c5959 100755
--- a/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html
+++ b/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html
@@ -22,8 +22,8 @@
def Initialize(self):
- self.SetStartDate(2017, 01, 01) #Set Start Date
- self.SetEndDate(2017, 06, 30) #Set End Date
+ self.SetStartDate(2017, 1, 1) #Set Start Date
+ self.SetEndDate(2017, 6, 30) #Set End Date
self.SetCash(50000) #Set Strategy Cash
equity = self.AddEquity("GOOG", Resolution.Minute) # Add the underlying stock: Google
option = self.AddOption("GOOG", Resolution.Minute) # Add the option corresponding to underlying stock
From 25963e427c4cee06d7778fecca635126745242cf Mon Sep 17 00:00:00 2001
From: Alexandre Catarino
Date: Thu, 19 May 2022 23:54:45 +0100
Subject: [PATCH 213/215] Move Workflow to Documentation Page
---
README.md | 30 ++++++------------------------
1 file changed, 6 insertions(+), 24 deletions(-)
diff --git a/README.md b/README.md
index 5e2fd23..c9846d7 100644
--- a/README.md
+++ b/README.md
@@ -8,40 +8,22 @@ This repository is a collection of WordPress and Jupyter notebook tutorials for
Lean Engine is an open-source fully managed C# algorithmic trading engine built for desktop and cloud usage. It was designed in Mono and operates in Windows, Linux and Mac platforms. For more information about the LEAN Algorithmic Trading engine see the [Lean][4] Engine repository.
-
-## New Tutorial Requests and Edits ##
-
-Please submit new tutorial requests as an issue to the [Tutorials][5] repository. Before submitting an issue please read others to ensure it is not a duplicate. Edits and fixes for clarity are warmly welcomed!
-
-## Mailing List ##
-
-The mailing list for the project can be found on [Google Groups][6]
-
## Contributors and Pull Requests ##
Contributions are warmly very welcomed but we ask you read the existing code to see how it is formatted, commented and ensure contributions match the existing style. All code submissions must include accompanying tests. Please see the [contributor guide lines][7].
## Strategy Library Development Workflow ##
-To publish a strategy to our [Strategy Library](https://www.quantconnect.com/tutorials/strategy-library/strategy-library), follow these steps:
-1. Review filtered sources like SSRN, arxiv, and other academic journals/papers for a strategy to implement. Try to adhere to the [Quant League competition](https://www.quantconnect.com/competitions/quant-league-1) criteria and the Alpha Streams [minimum criteria](https://www.quantconnect.com/docs/alpha-streams/submitting-an-alpha#Submitting-an-Alpha-Minimum-Criteria) and [review process](https://www.quantconnect.com/docs/alpha-streams/submitting-an-alpha#Submitting-an-Alpha-Subsequent-Review-Process).
-2. Post a 3-point development plan to [our Slack channel](https://www.quantconnect.com/slack) and wait for approval by @jaredbroad or @alexcatarino. See an example [here](https://cdn.quantconnect.com/i/tu/development-plan-example.png).
-3. Develop the strategy (add [license and imports](https://github.com/QuantConnect/Lean/blob/master/Algorithm.Python/BasicTemplateAlgorithm.py#L1) to main.py).
-4. Add an Issue to the [Tutorials repo](https://github.com/QuantConnect/Tutorials/issues) ([example](https://github.com/QuantConnect/Tutorials/issues/277)).
-5. Add @alexcatarino as a [collaborator](https://www.quantconnect.com/blog/collaborating-in-quantconnect/) to the project.
-6. Publish a strategy write-up in the Slack channel and wait for approval (see [Strategy Library](https://www.quantconnect.com/tutorials/strategy-library/strategy-library) for examples).
-7. Convert the strategy write-up to HTML form ([examples](https://github.com/QuantConnect/Tutorials/tree/master/04%20Strategy%20Library)).
-8. Make PR (following the [Contributor's Guidelines](https://github.com/QuantConnect/Lean/blob/master/CONTRIBUTING.md)):
- - If the write-up includes images, upload them [here](https://www.quantconnect.com/admin/cdnUpload).
- - Add summary HTML files to [Strategy Library directory](https://github.com/QuantConnect/Tutorials/tree/master/04%20Strategy%20Library). If it's a non-Quantpedia strategy, set the ID number (in the directory name) to the next available after 1023.
- - If the strategy is from Quantpedia, add strategy ID and backtest ID to [quantpedia.json](https://github.com/QuantConnect/Tutorials/blob/master/quantpedia.json).
- - Add strategy metadata to [this file](https://github.com/QuantConnect/Tutorials/blob/master/04%20Strategy%20Library/00%20Strategy%20Library/01%20Strategy%20Library.php) (Currently semi-sorted by Quantpedia strategy ID).
-9. After the PR is merged, send @jaredbroad the URL and a 1-sentence summary of what the paper/strategy is about and post the strategy to the forum with the backtest of the algorithm and a short summary of the project ([example](https://www.quantconnect.com/forum/discussion/8608/strategy-library-addition-residual-momentum/p1)).
+
+To publish a strategy to our [Strategy Library](https://www.quantconnect.com/tutorials/strategy-library/strategy-library), follow the steps on the [documentation page](https://www.quantconnect.com/docs/v2/writing-algorithms/strategy-library#03-Contribute-Tutorials)
+
+## New Tutorial Requests and Edits ##
+
+Please submit new tutorial requests as an issue to the [Tutorials][5] repository. Before submitting an issue please read others to ensure it is not a duplicate. Edits and fixes for clarity are warmly welcomed!
[1]: https://www.quantconnect.com/tutorials "Tutorials Viewer"
[2]: https://www.quantconnect.com/lean/docs "Lean Documentation"
[3]: https://github.com/QuantConnect/Lean/archive/master.zip
[4]: https://github.com/QuantConnect/Lean
[5]: https://github.com/QuantConnect/Tutorials/issues
-[6]: https://groups.google.com/forum/#!forum/lean-engine
[7]: https://github.com/QuantConnect/Lean/blob/master/CONTRIBUTING.md
[8]: https://www.quantconnect.com/slack
From 67580984b715b02d829840831b8bc487f29c7213 Mon Sep 17 00:00:00 2001
From: Gustavo Aviles
Date: Wed, 15 Jun 2022 17:35:12 -0700
Subject: [PATCH 214/215] Update backtest embed url.
---
.../05 \347\256\227\346\263\225.cn.html" | 2 +-
.../06 Algorithm.html | 2 +-
.../06 \347\256\227\346\263\225.cn.html" | 4 +--
.../04 Algorithm.html | 4 +--
.../05 Algorithm.html | 2 +-
.../06 Algorithm.html | 2 +-
.../06 \347\256\227\346\263\225.cn.html" | 2 +-
.../05 Algorithm.html | 2 +-
.../04 \347\256\227\346\263\225.cn.html" | 2 +-
.../03 Algorithm.html | 2 +-
.../03 \347\256\227\346\263\225.cn.html" | 2 +-
.../03 Algorithm.html | 2 +-
.../04 Algorithm.html | 2 +-
.../113 January Barometer/03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../13 Asset Class Momentum/03 Algorithm.html | 2 +-
.../14 Sector Momentum/03 Algorithm.html | 2 +-
.../15 Short Term Reversal/03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../16 Overnight Anomaly/03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 \347\256\227\346\263\225.cn.html" | 2 +-
.../17 Forex Momentum/03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../20 Forex Carry Trade/03 Algorithm.html | 2 +-
.../03 \347\256\227\346\263\225.cn.html" | 2 +-
.../03 Algorithm.html | 2 +-
.../04 Algorithm.html | 4 +--
.../04 \347\256\227\346\263\225.cn.html" | 4 +--
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 4 +--
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../32 Gold Market Timing/03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 \347\256\227\346\263\225.cn.html" | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../03 Algorithm.html | 2 +-
.../83 Pre-Holiday Effect/03 Algorithm.html | 2 +-
.../06 Algorithm.html | 18 ++++++-------
.../13 Market Risk/06 Algorithm.html | 26 +++++++++----------
.../05 Algorithm.html | 2 +-
.../05 Algorithm.html | 2 +-
.../01 Covered Call/04 Algorithm.html | 4 +--
.../02 Bull Call Spread/04 Algorithm.html | 4 +--
.../03 Long Straddle/04 Algorithm.html | 4 +--
.../04 Long Strangle/04 Algorithm.html | 4 +--
.../05 Butterfly Spread/04 Algorithm.html | 4 +--
.../06 Iron Condor/04 Algorithm.html | 4 +--
.../07 Iron Butterfly/04 Algorithm.html | 4 +--
.../08 Protective Collar/04 Algorithm.html | 4 +--
65 files changed, 98 insertions(+), 98 deletions(-)
diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html"
index 1f296ed..4a79e84 100644
--- "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html"
@@ -4,6 +4,6 @@
-
+
diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html
index 5c357f4..9717146 100755
--- a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html
+++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html"
index 932854a..c5d9f52 100644
--- "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html"
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
diff --git a/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html b/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html
index 58173b8..3358861 100755
--- a/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html
+++ b/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -13,6 +13,6 @@
-
+
diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html
index 01b99d6..0115518 100755
--- a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html
+++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html
@@ -4,6 +4,6 @@
-
+
diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html
index 69b6365..3d55776 100755
--- a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html
+++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html"
index 69b6365..3d55776 100644
--- "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html"
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html
index 03b3ba2..f9505bd 100755
--- a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html
+++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html"
index bcf0bc2..d1a72fa 100644
--- "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html"
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html
index 15151d8..ccc8b22 100644
--- a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html
+++ b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html"
index 15151d8..ccc8b22 100644
--- "a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html"
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html b/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html
index 516d50a..7ff9460 100644
--- a/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html
+++ b/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html
index 53170f5..b8d9c7d 100755
--- a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html
+++ b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/113 January Barometer/03 Algorithm.html b/04 Strategy Library/113 January Barometer/03 Algorithm.html
index be69ba3..e85f53d 100644
--- a/04 Strategy Library/113 January Barometer/03 Algorithm.html
+++ b/04 Strategy Library/113 January Barometer/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html b/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html
index f94dcba..6dc92eb 100644
--- a/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html
+++ b/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html b/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html
index ca04542..77b7892 100644
--- a/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html
+++ b/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html
index 6189f9c..e7aa2b2 100644
--- a/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html
+++ b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html b/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html
index 0e5258c..d001aad 100644
--- a/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html
+++ b/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/14 Sector Momentum/03 Algorithm.html b/04 Strategy Library/14 Sector Momentum/03 Algorithm.html
index 0cb1b39..80765bc 100644
--- a/04 Strategy Library/14 Sector Momentum/03 Algorithm.html
+++ b/04 Strategy Library/14 Sector Momentum/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html b/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html
index 09e4c6f..1970b93 100644
--- a/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html
+++ b/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html
index e3a87f0..41faf63 100644
--- a/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html
+++ b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html b/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html
index e4a3020..cb7b3a9 100644
--- a/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html
+++ b/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html
index 6bbcd8e..219c782 100644
--- a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html
+++ b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html"
index 6bbcd8e..219c782 100644
--- "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html"
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/17 Forex Momentum/03 Algorithm.html b/04 Strategy Library/17 Forex Momentum/03 Algorithm.html
index b7fd60e..f8b0c4d 100644
--- a/04 Strategy Library/17 Forex Momentum/03 Algorithm.html
+++ b/04 Strategy Library/17 Forex Momentum/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html b/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html
index 0a0907d..97890a9 100644
--- a/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html
+++ b/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html b/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html
index 17a97c9..4b088a3 100644
--- a/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html
+++ b/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html b/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html
index c75531f..66e4458 100644
--- a/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html
+++ b/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html b/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html
index 1bb774b..d433b13 100644
--- a/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html
+++ b/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html"
index 1bb774b..d433b13 100644
--- "a/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html"
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html b/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html
index b581b49..f2180a0 100644
--- a/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html
+++ b/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html
index 37631d8..1f5050c 100644
--- a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html
+++ b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html
@@ -2,13 +2,13 @@ The Momentum Effect
-
+
Equal Weighted Benchmark
-
+
diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html"
index cd34f0c..7078bbf 100644
--- "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html"
@@ -2,13 +2,13 @@ 动量效应
-
+
平均加权基准
-
+
diff --git a/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html b/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html
index 3bc488d..bdafd79 100644
--- a/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html
+++ b/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html
index 547579a..2b216a7 100644
--- a/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html
+++ b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html b/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html
index 5041f10..15edb83 100644
--- a/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html
+++ b/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html b/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html
index a0bce57..0733d81 100644
--- a/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html
+++ b/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html b/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html
index ada8627..f820ca9 100644
--- a/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html
+++ b/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html
@@ -3,7 +3,7 @@
-
+
@@ -11,7 +11,7 @@
-
+
diff --git a/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html
index 91052ac..b781228 100644
--- a/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html
+++ b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html b/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html
index e0ed93e..9029e2c 100644
--- a/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html
+++ b/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html b/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html
index 414a43d..c74f50c 100644
--- a/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html
+++ b/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html
index a38d444..b3b0694 100644
--- a/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html
+++ b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html
index 9af8464..cff2414 100644
--- a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html
+++ b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html"
index 9af8464..cff2414 100644
--- "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html"
+++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html"
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html b/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html
index c07b1c7..926770b 100644
--- a/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html
+++ b/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html b/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html
index 7cf2e86..36343ed 100644
--- a/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html
+++ b/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html b/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html
index f8ca3b6..529a2d1 100644
--- a/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html
+++ b/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html b/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html
index 55f69ca..8caed63 100644
--- a/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html
+++ b/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html b/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html
index 3956745..57f98de 100644
--- a/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html
+++ b/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html b/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html
index 430008f..d3f5c48 100644
--- a/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html
+++ b/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html b/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html
index c9839cd..91f1e5a 100644
--- a/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html
+++ b/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html
index 36e3092..0447f1a 100644
--- a/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html
+++ b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html b/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html
index b59109e..64580ab 100644
--- a/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html
+++ b/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html
index 8d6082c..309e3c2 100755
--- a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html
+++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html
@@ -1,9 +1,9 @@
-
- Mean-variance analysis is used to optimize portfolios with several strategies. Here we treat Dow 30 stocks as strategy and designed an algorithm to test mean-variance analysis:
-
-
-
-
-
-
-
+
+ Mean-variance analysis is used to optimize portfolios with several strategies. Here we treat Dow 30 stocks as strategy and designed an algorithm to test mean-variance analysis:
+
+
+
+
+
+
+
diff --git a/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html b/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html
index 3069322..64474c1 100755
--- a/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html
+++ b/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html
@@ -1,13 +1,13 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html b/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html
index 64b1d35..e485feb 100755
--- a/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html
+++ b/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html
@@ -4,6 +4,6 @@
-
+
diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html
index 12d6ce9..b196a80 100755
--- a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html
+++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html
@@ -1,6 +1,6 @@
-
+
diff --git a/07 Applied Options[]/01 Covered Call/04 Algorithm.html b/07 Applied Options[]/01 Covered Call/04 Algorithm.html
index 9fa4e5e..6858e6e 100755
--- a/07 Applied Options[]/01 Covered Call/04 Algorithm.html
+++ b/07 Applied Options[]/01 Covered Call/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -13,6 +13,6 @@
-
+
diff --git a/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html b/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html
index 0e1c81b..ef1b62b 100755
--- a/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html
+++ b/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -13,6 +13,6 @@
-
+
diff --git a/07 Applied Options[]/03 Long Straddle/04 Algorithm.html b/07 Applied Options[]/03 Long Straddle/04 Algorithm.html
index 3e98c40..89e3d28 100755
--- a/07 Applied Options[]/03 Long Straddle/04 Algorithm.html
+++ b/07 Applied Options[]/03 Long Straddle/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -13,6 +13,6 @@
-
+
diff --git a/07 Applied Options[]/04 Long Strangle/04 Algorithm.html b/07 Applied Options[]/04 Long Strangle/04 Algorithm.html
index 78ab066..09a8a85 100755
--- a/07 Applied Options[]/04 Long Strangle/04 Algorithm.html
+++ b/07 Applied Options[]/04 Long Strangle/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
diff --git a/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html b/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html
index 134f5b1..beb7ac0 100755
--- a/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html
+++ b/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
diff --git a/07 Applied Options[]/06 Iron Condor/04 Algorithm.html b/07 Applied Options[]/06 Iron Condor/04 Algorithm.html
index cf2d154..7a08824 100755
--- a/07 Applied Options[]/06 Iron Condor/04 Algorithm.html
+++ b/07 Applied Options[]/06 Iron Condor/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
diff --git a/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html b/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html
index cd42f7d..05d0e03 100755
--- a/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html
+++ b/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
diff --git a/07 Applied Options[]/08 Protective Collar/04 Algorithm.html b/07 Applied Options[]/08 Protective Collar/04 Algorithm.html
index 245885d..77dc3ce 100755
--- a/07 Applied Options[]/08 Protective Collar/04 Algorithm.html
+++ b/07 Applied Options[]/08 Protective Collar/04 Algorithm.html
@@ -4,7 +4,7 @@
-
+
@@ -14,6 +14,6 @@
-
+
From 144ea92bd184b1cd91f0af35c8aa288e97d1ed5f Mon Sep 17 00:00:00 2001
From: avorobiev
Date: Mon, 28 Jul 2025 17:58:07 +0300
Subject: [PATCH 215/215] Correct intrinsic and time value calculation in AAPL
example
---
.../01 General Features of Options/04 The Value of Options.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html b/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html
index f0877cc..b392bbd 100755
--- a/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html
+++ b/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html
@@ -12,5 +12,5 @@
\[Time Value= Premium-Intrinsic Value\]
-For example, an AAPL call option contract which expires after 10 days has strike $143 and premium $10. now the market price of AAPL is $160. The intrinsic value of this contract is 160-143=$17, the time value is 17-10=$7. Although the intrinsic value of OTM and ATM options is zero, they have time values if they still have a certain amount of time until the option expires so for OTM and ATM options, their premiums equal their time values.
+For example, an AAPL call option contract which expires after 10 days has strike $143 and premium $10. now the market price of AAPL is $150. The intrinsic value of this contract is 150-143=$7, the time value is 10-7=$3. Although the intrinsic value of OTM and ATM options is zero, they have time values if they still have a certain amount of time until the option expires so for OTM and ATM options, their premiums equal their time values.